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   26836   3844 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            74     2       0      0 rescuer_thread 0 S [ipa_usb_wq]         7
9701root            76     2       0      0 watchdog_kthread 0 S [msm_watchdog]     7
9702root            77     2       0      0 kthread_worker_fn 0 S [smem_native_sps] 7
9703root            78     2       0      0 kthread_worker_fn 0 S [spss_mailbox_gl] 7
9704root            79     2       0      0 kthread_worker_fn 0 S [qmp_aop]         7
9705root            80     2       0      0 kthread_worker_fn 0 S [smem_native_mps] 8
9706root            81     2       0      0 kthread_worker_fn 0 S [mpss_smem_glink] 8
9707root            82     2       0      0 kthread_worker_fn 0 S [smem_native_lpa] 8
9708root            83     2       0      0 kthread_worker_fn 0 S [lpass_smem_glin] 8
9709root            84     2       0      0 kthread_worker_fn 0 S [smem_native_dsp] 8
9710root            85     2       0      0 kthread_worker_fn 0 S [dsps_smem_glink] 8
9711root            86     2       0      0 kthread_worker_fn 0 S [smem_native_cds] 8
9712root            87     2       0      0 kthread_worker_fn 0 S [cdsp_smem_glink] 8
9713root            88     2       0      0 watchdog 0 S [khungtaskd]               8
9714root            89     2       0      0 oom_reaper 0 S [oom_reaper]             8
9715root            90     2       0      0 rescuer_thread 0 S [writeback]          9
9716root            91     2       0      0 kcompactd 0 S [kcompactd0]              9
9717root            92     2       0      0 rescuer_thread 0 S [crypto]             9
9718root            93     2       0      0 rescuer_thread 0 S [bioset]             9
9719root            94     2       0      0 rescuer_thread 0 S [kblockd]            9
9720root            95     2       0      0 irq_thread 0 S [irq/160-arm-smm]        9
9721root            96     2       0      0 irq_thread 0 S [irq/161-arm-smm]        9
9722root            97     2       0      0 irq_thread 0 S [irq/170-arm-smm]        9
9723root            98     2       0      0 worker_thread 0 S [kworker/u17:0]       9
9724root            99     2       0      0 irq_thread 0 S [irq/125-tsens-u]        9
9725root           100     2       0      0 irq_thread 0 S [irq/126-tsens-c]        1
9726root           101     2       0      0 irq_thread 0 S [irq/127-tsens-u]        1
9727root           102     2       0      0 irq_thread 0 S [irq/128-tsens-c]        1
9728root           103     2       0      0 rescuer_thread 0 S [edac-poller]        1
9729root           104     2       0      0 ion_heap_deferred_free 0 S [system]     1
9730root           105     2       0      0 ion_heap_deferred_free 0 S [easel_mem]  1
9731root           106     2       0      0 rescuer_thread 0 S [ipa_power_mgmt]     1
9732root           107     2       0      0 rescuer_thread 0 S [transport_power]    1
9733root           108     2       0      0 rescuer_thread 0 S [ipa_rm_wq]          1
9734root           109     2       0      0 rescuer_thread 0 S [devfreq_wq]         1
9735root           110     2       0      0 rescuer_thread 0 S [governor_msm_ad]    1
9736root           111     2       0      0 rescuer_thread 0 S [cfg80211]           1
9737root           112     2       0      0 irq_thread 0 S [irq/541-ibb-sc-]        1
9738root           113     2       0      0 irq_thread 0 S [irq/542-lab-sc-]        1
9739root           115     2       0      0 irq_thread 0 S [irq/75-qpnp_wle]        1
9740root           116     2       0      0 irq_thread 0 S [irq/76-qpnp_wle]        1
9741root           142     2       0      0 kswapd  0 S [kswapd0]                   1
9742root           143     2       0      0 rescuer_thread 0 S [vmstat]             1
9743root           144     2       0      0 ecryptfs_threadfn 0 S [ecryptfs-kthrea] 1
9744root           193     2       0      0 irq_thread 0 S [irq/174-arm-smm]        1
9745root           194     2       0      0 irq_thread 0 S [irq/175-arm-smm]        1
9746root           195     2       0      0 irq_thread 0 S [irq/91-eud_irq]         1
9747root           196     2       0      0 rescuer_thread 0 S [glink_ssr_wq]       1
9748root           197     2       0      0 rescuer_thread 0 S [glink_lbsrv]        1
9749root           198     2       0      0 kthread_worker_fn 0 S [spi_wdsp]        1
9750root           199     2       0      0 kthread_worker_fn 0 S [wdsp_spi_glink_] 1
9751root           200     2       0      0 rescuer_thread 0 S [glink_xprt_wq]      2
9752root           201     2       0      0 rescuer_thread 0 S [IPCRTR_mpss_sme]    2
9753root           202     2       0      0 rescuer_thread 0 S [IPCRTR_lpass_sm]    2
9754root           203     2       0      0 rescuer_thread 0 S [IPCRTR_dsps_sme]    2
9755root           204     2       0      0 rescuer_thread 0 S [IPCRTR_cdsp_sme]    2
9756root           205     2       0      0 rescuer_thread 0 S [glink_pkt_wq]       2
9757root           206     2       0      0 irq_thread 0 S [irq/176-arm-smm]        2
9758root           207     2       0      0 rescuer_thread 0 S [qmi_svc_event_w]    2
9759root           208     2       0      0 rescuer_thread 0 S [msm_ipc_router]     2
9760root           209     2       0      0 rescuer_thread 0 S [servloc_wq]         2
9761root           210     2       0      0 irq_thread 0 S [irq/177-arm-smm]        2
9762root           211     2       0      0 irq_thread 0 S [irq/178-arm-smm]        2
9763root           212     2       0      0 add_hwgenerator_randomness 0 S [hwrng]  2
9764root           214     2       0      0 rescuer_thread 0 S [diag_real_time_]    2
9765root           215     2       0      0 rescuer_thread 0 S [diag_wq]            2
9766root           216     2       0      0 rescuer_thread 0 S [DIAG_USB_diag]      2
9767root           217     2       0      0 rescuer_thread 0 S [diag_cntl_wq]       2
9768root           218     2       0      0 rescuer_thread 0 S [diag_dci_wq]        2
9769root           219     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
9770root           220     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
9771root           221     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
9772root           222     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
9773root           223     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
9774root           224     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
9775root           225     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
9776root           226     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
9777root           227     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
9778root           228     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
9779root           229     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
9780root           230     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
9781root           231     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
9782root           232     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
9783root           233     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
9784root           234     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
9785root           235     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
9786root           236     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
9787root           237     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
9788root           238     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
9789root           239     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_C]    2
9790root           240     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
9791root           241     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_C]    2
9792root           242     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
9793root           243     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
9794root           244     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_C]    2
9795root           245     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
9796root           246     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_C]    2
9797root           247     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
9798root           248     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
9799root           249     2       0      0 rescuer_thread 0 S [DIAG_CNTL_SOCKE]    2
9800root           250     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
9801root           251     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
9802root           252     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
9803root           253     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
9804root           254     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
9805root           255     2       0      0 diag_socket_read 0 S [kworker/u16:1]    2
9806root           256     2       0      0 rescuer_thread 0 S [kgsl-workqueue]     2
9807root           257     2       0      0 rescuer_thread 0 S [kgsl-mementry]      2
9808root           258     2       0      0 kthread_worker_fn 0 S [kgsl_worker_thr] 2
9809root           259     2       0      0 diag_socket_read 0 S [kworker/u16:2]    2
9810root           260     2       0      0 rescuer_thread 0 S [bioset]             2
9811root           261     2       0      0 rescuer_thread 0 S [bioset]             2
9812root           262     2       0      0 rescuer_thread 0 S [bioset]             2
9813root           263     2       0      0 rescuer_thread 0 S [bioset]             2
9814root           264     2       0      0 rescuer_thread 0 S [bioset]             2
9815root           265     2       0      0 rescuer_thread 0 S [bioset]             2
9816root           266     2       0      0 rescuer_thread 0 S [bioset]             2
9817root           267     2       0      0 rescuer_thread 0 S [bioset]             2
9818root           268     2       0      0 irq_thread 0 S [irq/171-arm-smm]        2
9819root           269     2       0      0 rescuer_thread 0 S [bioset]             2
9820root           271     2       0      0 rescuer_thread 0 S [bioset]             2
9821root           272     2       0      0 rescuer_thread 0 S [bioset]             2
9822root           273     2       0      0 rescuer_thread 0 S [bioset]             2
9823root           274     2       0      0 irq_thread 0 S [irq/162-arm-smm]        2
9824root           275     2       0      0 rescuer_thread 0 S [bioset]             2
9825root           276     2       0      0 rescuer_thread 0 S [bioset]             2
9826root           277     2       0      0 rescuer_thread 0 S [bioset]             2
9827root           278     2       0      0 rescuer_thread 0 S [bioset]             2
9828root           279     2       0      0 rescuer_thread 0 S [bioset]             2
9829root           280     2       0      0 rescuer_thread 0 S [bioset]             2
9830root           281     2       0      0 rescuer_thread 0 S [bioset]             2
9831root           282     2       0      0 rescuer_thread 0 S [bioset]             2
9832root           283     2       0      0 rescuer_thread 0 S [bioset]             2
9833root           284     2       0      0 rescuer_thread 0 S [bioset]             2
9834root           285     2       0      0 rescuer_thread 0 S [bioset]             2
9835root           286     2       0      0 rescuer_thread 0 S [bioset]             2
9836root           287     2       0      0 rescuer_thread 0 S [bioset]             2
9837root           288     2       0      0 irq_thread 0 S [irq/163-arm-smm]        2
9838root           289     2       0      0 irq_thread 0 S [irq/179-arm-smm]        2
9839root           290     2       0      0 rescuer_thread 0 S [memory_wq]          2
9840root           292     2       0      0 diag_socket_read 0 S [kworker/u16:3]    2
9841root           293     2       0      0 irq_thread 0 S [irq/180-arm-smm]        2
9842root           294     2       0      0 irq_thread 0 S [irq/164-arm-smm]        2
9843root           295     2       0      0 irq_thread 0 S [irq/181-arm-smm]        2
9844root           296     2       0      0 irq_thread 0 S [irq/182-arm-smm]        2
9845root           297     2       0      0 rescuer_thread 0 S [qcrypto_seq_res]    2
9846root           298     2       0      0 irq_thread 0 S [irq/183-arm-smm]        2
9847root           319     2       0      0 scsi_error_handler 0 S [scsi_eh_0]      3
9848root           320     2       0      0 rescuer_thread 0 S [scsi_tmf_0]         3
9849root           321     2       0      0 kthread_worker_fn 0 S [crtc_commit:111] 3
9850root           322     2       0      0 kthread_worker_fn 0 S [crtc_event:111]  3
9851root           323     2       0      0 kthread_worker_fn 0 S [crtc_commit:163] 3
9852root           324     2       0      0 kthread_worker_fn 0 S [crtc_event:163]  3
9853root           325     2       0      0 kthread_worker_fn 0 S [pp_event]        3
9854root           326     2       0      0 rescuer_thread 0 S [ufs_pm_qos_0]       3
9855root           328     2       0      0 rescuer_thread 0 S [ufs_clk_gating_]    3
9856root           329     2       0      0 rescuer_thread 0 S [ufs_mgc_hibern8]    3
9857root           330     2       0      0 rescuer_thread 0 S [ice-set-key]        3
9858root           331     2       0      0 kthread_worker_fn 0 S [spi10]           3
9859root           332     2       0      0 kthread_worker_fn 0 S [spi32766]        3
9860root           333     2       0      0 kthread_worker_fn 0 S [spi0]            3
9861root           334     2       0      0 kthread_worker_fn 0 S [spi32765]        3
9862root           335     2       0      0 rescuer_thread 0 S [bond0]              3
9863root           338     2       0      0 rescuer_thread 0 S [sharedmem_qmi_w]    3
9864root           339     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    3
9865root           343     2       0      0 rescuer_thread 0 S [uether]             3
9866root           344     2       0      0 rescuer_thread 0 S [k_ipa_usb]          3
9867root           347     2       0      0 rescuer_thread 0 S [kgsl-events]        3
9868root           348     2       0      0 irq_thread 0 S [irq/378-soc:fp_]        3
9869root           349     2       0      0 rescuer_thread 0 S [kgsl_devfreq_wq]    3
9870root           350     2       0      0 rescuer_thread 0 S [msm_vidc_worker]    3
9871root           351     2       0      0 rescuer_thread 0 S [pm_workerq_venu]    3
9872root           353     2       0      0 irq_thread 0 S [irq/184-arm-smm]        3
9873root           354     2       0      0 irq_thread 0 S [irq/185-arm-smm]        3
9874root           355     2       0      0 irq_thread 0 S [irq/186-arm-smm]        3
9875root           356     2       0      0 irq_thread 0 S [irq/187-arm-smm]        3
9876root           357     2       0      0 kthread_worker_fn 0 S [rot_commitq_0_0] 3
9877root           358     2       0      0 kthread_worker_fn 0 S [rot_commitq_0_1] 3
9878root           359     2       0      0 kthread_worker_fn 0 S [rot_doneq_0_0]   3
9879root           360     2       0      0 kthread_worker_fn 0 S [rot_doneq_0_1]   3
9880root           361     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_0]  3
9881root           362     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_1]  3
9882root           363     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_2]  3
9883root           364     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_3]  3
9884root           365     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_4]  3
9885root           366     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_5]  3
9886root           367     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_6]  3
9887root           368     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_7]  3
9888root           369     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_8]  3
9889root           370     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_9]  3
9890root           371     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_10] 3
9891root           372     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_11] 3
9892root           373     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_12] 3
9893root           374     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_13] 3
9894root           375     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_14] 3
9895root           376     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_15] 3
9896root           377     2       0      0 rescuer_thread 0 S [cam-cpas]           3
9897root           378     2       0      0 rescuer_thread 0 S [qcom,cam_virtua]    3
9898root           379     2       0      0 irq_thread 0 S [irq/188-arm-smm]        3
9899root           380     2       0      0 rescuer_thread 0 S [qcom,cam170-cpa]    3
9900root           381     2       0      0 irq_thread 0 S [irq/189-arm-smm]        3
9901root           382     2       0      0 rescuer_thread 0 S [cam_cci_wq]         3
9902root           383     2       0      0 rescuer_thread 0 S [cam_cci_wq]         3
9903root           384     2       0      0 irq_thread 0 S [irq/190-arm-smm]        3
9904root           385     2       0      0 irq_thread 0 S [irq/191-arm-smm]        3
9905root           386     2       0      0 irq_thread 0 S [irq/192-arm-smm]        3
9906root           387     2       0      0 irq_thread 0 S [irq/193-arm-smm]        3
9907root           388     2       0      0 irq_thread 0 S [irq/709-chg-err]        3
9908root           389     2       0      0 irq_thread 0 S [irq/710-chg-sta]        3
9909root           390     2       0      0 irq_thread 0 S [irq/714-otg-fai]        3
9910root           391     2       0      0 irq_thread 0 S [irq/715-otg-ove]        3
9911root           392     2       0      0 irq_thread 0 S [irq/716-otg-oc-]        3
9912root           393     2       0      0 irq_thread 0 S [irq/717-testmod]        3
9913root           394     2       0      0 irq_thread 0 S [irq/718-bat-tem]        3
9914root           395     2       0      0 irq_thread 0 S [irq/719-bat-ocp]        3
9915root           396     2       0      0 irq_thread 0 S [irq/720-bat-ov]         3
9916root           397     2       0      0 irq_thread 0 S [irq/721-bat-low]        3
9917root           398     2       0      0 irq_thread 0 S [irq/722-bat-the]        3
9918root           399     2       0      0 irq_thread 0 S [irq/723-bat-ter]        3
9919root           400     2       0      0 irq_thread 0 S [irq/724-usbin-c]        4
9920root           401     2       0      0 irq_thread 0 S [irq/725-usbin-l]        4
9921root           402     2       0      0 irq_thread 0 S [irq/726-usbin-u]        4
9922root           403     2       0      0 irq_thread 0 S [irq/727-usbin-o]        4
9923root           404     2       0      0 irq_thread 0 S [irq/728-usbin-p]        4
9924root           405     2       0      0 irq_thread 0 S [irq/729-usbin-s]        4
9925root           406     2       0      0 irq_thread 0 S [irq/730-usbin-i]        4
9926root           407     2       0      0 irq_thread 0 S [irq/731-type-c-]        4
9927root           408     2       0      0 irq_thread 0 S [irq/732-dcin-co]        4
9928root           409     2       0      0 irq_thread 0 S [irq/733-dcin-lt]        4
9929root           410     2       0      0 irq_thread 0 S [irq/734-dcin-uv]        4
9930root           411     2       0      0 irq_thread 0 S [irq/735-dcin-ov]        4
9931root           412     2       0      0 irq_thread 0 S [irq/736-dcin-pl]        4
9932root           413     2       0      0 irq_thread 0 S [irq/737-div2-en]        4
9933root           414     2       0      0 irq_thread 0 S [irq/738-dcin-ic]        4
9934root           415     2       0      0 irq_thread 0 S [irq/740-wdog-ba]        4
9935root           416     2       0      0 irq_thread 0 S [irq/741-aicl-fa]        4
9936root           418     2       0      0 irq_thread 0 S [irq/742-aicl-do]        4
9937root           419     2       0      0 worker_thread 0 S [kworker/4:4]         4
9938root           420     2       0      0 irq_thread 0 S [irq/743-high-du]        4
9939root           422     2       0      0 irq_thread 0 S [irq/744-input-c]        4
9940root           424     2       0      0 irq_thread 0 S [irq/745-tempera]        4
9941root           425     2       0      0 irq_thread 0 S [irq/746-switche]        4
9942root           426     2       0      0 rescuer_thread 0 S [bioset]             4
9943root           428     2       0      0 irq_thread 0 S [irq/381-p9221-i]        4
9944root           429     2       0      0 irq_thread 0 S [irq/293-p9221-i]        4
9945root           430     2       0      0 rescuer_thread 0 S [bioset]             4
9946root           431     2       0      0 rescuer_thread 0 S [bioset]             4
9947root           432     2       0      0 rescuer_thread 0 S [bioset]             4
9948root           433     2       0      0 irq_thread 0 S [irq/29-i2c_pmic]        4
9949root           434     2       0      0 rescuer_thread 0 S [bioset]             4
9950root           435     2       0      0 irq_thread 0 S [irq/70-bcl-high]        4
9951root           436     2       0      0 rescuer_thread 0 S [bioset]             4
9952root           437     2       0      0 irq_thread 0 S [irq/72-bcl-low-]        4
9953root           438     2       0      0 rescuer_thread 0 S [bioset]             4
9954root           439     2       0      0 rescuer_thread 0 S [bioset]             4
9955root           440     2       0      0 irq_thread 0 S [irq/543-limits_]        4
9956root           441     2       0      0 rescuer_thread 0 S [bioset]             4
9957root           442     2       0      0 worker_thread 0 S [kworker/7:3]         4
9958root           443     2       0      0 diag_socket_read 0 S [kworker/u16:4]    4
9959root           445     2       0      0 diag_socket_read 0 S [kworker/u16:5]    4
9960root           446     2       0      0 diag_socket_read 0 S [kworker/u16:6]    4
9961root           447     2       0      0 diag_socket_read 0 S [kworker/u16:7]    4
9962root           448     2       0      0 diag_socket_read 0 S [kworker/u16:8]    4
9963root           449     2       0      0 irq_thread 0 S [irq/544-limits_]        4
9964root           450     2       0      0 rescuer_thread 0 S [qmi_tmd_wq]         4
9965root           451     2       0      0 rescuer_thread 0 S [dm_bufio_cache]     4
9966root           452     2       0      0 irq_thread 0 S [irq/99-KRYO3XX ]        4
9967root           453     2       0      0 irq_thread 0 S [irq/371-s2mpb04]        4
9968root           454     2       0      0 irq_thread 0 S [irq/287-s2mpb04]        4
9969root           455     2       0      0 irq_thread 0 S [irq/52-vendor:e]        4
9970root           456     2       0      0 irq_thread 0 S [irq/194-arm-smm]        4
9971root           457     2       0      0 rescuer_thread 0 S [uaudio_svc]         4
9972root           458     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    4
9973root           459     2       0      0 rescuer_thread 0 S [apr_driver]         4
9974root           460     2       0      0 rescuer_thread 0 S [ipv6_addrconf]      4
9975root           461     2       0      0 irq_thread 0 S [irq/880-adsp]           4
9976root           462     2       0      0 rescuer_thread 0 S [sysmon_wq]          4
9977root           463     2       0      0 irq_thread 0 S [irq/912-slpi]           4
9978root           464     2       0      0 irq_thread 0 S [irq/944-cdsp]           4
9979root           465     2       0      0 irq_thread 0 S [irq/848-modem]          4
9980root           472     2       0      0 irq_thread 0 S [irq/38-sig-tx]          4
9981root           473     2       0      0 irq_thread 0 S [irq/64-sig-rx]          4
9982root           474     2       0      0 rescuer_thread 0 S [usbpd0]             4
9983root           475     2       0      0 rescuer_thread 0 S [usbpd0]             4
9984root           476     2       0      0 irq_thread 0 S [irq/1040-soc-up]        4
9985root           477     2       0      0 irq_thread 0 S [irq/1041-soc-re]        4
9986root           478     2       0      0 irq_thread 0 S [irq/1042-bsoc-d]        4
9987root           479     2       0      0 irq_thread 0 S [irq/1043-msoc-d]        4
9988root           480     2       0      0 irq_thread 0 S [irq/1044-msoc-l]        4
9989root           481     2       0      0 irq_thread 0 S [irq/1045-msoc-e]        4
9990root           482     2       0      0 irq_thread 0 S [irq/1046-msoc-h]        4
9991root           483     2       0      0 irq_thread 0 S [irq/1047-msoc-f]        4
9992root           484     2       0      0 irq_thread 0 S [irq/1048-vbatt-]        4
9993root           485     2       0      0 irq_thread 0 S [irq/1049-vbatt-]        4
9994root           486     2       0      0 irq_thread 0 S [irq/1050-esr-de]        4
9995root           487     2       0      0 irq_thread 0 S [irq/1051-batt-m]        4
9996root           488     2       0      0 irq_thread 0 S [irq/1052-batt-t]        4
9997root           489     2       0      0 irq_thread 0 S [irq/1053-ima-rd]        4
9998root           490     2       0      0 irq_thread 0 S [irq/1054-mem-xc]        4
9999root           491     2       0      0 irq_thread 0 S [irq/1055-dma-gr]        4
10000root           492     2       0      0 irq_thread 0 S [irq/36-qcom,tem]        4
10001root           493     2       0      0 irq_thread 0 S [irq/536-pwr_eve]        4
10002root           494     2       0      0 irq_thread 0 S [irq/535-dp_hs_p]        4
10003root           495     2       0      0 irq_thread 0 S [irq/538-dm_hs_p]        4
10004root           496     2       0      0 irq_thread 0 S [irq/537-ss_phy_]        4
10005root           497     2       0      0 irq_thread 0 S [irq/195-arm-smm]        4
10006root           498     2       0      0 rescuer_thread 0 S [usb_bam_wq]         4
10007root           499     2       0      0 try_core_ctl 0 S [core_ctl/0]           4
10008root           500     2       0      0 try_core_ctl 0 S [core_ctl/4]           5
10009root           509     2       0      0 rescuer_thread 0 S [rq_stats]           5
10010root           510     2       0      0 irq_thread 0 S [irq/196-arm-smm]        5
10011root           511     2       0      0 irq_thread 0 S [irq/197-arm-smm]        5
10012root           512     2       0      0 irq_thread 0 S [irq/198-arm-smm]        5
10013root           513     2       0      0 irq_thread 0 S [irq/199-arm-smm]        5
10014root           514     2       0      0 irq_thread 0 S [irq/200-arm-smm]        5
10015root           515     2       0      0 irq_thread 0 S [irq/201-arm-smm]        5
10016root           516     2       0      0 irq_thread 0 S [irq/202-arm-smm]        5
10017root           517     2       0      0 irq_thread 0 S [irq/203-arm-smm]        5
10018root           518     2       0      0 irq_thread 0 S [irq/204-arm-smm]        5
10019root           519     2       0      0 irq_thread 0 S [irq/205-arm-smm]        5
10020root           520     2       0      0 irq_thread 0 S [irq/206-arm-smm]        5
10021root           521     2       0      0 kthread_worker_fn 0 S [set_state_work]  5
10022root           522     2       0      0 rescuer_thread 0 S [sb-1]               5
10023root           523     2       0      0 ngd_slim_rx_msgq_thread 0 S [ngd_rx_thread1] 5
10024root           524     2       0      0 irq_thread 0 S [irq/309-mnh-rea]        5
10025root           525     2       0      0 ngd_notify_partners 0 S [ngd_notify_sl1]  5
10026root           526     2       0      0 rescuer_thread 0 S [sb-3]               5
10027root           527     2       0      0 ngd_slim_rx_msgq_thread 0 S [ngd_rx_thread3] 5
10028root           528     2       0      0 ngd_notify_partners 0 S [ngd_notify_sl3]  5
10029root           529     2       0      0 rescuer_thread 0 S [tbn_event_proce]    5
10030root           530     2       0      0 irq_thread 0 S [irq/79-qpnp_fla]        5
10031root           531     2       0      0 irq_thread 0 S [irq/78-qpnp_fla]        5
10032root           532     2       0      0 irq_thread 0 S [irq/77-qpnp_fla]        5
10033root           533     2       0      0 irq_thread 0 S [irq/1057-mnh_pc]        5
10034root           534     2       0      0 irq_thread 0 S [irq/1058-mnh_pc]        5
10035root           535     2       0      0 irq_thread 0 S [irq/1059-mnh_pc]        5
10036root           536     2       0      0 irq_thread 0 S [irq/1060-mnh_pc]        5
10037root           537     2       0      0 irq_thread 0 S [irq/1061-mnh_pc]        5
10038root           538     2       0      0 irq_thread 0 S [irq/1064-mnh_pc]        5
10039root           539     2       0      0 irq_thread 0 S [irq/1065-mnh_pc]        5
10040root           540     2       0      0 irq_thread 0 S [irq/207-arm-smm]        5
10041root           542     2       0      0 worker_thread 0 S [kworker/5:1H]        5
10042root           543     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
10043root           545     2       0      0 worker_thread 0 S [kworker/4:1H]        5
10044root           546     2       0      0 kjournald2 0 S [jbd2/sdf2-8]            5
10045root           547     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
10046root           548     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
10047root           549     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
10048root           550     1   11868   2596 do_sys_poll 0 S init                    init
10049root           551     1   11224   1716 do_sys_poll 0 S init                    init
10050root           552     1   11480   2512 do_sys_poll 0 S ueventd                 init
10051root           553     2       0      0 worker_thread 0 S [kworker/7:1H]        5
10052root           556     2       0      0 irq_thread 0 S [irq/319-max1720]        5
10053root           560     2       0      0 worker_thread 0 S [kworker/6:3]         5
10054root           570     2       0      0 worker_thread 0 S [kworker/u17:1]       5
10055logd           571     1   26316   9760 SyS_rt_sigsuspend 0 S logd              logd
10056root           572     2       0      0 worker_thread 0 S [kworker/6:1H]        5
10057system         573     1   15872   2472 do_wait 0 S qseecomd                    qseecomd
10058system         574     1   14352   2684 binder_ioctl 0 S [email protected] [email protected]
10059root           576     2       0      0 kthread_worker_fn 0 S [sugov:0]         5
10060root           577     2       0      0 kthread_worker_fn 0 S [sugov:4]         5
10061root           578     2       0      0 worker_thread 0 S [kworker/0:1H]        5
10062root           583     2       0      0 kauditd_thread 0 S [kauditd]            5
10063root           585     1 2129500   4772 binder_ioctl 0 S vold                   vold
10064system         586     1 2114188   4344 binder_ioctl 0 S hwservicemanager       hwservicemanager
10065system         591   573   29752    804 SyS_rt_sigsuspend 0 S qseecomd          qseecomd
10066root           606     2       0      0 kjournald2 0 S [jbd2/sda20-8]           6
10067root           607     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    6
10068system         608     1   10424   1916 binder_ioctl 0 S servicemanager         servicemanager
10069system         609     1   11184   1824 binder_ioctl 0 S vndservicemanager      vndservicemanager
10070root           611     1   12512   2596 binder_ioctl 0 S [email protected] [email protected]
10071system         612     1   13964   2776 binder_ioctl 0 S [email protected] [email protected]
10072hsm            613     1 2127100   4308 binder_ioctl 0 S [email protected] [email protected]
10073hsm            614     1   17568   2056 binder_ioctl 0 S citadeld               citadeld
10074system         616     1   20044   3444 do_sys_poll 0 S sscrpcd                 sscrpcd
10075system         619     1 2146004   8052 binder_ioctl 0 S [email protected] [email protected]
10076system         620     1   16812   2364 binder_ioctl 0 S [email protected] [email protected]
10077system         621     1   18580   3188 binder_ioctl 0 S [email protected] [email protected]
10078root           645     2       0      0 irq_thread 0 S [irq/165-arm-smm]        6
10079root           646     2       0      0 rescuer_thread 0 S [cds_recovery_wo]    6
10080root           647     2       0      0 wlan_logging_thread 0 S [wlan_logging_th] 6
10081root           670     2       0      0 irq_thread 0 S [irq/372-cs35l36]        6
10082root           674     2       0      0 irq_thread 0 S [irq/297-cs35l36]        6
10083root           676     2       0      0 rescuer_thread 0 S [dsps_IPCRTR]        6
10084root           678     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
10085root           679     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
10086root           683     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
10087root           686     2       0      0 rescuer_thread 0 S [kdmflush]           6
10088root           687     2       0      0 rescuer_thread 0 S [bioset]             6
10089root           692     2       0      0 irq_thread 0 S [irq/382-fts]            6
10090root           693     2       0      0 worker_thread 0 S [kworker/1:1H]        6
10091root           698     2       0      0 issue_flush_thread 0 S [f2fs_flush-253:] 6
10092root           699     2       0      0 issue_discard_thread 0 S [f2fs_discard-25] 6
10093root           700     2       0      0 gc_thread_func 0 S [f2fs_gc-253:0]      7
10094system         702     1   20832   1856 futex_wait_queue_me 0 S time_daemon     time_daemon
10095root           726     2       0      0 irq_thread 0 S [irq/208-arm-smm]        7
10096root           728     2       0      0 irq_thread 0 S [irq/209-arm-smm]        7
10097root           729     2       0      0 irq_thread 0 S [irq/210-arm-smm]        7
10098root           732     2       0      0 rescuer_thread 0 S [ipa_interrupt_w]    7
10099root           733     2       0      0 rescuer_thread 0 S [ipawq36]            7
10100root           734     2       0      0 rescuer_thread 0 S [iparepwq36]         7
10101root           737     2       0      0 rescuer_thread 0 S [ipawq33]            7
10102root           741     2       0      0 rescuer_thread 0 S [iparepwq33]         7
10103root           742     2       0      0 rescuer_thread 0 S [ipawq32]            7
10104root           743     2       0      0 rescuer_thread 0 S [iparepwq32]         7
10105root           744     2       0      0 rescuer_thread 0 S [ipa_ut_dbgfs]       7
10106root           745     2       0      0 rescuer_thread 0 S [ipa_A7_svc]         7
10107root           746     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    7
10108root           747     2       0      0 rescuer_thread 0 S [clnt_req]           7
10109root           748     2       0      0 rescuer_thread 0 S [clnt_req]           7
10110root           749     2       0      0 rescuer_thread 0 S [clnt_resp]          7
10111root           767     2       0      0 rescuer_thread 0 S [at_usb0]            7
10112root           768     2       0      0 rescuer_thread 0 S [at_usb1]            7
10113root           769     2       0      0 rescuer_thread 0 S [qdss]               7
10114system         770     1   12472   2972 binder_ioctl 0 S [email protected] [email protected]
10115vendor_pixelstats_system 771 1 12572 2972 binder_ioctl 0 S [email protected] [email protected]
10116system         772     1 2120568   3888 binder_ioctl 0 S vr_hwc                 vr_hwc
10117system         773     1 2120208   4088 binder_ioctl 0 S [email protected] [email protected]
10118audioserver    774     1   47416  11624 binder_ioctl 0 S [email protected] [email protected]
10119hsm            775     1   18664   4040 binder_ioctl 0 S [email protected] [email protected]
10120bluetooth      776     1   25880   3240 binder_ioctl 0 S [email protected] [email protected]
10121cameraserver   777     1 2217452  18820 binder_ioctl 0 S [email protected]_64 [email protected]_64
10122media          778     1   11312   2296 binder_ioctl 0 S [email protected] [email protected]
10123system         780     1 2112732   2716 binder_ioctl 0 S [email protected] [email protected]
10124media          781     1   18456   2976 binder_ioctl 0 S [email protected] [email protected]
10125media          782     1   22832   3256 binder_ioctl 0 S [email protected] [email protected]
10126media          783     1   24856   3124 binder_ioctl 0 S [email protected] [email protected]
10127gps            784     1   42968   6320 binder_ioctl 0 S [email protected] [email protected]
10128system         786     1   12344   2628 binder_ioctl 0 S [email protected] [email protected]
10129system         787     1   12328   2700 binder_ioctl 0 S [email protected] [email protected]
10130system         788     1  488172   5540 binder_ioctl 0 S [email protected] [email protected]
10131nfc            789     1   20748   3124 binder_ioctl 0 S [email protected] [email protected]
10132hsm            790     1   17632   3892 binder_ioctl 0 S [email protected] [email protected]
10133hsm            797     1   17616   3988 binder_ioctl 0 S [email protected] [email protected]
10134wifi           798     1   22944   7480 binder_ioctl 0 S [email protected] [email protected]
10135system         799     1   15184   2364 hrtimer_nanosleep 0 S pixelstats-vendor pixelstats-vendor
10136radio          801     1   21820   2880 binder_ioctl 0 S [email protected] [email protected]
10137system         802     1   12376   2584 binder_ioctl 0 S [email protected] [email protected]
10138nobody         805     1   13532   2864 binder_ioctl 0 S [email protected] [email protected]
10139mediacodec     808     1   23440   4824 binder_ioctl 0 S [email protected] [email protected]
10140system         809     1   25160   2464 do_sigtimedwait 0 S pm-service          pm-service
10141system         810     1   17784   3516 hrtimer_nanosleep 0 S sensors.qti       sensors.qti
10142nobody         813     1   18488   1644 do_select 0 S rmt_storage               rmt_storage
10143vendor_rfs     815     1   12216   1680 do_sys_poll 0 S tftp_server             tftp_server
10144system         816     1   15456   1836 hrtimer_nanosleep 0 S pd-mapper         pd-mapper
10145root           817     1   10052   1888 do_sys_poll 0 S msm_irqbalance          msm_irqbalance
10146root           818     2       0      0 rescuer_thread 0 S [cdsp_IPCRTR]        8
10147audioserver    819     1   76548  10068 binder_ioctl 0 S audioserver            audioserver
10148system         820     1 2113016   3484 SyS_epoll_wait 0 S bufferhubd           bufferhubd
10149lmkd           821     1    9336   1776 SyS_epoll_wait 0 S lmkd                 lmkd
10150system         822     1 2109740   2600 SyS_epoll_wait 0 S performanced         performanced
10151system         829     1 2116672   3288 binder_ioctl 0 S thermalserviced        thermalserviced
10152system         830     1 2113500   2620 binder_ioctl 0 S virtual_touchpad       virtual_touchpad
10153root           854     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
10154root           858     1   17688   1708 do_sys_poll 0 S subsystem_ramdump       subsystem_ramdump
10155root           859     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
10156root           860     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
10157graphics       861     1   19952   3128 do_sys_poll 0 S mm-pp-dpps              mm-pp-dpps
10158shell          864     1   18004   2200 hrtimer_nanosleep 0 S diag_mdlog        diag_mdlog
10159nobody         866     1   10980   1824 do_sys_poll 0 S traced                  traced
10160root           869     1   69636   1972 SyS_rt_sigsuspend 0 S thermal-engine    thermal-engine
10161media          870     1   14448   1860 do_sys_poll 0 S adsprpcd                adsprpcd
10162root           873     2       0      0 worker_thread 0 S [kworker/3:1H]        8
10163system         875     1   14580   1812 do_sys_poll 0 S cdsprpcd                cdsprpcd
10164system         876     1   15456   1804 do_select 0 S imsqmidaemon              imsqmidaemon
10165radio          878     1 2143192   5332 SyS_epoll_wait 0 S cnd                  cnd
10166radio          879     1  128652   7764 __skb_wait_for_more_packets 0 S netmgrd netmgrd
10167radio          880     1   13580   1544 futex_wait_queue_me 0 S port-bridge     port-bridge
10168radio          882     1   20868   2816 futex_wait_queue_me 0 S ipacm           ipacm
10169cameraserver   884     1   28784   7552 binder_ioctl 0 S cameraserver           cameraserver
10170drm            885     1   20976   6280 binder_ioctl 0 S drmserver              drmserver
10171incidentd      886     1 2115860   3124 SyS_epoll_wait 0 S incidentd            incidentd
10172root           887     1 2122916   4924 binder_ioctl 0 S installd               installd
10173keystore       888     1 2119284   4832 binder_ioctl 0 S keystore               keystore
10174media          890     1 2126588   4068 binder_ioctl 0 S mediadrmserver         mediadrmserver
10175mediaex        893     1 2173056  11264 binder_ioctl 0 S media.extractor        mediaextractor
10176media          894     1 2138920   7616 binder_ioctl 0 S media.metrics          mediametrics
10177media          900     1  202456  13224 binder_ioctl 0 S mediaserver            mediaserver
10178statsd         901     1 203500428 32784 SyS_epoll_wait 0 S statsd              statsd
10179root           902     1 2120808   4908 binder_ioctl 0 S storaged               storaged
10180wifi           903     1 2114448   4320 SyS_epoll_wait 0 S wificond             wificond
10181mediacodec     904     1   40636  10068 binder_ioctl 0 S media.codec            [email protected]
10182nobody         906     1   19336   2584 binder_ioctl 0 S easelmanagerd          easelmanagerd
10183radio          907     1  115140  16516 binder_ioctl 0 S qcrild                 qcrild
10184root           914     2       0      0 rescuer_thread 0 S [adsp]               9
10185root           915     2       0      0 rescuer_thread 0 S [lpass_IPCRTR]       9
10186system         938     1   26536   3756 do_sys_poll 0 S cnss-daemon             cnss-daemon
10187gps            939     1   14460   1912 futex_wait_queue_me 0 S loc_launcher    loc_launcher
10188system         940     1   19800   4028 do_sys_poll 0 S chre                    chre
10189system         942     1 2115044   4688 binder_ioctl 0 S gatekeeperd            gatekeeperd
10190root           943     1 2115816   3120 binder_ioctl 0 S perfprofd              perfprofd
10191root           944     2       0      0 rescuer_thread 0 S [modem]              9
10192tombstoned     945     1    9100   1704 SyS_epoll_wait 0 S tombstoned           tombstoned
10193root           957     1 2117960   5468 SyS_epoll_wait 0 S update_engine        update_engine
10194system         958     1   17728   3268 binder_ioctl 0 S [email protected] [email protected]
10195root           960     1   29056   5732 do_sys_poll 0 S adbd                    adbd
10196root           986     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
10197root           987     2       0      0 kthread_worker_fn 0 S [msm_slim_qmi_cl] 9
10198root           988     2       0      0 kthread_worker_fn 0 S [msm_slim_qmi_cl] 9
10199gps            992   939 2132140   3684 futex_wait_queue_me 0 S lowi-server     lowi-server
10200gps            993   939   24736   4880 __skb_wait_for_more_packets 0 S xtra-daemon xtra-daemon
10201root           994     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
10202root          1001     2       0      0 worker_thread 0 S [kworker/2:1H]        1
10203root          1005     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    1
10204root          1014     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    1
10205root          1021     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    1
10206root          1031     2       0      0 irq_thread 0 S [irq/211-arm-smm]        1
10207root          1036     2       0      0 irq_thread 0 S [irq/212-arm-smm]        1
10208root          1037     2       0      0 irq_thread 0 S [irq/213-arm-smm]        1
10209root          1054     2       0      0 worker_thread 0 S [kworker/u16:9]       1
10210root          1057     2       0      0 worker_thread 0 S [kworker/u16:10]      1
10211root          1065     2       0      0 irq_thread 0 S [irq/311-wcd9xxx]        1
10212root          1074     2       0      0 diag_socket_read 0 S [kworker/u16:11]   1
10213root          1106     2       0      0 rescuer_thread 0 S [qmi_wq]             1
10214root          1107     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    1
10215root          1116     2       0      0 diag_socket_read 0 S [kworker/u16:12]   1
10216root          1147     2       0      0 worker_thread 0 S [kworker/u16:13]      1
10217root          1153     2       0      0 rescuer_thread 0 S [wdsp_glink_wq]      1
10218root          1245     2       0      0 rescuer_thread 0 S [mpss_IPCRTR]        1
10219root          1274     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
10220root          1275     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
10221root          1276     2       0      0 diag_socket_read 0 S [kworker/u16:14]   1
10222root          1308     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
10223root          1311     2       0      0 worker_thread 0 S [kworker/u16:15]      1
10224root          1312     2       0      0 diag_socket_read 0 S [kworker/u16:16]   1
10225root          1316     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
10226root          1414     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
10227root          1684     2       0      0 rescuer_thread 0 S [ipawq13]            1
10228root          1685     2       0      0 rescuer_thread 0 S [iparepwq13]         1
10229root          1686     2       0      0 rescuer_thread 0 S [ipawq15]            1
10230root          1687     2       0      0 rescuer_thread 0 S [iparepwq15]         1
10231system        4445     1   16428   2836 hrtimer_nanosleep 0 S pm-proxy          pm-proxy
10232system        8500     1 2137592   5000 do_select 0 S imsdatadaemon             imsdatadaemon
10233system        8501     1   31892   5668 binder_ioctl 0 S ims_rtp_daemon         ims_rtp_daemon
10234system        8523     1   29496   4976 binder_ioctl 0 S imsrcsd                imsrcsd
10235root          8613     2       0      0 rescuer_thread 0 S [ipawq34]            8
10236root          8614     2       0      0 rescuer_thread 0 S [iparepwq34]         8
10237root          8615     2       0      0 rescuer_thread 0 S [ipawq35]            8
10238root          8616     2       0      0 rescuer_thread 0 S [iparepwq35]         8
10239root          8857     1 2132540   5200 binder_ioctl 0 S netd                   netd
10240system        8858     1 2173880  27396 SyS_epoll_wait 0 S surfaceflinger       surfaceflinger
10241root          8859     1 4258048  76132 do_sys_poll 0 S zygote64                app_process64
10242root          8860     1 1587776  67332 do_sys_poll 0 S zygote                  app_process32
10243root          8861  8857    9268   2236 pipe_read 0 S iptables-restore          iptables
10244root          8862  8857    9280   2352 pipe_read 0 S ip6tables-restore         ip6tables
10245root          8937     2       0      0 rescuer_thread 0 S [dsi_err_workq]      8
10246system        8943  8859 4993112 394400 SyS_epoll_wait 0 S system_server        app_process64
10247system        9012     1   32424   6676 futex_wait_queue_me 0 S [email protected] [email protected]
10248bluetooth     9083  8859 3735940  66148 SyS_epoll_wait 0 S com.android.bluetooth app_process64
10249u0_a83        9090  8859 3750300  90204 SyS_epoll_wait 0 S com.google.android.inputmethod.latin app_process64
10250u0_a45        9105  8859 3832456 144012 SyS_epoll_wait 0 S com.android.systemui app_process64
10251webview_zygote 9144 8860 1594760  30088 do_sys_poll 0 S webview_zygote          app_process32
10252radio         9229  8859 3687804  51028 SyS_epoll_wait 0 S .dataservices        app_process64
10253radio         9245  8859 3681544  49744 SyS_epoll_wait 0 S com.qualcomm.qti.telephonyservice app_process64
10254radio         9256  8859 3679696  46396 SyS_epoll_wait 0 S com.google.android.grilservice app_process64
10255radio         9271  8859 3732524  74780 SyS_epoll_wait 0 S com.android.phone    app_process64
10256u0_a70        9298  8859 3743772 115536 SyS_epoll_wait 0 S com.google.android.setupwizard app_process64
10257u0_a7         9337  8859 3687456  53248 SyS_epoll_wait 0 S com.google.android.ext.services app_process64
10258root          9674     2       0      0 irq_thread 0 S [irq/80-1436400.]        9
10259root          9677     2       0      0 irq_thread 0 S [irq/81-114a000.]        9
10260u0_a29        9697  8859 3683760  51784 SyS_epoll_wait 0 S com.google.modemservice app_process64
10261u0_a12        9714  8859 3695396  53764 SyS_epoll_wait 0 S com.google.process.gservices app_process64
10262nfc           9748  8859 3761160  64260 SyS_epoll_wait 0 S com.android.nfc      app_process64
10263secure_element 9762 8859 3680552  46104 SyS_epoll_wait 0 S com.android.se       app_process64
10264radio         9786  8859 3682456  50988 SyS_epoll_wait 0 S com.android.ims.rcsservice app_process64
10265system        9806  8859 3680124  46120 SyS_epoll_wait 0 S com.google.SSRestartDetector app_process64
10266u0_a71        9827  8859 3683028  46976 SyS_epoll_wait 0 S com.qualcomm.qti.services.secureui:sui_service app_process64
10267u0_a12        9871  8859 3806712 110568 SyS_epoll_wait 0 S com.google.android.gms.persistent app_process64
10268u0_a147       9882  8859 3705228  65716 SyS_epoll_wait 0 S com.google.android.projection.gearhead:shared app_process64
10269u0_a43        9898  8859 3688640  53312 SyS_epoll_wait 0 S com.google.android.apps.dreamliner app_process64
10270radio         9935  8859 3680508  46980 SyS_epoll_wait 0 S com.qualcomm.qcrilmsgtunnel app_process64
10271u0_a36        9953  8859 3705896  64180 SyS_epoll_wait 0 S com.google.android.apps.pixelmigrate app_process64
10272u0_a50       10010  8860 1024252  51748 SyS_epoll_wait 0 S com.google.android.as app_process32
10273u0_a20       10023  8859 3788812 112744 SyS_epoll_wait 0 S com.google.android.apps.nexuslauncher app_process64
10274u0_a69       10049  8860 1097144  70688 SyS_epoll_wait 0 S com.android.vending  app_process32
10275u0_a12       10190  8859 3938624 118908 SyS_epoll_wait 0 S com.google.android.gms app_process64
10276system       10640  8859 3682004  46128 SyS_epoll_wait 0 S com.qti.diagservices app_process64
10277u0_a44       11200  8859 3690728  58228 SyS_epoll_wait 0 S com.google.android.apps.turbo:aab app_process64
10278u0_a119      12376  8859 3682664  46172 SyS_epoll_wait 0 S com.qualcomm.telephony app_process64
10279root         16180     2       0      0 worker_thread 0 S [kworker/u16:18]      1
10280wifi         16539     1 2125968   6012 do_select 0 S wpa_supplicant            wpa_supplicant
10281root         16565     2       0      0 cds_mc_thread 0 S [cds_mc_thread]       1
10282root         16566     2       0      0 cds_ol_rx_thread 0 S [cds_ol_rx_threa]  1
10283root         16567     2       0      0 rescuer_thread 0 S [wmi_rx_event_wo]    1
10284system       23597  8859 3914192 136096 SyS_epoll_wait 0 S com.android.settings app_process64
10285u0_a47       23620  8859 3776888 102200 SyS_epoll_wait 0 S com.google.android.packageinstaller app_process64
10286u0_a27       23932  8859 3678876  50920 SyS_epoll_wait 0 S com.android.providers.calendar app_process64
10287root         23997     2       0      0 worker_thread 0 S [kworker/5:0]         2
10288root         24050     2       0      0 worker_thread 0 S [kworker/5:1]         2
10289u0_a148      24056  8859 3684880  49040 SyS_epoll_wait 0 S com.android.pixellogger app_process64
10290u0_a17       24075  8859 3680640  51812 SyS_epoll_wait 0 S android.process.media app_process64
10291u0_a24       24589  8859 3685336  57968 SyS_epoll_wait 0 S android.process.acore app_process64
10292root         24730     2       0      0 worker_thread 0 S [kworker/0:0]         2
10293root         25105     2       0      0 worker_thread 0 S [kworker/7:0]         2
10294root         25165     2       0      0 worker_thread 0 S [kworker/6:0]         2
10295root         25210     2       0      0 worker_thread 0 S [kworker/3:1]         2
10296root         25239     2       0      0 worker_thread 0 S [kworker/2:0]         2
10297root         25244     2       0      0 worker_thread 0 S [kworker/4:0]         2
10298root         25249     2       0      0 worker_thread 0 S [kworker/1:1]         2
10299root         25252     2       0      0 worker_thread 0 S [kworker/3:0]         2
10300root         25259     2       0      0 worker_thread 0 S [kworker/2:1]         2
10301root         25261     2       0      0 worker_thread 0 S [kworker/1:0]         2
10302root         25262     2       0      0 worker_thread 0 S [kworker/0:1]         2
10303root         25264     2       0      0 worker_thread 0 S [kworker/1:2]         2
10304root         25265     2       0      0 worker_thread 0 S [kworker/3:2]         2
10305root         25266     2       0      0 worker_thread 0 S [kworker/1:3]         2
10306root         25267     2       0      0 worker_thread 0 S [kworker/2:2]         2
10307root         25268     2       0      0 worker_thread 0 S [kworker/3:3]         2
10308u0_a96       25304  8859 4430752  86484 SyS_epoll_wait 0 S com.google.android.apps.maps app_process64
10309u0_a124      25341  8859 3717600  69176 SyS_epoll_wait 0 S com.google.android.gm app_process64
10310u0_a12       25365  8859 3682276  52136 SyS_epoll_wait 0 S com.google.process.gapps app_process64
10311u0_a78       25409  8859 3770648  82424 SyS_epoll_wait 0 S com.google.android.apps.docs app_process64
10312root         25432     2       0      0 worker_thread 0 S [kworker/4:1]         2
10313root         25433     2       0      0 worker_thread 0 S [kworker/4:2]         2
10314root         25483     2       0      0 worker_thread 0 S [kworker/u16:17]      2
10315u0_a64       25496  8859 3678244  46980 SyS_epoll_wait 0 S com.android.defcontainer app_process64
10316system       25527  8859 3678352  48012 SyS_epoll_wait 0 S com.android.keychain app_process64
10317u0_a69       25538  8860 1035068  57408 SyS_epoll_wait 0 S com.android.vending:instant_app_installer app_process32
10318root         25606     2       0      0 worker_thread 0 S [kworker/0:2]         2
10319root         27492     2       0      0 worker_thread 0 S [kworker/0:3]         2
10320root         27493     2       0      0 worker_thread 0 S [kworker/0:4]         2
10321nobody       27506     1   10980   2116 do_sys_poll 0 S traced_probes           traced_probes
10322root         27528   960    8740   1708 SyS_rt_sigsuspend 0 S sh                sh
10323root         27530 27528    8740    728 SyS_rt_sigsuspend 0 S sh                sh
10324root         27531 27530   10496   2116 0       0 R ps                          toybox
10325USER           PID   TID CMD
10326root             1     1 init
10327root             2     2 kthreadd
10328root             3     3 ksoftirqd/0
10329root             5     5 kworker/0:0H
10330root             6     6 kworker/u16:0
10331root             7     7 rcu_preempt
10332root             8     8 rcu_sched
10333root             9     9 rcu_bh
10334root            10    10 rcuop/0
10335root            11    11 rcuos/0
10336root            12    12 rcuob/0
10337root            13    13 migration/0
10338root            14    14 lru-add-drain
10339root            15    15 cpuhp/0
10340root            16    16 cpuhp/1
10341root            17    17 migration/1
10342root            18    18 ksoftirqd/1
10343root            20    20 kworker/1:0H
10344root            21    21 rcuop/1
10345root            22    22 rcuos/1
10346root            23    23 rcuob/1
10347root            24    24 cpuhp/2
10348root            25    25 migration/2
10349root            26    26 ksoftirqd/2
10350root            28    28 kworker/2:0H
10351root            29    29 rcuop/2
10352root            30    30 rcuos/2
10353root            31    31 rcuob/2
10354root            32    32 cpuhp/3
10355root            33    33 migration/3
10356root            34    34 ksoftirqd/3
10357root            36    36 kworker/3:0H
10358root            37    37 rcuop/3
10359root            38    38 rcuos/3
10360root            39    39 rcuob/3
10361root            40    40 cpuhp/4
10362root            41    41 migration/4
10363root            42    42 ksoftirqd/4
10364root            44    44 kworker/4:0H
10365root            45    45 rcuop/4
10366root            46    46 rcuos/4
10367root            47    47 rcuob/4
10368root            48    48 cpuhp/5
10369root            49    49 migration/5
10370root            50    50 ksoftirqd/5
10371root            52    52 kworker/5:0H
10372root            53    53 rcuop/5
10373root            54    54 rcuos/5
10374root            55    55 rcuob/5
10375root            56    56 cpuhp/6
10376root            57    57 migration/6
10377root            58    58 ksoftirqd/6
10378root            60    60 kworker/6:0H
10379root            61    61 rcuop/6
10380root            62    62 rcuos/6
10381root            63    63 rcuob/6
10382root            64    64 cpuhp/7
10383root            65    65 migration/7
10384root            66    66 ksoftirqd/7
10385root            68    68 kworker/7:0H
10386root            69    69 rcuop/7
10387root            70    70 rcuos/7
10388root            71    71 rcuob/7
10389root            72    72 netns
10390root            74    74 ipa_usb_wq
10391root            76    76 msm_watchdog
10392root            77    77 smem_native_sps
10393root            78    78 spss_mailbox_gl
10394root            79    79 qmp_aop
10395root            80    80 smem_native_mps
10396root            81    81 mpss_smem_glink
10397root            82    82 smem_native_lpa
10398root            83    83 lpass_smem_glin
10399root            84    84 smem_native_dsp
10400root            85    85 dsps_smem_glink
10401root            86    86 smem_native_cds
10402root            87    87 cdsp_smem_glink
10403root            88    88 khungtaskd
10404root            89    89 oom_reaper
10405root            90    90 writeback
10406root            91    91 kcompactd0
10407root            92    92 crypto
10408root            93    93 bioset
10409root            94    94 kblockd
10410root            95    95 irq/160-arm-smm
10411root            96    96 irq/161-arm-smm
10412root            97    97 irq/170-arm-smm
10413root            98    98 kworker/u17:0
10414root            99    99 irq/125-tsens-u
10415root           100   100 irq/126-tsens-c
10416root           101   101 irq/127-tsens-u
10417root           102   102 irq/128-tsens-c
10418root           103   103 edac-poller
10419root           104   104 system
10420root           105   105 easel_mem
10421root           106   106 ipa_power_mgmt
10422root           107   107 transport_power
10423root           108   108 ipa_rm_wq
10424root           109   109 devfreq_wq
10425root           110   110 governor_msm_ad
10426root           111   111 cfg80211
10427root           112   112 irq/541-ibb-sc-
10428root           113   113 irq/542-lab-sc-
10429root           115   115 irq/75-qpnp_wle
10430root           116   116 irq/76-qpnp_wle
10431root           142   142 kswapd0
10432root           143   143 vmstat
10433root           144   144 ecryptfs-kthrea
10434root           193   193 irq/174-arm-smm
10435root           194   194 irq/175-arm-smm
10436root           195   195 irq/91-eud_irq
10437root           196   196 glink_ssr_wq
10438root           197   197 glink_lbsrv
10439root           198   198 spi_wdsp
10440root           199   199 wdsp_spi_glink_
10441root           200   200 glink_xprt_wq
10442root           201   201 IPCRTR_mpss_sme
10443root           202   202 IPCRTR_lpass_sm
10444root           203   203 IPCRTR_dsps_sme
10445root           204   204 IPCRTR_cdsp_sme
10446root           205   205 glink_pkt_wq
10447root           206   206 irq/176-arm-smm
10448root           207   207 qmi_svc_event_w
10449root           208   208 msm_ipc_router
10450root           209   209 servloc_wq
10451root           210   210 irq/177-arm-smm
10452root           211   211 irq/178-arm-smm
10453root           212   212 hwrng
10454root           214   214 diag_real_time_
10455root           215   215 diag_wq
10456root           216   216 DIAG_USB_diag
10457root           217   217 diag_cntl_wq
10458root           218   218 diag_dci_wq
10459root           219   219 DIAG_SOCKMODEM_
10460root           220   220 DIAG_SOCKMODEM_
10461root           221   221 DIAG_SOCKMODEM_
10462root           222   222 DIAG_SOCKMODEM_
10463root           223   223 DIAG_SOCKMODEM_
10464root           224   224 DIAG_SOCKLPASS_
10465root           225   225 DIAG_SOCKLPASS_
10466root           226   226 DIAG_SOCKLPASS_
10467root           227   227 DIAG_SOCKLPASS_
10468root           228   228 DIAG_SOCKLPASS_
10469root           229   229 DIAG_SOCKWCNSS_
10470root           230   230 DIAG_SOCKWCNSS_
10471root           231   231 DIAG_SOCKWCNSS_
10472root           232   232 DIAG_SOCKWCNSS_
10473root           233   233 DIAG_SOCKWCNSS_
10474root           234   234 DIAG_SOCKSENSOR
10475root           235   235 DIAG_SOCKSENSOR
10476root           236   236 DIAG_SOCKSENSOR
10477root           237   237 DIAG_SOCKSENSOR
10478root           238   238 DIAG_SOCKSENSOR
10479root           239   239 DIAG_SOCKDIAG_C
10480root           240   240 DIAG_SOCKDIAG_D
10481root           241   241 DIAG_SOCKDIAG_C
10482root           242   242 DIAG_SOCKDIAG_D
10483root           243   243 DIAG_SOCKDIAG_D
10484root           244   244 DIAG_SOCKCDSP_C
10485root           245   245 DIAG_SOCKCDSP_D
10486root           246   246 DIAG_SOCKCDSP_C
10487root           247   247 DIAG_SOCKCDSP_D
10488root           248   248 DIAG_SOCKCDSP_D
10489root           249   249 DIAG_CNTL_SOCKE
10490root           250   250 DIAG_GLINK_DIAG
10491root           251   251 DIAG_GLINK_DIAG
10492root           252   252 DIAG_GLINK_DIAG
10493root           253   253 DIAG_GLINK_DIAG
10494root           254   254 DIAG_GLINK_DIAG
10495root           255   255 kworker/u16:1
10496root           256   256 kgsl-workqueue
10497root           257   257 kgsl-mementry
10498root           258   258 kgsl_worker_thr
10499root           259   259 kworker/u16:2
10500root           260   260 bioset
10501root           261   261 bioset
10502root           262   262 bioset
10503root           263   263 bioset
10504root           264   264 bioset
10505root           265   265 bioset
10506root           266   266 bioset
10507root           267   267 bioset
10508root           268   268 irq/171-arm-smm
10509root           269   269 bioset
10510root           271   271 bioset
10511root           272   272 bioset
10512root           273   273 bioset
10513root           274   274 irq/162-arm-smm
10514root           275   275 bioset
10515root           276   276 bioset
10516root           277   277 bioset
10517root           278   278 bioset
10518root           279   279 bioset
10519root           280   280 bioset
10520root           281   281 bioset
10521root           282   282 bioset
10522root           283   283 bioset
10523root           284   284 bioset
10524root           285   285 bioset
10525root           286   286 bioset
10526root           287   287 bioset
10527root           288   288 irq/163-arm-smm
10528root           289   289 irq/179-arm-smm
10529root           290   290 memory_wq
10530root           292   292 kworker/u16:3
10531root           293   293 irq/180-arm-smm
10532root           294   294 irq/164-arm-smm
10533root           295   295 irq/181-arm-smm
10534root           296   296 irq/182-arm-smm
10535root           297   297 qcrypto_seq_res
10536root           298   298 irq/183-arm-smm
10537root           319   319 scsi_eh_0
10538root           320   320 scsi_tmf_0
10539root           321   321 crtc_commit:111
10540root           322   322 crtc_event:111
10541root           323   323 crtc_commit:163
10542root           324   324 crtc_event:163
10543root           325   325 pp_event
10544root           326   326 ufs_pm_qos_0
10545root           328   328 ufs_clk_gating_
10546root           329   329 ufs_mgc_hibern8
10547root           330   330 ice-set-key
10548root           331   331 spi10
10549root           332   332 spi32766
10550root           333   333 spi0
10551root           334   334 spi32765
10552root           335   335 bond0
10553root           338   338 sharedmem_qmi_w
10554root           339   339 qmi_hndl0000000
10555root           343   343 uether
10556root           344   344 k_ipa_usb
10557root           347   347 kgsl-events
10558root           348   348 irq/378-soc:fp_
10559root           349   349 kgsl_devfreq_wq
10560root           350   350 msm_vidc_worker
10561root           351   351 pm_workerq_venu
10562root           353   353 irq/184-arm-smm
10563root           354   354 irq/185-arm-smm
10564root           355   355 irq/186-arm-smm
10565root           356   356 irq/187-arm-smm
10566root           357   357 rot_commitq_0_0
10567root           358   358 rot_commitq_0_1
10568root           359   359 rot_doneq_0_0
10569root           360   360 rot_doneq_0_1
10570root           361   361 rot_fenceq_0_0
10571root           362   362 rot_fenceq_0_1
10572root           363   363 rot_fenceq_0_2
10573root           364   364 rot_fenceq_0_3
10574root           365   365 rot_fenceq_0_4
10575root           366   366 rot_fenceq_0_5
10576root           367   367 rot_fenceq_0_6
10577root           368   368 rot_fenceq_0_7
10578root           369   369 rot_fenceq_0_8
10579root           370   370 rot_fenceq_0_9
10580root           371   371 rot_fenceq_0_10
10581root           372   372 rot_fenceq_0_11
10582root           373   373 rot_fenceq_0_12
10583root           374   374 rot_fenceq_0_13
10584root           375   375 rot_fenceq_0_14
10585root           376   376 rot_fenceq_0_15
10586root           377   377 cam-cpas
10587root           378   378 qcom,cam_virtua
10588root           379   379 irq/188-arm-smm
10589root           380   380 qcom,cam170-cpa
10590root           381   381 irq/189-arm-smm
10591root           382   382 cam_cci_wq
10592root           383   383 cam_cci_wq
10593root           384   384 irq/190-arm-smm
10594root           385   385 irq/191-arm-smm
10595root           386   386 irq/192-arm-smm
10596root           387   387 irq/193-arm-smm
10597root           388   388 irq/709-chg-err
10598root           389   389 irq/710-chg-sta
10599root           390   390 irq/714-otg-fai
10600root           391   391 irq/715-otg-ove
10601root           392   392 irq/716-otg-oc-
10602root           393   393 irq/717-testmod
10603root           394   394 irq/718-bat-tem
10604root           395   395 irq/719-bat-ocp
10605root           396   396 irq/720-bat-ov
10606root           397   397 irq/721-bat-low
10607root           398   398 irq/722-bat-the
10608root           399   399 irq/723-bat-ter
10609root           400   400 irq/724-usbin-c
10610root           401   401 irq/725-usbin-l
10611root           402   402 irq/726-usbin-u
10612root           403   403 irq/727-usbin-o
10613root           404   404 irq/728-usbin-p
10614root           405   405 irq/729-usbin-s
10615root           406   406 irq/730-usbin-i
10616root           407   407 irq/731-type-c-
10617root           408   408 irq/732-dcin-co
10618root           409   409 irq/733-dcin-lt
10619root           410   410 irq/734-dcin-uv
10620root           411   411 irq/735-dcin-ov
10621root           412   412 irq/736-dcin-pl
10622root           413   413 irq/737-div2-en
10623root           414   414 irq/738-dcin-ic
10624root           415   415 irq/740-wdog-ba
10625root           416   416 irq/741-aicl-fa
10626root           418   418 irq/742-aicl-do
10627root           419   419 kworker/4:4
10628root           420   420 irq/743-high-du
10629root           422   422 irq/744-input-c
10630root           424   424 irq/745-tempera
10631root           425   425 irq/746-switche
10632root           426   426 bioset
10633root           428   428 irq/381-p9221-i
10634root           429   429 irq/293-p9221-i
10635root           430   430 bioset
10636root           431   431 bioset
10637root           432   432 bioset
10638root           433   433 irq/29-i2c_pmic
10639root           434   434 bioset
10640root           435   435 irq/70-bcl-high
10641root           436   436 bioset
10642root           437   437 irq/72-bcl-low-
10643root           438   438 bioset
10644root           439   439 bioset
10645root           440   440 irq/543-limits_
10646root           441   441 bioset
10647root           442   442 kworker/7:3
10648root           443   443 kworker/u16:4
10649root           445   445 kworker/u16:5
10650root           446   446 kworker/u16:6
10651root           447   447 kworker/u16:7
10652root           448   448 kworker/u16:8
10653root           449   449 irq/544-limits_
10654root           450   450 qmi_tmd_wq
10655root           451   451 dm_bufio_cache
10656root           452   452 irq/99-KRYO3XX
10657root           453   453 irq/371-s2mpb04
10658root           454   454 irq/287-s2mpb04
10659root           455   455 irq/52-vendor:e
10660root           456   456 irq/194-arm-smm
10661root           457   457 uaudio_svc
10662root           458   458 qmi_hndl0000000
10663root           459   459 apr_driver
10664root           460   460 ipv6_addrconf
10665root           461   461 irq/880-adsp
10666root           462   462 sysmon_wq
10667root           463   463 irq/912-slpi
10668root           464   464 irq/944-cdsp
10669root           465   465 irq/848-modem
10670root           472   472 irq/38-sig-tx
10671root           473   473 irq/64-sig-rx
10672root           474   474 usbpd0
10673root           475   475 usbpd0
10674root           476   476 irq/1040-soc-up
10675root           477   477 irq/1041-soc-re
10676root           478   478 irq/1042-bsoc-d
10677root           479   479 irq/1043-msoc-d
10678root           480   480 irq/1044-msoc-l
10679root           481   481 irq/1045-msoc-e
10680root           482   482 irq/1046-msoc-h
10681root           483   483 irq/1047-msoc-f
10682root           484   484 irq/1048-vbatt-
10683root           485   485 irq/1049-vbatt-
10684root           486   486 irq/1050-esr-de
10685root           487   487 irq/1051-batt-m
10686root           488   488 irq/1052-batt-t
10687root           489   489 irq/1053-ima-rd
10688root           490   490 irq/1054-mem-xc
10689root           491   491 irq/1055-dma-gr
10690root           492   492 irq/36-qcom,tem
10691root           493   493 irq/536-pwr_eve
10692root           494   494 irq/535-dp_hs_p
10693root           495   495 irq/538-dm_hs_p
10694root           496   496 irq/537-ss_phy_
10695root           497   497 irq/195-arm-smm
10696root           498   498 usb_bam_wq
10697root           499   499 core_ctl/0
10698root           500   500 core_ctl/4
10699root           509   509 rq_stats
10700root           510   510 irq/196-arm-smm
10701root           511   511 irq/197-arm-smm
10702root           512   512 irq/198-arm-smm
10703root           513   513 irq/199-arm-smm
10704root           514   514 irq/200-arm-smm
10705root           515   515 irq/201-arm-smm
10706root           516   516 irq/202-arm-smm
10707root           517   517 irq/203-arm-smm
10708root           518   518 irq/204-arm-smm
10709root           519   519 irq/205-arm-smm
10710root           520   520 irq/206-arm-smm
10711root           521   521 set_state_work
10712root           522   522 sb-1
10713root           523   523 ngd_rx_thread1
10714root           524   524 irq/309-mnh-rea
10715root           525   525 ngd_notify_sl1
10716root           526   526 sb-3
10717root           527   527 ngd_rx_thread3
10718root           528   528 ngd_notify_sl3
10719root           529   529 tbn_event_proce
10720root           530   530 irq/79-qpnp_fla
10721root           531   531 irq/78-qpnp_fla
10722root           532   532 irq/77-qpnp_fla
10723root           533   533 irq/1057-mnh_pc
10724root           534   534 irq/1058-mnh_pc
10725root           535   535 irq/1059-mnh_pc
10726root           536   536 irq/1060-mnh_pc
10727root           537   537 irq/1061-mnh_pc
10728root           538   538 irq/1064-mnh_pc
10729root           539   539 irq/1065-mnh_pc
10730root           540   540 irq/207-arm-smm
10731root           542   542 kworker/5:1H
10732root           543   543 ext4-rsv-conver
10733root           545   545 kworker/4:1H
10734root           546   546 jbd2/sdf2-8
10735root           547   547 ext4-rsv-conver
10736root           548   548 ext4-rsv-conver
10737root           549   549 ext4-rsv-conver
10738root           550   550 init
10739root           551   551 init
10740root           552   552 ueventd
10741root           553   553 kworker/7:1H
10742root           556   556 irq/319-max1720
10743root           560   560 kworker/6:3
10744root           570   570 kworker/u17:1
10745logd           571   571 logd
10746logd           571   579 logd.daemon
10747logd           571   580 logd.reader
10748logd           571   581 logd.writer
10749logd           571   582 logd.control
10750logd           571   589 logd.klogd
10751logd           571   590 logd.auditd
10752root           572   572 kworker/6:1H
10753system         573   573 qseecomd
10754system         574   574 [email protected]
10755root           576   576 sugov:0
10756root           577   577 sugov:4
10757root           578   578 kworker/0:1H
10758root           583   583 kauditd
10759root           585   585 Binder:585_2
10760root           585   671 Binder:585_1
10761root           585   672 Binder:585_2
10762root           585   673 Binder:585_3
10763root           585   697 Binder:585_4
10764root           585   721 Binder:585_5
10765system         586   586 hwservicemanage
10766system         591   591 qseecomd
10767system         591   592 qseecomd
10768system         591   593 qseecomd
10769system         591   594 qseecomd
10770system         591   595 qseecomd
10771system         591   596 qseecomd
10772system         591   597 qseecomd
10773system         591   598 qseecomd
10774system         591   599 qseecomd
10775system         591   601 qseecomd
10776root           606   606 jbd2/sda20-8
10777root           607   607 ext4-rsv-conver
10778system         608   608 servicemanager
10779system         609   609 vndservicemanag
10780root           611   611 [email protected]
10781system         612   612 [email protected]
10782hsm            613   613 [email protected]
10783hsm            614   614 citadeld
10784hsm            614   627 citadeld
10785hsm            614   628 Binder:614_1
10786hsm            614  1108 Binder:614_2
10787system         616   616 sscrpcd
10788system         616   680 sscrpcd
10789system         616   681 sscrpcd
10790system         619   619 [email protected]
10791system         619   625 Binder:619_1
10792system         619   626 Binder:619_2
10793system         619   633 HWC_UeventThrea
10794system         619   644 SDM_EventThread
10795system         619   656 [email protected]
10796system         619   657 HwBinder:619_1
10797system         619   658 HwBinder:619_2
10798system         620   620 [email protected]
10799system         620   637 HwBinder:620_1
10800system         620   640 HwBinder:620_2
10801system         621   621 vendor.qti.hard
10802system         621  1126 HwBinder:621_1
10803system         621  1127 HwBinder:621_2
10804root           645   645 irq/165-arm-smm
10805root           646   646 cds_recovery_wo
10806root           647   647 wlan_logging_th
10807root           670   670 irq/372-cs35l36
10808root           674   674 irq/297-cs35l36
10809root           676   676 dsps_IPCRTR
10810root           678   678 qmi_hndl0000000
10811root           679   679 qmi_hndl0000000
10812root           683   683 qmi_hndl0000000
10813root           686   686 kdmflush
10814root           687   687 bioset
10815root           692   692 irq/382-fts
10816root           693   693 kworker/1:1H
10817root           698   698 f2fs_flush-253:
10818root           699   699 f2fs_discard-25
10819root           700   700 f2fs_gc-253:0
10820system         702   702 time_daemon
10821system         702   707 time_daemon
10822system         702   708 time_daemon
10823system         702   709 time_daemon
10824system         702   710 time_daemon
10825system         702  1314 time_daemon
10826root           726   726 irq/208-arm-smm
10827root           728   728 irq/209-arm-smm
10828root           729   729 irq/210-arm-smm
10829root           732   732 ipa_interrupt_w
10830root           733   733 ipawq36
10831root           734   734 iparepwq36
10832root           737   737 ipawq33
10833root           741   741 iparepwq33
10834root           742   742 ipawq32
10835root           743   743 iparepwq32
10836root           744   744 ipa_ut_dbgfs
10837root           745   745 ipa_A7_svc
10838root           746   746 qmi_hndl0000000
10839root           747   747 clnt_req
10840root           748   748 clnt_req
10841root           749   749 clnt_resp
10842root           767   767 at_usb0
10843root           768   768 at_usb1
10844root           769   769 qdss
10845system         770   770 [email protected]
10846vendor_pixelstats_system 771 771 [email protected]
10847system         772   772 vr_hwc
10848system         772   803 Binder:772_1
10849system         772   804 HwBinder:772_1
10850system         772   806 Binder:772_2
10851system         773   773 neuralnetworks@
10852system         773   837 neuralnetworks@
10853system         773   838 neuralnetworks@
10854system         773 13091 HwBinder:773_1
10855audioserver    774   774 [email protected]
10856audioserver    774   856 Binder:774_1
10857audioserver    774   857 Binder:774_2
10858audioserver    774  1151 [email protected]
10859audioserver    774  1154 [email protected]
10860audioserver    774  1155 [email protected]
10861audioserver    774  1156 [email protected]
10862audioserver    774  1157 HwBinder:774_1
10863audioserver    774  1161 HwBinder:774_2
10864audioserver    774  1177 HwBinder:774_2
10865audioserver    774  3785 HwBinder:774_3
10866audioserver    774  3786 HwBinder:774_4
10867audioserver    774  4214 HwBinder:774_5
10868audioserver    774  9642 HwBinder:774_6
10869audioserver    774  9643 HwBinder:774_7
10870audioserver    774 16173 writer
10871hsm            775   775 [email protected]
10872bluetooth      776   776 [email protected]
10873bluetooth      776  9355 POSIX timer 6
10874bluetooth      776  9432 POSIX timer 7
10875bluetooth      776  9606 [email protected]
10876bluetooth      776  9607 [email protected]
10877bluetooth      776  9608 POSIX timer 8
10878bluetooth      776  9612 POSIX timer 9
10879bluetooth      776  9613 POSIX timer 10
10880bluetooth      776  9615 POSIX timer 11
10881cameraserver   777   777 [email protected]
10882cameraserver   777   897 [email protected]
10883cameraserver   777   968 SyncManager_0
10884cameraserver   777   969 [email protected]
10885cameraserver   777  1298 [email protected]
10886cameraserver   777  1299 [email protected]
10887cameraserver   777  1300 [email protected]
10888cameraserver   777  1301 [email protected]
10889cameraserver   777  1302 [email protected]
10890cameraserver   777  1304 HwBinder:777_1
10891cameraserver   777  1307 HwBinder:777_2
10892media          778   778 [email protected]
10893media          778 16736 HwBinder:778_1
10894nobody         779   779 confirmationui@
10895system         780   780 [email protected]
10896system         780   800 [email protected]
10897media          781   781 [email protected]
10898media          781 16739 HwBinder:781_1
10899media          782   782 [email protected]
10900media          782 16737 HwBinder:782_1
10901media          782 16740 HwBinder:782_2
10902media          782 16741 HwBinder:782_3
10903media          782 16742 HwBinder:782_4
10904media          783   783 [email protected]
10905media          783 16738 HwBinder:783_1
10906media          783 16743 HwBinder:783_2
10907media          783 16744 HwBinder:783_3
10908gps            784   784 [email protected]
10909gps            784  3907 Loc_hal
10910gps            784  3919 LocIpc-
10911gps            784  3920 LocTime
10912gps            784  3922 LocTime
10913gps            784  3923 Loc_hal
10914gps            784  3924 Loc_hal
10915gps            784  3941 Loc_hal
10916gps            784  3944 Binder:784_1
10917gps            784  3946 Binder:784_2
10918gps            784  3954 Loc_hal
10919gps            784  3961 Loc_hal
10920gps            784  3962 Loc_hal
10921gps            784  3963 Loc_hal
10922gps            784  3965 Loc_hal
10923system         785   785 [email protected]
10924system         786   786 [email protected]
10925system         787   787 [email protected]
10926system         788   788 neuralnetworks@
10927system         788 13086 HwBinder:788_1
10928system         788 13087 HwBinder:788_2
10929system         788 13088 neuralnetworks@
10930system         788 13089 neuralnetworks@
10931system         788 13090 neuralnetworks@
10932system         788 17368 HwBinder:788_3
10933system         788  4625 HwBinder:788_4
10934system         788  4626 HwBinder:788_5
10935system         788  4627 HwBinder:788_6
10936system         788  5338 HwBinder:788_7
10937system         788  5339 HwBinder:788_8
10938system         788  5340 HwBinder:788_9
10939nfc            789   789 [email protected]
10940nfc            789  9986 POSIX timer 2
10941nfc            789 10002 [email protected]
10942nfc            789 10003 [email protected]
10943nfc            789 10004 POSIX timer 3
10944nfc            789 10005 [email protected]
10945hsm            790   790 [email protected]
10946root           791   791 [email protected]
10947root           791  4447 NodeLooperThrea
10948root           791  4449 [email protected]
10949system         793   793 [email protected]
10950system         793   839 [email protected]
10951root           794   794 [email protected]
10952root           794   881 HwBinder:794_1
10953root           794  1025 HwBinder:794_1
10954root           794  3789 HwBinder:794_1
10955system         795   795 [email protected]
10956system         796   796 [email protected].
10957hsm            797   797 [email protected]
10958wifi           798   798 [email protected]
10959wifi           798 16588 [email protected]
10960system         799   799 pixelstats-vend
10961system         799   836 pixelstats-vend
10962radio          801   801 [email protected]
10963radio          801   840 [email protected]
10964radio          801  1360 [email protected]
10965system         802   802 wireless_charge
10966nobody         805   805 [email protected]
10967mediacodec     808   808 vendor.qti.medi
10968mediacodec     808  1000 Binder:808_1
10969mediacodec     808  1013 Binder:808_2
10970mediacodec     808  3899 HwBinder:808_1
10971mediacodec     808  3900 HwBinder:808_2
10972mediacodec     808  4943 HwBinder:808_3
10973system         809   809 pm-service
10974system         809   842 POSIX timer 0
10975system         809   843 POSIX timer 1
10976system         809   844 POSIX timer 2
10977system         809   845 pm-service
10978system         809   846 Binder:809_1
10979system         809   852 Binder:809_2
10980system         809  1149 Binder:809_3
10981system         809  1150 Binder:809_4
10982system         810   810 sensors.qti
10983system         810   850 sensors.qti
10984system         810   851 sensors.qti
10985nobody         813   813 rmt_storage
10986nobody         813  1278 rmt_storage
10987nobody         813  1279 rmt_storage
10988nobody         813  1280 rmt_storage
10989nobody         813  1281 rmt_storage
10990vendor_rfs     815   815 tftp_server
10991system         816   816 pd-mapper
10992system         816   847 pd-mapper
10993root           817   817 msm_irqbalance
10994root           818   818 cdsp_IPCRTR
10995audioserver    819   819 audioserver
10996audioserver    819  1158 HwBinder:819_1
10997audioserver    819  1159 HwBinder:819_2
10998audioserver    819  1162 ApmTone
10999audioserver    819  1163 ApmAudio
11000audioserver    819  1164 ApmOutput
11001audioserver    819  1165 Binder:819_1
11002audioserver    819  1166 Binder:819_2
11003audioserver    819  1178 FastMixer
11004audioserver    819  1179 AudioOut_D
11005audioserver    819  1180 FastMixer
11006audioserver    819  1181 AudioOut_15
11007audioserver    819  1184 AudioOut_1D
11008audioserver    819  1188 FastMixer
11009audioserver    819  1189 AudioOut_25
11010audioserver    819  1192 AudioOut_2D
11011audioserver    819  1195 FastMixer
11012audioserver    819  1196 AudioOut_35
11013audioserver    819  1342 soundTrigger cb
11014audioserver    819  3784 TimeCheckThread
11015audioserver    819  4600 Binder:819_3
11016audioserver    819  4633 Binder:819_4
11017audioserver    819  9280 Binder:819_5
11018audioserver    819 11730 Binder:819_6
11019system         820   820 bufferhubd
11020lmkd           821   821 lmkd
11021system         822   822 performanced
11022system         829   829 thermalserviced
11023system         829   862 HwBinder:829_1
11024system         829   863 HwBinder:829_2
11025system         830   830 Binder:830_2
11026system         830   855 Binder:830_1
11027root           854   854 qmi_hndl0000000
11028root           858   858 subsystem_ramdu
11029root           858   871 subsystem_ramdu
11030root           858   872 subsystem_ramdu
11031root           858  1277 subsystem_ramdu
11032root           859   859 qmi_hndl0000000
11033root           860   860 qmi_hndl0000000
11034graphics       861   861 mm-pp-dpps
11035graphics       861   917 HwBinder:861_1
11036graphics       861  1372 ABA_THREAD
11037shell          864   864 diag_mdlog
11038shell          864   995 diag_mdlog
11039shell          864  1049 diag_mdlog
11040shell          864  1050 diag_mdlog
11041shell          864  1051 diag_mdlog
11042nobody         866   866 traced
11043nobody         866   889 traced
11044root           869   869 thermal-engine
11045root           869   912 thermal-engine
11046root           869   918 thermal-engine
11047root           869   920 thermal-engine
11048root           869   922 thermal-engine
11049root           869   923 thermal-engine
11050root           869   924 thermal-engine
11051root           869   926 thermal-engine
11052root           869   928 thermal-engine
11053root           869   929 thermal-engine
11054root           869   930 thermal-engine
11055root           869   932 thermal-engine
11056root           869   933 thermal-engine
11057root           869   935 thermal-engine
11058root           869   936 thermal-engine
11059root           869   937 thermal-engine
11060root           869   941 thermal-engine
11061root           869   946 thermal-engine
11062root           869   948 thermal-engine
11063root           869   950 thermal-engine
11064root           869   953 thermal-engine
11065root           869   954 thermal-engine
11066root           869   956 thermal-engine
11067root           869   959 thermal-engine
11068root           869   964 thermal-engine
11069root           869   965 thermal-engine
11070root           869   966 thermal-engine
11071root           869   967 thermal-engine
11072root           869   970 thermal-engine
11073root           869   971 thermal-engine
11074root           869   973 thermal-engine
11075root           869   974 thermal-engine
11076root           869   975 thermal-engine
11077root           869   977 thermal-engine
11078root           869   978 thermal-engine
11079root           869   979 thermal-engine
11080root           869   980 thermal-engine
11081root           869   981 thermal-engine
11082root           869   982 thermal-engine
11083root           869  1022 thermal-engine
11084root           869  1309 thermal-engine
11085root           869  1310 thermal-engine
11086media          870   870 adsprpcd
11087media          870   925 adsprpcd
11088media          870   927 adsprpcd
11089root           873   873 kworker/3:1H
11090system         875   875 cdsprpcd
11091system         875   909 cdsprpcd
11092system         875   910 cdsprpcd
11093system         876   876 imsqmidaemon
11094system         876   905 imsqmidaemon
11095radio          878   878 cnd
11096radio          878   985 cnd
11097radio          878  1064 HwBinder:878_1
11098radio          878  1067 cnd
11099radio          878  1373 cnd
11100radio          878  1386 cnd
11101radio          878  1389 cnd
11102radio          878  1390 cnd
11103radio          878  1392 cnd
11104radio          878  1396 cnd
11105radio          878  1397 cnd
11106radio          878  1398 cnd
11107radio          879   879 netmgrd
11108root           879   983 netmgrd
11109radio          879   984 netmgrd
11110radio          879  1028 HwBinder:879_1
11111radio          879  1075 netmgrd
11112radio          879  1076 netmgrd
11113radio          879  1077 netmgrd
11114radio          879  1078 netmgrd
11115radio          879  1079 netmgrd
11116radio          879  1374 netmgrd
11117radio          879  8605 netmgrd
11118radio          879  8606 netmgrd
11119radio          879  8608 netmgrd
11120radio          879  8609 netmgrd
11121radio          879  8610 netmgrd
11122radio          879  8626 netmgrd
11123radio          879  8627 netmgrd
11124radio          879  8628 netmgrd
11125radio          879  8629 netmgrd
11126radio          879  8642 netmgrd
11127radio          879  8643 netmgrd
11128radio          879  8644 netmgrd
11129radio          879  8645 netmgrd
11130radio          879  8653 netmgrd
11131radio          879  8654 netmgrd
11132radio          879  8655 netmgrd
11133radio          879  8656 netmgrd
11134radio          879  8664 netmgrd
11135radio          879  8665 netmgrd
11136radio          879  8666 netmgrd
11137radio          879  8667 netmgrd
11138radio          879  8677 netmgrd
11139radio          879  8678 netmgrd
11140radio          879  8679 netmgrd
11141radio          879  8681 netmgrd
11142radio          879  8690 netmgrd
11143radio          879  8691 netmgrd
11144radio          879  8692 netmgrd
11145radio          879  8693 netmgrd
11146radio          879  8702 netmgrd
11147radio          879  8703 netmgrd
11148radio          879  8704 netmgrd
11149radio          879  8705 netmgrd
11150radio          879  8707 netmgrd
11151radio          879  8708 netmgrd
11152radio          879  8709 netmgrd
11153radio          879  8710 netmgrd
11154radio          879  8712 netmgrd
11155radio          879  8713 netmgrd
11156radio          879  8714 netmgrd
11157radio          879  8715 netmgrd
11158radio          879  8717 netmgrd
11159radio          879  8718 netmgrd
11160radio          879  8719 netmgrd
11161radio          879  8720 netmgrd
11162radio          879  8722 netmgrd
11163radio          879  8723 netmgrd
11164radio          879  8724 netmgrd
11165radio          879  8725 netmgrd
11166radio          879  8727 netmgrd
11167radio          879  8728 netmgrd
11168radio          879  8729 netmgrd
11169radio          879  8730 netmgrd
11170radio          879  8732 netmgrd
11171radio          879  8733 netmgrd
11172radio          879  8734 netmgrd
11173radio          879  8735 netmgrd
11174radio          879  8737 netmgrd
11175radio          879  8738 netmgrd
11176radio          879  8739 netmgrd
11177radio          879  8740 netmgrd
11178radio          879  8742 netmgrd
11179radio          879  8743 netmgrd
11180radio          879  8744 netmgrd
11181radio          879  8745 netmgrd
11182radio          879  8747 netmgrd
11183radio          879  8748 netmgrd
11184radio          879  8749 netmgrd
11185radio          879  8750 netmgrd
11186radio          879  8752 netmgrd
11187radio          879  8753 netmgrd
11188radio          879  8754 netmgrd
11189radio          879  8755 netmgrd
11190radio          879  8757 netmgrd
11191radio          879  8758 netmgrd
11192radio          879  8759 netmgrd
11193radio          879  8760 netmgrd
11194radio          879  8762 netmgrd
11195radio          879  8763 netmgrd
11196radio          879  8764 netmgrd
11197radio          879  8765 netmgrd
11198radio          879  8934 netmgrd
11199radio          880   880 port-bridge
11200radio          880   898 port-bridge
11201radio          880   899 port-bridge
11202radio          882   882 ipacm
11203radio          882   998 HwBinder:882_1
11204radio          882  1007 ipacm
11205radio          882  1008 netlink socket
11206radio          882  1009 ipa driver ntfy
11207cameraserver   884   884 cameraserver
11208cameraserver   884  1081 HwBinder:884_1
11209cameraserver   884  1082 HwBinder:884_2
11210cameraserver   884  1303 HwBinder:884_3
11211cameraserver   884  1340 Binder:884_1
11212cameraserver   884  3803 Binder:884_2
11213cameraserver   884  4628 Binder:884_3
11214drm            885   885 drmserver
11215drm            885  1024 Binder:885_1
11216drm            885  6461 Binder:885_2
11217drm            885  6615 Binder:885_3
11218incidentd      886   886 Binder:886_2
11219incidentd      886   947 Binder:886_1
11220incidentd      886   955 Binder:886_3
11221root           887   887 Binder:887_2
11222root           887   934 Binder:887_1
11223root           887  1333 Binder:887_3
11224root           887  1349 Binder:887_4
11225root           887  1354 Binder:887_5
11226root           887  1546 Binder:887_6
11227root           887  8399 Binder:887_7
11228root           887  8438 Binder:887_8
11229root           887  9011 Binder:887_9
11230keystore       888   888 keystore
11231keystore       888  1027 HwBinder:888_1
11232media          890   890 mediadrmserver
11233media          890  1006 Binder:890_1
11234mediaex        893   893 mediaextractor
11235mediaex        893  1068 Binder:893_1
11236mediaex        893  4185 Binder:893_2
11237mediaex        893  4191 Binder:893_3
11238mediaex        893 13221 Binder:893_4
11239mediaex        893 19525 Binder:893_5
11240mediaex        893  7259 Binder:893_6
11241media          894   894 mediametrics
11242media          894  1040 Binder:894_1
11243media          894  8847 Binder:894_2
11244media          894  8848 Binder:894_3
11245media          900   900 mediaserver
11246media          900  1062 Binder:900_1
11247media          900  3906 HwBinder:900_1
11248media          900  4112 Binder:900_2
11249media          900  4113 Binder:900_3
11250media          900  6462 Binder:900_4
11251media          900  6471 Binder:900_5
11252media          900  6583 Binder:900_6
11253media          900 25284 CCodecWatchdog
11254statsd         901   901 Binder:901_2
11255statsd         901  1041 Binder:901_1
11256statsd         901  1043 Binder:901_3
11257statsd         901  1044 statsd.writer
11258root           902   902 storaged
11259root           902  1038 storaged
11260root           902  1039 Binder:902_1
11261root           902  1339 HwBinder:902_1
11262wifi           903   903 wificond
11263mediacodec     904   904 [email protected]
11264mediacodec     904  1058 Binder:904_1
11265mediacodec     904  1059 Binder:904_2
11266mediacodec     904  1069 HwBinder:904_1
11267mediacodec     904  1072 HwBinder:904_2
11268mediacodec     904  4071 HwBinder:904_3
11269mediacodec     904  4110 HwBinder:904_4
11270mediacodec     904  4123 HwBinder:904_5
11271mediacodec     904  8846 HwBinder:904_6
11272mediacodec     904  8849 HwBinder:904_7
11273nobody         906   906 easelmanagerd
11274nobody         906   949 easelmanagerd
11275nobody         906   952 easelmanagerd
11276nobody         906   997 easelmanagerd
11277radio          907   907 main
11278radio          907  1136 qcrild
11279radio          907  1138 DispatcherModul
11280radio          907  1139 DispatcherModul
11281radio          907  1148 qcrild
11282radio          907  1246 Binder:907_1
11283radio          907  1247 Binder:907_2
11284radio          907  1248 file_observer
11285radio          907  1249 rild
11286radio          907  1250 HwBinder:907_1
11287radio          907  1253 main
11288radio          907  1255 GstkModule-Loop
11289radio          907  1256 UimModule-Loope
11290radio          907  1257 DataModule-Loop
11291radio          907  1258 SecureElementMo
11292radio          907  1259 RadioConfigModu
11293radio          907  1260 VoiceModemEndPo
11294radio          907  1261 CatModemEndPoin
11295radio          907  1262 UimHttpModemEnd
11296radio          907  1263 UimModemEndPoin
11297radio          907  1264 NasModemEndPoin
11298radio          907  1265 SmsModemEndPoin
11299radio          907  1266 ImsaModemEndPoi
11300radio          907  1267 ImssModemEndPoi
11301radio          907  1268 PbmModemEndPoin
11302radio          907  1269 PdcModemEndPoin
11303radio          907  1270 DataModule-Loop
11304radio          907  1271 DataModule-Loop
11305radio          907  1272 UimRemoteModemE
11306radio          907  1273 VsModemEndPoint
11307radio          907  1315 PdcModemEndPoin
11308radio          907  1361 VsModemEndPoint
11309radio          907  1371 PbmModemEndPoin
11310radio          907  1375 CatModemEndPoin
11311radio          907  1376 DataModule-Loop
11312radio          907  1377 VoiceModemEndPo
11313radio          907  1378 NasModemEndPoin
11314radio          907  1379 UimModemEndPoin
11315radio          907  1380 DataModule-Loop
11316radio          907  1384 SmsModemEndPoin
11317radio          907  1387 DataModule-Loop
11318radio          907  1394 DispatcherModul
11319radio          907  1395 DataModule-Loop
11320radio          907  1400 DataModule-Loop
11321radio          907  1401 DataModule-Loop
11322radio          907  1403 DataModule-Loop
11323radio          907  1404 DataModule-Loop
11324radio          907  1405 AuthModemEndPoi
11325radio          907  1406 AuthModemEndPoi
11326radio          907  1407 pil_monitor
11327radio          907  1411 DispatcherModul
11328radio          907  1494 qmi_cb
11329radio          907  1495 qcrild
11330radio          907  1496 qcrild
11331radio          907  1715 ImsaModemEndPoi
11332radio          907  1719 ImssModemEndPoi
11333root           914   914 adsp
11334root           915   915 lpass_IPCRTR
11335system         938   938 cnss-daemon
11336system         938  1010 Binder:938_1
11337system         938  1012 cnss-daemon
11338system         938  1015 cnss-daemon
11339system         938  1018 Binder:938_2
11340system         938  1023 Binder:938_3
11341system         938  1415 cnss-daemon
11342system         938 16584 cnss-daemon
11343gps            939   939 loc_launcher
11344gps            939   962 loc_launcher
11345gps            939   991 loc_sig_hndlr
11346system         940   940 chre
11347system         940  1002 chre
11348system         940  1003 chre
11349system         940  1019 chre
11350system         940  1020 chre
11351system         940  1117 chre
11352system         940  1118 chre
11353system         942   942 gatekeeperd
11354root           943   943 Binder:943_2
11355root           943  1004 Binder:943_1
11356root           944   944 modem
11357tombstoned     945   945 tombstoned
11358root           957   957 update_engine
11359system         958   958 [email protected]
11360system         958  1167 [email protected]
11361system         958  1168 [email protected]
11362root           960   960 adbd
11363root           960   976 usb ffs open
11364root           960 24054 adbd
11365root           960 24055 adbd
11366root           960 27529 shell svc 27528
11367root           986   986 qmi_hndl0000000
11368root           987   987 msm_slim_qmi_cl
11369root           988   988 msm_slim_qmi_cl
11370gps            992   992 lowi-server
11371gps            992  1052 lowi-server
11372gps            992  1053 lowi-server
11373gps            992  1055 lowi-server
11374gps            992  1056 lowi-server
11375gps            992 16589 lowi-server
11376gps            992 16590 lowi-server
11377gps            992 16592 lowi-server
11378gps            992 16593 lowi-server
11379gps            993   993 xtra-daemon
11380gps            993  1046 pcid-lo
11381gps            993  1063 pcid-lo
11382gps            993  1070 LocTime
11383gps            993  1071 LocTime
11384gps            993  1426 pcid-lo
11385root           994   994 qmi_hndl0000000
11386root          1001  1001 kworker/2:1H
11387root          1005  1005 qmi_hndl0000000
11388root          1014  1014 qmi_hndl0000000
11389root          1021  1021 qmi_hndl0000000
11390root          1031  1031 irq/211-arm-smm
11391root          1036  1036 irq/212-arm-smm
11392root          1037  1037 irq/213-arm-smm
11393root          1054  1054 kworker/u16:9
11394root          1057  1057 kworker/u16:10
11395root          1065  1065 irq/311-wcd9xxx
11396root          1074  1074 kworker/u16:11
11397root          1106  1106 qmi_wq
11398root          1107  1107 qmi_hndl0000000
11399root          1116  1116 kworker/u16:12
11400root          1147  1147 kworker/u16:13
11401root          1153  1153 wdsp_glink_wq
11402root          1245  1245 mpss_IPCRTR
11403root          1274  1274 qmi_hndl0000001
11404root          1275  1275 qmi_hndl0000001
11405root          1276  1276 kworker/u16:14
11406root          1308  1308 qmi_hndl0000001
11407root          1311  1311 kworker/u16:15
11408root          1312  1312 kworker/u16:16
11409root          1316  1316 qmi_hndl0000001
11410root          1414  1414 qmi_hndl0000001
11411root          1684  1684 ipawq13
11412root          1685  1685 iparepwq13
11413root          1686  1686 ipawq15
11414root          1687  1687 iparepwq15
11415system        4445  4445 pm-proxy
11416system        4445  4462 Binder:4445_1
11417system        4445  4463 Binder:4445_2
11418system        8500  8500 imsdatadaemon
11419system        8500  8506 imsdatadaemon
11420system        8500  8513 imsdatadaemon
11421system        8500  8514 imsdatadaemon
11422system        8500  8515 imsdatadaemon
11423system        8500  8516 imsdatadaemon
11424system        8500  8518 imsdatadaemon
11425system        8500  8520 imsdatadaemon
11426system        8500  8767 imsdatadaemon
11427system        8500  8768 imsdatadaemon
11428system        8500  8769 imsdatadaemon
11429system        8501  8501 ims_rtp_daemon
11430system        8501  8505 ims_rtp_daemon
11431system        8501  8507 ims_rtp_daemon
11432system        8501  8509 ims_rtp_daemon
11433system        8501  8510 ims_rtp_daemon
11434system        8501  8511 HwBinder:8501_1
11435system        8523  8523 imsrcsd
11436system        8523  8546 imsrcsd
11437system        8523  8547 imsrcsd
11438system        8523  8548 imsrcsd
11439system        8523  8549 imsrcsd
11440system        8523  8550 imsrcsd
11441root          8613  8613 ipawq34
11442root          8614  8614 iparepwq34
11443root          8615  8615 ipawq35
11444root          8616  8616 iparepwq35
11445root          8857  8857 Binder:8857_2
11446root          8857  8863 netd
11447root          8857  8864 netd
11448root          8857  8865 netd
11449root          8857  8866 netd
11450root          8857  8867 netd
11451root          8857  8868 netd
11452root          8857  8869 netd
11453root          8857  8870 netd
11454root          8857  8872 netd
11455root          8857  8873 netd
11456root          8857  8875 Binder:8857_1
11457root          8857  8876 Binder:8857_2
11458root          8857  8877 Binder:8857_3
11459root          8857  8878 HwBinder:8857_1
11460system        8858  8858 surfaceflinger
11461system        8858  8871 Binder:8858_1
11462system        8858  8874 Binder:8858_2
11463system        8858  8879 DispSync
11464system        8858  8881 appEventThread
11465system        8858  8882 sfEventThread
11466system        8858  8890 HwBinder:8858_1
11467system        8858  8891 VrEvent
11468system        8858  8892 VrHwcPost
11469system        8858  8893 VrDispatch
11470system        8858  8894 surfaceflinger
11471system        8858  8942 Binder:8858_3
11472system        8858  8951 Binder:8858_4
11473system        8858 13083 Binder:8858_5
11474root          8859  8859 main
11475root          8859 25647 ReferenceQueueD
11476root          8859 25648 FinalizerDaemon
11477root          8859 25649 FinalizerWatchd
11478root          8859 25650 HeapTaskDaemon
11479root          8860  8860 main
11480root          8860 25540 ReferenceQueueD
11481root          8860 25541 FinalizerDaemon
11482root          8860 25542 FinalizerWatchd
11483root          8860 25543 HeapTaskDaemon
11484root          8861  8861 iptables-restor
11485root          8862  8862 ip6tables-resto
11486root          8937  8937 dsi_err_workq
11487system        8943  8943 system_server
11488system        8943  8948 Signal Catcher
11489system        8943  8950 ADB-JDWP Connec
11490system        8943  8952 ReferenceQueueD
11491system        8943  8953 FinalizerDaemon
11492system        8943  8954 FinalizerWatchd
11493system        8943  8955 HeapTaskDaemon
11494system        8943  8957 Binder:8943_1
11495system        8943  8958 Binder:8943_2
11496system        8943  8960 android.bg
11497system        8943  8961 ActivityManager
11498system        8943  8962 android.ui
11499system        8943  8963 ActivityManager
11500system        8943  8964 ActivityManager
11501system        8943  8965 batterystats-wo
11502system        8943  8966 FileObserver
11503system        8943  8967 android.fg
11504system        8943  8968 android.io
11505system        8943  8969 android.display
11506system        8943  8970 CpuTracker
11507system        8943  8971 PowerManagerSer
11508system        8943  8972 BatteryStats_wa
11509system        8943  8973 PackageManager
11510system        8943  8974 PackageManager
11511system        8943  9004 PackageInstalle
11512system        8943  9005 android.anim
11513system        8943  9006 android.anim.lf
11514system        8943  9009 HwBinder:8943_1
11515system        8943  9013 HealthServiceRe
11516system        8943  9023 AccountManagerS
11517system        8943  9024 SettingsProvide
11518system        8943  9027 AlarmManager
11519system        8943  9035 SensorEventAckR
11520system        8943  9036 SensorService
11521system        8943  9037 window_tracing
11522system        8943  9039 InputDispatcher
11523system        8943  9040 InputReader
11524system        8943  9041 NetworkWatchlis
11525system        8943  9042 StorageManagerS
11526system        8943  9043 NetdConnector
11527system        8943  9045 NetworkStats
11528system        8943  9046 NetworkPolicy
11529system        8943  9047 tworkPolicy.uid
11530system        8943  9048 WifiService
11531system        8943  9049 WifiStateMachin
11532system        8943  9050 WifiScanningSer
11533system        8943  9051 WifiP2pService
11534system        8943  9052 ConnectivitySer
11535system        8943  9053 roid.pacmanager
11536system        8943  9054 NsdService
11537system        8943  9055 mDnsConnector
11538system        8943  9056 notification-sq
11539system        8943  9057 ranker
11540system        8943  9058 onProviders.ECP
11541system        8943  9059 DeviceStorageMo
11542system        8943  9060 AudioService
11543system        8943  9061 Binder:8943_3
11544system        8943  9062 Binder:8943_4
11545system        8943  9063 UEventObserver
11546system        8943  9065 HwBinder:8943_2
11547system        8943  9066 HwBinder:8943_3
11548system        8943  9067 HwBinder:8943_4
11549system        8943  9068 ConnectivityThr
11550system        8943  9069 pool-3-thread-1
11551system        8943  9070 GraphicsStats-d
11552system        8943  9071 SliceManagerSer
11553system        8943  9072 CameraService_p
11554system        8943  9073 SyncHandler-0
11555system        8943  9074 wifiRttService
11556system        8943  9075 wifiAwareServic
11557system        8943  9076 EthernetService
11558system        8943  9077 TaskSnapshotPer
11559system        8943  9078 PhotonicModulat
11560system        8943  9080 LazyTaskWriterT
11561system        8943  9082 SyncManager
11562system        8943  9088 UsbService host
11563system        8943  9089 Thread-3
11564system        8943  9101 SoundPool
11565system        8943  9102 SoundPoolThread
11566system        8943  9128 NetworkStatsObs
11567system        8943  9143 CCodecWatchdog
11568system        8943  9148 watchdog
11569system        8943  9178 EmergencyAfford
11570system        8943  9186 Binder:8943_5
11571system        8943  9215 NetworkTimeUpda
11572system        8943  9219 Binder:8943_6
11573system        8943  9222 Binder:8943_7
11574system        8943  9266 BluetoothRouteM
11575system        8943  9278 AudioPortEventH
11576system        8943  9291 uteStateMachine
11577system        8943  9296 CallAudioModeSt
11578system        8943  9308 ConnectionSvrFo
11579system        8943  9349 queued-work-loo
11580system        8943  9448 Binder:8943_8
11581system        8943  9650 UsbDebuggingMan
11582system        8943  9699 backup
11583system        8943  9741 Binder:8943_9
11584system        8943  9759 Binder:8943_A
11585system        8943  9815 Binder:8943_B
11586system        8943 10681 AsyncQueryWorke
11587system        8943 10919 Binder:8943_C
11588system        8943 10988 Binder:8943_D
11589system        8943 11055 Binder:8943_E
11590system        8943 11523 Binder:8943_F
11591system        8943 11815 Binder:8943_10
11592system        8943 11959 Binder:8943_11
11593system        8943 12153 Binder:8943_12
11594system        8943 12967 Binder:8943_13
11595system        8943 12984 Binder:8943_14
11596system        8943 12998 Binder:8943_15
11597system        8943 15374 RenderThread
11598system        8943 16170 AudioTrack
11599system        8943 16597 IpClient.wlan0
11600system        8943 23656 Binder:8943_16
11601system        8943 24100 GrallocUploadTh
11602system        8943 25293 HwBinder:8943_5
11603system        8943 25493 Binder:8943_17
11604system        9012  9012 [email protected]
11605system        9012  9014 POSIX timer 0
11606system        9012  9015 [email protected]
11607system        9012  9018 [email protected]
11608system        9012  9020 [email protected]
11609system        9012  9021 HwBinder:9012_1
11610system        9012  9031 [email protected]
11611system        9012  9032 [email protected]
11612system        9012  9033 [email protected]
11613system        9012  9079 HwBinder:9012_1
11614system        9012  9081 HwBinder:9012_1
11615bluetooth     9083  9083 droid.bluetooth
11616bluetooth     9083  9093 Jit thread pool
11617bluetooth     9083  9096 Signal Catcher
11618bluetooth     9083  9097 ADB-JDWP Connec
11619bluetooth     9083  9098 ReferenceQueueD
11620bluetooth     9083  9099 FinalizerDaemon
11621bluetooth     9083  9100 FinalizerWatchd
11622bluetooth     9083  9111 HeapTaskDaemon
11623bluetooth     9083  9114 Binder:9083_1
11624bluetooth     9083  9126 Binder:9083_2
11625bluetooth     9083  9130 Binder:9083_3
11626bluetooth     9083  9136 Profile Saver
11627bluetooth     9083  9188 AdapterState
11628bluetooth     9083  9191 stack_manager
11629bluetooth     9083  9194 POSIX timer 0
11630bluetooth     9083  9196 POSIX timer 1
11631bluetooth     9083  9197 alarm_default_c
11632bluetooth     9083  9201 alarm_dispatche
11633bluetooth     9083  9206 BT Service Call
11634bluetooth     9083  9214 BluetoothActive
11635bluetooth     9083  9218 AudioPortEventH
11636bluetooth     9083  9323 BondStateMachin
11637bluetooth     9083  9336 BluetoothAdvert
11638bluetooth     9083  9338 BluetoothScanMa
11639bluetooth     9083  9348 queued-work-loo
11640bluetooth     9083  9353 hci_thread
11641bluetooth     9083  9354 HwBinder:9083_1
11642bluetooth     9083  9609 bt_workqueue
11643bluetooth     9083  9610 btu message loo
11644bluetooth     9083  9616 BT Service Call
11645bluetooth     9083  9617 btif_sock
11646bluetooth     9083  9618 Binder:9083_4
11647bluetooth     9083  9619 Binder:9083_5
11648bluetooth     9083  9620 e.StateMachines
11649bluetooth     9083  9622 e.StateMachines
11650bluetooth     9083  9623 btif_a2dp_sourc
11651bluetooth     9083  9624 BluetoothHdpHan
11652bluetooth     9083  9625 droid.bluetooth
11653bluetooth     9083  9626 BluetoothMapHan
11654bluetooth     9083  9630 PbapHandlerThre
11655bluetooth     9083  9638 Binder:9083_6
11656bluetooth     9083  9640 Thread-3
11657bluetooth     9083  9641 Thread-4
11658bluetooth     9083  9644 SapAcceptThread
11659bluetooth     9083  9646 Thread-6
11660bluetooth     9083  9647 Thread-7
11661bluetooth     9083  9648 Thread-8
11662bluetooth     9083  9649 Thread-9
11663bluetooth     9083  9738 Binder:9083_7
11664bluetooth     9083  9803 Binder:9083_8
11665u0_a83        9090  9090 putmethod.latin
11666u0_a83        9090  9103 Jit thread pool
11667u0_a83        9090  9104 Signal Catcher
11668u0_a83        9090  9112 ADB-JDWP Connec
11669u0_a83        9090  9113 ReferenceQueueD
11670u0_a83        9090  9115 FinalizerDaemon
11671u0_a83        9090  9116 FinalizerWatchd
11672u0_a83        9090  9117 HeapTaskDaemon
11673u0_a83        9090  9123 Binder:9090_1
11674u0_a83        9090  9127 Binder:9090_2
11675u0_a83        9090  9134 Binder:9090_3
11676u0_a83        9090  9155 Profile Saver
11677u0_a83        9090  9203 queued-work-loo
11678u0_a83        9090  9210 ExUtils-P11-1
11679u0_a83        9090  9243 ExUtils-P9-1
11680u0_a83        9090  9470 Binder:9090_4
11681u0_a83        9090  9833 GoogleApiHandle
11682u0_a83        9090  9867 MetricsManager
11683u0_a83        9090  9869 GAC_Executor[0]
11684u0_a83        9090 10009 GAC_Executor[1]
11685u0_a83        9090 10098 AnrDetector
11686u0_a83        9090 10107 NativeLogger-1
11687u0_a83        9090 10111 DwldManWrapper
11688u0_a83        9090 10169 ExUtils-P10-1
11689u0_a83        9090 10182 sp-control-1
11690u0_a83        9090 10196 Primes-1
11691u0_a83        9090 10206 ExUtils-P1-1
11692u0_a83        9090 10213 Primes-2
11693u0_a83        9090 10478 Binder:9090_5
11694u0_a83        9090 10728 Binder:9090_6
11695u0_a83        9090 13134 DecoderWrapper
11696u0_a83        9090  3293 Binder:9090_7
11697u0_a83        9090 16647 Binder:9090_8
11698u0_a45        9105  9105 ndroid.systemui
11699u0_a45        9105  9118 Jit thread pool
11700u0_a45        9105  9119 Signal Catcher
11701u0_a45        9105  9120 ADB-JDWP Connec
11702u0_a45        9105  9121 ReferenceQueueD
11703u0_a45        9105  9122 FinalizerDaemon
11704u0_a45        9105  9124 FinalizerWatchd
11705u0_a45        9105  9125 HeapTaskDaemon
11706u0_a45        9105  9131 Binder:9105_1
11707u0_a45        9105  9132 Binder:9105_2
11708u0_a45        9105  9135 Binder:9105_3
11709u0_a45        9105  9142 Profile Saver
11710u0_a45        9105  9238 smartspace-back
11711u0_a45        9105  9321 pool-1-thread-1
11712u0_a45        9105  9331 SoundPool
11713u0_a45        9105  9332 SoundPoolThread
11714u0_a45        9105  9343 Recents-HighRes
11715u0_a45        9105  9347 Recents-TaskRes
11716u0_a45        9105  9351 CCodecWatchdog
11717u0_a45        9105  9357 HwBinder:9105_1
11718u0_a45        9105  9368 recents.fg
11719u0_a45        9105  9380 Binder:9105_4
11720u0_a45        9105  9386 async_sensor
11721u0_a45        9105  9388 Binder:9105_5
11722u0_a45        9105  9398 VolumeDialogCon
11723u0_a45        9105  9415 SysUiBg
11724u0_a45        9105  9431 queued-work-loo
11725u0_a45        9105  9436 RenderThread
11726u0_a45        9105  9458 ConnectivityThr
11727u0_a45        9105  9464 WifiTracker{d80
11728u0_a45        9105  9513 TimeTick
11729u0_a45        9105  9548 FlashlightContr
11730u0_a45        9105  9588 Keyboard
11731u0_a45        9105  9605 pool-3-thread-1
11732u0_a45        9105  9614 pool-5-thread-1
11733u0_a45        9105  9621 Thread-2
11734u0_a45        9105  9637 Binder:9105_6
11735u0_a45        9105  9651 Binder:9105_7
11736u0_a45        9105 13064 GrallocUploadTh
11737webview_zygote 9144 9144 webview_zygote
11738webview_zygote 9144 9149 ReferenceQueueD
11739webview_zygote 9144 9150 FinalizerDaemon
11740webview_zygote 9144 9151 FinalizerWatchd
11741webview_zygote 9144 9152 HeapTaskDaemon
11742radio         9229  9229 .dataservices
11743radio         9229  9234 Jit thread pool
11744radio         9229  9235 Signal Catcher
11745radio         9229  9236 ADB-JDWP Connec
11746radio         9229  9237 ReferenceQueueD
11747radio         9229  9239 FinalizerDaemon
11748radio         9229  9240 FinalizerWatchd
11749radio         9229  9241 HeapTaskDaemon
11750radio         9229  9244 Binder:9229_1
11751radio         9229  9251 Binder:9229_2
11752radio         9229  9252 Binder:9229_3
11753radio         9229  9264 Profile Saver
11754radio         9229  9293 cneservice_thre
11755radio         9229  9313 CNEReceiver
11756radio         9229  9316 ConnectivityThr
11757radio         9229  9317 MainEventThread
11758radio         9229  9319 HwBinder:9229_1
11759radio         9229 10048 MainEventThread
11760radio         9229 10085 queued-work-loo
11761radio         9245  9245 elephonyservice
11762radio         9245  9253 Jit thread pool
11763radio         9245  9262 Signal Catcher
11764radio         9245  9282 ADB-JDWP Connec
11765radio         9245  9283 ReferenceQueueD
11766radio         9245  9284 FinalizerDaemon
11767radio         9245  9285 FinalizerWatchd
11768radio         9245  9286 HeapTaskDaemon
11769radio         9245  9287 Binder:9245_1
11770radio         9245  9292 Binder:9245_2
11771radio         9245  9294 Binder:9245_3
11772radio         9245  9318 Profile Saver
11773radio         9245 10026 HwBinder:9245_1
11774radio         9245 10040 queued-work-loo
11775radio         9256  9256 oid.grilservice
11776radio         9256  9263 Jit thread pool
11777radio         9256  9265 Signal Catcher
11778radio         9256  9267 ADB-JDWP Connec
11779radio         9256  9268 ReferenceQueueD
11780radio         9256  9269 FinalizerDaemon
11781radio         9256  9276 FinalizerWatchd
11782radio         9256  9277 HeapTaskDaemon
11783radio         9256  9279 Binder:9256_1
11784radio         9256  9281 Binder:9256_2
11785radio         9256  9288 Binder:9256_3
11786radio         9256  9295 Profile Saver
11787radio         9256  9816 HwBinder:9256_1
11788radio         9271  9271 m.android.phone
11789radio         9271  9290 Jit thread pool
11790radio         9271  9303 Signal Catcher
11791radio         9271  9304 ADB-JDWP Connec
11792radio         9271  9305 ReferenceQueueD
11793radio         9271  9306 FinalizerDaemon
11794radio         9271  9307 FinalizerWatchd
11795radio         9271  9309 HeapTaskDaemon
11796radio         9271  9310 Binder:9271_1
11797radio         9271  9311 Binder:9271_2
11798radio         9271  9315 Binder:9271_3
11799radio         9271  9322 Profile Saver
11800radio         9271  9389 HwBinder:9271_1
11801radio         9271  9393 EuiccConnector
11802radio         9271  9394 android.bg
11803radio         9271  9396 queued-work-loo
11804radio         9271  9412 GsmCellBroadcas
11805radio         9271  9414 GsmInboundSmsHa
11806radio         9271  9418 CellBroadcastHa
11807radio         9271  9421 CdmaInboundSmsH
11808radio         9271  9422 CdmaServiceCate
11809radio         9271  9424 LocaleTracker
11810radio         9271  9426 DcHandlerThread
11811radio         9271  9484 Binder:9271_4
11812radio         9271  9487 ImsServiceContr
11813radio         9271  9492 NetworkService
11814radio         9271  9502 DataService
11815radio         9271  9532 Binder:9271_5
11816radio         9271  9541 org.codeaurora.
11817radio         9271  9542 ImsConfigImplHa
11818radio         9271  9543 ImsSmsImpl
11819radio         9271  9549 CellularNetwork
11820radio         9271  9550 CellularDataSer
11821radio         9271  9557 ConnectivityThr
11822radio         9271  9580 Binder:9271_6
11823radio         9271  9587 Binder:9271_7
11824radio         9271 10683 ervice.Executor
11825radio         9271 20907 Binder:9271_8
11826u0_a70        9298  9298 oid.setupwizard
11827u0_a70        9298  9320 Jit thread pool
11828u0_a70        9298  9324 Signal Catcher
11829u0_a70        9298  9325 ADB-JDWP Connec
11830u0_a70        9298  9326 ReferenceQueueD
11831u0_a70        9298  9327 FinalizerDaemon
11832u0_a70        9298  9328 FinalizerWatchd
11833u0_a70        9298  9329 HeapTaskDaemon
11834u0_a70        9298  9330 Binder:9298_1
11835u0_a70        9298  9333 Binder:9298_2
11836u0_a70        9298  9334 Binder:9298_3
11837u0_a70        9298  9344 Profile Saver
11838u0_a70        9298  9372 queued-work-loo
11839u0_a70        9298  9374 GoogleApiHandle
11840u0_a70        9298  9376 ConnectivityThr
11841u0_a70        9298  9377 WifiTracker{274
11842u0_a70        9298  9457 RenderThread
11843u0_a70        9298  9743 pool-1-thread-1
11844u0_a70        9298 10377 Binder:9298_4
11845u0_a70        9298 12310 Binder:9298_5
11846u0_a70        9298  3292 Binder:9298_6
11847u0_a70        9298  5783 Binder:9298_7
11848u0_a70        9298  7820 Binder:9298_8
11849u0_a70        9298 13309 Binder:9298_9
11850u0_a70        9298 15004 Binder:9298_A
11851u0_a7         9337  9337 id.ext.services
11852u0_a7         9337  9358 Jit thread pool
11853u0_a7         9337  9359 Signal Catcher
11854u0_a7         9337  9361 ADB-JDWP Connec
11855u0_a7         9337  9362 ReferenceQueueD
11856u0_a7         9337  9363 FinalizerDaemon
11857u0_a7         9337  9365 FinalizerWatchd
11858u0_a7         9337  9366 HeapTaskDaemon
11859u0_a7         9337  9367 Binder:9337_1
11860u0_a7         9337  9369 Binder:9337_2
11861u0_a7         9337  9371 Binder:9337_3
11862u0_a7         9337  9375 Profile Saver
11863u0_a7         9337  9792 Binder:9337_4
11864u0_a7         9337  9793 queued-work-loo
11865root          9674  9674 irq/80-1436400.
11866root          9677  9677 irq/81-114a000.
11867u0_a29        9697  9697 le.modemservice
11868u0_a29        9697  9701 Jit thread pool
11869u0_a29        9697  9702 Signal Catcher
11870u0_a29        9697  9703 ADB-JDWP Connec
11871u0_a29        9697  9706 ReferenceQueueD
11872u0_a29        9697  9707 FinalizerDaemon
11873u0_a29        9697  9709 FinalizerWatchd
11874u0_a29        9697  9710 HeapTaskDaemon
11875u0_a29        9697  9711 Binder:9697_1
11876u0_a29        9697  9713 Binder:9697_2
11877u0_a29        9697  9717 Binder:9697_3
11878u0_a29        9697  9730 Profile Saver
11879u0_a29        9697  9784 StateService
11880u0_a29        9697  9811 queued-work-loo
11881u0_a29        9697  9814 ConnectivityThr
11882u0_a29        9697  9822 Binder:9697_4
11883u0_a12        9714  9714 ocess.gservices
11884u0_a12        9714  9719 Jit thread pool
11885u0_a12        9714  9721 Signal Catcher
11886u0_a12        9714  9722 ADB-JDWP Connec
11887u0_a12        9714  9723 ReferenceQueueD
11888u0_a12        9714  9724 FinalizerDaemon
11889u0_a12        9714  9725 FinalizerWatchd
11890u0_a12        9714  9727 HeapTaskDaemon
11891u0_a12        9714  9728 Binder:9714_1
11892u0_a12        9714  9729 Binder:9714_2
11893u0_a12        9714  9736 Binder:9714_3
11894u0_a12        9714  9782 Profile Saver
11895u0_a12        9714  9854 Binder:9714_4
11896u0_a12        9714 10044 Binder:9714_5
11897u0_a12        9714 10176 Binder:9714_6
11898u0_a12        9714 10250 Binder:9714_7
11899u0_a12        9714 10495 Binder:9714_8
11900u0_a12        9714 10517 Binder:9714_9
11901u0_a12        9714 10530 Binder:9714_A
11902u0_a12        9714 10613 Binder:9714_B
11903u0_a12        9714 10629 Binder:9714_C
11904u0_a12        9714 10727 Binder:9714_D
11905u0_a12        9714 11078 Binder:9714_E
11906u0_a12        9714 11198 Binder:9714_F
11907u0_a12        9714 11462 Binder:9714_10
11908nfc           9748  9748 com.android.nfc
11909nfc           9748  9760 Jit thread pool
11910nfc           9748  9761 Signal Catcher
11911nfc           9748  9767 ADB-JDWP Connec
11912nfc           9748  9768 ReferenceQueueD
11913nfc           9748  9769 FinalizerDaemon
11914nfc           9748  9770 FinalizerWatchd
11915nfc           9748  9771 HeapTaskDaemon
11916nfc           9748  9772 Binder:9748_1
11917nfc           9748  9783 Binder:9748_2
11918nfc           9748  9791 Binder:9748_3
11919nfc           9748  9805 Profile Saver
11920nfc           9748  9967 AsyncTask #1
11921nfc           9748  9972 AsyncTask #1
11922nfc           9748  9982 HwBinder:9748_1
11923nfc           9748 10133 Thread-2
11924nfc           9748 10138 Thread-3
11925nfc           9748 10139 Thread-4
11926nfc           9748 10142 SoundPool
11927nfc           9748 10143 SoundPoolThread
11928nfc           9748 10161 CCodecWatchdog
11929nfc           9748 10178 Binder:9748_4
11930nfc           9748 20905 Binder:9748_5
11931secure_element 9762 9762 com.android.se
11932secure_element 9762 9773 Jit thread pool
11933secure_element 9762 9774 Signal Catcher
11934secure_element 9762 9776 ADB-JDWP Connec
11935secure_element 9762 9778 ReferenceQueueD
11936secure_element 9762 9779 FinalizerDaemon
11937secure_element 9762 9780 FinalizerWatchd
11938secure_element 9762 9781 HeapTaskDaemon
11939secure_element 9762 9785 Binder:9762_1
11940secure_element 9762 9796 Binder:9762_2
11941secure_element 9762 9812 Profile Saver
11942secure_element 9762 9818 Binder:9762_3
11943secure_element 9762 9826 HwBinder:9762_1
11944secure_element 9762 9835 queued-work-loo
11945radio         9786  9786 .ims.rcsservice
11946radio         9786  9794 Jit thread pool
11947radio         9786  9795 Signal Catcher
11948radio         9786  9797 ADB-JDWP Connec
11949radio         9786  9798 ReferenceQueueD
11950radio         9786  9799 FinalizerDaemon
11951radio         9786  9800 FinalizerWatchd
11952radio         9786  9801 HeapTaskDaemon
11953radio         9786  9802 Binder:9786_1
11954radio         9786  9813 Binder:9786_2
11955radio         9786  9817 Binder:9786_3
11956radio         9786  9837 Profile Saver
11957radio         9786  9861 Listener
11958radio         9786  9892 queued-work-loo
11959radio         9786 10594 EABServiceHandl
11960radio         9786 10885 Binder:9786_4
11961system        9806  9806 RestartDetector
11962system        9806  9824 Jit thread pool
11963system        9806  9832 Signal Catcher
11964system        9806  9838 ADB-JDWP Connec
11965system        9806  9839 ReferenceQueueD
11966system        9806  9840 FinalizerDaemon
11967system        9806  9841 FinalizerWatchd
11968system        9806  9842 HeapTaskDaemon
11969system        9806  9843 Binder:9806_1
11970system        9806  9844 Binder:9806_2
11971system        9806  9855 Profile Saver
11972system        9806 10939 FileObserver
11973system        9806 10940 queued-work-loo
11974u0_a71        9827  9827 eui:sui_service
11975u0_a71        9827  9834 Jit thread pool
11976u0_a71        9827  9836 Signal Catcher
11977u0_a71        9827  9849 ADB-JDWP Connec
11978u0_a71        9827  9850 ReferenceQueueD
11979u0_a71        9827  9851 FinalizerDaemon
11980u0_a71        9827  9852 FinalizerWatchd
11981u0_a71        9827  9853 HeapTaskDaemon
11982u0_a71        9827  9857 Binder:9827_1
11983u0_a71        9827  9859 Binder:9827_2
11984u0_a71        9827  9870 Profile Saver
11985u0_a71        9827 10430 Binder:9827_3
11986u0_a71        9827 10431 Thread-2
11987u0_a71        9827 10432 queued-work-loo
11988u0_a71        9827 10444 HwBinder:9827_1
11989u0_a71        9827 10447 Thread-2
11990u0_a12        9871  9871 .gms.persistent
11991u0_a12        9871  9879 Jit thread pool
11992u0_a12        9871  9880 Signal Catcher
11993u0_a12        9871  9887 ADB-JDWP Connec
11994u0_a12        9871  9888 ReferenceQueueD
11995u0_a12        9871  9889 FinalizerDaemon
11996u0_a12        9871  9890 FinalizerWatchd
11997u0_a12        9871  9891 HeapTaskDaemon
11998u0_a12        9871  9893 Binder:9871_1
11999u0_a12        9871  9894 Binder:9871_2
12000u0_a12        9871  9905 Binder:9871_3
12001u0_a12        9871  9957 Profile Saver
12002u0_a12        9871 10109 Binder:9871_4
12003u0_a12        9871 10115 Binder:9871_5
12004u0_a12        9871 10116 FileObserver
12005u0_a12        9871 10122 Binder:9871_6
12006u0_a12        9871 10170 GlobalDispatchi
12007u0_a12        9871 10248 GoogleApiHandle
12008u0_a12        9871 10294 GlobalScheduler
12009u0_a12        9871 10309 ConnectivityThr
12010u0_a12        9871 10321 queued-work-loo
12011u0_a12        9871 10323 highpool[0]
12012u0_a12        9871 10395 Binder:9871_7
12013u0_a12        9871 10402 GAC_Executor[0]
12014u0_a12        9871 10424 FlpThread
12015u0_a12        9871 10476 highpool[1]
12016u0_a12        9871 10482 Binder:9871_8
12017u0_a12        9871 10485 highpool[2]
12018u0_a12        9871 10535 highpool[3]
12019u0_a12        9871 10576 GeofencerStateM
12020u0_a12        9871 10580 RealContextHub
12021u0_a12        9871 10586 GAC_Executor[1]
12022u0_a12        9871 10627 GoogleLocationS
12023u0_a12        9871 10703 MSMuxTR-0
12024u0_a12        9871 11226 Binder:9871_9
12025u0_a12        9871 11721 netscheduler-qu
12026u0_a12        9871 11816 Binder:9871_A
12027u0_a12        9871 11926 Binder:9871_B
12028u0_a12        9871 11953 NearbyMessages
12029u0_a12        9871 12060 NearbyDirectMai
12030u0_a12        9871 12104 lowpool[6]
12031u0_a12        9871  7849 Binder:9871_C
12032u0_a12        9871 16617 Thread-32
12033u0_a12        9871 16618 Thread-33
12034u0_a12        9871 16619 Thread-34
12035u0_a12        9871 16620 Thread-35
12036u0_a12        9871 16621 Thread-36
12037u0_a12        9871 16622 Places
12038u0_a12        9871 16709 lowpool[8]
12039u0_a12        9871 24462 lowpool[10]
12040u0_a12        9871 24463 Binder:9871_D
12041u0_a12        9871 25133 Binder:9871_E
12042u0_a12        9871 25134 Binder:9871_F
12043u0_a12        9871 25324 Binder:9871_10
12044u0_a12        9871 25594 lowpool[12]
12045u0_a147       9882  9882 gearhead:shared
12046u0_a147       9882  9896 Jit thread pool
12047u0_a147       9882  9903 Signal Catcher
12048u0_a147       9882  9927 ADB-JDWP Connec
12049u0_a147       9882  9928 ReferenceQueueD
12050u0_a147       9882  9929 FinalizerDaemon
12051u0_a147       9882  9930 FinalizerWatchd
12052u0_a147       9882  9931 HeapTaskDaemon
12053u0_a147       9882  9932 Binder:9882_1
12054u0_a147       9882  9933 Binder:9882_2
12055u0_a147       9882  9948 Binder:9882_3
12056u0_a147       9882  9988 Profile Saver
12057u0_a147       9882 10110 GoogleApiHandle
12058u0_a147       9882 10301 FileObserver
12059u0_a147       9882 10303 ConnectivityThr
12060u0_a147       9882 10322 queued-work-loo
12061u0_a147       9882 10331 GAC_Executor[0]
12062u0_a147       9882 10477 Binder:9882_4
12063u0_a147       9882 10567 GAC_Executor[1]
12064u0_a43        9898  9898 apps.dreamliner
12065u0_a43        9898  9904 Jit thread pool
12066u0_a43        9898  9908 Signal Catcher
12067u0_a43        9898  9909 ADB-JDWP Connec
12068u0_a43        9898  9910 ReferenceQueueD
12069u0_a43        9898  9911 FinalizerDaemon
12070u0_a43        9898  9912 FinalizerWatchd
12071u0_a43        9898  9913 HeapTaskDaemon
12072u0_a43        9898  9914 Binder:9898_1
12073u0_a43        9898  9920 Binder:9898_2
12074u0_a43        9898  9924 Binder:9898_3
12075u0_a43        9898  9925 Binder:9898_4
12076u0_a43        9898  9943 Profile Saver
12077radio         9935  9935 .qcrilmsgtunnel
12078radio         9935  9949 Jit thread pool
12079radio         9935  9952 Signal Catcher
12080radio         9935  9958 ADB-JDWP Connec
12081radio         9935  9959 ReferenceQueueD
12082radio         9935  9960 FinalizerDaemon
12083radio         9935  9961 FinalizerWatchd
12084radio         9935  9962 HeapTaskDaemon
12085radio         9935  9963 Binder:9935_1
12086radio         9935  9968 Binder:9935_2
12087radio         9935  9980 Binder:9935_3
12088radio         9935  9990 Profile Saver
12089radio         9935 10016 HwBinder:9935_1
12090radio         9935 10039 queued-work-loo
12091u0_a36        9953  9953 ps.pixelmigrate
12092u0_a36        9953  9966 Jit thread pool
12093u0_a36        9953  9971 Signal Catcher
12094u0_a36        9953  9973 ADB-JDWP Connec
12095u0_a36        9953  9974 ReferenceQueueD
12096u0_a36        9953  9975 FinalizerDaemon
12097u0_a36        9953  9976 FinalizerWatchd
12098u0_a36        9953  9977 HeapTaskDaemon
12099u0_a36        9953  9978 Binder:9953_1
12100u0_a36        9953  9979 Binder:9953_2
12101u0_a36        9953  9989 Binder:9953_3
12102u0_a36        9953  9992 Profile Saver
12103u0_a36        9953 10204 pool-6-thread-1
12104u0_a36        9953 10480 Binder:9953_4
12105u0_a36        9953 10529 Binder:9953_5
12106u0_a36        9953 16656 queued-work-loo
12107u0_a36        9953 23064 lowpool[0]
12108u0_a36        9953 23167 lowpool[1]
12109u0_a36        9953 23775 lowpool[2]
12110u0_a36        9953 24139 lowpool[3]
12111u0_a50       10010 10010 ogle.android.as
12112u0_a50       10010 10019 Jit thread pool
12113u0_a50       10010 10021 Signal Catcher
12114u0_a50       10010 10033 ADB-JDWP Connec
12115u0_a50       10010 10034 ReferenceQueueD
12116u0_a50       10010 10035 FinalizerDaemon
12117u0_a50       10010 10036 FinalizerWatchd
12118u0_a50       10010 10037 HeapTaskDaemon
12119u0_a50       10010 10038 Binder:10010_1
12120u0_a50       10010 10042 Binder:10010_2
12121u0_a50       10010 10046 Binder:10010_3
12122u0_a50       10010 10057 Profile Saver
12123u0_a50       10010 10124 GoogleApiHandle
12124u0_a50       10010 10483 Binder:10010_4
12125u0_a50       10010 24098 aiai-bg-0
12126u0_a50       10010 24103 GAC_Executor[0]
12127u0_a50       10010 24104 GAC_Executor[1]
12128u0_a20       10023 10023 s.nexuslauncher
12129u0_a20       10023 10045 Jit thread pool
12130u0_a20       10023 10056 Signal Catcher
12131u0_a20       10023 10058 ADB-JDWP Connec
12132u0_a20       10023 10059 ReferenceQueueD
12133u0_a20       10023 10060 FinalizerDaemon
12134u0_a20       10023 10061 FinalizerWatchd
12135u0_a20       10023 10062 HeapTaskDaemon
12136u0_a20       10023 10063 Binder:10023_1
12137u0_a20       10023 10088 Binder:10023_2
12138u0_a20       10023 10100 Profile Saver
12139u0_a20       10023 10131 pool-1-thread-1
12140u0_a20       10023 10136 launcher-loader
12141u0_a20       10023 10175 GAC_Executor[0]
12142u0_a20       10023 10177 GoogleApiHandle
12143u0_a20       10023 10205 queued-work-loo
12144u0_a20       10023 10472 GAC_Executor[1]
12145u0_a20       10023 10531 Binder:10023_3
12146u0_a20       10023 10726 Binder:10023_4
12147u0_a20       10023 11605 smartspace-load
12148u0_a20       10023 16586 UiThreadHelper
12149u0_a20       10023 16587 pool-1-thread-2
12150u0_a20       10023 16594 Recents-HighRes
12151u0_a20       10023 16595 Recents-TaskRes
12152u0_a20       10023 16596 pool-3-thread-1
12153u0_a20       10023 16602 qsb-experiments
12154u0_a20       10023 16603 magnifier pixel
12155u0_a20       10023 16604 search-thread
12156u0_a20       10023 16607 RenderThread
12157u0_a20       10023 16608 remote-ui
12158u0_a20       10023 16610 reflection-thre
12159u0_a20       10023 16611 reflection-plac
12160u0_a20       10023 16612 GrallocUploadTh
12161u0_a20       10023 16614 pool-1-thread-3
12162u0_a20       10023 16615 file-logger
12163u0_a20       10023 18018 Binder:10023_5
12164u0_a20       10023 18840 hwuiTask1
12165u0_a20       10023 23680 Binder:10023_6
12166u0_a20       10023 24097 pool-3-thread-2
12167u0_a69       10049 10049 android.vending
12168u0_a69       10049 10072 Jit thread pool
12169u0_a69       10049 10087 Signal Catcher
12170u0_a69       10049 10090 ADB-JDWP Connec
12171u0_a69       10049 10091 ReferenceQueueD
12172u0_a69       10049 10092 FinalizerDaemon
12173u0_a69       10049 10093 FinalizerWatchd
12174u0_a69       10049 10094 HeapTaskDaemon
12175u0_a69       10049 10096 Binder:10049_1
12176u0_a69       10049 10099 Binder:10049_2
12177u0_a69       10049 10123 Profile Saver
12178u0_a69       10049 10268 queued-work-loo
12179u0_a69       10049 10299 FinskyApp
12180u0_a69       10049 10318 ndroid.play.b.g
12181u0_a69       10049 10378 Thread-3
12182u0_a69       10049 10379 Thread-4
12183u0_a69       10049 10380 Thread-5
12184u0_a69       10049 10382 libraries-threa
12185u0_a69       10049 10388 download-manage
12186u0_a69       10049 10394 NetworkQualityQ
12187u0_a69       10049 10396 ConnectivityThr
12188u0_a69       10049 10397 Thread-6
12189u0_a69       10049 10398 Thread-7
12190u0_a69       10049 10399 Thread-8
12191u0_a69       10049 10400 Thread-9
12192u0_a69       10049 10401 Thread-10
12193u0_a69       10049 10411 tentative-gc-ru
12194u0_a69       10049 10473 Db-scheduler
12195u0_a69       10049 10486 LibrariesImpl
12196u0_a69       10049 10489 PackageInstalle
12197u0_a69       10049 10500 WriteThroughIns
12198u0_a69       10049 10516 Binder:10049_3
12199u0_a69       10049 11221 Binder:10049_4
12200u0_a69       10049 11223 Binder:10049_5
12201u0_a69       10049 11495 RefQueueWorker@
12202u0_a69       10049 11504 RefQueueWorker@
12203u0_a69       10049 11539 wear-nodes-cont
12204u0_a69       10049 11543 GAC_Executor[0]
12205u0_a69       10049 11553 GAC_Executor[1]
12206u0_a69       10049 11559 BackgroundThrea
12207u0_a69       10049 11624 Binder:10049_6
12208u0_a69       10049 12520 Timer-0
12209u0_a69       10049 12942 GoogleApiHandle
12210u0_a69       10049 17914 Db-user_languag
12211u0_a69       10049 17936 GearheadStateMo
12212u0_a69       10049 17939 RefQueueWorker@
12213u0_a69       10049 17981 RefQueueWorker@
12214u0_a69       10049 18048 RefQueueWorker@
12215u0_a69       10049 20848 RefQueueWorker@
12216u0_a69       10049 20855 RefQueueWorker@
12217u0_a69       10049 20859 RefQueueWorker@
12218u0_a69       10049 22983 RefQueueWorker@
12219u0_a69       10049 22992 RefQueueWorker@
12220u0_a69       10049 22994 RefQueueWorker@
12221u0_a69       10049 23191 RefQueueWorker@
12222u0_a69       10049 23198 RefQueueWorker@
12223u0_a69       10049 23202 RefQueueWorker@
12224u0_a69       10049 23569 Binder:10049_7
12225u0_a69       10049 24016 RefQueueWorker@
12226u0_a69       10049 24023 RefQueueWorker@
12227u0_a69       10049 24027 RefQueueWorker@
12228u0_a69       10049 25060 RefQueueWorker@
12229u0_a69       10049 25067 RefQueueWorker@
12230u0_a69       10049 25069 RefQueueWorker@
12231u0_a12       10190 10190 gle.android.gms
12232u0_a12       10190 10198 Jit thread pool
12233u0_a12       10190 10207 Signal Catcher
12234u0_a12       10190 10214 ADB-JDWP Connec
12235u0_a12       10190 10216 ReferenceQueueD
12236u0_a12       10190 10217 FinalizerDaemon
12237u0_a12       10190 10218 FinalizerWatchd
12238u0_a12       10190 10219 HeapTaskDaemon
12239u0_a12       10190 10220 Binder:10190_1
12240u0_a12       10190 10221 Binder:10190_2
12241u0_a12       10190 10231 Binder:10190_3
12242u0_a12       10190 10235 Profile Saver
12243u0_a12       10190 10273 Binder:10190_4
12244u0_a12       10190 10296 FileObserver
12245u0_a12       10190 10304 GlobalDispatchi
12246u0_a12       10190 10409 GoogleApiHandle
12247u0_a12       10190 10545 GlobalScheduler
12248u0_a12       10190 10546 lowpool[0]
12249u0_a12       10190 10585 Binder:10190_5
12250u0_a12       10190 10587 Binder:10190_6
12251u0_a12       10190 10595 Binder:10190_7
12252u0_a12       10190 10599 Binder:10190_8
12253u0_a12       10190 10605 queued-work-loo
12254u0_a12       10190 10614 lowpool[2]
12255u0_a12       10190 10818 Thread-6
12256u0_a12       10190 10819 Thread-7
12257u0_a12       10190 10820 Thread-8
12258u0_a12       10190 10821 Thread-9
12259u0_a12       10190 10822 Thread-10
12260u0_a12       10190 11664 highpool[0]
12261u0_a12       10190 11680 highpool[1]
12262u0_a12       10190 11683 Binder:10190_9
12263u0_a12       10190 11685 GAC_Executor[0]
12264u0_a12       10190 11701 AdWorker(Defaul
12265u0_a12       10190 11711 GAC_Executor[1]
12266u0_a12       10190 11712 AdWorker(Defaul
12267u0_a12       10190 11819 Binder:10190_A
12268u0_a12       10190 11822 ConnectivityThr
12269u0_a12       10190 11891 highpool[2]
12270u0_a12       10190 11897 highpool[3]
12271u0_a12       10190 11921 Binder:10190_B
12272u0_a12       10190 11924 Binder:10190_C
12273u0_a12       10190 11935 Binder:10190_D
12274u0_a12       10190 12873 Binder:10190_E
12275u0_a12       10190 23679 Binder:10190_F
12276u0_a12       10190 23681 Binder:10190_10
12277u0_a12       10190 24072 iu-sync-manager
12278u0_a12       10190 25295 MediaTracker bu
12279u0_a12       10190 25340 lowpool[9]
12280u0_a12       10190 25593 lowpool[10]
12281system       10640 10640 ti.diagservices
12282system       10640 10647 Jit thread pool
12283system       10640 10648 Signal Catcher
12284system       10640 10649 ADB-JDWP Connec
12285system       10640 10650 ReferenceQueueD
12286system       10640 10651 FinalizerDaemon
12287system       10640 10652 FinalizerWatchd
12288system       10640 10653 HeapTaskDaemon
12289system       10640 10654 Binder:10640_1
12290system       10640 10656 Binder:10640_2
12291system       10640 10662 Binder:10640_3
12292system       10640 10668 Profile Saver
12293system       10640 10680 Binder:10640_4
12294system       10640 10682 ti.diagservices
12295system       10640 10694 queued-work-loo
12296u0_a44       11200 11200 .apps.turbo:aab
12297u0_a44       11200 11204 Jit thread pool
12298u0_a44       11200 11205 Signal Catcher
12299u0_a44       11200 11207 ADB-JDWP Connec
12300u0_a44       11200 11208 ReferenceQueueD
12301u0_a44       11200 11209 FinalizerDaemon
12302u0_a44       11200 11210 FinalizerWatchd
12303u0_a44       11200 11211 HeapTaskDaemon
12304u0_a44       11200 11212 Binder:11200_1
12305u0_a44       11200 11213 Binder:11200_2
12306u0_a44       11200 11214 Binder:11200_3
12307u0_a44       11200 11215 Profile Saver
12308u0_a44       11200 11250 GoogleApiHandle
12309u0_a44       11200 11255 queued-work-loo
12310u0_a44       11200 11622 Binder:11200_4
12311u0_a44       11200 16648 Binder:11200_5
12312u0_a44       11200 23747 GAC_Executor[0]
12313u0_a44       11200 23748 GAC_Executor[1]
12314u0_a44       11200 25119 Binder:11200_6
12315u0_a44       11200 27494 AsyncTask #3
12316u0_a119      12376 12376 lcomm.telephony
12317u0_a119      12376 12381 Jit thread pool
12318u0_a119      12376 12382 Signal Catcher
12319u0_a119      12376 12383 ADB-JDWP Connec
12320u0_a119      12376 12384 ReferenceQueueD
12321u0_a119      12376 12385 FinalizerDaemon
12322u0_a119      12376 12386 FinalizerWatchd
12323u0_a119      12376 12387 HeapTaskDaemon
12324u0_a119      12376 12388 Binder:12376_1
12325u0_a119      12376 12389 Binder:12376_2
12326u0_a119      12376 12390 Binder:12376_3
12327u0_a119      12376 12391 Profile Saver
12328u0_a119      12376 12392 Thread-2
12329u0_a119      12376 12393 CTSA Inject Thr
12330u0_a119      12376 12394 HwBinder:12376_
12331u0_a119      12376 12395 queued-work-loo
12332root         16180 16180 kworker/u16:18
12333wifi         16539 16539 wpa_supplicant
12334root         16565 16565 cds_mc_thread
12335root         16566 16566 cds_ol_rx_threa
12336root         16567 16567 wmi_rx_event_wo
12337system       23597 23597 ndroid.settings
12338system       23597 23602 Jit thread pool
12339system       23597 23603 Signal Catcher
12340system       23597 23604 ADB-JDWP Connec
12341system       23597 23605 ReferenceQueueD
12342system       23597 23606 FinalizerDaemon
12343system       23597 23607 FinalizerWatchd
12344system       23597 23608 HeapTaskDaemon
12345system       23597 23609 Binder:23597_1
12346system       23597 23610 Binder:23597_2
12347system       23597 23611 Profile Saver
12348system       23597 23613 onsState.Loader
12349system       23597 23615 pool-1-thread-1
12350system       23597 23616 Binder:23597_3
12351system       23597 23636 RenderThread
12352system       23597 23640 queued-work-loo
12353system       23597 23642 GoogleApiHandle
12354system       23597 23644 ConnectivityThr
12355system       23597 23645 android.bg
12356system       23597 23652 Binder:23597_4
12357system       23597 24464 Binder:23597_5
12358u0_a47       23620 23620 ackageinstaller
12359u0_a47       23620 23625 Jit thread pool
12360u0_a47       23620 23626 Signal Catcher
12361u0_a47       23620 23627 ADB-JDWP Connec
12362u0_a47       23620 23628 ReferenceQueueD
12363u0_a47       23620 23629 FinalizerDaemon
12364u0_a47       23620 23630 FinalizerWatchd
12365u0_a47       23620 23631 HeapTaskDaemon
12366u0_a47       23620 23632 Binder:23620_1
12367u0_a47       23620 23633 Binder:23620_2
12368u0_a47       23620 23634 Binder:23620_3
12369u0_a47       23620 23635 Binder:23620_4
12370u0_a47       23620 23637 Profile Saver
12371u0_a47       23620 23655 queued-work-loo
12372u0_a47       23620 24095 RenderThread
12373u0_a27       23932 23932 viders.calendar
12374u0_a27       23932 23937 Jit thread pool
12375u0_a27       23932 23938 Signal Catcher
12376u0_a27       23932 23939 ADB-JDWP Connec
12377u0_a27       23932 23940 ReferenceQueueD
12378u0_a27       23932 23941 FinalizerDaemon
12379u0_a27       23932 23942 FinalizerWatchd
12380u0_a27       23932 23943 HeapTaskDaemon
12381u0_a27       23932 23944 Binder:23932_1
12382u0_a27       23932 23945 Binder:23932_2
12383u0_a27       23932 23946 Binder:23932_3
12384u0_a27       23932 23947 Profile Saver
12385u0_a27       23932 23951 queued-work-loo
12386root         23997 23997 kworker/5:0
12387root         24050 24050 kworker/5:1
12388u0_a148      24056 24056 oid.pixellogger
12389u0_a148      24056 24061 Jit thread pool
12390u0_a148      24056 24062 Signal Catcher
12391u0_a148      24056 24063 ADB-JDWP Connec
12392u0_a148      24056 24064 ReferenceQueueD
12393u0_a148      24056 24065 FinalizerDaemon
12394u0_a148      24056 24066 FinalizerWatchd
12395u0_a148      24056 24067 HeapTaskDaemon
12396u0_a148      24056 24068 Binder:24056_1
12397u0_a148      24056 24069 Binder:24056_2
12398u0_a148      24056 24070 Binder:24056_3
12399u0_a148      24056 24073 Profile Saver
12400u0_a17       24075 24075 d.process.media
12401u0_a17       24075 24080 Jit thread pool
12402u0_a17       24075 24081 Signal Catcher
12403u0_a17       24075 24082 ADB-JDWP Connec
12404u0_a17       24075 24083 ReferenceQueueD
12405u0_a17       24075 24084 FinalizerDaemon
12406u0_a17       24075 24085 FinalizerWatchd
12407u0_a17       24075 24086 HeapTaskDaemon
12408u0_a17       24075 24087 Binder:24075_1
12409u0_a17       24075 24088 Binder:24075_2
12410u0_a17       24075 24089 Binder:24075_3
12411u0_a17       24075 24090 Profile Saver
12412u0_a17       24075 24093 thumbs thread
12413u0_a17       24075 25472 Binder:24075_4
12414u0_a24       24589 24589 d.process.acore
12415u0_a24       24589 24594 Jit thread pool
12416u0_a24       24589 24595 Signal Catcher
12417u0_a24       24589 24596 ADB-JDWP Connec
12418u0_a24       24589 24597 ReferenceQueueD
12419u0_a24       24589 24598 FinalizerDaemon
12420u0_a24       24589 24599 FinalizerWatchd
12421u0_a24       24589 24600 HeapTaskDaemon
12422u0_a24       24589 24601 Binder:24589_1
12423u0_a24       24589 24602 Binder:24589_2
12424u0_a24       24589 24603 Binder:24589_3
12425u0_a24       24589 24604 Profile Saver
12426root         24730 24730 kworker/0:0
12427root         25105 25105 kworker/7:0
12428root         25165 25165 kworker/6:0
12429root         25210 25210 kworker/3:1
12430root         25239 25239 kworker/2:0
12431root         25244 25244 kworker/4:0
12432root         25249 25249 kworker/1:1
12433root         25252 25252 kworker/3:0
12434root         25259 25259 kworker/2:1
12435root         25261 25261 kworker/1:0
12436root         25262 25262 kworker/0:1
12437root         25264 25264 kworker/1:2
12438root         25265 25265 kworker/3:2
12439root         25266 25266 kworker/1:3
12440root         25267 25267 kworker/2:2
12441root         25268 25268 kworker/3:3
12442u0_a96       25304 25304 droid.apps.maps
12443u0_a96       25304 25309 Jit thread pool
12444u0_a96       25304 25310 Signal Catcher
12445u0_a96       25304 25311 ADB-JDWP Connec
12446u0_a96       25304 25312 ReferenceQueueD
12447u0_a96       25304 25313 FinalizerDaemon
12448u0_a96       25304 25314 FinalizerWatchd
12449u0_a96       25304 25315 HeapTaskDaemon
12450u0_a96       25304 25316 Binder:25304_1
12451u0_a96       25304 25317 Binder:25304_2
12452u0_a96       25304 25319 Binder:25304_3
12453u0_a96       25304 25320 Profile Saver
12454u0_a96       25304 25326 DefaultPool1
12455u0_a96       25304 25328 DefaultPool2
12456u0_a96       25304 25329 DefaultPool3
12457u0_a96       25304 25330 GoogleApiHandle
12458u0_a96       25304 25331 DefaultPool4
12459u0_a96       25304 25332 DefaultPool5
12460u0_a96       25304 25333 DefaultPool6
12461u0_a96       25304 25334 DefaultPool7
12462u0_a96       25304 25335 DefaultPool8
12463u0_a96       25304 25358 OfflineManage
12464u0_a96       25304 25359 OfflineProcess
12465u0_a96       25304 25391 CronetInit
12466u0_a96       25304 25394 ConnectivityThr
12467u0_a96       25304 25395 TaskSchedulerSe
12468u0_a96       25304 25396 TaskSchedulerBa
12469u0_a96       25304 25397 TaskSchedulerBa
12470u0_a96       25304 25398 TaskSchedulerFo
12471u0_a96       25304 25401 ChromiumNet
12472u0_a96       25304 25402 DnsConfigServic
12473u0_a96       25304 25403 TaskSchedulerFo
12474u0_a96       25304 25405 Network File Th
12475u0_a96       25304 25406 Sensors
12476u0_a96       25304 25422 Location
12477u0_a96       25304 25427 queued-work-loo
12478u0_a96       25304 25428 GAC_Executor[0]
12479u0_a96       25304 25430 GAC_Executor[1]
12480u0_a124      25341 25341 ogle.android.gm
12481u0_a124      25341 25346 Jit thread pool
12482u0_a124      25341 25347 Signal Catcher
12483u0_a124      25341 25348 ADB-JDWP Connec
12484u0_a124      25341 25349 ReferenceQueueD
12485u0_a124      25341 25350 FinalizerDaemon
12486u0_a124      25341 25351 FinalizerWatchd
12487u0_a124      25341 25352 HeapTaskDaemon
12488u0_a124      25341 25353 Binder:25341_1
12489u0_a124      25341 25354 Binder:25341_2
12490u0_a124      25341 25355 Binder:25341_3
12491u0_a124      25341 25356 Profile Saver
12492u0_a124      25341 25363 queued-work-loo
12493u0_a124      25341 25377 GoogleApiHandle
12494u0_a124      25341 25383 pool-4-thread-1
12495u0_a124      25341 25385 GAC_Executor[0]
12496u0_a124      25341 25389 GAThread
12497u0_a124      25341 25414 GAC_Executor[1]
12498u0_a124      25341 25436 EmailNotificati
12499u0_a124      25341 25460 BaseWidgetProvi
12500u0_a124      25341 25462 MailIntentServi
12501u0_a124      25341 25464 Binder:25341_4
12502u0_a12       25365 25365 e.process.gapps
12503u0_a12       25365 25370 Jit thread pool
12504u0_a12       25365 25371 Signal Catcher
12505u0_a12       25365 25372 ADB-JDWP Connec
12506u0_a12       25365 25373 ReferenceQueueD
12507u0_a12       25365 25374 FinalizerDaemon
12508u0_a12       25365 25375 FinalizerWatchd
12509u0_a12       25365 25376 HeapTaskDaemon
12510u0_a12       25365 25378 Binder:25365_1
12511u0_a12       25365 25379 Binder:25365_2
12512u0_a12       25365 25380 Binder:25365_3
12513u0_a12       25365 25381 Profile Saver
12514u0_a12       25365 25390 RefQueueWorker@
12515u0_a78       25409 25409 droid.apps.docs
12516u0_a78       25409 25415 Jit thread pool
12517u0_a78       25409 25416 Signal Catcher
12518u0_a78       25409 25417 ADB-JDWP Connec
12519u0_a78       25409 25418 ReferenceQueueD
12520u0_a78       25409 25419 FinalizerDaemon
12521u0_a78       25409 25420 FinalizerWatchd
12522u0_a78       25409 25421 HeapTaskDaemon
12523u0_a78       25409 25424 Binder:25409_1
12524u0_a78       25409 25425 Binder:25409_2
12525u0_a78       25409 25426 Binder:25409_3
12526u0_a78       25409 25429 Profile Saver
12527u0_a78       25409 25437 GoogleApiHandle
12528u0_a78       25409 25441 ConnectivityThr
12529u0_a78       25409 25443 TaskSchedulerLo
12530u0_a78       25409 25453 queued-work-loo
12531u0_a78       25409 25457 DocsEventDispat
12532u0_a78       25409 25477 BackgroundFileD
12533u0_a78       25409 25478 ImpressionsTrac
12534u0_a78       25409 25479 GAC_Executor[0]
12535u0_a78       25409 25480 GAC_Executor[1]
12536u0_a78       25409 25598 Binder:25409_4
12537root         25432 25432 kworker/4:1
12538root         25433 25433 kworker/4:2
12539root         25483 25483 kworker/u16:17
12540u0_a64       25496 25496 id.defcontainer
12541u0_a64       25496 25501 Jit thread pool
12542u0_a64       25496 25502 Signal Catcher
12543u0_a64       25496 25503 ADB-JDWP Connec
12544u0_a64       25496 25504 ReferenceQueueD
12545u0_a64       25496 25505 FinalizerDaemon
12546u0_a64       25496 25506 FinalizerWatchd
12547u0_a64       25496 25507 HeapTaskDaemon
12548u0_a64       25496 25508 Binder:25496_1
12549u0_a64       25496 25509 Binder:25496_2
12550u0_a64       25496 25510 Binder:25496_3
12551u0_a64       25496 25511 Profile Saver
12552u0_a64       25496 25525 queued-work-loo
12553system       25527 25527 ndroid.keychain
12554system       25527 25532 Jit thread pool
12555system       25527 25533 Signal Catcher
12556system       25527 25534 ADB-JDWP Connec
12557system       25527 25535 ReferenceQueueD
12558system       25527 25536 FinalizerDaemon
12559system       25527 25537 FinalizerWatchd
12560system       25527 25539 HeapTaskDaemon
12561system       25527 25544 Binder:25527_1
12562system       25527 25545 Binder:25527_2
12563system       25527 25553 Binder:25527_3
12564system       25527 25556 Profile Saver
12565system       25527 25558 queued-work-loo
12566u0_a69       25538 25538 t_app_installer
12567u0_a69       25538 25546 Jit thread pool
12568u0_a69       25538 25547 Signal Catcher
12569u0_a69       25538 25548 ADB-JDWP Connec
12570u0_a69       25538 25549 ReferenceQueueD
12571u0_a69       25538 25550 FinalizerDaemon
12572u0_a69       25538 25551 FinalizerWatchd
12573u0_a69       25538 25552 HeapTaskDaemon
12574u0_a69       25538 25554 Binder:25538_1
12575u0_a69       25538 25555 Binder:25538_2
12576u0_a69       25538 25559 Binder:25538_3
12577u0_a69       25538 25560 Profile Saver
12578u0_a69       25538 25565 queued-work-loo
12579u0_a69       25538 25567 RxSchedulerPurg
12580u0_a69       25538 25568 RxCachedWorkerP
12581u0_a69       25538 25588 GAC_Executor[0]
12582u0_a69       25538 25590 GAC_Executor[1]
12583u0_a69       25538 25592 ndroid.play.b.g
12584u0_a69       25538 25599 Binder:25538_4
12585root         25606 25606 kworker/0:2
12586root         27492 27492 kworker/0:3
12587root         27493 27493 kworker/0:4
12588nobody       27506 27506 traced_probes
12589nobody       27506 27507 traced_probes
12590root         27528 27528 sh
12591root         27530 27530 sh
12592root         27532 27532 ps
12593USER           PID  PPID     VSZ    RSS WCHAN  PC S NAME                        COMM
12594root             1     0   26836   3844 SyS_epoll_wait 0 S init                 init
12595root             2     0       0      0 kthreadd 0 S [kthreadd]                 2
12596root             3     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/0]     3
12597root             5     2       0      0 worker_thread 0 S [kworker/0:0H]        5
12598root             6     2       0      0 diag_socket_read 0 S [kworker/u16:0]    6
12599root             7     2       0      0 rcu_gp_kthread 0 S [rcu_preempt]        7
12600root             8     2       0      0 rcu_gp_kthread 0 S [rcu_sched]          8
12601root             9     2       0      0 rcu_gp_kthread 0 S [rcu_bh]             9
12602root            10     2       0      0 rcu_nocb_kthread 0 S [rcuop/0]          1
12603root            11     2       0      0 rcu_nocb_kthread 0 S [rcuos/0]          1
12604root            12     2       0      0 rcu_nocb_kthread 0 S [rcuob/0]          1
12605root            13     2       0      0 smpboot_thread_fn 0 S [migration/0]     1
12606root            14     2       0      0 rescuer_thread 0 S [lru-add-drain]      1
12607root            15     2       0      0 smpboot_thread_fn 0 S [cpuhp/0]         1
12608root            16     2       0      0 smpboot_thread_fn 0 S [cpuhp/1]         1
12609root            17     2       0      0 smpboot_thread_fn 0 S [migration/1]     1
12610root            18     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/1]     1
12611root            20     2       0      0 worker_thread 0 S [kworker/1:0H]        2
12612root            21     2       0      0 rcu_nocb_kthread 0 S [rcuop/1]          2
12613root            22     2       0      0 rcu_nocb_kthread 0 S [rcuos/1]          2
12614root            23     2       0      0 rcu_nocb_kthread 0 S [rcuob/1]          2
12615root            24     2       0      0 smpboot_thread_fn 0 S [cpuhp/2]         2
12616root            25     2       0      0 smpboot_thread_fn 0 S [migration/2]     2
12617root            26     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/2]     2
12618root            28     2       0      0 worker_thread 0 S [kworker/2:0H]        2
12619root            29     2       0      0 rcu_nocb_kthread 0 S [rcuop/2]          2
12620root            30     2       0      0 rcu_nocb_kthread 0 S [rcuos/2]          3
12621root            31     2       0      0 rcu_nocb_kthread 0 S [rcuob/2]          3
12622root            32     2       0      0 smpboot_thread_fn 0 S [cpuhp/3]         3
12623root            33     2       0      0 smpboot_thread_fn 0 S [migration/3]     3
12624root            34     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/3]     3
12625root            36     2       0      0 worker_thread 0 S [kworker/3:0H]        3
12626root            37     2       0      0 rcu_nocb_kthread 0 S [rcuop/3]          3
12627root            38     2       0      0 rcu_nocb_kthread 0 S [rcuos/3]          3
12628root            39     2       0      0 rcu_nocb_kthread 0 S [rcuob/3]          3
12629root            40     2       0      0 smpboot_thread_fn 0 S [cpuhp/4]         4
12630root            41     2       0      0 smpboot_thread_fn 0 S [migration/4]     4
12631root            42     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/4]     4
12632root            44     2       0      0 worker_thread 0 S [kworker/4:0H]        4
12633root            45     2       0      0 rcu_nocb_kthread 0 S [rcuop/4]          4
12634root            46     2       0      0 rcu_nocb_kthread 0 S [rcuos/4]          4
12635root            47     2       0      0 rcu_nocb_kthread 0 S [rcuob/4]          4
12636root            48     2       0      0 smpboot_thread_fn 0 S [cpuhp/5]         4
12637root            49     2       0      0 smpboot_thread_fn 0 S [migration/5]     4
12638root            50     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/5]     5
12639root            52     2       0      0 worker_thread 0 S [kworker/5:0H]        5
12640root            53     2       0      0 rcu_nocb_kthread 0 S [rcuop/5]          5
12641root            54     2       0      0 rcu_nocb_kthread 0 S [rcuos/5]          5
12642root            55     2       0      0 rcu_nocb_kthread 0 S [rcuob/5]          5
12643root            56     2       0      0 smpboot_thread_fn 0 S [cpuhp/6]         5
12644root            57     2       0      0 smpboot_thread_fn 0 S [migration/6]     5
12645root            58     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/6]     5
12646root            60     2       0      0 worker_thread 0 S [kworker/6:0H]        6
12647root            61     2       0      0 rcu_nocb_kthread 0 S [rcuop/6]          6
12648root            62     2       0      0 rcu_nocb_kthread 0 S [rcuos/6]          6
12649root            63     2       0      0 rcu_nocb_kthread 0 S [rcuob/6]          6
12650root            64     2       0      0 smpboot_thread_fn 0 S [cpuhp/7]         6
12651root            65     2       0      0 smpboot_thread_fn 0 S [migration/7]     6
12652root            66     2       0      0 smpboot_thread_fn 0 S [ksoftirqd/7]     6
12653root            68     2       0      0 worker_thread 0 S [kworker/7:0H]        6
12654root            69     2       0      0 rcu_nocb_kthread 0 S [rcuop/7]          6
12655root            70     2       0      0 rcu_nocb_kthread 0 S [rcuos/7]          7
12656root            71     2       0      0 rcu_nocb_kthread 0 S [rcuob/7]          7
12657root            72     2       0      0 rescuer_thread 0 S [netns]              7
12658root            74     2       0      0 rescuer_thread 0 S [ipa_usb_wq]         7
12659root            76     2       0      0 watchdog_kthread 0 S [msm_watchdog]     7
12660root            77     2       0      0 kthread_worker_fn 0 S [smem_native_sps] 7
12661root            78     2       0      0 kthread_worker_fn 0 S [spss_mailbox_gl] 7
12662root            79     2       0      0 kthread_worker_fn 0 S [qmp_aop]         7
12663root            80     2       0      0 kthread_worker_fn 0 S [smem_native_mps] 8
12664root            81     2       0      0 kthread_worker_fn 0 S [mpss_smem_glink] 8
12665root            82     2       0      0 kthread_worker_fn 0 S [smem_native_lpa] 8
12666root            83     2       0      0 kthread_worker_fn 0 S [lpass_smem_glin] 8
12667root            84     2       0      0 kthread_worker_fn 0 S [smem_native_dsp] 8
12668root            85     2       0      0 kthread_worker_fn 0 S [dsps_smem_glink] 8
12669root            86     2       0      0 kthread_worker_fn 0 S [smem_native_cds] 8
12670root            87     2       0      0 kthread_worker_fn 0 S [cdsp_smem_glink] 8
12671root            88     2       0      0 watchdog 0 S [khungtaskd]               8
12672root            89     2       0      0 oom_reaper 0 S [oom_reaper]             8
12673root            90     2       0      0 rescuer_thread 0 S [writeback]          9
12674root            91     2       0      0 kcompactd 0 S [kcompactd0]              9
12675root            92     2       0      0 rescuer_thread 0 S [crypto]             9
12676root            93     2       0      0 rescuer_thread 0 S [bioset]             9
12677root            94     2       0      0 rescuer_thread 0 S [kblockd]            9
12678root            95     2       0      0 irq_thread 0 S [irq/160-arm-smm]        9
12679root            96     2       0      0 irq_thread 0 S [irq/161-arm-smm]        9
12680root            97     2       0      0 irq_thread 0 S [irq/170-arm-smm]        9
12681root            98     2       0      0 worker_thread 0 S [kworker/u17:0]       9
12682root            99     2       0      0 irq_thread 0 S [irq/125-tsens-u]        9
12683root           100     2       0      0 irq_thread 0 S [irq/126-tsens-c]        1
12684root           101     2       0      0 irq_thread 0 S [irq/127-tsens-u]        1
12685root           102     2       0      0 irq_thread 0 S [irq/128-tsens-c]        1
12686root           103     2       0      0 rescuer_thread 0 S [edac-poller]        1
12687root           104     2       0      0 ion_heap_deferred_free 0 S [system]     1
12688root           105     2       0      0 ion_heap_deferred_free 0 S [easel_mem]  1
12689root           106     2       0      0 rescuer_thread 0 S [ipa_power_mgmt]     1
12690root           107     2       0      0 rescuer_thread 0 S [transport_power]    1
12691root           108     2       0      0 rescuer_thread 0 S [ipa_rm_wq]          1
12692root           109     2       0      0 rescuer_thread 0 S [devfreq_wq]         1
12693root           110     2       0      0 rescuer_thread 0 S [governor_msm_ad]    1
12694root           111     2       0      0 rescuer_thread 0 S [cfg80211]           1
12695root           112     2       0      0 irq_thread 0 S [irq/541-ibb-sc-]        1
12696root           113     2       0      0 irq_thread 0 S [irq/542-lab-sc-]        1
12697root           115     2       0      0 irq_thread 0 S [irq/75-qpnp_wle]        1
12698root           116     2       0      0 irq_thread 0 S [irq/76-qpnp_wle]        1
12699root           142     2       0      0 kswapd  0 S [kswapd0]                   1
12700root           143     2       0      0 rescuer_thread 0 S [vmstat]             1
12701root           144     2       0      0 ecryptfs_threadfn 0 S [ecryptfs-kthrea] 1
12702root           193     2       0      0 irq_thread 0 S [irq/174-arm-smm]        1
12703root           194     2       0      0 irq_thread 0 S [irq/175-arm-smm]        1
12704root           195     2       0      0 irq_thread 0 S [irq/91-eud_irq]         1
12705root           196     2       0      0 rescuer_thread 0 S [glink_ssr_wq]       1
12706root           197     2       0      0 rescuer_thread 0 S [glink_lbsrv]        1
12707root           198     2       0      0 kthread_worker_fn 0 S [spi_wdsp]        1
12708root           199     2       0      0 kthread_worker_fn 0 S [wdsp_spi_glink_] 1
12709root           200     2       0      0 rescuer_thread 0 S [glink_xprt_wq]      2
12710root           201     2       0      0 rescuer_thread 0 S [IPCRTR_mpss_sme]    2
12711root           202     2       0      0 rescuer_thread 0 S [IPCRTR_lpass_sm]    2
12712root           203     2       0      0 rescuer_thread 0 S [IPCRTR_dsps_sme]    2
12713root           204     2       0      0 rescuer_thread 0 S [IPCRTR_cdsp_sme]    2
12714root           205     2       0      0 rescuer_thread 0 S [glink_pkt_wq]       2
12715root           206     2       0      0 irq_thread 0 S [irq/176-arm-smm]        2
12716root           207     2       0      0 rescuer_thread 0 S [qmi_svc_event_w]    2
12717root           208     2       0      0 rescuer_thread 0 S [msm_ipc_router]     2
12718root           209     2       0      0 rescuer_thread 0 S [servloc_wq]         2
12719root           210     2       0      0 irq_thread 0 S [irq/177-arm-smm]        2
12720root           211     2       0      0 irq_thread 0 S [irq/178-arm-smm]        2
12721root           212     2       0      0 add_hwgenerator_randomness 0 S [hwrng]  2
12722root           214     2       0      0 rescuer_thread 0 S [diag_real_time_]    2
12723root           215     2       0      0 rescuer_thread 0 S [diag_wq]            2
12724root           216     2       0      0 rescuer_thread 0 S [DIAG_USB_diag]      2
12725root           217     2       0      0 rescuer_thread 0 S [diag_cntl_wq]       2
12726root           218     2       0      0 rescuer_thread 0 S [diag_dci_wq]        2
12727root           219     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
12728root           220     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
12729root           221     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
12730root           222     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
12731root           223     2       0      0 rescuer_thread 0 S [DIAG_SOCKMODEM_]    2
12732root           224     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
12733root           225     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
12734root           226     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
12735root           227     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
12736root           228     2       0      0 rescuer_thread 0 S [DIAG_SOCKLPASS_]    2
12737root           229     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
12738root           230     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
12739root           231     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
12740root           232     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
12741root           233     2       0      0 rescuer_thread 0 S [DIAG_SOCKWCNSS_]    2
12742root           234     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
12743root           235     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
12744root           236     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
12745root           237     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
12746root           238     2       0      0 rescuer_thread 0 S [DIAG_SOCKSENSOR]    2
12747root           239     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_C]    2
12748root           240     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
12749root           241     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_C]    2
12750root           242     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
12751root           243     2       0      0 rescuer_thread 0 S [DIAG_SOCKDIAG_D]    2
12752root           244     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_C]    2
12753root           245     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
12754root           246     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_C]    2
12755root           247     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
12756root           248     2       0      0 rescuer_thread 0 S [DIAG_SOCKCDSP_D]    2
12757root           249     2       0      0 rescuer_thread 0 S [DIAG_CNTL_SOCKE]    2
12758root           250     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
12759root           251     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
12760root           252     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
12761root           253     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
12762root           254     2       0      0 rescuer_thread 0 S [DIAG_GLINK_DIAG]    2
12763root           255     2       0      0 diag_socket_read 0 S [kworker/u16:1]    2
12764root           256     2       0      0 rescuer_thread 0 S [kgsl-workqueue]     2
12765root           257     2       0      0 rescuer_thread 0 S [kgsl-mementry]      2
12766root           258     2       0      0 kthread_worker_fn 0 S [kgsl_worker_thr] 2
12767root           259     2       0      0 diag_socket_read 0 S [kworker/u16:2]    2
12768root           260     2       0      0 rescuer_thread 0 S [bioset]             2
12769root           261     2       0      0 rescuer_thread 0 S [bioset]             2
12770root           262     2       0      0 rescuer_thread 0 S [bioset]             2
12771root           263     2       0      0 rescuer_thread 0 S [bioset]             2
12772root           264     2       0      0 rescuer_thread 0 S [bioset]             2
12773root           265     2       0      0 rescuer_thread 0 S [bioset]             2
12774root           266     2       0      0 rescuer_thread 0 S [bioset]             2
12775root           267     2       0      0 rescuer_thread 0 S [bioset]             2
12776root           268     2       0      0 irq_thread 0 S [irq/171-arm-smm]        2
12777root           269     2       0      0 rescuer_thread 0 S [bioset]             2
12778root           271     2       0      0 rescuer_thread 0 S [bioset]             2
12779root           272     2       0      0 rescuer_thread 0 S [bioset]             2
12780root           273     2       0      0 rescuer_thread 0 S [bioset]             2
12781root           274     2       0      0 irq_thread 0 S [irq/162-arm-smm]        2
12782root           275     2       0      0 rescuer_thread 0 S [bioset]             2
12783root           276     2       0      0 rescuer_thread 0 S [bioset]             2
12784root           277     2       0      0 rescuer_thread 0 S [bioset]             2
12785root           278     2       0      0 rescuer_thread 0 S [bioset]             2
12786root           279     2       0      0 rescuer_thread 0 S [bioset]             2
12787root           280     2       0      0 rescuer_thread 0 S [bioset]             2
12788root           281     2       0      0 rescuer_thread 0 S [bioset]             2
12789root           282     2       0      0 rescuer_thread 0 S [bioset]             2
12790root           283     2       0      0 rescuer_thread 0 S [bioset]             2
12791root           284     2       0      0 rescuer_thread 0 S [bioset]             2
12792root           285     2       0      0 rescuer_thread 0 S [bioset]             2
12793root           286     2       0      0 rescuer_thread 0 S [bioset]             2
12794root           287     2       0      0 rescuer_thread 0 S [bioset]             2
12795root           288     2       0      0 irq_thread 0 S [irq/163-arm-smm]        2
12796root           289     2       0      0 irq_thread 0 S [irq/179-arm-smm]        2
12797root           290     2       0      0 rescuer_thread 0 S [memory_wq]          2
12798root           292     2       0      0 diag_socket_read 0 S [kworker/u16:3]    2
12799root           293     2       0      0 irq_thread 0 S [irq/180-arm-smm]        2
12800root           294     2       0      0 irq_thread 0 S [irq/164-arm-smm]        2
12801root           295     2       0      0 irq_thread 0 S [irq/181-arm-smm]        2
12802root           296     2       0      0 irq_thread 0 S [irq/182-arm-smm]        2
12803root           297     2       0      0 rescuer_thread 0 S [qcrypto_seq_res]    2
12804root           298     2       0      0 irq_thread 0 S [irq/183-arm-smm]        2
12805root           319     2       0      0 scsi_error_handler 0 S [scsi_eh_0]      3
12806root           320     2       0      0 rescuer_thread 0 S [scsi_tmf_0]         3
12807root           321     2       0      0 kthread_worker_fn 0 S [crtc_commit:111] 3
12808root           322     2       0      0 kthread_worker_fn 0 S [crtc_event:111]  3
12809root           323     2       0      0 kthread_worker_fn 0 S [crtc_commit:163] 3
12810root           324     2       0      0 kthread_worker_fn 0 S [crtc_event:163]  3
12811root           325     2       0      0 kthread_worker_fn 0 S [pp_event]        3
12812root           326     2       0      0 rescuer_thread 0 S [ufs_pm_qos_0]       3
12813root           328     2       0      0 rescuer_thread 0 S [ufs_clk_gating_]    3
12814root           329     2       0      0 rescuer_thread 0 S [ufs_mgc_hibern8]    3
12815root           330     2       0      0 rescuer_thread 0 S [ice-set-key]        3
12816root           331     2       0      0 kthread_worker_fn 0 S [spi10]           3
12817root           332     2       0      0 kthread_worker_fn 0 S [spi32766]        3
12818root           333     2       0      0 kthread_worker_fn 0 S [spi0]            3
12819root           334     2       0      0 kthread_worker_fn 0 S [spi32765]        3
12820root           335     2       0      0 rescuer_thread 0 S [bond0]              3
12821root           338     2       0      0 rescuer_thread 0 S [sharedmem_qmi_w]    3
12822root           339     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    3
12823root           343     2       0      0 rescuer_thread 0 S [uether]             3
12824root           344     2       0      0 rescuer_thread 0 S [k_ipa_usb]          3
12825root           347     2       0      0 rescuer_thread 0 S [kgsl-events]        3
12826root           348     2       0      0 irq_thread 0 S [irq/378-soc:fp_]        3
12827root           349     2       0      0 rescuer_thread 0 S [kgsl_devfreq_wq]    3
12828root           350     2       0      0 rescuer_thread 0 S [msm_vidc_worker]    3
12829root           351     2       0      0 rescuer_thread 0 S [pm_workerq_venu]    3
12830root           353     2       0      0 irq_thread 0 S [irq/184-arm-smm]        3
12831root           354     2       0      0 irq_thread 0 S [irq/185-arm-smm]        3
12832root           355     2       0      0 irq_thread 0 S [irq/186-arm-smm]        3
12833root           356     2       0      0 irq_thread 0 S [irq/187-arm-smm]        3
12834root           357     2       0      0 kthread_worker_fn 0 S [rot_commitq_0_0] 3
12835root           358     2       0      0 kthread_worker_fn 0 S [rot_commitq_0_1] 3
12836root           359     2       0      0 kthread_worker_fn 0 S [rot_doneq_0_0]   3
12837root           360     2       0      0 kthread_worker_fn 0 S [rot_doneq_0_1]   3
12838root           361     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_0]  3
12839root           362     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_1]  3
12840root           363     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_2]  3
12841root           364     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_3]  3
12842root           365     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_4]  3
12843root           366     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_5]  3
12844root           367     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_6]  3
12845root           368     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_7]  3
12846root           369     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_8]  3
12847root           370     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_9]  3
12848root           371     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_10] 3
12849root           372     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_11] 3
12850root           373     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_12] 3
12851root           374     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_13] 3
12852root           375     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_14] 3
12853root           376     2       0      0 kthread_worker_fn 0 S [rot_fenceq_0_15] 3
12854root           377     2       0      0 rescuer_thread 0 S [cam-cpas]           3
12855root           378     2       0      0 rescuer_thread 0 S [qcom,cam_virtua]    3
12856root           379     2       0      0 irq_thread 0 S [irq/188-arm-smm]        3
12857root           380     2       0      0 rescuer_thread 0 S [qcom,cam170-cpa]    3
12858root           381     2       0      0 irq_thread 0 S [irq/189-arm-smm]        3
12859root           382     2       0      0 rescuer_thread 0 S [cam_cci_wq]         3
12860root           383     2       0      0 rescuer_thread 0 S [cam_cci_wq]         3
12861root           384     2       0      0 irq_thread 0 S [irq/190-arm-smm]        3
12862root           385     2       0      0 irq_thread 0 S [irq/191-arm-smm]        3
12863root           386     2       0      0 irq_thread 0 S [irq/192-arm-smm]        3
12864root           387     2       0      0 irq_thread 0 S [irq/193-arm-smm]        3
12865root           388     2       0      0 irq_thread 0 S [irq/709-chg-err]        3
12866root           389     2       0      0 irq_thread 0 S [irq/710-chg-sta]        3
12867root           390     2       0      0 irq_thread 0 S [irq/714-otg-fai]        3
12868root           391     2       0      0 irq_thread 0 S [irq/715-otg-ove]        3
12869root           392     2       0      0 irq_thread 0 S [irq/716-otg-oc-]        3
12870root           393     2       0      0 irq_thread 0 S [irq/717-testmod]        3
12871root           394     2       0      0 irq_thread 0 S [irq/718-bat-tem]        3
12872root           395     2       0      0 irq_thread 0 S [irq/719-bat-ocp]        3
12873root           396     2       0      0 irq_thread 0 S [irq/720-bat-ov]         3
12874root           397     2       0      0 irq_thread 0 S [irq/721-bat-low]        3
12875root           398     2       0      0 irq_thread 0 S [irq/722-bat-the]        3
12876root           399     2       0      0 irq_thread 0 S [irq/723-bat-ter]        3
12877root           400     2       0      0 irq_thread 0 S [irq/724-usbin-c]        4
12878root           401     2       0      0 irq_thread 0 S [irq/725-usbin-l]        4
12879root           402     2       0      0 irq_thread 0 S [irq/726-usbin-u]        4
12880root           403     2       0      0 irq_thread 0 S [irq/727-usbin-o]        4
12881root           404     2       0      0 irq_thread 0 S [irq/728-usbin-p]        4
12882root           405     2       0      0 irq_thread 0 S [irq/729-usbin-s]        4
12883root           406     2       0      0 irq_thread 0 S [irq/730-usbin-i]        4
12884root           407     2       0      0 irq_thread 0 S [irq/731-type-c-]        4
12885root           408     2       0      0 irq_thread 0 S [irq/732-dcin-co]        4
12886root           409     2       0      0 irq_thread 0 S [irq/733-dcin-lt]        4
12887root           410     2       0      0 irq_thread 0 S [irq/734-dcin-uv]        4
12888root           411     2       0      0 irq_thread 0 S [irq/735-dcin-ov]        4
12889root           412     2       0      0 irq_thread 0 S [irq/736-dcin-pl]        4
12890root           413     2       0      0 irq_thread 0 S [irq/737-div2-en]        4
12891root           414     2       0      0 irq_thread 0 S [irq/738-dcin-ic]        4
12892root           415     2       0      0 irq_thread 0 S [irq/740-wdog-ba]        4
12893root           416     2       0      0 irq_thread 0 S [irq/741-aicl-fa]        4
12894root           418     2       0      0 irq_thread 0 S [irq/742-aicl-do]        4
12895root           419     2       0      0 worker_thread 0 S [kworker/4:4]         4
12896root           420     2       0      0 irq_thread 0 S [irq/743-high-du]        4
12897root           422     2       0      0 irq_thread 0 S [irq/744-input-c]        4
12898root           424     2       0      0 irq_thread 0 S [irq/745-tempera]        4
12899root           425     2       0      0 irq_thread 0 S [irq/746-switche]        4
12900root           426     2       0      0 rescuer_thread 0 S [bioset]             4
12901root           428     2       0      0 irq_thread 0 S [irq/381-p9221-i]        4
12902root           429     2       0      0 irq_thread 0 S [irq/293-p9221-i]        4
12903root           430     2       0      0 rescuer_thread 0 S [bioset]             4
12904root           431     2       0      0 rescuer_thread 0 S [bioset]             4
12905root           432     2       0      0 rescuer_thread 0 S [bioset]             4
12906root           433     2       0      0 irq_thread 0 S [irq/29-i2c_pmic]        4
12907root           434     2       0      0 rescuer_thread 0 S [bioset]             4
12908root           435     2       0      0 irq_thread 0 S [irq/70-bcl-high]        4
12909root           436     2       0      0 rescuer_thread 0 S [bioset]             4
12910root           437     2       0      0 irq_thread 0 S [irq/72-bcl-low-]        4
12911root           438     2       0      0 rescuer_thread 0 S [bioset]             4
12912root           439     2       0      0 rescuer_thread 0 S [bioset]             4
12913root           440     2       0      0 irq_thread 0 S [irq/543-limits_]        4
12914root           441     2       0      0 rescuer_thread 0 S [bioset]             4
12915root           442     2       0      0 worker_thread 0 S [kworker/7:3]         4
12916root           443     2       0      0 diag_socket_read 0 S [kworker/u16:4]    4
12917root           445     2       0      0 diag_socket_read 0 S [kworker/u16:5]    4
12918root           446     2       0      0 diag_socket_read 0 S [kworker/u16:6]    4
12919root           447     2       0      0 diag_socket_read 0 S [kworker/u16:7]    4
12920root           448     2       0      0 diag_socket_read 0 S [kworker/u16:8]    4
12921root           449     2       0      0 irq_thread 0 S [irq/544-limits_]        4
12922root           450     2       0      0 rescuer_thread 0 S [qmi_tmd_wq]         4
12923root           451     2       0      0 rescuer_thread 0 S [dm_bufio_cache]     4
12924root           452     2       0      0 irq_thread 0 S [irq/99-KRYO3XX ]        4
12925root           453     2       0      0 irq_thread 0 S [irq/371-s2mpb04]        4
12926root           454     2       0      0 irq_thread 0 S [irq/287-s2mpb04]        4
12927root           455     2       0      0 irq_thread 0 S [irq/52-vendor:e]        4
12928root           456     2       0      0 irq_thread 0 S [irq/194-arm-smm]        4
12929root           457     2       0      0 rescuer_thread 0 S [uaudio_svc]         4
12930root           458     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    4
12931root           459     2       0      0 rescuer_thread 0 S [apr_driver]         4
12932root           460     2       0      0 rescuer_thread 0 S [ipv6_addrconf]      4
12933root           461     2       0      0 irq_thread 0 S [irq/880-adsp]           4
12934root           462     2       0      0 rescuer_thread 0 S [sysmon_wq]          4
12935root           463     2       0      0 irq_thread 0 S [irq/912-slpi]           4
12936root           464     2       0      0 irq_thread 0 S [irq/944-cdsp]           4
12937root           465     2       0      0 irq_thread 0 S [irq/848-modem]          4
12938root           472     2       0      0 irq_thread 0 S [irq/38-sig-tx]          4
12939root           473     2       0      0 irq_thread 0 S [irq/64-sig-rx]          4
12940root           474     2       0      0 rescuer_thread 0 S [usbpd0]             4
12941root           475     2       0      0 rescuer_thread 0 S [usbpd0]             4
12942root           476     2       0      0 irq_thread 0 S [irq/1040-soc-up]        4
12943root           477     2       0      0 irq_thread 0 S [irq/1041-soc-re]        4
12944root           478     2       0      0 irq_thread 0 S [irq/1042-bsoc-d]        4
12945root           479     2       0      0 irq_thread 0 S [irq/1043-msoc-d]        4
12946root           480     2       0      0 irq_thread 0 S [irq/1044-msoc-l]        4
12947root           481     2       0      0 irq_thread 0 S [irq/1045-msoc-e]        4
12948root           482     2       0      0 irq_thread 0 S [irq/1046-msoc-h]        4
12949root           483     2       0      0 irq_thread 0 S [irq/1047-msoc-f]        4
12950root           484     2       0      0 irq_thread 0 S [irq/1048-vbatt-]        4
12951root           485     2       0      0 irq_thread 0 S [irq/1049-vbatt-]        4
12952root           486     2       0      0 irq_thread 0 S [irq/1050-esr-de]        4
12953root           487     2       0      0 irq_thread 0 S [irq/1051-batt-m]        4
12954root           488     2       0      0 irq_thread 0 S [irq/1052-batt-t]        4
12955root           489     2       0      0 irq_thread 0 S [irq/1053-ima-rd]        4
12956root           490     2       0      0 irq_thread 0 S [irq/1054-mem-xc]        4
12957root           491     2       0      0 irq_thread 0 S [irq/1055-dma-gr]        4
12958root           492     2       0      0 irq_thread 0 S [irq/36-qcom,tem]        4
12959root           493     2       0      0 irq_thread 0 S [irq/536-pwr_eve]        4
12960root           494     2       0      0 irq_thread 0 S [irq/535-dp_hs_p]        4
12961root           495     2       0      0 irq_thread 0 S [irq/538-dm_hs_p]        4
12962root           496     2       0      0 irq_thread 0 S [irq/537-ss_phy_]        4
12963root           497     2       0      0 irq_thread 0 S [irq/195-arm-smm]        4
12964root           498     2       0      0 rescuer_thread 0 S [usb_bam_wq]         4
12965root           499     2       0      0 try_core_ctl 0 S [core_ctl/0]           4
12966root           500     2       0      0 try_core_ctl 0 S [core_ctl/4]           5
12967root           509     2       0      0 rescuer_thread 0 S [rq_stats]           5
12968root           510     2       0      0 irq_thread 0 S [irq/196-arm-smm]        5
12969root           511     2       0      0 irq_thread 0 S [irq/197-arm-smm]        5
12970root           512     2       0      0 irq_thread 0 S [irq/198-arm-smm]        5
12971root           513     2       0      0 irq_thread 0 S [irq/199-arm-smm]        5
12972root           514     2       0      0 irq_thread 0 S [irq/200-arm-smm]        5
12973root           515     2       0      0 irq_thread 0 S [irq/201-arm-smm]        5
12974root           516     2       0      0 irq_thread 0 S [irq/202-arm-smm]        5
12975root           517     2       0      0 irq_thread 0 S [irq/203-arm-smm]        5
12976root           518     2       0      0 irq_thread 0 S [irq/204-arm-smm]        5
12977root           519     2       0      0 irq_thread 0 S [irq/205-arm-smm]        5
12978root           520     2       0      0 irq_thread 0 S [irq/206-arm-smm]        5
12979root           521     2       0      0 kthread_worker_fn 0 S [set_state_work]  5
12980root           522     2       0      0 rescuer_thread 0 S [sb-1]               5
12981root           523     2       0      0 ngd_slim_rx_msgq_thread 0 S [ngd_rx_thread1] 5
12982root           524     2       0      0 irq_thread 0 S [irq/309-mnh-rea]        5
12983root           525     2       0      0 ngd_notify_partners 0 S [ngd_notify_sl1]  5
12984root           526     2       0      0 rescuer_thread 0 S [sb-3]               5
12985root           527     2       0      0 ngd_slim_rx_msgq_thread 0 S [ngd_rx_thread3] 5
12986root           528     2       0      0 ngd_notify_partners 0 S [ngd_notify_sl3]  5
12987root           529     2       0      0 rescuer_thread 0 S [tbn_event_proce]    5
12988root           530     2       0      0 irq_thread 0 S [irq/79-qpnp_fla]        5
12989root           531     2       0      0 irq_thread 0 S [irq/78-qpnp_fla]        5
12990root           532     2       0      0 irq_thread 0 S [irq/77-qpnp_fla]        5
12991root           533     2       0      0 irq_thread 0 S [irq/1057-mnh_pc]        5
12992root           534     2       0      0 irq_thread 0 S [irq/1058-mnh_pc]        5
12993root           535     2       0      0 irq_thread 0 S [irq/1059-mnh_pc]        5
12994root           536     2       0      0 irq_thread 0 S [irq/1060-mnh_pc]        5
12995root           537     2       0      0 irq_thread 0 S [irq/1061-mnh_pc]        5
12996root           538     2       0      0 irq_thread 0 S [irq/1064-mnh_pc]        5
12997root           539     2       0      0 irq_thread 0 S [irq/1065-mnh_pc]        5
12998root           540     2       0      0 irq_thread 0 S [irq/207-arm-smm]        5
12999root           542     2       0      0 worker_thread 0 S [kworker/5:1H]        5
13000root           543     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
13001root           545     2       0      0 worker_thread 0 S [kworker/4:1H]        5
13002root           546     2       0      0 kjournald2 0 S [jbd2/sdf2-8]            5
13003root           547     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
13004root           548     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
13005root           549     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    5
13006root           550     1   11868   2596 do_sys_poll 0 S init                    init
13007root           551     1   11224   1716 do_sys_poll 0 S init                    init
13008root           552     1   11480   2512 do_sys_poll 0 S ueventd                 init
13009root           553     2       0      0 worker_thread 0 S [kworker/7:1H]        5
13010root           556     2       0      0 irq_thread 0 S [irq/319-max1720]        5
13011root           560     2       0      0 worker_thread 0 S [kworker/6:3]         5
13012root           570     2       0      0 worker_thread 0 S [kworker/u17:1]       5
13013logd           571     1   26316   9760 SyS_rt_sigsuspend 0 S logd              logd
13014root           572     2       0      0 worker_thread 0 S [kworker/6:1H]        5
13015system         573     1   15872   2472 do_wait 0 S qseecomd                    qseecomd
13016system         574     1   14352   2684 binder_ioctl 0 S [email protected] [email protected]
13017root           576     2       0      0 kthread_worker_fn 0 S [sugov:0]         5
13018root           577     2       0      0 kthread_worker_fn 0 S [sugov:4]         5
13019root           578     2       0      0 worker_thread 0 S [kworker/0:1H]        5
13020root           583     2       0      0 kauditd_thread 0 S [kauditd]            5
13021root           585     1 2129500   4772 binder_ioctl 0 S vold                   vold
13022system         586     1 2114188   4344 binder_ioctl 0 S hwservicemanager       hwservicemanager
13023system         591   573   29752    804 SyS_rt_sigsuspend 0 S qseecomd          qseecomd
13024root           606     2       0      0 kjournald2 0 S [jbd2/sda20-8]           6
13025root           607     2       0      0 rescuer_thread 0 S [ext4-rsv-conver]    6
13026system         608     1   10424   1916 binder_ioctl 0 S servicemanager         servicemanager
13027system         609     1   11184   1824 binder_ioctl 0 S vndservicemanager      vndservicemanager
13028root           611     1   12512   2596 binder_ioctl 0 S [email protected] [email protected]
13029system         612     1   13964   2776 binder_ioctl 0 S [email protected] [email protected]
13030hsm            613     1 2127100   4308 binder_ioctl 0 S [email protected] [email protected]
13031hsm            614     1   17568   2056 binder_ioctl 0 S citadeld               citadeld
13032system         616     1   20044   3444 do_sys_poll 0 S sscrpcd                 sscrpcd
13033system         619     1 2146004   8036 binder_ioctl 0 S [email protected] [email protected]
13034system         620     1   16812   2364 binder_ioctl 0 S [email protected] [email protected]
13035system         621     1   18580   3188 binder_ioctl 0 S [email protected] [email protected]
13036root           645     2       0      0 irq_thread 0 S [irq/165-arm-smm]        6
13037root           646     2       0      0 rescuer_thread 0 S [cds_recovery_wo]    6
13038root           647     2       0      0 wlan_logging_thread 0 S [wlan_logging_th] 6
13039root           670     2       0      0 irq_thread 0 S [irq/372-cs35l36]        6
13040root           674     2       0      0 irq_thread 0 S [irq/297-cs35l36]        6
13041root           676     2       0      0 rescuer_thread 0 S [dsps_IPCRTR]        6
13042root           678     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
13043root           679     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
13044root           683     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    6
13045root           686     2       0      0 rescuer_thread 0 S [kdmflush]           6
13046root           687     2       0      0 rescuer_thread 0 S [bioset]             6
13047root           692     2       0      0 irq_thread 0 S [irq/382-fts]            6
13048root           693     2       0      0 worker_thread 0 S [kworker/1:1H]        6
13049root           698     2       0      0 issue_flush_thread 0 S [f2fs_flush-253:] 6
13050root           699     2       0      0 issue_discard_thread 0 S [f2fs_discard-25] 6
13051root           700     2       0      0 gc_thread_func 0 S [f2fs_gc-253:0]      7
13052system         702     1   20832   1856 futex_wait_queue_me 0 S time_daemon     time_daemon
13053root           726     2       0      0 irq_thread 0 S [irq/208-arm-smm]        7
13054root           728     2       0      0 irq_thread 0 S [irq/209-arm-smm]        7
13055root           729     2       0      0 irq_thread 0 S [irq/210-arm-smm]        7
13056root           732     2       0      0 rescuer_thread 0 S [ipa_interrupt_w]    7
13057root           733     2       0      0 rescuer_thread 0 S [ipawq36]            7
13058root           734     2       0      0 rescuer_thread 0 S [iparepwq36]         7
13059root           737     2       0      0 rescuer_thread 0 S [ipawq33]            7
13060root           741     2       0      0 rescuer_thread 0 S [iparepwq33]         7
13061root           742     2       0      0 rescuer_thread 0 S [ipawq32]            7
13062root           743     2       0      0 rescuer_thread 0 S [iparepwq32]         7
13063root           744     2       0      0 rescuer_thread 0 S [ipa_ut_dbgfs]       7
13064root           745     2       0      0 rescuer_thread 0 S [ipa_A7_svc]         7
13065root           746     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    7
13066root           747     2       0      0 rescuer_thread 0 S [clnt_req]           7
13067root           748     2       0      0 rescuer_thread 0 S [clnt_req]           7
13068root           749     2       0      0 rescuer_thread 0 S [clnt_resp]          7
13069root           767     2       0      0 rescuer_thread 0 S [at_usb0]            7
13070root           768     2       0      0 rescuer_thread 0 S [at_usb1]            7
13071root           769     2       0      0 rescuer_thread 0 S [qdss]               7
13072system         770     1   12472   2972 binder_ioctl 0 S [email protected] [email protected]
13073vendor_pixelstats_system 771 1 12572 2972 binder_ioctl 0 S [email protected] [email protected]
13074system         772     1 2120568   3888 binder_ioctl 0 S vr_hwc                 vr_hwc
13075system         773     1 2120208   4088 binder_ioctl 0 S [email protected] [email protected]
13076audioserver    774     1   47416  11624 binder_ioctl 0 S [email protected] [email protected]
13077hsm            775     1   18664   4040 binder_ioctl 0 S [email protected] [email protected]
13078bluetooth      776     1   25880   3240 binder_ioctl 0 S [email protected] [email protected]
13079cameraserver   777     1 2217452  18820 binder_ioctl 0 S [email protected]_64 [email protected]_64
13080media          778     1   11312   2296 binder_ioctl 0 S [email protected] [email protected]
13081system         780     1 2112732   2716 binder_ioctl 0 S [email protected] [email protected]
13082media          781     1   18456   2976 binder_ioctl 0 S [email protected] [email protected]
13083media          782     1   22832   3256 binder_ioctl 0 S [email protected] [email protected]
13084media          783     1   24856   3124 binder_ioctl 0 S [email protected] [email protected]
13085gps            784     1   42968   6320 binder_ioctl 0 S [email protected] [email protected]
13086system         786     1   12344   2628 binder_ioctl 0 S [email protected] [email protected]
13087system         787     1   12328   2700 binder_ioctl 0 S [email protected] [email protected]
13088system         788     1  488172   5540 binder_ioctl 0 S [email protected] [email protected]
13089nfc            789     1   20748   3124 binder_ioctl 0 S [email protected] [email protected]
13090hsm            790     1   17632   3892 binder_ioctl 0 S [email protected] [email protected]
13091hsm            797     1   17616   3988 binder_ioctl 0 S [email protected] [email protected]
13092wifi           798     1   22944   7560 binder_ioctl 0 S [email protected] [email protected]
13093system         799     1   15184   2364 hrtimer_nanosleep 0 S pixelstats-vendor pixelstats-vendor
13094radio          801     1   21820   2880 binder_ioctl 0 S [email protected] [email protected]
13095system         802     1   12376   2584 binder_ioctl 0 S [email protected] [email protected]
13096nobody         805     1   13532   2864 binder_ioctl 0 S [email protected] [email protected]
13097mediacodec     808     1   23440   4824 binder_ioctl 0 S [email protected] [email protected]
13098system         809     1   25160   2464 do_sigtimedwait 0 S pm-service          pm-service
13099system         810     1   17784   3516 hrtimer_nanosleep 0 S sensors.qti       sensors.qti
13100nobody         813     1   18488   1644 do_select 0 S rmt_storage               rmt_storage
13101vendor_rfs     815     1   12216   1680 do_sys_poll 0 S tftp_server             tftp_server
13102system         816     1   15456   1836 hrtimer_nanosleep 0 S pd-mapper         pd-mapper
13103root           817     1   10052   1888 do_sys_poll 0 S msm_irqbalance          msm_irqbalance
13104root           818     2       0      0 rescuer_thread 0 S [cdsp_IPCRTR]        8
13105audioserver    819     1   76548  10040 binder_ioctl 0 S audioserver            audioserver
13106system         820     1 2113016   3484 SyS_epoll_wait 0 S bufferhubd           bufferhubd
13107lmkd           821     1    9336   1776 SyS_epoll_wait 0 S lmkd                 lmkd
13108system         822     1 2109740   2600 SyS_epoll_wait 0 S performanced         performanced
13109system         829     1 2116672   3288 binder_ioctl 0 S thermalserviced        thermalserviced
13110system         830     1 2113500   2620 binder_ioctl 0 S virtual_touchpad       virtual_touchpad
13111root           854     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
13112root           858     1   17688   1708 do_sys_poll 0 S subsystem_ramdump       subsystem_ramdump
13113root           859     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
13114root           860     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    8
13115graphics       861     1   19952   3128 do_sys_poll 0 S mm-pp-dpps              mm-pp-dpps
13116shell          864     1   18004   2200 hrtimer_nanosleep 0 S diag_mdlog        diag_mdlog
13117nobody         866     1   10844   1824 do_sys_poll 0 S traced                  traced
13118root           869     1   69636   1916 SyS_rt_sigsuspend 0 S thermal-engine    thermal-engine
13119media          870     1   14448   1856 do_sys_poll 0 S adsprpcd                adsprpcd
13120root           873     2       0      0 worker_thread 0 S [kworker/3:1H]        8
13121system         875     1   14580   1812 do_sys_poll 0 S cdsprpcd                cdsprpcd
13122system         876     1   15456   1804 do_select 0 S imsqmidaemon              imsqmidaemon
13123radio          878     1 2143192   5252 SyS_epoll_wait 0 S cnd                  cnd
13124radio          879     1  128652   7688 __skb_wait_for_more_packets 0 S netmgrd netmgrd
13125radio          880     1   13580   1544 futex_wait_queue_me 0 S port-bridge     port-bridge
13126radio          882     1   20868   2816 futex_wait_queue_me 0 S ipacm           ipacm
13127cameraserver   884     1   28784   7300 binder_ioctl 0 S cameraserver           cameraserver
13128drm            885     1   20976   6280 binder_ioctl 0 S drmserver              drmserver
13129incidentd      886     1 2115860   3116 SyS_epoll_wait 0 S incidentd            incidentd
13130root           887     1 2122916   4924 binder_ioctl 0 S installd               installd
13131keystore       888     1 2119284   4688 binder_ioctl 0 S keystore               keystore
13132media          890     1 2126588   4068 binder_ioctl 0 S mediadrmserver         mediadrmserver
13133mediaex        893     1 2173056  11200 binder_ioctl 0 S media.extractor        mediaextractor
13134media          894     1 2138920   7540 binder_ioctl 0 S media.metrics          mediametrics
13135media          900     1  202456  13028 binder_ioctl 0 S mediaserver            mediaserver
13136statsd         901     1 203500428 32736 SyS_epoll_wait 0 S statsd              statsd
13137root           902     1 2120808   4808 binder_ioctl 0 S storaged               storaged
13138wifi           903     1 2114448   4200 SyS_epoll_wait 0 S wificond             wificond
13139mediacodec     904     1   40636  10068 binder_ioctl 0 S media.codec            [email protected]
13140nobody         906     1   19336   2584 binder_ioctl 0 S easelmanagerd          easelmanagerd
13141radio          907     1  115140  16512 binder_ioctl 0 S qcrild                 qcrild
13142root           914     2       0      0 rescuer_thread 0 S [adsp]               9
13143root           915     2       0      0 rescuer_thread 0 S [lpass_IPCRTR]       9
13144system         938     1   26536   3756 do_sys_poll 0 S cnss-daemon             cnss-daemon
13145gps            939     1   14460   1740 futex_wait_queue_me 0 S loc_launcher    loc_launcher
13146system         940     1   19800   4028 do_sys_poll 0 S chre                    chre
13147system         942     1 2115044   4368 binder_ioctl 0 S gatekeeperd            gatekeeperd
13148root           943     1 2115816   2836 binder_ioctl 0 S perfprofd              perfprofd
13149root           944     2       0      0 rescuer_thread 0 S [modem]              9
13150tombstoned     945     1    9100   1364 SyS_epoll_wait 0 S tombstoned           tombstoned
13151root           957     1 2117960   5368 SyS_epoll_wait 0 S update_engine        update_engine
13152system         958     1   17728   3224 binder_ioctl 0 S [email protected] [email protected]
13153root           960     1   29056   4592 0       0 R adbd                        adbd
13154root           986     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
13155root           987     2       0      0 kthread_worker_fn 0 S [msm_slim_qmi_cl] 9
13156root           988     2       0      0 kthread_worker_fn 0 S [msm_slim_qmi_cl] 9
13157gps            992   939 2132140   3684 futex_wait_queue_me 0 S lowi-server     lowi-server
13158gps            993   939   24736   4880 __skb_wait_for_more_packets 0 S xtra-daemon xtra-daemon
13159root           994     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    9
13160root          1001     2       0      0 worker_thread 0 S [kworker/2:1H]        1
13161root          1005     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    1
13162root          1014     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    1
13163root          1021     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    1
13164root          1031     2       0      0 irq_thread 0 S [irq/211-arm-smm]        1
13165root          1036     2       0      0 irq_thread 0 S [irq/212-arm-smm]        1
13166root          1037     2       0      0 irq_thread 0 S [irq/213-arm-smm]        1
13167root          1054     2       0      0 worker_thread 0 S [kworker/u16:9]       1
13168root          1057     2       0      0 worker_thread 0 S [kworker/u16:10]      1
13169root          1065     2       0      0 irq_thread 0 S [irq/311-wcd9xxx]        1
13170root          1074     2       0      0 diag_socket_read 0 S [kworker/u16:11]   1
13171root          1106     2       0      0 rescuer_thread 0 S [qmi_wq]             1
13172root          1107     2       0      0 rescuer_thread 0 S [qmi_hndl0000000]    1
13173root          1116     2       0      0 diag_socket_read 0 S [kworker/u16:12]   1
13174root          1147     2       0      0 0       0 R [kworker/u16:13]            1
13175root          1153     2       0      0 rescuer_thread 0 S [wdsp_glink_wq]      1
13176root          1245     2       0      0 rescuer_thread 0 S [mpss_IPCRTR]        1
13177root          1274     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
13178root          1275     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
13179root          1276     2       0      0 diag_socket_read 0 S [kworker/u16:14]   1
13180root          1308     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
13181root          1311     2       0      0 worker_thread 0 S [kworker/u16:15]      1
13182root          1312     2       0      0 diag_socket_read 0 S [kworker/u16:16]   1
13183root          1316     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
13184root          1414     2       0      0 rescuer_thread 0 S [qmi_hndl0000001]    1
13185root          1684     2       0      0 rescuer_thread 0 S [ipawq13]            1
13186root          1685     2       0      0 rescuer_thread 0 S [iparepwq13]         1
13187root          1686     2       0      0 rescuer_thread 0 S [ipawq15]            1
13188root          1687     2       0      0 rescuer_thread 0 S [iparepwq15]         1
13189system        4445     1   16428   2836 hrtimer_nanosleep 0 S pm-proxy          pm-proxy
13190system        8500     1 2137592   5000 do_select 0 S imsdatadaemon             imsdatadaemon
13191system        8501     1   31892   5668 binder_ioctl 0 S ims_rtp_daemon         ims_rtp_daemon
13192system        8523     1   29496   4976 binder_ioctl 0 S imsrcsd                imsrcsd
13193root          8613     2       0      0 rescuer_thread 0 S [ipawq34]            8
13194root          8614     2       0      0 rescuer_thread 0 S [iparepwq34]         8
13195root          8615     2       0      0 rescuer_thread 0 S [ipawq35]            8
13196root          8616     2       0      0 rescuer_thread 0 S [iparepwq35]         8
13197root          8857     1 2132540   5200 binder_ioctl 0 S netd                   netd
13198system        8858     1 2173880  27432 SyS_epoll_wait 0 S surfaceflinger       surfaceflinger
13199root          8859     1 4258048  76124 do_sys_poll 0 S zygote64                app_process64
13200root          8860     1 1587776  67296 do_sys_poll 0 S zygote                  app_process32
13201root          8861  8857    9268   2236 pipe_read 0 S iptables-restore          iptables
13202root          8862  8857    9280   2352 pipe_read 0 S ip6tables-restore         ip6tables
13203root          8937     2       0      0 rescuer_thread 0 S [dsi_err_workq]      8
13204system        8943  8859 4881088 395364 SyS_epoll_wait 0 S system_server        app_process64
13205system        9012     1   32424   6676 futex_wait_queue_me 0 S [email protected] [email protected]
13206bluetooth     9083  8859 3735940  66148 SyS_epoll_wait 0 S com.android.bluetooth app_process64
13207u0_a83        9090  8859 3750300  90204 SyS_epoll_wait 0 S com.google.android.inputmethod.latin app_process64
13208u0_a45        9105  8859 3832456 143172 SyS_epoll_wait 0 S com.android.systemui app_process64
13209webview_zygote 9144 8860 1594760  30084 do_sys_poll 0 S webview_zygote          app_process32
13210radio         9229  8859 3687804  51028 SyS_epoll_wait 0 S .dataservices        app_process64
13211radio         9245  8859 3681544  49744 SyS_epoll_wait 0 S com.qualcomm.qti.telephonyservice app_process64
13212radio         9256  8859 3679696  46396 SyS_epoll_wait 0 S com.google.android.grilservice app_process64
13213radio         9271  8859 3732524  74780 SyS_epoll_wait 0 S com.android.phone    app_process64
13214u0_a70        9298  8859 3743772 115532 SyS_epoll_wait 0 S com.google.android.setupwizard app_process64
13215u0_a7         9337  8859 3687456  53248 SyS_epoll_wait 0 S com.google.android.ext.services app_process64
13216root          9674     2       0      0 irq_thread 0 S [irq/80-1436400.]        9
13217root          9677     2       0      0 irq_thread 0 S [irq/81-114a000.]        9
13218u0_a29        9697  8859 3683760  51784 SyS_epoll_wait 0 S com.google.modemservice app_process64
13219u0_a12        9714  8859 3695396  53764 SyS_epoll_wait 0 S com.google.process.gservices app_process64
13220nfc           9748  8859 3761160  64260 SyS_epoll_wait 0 S com.android.nfc      app_process64
13221secure_element 9762 8859 3680552  46104 SyS_epoll_wait 0 S com.android.se       app_process64
13222radio         9786  8859 3682456  50988 SyS_epoll_wait 0 S com.android.ims.rcsservice app_process64
13223system        9806  8859 3680124  46120 SyS_epoll_wait 0 S com.google.SSRestartDetector app_process64
13224u0_a71        9827  8859 3683028  46976 SyS_epoll_wait 0 S com.qualcomm.qti.services.secureui:sui_service app_process64
13225u0_a12        9871  8859 3806712 110580 SyS_epoll_wait 0 S com.google.android.gms.persistent app_process64
13226u0_a147       9882  8859 3705228  65716 SyS_epoll_wait 0 S com.google.android.projection.gearhead:shared app_process64
13227u0_a43        9898  8859 3688640  53312 SyS_epoll_wait 0 S com.google.android.apps.dreamliner app_process64
13228radio         9935  8859 3680508  46980 SyS_epoll_wait 0 S com.qualcomm.qcrilmsgtunnel app_process64
13229u0_a36        9953  8859 3705896  64180 SyS_epoll_wait 0 S com.google.android.apps.pixelmigrate app_process64
13230u0_a50       10010  8860 1024252  51744 SyS_epoll_wait 0 S com.google.android.as app_process32
13231u0_a20       10023  8859 3788812 112780 SyS_epoll_wait 0 S com.google.android.apps.nexuslauncher app_process64
13232u0_a69       10049  8860 1097144  70680 SyS_epoll_wait 0 S com.android.vending  app_process32
13233u0_a12       10190  8859 3938624 118828 SyS_epoll_wait 0 S com.google.android.gms app_process64
13234system       10640  8859 3682004  46128 SyS_epoll_wait 0 S com.qti.diagservices app_process64
13235u0_a44       11200  8859 3690728  58228 SyS_epoll_wait 0 S com.google.android.apps.turbo:aab app_process64
13236u0_a119      12376  8859 3682664  46172 SyS_epoll_wait 0 S com.qualcomm.telephony app_process64
13237root         16180     2       0      0 worker_thread 0 S [kworker/u16:18]      1
13238wifi         16539     1 2125968   6012 do_select 0 S wpa_supplicant            wpa_supplicant
13239root         16565     2       0      0 cds_mc_thread 0 S [cds_mc_thread]       1
13240root         16566     2       0      0 cds_ol_rx_thread 0 S [cds_ol_rx_threa]  1
13241root         16567     2       0      0 rescuer_thread 0 S [wmi_rx_event_wo]    1
13242system       23597  8859 3914192 136096 SyS_epoll_wait 0 S com.android.settings app_process64
13243u0_a47       23620  8859 3776888 102200 SyS_epoll_wait 0 S com.google.android.packageinstaller app_process64
13244u0_a27       23932  8859 3678876  50920 SyS_epoll_wait 0 S com.android.providers.calendar app_process64
13245root         23997     2       0      0 worker_thread 0 S [kworker/5:0]         2
13246root         24050     2       0      0 worker_thread 0 S [kworker/5:1]         2
13247u0_a148      24056  8859 3684880  49040 SyS_epoll_wait 0 S com.android.pixellogger app_process64
13248u0_a17       24075  8859 3680640  51812 SyS_epoll_wait 0 S android.process.media app_process64
13249u0_a24       24589  8859 3685336  57968 SyS_epoll_wait 0 S android.process.acore app_process64
13250root         24730     2       0      0 worker_thread 0 S [kworker/0:0]         2
13251root         25105     2       0      0 worker_thread 0 S [kworker/7:0]         2
13252root         25165     2       0      0 worker_thread 0 S [kworker/6:0]         2
13253root         25210     2       0      0 worker_thread 0 S [kworker/3:1]         2
13254root         25239     2       0      0 worker_thread 0 S [kworker/2:0]         2
13255root         25244     2       0      0 worker_thread 0 S [kworker/4:0]         2
13256root         25249     2       0      0 worker_thread 0 S [kworker/1:1]         2
13257root         25252     2       0      0 worker_thread 0 S [kworker/3:0]         2
13258root         25259     2       0      0 worker_thread 0 S [kworker/2:1]         2
13259root         25261     2       0      0 worker_thread 0 S [kworker/1:0]         2
13260root         25262     2       0      0 worker_thread 0 S [kworker/0:1]         2
13261root         25264     2       0      0 worker_thread 0 S [kworker/1:2]         2
13262root         25265     2       0      0 worker_thread 0 S [kworker/3:2]         2
13263root         25266     2       0      0 worker_thread 0 S [kworker/1:3]         2
13264root         25267     2       0      0 worker_thread 0 S [kworker/2:2]         2
13265root         25268     2       0      0 worker_thread 0 S [kworker/3:3]         2
13266u0_a96       25304  8859 4430752  86484 SyS_epoll_wait 0 S com.google.android.apps.maps app_process64
13267u0_a124      25341  8859 3717600  69176 SyS_epoll_wait 0 S com.google.android.gm app_process64
13268u0_a12       25365  8859 3682276  52136 SyS_epoll_wait 0 S com.google.process.gapps app_process64
13269u0_a78       25409  8859 3770648  82424 SyS_epoll_wait 0 S com.google.android.apps.docs app_process64
13270root         25432     2       0      0 worker_thread 0 S [kworker/4:1]         2
13271root         25433     2       0      0 worker_thread 0 S [kworker/4:2]         2
13272root         25483     2       0      0 worker_thread 0 S [kworker/u16:17]      2
13273u0_a64       25496  8859 3678244  46980 SyS_epoll_wait 0 S com.android.defcontainer app_process64
13274system       25527  8859 3678352  48012 SyS_epoll_wait 0 S com.android.keychain app_process64
13275u0_a69       25538  8860 1035068  57408 SyS_epoll_wait 0 S com.android.vending:instant_app_installer app_process32
13276root         25606     2       0      0 worker_thread 0 S [kworker/0:2]         2
13277root         27492     2       0      0 worker_thread 0 S [kworker/0:3]         2
13278root         27493     2       0      0 worker_thread 0 S [kworker/0:4]         2
13279root         27816   960    8740   1708 SyS_rt_sigsuspend 0 S sh                sh
13280root         27818 27816    8740    732 SyS_rt_sigsuspend 0 S sh                sh
13281root         27819 27818   10496   2116 0       0 R ps                          toybox
13282USER           PID   TID CMD
13283root             1     1 init
13284root             2     2 kthreadd
13285root             3     3 ksoftirqd/0
13286root             5     5 kworker/0:0H
13287root             6     6 kworker/u16:0
13288root             7     7 rcu_preempt
13289root             8     8 rcu_sched
13290root             9     9 rcu_bh
13291root            10    10 rcuop/0
13292root            11    11 rcuos/0
13293root            12    12 rcuob/0
13294root            13    13 migration/0
13295root            14    14 lru-add-drain
13296root            15    15 cpuhp/0
13297root            16    16 cpuhp/1
13298root            17    17 migration/1
13299root            18    18 ksoftirqd/1
13300root            20    20 kworker/1:0H
13301root            21    21 rcuop/1
13302root            22    22 rcuos/1
13303root            23    23 rcuob/1
13304root            24    24 cpuhp/2
13305root            25    25 migration/2
13306root            26    26 ksoftirqd/2
13307root            28    28 kworker/2:0H
13308root            29    29 rcuop/2
13309root            30    30 rcuos/2
13310root            31    31 rcuob/2
13311root            32    32 cpuhp/3
13312root            33    33 migration/3
13313root            34    34 ksoftirqd/3
13314root            36    36 kworker/3:0H
13315root            37    37 rcuop/3
13316root            38    38 rcuos/3
13317root            39    39 rcuob/3
13318root            40    40 cpuhp/4
13319root            41    41 migration/4
13320root            42    42 ksoftirqd/4
13321root            44    44 kworker/4:0H
13322root            45    45 rcuop/4
13323root            46    46 rcuos/4
13324root            47    47 rcuob/4
13325root            48    48 cpuhp/5
13326root            49    49 migration/5
13327root            50    50 ksoftirqd/5
13328root            52    52 kworker/5:0H
13329root            53    53 rcuop/5
13330root            54    54 rcuos/5
13331root            55    55 rcuob/5
13332root            56    56 cpuhp/6
13333root            57    57 migration/6
13334root            58    58 ksoftirqd/6
13335root            60    60 kworker/6:0H
13336root            61    61 rcuop/6
13337root            62    62 rcuos/6
13338root            63    63 rcuob/6
13339root            64    64 cpuhp/7
13340root            65    65 migration/7
13341root            66    66 ksoftirqd/7
13342root            68    68 kworker/7:0H
13343root            69    69 rcuop/7
13344root            70    70 rcuos/7
13345root            71    71 rcuob/7
13346root            72    72 netns
13347root            74    74 ipa_usb_wq
13348root            76    76 msm_watchdog
13349root            77    77 smem_native_sps
13350root            78    78 spss_mailbox_gl
13351root            79    79 qmp_aop
13352root            80    80 smem_native_mps
13353root            81    81 mpss_smem_glink
13354root            82    82 smem_native_lpa
13355root            83    83 lpass_smem_glin
13356root            84    84 smem_native_dsp
13357root            85    85 dsps_smem_glink
13358root            86    86 smem_native_cds
13359root            87    87 cdsp_smem_glink
13360root            88    88 khungtaskd
13361root            89    89 oom_reaper
13362root            90    90 writeback
13363root            91    91 kcompactd0
13364root            92    92 crypto
13365root            93    93 bioset
13366root            94    94 kblockd
13367root            95    95 irq/160-arm-smm
13368root            96    96 irq/161-arm-smm
13369root            97    97 irq/170-arm-smm
13370root            98    98 kworker/u17:0
13371root            99    99 irq/125-tsens-u
13372root           100   100 irq/126-tsens-c
13373root           101   101 irq/127-tsens-u
13374root           102   102 irq/128-tsens-c
13375root           103   103 edac-poller
13376root           104   104 system
13377root           105   105 easel_mem
13378root           106   106 ipa_power_mgmt
13379root           107   107 transport_power
13380root           108   108 ipa_rm_wq
13381root           109   109 devfreq_wq
13382root           110   110 governor_msm_ad
13383root           111   111 cfg80211
13384root           112   112 irq/541-ibb-sc-
13385root           113   113 irq/542-lab-sc-
13386root           115   115 irq/75-qpnp_wle
13387root           116   116 irq/76-qpnp_wle
13388root           142   142 kswapd0
13389root           143   143 vmstat
13390root           144   144 ecryptfs-kthrea
13391root           193   193 irq/174-arm-smm
13392root           194   194 irq/175-arm-smm
13393root           195   195 irq/91-eud_irq
13394root           196   196 glink_ssr_wq
13395root           197   197 glink_lbsrv
13396root           198   198 spi_wdsp
13397root           199   199 wdsp_spi_glink_
13398root           200   200 glink_xprt_wq
13399root           201   201 IPCRTR_mpss_sme
13400root           202   202 IPCRTR_lpass_sm
13401root           203   203 IPCRTR_dsps_sme
13402root           204   204 IPCRTR_cdsp_sme
13403root           205   205 glink_pkt_wq
13404root           206   206 irq/176-arm-smm
13405root           207   207 qmi_svc_event_w
13406root           208   208 msm_ipc_router
13407root           209   209 servloc_wq
13408root           210   210 irq/177-arm-smm
13409root           211   211 irq/178-arm-smm
13410root           212   212 hwrng
13411root           214   214 diag_real_time_
13412root           215   215 diag_wq
13413root           216   216 DIAG_USB_diag
13414root           217   217 diag_cntl_wq
13415root           218   218 diag_dci_wq
13416root           219   219 DIAG_SOCKMODEM_
13417root           220   220 DIAG_SOCKMODEM_
13418root           221   221 DIAG_SOCKMODEM_
13419root           222   222 DIAG_SOCKMODEM_
13420root           223   223 DIAG_SOCKMODEM_
13421root           224   224 DIAG_SOCKLPASS_
13422root           225   225 DIAG_SOCKLPASS_
13423root           226   226 DIAG_SOCKLPASS_
13424root           227   227 DIAG_SOCKLPASS_
13425root           228   228 DIAG_SOCKLPASS_
13426root           229   229 DIAG_SOCKWCNSS_
13427root           230   230 DIAG_SOCKWCNSS_
13428root           231   231 DIAG_SOCKWCNSS_
13429root           232   232 DIAG_SOCKWCNSS_
13430root           233   233 DIAG_SOCKWCNSS_
13431root           234   234 DIAG_SOCKSENSOR
13432root           235   235 DIAG_SOCKSENSOR
13433root           236   236 DIAG_SOCKSENSOR
13434root           237   237 DIAG_SOCKSENSOR
13435root           238   238 DIAG_SOCKSENSOR
13436root           239   239 DIAG_SOCKDIAG_C
13437root           240   240 DIAG_SOCKDIAG_D
13438root           241   241 DIAG_SOCKDIAG_C
13439root           242   242 DIAG_SOCKDIAG_D
13440root           243   243 DIAG_SOCKDIAG_D
13441root           244   244 DIAG_SOCKCDSP_C
13442root           245   245 DIAG_SOCKCDSP_D
13443root           246   246 DIAG_SOCKCDSP_C
13444root           247   247 DIAG_SOCKCDSP_D
13445root           248   248 DIAG_SOCKCDSP_D
13446root           249   249 DIAG_CNTL_SOCKE
13447root           250   250 DIAG_GLINK_DIAG
13448root           251   251 DIAG_GLINK_DIAG
13449root           252   252 DIAG_GLINK_DIAG
13450root           253   253 DIAG_GLINK_DIAG
13451root           254   254 DIAG_GLINK_DIAG
13452root           255   255 kworker/u16:1
13453root           256   256 kgsl-workqueue
13454root           257   257 kgsl-mementry
13455root           258   258 kgsl_worker_thr
13456root           259   259 kworker/u16:2
13457root           260   260 bioset
13458root           261   261 bioset
13459root           262   262 bioset
13460root           263   263 bioset
13461root           264   264 bioset
13462root           265   265 bioset
13463root           266   266 bioset
13464root           267   267 bioset
13465root           268   268 irq/171-arm-smm
13466root           269   269 bioset
13467root           271   271 bioset
13468root           272   272 bioset
13469root           273   273 bioset
13470root           274   274 irq/162-arm-smm
13471root           275   275 bioset
13472root           276   276 bioset
13473root           277   277 bioset
13474root           278   278 bioset
13475root           279   279 bioset
13476root           280   280 bioset
13477root           281   281 bioset
13478root           282   282 bioset
13479root           283   283 bioset
13480root           284   284 bioset
13481root           285   285 bioset
13482root           286   286 bioset
13483root           287   287 bioset
13484root           288   288 irq/163-arm-smm
13485root           289   289 irq/179-arm-smm
13486root           290   290 memory_wq
13487root           292   292 kworker/u16:3
13488root           293   293 irq/180-arm-smm
13489root           294   294 irq/164-arm-smm
13490root           295   295 irq/181-arm-smm
13491root           296   296 irq/182-arm-smm
13492root           297   297 qcrypto_seq_res
13493root           298   298 irq/183-arm-smm
13494root           319   319 scsi_eh_0
13495root           320   320 scsi_tmf_0
13496root           321   321 crtc_commit:111
13497root           322   322 crtc_event:111
13498root           323   323 crtc_commit:163
13499root           324   324 crtc_event:163
13500root           325   325 pp_event
13501root           326   326 ufs_pm_qos_0
13502root           328   328 ufs_clk_gating_
13503root           329   329 ufs_mgc_hibern8
13504root           330   330 ice-set-key
13505root           331   331 spi10
13506root           332   332 spi32766
13507root           333   333 spi0
13508root           334   334 spi32765
13509root           335   335 bond0
13510root           338   338 sharedmem_qmi_w
13511root           339   339 qmi_hndl0000000
13512root           343   343 uether
13513root           344   344 k_ipa_usb
13514root           347   347 kgsl-events
13515root           348   348 irq/378-soc:fp_
13516root           349   349 kgsl_devfreq_wq
13517root           350   350 msm_vidc_worker
13518root           351   351 pm_workerq_venu
13519root           353   353 irq/184-arm-smm
13520root           354   354 irq/185-arm-smm
13521root           355   355 irq/186-arm-smm
13522root           356   356 irq/187-arm-smm
13523root           357   357 rot_commitq_0_0
13524root           358   358 rot_commitq_0_1
13525root           359   359 rot_doneq_0_0
13526root           360   360 rot_doneq_0_1
13527root           361   361 rot_fenceq_0_0
13528root           362   362 rot_fenceq_0_1
13529root           363   363 rot_fenceq_0_2
13530root           364   364 rot_fenceq_0_3
13531root           365   365 rot_fenceq_0_4
13532root           366   366 rot_fenceq_0_5
13533root           367   367 rot_fenceq_0_6
13534root           368   368 rot_fenceq_0_7
13535root           369   369 rot_fenceq_0_8
13536root           370   370 rot_fenceq_0_9
13537root           371   371 rot_fenceq_0_10
13538root           372   372 rot_fenceq_0_11
13539root           373   373 rot_fenceq_0_12
13540root           374   374 rot_fenceq_0_13
13541root           375   375 rot_fenceq_0_14
13542root           376   376 rot_fenceq_0_15
13543root           377   377 cam-cpas
13544root           378   378 qcom,cam_virtua
13545root           379   379 irq/188-arm-smm
13546root           380   380 qcom,cam170-cpa
13547root           381   381 irq/189-arm-smm
13548root           382   382 cam_cci_wq
13549root           383   383 cam_cci_wq
13550root           384   384 irq/190-arm-smm
13551root           385   385 irq/191-arm-smm
13552root           386   386 irq/192-arm-smm
13553root           387   387 irq/193-arm-smm
13554root           388   388 irq/709-chg-err
13555root           389   389 irq/710-chg-sta
13556root           390   390 irq/714-otg-fai
13557root           391   391 irq/715-otg-ove
13558root           392   392 irq/716-otg-oc-
13559root           393   393 irq/717-testmod
13560root           394   394 irq/718-bat-tem
13561root           395   395 irq/719-bat-ocp
13562root           396   396 irq/720-bat-ov
13563root           397   397 irq/721-bat-low
13564root           398   398 irq/722-bat-the
13565root           399   399 irq/723-bat-ter
13566root           400   400 irq/724-usbin-c
13567root           401   401 irq/725-usbin-l
13568root           402   402 irq/726-usbin-u
13569root           403   403 irq/727-usbin-o
13570root           404   404 irq/728-usbin-p
13571root           405   405 irq/729-usbin-s
13572root           406   406 irq/730-usbin-i
13573root           407   407 irq/731-type-c-
13574root           408   408 irq/732-dcin-co
13575root           409   409 irq/733-dcin-lt
13576root           410   410 irq/734-dcin-uv
13577root           411   411 irq/735-dcin-ov
13578root           412   412 irq/736-dcin-pl
13579root           413   413 irq/737-div2-en
13580root           414   414 irq/738-dcin-ic
13581root           415   415 irq/740-wdog-ba
13582root           416   416 irq/741-aicl-fa
13583root           418   418 irq/742-aicl-do
13584root           419   419 kworker/4:4
13585root           420   420 irq/743-high-du
13586root           422   422 irq/744-input-c
13587root           424   424 irq/745-tempera
13588root           425   425 irq/746-switche
13589root           426   426 bioset
13590root           428   428 irq/381-p9221-i
13591root           429   429 irq/293-p9221-i
13592root           430   430 bioset
13593root           431   431 bioset
13594root           432   432 bioset
13595root           433   433 irq/29-i2c_pmic
13596root           434   434 bioset
13597root           435   435 irq/70-bcl-high
13598root           436   436 bioset
13599root           437   437 irq/72-bcl-low-
13600root           438   438 bioset
13601root           439   439 bioset
13602root           440   440 irq/543-limits_
13603root           441   441 bioset
13604root           442   442 kworker/7:3
13605root           443   443 kworker/u16:4
13606root           445   445 kworker/u16:5
13607root           446   446 kworker/u16:6
13608root           447   447 kworker/u16:7
13609root           448   448 kworker/u16:8
13610root           449   449 irq/544-limits_
13611root           450   450 qmi_tmd_wq
13612root           451   451 dm_bufio_cache
13613root           452   452 irq/99-KRYO3XX
13614root           453   453 irq/371-s2mpb04
13615root           454   454 irq/287-s2mpb04
13616root           455   455 irq/52-vendor:e
13617root           456   456 irq/194-arm-smm
13618root           457   457 uaudio_svc
13619root           458   458 qmi_hndl0000000
13620root           459   459 apr_driver
13621root           460   460 ipv6_addrconf
13622root           461   461 irq/880-adsp
13623root           462   462 sysmon_wq
13624root           463   463 irq/912-slpi
13625root           464   464 irq/944-cdsp
13626root           465   465 irq/848-modem
13627root           472   472 irq/38-sig-tx
13628root           473   473 irq/64-sig-rx
13629root           474   474 usbpd0
13630root           475   475 usbpd0
13631root           476   476 irq/1040-soc-up
13632root           477   477 irq/1041-soc-re
13633root           478   478 irq/1042-bsoc-d
13634root           479   479 irq/1043-msoc-d
13635root           480   480 irq/1044-msoc-l
13636root           481   481 irq/1045-msoc-e
13637root           482   482 irq/1046-msoc-h
13638root           483   483 irq/1047-msoc-f
13639root           484   484 irq/1048-vbatt-
13640root           485   485 irq/1049-vbatt-
13641root           486   486 irq/1050-esr-de
13642root           487   487 irq/1051-batt-m
13643root           488   488 irq/1052-batt-t
13644root           489   489 irq/1053-ima-rd
13645root           490   490 irq/1054-mem-xc
13646root           491   491 irq/1055-dma-gr
13647root           492   492 irq/36-qcom,tem
13648root           493   493 irq/536-pwr_eve
13649root           494   494 irq/535-dp_hs_p
13650root           495   495 irq/538-dm_hs_p
13651root           496   496 irq/537-ss_phy_
13652root           497   497 irq/195-arm-smm
13653root           498   498 usb_bam_wq
13654root           499   499 core_ctl/0
13655root           500   500 core_ctl/4
13656root           509   509 rq_stats
13657root           510   510 irq/196-arm-smm
13658root           511   511 irq/197-arm-smm
13659root           512   512 irq/198-arm-smm
13660root           513   513 irq/199-arm-smm
13661root           514   514 irq/200-arm-smm
13662root           515   515 irq/201-arm-smm
13663root           516   516 irq/202-arm-smm
13664root           517   517 irq/203-arm-smm
13665root           518   518 irq/204-arm-smm
13666root           519   519 irq/205-arm-smm
13667root           520   520 irq/206-arm-smm
13668root           521   521 set_state_work
13669root           522   522 sb-1
13670root           523   523 ngd_rx_thread1
13671root           524   524 irq/309-mnh-rea
13672root           525   525 ngd_notify_sl1
13673root           526   526 sb-3
13674root           527   527 ngd_rx_thread3
13675root           528   528 ngd_notify_sl3
13676root           529   529 tbn_event_proce
13677root           530   530 irq/79-qpnp_fla
13678root           531   531 irq/78-qpnp_fla
13679root           532   532 irq/77-qpnp_fla
13680root           533   533 irq/1057-mnh_pc
13681root           534   534 irq/1058-mnh_pc
13682root           535   535 irq/1059-mnh_pc
13683root           536   536 irq/1060-mnh_pc
13684root           537   537 irq/1061-mnh_pc
13685root           538   538 irq/1064-mnh_pc
13686root           539   539 irq/1065-mnh_pc
13687root           540   540 irq/207-arm-smm
13688root           542   542 kworker/5:1H
13689root           543   543 ext4-rsv-conver
13690root           545   545 kworker/4:1H
13691root           546   546 jbd2/sdf2-8
13692root           547   547 ext4-rsv-conver
13693root           548   548 ext4-rsv-conver
13694root           549   549 ext4-rsv-conver
13695root           550   550 init
13696root           551   551 init
13697root           552   552 ueventd
13698root           553   553 kworker/7:1H
13699root           556   556 irq/319-max1720
13700root           560   560 kworker/6:3
13701root           570   570 kworker/u17:1
13702logd           571   571 logd
13703logd           571   579 logd.daemon
13704logd           571   580 logd.reader
13705logd           571   581 logd.writer
13706logd           571   582 logd.control
13707logd           571   589 logd.klogd
13708logd           571   590 logd.auditd
13709root           572   572 kworker/6:1H
13710system         573   573 qseecomd
13711system         574   574 [email protected]
13712root           576   576 sugov:0
13713root           577   577 sugov:4
13714root           578   578 kworker/0:1H
13715root           583   583 kauditd
13716root           585   585 Binder:585_2
13717root           585   671 Binder:585_1
13718root           585   672 Binder:585_2
13719root           585   673 Binder:585_3
13720root           585   697 Binder:585_4
13721root           585   721 Binder:585_5
13722system         586   586 hwservicemanage
13723system         591   591 qseecomd
13724system         591   592 qseecomd
13725system         591   593 qseecomd
13726system         591   594 qseecomd
13727system         591   595 qseecomd
13728system         591   596 qseecomd
13729system         591   597 qseecomd
13730system         591   598 qseecomd
13731system         591   599 qseecomd
13732system         591   601 qseecomd
13733root           606   606 jbd2/sda20-8
13734root           607   607 ext4-rsv-conver
13735system         608   608 servicemanager
13736system         609   609 vndservicemanag
13737root           611   611 [email protected]
13738system         612   612 [email protected]
13739hsm            613   613 [email protected]
13740hsm            614   614 citadeld
13741hsm            614   627 citadeld
13742hsm            614   628 Binder:614_1
13743hsm            614  1108 Binder:614_2
13744system         616   616 sscrpcd
13745system         616   680 sscrpcd
13746system         616   681 sscrpcd
13747system         619   619 [email protected]
13748system         619   625 Binder:619_1
13749system         619   626 Binder:619_2
13750system         619   633 HWC_UeventThrea
13751system         619   644 SDM_EventThread
13752system         619   656 [email protected]
13753system         619   657 HwBinder:619_1
13754system         619   658 HwBinder:619_2
13755system         620   620 [email protected]
13756system         620   637 HwBinder:620_1
13757system         620   640 HwBinder:620_2
13758system         621   621 vendor.qti.hard
13759system         621  1126 HwBinder:621_1
13760system         621  1127 HwBinder:621_2
13761root           645   645 irq/165-arm-smm
13762root           646   646 cds_recovery_wo
13763root           647   647 wlan_logging_th
13764root           670   670 irq/372-cs35l36
13765root           674   674 irq/297-cs35l36
13766root           676   676 dsps_IPCRTR
13767root           678   678 qmi_hndl0000000
13768root           679   679 qmi_hndl0000000
13769root           683   683 qmi_hndl0000000
13770root           686   686 kdmflush
13771root           687   687 bioset
13772root           692   692 irq/382-fts
13773root           693   693 kworker/1:1H
13774root           698   698 f2fs_flush-253:
13775root           699   699 f2fs_discard-25
13776root           700   700 f2fs_gc-253:0
13777system         702   702 time_daemon
13778system         702   707 time_daemon
13779system         702   708 time_daemon
13780system         702   709 time_daemon
13781system         702   710 time_daemon
13782system         702  1314 time_daemon
13783root           726   726 irq/208-arm-smm
13784root           728   728 irq/209-arm-smm
13785root           729   729 irq/210-arm-smm
13786root           732   732 ipa_interrupt_w
13787root           733   733 ipawq36
13788root           734   734 iparepwq36
13789root           737   737 ipawq33
13790root           741   741 iparepwq33
13791root           742   742 ipawq32
13792root           743   743 iparepwq32
13793root           744   744 ipa_ut_dbgfs
13794root           745   745 ipa_A7_svc
13795root           746   746 qmi_hndl0000000
13796root           747   747 clnt_req
13797root           748   748 clnt_req
13798root           749   749 clnt_resp
13799root           767   767 at_usb0
13800root           768   768 at_usb1
13801root           769   769 qdss
13802system         770   770 [email protected]
13803vendor_pixelstats_system 771 771 [email protected]
13804system         772   772 vr_hwc
13805system         772   803 Binder:772_1
13806system         772   804 HwBinder:772_1
13807system         772   806 Binder:772_2
13808system         773   773 neuralnetworks@
13809system         773   837 neuralnetworks@
13810system         773   838 neuralnetworks@
13811system         773 13091 HwBinder:773_1
13812audioserver    774   774 [email protected]
13813audioserver    774   856 Binder:774_1
13814audioserver    774   857 Binder:774_2
13815audioserver    774  1151 [email protected]
13816audioserver    774  1154 [email protected]
13817audioserver    774  1155 [email protected]
13818audioserver    774  1156 [email protected]
13819audioserver    774  1157 HwBinder:774_1
13820audioserver    774  1161 HwBinder:774_2
13821audioserver    774  1177 HwBinder:774_2
13822audioserver    774  3785 HwBinder:774_3
13823audioserver    774  3786 HwBinder:774_4
13824audioserver    774  4214 HwBinder:774_5
13825audioserver    774  9642 HwBinder:774_6
13826audioserver    774  9643 HwBinder:774_7
13827audioserver    774 16173 writer
13828hsm            775   775 [email protected]
13829bluetooth      776   776 [email protected]
13830bluetooth      776  9355 POSIX timer 6
13831bluetooth      776  9432 POSIX timer 7
13832bluetooth      776  9606 [email protected]
13833bluetooth      776  9607 [email protected]
13834bluetooth      776  9608 POSIX timer 8
13835bluetooth      776  9612 POSIX timer 9
13836bluetooth      776  9613 POSIX timer 10
13837bluetooth      776  9615 POSIX timer 11
13838cameraserver   777   777 [email protected]
13839cameraserver   777   897 [email protected]
13840cameraserver   777   968 SyncManager_0
13841cameraserver   777   969 [email protected]
13842cameraserver   777  1298 [email protected]
13843cameraserver   777  1299 [email protected]
13844cameraserver   777  1300 [email protected]
13845cameraserver   777  1301 [email protected]
13846cameraserver   777  1302 [email protected]
13847cameraserver   777  1304 HwBinder:777_1
13848cameraserver   777  1307 HwBinder:777_2
13849media          778   778 [email protected]
13850media          778 16736 HwBinder:778_1
13851nobody         779   779 confirmationui@
13852system         780   780 [email protected]
13853system         780   800 [email protected]
13854media          781   781 [email protected]
13855media          781 16739 HwBinder:781_1
13856media          782   782 [email protected]
13857media          782 16737 HwBinder:782_1
13858media          782 16740 HwBinder:782_2
13859media          782 16741 HwBinder:782_3
13860media          782 16742 HwBinder:782_4
13861media          783   783 [email protected]
13862media          783 16738 HwBinder:783_1
13863media          783 16743 HwBinder:783_2
13864media          783 16744 HwBinder:783_3
13865gps            784   784 [email protected]
13866gps            784  3907 Loc_hal
13867gps            784  3919 LocIpc-
13868gps            784  3920 LocTime
13869gps            784  3922 LocTime
13870gps            784  3923 Loc_hal
13871gps            784  3924 Loc_hal
13872gps            784  3941 Loc_hal
13873gps            784  3944 Binder:784_1
13874gps            784  3946 Binder:784_2
13875gps            784  3954 Loc_hal
13876gps            784  3961 Loc_hal
13877gps            784  3962 Loc_hal
13878gps            784  3963 Loc_hal
13879gps            784  3965 Loc_hal
13880system         785   785 [email protected]
13881system         786   786 [email protected]
13882system         787   787 [email protected]
13883system         788   788 neuralnetworks@
13884system         788 13086 HwBinder:788_1
13885system         788 13087 HwBinder:788_2
13886system         788 13088 neuralnetworks@
13887system         788 13089 neuralnetworks@
13888system         788 13090 neuralnetworks@
13889system         788 17368 HwBinder:788_3
13890system         788  4625 HwBinder:788_4
13891system         788  4626 HwBinder:788_5
13892system         788  4627 HwBinder:788_6
13893system         788  5338 HwBinder:788_7
13894system         788  5339 HwBinder:788_8
13895system         788  5340 HwBinder:788_9
13896nfc            789   789 [email protected]
13897nfc            789  9986 POSIX timer 2
13898nfc            789 10002 [email protected]
13899nfc            789 10003 [email protected]
13900nfc            789 10004 POSIX timer 3
13901nfc            789 10005 [email protected]
13902hsm            790   790 [email protected]
13903root           791   791 [email protected]
13904root           791  4447 NodeLooperThrea
13905root           791  4449 [email protected]
13906system         793   793 [email protected]
13907system         793   839 [email protected]
13908root           794   794 [email protected]
13909root           794   881 HwBinder:794_1
13910root           794  1025 HwBinder:794_1
13911root           794  3789 HwBinder:794_1
13912system         795   795 [email protected]
13913system         796   796 [email protected].
13914hsm            797   797 [email protected]
13915wifi           798   798 [email protected]
13916wifi           798 16588 [email protected]
13917system         799   799 pixelstats-vend
13918system         799   836 pixelstats-vend
13919radio          801   801 [email protected]
13920radio          801   840 [email protected]
13921radio          801  1360 [email protected]
13922system         802   802 wireless_charge
13923nobody         805   805 [email protected]
13924mediacodec     808   808 vendor.qti.medi
13925mediacodec     808  1000 Binder:808_1
13926mediacodec     808  1013 Binder:808_2
13927mediacodec     808  3899 HwBinder:808_1
13928mediacodec     808  3900 HwBinder:808_2
13929mediacodec     808  4943 HwBinder:808_3
13930system         809   809 pm-service
13931system         809   842 POSIX timer 0
13932system         809   843 POSIX timer 1
13933system         809   844 POSIX timer 2
13934system         809   845 pm-service
13935system         809   846 Binder:809_1
13936system         809   852 Binder:809_2
13937system         809  1149 Binder:809_3
13938system         809  1150 Binder:809_4
13939system         810   810 sensors.qti
13940system         810   850 sensors.qti
13941system         810   851 sensors.qti
13942nobody         813   813 rmt_storage
13943nobody         813  1278 rmt_storage
13944nobody         813  1279 rmt_storage
13945nobody         813  1280 rmt_storage
13946nobody         813  1281 rmt_storage
13947vendor_rfs     815   815 tftp_server
13948system         816   816 pd-mapper
13949system         816   847 pd-mapper
13950root           817   817 msm_irqbalance
13951root           818   818 cdsp_IPCRTR
13952audioserver    819   819 audioserver
13953audioserver    819  1158 HwBinder:819_1
13954audioserver    819  1159 HwBinder:819_2
13955audioserver    819  1162 ApmTone
13956audioserver    819  1163 ApmAudio
13957audioserver    819  1164 ApmOutput
13958audioserver    819  1165 Binder:819_1
13959audioserver    819  1166 Binder:819_2
13960audioserver    819  1178 FastMixer
13961audioserver    819  1179 AudioOut_D
13962audioserver    819  1180 FastMixer
13963audioserver    819  1181 AudioOut_15
13964audioserver    819  1184 AudioOut_1D
13965audioserver    819  1188 FastMixer
13966audioserver    819  1189 AudioOut_25
13967audioserver    819  1192 AudioOut_2D
13968audioserver    819  1195 FastMixer
13969audioserver    819  1196 AudioOut_35
13970audioserver    819  1342 soundTrigger cb
13971audioserver    819  3784 TimeCheckThread
13972audioserver    819  4600 Binder:819_3
13973audioserver    819  4633 Binder:819_4
13974audioserver    819  9280 Binder:819_5
13975audioserver    819 11730 Binder:819_6
13976system         820   820 bufferhubd
13977lmkd           821   821 lmkd
13978system         822   822 performanced
13979system         829   829 thermalserviced
13980system         829   862 HwBinder:829_1
13981system         829   863 HwBinder:829_2
13982system         830   830 Binder:830_2
13983system         830   855 Binder:830_1
13984root           854   854 qmi_hndl0000000
13985root           858   858 subsystem_ramdu
13986root           858   871 subsystem_ramdu
13987root           858   872 subsystem_ramdu
13988root           858  1277 subsystem_ramdu
13989root           859   859 qmi_hndl0000000
13990root           860   860 qmi_hndl0000000
13991graphics       861   861 mm-pp-dpps
13992graphics       861   917 HwBinder:861_1
13993graphics       861  1372 ABA_THREAD
13994shell          864   864 diag_mdlog
13995shell          864   995 diag_mdlog
13996shell          864  1049 diag_mdlog
13997shell          864  1050 diag_mdlog
13998shell          864  1051 diag_mdlog
13999nobody         866   866 traced
14000nobody         866   889 traced
14001root           869   869 thermal-engine
14002root           869   912 thermal-engine
14003root           869   918 thermal-engine
14004root           869   920 thermal-engine
14005root           869   922 thermal-engine
14006root           869   923 thermal-engine
14007root           869   924 thermal-engine
14008root           869   926 thermal-engine
14009root           869   928 thermal-engine
14010root           869   929 thermal-engine
14011root           869   930 thermal-engine
14012root           869   932 thermal-engine
14013root           869   933 thermal-engine
14014root           869   935 thermal-engine
14015root           869   936 thermal-engine
14016root           869   937 thermal-engine
14017root           869   941 thermal-engine
14018root           869   946 thermal-engine
14019root           869   948 thermal-engine
14020root           869   950 thermal-engine
14021root           869   953 thermal-engine
14022root           869   954 thermal-engine
14023root           869   956 thermal-engine
14024root           869   959 thermal-engine
14025root           869   964 thermal-engine
14026root           869   965 thermal-engine
14027root           869   966 thermal-engine
14028root           869   967 thermal-engine
14029root           869   970 thermal-engine
14030root           869   971 thermal-engine
14031root           869   973 thermal-engine
14032root           869   974 thermal-engine
14033root           869   975 thermal-engine
14034root           869   977 thermal-engine
14035root           869   978 thermal-engine
14036root           869   979 thermal-engine
14037root           869   980 thermal-engine
14038root           869   981 thermal-engine
14039root           869   982 thermal-engine
14040root           869  1022 thermal-engine
14041root           869  1309 thermal-engine
14042root           869  1310 thermal-engine
14043media          870   870 adsprpcd
14044media          870   925 adsprpcd
14045media          870   927 adsprpcd
14046root           873   873 kworker/3:1H
14047system         875   875 cdsprpcd
14048system         875   909 cdsprpcd
14049system         875   910 cdsprpcd
14050system         876   876 imsqmidaemon
14051system         876   905 imsqmidaemon
14052radio          878   878 cnd
14053radio          878   985 cnd
14054radio          878  1064 HwBinder:878_1
14055radio          878  1067 cnd
14056radio          878  1373 cnd
14057radio          878  1386 cnd
14058radio          878  1389 cnd
14059radio          878  1390 cnd
14060radio          878  1392 cnd
14061radio          878  1396 cnd
14062radio          878  1397 cnd
14063radio          878  1398 cnd
14064radio          879   879 netmgrd
14065root           879   983 netmgrd
14066radio          879   984 netmgrd
14067radio          879  1028 HwBinder:879_1
14068radio          879  1075 netmgrd
14069radio          879  1076 netmgrd
14070radio          879  1077 netmgrd
14071radio          879  1078 netmgrd
14072radio          879  1079 netmgrd
14073radio          879  1374 netmgrd
14074radio          879  8605 netmgrd
14075radio          879  8606 netmgrd
14076radio          879  8608 netmgrd
14077radio          879  8609 netmgrd
14078radio          879  8610 netmgrd
14079radio          879  8626 netmgrd
14080radio          879  8627 netmgrd
14081radio          879  8628 netmgrd
14082radio          879  8629 netmgrd
14083radio          879  8642 netmgrd
14084radio          879  8643 netmgrd
14085radio          879  8644 netmgrd
14086radio          879  8645 netmgrd
14087radio          879  8653 netmgrd
14088radio          879  8654 netmgrd
14089radio          879  8655 netmgrd
14090radio          879  8656 netmgrd
14091radio          879  8664 netmgrd
14092radio          879  8665 netmgrd
14093radio          879  8666 netmgrd
14094radio          879  8667 netmgrd
14095radio          879  8677 netmgrd
14096radio          879  8678 netmgrd
14097radio          879  8679 netmgrd
14098radio          879  8681 netmgrd
14099radio          879  8690 netmgrd
14100radio          879  8691 netmgrd
14101radio          879  8692 netmgrd
14102radio          879  8693 netmgrd
14103radio          879  8702 netmgrd
14104radio          879  8703 netmgrd
14105radio          879  8704 netmgrd
14106radio          879  8705 netmgrd
14107radio          879  8707 netmgrd
14108radio          879  8708 netmgrd
14109radio          879  8709 netmgrd
14110radio          879  8710 netmgrd
14111radio          879  8712 netmgrd
14112radio          879  8713 netmgrd
14113radio          879  8714 netmgrd
14114radio          879  8715 netmgrd
14115radio          879  8717 netmgrd
14116radio          879  8718 netmgrd
14117radio          879  8719 netmgrd
14118radio          879  8720 netmgrd
14119radio          879  8722 netmgrd
14120radio          879  8723 netmgrd
14121radio          879  8724 netmgrd
14122radio          879  8725 netmgrd
14123radio          879  8727 netmgrd
14124radio          879  8728 netmgrd
14125radio          879  8729 netmgrd
14126radio          879  8730 netmgrd
14127radio          879  8732 netmgrd
14128radio          879  8733 netmgrd
14129radio          879  8734 netmgrd
14130radio          879  8735 netmgrd
14131radio          879  8737 netmgrd
14132radio          879  8738 netmgrd
14133radio          879  8739 netmgrd
14134radio          879  8740 netmgrd
14135radio          879  8742 netmgrd
14136radio          879  8743 netmgrd
14137radio          879  8744 netmgrd
14138radio          879  8745 netmgrd
14139radio          879  8747 netmgrd
14140radio          879  8748 netmgrd
14141radio          879  8749 netmgrd
14142radio          879  8750 netmgrd
14143radio          879  8752 netmgrd
14144radio          879  8753 netmgrd
14145radio          879  8754 netmgrd
14146radio          879  8755 netmgrd
14147radio          879  8757 netmgrd
14148radio          879  8758 netmgrd
14149radio          879  8759 netmgrd
14150radio          879  8760 netmgrd
14151radio          879  8762 netmgrd
14152radio          879  8763 netmgrd
14153radio          879  8764 netmgrd
14154radio          879  8765 netmgrd
14155radio          879  8934 netmgrd
14156radio          880   880 port-bridge
14157radio          880   898 port-bridge
14158radio          880   899 port-bridge
14159radio          882   882 ipacm
14160radio          882   998 HwBinder:882_1
14161radio          882  1007 ipacm
14162radio          882  1008 netlink socket
14163radio          882  1009 ipa driver ntfy
14164cameraserver   884   884 cameraserver
14165cameraserver   884  1081 HwBinder:884_1
14166cameraserver   884  1082 HwBinder:884_2
14167cameraserver   884  1303 HwBinder:884_3
14168cameraserver   884  1340 Binder:884_1
14169cameraserver   884  3803 Binder:884_2
14170cameraserver   884  4628 Binder:884_3
14171drm            885   885 drmserver
14172drm            885  1024 Binder:885_1
14173drm            885  6461 Binder:885_2
14174drm            885  6615 Binder:885_3
14175incidentd      886   886 Binder:886_2
14176incidentd      886   947 Binder:886_1
14177incidentd      886   955 Binder:886_3
14178root           887   887 Binder:887_2
14179root           887   934 Binder:887_1
14180root           887  1333 Binder:887_3
14181root           887  1349 Binder:887_4
14182root           887  1354 Binder:887_5
14183root           887  1546 Binder:887_6
14184root           887  8399 Binder:887_7
14185root           887  8438 Binder:887_8
14186root           887  9011 Binder:887_9
14187keystore       888   888 keystore
14188keystore       888  1027 HwBinder:888_1
14189media          890   890 mediadrmserver
14190media          890  1006 Binder:890_1
14191mediaex        893   893 mediaextractor
14192mediaex        893  1068 Binder:893_1
14193mediaex        893  4185 Binder:893_2
14194mediaex        893  4191 Binder:893_3
14195mediaex        893 13221 Binder:893_4
14196mediaex        893 19525 Binder:893_5
14197mediaex        893  7259 Binder:893_6
14198media          894   894 mediametrics
14199media          894  1040 Binder:894_1
14200media          894  8847 Binder:894_2
14201media          894  8848 Binder:894_3
14202media          900   900 mediaserver
14203media          900  1062 Binder:900_1
14204media          900  3906 HwBinder:900_1
14205media          900  4112 Binder:900_2
14206media          900  4113 Binder:900_3
14207media          900  6462 Binder:900_4
14208media          900  6471 Binder:900_5
14209media          900  6583 Binder:900_6
14210media          900 25284 CCodecWatchdog
14211statsd         901   901 Binder:901_2
14212statsd         901  1041 Binder:901_1
14213statsd         901  1043 Binder:901_3
14214statsd         901  1044 statsd.writer
14215root           902   902 storaged
14216root           902  1038 storaged
14217root           902  1039 Binder:902_1
14218root           902  1339 HwBinder:902_1
14219wifi           903   903 wificond
14220mediacodec     904   904 [email protected]
14221mediacodec     904  1058 Binder:904_1
14222mediacodec     904  1059 Binder:904_2
14223mediacodec     904  1069 HwBinder:904_1
14224mediacodec     904  1072 HwBinder:904_2
14225mediacodec     904  4071 HwBinder:904_3
14226mediacodec     904  4110 HwBinder:904_4
14227mediacodec     904  4123 HwBinder:904_5
14228mediacodec     904  8846 HwBinder:904_6
14229mediacodec     904  8849 HwBinder:904_7
14230nobody         906   906 easelmanagerd
14231nobody         906   949 easelmanagerd
14232nobody         906   952 easelmanagerd
14233nobody         906   997 easelmanagerd
14234radio          907   907 main
14235radio          907  1136 qcrild
14236radio          907  1138 DispatcherModul
14237radio          907  1139 DispatcherModul
14238radio          907  1148 qcrild
14239radio          907  1246 Binder:907_1
14240radio          907  1247 Binder:907_2
14241radio          907  1248 file_observer
14242radio          907  1249 rild
14243radio          907  1250 HwBinder:907_1
14244radio          907  1253 main
14245radio          907  1255 GstkModule-Loop
14246radio          907  1256 UimModule-Loope
14247radio          907  1257 DataModule-Loop
14248radio          907  1258 SecureElementMo
14249radio          907  1259 RadioConfigModu
14250radio          907  1260 VoiceModemEndPo
14251radio          907  1261 CatModemEndPoin
14252radio          907  1262 UimHttpModemEnd
14253radio          907  1263 UimModemEndPoin
14254radio          907  1264 NasModemEndPoin
14255radio          907  1265 SmsModemEndPoin
14256radio          907  1266 ImsaModemEndPoi
14257radio          907  1267 ImssModemEndPoi
14258radio          907  1268 PbmModemEndPoin
14259radio          907  1269 PdcModemEndPoin
14260radio          907  1270 DataModule-Loop
14261radio          907  1271 DataModule-Loop
14262radio          907  1272 UimRemoteModemE
14263radio          907  1273 VsModemEndPoint
14264radio          907  1315 PdcModemEndPoin
14265radio          907  1361 VsModemEndPoint
14266radio          907  1371 PbmModemEndPoin
14267radio          907  1375 CatModemEndPoin
14268radio          907  1376 DataModule-Loop
14269radio          907  1377 VoiceModemEndPo
14270radio          907  1378 NasModemEndPoin
14271radio          907  1379 UimModemEndPoin
14272radio          907  1380 DataModule-Loop
14273radio          907  1384 SmsModemEndPoin
14274radio          907  1387 DataModule-Loop
14275radio          907  1394 DispatcherModul
14276radio          907  1395 DataModule-Loop
14277radio          907  1400 DataModule-Loop
14278radio          907  1401 DataModule-Loop
14279radio          907  1403 DataModule-Loop
14280radio          907  1404 DataModule-Loop
14281radio          907  1405 AuthModemEndPoi
14282radio          907  1406 AuthModemEndPoi
14283radio          907  1407 pil_monitor
14284radio          907  1411 DispatcherModul
14285radio          907  1494 qmi_cb
14286radio          907  1495 qcrild
14287radio          907  1496 qcrild
14288radio          907  1715 ImsaModemEndPoi
14289radio          907  1719 ImssModemEndPoi
14290root           914   914 adsp
14291root           915   915 lpass_IPCRTR
14292system         938   938 cnss-daemon
14293system         938  1010 Binder:938_1
14294system         938  1012 cnss-daemon
14295system         938  1015 cnss-daemon
14296system         938  1018 Binder:938_2
14297system         938  1023 Binder:938_3
14298system         938  1415 cnss-daemon
14299system         938 16584 cnss-daemon
14300gps            939   939 loc_launcher
14301gps            939   962 loc_launcher
14302gps            939   991 loc_sig_hndlr
14303system         940   940 chre
14304system         940  1002 chre
14305system         940  1003 chre
14306system         940  1019 chre
14307system         940  1020 chre
14308system         940  1117 chre
14309system         940  1118 chre
14310system         942   942 gatekeeperd
14311root           943   943 Binder:943_2
14312root           943  1004 Binder:943_1
14313root           944   944 modem
14314tombstoned     945   945 tombstoned
14315root           957   957 update_engine
14316system         958   958 [email protected]
14317system         958  1167 [email protected]
14318system         958  1168 [email protected]
14319root           960   960 adbd
14320root           960   976 usb ffs open
14321root           960 24054 adbd
14322root           960 24055 adbd
14323root           960 27817 shell svc 27816
14324root           986   986 qmi_hndl0000000
14325root           987   987 msm_slim_qmi_cl
14326root           988   988 msm_slim_qmi_cl
14327gps            992   992 lowi-server
14328gps            992  1052 lowi-server
14329gps            992  1053 lowi-server
14330gps            992  1055 lowi-server
14331gps            992  1056 lowi-server
14332gps            992 16589 lowi-server
14333gps            992 16590 lowi-server
14334gps            992 16592 lowi-server
14335gps            992 16593 lowi-server
14336gps            993   993 xtra-daemon
14337gps            993  1046 pcid-lo
14338gps            993  1063 pcid-lo
14339gps            993  1070 LocTime
14340gps            993  1071 LocTime
14341gps            993  1426 pcid-lo
14342root           994   994 qmi_hndl0000000
14343root          1001  1001 kworker/2:1H
14344root          1005  1005 qmi_hndl0000000
14345root          1014  1014 qmi_hndl0000000
14346root          1021  1021 qmi_hndl0000000
14347root          1031  1031 irq/211-arm-smm
14348root          1036  1036 irq/212-arm-smm
14349root          1037  1037 irq/213-arm-smm
14350root          1054  1054 kworker/u16:9
14351root          1057  1057 kworker/u16:10
14352root          1065  1065 irq/311-wcd9xxx
14353root          1074  1074 kworker/u16:11
14354root          1106  1106 qmi_wq
14355root          1107  1107 qmi_hndl0000000
14356root          1116  1116 kworker/u16:12
14357root          1147  1147 kworker/u16:13
14358root          1153  1153 wdsp_glink_wq
14359root          1245  1245 mpss_IPCRTR
14360root          1274  1274 qmi_hndl0000001
14361root          1275  1275 qmi_hndl0000001
14362root          1276  1276 kworker/u16:14
14363root          1308  1308 qmi_hndl0000001
14364root          1311  1311 kworker/u16:15
14365root          1312  1312 kworker/u16:16
14366root          1316  1316 qmi_hndl0000001
14367root          1414  1414 qmi_hndl0000001
14368root          1684  1684 ipawq13
14369root          1685  1685 iparepwq13
14370root          1686  1686 ipawq15
14371root          1687  1687 iparepwq15
14372system        4445  4445 pm-proxy
14373system        4445  4462 Binder:4445_1
14374system        4445  4463 Binder:4445_2
14375system        8500  8500 imsdatadaemon
14376system        8500  8506 imsdatadaemon
14377system        8500  8513 imsdatadaemon
14378system        8500  8514 imsdatadaemon
14379system        8500  8515 imsdatadaemon
14380system        8500  8516 imsdatadaemon
14381system        8500  8518 imsdatadaemon
14382system        8500  8520 imsdatadaemon
14383system        8500  8767 imsdatadaemon
14384system        8500  8768 imsdatadaemon
14385system        8500  8769 imsdatadaemon
14386system        8501  8501 ims_rtp_daemon
14387system        8501  8505 ims_rtp_daemon
14388system        8501  8507 ims_rtp_daemon
14389system        8501  8509 ims_rtp_daemon
14390system        8501  8510 ims_rtp_daemon
14391system        8501  8511 HwBinder:8501_1
14392system        8523  8523 imsrcsd
14393system        8523  8546 imsrcsd
14394system        8523  8547 imsrcsd
14395system        8523  8548 imsrcsd
14396system        8523  8549 imsrcsd
14397system        8523  8550 imsrcsd
14398root          8613  8613 ipawq34
14399root          8614  8614 iparepwq34
14400root          8615  8615 ipawq35
14401root          8616  8616 iparepwq35
14402root          8857  8857 Binder:8857_2
14403root          8857  8863 netd
14404root          8857  8864 netd
14405root          8857  8865 netd
14406root          8857  8866 netd
14407root          8857  8867 netd
14408root          8857  8868 netd
14409root          8857  8869 netd
14410root          8857  8870 netd
14411root          8857  8872 netd
14412root          8857  8873 netd
14413root          8857  8875 Binder:8857_1
14414root          8857  8876 Binder:8857_2
14415root          8857  8877 Binder:8857_3
14416root          8857  8878 HwBinder:8857_1
14417system        8858  8858 surfaceflinger
14418system        8858  8871 Binder:8858_1
14419system        8858  8874 Binder:8858_2
14420system        8858  8879 DispSync
14421system        8858  8881 appEventThread
14422system        8858  8882 sfEventThread
14423system        8858  8890 HwBinder:8858_1
14424system        8858  8891 VrEvent
14425system        8858  8892 VrHwcPost
14426system        8858  8893 VrDispatch
14427system        8858  8894 surfaceflinger
14428system        8858  8942 Binder:8858_3
14429system        8858  8951 Binder:8858_4
14430system        8858 13083 Binder:8858_5
14431root          8859  8859 main
14432root          8859 27551 ReferenceQueueD
14433root          8859 27552 FinalizerDaemon
14434root          8859 27553 FinalizerWatchd
14435root          8859 27554 HeapTaskDaemon
14436root          8860  8860 main
14437root          8860 25540 ReferenceQueueD
14438root          8860 25541 FinalizerDaemon
14439root          8860 25542 FinalizerWatchd
14440root          8860 25543 HeapTaskDaemon
14441root          8861  8861 iptables-restor
14442root          8862  8862 ip6tables-resto
14443root          8937  8937 dsi_err_workq
14444system        8943  8943 system_server
14445system        8943  8948 Signal Catcher
14446system        8943  8950 ADB-JDWP Connec
14447system        8943  8952 ReferenceQueueD
14448system        8943  8953 FinalizerDaemon
14449system        8943  8954 FinalizerWatchd
14450system        8943  8955 HeapTaskDaemon
14451system        8943  8957 Binder:8943_1
14452system        8943  8958 Binder:8943_2
14453system        8943  8960 android.bg
14454system        8943  8961 ActivityManager
14455system        8943  8962 android.ui
14456system        8943  8963 ActivityManager
14457system        8943  8964 ActivityManager
14458system        8943  8965 batterystats-wo
14459system        8943  8966 FileObserver
14460system        8943  8967 android.fg
14461system        8943  8968 android.io
14462system        8943  8969 android.display
14463system        8943  8970 CpuTracker
14464system        8943  8971 PowerManagerSer
14465system        8943  8972 BatteryStats_wa
14466system        8943  8973 PackageManager
14467system        8943  8974 PackageManager
14468system        8943  9004 PackageInstalle
14469system        8943  9005 android.anim
14470system        8943  9006 android.anim.lf
14471system        8943  9009 HwBinder:8943_1
14472system        8943  9013 HealthServiceRe
14473system        8943  9023 AccountManagerS
14474system        8943  9024 SettingsProvide
14475system        8943  9027 AlarmManager
14476system        8943  9035 SensorEventAckR
14477system        8943  9036 SensorService
14478system        8943  9037 window_tracing
14479system        8943  9039 InputDispatcher
14480system        8943  9040 InputReader
14481system        8943  9041 NetworkWatchlis
14482system        8943  9042 StorageManagerS
14483system        8943  9043 NetdConnector
14484system        8943  9045 NetworkStats
14485system        8943  9046 NetworkPolicy
14486system        8943  9047 tworkPolicy.uid
14487system        8943  9048 WifiService
14488system        8943  9049 WifiStateMachin
14489system        8943  9050 WifiScanningSer
14490system        8943  9051 WifiP2pService
14491system        8943  9052 ConnectivitySer
14492system        8943  9053 roid.pacmanager
14493system        8943  9054 NsdService
14494system        8943  9055 mDnsConnector
14495system        8943  9056 notification-sq
14496system        8943  9057 ranker
14497system        8943  9058 onProviders.ECP
14498system        8943  9059 DeviceStorageMo
14499system        8943  9060 AudioService
14500system        8943  9061 Binder:8943_3
14501system        8943  9062 Binder:8943_4
14502system        8943  9063 UEventObserver
14503system        8943  9065 HwBinder:8943_2
14504system        8943  9066 HwBinder:8943_3
14505system        8943  9067 HwBinder:8943_4
14506system        8943  9068 ConnectivityThr
14507system        8943  9069 pool-3-thread-1
14508system        8943  9070 GraphicsStats-d
14509system        8943  9071 SliceManagerSer
14510system        8943  9072 CameraService_p
14511system        8943  9073 SyncHandler-0
14512system        8943  9074 wifiRttService
14513system        8943  9075 wifiAwareServic
14514system        8943  9076 EthernetService
14515system        8943  9077 TaskSnapshotPer
14516system        8943  9078 PhotonicModulat
14517system        8943  9080 LazyTaskWriterT
14518system        8943  9082 SyncManager
14519system        8943  9088 UsbService host
14520system        8943  9089 Thread-3
14521system        8943  9101 SoundPool
14522system        8943  9102 SoundPoolThread
14523system        8943  9128 NetworkStatsObs
14524system        8943  9143 CCodecWatchdog
14525system        8943  9148 watchdog
14526system        8943  9178 EmergencyAfford
14527system        8943  9186 Binder:8943_5
14528system        8943  9215 NetworkTimeUpda
14529system        8943  9219 Binder:8943_6
14530system        8943  9222 Binder:8943_7
14531system        8943  9266 BluetoothRouteM
14532system        8943  9278 AudioPortEventH
14533system        8943  9291 uteStateMachine
14534system        8943  9296 CallAudioModeSt
14535system        8943  9308 ConnectionSvrFo
14536system        8943  9349 queued-work-loo
14537system        8943  9448 Binder:8943_8
14538system        8943  9650 UsbDebuggingMan
14539system        8943  9699 backup
14540system        8943  9741 Binder:8943_9
14541system        8943  9759 Binder:8943_A
14542system        8943  9815 Binder:8943_B
14543system        8943 10681 AsyncQueryWorke
14544system        8943 10919 Binder:8943_C
14545system        8943 10988 Binder:8943_D
14546system        8943 11055 Binder:8943_E
14547system        8943 11523 Binder:8943_F
14548system        8943 11815 Binder:8943_10
14549system        8943 11959 Binder:8943_11
14550system        8943 12153 Binder:8943_12
14551system        8943 12967 Binder:8943_13
14552system        8943 12984 Binder:8943_14
14553system        8943 12998 Binder:8943_15
14554system        8943 15374 RenderThread
14555system        8943 16170 AudioTrack
14556system        8943 16597 IpClient.wlan0
14557system        8943 23656 Binder:8943_16
14558system        8943 24100 GrallocUploadTh
14559system        8943 25293 HwBinder:8943_5
14560system        8943 25493 Binder:8943_17
14561system        8943 27812 Instrumentation
14562system        9012  9012 [email protected]
14563system        9012  9014 POSIX timer 0
14564system        9012  9015 [email protected]
14565system        9012  9018 [email protected]
14566system        9012  9020 [email protected]
14567system        9012  9021 HwBinder:9012_1
14568system        9012  9031 [email protected]
14569system        9012  9032 [email protected]
14570system        9012  9033 [email protected]
14571system        9012  9079 HwBinder:9012_1
14572system        9012  9081 HwBinder:9012_1
14573bluetooth     9083  9083 droid.bluetooth
14574bluetooth     9083  9093 Jit thread pool
14575bluetooth     9083  9096 Signal Catcher
14576bluetooth     9083  9097 ADB-JDWP Connec
14577bluetooth     9083  9098 ReferenceQueueD
14578bluetooth     9083  9099 FinalizerDaemon
14579bluetooth     9083  9100 FinalizerWatchd
14580bluetooth     9083  9111 HeapTaskDaemon
14581bluetooth     9083  9114 Binder:9083_1
14582bluetooth     9083  9126 Binder:9083_2
14583bluetooth     9083  9130 Binder:9083_3
14584bluetooth     9083  9136 Profile Saver
14585bluetooth     9083  9188 AdapterState
14586bluetooth     9083  9191 stack_manager
14587bluetooth     9083  9194 POSIX timer 0
14588bluetooth     9083  9196 POSIX timer 1
14589bluetooth     9083  9197 alarm_default_c
14590bluetooth     9083  9201 alarm_dispatche
14591bluetooth     9083  9206 BT Service Call
14592bluetooth     9083  9214 BluetoothActive
14593bluetooth     9083  9218 AudioPortEventH
14594bluetooth     9083  9323 BondStateMachin
14595bluetooth     9083  9336 BluetoothAdvert
14596bluetooth     9083  9338 BluetoothScanMa
14597bluetooth     9083  9348 queued-work-loo
14598bluetooth     9083  9353 hci_thread
14599bluetooth     9083  9354 HwBinder:9083_1
14600bluetooth     9083  9609 bt_workqueue
14601bluetooth     9083  9610 btu message loo
14602bluetooth     9083  9616 BT Service Call
14603bluetooth     9083  9617 btif_sock
14604bluetooth     9083  9618 Binder:9083_4
14605bluetooth     9083  9619 Binder:9083_5
14606bluetooth     9083  9620 e.StateMachines
14607bluetooth     9083  9622 e.StateMachines
14608bluetooth     9083  9623 btif_a2dp_sourc
14609bluetooth     9083  9624 BluetoothHdpHan
14610bluetooth     9083  9625 droid.bluetooth
14611bluetooth     9083  9626 BluetoothMapHan
14612bluetooth     9083  9630 PbapHandlerThre
14613bluetooth     9083  9638 Binder:9083_6
14614bluetooth     9083  9640 Thread-3
14615bluetooth     9083  9641 Thread-4
14616bluetooth     9083  9644 SapAcceptThread
14617bluetooth     9083  9646 Thread-6
14618bluetooth     9083  9647 Thread-7
14619bluetooth     9083  9648 Thread-8
14620bluetooth     9083  9649 Thread-9
14621bluetooth     9083  9738 Binder:9083_7
14622bluetooth     9083  9803 Binder:9083_8
14623u0_a83        9090  9090 putmethod.latin
14624u0_a83        9090  9103 Jit thread pool
14625u0_a83        9090  9104 Signal Catcher
14626u0_a83        9090  9112 ADB-JDWP Connec
14627u0_a83        9090  9113 ReferenceQueueD
14628u0_a83        9090  9115 FinalizerDaemon
14629u0_a83        9090  9116 FinalizerWatchd
14630u0_a83        9090  9117 HeapTaskDaemon
14631u0_a83        9090  9123 Binder:9090_1
14632u0_a83        9090  9127 Binder:9090_2
14633u0_a83        9090  9134 Binder:9090_3
14634u0_a83        9090  9155 Profile Saver
14635u0_a83        9090  9203 queued-work-loo
14636u0_a83        9090  9210 ExUtils-P11-1
14637u0_a83        9090  9243 ExUtils-P9-1
14638u0_a83        9090  9470 Binder:9090_4
14639u0_a83        9090  9833 GoogleApiHandle
14640u0_a83        9090  9867 MetricsManager
14641u0_a83        9090  9869 GAC_Executor[0]
14642u0_a83        9090 10009 GAC_Executor[1]
14643u0_a83        9090 10098 AnrDetector
14644u0_a83        9090 10107 NativeLogger-1
14645u0_a83        9090 10111 DwldManWrapper
14646u0_a83        9090 10169 ExUtils-P10-1
14647u0_a83        9090 10182 sp-control-1
14648u0_a83        9090 10196 Primes-1
14649u0_a83        9090 10206 ExUtils-P1-1
14650u0_a83        9090 10213 Primes-2
14651u0_a83        9090 10478 Binder:9090_5
14652u0_a83        9090 10728 Binder:9090_6
14653u0_a83        9090 13134 DecoderWrapper
14654u0_a83        9090  3293 Binder:9090_7
14655u0_a83        9090 16647 Binder:9090_8
14656u0_a45        9105  9105 ndroid.systemui
14657u0_a45        9105  9118 Jit thread pool
14658u0_a45        9105  9119 Signal Catcher
14659u0_a45        9105  9120 ADB-JDWP Connec
14660u0_a45        9105  9121 ReferenceQueueD
14661u0_a45        9105  9122 FinalizerDaemon
14662u0_a45        9105  9124 FinalizerWatchd
14663u0_a45        9105  9125 HeapTaskDaemon
14664u0_a45        9105  9131 Binder:9105_1
14665u0_a45        9105  9132 Binder:9105_2
14666u0_a45        9105  9135 Binder:9105_3
14667u0_a45        9105  9142 Profile Saver
14668u0_a45        9105  9238 smartspace-back
14669u0_a45        9105  9321 pool-1-thread-1
14670u0_a45        9105  9331 SoundPool
14671u0_a45        9105  9332 SoundPoolThread
14672u0_a45        9105  9343 Recents-HighRes
14673u0_a45        9105  9347 Recents-TaskRes
14674u0_a45        9105  9351 CCodecWatchdog
14675u0_a45        9105  9357 HwBinder:9105_1
14676u0_a45        9105  9368 recents.fg
14677u0_a45        9105  9380 Binder:9105_4
14678u0_a45        9105  9386 async_sensor
14679u0_a45        9105  9388 Binder:9105_5
14680u0_a45        9105  9398 VolumeDialogCon
14681u0_a45        9105  9415 SysUiBg
14682u0_a45        9105  9431 queued-work-loo
14683u0_a45        9105  9436 RenderThread
14684u0_a45        9105  9458 ConnectivityThr
14685u0_a45        9105  9464 WifiTracker{d80
14686u0_a45        9105  9513 TimeTick
14687u0_a45        9105  9548 FlashlightContr
14688u0_a45        9105  9588 Keyboard
14689u0_a45        9105  9605 pool-3-thread-1
14690u0_a45        9105  9614 pool-5-thread-1
14691u0_a45        9105  9621 Thread-2
14692u0_a45        9105  9637 Binder:9105_6
14693u0_a45        9105  9651 Binder:9105_7
14694u0_a45        9105 13064 GrallocUploadTh
14695webview_zygote 9144 9144 webview_zygote
14696webview_zygote 9144 9149 ReferenceQueueD
14697webview_zygote 9144 9150 FinalizerDaemon
14698webview_zygote 9144 9151 FinalizerWatchd
14699webview_zygote 9144 9152 HeapTaskDaemon
14700radio         9229  9229 .dataservices
14701radio         9229  9234 Jit thread pool
14702radio         9229  9235 Signal Catcher
14703radio         9229  9236 ADB-JDWP Connec
14704radio         9229  9237 ReferenceQueueD
14705radio         9229  9239 FinalizerDaemon
14706radio         9229  9240 FinalizerWatchd
14707radio         9229  9241 HeapTaskDaemon
14708radio         9229  9244 Binder:9229_1
14709radio         9229  9251 Binder:9229_2
14710radio         9229  9252 Binder:9229_3
14711radio         9229  9264 Profile Saver
14712radio         9229  9293 cneservice_thre
14713radio         9229  9313 CNEReceiver
14714radio         9229  9316 ConnectivityThr
14715radio         9229  9317 MainEventThread
14716radio         9229  9319 HwBinder:9229_1
14717radio         9229 10048 MainEventThread
14718radio         9229 10085 queued-work-loo
14719radio         9245  9245 elephonyservice
14720radio         9245  9253 Jit thread pool
14721radio         9245  9262 Signal Catcher
14722radio         9245  9282 ADB-JDWP Connec
14723radio         9245  9283 ReferenceQueueD
14724radio         9245  9284 FinalizerDaemon
14725radio         9245  9285 FinalizerWatchd
14726radio         9245  9286 HeapTaskDaemon
14727radio         9245  9287 Binder:9245_1
14728radio         9245  9292 Binder:9245_2
14729radio         9245  9294 Binder:9245_3
14730radio         9245  9318 Profile Saver
14731radio         9245 10026 HwBinder:9245_1
14732radio         9245 10040 queued-work-loo
14733radio         9256  9256 oid.grilservice
14734radio         9256  9263 Jit thread pool
14735radio         9256  9265 Signal Catcher
14736radio         9256  9267 ADB-JDWP Connec
14737radio         9256  9268 ReferenceQueueD
14738radio         9256  9269 FinalizerDaemon
14739radio         9256  9276 FinalizerWatchd
14740radio         9256  9277 HeapTaskDaemon
14741radio         9256  9279 Binder:9256_1
14742radio         9256  9281 Binder:9256_2
14743radio         9256  9288 Binder:9256_3
14744radio         9256  9295 Profile Saver
14745radio         9256  9816 HwBinder:9256_1
14746radio         9271  9271 m.android.phone
14747radio         9271  9290 Jit thread pool
14748radio         9271  9303 Signal Catcher
14749radio         9271  9304 ADB-JDWP Connec
14750radio         9271  9305 ReferenceQueueD
14751radio         9271  9306 FinalizerDaemon
14752radio         9271  9307 FinalizerWatchd
14753radio         9271  9309 HeapTaskDaemon
14754radio         9271  9310 Binder:9271_1
14755radio         9271  9311 Binder:9271_2
14756radio         9271  9315 Binder:9271_3
14757radio         9271  9322 Profile Saver
14758radio         9271  9389 HwBinder:9271_1
14759radio         9271  9393 EuiccConnector
14760radio         9271  9394 android.bg
14761radio         9271  9396 queued-work-loo
14762radio         9271  9412 GsmCellBroadcas
14763radio         9271  9414 GsmInboundSmsHa
14764radio         9271  9418 CellBroadcastHa
14765radio         9271  9421 CdmaInboundSmsH
14766radio         9271  9422 CdmaServiceCate
14767radio         9271  9424 LocaleTracker
14768radio         9271  9426 DcHandlerThread
14769radio         9271  9484 Binder:9271_4
14770radio         9271  9487 ImsServiceContr
14771radio         9271  9492 NetworkService
14772radio         9271  9502 DataService
14773radio         9271  9532 Binder:9271_5
14774radio         9271  9541 org.codeaurora.
14775radio         9271  9542 ImsConfigImplHa
14776radio         9271  9543 ImsSmsImpl
14777radio         9271  9549 CellularNetwork
14778radio         9271  9550 CellularDataSer
14779radio         9271  9557 ConnectivityThr
14780radio         9271  9580 Binder:9271_6
14781radio         9271  9587 Binder:9271_7
14782radio         9271 10683 ervice.Executor
14783radio         9271 20907 Binder:9271_8
14784u0_a70        9298  9298 oid.setupwizard
14785u0_a70        9298  9320 Jit thread pool
14786u0_a70        9298  9324 Signal Catcher
14787u0_a70        9298  9325 ADB-JDWP Connec
14788u0_a70        9298  9326 ReferenceQueueD
14789u0_a70        9298  9327 FinalizerDaemon
14790u0_a70        9298  9328 FinalizerWatchd
14791u0_a70        9298  9329 HeapTaskDaemon
14792u0_a70        9298  9330 Binder:9298_1
14793u0_a70        9298  9333 Binder:9298_2
14794u0_a70        9298  9334 Binder:9298_3
14795u0_a70        9298  9344 Profile Saver
14796u0_a70        9298  9372 queued-work-loo
14797u0_a70        9298  9374 GoogleApiHandle
14798u0_a70        9298  9376 ConnectivityThr
14799u0_a70        9298  9377 WifiTracker{274
14800u0_a70        9298  9457 RenderThread
14801u0_a70        9298  9743 pool-1-thread-1
14802u0_a70        9298 10377 Binder:9298_4
14803u0_a70        9298 12310 Binder:9298_5
14804u0_a70        9298  3292 Binder:9298_6
14805u0_a70        9298  5783 Binder:9298_7
14806u0_a70        9298  7820 Binder:9298_8
14807u0_a70        9298 13309 Binder:9298_9
14808u0_a70        9298 15004 Binder:9298_A
14809u0_a7         9337  9337 id.ext.services
14810u0_a7         9337  9358 Jit thread pool
14811u0_a7         9337  9359 Signal Catcher
14812u0_a7         9337  9361 ADB-JDWP Connec
14813u0_a7         9337  9362 ReferenceQueueD
14814u0_a7         9337  9363 FinalizerDaemon
14815u0_a7         9337  9365 FinalizerWatchd
14816u0_a7         9337  9366 HeapTaskDaemon
14817u0_a7         9337  9367 Binder:9337_1
14818u0_a7         9337  9369 Binder:9337_2
14819u0_a7         9337  9371 Binder:9337_3
14820u0_a7         9337  9375 Profile Saver
14821u0_a7         9337  9792 Binder:9337_4
14822u0_a7         9337  9793 queued-work-loo
14823root          9674  9674 irq/80-1436400.
14824root          9677  9677 irq/81-114a000.
14825u0_a29        9697  9697 le.modemservice
14826u0_a29        9697  9701 Jit thread pool
14827u0_a29        9697  9702 Signal Catcher
14828u0_a29        9697  9703 ADB-JDWP Connec
14829u0_a29        9697  9706 ReferenceQueueD
14830u0_a29        9697  9707 FinalizerDaemon
14831u0_a29        9697  9709 FinalizerWatchd
14832u0_a29        9697  9710 HeapTaskDaemon
14833u0_a29        9697  9711 Binder:9697_1
14834u0_a29        9697  9713 Binder:9697_2
14835u0_a29        9697  9717 Binder:9697_3
14836u0_a29        9697  9730 Profile Saver
14837u0_a29        9697  9784 StateService
14838u0_a29        9697  9811 queued-work-loo
14839u0_a29        9697  9814 ConnectivityThr
14840u0_a29        9697  9822 Binder:9697_4
14841u0_a12        9714  9714 ocess.gservices
14842u0_a12        9714  9719 Jit thread pool
14843u0_a12        9714  9721 Signal Catcher
14844u0_a12        9714  9722 ADB-JDWP Connec
14845u0_a12        9714  9723 ReferenceQueueD
14846u0_a12        9714  9724 FinalizerDaemon
14847u0_a12        9714  9725 FinalizerWatchd
14848u0_a12        9714  9727 HeapTaskDaemon
14849u0_a12        9714  9728 Binder:9714_1
14850u0_a12        9714  9729 Binder:9714_2
14851u0_a12        9714  9736 Binder:9714_3
14852u0_a12        9714  9782 Profile Saver
14853u0_a12        9714  9854 Binder:9714_4
14854u0_a12        9714 10044 Binder:9714_5
14855u0_a12        9714 10176 Binder:9714_6
14856u0_a12        9714 10250 Binder:9714_7
14857u0_a12        9714 10495 Binder:9714_8
14858u0_a12        9714 10517 Binder:9714_9
14859u0_a12        9714 10530 Binder:9714_A
14860u0_a12        9714 10613 Binder:9714_B
14861u0_a12        9714 10629 Binder:9714_C
14862u0_a12        9714 10727 Binder:9714_D
14863u0_a12        9714 11078 Binder:9714_E
14864u0_a12        9714 11198 Binder:9714_F
14865u0_a12        9714 11462 Binder:9714_10
14866nfc           9748  9748 com.android.nfc
14867nfc           9748  9760 Jit thread pool
14868nfc           9748  9761 Signal Catcher
14869nfc           9748  9767 ADB-JDWP Connec
14870nfc           9748  9768 ReferenceQueueD
14871nfc           9748  9769 FinalizerDaemon
14872nfc           9748  9770 FinalizerWatchd
14873nfc           9748  9771 HeapTaskDaemon
14874nfc           9748  9772 Binder:9748_1
14875nfc           9748  9783 Binder:9748_2
14876nfc           9748  9791 Binder:9748_3
14877nfc           9748  9805 Profile Saver
14878nfc           9748  9967 AsyncTask #1
14879nfc           9748  9972 AsyncTask #1
14880nfc           9748  9982 HwBinder:9748_1
14881nfc           9748 10133 Thread-2
14882nfc           9748 10138 Thread-3
14883nfc           9748 10139 Thread-4
14884nfc           9748 10142 SoundPool
14885nfc           9748 10143 SoundPoolThread
14886nfc           9748 10161 CCodecWatchdog
14887nfc           9748 10178 Binder:9748_4
14888nfc           9748 20905 Binder:9748_5
14889secure_element 9762 9762 com.android.se
14890secure_element 9762 9773 Jit thread pool
14891secure_element 9762 9774 Signal Catcher
14892secure_element 9762 9776 ADB-JDWP Connec
14893secure_element 9762 9778 ReferenceQueueD
14894secure_element 9762 9779 FinalizerDaemon
14895secure_element 9762 9780 FinalizerWatchd
14896secure_element 9762 9781 HeapTaskDaemon
14897secure_element 9762 9785 Binder:9762_1
14898secure_element 9762 9796 Binder:9762_2
14899secure_element 9762 9812 Profile Saver
14900secure_element 9762 9818 Binder:9762_3
14901secure_element 9762 9826 HwBinder:9762_1
14902secure_element 9762 9835 queued-work-loo
14903radio         9786  9786 .ims.rcsservice
14904radio         9786  9794 Jit thread pool
14905radio         9786  9795 Signal Catcher
14906radio         9786  9797 ADB-JDWP Connec
14907radio         9786  9798 ReferenceQueueD
14908radio         9786  9799 FinalizerDaemon
14909radio         9786  9800 FinalizerWatchd
14910radio         9786  9801 HeapTaskDaemon
14911radio         9786  9802 Binder:9786_1
14912radio         9786  9813 Binder:9786_2
14913radio         9786  9817 Binder:9786_3
14914radio         9786  9837 Profile Saver
14915radio         9786  9861 Listener
14916radio         9786  9892 queued-work-loo
14917radio         9786 10594 EABServiceHandl
14918radio         9786 10885 Binder:9786_4
14919system        9806  9806 RestartDetector
14920system        9806  9824 Jit thread pool
14921system        9806  9832 Signal Catcher
14922system        9806  9838 ADB-JDWP Connec
14923system        9806  9839 ReferenceQueueD
14924system        9806  9840 FinalizerDaemon
14925system        9806  9841 FinalizerWatchd
14926system        9806  9842 HeapTaskDaemon
14927system        9806  9843 Binder:9806_1
14928system        9806  9844 Binder:9806_2
14929system        9806  9855 Profile Saver
14930system        9806 10939 FileObserver
14931system        9806 10940 queued-work-loo
14932u0_a71        9827  9827 eui:sui_service
14933u0_a71        9827  9834 Jit thread pool
14934u0_a71        9827  9836 Signal Catcher
14935u0_a71        9827  9849 ADB-JDWP Connec
14936u0_a71        9827  9850 ReferenceQueueD
14937u0_a71        9827  9851 FinalizerDaemon
14938u0_a71        9827  9852 FinalizerWatchd
14939u0_a71        9827  9853 HeapTaskDaemon
14940u0_a71        9827  9857 Binder:9827_1
14941u0_a71        9827  9859 Binder:9827_2
14942u0_a71        9827  9870 Profile Saver
14943u0_a71        9827 10430 Binder:9827_3
14944u0_a71        9827 10431 Thread-2
14945u0_a71        9827 10432 queued-work-loo
14946u0_a71        9827 10444 HwBinder:9827_1
14947u0_a71        9827 10447 Thread-2
14948u0_a12        9871  9871 .gms.persistent
14949u0_a12        9871  9879 Jit thread pool
14950u0_a12        9871  9880 Signal Catcher
14951u0_a12        9871  9887 ADB-JDWP Connec
14952u0_a12        9871  9888 ReferenceQueueD
14953u0_a12        9871  9889 FinalizerDaemon
14954u0_a12        9871  9890 FinalizerWatchd
14955u0_a12        9871  9891 HeapTaskDaemon
14956u0_a12        9871  9893 Binder:9871_1
14957u0_a12        9871  9894 Binder:9871_2
14958u0_a12        9871  9905 Binder:9871_3
14959u0_a12        9871  9957 Profile Saver
14960u0_a12        9871 10109 Binder:9871_4
14961u0_a12        9871 10115 Binder:9871_5
14962u0_a12        9871 10116 FileObserver
14963u0_a12        9871 10122 Binder:9871_6
14964u0_a12        9871 10170 GlobalDispatchi
14965u0_a12        9871 10248 GoogleApiHandle
14966u0_a12        9871 10294 GlobalScheduler
14967u0_a12        9871 10309 ConnectivityThr
14968u0_a12        9871 10321 queued-work-loo
14969u0_a12        9871 10323 highpool[0]
14970u0_a12        9871 10395 Binder:9871_7
14971u0_a12        9871 10402 GAC_Executor[0]
14972u0_a12        9871 10424 FlpThread
14973u0_a12        9871 10476 highpool[1]
14974u0_a12        9871 10482 Binder:9871_8
14975u0_a12        9871 10485 highpool[2]
14976u0_a12        9871 10535 highpool[3]
14977u0_a12        9871 10576 GeofencerStateM
14978u0_a12        9871 10580 RealContextHub
14979u0_a12        9871 10586 GAC_Executor[1]
14980u0_a12        9871 10627 GoogleLocationS
14981u0_a12        9871 10703 MSMuxTR-0
14982u0_a12        9871 11226 Binder:9871_9
14983u0_a12        9871 11721 netscheduler-qu
14984u0_a12        9871 11816 Binder:9871_A
14985u0_a12        9871 11926 Binder:9871_B
14986u0_a12        9871 11953 NearbyMessages
14987u0_a12        9871 12060 NearbyDirectMai
14988u0_a12        9871 12104 lowpool[6]
14989u0_a12        9871  7849 Binder:9871_C
14990u0_a12        9871 16617 Thread-32
14991u0_a12        9871 16618 Thread-33
14992u0_a12        9871 16619 Thread-34
14993u0_a12        9871 16620 Thread-35
14994u0_a12        9871 16621 Thread-36
14995u0_a12        9871 16622 Places
14996u0_a12        9871 16709 lowpool[8]
14997u0_a12        9871 24462 lowpool[10]
14998u0_a12        9871 24463 Binder:9871_D
14999u0_a12        9871 25133 Binder:9871_E
15000u0_a12        9871 25134 Binder:9871_F
15001u0_a12        9871 25324 Binder:9871_10
15002u0_a12        9871 25594 lowpool[12]
15003u0_a147       9882  9882 gearhead:shared
15004u0_a147       9882  9896 Jit thread pool
15005u0_a147       9882  9903 Signal Catcher
15006u0_a147       9882  9927 ADB-JDWP Connec
15007u0_a147       9882  9928 ReferenceQueueD
15008u0_a147       9882  9929 FinalizerDaemon
15009u0_a147       9882  9930 FinalizerWatchd
15010u0_a147       9882  9931 HeapTaskDaemon
15011u0_a147       9882  9932 Binder:9882_1
15012u0_a147       9882  9933 Binder:9882_2
15013u0_a147       9882  9948 Binder:9882_3
15014u0_a147       9882  9988 Profile Saver
15015u0_a147       9882 10110 GoogleApiHandle
15016u0_a147       9882 10301 FileObserver
15017u0_a147       9882 10303 ConnectivityThr
15018u0_a147       9882 10322 queued-work-loo
15019u0_a147       9882 10331 GAC_Executor[0]
15020u0_a147       9882 10477 Binder:9882_4
15021u0_a147       9882 10567 GAC_Executor[1]
15022u0_a43        9898  9898 apps.dreamliner
15023u0_a43        9898  9904 Jit thread pool
15024u0_a43        9898  9908 Signal Catcher
15025u0_a43        9898  9909 ADB-JDWP Connec
15026u0_a43        9898  9910 ReferenceQueueD
15027u0_a43        9898  9911 FinalizerDaemon
15028u0_a43        9898  9912 FinalizerWatchd
15029u0_a43        9898  9913 HeapTaskDaemon
15030u0_a43        9898  9914 Binder:9898_1
15031u0_a43        9898  9920 Binder:9898_2
15032u0_a43        9898  9924 Binder:9898_3
15033u0_a43        9898  9925 Binder:9898_4
15034u0_a43        9898  9943 Profile Saver
15035radio         9935  9935 .qcrilmsgtunnel
15036radio         9935  9949 Jit thread pool
15037radio         9935  9952 Signal Catcher
15038radio         9935  9958 ADB-JDWP Connec
15039radio         9935  9959 ReferenceQueueD
15040radio         9935  9960 FinalizerDaemon
15041radio         9935  9961 FinalizerWatchd
15042radio         9935  9962 HeapTaskDaemon
15043radio         9935  9963 Binder:9935_1
15044radio         9935  9968 Binder:9935_2
15045radio         9935  9980 Binder:9935_3
15046radio         9935  9990 Profile Saver
15047radio         9935 10016 HwBinder:9935_1
15048radio         9935 10039 queued-work-loo
15049u0_a36        9953  9953 ps.pixelmigrate
15050u0_a36        9953  9966 Jit thread pool
15051u0_a36        9953  9971 Signal Catcher
15052u0_a36        9953  9973 ADB-JDWP Connec
15053u0_a36        9953  9974 ReferenceQueueD
15054u0_a36        9953  9975 FinalizerDaemon
15055u0_a36        9953  9976 FinalizerWatchd
15056u0_a36        9953  9977 HeapTaskDaemon
15057u0_a36        9953  9978 Binder:9953_1
15058u0_a36        9953  9979 Binder:9953_2
15059u0_a36        9953  9989 Binder:9953_3
15060u0_a36        9953  9992 Profile Saver
15061u0_a36        9953 10204 pool-6-thread-1
15062u0_a36        9953 10480 Binder:9953_4
15063u0_a36        9953 10529 Binder:9953_5
15064u0_a36        9953 16656 queued-work-loo
15065u0_a36        9953 23064 lowpool[0]
15066u0_a36        9953 23167 lowpool[1]
15067u0_a36        9953 23775 lowpool[2]
15068u0_a36        9953 24139 lowpool[3]
15069u0_a50       10010 10010 ogle.android.as
15070u0_a50       10010 10019 Jit thread pool
15071u0_a50       10010 10021 Signal Catcher
15072u0_a50       10010 10033 ADB-JDWP Connec
15073u0_a50       10010 10034 ReferenceQueueD
15074u0_a50       10010 10035 FinalizerDaemon
15075u0_a50       10010 10036 FinalizerWatchd
15076u0_a50       10010 10037 HeapTaskDaemon
15077u0_a50       10010 10038 Binder:10010_1
15078u0_a50       10010 10042 Binder:10010_2
15079u0_a50       10010 10046 Binder:10010_3
15080u0_a50       10010 10057 Profile Saver
15081u0_a50       10010 10124 GoogleApiHandle
15082u0_a50       10010 10483 Binder:10010_4
15083u0_a50       10010 24098 aiai-bg-0
15084u0_a50       10010 24103 GAC_Executor[0]
15085u0_a50       10010 24104 GAC_Executor[1]
15086u0_a20       10023 10023 s.nexuslauncher
15087u0_a20       10023 10045 Jit thread pool
15088u0_a20       10023 10056 Signal Catcher
15089u0_a20       10023 10058 ADB-JDWP Connec
15090u0_a20       10023 10059 ReferenceQueueD
15091u0_a20       10023 10060 FinalizerDaemon
15092u0_a20       10023 10061 FinalizerWatchd
15093u0_a20       10023 10062 HeapTaskDaemon
15094u0_a20       10023 10063 Binder:10023_1
15095u0_a20       10023 10088 Binder:10023_2
15096u0_a20       10023 10100 Profile Saver
15097u0_a20       10023 10131 pool-1-thread-1
15098u0_a20       10023 10136 launcher-loader
15099u0_a20       10023 10175 GAC_Executor[0]
15100u0_a20       10023 10177 GoogleApiHandle
15101u0_a20       10023 10205 queued-work-loo
15102u0_a20       10023 10472 GAC_Executor[1]
15103u0_a20       10023 10531 Binder:10023_3
15104u0_a20       10023 10726 Binder:10023_4
15105u0_a20       10023 11605 smartspace-load
15106u0_a20       10023 16586 UiThreadHelper
15107u0_a20       10023 16587 pool-1-thread-2
15108u0_a20       10023 16594 Recents-HighRes
15109u0_a20       10023 16595 Recents-TaskRes
15110u0_a20       10023 16596 pool-3-thread-1
15111u0_a20       10023 16602 qsb-experiments
15112u0_a20       10023 16603 magnifier pixel
15113u0_a20       10023 16604 search-thread
15114u0_a20       10023 16607 RenderThread
15115u0_a20       10023 16608 remote-ui
15116u0_a20       10023 16610 reflection-thre
15117u0_a20       10023 16611 reflection-plac
15118u0_a20       10023 16612 GrallocUploadTh
15119u0_a20       10023 16614 pool-1-thread-3
15120u0_a20       10023 16615 file-logger
15121u0_a20       10023 18018 Binder:10023_5
15122u0_a20       10023 18840 hwuiTask1
15123u0_a20       10023 23680 Binder:10023_6
15124u0_a20       10023 24097 pool-3-thread-2
15125u0_a69       10049 10049 android.vending
15126u0_a69       10049 10072 Jit thread pool
15127u0_a69       10049 10087 Signal Catcher
15128u0_a69       10049 10090 ADB-JDWP Connec
15129u0_a69       10049 10091 ReferenceQueueD
15130u0_a69       10049 10092 FinalizerDaemon
15131u0_a69       10049 10093 FinalizerWatchd
15132u0_a69       10049 10094 HeapTaskDaemon
15133u0_a69       10049 10096 Binder:10049_1
15134u0_a69       10049 10099 Binder:10049_2
15135u0_a69       10049 10123 Profile Saver
15136u0_a69       10049 10268 queued-work-loo
15137u0_a69       10049 10299 FinskyApp
15138u0_a69       10049 10318 ndroid.play.b.g
15139u0_a69       10049 10378 Thread-3
15140u0_a69       10049 10379 Thread-4
15141u0_a69       10049 10380 Thread-5
15142u0_a69       10049 10382 libraries-threa
15143u0_a69       10049 10388 download-manage
15144u0_a69       10049 10394 NetworkQualityQ
15145u0_a69       10049 10396 ConnectivityThr
15146u0_a69       10049 10397 Thread-6
15147u0_a69       10049 10398 Thread-7
15148u0_a69       10049 10399 Thread-8
15149u0_a69       10049 10400 Thread-9
15150u0_a69       10049 10401 Thread-10
15151u0_a69       10049 10411 tentative-gc-ru
15152u0_a69       10049 10473 Db-scheduler
15153u0_a69       10049 10486 LibrariesImpl
15154u0_a69       10049 10489 PackageInstalle
15155u0_a69       10049 10500 WriteThroughIns
15156u0_a69       10049 10516 Binder:10049_3
15157u0_a69       10049 11221 Binder:10049_4
15158u0_a69       10049 11223 Binder:10049_5
15159u0_a69       10049 11495 RefQueueWorker@
15160u0_a69       10049 11504 RefQueueWorker@
15161u0_a69       10049 11539 wear-nodes-cont
15162u0_a69       10049 11543 GAC_Executor[0]
15163u0_a69       10049 11553 GAC_Executor[1]
15164u0_a69       10049 11559 BackgroundThrea
15165u0_a69       10049 11624 Binder:10049_6
15166u0_a69       10049 12520 Timer-0
15167u0_a69       10049 12942 GoogleApiHandle
15168u0_a69       10049 17914 Db-user_languag
15169u0_a69       10049 17936 GearheadStateMo
15170u0_a69       10049 17939 RefQueueWorker@
15171u0_a69       10049 17981 RefQueueWorker@
15172u0_a69       10049 18048 RefQueueWorker@
15173u0_a69       10049 20848 RefQueueWorker@
15174u0_a69       10049 20855 RefQueueWorker@
15175u0_a69       10049 20859 RefQueueWorker@
15176u0_a69       10049 22983 RefQueueWorker@
15177u0_a69       10049 22992 RefQueueWorker@
15178u0_a69       10049 22994 RefQueueWorker@
15179u0_a69       10049 23191 RefQueueWorker@
15180u0_a69       10049 23198 RefQueueWorker@
15181u0_a69       10049 23202 RefQueueWorker@
15182u0_a69       10049 23569 Binder:10049_7
15183u0_a69       10049 24016 RefQueueWorker@
15184u0_a69       10049 24023 RefQueueWorker@
15185u0_a69       10049 24027 RefQueueWorker@
15186u0_a69       10049 25060 RefQueueWorker@
15187u0_a69       10049 25067 RefQueueWorker@
15188u0_a69       10049 25069 RefQueueWorker@
15189u0_a12       10190 10190 gle.android.gms
15190u0_a12       10190 10198 Jit thread pool
15191u0_a12       10190 10207 Signal Catcher
15192u0_a12       10190 10214 ADB-JDWP Connec
15193u0_a12       10190 10216 ReferenceQueueD
15194u0_a12       10190 10217 FinalizerDaemon
15195u0_a12       10190 10218 FinalizerWatchd
15196u0_a12       10190 10219 HeapTaskDaemon
15197u0_a12       10190 10220 Binder:10190_1
15198u0_a12       10190 10221 Binder:10190_2
15199u0_a12       10190 10231 Binder:10190_3
15200u0_a12       10190 10235 Profile Saver
15201u0_a12       10190 10273 Binder:10190_4
15202u0_a12       10190 10296 FileObserver
15203u0_a12       10190 10304 GlobalDispatchi
15204u0_a12       10190 10409 GoogleApiHandle
15205u0_a12       10190 10545 GlobalScheduler
15206u0_a12       10190 10546 lowpool[0]
15207u0_a12       10190 10585 Binder:10190_5
15208u0_a12       10190 10587 Binder:10190_6
15209u0_a12       10190 10595 Binder:10190_7
15210u0_a12       10190 10599 Binder:10190_8
15211u0_a12       10190 10605 queued-work-loo
15212u0_a12       10190 10614 lowpool[2]
15213u0_a12       10190 10818 Thread-6
15214u0_a12       10190 10819 Thread-7
15215u0_a12       10190 10820 Thread-8
15216u0_a12       10190 10821 Thread-9
15217u0_a12       10190 10822 Thread-10
15218u0_a12       10190 11664 highpool[0]
15219u0_a12       10190 11680 highpool[1]
15220u0_a12       10190 11683 Binder:10190_9
15221u0_a12       10190 11685 GAC_Executor[0]
15222u0_a12       10190 11701 AdWorker(Defaul
15223u0_a12       10190 11711 GAC_Executor[1]
15224u0_a12       10190 11712 AdWorker(Defaul
15225u0_a12       10190 11819 Binder:10190_A
15226u0_a12       10190 11822 ConnectivityThr
15227u0_a12       10190 11891 highpool[2]
15228u0_a12       10190 11897 highpool[3]
15229u0_a12       10190 11921 Binder:10190_B
15230u0_a12       10190 11924 Binder:10190_C
15231u0_a12       10190 11935 Binder:10190_D
15232u0_a12       10190 12873 Binder:10190_E
15233u0_a12       10190 23679 Binder:10190_F
15234u0_a12       10190 23681 Binder:10190_10
15235u0_a12       10190 24072 iu-sync-manager
15236u0_a12       10190 25295 MediaTracker bu
15237u0_a12       10190 25340 lowpool[9]
15238u0_a12       10190 25593 lowpool[10]
15239system       10640 10640 ti.diagservices
15240system       10640 10647 Jit thread pool
15241system       10640 10648 Signal Catcher
15242system       10640 10649 ADB-JDWP Connec
15243system       10640 10650 ReferenceQueueD
15244system       10640 10651 FinalizerDaemon
15245system       10640 10652 FinalizerWatchd
15246system       10640 10653 HeapTaskDaemon
15247system       10640 10654 Binder:10640_1
15248system       10640 10656 Binder:10640_2
15249system       10640 10662 Binder:10640_3
15250system       10640 10668 Profile Saver
15251system       10640 10680 Binder:10640_4
15252system       10640 10682 ti.diagservices
15253system       10640 10694 queued-work-loo
15254u0_a44       11200 11200 .apps.turbo:aab
15255u0_a44       11200 11204 Jit thread pool
15256u0_a44       11200 11205 Signal Catcher
15257u0_a44       11200 11207 ADB-JDWP Connec
15258u0_a44       11200 11208 ReferenceQueueD
15259u0_a44       11200 11209 FinalizerDaemon
15260u0_a44       11200 11210 FinalizerWatchd
15261u0_a44       11200 11211 HeapTaskDaemon
15262u0_a44       11200 11212 Binder:11200_1
15263u0_a44       11200 11213 Binder:11200_2
15264u0_a44       11200 11214 Binder:11200_3
15265u0_a44       11200 11215 Profile Saver
15266u0_a44       11200 11250 GoogleApiHandle
15267u0_a44       11200 11255 queued-work-loo
15268u0_a44       11200 11622 Binder:11200_4
15269u0_a44       11200 16648 Binder:11200_5
15270u0_a44       11200 23747 GAC_Executor[0]
15271u0_a44       11200 23748 GAC_Executor[1]
15272u0_a44       11200 25119 Binder:11200_6
15273u0_a44       11200 27494 AsyncTask #3
15274u0_a119      12376 12376 lcomm.telephony
15275u0_a119      12376 12381 Jit thread pool
15276u0_a119      12376 12382 Signal Catcher
15277u0_a119      12376 12383 ADB-JDWP Connec
15278u0_a119      12376 12384 ReferenceQueueD
15279u0_a119      12376 12385 FinalizerDaemon
15280u0_a119      12376 12386 FinalizerWatchd
15281u0_a119      12376 12387 HeapTaskDaemon
15282u0_a119      12376 12388 Binder:12376_1
15283u0_a119      12376 12389 Binder:12376_2
15284u0_a119      12376 12390 Binder:12376_3
15285u0_a119      12376 12391 Profile Saver
15286u0_a119      12376 12392 Thread-2
15287u0_a119      12376 12393 CTSA Inject Thr
15288u0_a119      12376 12394 HwBinder:12376_
15289u0_a119      12376 12395 queued-work-loo
15290root         16180 16180 kworker/u16:18
15291wifi         16539 16539 wpa_supplicant
15292root         16565 16565 cds_mc_thread
15293root         16566 16566 cds_ol_rx_threa
15294root         16567 16567 wmi_rx_event_wo
15295system       23597 23597 ndroid.settings
15296system       23597 23602 Jit thread pool
15297system       23597 23603 Signal Catcher
15298system       23597 23604 ADB-JDWP Connec
15299system       23597 23605 ReferenceQueueD
15300system       23597 23606 FinalizerDaemon
15301system       23597 23607 FinalizerWatchd
15302system       23597 23608 HeapTaskDaemon
15303system       23597 23609 Binder:23597_1
15304system       23597 23610 Binder:23597_2
15305system       23597 23611 Profile Saver
15306system       23597 23613 onsState.Loader
15307system       23597 23615 pool-1-thread-1
15308system       23597 23616 Binder:23597_3
15309system       23597 23636 RenderThread
15310system       23597 23640 queued-work-loo
15311system       23597 23642 GoogleApiHandle
15312system       23597 23644 ConnectivityThr
15313system       23597 23645 android.bg
15314system       23597 23652 Binder:23597_4
15315system       23597 24464 Binder:23597_5
15316u0_a47       23620 23620 ackageinstaller
15317u0_a47       23620 23625 Jit thread pool
15318u0_a47       23620 23626 Signal Catcher
15319u0_a47       23620 23627 ADB-JDWP Connec
15320u0_a47       23620 23628 ReferenceQueueD
15321u0_a47       23620 23629 FinalizerDaemon
15322u0_a47       23620 23630 FinalizerWatchd
15323u0_a47       23620 23631 HeapTaskDaemon
15324u0_a47       23620 23632 Binder:23620_1
15325u0_a47       23620 23633 Binder:23620_2
15326u0_a47       23620 23634 Binder:23620_3
15327u0_a47       23620 23635 Binder:23620_4
15328u0_a47       23620 23637 Profile Saver
15329u0_a47       23620 23655 queued-work-loo
15330u0_a47       23620 24095 RenderThread
15331u0_a27       23932 23932 viders.calendar
15332u0_a27       23932 23937 Jit thread pool
15333u0_a27       23932 23938 Signal Catcher
15334u0_a27       23932 23939 ADB-JDWP Connec
15335u0_a27       23932 23940 ReferenceQueueD
15336u0_a27       23932 23941 FinalizerDaemon
15337u0_a27       23932 23942 FinalizerWatchd
15338u0_a27       23932 23943 HeapTaskDaemon
15339u0_a27       23932 23944 Binder:23932_1
15340u0_a27       23932 23945 Binder:23932_2
15341u0_a27       23932 23946 Binder:23932_3
15342u0_a27       23932 23947 Profile Saver
15343u0_a27       23932 23951 queued-work-loo
15344root         23997 23997 kworker/5:0
15345root         24050 24050 kworker/5:1
15346u0_a148      24056 24056 oid.pixellogger
15347u0_a148      24056 24061 Jit thread pool
15348u0_a148      24056 24062 Signal Catcher
15349u0_a148      24056 24063 ADB-JDWP Connec
15350u0_a148      24056 24064 ReferenceQueueD
15351u0_a148      24056 24065 FinalizerDaemon
15352u0_a148      24056 24066 FinalizerWatchd
15353u0_a148      24056 24067 HeapTaskDaemon
15354u0_a148      24056 24068 Binder:24056_1
15355u0_a148      24056 24069 Binder:24056_2
15356u0_a148      24056 24070 Binder:24056_3
15357u0_a148      24056 24073 Profile Saver
15358u0_a17       24075 24075 d.process.media
15359u0_a17       24075 24080 Jit thread pool
15360u0_a17       24075 24081 Signal Catcher
15361u0_a17       24075 24082 ADB-JDWP Connec
15362u0_a17       24075 24083 ReferenceQueueD
15363u0_a17       24075 24084 FinalizerDaemon
15364u0_a17       24075 24085 FinalizerWatchd
15365u0_a17       24075 24086 HeapTaskDaemon
15366u0_a17       24075 24087 Binder:24075_1
15367u0_a17       24075 24088 Binder:24075_2
15368u0_a17       24075 24089 Binder:24075_3
15369u0_a17       24075 24090 Profile Saver
15370u0_a17       24075 24093 thumbs thread
15371u0_a17       24075 25472 Binder:24075_4
15372u0_a24       24589 24589 d.process.acore
15373u0_a24       24589 24594 Jit thread pool
15374u0_a24       24589 24595 Signal Catcher
15375u0_a24       24589 24596 ADB-JDWP Connec
15376u0_a24       24589 24597 ReferenceQueueD
15377u0_a24       24589 24598 FinalizerDaemon
15378u0_a24       24589 24599 FinalizerWatchd
15379u0_a24       24589 24600 HeapTaskDaemon
15380u0_a24       24589 24601 Binder:24589_1
15381u0_a24       24589 24602 Binder:24589_2
15382u0_a24       24589 24603 Binder:24589_3
15383u0_a24       24589 24604 Profile Saver
15384root         24730 24730 kworker/0:0
15385root         25105 25105 kworker/7:0
15386root         25165 25165 kworker/6:0
15387root         25210 25210 kworker/3:1
15388root         25239 25239 kworker/2:0
15389root         25244 25244 kworker/4:0
15390root         25249 25249 kworker/1:1
15391root         25252 25252 kworker/3:0
15392root         25259 25259 kworker/2:1
15393root         25261 25261 kworker/1:0
15394root         25262 25262 kworker/0:1
15395root         25264 25264 kworker/1:2
15396root         25265 25265 kworker/3:2
15397root         25266 25266 kworker/1:3
15398root         25267 25267 kworker/2:2
15399root         25268 25268 kworker/3:3
15400u0_a96       25304 25304 droid.apps.maps
15401u0_a96       25304 25309 Jit thread pool
15402u0_a96       25304 25310 Signal Catcher
15403u0_a96       25304 25311 ADB-JDWP Connec
15404u0_a96       25304 25312 ReferenceQueueD
15405u0_a96       25304 25313 FinalizerDaemon
15406u0_a96       25304 25314 FinalizerWatchd
15407u0_a96       25304 25315 HeapTaskDaemon
15408u0_a96       25304 25316 Binder:25304_1
15409u0_a96       25304 25317 Binder:25304_2
15410u0_a96       25304 25319 Binder:25304_3
15411u0_a96       25304 25320 Profile Saver
15412u0_a96       25304 25326 DefaultPool1
15413u0_a96       25304 25328 DefaultPool2
15414u0_a96       25304 25329 DefaultPool3
15415u0_a96       25304 25330 GoogleApiHandle
15416u0_a96       25304 25331 DefaultPool4
15417u0_a96       25304 25332 DefaultPool5
15418u0_a96       25304 25333 DefaultPool6
15419u0_a96       25304 25334 DefaultPool7
15420u0_a96       25304 25335 DefaultPool8
15421u0_a96       25304 25358 OfflineManage
15422u0_a96       25304 25359 OfflineProcess
15423u0_a96       25304 25391 CronetInit
15424u0_a96       25304 25394 ConnectivityThr
15425u0_a96       25304 25395 TaskSchedulerSe
15426u0_a96       25304 25396 TaskSchedulerBa
15427u0_a96       25304 25397 TaskSchedulerBa
15428u0_a96       25304 25398 TaskSchedulerFo
15429u0_a96       25304 25401 ChromiumNet
15430u0_a96       25304 25402 DnsConfigServic
15431u0_a96       25304 25403 TaskSchedulerFo
15432u0_a96       25304 25405 Network File Th
15433u0_a96       25304 25406 Sensors
15434u0_a96       25304 25422 Location
15435u0_a96       25304 25427 queued-work-loo
15436u0_a96       25304 25428 GAC_Executor[0]
15437u0_a96       25304 25430 GAC_Executor[1]
15438u0_a124      25341 25341 ogle.android.gm
15439u0_a124      25341 25346 Jit thread pool
15440u0_a124      25341 25347 Signal Catcher
15441u0_a124      25341 25348 ADB-JDWP Connec
15442u0_a124      25341 25349 ReferenceQueueD
15443u0_a124      25341 25350 FinalizerDaemon
15444u0_a124      25341 25351 FinalizerWatchd
15445u0_a124      25341 25352 HeapTaskDaemon
15446u0_a124      25341 25353 Binder:25341_1
15447u0_a124      25341 25354 Binder:25341_2
15448u0_a124      25341 25355 Binder:25341_3
15449u0_a124      25341 25356 Profile Saver
15450u0_a124      25341 25363 queued-work-loo
15451u0_a124      25341 25377 GoogleApiHandle
15452u0_a124      25341 25383 pool-4-thread-1
15453u0_a124      25341 25385 GAC_Executor[0]
15454u0_a124      25341 25389 GAThread
15455u0_a124      25341 25414 GAC_Executor[1]
15456u0_a124      25341 25436 EmailNotificati
15457u0_a124      25341 25460 BaseWidgetProvi
15458u0_a124      25341 25462 MailIntentServi
15459u0_a124      25341 25464 Binder:25341_4
15460u0_a12       25365 25365 e.process.gapps
15461u0_a12       25365 25370 Jit thread pool
15462u0_a12       25365 25371 Signal Catcher
15463u0_a12       25365 25372 ADB-JDWP Connec
15464u0_a12       25365 25373 ReferenceQueueD
15465u0_a12       25365 25374 FinalizerDaemon
15466u0_a12       25365 25375 FinalizerWatchd
15467u0_a12       25365 25376 HeapTaskDaemon
15468u0_a12       25365 25378 Binder:25365_1
15469u0_a12       25365 25379 Binder:25365_2
15470u0_a12       25365 25380 Binder:25365_3
15471u0_a12       25365 25381 Profile Saver
15472u0_a12       25365 25390 RefQueueWorker@
15473u0_a78       25409 25409 droid.apps.docs
15474u0_a78       25409 25415 Jit thread pool
15475u0_a78       25409 25416 Signal Catcher
15476u0_a78       25409 25417 ADB-JDWP Connec
15477u0_a78       25409 25418 ReferenceQueueD
15478u0_a78       25409 25419 FinalizerDaemon
15479u0_a78       25409 25420 FinalizerWatchd
15480u0_a78       25409 25421 HeapTaskDaemon
15481u0_a78       25409 25424 Binder:25409_1
15482u0_a78       25409 25425 Binder:25409_2
15483u0_a78       25409 25426 Binder:25409_3
15484u0_a78       25409 25429 Profile Saver
15485u0_a78       25409 25437 GoogleApiHandle
15486u0_a78       25409 25441 ConnectivityThr
15487u0_a78       25409 25443 TaskSchedulerLo
15488u0_a78       25409 25453 queued-work-loo
15489u0_a78       25409 25457 DocsEventDispat
15490u0_a78       25409 25477 BackgroundFileD
15491u0_a78       25409 25478 ImpressionsTrac
15492u0_a78       25409 25479 GAC_Executor[0]
15493u0_a78       25409 25480 GAC_Executor[1]
15494u0_a78       25409 25598 Binder:25409_4
15495root         25432 25432 kworker/4:1
15496root         25433 25433 kworker/4:2
15497root         25483 25483 kworker/u16:17
15498u0_a64       25496 25496 id.defcontainer
15499u0_a64       25496 25501 Jit thread pool
15500u0_a64       25496 25502 Signal Catcher
15501u0_a64       25496 25503 ADB-JDWP Connec
15502u0_a64       25496 25504 ReferenceQueueD
15503u0_a64       25496 25505 FinalizerDaemon
15504u0_a64       25496 25506 FinalizerWatchd
15505u0_a64       25496 25507 HeapTaskDaemon
15506u0_a64       25496 25508 Binder:25496_1
15507u0_a64       25496 25509 Binder:25496_2
15508u0_a64       25496 25510 Binder:25496_3
15509u0_a64       25496 25511 Profile Saver
15510u0_a64       25496 25525 queued-work-loo
15511system       25527 25527 ndroid.keychain
15512system       25527 25532 Jit thread pool
15513system       25527 25533 Signal Catcher
15514system       25527 25534 ADB-JDWP Connec
15515system       25527 25535 ReferenceQueueD
15516system       25527 25536 FinalizerDaemon
15517system       25527 25537 FinalizerWatchd
15518system       25527 25539 HeapTaskDaemon
15519system       25527 25544 Binder:25527_1
15520system       25527 25545 Binder:25527_2
15521system       25527 25553 Binder:25527_3
15522system       25527 25556 Profile Saver
15523system       25527 25558 queued-work-loo
15524u0_a69       25538 25538 t_app_installer
15525u0_a69       25538 25546 Jit thread pool
15526u0_a69       25538 25547 Signal Catcher
15527u0_a69       25538 25548 ADB-JDWP Connec
15528u0_a69       25538 25549 ReferenceQueueD
15529u0_a69       25538 25550 FinalizerDaemon
15530u0_a69       25538 25551 FinalizerWatchd
15531u0_a69       25538 25552 HeapTaskDaemon
15532u0_a69       25538 25554 Binder:25538_1
15533u0_a69       25538 25555 Binder:25538_2
15534u0_a69       25538 25559 Binder:25538_3
15535u0_a69       25538 25560 Profile Saver
15536u0_a69       25538 25565 queued-work-loo
15537u0_a69       25538 25567 RxSchedulerPurg
15538u0_a69       25538 25568 RxCachedWorkerP
15539u0_a69       25538 25588 GAC_Executor[0]
15540u0_a69       25538 25590 GAC_Executor[1]
15541u0_a69       25538 25592 ndroid.play.b.g
15542u0_a69       25538 25599 Binder:25538_4
15543root         25606 25606 kworker/0:2
15544root         27492 27492 kworker/0:3
15545root         27493 27493 kworker/0:4
15546root         27816 27816 sh
15547root         27818 27818 sh
15548root         27820 27820 ps
15549  </script>
15550  <script class="trace-data" type="application/text">
15551# tracer: nop
15552#
15553# entries-in-buffer/entries-written: 144084/144084   #P:8
15554#
15555#                                      _-----=> irqs-off
15556#                                     / _----=> need-resched
15557#                                    | / _---=> hardirq/softirq
15558#                                    || / _--=> preempt-depth
15559#                                    ||| /     delay
15560#           TASK-PID    TGID   CPU#  ||||    TIMESTAMP  FUNCTION
15561#              | |        |      |   ||||       |         |
15562          <idle>-0     (-----) [003] d.h3 82310.030337: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15563          <idle>-0     (-----) [003] dnh4 82310.030346: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15564          <idle>-0     (-----) [003] .n.1 82310.030351: cpu_idle: state=4294967295 cpu_id=3
15565           <...>-27538 (-----) [000] ...1 82310.030352: tracing_mark_write: trace_event_clock_sync: parent_ts=82310.031250
15566          <idle>-0     (-----) [003] d..2 82310.030357: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
15567           <...>-27538 (-----) [000] ...1 82310.030358: tracing_mark_write: trace_event_clock_sync: realtime_ts=1530181179975
15568   kworker/u17:1-570   (  570) [003] d..2 82310.030367: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15569   kworker/u17:1-570   (  570) [003] d..3 82310.030373: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15570   kworker/u17:1-570   (  570) [003] d..2 82310.030389: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
15571     kworker/3:1-25210 (25210) [003] d..2 82310.030406: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=000
15572     kworker/3:1-25210 (25210) [003] d..3 82310.030434: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
15573     kworker/3:1-25210 (25210) [003] d..2 82310.030444: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
15574            adbd-24054 (  960) [003] d..2 82310.030478: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
15575            adbd-24054 (  960) [003] d..3 82310.030490: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
15576            adbd-24054 (  960) [003] d..2 82310.030558: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
15577            adbd-960   (  960) [003] d..2 82310.030654: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15578          <idle>-0     (-----) [003] d..1 82310.030664: cpu_idle: state=0 cpu_id=3
15579          <idle>-0     (-----) [003] ...1 82310.031845: cpu_idle: state=4294967295 cpu_id=3
15580          <idle>-0     (-----) [003] d..1 82310.031848: cpu_idle: state=2 cpu_id=3
15581           <...>-27538 (-----) [000] d..2 82310.032282: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15582           <...>-27538 (-----) [000] dn.3 82310.032292: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15583           <...>-27538 (-----) [000] d..2 82310.032299: sched_switch: prev_comm=atrace prev_pid=27538 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
15584     kworker/0:1-25262 (25262) [000] d..2 82310.032312: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27538 next_prio=120
15585           <...>-27538 (-----) [000] d..2 82310.032315: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15586           <...>-27538 (-----) [000] dn.3 82310.032319: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15587           <...>-27538 (-----) [000] d..2 82310.032325: sched_switch: prev_comm=atrace prev_pid=27538 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
15588     kworker/0:1-25262 (25262) [000] d..2 82310.032331: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27538 next_prio=120
15589           <...>-27538 (-----) [000] d..2 82310.032351: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15590           <...>-27538 (-----) [000] dn.3 82310.032356: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15591           <...>-27538 (-----) [000] d..2 82310.032360: sched_switch: prev_comm=atrace prev_pid=27538 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
15592     kworker/0:1-25262 (25262) [000] d..2 82310.032415: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27538 next_prio=120
15593           <...>-27538 (-----) [000] d..2 82310.032465: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15594           <...>-27538 (-----) [000] dn.3 82310.032471: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15595           <...>-27538 (-----) [000] d..2 82310.032476: sched_switch: prev_comm=atrace prev_pid=27538 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
15596     kworker/0:1-25262 (25262) [000] d..2 82310.032513: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27538 next_prio=120
15597           <...>-27538 (-----) [000] d..3 82310.032666: sched_waking: comm=sh pid=27536 prio=120 target_cpu=003
15598           <...>-27538 (-----) [000] dn.4 82310.032695: sched_wakeup: comm=sh pid=27536 prio=120 target_cpu=000
15599           <...>-27538 (-----) [000] d..2 82310.032702: sched_switch: prev_comm=atrace prev_pid=27538 prev_prio=120 prev_state=R+ ==> next_comm=sh next_pid=27536 next_prio=120
15600           <...>-27536 (-----) [000] d..2 82310.033287: sched_waking: comm=shell svc 27536 pid=27537 prio=120 target_cpu=000
15601           <...>-27536 (-----) [000] d..3 82310.033304: sched_wakeup: comm=shell svc 27536 pid=27537 prio=120 target_cpu=000
15602           <...>-27536 (-----) [000] d..2 82310.034347: sched_switch: prev_comm=sh prev_pid=27536 prev_prio=120 prev_state=x ==> next_comm=shell svc 27536 next_pid=27537 next_prio=120
15603           <...>-27537 (-----) [000] d..2 82310.034388: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
15604           <...>-27537 (-----) [000] d..3 82310.034414: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
15605          <idle>-0     (-----) [001] .n.1 82310.034418: cpu_idle: state=4294967295 cpu_id=1
15606          <idle>-0     (-----) [001] d..2 82310.034427: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
15607            adbd-960   (  960) [001] d..1 82310.034470: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
15608            adbd-960   (  960) [001] d..2 82310.034482: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
15609            adbd-960   (  960) [001] d..2 82310.034515: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
15610           <...>-27537 (-----) [000] d..2 82310.034550: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
15611           <...>-27537 (-----) [000] d..3 82310.034563: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
15612            adbd-24055 (  960) [001] d..2 82310.034584: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
15613            adbd-960   (  960) [001] d..2 82310.034692: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27538 next_prio=120
15614           <...>-27538 (-----) [001] d..2 82310.034707: sched_switch: prev_comm=atrace prev_pid=27538 prev_prio=120 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
15615           <...>-27537 (-----) [000] d..2 82310.034717: sched_switch: prev_comm=shell svc 27536 prev_pid=27537 prev_prio=120 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
15616          <idle>-0     (-----) [001] d..1 82310.034720: cpu_idle: state=0 cpu_id=1
15617          <idle>-0     (-----) [000] d..1 82310.034736: cpu_idle: state=0 cpu_id=0
15618          <idle>-0     (-----) [003] d.h3 82310.034750: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15619          <idle>-0     (-----) [003] dnh4 82310.034764: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15620          <idle>-0     (-----) [003] .n.1 82310.034770: cpu_idle: state=4294967295 cpu_id=3
15621          <idle>-0     (-----) [003] d..2 82310.034780: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
15622   kworker/u17:1-570   (  570) [003] d..2 82310.034791: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15623   kworker/u17:1-570   (  570) [003] d..3 82310.034799: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15624   kworker/u17:1-570   (  570) [003] d..2 82310.034818: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
15625     kworker/3:1-25210 (25210) [003] d..2 82310.034826: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
15626     kworker/3:1-25210 (25210) [003] d..3 82310.034835: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
15627          <idle>-0     (-----) [001] .n.1 82310.034841: cpu_idle: state=4294967295 cpu_id=1
15628          <idle>-0     (-----) [001] d..2 82310.034847: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
15629     kworker/3:1-25210 (25210) [003] d..2 82310.034850: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15630          <idle>-0     (-----) [003] d..1 82310.034859: cpu_idle: state=2 cpu_id=3
15631            adbd-24055 (  960) [001] d..2 82310.034897: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15632          <idle>-0     (-----) [001] d..1 82310.034902: cpu_idle: state=0 cpu_id=1
15633          <idle>-0     (-----) [000] d.h7 82310.034937: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15634          <idle>-0     (-----) [000] dnh8 82310.034944: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15635          <idle>-0     (-----) [000] dnh9 82310.034963: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15636          <idle>-0     (-----) [000] dnha 82310.034980: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15637          <idle>-0     (-----) [000] dnh7 82310.034985: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
15638          <idle>-0     (-----) [000] dnh8 82310.035005: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
15639          <idle>-0     (-----) [000] .n.1 82310.035020: cpu_idle: state=4294967295 cpu_id=0
15640          <idle>-0     (-----) [000] d..2 82310.035028: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
15641     kworker/0:1-25262 (25262) [000] d..2 82310.035044: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
15642 SDM_EventThread-644   (  619) [000] ...1 82310.035095: tracing_mark_write: B|619|HWCCallbacks::Vsync::
15643          <idle>-0     (-----) [003] d.h3 82310.035101: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15644          <idle>-0     (-----) [003] dnh4 82310.035110: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15645          <idle>-0     (-----) [003] .n.1 82310.035115: cpu_idle: state=4294967295 cpu_id=3
15646          <idle>-0     (-----) [001] d.s2 82310.035125: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15647          <idle>-0     (-----) [003] d..2 82310.035125: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
15648 SDM_EventThread-644   (  619) [000] d.s2 82310.035126: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
15649   kworker/u17:1-570   (  570) [003] d..2 82310.035135: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15650          <idle>-0     (-----) [001] dns3 82310.035136: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15651          <idle>-0     (-----) [001] dns2 82310.035137: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
15652          <idle>-0     (-----) [002] .n.1 82310.035139: cpu_idle: state=4294967295 cpu_id=2
15653   kworker/u17:1-570   (  570) [003] d..3 82310.035140: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15654          <idle>-0     (-----) [001] dns3 82310.035149: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
15655          <idle>-0     (-----) [002] d..2 82310.035151: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
15656 SDM_EventThread-644   (  619) [000] d.s3 82310.035152: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
15657          <idle>-0     (-----) [001] .n.1 82310.035158: cpu_idle: state=4294967295 cpu_id=1
15658          <idle>-0     (-----) [001] d..2 82310.035164: 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
15659   kworker/u17:1-570   (  570) [003] d.h3 82310.035165: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15660 SDM_EventThread-644   (  619) [000] ...1 82310.035165: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
15661   kworker/u17:1-570   (  570) [003] d.h4 82310.035166: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15662 SDM_EventThread-644   (  619) [000] ...1 82310.035169: tracing_mark_write: E|619
15663<...>-8 ( 8) [001] d..2 82310.035174: 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
15664     rcu_preempt-7     (    7) [001] d..2 82310.035188: 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
15665   kworker/u17:1-570   (  570) [003] d..2 82310.035191: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
15666          <idle>-0     (-----) [001] d..1 82310.035195: cpu_idle: state=0 cpu_id=1
15667     kworker/3:1-25210 (25210) [003] d..2 82310.035197: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
15668 crtc_commit:111-321   (  321) [002] d..1 82310.035197: clk_disable: disp_cc_mdss_vsync_clk
15669     kworker/3:1-25210 (25210) [003] d..3 82310.035206: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
15670          <idle>-0     (-----) [001] .n.1 82310.035211: cpu_idle: state=4294967295 cpu_id=1
15671 crtc_commit:111-321   (  321) [002] d..1 82310.035215: clk_disable: disp_cc_mdss_mdp_clk
15672     kworker/3:1-25210 (25210) [003] d..2 82310.035215: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
15673          <idle>-0     (-----) [001] d..2 82310.035218: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
15674 SDM_EventThread-644   (  619) [000] .... 82310.035220: binder_transaction: transaction=1568184 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
15675 crtc_commit:111-321   (  321) [002] d..1 82310.035224: clk_disable: disp_cc_mdss_mdp_clk_src
15676 SDM_EventThread-644   (  619) [000] .... 82310.035227: binder_transaction_alloc_buf: transaction=1568184 data_size=76 offsets_size=0
15677 SDM_EventThread-644   (  619) [000] d..4 82310.035238: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
15678     kworker/3:1-25210 (25210) [003] d..3 82310.035238: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=000
15679     kworker/3:1-25210 (25210) [003] d..2 82310.035247: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
15680 crtc_commit:111-321   (  321) [002] d..1 82310.035250: clk_disable: gcc_disp_gpll0_clk_src
15681 SDM_EventThread-644   (  619) [000] d..5 82310.035251: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
15682            adbd-24055 (  960) [001] d..2 82310.035271: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
15683<...>-8890 ( 8858) [001] .... 82310.035282: binder_transaction_received: transaction=1568184
15684<...>-1054 ( 1054) [003] d.h3 82310.035285: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15685 SDM_EventThread-644   (  619) [000] ...1 82310.035290: tracing_mark_write: E|619
15686<...>-1054 ( 1054) [003] d.h4 82310.035306: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
15687<...>-1054 ( 1054) [003] .... 82310.035310: clk_set_rate: l3_cluster1_vote_clk 300000000
15688<...>-8890 ( 8858) [001] d..2 82310.035316: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
15689 SDM_EventThread-644   (  619) [000] d..2 82310.035325: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
15690   kworker/u17:1-570   (  570) [001] d..2 82310.035325: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
15691   kworker/u17:1-570   (  570) [001] d..3 82310.035333: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
15692   kworker/u17:1-570   (  570) [001] d..2 82310.035349: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
15693            adbd-24054 (  960) [000] d..2 82310.035353: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
15694            adbd-24054 (  960) [000] d..3 82310.035365: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
15695     kworker/1:1-25249 (25249) [001] d..2 82310.035366: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
15696     kworker/1:1-25249 (25249) [001] d..3 82310.035386: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
15697     kworker/1:1-25249 (25249) [001] d..2 82310.035400: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
15698            adbd-24054 (  960) [000] d..2 82310.035418: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
15699<...>-8890 ( 8858) [001] ...1 82310.035421: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
15700<...>-8890 ( 8858) [001] ...1 82310.035441: tracing_mark_write: E|8858
15701<...>-8890 ( 8858) [001] d..2 82310.035481: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15702            adbd-960   (  960) [000] d..2 82310.035490: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15703          <idle>-0     (-----) [001] d..1 82310.035490: cpu_idle: state=0 cpu_id=1
15704          <idle>-0     (-----) [000] d..1 82310.035500: cpu_idle: state=0 cpu_id=0
15705 crtc_commit:111-321   (  321) [002] d..1 82310.035782: clk_disable: disp_cc_mdss_axi_clk
15706 crtc_commit:111-321   (  321) [002] d..1 82310.035793: clk_disable: disp_cc_mdss_ahb_clk
15707 crtc_commit:111-321   (  321) [002] d..1 82310.035806: clk_disable: gcc_disp_axi_clk
15708 crtc_commit:111-321   (  321) [002] d..2 82310.035881: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
15709          <idle>-0     (-----) [002] d..1 82310.035887: cpu_idle: state=0 cpu_id=2
15710<...>-1054 ( 1054) [003] d..2 82310.035963: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=24055 next_prio=120
15711          <idle>-0     (-----) [002] d.h2 82310.035970: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15712          <idle>-0     (-----) [002] dnh3 82310.035979: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15713          <idle>-0     (-----) [002] .n.1 82310.035984: cpu_idle: state=4294967295 cpu_id=2
15714          <idle>-0     (-----) [002] d..2 82310.035990: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
15715          <idle>-0     (-----) [001] d.s3 82310.036001: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
15716 crtc_commit:111-321   (  321) [002] d..1 82310.036005: clk_disable: disp_cc_mdss_rscc_ahb_clk
15717          <idle>-0     (-----) [001] d.s4 82310.036014: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
15718 crtc_commit:111-321   (  321) [002] d..1 82310.036015: clk_disable: disp_cc_mdss_rscc_vsync_clk
15719            adbd-24055 (  960) [003] d..2 82310.036017: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15720          <idle>-0     (-----) [001] dns4 82310.036019: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
15721          <idle>-0     (-----) [001] .n.1 82310.036023: cpu_idle: state=4294967295 cpu_id=1
15722 crtc_commit:111-321   (  321) [002] d..1 82310.036024: clk_disable: disp_cc_mdss_vsync_clk_src
15723          <idle>-0     (-----) [003] d..1 82310.036027: cpu_idle: state=0 cpu_id=3
15724          <idle>-0     (-----) [001] d..2 82310.036030: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
15725 crtc_commit:111-321   (  321) [002] d..3 82310.036038: sched_pi_setprio: comm=kworker/u16:9 pid=1054 oldprio=120 newprio=83
15726          <idle>-0     (-----) [003] d.h3 82310.036044: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
15727<...>-1054 ( 1054) [001] d..1 82310.036049: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15728 crtc_commit:111-321   (  321) [002] d..2 82310.036058: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
15729          <idle>-0     (-----) [002] d..1 82310.036065: cpu_idle: state=0 cpu_id=2
15730          <idle>-0     (-----) [003] dnh4 82310.036066: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15731          <idle>-0     (-----) [002] .n.1 82310.036068: cpu_idle: state=4294967295 cpu_id=2
15732<...>-1054 ( 1054) [001] d..2 82310.036070: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15733<...>-1054 ( 1054) [001] d..2 82310.036072: sched_pi_setprio: comm=kworker/u16:9 pid=1054 oldprio=83 newprio=120
15734          <idle>-0     (-----) [003] .n.1 82310.036072: cpu_idle: state=4294967295 cpu_id=3
15735          <idle>-0     (-----) [002] d..2 82310.036077: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
15736          <idle>-0     (-----) [003] d..2 82310.036079: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
15737   kworker/u17:1-570   (  570) [003] d..2 82310.036086: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15738   kworker/u17:1-570   (  570) [003] d..3 82310.036091: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15739<...>-1054 ( 1054) [001] d..2 82310.036093: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15740          <idle>-0     (-----) [001] d..1 82310.036099: cpu_idle: state=0 cpu_id=1
15741   kworker/u17:1-570   (  570) [003] d..2 82310.036109: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
15742     kworker/3:1-25210 (25210) [003] d..2 82310.036113: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
15743     kworker/3:1-25210 (25210) [003] d..3 82310.036121: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
15744     kworker/3:1-25210 (25210) [003] d..2 82310.036128: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
15745            adbd-24055 (  960) [003] d..2 82310.036180: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15746 crtc_commit:111-321   (  321) [002] d..2 82310.036181: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
15747          <idle>-0     (-----) [002] d..1 82310.036188: cpu_idle: state=0 cpu_id=2
15748          <idle>-0     (-----) [003] d..1 82310.036188: cpu_idle: state=0 cpu_id=3
15749          <idle>-0     (-----) [001] d.s3 82310.036205: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15750          <idle>-0     (-----) [003] d.h3 82310.036206: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15751          <idle>-0     (-----) [003] dnh4 82310.036213: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15752          <idle>-0     (-----) [001] d.s4 82310.036215: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15753          <idle>-0     (-----) [003] .n.1 82310.036218: cpu_idle: state=4294967295 cpu_id=3
15754          <idle>-0     (-----) [002] .n.1 82310.036220: cpu_idle: state=4294967295 cpu_id=2
15755          <idle>-0     (-----) [001] ...1 82310.036220: cpu_idle: state=4294967295 cpu_id=1
15756          <idle>-0     (-----) [001] d..1 82310.036222: cpu_idle: state=0 cpu_id=1
15757          <idle>-0     (-----) [003] d..2 82310.036225: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
15758          <idle>-0     (-----) [002] d..2 82310.036226: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
15759   kworker/u17:1-570   (  570) [003] d..2 82310.036234: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15760   kworker/u17:1-570   (  570) [003] d..3 82310.036240: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15761   kworker/u17:1-570   (  570) [003] d..2 82310.036256: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
15762     kworker/3:1-25210 (25210) [003] d..2 82310.036261: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
15763     kworker/3:1-25210 (25210) [003] d..3 82310.036269: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
15764     kworker/3:1-25210 (25210) [003] d.h3 82310.036283: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15765     kworker/3:1-25210 (25210) [003] dnh4 82310.036291: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15766     kworker/3:1-25210 (25210) [003] d..2 82310.036304: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
15767   kworker/u17:1-570   (  570) [003] d..2 82310.036327: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
15768     kworker/3:1-25210 (25210) [003] d..2 82310.036336: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=000
15769     kworker/3:1-25210 (25210) [003] d..3 82310.036345: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=000
15770 crtc_commit:111-321   (  321) [002] d..2 82310.036348: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
15771          <idle>-0     (-----) [000] .n.1 82310.036351: cpu_idle: state=4294967295 cpu_id=0
15772     kworker/3:1-25210 (25210) [003] d..2 82310.036354: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
15773          <idle>-0     (-----) [002] d..1 82310.036355: cpu_idle: state=0 cpu_id=2
15774          <idle>-0     (-----) [000] d..2 82310.036358: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24054 next_prio=120
15775            adbd-24054 (  960) [000] d..2 82310.036370: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
15776            adbd-24054 (  960) [000] d..3 82310.036377: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
15777          <idle>-0     (-----) [001] d.s3 82310.036382: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15778          <idle>-0     (-----) [001] d.s4 82310.036391: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15779          <idle>-0     (-----) [001] ...1 82310.036396: cpu_idle: state=4294967295 cpu_id=1
15780          <idle>-0     (-----) [002] .n.1 82310.036397: cpu_idle: state=4294967295 cpu_id=2
15781          <idle>-0     (-----) [001] d..1 82310.036398: cpu_idle: state=0 cpu_id=1
15782          <idle>-0     (-----) [002] d..2 82310.036403: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
15783            adbd-24055 (  960) [003] d..2 82310.036405: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15784 crtc_commit:111-321   (  321) [002] d..3 82310.036420: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
15785          <idle>-0     (-----) [003] d.h3 82310.036421: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15786          <idle>-0     (-----) [003] dnh4 82310.036427: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15787            adbd-24054 (  960) [000] d..2 82310.036429: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
15788          <idle>-0     (-----) [003] d..2 82310.036436: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
15789   kworker/u17:1-570   (  570) [003] d..2 82310.036442: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15790 crtc_commit:111-321   (  321) [002] d..4 82310.036445: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
15791   kworker/u17:1-570   (  570) [003] d..3 82310.036452: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15792   kworker/u17:1-570   (  570) [003] d.h3 82310.036475: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15793   kworker/u17:1-570   (  570) [003] d.h4 82310.036477: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15794            adbd-960   (  960) [000] d..2 82310.036492: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15795          <idle>-0     (-----) [000] d..1 82310.036499: cpu_idle: state=0 cpu_id=0
15796   kworker/u17:1-570   (  570) [003] d..2 82310.036505: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
15797 SDM_EventThread-644   (  619) [003] d..2 82310.036544: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
15798     kworker/3:1-25210 (25210) [003] d..2 82310.036550: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
15799 crtc_commit:111-321   (  321) [002] d..2 82310.036556: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
15800          <idle>-0     (-----) [002] d..1 82310.036564: cpu_idle: state=0 cpu_id=2
15801          <idle>-0     (-----) [002] .n.1 82310.036566: cpu_idle: state=4294967295 cpu_id=2
15802     kworker/3:1-25210 (25210) [003] d..3 82310.036568: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
15803          <idle>-0     (-----) [002] d..2 82310.036577: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
15804     kworker/3:1-25210 (25210) [003] d..2 82310.036577: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=000
15805     kworker/3:1-25210 (25210) [003] d..3 82310.036586: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=000
15806          <idle>-0     (-----) [000] .n.1 82310.036591: cpu_idle: state=4294967295 cpu_id=0
15807          <idle>-0     (-----) [000] d..2 82310.036598: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24054 next_prio=120
15808     kworker/3:1-25210 (25210) [003] d..2 82310.036599: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15809          <idle>-0     (-----) [003] d..1 82310.036608: cpu_idle: state=0 cpu_id=3
15810            adbd-24054 (  960) [000] d..2 82310.036608: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
15811            adbd-24054 (  960) [000] d..3 82310.036616: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
15812            adbd-24055 (  960) [002] d..2 82310.036640: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15813          <idle>-0     (-----) [002] d..1 82310.036648: cpu_idle: state=0 cpu_id=2
15814          <idle>-0     (-----) [003] d.h3 82310.036660: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15815          <idle>-0     (-----) [003] dnh4 82310.036666: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
15816            adbd-24054 (  960) [000] d..2 82310.036669: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
15817          <idle>-0     (-----) [003] .n.1 82310.036671: cpu_idle: state=4294967295 cpu_id=3
15818          <idle>-0     (-----) [003] d..2 82310.036678: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
15819   kworker/u17:1-570   (  570) [003] d..2 82310.036685: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15820   kworker/u17:1-570   (  570) [003] d..3 82310.036691: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
15821   kworker/u17:1-570   (  570) [003] d..2 82310.036707: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
15822     kworker/3:1-25210 (25210) [003] d..2 82310.036713: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
15823     kworker/3:1-25210 (25210) [003] d..3 82310.036721: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
15824            adbd-960   (  960) [000] d..2 82310.036727: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15825          <idle>-0     (-----) [002] .n.1 82310.036727: cpu_idle: state=4294967295 cpu_id=2
15826          <idle>-0     (-----) [002] d..2 82310.036734: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
15827          <idle>-0     (-----) [000] d..1 82310.036736: cpu_idle: state=0 cpu_id=0
15828     kworker/3:1-25210 (25210) [003] d..2 82310.036736: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15829          <idle>-0     (-----) [001] d.s3 82310.036736: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
15830          <idle>-0     (-----) [003] d..1 82310.036744: cpu_idle: state=0 cpu_id=3
15831          <idle>-0     (-----) [001] d.s4 82310.036751: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
15832            adbd-24055 (  960) [002] d..2 82310.036755: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15833          <idle>-0     (-----) [003] .n.1 82310.036756: cpu_idle: state=4294967295 cpu_id=3
15834          <idle>-0     (-----) [001] ...1 82310.036757: cpu_idle: state=4294967295 cpu_id=1
15835          <idle>-0     (-----) [001] d..1 82310.036759: cpu_idle: state=0 cpu_id=1
15836          <idle>-0     (-----) [003] d..2 82310.036762: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
15837          <idle>-0     (-----) [002] d..1 82310.036762: cpu_idle: state=0 cpu_id=2
15838 crtc_commit:111-321   (  321) [003] d..2 82310.036862: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
15839          <idle>-0     (-----) [003] d..1 82310.036869: cpu_idle: state=0 cpu_id=3
15840          <idle>-0     (-----) [001] d.s3 82310.036885: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
15841          <idle>-0     (-----) [001] d.s4 82310.036895: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
15842          <idle>-0     (-----) [001] ...1 82310.036901: cpu_idle: state=4294967295 cpu_id=1
15843          <idle>-0     (-----) [003] .n.1 82310.036901: cpu_idle: state=4294967295 cpu_id=3
15844          <idle>-0     (-----) [001] d..1 82310.036903: cpu_idle: state=0 cpu_id=1
15845          <idle>-0     (-----) [003] d..2 82310.036906: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
15846 crtc_commit:111-321   (  321) [003] d..1 82310.036924: clk_enable: disp_cc_mdss_vsync_clk_src
15847 crtc_commit:111-321   (  321) [003] d..1 82310.036927: clk_enable: disp_cc_mdss_rscc_vsync_clk
15848 crtc_commit:111-321   (  321) [003] d..1 82310.036939: clk_enable: disp_cc_mdss_rscc_ahb_clk
15849 crtc_commit:111-321   (  321) [003] d..2 82310.036984: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
15850          <idle>-0     (-----) [003] d..1 82310.036989: cpu_idle: state=0 cpu_id=3
15851          <idle>-0     (-----) [003] d.h2 82310.037083: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
15852          <idle>-0     (-----) [003] dnh3 82310.037091: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
15853          <idle>-0     (-----) [003] .n.1 82310.037096: cpu_idle: state=4294967295 cpu_id=3
15854          <idle>-0     (-----) [003] d..2 82310.037101: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
15855 crtc_commit:111-321   (  321) [003] d..1 82310.037128: clk_enable: gcc_disp_axi_clk
15856 crtc_commit:111-321   (  321) [003] d..1 82310.037137: clk_enable: disp_cc_mdss_ahb_clk
15857 crtc_commit:111-321   (  321) [003] d..1 82310.037145: clk_enable: disp_cc_mdss_axi_clk
15858 crtc_commit:111-321   (  321) [003] d..1 82310.037158: clk_enable: gcc_disp_gpll0_clk_src
15859          <idle>-0     (-----) [000] d.h2 82310.037253: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
15860          <idle>-0     (-----) [000] dnh3 82310.037266: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
15861          <idle>-0     (-----) [000] .n.1 82310.037271: cpu_idle: state=4294967295 cpu_id=0
15862          <idle>-0     (-----) [000] d..2 82310.037278: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
15863        DispSync-8879  ( 8858) [000] d..1 82310.037316: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
15864        DispSync-8879  ( 8858) [000] d..2 82310.037330: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
15865          <idle>-0     (-----) [001] .n.1 82310.037334: cpu_idle: state=4294967295 cpu_id=1
15866          <idle>-0     (-----) [001] d..2 82310.037340: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
15867        DispSync-8879  ( 8858) [000] d..2 82310.037354: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15868          <idle>-0     (-----) [000] d..1 82310.037362: cpu_idle: state=0 cpu_id=0
15869  appEventThread-8881  ( 8858) [001] d..1 82310.037391: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
15870  appEventThread-8881  ( 8858) [001] d..2 82310.037402: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
15871          <idle>-0     (-----) [000] .n.1 82310.037407: cpu_idle: state=4294967295 cpu_id=0
15872          <idle>-0     (-----) [000] d..2 82310.037412: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
15873  appEventThread-8881  ( 8858) [001] d..2 82310.037424: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15874        DispSync-8879  ( 8858) [000] d..2 82310.037425: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15875          <idle>-0     (-----) [001] d..1 82310.037430: cpu_idle: state=0 cpu_id=1
15876          <idle>-0     (-----) [000] d..1 82310.037431: cpu_idle: state=0 cpu_id=0
15877 crtc_commit:111-321   (  321) [003] d..1 82310.037665: clk_enable: disp_cc_mdss_mdp_clk_src
15878 crtc_commit:111-321   (  321) [003] d..1 82310.037694: clk_enable: disp_cc_mdss_mdp_clk
15879 crtc_commit:111-321   (  321) [003] d..1 82310.037703: clk_enable: disp_cc_mdss_vsync_clk
15880          <idle>-0     (-----) [002] ...1 82310.037873: cpu_idle: state=4294967295 cpu_id=2
15881          <idle>-0     (-----) [002] d..1 82310.037876: cpu_idle: state=2 cpu_id=2
15882 crtc_commit:111-321   (  321) [003] d..2 82310.037892: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
15883          <idle>-0     (-----) [003] d..1 82310.037899: cpu_idle: state=0 cpu_id=3
15884          <idle>-0     (-----) [000] d..2 82310.038763: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15885          <idle>-0     (-----) [000] dn.3 82310.038777: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
15886          <idle>-0     (-----) [000] .n.1 82310.038781: cpu_idle: state=4294967295 cpu_id=0
15887          <idle>-0     (-----) [000] d..2 82310.038789: 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
15888     ksoftirqd/0-3     (    3) [000] d..2 82310.038817: 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
15889          <idle>-0     (-----) [000] d..1 82310.038823: cpu_idle: state=2 cpu_id=0
15890          <idle>-0     (-----) [003] ...1 82310.039011: cpu_idle: state=4294967295 cpu_id=3
15891          <idle>-0     (-----) [003] d..1 82310.039013: cpu_idle: state=2 cpu_id=3
15892          <idle>-0     (-----) [001] d.s2 82310.041790: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15893          <idle>-0     (-----) [001] dns3 82310.041799: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15894          <idle>-0     (-----) [001] dns2 82310.041800: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
15895          <idle>-0     (-----) [001] dns3 82310.041807: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
15896          <idle>-0     (-----) [001] .n.1 82310.041816: cpu_idle: state=4294967295 cpu_id=1
15897          <idle>-0     (-----) [001] d..2 82310.041823: 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
15898<...>-8 ( 8) [001] d..2 82310.041829: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
15899<...>-8 ( 8) [001] d..3 82310.041841: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=001
15900<...>-8 ( 8) [001] d..2 82310.041847: 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
15901         rcuos/0-11    (   11) [001] d..2 82310.041858: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15902     rcu_preempt-7     (    7) [001] d..2 82310.041863: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
15903     rcu_preempt-7     (    7) [001] d..3 82310.041880: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
15904     rcu_preempt-7     (    7) [001] d..2 82310.041883: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
15905     rcu_preempt-7     (    7) [001] d..3 82310.041897: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
15906     rcu_preempt-7     (    7) [001] d..2 82310.041905: 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
15907         rcuop/4-45    (   45) [001] d..2 82310.041913: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
15908         rcuop/4-45    (   45) [001] d..3 82310.041930: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
15909         rcuop/4-45    (   45) [001] d..2 82310.041938: 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
15910         rcuop/5-53    (   53) [001] d..2 82310.041982: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
15911         rcuop/2-29    (   29) [001] d..2 82310.041990: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
15912         rcuop/2-29    (   29) [001] d..3 82310.042005: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
15913         rcuop/2-29    (   29) [001] d..2 82310.042041: 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
15914         rcuop/3-37    (   37) [001] d..2 82310.042089: 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
15915          <idle>-0     (-----) [001] d..1 82310.042097: cpu_idle: state=0 cpu_id=1
15916          <idle>-0     (-----) [001] d.s2 82310.048453: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15917          <idle>-0     (-----) [001] dns3 82310.048461: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15918          <idle>-0     (-----) [001] dns3 82310.048464: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
15919          <idle>-0     (-----) [001] dns4 82310.048470: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
15920          <idle>-0     (-----) [001] .n.1 82310.048476: cpu_idle: state=4294967295 cpu_id=1
15921          <idle>-0     (-----) [001] d..2 82310.048482: 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
15922     rcu_preempt-7     (    7) [001] d..2 82310.048488: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15923     rcu_preempt-7     (    7) [001] d..3 82310.048499: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
15924     rcu_preempt-7     (    7) [001] d..2 82310.048505: 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
15925         rcuop/0-10    (   10) [001] d..4 82310.048679: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
15926         rcuop/0-10    (   10) [001] d..5 82310.048686: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
15927         rcuop/0-10    (   10) [001] d..2 82310.048878: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15928         rcuop/0-10    (   10) [001] d..3 82310.048886: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
15929         rcuop/0-10    (   10) [001] d..2 82310.048892: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
15930     kworker/1:1-25249 (25249) [001] d..2 82310.048903: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
15931     rcu_preempt-7     (    7) [001] d..2 82310.048911: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
15932<...>-1054 ( 1054) [001] .... 82310.048933: clk_set_rate: l3_cluster0_vote_clk 300000000
15933<...>-1054 ( 1054) [001] .... 82310.048937: clk_set_rate: l3_clk 300000000
15934<...>-1054 ( 1054) [001] d..2 82310.049115: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
15935          <idle>-0     (-----) [001] d.s4 82310.049155: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
15936          <idle>-0     (-----) [001] d.s5 82310.049164: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
15937          <idle>-0     (-----) [001] dns5 82310.049168: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
15938          <idle>-0     (-----) [001] d..2 82310.049179: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
15939<...>-1054 ( 1054) [001] d..2 82310.049218: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
15940          <idle>-0     (-----) [001] d..1 82310.049231: cpu_idle: state=0 cpu_id=1
15941          <idle>-0     (-----) [000] d.h7 82310.051619: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15942          <idle>-0     (-----) [000] dnh8 82310.051641: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
15943          <idle>-0     (-----) [000] dnh9 82310.051654: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
15944          <idle>-0     (-----) [000] dnha 82310.051672: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
15945          <idle>-0     (-----) [000] dnh7 82310.051676: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
15946          <idle>-0     (-----) [000] dnh8 82310.051702: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
15947          <idle>-0     (-----) [000] .n.1 82310.051719: cpu_idle: state=4294967295 cpu_id=0
15948          <idle>-0     (-----) [000] d..2 82310.051739: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
15949     kworker/0:1-25262 (25262) [000] d..2 82310.051757: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
15950          <idle>-0     (-----) [003] .n.1 82310.051867: cpu_idle: state=4294967295 cpu_id=3
15951 SDM_EventThread-644   (  619) [000] d.H2 82310.051882: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
15952          <idle>-0     (-----) [003] d..2 82310.051891: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
15953 SDM_EventThread-644   (  619) [000] d.H3 82310.051916: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
15954          <idle>-0     (-----) [001] .n.1 82310.051923: cpu_idle: state=4294967295 cpu_id=1
15955 crtc_commit:111-321   (  321) [003] d..1 82310.051928: clk_disable: disp_cc_mdss_vsync_clk
15956          <idle>-0     (-----) [001] d..2 82310.051935: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
15957 crtc_commit:111-321   (  321) [003] d..1 82310.051944: clk_disable: disp_cc_mdss_mdp_clk
15958 crtc_commit:111-321   (  321) [003] d..1 82310.051953: clk_disable: disp_cc_mdss_mdp_clk_src
15959 SDM_EventThread-644   (  619) [000] ...1 82310.051955: tracing_mark_write: B|619|HWCCallbacks::Vsync::
15960 SDM_EventThread-644   (  619) [000] ...1 82310.051965: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
15961 SDM_EventThread-644   (  619) [000] ...1 82310.051968: tracing_mark_write: E|619
15962         sugov:0-576   (  576) [001] .... 82310.051977: clk_set_rate: pwrcl_clk 979200000
15963 crtc_commit:111-321   (  321) [003] d..1 82310.051981: clk_disable: gcc_disp_gpll0_clk_src
15964 SDM_EventThread-644   (  619) [000] .... 82310.052002: binder_transaction: transaction=1568185 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
15965 SDM_EventThread-644   (  619) [000] .... 82310.052008: binder_transaction_alloc_buf: transaction=1568185 data_size=76 offsets_size=0
15966 SDM_EventThread-644   (  619) [000] d..4 82310.052016: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
15967 SDM_EventThread-644   (  619) [000] d..5 82310.052045: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
15968         sugov:0-576   (  576) [001] d.s1 82310.052063: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
15969 SDM_EventThread-644   (  619) [000] ...1 82310.052077: tracing_mark_write: E|619
15970         sugov:0-576   (  576) [001] d.s2 82310.052081: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
15971         sugov:0-576   (  576) [001] .... 82310.052087: clk_set_rate: cpu3_pwrcl_clk 1766400000
15972         sugov:0-576   (  576) [001] .... 82310.052099: clk_set_rate: cpu2_pwrcl_clk 1766400000
15973         sugov:0-576   (  576) [001] .... 82310.052106: clk_set_rate: cpu1_pwrcl_clk 1766400000
15974         sugov:0-576   (  576) [001] .... 82310.052113: clk_set_rate: cpu0_pwrcl_clk 979200000
15975 SDM_EventThread-644   (  619) [000] d..2 82310.052138: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
15976          <idle>-0     (-----) [000] d..1 82310.052166: cpu_idle: state=0 cpu_id=0
15977          <idle>-0     (-----) [002] .n.1 82310.052268: cpu_idle: state=4294967295 cpu_id=2
15978         sugov:0-576   (  576) [001] .... 82310.052282: cpu_frequency: state=979200 cpu_id=0
15979          <idle>-0     (-----) [002] d..2 82310.052297: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
15980<...>-8890 ( 8858) [002] .... 82310.052313: binder_transaction_received: transaction=1568185
15981<...>-8890 ( 8858) [002] ...1 82310.052366: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
15982<...>-8890 ( 8858) [002] ...1 82310.052384: tracing_mark_write: E|8858
15983<...>-8890 ( 8858) [002] d..2 82310.052451: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
15984         sugov:0-576   (  576) [001] d..2 82310.052463: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
15985          <idle>-0     (-----) [002] d..1 82310.052475: cpu_idle: state=0 cpu_id=2
15986 crtc_commit:111-321   (  321) [003] d..1 82310.052501: clk_disable: disp_cc_mdss_axi_clk
15987     ksoftirqd/1-18    (   18) [001] d.s4 82310.052502: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
15988 crtc_commit:111-321   (  321) [003] d..1 82310.052513: clk_disable: disp_cc_mdss_ahb_clk
15989 crtc_commit:111-321   (  321) [003] d..1 82310.052524: clk_disable: gcc_disp_axi_clk
15990     ksoftirqd/1-18    (   18) [001] d.s5 82310.052529: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
15991          <idle>-0     (-----) [002] .n.1 82310.052535: cpu_idle: state=4294967295 cpu_id=2
15992          <idle>-0     (-----) [002] d..2 82310.052547: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
15993     ksoftirqd/1-18    (   18) [001] d..2 82310.052563: 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
15994         sugov:0-576   (  576) [002] .... 82310.052567: cpu_frequency: state=979200 cpu_id=1
15995          <idle>-0     (-----) [001] d..1 82310.052576: cpu_idle: state=0 cpu_id=1
15996         sugov:0-576   (  576) [002] .... 82310.052577: cpu_frequency: state=979200 cpu_id=2
15997         sugov:0-576   (  576) [002] .... 82310.052581: cpu_frequency: state=979200 cpu_id=3
15998 crtc_commit:111-321   (  321) [003] d..2 82310.052611: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
15999         sugov:0-576   (  576) [002] d..2 82310.052612: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16000          <idle>-0     (-----) [002] d..1 82310.052624: cpu_idle: state=0 cpu_id=2
16001          <idle>-0     (-----) [003] d..1 82310.052627: cpu_idle: state=0 cpu_id=3
16002          <idle>-0     (-----) [003] d.h2 82310.052690: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16003          <idle>-0     (-----) [003] dnh3 82310.052707: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16004          <idle>-0     (-----) [003] .n.1 82310.052718: cpu_idle: state=4294967295 cpu_id=3
16005          <idle>-0     (-----) [003] d..2 82310.052728: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16006 crtc_commit:111-321   (  321) [003] d..1 82310.052743: clk_disable: disp_cc_mdss_rscc_ahb_clk
16007 crtc_commit:111-321   (  321) [003] d..1 82310.052758: clk_disable: disp_cc_mdss_rscc_vsync_clk
16008 crtc_commit:111-321   (  321) [003] d..1 82310.052769: clk_disable: disp_cc_mdss_vsync_clk_src
16009 crtc_commit:111-321   (  321) [003] d..2 82310.052947: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16010          <idle>-0     (-----) [003] d..1 82310.052964: cpu_idle: state=0 cpu_id=3
16011          <idle>-0     (-----) [001] d.s3 82310.052969: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16012          <idle>-0     (-----) [001] d.s4 82310.052987: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16013          <idle>-0     (-----) [003] .n.1 82310.052994: cpu_idle: state=4294967295 cpu_id=3
16014          <idle>-0     (-----) [001] ...1 82310.052996: cpu_idle: state=4294967295 cpu_id=1
16015          <idle>-0     (-----) [001] d..1 82310.053001: cpu_idle: state=0 cpu_id=1
16016          <idle>-0     (-----) [003] d..2 82310.053004: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16017 crtc_commit:111-321   (  321) [003] d..2 82310.053187: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16018          <idle>-0     (-----) [003] d..1 82310.053202: cpu_idle: state=0 cpu_id=3
16019          <idle>-0     (-----) [001] d.s3 82310.053220: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16020          <idle>-0     (-----) [001] d.s4 82310.053235: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16021          <idle>-0     (-----) [003] .n.1 82310.053243: cpu_idle: state=4294967295 cpu_id=3
16022          <idle>-0     (-----) [001] ...1 82310.053244: cpu_idle: state=4294967295 cpu_id=1
16023          <idle>-0     (-----) [001] d..1 82310.053248: cpu_idle: state=0 cpu_id=1
16024          <idle>-0     (-----) [003] d..2 82310.053253: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16025 crtc_commit:111-321   (  321) [003] d..3 82310.053275: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16026 crtc_commit:111-321   (  321) [003] d..4 82310.053297: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16027          <idle>-0     (-----) [000] .n.1 82310.053305: cpu_idle: state=4294967295 cpu_id=0
16028          <idle>-0     (-----) [000] d..2 82310.053321: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
16029 SDM_EventThread-644   (  619) [000] d..2 82310.053369: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16030          <idle>-0     (-----) [000] d..1 82310.053383: cpu_idle: state=0 cpu_id=0
16031 crtc_commit:111-321   (  321) [003] d..2 82310.053473: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16032          <idle>-0     (-----) [003] d..1 82310.053490: cpu_idle: state=0 cpu_id=3
16033          <idle>-0     (-----) [001] d.s3 82310.053661: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16034          <idle>-0     (-----) [001] d.s4 82310.053675: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16035          <idle>-0     (-----) [003] .n.1 82310.053684: cpu_idle: state=4294967295 cpu_id=3
16036          <idle>-0     (-----) [001] ...1 82310.053684: cpu_idle: state=4294967295 cpu_id=1
16037          <idle>-0     (-----) [001] d..1 82310.053688: cpu_idle: state=0 cpu_id=1
16038          <idle>-0     (-----) [003] d..2 82310.053694: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16039          <idle>-0     (-----) [002] ...1 82310.053746: cpu_idle: state=4294967295 cpu_id=2
16040          <idle>-0     (-----) [002] d..1 82310.053751: cpu_idle: state=2 cpu_id=2
16041 crtc_commit:111-321   (  321) [003] d..2 82310.053843: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16042          <idle>-0     (-----) [003] d..1 82310.053857: cpu_idle: state=0 cpu_id=3
16043          <idle>-0     (-----) [001] d.s3 82310.053862: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16044          <idle>-0     (-----) [001] d.s4 82310.053877: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16045          <idle>-0     (-----) [003] .n.1 82310.053884: cpu_idle: state=4294967295 cpu_id=3
16046          <idle>-0     (-----) [001] ...1 82310.053885: cpu_idle: state=4294967295 cpu_id=1
16047          <idle>-0     (-----) [001] d..1 82310.053889: cpu_idle: state=0 cpu_id=1
16048          <idle>-0     (-----) [003] d..2 82310.053894: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16049 crtc_commit:111-321   (  321) [003] d..1 82310.053920: clk_enable: disp_cc_mdss_vsync_clk_src
16050 crtc_commit:111-321   (  321) [003] d..1 82310.053923: clk_enable: disp_cc_mdss_rscc_vsync_clk
16051 crtc_commit:111-321   (  321) [003] d..1 82310.053940: clk_enable: disp_cc_mdss_rscc_ahb_clk
16052 crtc_commit:111-321   (  321) [003] d..2 82310.054003: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16053          <idle>-0     (-----) [003] d..1 82310.054014: cpu_idle: state=0 cpu_id=3
16054          <idle>-0     (-----) [003] d.h2 82310.054095: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16055          <idle>-0     (-----) [003] dnh3 82310.054110: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16056          <idle>-0     (-----) [003] .n.1 82310.054118: cpu_idle: state=4294967295 cpu_id=3
16057          <idle>-0     (-----) [003] d..2 82310.054128: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16058 crtc_commit:111-321   (  321) [003] d..1 82310.054161: clk_enable: gcc_disp_axi_clk
16059 crtc_commit:111-321   (  321) [003] d..1 82310.054174: clk_enable: disp_cc_mdss_ahb_clk
16060 crtc_commit:111-321   (  321) [003] d..1 82310.054184: clk_enable: disp_cc_mdss_axi_clk
16061 crtc_commit:111-321   (  321) [003] d..1 82310.054207: clk_enable: gcc_disp_gpll0_clk_src
16062 crtc_commit:111-321   (  321) [003] d..1 82310.054715: clk_enable: disp_cc_mdss_mdp_clk_src
16063 crtc_commit:111-321   (  321) [003] d..1 82310.054751: clk_enable: disp_cc_mdss_mdp_clk
16064 crtc_commit:111-321   (  321) [003] d..1 82310.054763: clk_enable: disp_cc_mdss_vsync_clk
16065          <idle>-0     (-----) [000] ...1 82310.054843: cpu_idle: state=4294967295 cpu_id=0
16066          <idle>-0     (-----) [000] d..1 82310.054848: cpu_idle: state=2 cpu_id=0
16067 crtc_commit:111-321   (  321) [003] d..2 82310.054972: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16068          <idle>-0     (-----) [003] d..1 82310.054989: cpu_idle: state=0 cpu_id=3
16069          <idle>-0     (-----) [001] d.s2 82310.055137: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16070          <idle>-0     (-----) [001] dns3 82310.055158: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16071          <idle>-0     (-----) [001] .n.1 82310.055180: cpu_idle: state=4294967295 cpu_id=1
16072          <idle>-0     (-----) [001] d..2 82310.055191: 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
16073     rcu_preempt-7     (    7) [001] d..2 82310.055201: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16074     rcu_preempt-7     (    7) [001] d..3 82310.055219: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16075     rcu_preempt-7     (    7) [001] d..2 82310.055232: 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
16076         rcuop/0-10    (   10) [001] d..2 82310.055237: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
16077         rcuop/0-10    (   10) [001] d..3 82310.055253: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
16078         rcuop/0-10    (   10) [001] d..2 82310.055568: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16079         rcuop/0-10    (   10) [001] d..3 82310.055583: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16080         rcuop/0-10    (   10) [001] d..2 82310.055593: 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
16081         rcuop/1-21    (   21) [001] d..2 82310.055633: 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
16082     rcu_preempt-7     (    7) [001] d..2 82310.055664: 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
16083          <idle>-0     (-----) [001] d..1 82310.055686: cpu_idle: state=0 cpu_id=1
16084          <idle>-0     (-----) [003] ...1 82310.056109: cpu_idle: state=4294967295 cpu_id=3
16085          <idle>-0     (-----) [003] d..1 82310.056114: cpu_idle: state=2 cpu_id=3
16086          <idle>-0     (-----) [001] d.s2 82310.061810: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16087          <idle>-0     (-----) [001] dns3 82310.061827: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16088          <idle>-0     (-----) [001] dns3 82310.061833: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16089          <idle>-0     (-----) [001] dns4 82310.061847: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16090          <idle>-0     (-----) [001] .n.1 82310.061859: cpu_idle: state=4294967295 cpu_id=1
16091          <idle>-0     (-----) [001] d..2 82310.061872: 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
16092     rcu_preempt-7     (    7) [001] d..2 82310.061881: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16093     rcu_preempt-7     (    7) [001] d..3 82310.061894: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16094     rcu_preempt-7     (    7) [001] d..2 82310.061906: 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
16095         rcuop/0-10    (   10) [001] d..2 82310.061909: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
16096         rcuop/0-10    (   10) [001] d..3 82310.061920: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
16097         rcuop/0-10    (   10) [001] d..2 82310.061929: 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
16098         rcuop/1-21    (   21) [001] d..2 82310.061936: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
16099         rcuop/1-21    (   21) [001] d..3 82310.061946: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
16100         rcuop/1-21    (   21) [001] d..2 82310.062009: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
16101     kworker/1:1-25249 (25249) [001] .... 82310.062065: cgroup_release: root=1 id=109 level=2 path=/uid_9999/pid_27506
16102     kworker/1:1-25249 (25249) [001] d..2 82310.062080: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16103     kworker/1:1-25249 (25249) [001] d..3 82310.062095: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16104     kworker/1:1-25249 (25249) [001] d..2 82310.062106: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
16105         rcuop/0-10    (   10) [001] d..2 82310.062110: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16106         rcuop/0-10    (   10) [001] d..3 82310.062121: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16107         rcuop/0-10    (   10) [001] d..2 82310.062130: 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
16108     rcu_preempt-7     (    7) [001] d..2 82310.062143: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16109<...>-1054 ( 1054) [001] d..2 82310.062232: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16110          <idle>-0     (-----) [001] d..1 82310.062250: cpu_idle: state=0 cpu_id=1
16111          <idle>-0     (-----) [000] d.h7 82310.068074: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16112          <idle>-0     (-----) [000] dnh8 82310.068101: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16113          <idle>-0     (-----) [000] dnh9 82310.068114: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16114          <idle>-0     (-----) [000] dnha 82310.068139: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16115          <idle>-0     (-----) [000] dnh7 82310.068145: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16116          <idle>-0     (-----) [000] dnh8 82310.068162: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16117          <idle>-0     (-----) [000] .n.1 82310.068183: cpu_idle: state=4294967295 cpu_id=0
16118          <idle>-0     (-----) [000] d..2 82310.068206: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16119     kworker/0:1-25262 (25262) [000] d..2 82310.068229: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
16120 SDM_EventThread-644   (  619) [000] ...1 82310.068275: tracing_mark_write: B|619|HWCCallbacks::Vsync::
16121 SDM_EventThread-644   (  619) [000] ...1 82310.068286: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
16122 SDM_EventThread-644   (  619) [000] ...1 82310.068293: tracing_mark_write: E|619
16123 SDM_EventThread-644   (  619) [000] .... 82310.068326: binder_transaction: transaction=1568186 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
16124 SDM_EventThread-644   (  619) [000] .... 82310.068333: binder_transaction_alloc_buf: transaction=1568186 data_size=76 offsets_size=0
16125 SDM_EventThread-644   (  619) [000] d..4 82310.068342: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
16126          <idle>-0     (-----) [003] .n.1 82310.068355: cpu_idle: state=4294967295 cpu_id=3
16127 SDM_EventThread-644   (  619) [000] d..5 82310.068374: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
16128          <idle>-0     (-----) [003] d..2 82310.068382: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16129          <idle>-0     (-----) [001] .n.1 82310.068383: cpu_idle: state=4294967295 cpu_id=1
16130          <idle>-0     (-----) [001] d..2 82310.068402: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
16131 SDM_EventThread-644   (  619) [000] ...1 82310.068410: tracing_mark_write: E|619
16132<...>-8890 ( 8858) [001] .... 82310.068413: binder_transaction_received: transaction=1568186
16133 crtc_commit:111-321   (  321) [003] d..1 82310.068424: clk_disable: disp_cc_mdss_vsync_clk
16134<...>-8890 ( 8858) [001] d.s1 82310.068490: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16135 crtc_commit:111-321   (  321) [003] d..1 82310.068499: clk_disable: disp_cc_mdss_mdp_clk
16136<...>-8890 ( 8858) [001] d.s2 82310.068512: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
16137 crtc_commit:111-321   (  321) [003] d..1 82310.068513: clk_disable: disp_cc_mdss_mdp_clk_src
16138<...>-8890 ( 8858) [001] d.s2 82310.068519: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16139 crtc_commit:111-321   (  321) [003] d..1 82310.068545: clk_disable: gcc_disp_gpll0_clk_src
16140 SDM_EventThread-644   (  619) [000] d..2 82310.068557: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
16141<...>-8890 ( 8858) [001] d.s3 82310.068579: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16142     rcu_preempt-7     (    7) [000] d..2 82310.068593: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16143<...>-8890 ( 8858) [001] d.s2 82310.068602: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
16144<...>-8890 ( 8858) [001] d.s3 82310.068622: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
16145<...>-8890 ( 8858) [001] ...1 82310.068652: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
16146<...>-8890 ( 8858) [001] ...1 82310.068667: tracing_mark_write: E|8858
16147<...>-8890 ( 8858) [001] d..2 82310.068713: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
16148  kworker/u16:15-1311  ( 1311) [001] d..2 82310.068749: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16149          <idle>-0     (-----) [001] d..1 82310.068771: cpu_idle: state=2 cpu_id=1
16150<...>-1054 ( 1054) [000] d..2 82310.068815: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16151          <idle>-0     (-----) [000] d..1 82310.068843: cpu_idle: state=2 cpu_id=0
16152 crtc_commit:111-321   (  321) [003] d..1 82310.069067: clk_disable: disp_cc_mdss_axi_clk
16153 crtc_commit:111-321   (  321) [003] d..1 82310.069079: clk_disable: disp_cc_mdss_ahb_clk
16154 crtc_commit:111-321   (  321) [003] d..1 82310.069090: clk_disable: gcc_disp_axi_clk
16155 crtc_commit:111-321   (  321) [003] d..2 82310.069174: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16156          <idle>-0     (-----) [003] d..1 82310.069191: cpu_idle: state=0 cpu_id=3
16157          <idle>-0     (-----) [001] d.s3 82310.069193: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16158          <idle>-0     (-----) [001] d.s4 82310.069210: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
16159          <idle>-0     (-----) [001] d.s4 82310.069223: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16160          <idle>-0     (-----) [001] ...1 82310.069239: cpu_idle: state=4294967295 cpu_id=1
16161          <idle>-0     (-----) [003] d.h2 82310.069255: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16162          <idle>-0     (-----) [001] d..1 82310.069256: cpu_idle: state=0 cpu_id=1
16163          <idle>-0     (-----) [003] dnh3 82310.069273: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16164          <idle>-0     (-----) [003] .n.1 82310.069284: cpu_idle: state=4294967295 cpu_id=3
16165          <idle>-0     (-----) [003] d..2 82310.069295: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16166 crtc_commit:111-321   (  321) [003] d..1 82310.069311: clk_disable: disp_cc_mdss_rscc_ahb_clk
16167 crtc_commit:111-321   (  321) [003] d..1 82310.069326: clk_disable: disp_cc_mdss_rscc_vsync_clk
16168 crtc_commit:111-321   (  321) [003] d..1 82310.069336: clk_disable: disp_cc_mdss_vsync_clk_src
16169 crtc_commit:111-321   (  321) [003] d..3 82310.069355: sched_pi_setprio: comm=kworker/u16:9 pid=1054 oldprio=120 newprio=83
16170 crtc_commit:111-321   (  321) [003] d..2 82310.069396: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16171          <idle>-0     (-----) [003] d..1 82310.069412: cpu_idle: state=0 cpu_id=3
16172          <idle>-0     (-----) [000] .n.1 82310.069438: cpu_idle: state=4294967295 cpu_id=0
16173          <idle>-0     (-----) [000] d..2 82310.069464: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=83
16174<...>-1054 ( 1054) [000] d..1 82310.069480: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16175<...>-1054 ( 1054) [000] d..2 82310.069510: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16176<...>-1054 ( 1054) [000] d..2 82310.069516: sched_pi_setprio: comm=kworker/u16:9 pid=1054 oldprio=83 newprio=120
16177          <idle>-0     (-----) [003] .n.1 82310.069517: cpu_idle: state=4294967295 cpu_id=3
16178          <idle>-0     (-----) [003] d..2 82310.069529: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16179<...>-1054 ( 1054) [000] d..2 82310.069633: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16180          <idle>-0     (-----) [000] d..1 82310.069652: cpu_idle: state=0 cpu_id=0
16181 crtc_commit:111-321   (  321) [003] d..2 82310.069704: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16182          <idle>-0     (-----) [003] d..1 82310.069721: cpu_idle: state=0 cpu_id=3
16183          <idle>-0     (-----) [001] d.s3 82310.069722: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16184          <idle>-0     (-----) [001] d.s4 82310.069746: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16185          <idle>-0     (-----) [003] .n.1 82310.069754: cpu_idle: state=4294967295 cpu_id=3
16186          <idle>-0     (-----) [001] ...1 82310.069759: cpu_idle: state=4294967295 cpu_id=1
16187          <idle>-0     (-----) [001] d..1 82310.069763: cpu_idle: state=0 cpu_id=1
16188          <idle>-0     (-----) [003] d..2 82310.069766: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16189 crtc_commit:111-321   (  321) [003] d..1 82310.069779: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16190 crtc_commit:111-321   (  321) [003] d..2 82310.069794: sched_blocked_reason: pid=1054 iowait=0 caller=update_request_adhoc+0x384/0x480
16191 crtc_commit:111-321   (  321) [003] d..2 82310.069807: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16192          <idle>-0     (-----) [000] .n.1 82310.069813: cpu_idle: state=4294967295 cpu_id=0
16193          <idle>-0     (-----) [000] d..2 82310.069827: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16194<...>-1054 ( 1054) [000] d..2 82310.069850: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16195          <idle>-0     (-----) [000] d..1 82310.069860: cpu_idle: state=0 cpu_id=0
16196 crtc_commit:111-321   (  321) [003] d..2 82310.069995: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16197          <idle>-0     (-----) [003] d..1 82310.070013: cpu_idle: state=0 cpu_id=3
16198          <idle>-0     (-----) [001] d.s3 82310.070023: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16199          <idle>-0     (-----) [001] d.s4 82310.070041: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16200          <idle>-0     (-----) [003] .n.1 82310.070048: cpu_idle: state=4294967295 cpu_id=3
16201          <idle>-0     (-----) [001] ...1 82310.070050: cpu_idle: state=4294967295 cpu_id=1
16202          <idle>-0     (-----) [001] d..1 82310.070058: cpu_idle: state=0 cpu_id=1
16203          <idle>-0     (-----) [003] d..2 82310.070059: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16204 crtc_commit:111-321   (  321) [003] d..1 82310.070071: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16205 crtc_commit:111-321   (  321) [003] d..2 82310.070083: sched_blocked_reason: pid=1054 iowait=0 caller=update_request_adhoc+0x384/0x480
16206 crtc_commit:111-321   (  321) [003] d..2 82310.070093: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16207          <idle>-0     (-----) [000] .n.1 82310.070098: cpu_idle: state=4294967295 cpu_id=0
16208 crtc_commit:111-321   (  321) [003] d..3 82310.070105: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16209          <idle>-0     (-----) [000] d..2 82310.070111: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16210 crtc_commit:111-321   (  321) [003] d..4 82310.070133: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16211<...>-1054 ( 1054) [000] d..2 82310.070147: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
16212 crtc_commit:111-321   (  321) [003] d..3 82310.070152: sched_pi_setprio: comm=kworker/u16:9 pid=1054 oldprio=120 newprio=83
16213 SDM_EventThread-644   (  619) [000] d..2 82310.070179: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=R+ ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=83
16214 crtc_commit:111-321   (  321) [003] d..2 82310.070201: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16215          <idle>-0     (-----) [003] d..1 82310.070219: cpu_idle: state=0 cpu_id=3
16216<...>-1054 ( 1054) [000] d..2 82310.070305: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
16217          <idle>-0     (-----) [001] d.s3 82310.070333: sched_waking: comm=kworker/u16:9 pid=1054 prio=83 target_cpu=000
16218          <idle>-0     (-----) [001] d.s4 82310.070354: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=83 target_cpu=000
16219 SDM_EventThread-644   (  619) [000] d..2 82310.070363: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=83
16220          <idle>-0     (-----) [001] ...1 82310.070376: cpu_idle: state=4294967295 cpu_id=1
16221<...>-1054 ( 1054) [000] d..1 82310.070379: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16222          <idle>-0     (-----) [001] d..1 82310.070380: cpu_idle: state=0 cpu_id=1
16223<...>-1054 ( 1054) [000] d..2 82310.070401: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16224<...>-1054 ( 1054) [000] d..2 82310.070405: sched_pi_setprio: comm=kworker/u16:9 pid=1054 oldprio=83 newprio=120
16225          <idle>-0     (-----) [003] .n.1 82310.070409: cpu_idle: state=4294967295 cpu_id=3
16226          <idle>-0     (-----) [003] d..2 82310.070422: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16227<...>-1054 ( 1054) [000] d..2 82310.070449: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16228          <idle>-0     (-----) [000] d..1 82310.070467: cpu_idle: state=0 cpu_id=0
16229 crtc_commit:111-321   (  321) [003] d..2 82310.070609: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16230          <idle>-0     (-----) [003] d..1 82310.070626: cpu_idle: state=0 cpu_id=3
16231          <idle>-0     (-----) [001] d.s3 82310.070989: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16232          <idle>-0     (-----) [001] d.s4 82310.071007: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16233          <idle>-0     (-----) [003] .n.1 82310.071014: cpu_idle: state=4294967295 cpu_id=3
16234          <idle>-0     (-----) [001] ...1 82310.071016: cpu_idle: state=4294967295 cpu_id=1
16235          <idle>-0     (-----) [001] d..1 82310.071024: cpu_idle: state=0 cpu_id=1
16236          <idle>-0     (-----) [003] d..2 82310.071025: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16237 crtc_commit:111-321   (  321) [003] d..2 82310.071194: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16238          <idle>-0     (-----) [003] d..1 82310.071212: cpu_idle: state=0 cpu_id=3
16239          <idle>-0     (-----) [001] d.s3 82310.071215: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16240          <idle>-0     (-----) [001] d.s4 82310.071233: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16241          <idle>-0     (-----) [003] .n.1 82310.071241: cpu_idle: state=4294967295 cpu_id=3
16242          <idle>-0     (-----) [001] ...1 82310.071244: cpu_idle: state=4294967295 cpu_id=1
16243          <idle>-0     (-----) [001] d..1 82310.071249: cpu_idle: state=0 cpu_id=1
16244          <idle>-0     (-----) [003] d..2 82310.071252: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16245 crtc_commit:111-321   (  321) [003] d..1 82310.071279: clk_enable: disp_cc_mdss_vsync_clk_src
16246 crtc_commit:111-321   (  321) [003] d..1 82310.071282: clk_enable: disp_cc_mdss_rscc_vsync_clk
16247 crtc_commit:111-321   (  321) [003] d..1 82310.071299: clk_enable: disp_cc_mdss_rscc_ahb_clk
16248 crtc_commit:111-321   (  321) [003] d..2 82310.071371: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16249          <idle>-0     (-----) [003] d..1 82310.071383: cpu_idle: state=0 cpu_id=3
16250          <idle>-0     (-----) [003] d.h2 82310.071460: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16251          <idle>-0     (-----) [003] dnh3 82310.071474: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16252          <idle>-0     (-----) [003] .n.1 82310.071485: cpu_idle: state=4294967295 cpu_id=3
16253          <idle>-0     (-----) [003] d..2 82310.071495: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16254 crtc_commit:111-321   (  321) [003] d..1 82310.071532: clk_enable: gcc_disp_axi_clk
16255 crtc_commit:111-321   (  321) [003] d..1 82310.071546: clk_enable: disp_cc_mdss_ahb_clk
16256 crtc_commit:111-321   (  321) [003] d..1 82310.071559: clk_enable: disp_cc_mdss_axi_clk
16257 crtc_commit:111-321   (  321) [003] d..1 82310.071581: clk_enable: gcc_disp_gpll0_clk_src
16258 crtc_commit:111-321   (  321) [003] d..1 82310.072091: clk_enable: disp_cc_mdss_mdp_clk_src
16259 crtc_commit:111-321   (  321) [003] d..1 82310.072130: clk_enable: disp_cc_mdss_mdp_clk
16260 crtc_commit:111-321   (  321) [003] d.H3 82310.072264: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
16261 crtc_commit:111-321   (  321) [003] d.H4 82310.072284: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
16262 crtc_commit:111-321   (  321) [003] d.s3 82310.072294: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16263 crtc_commit:111-321   (  321) [003] d.s4 82310.072314: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16264          <idle>-0     (-----) [000] .n.1 82310.072321: cpu_idle: state=4294967295 cpu_id=0
16265 crtc_commit:111-321   (  321) [003] d..1 82310.072331: clk_enable: disp_cc_mdss_vsync_clk
16266          <idle>-0     (-----) [000] d..2 82310.072339: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16267<...>-1054 ( 1054) [000] d..2 82310.072506: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16268          <idle>-0     (-----) [000] d..1 82310.072518: cpu_idle: state=0 cpu_id=0
16269          <idle>-0     (-----) [002] .n.1 82310.072586: cpu_idle: state=4294967295 cpu_id=2
16270          <idle>-0     (-----) [002] d..2 82310.072613: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
16271 crtc_commit:111-321   (  321) [003] d..2 82310.072639: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16272         sugov:0-576   (  576) [002] .... 82310.072645: clk_set_rate: pwrcl_clk 748800000
16273         sugov:0-576   (  576) [002] .... 82310.072657: clk_set_rate: cpu3_pwrcl_clk 979200000
16274          <idle>-0     (-----) [003] d..1 82310.072661: cpu_idle: state=0 cpu_id=3
16275         sugov:0-576   (  576) [002] .... 82310.072669: clk_set_rate: cpu2_pwrcl_clk 979200000
16276         sugov:0-576   (  576) [002] .... 82310.072679: clk_set_rate: cpu1_pwrcl_clk 979200000
16277         sugov:0-576   (  576) [002] .... 82310.072689: clk_set_rate: cpu0_pwrcl_clk 748800000
16278         sugov:0-576   (  576) [002] .... 82310.072807: cpu_frequency: state=748800 cpu_id=0
16279         sugov:0-576   (  576) [002] .... 82310.072826: cpu_frequency: state=748800 cpu_id=1
16280         sugov:0-576   (  576) [002] .... 82310.072833: cpu_frequency: state=748800 cpu_id=2
16281         sugov:0-576   (  576) [002] .... 82310.072838: cpu_frequency: state=748800 cpu_id=3
16282         sugov:0-576   (  576) [002] d..2 82310.072883: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16283          <idle>-0     (-----) [002] d..1 82310.072904: cpu_idle: state=2 cpu_id=2
16284          <idle>-0     (-----) [003] ...1 82310.073815: cpu_idle: state=4294967295 cpu_id=3
16285          <idle>-0     (-----) [003] d..1 82310.073821: cpu_idle: state=2 cpu_id=3
16286          <idle>-0     (-----) [000] d.s2 82310.075204: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16287          <idle>-0     (-----) [000] dns3 82310.075230: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
16288          <idle>-0     (-----) [000] dns3 82310.075244: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16289          <idle>-0     (-----) [000] dns4 82310.075259: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16290          <idle>-0     (-----) [000] .n.1 82310.075283: cpu_idle: state=4294967295 cpu_id=0
16291          <idle>-0     (-----) [000] d..2 82310.075295: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16292     kworker/0:1-25262 (25262) [000] d..2 82310.075343: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
16293     rcu_preempt-7     (    7) [000] d..2 82310.075351: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
16294     rcu_preempt-7     (    7) [000] d..3 82310.075395: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
16295     rcu_preempt-7     (    7) [000] d..2 82310.075408: 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
16296         rcuop/0-10    (   10) [000] d..2 82310.075413: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
16297         rcuop/0-10    (   10) [000] d..3 82310.075452: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
16298         rcuop/0-10    (   10) [000] d..2 82310.075464: 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
16299         rcuop/1-21    (   21) [000] d..2 82310.075471: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16300         rcuop/1-21    (   21) [000] d..3 82310.075481: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16301         rcuop/1-21    (   21) [000] d..2 82310.075493: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16302     kworker/0:1-25262 (25262) [000] d..3 82310.075582: sched_waking: comm=kworker/0:2 pid=25606 prio=120 target_cpu=000
16303     kworker/0:1-25262 (25262) [000] d..3 82310.075622: sched_wakeup: comm=kworker/0:2 pid=25606 prio=120 target_cpu=000
16304     kworker/0:1-25262 (25262) [000] d..2 82310.075632: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=D ==> next_comm=kworker/0:2 next_pid=25606 next_prio=120
16305     kworker/0:2-25606 (25606) [000] d..3 82310.075655: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16306     kworker/0:2-25606 (25606) [000] d..4 82310.075670: sched_blocked_reason: pid=25262 iowait=0 caller=flush_workqueue+0x2dc/0x790
16307     kworker/0:2-25606 (25606) [000] d..4 82310.075679: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16308     kworker/0:2-25606 (25606) [000] d..2 82310.075693: sched_switch: prev_comm=kworker/0:2 prev_pid=25606 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16309     kworker/0:1-25262 (25262) [000] d..2 82310.075756: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16310          <idle>-0     (-----) [000] d..1 82310.075783: cpu_idle: state=0 cpu_id=0
16311          <idle>-0     (-----) [000] d..2 82310.081796: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16312          <idle>-0     (-----) [000] dn.3 82310.081813: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16313          <idle>-0     (-----) [000] .n.1 82310.081820: cpu_idle: state=4294967295 cpu_id=0
16314          <idle>-0     (-----) [000] d..2 82310.081837: 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
16315     ksoftirqd/0-3     (    3) [000] d.s2 82310.081849: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16316     ksoftirqd/0-3     (    3) [000] d.s3 82310.081879: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16317          <idle>-0     (-----) [001] .n.1 82310.081885: cpu_idle: state=4294967295 cpu_id=1
16318          <idle>-0     (-----) [001] d..2 82310.081910: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16319     ksoftirqd/0-3     (    3) [000] d..2 82310.081916: 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
16320          <idle>-0     (-----) [000] d..1 82310.081931: cpu_idle: state=2 cpu_id=0
16321<...>-1054 ( 1054) [001] d..2 82310.082030: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16322          <idle>-0     (-----) [001] d..1 82310.082051: cpu_idle: state=0 cpu_id=1
16323          <idle>-0     (-----) [001] ...1 82310.083365: cpu_idle: state=4294967295 cpu_id=1
16324          <idle>-0     (-----) [001] d..1 82310.083370: cpu_idle: state=2 cpu_id=1
16325          <idle>-0     (-----) [000] d.h7 82310.087443: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16326          <idle>-0     (-----) [000] dnh8 82310.087463: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16327          <idle>-0     (-----) [000] dnh9 82310.087477: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16328          <idle>-0     (-----) [000] dnha 82310.087499: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16329          <idle>-0     (-----) [000] dnh7 82310.087505: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16330          <idle>-0     (-----) [000] dnh8 82310.087525: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16331          <idle>-0     (-----) [000] .n.1 82310.087672: cpu_idle: state=4294967295 cpu_id=0
16332          <idle>-0     (-----) [000] d..2 82310.087694: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
16333 SDM_EventThread-644   (  619) [000] ...1 82310.087741: tracing_mark_write: B|619|HWCCallbacks::Vsync::
16334 SDM_EventThread-644   (  619) [000] ...1 82310.087754: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
16335 SDM_EventThread-644   (  619) [000] ...1 82310.087761: tracing_mark_write: E|619
16336          <idle>-0     (-----) [003] .n.1 82310.087796: cpu_idle: state=4294967295 cpu_id=3
16337 SDM_EventThread-644   (  619) [000] .... 82310.087798: binder_transaction: transaction=1568187 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
16338 SDM_EventThread-644   (  619) [000] .... 82310.087806: binder_transaction_alloc_buf: transaction=1568187 data_size=76 offsets_size=0
16339 SDM_EventThread-644   (  619) [000] d..4 82310.087814: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
16340          <idle>-0     (-----) [003] d..2 82310.087828: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16341 SDM_EventThread-644   (  619) [000] d..5 82310.087843: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
16342 crtc_commit:111-321   (  321) [003] d..1 82310.087873: clk_disable: disp_cc_mdss_vsync_clk
16343 SDM_EventThread-644   (  619) [000] ...1 82310.087881: tracing_mark_write: E|619
16344 crtc_commit:111-321   (  321) [003] d..1 82310.087893: clk_disable: disp_cc_mdss_mdp_clk
16345 crtc_commit:111-321   (  321) [003] d..1 82310.087904: clk_disable: disp_cc_mdss_mdp_clk_src
16346 SDM_EventThread-644   (  619) [000] d..2 82310.087929: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16347 crtc_commit:111-321   (  321) [003] d..1 82310.087940: clk_disable: gcc_disp_gpll0_clk_src
16348     kworker/0:1-25262 (25262) [000] d..2 82310.087977: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16349          <idle>-0     (-----) [000] d..2 82310.087984: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16350          <idle>-0     (-----) [000] dn.3 82310.087995: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16351          <idle>-0     (-----) [000] d..2 82310.088006: 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
16352     ksoftirqd/0-3     (    3) [000] d..2 82310.088034: 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
16353          <idle>-0     (-----) [000] d..1 82310.088055: cpu_idle: state=2 cpu_id=0
16354          <idle>-0     (-----) [001] .n.1 82310.088142: cpu_idle: state=4294967295 cpu_id=1
16355          <idle>-0     (-----) [001] d..2 82310.088175: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
16356<...>-8890 ( 8858) [001] .... 82310.088188: binder_transaction_received: transaction=1568187
16357<...>-8890 ( 8858) [001] ...1 82310.088230: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
16358<...>-8890 ( 8858) [001] d..1 82310.088298: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
16359<...>-8890 ( 8858) [001] d..2 82310.088326: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
16360<...>-8890 ( 8858) [001] d..1 82310.088350: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
16361<...>-8890 ( 8858) [001] d..2 82310.088387: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
16362<...>-8890 ( 8858) [001] ...1 82310.088401: tracing_mark_write: E|8858
16363<...>-8890 ( 8858) [001] d..2 82310.088466: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16364 crtc_commit:111-321   (  321) [003] d..1 82310.088515: clk_disable: disp_cc_mdss_axi_clk
16365 crtc_commit:111-321   (  321) [003] d..1 82310.088531: clk_disable: disp_cc_mdss_ahb_clk
16366 crtc_commit:111-321   (  321) [003] d..1 82310.088545: clk_disable: gcc_disp_axi_clk
16367          <idle>-0     (-----) [001] d..1 82310.088550: cpu_idle: state=2 cpu_id=1
16368          <idle>-0     (-----) [000] .n.1 82310.088623: cpu_idle: state=4294967295 cpu_id=0
16369 crtc_commit:111-321   (  321) [003] d..2 82310.088644: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16370          <idle>-0     (-----) [000] d..2 82310.088651: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
16371          <idle>-0     (-----) [003] d..1 82310.088666: cpu_idle: state=0 cpu_id=3
16372          <idle>-0     (-----) [003] d.h2 82310.088712: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16373          <idle>-0     (-----) [002] .n.1 82310.088716: cpu_idle: state=4294967295 cpu_id=2
16374        DispSync-8879  ( 8858) [000] d..2 82310.088721: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16375          <idle>-0     (-----) [003] dnh3 82310.088729: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16376          <idle>-0     (-----) [003] .n.1 82310.088740: cpu_idle: state=4294967295 cpu_id=3
16377          <idle>-0     (-----) [000] d..1 82310.088741: cpu_idle: state=2 cpu_id=0
16378          <idle>-0     (-----) [002] d..2 82310.088749: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
16379          <idle>-0     (-----) [003] d..2 82310.088754: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16380 crtc_commit:111-321   (  321) [003] d..1 82310.088773: clk_disable: disp_cc_mdss_rscc_ahb_clk
16381 crtc_commit:111-321   (  321) [003] d..1 82310.088788: clk_disable: disp_cc_mdss_rscc_vsync_clk
16382 crtc_commit:111-321   (  321) [003] d..1 82310.088801: clk_disable: disp_cc_mdss_vsync_clk_src
16383<...>-8894 ( 8858) [002] ...1 82310.088825: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
16384<...>-8894 ( 8858) [002] ...1 82310.088835: tracing_mark_write: E|8858
16385<...>-8894 ( 8858) [002] .... 82310.088914: binder_transaction: transaction=1568188 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
16386<...>-8894 ( 8858) [002] .... 82310.088930: binder_transaction_alloc_buf: transaction=1568188 data_size=68 offsets_size=0
16387<...>-8894 ( 8858) [002] ...2 82310.088959: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
16388 crtc_commit:111-321   (  321) [003] d..2 82310.088992: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16389<...>-8894 ( 8858) [002] d..4 82310.089000: sched_waking: [email protected] pid=619 prio=112 target_cpu=002
16390          <idle>-0     (-----) [003] d..1 82310.089012: cpu_idle: state=2 cpu_id=3
16391<...>-8894 ( 8858) [002] d..5 82310.089032: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=002
16392<...>-8894 ( 8858) [002] d..2 82310.089056: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
16393 [email protected]   (  619) [002] .... 82310.089080: binder_transaction_received: transaction=1568188
16394 [email protected]   (  619) [002] ...1 82310.089192: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
16395 [email protected]   (  619) [002] ...1 82310.089227: tracing_mark_write: C|619|SetVsyncState |0
16396 [email protected]   (  619) [002] ...1 82310.089286: tracing_mark_write: E|619
16397 [email protected]   (  619) [002] .... 82310.089309: binder_transaction: transaction=1568189 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
16398          <idle>-0     (-----) [001] d.s3 82310.089313: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16399 [email protected]   (  619) [002] .... 82310.089314: binder_transaction_alloc_buf: transaction=1568189 data_size=8 offsets_size=0
16400 [email protected]   (  619) [002] d..2 82310.089326: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
16401          <idle>-0     (-----) [001] d.s4 82310.089340: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16402 [email protected]   (  619) [002] dn.3 82310.089349: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
16403          <idle>-0     (-----) [001] ...1 82310.089356: cpu_idle: state=4294967295 cpu_id=1
16404 [email protected]   (  619) [002] d..2 82310.089363: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
16405          <idle>-0     (-----) [001] d..1 82310.089365: cpu_idle: state=2 cpu_id=1
16406<...>-8894 ( 8858) [002] .... 82310.089374: binder_transaction_received: transaction=1568189
16407<...>-8894 ( 8858) [002] d..2 82310.089444: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
16408 [email protected]   (  619) [002] .... 82310.089451: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
16409 [email protected]   (  619) [002] d..2 82310.089556: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16410          <idle>-0     (-----) [002] d..1 82310.089579: cpu_idle: state=2 cpu_id=2
16411          <idle>-0     (-----) [003] .n.1 82310.089643: cpu_idle: state=4294967295 cpu_id=3
16412          <idle>-0     (-----) [003] d..2 82310.089669: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16413 crtc_commit:111-321   (  321) [003] d..2 82310.089897: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16414          <idle>-0     (-----) [003] d..1 82310.089917: cpu_idle: state=2 cpu_id=3
16415          <idle>-0     (-----) [001] d.s3 82310.090240: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16416          <idle>-0     (-----) [001] d.s4 82310.090266: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16417          <idle>-0     (-----) [001] ...1 82310.090281: cpu_idle: state=4294967295 cpu_id=1
16418          <idle>-0     (-----) [001] d..1 82310.090291: cpu_idle: state=2 cpu_id=1
16419          <idle>-0     (-----) [003] .n.1 82310.090574: cpu_idle: state=4294967295 cpu_id=3
16420          <idle>-0     (-----) [003] d..2 82310.090599: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16421 crtc_commit:111-321   (  321) [003] d..3 82310.090623: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16422 crtc_commit:111-321   (  321) [003] d..4 82310.090670: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16423 crtc_commit:111-321   (  321) [003] d..2 82310.090886: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16424          <idle>-0     (-----) [003] d..1 82310.090907: cpu_idle: state=2 cpu_id=3
16425          <idle>-0     (-----) [000] .n.1 82310.090975: cpu_idle: state=4294967295 cpu_id=0
16426          <idle>-0     (-----) [000] d..2 82310.091008: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
16427 SDM_EventThread-644   (  619) [000] d..2 82310.091085: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16428          <idle>-0     (-----) [000] d..1 82310.091105: cpu_idle: state=2 cpu_id=0
16429          <idle>-0     (-----) [001] d.s3 82310.091372: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16430          <idle>-0     (-----) [001] d.s4 82310.091399: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16431          <idle>-0     (-----) [001] ...1 82310.091413: cpu_idle: state=4294967295 cpu_id=1
16432          <idle>-0     (-----) [001] d..1 82310.091423: cpu_idle: state=2 cpu_id=1
16433          <idle>-0     (-----) [003] .n.1 82310.091703: cpu_idle: state=4294967295 cpu_id=3
16434          <idle>-0     (-----) [003] d..2 82310.091728: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16435 crtc_commit:111-321   (  321) [003] d.s2 82310.091899: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16436 crtc_commit:111-321   (  321) [003] d.s3 82310.091950: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16437 crtc_commit:111-321   (  321) [003] d..2 82310.092118: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16438          <idle>-0     (-----) [003] d..1 82310.092143: cpu_idle: state=0 cpu_id=3
16439          <idle>-0     (-----) [001] dns3 82310.092318: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16440          <idle>-0     (-----) [001] dns4 82310.092354: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16441          <idle>-0     (-----) [003] .n.1 82310.092363: cpu_idle: state=4294967295 cpu_id=3
16442          <idle>-0     (-----) [001] .n.1 82310.092368: cpu_idle: state=4294967295 cpu_id=1
16443          <idle>-0     (-----) [003] d..2 82310.092378: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16444          <idle>-0     (-----) [001] d..2 82310.092398: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16445 crtc_commit:111-321   (  321) [003] d..1 82310.092409: clk_enable: disp_cc_mdss_vsync_clk_src
16446 crtc_commit:111-321   (  321) [003] d..1 82310.092412: clk_enable: disp_cc_mdss_rscc_vsync_clk
16447 crtc_commit:111-321   (  321) [003] d..1 82310.092430: clk_enable: disp_cc_mdss_rscc_ahb_clk
16448 crtc_commit:111-321   (  321) [003] d..2 82310.092540: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16449          <idle>-0     (-----) [003] d..1 82310.092564: cpu_idle: state=0 cpu_id=3
16450<...>-1054 ( 1054) [001] d..2 82310.092612: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16451          <idle>-0     (-----) [003] d.h2 82310.092618: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16452          <idle>-0     (-----) [003] dnh3 82310.092635: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16453          <idle>-0     (-----) [001] d..1 82310.092638: cpu_idle: state=0 cpu_id=1
16454          <idle>-0     (-----) [003] .n.1 82310.092645: cpu_idle: state=4294967295 cpu_id=3
16455          <idle>-0     (-----) [003] d..2 82310.092658: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16456 crtc_commit:111-321   (  321) [003] d..1 82310.092697: clk_enable: gcc_disp_axi_clk
16457 crtc_commit:111-321   (  321) [003] d..1 82310.092711: clk_enable: disp_cc_mdss_ahb_clk
16458 crtc_commit:111-321   (  321) [003] d..1 82310.092725: clk_enable: disp_cc_mdss_axi_clk
16459 crtc_commit:111-321   (  321) [003] d..1 82310.092750: clk_enable: gcc_disp_gpll0_clk_src
16460 crtc_commit:111-321   (  321) [003] d..1 82310.093259: clk_enable: disp_cc_mdss_mdp_clk_src
16461 crtc_commit:111-321   (  321) [003] d..1 82310.093303: clk_enable: disp_cc_mdss_mdp_clk
16462 crtc_commit:111-321   (  321) [003] d..1 82310.093316: clk_enable: disp_cc_mdss_vsync_clk
16463 crtc_commit:111-321   (  321) [003] d..2 82310.093559: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16464          <idle>-0     (-----) [003] d..1 82310.093579: cpu_idle: state=0 cpu_id=3
16465          <idle>-0     (-----) [001] ...1 82310.094499: cpu_idle: state=4294967295 cpu_id=1
16466          <idle>-0     (-----) [001] d..1 82310.094505: cpu_idle: state=2 cpu_id=1
16467          <idle>-0     (-----) [003] ...1 82310.095060: cpu_idle: state=4294967295 cpu_id=3
16468          <idle>-0     (-----) [003] d..1 82310.095066: cpu_idle: state=2 cpu_id=3
16469          <idle>-0     (-----) [000] d.h7 82310.105270: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16470          <idle>-0     (-----) [000] dnh8 82310.105473: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16471          <idle>-0     (-----) [000] dnh9 82310.105550: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16472          <idle>-0     (-----) [000] dnha 82310.105701: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16473          <idle>-0     (-----) [000] dnh7 82310.105727: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16474          <idle>-0     (-----) [000] dnh8 82310.105808: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16475          <idle>-0     (-----) [000] .n.1 82310.106009: cpu_idle: state=4294967295 cpu_id=0
16476          <idle>-0     (-----) [003] .n.1 82310.106101: cpu_idle: state=4294967295 cpu_id=3
16477          <idle>-0     (-----) [000] d..2 82310.106147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
16478          <idle>-0     (-----) [003] d..2 82310.106163: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16479 crtc_commit:111-321   (  321) [003] d..1 82310.106339: clk_disable: disp_cc_mdss_vsync_clk
16480 SDM_EventThread-644   (  619) [000] d..2 82310.106408: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16481 crtc_commit:111-321   (  321) [003] d..1 82310.106421: clk_disable: disp_cc_mdss_mdp_clk
16482 crtc_commit:111-321   (  321) [003] d..1 82310.106437: clk_disable: disp_cc_mdss_mdp_clk_src
16483 crtc_commit:111-321   (  321) [003] d..1 82310.106488: clk_disable: gcc_disp_gpll0_clk_src
16484     kworker/0:1-25262 (25262) [000] d..2 82310.106627: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16485          <idle>-0     (-----) [000] d..2 82310.106657: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16486          <idle>-0     (-----) [000] dn.3 82310.106691: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16487          <idle>-0     (-----) [000] d..2 82310.106709: 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
16488     ksoftirqd/0-3     (    3) [000] d.s2 82310.106779: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16489     ksoftirqd/0-3     (    3) [000] d.s3 82310.106951: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16490     ksoftirqd/0-3     (    3) [000] d..2 82310.107000: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16491 crtc_commit:111-321   (  321) [003] d..1 82310.107115: clk_disable: disp_cc_mdss_axi_clk
16492 crtc_commit:111-321   (  321) [003] d..1 82310.107137: clk_disable: disp_cc_mdss_ahb_clk
16493 crtc_commit:111-321   (  321) [003] d..1 82310.107168: clk_disable: gcc_disp_axi_clk
16494 crtc_commit:111-321   (  321) [003] d..2 82310.107364: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16495          <idle>-0     (-----) [003] d.h3 82310.107431: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16496          <idle>-0     (-----) [003] dnh4 82310.107452: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16497          <idle>-0     (-----) [003] d..2 82310.107489: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16498 crtc_commit:111-321   (  321) [003] d..1 82310.107536: clk_disable: disp_cc_mdss_rscc_ahb_clk
16499 crtc_commit:111-321   (  321) [003] d..1 82310.107565: clk_disable: disp_cc_mdss_rscc_vsync_clk
16500 crtc_commit:111-321   (  321) [003] d..1 82310.107582: clk_disable: disp_cc_mdss_vsync_clk_src
16501<...>-1054 ( 1054) [000] d..2 82310.107706: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16502          <idle>-0     (-----) [000] d..1 82310.107773: cpu_idle: state=2 cpu_id=0
16503 crtc_commit:111-321   (  321) [003] d..2 82310.108110: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16504          <idle>-0     (-----) [003] d..1 82310.108150: cpu_idle: state=2 cpu_id=3
16505          <idle>-0     (-----) [001] d.s3 82310.108580: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16506          <idle>-0     (-----) [001] d.s4 82310.108622: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16507          <idle>-0     (-----) [001] d..2 82310.108642: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16508          <idle>-0     (-----) [001] dn.3 82310.108673: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
16509          <idle>-0     (-----) [001] .n.1 82310.108684: cpu_idle: state=4294967295 cpu_id=1
16510          <idle>-0     (-----) [001] d..2 82310.108726: 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
16511     ksoftirqd/1-18    (   18) [001] d..2 82310.108791: 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
16512          <idle>-0     (-----) [001] d..1 82310.108817: cpu_idle: state=2 cpu_id=1
16513          <idle>-0     (-----) [003] .n.1 82310.108926: cpu_idle: state=4294967295 cpu_id=3
16514          <idle>-0     (-----) [003] d..2 82310.108959: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16515 crtc_commit:111-321   (  321) [003] d..2 82310.109345: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16516          <idle>-0     (-----) [003] d..1 82310.109365: cpu_idle: state=2 cpu_id=3
16517          <idle>-0     (-----) [001] d.s3 82310.109686: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16518          <idle>-0     (-----) [001] d.s4 82310.109713: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16519          <idle>-0     (-----) [001] ...1 82310.109729: cpu_idle: state=4294967295 cpu_id=1
16520          <idle>-0     (-----) [001] d..1 82310.109738: cpu_idle: state=2 cpu_id=1
16521          <idle>-0     (-----) [003] .n.1 82310.110019: cpu_idle: state=4294967295 cpu_id=3
16522          <idle>-0     (-----) [003] d..2 82310.110043: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16523 crtc_commit:111-321   (  321) [003] d..3 82310.110110: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16524 crtc_commit:111-321   (  321) [003] d..4 82310.110176: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
16525 crtc_commit:111-321   (  321) [003] d..2 82310.110205: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
16526 SDM_EventThread-644   (  619) [003] d..2 82310.110384: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16527          <idle>-0     (-----) [003] d..1 82310.110408: cpu_idle: state=2 cpu_id=3
16528          <idle>-0     (-----) [000] ...1 82310.183785: cpu_idle: state=4294967295 cpu_id=0
16529          <idle>-0     (-----) [001] d.H3 82310.183786: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
16530          <idle>-0     (-----) [000] d..1 82310.183868: cpu_idle: state=2 cpu_id=0
16531          <idle>-0     (-----) [001] d.H4 82310.183929: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
16532          <idle>-0     (-----) [001] d.s3 82310.183998: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
16533          <idle>-0     (-----) [001] dns4 82310.184078: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
16534          <idle>-0     (-----) [001] dns3 82310.184104: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16535          <idle>-0     (-----) [001] dns4 82310.184276: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16536          <idle>-0     (-----) [002] .n.1 82310.184297: cpu_idle: state=4294967295 cpu_id=2
16537          <idle>-0     (-----) [001] .n.1 82310.184384: cpu_idle: state=4294967295 cpu_id=1
16538          <idle>-0     (-----) [002] d..2 82310.184398: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
16539          <idle>-0     (-----) [001] d..2 82310.184441: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
16540         sugov:0-576   (  576) [002] .... 82310.184538: clk_set_rate: pwrcl_clk 652800000
16541         sugov:0-576   (  576) [002] .... 82310.184614: clk_set_rate: cpu3_pwrcl_clk 748800000
16542         sugov:0-576   (  576) [002] .... 82310.184631: clk_set_rate: cpu2_pwrcl_clk 748800000
16543         sugov:0-576   (  576) [002] .... 82310.184642: clk_set_rate: cpu1_pwrcl_clk 748800000
16544         sugov:0-576   (  576) [002] .... 82310.184652: clk_set_rate: cpu0_pwrcl_clk 652800000
16545         sugov:0-576   (  576) [002] .... 82310.184724: cpu_frequency: state=652800 cpu_id=0
16546     kworker/1:1-25249 (25249) [001] d..2 82310.184730: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16547         sugov:0-576   (  576) [002] .... 82310.184810: cpu_frequency: state=652800 cpu_id=1
16548         sugov:0-576   (  576) [002] .... 82310.184817: cpu_frequency: state=652800 cpu_id=2
16549         sugov:0-576   (  576) [002] .... 82310.184822: cpu_frequency: state=652800 cpu_id=3
16550         sugov:0-576   (  576) [002] d..2 82310.184973: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16551          <idle>-0     (-----) [002] d..1 82310.185065: cpu_idle: state=2 cpu_id=2
16552          <idle>-0     (-----) [000] d.h3 82310.185731: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16553          <idle>-0     (-----) [000] dnh4 82310.185776: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16554          <idle>-0     (-----) [000] .n.1 82310.185811: cpu_idle: state=4294967295 cpu_id=0
16555          <idle>-0     (-----) [000] d..2 82310.185846: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16556     kworker/0:1-25262 (25262) [000] d..2 82310.185867: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
16557<...>-1054 ( 1054) [001] d.s2 82310.185880: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16558     kworker/0:1-25262 (25262) [000] d..3 82310.185893: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
16559     kworker/0:1-25262 (25262) [000] d..3 82310.185915: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
16560<...>-1054 ( 1054) [001] dns3 82310.185925: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16561<...>-1054 ( 1054) [001] d..2 82310.185955: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
16562     kworker/0:1-25262 (25262) [000] d..2 82310.186016: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16563          <idle>-0     (-----) [000] d..1 82310.186043: cpu_idle: state=2 cpu_id=0
16564     kworker/1:1-25249 (25249) [001] d..2 82310.186116: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16565<...>-1054 ( 1054) [001] d..2 82310.186434: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
16566          <idle>-0     (-----) [001] d.s4 82310.186488: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16567          <idle>-0     (-----) [001] d.s5 82310.186504: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
16568          <idle>-0     (-----) [001] dns5 82310.186512: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16569          <idle>-0     (-----) [001] d..2 82310.186531: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16570<...>-1054 ( 1054) [001] d..2 82310.186580: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16571          <idle>-0     (-----) [001] d..1 82310.186613: cpu_idle: state=2 cpu_id=1
16572          <idle>-0     (-----) [001] d.h2 82310.311588: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
16573          <idle>-0     (-----) [000] d..2 82310.311732: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16574          <idle>-0     (-----) [001] dnh3 82310.311826: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
16575          <idle>-0     (-----) [000] dn.3 82310.311856: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16576          <idle>-0     (-----) [001] .n.1 82310.312201: cpu_idle: state=4294967295 cpu_id=1
16577          <idle>-0     (-----) [000] dns3 82310.312208: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
16578          <idle>-0     (-----) [001] d..2 82310.312351: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
16579          <idle>-0     (-----) [000] dns4 82310.312423: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16580          <idle>-0     (-----) [000] dns3 82310.312458: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16581          <idle>-0     (-----) [000] dns4 82310.312487: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16582          <idle>-0     (-----) [000] dns3 82310.312523: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
16583          <idle>-0     (-----) [000] dns3 82310.312567: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
16584          <idle>-0     (-----) [000] dns4 82310.312611: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
16585          <idle>-0     (-----) [000] .n.1 82310.312638: cpu_idle: state=4294967295 cpu_id=0
16586          <idle>-0     (-----) [000] d..2 82310.312705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16587     kworker/0:1-25262 (25262) [000] d..2 82310.312814: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
16588 [email protected]  (  776) [001] d..2 82310.312845: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16589     kworker/0:1-25262 (25262) [000] d..2 82310.312894: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
16590     ksoftirqd/0-3     (    3) [000] d..2 82310.312927: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16591          <idle>-0     (-----) [001] d..1 82310.312932: cpu_idle: state=2 cpu_id=1
16592          <idle>-0     (-----) [003] .n.1 82310.313008: cpu_idle: state=4294967295 cpu_id=3
16593          <idle>-0     (-----) [003] d..2 82310.313071: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
16594     kworker/3:1-25210 (25210) [003] d..2 82310.313198: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16595          <idle>-0     (-----) [003] d..1 82310.313226: cpu_idle: state=2 cpu_id=3
16596          <idle>-0     (-----) [004] dnh2 82310.313764: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
16597          <idle>-0     (-----) [004] .n.1 82310.313778: cpu_idle: state=4294967295 cpu_id=4
16598          <idle>-0     (-----) [004] d..2 82310.313804: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
16599          <idle>-0     (-----) [005] dnh2 82310.313861: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
16600     kworker/4:1-25432 (25432) [004] d..2 82310.313862: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16601          <idle>-0     (-----) [005] .n.1 82310.313876: cpu_idle: state=4294967295 cpu_id=5
16602          <idle>-0     (-----) [004] d..1 82310.313880: cpu_idle: state=2 cpu_id=4
16603          <idle>-0     (-----) [005] d..2 82310.313901: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
16604     kworker/5:0-23997 (23997) [005] d..2 82310.313945: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
16605          <idle>-0     (-----) [005] d..1 82310.313961: cpu_idle: state=2 cpu_id=5
16606<...>-1054 ( 1054) [000] d..2 82310.314041: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16607          <idle>-0     (-----) [000] d..1 82310.314079: cpu_idle: state=2 cpu_id=0
16608          <idle>-0     (-----) [001] d.s3 82310.314664: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16609          <idle>-0     (-----) [001] d.s4 82310.314703: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
16610          <idle>-0     (-----) [001] d.s4 82310.314723: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16611          <idle>-0     (-----) [001] ...1 82310.314748: cpu_idle: state=4294967295 cpu_id=1
16612          <idle>-0     (-----) [001] d..1 82310.314759: cpu_idle: state=2 cpu_id=1
16613          <idle>-0     (-----) [000] .n.1 82310.315061: cpu_idle: state=4294967295 cpu_id=0
16614          <idle>-0     (-----) [000] d..2 82310.315093: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16615<...>-1054 ( 1054) [000] d..2 82310.315480: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16616          <idle>-0     (-----) [000] d..1 82310.315503: cpu_idle: state=2 cpu_id=0
16617          <idle>-0     (-----) [000] d.h2 82310.345549: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
16618          <idle>-0     (-----) [000] dnh3 82310.345875: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
16619          <idle>-0     (-----) [000] dnh3 82310.346479: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
16620          <idle>-0     (-----) [000] dnh4 82310.346585: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
16621          <idle>-0     (-----) [000] .n.1 82310.346672: cpu_idle: state=4294967295 cpu_id=0
16622          <idle>-0     (-----) [000] d..2 82310.346832: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
16623          <idle>-0     (-----) [002] .n.1 82310.346993: cpu_idle: state=4294967295 cpu_id=2
16624          <idle>-0     (-----) [002] d..2 82310.347060: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
16625         sugov:0-576   (  576) [002] .... 82310.347217: clk_set_rate: pwrcl_clk 748800000
16626         sugov:0-576   (  576) [002] .... 82310.347313: clk_set_rate: cpu3_pwrcl_clk 652800000
16627         sugov:0-576   (  576) [002] .... 82310.347338: clk_set_rate: cpu2_pwrcl_clk 652800000
16628         sugov:0-576   (  576) [002] .... 82310.347348: clk_set_rate: cpu1_pwrcl_clk 652800000
16629         sugov:0-576   (  576) [002] .... 82310.347360: clk_set_rate: cpu0_pwrcl_clk 748800000
16630         sugov:0-576   (  576) [002] .... 82310.347381: cpu_frequency: state=748800 cpu_id=0
16631         sugov:0-576   (  576) [002] .... 82310.347496: cpu_frequency: state=748800 cpu_id=1
16632         sugov:0-576   (  576) [002] .... 82310.347501: cpu_frequency: state=748800 cpu_id=2
16633         sugov:0-576   (  576) [002] .... 82310.347506: cpu_frequency: state=748800 cpu_id=3
16634         sugov:0-576   (  576) [002] d..2 82310.347714: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16635          <idle>-0     (-----) [002] d..2 82310.347740: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16636          <idle>-0     (-----) [002] dn.3 82310.347773: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16637          <idle>-0     (-----) [002] d..2 82310.347792: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
16638     ksoftirqd/2-26    (   26) [002] d.s2 82310.347871: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16639 RxSchedulerPurg-25567 (25538) [000] d..2 82310.347907: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16640          <idle>-0     (-----) [000] d..2 82310.347925: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16641     ksoftirqd/2-26    (   26) [002] d.s3 82310.347935: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16642          <idle>-0     (-----) [000] dn.3 82310.347974: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16643     ksoftirqd/2-26    (   26) [002] d.s2 82310.347982: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
16644          <idle>-0     (-----) [000] d..2 82310.347997: 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
16645     ksoftirqd/2-26    (   26) [002] d.s3 82310.348027: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
16646     ksoftirqd/2-26    (   26) [002] d.s2 82310.348043: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16647     ksoftirqd/0-3     (    3) [000] d..2 82310.348047: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16648     ksoftirqd/2-26    (   26) [002] d.s3 82310.348092: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16649     ksoftirqd/2-26    (   26) [002] d.s2 82310.348107: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
16650<...>-1054 ( 1054) [000] d..2 82310.348114: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16651     ksoftirqd/2-26    (   26) [002] d.s3 82310.348146: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
16652     ksoftirqd/2-26    (   26) [002] d..2 82310.348167: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
16653     kworker/0:1-25262 (25262) [000] d..2 82310.348170: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16654     kworker/2:1-25259 (25259) [002] d..2 82310.348215: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16655          <idle>-0     (-----) [002] d..1 82310.348286: cpu_idle: state=2 cpu_id=2
16656          <idle>-0     (-----) [001] .n.1 82310.348535: cpu_idle: state=4294967295 cpu_id=1
16657          <idle>-0     (-----) [001] d..2 82310.348595: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
16658     kworker/1:1-25249 (25249) [001] d..2 82310.348681: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16659          <idle>-0     (-----) [001] d..1 82310.348710: cpu_idle: state=2 cpu_id=1
16660          <idle>-0     (-----) [002] ...1 82310.349014: cpu_idle: state=4294967295 cpu_id=2
16661          <idle>-0     (-----) [002] d..1 82310.349026: cpu_idle: state=2 cpu_id=2
16662<...>-1054 ( 1054) [000] d..2 82310.349374: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16663          <idle>-0     (-----) [000] d..1 82310.349406: cpu_idle: state=2 cpu_id=0
16664          <idle>-0     (-----) [007] d.H3 82310.663928: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
16665          <idle>-0     (-----) [007] d.s3 82310.664045: sched_waking: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
16666          <idle>-0     (-----) [000] ...1 82310.664093: cpu_idle: state=4294967295 cpu_id=0
16667          <idle>-0     (-----) [007] dns4 82310.664112: sched_wakeup: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
16668          <idle>-0     (-----) [007] dns3 82310.664133: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16669          <idle>-0     (-----) [000] d..1 82310.664173: cpu_idle: state=2 cpu_id=0
16670          <idle>-0     (-----) [007] .n.1 82310.664283: cpu_idle: state=4294967295 cpu_id=7
16671          <idle>-0     (-----) [007] d..2 82310.664342: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/7:3 next_pid=442 next_prio=120
16672          <idle>-0     (-----) [002] dnh2 82310.664426: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
16673          <idle>-0     (-----) [002] .n.1 82310.664451: cpu_idle: state=4294967295 cpu_id=2
16674     kworker/7:3-442   (  442) [007] d..2 82310.664470: sched_switch: prev_comm=kworker/7:3 prev_pid=442 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
16675          <idle>-0     (-----) [002] d..2 82310.664491: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
16676          <idle>-0     (-----) [007] d..1 82310.664497: cpu_idle: state=2 cpu_id=7
16677         sugov:0-576   (  576) [002] .... 82310.664637: clk_set_rate: pwrcl_clk 652800000
16678         sugov:0-576   (  576) [002] .... 82310.664738: clk_set_rate: cpu3_pwrcl_clk 748800000
16679         sugov:0-576   (  576) [002] .... 82310.664757: clk_set_rate: cpu2_pwrcl_clk 748800000
16680         sugov:0-576   (  576) [002] .... 82310.664768: clk_set_rate: cpu1_pwrcl_clk 748800000
16681         sugov:0-576   (  576) [002] .... 82310.664779: clk_set_rate: cpu0_pwrcl_clk 652800000
16682          <idle>-0     (-----) [000] dnh2 82310.664870: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16683          <idle>-0     (-----) [000] .n.1 82310.664884: cpu_idle: state=4294967295 cpu_id=0
16684         sugov:0-576   (  576) [002] .... 82310.664904: cpu_frequency: state=652800 cpu_id=0
16685          <idle>-0     (-----) [000] d..2 82310.664922: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16686         sugov:0-576   (  576) [002] .... 82310.665008: cpu_frequency: state=652800 cpu_id=1
16687         sugov:0-576   (  576) [002] .... 82310.665015: cpu_frequency: state=652800 cpu_id=2
16688         sugov:0-576   (  576) [002] .... 82310.665020: cpu_frequency: state=652800 cpu_id=3
16689         sugov:0-576   (  576) [002] d..2 82310.665116: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16690          <idle>-0     (-----) [002] d..1 82310.665237: cpu_idle: state=2 cpu_id=2
16691<...>-1054 ( 1054) [000] d..2 82310.666175: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
16692          <idle>-0     (-----) [000] d..1 82310.666199: cpu_idle: state=2 cpu_id=0
16693          <idle>-0     (-----) [001] d.s3 82310.666621: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16694          <idle>-0     (-----) [001] d.s4 82310.666668: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
16695          <idle>-0     (-----) [001] d.s4 82310.666690: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16696          <idle>-0     (-----) [001] ...1 82310.666718: cpu_idle: state=4294967295 cpu_id=1
16697          <idle>-0     (-----) [001] d..1 82310.666738: cpu_idle: state=2 cpu_id=1
16698          <idle>-0     (-----) [000] .n.1 82310.667013: cpu_idle: state=4294967295 cpu_id=0
16699          <idle>-0     (-----) [000] d..2 82310.667044: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16700<...>-1054 ( 1054) [000] d..2 82310.667204: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16701          <idle>-0     (-----) [000] d..1 82310.667224: cpu_idle: state=2 cpu_id=0
16702          <idle>-0     (-----) [002] d..2 82310.771188: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16703          <idle>-0     (-----) [000] ...1 82310.771326: cpu_idle: state=4294967295 cpu_id=0
16704          <idle>-0     (-----) [002] dn.3 82310.771378: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16705          <idle>-0     (-----) [000] d..1 82310.771407: cpu_idle: state=2 cpu_id=0
16706          <idle>-0     (-----) [002] dns3 82310.771753: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16707          <idle>-0     (-----) [002] dns4 82310.772015: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
16708          <idle>-0     (-----) [002] .n.1 82310.772145: cpu_idle: state=4294967295 cpu_id=2
16709          <idle>-0     (-----) [002] d..2 82310.772291: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
16710     ksoftirqd/2-26    (   26) [002] d..2 82310.772367: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16711<...>-1054 ( 1054) [002] d..2 82310.773718: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
16712          <idle>-0     (-----) [002] d..2 82310.773730: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16713          <idle>-0     (-----) [002] dn.3 82310.773746: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
16714          <idle>-0     (-----) [002] d..2 82310.773760: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
16715     ksoftirqd/2-26    (   26) [002] d..2 82310.773792: 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
16716          <idle>-0     (-----) [002] d..1 82310.773821: cpu_idle: state=2 cpu_id=2
16717          <idle>-0     (-----) [001] d.s3 82310.774070: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
16718          <idle>-0     (-----) [001] d.s4 82310.774118: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
16719          <idle>-0     (-----) [001] d.s4 82310.774147: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
16720          <idle>-0     (-----) [001] ...1 82310.774177: cpu_idle: state=4294967295 cpu_id=1
16721          <idle>-0     (-----) [001] d..1 82310.774198: cpu_idle: state=2 cpu_id=1
16722          <idle>-0     (-----) [002] .n.1 82310.774480: cpu_idle: state=4294967295 cpu_id=2
16723          <idle>-0     (-----) [002] d..2 82310.774513: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16724<...>-1054 ( 1054) [002] d..2 82310.774684: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16725          <idle>-0     (-----) [002] d..1 82310.774707: cpu_idle: state=2 cpu_id=2
16726          <idle>-0     (-----) [000] d.h2 82310.793409: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=000
16727          <idle>-0     (-----) [000] dnh3 82310.793733: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=000
16728          <idle>-0     (-----) [000] .n.1 82310.794375: cpu_idle: state=4294967295 cpu_id=0
16729          <idle>-0     (-----) [000] d..2 82310.794556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
16730 PowerManagerSer-8971  ( 8943) [000] d.s2 82310.795433: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
16731 PowerManagerSer-8971  ( 8943) [000] d.s3 82310.795660: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16732 PowerManagerSer-8971  ( 8943) [000] d.s2 82310.795703: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16733 PowerManagerSer-8971  ( 8943) [000] d.s3 82310.795748: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16734 PowerManagerSer-8971  ( 8943) [000] d..2 82310.796056: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16735     kworker/0:1-25262 (25262) [000] d..2 82310.796183: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16736<...>-1054 ( 1054) [000] d..2 82310.796851: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16737          <idle>-0     (-----) [000] d..1 82310.796942: cpu_idle: state=2 cpu_id=0
16738          <idle>-0     (-----) [003] d.h2 82310.834294: sched_waking: comm=CCodecWatchdog pid=10161 prio=120 target_cpu=003
16739          <idle>-0     (-----) [000] d..2 82310.834442: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16740          <idle>-0     (-----) [000] dn.3 82310.834580: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16741          <idle>-0     (-----) [003] dnh3 82310.834580: sched_wakeup: comm=CCodecWatchdog pid=10161 prio=120 target_cpu=003
16742          <idle>-0     (-----) [000] dns3 82310.834969: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16743          <idle>-0     (-----) [003] .n.1 82310.834982: cpu_idle: state=4294967295 cpu_id=3
16744          <idle>-0     (-----) [000] dns4 82310.835028: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16745          <idle>-0     (-----) [000] .n.1 82310.835071: cpu_idle: state=4294967295 cpu_id=0
16746          <idle>-0     (-----) [003] d..2 82310.835140: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=10161 next_prio=120
16747          <idle>-0     (-----) [000] d..2 82310.835140: 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
16748     ksoftirqd/0-3     (    3) [000] d..2 82310.835399: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16749  CCodecWatchdog-10161 ( 9748) [003] d..2 82310.835984: sched_switch: prev_comm=CCodecWatchdog prev_pid=10161 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16750          <idle>-0     (-----) [003] d..1 82310.836116: cpu_idle: state=2 cpu_id=3
16751<...>-1054 ( 1054) [000] d..2 82310.836326: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16752          <idle>-0     (-----) [000] d..1 82310.836362: cpu_idle: state=2 cpu_id=0
16753          <idle>-0     (-----) [004] d.h2 82310.997024: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
16754          <idle>-0     (-----) [004] dnh3 82310.997203: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
16755          <idle>-0     (-----) [000] d..2 82310.997427: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16756          <idle>-0     (-----) [004] .n.1 82310.997469: cpu_idle: state=4294967295 cpu_id=4
16757          <idle>-0     (-----) [000] dn.3 82310.997486: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16758          <idle>-0     (-----) [004] d..2 82310.997567: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
16759          <idle>-0     (-----) [000] dns3 82310.997637: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16760          <idle>-0     (-----) [000] dns4 82310.997703: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16761          <idle>-0     (-----) [000] dns3 82310.997743: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16762          <idle>-0     (-----) [000] dns4 82310.997773: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16763          <idle>-0     (-----) [000] .n.1 82310.997793: cpu_idle: state=4294967295 cpu_id=0
16764          <idle>-0     (-----) [000] d..2 82310.997846: 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
16765     ksoftirqd/0-3     (    3) [000] d..2 82310.997896: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16766     kworker/0:1-25262 (25262) [000] d..2 82310.998003: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16767 s.nexuslauncher-10023 (10023) [004] .... 82310.998205: binder_transaction: transaction=1568190 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
16768 s.nexuslauncher-10023 (10023) [004] .... 82310.998235: binder_transaction_alloc_buf: transaction=1568190 data_size=80 offsets_size=0
16769 s.nexuslauncher-10023 (10023) [004] d..4 82310.998288: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
16770          <idle>-0     (-----) [001] dnh2 82310.998763: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
16771          <idle>-0     (-----) [001] .n.1 82310.998788: cpu_idle: state=4294967295 cpu_id=1
16772 s.nexuslauncher-10023 (10023) [004] d..2 82310.998796: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16773          <idle>-0     (-----) [001] d..2 82310.998834: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
16774          <idle>-0     (-----) [004] d..1 82310.998847: cpu_idle: state=2 cpu_id=4
16775<...>-8874 ( 8858) [001] .... 82310.998881: binder_transaction_received: transaction=1568190
16776<...>-1054 ( 1054) [000] d..2 82310.998924: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16777          <idle>-0     (-----) [000] d..1 82310.998961: cpu_idle: state=2 cpu_id=0
16778<...>-8874 ( 8858) [001] ...1 82310.999308: tracing_mark_write: B|8858|HIDL::IComposerClient::getActiveConfig::client
16779<...>-8874 ( 8858) [001] ...1 82310.999350: tracing_mark_write: E|8858
16780<...>-8874 ( 8858) [001] .... 82310.999533: binder_transaction: transaction=1568191 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x7
16781<...>-8874 ( 8858) [001] .... 82310.999547: binder_transaction_alloc_buf: transaction=1568191 data_size=64 offsets_size=0
16782<...>-8874 ( 8858) [001] ...2 82310.999583: binder_set_priority: proc=619 thread=619 old=97 => new=120 desired=120
16783<...>-8874 ( 8858) [001] d..4 82310.999651: sched_waking: [email protected] pid=619 prio=120 target_cpu=002
16784<...>-8874 ( 8858) [001] d..5 82310.999710: sched_wakeup: [email protected] pid=619 prio=120 target_cpu=001
16785<...>-8874 ( 8858) [001] d..2 82310.999744: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=120
16786 [email protected]   (  619) [001] .... 82310.999777: binder_transaction_received: transaction=1568191
16787 [email protected]   (  619) [001] ...1 82311.000024: tracing_mark_write: B|619|HIDL::IComposerClient::getActiveConfig::server
16788 [email protected]   (  619) [001] ...1 82311.000185: tracing_mark_write: E|619
16789 [email protected]   (  619) [001] .... 82311.000233: binder_transaction: transaction=1568192 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
16790 [email protected]   (  619) [001] .... 82311.000240: binder_transaction_alloc_buf: transaction=1568192 data_size=12 offsets_size=0
16791 [email protected]   (  619) [001] d..2 82311.000253: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
16792 [email protected]   (  619) [001] dn.3 82311.000286: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
16793 [email protected]   (  619) [001] d..2 82311.000306: sched_switch: [email protected] prev_pid=619 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
16794<...>-8874 ( 8858) [001] .... 82311.000325: binder_transaction_received: transaction=1568192
16795<...>-8874 ( 8858) [001] d..1 82311.000464: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
16796<...>-8874 ( 8858) [001] d..2 82311.000575: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
16797<...>-8874 ( 8858) [001] d..1 82311.000605: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
16798<...>-8874 ( 8858) [001] d..2 82311.000652: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
16799<...>-8874 ( 8858) [001] d..1 82311.000669: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
16800<...>-8874 ( 8858) [001] d..2 82311.000716: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
16801<...>-8874 ( 8858) [001] d..2 82311.000798: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=120
16802 [email protected]   (  619) [001] .... 82311.000807: binder_set_priority: proc=619 thread=619 old=120 => new=97 desired=97
16803          <idle>-0     (-----) [000] .n.1 82311.000898: cpu_idle: state=4294967295 cpu_id=0
16804          <idle>-0     (-----) [000] d..2 82311.000927: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
16805 [email protected]   (  619) [001] d..2 82311.000964: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16806          <idle>-0     (-----) [001] d..1 82311.001001: cpu_idle: state=2 cpu_id=1
16807          <idle>-0     (-----) [002] .n.1 82311.001059: cpu_idle: state=4294967295 cpu_id=2
16808        DispSync-8879  ( 8858) [000] d..2 82311.001060: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16809          <idle>-0     (-----) [000] d..1 82311.001083: cpu_idle: state=2 cpu_id=0
16810          <idle>-0     (-----) [002] d..2 82311.001116: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
16811          <idle>-0     (-----) [003] .n.1 82311.001140: cpu_idle: state=4294967295 cpu_id=3
16812          <idle>-0     (-----) [003] d..2 82311.001185: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
16813<...>-8894 ( 8858) [002] ...1 82311.001201: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
16814<...>-8894 ( 8858) [002] ...1 82311.001213: tracing_mark_write: E|8858
16815<...>-8894 ( 8858) [002] .... 82311.001273: binder_transaction: transaction=1568193 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
16816<...>-8894 ( 8858) [002] .... 82311.001280: binder_transaction_alloc_buf: transaction=1568193 data_size=68 offsets_size=0
16817<...>-8894 ( 8858) [002] ...2 82311.001288: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
16818<...>-8894 ( 8858) [002] d..4 82311.001300: sched_waking: [email protected] pid=619 prio=112 target_cpu=001
16819  appEventThread-8881  ( 8858) [003] d..1 82311.001335: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
16820<...>-8894 ( 8858) [002] d..5 82311.001337: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=002
16821<...>-8894 ( 8858) [002] d..2 82311.001363: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
16822  appEventThread-8881  ( 8858) [003] d..2 82311.001365: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
16823 [email protected]   (  619) [002] .... 82311.001375: binder_transaction_received: transaction=1568193
16824 [email protected]   (  619) [002] ...1 82311.001427: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
16825 [email protected]   (  619) [002] ...1 82311.001465: tracing_mark_write: C|619|SetVsyncState |1
16826  appEventThread-8881  ( 8858) [003] d..2 82311.001491: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16827          <idle>-0     (-----) [003] d..1 82311.001520: cpu_idle: state=2 cpu_id=3
16828 [email protected]   (  619) [002] d..4 82311.001559: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16829 [email protected]   (  619) [002] d..5 82311.001603: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16830 [email protected]   (  619) [002] ...1 82311.001666: tracing_mark_write: E|619
16831 [email protected]   (  619) [002] .... 82311.001685: binder_transaction: transaction=1568194 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
16832 [email protected]   (  619) [002] .... 82311.001691: binder_transaction_alloc_buf: transaction=1568194 data_size=8 offsets_size=0
16833 [email protected]   (  619) [002] d..2 82311.001697: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
16834          <idle>-0     (-----) [000] .n.1 82311.001703: cpu_idle: state=4294967295 cpu_id=0
16835 [email protected]   (  619) [002] dn.3 82311.001721: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
16836          <idle>-0     (-----) [000] d..2 82311.001730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
16837 [email protected]   (  619) [002] d..2 82311.001735: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
16838<...>-8894 ( 8858) [002] .... 82311.001749: binder_transaction_received: transaction=1568194
16839        DispSync-8879  ( 8858) [000] d..2 82311.001801: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16840          <idle>-0     (-----) [000] d..1 82311.001879: cpu_idle: state=2 cpu_id=0
16841<...>-8894 ( 8858) [002] d..2 82311.001950: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
16842 [email protected]   (  619) [002] .... 82311.001960: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
16843          <idle>-0     (-----) [003] .n.1 82311.001998: cpu_idle: state=4294967295 cpu_id=3
16844          <idle>-0     (-----) [003] d..2 82311.002032: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16845 [email protected]   (  619) [002] d..2 82311.002065: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16846          <idle>-0     (-----) [002] d..1 82311.002094: cpu_idle: state=2 cpu_id=2
16847 crtc_commit:111-321   (  321) [003] d..2 82311.002763: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16848          <idle>-0     (-----) [003] d..1 82311.002784: cpu_idle: state=2 cpu_id=3
16849          <idle>-0     (-----) [001] d.s3 82311.003325: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16850          <idle>-0     (-----) [001] d.s4 82311.003355: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16851          <idle>-0     (-----) [001] ...1 82311.003375: cpu_idle: state=4294967295 cpu_id=1
16852          <idle>-0     (-----) [001] d..1 82311.003385: cpu_idle: state=2 cpu_id=1
16853          <idle>-0     (-----) [003] .n.1 82311.003687: cpu_idle: state=4294967295 cpu_id=3
16854          <idle>-0     (-----) [003] d..2 82311.003712: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16855 crtc_commit:111-321   (  321) [003] d..2 82311.004099: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16856          <idle>-0     (-----) [003] d..1 82311.004121: cpu_idle: state=2 cpu_id=3
16857          <idle>-0     (-----) [001] d.s3 82311.004455: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16858          <idle>-0     (-----) [001] d.s4 82311.004484: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16859          <idle>-0     (-----) [001] ...1 82311.004501: cpu_idle: state=4294967295 cpu_id=1
16860          <idle>-0     (-----) [001] d..1 82311.004511: cpu_idle: state=2 cpu_id=1
16861          <idle>-0     (-----) [003] .n.1 82311.004807: cpu_idle: state=4294967295 cpu_id=3
16862          <idle>-0     (-----) [003] d..2 82311.004832: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16863 crtc_commit:111-321   (  321) [003] d..1 82311.005044: clk_enable: disp_cc_mdss_vsync_clk_src
16864 crtc_commit:111-321   (  321) [003] d..1 82311.005057: clk_enable: disp_cc_mdss_rscc_vsync_clk
16865 crtc_commit:111-321   (  321) [003] d.s3 82311.005205: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16866 crtc_commit:111-321   (  321) [003] d.s4 82311.005299: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
16867 crtc_commit:111-321   (  321) [003] d..1 82311.005319: clk_enable: disp_cc_mdss_rscc_ahb_clk
16868 crtc_commit:111-321   (  321) [003] d..2 82311.005408: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16869<...>-1054 ( 1054) [003] d..2 82311.005506: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16870          <idle>-0     (-----) [003] d.h3 82311.005521: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16871          <idle>-0     (-----) [003] dnh4 82311.005537: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16872          <idle>-0     (-----) [003] d..2 82311.005554: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16873 crtc_commit:111-321   (  321) [003] d..2 82311.005585: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16874          <idle>-0     (-----) [003] d..1 82311.005604: cpu_idle: state=0 cpu_id=3
16875          <idle>-0     (-----) [003] d.h2 82311.005682: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16876          <idle>-0     (-----) [003] dnh3 82311.005695: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16877          <idle>-0     (-----) [003] .n.1 82311.005705: cpu_idle: state=4294967295 cpu_id=3
16878          <idle>-0     (-----) [003] d..2 82311.005718: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16879 crtc_commit:111-321   (  321) [003] d..1 82311.005787: clk_enable: gcc_disp_axi_clk
16880 crtc_commit:111-321   (  321) [003] d..1 82311.005822: clk_enable: disp_cc_mdss_ahb_clk
16881 crtc_commit:111-321   (  321) [003] d..1 82311.005844: clk_enable: disp_cc_mdss_axi_clk
16882 crtc_commit:111-321   (  321) [003] d..1 82311.005885: clk_enable: gcc_disp_gpll0_clk_src
16883 crtc_commit:111-321   (  321) [003] d..1 82311.006409: clk_enable: disp_cc_mdss_mdp_clk_src
16884 crtc_commit:111-321   (  321) [003] d..1 82311.006469: clk_enable: disp_cc_mdss_mdp_clk
16885 crtc_commit:111-321   (  321) [003] d..1 82311.006487: clk_enable: disp_cc_mdss_vsync_clk
16886 crtc_commit:111-321   (  321) [003] d..2 82311.006919: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16887          <idle>-0     (-----) [003] d..1 82311.006950: cpu_idle: state=0 cpu_id=3
16888          <idle>-0     (-----) [003] d..2 82311.008500: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16889          <idle>-0     (-----) [003] dn.3 82311.008532: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
16890          <idle>-0     (-----) [003] .n.1 82311.008538: cpu_idle: state=4294967295 cpu_id=3
16891          <idle>-0     (-----) [003] d..2 82311.008559: 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
16892     ksoftirqd/3-34    (   34) [003] d.s2 82311.008585: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
16893     ksoftirqd/3-34    (   34) [003] d.s3 82311.008615: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
16894     ksoftirqd/3-34    (   34) [003] d..2 82311.008637: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16895<...>-1054 ( 1054) [003] d..2 82311.008724: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16896          <idle>-0     (-----) [003] d..1 82311.008742: cpu_idle: state=2 cpu_id=3
16897          <idle>-0     (-----) [000] d.h2 82311.015600: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
16898          <idle>-0     (-----) [000] dnh3 82311.015632: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
16899          <idle>-0     (-----) [000] .n.1 82311.015724: cpu_idle: state=4294967295 cpu_id=0
16900          <idle>-0     (-----) [000] d..2 82311.015746: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
16901        DispSync-8879  ( 8858) [000] d..1 82311.015784: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
16902        DispSync-8879  ( 8858) [000] d..2 82311.015811: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
16903        DispSync-8879  ( 8858) [000] d..2 82311.015869: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16904          <idle>-0     (-----) [000] d..2 82311.015875: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16905          <idle>-0     (-----) [000] dn.3 82311.015890: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
16906          <idle>-0     (-----) [000] d..2 82311.015904: 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
16907     ksoftirqd/0-3     (    3) [000] d.s2 82311.015918: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
16908     ksoftirqd/0-3     (    3) [000] d.s3 82311.015973: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16909     ksoftirqd/0-3     (    3) [000] d..2 82311.015990: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16910<...>-1054 ( 1054) [000] d..2 82311.016067: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16911          <idle>-0     (-----) [000] d..1 82311.016088: cpu_idle: state=2 cpu_id=0
16912          <idle>-0     (-----) [003] .n.1 82311.016109: cpu_idle: state=4294967295 cpu_id=3
16913          <idle>-0     (-----) [003] d..2 82311.016142: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
16914  appEventThread-8881  ( 8858) [003] d..3 82311.016302: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
16915  appEventThread-8881  ( 8858) [003] d..2 82311.016390: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
16916          <idle>-0     (-----) [003] d..1 82311.016416: cpu_idle: state=0 cpu_id=3
16917          <idle>-0     (-----) [004] dnh2 82311.017409: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
16918          <idle>-0     (-----) [004] .n.1 82311.017419: cpu_idle: state=4294967295 cpu_id=4
16919          <idle>-0     (-----) [004] d..2 82311.017436: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
16920          <idle>-0     (-----) [003] ...1 82311.017963: cpu_idle: state=4294967295 cpu_id=3
16921          <idle>-0     (-----) [003] d..1 82311.017969: cpu_idle: state=2 cpu_id=3
16922 s.nexuslauncher-10023 (10023) [004] d..2 82311.017987: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
16923          <idle>-0     (-----) [004] d..1 82311.018004: cpu_idle: state=2 cpu_id=4
16924          <idle>-0     (-----) [000] d.h7 82311.027004: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16925          <idle>-0     (-----) [000] dnh8 82311.027198: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
16926          <idle>-0     (-----) [000] dnh9 82311.027283: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16927          <idle>-0     (-----) [000] dnha 82311.027428: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16928          <idle>-0     (-----) [000] dnh7 82311.027450: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
16929          <idle>-0     (-----) [000] dnh8 82311.027618: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
16930          <idle>-0     (-----) [003] .n.1 82311.027838: cpu_idle: state=4294967295 cpu_id=3
16931          <idle>-0     (-----) [000] .n.1 82311.027843: cpu_idle: state=4294967295 cpu_id=0
16932          <idle>-0     (-----) [003] d..2 82311.027963: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16933          <idle>-0     (-----) [000] d..2 82311.027966: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
16934     kworker/0:1-25262 (25262) [000] d..2 82311.028059: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
16935 crtc_commit:111-321   (  321) [003] d..1 82311.028155: clk_disable: disp_cc_mdss_vsync_clk
16936 crtc_commit:111-321   (  321) [003] d..1 82311.028235: clk_disable: disp_cc_mdss_mdp_clk
16937 crtc_commit:111-321   (  321) [003] d..1 82311.028252: clk_disable: disp_cc_mdss_mdp_clk_src
16938 crtc_commit:111-321   (  321) [003] d..1 82311.028305: clk_disable: gcc_disp_gpll0_clk_src
16939 SDM_EventThread-644   (  619) [000] ...1 82311.028397: tracing_mark_write: B|619|HWCCallbacks::Vsync::
16940 SDM_EventThread-644   (  619) [000] d.s2 82311.028673: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16941 SDM_EventThread-644   (  619) [000] d.s3 82311.028730: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
16942 SDM_EventThread-644   (  619) [000] ...1 82311.028780: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
16943 SDM_EventThread-644   (  619) [000] ...1 82311.028793: tracing_mark_write: E|619
16944 SDM_EventThread-644   (  619) [000] .... 82311.028991: binder_transaction: transaction=1568195 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
16945 SDM_EventThread-644   (  619) [000] .... 82311.029023: binder_transaction_alloc_buf: transaction=1568195 data_size=76 offsets_size=0
16946 crtc_commit:111-321   (  321) [003] d..1 82311.029036: clk_disable: disp_cc_mdss_axi_clk
16947 SDM_EventThread-644   (  619) [000] d..4 82311.029059: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
16948 crtc_commit:111-321   (  321) [003] d..1 82311.029060: clk_disable: disp_cc_mdss_ahb_clk
16949 crtc_commit:111-321   (  321) [003] d..1 82311.029079: clk_disable: gcc_disp_axi_clk
16950 SDM_EventThread-644   (  619) [000] d..5 82311.029118: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
16951 SDM_EventThread-644   (  619) [000] ...1 82311.029245: tracing_mark_write: E|619
16952 crtc_commit:111-321   (  321) [003] d..2 82311.029317: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16953          <idle>-0     (-----) [003] d.h3 82311.029334: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16954          <idle>-0     (-----) [003] dnh4 82311.029352: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16955          <idle>-0     (-----) [003] d..2 82311.029368: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16956 SDM_EventThread-644   (  619) [000] d..2 82311.029370: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
16957 crtc_commit:111-321   (  321) [003] d..1 82311.029407: clk_disable: disp_cc_mdss_rscc_ahb_clk
16958 crtc_commit:111-321   (  321) [003] d..1 82311.029429: clk_disable: disp_cc_mdss_rscc_vsync_clk
16959 crtc_commit:111-321   (  321) [003] d..1 82311.029444: clk_disable: disp_cc_mdss_vsync_clk_src
16960          <idle>-0     (-----) [001] .n.1 82311.029478: cpu_idle: state=4294967295 cpu_id=1
16961          <idle>-0     (-----) [001] d..2 82311.029538: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
16962<...>-8890 ( 8858) [001] .... 82311.029580: binder_transaction_received: transaction=1568195
16963<...>-8890 ( 8858) [001] ...1 82311.029862: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
16964<...>-8890 ( 8858) [001] d..1 82311.029929: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
16965<...>-8890 ( 8858) [001] d..2 82311.029997: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
16966 crtc_commit:111-321   (  321) [003] d..2 82311.029999: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16967<...>-1054 ( 1054) [000] d..2 82311.030035: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16968          <idle>-0     (-----) [003] d..1 82311.030071: cpu_idle: state=2 cpu_id=3
16969          <idle>-0     (-----) [000] d..1 82311.030072: cpu_idle: state=0 cpu_id=0
16970<...>-8890 ( 8858) [001] d.s3 82311.030094: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16971<...>-8890 ( 8858) [001] d.s4 82311.030115: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16972<...>-8890 ( 8858) [001] ...1 82311.030149: tracing_mark_write: E|8858
16973<...>-8890 ( 8858) [001] d..2 82311.030312: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
16974          <idle>-0     (-----) [001] d..1 82311.030343: cpu_idle: state=2 cpu_id=1
16975          <idle>-0     (-----) [002] .n.1 82311.030388: cpu_idle: state=4294967295 cpu_id=2
16976          <idle>-0     (-----) [002] d..2 82311.030432: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
16977        DispSync-8879  ( 8858) [002] d..1 82311.030566: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
16978        DispSync-8879  ( 8858) [002] d..2 82311.030612: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
16979          <idle>-0     (-----) [000] .n.1 82311.030623: cpu_idle: state=4294967295 cpu_id=0
16980          <idle>-0     (-----) [000] d..2 82311.030640: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
16981        DispSync-8879  ( 8858) [002] d..2 82311.030720: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16982          <idle>-0     (-----) [002] d..1 82311.030749: cpu_idle: state=2 cpu_id=2
16983          <idle>-0     (-----) [003] .n.1 82311.030761: cpu_idle: state=4294967295 cpu_id=3
16984          <idle>-0     (-----) [003] d..2 82311.030788: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
16985  appEventThread-8881  ( 8858) [000] d..1 82311.030821: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
16986  appEventThread-8881  ( 8858) [000] d..2 82311.030848: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
16987  appEventThread-8881  ( 8858) [000] d..2 82311.030905: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
16988          <idle>-0     (-----) [000] d..1 82311.030925: cpu_idle: state=2 cpu_id=0
16989 crtc_commit:111-321   (  321) [003] d..2 82311.031165: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
16990          <idle>-0     (-----) [003] d..1 82311.031187: cpu_idle: state=2 cpu_id=3
16991          <idle>-0     (-----) [002] .n.1 82311.031189: cpu_idle: state=4294967295 cpu_id=2
16992          <idle>-0     (-----) [002] d..2 82311.031218: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
16993        DispSync-8879  ( 8858) [002] d..2 82311.031283: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
16994          <idle>-0     (-----) [002] d..1 82311.031305: cpu_idle: state=2 cpu_id=2
16995          <idle>-0     (-----) [001] d.s3 82311.031544: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16996          <idle>-0     (-----) [001] d.s4 82311.031573: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
16997          <idle>-0     (-----) [001] ...1 82311.031592: cpu_idle: state=4294967295 cpu_id=1
16998          <idle>-0     (-----) [001] d..1 82311.031602: cpu_idle: state=2 cpu_id=1
16999          <idle>-0     (-----) [003] .n.1 82311.031919: cpu_idle: state=4294967295 cpu_id=3
17000          <idle>-0     (-----) [003] d..2 82311.031969: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17001 crtc_commit:111-321   (  321) [003] d.h4 82311.032230: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
17002 crtc_commit:111-321   (  321) [003] d.h5 82311.032264: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
17003          <idle>-0     (-----) [000] d..2 82311.032302: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17004          <idle>-0     (-----) [000] dn.3 82311.032339: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17005 crtc_commit:111-321   (  321) [003] d..3 82311.032344: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17006          <idle>-0     (-----) [000] .n.1 82311.032349: cpu_idle: state=4294967295 cpu_id=0
17007 crtc_commit:111-321   (  321) [003] d..4 82311.032377: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17008          <idle>-0     (-----) [000] d..2 82311.032393: 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
17009     ksoftirqd/0-3     (    3) [000] d..2 82311.032439: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17010          <idle>-0     (-----) [002] .n.1 82311.032583: cpu_idle: state=4294967295 cpu_id=2
17011 SDM_EventThread-644   (  619) [000] d..2 82311.032602: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17012          <idle>-0     (-----) [002] d..2 82311.032615: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
17013          <idle>-0     (-----) [000] d..1 82311.032624: cpu_idle: state=2 cpu_id=0
17014 crtc_commit:111-321   (  321) [003] d..2 82311.032666: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17015          <idle>-0     (-----) [003] d..1 82311.032693: cpu_idle: state=2 cpu_id=3
17016         sugov:0-576   (  576) [002] .... 82311.032748: clk_set_rate: pwrcl_clk 748800000
17017         sugov:0-576   (  576) [002] .... 82311.032791: clk_set_rate: cpu3_pwrcl_clk 652800000
17018         sugov:0-576   (  576) [002] .... 82311.032812: clk_set_rate: cpu2_pwrcl_clk 652800000
17019         sugov:0-576   (  576) [002] .... 82311.032822: clk_set_rate: cpu1_pwrcl_clk 652800000
17020         sugov:0-576   (  576) [002] .... 82311.032833: clk_set_rate: cpu0_pwrcl_clk 748800000
17021         sugov:0-576   (  576) [002] .... 82311.032852: cpu_frequency: state=748800 cpu_id=0
17022         sugov:0-576   (  576) [002] .... 82311.032935: cpu_frequency: state=748800 cpu_id=1
17023         sugov:0-576   (  576) [002] .... 82311.032941: cpu_frequency: state=748800 cpu_id=2
17024         sugov:0-576   (  576) [002] .... 82311.032947: cpu_frequency: state=748800 cpu_id=3
17025         sugov:0-576   (  576) [002] d..2 82311.032995: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17026          <idle>-0     (-----) [002] d..1 82311.033012: cpu_idle: state=2 cpu_id=2
17027          <idle>-0     (-----) [001] d.s3 82311.033175: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17028          <idle>-0     (-----) [001] d.s4 82311.033201: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17029          <idle>-0     (-----) [001] ...1 82311.033218: cpu_idle: state=4294967295 cpu_id=1
17030          <idle>-0     (-----) [001] d..1 82311.033227: cpu_idle: state=2 cpu_id=1
17031          <idle>-0     (-----) [003] .n.1 82311.033528: cpu_idle: state=4294967295 cpu_id=3
17032          <idle>-0     (-----) [003] d..2 82311.033553: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17033 crtc_commit:111-321   (  321) [003] d..2 82311.033777: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17034          <idle>-0     (-----) [003] d..1 82311.033797: cpu_idle: state=2 cpu_id=3
17035          <idle>-0     (-----) [001] d.s3 82311.034125: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17036          <idle>-0     (-----) [001] d.s4 82311.034151: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17037          <idle>-0     (-----) [001] ...1 82311.034169: cpu_idle: state=4294967295 cpu_id=1
17038          <idle>-0     (-----) [001] d..1 82311.034185: cpu_idle: state=2 cpu_id=1
17039          <idle>-0     (-----) [003] .n.1 82311.034481: cpu_idle: state=4294967295 cpu_id=3
17040          <idle>-0     (-----) [003] d..2 82311.034505: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17041 crtc_commit:111-321   (  321) [003] d..1 82311.034579: clk_enable: disp_cc_mdss_vsync_clk_src
17042 crtc_commit:111-321   (  321) [003] d..1 82311.034585: clk_enable: disp_cc_mdss_rscc_vsync_clk
17043 crtc_commit:111-321   (  321) [003] d..1 82311.034613: clk_enable: disp_cc_mdss_rscc_ahb_clk
17044 crtc_commit:111-321   (  321) [003] d..2 82311.034705: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17045          <idle>-0     (-----) [003] d..1 82311.034721: cpu_idle: state=0 cpu_id=3
17046          <idle>-0     (-----) [003] d.h2 82311.034790: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17047          <idle>-0     (-----) [003] dnh3 82311.034812: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17048          <idle>-0     (-----) [003] .n.1 82311.034823: cpu_idle: state=4294967295 cpu_id=3
17049          <idle>-0     (-----) [003] d..2 82311.034836: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17050 crtc_commit:111-321   (  321) [003] d..2 82311.034868: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17051          <idle>-0     (-----) [003] d..1 82311.034878: cpu_idle: state=0 cpu_id=3
17052          <idle>-0     (-----) [003] d.h2 82311.034962: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17053          <idle>-0     (-----) [003] dnh3 82311.034975: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17054          <idle>-0     (-----) [003] .n.1 82311.034985: cpu_idle: state=4294967295 cpu_id=3
17055          <idle>-0     (-----) [003] d..2 82311.034996: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17056 crtc_commit:111-321   (  321) [003] d..1 82311.035043: clk_enable: gcc_disp_axi_clk
17057 crtc_commit:111-321   (  321) [003] d..1 82311.035057: clk_enable: disp_cc_mdss_ahb_clk
17058 crtc_commit:111-321   (  321) [003] d..1 82311.035072: clk_enable: disp_cc_mdss_axi_clk
17059 crtc_commit:111-321   (  321) [003] d..1 82311.035098: clk_enable: gcc_disp_gpll0_clk_src
17060 crtc_commit:111-321   (  321) [003] d..1 82311.035611: clk_enable: disp_cc_mdss_mdp_clk_src
17061 crtc_commit:111-321   (  321) [003] d..1 82311.035660: clk_enable: disp_cc_mdss_mdp_clk
17062 crtc_commit:111-321   (  321) [003] d..1 82311.035719: clk_enable: disp_cc_mdss_vsync_clk
17063 crtc_commit:111-321   (  321) [003] d..2 82311.036081: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17064          <idle>-0     (-----) [003] d..1 82311.036110: cpu_idle: state=0 cpu_id=3
17065          <idle>-0     (-----) [003] ...1 82311.037599: cpu_idle: state=4294967295 cpu_id=3
17066          <idle>-0     (-----) [003] d..1 82311.037605: cpu_idle: state=2 cpu_id=3
17067          <idle>-0     (-----) [000] d.h7 82311.041632: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17068          <idle>-0     (-----) [000] dnh8 82311.041655: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17069          <idle>-0     (-----) [000] dnh9 82311.041668: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17070          <idle>-0     (-----) [000] dnha 82311.041693: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17071          <idle>-0     (-----) [000] dnh7 82311.041698: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17072          <idle>-0     (-----) [000] dnh8 82311.041716: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17073          <idle>-0     (-----) [000] .n.1 82311.041819: cpu_idle: state=4294967295 cpu_id=0
17074          <idle>-0     (-----) [000] d..2 82311.041841: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
17075     kworker/0:1-25262 (25262) [000] d..2 82311.041860: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17076 SDM_EventThread-644   (  619) [000] ...1 82311.041906: tracing_mark_write: B|619|HWCCallbacks::Vsync::
17077 SDM_EventThread-644   (  619) [000] ...1 82311.041916: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
17078 SDM_EventThread-644   (  619) [000] ...1 82311.041923: tracing_mark_write: E|619
17079 SDM_EventThread-644   (  619) [000] .... 82311.041952: binder_transaction: transaction=1568196 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
17080 SDM_EventThread-644   (  619) [000] .... 82311.041958: binder_transaction_alloc_buf: transaction=1568196 data_size=76 offsets_size=0
17081 SDM_EventThread-644   (  619) [000] d..4 82311.041966: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
17082          <idle>-0     (-----) [003] .n.1 82311.041991: cpu_idle: state=4294967295 cpu_id=3
17083 SDM_EventThread-644   (  619) [000] d..5 82311.041992: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
17084          <idle>-0     (-----) [003] d..2 82311.042022: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17085 SDM_EventThread-644   (  619) [000] ...1 82311.042024: tracing_mark_write: E|619
17086 crtc_commit:111-321   (  321) [003] d..1 82311.042066: clk_disable: disp_cc_mdss_vsync_clk
17087 crtc_commit:111-321   (  321) [003] d..1 82311.042084: clk_disable: disp_cc_mdss_mdp_clk
17088 SDM_EventThread-644   (  619) [000] d..2 82311.042090: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17089 crtc_commit:111-321   (  321) [003] d..1 82311.042097: clk_disable: disp_cc_mdss_mdp_clk_src
17090          <idle>-0     (-----) [000] d..2 82311.042098: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17091          <idle>-0     (-----) [000] dn.3 82311.042110: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17092          <idle>-0     (-----) [000] d..2 82311.042124: 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
17093 crtc_commit:111-321   (  321) [003] d..1 82311.042133: clk_disable: gcc_disp_gpll0_clk_src
17094     ksoftirqd/0-3     (    3) [000] d.s2 82311.042136: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17095     ksoftirqd/0-3     (    3) [000] d.s3 82311.042158: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17096     ksoftirqd/0-3     (    3) [000] d..2 82311.042175: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17097          <idle>-0     (-----) [001] .n.1 82311.042301: cpu_idle: state=4294967295 cpu_id=1
17098          <idle>-0     (-----) [001] d..2 82311.042338: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
17099<...>-8890 ( 8858) [001] .... 82311.042351: binder_transaction_received: transaction=1568196
17100<...>-8890 ( 8858) [001] ...1 82311.042398: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
17101<...>-8890 ( 8858) [001] ...1 82311.042416: tracing_mark_write: E|8858
17102<...>-8890 ( 8858) [001] d..2 82311.042497: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17103          <idle>-0     (-----) [001] d..1 82311.042519: cpu_idle: state=2 cpu_id=1
17104 crtc_commit:111-321   (  321) [003] d..1 82311.042681: clk_disable: disp_cc_mdss_axi_clk
17105 crtc_commit:111-321   (  321) [003] d..1 82311.042698: clk_disable: disp_cc_mdss_ahb_clk
17106 crtc_commit:111-321   (  321) [003] d..1 82311.042711: clk_disable: gcc_disp_axi_clk
17107<...>-1054 ( 1054) [000] d..2 82311.042801: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17108          <idle>-0     (-----) [000] d..1 82311.042822: cpu_idle: state=2 cpu_id=0
17109 crtc_commit:111-321   (  321) [003] d..2 82311.042826: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17110          <idle>-0     (-----) [003] d..1 82311.042846: cpu_idle: state=0 cpu_id=3
17111          <idle>-0     (-----) [003] d.h2 82311.042896: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17112          <idle>-0     (-----) [003] dnh3 82311.042915: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17113          <idle>-0     (-----) [003] .n.1 82311.042926: cpu_idle: state=4294967295 cpu_id=3
17114          <idle>-0     (-----) [003] d..2 82311.042938: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17115 crtc_commit:111-321   (  321) [003] d..1 82311.042959: clk_disable: disp_cc_mdss_rscc_ahb_clk
17116 crtc_commit:111-321   (  321) [003] d..1 82311.042976: clk_disable: disp_cc_mdss_rscc_vsync_clk
17117 crtc_commit:111-321   (  321) [003] d..1 82311.042989: clk_disable: disp_cc_mdss_vsync_clk_src
17118 crtc_commit:111-321   (  321) [003] d..2 82311.043195: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17119          <idle>-0     (-----) [003] d..1 82311.043213: cpu_idle: state=2 cpu_id=3
17120          <idle>-0     (-----) [001] d.s3 82311.043543: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17121          <idle>-0     (-----) [001] d.s4 82311.043569: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17122          <idle>-0     (-----) [001] ...1 82311.043584: cpu_idle: state=4294967295 cpu_id=1
17123          <idle>-0     (-----) [001] d..1 82311.043594: cpu_idle: state=2 cpu_id=1
17124          <idle>-0     (-----) [003] .n.1 82311.043877: cpu_idle: state=4294967295 cpu_id=3
17125          <idle>-0     (-----) [003] d..2 82311.043901: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17126 crtc_commit:111-321   (  321) [003] d..2 82311.044136: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17127          <idle>-0     (-----) [003] d..1 82311.044156: cpu_idle: state=2 cpu_id=3
17128          <idle>-0     (-----) [001] d.s3 82311.044505: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17129          <idle>-0     (-----) [001] d.s4 82311.044531: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17130          <idle>-0     (-----) [001] ...1 82311.044547: cpu_idle: state=4294967295 cpu_id=1
17131          <idle>-0     (-----) [001] d..1 82311.044556: cpu_idle: state=2 cpu_id=1
17132          <idle>-0     (-----) [003] .n.1 82311.044855: cpu_idle: state=4294967295 cpu_id=3
17133          <idle>-0     (-----) [003] d..2 82311.044881: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17134 crtc_commit:111-321   (  321) [003] d..3 82311.044904: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17135 crtc_commit:111-321   (  321) [003] d..4 82311.044967: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
17136 crtc_commit:111-321   (  321) [003] d..2 82311.045250: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17137 SDM_EventThread-644   (  619) [003] d..2 82311.045339: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17138          <idle>-0     (-----) [003] d..1 82311.045360: cpu_idle: state=2 cpu_id=3
17139          <idle>-0     (-----) [001] d.s3 82311.045722: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17140          <idle>-0     (-----) [001] d.s4 82311.045749: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17141          <idle>-0     (-----) [001] ...1 82311.045764: cpu_idle: state=4294967295 cpu_id=1
17142          <idle>-0     (-----) [001] d..1 82311.045773: cpu_idle: state=2 cpu_id=1
17143          <idle>-0     (-----) [003] .n.1 82311.046074: cpu_idle: state=4294967295 cpu_id=3
17144          <idle>-0     (-----) [003] d..2 82311.046098: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17145 crtc_commit:111-321   (  321) [003] d..2 82311.046314: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17146          <idle>-0     (-----) [003] d..1 82311.046337: cpu_idle: state=0 cpu_id=3
17147          <idle>-0     (-----) [001] d.s3 82311.046682: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17148          <idle>-0     (-----) [001] d.s4 82311.046717: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17149          <idle>-0     (-----) [003] .n.1 82311.046725: cpu_idle: state=4294967295 cpu_id=3
17150          <idle>-0     (-----) [001] ...1 82311.046736: cpu_idle: state=4294967295 cpu_id=1
17151          <idle>-0     (-----) [003] d..2 82311.046740: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17152          <idle>-0     (-----) [001] d..1 82311.046756: cpu_idle: state=0 cpu_id=1
17153 crtc_commit:111-321   (  321) [003] d..1 82311.046773: clk_enable: disp_cc_mdss_vsync_clk_src
17154 crtc_commit:111-321   (  321) [003] d..1 82311.046775: clk_enable: disp_cc_mdss_rscc_vsync_clk
17155 crtc_commit:111-321   (  321) [003] d..1 82311.046799: clk_enable: disp_cc_mdss_rscc_ahb_clk
17156 crtc_commit:111-321   (  321) [003] d..2 82311.046880: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17157          <idle>-0     (-----) [003] d..1 82311.046893: cpu_idle: state=0 cpu_id=3
17158          <idle>-0     (-----) [003] d.h2 82311.046970: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17159          <idle>-0     (-----) [003] dnh3 82311.046995: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17160          <idle>-0     (-----) [003] .n.1 82311.047007: cpu_idle: state=4294967295 cpu_id=3
17161          <idle>-0     (-----) [003] d..2 82311.047021: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17162 crtc_commit:111-321   (  321) [003] d..2 82311.047050: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17163          <idle>-0     (-----) [003] d..1 82311.047061: cpu_idle: state=0 cpu_id=3
17164          <idle>-0     (-----) [003] d.h2 82311.047144: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17165          <idle>-0     (-----) [003] dnh3 82311.047157: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17166          <idle>-0     (-----) [003] .n.1 82311.047167: cpu_idle: state=4294967295 cpu_id=3
17167          <idle>-0     (-----) [003] d..2 82311.047179: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17168 crtc_commit:111-321   (  321) [003] d..1 82311.047217: clk_enable: gcc_disp_axi_clk
17169 crtc_commit:111-321   (  321) [003] d..1 82311.047232: clk_enable: disp_cc_mdss_ahb_clk
17170 crtc_commit:111-321   (  321) [003] d..1 82311.047245: clk_enable: disp_cc_mdss_axi_clk
17171 crtc_commit:111-321   (  321) [003] d..1 82311.047271: clk_enable: gcc_disp_gpll0_clk_src
17172 crtc_commit:111-321   (  321) [003] d..1 82311.047780: clk_enable: disp_cc_mdss_mdp_clk_src
17173 crtc_commit:111-321   (  321) [003] d..1 82311.047824: clk_enable: disp_cc_mdss_mdp_clk
17174 crtc_commit:111-321   (  321) [003] d..1 82311.047837: clk_enable: disp_cc_mdss_vsync_clk
17175 crtc_commit:111-321   (  321) [003] d..2 82311.048077: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17176          <idle>-0     (-----) [003] d..1 82311.048096: cpu_idle: state=0 cpu_id=3
17177          <idle>-0     (-----) [001] d..2 82311.048717: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17178          <idle>-0     (-----) [001] dn.3 82311.048749: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17179          <idle>-0     (-----) [001] .n.1 82311.048756: cpu_idle: state=4294967295 cpu_id=1
17180          <idle>-0     (-----) [001] d..2 82311.048781: 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
17181     ksoftirqd/1-18    (   18) [001] d.s2 82311.048814: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17182     ksoftirqd/1-18    (   18) [001] d.s3 82311.048876: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
17183     ksoftirqd/1-18    (   18) [001] d..2 82311.048902: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17184<...>-1054 ( 1054) [001] d..2 82311.049309: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
17185          <idle>-0     (-----) [001] d.s4 82311.049358: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
17186          <idle>-0     (-----) [001] d.s5 82311.049380: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
17187          <idle>-0     (-----) [001] dns5 82311.049393: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
17188          <idle>-0     (-----) [001] d..2 82311.049413: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17189<...>-1054 ( 1054) [001] d..2 82311.049449: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17190          <idle>-0     (-----) [001] d..1 82311.049469: cpu_idle: state=2 cpu_id=1
17191          <idle>-0     (-----) [003] ...1 82311.049494: cpu_idle: state=4294967295 cpu_id=3
17192          <idle>-0     (-----) [003] d..1 82311.049500: cpu_idle: state=2 cpu_id=3
17193          <idle>-0     (-----) [000] d.h7 82311.059981: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17194          <idle>-0     (-----) [000] dnh8 82311.060194: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17195          <idle>-0     (-----) [000] dnh9 82311.060277: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17196          <idle>-0     (-----) [000] dnha 82311.060427: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17197          <idle>-0     (-----) [000] dnh7 82311.060455: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
17198          <idle>-0     (-----) [000] dnh8 82311.060631: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17199          <idle>-0     (-----) [003] .n.1 82311.060839: cpu_idle: state=4294967295 cpu_id=3
17200          <idle>-0     (-----) [003] d..2 82311.061072: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17201          <idle>-0     (-----) [000] dnh3 82311.061082: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
17202          <idle>-0     (-----) [000] dnh4 82311.061117: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
17203          <idle>-0     (-----) [000] .n.1 82311.061165: cpu_idle: state=4294967295 cpu_id=0
17204          <idle>-0     (-----) [000] d..2 82311.061226: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
17205 crtc_commit:111-321   (  321) [003] d..1 82311.061257: clk_disable: disp_cc_mdss_vsync_clk
17206     kworker/0:1-25262 (25262) [000] d..2 82311.061312: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17207 crtc_commit:111-321   (  321) [003] d..1 82311.061336: clk_disable: disp_cc_mdss_mdp_clk
17208 crtc_commit:111-321   (  321) [003] d..1 82311.061353: clk_disable: disp_cc_mdss_mdp_clk_src
17209 crtc_commit:111-321   (  321) [003] d..1 82311.061404: clk_disable: gcc_disp_gpll0_clk_src
17210          <idle>-0     (-----) [002] .n.1 82311.061483: cpu_idle: state=4294967295 cpu_id=2
17211          <idle>-0     (-----) [002] d..2 82311.061534: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
17212 SDM_EventThread-644   (  619) [000] ...1 82311.061632: tracing_mark_write: B|619|HWCCallbacks::Vsync::
17213         sugov:0-576   (  576) [002] .... 82311.061661: clk_set_rate: pwrcl_clk 652800000
17214 SDM_EventThread-644   (  619) [000] ...1 82311.061678: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
17215 SDM_EventThread-644   (  619) [000] ...1 82311.061687: tracing_mark_write: E|619
17216         sugov:0-576   (  576) [002] .... 82311.061741: clk_set_rate: cpu3_pwrcl_clk 748800000
17217         sugov:0-576   (  576) [002] .... 82311.061758: clk_set_rate: cpu2_pwrcl_clk 748800000
17218         sugov:0-576   (  576) [002] .... 82311.061768: clk_set_rate: cpu1_pwrcl_clk 748800000
17219 SDM_EventThread-644   (  619) [000] d.s2 82311.061984: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
17220         sugov:0-576   (  576) [002] .... 82311.061996: clk_set_rate: cpu0_pwrcl_clk 652800000
17221 SDM_EventThread-644   (  619) [000] d.s3 82311.062089: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
17222         sugov:0-576   (  576) [002] .... 82311.062125: cpu_frequency: state=652800 cpu_id=0
17223 crtc_commit:111-321   (  321) [003] d..1 82311.062192: clk_disable: disp_cc_mdss_axi_clk
17224         sugov:0-576   (  576) [002] .... 82311.062208: cpu_frequency: state=652800 cpu_id=1
17225         sugov:0-576   (  576) [002] .... 82311.062214: cpu_frequency: state=652800 cpu_id=2
17226 crtc_commit:111-321   (  321) [003] d..1 82311.062215: clk_disable: disp_cc_mdss_ahb_clk
17227         sugov:0-576   (  576) [002] .... 82311.062219: cpu_frequency: state=652800 cpu_id=3
17228 crtc_commit:111-321   (  321) [003] d..1 82311.062234: clk_disable: gcc_disp_axi_clk
17229 SDM_EventThread-644   (  619) [000] .... 82311.062235: binder_transaction: transaction=1568197 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
17230         sugov:0-576   (  576) [002] d..2 82311.062259: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17231 SDM_EventThread-644   (  619) [000] .... 82311.062266: binder_transaction_alloc_buf: transaction=1568197 data_size=76 offsets_size=0
17232 SDM_EventThread-644   (  619) [000] d..4 82311.062301: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
17233 SDM_EventThread-644   (  619) [000] d..5 82311.062346: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
17234 crtc_commit:111-321   (  321) [003] d..2 82311.062454: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17235          <idle>-0     (-----) [003] d.h3 82311.062471: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17236          <idle>-0     (-----) [003] dnh4 82311.062490: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17237          <idle>-0     (-----) [003] d..2 82311.062511: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17238 SDM_EventThread-644   (  619) [000] ...1 82311.062513: tracing_mark_write: E|619
17239 crtc_commit:111-321   (  321) [003] d..1 82311.062569: clk_disable: disp_cc_mdss_rscc_ahb_clk
17240 crtc_commit:111-321   (  321) [003] d..1 82311.062597: clk_disable: disp_cc_mdss_rscc_vsync_clk
17241 crtc_commit:111-321   (  321) [003] d..1 82311.062613: clk_disable: disp_cc_mdss_vsync_clk_src
17242 SDM_EventThread-644   (  619) [000] d..2 82311.062660: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17243          <idle>-0     (-----) [001] .n.1 82311.062697: cpu_idle: state=4294967295 cpu_id=1
17244          <idle>-0     (-----) [001] d..2 82311.062753: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
17245          <idle>-0     (-----) [000] d..1 82311.062775: cpu_idle: state=2 cpu_id=0
17246<...>-8890 ( 8858) [001] .... 82311.062812: binder_transaction_received: transaction=1568197
17247<...>-1054 ( 1054) [002] d..2 82311.062902: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17248          <idle>-0     (-----) [002] d..1 82311.062929: cpu_idle: state=2 cpu_id=2
17249<...>-8890 ( 8858) [001] ...1 82311.063037: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
17250<...>-8890 ( 8858) [001] ...1 82311.063104: tracing_mark_write: E|8858
17251 crtc_commit:111-321   (  321) [003] d..2 82311.063150: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17252          <idle>-0     (-----) [003] d..1 82311.063179: cpu_idle: state=2 cpu_id=3
17253<...>-8890 ( 8858) [001] d.s2 82311.063203: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17254<...>-8890 ( 8858) [001] d.s3 82311.063235: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17255<...>-8890 ( 8858) [001] d..2 82311.063412: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17256          <idle>-0     (-----) [001] d..1 82311.063441: cpu_idle: state=2 cpu_id=1
17257          <idle>-0     (-----) [003] .n.1 82311.063662: cpu_idle: state=4294967295 cpu_id=3
17258          <idle>-0     (-----) [003] d..2 82311.063689: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17259 crtc_commit:111-321   (  321) [003] d..2 82311.064097: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17260          <idle>-0     (-----) [003] d..1 82311.064119: cpu_idle: state=2 cpu_id=3
17261          <idle>-0     (-----) [001] d.s3 82311.064463: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17262          <idle>-0     (-----) [001] d.s4 82311.064493: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17263          <idle>-0     (-----) [001] ...1 82311.064510: cpu_idle: state=4294967295 cpu_id=1
17264          <idle>-0     (-----) [001] d..1 82311.064521: cpu_idle: state=2 cpu_id=1
17265          <idle>-0     (-----) [003] .n.1 82311.064824: cpu_idle: state=4294967295 cpu_id=3
17266          <idle>-0     (-----) [003] d..2 82311.064851: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17267 crtc_commit:111-321   (  321) [003] d..3 82311.064934: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17268 crtc_commit:111-321   (  321) [003] d..4 82311.064995: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17269 crtc_commit:111-321   (  321) [003] d..2 82311.065310: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17270          <idle>-0     (-----) [000] .n.1 82311.065324: cpu_idle: state=4294967295 cpu_id=0
17271          <idle>-0     (-----) [003] d..1 82311.065335: cpu_idle: state=2 cpu_id=3
17272          <idle>-0     (-----) [000] d..2 82311.065365: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17273 SDM_EventThread-644   (  619) [000] d..2 82311.065513: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17274          <idle>-0     (-----) [000] d..1 82311.065532: cpu_idle: state=2 cpu_id=0
17275          <idle>-0     (-----) [001] d.s3 82311.065787: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17276          <idle>-0     (-----) [001] d.s4 82311.065816: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17277          <idle>-0     (-----) [001] ...1 82311.065834: cpu_idle: state=4294967295 cpu_id=1
17278          <idle>-0     (-----) [001] d..1 82311.065844: cpu_idle: state=2 cpu_id=1
17279          <idle>-0     (-----) [003] .n.1 82311.066148: cpu_idle: state=4294967295 cpu_id=3
17280          <idle>-0     (-----) [003] d..2 82311.066175: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17281 crtc_commit:111-321   (  321) [003] d..2 82311.066410: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17282          <idle>-0     (-----) [003] d..1 82311.066433: cpu_idle: state=2 cpu_id=3
17283          <idle>-0     (-----) [001] d.s3 82311.066762: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17284          <idle>-0     (-----) [001] d.s4 82311.066792: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17285          <idle>-0     (-----) [001] ...1 82311.066810: cpu_idle: state=4294967295 cpu_id=1
17286          <idle>-0     (-----) [001] d..1 82311.066821: cpu_idle: state=2 cpu_id=1
17287          <idle>-0     (-----) [003] .n.1 82311.067124: cpu_idle: state=4294967295 cpu_id=3
17288          <idle>-0     (-----) [003] d..2 82311.067151: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17289 crtc_commit:111-321   (  321) [003] d..1 82311.067225: clk_enable: disp_cc_mdss_vsync_clk_src
17290 crtc_commit:111-321   (  321) [003] d..1 82311.067234: clk_enable: disp_cc_mdss_rscc_vsync_clk
17291 crtc_commit:111-321   (  321) [003] d..1 82311.067261: clk_enable: disp_cc_mdss_rscc_ahb_clk
17292 crtc_commit:111-321   (  321) [003] d..2 82311.067358: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17293          <idle>-0     (-----) [003] d..1 82311.067377: cpu_idle: state=0 cpu_id=3
17294          <idle>-0     (-----) [003] d.h2 82311.067438: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17295          <idle>-0     (-----) [003] dnh3 82311.067457: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17296          <idle>-0     (-----) [003] .n.1 82311.067470: cpu_idle: state=4294967295 cpu_id=3
17297          <idle>-0     (-----) [003] d..2 82311.067483: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17298 crtc_commit:111-321   (  321) [003] d..2 82311.067518: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17299          <idle>-0     (-----) [003] d..1 82311.067529: cpu_idle: state=0 cpu_id=3
17300          <idle>-0     (-----) [003] d.h2 82311.067608: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17301          <idle>-0     (-----) [003] dnh3 82311.067621: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17302          <idle>-0     (-----) [003] .n.1 82311.067632: cpu_idle: state=4294967295 cpu_id=3
17303          <idle>-0     (-----) [003] d..2 82311.067643: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17304 crtc_commit:111-321   (  321) [003] d..1 82311.067688: clk_enable: gcc_disp_axi_clk
17305 crtc_commit:111-321   (  321) [003] d..1 82311.067704: clk_enable: disp_cc_mdss_ahb_clk
17306 crtc_commit:111-321   (  321) [003] d..1 82311.067719: clk_enable: disp_cc_mdss_axi_clk
17307 crtc_commit:111-321   (  321) [003] d..1 82311.067746: clk_enable: gcc_disp_gpll0_clk_src
17308 crtc_commit:111-321   (  321) [003] d..1 82311.068262: clk_enable: disp_cc_mdss_mdp_clk_src
17309 crtc_commit:111-321   (  321) [003] d..1 82311.068313: clk_enable: disp_cc_mdss_mdp_clk
17310 crtc_commit:111-321   (  321) [003] d..1 82311.068326: clk_enable: disp_cc_mdss_vsync_clk
17311 crtc_commit:111-321   (  321) [003] d..2 82311.068741: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17312          <idle>-0     (-----) [003] d..1 82311.068773: cpu_idle: state=0 cpu_id=3
17313          <idle>-0     (-----) [003] ...1 82311.070249: cpu_idle: state=4294967295 cpu_id=3
17314          <idle>-0     (-----) [003] d..1 82311.070257: cpu_idle: state=2 cpu_id=3
17315          <idle>-0     (-----) [000] d.h7 82311.074305: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17316          <idle>-0     (-----) [000] dnh8 82311.074336: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17317          <idle>-0     (-----) [000] dnh9 82311.074349: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17318          <idle>-0     (-----) [000] dnha 82311.074380: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17319          <idle>-0     (-----) [000] dnh7 82311.074386: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17320          <idle>-0     (-----) [000] dnh8 82311.074404: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17321          <idle>-0     (-----) [000] dnh3 82311.074561: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
17322          <idle>-0     (-----) [000] dnh4 82311.074579: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
17323          <idle>-0     (-----) [000] .n.1 82311.074616: cpu_idle: state=4294967295 cpu_id=0
17324          <idle>-0     (-----) [000] d..2 82311.074640: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
17325     kworker/0:1-25262 (25262) [000] d..2 82311.074662: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17326          <idle>-0     (-----) [003] .n.1 82311.074687: cpu_idle: state=4294967295 cpu_id=3
17327 SDM_EventThread-644   (  619) [000] ...1 82311.074710: tracing_mark_write: B|619|HWCCallbacks::Vsync::
17328          <idle>-0     (-----) [003] d..2 82311.074721: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17329 SDM_EventThread-644   (  619) [000] ...1 82311.074724: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
17330 SDM_EventThread-644   (  619) [000] ...1 82311.074731: tracing_mark_write: E|619
17331 SDM_EventThread-644   (  619) [000] .... 82311.074762: binder_transaction: transaction=1568198 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
17332 SDM_EventThread-644   (  619) [000] .... 82311.074768: binder_transaction_alloc_buf: transaction=1568198 data_size=76 offsets_size=0
17333 crtc_commit:111-321   (  321) [003] d..1 82311.074769: clk_disable: disp_cc_mdss_vsync_clk
17334 SDM_EventThread-644   (  619) [000] d..4 82311.074776: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
17335 crtc_commit:111-321   (  321) [003] d..1 82311.074789: clk_disable: disp_cc_mdss_mdp_clk
17336 crtc_commit:111-321   (  321) [003] d..1 82311.074802: clk_disable: disp_cc_mdss_mdp_clk_src
17337 SDM_EventThread-644   (  619) [000] d..5 82311.074804: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
17338 SDM_EventThread-644   (  619) [000] ...1 82311.074837: tracing_mark_write: E|619
17339 crtc_commit:111-321   (  321) [003] d..1 82311.074839: clk_disable: gcc_disp_gpll0_clk_src
17340          <idle>-0     (-----) [002] .n.1 82311.074883: cpu_idle: state=4294967295 cpu_id=2
17341 SDM_EventThread-644   (  619) [000] d..2 82311.074909: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17342          <idle>-0     (-----) [002] d..2 82311.074912: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
17343          <idle>-0     (-----) [000] d..2 82311.074920: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17344         sugov:0-576   (  576) [002] .... 82311.074946: clk_set_rate: pwrcl_clk 748800000
17345          <idle>-0     (-----) [000] dn.3 82311.074948: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17346         sugov:0-576   (  576) [002] .... 82311.074959: clk_set_rate: cpu3_pwrcl_clk 652800000
17347          <idle>-0     (-----) [000] d..2 82311.074965: 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
17348         sugov:0-576   (  576) [002] .... 82311.074970: clk_set_rate: cpu2_pwrcl_clk 652800000
17349         sugov:0-576   (  576) [002] .... 82311.074981: clk_set_rate: cpu1_pwrcl_clk 652800000
17350         sugov:0-576   (  576) [002] .... 82311.074992: clk_set_rate: cpu0_pwrcl_clk 748800000
17351     ksoftirqd/0-3     (    3) [000] d.s2 82311.074993: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
17352         sugov:0-576   (  576) [002] .... 82311.075005: cpu_frequency: state=748800 cpu_id=0
17353         sugov:0-576   (  576) [002] .... 82311.075024: cpu_frequency: state=748800 cpu_id=1
17354         sugov:0-576   (  576) [002] .... 82311.075030: cpu_frequency: state=748800 cpu_id=2
17355         sugov:0-576   (  576) [002] .... 82311.075034: cpu_frequency: state=748800 cpu_id=3
17356     ksoftirqd/0-3     (    3) [000] d.s3 82311.075048: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17357     ksoftirqd/0-3     (    3) [000] d..2 82311.075070: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17358         sugov:0-576   (  576) [002] d..2 82311.075086: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17359          <idle>-0     (-----) [001] .n.1 82311.075101: cpu_idle: state=4294967295 cpu_id=1
17360          <idle>-0     (-----) [002] d..2 82311.075117: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
17361          <idle>-0     (-----) [001] d..2 82311.075137: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
17362<...>-8890 ( 8858) [001] .... 82311.075150: binder_transaction_received: transaction=1568198
17363          <idle>-0     (-----) [002] dn.3 82311.075150: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
17364<...>-8890 ( 8858) [001] ...1 82311.075196: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
17365          <idle>-0     (-----) [002] d..2 82311.075201: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
17366<...>-8890 ( 8858) [001] ...1 82311.075213: tracing_mark_write: E|8858
17367     ksoftirqd/2-26    (   26) [002] d..2 82311.075256: 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
17368          <idle>-0     (-----) [002] d..1 82311.075272: cpu_idle: state=2 cpu_id=2
17369<...>-8890 ( 8858) [001] d..2 82311.075284: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17370          <idle>-0     (-----) [001] d..1 82311.075308: cpu_idle: state=2 cpu_id=1
17371 crtc_commit:111-321   (  321) [003] d..1 82311.075434: clk_disable: disp_cc_mdss_axi_clk
17372 crtc_commit:111-321   (  321) [003] d..1 82311.075450: clk_disable: disp_cc_mdss_ahb_clk
17373 crtc_commit:111-321   (  321) [003] d..1 82311.075464: clk_disable: gcc_disp_axi_clk
17374<...>-1054 ( 1054) [000] d..2 82311.075557: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17375 crtc_commit:111-321   (  321) [003] d..2 82311.075575: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17376          <idle>-0     (-----) [000] d..1 82311.075578: cpu_idle: state=2 cpu_id=0
17377          <idle>-0     (-----) [003] d..1 82311.075595: cpu_idle: state=0 cpu_id=3
17378          <idle>-0     (-----) [003] d.h2 82311.075648: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17379          <idle>-0     (-----) [003] dnh3 82311.075665: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17380          <idle>-0     (-----) [003] .n.1 82311.075675: cpu_idle: state=4294967295 cpu_id=3
17381          <idle>-0     (-----) [003] d..2 82311.075688: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17382 crtc_commit:111-321   (  321) [003] d..1 82311.075707: clk_disable: disp_cc_mdss_rscc_ahb_clk
17383 crtc_commit:111-321   (  321) [003] d..1 82311.075723: clk_disable: disp_cc_mdss_rscc_vsync_clk
17384 crtc_commit:111-321   (  321) [003] d..1 82311.075737: clk_disable: disp_cc_mdss_vsync_clk_src
17385 crtc_commit:111-321   (  321) [003] d..2 82311.075941: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17386          <idle>-0     (-----) [003] d..1 82311.075960: cpu_idle: state=2 cpu_id=3
17387          <idle>-0     (-----) [001] d.s3 82311.076287: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17388          <idle>-0     (-----) [001] d.s4 82311.076314: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17389          <idle>-0     (-----) [001] ...1 82311.076329: cpu_idle: state=4294967295 cpu_id=1
17390          <idle>-0     (-----) [001] d..1 82311.076339: cpu_idle: state=2 cpu_id=1
17391          <idle>-0     (-----) [003] .n.1 82311.076618: cpu_idle: state=4294967295 cpu_id=3
17392          <idle>-0     (-----) [003] d..2 82311.076644: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17393 crtc_commit:111-321   (  321) [003] d..2 82311.076879: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17394          <idle>-0     (-----) [003] d..1 82311.076899: cpu_idle: state=2 cpu_id=3
17395          <idle>-0     (-----) [001] d.s3 82311.077248: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17396          <idle>-0     (-----) [001] d.s4 82311.077275: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17397          <idle>-0     (-----) [001] ...1 82311.077291: cpu_idle: state=4294967295 cpu_id=1
17398          <idle>-0     (-----) [001] d..1 82311.077300: cpu_idle: state=2 cpu_id=1
17399          <idle>-0     (-----) [003] .n.1 82311.077600: cpu_idle: state=4294967295 cpu_id=3
17400          <idle>-0     (-----) [003] d..2 82311.077625: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17401 crtc_commit:111-321   (  321) [003] d..3 82311.077651: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17402 crtc_commit:111-321   (  321) [003] d..4 82311.077709: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
17403 crtc_commit:111-321   (  321) [003] d..2 82311.077939: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17404 SDM_EventThread-644   (  619) [003] d..2 82311.078015: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17405          <idle>-0     (-----) [003] d..1 82311.078037: cpu_idle: state=2 cpu_id=3
17406          <idle>-0     (-----) [001] d.s3 82311.078463: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17407          <idle>-0     (-----) [001] d.s4 82311.078489: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17408          <idle>-0     (-----) [001] ...1 82311.078505: cpu_idle: state=4294967295 cpu_id=1
17409          <idle>-0     (-----) [001] d..1 82311.078515: cpu_idle: state=2 cpu_id=1
17410          <idle>-0     (-----) [003] .n.1 82311.078815: cpu_idle: state=4294967295 cpu_id=3
17411          <idle>-0     (-----) [003] d..2 82311.078846: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17412 crtc_commit:111-321   (  321) [003] d..2 82311.079075: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17413          <idle>-0     (-----) [003] d..2 82311.079085: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17414          <idle>-0     (-----) [003] dn.3 82311.079116: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17415          <idle>-0     (-----) [003] d..2 82311.079131: 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
17416     ksoftirqd/3-34    (   34) [003] d..2 82311.079178: 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
17417          <idle>-0     (-----) [003] d..1 82311.079198: cpu_idle: state=0 cpu_id=3
17418          <idle>-0     (-----) [001] d.s3 82311.079430: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17419          <idle>-0     (-----) [001] d.s4 82311.079468: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17420          <idle>-0     (-----) [003] .n.1 82311.079477: cpu_idle: state=4294967295 cpu_id=3
17421          <idle>-0     (-----) [001] ...1 82311.079490: cpu_idle: state=4294967295 cpu_id=1
17422          <idle>-0     (-----) [003] d..2 82311.079490: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17423          <idle>-0     (-----) [001] d..1 82311.079509: cpu_idle: state=0 cpu_id=1
17424 crtc_commit:111-321   (  321) [003] d..1 82311.079522: clk_enable: disp_cc_mdss_vsync_clk_src
17425 crtc_commit:111-321   (  321) [003] d..1 82311.079524: clk_enable: disp_cc_mdss_rscc_vsync_clk
17426 crtc_commit:111-321   (  321) [003] d..1 82311.079549: clk_enable: disp_cc_mdss_rscc_ahb_clk
17427 crtc_commit:111-321   (  321) [003] d..2 82311.079630: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17428          <idle>-0     (-----) [003] d..1 82311.079643: cpu_idle: state=0 cpu_id=3
17429          <idle>-0     (-----) [003] d.h2 82311.079717: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17430          <idle>-0     (-----) [003] dnh3 82311.079738: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17431          <idle>-0     (-----) [003] .n.1 82311.079749: cpu_idle: state=4294967295 cpu_id=3
17432          <idle>-0     (-----) [003] d..2 82311.079763: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17433 crtc_commit:111-321   (  321) [003] d..2 82311.079792: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17434          <idle>-0     (-----) [003] d..1 82311.079803: cpu_idle: state=0 cpu_id=3
17435          <idle>-0     (-----) [003] d.h2 82311.079886: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17436          <idle>-0     (-----) [003] dnh3 82311.079899: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17437          <idle>-0     (-----) [003] .n.1 82311.079909: cpu_idle: state=4294967295 cpu_id=3
17438          <idle>-0     (-----) [003] d..2 82311.079920: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17439 crtc_commit:111-321   (  321) [003] d..1 82311.079958: clk_enable: gcc_disp_axi_clk
17440 crtc_commit:111-321   (  321) [003] d..1 82311.079973: clk_enable: disp_cc_mdss_ahb_clk
17441 crtc_commit:111-321   (  321) [003] d..1 82311.079986: clk_enable: disp_cc_mdss_axi_clk
17442 crtc_commit:111-321   (  321) [003] d..1 82311.080012: clk_enable: gcc_disp_gpll0_clk_src
17443 crtc_commit:111-321   (  321) [003] d..1 82311.080521: clk_enable: disp_cc_mdss_mdp_clk_src
17444 crtc_commit:111-321   (  321) [003] d..1 82311.080559: clk_enable: disp_cc_mdss_mdp_clk
17445 crtc_commit:111-321   (  321) [003] d..1 82311.080573: clk_enable: disp_cc_mdss_vsync_clk
17446 crtc_commit:111-321   (  321) [003] d..2 82311.080813: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17447          <idle>-0     (-----) [003] d..1 82311.080831: cpu_idle: state=0 cpu_id=3
17448          <idle>-0     (-----) [001] ...1 82311.081450: cpu_idle: state=4294967295 cpu_id=1
17449          <idle>-0     (-----) [001] d..1 82311.081456: cpu_idle: state=2 cpu_id=1
17450          <idle>-0     (-----) [003] d..2 82311.082221: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17451          <idle>-0     (-----) [003] dn.3 82311.082235: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17452          <idle>-0     (-----) [003] .n.1 82311.082240: cpu_idle: state=4294967295 cpu_id=3
17453          <idle>-0     (-----) [003] d..2 82311.082256: 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
17454     ksoftirqd/3-34    (   34) [003] d..2 82311.082289: 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
17455          <idle>-0     (-----) [003] d..1 82311.082303: cpu_idle: state=2 cpu_id=3
17456          <idle>-0     (-----) [000] d.h7 82311.092794: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17457          <idle>-0     (-----) [000] dnh8 82311.093015: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17458          <idle>-0     (-----) [000] dnh9 82311.093093: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17459          <idle>-0     (-----) [000] dnha 82311.093243: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17460          <idle>-0     (-----) [000] dnh7 82311.093270: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
17461          <idle>-0     (-----) [000] dnh8 82311.093446: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17462          <idle>-0     (-----) [003] .n.1 82311.093643: cpu_idle: state=4294967295 cpu_id=3
17463          <idle>-0     (-----) [003] d..2 82311.093872: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17464          <idle>-0     (-----) [000] .n.1 82311.093906: cpu_idle: state=4294967295 cpu_id=0
17465          <idle>-0     (-----) [000] d..2 82311.093970: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
17466     kworker/0:1-25262 (25262) [000] d..2 82311.094060: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17467 crtc_commit:111-321   (  321) [003] d..1 82311.094061: clk_disable: disp_cc_mdss_vsync_clk
17468 crtc_commit:111-321   (  321) [003] d..1 82311.094143: clk_disable: disp_cc_mdss_mdp_clk
17469 crtc_commit:111-321   (  321) [003] d..1 82311.094159: clk_disable: disp_cc_mdss_mdp_clk_src
17470 crtc_commit:111-321   (  321) [003] d..1 82311.094213: clk_disable: gcc_disp_gpll0_clk_src
17471 SDM_EventThread-644   (  619) [000] ...1 82311.094404: tracing_mark_write: B|619|HWCCallbacks::Vsync::
17472 SDM_EventThread-644   (  619) [000] ...1 82311.094463: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
17473 SDM_EventThread-644   (  619) [000] ...1 82311.094478: tracing_mark_write: E|619
17474 SDM_EventThread-644   (  619) [000] .... 82311.094705: binder_transaction: transaction=1568199 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
17475 SDM_EventThread-644   (  619) [000] .... 82311.094736: binder_transaction_alloc_buf: transaction=1568199 data_size=76 offsets_size=0
17476 SDM_EventThread-644   (  619) [000] d..4 82311.094772: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
17477 SDM_EventThread-644   (  619) [000] d..5 82311.094825: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
17478 crtc_commit:111-321   (  321) [003] d..1 82311.094840: clk_disable: disp_cc_mdss_axi_clk
17479 crtc_commit:111-321   (  321) [003] d..1 82311.094859: clk_disable: disp_cc_mdss_ahb_clk
17480 crtc_commit:111-321   (  321) [003] d..1 82311.094877: clk_disable: gcc_disp_axi_clk
17481 SDM_EventThread-644   (  619) [000] ...1 82311.094951: tracing_mark_write: E|619
17482 SDM_EventThread-644   (  619) [000] d..2 82311.095127: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17483 crtc_commit:111-321   (  321) [003] d..2 82311.095129: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17484          <idle>-0     (-----) [003] d.h3 82311.095167: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17485          <idle>-0     (-----) [003] dnh4 82311.095184: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17486          <idle>-0     (-----) [001] .n.1 82311.095184: cpu_idle: state=4294967295 cpu_id=1
17487          <idle>-0     (-----) [001] d..2 82311.095243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
17488<...>-8890 ( 8858) [001] .... 82311.095279: binder_transaction_received: transaction=1568199
17489          <idle>-0     (-----) [000] d.s4 82311.095295: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17490          <idle>-0     (-----) [003] d..2 82311.095300: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17491          <idle>-0     (-----) [000] dns5 82311.095334: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17492 crtc_commit:111-321   (  321) [003] d..1 82311.095339: clk_disable: disp_cc_mdss_rscc_ahb_clk
17493 crtc_commit:111-321   (  321) [003] d..1 82311.095361: clk_disable: disp_cc_mdss_rscc_vsync_clk
17494 crtc_commit:111-321   (  321) [003] d..1 82311.095376: clk_disable: disp_cc_mdss_vsync_clk_src
17495          <idle>-0     (-----) [000] d..2 82311.095380: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17496<...>-8890 ( 8858) [001] ...1 82311.095505: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
17497<...>-8890 ( 8858) [001] ...1 82311.095571: tracing_mark_write: E|8858
17498<...>-8890 ( 8858) [001] d..2 82311.095773: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17499          <idle>-0     (-----) [001] d..1 82311.095843: cpu_idle: state=2 cpu_id=1
17500 crtc_commit:111-321   (  321) [003] d..2 82311.095938: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17501<...>-1054 ( 1054) [000] d..2 82311.095950: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17502          <idle>-0     (-----) [003] d..1 82311.095969: cpu_idle: state=2 cpu_id=3
17503          <idle>-0     (-----) [000] d..1 82311.095980: cpu_idle: state=2 cpu_id=0
17504          <idle>-0     (-----) [001] d.s3 82311.096623: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17505          <idle>-0     (-----) [001] d.s4 82311.096656: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17506          <idle>-0     (-----) [001] ...1 82311.096676: cpu_idle: state=4294967295 cpu_id=1
17507          <idle>-0     (-----) [001] d..1 82311.096686: cpu_idle: state=2 cpu_id=1
17508          <idle>-0     (-----) [003] .n.1 82311.096963: cpu_idle: state=4294967295 cpu_id=3
17509          <idle>-0     (-----) [003] d..2 82311.096987: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17510 crtc_commit:111-321   (  321) [003] d..2 82311.097370: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17511          <idle>-0     (-----) [003] d..1 82311.097389: cpu_idle: state=2 cpu_id=3
17512          <idle>-0     (-----) [001] d.s3 82311.097738: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17513          <idle>-0     (-----) [001] d.s4 82311.097766: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17514          <idle>-0     (-----) [001] ...1 82311.097781: cpu_idle: state=4294967295 cpu_id=1
17515          <idle>-0     (-----) [001] d..1 82311.097791: cpu_idle: state=2 cpu_id=1
17516          <idle>-0     (-----) [003] .n.1 82311.098089: cpu_idle: state=4294967295 cpu_id=3
17517          <idle>-0     (-----) [003] d..2 82311.098115: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17518 crtc_commit:111-321   (  321) [003] d..3 82311.098197: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17519 crtc_commit:111-321   (  321) [003] d..4 82311.098264: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
17520 crtc_commit:111-321   (  321) [003] d.s3 82311.098589: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17521 crtc_commit:111-321   (  321) [003] d.s4 82311.098642: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
17522 crtc_commit:111-321   (  321) [003] d..2 82311.098674: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17523 SDM_EventThread-644   (  619) [003] d..2 82311.098806: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17524          <idle>-0     (-----) [001] d.s3 82311.099032: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17525<...>-1054 ( 1054) [003] d..2 82311.099037: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17526          <idle>-0     (-----) [003] d..1 82311.099060: cpu_idle: state=2 cpu_id=3
17527          <idle>-0     (-----) [001] d.s4 82311.099070: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17528          <idle>-0     (-----) [001] ...1 82311.099087: cpu_idle: state=4294967295 cpu_id=1
17529          <idle>-0     (-----) [003] .n.1 82311.099092: cpu_idle: state=4294967295 cpu_id=3
17530          <idle>-0     (-----) [001] d..1 82311.099100: cpu_idle: state=2 cpu_id=1
17531          <idle>-0     (-----) [003] d..2 82311.099108: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17532 crtc_commit:111-321   (  321) [003] d..2 82311.099313: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17533          <idle>-0     (-----) [003] d..1 82311.099330: cpu_idle: state=2 cpu_id=3
17534          <idle>-0     (-----) [001] d.s3 82311.099680: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17535          <idle>-0     (-----) [001] d.s4 82311.099708: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17536          <idle>-0     (-----) [001] ...1 82311.099722: cpu_idle: state=4294967295 cpu_id=1
17537          <idle>-0     (-----) [001] d..1 82311.099747: cpu_idle: state=0 cpu_id=1
17538          <idle>-0     (-----) [003] .n.1 82311.100050: cpu_idle: state=4294967295 cpu_id=3
17539          <idle>-0     (-----) [003] d..2 82311.100084: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17540 crtc_commit:111-321   (  321) [003] d..1 82311.100160: clk_enable: disp_cc_mdss_vsync_clk_src
17541 crtc_commit:111-321   (  321) [003] d..1 82311.100169: clk_enable: disp_cc_mdss_rscc_vsync_clk
17542 crtc_commit:111-321   (  321) [003] d..1 82311.100192: clk_enable: disp_cc_mdss_rscc_ahb_clk
17543 crtc_commit:111-321   (  321) [003] d..2 82311.100291: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17544          <idle>-0     (-----) [003] d..1 82311.100311: cpu_idle: state=0 cpu_id=3
17545          <idle>-0     (-----) [003] d.h2 82311.100372: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17546          <idle>-0     (-----) [003] dnh3 82311.100395: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17547          <idle>-0     (-----) [003] .n.1 82311.100410: cpu_idle: state=4294967295 cpu_id=3
17548          <idle>-0     (-----) [003] d..2 82311.100422: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17549 crtc_commit:111-321   (  321) [003] d..2 82311.100453: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17550          <idle>-0     (-----) [003] d..1 82311.100464: cpu_idle: state=0 cpu_id=3
17551          <idle>-0     (-----) [003] d.h2 82311.100545: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17552          <idle>-0     (-----) [003] dnh3 82311.100557: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17553          <idle>-0     (-----) [003] .n.1 82311.100566: cpu_idle: state=4294967295 cpu_id=3
17554          <idle>-0     (-----) [003] d..2 82311.100576: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17555 crtc_commit:111-321   (  321) [003] d..1 82311.100623: clk_enable: gcc_disp_axi_clk
17556 crtc_commit:111-321   (  321) [003] d..1 82311.100639: clk_enable: disp_cc_mdss_ahb_clk
17557 crtc_commit:111-321   (  321) [003] d..1 82311.100652: clk_enable: disp_cc_mdss_axi_clk
17558 crtc_commit:111-321   (  321) [003] d..1 82311.100679: clk_enable: gcc_disp_gpll0_clk_src
17559 crtc_commit:111-321   (  321) [003] d..1 82311.101193: clk_enable: disp_cc_mdss_mdp_clk_src
17560 crtc_commit:111-321   (  321) [003] d..1 82311.101238: clk_enable: disp_cc_mdss_mdp_clk
17561 crtc_commit:111-321   (  321) [003] d..1 82311.101252: clk_enable: disp_cc_mdss_vsync_clk
17562 crtc_commit:111-321   (  321) [003] d..2 82311.101601: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17563          <idle>-0     (-----) [001] ...1 82311.101605: cpu_idle: state=4294967295 cpu_id=1
17564          <idle>-0     (-----) [001] d..1 82311.101610: cpu_idle: state=2 cpu_id=1
17565          <idle>-0     (-----) [003] d..1 82311.101624: cpu_idle: state=0 cpu_id=3
17566          <idle>-0     (-----) [003] d..2 82311.102954: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17567          <idle>-0     (-----) [003] dn.3 82311.102986: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17568          <idle>-0     (-----) [003] .n.1 82311.102992: cpu_idle: state=4294967295 cpu_id=3
17569          <idle>-0     (-----) [003] d..2 82311.103020: 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
17570     ksoftirqd/3-34    (   34) [003] d..2 82311.103085: 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
17571          <idle>-0     (-----) [003] d..1 82311.103099: cpu_idle: state=2 cpu_id=3
17572          <idle>-0     (-----) [000] d.h7 82311.107103: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17573          <idle>-0     (-----) [000] dnh8 82311.107125: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17574          <idle>-0     (-----) [000] dnh9 82311.107136: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17575          <idle>-0     (-----) [000] dnha 82311.107159: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17576          <idle>-0     (-----) [000] dnh7 82311.107165: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
17577          <idle>-0     (-----) [000] dnh8 82311.107206: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17578          <idle>-0     (-----) [000] .n.1 82311.107308: cpu_idle: state=4294967295 cpu_id=0
17579          <idle>-0     (-----) [000] d..2 82311.107329: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
17580     kworker/0:1-25262 (25262) [000] d..2 82311.107350: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17581 SDM_EventThread-644   (  619) [000] ...1 82311.107394: tracing_mark_write: B|619|HWCCallbacks::Vsync::
17582 SDM_EventThread-644   (  619) [000] ...1 82311.107406: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
17583 SDM_EventThread-644   (  619) [000] ...1 82311.107412: tracing_mark_write: E|619
17584 SDM_EventThread-644   (  619) [000] .... 82311.107440: binder_transaction: transaction=1568200 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
17585 SDM_EventThread-644   (  619) [000] .... 82311.107446: binder_transaction_alloc_buf: transaction=1568200 data_size=76 offsets_size=0
17586 SDM_EventThread-644   (  619) [000] d..4 82311.107453: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
17587          <idle>-0     (-----) [003] .n.1 82311.107456: cpu_idle: state=4294967295 cpu_id=3
17588 SDM_EventThread-644   (  619) [000] d..5 82311.107479: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
17589          <idle>-0     (-----) [003] d..2 82311.107487: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17590 SDM_EventThread-644   (  619) [000] ...1 82311.107509: tracing_mark_write: E|619
17591 crtc_commit:111-321   (  321) [003] d..1 82311.107533: clk_disable: disp_cc_mdss_vsync_clk
17592 crtc_commit:111-321   (  321) [003] d..1 82311.107551: clk_disable: disp_cc_mdss_mdp_clk
17593 crtc_commit:111-321   (  321) [003] d..1 82311.107564: clk_disable: disp_cc_mdss_mdp_clk_src
17594 SDM_EventThread-644   (  619) [000] d..2 82311.107577: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17595          <idle>-0     (-----) [000] d..2 82311.107586: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17596 crtc_commit:111-321   (  321) [003] d..1 82311.107599: clk_disable: gcc_disp_gpll0_clk_src
17597          <idle>-0     (-----) [000] dn.3 82311.107613: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17598          <idle>-0     (-----) [000] d..2 82311.107629: 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
17599     ksoftirqd/0-3     (    3) [000] d.s2 82311.107652: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
17600     ksoftirqd/0-3     (    3) [000] d.s3 82311.107705: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17601     ksoftirqd/0-3     (    3) [000] d..2 82311.107726: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17602          <idle>-0     (-----) [001] .n.1 82311.107781: cpu_idle: state=4294967295 cpu_id=1
17603          <idle>-0     (-----) [001] d..2 82311.107819: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
17604<...>-8890 ( 8858) [001] .... 82311.107831: binder_transaction_received: transaction=1568200
17605<...>-8890 ( 8858) [001] ...1 82311.107881: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
17606<...>-8890 ( 8858) [001] d..1 82311.107961: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
17607<...>-8890 ( 8858) [001] d..2 82311.108018: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
17608<...>-8890 ( 8858) [001] d..1 82311.108054: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
17609<...>-8890 ( 8858) [001] dn.2 82311.108129: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
17610<...>-8890 ( 8858) [001] d..2 82311.108143: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
17611 crtc_commit:111-321   (  321) [003] d..1 82311.108146: clk_disable: disp_cc_mdss_axi_clk
17612 crtc_commit:111-321   (  321) [003] d..1 82311.108161: clk_disable: disp_cc_mdss_ahb_clk
17613 crtc_commit:111-321   (  321) [003] d..1 82311.108173: clk_disable: gcc_disp_axi_clk
17614<...>-8894 ( 8858) [001] d..2 82311.108241: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
17615<...>-8890 ( 8858) [001] d..1 82311.108251: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
17616 crtc_commit:111-321   (  321) [003] d..1 82311.108252: clk_disable: disp_cc_mdss_rscc_ahb_clk
17617<...>-8890 ( 8858) [001] dn.2 82311.108265: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
17618 crtc_commit:111-321   (  321) [003] d..1 82311.108266: clk_disable: disp_cc_mdss_rscc_vsync_clk
17619<...>-8890 ( 8858) [001] d..2 82311.108274: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
17620 crtc_commit:111-321   (  321) [003] d..1 82311.108277: clk_disable: disp_cc_mdss_vsync_clk_src
17621<...>-1054 ( 1054) [000] d..2 82311.108290: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17622<...>-8894 ( 8858) [001] d..2 82311.108304: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
17623<...>-8890 ( 8858) [001] d..1 82311.108310: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
17624          <idle>-0     (-----) [000] d..1 82311.108310: cpu_idle: state=2 cpu_id=0
17625<...>-8890 ( 8858) [001] d..2 82311.108334: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
17626<...>-8890 ( 8858) [001] ...1 82311.108349: tracing_mark_write: E|8858
17627          <idle>-0     (-----) [002] .n.1 82311.108373: cpu_idle: state=4294967295 cpu_id=2
17628<...>-8890 ( 8858) [001] d..2 82311.108412: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17629          <idle>-0     (-----) [002] d..2 82311.108419: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
17630          <idle>-0     (-----) [001] d..1 82311.108437: cpu_idle: state=2 cpu_id=1
17631 crtc_commit:111-321   (  321) [003] d..2 82311.108531: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17632          <idle>-0     (-----) [003] d..1 82311.108553: cpu_idle: state=2 cpu_id=3
17633        DispSync-8879  ( 8858) [002] d..2 82311.108638: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17634          <idle>-0     (-----) [002] d..1 82311.108665: cpu_idle: state=2 cpu_id=2
17635          <idle>-0     (-----) [000] .n.1 82311.108786: cpu_idle: state=4294967295 cpu_id=0
17636          <idle>-0     (-----) [000] d..2 82311.108817: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
17637<...>-8894 ( 8858) [000] ...1 82311.108875: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
17638<...>-8894 ( 8858) [000] ...1 82311.108886: tracing_mark_write: E|8858
17639<...>-8894 ( 8858) [000] .... 82311.108977: binder_transaction: transaction=1568201 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
17640<...>-8894 ( 8858) [000] .... 82311.108995: binder_transaction_alloc_buf: transaction=1568201 data_size=68 offsets_size=0
17641          <idle>-0     (-----) [001] d.s3 82311.108997: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17642          <idle>-0     (-----) [001] d.s4 82311.109023: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17643<...>-8894 ( 8858) [000] ...2 82311.109027: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
17644          <idle>-0     (-----) [001] ...1 82311.109039: cpu_idle: state=4294967295 cpu_id=1
17645          <idle>-0     (-----) [001] d..1 82311.109048: cpu_idle: state=2 cpu_id=1
17646<...>-8894 ( 8858) [000] d..4 82311.109083: sched_waking: [email protected] pid=619 prio=112 target_cpu=002
17647<...>-8894 ( 8858) [000] d..5 82311.109124: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=000
17648<...>-8894 ( 8858) [000] d..2 82311.109149: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
17649 [email protected]   (  619) [000] .... 82311.109173: binder_transaction_received: transaction=1568201
17650 [email protected]   (  619) [000] ...1 82311.109303: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
17651          <idle>-0     (-----) [003] .n.1 82311.109333: cpu_idle: state=4294967295 cpu_id=3
17652 [email protected]   (  619) [000] ...1 82311.109344: tracing_mark_write: C|619|SetVsyncState |0
17653          <idle>-0     (-----) [003] d..2 82311.109358: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17654 [email protected]   (  619) [000] ...1 82311.109413: tracing_mark_write: E|619
17655 [email protected]   (  619) [000] .... 82311.109442: binder_transaction: transaction=1568202 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
17656 [email protected]   (  619) [000] .... 82311.109448: binder_transaction_alloc_buf: transaction=1568202 data_size=8 offsets_size=0
17657 [email protected]   (  619) [000] d..2 82311.109460: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
17658 [email protected]   (  619) [000] dn.3 82311.109481: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
17659 [email protected]   (  619) [000] d..2 82311.109495: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
17660<...>-8894 ( 8858) [000] .... 82311.109506: binder_transaction_received: transaction=1568202
17661<...>-8894 ( 8858) [000] d..2 82311.109585: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
17662 [email protected]   (  619) [000] .... 82311.109592: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
17663 crtc_commit:111-321   (  321) [003] d..2 82311.109599: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17664          <idle>-0     (-----) [003] d..1 82311.109618: cpu_idle: state=2 cpu_id=3
17665 [email protected]   (  619) [000] d..2 82311.109711: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17666          <idle>-0     (-----) [000] d..1 82311.109740: cpu_idle: state=2 cpu_id=0
17667          <idle>-0     (-----) [001] d.s3 82311.109969: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17668          <idle>-0     (-----) [001] d.s4 82311.109995: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17669          <idle>-0     (-----) [001] ...1 82311.110011: cpu_idle: state=4294967295 cpu_id=1
17670          <idle>-0     (-----) [001] d..1 82311.110020: cpu_idle: state=2 cpu_id=1
17671          <idle>-0     (-----) [003] .n.1 82311.110312: cpu_idle: state=4294967295 cpu_id=3
17672          <idle>-0     (-----) [003] d..2 82311.110336: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17673 crtc_commit:111-321   (  321) [003] d..3 82311.110359: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17674 crtc_commit:111-321   (  321) [003] d..4 82311.110411: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
17675 crtc_commit:111-321   (  321) [003] d..2 82311.110632: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17676 SDM_EventThread-644   (  619) [003] d..2 82311.110701: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17677          <idle>-0     (-----) [003] d..1 82311.110720: cpu_idle: state=2 cpu_id=3
17678          <idle>-0     (-----) [001] d.s3 82311.111156: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17679          <idle>-0     (-----) [001] d.s4 82311.111182: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17680          <idle>-0     (-----) [001] ...1 82311.111198: cpu_idle: state=4294967295 cpu_id=1
17681          <idle>-0     (-----) [001] d..1 82311.111207: cpu_idle: state=2 cpu_id=1
17682          <idle>-0     (-----) [003] .n.1 82311.111508: cpu_idle: state=4294967295 cpu_id=3
17683          <idle>-0     (-----) [003] d..2 82311.111532: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17684 crtc_commit:111-321   (  321) [003] d..2 82311.111748: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17685          <idle>-0     (-----) [003] d..1 82311.111766: cpu_idle: state=2 cpu_id=3
17686          <idle>-0     (-----) [001] d.H3 82311.112201: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
17687          <idle>-0     (-----) [001] d.H4 82311.112239: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
17688          <idle>-0     (-----) [001] d.s3 82311.112258: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17689          <idle>-0     (-----) [001] d.s4 82311.112272: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17690          <idle>-0     (-----) [001] d..2 82311.112282: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17691          <idle>-0     (-----) [001] dn.3 82311.112308: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
17692          <idle>-0     (-----) [001] .n.1 82311.112316: cpu_idle: state=4294967295 cpu_id=1
17693          <idle>-0     (-----) [001] d..2 82311.112340: 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
17694     ksoftirqd/1-18    (   18) [001] d..2 82311.112399: 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
17695          <idle>-0     (-----) [001] d..1 82311.112419: cpu_idle: state=0 cpu_id=1
17696          <idle>-0     (-----) [002] .n.1 82311.112562: cpu_idle: state=4294967295 cpu_id=2
17697          <idle>-0     (-----) [002] d..2 82311.112601: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
17698          <idle>-0     (-----) [003] .n.1 82311.112637: cpu_idle: state=4294967295 cpu_id=3
17699          <idle>-0     (-----) [003] d..2 82311.112665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17700         sugov:0-576   (  576) [002] .... 82311.112733: clk_set_rate: pwrcl_clk 825600000
17701         sugov:0-576   (  576) [002] .... 82311.112773: clk_set_rate: cpu3_pwrcl_clk 748800000
17702         sugov:0-576   (  576) [002] .... 82311.112792: clk_set_rate: cpu2_pwrcl_clk 748800000
17703         sugov:0-576   (  576) [002] .... 82311.112804: clk_set_rate: cpu1_pwrcl_clk 748800000
17704         sugov:0-576   (  576) [002] .... 82311.112815: clk_set_rate: cpu0_pwrcl_clk 825600000
17705         sugov:0-576   (  576) [002] .... 82311.112834: cpu_frequency: state=825600 cpu_id=0
17706 crtc_commit:111-321   (  321) [003] d..1 82311.112853: clk_enable: disp_cc_mdss_vsync_clk_src
17707 crtc_commit:111-321   (  321) [003] d..1 82311.112856: clk_enable: disp_cc_mdss_rscc_vsync_clk
17708 crtc_commit:111-321   (  321) [003] d..1 82311.112874: clk_enable: disp_cc_mdss_rscc_ahb_clk
17709         sugov:0-576   (  576) [002] .... 82311.112914: cpu_frequency: state=825600 cpu_id=1
17710         sugov:0-576   (  576) [002] .... 82311.112920: cpu_frequency: state=825600 cpu_id=2
17711         sugov:0-576   (  576) [002] .... 82311.112924: cpu_frequency: state=825600 cpu_id=3
17712 crtc_commit:111-321   (  321) [003] d..2 82311.112971: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17713         sugov:0-576   (  576) [002] d..2 82311.112973: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17714          <idle>-0     (-----) [002] d..1 82311.112990: cpu_idle: state=2 cpu_id=2
17715          <idle>-0     (-----) [003] d..1 82311.112990: cpu_idle: state=0 cpu_id=3
17716          <idle>-0     (-----) [003] d.h2 82311.113037: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17717          <idle>-0     (-----) [003] dnh3 82311.113058: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17718          <idle>-0     (-----) [003] .n.1 82311.113069: cpu_idle: state=4294967295 cpu_id=3
17719          <idle>-0     (-----) [003] d..2 82311.113081: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17720 crtc_commit:111-321   (  321) [003] d..2 82311.113108: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17721          <idle>-0     (-----) [003] d..1 82311.113118: cpu_idle: state=0 cpu_id=3
17722          <idle>-0     (-----) [003] d.h2 82311.113199: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17723          <idle>-0     (-----) [003] dnh3 82311.113211: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17724          <idle>-0     (-----) [003] .n.1 82311.113218: cpu_idle: state=4294967295 cpu_id=3
17725          <idle>-0     (-----) [003] d..2 82311.113230: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17726 crtc_commit:111-321   (  321) [003] d..1 82311.113266: clk_enable: gcc_disp_axi_clk
17727 crtc_commit:111-321   (  321) [003] d..1 82311.113280: clk_enable: disp_cc_mdss_ahb_clk
17728 crtc_commit:111-321   (  321) [003] d..1 82311.113295: clk_enable: disp_cc_mdss_axi_clk
17729 crtc_commit:111-321   (  321) [003] d..1 82311.113319: clk_enable: gcc_disp_gpll0_clk_src
17730 crtc_commit:111-321   (  321) [003] d..1 82311.113828: clk_enable: disp_cc_mdss_mdp_clk_src
17731 crtc_commit:111-321   (  321) [003] d..1 82311.113867: clk_enable: disp_cc_mdss_mdp_clk
17732 crtc_commit:111-321   (  321) [003] d..1 82311.113880: clk_enable: disp_cc_mdss_vsync_clk
17733 crtc_commit:111-321   (  321) [003] d..2 82311.114116: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17734          <idle>-0     (-----) [003] d..1 82311.114135: cpu_idle: state=0 cpu_id=3
17735          <idle>-0     (-----) [001] ...1 82311.114254: cpu_idle: state=4294967295 cpu_id=1
17736          <idle>-0     (-----) [001] d..1 82311.114262: cpu_idle: state=2 cpu_id=1
17737          <idle>-0     (-----) [003] d..2 82311.115640: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17738          <idle>-0     (-----) [003] dn.3 82311.115657: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
17739          <idle>-0     (-----) [003] .n.1 82311.115663: cpu_idle: state=4294967295 cpu_id=3
17740          <idle>-0     (-----) [003] d..2 82311.115680: 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
17741     ksoftirqd/3-34    (   34) [003] d.s2 82311.115691: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17742     ksoftirqd/3-34    (   34) [003] d.s3 82311.115738: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
17743     ksoftirqd/3-34    (   34) [003] d..2 82311.115757: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17744<...>-1054 ( 1054) [003] .... 82311.115837: clk_set_rate: l3_cluster0_vote_clk 403200000
17745<...>-1054 ( 1054) [003] .... 82311.115855: clk_set_rate: l3_clk 403200000
17746<...>-1054 ( 1054) [003] d..2 82311.115927: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17747          <idle>-0     (-----) [003] d..1 82311.115944: cpu_idle: state=2 cpu_id=3
17748          <idle>-0     (-----) [000] d.h7 82311.125761: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17749          <idle>-0     (-----) [000] dnh8 82311.125958: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17750          <idle>-0     (-----) [000] dnh9 82311.126040: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17751          <idle>-0     (-----) [000] dnha 82311.126191: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17752          <idle>-0     (-----) [000] dnh7 82311.126217: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
17753          <idle>-0     (-----) [000] dnh8 82311.126384: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17754          <idle>-0     (-----) [000] .n.1 82311.126578: cpu_idle: state=4294967295 cpu_id=0
17755          <idle>-0     (-----) [003] .n.1 82311.126581: cpu_idle: state=4294967295 cpu_id=3
17756          <idle>-0     (-----) [003] d..2 82311.126693: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17757          <idle>-0     (-----) [000] d..2 82311.126695: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
17758     kworker/0:1-25262 (25262) [000] d..2 82311.126787: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17759 crtc_commit:111-321   (  321) [003] d..1 82311.126875: clk_disable: disp_cc_mdss_vsync_clk
17760 crtc_commit:111-321   (  321) [003] d..1 82311.126955: clk_disable: disp_cc_mdss_mdp_clk
17761 crtc_commit:111-321   (  321) [003] d..1 82311.126972: clk_disable: disp_cc_mdss_mdp_clk_src
17762 crtc_commit:111-321   (  321) [003] d..1 82311.127022: clk_disable: gcc_disp_gpll0_clk_src
17763 SDM_EventThread-644   (  619) [000] d..2 82311.127152: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17764          <idle>-0     (-----) [000] d..2 82311.127170: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17765          <idle>-0     (-----) [000] dn.3 82311.127202: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17766          <idle>-0     (-----) [000] d..2 82311.127222: 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
17767     ksoftirqd/0-3     (    3) [000] d.s2 82311.127282: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17768     ksoftirqd/0-3     (    3) [000] d.s3 82311.127297: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17769     ksoftirqd/0-3     (    3) [000] d.s2 82311.127316: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
17770     ksoftirqd/0-3     (    3) [000] d.s3 82311.127382: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17771     ksoftirqd/0-3     (    3) [000] d..2 82311.127428: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
17772     kworker/0:1-25262 (25262) [000] d..2 82311.127492: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17773 crtc_commit:111-321   (  321) [003] d..1 82311.127687: clk_disable: disp_cc_mdss_axi_clk
17774 crtc_commit:111-321   (  321) [003] d..1 82311.127723: clk_disable: disp_cc_mdss_ahb_clk
17775<...>-1054 ( 1054) [000] .... 82311.127747: clk_set_rate: l3_cluster0_vote_clk 300000000
17776<...>-1054 ( 1054) [000] .... 82311.127773: clk_set_rate: l3_clk 300000000
17777 crtc_commit:111-321   (  321) [003] d..1 82311.127845: clk_disable: gcc_disp_axi_clk
17778 crtc_commit:111-321   (  321) [003] d..2 82311.128027: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17779          <idle>-0     (-----) [003] d.h2 82311.128079: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17780          <idle>-0     (-----) [003] dnh3 82311.128101: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17781          <idle>-0     (-----) [003] d..2 82311.128144: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17782 crtc_commit:111-321   (  321) [003] d..1 82311.128184: clk_disable: disp_cc_mdss_rscc_ahb_clk
17783 crtc_commit:111-321   (  321) [003] d..1 82311.128205: clk_disable: disp_cc_mdss_rscc_vsync_clk
17784 crtc_commit:111-321   (  321) [003] d..1 82311.128220: clk_disable: disp_cc_mdss_vsync_clk_src
17785<...>-1054 ( 1054) [000] d..2 82311.128236: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17786          <idle>-0     (-----) [000] d..1 82311.128303: cpu_idle: state=2 cpu_id=0
17787 crtc_commit:111-321   (  321) [003] d..2 82311.128932: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17788          <idle>-0     (-----) [003] d..1 82311.128960: cpu_idle: state=2 cpu_id=3
17789          <idle>-0     (-----) [001] d.s3 82311.129361: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17790          <idle>-0     (-----) [001] d.s4 82311.129398: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17791          <idle>-0     (-----) [001] ...1 82311.129423: cpu_idle: state=4294967295 cpu_id=1
17792          <idle>-0     (-----) [001] d..1 82311.129440: cpu_idle: state=2 cpu_id=1
17793          <idle>-0     (-----) [003] .n.1 82311.129704: cpu_idle: state=4294967295 cpu_id=3
17794          <idle>-0     (-----) [003] d..2 82311.129728: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17795 crtc_commit:111-321   (  321) [003] d..2 82311.130115: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
17796          <idle>-0     (-----) [003] d..1 82311.130134: cpu_idle: state=2 cpu_id=3
17797          <idle>-0     (-----) [001] d.s3 82311.130490: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17798          <idle>-0     (-----) [001] d.s4 82311.130516: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
17799          <idle>-0     (-----) [001] ...1 82311.130531: cpu_idle: state=4294967295 cpu_id=1
17800          <idle>-0     (-----) [001] d..1 82311.130541: cpu_idle: state=2 cpu_id=1
17801          <idle>-0     (-----) [003] .n.1 82311.130841: cpu_idle: state=4294967295 cpu_id=3
17802          <idle>-0     (-----) [003] d..2 82311.130876: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
17803 crtc_commit:111-321   (  321) [003] d..3 82311.130959: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17804 crtc_commit:111-321   (  321) [003] d..4 82311.131014: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
17805 crtc_commit:111-321   (  321) [003] d..2 82311.131059: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
17806          <idle>-0     (-----) [003] d..1 82311.131075: cpu_idle: state=2 cpu_id=3
17807          <idle>-0     (-----) [000] .n.1 82311.131330: cpu_idle: state=4294967295 cpu_id=0
17808          <idle>-0     (-----) [000] d..2 82311.131362: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
17809 SDM_EventThread-644   (  619) [000] d..2 82311.131544: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17810          <idle>-0     (-----) [000] d..1 82311.131562: cpu_idle: state=2 cpu_id=0
17811          <idle>-0     (-----) [000] ...1 82311.197148: cpu_idle: state=4294967295 cpu_id=0
17812          <idle>-0     (-----) [001] d.H3 82311.197184: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
17813          <idle>-0     (-----) [000] d..1 82311.197250: cpu_idle: state=2 cpu_id=0
17814          <idle>-0     (-----) [001] d.H4 82311.197338: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
17815          <idle>-0     (-----) [001] d.s3 82311.197416: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
17816          <idle>-0     (-----) [001] dns4 82311.197506: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
17817          <idle>-0     (-----) [001] dns3 82311.197536: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17818          <idle>-0     (-----) [002] .n.1 82311.197723: cpu_idle: state=4294967295 cpu_id=2
17819          <idle>-0     (-----) [001] dns4 82311.197730: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
17820          <idle>-0     (-----) [002] d..2 82311.197833: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
17821          <idle>-0     (-----) [001] .n.1 82311.197854: cpu_idle: state=4294967295 cpu_id=1
17822          <idle>-0     (-----) [001] d..2 82311.197909: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
17823         sugov:0-576   (  576) [002] .... 82311.197996: clk_set_rate: pwrcl_clk 652800000
17824         sugov:0-576   (  576) [002] .... 82311.198093: clk_set_rate: cpu3_pwrcl_clk 825600000
17825         sugov:0-576   (  576) [002] .... 82311.198112: clk_set_rate: cpu2_pwrcl_clk 825600000
17826         sugov:0-576   (  576) [002] .... 82311.198122: clk_set_rate: cpu1_pwrcl_clk 825600000
17827         sugov:0-576   (  576) [002] .... 82311.198133: clk_set_rate: cpu0_pwrcl_clk 652800000
17828     kworker/1:1-25249 (25249) [001] d..2 82311.198243: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17829         sugov:0-576   (  576) [002] .... 82311.198258: cpu_frequency: state=652800 cpu_id=0
17830         sugov:0-576   (  576) [002] .... 82311.198357: cpu_frequency: state=652800 cpu_id=1
17831         sugov:0-576   (  576) [002] .... 82311.198363: cpu_frequency: state=652800 cpu_id=2
17832         sugov:0-576   (  576) [002] .... 82311.198368: cpu_frequency: state=652800 cpu_id=3
17833         sugov:0-576   (  576) [002] d..2 82311.198523: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17834          <idle>-0     (-----) [002] d..1 82311.198681: cpu_idle: state=2 cpu_id=2
17835          <idle>-0     (-----) [000] d.h3 82311.199280: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17836          <idle>-0     (-----) [002] ...1 82311.199281: cpu_idle: state=4294967295 cpu_id=2
17837          <idle>-0     (-----) [002] d..1 82311.199293: cpu_idle: state=2 cpu_id=2
17838          <idle>-0     (-----) [000] dnh4 82311.199328: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17839          <idle>-0     (-----) [000] .n.1 82311.199364: cpu_idle: state=4294967295 cpu_id=0
17840          <idle>-0     (-----) [000] d..2 82311.199399: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
17841     kworker/0:1-25262 (25262) [000] d..2 82311.199426: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
17842     kworker/0:1-25262 (25262) [000] d..3 82311.199451: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
17843     kworker/0:1-25262 (25262) [000] d..3 82311.199476: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
17844<...>-1054 ( 1054) [001] d..2 82311.199527: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
17845     kworker/0:1-25262 (25262) [000] d..2 82311.199574: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17846          <idle>-0     (-----) [000] d..1 82311.199599: cpu_idle: state=2 cpu_id=0
17847     kworker/1:1-25249 (25249) [001] d..2 82311.199696: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17848<...>-1054 ( 1054) [001] d..2 82311.199832: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17849          <idle>-0     (-----) [001] d..1 82311.199863: cpu_idle: state=2 cpu_id=1
17850          <idle>-0     (-----) [000] d.h2 82311.262064: sched_waking: comm=.apps.turbo:aab pid=11200 prio=120 target_cpu=000
17851          <idle>-0     (-----) [000] dnh3 82311.262389: sched_wakeup: comm=.apps.turbo:aab pid=11200 prio=120 target_cpu=000
17852          <idle>-0     (-----) [000] .n.1 82311.262990: cpu_idle: state=4294967295 cpu_id=0
17853          <idle>-0     (-----) [000] d..2 82311.263157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=.apps.turbo:aab next_pid=11200 next_prio=120
17854<...>-11200 ( 11200) [000] d..5 82311.265112: sched_waking: comm=Binder:11200_3 pid=11214 prio=120 target_cpu=000
17855<...>-11200 ( 11200) [000] d..6 82311.265195: sched_wakeup: comm=Binder:11200_3 pid=11214 prio=120 target_cpu=000
17856<...>-11200 ( 11200) [000] d.s6 82311.265461: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
17857<...>-11200 ( 11200) [000] d.s7 82311.265609: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17858<...>-11200 ( 11200) [000] d.s6 82311.265655: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17859<...>-11200 ( 11200) [000] dns7 82311.265697: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
17860<...>-11200 ( 11200) [000] d..2 82311.265764: sched_switch: prev_comm=.apps.turbo:aab prev_pid=11200 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
17861     kworker/0:1-25262 (25262) [000] d..2 82311.265903: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=Binder:11200_3 next_pid=11214 next_prio=120
17862  Binder:11200_3-11214 (11200) [000] d..2 82311.266156: sched_switch: prev_comm=Binder:11200_3 prev_pid=11214 prev_prio=120 prev_state=S ==> next_comm=.apps.turbo:aab next_pid=11200 next_prio=120
17863<...>-11200 ( 11200) [000] .... 82311.267166: binder_transaction: transaction=1568203 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1a
17864<...>-11200 ( 11200) [000] .... 82311.267208: binder_transaction_alloc_buf: transaction=1568203 data_size=92 offsets_size=8
17865<...>-11200 ( 11200) [000] d..4 82311.267321: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
17866<...>-11200 ( 11200) [000] d..5 82311.267409: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=001
17867<...>-11200 ( 11200) [000] d..2 82311.267448: sched_switch: prev_comm=.apps.turbo:aab prev_pid=11200 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17868          <idle>-0     (-----) [001] .n.1 82311.267808: cpu_idle: state=4294967295 cpu_id=1
17869          <idle>-0     (-----) [001] d..2 82311.267882: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
17870<...>-25493 ( 8943) [001] .... 82311.267971: binder_transaction_received: transaction=1568203
17871<...>-1054 ( 1054) [000] d.s3 82311.268647: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17872<...>-1054 ( 1054) [000] dns4 82311.268696: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17873<...>-1054 ( 1054) [000] d..2 82311.268719: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
17874         rcuop/0-10    (   10) [000] d..2 82311.268748: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17875         rcuop/0-10    (   10) [000] d..3 82311.268787: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17876         rcuop/0-10    (   10) [000] d..2 82311.268808: 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
17877     rcu_preempt-7     (    7) [000] d..2 82311.268875: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17878<...>-1054 ( 1054) [000] d..2 82311.269124: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17879          <idle>-0     (-----) [000] d..1 82311.269204: cpu_idle: state=0 cpu_id=0
17880<...>-25493 ( 8943) [001] d.H2 82311.271967: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
17881<...>-25493 ( 8943) [001] d.H3 82311.272081: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
17882          <idle>-0     (-----) [002] .n.1 82311.272470: cpu_idle: state=4294967295 cpu_id=2
17883          <idle>-0     (-----) [002] d..2 82311.272529: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
17884         sugov:0-576   (  576) [002] .... 82311.272665: clk_set_rate: pwrcl_clk 902400000
17885<...>-25493 ( 8943) [001] .... 82311.272668: binder_transaction: transaction=1568204 dest_node=0 dest_proc=11200 dest_thread=11200 reply=1 flags=0x0 code=0x0
17886<...>-25493 ( 8943) [001] .... 82311.272681: binder_transaction_alloc_buf: transaction=1568204 data_size=8 offsets_size=0
17887<...>-25493 ( 8943) [001] d..2 82311.272695: sched_waking: comm=.apps.turbo:aab pid=11200 prio=120 target_cpu=000
17888<...>-25493 ( 8943) [001] d..3 82311.272737: sched_wakeup: comm=.apps.turbo:aab pid=11200 prio=120 target_cpu=001
17889         sugov:0-576   (  576) [002] .... 82311.272763: clk_set_rate: cpu3_pwrcl_clk 652800000
17890         sugov:0-576   (  576) [002] .... 82311.272786: clk_set_rate: cpu2_pwrcl_clk 652800000
17891         sugov:0-576   (  576) [002] .... 82311.272797: clk_set_rate: cpu1_pwrcl_clk 652800000
17892         sugov:0-576   (  576) [002] .... 82311.272810: clk_set_rate: cpu0_pwrcl_clk 902400000
17893         sugov:0-576   (  576) [002] .... 82311.272828: cpu_frequency: state=902400 cpu_id=0
17894<...>-25493 ( 8943) [001] d..2 82311.272866: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=.apps.turbo:aab next_pid=11200 next_prio=120
17895<...>-11200 ( 11200) [001] .... 82311.272881: binder_transaction_received: transaction=1568204
17896         sugov:0-576   (  576) [002] .... 82311.272916: cpu_frequency: state=902400 cpu_id=1
17897         sugov:0-576   (  576) [002] .... 82311.272921: cpu_frequency: state=902400 cpu_id=2
17898         sugov:0-576   (  576) [002] .... 82311.272924: cpu_frequency: state=902400 cpu_id=3
17899         sugov:0-576   (  576) [002] d..2 82311.273014: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17900          <idle>-0     (-----) [002] d..1 82311.273049: cpu_idle: state=2 cpu_id=2
17901<...>-11200 ( 11200) [001] d..2 82311.273169: sched_switch: prev_comm=.apps.turbo:aab prev_pid=11200 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17902          <idle>-0     (-----) [001] d..1 82311.273201: cpu_idle: state=2 cpu_id=1
17903          <idle>-0     (-----) [000] d.s2 82311.275149: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17904          <idle>-0     (-----) [000] dns3 82311.275172: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
17905          <idle>-0     (-----) [000] dns3 82311.275179: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17906          <idle>-0     (-----) [000] dns4 82311.275192: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17907          <idle>-0     (-----) [000] .n.1 82311.275229: cpu_idle: state=4294967295 cpu_id=0
17908          <idle>-0     (-----) [000] d..2 82311.275244: 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
17909     rcu_preempt-7     (    7) [000] d..2 82311.275299: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17910     rcu_preempt-7     (    7) [000] d..3 82311.275317: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
17911     rcu_preempt-7     (    7) [000] d..2 82311.275337: 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
17912         rcuop/0-10    (   10) [000] d..2 82311.275420: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17913<...>-1054 ( 1054) [000] d..2 82311.275698: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
17914          <idle>-0     (-----) [000] d..1 82311.275718: cpu_idle: state=2 cpu_id=0
17915          <idle>-0     (-----) [001] d.s3 82311.276656: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17916          <idle>-0     (-----) [001] d.s4 82311.276682: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
17917          <idle>-0     (-----) [001] d.s4 82311.276696: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17918          <idle>-0     (-----) [001] ...1 82311.276715: cpu_idle: state=4294967295 cpu_id=1
17919          <idle>-0     (-----) [001] d..1 82311.276723: cpu_idle: state=2 cpu_id=1
17920          <idle>-0     (-----) [000] .n.1 82311.276979: cpu_idle: state=4294967295 cpu_id=0
17921          <idle>-0     (-----) [000] d..2 82311.277006: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17922<...>-1054 ( 1054) [000] .... 82311.277077: clk_set_rate: l3_cluster0_vote_clk 403200000
17923<...>-1054 ( 1054) [000] .... 82311.277089: clk_set_rate: l3_clk 403200000
17924<...>-1054 ( 1054) [000] d..2 82311.277174: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17925          <idle>-0     (-----) [000] d..1 82311.277190: cpu_idle: state=2 cpu_id=0
17926          <idle>-0     (-----) [001] d.h2 82311.317478: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
17927          <idle>-0     (-----) [001] dnh3 82311.317606: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
17928          <idle>-0     (-----) [000] d..2 82311.317624: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17929          <idle>-0     (-----) [000] dn.3 82311.317693: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
17930          <idle>-0     (-----) [001] dnh3 82311.317891: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
17931          <idle>-0     (-----) [001] dnh4 82311.317918: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
17932          <idle>-0     (-----) [000] dns3 82311.317931: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17933          <idle>-0     (-----) [001] .n.1 82311.317940: cpu_idle: state=4294967295 cpu_id=1
17934          <idle>-0     (-----) [000] dns4 82311.317987: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17935          <idle>-0     (-----) [000] dns3 82311.318007: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
17936          <idle>-0     (-----) [001] d..2 82311.318012: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
17937          <idle>-0     (-----) [000] .n.1 82311.318035: cpu_idle: state=4294967295 cpu_id=0
17938          <idle>-0     (-----) [000] d..2 82311.318075: 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
17939     ksoftirqd/0-3     (    3) [000] d..2 82311.318105: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17940          <idle>-0     (-----) [002] .n.1 82311.318216: cpu_idle: state=4294967295 cpu_id=2
17941          <idle>-0     (-----) [002] d..2 82311.318249: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
17942 [email protected]  (  776) [001] d..2 82311.318262: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
17943         sugov:0-576   (  576) [002] .... 82311.318327: clk_set_rate: pwrcl_clk 652800000
17944          <idle>-0     (-----) [001] d..1 82311.318331: cpu_idle: state=2 cpu_id=1
17945         sugov:0-576   (  576) [002] .... 82311.318375: clk_set_rate: cpu3_pwrcl_clk 902400000
17946         sugov:0-576   (  576) [002] .... 82311.318391: clk_set_rate: cpu2_pwrcl_clk 902400000
17947         sugov:0-576   (  576) [002] .... 82311.318400: clk_set_rate: cpu1_pwrcl_clk 902400000
17948         sugov:0-576   (  576) [002] .... 82311.318410: clk_set_rate: cpu0_pwrcl_clk 652800000
17949<...>-1054 ( 1054) [000] d.s4 82311.318535: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
17950         sugov:0-576   (  576) [002] .... 82311.318564: cpu_frequency: state=652800 cpu_id=0
17951         sugov:0-576   (  576) [002] .... 82311.318615: cpu_frequency: state=652800 cpu_id=1
17952         sugov:0-576   (  576) [002] .... 82311.318621: cpu_frequency: state=652800 cpu_id=2
17953<...>-1054 ( 1054) [000] d.s5 82311.318626: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
17954         sugov:0-576   (  576) [002] .... 82311.318626: cpu_frequency: state=652800 cpu_id=3
17955         sugov:0-576   (  576) [002] d..2 82311.318655: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
17956  kworker/u16:15-1311  ( 1311) [002] d..2 82311.318709: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
17957          <idle>-0     (-----) [002] d..1 82311.318732: cpu_idle: state=2 cpu_id=2
17958          <idle>-0     (-----) [001] ...1 82311.318915: cpu_idle: state=4294967295 cpu_id=1
17959          <idle>-0     (-----) [001] d..1 82311.318926: cpu_idle: state=2 cpu_id=1
17960<...>-1054 ( 1054) [000] .... 82311.318936: clk_set_rate: l3_cluster0_vote_clk 300000000
17961<...>-1054 ( 1054) [000] .... 82311.318947: clk_set_rate: l3_clk 300000000
17962          <idle>-0     (-----) [004] dnh2 82311.319171: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
17963          <idle>-0     (-----) [004] .n.1 82311.319186: cpu_idle: state=4294967295 cpu_id=4
17964          <idle>-0     (-----) [004] d..2 82311.319205: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
17965     kworker/4:1-25432 (25432) [004] d..2 82311.319245: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
17966          <idle>-0     (-----) [004] d..1 82311.319259: cpu_idle: state=2 cpu_id=4
17967<...>-1054 ( 1054) [000] d..2 82311.319452: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
17968          <idle>-0     (-----) [000] d..1 82311.319480: cpu_idle: state=2 cpu_id=0
17969          <idle>-0     (-----) [001] d.s3 82311.319893: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17970          <idle>-0     (-----) [001] d.s4 82311.319931: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
17971          <idle>-0     (-----) [001] d.s4 82311.319951: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17972          <idle>-0     (-----) [001] ...1 82311.319976: cpu_idle: state=4294967295 cpu_id=1
17973          <idle>-0     (-----) [001] d..1 82311.319987: cpu_idle: state=2 cpu_id=1
17974          <idle>-0     (-----) [000] .n.1 82311.320285: cpu_idle: state=4294967295 cpu_id=0
17975          <idle>-0     (-----) [000] d..2 82311.320317: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17976<...>-1054 ( 1054) [000] d..2 82311.320752: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
17977          <idle>-0     (-----) [000] d..1 82311.320772: cpu_idle: state=2 cpu_id=0
17978          <idle>-0     (-----) [001] d.s3 82311.321100: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17979          <idle>-0     (-----) [001] d.s4 82311.321121: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
17980          <idle>-0     (-----) [001] d.s4 82311.321134: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
17981          <idle>-0     (-----) [001] ...1 82311.321153: cpu_idle: state=4294967295 cpu_id=1
17982          <idle>-0     (-----) [001] d..1 82311.321164: cpu_idle: state=2 cpu_id=1
17983          <idle>-0     (-----) [000] .n.1 82311.321461: cpu_idle: state=4294967295 cpu_id=0
17984          <idle>-0     (-----) [000] d..2 82311.321491: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
17985<...>-1054 ( 1054) [000] d..2 82311.321549: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
17986          <idle>-0     (-----) [000] d..1 82311.321568: cpu_idle: state=2 cpu_id=0
17987          <idle>-0     (-----) [000] d.h2 82311.345821: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
17988          <idle>-0     (-----) [000] dnh3 82311.346149: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
17989          <idle>-0     (-----) [000] dnh3 82311.346763: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
17990          <idle>-0     (-----) [000] dnh4 82311.346866: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
17991          <idle>-0     (-----) [000] .n.1 82311.346949: cpu_idle: state=4294967295 cpu_id=0
17992          <idle>-0     (-----) [000] d..2 82311.347116: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
17993          <idle>-0     (-----) [002] .n.1 82311.347275: cpu_idle: state=4294967295 cpu_id=2
17994          <idle>-0     (-----) [002] d..2 82311.347339: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
17995         sugov:0-576   (  576) [002] .... 82311.347492: clk_set_rate: pwrcl_clk 748800000
17996         sugov:0-576   (  576) [002] .... 82311.347588: clk_set_rate: cpu3_pwrcl_clk 652800000
17997         sugov:0-576   (  576) [002] .... 82311.347609: clk_set_rate: cpu2_pwrcl_clk 652800000
17998         sugov:0-576   (  576) [002] .... 82311.347620: clk_set_rate: cpu1_pwrcl_clk 652800000
17999         sugov:0-576   (  576) [002] .... 82311.347631: clk_set_rate: cpu0_pwrcl_clk 748800000
18000         sugov:0-576   (  576) [002] .... 82311.347649: cpu_frequency: state=748800 cpu_id=0
18001         sugov:0-576   (  576) [002] .... 82311.347765: cpu_frequency: state=748800 cpu_id=1
18002         sugov:0-576   (  576) [002] .... 82311.347771: cpu_frequency: state=748800 cpu_id=2
18003         sugov:0-576   (  576) [002] .... 82311.347775: cpu_frequency: state=748800 cpu_id=3
18004         sugov:0-576   (  576) [002] d..2 82311.347977: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18005          <idle>-0     (-----) [002] d..2 82311.347999: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18006          <idle>-0     (-----) [002] dn.3 82311.348036: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18007          <idle>-0     (-----) [002] d..2 82311.348056: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
18008     ksoftirqd/2-26    (   26) [002] d.s2 82311.348139: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18009     ksoftirqd/2-26    (   26) [002] d.s3 82311.348217: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18010 RxSchedulerPurg-25567 (25538) [000] d..2 82311.348244: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18011     ksoftirqd/2-26    (   26) [002] d.s2 82311.348277: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
18012     ksoftirqd/2-26    (   26) [002] d.s3 82311.348317: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
18013     ksoftirqd/2-26    (   26) [002] d..2 82311.348354: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
18014  kworker/u16:15-1311  ( 1311) [002] d..2 82311.348398: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18015          <idle>-0     (-----) [002] d..1 82311.348475: cpu_idle: state=2 cpu_id=2
18016<...>-1054 ( 1054) [000] d..2 82311.348927: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18017          <idle>-0     (-----) [000] d..1 82311.348957: cpu_idle: state=2 cpu_id=0
18018          <idle>-0     (-----) [000] d.h2 82311.394764: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
18019          <idle>-0     (-----) [000] dnh3 82311.395093: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
18020          <idle>-0     (-----) [000] dnh3 82311.395694: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
18021          <idle>-0     (-----) [000] dnh4 82311.395802: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
18022          <idle>-0     (-----) [000] .n.1 82311.395886: cpu_idle: state=4294967295 cpu_id=0
18023          <idle>-0     (-----) [000] d..2 82311.396060: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
18024          <idle>-0     (-----) [002] .n.1 82311.396206: cpu_idle: state=4294967295 cpu_id=2
18025          <idle>-0     (-----) [002] d..2 82311.396269: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
18026         sugov:0-576   (  576) [002] .... 82311.396423: clk_set_rate: pwrcl_clk 652800000
18027         sugov:0-576   (  576) [002] .... 82311.396520: clk_set_rate: cpu3_pwrcl_clk 748800000
18028         sugov:0-576   (  576) [002] .... 82311.396541: clk_set_rate: cpu2_pwrcl_clk 748800000
18029         sugov:0-576   (  576) [002] .... 82311.396552: clk_set_rate: cpu1_pwrcl_clk 748800000
18030         sugov:0-576   (  576) [002] .... 82311.396562: clk_set_rate: cpu0_pwrcl_clk 652800000
18031         sugov:0-576   (  576) [002] .... 82311.396633: cpu_frequency: state=652800 cpu_id=0
18032         sugov:0-576   (  576) [002] .... 82311.396745: cpu_frequency: state=652800 cpu_id=1
18033         sugov:0-576   (  576) [002] .... 82311.396752: cpu_frequency: state=652800 cpu_id=2
18034         sugov:0-576   (  576) [002] .... 82311.396757: cpu_frequency: state=652800 cpu_id=3
18035         sugov:0-576   (  576) [002] d..2 82311.396965: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18036          <idle>-0     (-----) [002] d..2 82311.396986: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18037          <idle>-0     (-----) [002] dn.3 82311.397019: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18038          <idle>-0     (-----) [002] d..2 82311.397041: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
18039     ksoftirqd/2-26    (   26) [002] d.s2 82311.397122: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
18040     ksoftirqd/2-26    (   26) [002] d.s3 82311.397165: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
18041     ksoftirqd/2-26    (   26) [002] d.s2 82311.397189: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18042     ksoftirqd/2-26    (   26) [002] d.s3 82311.397325: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
18043     ksoftirqd/2-26    (   26) [002] d..2 82311.397398: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
18044     kworker/2:1-25259 (25259) [002] d..2 82311.397451: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18045     kworker/2:1-25259 (25259) [002] d..3 82311.397504: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18046     kworker/2:1-25259 (25259) [002] d..2 82311.397618: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18047<...>-9090 ( 9090) [000] d..5 82311.398058: sched_waking: comm=Binder:9090_8 pid=16647 prio=120 target_cpu=001
18048<...>-9090 ( 9090) [000] d..6 82311.398178: sched_wakeup: comm=Binder:9090_8 pid=16647 prio=120 target_cpu=000
18049<...>-1054 ( 1054) [002] d..2 82311.399062: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18050          <idle>-0     (-----) [002] d..1 82311.399133: cpu_idle: state=2 cpu_id=2
18051<...>-9090 ( 9090) [000] .... 82311.399189: binder_transaction: transaction=1568205 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1a
18052<...>-9090 ( 9090) [000] .... 82311.399225: binder_transaction_alloc_buf: transaction=1568205 data_size=92 offsets_size=8
18053<...>-9090 ( 9090) [000] d..4 82311.399327: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=001
18054<...>-9090 ( 9090) [000] d..5 82311.399380: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=001
18055<...>-9090 ( 9090) [000] d..2 82311.399434: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
18056          <idle>-0     (-----) [001] dns3 82311.399458: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
18057     kworker/0:1-25262 (25262) [000] d..2 82311.399495: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=Binder:9090_8 next_pid=16647 next_prio=120
18058          <idle>-0     (-----) [001] dns4 82311.399496: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
18059          <idle>-0     (-----) [001] dns4 82311.399527: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
18060          <idle>-0     (-----) [001] .n.1 82311.399545: cpu_idle: state=4294967295 cpu_id=1
18061          <idle>-0     (-----) [001] d..2 82311.399587: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
18062<...>-25493 ( 8943) [001] .... 82311.399635: binder_transaction_received: transaction=1568205
18063<...>-16647 ( 9090) [000] d..2 82311.399707: sched_switch: prev_comm=Binder:9090_8 prev_pid=16647 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18064          <idle>-0     (-----) [000] d..1 82311.399739: cpu_idle: state=2 cpu_id=0
18065          <idle>-0     (-----) [002] .n.1 82311.399834: cpu_idle: state=4294967295 cpu_id=2
18066          <idle>-0     (-----) [002] d..2 82311.399865: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18067<...>-1054 ( 1054) [002] d..2 82311.400020: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18068          <idle>-0     (-----) [002] d..1 82311.400039: cpu_idle: state=2 cpu_id=2
18069<...>-25493 ( 8943) [001] .... 82311.403545: binder_transaction: transaction=1568206 dest_node=0 dest_proc=9090 dest_thread=9090 reply=1 flags=0x0 code=0x0
18070<...>-25493 ( 8943) [001] .... 82311.403561: binder_transaction_alloc_buf: transaction=1568206 data_size=8 offsets_size=0
18071<...>-25493 ( 8943) [001] d..2 82311.403575: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
18072<...>-25493 ( 8943) [001] dn.3 82311.403614: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
18073<...>-25493 ( 8943) [001] d..2 82311.403629: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
18074<...>-9090 ( 9090) [001] .... 82311.403651: binder_transaction_received: transaction=1568206
18075<...>-9090 ( 9090) [001] d..2 82311.404025: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
18076<...>-25493 ( 8943) [001] d..2 82311.404161: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18077          <idle>-0     (-----) [001] d..1 82311.404194: cpu_idle: state=2 cpu_id=1
18078          <idle>-0     (-----) [000] ...1 82311.517224: cpu_idle: state=4294967295 cpu_id=0
18079          <idle>-0     (-----) [003] d.s3 82311.517293: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
18080          <idle>-0     (-----) [000] d..1 82311.517322: cpu_idle: state=2 cpu_id=0
18081          <idle>-0     (-----) [003] dns4 82311.517444: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
18082          <idle>-0     (-----) [003] dns3 82311.517493: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
18083          <idle>-0     (-----) [003] dns4 82311.517706: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18084          <idle>-0     (-----) [003] .n.1 82311.517882: cpu_idle: state=4294967295 cpu_id=3
18085          <idle>-0     (-----) [003] d..2 82311.517993: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
18086    kworker/3:1H-873   (  873) [003] d..2 82311.518106: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18087<...>-1054 ( 1054) [003] d.s2 82311.518597: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
18088<...>-1054 ( 1054) [003] dns3 82311.518652: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
18089<...>-1054 ( 1054) [003] d..2 82311.518674: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
18090     kworker/3:1-25210 (25210) [003] d..2 82311.518746: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18091<...>-1054 ( 1054) [003] d..2 82311.519748: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18092          <idle>-0     (-----) [003] d..1 82311.519784: cpu_idle: state=2 cpu_id=3
18093          <idle>-0     (-----) [001] d.s3 82311.520160: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18094          <idle>-0     (-----) [001] d.s4 82311.520208: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
18095          <idle>-0     (-----) [001] d.s4 82311.520238: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18096          <idle>-0     (-----) [001] ...1 82311.520279: cpu_idle: state=4294967295 cpu_id=1
18097          <idle>-0     (-----) [001] d..1 82311.520302: cpu_idle: state=2 cpu_id=1
18098          <idle>-0     (-----) [003] .n.1 82311.520575: cpu_idle: state=4294967295 cpu_id=3
18099          <idle>-0     (-----) [003] d..2 82311.520611: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18100<...>-1054 ( 1054) [003] d..2 82311.520692: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18101          <idle>-0     (-----) [003] d..1 82311.520713: cpu_idle: state=2 cpu_id=3
18102          <idle>-0     (-----) [003] d.h3 82311.730225: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18103          <idle>-0     (-----) [000] ...1 82311.730323: cpu_idle: state=4294967295 cpu_id=0
18104          <idle>-0     (-----) [000] d..1 82311.730404: cpu_idle: state=2 cpu_id=0
18105          <idle>-0     (-----) [003] d.h4 82311.730596: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18106          <idle>-0     (-----) [003] d.s3 82311.731034: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
18107          <idle>-0     (-----) [003] dns4 82311.731076: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
18108          <idle>-0     (-----) [000] .n.1 82311.731102: cpu_idle: state=4294967295 cpu_id=0
18109          <idle>-0     (-----) [003] .n.1 82311.731186: cpu_idle: state=4294967295 cpu_id=3
18110          <idle>-0     (-----) [000] d..2 82311.731227: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18111          <idle>-0     (-----) [003] d..2 82311.731227: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
18112<...>-1054 ( 1054) [000] d..2 82311.731270: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
18113<...>-1054 ( 1054) [000] d..3 82311.731390: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
18114     kworker/3:1-25210 (25210) [003] d..2 82311.731413: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
18115  kworker/u16:15-1311  ( 1311) [003] d..2 82311.731435: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
18116<...>-1054 ( 1054) [000] d..3 82311.731464: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18117  kworker/u16:15-1311  ( 1311) [003] d..3 82311.731481: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
18118<...>-1054 ( 1054) [000] dn.4 82311.731506: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18119<...>-1054 ( 1054) [000] d..2 82311.731524: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
18120     kworker/0:1-25262 (25262) [000] d..3 82311.731554: sched_waking: comm=msm_irqbalance pid=817 prio=120 target_cpu=000
18121     kworker/0:1-25262 (25262) [000] d..4 82311.731635: sched_wakeup: comm=msm_irqbalance pid=817 prio=120 target_cpu=003
18122     kworker/0:1-25262 (25262) [000] d..2 82311.731708: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18123  kworker/u16:15-1311  ( 1311) [003] d..3 82311.732834: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
18124  kworker/u16:15-1311  ( 1311) [003] dn.4 82311.732873: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
18125  kworker/u16:15-1311  ( 1311) [003] d..2 82311.732890: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
18126    kworker/3:1H-873   (  873) [003] d..2 82311.732948: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
18127  kworker/u16:15-1311  ( 1311) [003] d..2 82311.733071: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=msm_irqbalance next_pid=817 next_prio=120
18128<...>-1054 ( 1054) [000] d..2 82311.733134: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
18129  kworker/u16:13-1147  ( 1147) [000] d..2 82311.733214: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18130          <idle>-0     (-----) [000] d..1 82311.733253: cpu_idle: state=2 cpu_id=0
18131          <idle>-0     (-----) [001] d.s3 82311.733467: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18132          <idle>-0     (-----) [001] d.s4 82311.733509: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
18133          <idle>-0     (-----) [001] d.s4 82311.733529: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18134          <idle>-0     (-----) [001] ...1 82311.733568: cpu_idle: state=4294967295 cpu_id=1
18135          <idle>-0     (-----) [001] d..1 82311.733589: cpu_idle: state=2 cpu_id=1
18136          <idle>-0     (-----) [000] .n.1 82311.733849: cpu_idle: state=4294967295 cpu_id=0
18137          <idle>-0     (-----) [000] d..2 82311.733880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18138<...>-1054 ( 1054) [000] d..1 82311.733918: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
18139<...>-1054 ( 1054) [000] d..2 82311.733985: sched_blocked_reason: pid=1311 iowait=0 caller=update_request_adhoc+0x384/0x480
18140<...>-1054 ( 1054) [000] dn.2 82311.734002: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
18141<...>-1054 ( 1054) [000] d..2 82311.734017: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
18142  kworker/u16:15-1311  ( 1311) [000] d..2 82311.734538: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18143<...>-1054 ( 1054) [000] d..2 82311.734663: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18144          <idle>-0     (-----) [000] d..1 82311.734687: cpu_idle: state=2 cpu_id=0
18145<...>-817 ( 817) [003] d.s2 82311.735181: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
18146<...>-817 ( 817) [003] dns3 82311.735201: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
18147<...>-817 ( 817) [003] d..2 82311.735222: sched_switch: prev_comm=msm_irqbalance prev_pid=817 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
18148    kworker/3:1H-873   (  873) [003] d..2 82311.735254: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=msm_irqbalance next_pid=817 next_prio=120
18149          <idle>-0     (-----) [001] d.s3 82311.735645: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
18150          <idle>-0     (-----) [001] d.s4 82311.735666: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
18151          <idle>-0     (-----) [001] d.s4 82311.735679: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
18152          <idle>-0     (-----) [001] ...1 82311.735700: cpu_idle: state=4294967295 cpu_id=1
18153          <idle>-0     (-----) [001] d..1 82311.735710: cpu_idle: state=2 cpu_id=1
18154          <idle>-0     (-----) [000] .n.1 82311.735866: cpu_idle: state=4294967295 cpu_id=0
18155          <idle>-0     (-----) [000] d..2 82311.735898: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
18156  kworker/u16:15-1311  ( 1311) [000] d..2 82311.736117: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
18157          <idle>-0     (-----) [000] d..1 82311.736140: cpu_idle: state=2 cpu_id=0
18158          <idle>-0     (-----) [001] d.s3 82311.736306: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
18159          <idle>-0     (-----) [001] d.s4 82311.736326: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
18160          <idle>-0     (-----) [001] d.s4 82311.736338: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
18161          <idle>-0     (-----) [001] ...1 82311.736358: cpu_idle: state=4294967295 cpu_id=1
18162          <idle>-0     (-----) [001] d..1 82311.736368: cpu_idle: state=2 cpu_id=1
18163          <idle>-0     (-----) [000] .n.1 82311.736524: cpu_idle: state=4294967295 cpu_id=0
18164          <idle>-0     (-----) [000] d..2 82311.736553: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
18165  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736615: clk_enable: gcc_ufs_phy_axi_clk_src
18166  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736656: clk_enable: gcc_ufs_phy_axi_clk
18167  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736677: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
18168  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736694: clk_enable: gcc_aggre_ufs_phy_axi_clk
18169  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736706: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
18170  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736716: clk_enable: gcc_ufs_phy_ahb_clk
18171  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736735: clk_enable: gcc_ufs_phy_unipro_core_clk_src
18172  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736745: clk_enable: gcc_ufs_phy_unipro_core_clk
18173  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736754: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
18174  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736768: clk_enable: gcc_ufs_phy_ice_core_clk_src
18175  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736776: clk_enable: gcc_ufs_phy_ice_core_clk
18176  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736785: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
18177  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736815: clk_enable: gcc_ufs_mem_clkref_clk
18178  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736829: clk_enable: gcc_ufs_phy_phy_aux_clk_src
18179  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736838: clk_enable: gcc_ufs_phy_phy_aux_clk
18180  kworker/u16:15-1311  ( 1311) [000] d..1 82311.736847: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
18181  kworker/u16:15-1311  ( 1311) [000] d..3 82311.736930: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18182  kworker/u16:15-1311  ( 1311) [000] d..4 82311.736963: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18183  kworker/u16:15-1311  ( 1311) [000] d..2 82311.737165: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18184<...>-1054 ( 1054) [000] d..2 82311.737195: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18185          <idle>-0     (-----) [000] d..1 82311.737225: cpu_idle: state=0 cpu_id=0
18186          <idle>-0     (-----) [001] ...1 82311.737333: cpu_idle: state=4294967295 cpu_id=1
18187          <idle>-0     (-----) [001] d..1 82311.737348: cpu_idle: state=0 cpu_id=1
18188          <idle>-0     (-----) [002] ...1 82311.737424: cpu_idle: state=4294967295 cpu_id=2
18189          <idle>-0     (-----) [002] d..1 82311.737450: cpu_idle: state=0 cpu_id=2
18190<...>-817 ( 817) [003] d.h4 82311.738024: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18191<...>-817 ( 817) [003] d.h5 82311.738063: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18192          <idle>-0     (-----) [000] .n.1 82311.738073: cpu_idle: state=4294967295 cpu_id=0
18193          <idle>-0     (-----) [000] d..2 82311.738090: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18194<...>-1054 ( 1054) [000] d..2 82311.738129: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18195          <idle>-0     (-----) [000] d..1 82311.738143: cpu_idle: state=0 cpu_id=0
18196<...>-817 ( 817) [003] d.s4 82311.738201: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
18197<...>-817 ( 817) [003] dns5 82311.738223: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
18198<...>-817 ( 817) [003] d..2 82311.738268: sched_switch: prev_comm=msm_irqbalance prev_pid=817 prev_prio=120 prev_state=R+ ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
18199    kworker/3:1H-873   (  873) [003] d..2 82311.738293: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=msm_irqbalance next_pid=817 next_prio=120
18200<...>-817 ( 817) [003] d.s2 82311.738495: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
18201<...>-817 ( 817) [003] dns3 82311.738511: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
18202<...>-817 ( 817) [003] d..2 82311.738527: sched_switch: prev_comm=msm_irqbalance prev_pid=817 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
18203    kworker/3:1H-873   (  873) [003] d..2 82311.738546: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=msm_irqbalance next_pid=817 next_prio=120
18204<...>-817 ( 817) [003] d.s3 82311.741830: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18205<...>-817 ( 817) [003] d.s4 82311.741894: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18206          <idle>-0     (-----) [000] d.s3 82311.745151: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18207          <idle>-0     (-----) [000] dns4 82311.745169: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18208<...>-817 ( 817) [003] d..2 82311.745188: sched_switch: prev_comm=msm_irqbalance prev_pid=817 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18209          <idle>-0     (-----) [000] .n.1 82311.745192: cpu_idle: state=4294967295 cpu_id=0
18210          <idle>-0     (-----) [000] d..2 82311.745208: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
18211          <idle>-0     (-----) [001] ...1 82311.745256: cpu_idle: state=4294967295 cpu_id=1
18212          <idle>-0     (-----) [002] ...1 82311.745258: cpu_idle: state=4294967295 cpu_id=2
18213          <idle>-0     (-----) [002] d..1 82311.745265: cpu_idle: state=2 cpu_id=2
18214          <idle>-0     (-----) [001] d..1 82311.745271: cpu_idle: state=0 cpu_id=1
18215<...>-1054 ( 1054) [003] .... 82311.745284: clk_set_rate: l3_cluster0_vote_clk 480000000
18216     kworker/0:1-25262 (25262) [000] d..2 82311.745290: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18217<...>-1054 ( 1054) [003] .... 82311.745298: clk_set_rate: l3_clk 480000000
18218          <idle>-0     (-----) [000] d..1 82311.745308: cpu_idle: state=0 cpu_id=0
18219<...>-1054 ( 1054) [003] d..2 82311.745423: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=817 next_prio=120
18220          <idle>-0     (-----) [000] ...1 82311.747066: cpu_idle: state=4294967295 cpu_id=0
18221          <idle>-0     (-----) [000] d..1 82311.747073: cpu_idle: state=2 cpu_id=0
18222<...>-817 ( 817) [003] d..2 82311.747264: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
18223<...>-817 ( 817) [003] dn.3 82311.747328: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
18224<...>-817 ( 817) [003] d..2 82311.747350: sched_switch: prev_comm=msm_irqbalance prev_pid=817 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
18225         rcuop/2-29    (   29) [003] d..2 82311.747367: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18226         rcuop/2-29    (   29) [003] d..3 82311.747421: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18227          <idle>-0     (-----) [001] .n.1 82311.747427: cpu_idle: state=4294967295 cpu_id=1
18228         rcuop/2-29    (   29) [003] d..2 82311.747440: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=817 next_prio=120
18229          <idle>-0     (-----) [001] d..2 82311.747455: 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
18230     rcu_preempt-7     (    7) [001] d..2 82311.747514: 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
18231          <idle>-0     (-----) [001] d..1 82311.747529: cpu_idle: state=0 cpu_id=1
18232<...>-817 ( 817) [003] d..2 82311.748011: sched_switch: prev_comm=msm_irqbalance prev_pid=817 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18233          <idle>-0     (-----) [003] d..1 82311.748041: cpu_idle: state=2 cpu_id=3
18234          <idle>-0     (-----) [001] d.H3 82311.751893: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
18235          <idle>-0     (-----) [001] d.H4 82311.751945: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
18236          <idle>-0     (-----) [001] d.s2 82311.751956: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18237          <idle>-0     (-----) [001] dns3 82311.751978: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18238          <idle>-0     (-----) [001] .n.1 82311.752012: cpu_idle: state=4294967295 cpu_id=1
18239          <idle>-0     (-----) [001] d..2 82311.752028: 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
18240     rcu_preempt-7     (    7) [001] d..2 82311.752055: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
18241     rcu_preempt-7     (    7) [001] d..3 82311.752099: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
18242          <idle>-0     (-----) [002] .n.1 82311.752115: cpu_idle: state=4294967295 cpu_id=2
18243     rcu_preempt-7     (    7) [001] d..2 82311.752117: 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
18244         rcuop/2-29    (   29) [001] d..2 82311.752126: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
18245          <idle>-0     (-----) [002] d..2 82311.752149: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
18246         rcuop/2-29    (   29) [001] d..3 82311.752150: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
18247         rcuop/2-29    (   29) [001] d..2 82311.752156: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18248         rcuop/2-29    (   29) [001] d..3 82311.752170: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18249         rcuop/2-29    (   29) [001] d..2 82311.752181: 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
18250         rcuop/3-37    (   37) [001] d..2 82311.752204: 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
18251         sugov:0-576   (  576) [002] .... 82311.752214: clk_set_rate: pwrcl_clk 748800000
18252         sugov:0-576   (  576) [002] .... 82311.752231: clk_set_rate: cpu3_pwrcl_clk 652800000
18253     rcu_preempt-7     (    7) [001] d..2 82311.752237: 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
18254         sugov:0-576   (  576) [002] .... 82311.752245: clk_set_rate: cpu2_pwrcl_clk 652800000
18255         sugov:0-576   (  576) [002] .... 82311.752254: clk_set_rate: cpu1_pwrcl_clk 652800000
18256          <idle>-0     (-----) [001] d..1 82311.752255: cpu_idle: state=0 cpu_id=1
18257         sugov:0-576   (  576) [002] .... 82311.752263: clk_set_rate: cpu0_pwrcl_clk 748800000
18258         sugov:0-576   (  576) [002] .... 82311.752277: cpu_frequency: state=748800 cpu_id=0
18259         sugov:0-576   (  576) [002] .... 82311.752322: cpu_frequency: state=748800 cpu_id=1
18260         sugov:0-576   (  576) [002] .... 82311.752328: cpu_frequency: state=748800 cpu_id=2
18261         sugov:0-576   (  576) [002] .... 82311.752333: cpu_frequency: state=748800 cpu_id=3
18262         sugov:0-576   (  576) [002] d..2 82311.752403: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18263          <idle>-0     (-----) [002] d..1 82311.752422: cpu_idle: state=2 cpu_id=2
18264          <idle>-0     (-----) [001] d.s2 82311.758470: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18265          <idle>-0     (-----) [001] dns3 82311.758486: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18266          <idle>-0     (-----) [001] dns3 82311.758493: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18267          <idle>-0     (-----) [001] dns4 82311.758530: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
18268          <idle>-0     (-----) [001] .n.1 82311.758543: cpu_idle: state=4294967295 cpu_id=1
18269          <idle>-0     (-----) [001] d..2 82311.758558: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18270<...>-1054 ( 1054) [001] .... 82311.758638: clk_set_rate: l3_cluster0_vote_clk 300000000
18271<...>-1054 ( 1054) [001] .... 82311.758645: clk_set_rate: l3_clk 300000000
18272<...>-1054 ( 1054) [001] d..2 82311.758689: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18273     rcu_preempt-7     (    7) [001] d..2 82311.758704: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
18274     rcu_preempt-7     (    7) [001] d..3 82311.758725: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
18275     rcu_preempt-7     (    7) [001] d..2 82311.758739: 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
18276         rcuop/2-29    (   29) [001] d..2 82311.758744: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
18277         rcuop/2-29    (   29) [001] d..3 82311.758759: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
18278         rcuop/2-29    (   29) [001] d..2 82311.758770: 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
18279         rcuop/3-37    (   37) [001] d..2 82311.758810: 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
18280          <idle>-0     (-----) [001] d..1 82311.758829: cpu_idle: state=0 cpu_id=1
18281          <idle>-0     (-----) [001] d..2 82311.766188: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18282          <idle>-0     (-----) [001] dn.3 82311.766211: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18283          <idle>-0     (-----) [001] .n.1 82311.766257: cpu_idle: state=4294967295 cpu_id=1
18284          <idle>-0     (-----) [001] d..2 82311.766275: 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
18285     ksoftirqd/1-18    (   18) [001] d..2 82311.766320: 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
18286          <idle>-0     (-----) [001] d..1 82311.766335: cpu_idle: state=2 cpu_id=1
18287          <idle>-0     (-----) [000] d.h2 82311.781734: sched_waking: comm=watchdog pid=9148 prio=120 target_cpu=000
18288          <idle>-0     (-----) [000] dnh3 82311.781913: sched_wakeup: comm=watchdog pid=9148 prio=120 target_cpu=000
18289          <idle>-0     (-----) [000] dnh3 82311.782270: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
18290          <idle>-0     (-----) [000] dnh4 82311.782351: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
18291          <idle>-0     (-----) [000] .n.1 82311.782402: cpu_idle: state=4294967295 cpu_id=0
18292          <idle>-0     (-----) [000] d..2 82311.782483: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=watchdog next_pid=9148 next_prio=120
18293          <idle>-0     (-----) [002] .n.1 82311.782567: cpu_idle: state=4294967295 cpu_id=2
18294          <idle>-0     (-----) [002] d..2 82311.782616: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
18295         sugov:0-576   (  576) [002] .... 82311.782705: clk_set_rate: pwrcl_clk 652800000
18296         sugov:0-576   (  576) [002] .... 82311.782759: clk_set_rate: cpu3_pwrcl_clk 748800000
18297         sugov:0-576   (  576) [002] .... 82311.782772: clk_set_rate: cpu2_pwrcl_clk 748800000
18298         sugov:0-576   (  576) [002] .... 82311.782781: clk_set_rate: cpu1_pwrcl_clk 748800000
18299         sugov:0-576   (  576) [002] .... 82311.782791: clk_set_rate: cpu0_pwrcl_clk 652800000
18300         sugov:0-576   (  576) [002] .... 82311.782908: cpu_frequency: state=652800 cpu_id=0
18301         sugov:0-576   (  576) [002] .... 82311.782969: cpu_frequency: state=652800 cpu_id=1
18302         sugov:0-576   (  576) [002] .... 82311.782975: cpu_frequency: state=652800 cpu_id=2
18303         sugov:0-576   (  576) [002] .... 82311.782980: cpu_frequency: state=652800 cpu_id=3
18304         sugov:0-576   (  576) [002] d..2 82311.783113: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18305          <idle>-0     (-----) [002] d..2 82311.783126: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18306          <idle>-0     (-----) [002] dn.3 82311.783151: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
18307          <idle>-0     (-----) [002] d..2 82311.783166: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
18308     ksoftirqd/2-26    (   26) [002] d.s2 82311.783213: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
18309<...>-9148 ( 8943) [000] d..2 82311.783226: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
18310     ksoftirqd/2-26    (   26) [002] d.s3 82311.783330: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
18311<...>-9148 ( 8943) [000] d..3 82311.783353: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
18312     ksoftirqd/2-26    (   26) [002] d..2 82311.783402: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
18313         rcuop/0-10    (   10) [002] d..2 82311.783421: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
18314         rcuop/0-10    (   10) [002] d..3 82311.783483: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18315         rcuop/0-10    (   10) [002] d..2 82311.783503: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18316<...>-9148 ( 8943) [000] d..3 82311.783693: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=000
18317<...>-9148 ( 8943) [000] d..4 82311.783744: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=001
18318          <idle>-0     (-----) [001] .n.1 82311.783953: cpu_idle: state=4294967295 cpu_id=1
18319<...>-9148 ( 8943) [000] d..2 82311.783972: sched_switch: prev_comm=watchdog prev_pid=9148 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18320          <idle>-0     (-----) [001] d..2 82311.784000: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=8967 next_prio=120
18321     rcu_preempt-7     (    7) [000] d..2 82311.784038: 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
18322          <idle>-0     (-----) [000] d..1 82311.784088: cpu_idle: state=0 cpu_id=0
18323<...>-1054 ( 1054) [002] d..2 82311.784250: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18324<...>-8967 ( 8943) [001] d.s2 82311.784278: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
18325          <idle>-0     (-----) [002] d..1 82311.784283: cpu_idle: state=2 cpu_id=2
18326<...>-8967 ( 8943) [001] d.s3 82311.784303: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
18327<...>-8967 ( 8943) [001] d.s3 82311.784320: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
18328          <idle>-0     (-----) [002] .n.1 82311.784645: cpu_idle: state=4294967295 cpu_id=2
18329          <idle>-0     (-----) [002] d..2 82311.784675: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18330<...>-1054 ( 1054) [002] d..2 82311.784739: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18331          <idle>-0     (-----) [002] d..1 82311.784757: cpu_idle: state=2 cpu_id=2
18332<...>-8967 ( 8943) [001] d..3 82311.784772: sched_waking: comm=InputReader pid=9040 prio=112 target_cpu=000
18333<...>-8967 ( 8943) [001] d..4 82311.784811: sched_wakeup: comm=InputReader pid=9040 prio=112 target_cpu=000
18334          <idle>-0     (-----) [000] .n.1 82311.784819: cpu_idle: state=4294967295 cpu_id=0
18335          <idle>-0     (-----) [000] d..2 82311.784838: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputReader next_pid=9040 next_prio=112
18336<...>-8967 ( 8943) [001] d..2 82311.784890: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18337          <idle>-0     (-----) [001] d..1 82311.784917: cpu_idle: state=2 cpu_id=1
18338<...>-9040 ( 8943) [000] d..1 82311.785068: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=001
18339<...>-9040 ( 8943) [000] d..2 82311.785092: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=001
18340          <idle>-0     (-----) [001] .n.1 82311.785267: cpu_idle: state=4294967295 cpu_id=1
18341          <idle>-0     (-----) [001] d..2 82311.785302: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=8967 next_prio=120
18342<...>-9040 ( 8943) [000] d..2 82311.785332: sched_switch: prev_comm=InputReader prev_pid=9040 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18343          <idle>-0     (-----) [000] d..1 82311.785353: cpu_idle: state=0 cpu_id=0
18344<...>-8967 ( 8943) [001] d..3 82311.785354: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=003
18345<...>-8967 ( 8943) [001] d..4 82311.785411: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
18346          <idle>-0     (-----) [000] .n.1 82311.785419: cpu_idle: state=4294967295 cpu_id=0
18347          <idle>-0     (-----) [000] d..2 82311.785436: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
18348<...>-8967 ( 8943) [001] d..2 82311.785469: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18349<...>-9039 ( 8943) [000] d..1 82311.785486: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=001
18350          <idle>-0     (-----) [001] d..1 82311.785491: cpu_idle: state=2 cpu_id=1
18351<...>-9039 ( 8943) [000] d..2 82311.785511: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=001
18352<...>-9039 ( 8943) [000] d..2 82311.785573: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18353          <idle>-0     (-----) [000] d..1 82311.785587: cpu_idle: state=0 cpu_id=0
18354          <idle>-0     (-----) [001] .n.1 82311.785767: cpu_idle: state=4294967295 cpu_id=1
18355          <idle>-0     (-----) [001] d..2 82311.785801: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=8967 next_prio=120
18356<...>-8967 ( 8943) [001] .... 82311.786453: binder_transaction: transaction=1568207 dest_node=274 dest_proc=585 dest_thread=0 reply=0 flags=0x10 code=0x2
18357<...>-8967 ( 8943) [001] .... 82311.786484: binder_transaction_alloc_buf: transaction=1568207 data_size=44 offsets_size=0
18358<...>-8967 ( 8943) [001] d..4 82311.786509: sched_waking: comm=Binder:585_3 pid=673 prio=120 target_cpu=000
18359<...>-8967 ( 8943) [001] dn.5 82311.786556: sched_wakeup: comm=Binder:585_3 pid=673 prio=120 target_cpu=001
18360<...>-8967 ( 8943) [001] d..2 82311.786576: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=R+ ==> next_comm=Binder:585_3 next_pid=673 next_prio=120
18361<...>-673 ( 585) [001] .... 82311.786614: binder_transaction_received: transaction=1568207
18362<...>-673 ( 585) [001] .... 82311.786798: binder_transaction: transaction=1568208 dest_node=0 dest_proc=8943 dest_thread=8967 reply=1 flags=0x0 code=0x0
18363<...>-673 ( 585) [001] .... 82311.786807: binder_transaction_alloc_buf: transaction=1568208 data_size=4 offsets_size=0
18364<...>-673 ( 585) [001] d..2 82311.786913: sched_switch: prev_comm=Binder:585_3 prev_pid=673 prev_prio=120 prev_state=S ==> next_comm=android.fg next_pid=8967 next_prio=120
18365<...>-8967 ( 8943) [001] .... 82311.786931: binder_transaction_received: transaction=1568208
18366<...>-8967 ( 8943) [001] d..2 82311.787220: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18367          <idle>-0     (-----) [001] d..1 82311.787246: cpu_idle: state=2 cpu_id=1
18368          <idle>-0     (-----) [003] d.h3 82311.788281: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
18369          <idle>-0     (-----) [003] dnh4 82311.788349: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18370          <idle>-0     (-----) [003] .n.1 82311.788368: cpu_idle: state=4294967295 cpu_id=3
18371          <idle>-0     (-----) [003] d..2 82311.788398: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18372          <idle>-0     (-----) [000] d.s2 82311.788488: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18373          <idle>-0     (-----) [000] dns3 82311.788513: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18374<...>-1054 ( 1054) [003] d..1 82311.788528: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
18375          <idle>-0     (-----) [000] .n.1 82311.788537: cpu_idle: state=4294967295 cpu_id=0
18376          <idle>-0     (-----) [000] d..2 82311.788551: 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
18377<...>-1054 ( 1054) [003] d..1 82311.788565: clk_disable: gcc_ufs_phy_phy_aux_clk
18378<...>-1054 ( 1054) [003] d..1 82311.788584: clk_disable: gcc_ufs_phy_phy_aux_clk_src
18379     rcu_preempt-7     (    7) [000] d..2 82311.788602: 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
18380<...>-1054 ( 1054) [003] d..1 82311.788609: clk_disable: gcc_ufs_mem_clkref_clk
18381          <idle>-0     (-----) [000] d..1 82311.788622: cpu_idle: state=2 cpu_id=0
18382<...>-1054 ( 1054) [003] d..1 82311.788635: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
18383<...>-1054 ( 1054) [003] d..1 82311.788644: clk_disable: gcc_ufs_phy_axi_clk
18384<...>-1054 ( 1054) [003] d..1 82311.788660: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
18385<...>-1054 ( 1054) [003] d..1 82311.788669: clk_disable: gcc_aggre_ufs_phy_axi_clk
18386<...>-1054 ( 1054) [003] d..1 82311.788678: clk_disable: gcc_ufs_phy_axi_clk_src
18387<...>-1054 ( 1054) [003] d..1 82311.788691: clk_disable: gcc_ufs_phy_ahb_clk
18388<...>-1054 ( 1054) [003] d..1 82311.788706: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
18389<...>-1054 ( 1054) [003] d..1 82311.788715: clk_disable: gcc_ufs_phy_unipro_core_clk
18390<...>-1054 ( 1054) [003] d..1 82311.788726: clk_disable: gcc_ufs_phy_unipro_core_clk_src
18391<...>-1054 ( 1054) [003] d..1 82311.788740: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
18392<...>-1054 ( 1054) [003] d..1 82311.788752: clk_disable: gcc_ufs_phy_ice_core_clk
18393<...>-1054 ( 1054) [003] d..1 82311.788763: clk_disable: gcc_ufs_phy_ice_core_clk_src
18394          <idle>-0     (-----) [001] ...1 82311.789151: cpu_idle: state=4294967295 cpu_id=1
18395          <idle>-0     (-----) [001] d..1 82311.789163: cpu_idle: state=2 cpu_id=1
18396<...>-1054 ( 1054) [003] d..2 82311.789311: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18397          <idle>-0     (-----) [003] d..1 82311.789339: cpu_idle: state=2 cpu_id=3
18398          <idle>-0     (-----) [001] d.s3 82311.789665: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18399          <idle>-0     (-----) [001] d.s4 82311.789685: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
18400          <idle>-0     (-----) [001] d.s4 82311.789698: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18401          <idle>-0     (-----) [001] ...1 82311.789719: cpu_idle: state=4294967295 cpu_id=1
18402          <idle>-0     (-----) [001] d..1 82311.789745: cpu_idle: state=0 cpu_id=1
18403          <idle>-0     (-----) [003] .n.1 82311.790046: cpu_idle: state=4294967295 cpu_id=3
18404          <idle>-0     (-----) [003] d..2 82311.790088: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18405<...>-1054 ( 1054) [003] d..2 82311.790174: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18406          <idle>-0     (-----) [003] d..1 82311.790200: cpu_idle: state=2 cpu_id=3
18407          <idle>-0     (-----) [000] d.H3 82311.795589: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
18408          <idle>-0     (-----) [000] d.H4 82311.795620: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
18409          <idle>-0     (-----) [000] d.s2 82311.795632: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18410          <idle>-0     (-----) [000] dns3 82311.795662: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18411          <idle>-0     (-----) [000] dns3 82311.795670: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18412          <idle>-0     (-----) [000] dns4 82311.795714: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18413          <idle>-0     (-----) [000] .n.1 82311.795729: cpu_idle: state=4294967295 cpu_id=0
18414          <idle>-0     (-----) [000] d..2 82311.795751: 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
18415          <idle>-0     (-----) [001] ...1 82311.795761: cpu_idle: state=4294967295 cpu_id=1
18416          <idle>-0     (-----) [001] d..1 82311.795767: cpu_idle: state=2 cpu_id=1
18417     rcu_preempt-7     (    7) [000] d..2 82311.795774: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
18418     rcu_preempt-7     (    7) [000] d..3 82311.795795: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
18419     rcu_preempt-7     (    7) [000] d..2 82311.795817: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18420<...>-1054 ( 1054) [000] d..2 82311.795947: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18421          <idle>-0     (-----) [002] .n.1 82311.795961: cpu_idle: state=4294967295 cpu_id=2
18422          <idle>-0     (-----) [000] d..1 82311.795972: cpu_idle: state=2 cpu_id=0
18423          <idle>-0     (-----) [002] d..2 82311.795991: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
18424         sugov:0-576   (  576) [002] .... 82311.796026: clk_set_rate: pwrcl_clk 748800000
18425         sugov:0-576   (  576) [002] .... 82311.796040: clk_set_rate: cpu3_pwrcl_clk 652800000
18426         sugov:0-576   (  576) [002] .... 82311.796052: clk_set_rate: cpu2_pwrcl_clk 652800000
18427         sugov:0-576   (  576) [002] .... 82311.796063: clk_set_rate: cpu1_pwrcl_clk 652800000
18428         sugov:0-576   (  576) [002] .... 82311.796074: clk_set_rate: cpu0_pwrcl_clk 748800000
18429         sugov:0-576   (  576) [002] .... 82311.796089: cpu_frequency: state=748800 cpu_id=0
18430         sugov:0-576   (  576) [002] .... 82311.796109: cpu_frequency: state=748800 cpu_id=1
18431         sugov:0-576   (  576) [002] .... 82311.796114: cpu_frequency: state=748800 cpu_id=2
18432         sugov:0-576   (  576) [002] .... 82311.796120: cpu_frequency: state=748800 cpu_id=3
18433         sugov:0-576   (  576) [002] d..2 82311.796146: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
18434         rcuop/0-10    (   10) [002] d..2 82311.796192: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18435         rcuop/0-10    (   10) [002] d..3 82311.796217: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18436         rcuop/0-10    (   10) [002] d..2 82311.796248: 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
18437          <idle>-0     (-----) [002] d..1 82311.796268: cpu_idle: state=2 cpu_id=2
18438          <idle>-0     (-----) [000] .n.1 82311.796540: cpu_idle: state=4294967295 cpu_id=0
18439          <idle>-0     (-----) [000] d..2 82311.796568: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
18440     rcu_preempt-7     (    7) [000] d..2 82311.796615: 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
18441          <idle>-0     (-----) [000] d..1 82311.796632: cpu_idle: state=0 cpu_id=0
18442          <idle>-0     (-----) [000] d.s2 82311.801813: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18443          <idle>-0     (-----) [000] dns3 82311.801837: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
18444          <idle>-0     (-----) [000] .n.1 82311.801858: cpu_idle: state=4294967295 cpu_id=0
18445          <idle>-0     (-----) [000] d..2 82311.801873: 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
18446     rcu_preempt-7     (    7) [000] d..2 82311.801887: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
18447     rcu_preempt-7     (    7) [000] d..3 82311.801933: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
18448     rcu_preempt-7     (    7) [000] d..2 82311.801946: 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
18449         rcuop/0-10    (   10) [000] d..2 82311.801994: 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
18450          <idle>-0     (-----) [000] d..1 82311.802014: cpu_idle: state=0 cpu_id=0
18451          <idle>-0     (-----) [000] d..2 82311.808032: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18452          <idle>-0     (-----) [000] dn.3 82311.808062: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18453          <idle>-0     (-----) [000] .n.1 82311.808070: cpu_idle: state=4294967295 cpu_id=0
18454          <idle>-0     (-----) [000] d..2 82311.808087: 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
18455     ksoftirqd/0-3     (    3) [000] d.s2 82311.808114: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18456     ksoftirqd/0-3     (    3) [000] d.s3 82311.808141: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18457     ksoftirqd/0-3     (    3) [000] d..2 82311.808164: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18458<...>-1054 ( 1054) [000] d..2 82311.808275: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18459          <idle>-0     (-----) [000] d..1 82311.808293: cpu_idle: state=2 cpu_id=0
18460          <idle>-0     (-----) [000] d.h2 82311.917816: sched_waking: comm=CCodecWatchdog pid=9351 prio=120 target_cpu=000
18461          <idle>-0     (-----) [000] dnh3 82311.918115: sched_wakeup: comm=CCodecWatchdog pid=9351 prio=120 target_cpu=000
18462          <idle>-0     (-----) [001] d.h2 82311.918160: sched_waking: comm=CCodecWatchdog pid=9143 prio=120 target_cpu=001
18463          <idle>-0     (-----) [001] dnh3 82311.918245: sched_wakeup: comm=CCodecWatchdog pid=9143 prio=120 target_cpu=001
18464          <idle>-0     (-----) [001] .n.1 82311.918291: cpu_idle: state=4294967295 cpu_id=1
18465          <idle>-0     (-----) [000] dnh3 82311.918628: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
18466          <idle>-0     (-----) [000] dnh4 82311.918719: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
18467          <idle>-0     (-----) [001] dns3 82311.918738: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18468          <idle>-0     (-----) [000] .n.1 82311.918773: cpu_idle: state=4294967295 cpu_id=0
18469          <idle>-0     (-----) [000] d..2 82311.918875: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=9351 next_prio=120
18470          <idle>-0     (-----) [001] dns4 82311.918945: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
18471          <idle>-0     (-----) [001] dns3 82311.918988: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
18472          <idle>-0     (-----) [001] dns4 82311.919019: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
18473          <idle>-0     (-----) [001] d..2 82311.919095: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=9143 next_prio=120
18474          <idle>-0     (-----) [002] .n.1 82311.919108: cpu_idle: state=4294967295 cpu_id=2
18475          <idle>-0     (-----) [002] d..2 82311.919160: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
18476         sugov:0-576   (  576) [002] .... 82311.919308: clk_set_rate: pwrcl_clk 652800000
18477  CCodecWatchdog-9143  ( 8943) [001] d..2 82311.919334: sched_switch: prev_comm=CCodecWatchdog prev_pid=9143 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
18478         sugov:0-576   (  576) [002] .... 82311.919401: clk_set_rate: cpu3_pwrcl_clk 748800000
18479         sugov:0-576   (  576) [002] .... 82311.919418: clk_set_rate: cpu2_pwrcl_clk 748800000
18480     kworker/1:1-25249 (25249) [001] d..2 82311.919430: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18481         sugov:0-576   (  576) [002] .... 82311.919430: clk_set_rate: cpu1_pwrcl_clk 748800000
18482         sugov:0-576   (  576) [002] .... 82311.919441: clk_set_rate: cpu0_pwrcl_clk 652800000
18483  CCodecWatchdog-9351  ( 9105) [000] d..2 82311.919489: sched_switch: prev_comm=CCodecWatchdog prev_pid=9351 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18484         sugov:0-576   (  576) [002] .... 82311.919564: cpu_frequency: state=652800 cpu_id=0
18485          <idle>-0     (-----) [000] d..1 82311.919590: cpu_idle: state=2 cpu_id=0
18486         sugov:0-576   (  576) [002] .... 82311.919655: cpu_frequency: state=652800 cpu_id=1
18487         sugov:0-576   (  576) [002] .... 82311.919679: cpu_frequency: state=652800 cpu_id=2
18488         sugov:0-576   (  576) [002] .... 82311.919692: cpu_frequency: state=652800 cpu_id=3
18489         sugov:0-576   (  576) [002] d..2 82311.919785: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18490          <idle>-0     (-----) [002] d..1 82311.919816: cpu_idle: state=2 cpu_id=2
18491<...>-1054 ( 1054) [001] d..2 82311.920769: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18492          <idle>-0     (-----) [001] d..1 82311.920804: cpu_idle: state=2 cpu_id=1
18493          <idle>-0     (-----) [000] d.s3 82311.944184: sched_waking: comm=msm_watchdog pid=76 prio=0 target_cpu=000
18494          <idle>-0     (-----) [000] dns4 82311.944356: sched_wakeup: comm=msm_watchdog pid=76 prio=0 target_cpu=000
18495          <idle>-0     (-----) [000] dns3 82311.944436: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
18496          <idle>-0     (-----) [000] dns4 82311.944755: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18497          <idle>-0     (-----) [000] .n.1 82311.944964: cpu_idle: state=4294967295 cpu_id=0
18498          <idle>-0     (-----) [000] d..2 82311.945082: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=msm_watchdog next_pid=76 next_prio=0
18499<...>-76 ( 76) [000] d..2 82311.945328: sched_switch: prev_comm=msm_watchdog prev_pid=76 prev_prio=0 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18500<...>-1054 ( 1054) [000] d..2 82311.945978: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18501          <idle>-0     (-----) [000] d..1 82311.946090: cpu_idle: state=0 cpu_id=0
18502          <idle>-0     (-----) [000] d.h2 82311.949653: sched_waking: comm=oid.setupwizard pid=9298 prio=120 target_cpu=000
18503          <idle>-0     (-----) [000] dnh3 82311.949705: sched_wakeup: comm=oid.setupwizard pid=9298 prio=120 target_cpu=000
18504          <idle>-0     (-----) [000] .n.1 82311.949730: cpu_idle: state=4294967295 cpu_id=0
18505          <idle>-0     (-----) [000] d..2 82311.949756: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=9298 next_prio=120
18506 oid.setupwizard-9298  ( 9298) [000] d..2 82311.950643: sched_switch: prev_comm=oid.setupwizard prev_pid=9298 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18507          <idle>-0     (-----) [000] d..2 82311.950655: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18508          <idle>-0     (-----) [000] dn.3 82311.950693: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18509          <idle>-0     (-----) [000] d..2 82311.950715: 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
18510     ksoftirqd/0-3     (    3) [000] d..2 82311.950781: 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
18511          <idle>-0     (-----) [000] d..1 82311.950813: cpu_idle: state=2 cpu_id=0
18512          <idle>-0     (-----) [004] d.h2 82311.996998: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
18513          <idle>-0     (-----) [004] dnh3 82311.997178: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
18514          <idle>-0     (-----) [000] d..2 82311.997386: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18515          <idle>-0     (-----) [004] .n.1 82311.997427: cpu_idle: state=4294967295 cpu_id=4
18516          <idle>-0     (-----) [000] dn.3 82311.997445: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18517          <idle>-0     (-----) [004] d..2 82311.997524: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
18518          <idle>-0     (-----) [000] dns3 82311.997596: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18519          <idle>-0     (-----) [000] dns4 82311.997660: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18520          <idle>-0     (-----) [000] .n.1 82311.997703: cpu_idle: state=4294967295 cpu_id=0
18521          <idle>-0     (-----) [000] d..2 82311.997755: 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
18522     ksoftirqd/0-3     (    3) [000] d..2 82311.997804: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18523 s.nexuslauncher-10023 (10023) [004] .... 82311.998303: binder_transaction: transaction=1568209 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
18524 s.nexuslauncher-10023 (10023) [004] .... 82311.998333: binder_transaction_alloc_buf: transaction=1568209 data_size=80 offsets_size=0
18525 s.nexuslauncher-10023 (10023) [004] d..4 82311.998365: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
18526          <idle>-0     (-----) [001] dnh2 82311.998810: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
18527          <idle>-0     (-----) [001] .n.1 82311.998833: cpu_idle: state=4294967295 cpu_id=1
18528 s.nexuslauncher-10023 (10023) [004] d..2 82311.998838: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
18529          <idle>-0     (-----) [001] d..2 82311.998880: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
18530          <idle>-0     (-----) [004] d..1 82311.998885: cpu_idle: state=2 cpu_id=4
18531<...>-8874 ( 8858) [001] .... 82311.998929: binder_transaction_received: transaction=1568209
18532<...>-1054 ( 1054) [000] d..2 82311.999178: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
18533<...>-8874 ( 8858) [001] d.s2 82311.999217: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18534          <idle>-0     (-----) [000] d..1 82311.999228: cpu_idle: state=2 cpu_id=0
18535<...>-8874 ( 8858) [001] d.s3 82311.999252: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
18536<...>-8874 ( 8858) [001] d.s3 82311.999272: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18537<...>-8874 ( 8858) [001] ...1 82311.999527: tracing_mark_write: B|8858|HIDL::IComposerClient::getActiveConfig::client
18538<...>-8874 ( 8858) [001] ...1 82311.999563: tracing_mark_write: E|8858
18539          <idle>-0     (-----) [000] .n.1 82311.999702: cpu_idle: state=4294967295 cpu_id=0
18540<...>-8874 ( 8858) [001] .... 82311.999733: binder_transaction: transaction=1568210 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x7
18541          <idle>-0     (-----) [000] d..2 82311.999734: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18542<...>-8874 ( 8858) [001] .... 82311.999743: binder_transaction_alloc_buf: transaction=1568210 data_size=64 offsets_size=0
18543<...>-8874 ( 8858) [001] ...2 82311.999776: binder_set_priority: proc=619 thread=619 old=97 => new=120 desired=120
18544<...>-1054 ( 1054) [000] d..2 82311.999820: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18545          <idle>-0     (-----) [000] d..1 82311.999840: cpu_idle: state=2 cpu_id=0
18546<...>-8874 ( 8858) [001] d..4 82311.999841: sched_waking: [email protected] pid=619 prio=120 target_cpu=000
18547<...>-8874 ( 8858) [001] d..5 82311.999918: sched_wakeup: [email protected] pid=619 prio=120 target_cpu=001
18548<...>-8874 ( 8858) [001] d..2 82311.999950: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=120
18549 [email protected]   (  619) [001] .... 82311.999985: binder_transaction_received: transaction=1568210
18550 [email protected]   (  619) [001] ...1 82312.000240: tracing_mark_write: B|619|HIDL::IComposerClient::getActiveConfig::server
18551 [email protected]   (  619) [001] ...1 82312.000398: tracing_mark_write: E|619
18552 [email protected]   (  619) [001] .... 82312.000443: binder_transaction: transaction=1568211 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
18553 [email protected]   (  619) [001] .... 82312.000453: binder_transaction_alloc_buf: transaction=1568211 data_size=12 offsets_size=0
18554 [email protected]   (  619) [001] d..2 82312.000466: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
18555 [email protected]   (  619) [001] dn.3 82312.000502: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
18556 [email protected]   (  619) [001] d..2 82312.000520: sched_switch: [email protected] prev_pid=619 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
18557<...>-8874 ( 8858) [001] .... 82312.000538: binder_transaction_received: transaction=1568211
18558<...>-8874 ( 8858) [001] d..1 82312.000676: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
18559<...>-8874 ( 8858) [001] d..2 82312.000785: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
18560<...>-8874 ( 8858) [001] d..1 82312.000810: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
18561<...>-8874 ( 8858) [001] d..2 82312.000850: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
18562<...>-8874 ( 8858) [001] d..1 82312.000868: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
18563<...>-8874 ( 8858) [001] d..2 82312.000915: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
18564<...>-8874 ( 8858) [001] d..2 82312.000997: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=120
18565 [email protected]   (  619) [001] .... 82312.001006: binder_set_priority: proc=619 thread=619 old=120 => new=97 desired=97
18566 [email protected]   (  619) [001] d..2 82312.001162: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18567          <idle>-0     (-----) [002] .n.1 82312.001179: cpu_idle: state=4294967295 cpu_id=2
18568          <idle>-0     (-----) [001] d..1 82312.001197: cpu_idle: state=2 cpu_id=1
18569          <idle>-0     (-----) [000] .n.1 82312.001211: cpu_idle: state=4294967295 cpu_id=0
18570          <idle>-0     (-----) [002] d..2 82312.001231: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
18571          <idle>-0     (-----) [000] d..2 82312.001246: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
18572          <idle>-0     (-----) [003] .n.1 82312.001326: cpu_idle: state=4294967295 cpu_id=3
18573<...>-8894 ( 8858) [000] ...1 82312.001333: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
18574<...>-8894 ( 8858) [000] ...1 82312.001346: tracing_mark_write: E|8858
18575        DispSync-8879  ( 8858) [002] d..2 82312.001377: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18576          <idle>-0     (-----) [003] d..2 82312.001380: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
18577          <idle>-0     (-----) [002] d..1 82312.001404: cpu_idle: state=2 cpu_id=2
18578<...>-8894 ( 8858) [000] .... 82312.001409: binder_transaction: transaction=1568212 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
18579<...>-8894 ( 8858) [000] .... 82312.001417: binder_transaction_alloc_buf: transaction=1568212 data_size=68 offsets_size=0
18580<...>-8894 ( 8858) [000] ...2 82312.001424: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
18581<...>-8894 ( 8858) [000] d..4 82312.001436: sched_waking: [email protected] pid=619 prio=112 target_cpu=001
18582<...>-8894 ( 8858) [000] d..5 82312.001474: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=000
18583<...>-8894 ( 8858) [000] d..2 82312.001498: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
18584 [email protected]   (  619) [000] .... 82312.001512: binder_transaction_received: transaction=1568212
18585 [email protected]   (  619) [000] ...1 82312.001566: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
18586  appEventThread-8881  ( 8858) [003] d..1 82312.001572: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
18587  appEventThread-8881  ( 8858) [003] d..2 82312.001603: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
18588 [email protected]   (  619) [000] ...1 82312.001605: tracing_mark_write: C|619|SetVsyncState |1
18589 [email protected]   (  619) [000] d..4 82312.001708: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18590  appEventThread-8881  ( 8858) [003] d..2 82312.001736: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18591 [email protected]   (  619) [000] d..5 82312.001758: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18592          <idle>-0     (-----) [003] d..2 82312.001775: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18593 [email protected]   (  619) [000] ...1 82312.001896: tracing_mark_write: E|619
18594 [email protected]   (  619) [000] .... 82312.001915: binder_transaction: transaction=1568213 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
18595          <idle>-0     (-----) [002] .n.1 82312.001916: cpu_idle: state=4294967295 cpu_id=2
18596 [email protected]   (  619) [000] .... 82312.001922: binder_transaction_alloc_buf: transaction=1568213 data_size=8 offsets_size=0
18597 [email protected]   (  619) [000] d..2 82312.001927: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
18598          <idle>-0     (-----) [002] d..2 82312.001945: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
18599 [email protected]   (  619) [000] dn.3 82312.001948: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
18600 [email protected]   (  619) [000] d..2 82312.001962: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
18601<...>-8894 ( 8858) [000] .... 82312.001976: binder_transaction_received: transaction=1568213
18602        DispSync-8879  ( 8858) [002] d..2 82312.002091: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> [email protected] next_pid=619 next_prio=112
18603<...>-8894 ( 8858) [000] d..2 82312.002103: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18604 [email protected]   (  619) [002] .... 82312.002105: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
18605          <idle>-0     (-----) [000] d..1 82312.002130: cpu_idle: state=2 cpu_id=0
18606 [email protected]   (  619) [002] d..2 82312.002212: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18607          <idle>-0     (-----) [002] d..1 82312.002238: cpu_idle: state=2 cpu_id=2
18608 crtc_commit:111-321   (  321) [003] d..2 82312.002277: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18609          <idle>-0     (-----) [003] d..1 82312.002302: cpu_idle: state=2 cpu_id=3
18610          <idle>-0     (-----) [001] d.s3 82312.002795: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18611          <idle>-0     (-----) [001] d.s4 82312.002824: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18612          <idle>-0     (-----) [001] ...1 82312.002841: cpu_idle: state=4294967295 cpu_id=1
18613          <idle>-0     (-----) [001] d..1 82312.002852: cpu_idle: state=2 cpu_id=1
18614          <idle>-0     (-----) [003] .n.1 82312.003156: cpu_idle: state=4294967295 cpu_id=3
18615          <idle>-0     (-----) [003] d..2 82312.003181: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18616 crtc_commit:111-321   (  321) [003] d..2 82312.003528: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18617          <idle>-0     (-----) [003] d..1 82312.003549: cpu_idle: state=2 cpu_id=3
18618          <idle>-0     (-----) [001] d.s3 82312.003874: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18619          <idle>-0     (-----) [001] d.s4 82312.003903: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18620          <idle>-0     (-----) [001] ...1 82312.003920: cpu_idle: state=4294967295 cpu_id=1
18621          <idle>-0     (-----) [001] d..1 82312.003930: cpu_idle: state=2 cpu_id=1
18622          <idle>-0     (-----) [003] .n.1 82312.004229: cpu_idle: state=4294967295 cpu_id=3
18623          <idle>-0     (-----) [003] d..2 82312.004253: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18624 crtc_commit:111-321   (  321) [003] d..1 82312.004469: clk_enable: disp_cc_mdss_vsync_clk_src
18625 crtc_commit:111-321   (  321) [003] d..1 82312.004479: clk_enable: disp_cc_mdss_rscc_vsync_clk
18626 crtc_commit:111-321   (  321) [003] d..1 82312.004557: clk_enable: disp_cc_mdss_rscc_ahb_clk
18627 crtc_commit:111-321   (  321) [003] d..2 82312.004668: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18628          <idle>-0     (-----) [003] d..1 82312.004685: cpu_idle: state=0 cpu_id=3
18629          <idle>-0     (-----) [003] d.h2 82312.004747: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18630          <idle>-0     (-----) [003] dnh3 82312.004765: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18631          <idle>-0     (-----) [003] .n.1 82312.004777: cpu_idle: state=4294967295 cpu_id=3
18632          <idle>-0     (-----) [003] d..2 82312.004790: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18633 crtc_commit:111-321   (  321) [003] d..2 82312.004821: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18634          <idle>-0     (-----) [003] d..1 82312.004833: cpu_idle: state=0 cpu_id=3
18635          <idle>-0     (-----) [003] d.h2 82312.004910: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18636          <idle>-0     (-----) [003] dnh3 82312.004923: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18637          <idle>-0     (-----) [003] .n.1 82312.004932: cpu_idle: state=4294967295 cpu_id=3
18638          <idle>-0     (-----) [003] d..2 82312.004944: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18639 crtc_commit:111-321   (  321) [003] d..1 82312.005010: clk_enable: gcc_disp_axi_clk
18640 crtc_commit:111-321   (  321) [003] d..1 82312.005043: clk_enable: disp_cc_mdss_ahb_clk
18641 crtc_commit:111-321   (  321) [003] d..1 82312.005062: clk_enable: disp_cc_mdss_axi_clk
18642 crtc_commit:111-321   (  321) [003] d..1 82312.005098: clk_enable: gcc_disp_gpll0_clk_src
18643 crtc_commit:111-321   (  321) [003] d..1 82312.005616: clk_enable: disp_cc_mdss_mdp_clk_src
18644 crtc_commit:111-321   (  321) [003] d..1 82312.005676: clk_enable: disp_cc_mdss_mdp_clk
18645 crtc_commit:111-321   (  321) [003] d.s3 82312.005736: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18646 crtc_commit:111-321   (  321) [003] d.s4 82312.005850: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18647 crtc_commit:111-321   (  321) [003] d..1 82312.005870: clk_enable: disp_cc_mdss_vsync_clk
18648 crtc_commit:111-321   (  321) [003] d..2 82312.006303: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18649<...>-1054 ( 1054) [003] d..2 82312.006440: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18650          <idle>-0     (-----) [003] d..1 82312.006472: cpu_idle: state=0 cpu_id=3
18651          <idle>-0     (-----) [003] ...1 82312.007901: cpu_idle: state=4294967295 cpu_id=3
18652          <idle>-0     (-----) [003] d..1 82312.007909: cpu_idle: state=2 cpu_id=3
18653          <idle>-0     (-----) [000] d.h7 82312.010780: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18654          <idle>-0     (-----) [000] dnh8 82312.010826: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18655          <idle>-0     (-----) [000] dnh9 82312.010857: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18656          <idle>-0     (-----) [000] dnha 82312.010887: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18657          <idle>-0     (-----) [000] dnh7 82312.010905: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
18658          <idle>-0     (-----) [000] dnh8 82312.010943: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
18659          <idle>-0     (-----) [000] .n.1 82312.010980: cpu_idle: state=4294967295 cpu_id=0
18660          <idle>-0     (-----) [000] d..2 82312.011004: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
18661     kworker/0:1-25262 (25262) [000] d..2 82312.011057: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
18662          <idle>-0     (-----) [003] .n.1 82312.011192: cpu_idle: state=4294967295 cpu_id=3
18663 SDM_EventThread-644   (  619) [000] ...1 82312.011208: tracing_mark_write: B|619|HWCCallbacks::Vsync::
18664          <idle>-0     (-----) [003] d..2 82312.011228: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18665 SDM_EventThread-644   (  619) [000] ...1 82312.011238: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
18666 SDM_EventThread-644   (  619) [000] ...1 82312.011246: tracing_mark_write: E|619
18667 SDM_EventThread-644   (  619) [000] .... 82312.011314: binder_transaction: transaction=1568214 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
18668 crtc_commit:111-321   (  321) [003] d..1 82312.011318: clk_disable: disp_cc_mdss_vsync_clk
18669 SDM_EventThread-644   (  619) [000] .... 82312.011322: binder_transaction_alloc_buf: transaction=1568214 data_size=76 offsets_size=0
18670 SDM_EventThread-644   (  619) [000] d..4 82312.011337: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
18671 crtc_commit:111-321   (  321) [003] d..1 82312.011352: clk_disable: disp_cc_mdss_mdp_clk
18672 crtc_commit:111-321   (  321) [003] d..1 82312.011366: clk_disable: disp_cc_mdss_mdp_clk_src
18673 SDM_EventThread-644   (  619) [000] d..5 82312.011381: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
18674 crtc_commit:111-321   (  321) [003] d..1 82312.011404: clk_disable: gcc_disp_gpll0_clk_src
18675 SDM_EventThread-644   (  619) [000] ...1 82312.011428: tracing_mark_write: E|619
18676 SDM_EventThread-644   (  619) [000] d..2 82312.011520: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18677          <idle>-0     (-----) [000] d..2 82312.011529: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18678          <idle>-0     (-----) [000] dn.3 82312.011542: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18679          <idle>-0     (-----) [000] d..2 82312.011556: 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
18680     ksoftirqd/0-3     (    3) [000] d..2 82312.011590: 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
18681          <idle>-0     (-----) [000] d..1 82312.011613: cpu_idle: state=2 cpu_id=0
18682          <idle>-0     (-----) [001] .n.1 82312.011681: cpu_idle: state=4294967295 cpu_id=1
18683          <idle>-0     (-----) [001] d..2 82312.011714: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
18684<...>-8890 ( 8858) [001] .... 82312.011738: binder_transaction_received: transaction=1568214
18685<...>-8890 ( 8858) [001] d.H2 82312.011943: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
18686<...>-8890 ( 8858) [001] d.H3 82312.011979: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
18687 crtc_commit:111-321   (  321) [003] d..1 82312.011993: clk_disable: disp_cc_mdss_axi_clk
18688 crtc_commit:111-321   (  321) [003] d..1 82312.012009: clk_disable: disp_cc_mdss_ahb_clk
18689 crtc_commit:111-321   (  321) [003] d..1 82312.012023: clk_disable: gcc_disp_axi_clk
18690<...>-8890 ( 8858) [001] ...1 82312.012072: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
18691<...>-8890 ( 8858) [001] d..1 82312.012109: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
18692 crtc_commit:111-321   (  321) [003] d..2 82312.012144: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
18693<...>-8890 ( 8858) [001] d..2 82312.012156: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
18694          <idle>-0     (-----) [003] d..2 82312.012168: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
18695<...>-8890 ( 8858) [001] ...1 82312.012176: tracing_mark_write: E|8858
18696        DispSync-8879  ( 8858) [003] d.h2 82312.012206: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
18697        DispSync-8879  ( 8858) [003] d.h3 82312.012246: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18698<...>-8890 ( 8858) [001] d..2 82312.012261: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18699          <idle>-0     (-----) [002] .n.1 82312.012276: cpu_idle: state=4294967295 cpu_id=2
18700        DispSync-8879  ( 8858) [003] d..2 82312.012286: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18701          <idle>-0     (-----) [001] d..1 82312.012289: cpu_idle: state=2 cpu_id=1
18702          <idle>-0     (-----) [003] d..1 82312.012306: cpu_idle: state=0 cpu_id=3
18703          <idle>-0     (-----) [002] d..2 82312.012307: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
18704         sugov:0-576   (  576) [002] .... 82312.012420: clk_set_rate: pwrcl_clk 748800000
18705         sugov:0-576   (  576) [002] .... 82312.012458: clk_set_rate: cpu3_pwrcl_clk 652800000
18706         sugov:0-576   (  576) [002] .... 82312.012477: clk_set_rate: cpu2_pwrcl_clk 652800000
18707         sugov:0-576   (  576) [002] .... 82312.012487: clk_set_rate: cpu1_pwrcl_clk 652800000
18708         sugov:0-576   (  576) [002] .... 82312.012498: clk_set_rate: cpu0_pwrcl_clk 748800000
18709         sugov:0-576   (  576) [002] .... 82312.012514: cpu_frequency: state=748800 cpu_id=0
18710          <idle>-0     (-----) [000] .n.1 82312.012550: cpu_idle: state=4294967295 cpu_id=0
18711          <idle>-0     (-----) [000] d..2 82312.012578: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18712         sugov:0-576   (  576) [002] .... 82312.012590: cpu_frequency: state=748800 cpu_id=1
18713         sugov:0-576   (  576) [002] .... 82312.012596: cpu_frequency: state=748800 cpu_id=2
18714         sugov:0-576   (  576) [002] .... 82312.012601: cpu_frequency: state=748800 cpu_id=3
18715 crtc_commit:111-321   (  321) [000] d..1 82312.012603: clk_disable: disp_cc_mdss_rscc_ahb_clk
18716 crtc_commit:111-321   (  321) [000] d..1 82312.012625: clk_disable: disp_cc_mdss_rscc_vsync_clk
18717 crtc_commit:111-321   (  321) [000] d..1 82312.012640: clk_disable: disp_cc_mdss_vsync_clk_src
18718          <idle>-0     (-----) [003] d.h2 82312.012648: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
18719         sugov:0-576   (  576) [002] d..2 82312.012651: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18720          <idle>-0     (-----) [003] dnh3 82312.012662: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
18721          <idle>-0     (-----) [002] d..1 82312.012669: cpu_idle: state=2 cpu_id=2
18722          <idle>-0     (-----) [003] .n.1 82312.012672: cpu_idle: state=4294967295 cpu_id=3
18723          <idle>-0     (-----) [003] d..2 82312.012684: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
18724        DispSync-8879  ( 8858) [003] d..1 82312.012718: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
18725        DispSync-8879  ( 8858) [003] d..2 82312.012744: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
18726        DispSync-8879  ( 8858) [003] d..2 82312.012784: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18727          <idle>-0     (-----) [003] d..1 82312.012801: cpu_idle: state=0 cpu_id=3
18728 crtc_commit:111-321   (  321) [000] d..2 82312.012854: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
18729          <idle>-0     (-----) [000] d..1 82312.012888: cpu_idle: state=0 cpu_id=0
18730          <idle>-0     (-----) [001] dns2 82312.013106: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18731          <idle>-0     (-----) [001] dns3 82312.013143: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18732          <idle>-0     (-----) [001] .n.1 82312.013156: cpu_idle: state=4294967295 cpu_id=1
18733          <idle>-0     (-----) [001] d..2 82312.013175: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
18734  appEventThread-8881  ( 8858) [001] d..3 82312.013364: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
18735  appEventThread-8881  ( 8858) [001] d..2 82312.013446: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
18736     ksoftirqd/1-18    (   18) [001] d.s2 82312.013478: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18737     ksoftirqd/1-18    (   18) [001] d.s3 82312.013513: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18738          <idle>-0     (-----) [000] .n.1 82312.013522: cpu_idle: state=4294967295 cpu_id=0
18739          <idle>-0     (-----) [000] d..2 82312.013536: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18740     ksoftirqd/1-18    (   18) [001] d..2 82312.013550: 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
18741          <idle>-0     (-----) [001] d..1 82312.013576: cpu_idle: state=0 cpu_id=1
18742 crtc_commit:111-321   (  321) [000] d..2 82312.013765: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
18743          <idle>-0     (-----) [000] d..1 82312.013784: cpu_idle: state=0 cpu_id=0
18744          <idle>-0     (-----) [001] d.s3 82312.013813: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18745          <idle>-0     (-----) [001] d.s4 82312.013836: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18746          <idle>-0     (-----) [000] .n.1 82312.013841: cpu_idle: state=4294967295 cpu_id=0
18747          <idle>-0     (-----) [001] ...1 82312.013850: cpu_idle: state=4294967295 cpu_id=1
18748          <idle>-0     (-----) [000] d..2 82312.013853: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18749          <idle>-0     (-----) [001] d..1 82312.013857: cpu_idle: state=0 cpu_id=1
18750 crtc_commit:111-321   (  321) [000] d..3 82312.013913: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
18751 crtc_commit:111-321   (  321) [000] d..4 82312.013943: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
18752          <idle>-0     (-----) [003] ...1 82312.014097: cpu_idle: state=4294967295 cpu_id=3
18753          <idle>-0     (-----) [003] d..1 82312.014103: cpu_idle: state=2 cpu_id=3
18754 crtc_commit:111-321   (  321) [000] d..2 82312.014151: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
18755 SDM_EventThread-644   (  619) [000] d..2 82312.014276: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18756          <idle>-0     (-----) [000] d..1 82312.014298: cpu_idle: state=0 cpu_id=0
18757          <idle>-0     (-----) [001] d.s3 82312.014349: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18758          <idle>-0     (-----) [001] d.s4 82312.014366: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18759          <idle>-0     (-----) [000] .n.1 82312.014375: cpu_idle: state=4294967295 cpu_id=0
18760          <idle>-0     (-----) [001] ...1 82312.014376: cpu_idle: state=4294967295 cpu_id=1
18761          <idle>-0     (-----) [001] d..1 82312.014385: cpu_idle: state=0 cpu_id=1
18762          <idle>-0     (-----) [000] d..2 82312.014388: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18763          <idle>-0     (-----) [004] dnh2 82312.014510: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
18764          <idle>-0     (-----) [004] .n.1 82312.014519: cpu_idle: state=4294967295 cpu_id=4
18765          <idle>-0     (-----) [004] d..2 82312.014533: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
18766 crtc_commit:111-321   (  321) [000] d..2 82312.014584: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
18767          <idle>-0     (-----) [000] d..1 82312.014603: cpu_idle: state=0 cpu_id=0
18768          <idle>-0     (-----) [001] d.s3 82312.014607: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18769          <idle>-0     (-----) [001] d.s4 82312.014624: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18770          <idle>-0     (-----) [000] .n.1 82312.014632: cpu_idle: state=4294967295 cpu_id=0
18771          <idle>-0     (-----) [001] ...1 82312.014636: cpu_idle: state=4294967295 cpu_id=1
18772          <idle>-0     (-----) [001] d..1 82312.014641: cpu_idle: state=0 cpu_id=1
18773          <idle>-0     (-----) [000] d..2 82312.014645: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18774 crtc_commit:111-321   (  321) [000] d..1 82312.014674: clk_enable: disp_cc_mdss_vsync_clk_src
18775 crtc_commit:111-321   (  321) [000] d..1 82312.014677: clk_enable: disp_cc_mdss_rscc_vsync_clk
18776 crtc_commit:111-321   (  321) [000] d..1 82312.014696: clk_enable: disp_cc_mdss_rscc_ahb_clk
18777 crtc_commit:111-321   (  321) [000] d..2 82312.014769: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
18778          <idle>-0     (-----) [000] d..1 82312.014783: cpu_idle: state=0 cpu_id=0
18779          <idle>-0     (-----) [000] d.h2 82312.014860: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18780          <idle>-0     (-----) [000] dnh3 82312.014878: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18781          <idle>-0     (-----) [000] .n.1 82312.014890: cpu_idle: state=4294967295 cpu_id=0
18782          <idle>-0     (-----) [000] d..2 82312.014901: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18783 crtc_commit:111-321   (  321) [000] d..2 82312.014928: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
18784          <idle>-0     (-----) [000] d..1 82312.014940: cpu_idle: state=0 cpu_id=0
18785          <idle>-0     (-----) [000] d.h2 82312.015021: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18786          <idle>-0     (-----) [000] dnh3 82312.015033: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18787          <idle>-0     (-----) [000] .n.1 82312.015043: cpu_idle: state=4294967295 cpu_id=0
18788          <idle>-0     (-----) [000] d..2 82312.015053: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18789 crtc_commit:111-321   (  321) [000] d..1 82312.015090: clk_enable: gcc_disp_axi_clk
18790 crtc_commit:111-321   (  321) [000] d.s3 82312.015144: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
18791 crtc_commit:111-321   (  321) [000] d.s4 82312.015202: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
18792          <idle>-0     (-----) [001] .n.1 82312.015208: cpu_idle: state=4294967295 cpu_id=1
18793 crtc_commit:111-321   (  321) [000] d..1 82312.015218: clk_enable: disp_cc_mdss_ahb_clk
18794          <idle>-0     (-----) [001] d..2 82312.015228: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18795 crtc_commit:111-321   (  321) [000] d..1 82312.015235: clk_enable: disp_cc_mdss_axi_clk
18796 s.nexuslauncher-10023 (10023) [004] d..2 82312.015261: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
18797 crtc_commit:111-321   (  321) [000] d..1 82312.015261: clk_enable: gcc_disp_gpll0_clk_src
18798          <idle>-0     (-----) [004] d..1 82312.015295: cpu_idle: state=2 cpu_id=4
18799          <idle>-0     (-----) [002] ...1 82312.015552: cpu_idle: state=4294967295 cpu_id=2
18800          <idle>-0     (-----) [002] d..1 82312.015564: cpu_idle: state=2 cpu_id=2
18801 crtc_commit:111-321   (  321) [000] d..1 82312.015770: clk_enable: disp_cc_mdss_mdp_clk_src
18802 crtc_commit:111-321   (  321) [000] d..1 82312.015812: clk_enable: disp_cc_mdss_mdp_clk
18803 crtc_commit:111-321   (  321) [000] d..1 82312.015825: clk_enable: disp_cc_mdss_vsync_clk
18804 crtc_commit:111-321   (  321) [000] d..2 82312.016071: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18805          <idle>-0     (-----) [000] d..1 82312.016094: cpu_idle: state=0 cpu_id=0
18806          <idle>-0     (-----) [004] ...1 82312.016664: cpu_idle: state=4294967295 cpu_id=4
18807          <idle>-0     (-----) [004] d..1 82312.016672: cpu_idle: state=2 cpu_id=4
18808<...>-1054 ( 1054) [001] d..2 82312.016762: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18809          <idle>-0     (-----) [001] d..1 82312.016780: cpu_idle: state=0 cpu_id=1
18810          <idle>-0     (-----) [000] ...1 82312.017216: cpu_idle: state=4294967295 cpu_id=0
18811          <idle>-0     (-----) [000] d..1 82312.017224: cpu_idle: state=2 cpu_id=0
18812          <idle>-0     (-----) [001] ...1 82312.018224: cpu_idle: state=4294967295 cpu_id=1
18813          <idle>-0     (-----) [001] d..1 82312.018230: cpu_idle: state=2 cpu_id=1
18814          <idle>-0     (-----) [003] d.h2 82312.031178: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
18815          <idle>-0     (-----) [000] d.h7 82312.031214: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18816          <idle>-0     (-----) [003] dnh3 82312.031346: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
18817          <idle>-0     (-----) [000] dnh8 82312.031349: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18818          <idle>-0     (-----) [000] dnh9 82312.031420: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
18819          <idle>-0     (-----) [003] .n.1 82312.031420: cpu_idle: state=4294967295 cpu_id=3
18820          <idle>-0     (-----) [000] dnha 82312.031517: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18821          <idle>-0     (-----) [003] d..2 82312.031537: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
18822          <idle>-0     (-----) [000] dnh7 82312.031540: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
18823          <idle>-0     (-----) [000] dnh8 82312.031614: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
18824        DispSync-8879  ( 8858) [003] d..1 82312.031757: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
18825        DispSync-8879  ( 8858) [003] d..2 82312.031796: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
18826          <idle>-0     (-----) [002] .n.1 82312.031876: cpu_idle: state=4294967295 cpu_id=2
18827          <idle>-0     (-----) [002] d..2 82312.032027: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18828          <idle>-0     (-----) [000] .n.1 82312.032077: cpu_idle: state=4294967295 cpu_id=0
18829        DispSync-8879  ( 8858) [003] d.s3 82312.032098: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
18830          <idle>-0     (-----) [000] d..2 82312.032134: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
18831          <idle>-0     (-----) [001] .n.1 82312.032149: cpu_idle: state=4294967295 cpu_id=1
18832        DispSync-8879  ( 8858) [003] d.s4 82312.032152: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
18833 crtc_commit:111-321   (  321) [002] d..1 82312.032194: clk_disable: disp_cc_mdss_vsync_clk
18834          <idle>-0     (-----) [001] d..2 82312.032204: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
18835     kworker/0:1-25262 (25262) [000] d..2 82312.032220: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
18836 crtc_commit:111-321   (  321) [002] d..1 82312.032273: clk_disable: disp_cc_mdss_mdp_clk
18837 crtc_commit:111-321   (  321) [002] d..1 82312.032290: clk_disable: disp_cc_mdss_mdp_clk_src
18838 crtc_commit:111-321   (  321) [002] d..1 82312.032341: clk_disable: gcc_disp_gpll0_clk_src
18839  appEventThread-8881  ( 8858) [001] d..1 82312.032394: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
18840        DispSync-8879  ( 8858) [003] d..2 82312.032430: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18841  appEventThread-8881  ( 8858) [001] d..2 82312.032459: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
18842          <idle>-0     (-----) [003] d..2 82312.032477: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
18843 SDM_EventThread-644   (  619) [000] ...1 82312.032502: tracing_mark_write: B|619|HWCCallbacks::Vsync::
18844  appEventThread-8881  ( 8858) [001] d..2 82312.032509: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18845        DispSync-8879  ( 8858) [003] d..2 82312.032512: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18846 SDM_EventThread-644   (  619) [000] ...1 82312.032547: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
18847          <idle>-0     (-----) [003] d..1 82312.032560: cpu_idle: state=2 cpu_id=3
18848 SDM_EventThread-644   (  619) [000] ...1 82312.032581: tracing_mark_write: E|619
18849 SDM_EventThread-644   (  619) [000] .... 82312.032776: binder_transaction: transaction=1568215 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
18850 SDM_EventThread-644   (  619) [000] .... 82312.032806: binder_transaction_alloc_buf: transaction=1568215 data_size=76 offsets_size=0
18851 SDM_EventThread-644   (  619) [000] d..4 82312.032843: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
18852 SDM_EventThread-644   (  619) [000] d..5 82312.032905: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=003
18853 crtc_commit:111-321   (  321) [002] d..1 82312.032992: clk_disable: disp_cc_mdss_axi_clk
18854 SDM_EventThread-644   (  619) [000] ...1 82312.033024: tracing_mark_write: E|619
18855 crtc_commit:111-321   (  321) [002] d..1 82312.033028: clk_disable: disp_cc_mdss_ahb_clk
18856 crtc_commit:111-321   (  321) [002] d..1 82312.033046: clk_disable: gcc_disp_axi_clk
18857 SDM_EventThread-644   (  619) [000] d..2 82312.033163: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18858          <idle>-0     (-----) [003] .n.1 82312.033197: cpu_idle: state=4294967295 cpu_id=3
18859 crtc_commit:111-321   (  321) [002] d..2 82312.033200: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18860          <idle>-0     (-----) [003] d..2 82312.033227: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
18861          <idle>-0     (-----) [002] d..1 82312.033229: cpu_idle: state=0 cpu_id=2
18862          <idle>-0     (-----) [000] d..1 82312.033243: cpu_idle: state=2 cpu_id=0
18863          <idle>-0     (-----) [002] d.h2 82312.033265: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18864<...>-8890 ( 8858) [003] .... 82312.033269: binder_transaction_received: transaction=1568215
18865          <idle>-0     (-----) [002] dnh3 82312.033283: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18866          <idle>-0     (-----) [002] .n.1 82312.033297: cpu_idle: state=4294967295 cpu_id=2
18867          <idle>-0     (-----) [002] d..2 82312.033309: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18868 crtc_commit:111-321   (  321) [002] d..1 82312.033346: clk_disable: disp_cc_mdss_rscc_ahb_clk
18869 crtc_commit:111-321   (  321) [002] d..1 82312.033369: clk_disable: disp_cc_mdss_rscc_vsync_clk
18870 crtc_commit:111-321   (  321) [002] d..1 82312.033384: clk_disable: disp_cc_mdss_vsync_clk_src
18871<...>-1054 ( 1054) [001] d..2 82312.033388: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18872          <idle>-0     (-----) [001] d..1 82312.033414: cpu_idle: state=2 cpu_id=1
18873<...>-8890 ( 8858) [003] ...1 82312.033450: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
18874<...>-8890 ( 8858) [003] ...1 82312.033511: tracing_mark_write: E|8858
18875<...>-8890 ( 8858) [003] d..2 82312.033636: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
18876          <idle>-0     (-----) [003] d..1 82312.033655: cpu_idle: state=2 cpu_id=3
18877 crtc_commit:111-321   (  321) [002] d..2 82312.033892: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18878          <idle>-0     (-----) [002] d..1 82312.033912: cpu_idle: state=2 cpu_id=2
18879          <idle>-0     (-----) [001] d.s3 82312.034253: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18880          <idle>-0     (-----) [001] d.s4 82312.034280: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18881          <idle>-0     (-----) [001] ...1 82312.034299: cpu_idle: state=4294967295 cpu_id=1
18882          <idle>-0     (-----) [001] d..1 82312.034308: cpu_idle: state=2 cpu_id=1
18883          <idle>-0     (-----) [002] .n.1 82312.034582: cpu_idle: state=4294967295 cpu_id=2
18884          <idle>-0     (-----) [002] d..2 82312.034605: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18885 crtc_commit:111-321   (  321) [002] d..2 82312.034987: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18886          <idle>-0     (-----) [002] d..1 82312.035006: cpu_idle: state=2 cpu_id=2
18887          <idle>-0     (-----) [001] d.s3 82312.035355: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18888          <idle>-0     (-----) [001] d.s4 82312.035381: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18889          <idle>-0     (-----) [001] d..2 82312.035392: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18890          <idle>-0     (-----) [001] dn.3 82312.035421: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
18891          <idle>-0     (-----) [001] .n.1 82312.035428: cpu_idle: state=4294967295 cpu_id=1
18892          <idle>-0     (-----) [001] d..2 82312.035453: 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
18893     ksoftirqd/1-18    (   18) [001] d..2 82312.035518: 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
18894          <idle>-0     (-----) [001] d..1 82312.035534: cpu_idle: state=2 cpu_id=1
18895          <idle>-0     (-----) [002] .n.1 82312.035729: cpu_idle: state=4294967295 cpu_id=2
18896          <idle>-0     (-----) [002] d..2 82312.035754: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18897 crtc_commit:111-321   (  321) [002] d..3 82312.035835: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
18898 crtc_commit:111-321   (  321) [002] d..4 82312.035958: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
18899 crtc_commit:111-321   (  321) [002] d..2 82312.036195: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
18900 SDM_EventThread-644   (  619) [002] d..2 82312.036336: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18901          <idle>-0     (-----) [002] d..1 82312.036357: cpu_idle: state=2 cpu_id=2
18902          <idle>-0     (-----) [001] d.s3 82312.036718: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18903          <idle>-0     (-----) [001] d.s4 82312.036744: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18904          <idle>-0     (-----) [001] ...1 82312.036758: cpu_idle: state=4294967295 cpu_id=1
18905          <idle>-0     (-----) [001] d..1 82312.036769: cpu_idle: state=2 cpu_id=1
18906          <idle>-0     (-----) [002] .n.1 82312.037053: cpu_idle: state=4294967295 cpu_id=2
18907          <idle>-0     (-----) [002] d..2 82312.037077: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18908 crtc_commit:111-321   (  321) [002] d..2 82312.037297: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18909          <idle>-0     (-----) [002] d..1 82312.037328: cpu_idle: state=0 cpu_id=2
18910          <idle>-0     (-----) [001] d.s3 82312.037665: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18911          <idle>-0     (-----) [001] d.s4 82312.037701: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18912          <idle>-0     (-----) [002] .n.1 82312.037709: cpu_idle: state=4294967295 cpu_id=2
18913          <idle>-0     (-----) [001] ...1 82312.037718: cpu_idle: state=4294967295 cpu_id=1
18914          <idle>-0     (-----) [002] d..2 82312.037722: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18915          <idle>-0     (-----) [001] d..1 82312.037739: cpu_idle: state=0 cpu_id=1
18916 crtc_commit:111-321   (  321) [002] d..1 82312.037789: clk_enable: disp_cc_mdss_vsync_clk_src
18917 crtc_commit:111-321   (  321) [002] d..1 82312.037799: clk_enable: disp_cc_mdss_rscc_vsync_clk
18918 crtc_commit:111-321   (  321) [002] d..1 82312.037827: clk_enable: disp_cc_mdss_rscc_ahb_clk
18919 crtc_commit:111-321   (  321) [002] d..2 82312.037908: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18920          <idle>-0     (-----) [002] d..1 82312.037919: cpu_idle: state=0 cpu_id=2
18921          <idle>-0     (-----) [002] d.h2 82312.038000: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18922          <idle>-0     (-----) [002] dnh3 82312.038023: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18923          <idle>-0     (-----) [002] .n.1 82312.038038: cpu_idle: state=4294967295 cpu_id=2
18924          <idle>-0     (-----) [002] d..2 82312.038049: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18925 crtc_commit:111-321   (  321) [002] d..2 82312.038078: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18926          <idle>-0     (-----) [002] d..1 82312.038089: cpu_idle: state=0 cpu_id=2
18927          <idle>-0     (-----) [002] d.h2 82312.038175: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18928          <idle>-0     (-----) [002] dnh3 82312.038188: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18929          <idle>-0     (-----) [002] .n.1 82312.038197: cpu_idle: state=4294967295 cpu_id=2
18930          <idle>-0     (-----) [002] d..2 82312.038209: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18931 crtc_commit:111-321   (  321) [002] d..1 82312.038252: clk_enable: gcc_disp_axi_clk
18932 crtc_commit:111-321   (  321) [002] d..1 82312.038267: clk_enable: disp_cc_mdss_ahb_clk
18933 crtc_commit:111-321   (  321) [002] d..1 82312.038280: clk_enable: disp_cc_mdss_axi_clk
18934 crtc_commit:111-321   (  321) [002] d..1 82312.038307: clk_enable: gcc_disp_gpll0_clk_src
18935 crtc_commit:111-321   (  321) [002] d..1 82312.038820: clk_enable: disp_cc_mdss_mdp_clk_src
18936 crtc_commit:111-321   (  321) [002] d..1 82312.038869: clk_enable: disp_cc_mdss_mdp_clk
18937 crtc_commit:111-321   (  321) [002] d..1 82312.038985: clk_enable: disp_cc_mdss_vsync_clk
18938 crtc_commit:111-321   (  321) [002] d..2 82312.039357: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
18939          <idle>-0     (-----) [002] d..1 82312.039378: cpu_idle: state=0 cpu_id=2
18940          <idle>-0     (-----) [001] ...1 82312.039677: cpu_idle: state=4294967295 cpu_id=1
18941          <idle>-0     (-----) [001] d..1 82312.039683: cpu_idle: state=2 cpu_id=1
18942          <idle>-0     (-----) [002] ...1 82312.040778: cpu_idle: state=4294967295 cpu_id=2
18943          <idle>-0     (-----) [002] d..1 82312.040784: cpu_idle: state=2 cpu_id=2
18944          <idle>-0     (-----) [000] d.h7 82312.045752: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18945          <idle>-0     (-----) [000] dnh8 82312.045774: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18946          <idle>-0     (-----) [000] dnh9 82312.045787: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18947          <idle>-0     (-----) [000] dnha 82312.045813: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18948          <idle>-0     (-----) [000] dnh7 82312.045818: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
18949          <idle>-0     (-----) [000] dnh8 82312.045860: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
18950          <idle>-0     (-----) [000] .n.1 82312.045961: cpu_idle: state=4294967295 cpu_id=0
18951          <idle>-0     (-----) [000] d..2 82312.045983: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
18952     kworker/0:1-25262 (25262) [000] d..2 82312.046005: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
18953 SDM_EventThread-644   (  619) [000] ...1 82312.046051: tracing_mark_write: B|619|HWCCallbacks::Vsync::
18954 SDM_EventThread-644   (  619) [000] ...1 82312.046061: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
18955 SDM_EventThread-644   (  619) [000] ...1 82312.046067: tracing_mark_write: E|619
18956 SDM_EventThread-644   (  619) [000] .... 82312.046096: binder_transaction: transaction=1568216 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
18957 SDM_EventThread-644   (  619) [000] .... 82312.046102: binder_transaction_alloc_buf: transaction=1568216 data_size=76 offsets_size=0
18958 SDM_EventThread-644   (  619) [000] d..4 82312.046108: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=003
18959 SDM_EventThread-644   (  619) [000] d..5 82312.046140: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
18960          <idle>-0     (-----) [002] .n.1 82312.046142: cpu_idle: state=4294967295 cpu_id=2
18961 SDM_EventThread-644   (  619) [000] ...1 82312.046171: tracing_mark_write: E|619
18962          <idle>-0     (-----) [002] d..2 82312.046172: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18963 crtc_commit:111-321   (  321) [002] d..1 82312.046218: clk_disable: disp_cc_mdss_vsync_clk
18964 crtc_commit:111-321   (  321) [002] d..1 82312.046238: clk_disable: disp_cc_mdss_mdp_clk
18965 SDM_EventThread-644   (  619) [000] d..2 82312.046239: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18966          <idle>-0     (-----) [000] d..2 82312.046250: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18967 crtc_commit:111-321   (  321) [002] d..1 82312.046251: clk_disable: disp_cc_mdss_mdp_clk_src
18968          <idle>-0     (-----) [000] dn.3 82312.046275: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
18969 crtc_commit:111-321   (  321) [002] d..1 82312.046286: clk_disable: gcc_disp_gpll0_clk_src
18970          <idle>-0     (-----) [000] d..2 82312.046290: 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
18971     ksoftirqd/0-3     (    3) [000] d.s2 82312.046315: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
18972     ksoftirqd/0-3     (    3) [000] d.s3 82312.046365: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
18973     ksoftirqd/0-3     (    3) [000] d.s2 82312.046377: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18974     ksoftirqd/0-3     (    3) [000] d.s3 82312.046388: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
18975     ksoftirqd/0-3     (    3) [000] d..2 82312.046405: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
18976          <idle>-0     (-----) [001] .n.1 82312.046440: cpu_idle: state=4294967295 cpu_id=1
18977     kworker/0:1-25262 (25262) [000] d..2 82312.046452: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
18978          <idle>-0     (-----) [001] d..2 82312.046475: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
18979<...>-8890 ( 8858) [001] .... 82312.046488: binder_transaction_received: transaction=1568216
18980<...>-8890 ( 8858) [001] ...1 82312.046560: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
18981<...>-8890 ( 8858) [001] ...1 82312.046577: tracing_mark_write: E|8858
18982<...>-8890 ( 8858) [001] d..2 82312.046658: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
18983          <idle>-0     (-----) [001] d..1 82312.046678: cpu_idle: state=2 cpu_id=1
18984 crtc_commit:111-321   (  321) [002] d..1 82312.046831: clk_disable: disp_cc_mdss_axi_clk
18985 crtc_commit:111-321   (  321) [002] d..1 82312.046849: clk_disable: disp_cc_mdss_ahb_clk
18986 crtc_commit:111-321   (  321) [002] d..1 82312.046867: clk_disable: gcc_disp_axi_clk
18987<...>-1054 ( 1054) [000] d..2 82312.046936: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
18988          <idle>-0     (-----) [000] d..1 82312.046957: cpu_idle: state=2 cpu_id=0
18989 crtc_commit:111-321   (  321) [002] d..2 82312.046978: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18990          <idle>-0     (-----) [002] d..1 82312.046998: cpu_idle: state=0 cpu_id=2
18991          <idle>-0     (-----) [002] d.h2 82312.047048: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18992          <idle>-0     (-----) [002] dnh3 82312.047066: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
18993          <idle>-0     (-----) [002] .n.1 82312.047079: cpu_idle: state=4294967295 cpu_id=2
18994          <idle>-0     (-----) [002] d..2 82312.047091: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
18995 crtc_commit:111-321   (  321) [002] d..1 82312.047110: clk_disable: disp_cc_mdss_rscc_ahb_clk
18996 crtc_commit:111-321   (  321) [002] d..1 82312.047128: clk_disable: disp_cc_mdss_rscc_vsync_clk
18997 crtc_commit:111-321   (  321) [002] d..1 82312.047140: clk_disable: disp_cc_mdss_vsync_clk_src
18998 crtc_commit:111-321   (  321) [002] d..2 82312.047343: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
18999          <idle>-0     (-----) [002] d..1 82312.047361: cpu_idle: state=2 cpu_id=2
19000          <idle>-0     (-----) [001] d.s3 82312.047679: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19001          <idle>-0     (-----) [001] d.s4 82312.047705: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19002          <idle>-0     (-----) [001] ...1 82312.047721: cpu_idle: state=4294967295 cpu_id=1
19003          <idle>-0     (-----) [001] d..1 82312.047730: cpu_idle: state=2 cpu_id=1
19004          <idle>-0     (-----) [002] .n.1 82312.048007: cpu_idle: state=4294967295 cpu_id=2
19005          <idle>-0     (-----) [002] d..2 82312.048033: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19006 crtc_commit:111-321   (  321) [002] d..2 82312.048270: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19007          <idle>-0     (-----) [002] d..1 82312.048289: cpu_idle: state=2 cpu_id=2
19008          <idle>-0     (-----) [001] d.s3 82312.048651: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19009          <idle>-0     (-----) [001] d.s4 82312.048678: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19010          <idle>-0     (-----) [001] d..2 82312.048689: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
19011          <idle>-0     (-----) [001] dn.3 82312.048702: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
19012          <idle>-0     (-----) [001] .n.1 82312.048709: cpu_idle: state=4294967295 cpu_id=1
19013          <idle>-0     (-----) [001] d..2 82312.048730: 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
19014     ksoftirqd/1-18    (   18) [001] d.s2 82312.048747: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19015     ksoftirqd/1-18    (   18) [001] d.s3 82312.048767: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19016     ksoftirqd/1-18    (   18) [001] d..2 82312.048809: 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
19017          <idle>-0     (-----) [001] d..1 82312.048826: cpu_idle: state=2 cpu_id=1
19018          <idle>-0     (-----) [002] .n.1 82312.049032: cpu_idle: state=4294967295 cpu_id=2
19019          <idle>-0     (-----) [002] d..2 82312.049055: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19020 crtc_commit:111-321   (  321) [002] d..3 82312.049079: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19021          <idle>-0     (-----) [000] .n.1 82312.049092: cpu_idle: state=4294967295 cpu_id=0
19022 crtc_commit:111-321   (  321) [002] d..4 82312.049105: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19023          <idle>-0     (-----) [000] d..2 82312.049140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19024 SDM_EventThread-644   (  619) [000] d..2 82312.049201: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19025 crtc_commit:111-321   (  321) [002] d..2 82312.049347: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19026          <idle>-0     (-----) [002] d..1 82312.049368: cpu_idle: state=2 cpu_id=2
19027<...>-1054 ( 1054) [000] d..2 82312.049375: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19028          <idle>-0     (-----) [000] d..1 82312.049399: cpu_idle: state=2 cpu_id=0
19029          <idle>-0     (-----) [001] d.s3 82312.049850: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19030          <idle>-0     (-----) [001] d.s4 82312.049878: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19031          <idle>-0     (-----) [001] ...1 82312.049894: cpu_idle: state=4294967295 cpu_id=1
19032          <idle>-0     (-----) [001] d..1 82312.049904: cpu_idle: state=2 cpu_id=1
19033          <idle>-0     (-----) [002] .n.1 82312.050203: cpu_idle: state=4294967295 cpu_id=2
19034          <idle>-0     (-----) [002] d..2 82312.050229: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19035 crtc_commit:111-321   (  321) [002] d..1 82312.050250: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19036 crtc_commit:111-321   (  321) [002] d..2 82312.050277: sched_blocked_reason: pid=1054 iowait=0 caller=update_request_adhoc+0x384/0x480
19037 crtc_commit:111-321   (  321) [002] d..2 82312.050297: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19038 crtc_commit:111-321   (  321) [002] d..2 82312.050498: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19039          <idle>-0     (-----) [002] d..1 82312.050520: cpu_idle: state=0 cpu_id=2
19040          <idle>-0     (-----) [000] .n.1 82312.050622: cpu_idle: state=4294967295 cpu_id=0
19041          <idle>-0     (-----) [000] d..2 82312.050659: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19042<...>-1054 ( 1054) [000] d..2 82312.050708: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19043          <idle>-0     (-----) [000] d..1 82312.050731: cpu_idle: state=2 cpu_id=0
19044          <idle>-0     (-----) [001] d.s3 82312.050850: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19045          <idle>-0     (-----) [001] d.s4 82312.050882: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19046          <idle>-0     (-----) [002] .n.1 82312.050890: cpu_idle: state=4294967295 cpu_id=2
19047          <idle>-0     (-----) [001] ...1 82312.050900: cpu_idle: state=4294967295 cpu_id=1
19048          <idle>-0     (-----) [002] d..2 82312.050903: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19049          <idle>-0     (-----) [001] d..1 82312.050915: cpu_idle: state=0 cpu_id=1
19050 crtc_commit:111-321   (  321) [002] d..1 82312.050915: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19051 crtc_commit:111-321   (  321) [002] d..2 82312.050930: sched_blocked_reason: pid=1054 iowait=0 caller=update_request_adhoc+0x384/0x480
19052 crtc_commit:111-321   (  321) [002] d..2 82312.050941: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19053 crtc_commit:111-321   (  321) [002] d..1 82312.050967: clk_enable: disp_cc_mdss_vsync_clk_src
19054 crtc_commit:111-321   (  321) [002] d..1 82312.050970: clk_enable: disp_cc_mdss_rscc_vsync_clk
19055 crtc_commit:111-321   (  321) [002] d..1 82312.050989: clk_enable: disp_cc_mdss_rscc_ahb_clk
19056 crtc_commit:111-321   (  321) [002] d..2 82312.051064: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19057          <idle>-0     (-----) [002] d..1 82312.051079: cpu_idle: state=0 cpu_id=2
19058          <idle>-0     (-----) [002] d.h2 82312.051153: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19059          <idle>-0     (-----) [002] dnh3 82312.051172: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19060          <idle>-0     (-----) [002] .n.1 82312.051184: cpu_idle: state=4294967295 cpu_id=2
19061          <idle>-0     (-----) [002] d..2 82312.051195: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19062 crtc_commit:111-321   (  321) [002] d..2 82312.051224: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19063          <idle>-0     (-----) [002] d..1 82312.051234: cpu_idle: state=0 cpu_id=2
19064          <idle>-0     (-----) [000] .n.1 82312.051257: cpu_idle: state=4294967295 cpu_id=0
19065          <idle>-0     (-----) [000] d..2 82312.051289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19066          <idle>-0     (-----) [002] d.h2 82312.051316: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19067          <idle>-0     (-----) [002] dnh3 82312.051328: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19068          <idle>-0     (-----) [002] .n.1 82312.051337: cpu_idle: state=4294967295 cpu_id=2
19069          <idle>-0     (-----) [002] d..2 82312.051348: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19070 crtc_commit:111-321   (  321) [002] d..1 82312.051386: clk_enable: gcc_disp_axi_clk
19071 crtc_commit:111-321   (  321) [002] d..1 82312.051401: clk_enable: disp_cc_mdss_ahb_clk
19072 crtc_commit:111-321   (  321) [002] d..1 82312.051414: clk_enable: disp_cc_mdss_axi_clk
19073 crtc_commit:111-321   (  321) [002] d..1 82312.051439: clk_enable: gcc_disp_gpll0_clk_src
19074<...>-1054 ( 1054) [000] d..2 82312.051502: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19075          <idle>-0     (-----) [001] d.s3 82312.051512: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19076          <idle>-0     (-----) [000] d..1 82312.051521: cpu_idle: state=2 cpu_id=0
19077          <idle>-0     (-----) [001] d.s4 82312.051531: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
19078          <idle>-0     (-----) [001] d.s4 82312.051541: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19079          <idle>-0     (-----) [001] ...1 82312.051555: cpu_idle: state=4294967295 cpu_id=1
19080          <idle>-0     (-----) [001] d..1 82312.051561: cpu_idle: state=0 cpu_id=1
19081          <idle>-0     (-----) [000] .n.1 82312.051946: cpu_idle: state=4294967295 cpu_id=0
19082 crtc_commit:111-321   (  321) [002] d..1 82312.051948: clk_enable: disp_cc_mdss_mdp_clk_src
19083 crtc_commit:111-321   (  321) [002] d..1 82312.051988: clk_enable: disp_cc_mdss_mdp_clk
19084          <idle>-0     (-----) [000] d..2 82312.051989: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19085 crtc_commit:111-321   (  321) [002] d..1 82312.052080: clk_enable: disp_cc_mdss_vsync_clk
19086<...>-1054 ( 1054) [000] d..2 82312.052193: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19087          <idle>-0     (-----) [000] d..1 82312.052224: cpu_idle: state=0 cpu_id=0
19088 crtc_commit:111-321   (  321) [002] d..2 82312.052329: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19089          <idle>-0     (-----) [002] d..1 82312.052349: cpu_idle: state=0 cpu_id=2
19090          <idle>-0     (-----) [002] ...1 82312.053779: cpu_idle: state=4294967295 cpu_id=2
19091          <idle>-0     (-----) [002] d..1 82312.053786: cpu_idle: state=2 cpu_id=2
19092          <idle>-0     (-----) [000] d..2 82312.058251: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19093          <idle>-0     (-----) [000] dn.3 82312.058269: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19094          <idle>-0     (-----) [000] .n.1 82312.058274: cpu_idle: state=4294967295 cpu_id=0
19095          <idle>-0     (-----) [000] d..2 82312.058291: 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
19096     ksoftirqd/0-3     (    3) [000] d.s2 82312.058301: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19097     ksoftirqd/0-3     (    3) [000] d.s3 82312.058324: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19098     ksoftirqd/0-3     (    3) [000] d..2 82312.058343: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19099<...>-1054 ( 1054) [000] d..2 82312.058450: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19100          <idle>-0     (-----) [000] d..1 82312.058526: cpu_idle: state=2 cpu_id=0
19101          <idle>-0     (-----) [000] d.h7 82312.060028: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19102          <idle>-0     (-----) [000] dnh8 82312.060052: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19103          <idle>-0     (-----) [000] dnh9 82312.060063: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19104          <idle>-0     (-----) [000] dnha 82312.060086: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19105          <idle>-0     (-----) [000] dnh7 82312.060093: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19106          <idle>-0     (-----) [000] dnh8 82312.060110: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19107          <idle>-0     (-----) [000] .n.1 82312.060133: cpu_idle: state=4294967295 cpu_id=0
19108          <idle>-0     (-----) [000] d..2 82312.060152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
19109     kworker/0:1-25262 (25262) [000] d..2 82312.060172: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19110 SDM_EventThread-644   (  619) [000] ...1 82312.060215: tracing_mark_write: B|619|HWCCallbacks::Vsync::
19111 SDM_EventThread-644   (  619) [000] ...1 82312.060227: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
19112 SDM_EventThread-644   (  619) [000] ...1 82312.060234: tracing_mark_write: E|619
19113 SDM_EventThread-644   (  619) [000] .... 82312.060271: binder_transaction: transaction=1568217 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
19114 SDM_EventThread-644   (  619) [000] .... 82312.060278: binder_transaction_alloc_buf: transaction=1568217 data_size=76 offsets_size=0
19115 SDM_EventThread-644   (  619) [000] d..4 82312.060285: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
19116 SDM_EventThread-644   (  619) [000] d..5 82312.060312: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
19117          <idle>-0     (-----) [001] .n.1 82312.060318: cpu_idle: state=4294967295 cpu_id=1
19118          <idle>-0     (-----) [001] d..2 82312.060341: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
19119 SDM_EventThread-644   (  619) [000] ...1 82312.060342: tracing_mark_write: E|619
19120<...>-8890 ( 8858) [001] .... 82312.060354: binder_transaction_received: transaction=1568217
19121          <idle>-0     (-----) [002] .n.1 82312.060384: cpu_idle: state=4294967295 cpu_id=2
19122<...>-8890 ( 8858) [001] ...1 82312.060403: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
19123 SDM_EventThread-644   (  619) [000] d..2 82312.060407: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19124          <idle>-0     (-----) [002] d..2 82312.060411: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19125<...>-8890 ( 8858) [001] ...1 82312.060420: tracing_mark_write: E|8858
19126          <idle>-0     (-----) [000] d..1 82312.060436: cpu_idle: state=0 cpu_id=0
19127 crtc_commit:111-321   (  321) [002] d..1 82312.060456: clk_disable: disp_cc_mdss_vsync_clk
19128 crtc_commit:111-321   (  321) [002] d..1 82312.060476: clk_disable: disp_cc_mdss_mdp_clk
19129 crtc_commit:111-321   (  321) [002] d..1 82312.060490: clk_disable: disp_cc_mdss_mdp_clk_src
19130<...>-8890 ( 8858) [001] d..2 82312.060497: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19131          <idle>-0     (-----) [001] d..1 82312.060521: cpu_idle: state=0 cpu_id=1
19132 crtc_commit:111-321   (  321) [002] d..1 82312.060529: clk_disable: gcc_disp_gpll0_clk_src
19133 crtc_commit:111-321   (  321) [002] d..1 82312.061054: clk_disable: disp_cc_mdss_axi_clk
19134 crtc_commit:111-321   (  321) [002] d..1 82312.061072: clk_disable: disp_cc_mdss_ahb_clk
19135 crtc_commit:111-321   (  321) [002] d..1 82312.061086: clk_disable: gcc_disp_axi_clk
19136 crtc_commit:111-321   (  321) [002] d..2 82312.061183: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19137          <idle>-0     (-----) [002] d..1 82312.061199: cpu_idle: state=0 cpu_id=2
19138          <idle>-0     (-----) [002] d.h2 82312.061259: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19139          <idle>-0     (-----) [002] dnh3 82312.061275: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19140          <idle>-0     (-----) [002] .n.1 82312.061288: cpu_idle: state=4294967295 cpu_id=2
19141          <idle>-0     (-----) [002] d..2 82312.061300: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19142 crtc_commit:111-321   (  321) [002] d..1 82312.061320: clk_disable: disp_cc_mdss_rscc_ahb_clk
19143 crtc_commit:111-321   (  321) [002] d..1 82312.061337: clk_disable: disp_cc_mdss_rscc_vsync_clk
19144 crtc_commit:111-321   (  321) [002] d..1 82312.061351: clk_disable: disp_cc_mdss_vsync_clk_src
19145 crtc_commit:111-321   (  321) [002] d..2 82312.061549: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19146          <idle>-0     (-----) [002] d..1 82312.061570: cpu_idle: state=0 cpu_id=2
19147          <idle>-0     (-----) [001] d.s3 82312.061583: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19148          <idle>-0     (-----) [001] d.s4 82312.061607: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19149          <idle>-0     (-----) [002] .n.1 82312.061615: cpu_idle: state=4294967295 cpu_id=2
19150          <idle>-0     (-----) [001] ...1 82312.061624: cpu_idle: state=4294967295 cpu_id=1
19151          <idle>-0     (-----) [002] d..2 82312.061627: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19152          <idle>-0     (-----) [001] d..1 82312.061630: cpu_idle: state=0 cpu_id=1
19153          <idle>-0     (-----) [001] d.s3 82312.061889: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19154 crtc_commit:111-321   (  321) [002] d..2 82312.061904: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19155          <idle>-0     (-----) [001] d.s4 82312.061926: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19156          <idle>-0     (-----) [002] d..2 82312.061939: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19157          <idle>-0     (-----) [001] ...1 82312.061939: cpu_idle: state=4294967295 cpu_id=1
19158          <idle>-0     (-----) [001] d..1 82312.061947: cpu_idle: state=0 cpu_id=1
19159 crtc_commit:111-321   (  321) [002] d..3 82312.061960: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19160 crtc_commit:111-321   (  321) [002] d..4 82312.061986: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19161          <idle>-0     (-----) [000] .n.1 82312.061996: cpu_idle: state=4294967295 cpu_id=0
19162          <idle>-0     (-----) [000] d..2 82312.062015: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19163 SDM_EventThread-644   (  619) [000] d..2 82312.062071: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19164          <idle>-0     (-----) [000] d..1 82312.062088: cpu_idle: state=0 cpu_id=0
19165 crtc_commit:111-321   (  321) [002] d..2 82312.062225: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19166          <idle>-0     (-----) [002] d..1 82312.062242: cpu_idle: state=0 cpu_id=2
19167          <idle>-0     (-----) [001] d.s3 82312.062520: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19168          <idle>-0     (-----) [001] d.s4 82312.062538: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19169          <idle>-0     (-----) [002] .n.1 82312.062547: cpu_idle: state=4294967295 cpu_id=2
19170          <idle>-0     (-----) [001] ...1 82312.062551: cpu_idle: state=4294967295 cpu_id=1
19171          <idle>-0     (-----) [001] d..1 82312.062556: cpu_idle: state=0 cpu_id=1
19172          <idle>-0     (-----) [002] d..2 82312.062560: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19173 crtc_commit:111-321   (  321) [002] d..2 82312.062754: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19174          <idle>-0     (-----) [002] d..1 82312.062773: cpu_idle: state=0 cpu_id=2
19175          <idle>-0     (-----) [001] d.s3 82312.062782: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19176          <idle>-0     (-----) [001] d.s4 82312.062799: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19177          <idle>-0     (-----) [002] .n.1 82312.062807: cpu_idle: state=4294967295 cpu_id=2
19178          <idle>-0     (-----) [001] ...1 82312.062810: cpu_idle: state=4294967295 cpu_id=1
19179          <idle>-0     (-----) [001] d..1 82312.062818: cpu_idle: state=0 cpu_id=1
19180          <idle>-0     (-----) [002] d..2 82312.062819: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19181 crtc_commit:111-321   (  321) [002] d..1 82312.062849: clk_enable: disp_cc_mdss_vsync_clk_src
19182 crtc_commit:111-321   (  321) [002] d..1 82312.062853: clk_enable: disp_cc_mdss_rscc_vsync_clk
19183 crtc_commit:111-321   (  321) [002] d..1 82312.062874: clk_enable: disp_cc_mdss_rscc_ahb_clk
19184 crtc_commit:111-321   (  321) [002] d..2 82312.062950: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19185          <idle>-0     (-----) [002] d..1 82312.062962: cpu_idle: state=0 cpu_id=2
19186          <idle>-0     (-----) [002] d.h2 82312.063045: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19187          <idle>-0     (-----) [002] dnh3 82312.063062: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19188          <idle>-0     (-----) [002] .n.1 82312.063074: cpu_idle: state=4294967295 cpu_id=2
19189          <idle>-0     (-----) [002] d..2 82312.063085: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19190 crtc_commit:111-321   (  321) [002] d..2 82312.063113: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19191          <idle>-0     (-----) [002] d..1 82312.063124: cpu_idle: state=0 cpu_id=2
19192          <idle>-0     (-----) [002] d.h2 82312.063208: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19193          <idle>-0     (-----) [002] dnh3 82312.063219: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19194          <idle>-0     (-----) [002] .n.1 82312.063230: cpu_idle: state=4294967295 cpu_id=2
19195          <idle>-0     (-----) [002] d..2 82312.063240: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19196 crtc_commit:111-321   (  321) [002] d..1 82312.063278: clk_enable: gcc_disp_axi_clk
19197 crtc_commit:111-321   (  321) [002] d..1 82312.063295: clk_enable: disp_cc_mdss_ahb_clk
19198 crtc_commit:111-321   (  321) [002] d..1 82312.063308: clk_enable: disp_cc_mdss_axi_clk
19199 crtc_commit:111-321   (  321) [002] d..1 82312.063333: clk_enable: gcc_disp_gpll0_clk_src
19200 crtc_commit:111-321   (  321) [002] d..1 82312.063843: clk_enable: disp_cc_mdss_mdp_clk_src
19201 crtc_commit:111-321   (  321) [002] d..1 82312.063885: clk_enable: disp_cc_mdss_mdp_clk
19202 crtc_commit:111-321   (  321) [002] d..1 82312.063898: clk_enable: disp_cc_mdss_vsync_clk
19203          <idle>-0     (-----) [000] ...1 82312.064031: cpu_idle: state=4294967295 cpu_id=0
19204          <idle>-0     (-----) [000] d..1 82312.064037: cpu_idle: state=2 cpu_id=0
19205 crtc_commit:111-321   (  321) [002] d..2 82312.064135: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19206          <idle>-0     (-----) [002] d..1 82312.064154: cpu_idle: state=0 cpu_id=2
19207          <idle>-0     (-----) [001] ...1 82312.064315: cpu_idle: state=4294967295 cpu_id=1
19208          <idle>-0     (-----) [001] d..1 82312.064322: cpu_idle: state=2 cpu_id=1
19209          <idle>-0     (-----) [002] d..2 82312.065278: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
19210          <idle>-0     (-----) [002] dn.3 82312.065309: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
19211          <idle>-0     (-----) [002] .n.1 82312.065317: cpu_idle: state=4294967295 cpu_id=2
19212          <idle>-0     (-----) [002] d..2 82312.065335: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
19213     ksoftirqd/2-26    (   26) [002] d.s2 82312.065361: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19214     ksoftirqd/2-26    (   26) [002] d.s3 82312.065414: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
19215     ksoftirqd/2-26    (   26) [002] d..2 82312.065436: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19216<...>-1054 ( 1054) [002] .... 82312.065539: clk_set_rate: l3_cluster0_vote_clk 403200000
19217<...>-1054 ( 1054) [002] .... 82312.065563: clk_set_rate: l3_clk 403200000
19218<...>-1054 ( 1054) [002] d..2 82312.065660: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19219          <idle>-0     (-----) [002] d..1 82312.065676: cpu_idle: state=2 cpu_id=2
19220          <idle>-0     (-----) [000] d.h7 82312.080612: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19221          <idle>-0     (-----) [000] dnh8 82312.080821: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19222          <idle>-0     (-----) [000] dnh9 82312.080899: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19223          <idle>-0     (-----) [000] dnha 82312.081045: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19224          <idle>-0     (-----) [000] dnh7 82312.081072: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19225          <idle>-0     (-----) [000] dnh8 82312.081155: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19226          <idle>-0     (-----) [002] .n.1 82312.081441: cpu_idle: state=4294967295 cpu_id=2
19227          <idle>-0     (-----) [002] d..2 82312.081571: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19228          <idle>-0     (-----) [000] dnh3 82312.081576: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
19229          <idle>-0     (-----) [000] dnh4 82312.081650: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
19230          <idle>-0     (-----) [000] .n.1 82312.081696: cpu_idle: state=4294967295 cpu_id=0
19231          <idle>-0     (-----) [000] d..2 82312.081750: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
19232 crtc_commit:111-321   (  321) [002] d..1 82312.081755: clk_disable: disp_cc_mdss_vsync_clk
19233     kworker/0:1-25262 (25262) [000] d.s3 82312.081972: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
19234 crtc_commit:111-321   (  321) [002] d..1 82312.081992: clk_disable: disp_cc_mdss_mdp_clk
19235          <idle>-0     (-----) [003] .n.1 82312.082003: cpu_idle: state=4294967295 cpu_id=3
19236 crtc_commit:111-321   (  321) [002] d..1 82312.082010: clk_disable: disp_cc_mdss_mdp_clk_src
19237          <idle>-0     (-----) [003] d..2 82312.082051: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
19238 crtc_commit:111-321   (  321) [002] d..1 82312.082059: clk_disable: gcc_disp_gpll0_clk_src
19239     kworker/0:1-25262 (25262) [000] d.s4 82312.082083: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
19240         sugov:0-576   (  576) [003] .... 82312.082174: clk_set_rate: pwrcl_clk 652800000
19241     kworker/0:1-25262 (25262) [000] d..2 82312.082175: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19242         sugov:0-576   (  576) [003] .... 82312.082255: clk_set_rate: cpu3_pwrcl_clk 748800000
19243         sugov:0-576   (  576) [003] .... 82312.082271: clk_set_rate: cpu2_pwrcl_clk 748800000
19244         sugov:0-576   (  576) [003] .... 82312.082280: clk_set_rate: cpu1_pwrcl_clk 748800000
19245         sugov:0-576   (  576) [003] .... 82312.082291: clk_set_rate: cpu0_pwrcl_clk 652800000
19246         sugov:0-576   (  576) [003] .... 82312.082410: cpu_frequency: state=652800 cpu_id=0
19247         sugov:0-576   (  576) [003] .... 82312.082488: cpu_frequency: state=652800 cpu_id=1
19248         sugov:0-576   (  576) [003] .... 82312.082494: cpu_frequency: state=652800 cpu_id=2
19249         sugov:0-576   (  576) [003] .... 82312.082499: cpu_frequency: state=652800 cpu_id=3
19250 SDM_EventThread-644   (  619) [000] ...1 82312.082501: tracing_mark_write: B|619|HWCCallbacks::Vsync::
19251         sugov:0-576   (  576) [003] d..2 82312.082543: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19252 SDM_EventThread-644   (  619) [000] ...1 82312.082550: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
19253 SDM_EventThread-644   (  619) [000] ...1 82312.082560: tracing_mark_write: E|619
19254 crtc_commit:111-321   (  321) [002] d..1 82312.082644: clk_disable: disp_cc_mdss_axi_clk
19255 crtc_commit:111-321   (  321) [002] d..1 82312.082664: clk_disable: disp_cc_mdss_ahb_clk
19256 crtc_commit:111-321   (  321) [002] d..1 82312.082682: clk_disable: gcc_disp_axi_clk
19257<...>-1054 ( 1054) [003] .... 82312.082792: clk_set_rate: l3_cluster0_vote_clk 300000000
19258 SDM_EventThread-644   (  619) [000] .... 82312.082795: binder_transaction: transaction=1568218 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
19259<...>-1054 ( 1054) [003] .... 82312.082808: clk_set_rate: l3_clk 300000000
19260 SDM_EventThread-644   (  619) [000] .... 82312.082825: binder_transaction_alloc_buf: transaction=1568218 data_size=76 offsets_size=0
19261 SDM_EventThread-644   (  619) [000] d..4 82312.082863: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
19262 SDM_EventThread-644   (  619) [000] d..5 82312.082915: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
19263 crtc_commit:111-321   (  321) [002] d..2 82312.082931: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19264          <idle>-0     (-----) [002] d.h3 82312.082948: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19265          <idle>-0     (-----) [002] dnh4 82312.082968: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19266          <idle>-0     (-----) [002] d..2 82312.082985: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19267 crtc_commit:111-321   (  321) [002] d..1 82312.083034: clk_disable: disp_cc_mdss_rscc_ahb_clk
19268 crtc_commit:111-321   (  321) [002] d..1 82312.083064: clk_disable: disp_cc_mdss_rscc_vsync_clk
19269 SDM_EventThread-644   (  619) [000] ...1 82312.083065: tracing_mark_write: E|619
19270 crtc_commit:111-321   (  321) [002] d..1 82312.083079: clk_disable: disp_cc_mdss_vsync_clk_src
19271<...>-1054 ( 1054) [003] d..2 82312.083206: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19272 SDM_EventThread-644   (  619) [000] d..2 82312.083213: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19273          <idle>-0     (-----) [001] .n.1 82312.083267: cpu_idle: state=4294967295 cpu_id=1
19274          <idle>-0     (-----) [003] d..1 82312.083272: cpu_idle: state=2 cpu_id=3
19275          <idle>-0     (-----) [000] d..1 82312.083272: cpu_idle: state=2 cpu_id=0
19276          <idle>-0     (-----) [001] d..2 82312.083322: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
19277<...>-8890 ( 8858) [001] .... 82312.083359: binder_transaction_received: transaction=1568218
19278 crtc_commit:111-321   (  321) [002] d..2 82312.083588: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19279          <idle>-0     (-----) [002] d..1 82312.083615: cpu_idle: state=2 cpu_id=2
19280<...>-8890 ( 8858) [001] d.s2 82312.083638: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19281<...>-8890 ( 8858) [001] d.s3 82312.083669: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19282<...>-8890 ( 8858) [001] ...1 82312.083723: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
19283<...>-8890 ( 8858) [001] ...1 82312.083793: tracing_mark_write: E|8858
19284<...>-8890 ( 8858) [001] d..2 82312.083956: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19285          <idle>-0     (-----) [001] d..1 82312.083983: cpu_idle: state=2 cpu_id=1
19286          <idle>-0     (-----) [002] .n.1 82312.084075: cpu_idle: state=4294967295 cpu_id=2
19287          <idle>-0     (-----) [002] d..2 82312.084103: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19288 crtc_commit:111-321   (  321) [002] d..2 82312.084499: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19289          <idle>-0     (-----) [002] d..1 82312.084520: cpu_idle: state=2 cpu_id=2
19290          <idle>-0     (-----) [001] d.s3 82312.084854: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19291          <idle>-0     (-----) [001] d.s4 82312.084883: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19292          <idle>-0     (-----) [001] ...1 82312.084899: cpu_idle: state=4294967295 cpu_id=1
19293          <idle>-0     (-----) [001] d..1 82312.084911: cpu_idle: state=2 cpu_id=1
19294          <idle>-0     (-----) [002] .n.1 82312.085206: cpu_idle: state=4294967295 cpu_id=2
19295          <idle>-0     (-----) [002] d..2 82312.085238: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19296 crtc_commit:111-321   (  321) [002] d..3 82312.085314: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19297 crtc_commit:111-321   (  321) [002] d..4 82312.085380: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
19298 crtc_commit:111-321   (  321) [002] d..2 82312.085629: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19299 SDM_EventThread-644   (  619) [002] d..2 82312.085800: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19300          <idle>-0     (-----) [002] d..2 82312.085809: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
19301          <idle>-0     (-----) [002] dn.3 82312.085842: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
19302          <idle>-0     (-----) [002] d..2 82312.085859: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
19303     ksoftirqd/2-26    (   26) [002] d..2 82312.085912: 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
19304          <idle>-0     (-----) [002] d..1 82312.085933: cpu_idle: state=2 cpu_id=2
19305          <idle>-0     (-----) [001] d.s3 82312.086200: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19306          <idle>-0     (-----) [001] d.s4 82312.086229: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19307          <idle>-0     (-----) [001] ...1 82312.086245: cpu_idle: state=4294967295 cpu_id=1
19308          <idle>-0     (-----) [001] d..1 82312.086257: cpu_idle: state=2 cpu_id=1
19309          <idle>-0     (-----) [002] .n.1 82312.086562: cpu_idle: state=4294967295 cpu_id=2
19310          <idle>-0     (-----) [002] d..2 82312.086589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19311 crtc_commit:111-321   (  321) [002] d..2 82312.086826: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19312          <idle>-0     (-----) [002] d..1 82312.086849: cpu_idle: state=2 cpu_id=2
19313          <idle>-0     (-----) [001] d.s3 82312.087181: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19314          <idle>-0     (-----) [001] d.s4 82312.087210: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19315          <idle>-0     (-----) [001] ...1 82312.087226: cpu_idle: state=4294967295 cpu_id=1
19316          <idle>-0     (-----) [001] d..1 82312.087238: cpu_idle: state=2 cpu_id=1
19317          <idle>-0     (-----) [002] .n.1 82312.087541: cpu_idle: state=4294967295 cpu_id=2
19318          <idle>-0     (-----) [002] d..2 82312.087568: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19319 crtc_commit:111-321   (  321) [002] d..1 82312.087643: clk_enable: disp_cc_mdss_vsync_clk_src
19320 crtc_commit:111-321   (  321) [002] d..1 82312.087650: clk_enable: disp_cc_mdss_rscc_vsync_clk
19321 crtc_commit:111-321   (  321) [002] d..1 82312.087675: clk_enable: disp_cc_mdss_rscc_ahb_clk
19322 crtc_commit:111-321   (  321) [002] d..2 82312.087772: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19323          <idle>-0     (-----) [002] d..1 82312.087791: cpu_idle: state=0 cpu_id=2
19324          <idle>-0     (-----) [002] d.h2 82312.087855: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19325          <idle>-0     (-----) [002] dnh3 82312.087875: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19326          <idle>-0     (-----) [002] .n.1 82312.087889: cpu_idle: state=4294967295 cpu_id=2
19327          <idle>-0     (-----) [002] d..2 82312.087901: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19328 crtc_commit:111-321   (  321) [002] d..2 82312.087935: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19329          <idle>-0     (-----) [002] d..1 82312.087946: cpu_idle: state=0 cpu_id=2
19330          <idle>-0     (-----) [002] d.h2 82312.088029: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19331          <idle>-0     (-----) [002] dnh3 82312.088042: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19332          <idle>-0     (-----) [002] .n.1 82312.088053: cpu_idle: state=4294967295 cpu_id=2
19333          <idle>-0     (-----) [002] d..2 82312.088064: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19334 crtc_commit:111-321   (  321) [002] d..1 82312.088109: clk_enable: gcc_disp_axi_clk
19335 crtc_commit:111-321   (  321) [002] d..1 82312.088126: clk_enable: disp_cc_mdss_ahb_clk
19336 crtc_commit:111-321   (  321) [002] d..1 82312.088140: clk_enable: disp_cc_mdss_axi_clk
19337 crtc_commit:111-321   (  321) [002] d..1 82312.088169: clk_enable: gcc_disp_gpll0_clk_src
19338 crtc_commit:111-321   (  321) [002] d..1 82312.088682: clk_enable: disp_cc_mdss_mdp_clk_src
19339 crtc_commit:111-321   (  321) [002] d..1 82312.088728: clk_enable: disp_cc_mdss_mdp_clk
19340 crtc_commit:111-321   (  321) [002] d..1 82312.088792: clk_enable: disp_cc_mdss_vsync_clk
19341 crtc_commit:111-321   (  321) [002] d..2 82312.089165: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19342          <idle>-0     (-----) [002] d..1 82312.089195: cpu_idle: state=0 cpu_id=2
19343          <idle>-0     (-----) [002] ...1 82312.090635: cpu_idle: state=4294967295 cpu_id=2
19344          <idle>-0     (-----) [002] d..1 82312.090642: cpu_idle: state=2 cpu_id=2
19345          <idle>-0     (-----) [002] ...1 82312.095382: cpu_idle: state=4294967295 cpu_id=2
19346          <idle>-0     (-----) [002] d..1 82312.095392: cpu_idle: state=2 cpu_id=2
19347          <idle>-0     (-----) [000] d.h7 82312.095481: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19348          <idle>-0     (-----) [000] dnh8 82312.095513: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19349          <idle>-0     (-----) [000] dnh9 82312.095527: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19350          <idle>-0     (-----) [000] dnha 82312.095553: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19351          <idle>-0     (-----) [000] dnh7 82312.095559: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
19352          <idle>-0     (-----) [000] dnh8 82312.095607: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19353          <idle>-0     (-----) [000] dnh3 82312.095763: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
19354          <idle>-0     (-----) [000] dnh4 82312.095781: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
19355          <idle>-0     (-----) [000] .n.1 82312.095818: cpu_idle: state=4294967295 cpu_id=0
19356          <idle>-0     (-----) [000] d..2 82312.095843: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
19357          <idle>-0     (-----) [002] .n.1 82312.095848: cpu_idle: state=4294967295 cpu_id=2
19358     kworker/0:1-25262 (25262) [000] d..2 82312.095866: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19359          <idle>-0     (-----) [002] d..2 82312.095882: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19360 SDM_EventThread-644   (  619) [000] ...1 82312.095914: tracing_mark_write: B|619|HWCCallbacks::Vsync::
19361 SDM_EventThread-644   (  619) [000] ...1 82312.095927: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
19362 crtc_commit:111-321   (  321) [002] d..1 82312.095929: clk_disable: disp_cc_mdss_vsync_clk
19363 SDM_EventThread-644   (  619) [000] ...1 82312.095934: tracing_mark_write: E|619
19364 crtc_commit:111-321   (  321) [002] d..1 82312.095949: clk_disable: disp_cc_mdss_mdp_clk
19365 crtc_commit:111-321   (  321) [002] d..1 82312.095963: clk_disable: disp_cc_mdss_mdp_clk_src
19366 SDM_EventThread-644   (  619) [000] .... 82312.095964: binder_transaction: transaction=1568219 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
19367 SDM_EventThread-644   (  619) [000] .... 82312.095970: binder_transaction_alloc_buf: transaction=1568219 data_size=76 offsets_size=0
19368 SDM_EventThread-644   (  619) [000] d..4 82312.095979: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
19369 crtc_commit:111-321   (  321) [002] d..1 82312.095999: clk_disable: gcc_disp_gpll0_clk_src
19370 SDM_EventThread-644   (  619) [000] d..5 82312.096008: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
19371 SDM_EventThread-644   (  619) [000] ...1 82312.096040: tracing_mark_write: E|619
19372          <idle>-0     (-----) [003] .n.1 82312.096086: cpu_idle: state=4294967295 cpu_id=3
19373 SDM_EventThread-644   (  619) [000] d..2 82312.096110: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19374          <idle>-0     (-----) [003] d..2 82312.096114: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
19375          <idle>-0     (-----) [000] d..2 82312.096120: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19376          <idle>-0     (-----) [000] dn.3 82312.096146: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19377         sugov:0-576   (  576) [003] .... 82312.096147: clk_set_rate: pwrcl_clk 748800000
19378         sugov:0-576   (  576) [003] .... 82312.096159: clk_set_rate: cpu3_pwrcl_clk 652800000
19379          <idle>-0     (-----) [000] d..2 82312.096162: 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
19380         sugov:0-576   (  576) [003] .... 82312.096171: clk_set_rate: cpu2_pwrcl_clk 652800000
19381         sugov:0-576   (  576) [003] .... 82312.096181: clk_set_rate: cpu1_pwrcl_clk 652800000
19382     ksoftirqd/0-3     (    3) [000] d.s2 82312.096184: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
19383         sugov:0-576   (  576) [003] .... 82312.096191: clk_set_rate: cpu0_pwrcl_clk 748800000
19384         sugov:0-576   (  576) [003] .... 82312.096203: cpu_frequency: state=748800 cpu_id=0
19385         sugov:0-576   (  576) [003] .... 82312.096223: cpu_frequency: state=748800 cpu_id=1
19386         sugov:0-576   (  576) [003] .... 82312.096228: cpu_frequency: state=748800 cpu_id=2
19387         sugov:0-576   (  576) [003] .... 82312.096233: cpu_frequency: state=748800 cpu_id=3
19388     ksoftirqd/0-3     (    3) [000] d.s3 82312.096238: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19389     ksoftirqd/0-3     (    3) [000] d..2 82312.096259: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19390         sugov:0-576   (  576) [003] d..2 82312.096284: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19391          <idle>-0     (-----) [001] .n.1 82312.096299: cpu_idle: state=4294967295 cpu_id=1
19392          <idle>-0     (-----) [003] d..1 82312.096302: cpu_idle: state=2 cpu_id=3
19393          <idle>-0     (-----) [001] d..2 82312.096334: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
19394<...>-8890 ( 8858) [001] .... 82312.096347: binder_transaction_received: transaction=1568219
19395<...>-8890 ( 8858) [001] ...1 82312.096394: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
19396<...>-8890 ( 8858) [001] d..1 82312.096463: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
19397<...>-8890 ( 8858) [001] d..2 82312.096501: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
19398<...>-8890 ( 8858) [001] d..1 82312.096532: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
19399 crtc_commit:111-321   (  321) [002] d..1 82312.096544: clk_disable: disp_cc_mdss_axi_clk
19400 crtc_commit:111-321   (  321) [002] d..1 82312.096568: clk_disable: disp_cc_mdss_ahb_clk
19401 crtc_commit:111-321   (  321) [002] d..1 82312.096581: clk_disable: gcc_disp_axi_clk
19402<...>-8890 ( 8858) [001] dn.2 82312.096601: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
19403<...>-8890 ( 8858) [001] d..2 82312.096625: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
19404 crtc_commit:111-321   (  321) [002] d..2 82312.096676: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19405<...>-8894 ( 8858) [001] d..2 82312.096714: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
19406<...>-8890 ( 8858) [001] d..1 82312.096725: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
19407          <idle>-0     (-----) [002] d..1 82312.096727: cpu_idle: state=0 cpu_id=2
19408          <idle>-0     (-----) [002] dnh2 82312.096750: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19409<...>-1054 ( 1054) [000] d..2 82312.096754: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19410<...>-8890 ( 8858) [001] d..2 82312.096754: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
19411<...>-8890 ( 8858) [001] ...1 82312.096775: tracing_mark_write: E|8858
19412          <idle>-0     (-----) [000] d..1 82312.096778: cpu_idle: state=2 cpu_id=0
19413          <idle>-0     (-----) [002] dnh3 82312.096791: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19414          <idle>-0     (-----) [003] .n.1 82312.096792: cpu_idle: state=4294967295 cpu_id=3
19415          <idle>-0     (-----) [002] .n.1 82312.096808: cpu_idle: state=4294967295 cpu_id=2
19416          <idle>-0     (-----) [000] .n.1 82312.096809: cpu_idle: state=4294967295 cpu_id=0
19417          <idle>-0     (-----) [003] d..2 82312.096820: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
19418          <idle>-0     (-----) [000] d..2 82312.096824: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19419          <idle>-0     (-----) [002] d..2 82312.096826: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
19420<...>-8890 ( 8858) [001] d..2 82312.096839: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19421 crtc_commit:111-321   (  321) [000] d..1 82312.096846: clk_disable: disp_cc_mdss_rscc_ahb_clk
19422          <idle>-0     (-----) [001] d..1 82312.096861: cpu_idle: state=2 cpu_id=1
19423 crtc_commit:111-321   (  321) [000] d..1 82312.096866: clk_disable: disp_cc_mdss_rscc_vsync_clk
19424 crtc_commit:111-321   (  321) [000] d..1 82312.096879: clk_disable: disp_cc_mdss_vsync_clk_src
19425<...>-8894 ( 8858) [002] ...1 82312.096906: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
19426<...>-8894 ( 8858) [002] ...1 82312.096917: tracing_mark_write: E|8858
19427        DispSync-8879  ( 8858) [003] d..2 82312.096933: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19428          <idle>-0     (-----) [003] d..1 82312.096950: cpu_idle: state=2 cpu_id=3
19429<...>-8894 ( 8858) [002] .... 82312.097003: binder_transaction: transaction=1568220 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
19430<...>-8894 ( 8858) [002] .... 82312.097021: binder_transaction_alloc_buf: transaction=1568220 data_size=68 offsets_size=0
19431<...>-8894 ( 8858) [002] ...2 82312.097047: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
19432 crtc_commit:111-321   (  321) [000] d..2 82312.097083: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19433<...>-8894 ( 8858) [002] d..4 82312.097093: sched_waking: [email protected] pid=619 prio=112 target_cpu=002
19434          <idle>-0     (-----) [000] d..1 82312.097103: cpu_idle: state=2 cpu_id=0
19435<...>-8894 ( 8858) [002] d..5 82312.097128: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=002
19436<...>-8894 ( 8858) [002] d..2 82312.097151: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
19437 [email protected]   (  619) [002] .... 82312.097175: binder_transaction_received: transaction=1568220
19438 [email protected]   (  619) [002] ...1 82312.097295: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
19439 [email protected]   (  619) [002] ...1 82312.097335: tracing_mark_write: C|619|SetVsyncState |0
19440 [email protected]   (  619) [002] ...1 82312.097412: tracing_mark_write: E|619
19441          <idle>-0     (-----) [001] d.s3 82312.097419: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19442 [email protected]   (  619) [002] .... 82312.097441: binder_transaction: transaction=1568221 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
19443          <idle>-0     (-----) [001] d.s4 82312.097447: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19444 [email protected]   (  619) [002] .... 82312.097448: binder_transaction_alloc_buf: transaction=1568221 data_size=8 offsets_size=0
19445 [email protected]   (  619) [002] d..2 82312.097461: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
19446          <idle>-0     (-----) [001] ...1 82312.097461: cpu_idle: state=4294967295 cpu_id=1
19447          <idle>-0     (-----) [001] d..1 82312.097471: cpu_idle: state=2 cpu_id=1
19448 [email protected]   (  619) [002] dn.3 82312.097484: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
19449 [email protected]   (  619) [002] d..2 82312.097498: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
19450<...>-8894 ( 8858) [002] .... 82312.097510: binder_transaction_received: transaction=1568221
19451<...>-8894 ( 8858) [002] d..2 82312.097587: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
19452 [email protected]   (  619) [002] .... 82312.097594: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
19453 [email protected]   (  619) [002] d..2 82312.097707: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19454          <idle>-0     (-----) [002] d..1 82312.097728: cpu_idle: state=2 cpu_id=2
19455          <idle>-0     (-----) [000] .n.1 82312.097784: cpu_idle: state=4294967295 cpu_id=0
19456          <idle>-0     (-----) [000] d..2 82312.097810: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19457 crtc_commit:111-321   (  321) [000] d..2 82312.098056: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19458          <idle>-0     (-----) [000] d..1 82312.098079: cpu_idle: state=2 cpu_id=0
19459          <idle>-0     (-----) [001] d.s3 82312.098429: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19460          <idle>-0     (-----) [001] d.s4 82312.098457: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19461          <idle>-0     (-----) [001] ...1 82312.098471: cpu_idle: state=4294967295 cpu_id=1
19462          <idle>-0     (-----) [001] d..1 82312.098482: cpu_idle: state=2 cpu_id=1
19463          <idle>-0     (-----) [000] .n.1 82312.098776: cpu_idle: state=4294967295 cpu_id=0
19464          <idle>-0     (-----) [000] d..2 82312.098809: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19465 crtc_commit:111-321   (  321) [000] d..3 82312.098834: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19466 crtc_commit:111-321   (  321) [000] d..4 82312.098864: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19467 crtc_commit:111-321   (  321) [000] d..2 82312.099093: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19468 SDM_EventThread-644   (  619) [000] d..2 82312.099176: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19469          <idle>-0     (-----) [000] d..2 82312.099183: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19470          <idle>-0     (-----) [000] dn.3 82312.099197: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19471          <idle>-0     (-----) [000] d..2 82312.099209: 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
19472     ksoftirqd/0-3     (    3) [000] d..2 82312.099237: 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
19473          <idle>-0     (-----) [000] d..1 82312.099257: cpu_idle: state=2 cpu_id=0
19474          <idle>-0     (-----) [001] d.s3 82312.099618: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19475          <idle>-0     (-----) [001] d.s4 82312.099645: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19476          <idle>-0     (-----) [001] ...1 82312.099660: cpu_idle: state=4294967295 cpu_id=1
19477          <idle>-0     (-----) [001] d..1 82312.099670: cpu_idle: state=2 cpu_id=1
19478          <idle>-0     (-----) [000] .n.1 82312.099965: cpu_idle: state=4294967295 cpu_id=0
19479          <idle>-0     (-----) [000] d..2 82312.099991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19480 crtc_commit:111-321   (  321) [000] d..2 82312.100207: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19481          <idle>-0     (-----) [000] d..1 82312.100232: cpu_idle: state=0 cpu_id=0
19482          <idle>-0     (-----) [001] d.s3 82312.100572: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19483          <idle>-0     (-----) [001] d.s4 82312.100608: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19484          <idle>-0     (-----) [000] .n.1 82312.100620: cpu_idle: state=4294967295 cpu_id=0
19485          <idle>-0     (-----) [001] ...1 82312.100625: cpu_idle: state=4294967295 cpu_id=1
19486          <idle>-0     (-----) [000] d..2 82312.100633: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19487          <idle>-0     (-----) [001] d..1 82312.100645: cpu_idle: state=0 cpu_id=1
19488 crtc_commit:111-321   (  321) [000] d..1 82312.100663: clk_enable: disp_cc_mdss_vsync_clk_src
19489 crtc_commit:111-321   (  321) [000] d..1 82312.100668: clk_enable: disp_cc_mdss_rscc_vsync_clk
19490 crtc_commit:111-321   (  321) [000] d..1 82312.100692: clk_enable: disp_cc_mdss_rscc_ahb_clk
19491 crtc_commit:111-321   (  321) [000] d..2 82312.100769: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19492          <idle>-0     (-----) [000] d..1 82312.100784: cpu_idle: state=0 cpu_id=0
19493          <idle>-0     (-----) [000] d.h2 82312.100861: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19494          <idle>-0     (-----) [000] dnh3 82312.100884: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19495          <idle>-0     (-----) [000] .n.1 82312.100897: cpu_idle: state=4294967295 cpu_id=0
19496          <idle>-0     (-----) [000] d..2 82312.100910: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19497 crtc_commit:111-321   (  321) [000] d..2 82312.100939: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19498          <idle>-0     (-----) [000] d..1 82312.100949: cpu_idle: state=0 cpu_id=0
19499          <idle>-0     (-----) [000] d.h2 82312.101034: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19500          <idle>-0     (-----) [000] dnh3 82312.101046: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19501          <idle>-0     (-----) [000] .n.1 82312.101055: cpu_idle: state=4294967295 cpu_id=0
19502          <idle>-0     (-----) [000] d..2 82312.101067: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19503 crtc_commit:111-321   (  321) [000] d..1 82312.101105: clk_enable: gcc_disp_axi_clk
19504 crtc_commit:111-321   (  321) [000] d..1 82312.101119: clk_enable: disp_cc_mdss_ahb_clk
19505 crtc_commit:111-321   (  321) [000] d..1 82312.101134: clk_enable: disp_cc_mdss_axi_clk
19506 crtc_commit:111-321   (  321) [000] d..1 82312.101160: clk_enable: gcc_disp_gpll0_clk_src
19507 crtc_commit:111-321   (  321) [000] d..1 82312.101668: clk_enable: disp_cc_mdss_mdp_clk_src
19508 crtc_commit:111-321   (  321) [000] d..1 82312.101711: clk_enable: disp_cc_mdss_mdp_clk
19509 crtc_commit:111-321   (  321) [000] d..1 82312.101724: clk_enable: disp_cc_mdss_vsync_clk
19510 crtc_commit:111-321   (  321) [000] d.s2 82312.101819: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19511 crtc_commit:111-321   (  321) [000] d.s3 82312.101846: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19512 crtc_commit:111-321   (  321) [000] d..2 82312.102052: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19513<...>-1054 ( 1054) [000] d..2 82312.102448: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19514          <idle>-0     (-----) [000] d..1 82312.102470: cpu_idle: state=0 cpu_id=0
19515          <idle>-0     (-----) [001] d.s3 82312.102483: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19516          <idle>-0     (-----) [001] d.s4 82312.102512: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
19517          <idle>-0     (-----) [001] d.s4 82312.102530: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19518          <idle>-0     (-----) [000] .n.1 82312.102541: cpu_idle: state=4294967295 cpu_id=0
19519          <idle>-0     (-----) [001] ...1 82312.102545: cpu_idle: state=4294967295 cpu_id=1
19520          <idle>-0     (-----) [001] d..1 82312.102551: cpu_idle: state=2 cpu_id=1
19521          <idle>-0     (-----) [000] d..2 82312.102556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19522<...>-1054 ( 1054) [000] d..2 82312.102592: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19523          <idle>-0     (-----) [000] d..1 82312.102606: cpu_idle: state=0 cpu_id=0
19524          <idle>-0     (-----) [000] ...1 82312.103880: cpu_idle: state=4294967295 cpu_id=0
19525          <idle>-0     (-----) [000] d..1 82312.103887: cpu_idle: state=2 cpu_id=0
19526          <idle>-0     (-----) [000] d.h7 82312.113614: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19527          <idle>-0     (-----) [000] dnh8 82312.113831: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19528          <idle>-0     (-----) [000] dnh9 82312.113911: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19529          <idle>-0     (-----) [000] dnha 82312.114096: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
19530          <idle>-0     (-----) [000] dnh7 82312.114122: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19531          <idle>-0     (-----) [000] dnh8 82312.114207: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19532          <idle>-0     (-----) [001] .n.1 82312.114487: cpu_idle: state=4294967295 cpu_id=1
19533          <idle>-0     (-----) [001] d..2 82312.114629: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19534          <idle>-0     (-----) [000] .n.1 82312.114664: cpu_idle: state=4294967295 cpu_id=0
19535          <idle>-0     (-----) [000] d..2 82312.114725: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
19536     kworker/0:1-25262 (25262) [000] d..2 82312.114814: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19537 crtc_commit:111-321   (  321) [001] d..1 82312.114818: clk_disable: disp_cc_mdss_vsync_clk
19538 crtc_commit:111-321   (  321) [001] d..1 82312.114899: clk_disable: disp_cc_mdss_mdp_clk
19539 crtc_commit:111-321   (  321) [001] d..1 82312.114916: clk_disable: disp_cc_mdss_mdp_clk_src
19540 crtc_commit:111-321   (  321) [001] d..1 82312.114970: clk_disable: gcc_disp_gpll0_clk_src
19541 SDM_EventThread-644   (  619) [000] d..2 82312.115196: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19542          <idle>-0     (-----) [000] d.s4 82312.115389: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19543          <idle>-0     (-----) [000] dns5 82312.115442: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19544          <idle>-0     (-----) [000] d..2 82312.115517: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19545 crtc_commit:111-321   (  321) [001] d..1 82312.115774: clk_disable: disp_cc_mdss_axi_clk
19546 crtc_commit:111-321   (  321) [001] d..1 82312.115813: clk_disable: disp_cc_mdss_ahb_clk
19547 crtc_commit:111-321   (  321) [001] d..1 82312.115832: clk_disable: gcc_disp_axi_clk
19548 crtc_commit:111-321   (  321) [001] d..2 82312.116016: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
19549          <idle>-0     (-----) [001] d.h3 82312.116045: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
19550          <idle>-0     (-----) [001] dnh4 82312.116061: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
19551          <idle>-0     (-----) [001] d..2 82312.116089: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19552 crtc_commit:111-321   (  321) [001] d..1 82312.116135: clk_disable: disp_cc_mdss_rscc_ahb_clk
19553 crtc_commit:111-321   (  321) [001] d..1 82312.116156: clk_disable: disp_cc_mdss_rscc_vsync_clk
19554 crtc_commit:111-321   (  321) [001] d..1 82312.116170: clk_disable: disp_cc_mdss_vsync_clk_src
19555<...>-1054 ( 1054) [000] d..2 82312.116206: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19556          <idle>-0     (-----) [000] d..1 82312.116286: cpu_idle: state=2 cpu_id=0
19557 crtc_commit:111-321   (  321) [001] d.s1 82312.116702: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
19558 crtc_commit:111-321   (  321) [001] d.s2 82312.116738: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
19559 crtc_commit:111-321   (  321) [001] d..2 82312.116771: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
19560     ksoftirqd/1-18    (   18) [001] d.s2 82312.116823: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
19561     ksoftirqd/1-18    (   18) [001] d.s3 82312.116874: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
19562     ksoftirqd/1-18    (   18) [001] d..2 82312.116916: 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
19563          <idle>-0     (-----) [001] d..1 82312.116947: cpu_idle: state=2 cpu_id=1
19564          <idle>-0     (-----) [003] .n.1 82312.117247: cpu_idle: state=4294967295 cpu_id=3
19565          <idle>-0     (-----) [003] d..2 82312.117307: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19566 crtc_commit:111-321   (  321) [003] d..2 82312.117703: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
19567          <idle>-0     (-----) [003] d..1 82312.117732: cpu_idle: state=2 cpu_id=3
19568          <idle>-0     (-----) [001] d.s3 82312.118057: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
19569          <idle>-0     (-----) [001] d.s4 82312.118086: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
19570          <idle>-0     (-----) [001] ...1 82312.118101: cpu_idle: state=4294967295 cpu_id=1
19571          <idle>-0     (-----) [001] d..1 82312.118111: cpu_idle: state=2 cpu_id=1
19572          <idle>-0     (-----) [003] .n.1 82312.118411: cpu_idle: state=4294967295 cpu_id=3
19573          <idle>-0     (-----) [003] d..2 82312.118437: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19574 crtc_commit:111-321   (  321) [003] d..3 82312.118591: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19575 crtc_commit:111-321   (  321) [003] d..4 82312.118713: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
19576 crtc_commit:111-321   (  321) [003] d..2 82312.118746: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19577 SDM_EventThread-644   (  619) [003] d..2 82312.118951: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19578          <idle>-0     (-----) [003] d..1 82312.118976: cpu_idle: state=2 cpu_id=3
19579          <idle>-0     (-----) [000] ...1 82312.210542: cpu_idle: state=4294967295 cpu_id=0
19580          <idle>-0     (-----) [001] d.H3 82312.210544: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
19581          <idle>-0     (-----) [000] d..1 82312.210641: cpu_idle: state=2 cpu_id=0
19582          <idle>-0     (-----) [001] d.H4 82312.210711: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
19583          <idle>-0     (-----) [001] d.s3 82312.210786: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
19584          <idle>-0     (-----) [001] dns4 82312.210878: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
19585          <idle>-0     (-----) [001] dns3 82312.210906: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19586          <idle>-0     (-----) [001] dns4 82312.211096: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
19587          <idle>-0     (-----) [003] .n.1 82312.211109: cpu_idle: state=4294967295 cpu_id=3
19588          <idle>-0     (-----) [003] d..2 82312.211220: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
19589          <idle>-0     (-----) [001] .n.1 82312.211225: cpu_idle: state=4294967295 cpu_id=1
19590          <idle>-0     (-----) [001] d..2 82312.211283: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
19591         sugov:0-576   (  576) [003] .... 82312.211380: clk_set_rate: pwrcl_clk 652800000
19592         sugov:0-576   (  576) [003] .... 82312.211469: clk_set_rate: cpu3_pwrcl_clk 748800000
19593         sugov:0-576   (  576) [003] .... 82312.211488: clk_set_rate: cpu2_pwrcl_clk 748800000
19594         sugov:0-576   (  576) [003] .... 82312.211499: clk_set_rate: cpu1_pwrcl_clk 748800000
19595         sugov:0-576   (  576) [003] .... 82312.211509: clk_set_rate: cpu0_pwrcl_clk 652800000
19596     kworker/1:1-25249 (25249) [001] d..3 82312.211587: sched_waking: comm=kworker/1:0 pid=25261 prio=120 target_cpu=001
19597     kworker/1:1-25249 (25249) [001] d..3 82312.211632: sched_wakeup: comm=kworker/1:0 pid=25261 prio=120 target_cpu=001
19598         sugov:0-576   (  576) [003] .... 82312.211633: cpu_frequency: state=652800 cpu_id=0
19599     kworker/1:1-25249 (25249) [001] d..2 82312.211650: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=kworker/1:0 next_pid=25261 next_prio=120
19600<...>-25261 ( 25261) [001] d..2 82312.211728: sched_switch: prev_comm=kworker/1:0 prev_pid=25261 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19601         sugov:0-576   (  576) [003] .... 82312.211739: cpu_frequency: state=652800 cpu_id=1
19602         sugov:0-576   (  576) [003] .... 82312.211746: cpu_frequency: state=652800 cpu_id=2
19603         sugov:0-576   (  576) [003] .... 82312.211751: cpu_frequency: state=652800 cpu_id=3
19604         sugov:0-576   (  576) [003] d..2 82312.211967: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19605          <idle>-0     (-----) [003] d..1 82312.212077: cpu_idle: state=2 cpu_id=3
19606<...>-1054 ( 1054) [001] d..2 82312.212517: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19607          <idle>-0     (-----) [001] d..1 82312.212546: cpu_idle: state=2 cpu_id=1
19608          <idle>-0     (-----) [000] d.h3 82312.212628: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19609          <idle>-0     (-----) [000] dnh4 82312.212676: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19610          <idle>-0     (-----) [000] .n.1 82312.212712: cpu_idle: state=4294967295 cpu_id=0
19611          <idle>-0     (-----) [000] d..2 82312.212752: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
19612     kworker/0:1-25262 (25262) [000] d..2 82312.212782: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
19613     kworker/0:1-25262 (25262) [000] d..3 82312.212805: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
19614     kworker/0:1-25262 (25262) [000] d..3 82312.212824: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
19615     kworker/0:1-25262 (25262) [000] d..2 82312.212877: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19616          <idle>-0     (-----) [000] d..1 82312.212910: cpu_idle: state=2 cpu_id=0
19617          <idle>-0     (-----) [001] .n.1 82312.213160: cpu_idle: state=4294967295 cpu_id=1
19618          <idle>-0     (-----) [001] d..2 82312.213192: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
19619     kworker/1:1-25249 (25249) [001] d..2 82312.213400: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19620          <idle>-0     (-----) [001] d..1 82312.213420: cpu_idle: state=2 cpu_id=1
19621          <idle>-0     (-----) [001] d.h2 82312.323026: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
19622          <idle>-0     (-----) [000] d..2 82312.323171: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19623          <idle>-0     (-----) [001] dnh3 82312.323269: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
19624          <idle>-0     (-----) [000] dn.3 82312.323298: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19625          <idle>-0     (-----) [001] .n.1 82312.323676: cpu_idle: state=4294967295 cpu_id=1
19626          <idle>-0     (-----) [000] dns3 82312.323688: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
19627          <idle>-0     (-----) [001] d..2 82312.323824: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
19628          <idle>-0     (-----) [000] dns4 82312.323896: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19629          <idle>-0     (-----) [000] .n.1 82312.323942: cpu_idle: state=4294967295 cpu_id=0
19630          <idle>-0     (-----) [000] d..2 82312.324009: 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
19631     ksoftirqd/0-3     (    3) [000] d..2 82312.324066: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19632 [email protected]  (  776) [001] d..2 82312.324339: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19633          <idle>-0     (-----) [001] d..1 82312.324474: cpu_idle: state=2 cpu_id=1
19634<...>-1054 ( 1054) [000] d..2 82312.325782: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19635          <idle>-0     (-----) [000] d..1 82312.325833: cpu_idle: state=2 cpu_id=0
19636          <idle>-0     (-----) [001] d.s3 82312.326157: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19637          <idle>-0     (-----) [001] d.s4 82312.326197: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
19638          <idle>-0     (-----) [001] d.s4 82312.326223: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19639          <idle>-0     (-----) [001] ...1 82312.326248: cpu_idle: state=4294967295 cpu_id=1
19640          <idle>-0     (-----) [001] d..1 82312.326259: cpu_idle: state=2 cpu_id=1
19641          <idle>-0     (-----) [000] .n.1 82312.326559: cpu_idle: state=4294967295 cpu_id=0
19642          <idle>-0     (-----) [000] d..2 82312.326590: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19643<...>-1054 ( 1054) [000] d..2 82312.326677: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19644          <idle>-0     (-----) [000] d..1 82312.326698: cpu_idle: state=2 cpu_id=0
19645          <idle>-0     (-----) [000] d.h2 82312.345794: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
19646          <idle>-0     (-----) [000] dnh3 82312.346120: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
19647          <idle>-0     (-----) [000] dnh3 82312.346720: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
19648          <idle>-0     (-----) [000] dnh4 82312.346828: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
19649          <idle>-0     (-----) [000] .n.1 82312.346908: cpu_idle: state=4294967295 cpu_id=0
19650          <idle>-0     (-----) [000] d..2 82312.347070: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
19651          <idle>-0     (-----) [003] .n.1 82312.347248: cpu_idle: state=4294967295 cpu_id=3
19652          <idle>-0     (-----) [003] d..2 82312.347317: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
19653         sugov:0-576   (  576) [003] .... 82312.347470: clk_set_rate: pwrcl_clk 748800000
19654         sugov:0-576   (  576) [003] .... 82312.347565: clk_set_rate: cpu3_pwrcl_clk 652800000
19655         sugov:0-576   (  576) [003] .... 82312.347590: clk_set_rate: cpu2_pwrcl_clk 652800000
19656         sugov:0-576   (  576) [003] .... 82312.347600: clk_set_rate: cpu1_pwrcl_clk 652800000
19657         sugov:0-576   (  576) [003] .... 82312.347611: clk_set_rate: cpu0_pwrcl_clk 748800000
19658         sugov:0-576   (  576) [003] .... 82312.347630: cpu_frequency: state=748800 cpu_id=0
19659         sugov:0-576   (  576) [003] .... 82312.347743: cpu_frequency: state=748800 cpu_id=1
19660         sugov:0-576   (  576) [003] .... 82312.347750: cpu_frequency: state=748800 cpu_id=2
19661         sugov:0-576   (  576) [003] .... 82312.347755: cpu_frequency: state=748800 cpu_id=3
19662         sugov:0-576   (  576) [003] d..2 82312.347965: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19663          <idle>-0     (-----) [003] d..2 82312.347985: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
19664          <idle>-0     (-----) [003] dn.3 82312.348018: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
19665          <idle>-0     (-----) [003] d..2 82312.348039: 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
19666     ksoftirqd/3-34    (   34) [003] d.s2 82312.348124: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19667 RxSchedulerPurg-25567 (25538) [000] d..2 82312.348160: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19668          <idle>-0     (-----) [000] dn.2 82312.348184: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19669     ksoftirqd/3-34    (   34) [003] d.s3 82312.348187: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19670          <idle>-0     (-----) [000] dn.3 82312.348224: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19671     ksoftirqd/3-34    (   34) [003] d.s2 82312.348233: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
19672          <idle>-0     (-----) [000] d..2 82312.348248: 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
19673     ksoftirqd/3-34    (   34) [003] d.s3 82312.348276: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
19674     ksoftirqd/0-3     (    3) [000] d.s2 82312.348291: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19675     ksoftirqd/3-34    (   34) [003] d..2 82312.348308: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
19676     ksoftirqd/0-3     (    3) [000] d.s3 82312.348333: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19677     ksoftirqd/0-3     (    3) [000] d..2 82312.348363: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
19678     kworker/0:1-25262 (25262) [000] d..2 82312.348422: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
19679     kworker/3:1-25210 (25210) [003] d..2 82312.348460: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19680     kworker/0:1-25262 (25262) [000] d..3 82312.348484: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
19681          <idle>-0     (-----) [003] d..2 82312.348641: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
19682     kworker/0:1-25262 (25262) [000] d..2 82312.348667: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19683     kworker/3:1-25210 (25210) [003] d..2 82312.348701: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19684          <idle>-0     (-----) [003] d..1 82312.348778: cpu_idle: state=2 cpu_id=3
19685<...>-1054 ( 1054) [000] d..2 82312.349095: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19686          <idle>-0     (-----) [000] d..1 82312.349132: cpu_idle: state=2 cpu_id=0
19687          <idle>-0     (-----) [000] ...1 82312.370461: cpu_idle: state=4294967295 cpu_id=0
19688          <idle>-0     (-----) [000] d..1 82312.370561: cpu_idle: state=2 cpu_id=0
19689          <idle>-0     (-----) [001] d.s3 82312.370590: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19690          <idle>-0     (-----) [001] dns4 82312.370894: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
19691          <idle>-0     (-----) [001] .n.1 82312.371038: cpu_idle: state=4294967295 cpu_id=1
19692          <idle>-0     (-----) [001] d..2 82312.371158: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19693<...>-1054 ( 1054) [001] d..2 82312.371837: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19694          <idle>-0     (-----) [001] d.H4 82312.371994: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
19695          <idle>-0     (-----) [001] d.H5 82312.372092: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
19696          <idle>-0     (-----) [001] d.s4 82312.372113: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
19697          <idle>-0     (-----) [001] dns5 82312.372128: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
19698          <idle>-0     (-----) [001] d..2 82312.372143: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19699<...>-1054 ( 1054) [001] d..2 82312.372284: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19700          <idle>-0     (-----) [001] d..1 82312.372318: cpu_idle: state=2 cpu_id=1
19701          <idle>-0     (-----) [003] .n.1 82312.372487: cpu_idle: state=4294967295 cpu_id=3
19702          <idle>-0     (-----) [003] d..2 82312.372556: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
19703         sugov:0-576   (  576) [003] .... 82312.372701: clk_set_rate: pwrcl_clk 652800000
19704         sugov:0-576   (  576) [003] .... 82312.372799: clk_set_rate: cpu3_pwrcl_clk 748800000
19705         sugov:0-576   (  576) [003] .... 82312.372825: clk_set_rate: cpu2_pwrcl_clk 748800000
19706         sugov:0-576   (  576) [003] .... 82312.372837: clk_set_rate: cpu1_pwrcl_clk 748800000
19707         sugov:0-576   (  576) [003] .... 82312.372849: clk_set_rate: cpu0_pwrcl_clk 652800000
19708         sugov:0-576   (  576) [003] .... 82312.372924: cpu_frequency: state=652800 cpu_id=0
19709         sugov:0-576   (  576) [003] .... 82312.373033: cpu_frequency: state=652800 cpu_id=1
19710         sugov:0-576   (  576) [003] .... 82312.373040: cpu_frequency: state=652800 cpu_id=2
19711         sugov:0-576   (  576) [003] .... 82312.373045: cpu_frequency: state=652800 cpu_id=3
19712         sugov:0-576   (  576) [003] d..2 82312.373151: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19713          <idle>-0     (-----) [003] d..1 82312.373190: cpu_idle: state=2 cpu_id=3
19714          <idle>-0     (-----) [000] d..2 82312.771221: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19715          <idle>-0     (-----) [000] dn.3 82312.771429: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19716          <idle>-0     (-----) [000] dns3 82312.772140: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
19717          <idle>-0     (-----) [000] dns4 82312.772403: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19718          <idle>-0     (-----) [000] dns3 82312.772462: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19719          <idle>-0     (-----) [000] dns4 82312.772507: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19720          <idle>-0     (-----) [000] .n.1 82312.772554: cpu_idle: state=4294967295 cpu_id=0
19721          <idle>-0     (-----) [000] d..2 82312.772734: 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
19722     ksoftirqd/0-3     (    3) [000] d..2 82312.772818: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
19723     kworker/0:1-25262 (25262) [000] d..2 82312.772941: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19724<...>-1054 ( 1054) [000] d..2 82312.773855: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19725          <idle>-0     (-----) [000] d..2 82312.773867: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19726          <idle>-0     (-----) [000] dn.3 82312.773884: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19727          <idle>-0     (-----) [000] d..2 82312.773900: 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
19728     ksoftirqd/0-3     (    3) [000] d..2 82312.773937: 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
19729          <idle>-0     (-----) [000] d..1 82312.774029: cpu_idle: state=2 cpu_id=0
19730          <idle>-0     (-----) [007] d.s3 82312.797267: sched_waking: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
19731          <idle>-0     (-----) [007] dns4 82312.797366: sched_wakeup: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
19732          <idle>-0     (-----) [007] dns3 82312.797395: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19733          <idle>-0     (-----) [000] d.h2 82312.797409: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=000
19734          <idle>-0     (-----) [000] dnh3 82312.797481: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=000
19735          <idle>-0     (-----) [000] dnh2 82312.797573: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19736          <idle>-0     (-----) [007] .n.1 82312.797591: cpu_idle: state=4294967295 cpu_id=7
19737          <idle>-0     (-----) [000] .n.1 82312.797592: cpu_idle: state=4294967295 cpu_id=0
19738          <idle>-0     (-----) [007] d..2 82312.797664: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/7:3 next_pid=442 next_prio=120
19739          <idle>-0     (-----) [000] d..2 82312.797665: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
19740     kworker/7:3-442   (  442) [007] d..2 82312.797767: sched_switch: prev_comm=kworker/7:3 prev_pid=442 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
19741          <idle>-0     (-----) [007] d..1 82312.797807: cpu_idle: state=2 cpu_id=7
19742 PowerManagerSer-8971  ( 8943) [000] d..2 82312.798483: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19743<...>-1054 ( 1054) [000] d..2 82312.799179: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19744          <idle>-0     (-----) [000] d..1 82312.799216: cpu_idle: state=2 cpu_id=0
19745          <idle>-0     (-----) [004] d.h2 82312.996287: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
19746          <idle>-0     (-----) [004] dnh3 82312.996471: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
19747          <idle>-0     (-----) [000] d..2 82312.996688: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19748          <idle>-0     (-----) [004] .n.1 82312.996731: cpu_idle: state=4294967295 cpu_id=4
19749          <idle>-0     (-----) [000] dn.3 82312.996747: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19750          <idle>-0     (-----) [004] d..2 82312.996827: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
19751          <idle>-0     (-----) [000] dns3 82312.996894: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19752          <idle>-0     (-----) [000] dns4 82312.996962: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19753          <idle>-0     (-----) [000] dns3 82312.997001: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19754          <idle>-0     (-----) [000] dns4 82312.997030: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19755          <idle>-0     (-----) [000] .n.1 82312.997049: cpu_idle: state=4294967295 cpu_id=0
19756          <idle>-0     (-----) [000] d..2 82312.997101: 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
19757     ksoftirqd/0-3     (    3) [000] d..2 82312.997152: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
19758     kworker/0:1-25262 (25262) [000] d..2 82312.997255: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19759 s.nexuslauncher-10023 (10023) [004] .... 82312.997583: binder_transaction: transaction=1568222 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
19760 s.nexuslauncher-10023 (10023) [004] .... 82312.997642: binder_transaction_alloc_buf: transaction=1568222 data_size=80 offsets_size=0
19761 s.nexuslauncher-10023 (10023) [004] d..4 82312.997674: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
19762 s.nexuslauncher-10023 (10023) [004] d..2 82312.997987: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
19763<...>-1054 ( 1054) [000] d..2 82312.998005: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19764          <idle>-0     (-----) [004] d..1 82312.998035: cpu_idle: state=2 cpu_id=4
19765          <idle>-0     (-----) [000] d..1 82312.998049: cpu_idle: state=2 cpu_id=0
19766          <idle>-0     (-----) [001] dnh2 82312.998122: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
19767          <idle>-0     (-----) [001] .n.1 82312.998145: cpu_idle: state=4294967295 cpu_id=1
19768          <idle>-0     (-----) [001] d..2 82312.998190: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
19769<...>-8874 ( 8858) [001] .... 82312.998239: binder_transaction_received: transaction=1568222
19770<...>-8874 ( 8858) [001] ...1 82312.998954: tracing_mark_write: B|8858|HIDL::IComposerClient::getActiveConfig::client
19771<...>-8874 ( 8858) [001] ...1 82312.998990: tracing_mark_write: E|8858
19772<...>-8874 ( 8858) [001] .... 82312.999167: binder_transaction: transaction=1568223 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x7
19773<...>-8874 ( 8858) [001] .... 82312.999178: binder_transaction_alloc_buf: transaction=1568223 data_size=64 offsets_size=0
19774<...>-8874 ( 8858) [001] ...2 82312.999218: binder_set_priority: proc=619 thread=619 old=97 => new=120 desired=120
19775<...>-8874 ( 8858) [001] d..4 82312.999283: sched_waking: [email protected] pid=619 prio=120 target_cpu=002
19776<...>-8874 ( 8858) [001] d..5 82312.999360: sched_wakeup: [email protected] pid=619 prio=120 target_cpu=001
19777<...>-8874 ( 8858) [001] d..2 82312.999393: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=120
19778 [email protected]   (  619) [001] .... 82312.999428: binder_transaction_received: transaction=1568223
19779 [email protected]   (  619) [001] ...1 82312.999676: tracing_mark_write: B|619|HIDL::IComposerClient::getActiveConfig::server
19780 [email protected]   (  619) [001] ...1 82312.999837: tracing_mark_write: E|619
19781 [email protected]   (  619) [001] .... 82312.999885: binder_transaction: transaction=1568224 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
19782 [email protected]   (  619) [001] .... 82312.999892: binder_transaction_alloc_buf: transaction=1568224 data_size=12 offsets_size=0
19783 [email protected]   (  619) [001] d..2 82312.999909: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
19784 [email protected]   (  619) [001] dn.3 82312.999945: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
19785 [email protected]   (  619) [001] d..2 82312.999963: sched_switch: [email protected] prev_pid=619 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
19786<...>-8874 ( 8858) [001] .... 82312.999981: binder_transaction_received: transaction=1568224
19787<...>-8874 ( 8858) [001] d..1 82313.000120: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
19788<...>-8874 ( 8858) [001] d..2 82313.000233: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
19789<...>-8874 ( 8858) [001] d..1 82313.000260: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=002
19790<...>-8874 ( 8858) [001] d..2 82313.000314: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
19791<...>-8874 ( 8858) [001] d..1 82313.000333: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
19792<...>-8874 ( 8858) [001] d..2 82313.000373: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
19793<...>-8874 ( 8858) [001] d..2 82313.000457: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=120
19794 [email protected]   (  619) [001] .... 82313.000466: binder_set_priority: proc=619 thread=619 old=120 => new=97 desired=97
19795 [email protected]   (  619) [001] d..2 82313.000621: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19796          <idle>-0     (-----) [003] .n.1 82313.000636: cpu_idle: state=4294967295 cpu_id=3
19797          <idle>-0     (-----) [001] d..1 82313.000654: cpu_idle: state=2 cpu_id=1
19798          <idle>-0     (-----) [000] .n.1 82313.000666: cpu_idle: state=4294967295 cpu_id=0
19799          <idle>-0     (-----) [003] d..2 82313.000692: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
19800          <idle>-0     (-----) [000] d..2 82313.000702: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
19801          <idle>-0     (-----) [002] .n.1 82313.000783: cpu_idle: state=4294967295 cpu_id=2
19802<...>-8894 ( 8858) [000] ...1 82313.000788: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
19803<...>-8894 ( 8858) [000] ...1 82313.000799: tracing_mark_write: E|8858
19804          <idle>-0     (-----) [002] d..2 82313.000833: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
19805        DispSync-8879  ( 8858) [003] d..2 82313.000845: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19806<...>-8894 ( 8858) [000] .... 82313.000862: binder_transaction: transaction=1568225 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
19807<...>-8894 ( 8858) [000] .... 82313.000869: binder_transaction_alloc_buf: transaction=1568225 data_size=68 offsets_size=0
19808          <idle>-0     (-----) [003] d..1 82313.000878: cpu_idle: state=2 cpu_id=3
19809<...>-8894 ( 8858) [000] ...2 82313.000878: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
19810<...>-8894 ( 8858) [000] d..4 82313.000891: sched_waking: [email protected] pid=619 prio=112 target_cpu=001
19811<...>-8894 ( 8858) [000] d..5 82313.000926: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=000
19812<...>-8894 ( 8858) [000] d..2 82313.000948: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
19813 [email protected]   (  619) [000] .... 82313.000961: binder_transaction_received: transaction=1568225
19814 [email protected]   (  619) [000] ...1 82313.001014: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
19815  appEventThread-8881  ( 8858) [002] d..1 82313.001031: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
19816 [email protected]   (  619) [000] ...1 82313.001054: tracing_mark_write: C|619|SetVsyncState |1
19817  appEventThread-8881  ( 8858) [002] d..2 82313.001060: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
19818 [email protected]   (  619) [000] d..4 82313.001157: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
19819  appEventThread-8881  ( 8858) [002] d..2 82313.001179: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19820          <idle>-0     (-----) [002] d..1 82313.001209: cpu_idle: state=2 cpu_id=2
19821 [email protected]   (  619) [000] d..5 82313.001216: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19822          <idle>-0     (-----) [002] .n.1 82313.001238: cpu_idle: state=4294967295 cpu_id=2
19823          <idle>-0     (-----) [002] d..2 82313.001256: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19824 [email protected]   (  619) [000] ...1 82313.001282: tracing_mark_write: E|619
19825 [email protected]   (  619) [000] .... 82313.001299: binder_transaction: transaction=1568226 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
19826 [email protected]   (  619) [000] .... 82313.001306: binder_transaction_alloc_buf: transaction=1568226 data_size=8 offsets_size=0
19827 [email protected]   (  619) [000] d..2 82313.001312: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
19828 [email protected]   (  619) [000] dn.3 82313.001333: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
19829 [email protected]   (  619) [000] d..2 82313.001347: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
19830<...>-8894 ( 8858) [000] .... 82313.001361: binder_transaction_received: transaction=1568226
19831          <idle>-0     (-----) [003] .n.1 82313.001377: cpu_idle: state=4294967295 cpu_id=3
19832          <idle>-0     (-----) [003] d..2 82313.001406: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
19833<...>-8894 ( 8858) [000] d..2 82313.001432: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
19834 [email protected]   (  619) [000] .... 82313.001440: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
19835        DispSync-8879  ( 8858) [003] d..2 82313.001481: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19836          <idle>-0     (-----) [003] d..1 82313.001504: cpu_idle: state=2 cpu_id=3
19837 [email protected]   (  619) [000] d..2 82313.001527: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19838          <idle>-0     (-----) [000] d..1 82313.001555: cpu_idle: state=2 cpu_id=0
19839 crtc_commit:111-321   (  321) [002] d..2 82313.002063: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19840          <idle>-0     (-----) [002] d..1 82313.002082: cpu_idle: state=2 cpu_id=2
19841          <idle>-0     (-----) [001] d.s3 82313.002510: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19842          <idle>-0     (-----) [001] d.s4 82313.002538: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19843          <idle>-0     (-----) [001] ...1 82313.002561: cpu_idle: state=4294967295 cpu_id=1
19844          <idle>-0     (-----) [001] d..1 82313.002572: cpu_idle: state=2 cpu_id=1
19845          <idle>-0     (-----) [002] .n.1 82313.002869: cpu_idle: state=4294967295 cpu_id=2
19846          <idle>-0     (-----) [002] d..2 82313.002894: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19847 crtc_commit:111-321   (  321) [002] d..2 82313.003274: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19848          <idle>-0     (-----) [002] d..1 82313.003294: cpu_idle: state=2 cpu_id=2
19849          <idle>-0     (-----) [001] d.s3 82313.003627: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19850          <idle>-0     (-----) [001] d.s4 82313.003655: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19851          <idle>-0     (-----) [001] ...1 82313.003676: cpu_idle: state=4294967295 cpu_id=1
19852          <idle>-0     (-----) [001] d..1 82313.003686: cpu_idle: state=2 cpu_id=1
19853          <idle>-0     (-----) [002] .n.1 82313.003996: cpu_idle: state=4294967295 cpu_id=2
19854          <idle>-0     (-----) [002] d..2 82313.004021: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19855 crtc_commit:111-321   (  321) [002] d..1 82313.004232: clk_enable: disp_cc_mdss_vsync_clk_src
19856 crtc_commit:111-321   (  321) [002] d..1 82313.004249: clk_enable: disp_cc_mdss_rscc_vsync_clk
19857 crtc_commit:111-321   (  321) [002] d..1 82313.004334: clk_enable: disp_cc_mdss_rscc_ahb_clk
19858 crtc_commit:111-321   (  321) [002] d..2 82313.004448: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19859          <idle>-0     (-----) [002] d..1 82313.004467: cpu_idle: state=0 cpu_id=2
19860          <idle>-0     (-----) [002] d.h2 82313.004527: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19861          <idle>-0     (-----) [002] dnh3 82313.004547: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19862          <idle>-0     (-----) [002] .n.1 82313.004560: cpu_idle: state=4294967295 cpu_id=2
19863          <idle>-0     (-----) [002] d..2 82313.004573: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19864 crtc_commit:111-321   (  321) [002] d..2 82313.004604: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19865          <idle>-0     (-----) [002] d..1 82313.004615: cpu_idle: state=0 cpu_id=2
19866          <idle>-0     (-----) [002] d.h2 82313.004693: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19867          <idle>-0     (-----) [002] dnh3 82313.004705: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19868          <idle>-0     (-----) [002] .n.1 82313.004715: cpu_idle: state=4294967295 cpu_id=2
19869          <idle>-0     (-----) [002] d..2 82313.004727: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19870 crtc_commit:111-321   (  321) [002] d..1 82313.004788: clk_enable: gcc_disp_axi_clk
19871 crtc_commit:111-321   (  321) [002] d..1 82313.004816: clk_enable: disp_cc_mdss_ahb_clk
19872 crtc_commit:111-321   (  321) [002] d..1 82313.004835: clk_enable: disp_cc_mdss_axi_clk
19873 crtc_commit:111-321   (  321) [002] d..1 82313.004872: clk_enable: gcc_disp_gpll0_clk_src
19874 crtc_commit:111-321   (  321) [002] d..1 82313.005388: clk_enable: disp_cc_mdss_mdp_clk_src
19875 crtc_commit:111-321   (  321) [002] d..1 82313.005440: clk_enable: disp_cc_mdss_mdp_clk
19876 crtc_commit:111-321   (  321) [002] d.s3 82313.005497: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19877 crtc_commit:111-321   (  321) [002] d.s4 82313.005608: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
19878 crtc_commit:111-321   (  321) [002] d..1 82313.005624: clk_enable: disp_cc_mdss_vsync_clk
19879 crtc_commit:111-321   (  321) [002] d..2 82313.006052: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19880<...>-1054 ( 1054) [002] d..2 82313.006192: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19881          <idle>-0     (-----) [002] d..1 82313.006223: cpu_idle: state=0 cpu_id=2
19882          <idle>-0     (-----) [002] ...1 82313.007568: cpu_idle: state=4294967295 cpu_id=2
19883          <idle>-0     (-----) [002] d..1 82313.007575: cpu_idle: state=2 cpu_id=2
19884          <idle>-0     (-----) [000] d.h7 82313.014883: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19885          <idle>-0     (-----) [000] dnh8 82313.014918: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
19886          <idle>-0     (-----) [000] dnh9 82313.014945: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19887          <idle>-0     (-----) [000] dnha 82313.014974: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19888          <idle>-0     (-----) [000] dnh7 82313.014993: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
19889          <idle>-0     (-----) [000] dnh8 82313.015054: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19890          <idle>-0     (-----) [000] dnh3 82313.015171: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
19891          <idle>-0     (-----) [000] dnh4 82313.015199: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
19892          <idle>-0     (-----) [000] .n.1 82313.015211: cpu_idle: state=4294967295 cpu_id=0
19893          <idle>-0     (-----) [000] d..2 82313.015235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
19894     kworker/0:1-25262 (25262) [000] d..2 82313.015281: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19895          <idle>-0     (-----) [002] .n.1 82313.015284: cpu_idle: state=4294967295 cpu_id=2
19896          <idle>-0     (-----) [002] d..2 82313.015320: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19897 crtc_commit:111-321   (  321) [002] d..1 82313.015405: clk_disable: disp_cc_mdss_vsync_clk
19898 SDM_EventThread-644   (  619) [000] ...1 82313.015419: tracing_mark_write: B|619|HWCCallbacks::Vsync::
19899 crtc_commit:111-321   (  321) [002] d..1 82313.015437: clk_disable: disp_cc_mdss_mdp_clk
19900 SDM_EventThread-644   (  619) [000] ...1 82313.015447: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
19901 crtc_commit:111-321   (  321) [002] d..1 82313.015451: clk_disable: disp_cc_mdss_mdp_clk_src
19902 SDM_EventThread-644   (  619) [000] ...1 82313.015454: tracing_mark_write: E|619
19903          <idle>-0     (-----) [003] dnh2 82313.015489: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
19904 crtc_commit:111-321   (  321) [002] d..1 82313.015490: clk_disable: gcc_disp_gpll0_clk_src
19905 SDM_EventThread-644   (  619) [000] .... 82313.015524: binder_transaction: transaction=1568227 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
19906 SDM_EventThread-644   (  619) [000] .... 82313.015532: binder_transaction_alloc_buf: transaction=1568227 data_size=76 offsets_size=0
19907          <idle>-0     (-----) [003] dnh3 82313.015536: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
19908 SDM_EventThread-644   (  619) [000] d..4 82313.015550: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
19909          <idle>-0     (-----) [003] .n.1 82313.015558: cpu_idle: state=4294967295 cpu_id=3
19910          <idle>-0     (-----) [003] d..2 82313.015584: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
19911 SDM_EventThread-644   (  619) [000] d..5 82313.015592: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
19912 SDM_EventThread-644   (  619) [000] ...1 82313.015641: tracing_mark_write: E|619
19913         sugov:0-576   (  576) [003] .... 82313.015693: clk_set_rate: pwrcl_clk 748800000
19914 SDM_EventThread-644   (  619) [000] d..2 82313.015727: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19915         sugov:0-576   (  576) [003] .... 82313.015730: clk_set_rate: cpu3_pwrcl_clk 652800000
19916          <idle>-0     (-----) [000] d..2 82313.015736: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19917         sugov:0-576   (  576) [003] .... 82313.015748: clk_set_rate: cpu2_pwrcl_clk 652800000
19918          <idle>-0     (-----) [000] dn.3 82313.015750: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
19919         sugov:0-576   (  576) [003] .... 82313.015759: clk_set_rate: cpu1_pwrcl_clk 652800000
19920          <idle>-0     (-----) [000] d..2 82313.015764: 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
19921         sugov:0-576   (  576) [003] .... 82313.015770: clk_set_rate: cpu0_pwrcl_clk 748800000
19922     ksoftirqd/0-3     (    3) [000] d.s2 82313.015779: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
19923         sugov:0-576   (  576) [003] .... 82313.015787: cpu_frequency: state=748800 cpu_id=0
19924     ksoftirqd/0-3     (    3) [000] d.s3 82313.015830: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
19925          <idle>-0     (-----) [001] .n.1 82313.015833: cpu_idle: state=4294967295 cpu_id=1
19926     ksoftirqd/0-3     (    3) [000] d..2 82313.015848: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
19927          <idle>-0     (-----) [001] d..2 82313.015860: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
19928         sugov:0-576   (  576) [003] .... 82313.015863: cpu_frequency: state=748800 cpu_id=1
19929         sugov:0-576   (  576) [003] .... 82313.015869: cpu_frequency: state=748800 cpu_id=2
19930         sugov:0-576   (  576) [003] .... 82313.015874: cpu_frequency: state=748800 cpu_id=3
19931         sugov:0-576   (  576) [003] d..2 82313.015927: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19932        DispSync-8879  ( 8858) [001] d..1 82313.015936: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
19933          <idle>-0     (-----) [003] d..1 82313.015947: cpu_idle: state=2 cpu_id=3
19934        DispSync-8879  ( 8858) [001] d..2 82313.015975: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
19935        DispSync-8879  ( 8858) [001] d..2 82313.016019: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
19936<...>-8890 ( 8858) [001] .... 82313.016037: binder_transaction_received: transaction=1568227
19937 crtc_commit:111-321   (  321) [002] d..1 82313.016040: clk_disable: disp_cc_mdss_axi_clk
19938 crtc_commit:111-321   (  321) [002] d..1 82313.016056: clk_disable: disp_cc_mdss_ahb_clk
19939 crtc_commit:111-321   (  321) [002] d..1 82313.016068: clk_disable: gcc_disp_axi_clk
19940<...>-8890 ( 8858) [001] ...1 82313.016153: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
19941<...>-1054 ( 1054) [000] d..2 82313.016157: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19942          <idle>-0     (-----) [000] d..1 82313.016176: cpu_idle: state=2 cpu_id=0
19943<...>-8890 ( 8858) [001] d..1 82313.016188: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
19944 crtc_commit:111-321   (  321) [002] d..2 82313.016200: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19945<...>-8890 ( 8858) [001] d..2 82313.016221: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
19946          <idle>-0     (-----) [002] d..2 82313.016233: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
19947<...>-8890 ( 8858) [001] ...1 82313.016238: tracing_mark_write: E|8858
19948        DispSync-8879  ( 8858) [002] d.h1 82313.016266: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19949        DispSync-8879  ( 8858) [002] d.h2 82313.016300: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19950<...>-8890 ( 8858) [001] d..2 82313.016322: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
19951        DispSync-8879  ( 8858) [002] d..2 82313.016339: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
19952          <idle>-0     (-----) [001] d..1 82313.016342: cpu_idle: state=0 cpu_id=1
19953          <idle>-0     (-----) [002] d..1 82313.016361: cpu_idle: state=0 cpu_id=2
19954          <idle>-0     (-----) [003] .n.1 82313.016367: cpu_idle: state=4294967295 cpu_id=3
19955          <idle>-0     (-----) [003] d..2 82313.016392: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
19956  appEventThread-8881  ( 8858) [003] d..3 82313.016561: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
19957          <idle>-0     (-----) [000] .n.1 82313.016613: cpu_idle: state=4294967295 cpu_id=0
19958          <idle>-0     (-----) [000] d..2 82313.016639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19959  appEventThread-8881  ( 8858) [003] d..2 82313.016653: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
19960 crtc_commit:111-321   (  321) [000] d..1 82313.016664: clk_disable: disp_cc_mdss_rscc_ahb_clk
19961          <idle>-0     (-----) [003] d..1 82313.016673: cpu_idle: state=2 cpu_id=3
19962 crtc_commit:111-321   (  321) [000] d..1 82313.016685: clk_disable: disp_cc_mdss_rscc_vsync_clk
19963 crtc_commit:111-321   (  321) [000] d..1 82313.016699: clk_disable: disp_cc_mdss_vsync_clk_src
19964 crtc_commit:111-321   (  321) [000] d..2 82313.016914: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19965          <idle>-0     (-----) [000] d..1 82313.016935: cpu_idle: state=2 cpu_id=0
19966          <idle>-0     (-----) [001] d.s3 82313.016949: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19967          <idle>-0     (-----) [001] d.s4 82313.016971: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19968          <idle>-0     (-----) [001] ...1 82313.016984: cpu_idle: state=4294967295 cpu_id=1
19969          <idle>-0     (-----) [001] d..1 82313.016991: cpu_idle: state=0 cpu_id=1
19970          <idle>-0     (-----) [000] .n.1 82313.017359: cpu_idle: state=4294967295 cpu_id=0
19971          <idle>-0     (-----) [000] d..2 82313.017383: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19972 crtc_commit:111-321   (  321) [000] d..2 82313.017621: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
19973          <idle>-0     (-----) [000] d..1 82313.017649: cpu_idle: state=0 cpu_id=0
19974          <idle>-0     (-----) [001] d.H2 82313.017655: sched_waking: comm=CCodecWatchdog pid=25284 prio=120 target_cpu=001
19975          <idle>-0     (-----) [004] dnh2 82313.017687: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
19976          <idle>-0     (-----) [004] .n.1 82313.017696: cpu_idle: state=4294967295 cpu_id=4
19977          <idle>-0     (-----) [001] d.H3 82313.017704: sched_wakeup: comm=CCodecWatchdog pid=25284 prio=120 target_cpu=000
19978          <idle>-0     (-----) [004] d..2 82313.017710: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
19979          <idle>-0     (-----) [000] .n.1 82313.017715: cpu_idle: state=4294967295 cpu_id=0
19980          <idle>-0     (-----) [000] d..2 82313.017734: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25284 next_prio=120
19981          <idle>-0     (-----) [001] d.s3 82313.017758: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
19982          <idle>-0     (-----) [002] ...1 82313.017772: cpu_idle: state=4294967295 cpu_id=2
19983          <idle>-0     (-----) [002] d..1 82313.017778: cpu_idle: state=2 cpu_id=2
19984          <idle>-0     (-----) [001] d.s4 82313.017786: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19985          <idle>-0     (-----) [001] ...1 82313.017799: cpu_idle: state=4294967295 cpu_id=1
19986          <idle>-0     (-----) [002] .n.1 82313.017804: cpu_idle: state=4294967295 cpu_id=2
19987          <idle>-0     (-----) [001] d..1 82313.017811: cpu_idle: state=0 cpu_id=1
19988          <idle>-0     (-----) [002] d..2 82313.017818: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
19989 crtc_commit:111-321   (  321) [002] d..3 82313.017884: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19990 crtc_commit:111-321   (  321) [002] d..4 82313.017921: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
19991  CCodecWatchdog-25284 (  900) [000] d..2 82313.017999: sched_switch: prev_comm=CCodecWatchdog prev_pid=25284 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
19992 SDM_EventThread-644   (  619) [000] d..2 82313.018123: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
19993          <idle>-0     (-----) [000] d..1 82313.018143: cpu_idle: state=0 cpu_id=0
19994 crtc_commit:111-321   (  321) [002] d..2 82313.018160: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
19995          <idle>-0     (-----) [002] d..1 82313.018181: cpu_idle: state=0 cpu_id=2
19996          <idle>-0     (-----) [001] d.s3 82313.018346: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19997          <idle>-0     (-----) [001] d.s4 82313.018365: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
19998          <idle>-0     (-----) [002] .n.1 82313.018373: cpu_idle: state=4294967295 cpu_id=2
19999          <idle>-0     (-----) [001] ...1 82313.018379: cpu_idle: state=4294967295 cpu_id=1
20000          <idle>-0     (-----) [001] d..1 82313.018385: cpu_idle: state=0 cpu_id=1
20001          <idle>-0     (-----) [002] d..2 82313.018386: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20002 s.nexuslauncher-10023 (10023) [004] d..2 82313.018405: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
20003          <idle>-0     (-----) [004] d..1 82313.018419: cpu_idle: state=2 cpu_id=4
20004 crtc_commit:111-321   (  321) [002] d..2 82313.018641: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20005          <idle>-0     (-----) [002] d..1 82313.018660: cpu_idle: state=0 cpu_id=2
20006          <idle>-0     (-----) [001] d.s3 82313.018661: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20007          <idle>-0     (-----) [001] d.s4 82313.018680: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20008          <idle>-0     (-----) [002] .n.1 82313.018688: cpu_idle: state=4294967295 cpu_id=2
20009          <idle>-0     (-----) [001] ...1 82313.018691: cpu_idle: state=4294967295 cpu_id=1
20010          <idle>-0     (-----) [001] d..1 82313.018699: cpu_idle: state=0 cpu_id=1
20011          <idle>-0     (-----) [002] d..2 82313.018702: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20012 crtc_commit:111-321   (  321) [002] d..1 82313.018735: clk_enable: disp_cc_mdss_vsync_clk_src
20013 crtc_commit:111-321   (  321) [002] d..1 82313.018737: clk_enable: disp_cc_mdss_rscc_vsync_clk
20014 crtc_commit:111-321   (  321) [002] d..1 82313.018760: clk_enable: disp_cc_mdss_rscc_ahb_clk
20015 crtc_commit:111-321   (  321) [002] d..2 82313.018836: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20016          <idle>-0     (-----) [002] d..1 82313.018848: cpu_idle: state=0 cpu_id=2
20017          <idle>-0     (-----) [002] d.h2 82313.018926: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20018          <idle>-0     (-----) [002] dnh3 82313.018944: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20019          <idle>-0     (-----) [002] .n.1 82313.018955: cpu_idle: state=4294967295 cpu_id=2
20020          <idle>-0     (-----) [002] d..2 82313.018968: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20021 crtc_commit:111-321   (  321) [002] d..2 82313.018997: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20022          <idle>-0     (-----) [002] d..1 82313.019007: cpu_idle: state=0 cpu_id=2
20023          <idle>-0     (-----) [002] d.h2 82313.019091: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20024          <idle>-0     (-----) [002] dnh3 82313.019104: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20025          <idle>-0     (-----) [002] .n.1 82313.019114: cpu_idle: state=4294967295 cpu_id=2
20026          <idle>-0     (-----) [002] d..2 82313.019124: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20027 crtc_commit:111-321   (  321) [002] d..1 82313.019162: clk_enable: gcc_disp_axi_clk
20028 crtc_commit:111-321   (  321) [002] d..1 82313.019178: clk_enable: disp_cc_mdss_ahb_clk
20029 crtc_commit:111-321   (  321) [002] d..1 82313.019190: clk_enable: disp_cc_mdss_axi_clk
20030 crtc_commit:111-321   (  321) [002] d..1 82313.019217: clk_enable: gcc_disp_gpll0_clk_src
20031 crtc_commit:111-321   (  321) [002] d..1 82313.019727: clk_enable: disp_cc_mdss_mdp_clk_src
20032 crtc_commit:111-321   (  321) [002] d..1 82313.019769: clk_enable: disp_cc_mdss_mdp_clk
20033 crtc_commit:111-321   (  321) [002] d..1 82313.019783: clk_enable: disp_cc_mdss_vsync_clk
20034 crtc_commit:111-321   (  321) [002] d..2 82313.020022: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20035          <idle>-0     (-----) [002] d..1 82313.020041: cpu_idle: state=0 cpu_id=2
20036          <idle>-0     (-----) [001] ...1 82313.020183: cpu_idle: state=4294967295 cpu_id=1
20037          <idle>-0     (-----) [001] d..1 82313.020189: cpu_idle: state=2 cpu_id=1
20038          <idle>-0     (-----) [002] ...1 82313.021163: cpu_idle: state=4294967295 cpu_id=2
20039          <idle>-0     (-----) [002] d..1 82313.021168: cpu_idle: state=2 cpu_id=2
20040          <idle>-0     (-----) [000] d..2 82313.024162: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20041          <idle>-0     (-----) [000] dn.3 82313.024176: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20042          <idle>-0     (-----) [000] .n.1 82313.024182: cpu_idle: state=4294967295 cpu_id=0
20043          <idle>-0     (-----) [000] d..2 82313.024199: 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
20044     ksoftirqd/0-3     (    3) [000] d..2 82313.024239: 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
20045          <idle>-0     (-----) [000] d..1 82313.024253: cpu_idle: state=2 cpu_id=0
20046          <idle>-0     (-----) [000] d.h7 82313.031288: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20047          <idle>-0     (-----) [000] dnh8 82313.031310: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20048          <idle>-0     (-----) [000] dnh9 82313.031320: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20049          <idle>-0     (-----) [000] dnha 82313.031344: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20050          <idle>-0     (-----) [000] dnh7 82313.031351: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20051          <idle>-0     (-----) [000] dnh8 82313.031367: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20052          <idle>-0     (-----) [000] .n.1 82313.031387: cpu_idle: state=4294967295 cpu_id=0
20053          <idle>-0     (-----) [000] d..2 82313.031408: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
20054     kworker/0:1-25262 (25262) [000] d..2 82313.031429: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20055 SDM_EventThread-644   (  619) [000] ...1 82313.031474: tracing_mark_write: B|619|HWCCallbacks::Vsync::
20056 SDM_EventThread-644   (  619) [000] ...1 82313.031485: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
20057 SDM_EventThread-644   (  619) [000] ...1 82313.031491: tracing_mark_write: E|619
20058 SDM_EventThread-644   (  619) [000] .... 82313.031520: binder_transaction: transaction=1568228 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
20059 SDM_EventThread-644   (  619) [000] .... 82313.031526: binder_transaction_alloc_buf: transaction=1568228 data_size=76 offsets_size=0
20060 SDM_EventThread-644   (  619) [000] d..4 82313.031533: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
20061 SDM_EventThread-644   (  619) [000] d..5 82313.031557: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
20062 SDM_EventThread-644   (  619) [000] ...1 82313.031588: tracing_mark_write: E|619
20063          <idle>-0     (-----) [002] .n.1 82313.031644: cpu_idle: state=4294967295 cpu_id=2
20064 SDM_EventThread-644   (  619) [000] d..2 82313.031653: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20065          <idle>-0     (-----) [000] d..2 82313.031661: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20066          <idle>-0     (-----) [000] dn.3 82313.031672: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20067          <idle>-0     (-----) [002] d..2 82313.031674: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20068          <idle>-0     (-----) [000] d..2 82313.031685: 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
20069     ksoftirqd/0-3     (    3) [000] d.s2 82313.031695: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20070     ksoftirqd/0-3     (    3) [000] d.s3 82313.031714: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20071 crtc_commit:111-321   (  321) [002] d..1 82313.031719: clk_disable: disp_cc_mdss_vsync_clk
20072     ksoftirqd/0-3     (    3) [000] d..2 82313.031732: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20073 crtc_commit:111-321   (  321) [002] d..1 82313.031738: clk_disable: disp_cc_mdss_mdp_clk
20074 crtc_commit:111-321   (  321) [002] d..1 82313.031751: clk_disable: disp_cc_mdss_mdp_clk_src
20075 crtc_commit:111-321   (  321) [002] d..1 82313.031787: clk_disable: gcc_disp_gpll0_clk_src
20076          <idle>-0     (-----) [001] .n.1 82313.031862: cpu_idle: state=4294967295 cpu_id=1
20077          <idle>-0     (-----) [001] d..2 82313.031915: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
20078<...>-8890 ( 8858) [001] .... 82313.031927: binder_transaction_received: transaction=1568228
20079<...>-8890 ( 8858) [001] ...1 82313.031972: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
20080<...>-8890 ( 8858) [001] ...1 82313.031991: tracing_mark_write: E|8858
20081<...>-8890 ( 8858) [001] d..2 82313.032074: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20082          <idle>-0     (-----) [001] d..1 82313.032099: cpu_idle: state=0 cpu_id=1
20083 crtc_commit:111-321   (  321) [002] d..1 82313.032395: clk_disable: disp_cc_mdss_axi_clk
20084 crtc_commit:111-321   (  321) [002] d..1 82313.032413: clk_disable: disp_cc_mdss_ahb_clk
20085 crtc_commit:111-321   (  321) [002] d..1 82313.032427: clk_disable: gcc_disp_axi_clk
20086<...>-1054 ( 1054) [000] d..2 82313.032529: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20087 crtc_commit:111-321   (  321) [002] d..2 82313.032533: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20088          <idle>-0     (-----) [002] d..1 82313.032552: cpu_idle: state=0 cpu_id=2
20089          <idle>-0     (-----) [000] d..1 82313.032556: cpu_idle: state=0 cpu_id=0
20090          <idle>-0     (-----) [002] d.h2 82313.032614: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20091          <idle>-0     (-----) [002] dnh3 82313.032633: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20092          <idle>-0     (-----) [002] .n.1 82313.032645: cpu_idle: state=4294967295 cpu_id=2
20093          <idle>-0     (-----) [002] d..2 82313.032660: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20094 crtc_commit:111-321   (  321) [002] d..1 82313.032679: clk_disable: disp_cc_mdss_rscc_ahb_clk
20095 crtc_commit:111-321   (  321) [002] d..1 82313.032695: clk_disable: disp_cc_mdss_rscc_vsync_clk
20096 crtc_commit:111-321   (  321) [002] d..1 82313.032709: clk_disable: disp_cc_mdss_vsync_clk_src
20097 crtc_commit:111-321   (  321) [002] d..2 82313.032911: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20098          <idle>-0     (-----) [002] d..1 82313.032927: cpu_idle: state=0 cpu_id=2
20099          <idle>-0     (-----) [001] d.s3 82313.032949: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20100          <idle>-0     (-----) [001] d.s4 82313.032975: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20101          <idle>-0     (-----) [002] .n.1 82313.032982: cpu_idle: state=4294967295 cpu_id=2
20102          <idle>-0     (-----) [001] ...1 82313.032991: cpu_idle: state=4294967295 cpu_id=1
20103          <idle>-0     (-----) [002] d..2 82313.032995: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20104          <idle>-0     (-----) [001] d..1 82313.032999: cpu_idle: state=0 cpu_id=1
20105 crtc_commit:111-321   (  321) [002] d..2 82313.033213: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20106          <idle>-0     (-----) [002] d..1 82313.033227: cpu_idle: state=0 cpu_id=2
20107          <idle>-0     (-----) [001] d.s3 82313.033254: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20108          <idle>-0     (-----) [001] d.s4 82313.033275: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20109          <idle>-0     (-----) [002] .n.1 82313.033279: cpu_idle: state=4294967295 cpu_id=2
20110          <idle>-0     (-----) [001] ...1 82313.033285: cpu_idle: state=4294967295 cpu_id=1
20111          <idle>-0     (-----) [002] d..2 82313.033291: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20112          <idle>-0     (-----) [001] d..1 82313.033295: cpu_idle: state=0 cpu_id=1
20113 crtc_commit:111-321   (  321) [002] d..3 82313.033316: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20114 crtc_commit:111-321   (  321) [002] d..4 82313.033346: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20115          <idle>-0     (-----) [000] .n.1 82313.033355: cpu_idle: state=4294967295 cpu_id=0
20116 crtc_commit:111-321   (  321) [002] d.h1 82313.033361: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
20117          <idle>-0     (-----) [000] d..2 82313.033372: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20118 crtc_commit:111-321   (  321) [002] d.h2 82313.033394: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
20119          <idle>-0     (-----) [001] .n.1 82313.033402: cpu_idle: state=4294967295 cpu_id=1
20120          <idle>-0     (-----) [001] d..2 82313.033416: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
20121 SDM_EventThread-644   (  619) [000] d..2 82313.033435: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20122        DispSync-8879  ( 8858) [001] d..1 82313.033439: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
20123          <idle>-0     (-----) [000] d..1 82313.033451: cpu_idle: state=0 cpu_id=0
20124        DispSync-8879  ( 8858) [001] d..2 82313.033460: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
20125        DispSync-8879  ( 8858) [001] d..2 82313.033505: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20126          <idle>-0     (-----) [001] d..1 82313.033524: cpu_idle: state=0 cpu_id=1
20127 crtc_commit:111-321   (  321) [002] d..2 82313.033662: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20128          <idle>-0     (-----) [002] d..1 82313.033684: cpu_idle: state=0 cpu_id=2
20129          <idle>-0     (-----) [003] .n.1 82313.033778: cpu_idle: state=4294967295 cpu_id=3
20130          <idle>-0     (-----) [003] d..2 82313.033805: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
20131          <idle>-0     (-----) [001] d.s3 82313.033855: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20132  appEventThread-8881  ( 8858) [003] d..1 82313.033858: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
20133          <idle>-0     (-----) [001] d.s4 82313.033875: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20134          <idle>-0     (-----) [002] .n.1 82313.033884: cpu_idle: state=4294967295 cpu_id=2
20135          <idle>-0     (-----) [001] ...1 82313.033893: cpu_idle: state=4294967295 cpu_id=1
20136  appEventThread-8881  ( 8858) [003] d..2 82313.033896: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
20137          <idle>-0     (-----) [002] d..2 82313.033898: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20138          <idle>-0     (-----) [001] d..1 82313.033899: cpu_idle: state=0 cpu_id=1
20139          <idle>-0     (-----) [000] .n.1 82313.033903: cpu_idle: state=4294967295 cpu_id=0
20140          <idle>-0     (-----) [000] d..2 82313.033915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
20141  appEventThread-8881  ( 8858) [003] d..2 82313.033948: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20142          <idle>-0     (-----) [003] d..1 82313.033973: cpu_idle: state=0 cpu_id=3
20143        DispSync-8879  ( 8858) [000] d..2 82313.033973: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20144          <idle>-0     (-----) [000] d..1 82313.033990: cpu_idle: state=0 cpu_id=0
20145 crtc_commit:111-321   (  321) [002] d..2 82313.034093: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20146          <idle>-0     (-----) [002] d..1 82313.034112: cpu_idle: state=0 cpu_id=2
20147          <idle>-0     (-----) [001] d.s3 82313.034121: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20148          <idle>-0     (-----) [001] d.s4 82313.034141: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20149          <idle>-0     (-----) [002] .n.1 82313.034150: cpu_idle: state=4294967295 cpu_id=2
20150          <idle>-0     (-----) [001] ...1 82313.034155: cpu_idle: state=4294967295 cpu_id=1
20151          <idle>-0     (-----) [001] d..1 82313.034162: cpu_idle: state=0 cpu_id=1
20152          <idle>-0     (-----) [002] d..2 82313.034163: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20153 crtc_commit:111-321   (  321) [002] d..1 82313.034193: clk_enable: disp_cc_mdss_vsync_clk_src
20154 crtc_commit:111-321   (  321) [002] d..1 82313.034195: clk_enable: disp_cc_mdss_rscc_vsync_clk
20155 crtc_commit:111-321   (  321) [002] d..1 82313.034217: clk_enable: disp_cc_mdss_rscc_ahb_clk
20156 crtc_commit:111-321   (  321) [002] d..2 82313.034293: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20157          <idle>-0     (-----) [002] d..1 82313.034305: cpu_idle: state=0 cpu_id=2
20158          <idle>-0     (-----) [002] d.h2 82313.034386: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20159          <idle>-0     (-----) [002] dnh3 82313.034401: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20160          <idle>-0     (-----) [002] .n.1 82313.034412: cpu_idle: state=4294967295 cpu_id=2
20161          <idle>-0     (-----) [002] d..2 82313.034424: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20162 crtc_commit:111-321   (  321) [002] d..2 82313.034453: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20163          <idle>-0     (-----) [002] d..1 82313.034463: cpu_idle: state=0 cpu_id=2
20164          <idle>-0     (-----) [002] d.h2 82313.034548: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20165          <idle>-0     (-----) [002] dnh3 82313.034560: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20166          <idle>-0     (-----) [002] .n.1 82313.034570: cpu_idle: state=4294967295 cpu_id=2
20167          <idle>-0     (-----) [002] d..2 82313.034580: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20168 crtc_commit:111-321   (  321) [002] d..1 82313.034619: clk_enable: gcc_disp_axi_clk
20169 crtc_commit:111-321   (  321) [002] d..1 82313.034633: clk_enable: disp_cc_mdss_ahb_clk
20170 crtc_commit:111-321   (  321) [002] d..1 82313.034647: clk_enable: disp_cc_mdss_axi_clk
20171 crtc_commit:111-321   (  321) [002] d..1 82313.034673: clk_enable: gcc_disp_gpll0_clk_src
20172 crtc_commit:111-321   (  321) [002] d..1 82313.035182: clk_enable: disp_cc_mdss_mdp_clk_src
20173 crtc_commit:111-321   (  321) [002] d..1 82313.035224: clk_enable: disp_cc_mdss_mdp_clk
20174 crtc_commit:111-321   (  321) [002] d..1 82313.035281: clk_enable: disp_cc_mdss_vsync_clk
20175          <idle>-0     (-----) [000] ...1 82313.035439: cpu_idle: state=4294967295 cpu_id=0
20176          <idle>-0     (-----) [000] d..1 82313.035445: cpu_idle: state=2 cpu_id=0
20177          <idle>-0     (-----) [001] ...1 82313.035485: cpu_idle: state=4294967295 cpu_id=1
20178          <idle>-0     (-----) [001] d..1 82313.035491: cpu_idle: state=2 cpu_id=1
20179 crtc_commit:111-321   (  321) [002] d..2 82313.035531: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20180          <idle>-0     (-----) [002] d..1 82313.035551: cpu_idle: state=0 cpu_id=2
20181          <idle>-0     (-----) [002] ...1 82313.036672: cpu_idle: state=4294967295 cpu_id=2
20182          <idle>-0     (-----) [002] d..1 82313.036678: cpu_idle: state=2 cpu_id=2
20183          <idle>-0     (-----) [003] d..2 82313.039990: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
20184          <idle>-0     (-----) [003] dn.3 82313.040017: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
20185          <idle>-0     (-----) [003] .n.1 82313.040024: cpu_idle: state=4294967295 cpu_id=3
20186          <idle>-0     (-----) [003] d..2 82313.040041: 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
20187     ksoftirqd/3-34    (   34) [003] d..2 82313.040099: 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
20188          <idle>-0     (-----) [003] d..1 82313.040112: cpu_idle: state=2 cpu_id=3
20189          <idle>-0     (-----) [000] d.h7 82313.051746: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20190          <idle>-0     (-----) [000] dnh8 82313.051949: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20191          <idle>-0     (-----) [000] dnh9 82313.052023: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20192          <idle>-0     (-----) [000] dnha 82313.052161: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20193          <idle>-0     (-----) [000] dnh7 82313.052184: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20194          <idle>-0     (-----) [000] dnh8 82313.052264: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20195          <idle>-0     (-----) [002] .n.1 82313.052562: cpu_idle: state=4294967295 cpu_id=2
20196          <idle>-0     (-----) [002] d..2 82313.052708: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20197          <idle>-0     (-----) [000] dnh3 82313.052717: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
20198          <idle>-0     (-----) [000] dnh4 82313.052750: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
20199          <idle>-0     (-----) [000] .n.1 82313.052796: cpu_idle: state=4294967295 cpu_id=0
20200          <idle>-0     (-----) [000] d..2 82313.052852: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
20201 crtc_commit:111-321   (  321) [002] d..1 82313.052895: clk_disable: disp_cc_mdss_vsync_clk
20202     kworker/0:1-25262 (25262) [000] d..2 82313.052937: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20203 crtc_commit:111-321   (  321) [002] d..1 82313.052972: clk_disable: disp_cc_mdss_mdp_clk
20204 crtc_commit:111-321   (  321) [002] d..1 82313.052988: clk_disable: disp_cc_mdss_mdp_clk_src
20205 crtc_commit:111-321   (  321) [002] d..1 82313.053039: clk_disable: gcc_disp_gpll0_clk_src
20206          <idle>-0     (-----) [003] .n.1 82313.053114: cpu_idle: state=4294967295 cpu_id=3
20207          <idle>-0     (-----) [003] d..2 82313.053166: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
20208 SDM_EventThread-644   (  619) [000] ...1 82313.053261: tracing_mark_write: B|619|HWCCallbacks::Vsync::
20209         sugov:0-576   (  576) [003] .... 82313.053286: clk_set_rate: pwrcl_clk 652800000
20210 SDM_EventThread-644   (  619) [000] ...1 82313.053308: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
20211 SDM_EventThread-644   (  619) [000] ...1 82313.053316: tracing_mark_write: E|619
20212         sugov:0-576   (  576) [003] .... 82313.053360: clk_set_rate: cpu3_pwrcl_clk 748800000
20213         sugov:0-576   (  576) [003] .... 82313.053377: clk_set_rate: cpu2_pwrcl_clk 748800000
20214         sugov:0-576   (  576) [003] .... 82313.053387: clk_set_rate: cpu1_pwrcl_clk 748800000
20215         sugov:0-576   (  576) [003] .... 82313.053396: clk_set_rate: cpu0_pwrcl_clk 652800000
20216         sugov:0-576   (  576) [003] .... 82313.053467: cpu_frequency: state=652800 cpu_id=0
20217 SDM_EventThread-644   (  619) [000] .... 82313.053526: binder_transaction: transaction=1568229 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
20218         sugov:0-576   (  576) [003] .... 82313.053555: cpu_frequency: state=652800 cpu_id=1
20219 SDM_EventThread-644   (  619) [000] .... 82313.053560: binder_transaction_alloc_buf: transaction=1568229 data_size=76 offsets_size=0
20220         sugov:0-576   (  576) [003] .... 82313.053562: cpu_frequency: state=652800 cpu_id=2
20221         sugov:0-576   (  576) [003] .... 82313.053567: cpu_frequency: state=652800 cpu_id=3
20222 SDM_EventThread-644   (  619) [000] d..4 82313.053596: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
20223 crtc_commit:111-321   (  321) [002] d..1 82313.053628: clk_disable: disp_cc_mdss_axi_clk
20224 crtc_commit:111-321   (  321) [002] d..1 82313.053650: clk_disable: disp_cc_mdss_ahb_clk
20225 SDM_EventThread-644   (  619) [000] d..5 82313.053654: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
20226 crtc_commit:111-321   (  321) [002] d..1 82313.053668: clk_disable: gcc_disp_axi_clk
20227         sugov:0-576   (  576) [003] d..2 82313.053732: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20228          <idle>-0     (-----) [003] d..2 82313.053757: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
20229 SDM_EventThread-644   (  619) [000] ...1 82313.053779: tracing_mark_write: E|619
20230          <idle>-0     (-----) [003] dn.3 82313.053789: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
20231          <idle>-0     (-----) [003] d..2 82313.053807: 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
20232 crtc_commit:111-321   (  321) [002] d..2 82313.053836: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20233     ksoftirqd/3-34    (   34) [003] d.s2 82313.053868: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20234          <idle>-0     (-----) [002] d..1 82313.053899: cpu_idle: state=0 cpu_id=2
20235 SDM_EventThread-644   (  619) [000] d..2 82313.053935: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20236          <idle>-0     (-----) [000] d..2 82313.053945: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20237          <idle>-0     (-----) [002] d.h2 82313.053951: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20238          <idle>-0     (-----) [002] dnh3 82313.053983: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20239          <idle>-0     (-----) [000] dn.3 82313.053990: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20240     ksoftirqd/3-34    (   34) [003] d.s3 82313.054001: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
20241          <idle>-0     (-----) [001] .n.1 82313.054010: cpu_idle: state=4294967295 cpu_id=1
20242          <idle>-0     (-----) [000] d..2 82313.054011: 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
20243          <idle>-0     (-----) [002] .n.1 82313.054022: cpu_idle: state=4294967295 cpu_id=2
20244          <idle>-0     (-----) [002] d..2 82313.054035: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20245          <idle>-0     (-----) [001] d..2 82313.054065: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
20246 crtc_commit:111-321   (  321) [002] d..1 82313.054074: clk_disable: disp_cc_mdss_rscc_ahb_clk
20247     ksoftirqd/0-3     (    3) [000] d..2 82313.054093: 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
20248 crtc_commit:111-321   (  321) [002] d..1 82313.054097: clk_disable: disp_cc_mdss_rscc_vsync_clk
20249<...>-8890 ( 8858) [001] .... 82313.054102: binder_transaction_received: transaction=1568229
20250     ksoftirqd/3-34    (   34) [003] d..2 82313.054114: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20251 crtc_commit:111-321   (  321) [002] d..1 82313.054114: clk_disable: disp_cc_mdss_vsync_clk_src
20252          <idle>-0     (-----) [000] d..1 82313.054131: cpu_idle: state=2 cpu_id=0
20253<...>-8890 ( 8858) [001] ...1 82313.054368: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
20254<...>-8890 ( 8858) [001] ...1 82313.054435: tracing_mark_write: E|8858
20255<...>-8890 ( 8858) [001] d..2 82313.054615: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20256 crtc_commit:111-321   (  321) [002] d..2 82313.054683: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20257          <idle>-0     (-----) [002] d..1 82313.054705: cpu_idle: state=2 cpu_id=2
20258          <idle>-0     (-----) [001] d.s4 82313.054719: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20259          <idle>-0     (-----) [001] d.s5 82313.054746: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20260          <idle>-0     (-----) [001] d..1 82313.054792: cpu_idle: state=2 cpu_id=1
20261<...>-1054 ( 1054) [003] d..2 82313.054817: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
20262          <idle>-0     (-----) [003] d..1 82313.054842: cpu_idle: state=2 cpu_id=3
20263          <idle>-0     (-----) [002] .n.1 82313.055172: cpu_idle: state=4294967295 cpu_id=2
20264          <idle>-0     (-----) [002] d..2 82313.055205: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20265 crtc_commit:111-321   (  321) [002] d..1 82313.055243: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20266 crtc_commit:111-321   (  321) [002] d..2 82313.055275: sched_blocked_reason: pid=1054 iowait=0 caller=update_request_adhoc+0x384/0x480
20267 crtc_commit:111-321   (  321) [002] d..2 82313.055293: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20268          <idle>-0     (-----) [003] .n.1 82313.055607: cpu_idle: state=4294967295 cpu_id=3
20269          <idle>-0     (-----) [003] d..2 82313.055648: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20270 crtc_commit:111-321   (  321) [002] d..2 82313.055672: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20271          <idle>-0     (-----) [002] d..2 82313.055681: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
20272<...>-1054 ( 1054) [003] d..2 82313.055696: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
20273          <idle>-0     (-----) [002] dn.3 82313.055710: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
20274          <idle>-0     (-----) [003] d..1 82313.055714: cpu_idle: state=2 cpu_id=3
20275          <idle>-0     (-----) [002] d..2 82313.055727: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
20276     ksoftirqd/2-26    (   26) [002] d..2 82313.055782: 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
20277          <idle>-0     (-----) [002] d..1 82313.055804: cpu_idle: state=2 cpu_id=2
20278          <idle>-0     (-----) [001] d.s3 82313.056029: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20279          <idle>-0     (-----) [001] d.s4 82313.056058: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20280          <idle>-0     (-----) [001] ...1 82313.056075: cpu_idle: state=4294967295 cpu_id=1
20281          <idle>-0     (-----) [001] d..1 82313.056085: cpu_idle: state=2 cpu_id=1
20282          <idle>-0     (-----) [002] .n.1 82313.056384: cpu_idle: state=4294967295 cpu_id=2
20283          <idle>-0     (-----) [002] d..2 82313.056411: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20284 crtc_commit:111-321   (  321) [002] d..1 82313.056435: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20285 crtc_commit:111-321   (  321) [002] d..2 82313.056455: sched_blocked_reason: pid=1054 iowait=0 caller=update_request_adhoc+0x384/0x480
20286 crtc_commit:111-321   (  321) [002] d..2 82313.056467: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20287 crtc_commit:111-321   (  321) [002] d..3 82313.056531: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20288 crtc_commit:111-321   (  321) [002] d..4 82313.056581: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
20289          <idle>-0     (-----) [003] .n.1 82313.056797: cpu_idle: state=4294967295 cpu_id=3
20290          <idle>-0     (-----) [003] d..2 82313.056834: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20291 crtc_commit:111-321   (  321) [002] d..2 82313.056843: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20292          <idle>-0     (-----) [002] d..1 82313.056870: cpu_idle: state=2 cpu_id=2
20293 SDM_EventThread-644   (  619) [003] d..2 82313.056975: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20294<...>-1054 ( 1054) [003] d..2 82313.057014: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
20295          <idle>-0     (-----) [003] d..1 82313.057037: cpu_idle: state=2 cpu_id=3
20296          <idle>-0     (-----) [001] d.s3 82313.057356: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20297          <idle>-0     (-----) [001] d.s4 82313.057384: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20298          <idle>-0     (-----) [001] ...1 82313.057401: cpu_idle: state=4294967295 cpu_id=1
20299          <idle>-0     (-----) [001] d..1 82313.057412: cpu_idle: state=2 cpu_id=1
20300          <idle>-0     (-----) [002] .n.1 82313.057716: cpu_idle: state=4294967295 cpu_id=2
20301          <idle>-0     (-----) [002] d..2 82313.057742: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20302 crtc_commit:111-321   (  321) [002] d..1 82313.057758: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20303 crtc_commit:111-321   (  321) [002] d..2 82313.057778: sched_blocked_reason: pid=1054 iowait=0 caller=update_request_adhoc+0x384/0x480
20304 crtc_commit:111-321   (  321) [002] d..2 82313.057797: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20305 crtc_commit:111-321   (  321) [002] d..2 82313.058008: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20306          <idle>-0     (-----) [002] d..1 82313.058039: cpu_idle: state=0 cpu_id=2
20307          <idle>-0     (-----) [003] .n.1 82313.058126: cpu_idle: state=4294967295 cpu_id=3
20308          <idle>-0     (-----) [003] d..2 82313.058166: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20309<...>-1054 ( 1054) [003] d..2 82313.058220: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
20310          <idle>-0     (-----) [003] d..1 82313.058242: cpu_idle: state=2 cpu_id=3
20311          <idle>-0     (-----) [001] d.s3 82313.058368: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20312          <idle>-0     (-----) [001] d.s4 82313.058400: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20313          <idle>-0     (-----) [002] .n.1 82313.058410: cpu_idle: state=4294967295 cpu_id=2
20314          <idle>-0     (-----) [001] ...1 82313.058422: cpu_idle: state=4294967295 cpu_id=1
20315          <idle>-0     (-----) [002] d..2 82313.058424: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20316          <idle>-0     (-----) [001] d..1 82313.058432: cpu_idle: state=2 cpu_id=1
20317 crtc_commit:111-321   (  321) [002] d..1 82313.058618: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20318 crtc_commit:111-321   (  321) [002] d..2 82313.058636: sched_blocked_reason: pid=1054 iowait=0 caller=update_request_adhoc+0x384/0x480
20319 crtc_commit:111-321   (  321) [002] d..2 82313.058647: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20320 crtc_commit:111-321   (  321) [002] d..1 82313.058714: clk_enable: disp_cc_mdss_vsync_clk_src
20321 crtc_commit:111-321   (  321) [002] d..1 82313.058720: clk_enable: disp_cc_mdss_rscc_vsync_clk
20322 crtc_commit:111-321   (  321) [002] d..1 82313.058741: clk_enable: disp_cc_mdss_rscc_ahb_clk
20323 crtc_commit:111-321   (  321) [002] d..2 82313.058836: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20324          <idle>-0     (-----) [002] d..1 82313.058852: cpu_idle: state=0 cpu_id=2
20325          <idle>-0     (-----) [002] d.h2 82313.058909: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20326          <idle>-0     (-----) [002] dnh3 82313.058926: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20327          <idle>-0     (-----) [002] .n.1 82313.058939: cpu_idle: state=4294967295 cpu_id=2
20328          <idle>-0     (-----) [002] d..2 82313.058952: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20329          <idle>-0     (-----) [003] .n.1 82313.058972: cpu_idle: state=4294967295 cpu_id=3
20330 crtc_commit:111-321   (  321) [002] d..2 82313.058986: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20331          <idle>-0     (-----) [002] d..1 82313.058998: cpu_idle: state=0 cpu_id=2
20332          <idle>-0     (-----) [003] d..2 82313.059009: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20333          <idle>-0     (-----) [002] d.h2 82313.059075: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20334          <idle>-0     (-----) [002] dnh3 82313.059089: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20335          <idle>-0     (-----) [002] .n.1 82313.059099: cpu_idle: state=4294967295 cpu_id=2
20336          <idle>-0     (-----) [002] d..2 82313.059111: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20337 crtc_commit:111-321   (  321) [002] d..1 82313.059153: clk_enable: gcc_disp_axi_clk
20338 crtc_commit:111-321   (  321) [002] d..1 82313.059169: clk_enable: disp_cc_mdss_ahb_clk
20339 crtc_commit:111-321   (  321) [002] d..1 82313.059185: clk_enable: disp_cc_mdss_axi_clk
20340 crtc_commit:111-321   (  321) [002] d..1 82313.059211: clk_enable: gcc_disp_gpll0_clk_src
20341<...>-1054 ( 1054) [003] d..2 82313.059245: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
20342          <idle>-0     (-----) [003] d..1 82313.059273: cpu_idle: state=0 cpu_id=3
20343          <idle>-0     (-----) [001] d.s3 82313.059579: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20344          <idle>-0     (-----) [001] d.s4 82313.059604: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
20345          <idle>-0     (-----) [001] d.s4 82313.059619: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20346          <idle>-0     (-----) [003] .n.1 82313.059631: cpu_idle: state=4294967295 cpu_id=3
20347          <idle>-0     (-----) [001] ...1 82313.059639: cpu_idle: state=4294967295 cpu_id=1
20348          <idle>-0     (-----) [003] d..2 82313.059649: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20349          <idle>-0     (-----) [001] d..1 82313.059657: cpu_idle: state=0 cpu_id=1
20350 crtc_commit:111-321   (  321) [002] d..1 82313.059725: clk_enable: disp_cc_mdss_mdp_clk_src
20351 crtc_commit:111-321   (  321) [002] d..1 82313.059765: clk_enable: disp_cc_mdss_mdp_clk
20352<...>-1054 ( 1054) [003] d..2 82313.059766: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20353 crtc_commit:111-321   (  321) [002] d..1 82313.059779: clk_enable: disp_cc_mdss_vsync_clk
20354          <idle>-0     (-----) [003] d..1 82313.059783: cpu_idle: state=0 cpu_id=3
20355 crtc_commit:111-321   (  321) [002] d..2 82313.060143: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20356          <idle>-0     (-----) [002] d..1 82313.060165: cpu_idle: state=0 cpu_id=2
20357          <idle>-0     (-----) [002] ...1 82313.061562: cpu_idle: state=4294967295 cpu_id=2
20358          <idle>-0     (-----) [002] d..1 82313.061568: cpu_idle: state=2 cpu_id=2
20359          <idle>-0     (-----) [003] ...1 82313.061603: cpu_idle: state=4294967295 cpu_id=3
20360          <idle>-0     (-----) [003] d..1 82313.061610: cpu_idle: state=2 cpu_id=3
20361          <idle>-0     (-----) [001] ...1 82313.061757: cpu_idle: state=4294967295 cpu_id=1
20362          <idle>-0     (-----) [001] d..1 82313.061764: cpu_idle: state=2 cpu_id=1
20363          <idle>-0     (-----) [001] ...1 82313.066515: cpu_idle: state=4294967295 cpu_id=1
20364          <idle>-0     (-----) [001] d..1 82313.066524: cpu_idle: state=2 cpu_id=1
20365          <idle>-0     (-----) [000] d.h7 82313.066613: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20366          <idle>-0     (-----) [000] dnh8 82313.066635: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20367          <idle>-0     (-----) [000] dnh9 82313.066649: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20368          <idle>-0     (-----) [000] dnha 82313.066673: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20369          <idle>-0     (-----) [000] dnh7 82313.066680: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
20370          <idle>-0     (-----) [000] dnh8 82313.066726: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20371          <idle>-0     (-----) [000] .n.1 82313.066832: cpu_idle: state=4294967295 cpu_id=0
20372          <idle>-0     (-----) [000] d..2 82313.066856: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
20373     kworker/0:1-25262 (25262) [000] d..2 82313.066879: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20374 SDM_EventThread-644   (  619) [000] ...1 82313.066929: tracing_mark_write: B|619|HWCCallbacks::Vsync::
20375 SDM_EventThread-644   (  619) [000] ...1 82313.066941: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
20376 SDM_EventThread-644   (  619) [000] ...1 82313.066948: tracing_mark_write: E|619
20377          <idle>-0     (-----) [002] .n.1 82313.066976: cpu_idle: state=4294967295 cpu_id=2
20378 SDM_EventThread-644   (  619) [000] .... 82313.066979: binder_transaction: transaction=1568230 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
20379 SDM_EventThread-644   (  619) [000] .... 82313.066987: binder_transaction_alloc_buf: transaction=1568230 data_size=76 offsets_size=0
20380 SDM_EventThread-644   (  619) [000] d..4 82313.066993: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
20381          <idle>-0     (-----) [002] d..2 82313.067008: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20382 SDM_EventThread-644   (  619) [000] d..5 82313.067023: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
20383 crtc_commit:111-321   (  321) [002] d..1 82313.067056: clk_disable: disp_cc_mdss_vsync_clk
20384 SDM_EventThread-644   (  619) [000] ...1 82313.067057: tracing_mark_write: E|619
20385 crtc_commit:111-321   (  321) [002] d..1 82313.067077: clk_disable: disp_cc_mdss_mdp_clk
20386 crtc_commit:111-321   (  321) [002] d..1 82313.067091: clk_disable: disp_cc_mdss_mdp_clk_src
20387 crtc_commit:111-321   (  321) [002] d..1 82313.067127: clk_disable: gcc_disp_gpll0_clk_src
20388 SDM_EventThread-644   (  619) [000] d..2 82313.067131: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20389          <idle>-0     (-----) [000] d..2 82313.067138: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20390          <idle>-0     (-----) [000] dn.3 82313.067151: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20391          <idle>-0     (-----) [000] d..2 82313.067165: 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
20392     ksoftirqd/0-3     (    3) [000] d.s2 82313.067178: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20393     ksoftirqd/0-3     (    3) [000] d.s3 82313.067230: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20394     ksoftirqd/0-3     (    3) [000] d..2 82313.067250: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20395          <idle>-0     (-----) [001] .n.1 82313.067332: cpu_idle: state=4294967295 cpu_id=1
20396          <idle>-0     (-----) [001] d..2 82313.067371: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
20397<...>-8890 ( 8858) [001] .... 82313.067386: binder_transaction_received: transaction=1568230
20398<...>-8890 ( 8858) [001] ...1 82313.067437: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
20399<...>-8890 ( 8858) [001] ...1 82313.067456: tracing_mark_write: E|8858
20400<...>-8890 ( 8858) [001] d..2 82313.067542: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20401          <idle>-0     (-----) [001] d..1 82313.067566: cpu_idle: state=2 cpu_id=1
20402 crtc_commit:111-321   (  321) [002] d..1 82313.067679: clk_disable: disp_cc_mdss_axi_clk
20403 crtc_commit:111-321   (  321) [002] d..1 82313.067695: clk_disable: disp_cc_mdss_ahb_clk
20404 crtc_commit:111-321   (  321) [002] d..1 82313.067709: clk_disable: gcc_disp_axi_clk
20405<...>-1054 ( 1054) [000] d..2 82313.067811: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20406 crtc_commit:111-321   (  321) [002] d..2 82313.067836: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20407          <idle>-0     (-----) [000] d..1 82313.067837: cpu_idle: state=2 cpu_id=0
20408          <idle>-0     (-----) [002] d..1 82313.067858: cpu_idle: state=0 cpu_id=2
20409          <idle>-0     (-----) [002] d.h2 82313.067899: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20410          <idle>-0     (-----) [002] dnh3 82313.067919: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20411          <idle>-0     (-----) [002] .n.1 82313.067930: cpu_idle: state=4294967295 cpu_id=2
20412          <idle>-0     (-----) [002] d..2 82313.067945: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20413 crtc_commit:111-321   (  321) [002] d..1 82313.067964: clk_disable: disp_cc_mdss_rscc_ahb_clk
20414 crtc_commit:111-321   (  321) [002] d..1 82313.067980: clk_disable: disp_cc_mdss_rscc_vsync_clk
20415 crtc_commit:111-321   (  321) [002] d..1 82313.067994: clk_disable: disp_cc_mdss_vsync_clk_src
20416 crtc_commit:111-321   (  321) [002] d..2 82313.068210: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20417          <idle>-0     (-----) [002] d..1 82313.068230: cpu_idle: state=2 cpu_id=2
20418          <idle>-0     (-----) [001] d.s3 82313.068543: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20419          <idle>-0     (-----) [001] d.s4 82313.068572: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20420          <idle>-0     (-----) [001] d..2 82313.068583: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
20421          <idle>-0     (-----) [001] dn.3 82313.068613: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
20422          <idle>-0     (-----) [001] .n.1 82313.068622: cpu_idle: state=4294967295 cpu_id=1
20423          <idle>-0     (-----) [001] d..2 82313.068646: 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
20424     ksoftirqd/1-18    (   18) [001] d..2 82313.068712: 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
20425          <idle>-0     (-----) [001] d..1 82313.068730: cpu_idle: state=2 cpu_id=1
20426          <idle>-0     (-----) [002] .n.1 82313.068903: cpu_idle: state=4294967295 cpu_id=2
20427          <idle>-0     (-----) [002] d..2 82313.068930: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20428 crtc_commit:111-321   (  321) [002] d..2 82313.069186: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20429          <idle>-0     (-----) [002] d..1 82313.069208: cpu_idle: state=2 cpu_id=2
20430          <idle>-0     (-----) [001] d.s3 82313.069545: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20431          <idle>-0     (-----) [001] d.s4 82313.069573: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20432          <idle>-0     (-----) [001] ...1 82313.069590: cpu_idle: state=4294967295 cpu_id=1
20433          <idle>-0     (-----) [001] d..1 82313.069599: cpu_idle: state=2 cpu_id=1
20434          <idle>-0     (-----) [002] .n.1 82313.069904: cpu_idle: state=4294967295 cpu_id=2
20435          <idle>-0     (-----) [002] d..2 82313.069930: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20436 crtc_commit:111-321   (  321) [002] d..3 82313.069956: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20437 crtc_commit:111-321   (  321) [002] d..4 82313.070024: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
20438 crtc_commit:111-321   (  321) [002] d..2 82313.070266: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20439 SDM_EventThread-644   (  619) [002] d..2 82313.070359: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20440          <idle>-0     (-----) [002] d..1 82313.070382: cpu_idle: state=2 cpu_id=2
20441          <idle>-0     (-----) [001] d.s3 82313.070818: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20442          <idle>-0     (-----) [001] d.s4 82313.070846: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20443          <idle>-0     (-----) [001] ...1 82313.070863: cpu_idle: state=4294967295 cpu_id=1
20444          <idle>-0     (-----) [001] d..1 82313.070877: cpu_idle: state=0 cpu_id=1
20445          <idle>-0     (-----) [002] .n.1 82313.071197: cpu_idle: state=4294967295 cpu_id=2
20446          <idle>-0     (-----) [002] d..2 82313.071232: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20447 crtc_commit:111-321   (  321) [002] d..2 82313.071474: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20448          <idle>-0     (-----) [001] d.s3 82313.071490: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20449          <idle>-0     (-----) [002] d..1 82313.071501: cpu_idle: state=0 cpu_id=2
20450          <idle>-0     (-----) [001] d.s4 82313.071509: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20451          <idle>-0     (-----) [002] .n.1 82313.071514: cpu_idle: state=4294967295 cpu_id=2
20452          <idle>-0     (-----) [001] ...1 82313.071525: cpu_idle: state=4294967295 cpu_id=1
20453          <idle>-0     (-----) [002] d..2 82313.071528: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20454          <idle>-0     (-----) [001] d..1 82313.071532: cpu_idle: state=0 cpu_id=1
20455 crtc_commit:111-321   (  321) [002] d..1 82313.071560: clk_enable: disp_cc_mdss_vsync_clk_src
20456 crtc_commit:111-321   (  321) [002] d..1 82313.071566: clk_enable: disp_cc_mdss_rscc_vsync_clk
20457 crtc_commit:111-321   (  321) [002] d..1 82313.071596: clk_enable: disp_cc_mdss_rscc_ahb_clk
20458 crtc_commit:111-321   (  321) [002] d..2 82313.071679: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20459          <idle>-0     (-----) [002] d..1 82313.071693: cpu_idle: state=0 cpu_id=2
20460          <idle>-0     (-----) [002] d.h2 82313.071767: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20461          <idle>-0     (-----) [002] dnh3 82313.071798: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20462          <idle>-0     (-----) [002] dnh3 82313.071907: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
20463          <idle>-0     (-----) [002] dnh4 82313.071926: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
20464          <idle>-0     (-----) [002] .n.1 82313.071934: cpu_idle: state=4294967295 cpu_id=2
20465          <idle>-0     (-----) [002] d..2 82313.071952: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20466 crtc_commit:111-321   (  321) [002] d..1 82313.071990: clk_enable: gcc_disp_axi_clk
20467 crtc_commit:111-321   (  321) [002] d..1 82313.072006: clk_enable: disp_cc_mdss_ahb_clk
20468 crtc_commit:111-321   (  321) [002] d..1 82313.072020: clk_enable: disp_cc_mdss_axi_clk
20469 crtc_commit:111-321   (  321) [002] d..1 82313.072048: clk_enable: gcc_disp_gpll0_clk_src
20470          <idle>-0     (-----) [003] .n.1 82313.072229: cpu_idle: state=4294967295 cpu_id=3
20471          <idle>-0     (-----) [003] d..2 82313.072262: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
20472         sugov:0-576   (  576) [003] .... 82313.072300: clk_set_rate: pwrcl_clk 748800000
20473         sugov:0-576   (  576) [003] .... 82313.072317: clk_set_rate: cpu3_pwrcl_clk 652800000
20474         sugov:0-576   (  576) [003] .... 82313.072330: clk_set_rate: cpu2_pwrcl_clk 652800000
20475         sugov:0-576   (  576) [003] .... 82313.072340: clk_set_rate: cpu1_pwrcl_clk 652800000
20476         sugov:0-576   (  576) [003] .... 82313.072351: clk_set_rate: cpu0_pwrcl_clk 748800000
20477         sugov:0-576   (  576) [003] .... 82313.072365: cpu_frequency: state=748800 cpu_id=0
20478         sugov:0-576   (  576) [003] .... 82313.072385: cpu_frequency: state=748800 cpu_id=1
20479         sugov:0-576   (  576) [003] .... 82313.072390: cpu_frequency: state=748800 cpu_id=2
20480         sugov:0-576   (  576) [003] .... 82313.072396: cpu_frequency: state=748800 cpu_id=3
20481         sugov:0-576   (  576) [003] d..2 82313.072452: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20482          <idle>-0     (-----) [003] d..2 82313.072459: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
20483          <idle>-0     (-----) [003] dn.3 82313.072477: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
20484          <idle>-0     (-----) [003] d..2 82313.072490: 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
20485     ksoftirqd/3-34    (   34) [003] d..2 82313.072526: 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
20486          <idle>-0     (-----) [003] d..1 82313.072544: cpu_idle: state=2 cpu_id=3
20487 crtc_commit:111-321   (  321) [002] d..1 82313.072557: clk_enable: disp_cc_mdss_mdp_clk_src
20488 crtc_commit:111-321   (  321) [002] d..1 82313.072594: clk_enable: disp_cc_mdss_mdp_clk
20489 crtc_commit:111-321   (  321) [002] d..1 82313.072607: clk_enable: disp_cc_mdss_vsync_clk
20490 crtc_commit:111-321   (  321) [002] d..2 82313.072850: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20491          <idle>-0     (-----) [002] d..1 82313.072871: cpu_idle: state=0 cpu_id=2
20492          <idle>-0     (-----) [002] ...1 82313.074331: cpu_idle: state=4294967295 cpu_id=2
20493          <idle>-0     (-----) [002] d..1 82313.074338: cpu_idle: state=2 cpu_id=2
20494          <idle>-0     (-----) [000] d.h7 82313.080576: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20495          <idle>-0     (-----) [000] dnh8 82313.080602: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20496          <idle>-0     (-----) [000] dnh9 82313.080613: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20497          <idle>-0     (-----) [000] dnha 82313.080637: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20498          <idle>-0     (-----) [000] dnh7 82313.080643: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
20499          <idle>-0     (-----) [000] dnh8 82313.080691: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20500          <idle>-0     (-----) [000] .n.1 82313.080713: cpu_idle: state=4294967295 cpu_id=0
20501          <idle>-0     (-----) [000] d..2 82313.080734: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
20502     kworker/0:1-25262 (25262) [000] d..2 82313.080755: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20503 SDM_EventThread-644   (  619) [000] ...1 82313.080799: tracing_mark_write: B|619|HWCCallbacks::Vsync::
20504 SDM_EventThread-644   (  619) [000] ...1 82313.080811: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
20505 SDM_EventThread-644   (  619) [000] ...1 82313.080818: tracing_mark_write: E|619
20506 SDM_EventThread-644   (  619) [000] .... 82313.080846: binder_transaction: transaction=1568231 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
20507 SDM_EventThread-644   (  619) [000] .... 82313.080857: binder_transaction_alloc_buf: transaction=1568231 data_size=76 offsets_size=0
20508 SDM_EventThread-644   (  619) [000] d..4 82313.080864: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
20509 SDM_EventThread-644   (  619) [000] d..5 82313.080892: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
20510          <idle>-0     (-----) [001] .n.1 82313.080897: cpu_idle: state=4294967295 cpu_id=1
20511          <idle>-0     (-----) [001] d..2 82313.080923: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
20512 SDM_EventThread-644   (  619) [000] ...1 82313.080923: tracing_mark_write: E|619
20513<...>-8890 ( 8858) [001] .... 82313.080936: binder_transaction_received: transaction=1568231
20514          <idle>-0     (-----) [002] .n.1 82313.080938: cpu_idle: state=4294967295 cpu_id=2
20515          <idle>-0     (-----) [002] d..2 82313.080967: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20516<...>-8890 ( 8858) [001] ...1 82313.080985: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
20517 SDM_EventThread-644   (  619) [000] d..2 82313.080990: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20518          <idle>-0     (-----) [000] d..2 82313.080998: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20519<...>-8890 ( 8858) [001] ...1 82313.081003: tracing_mark_write: E|8858
20520          <idle>-0     (-----) [000] dn.3 82313.081010: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20521 crtc_commit:111-321   (  321) [002] d..1 82313.081012: clk_disable: disp_cc_mdss_vsync_clk
20522          <idle>-0     (-----) [000] d..2 82313.081022: 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
20523     ksoftirqd/0-3     (    3) [000] d.s2 82313.081034: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20524 crtc_commit:111-321   (  321) [002] d..1 82313.081036: clk_disable: disp_cc_mdss_mdp_clk
20525 crtc_commit:111-321   (  321) [002] d..1 82313.081048: clk_disable: disp_cc_mdss_mdp_clk_src
20526<...>-8890 ( 8858) [001] d..2 82313.081083: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20527 crtc_commit:111-321   (  321) [002] d..1 82313.081085: clk_disable: gcc_disp_gpll0_clk_src
20528          <idle>-0     (-----) [001] d..2 82313.081091: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
20529     ksoftirqd/0-3     (    3) [000] d.s3 82313.081098: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
20530          <idle>-0     (-----) [001] dn.3 82313.081118: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
20531          <idle>-0     (-----) [001] d..2 82313.081137: 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
20532     ksoftirqd/0-3     (    3) [000] d..2 82313.081141: 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
20533     ksoftirqd/1-18    (   18) [001] d..2 82313.081157: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20534          <idle>-0     (-----) [000] d..1 82313.081162: cpu_idle: state=2 cpu_id=0
20535 crtc_commit:111-321   (  321) [002] d..1 82313.081635: clk_disable: disp_cc_mdss_axi_clk
20536 crtc_commit:111-321   (  321) [002] d..1 82313.081651: clk_disable: disp_cc_mdss_ahb_clk
20537 crtc_commit:111-321   (  321) [002] d..1 82313.081670: clk_disable: gcc_disp_axi_clk
20538<...>-1054 ( 1054) [001] d..2 82313.081740: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20539          <idle>-0     (-----) [001] d..1 82313.081762: cpu_idle: state=0 cpu_id=1
20540 crtc_commit:111-321   (  321) [002] d..2 82313.081780: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20541          <idle>-0     (-----) [002] d.h3 82313.081816: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20542          <idle>-0     (-----) [002] dnh4 82313.081833: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20543          <idle>-0     (-----) [002] d..2 82313.081873: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20544 crtc_commit:111-321   (  321) [002] d..1 82313.081893: clk_disable: disp_cc_mdss_rscc_ahb_clk
20545 crtc_commit:111-321   (  321) [002] d..1 82313.081910: clk_disable: disp_cc_mdss_rscc_vsync_clk
20546 crtc_commit:111-321   (  321) [002] d..1 82313.081922: clk_disable: disp_cc_mdss_vsync_clk_src
20547 crtc_commit:111-321   (  321) [002] d..2 82313.082133: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20548          <idle>-0     (-----) [002] d..1 82313.082159: cpu_idle: state=0 cpu_id=2
20549          <idle>-0     (-----) [001] d.s3 82313.082163: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20550          <idle>-0     (-----) [001] d.s4 82313.082187: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20551          <idle>-0     (-----) [002] .n.1 82313.082197: cpu_idle: state=4294967295 cpu_id=2
20552          <idle>-0     (-----) [001] ...1 82313.082204: cpu_idle: state=4294967295 cpu_id=1
20553          <idle>-0     (-----) [002] d..2 82313.082210: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20554          <idle>-0     (-----) [001] d..1 82313.082211: cpu_idle: state=0 cpu_id=1
20555 crtc_commit:111-321   (  321) [002] d..2 82313.082429: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20556          <idle>-0     (-----) [002] d..1 82313.082448: cpu_idle: state=0 cpu_id=2
20557          <idle>-0     (-----) [001] d.s3 82313.082470: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20558          <idle>-0     (-----) [001] d.s4 82313.082487: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20559          <idle>-0     (-----) [002] .n.1 82313.082495: cpu_idle: state=4294967295 cpu_id=2
20560          <idle>-0     (-----) [001] ...1 82313.082499: cpu_idle: state=4294967295 cpu_id=1
20561          <idle>-0     (-----) [001] d..1 82313.082507: cpu_idle: state=0 cpu_id=1
20562          <idle>-0     (-----) [002] d..2 82313.082507: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20563 crtc_commit:111-321   (  321) [002] d..3 82313.082529: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20564 crtc_commit:111-321   (  321) [002] d..4 82313.082554: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20565 crtc_commit:111-321   (  321) [002] d..2 82313.082771: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20566          <idle>-0     (-----) [002] d..1 82313.082790: cpu_idle: state=0 cpu_id=2
20567          <idle>-0     (-----) [000] .n.1 82313.082867: cpu_idle: state=4294967295 cpu_id=0
20568          <idle>-0     (-----) [000] d..2 82313.082898: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20569          <idle>-0     (-----) [001] d.s3 82313.082961: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20570 SDM_EventThread-644   (  619) [000] d..2 82313.082974: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20571          <idle>-0     (-----) [001] d.s4 82313.082978: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20572          <idle>-0     (-----) [002] .n.1 82313.082986: cpu_idle: state=4294967295 cpu_id=2
20573          <idle>-0     (-----) [001] ...1 82313.082991: cpu_idle: state=4294967295 cpu_id=1
20574          <idle>-0     (-----) [000] d..1 82313.082994: cpu_idle: state=2 cpu_id=0
20575          <idle>-0     (-----) [001] d..1 82313.082996: cpu_idle: state=0 cpu_id=1
20576          <idle>-0     (-----) [002] d..2 82313.083001: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20577 crtc_commit:111-321   (  321) [002] d..2 82313.083190: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20578          <idle>-0     (-----) [002] d..1 82313.083207: cpu_idle: state=0 cpu_id=2
20579          <idle>-0     (-----) [001] d.s3 82313.083217: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20580          <idle>-0     (-----) [001] d.s4 82313.083234: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20581          <idle>-0     (-----) [002] .n.1 82313.083243: cpu_idle: state=4294967295 cpu_id=2
20582          <idle>-0     (-----) [001] ...1 82313.083246: cpu_idle: state=4294967295 cpu_id=1
20583          <idle>-0     (-----) [001] d..1 82313.083253: cpu_idle: state=0 cpu_id=1
20584          <idle>-0     (-----) [002] d..2 82313.083255: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20585 crtc_commit:111-321   (  321) [002] d..1 82313.083284: clk_enable: disp_cc_mdss_vsync_clk_src
20586 crtc_commit:111-321   (  321) [002] d..1 82313.083288: clk_enable: disp_cc_mdss_rscc_vsync_clk
20587 crtc_commit:111-321   (  321) [002] d..1 82313.083310: clk_enable: disp_cc_mdss_rscc_ahb_clk
20588 crtc_commit:111-321   (  321) [002] d..2 82313.083385: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20589          <idle>-0     (-----) [002] d..1 82313.083399: cpu_idle: state=0 cpu_id=2
20590          <idle>-0     (-----) [002] d.h2 82313.083478: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20591          <idle>-0     (-----) [002] dnh3 82313.083497: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20592          <idle>-0     (-----) [002] .n.1 82313.083508: cpu_idle: state=4294967295 cpu_id=2
20593          <idle>-0     (-----) [002] d..2 82313.083521: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20594 crtc_commit:111-321   (  321) [002] d..2 82313.083549: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20595          <idle>-0     (-----) [002] d..1 82313.083560: cpu_idle: state=0 cpu_id=2
20596          <idle>-0     (-----) [002] d.h2 82313.083646: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20597          <idle>-0     (-----) [002] dnh3 82313.083658: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20598          <idle>-0     (-----) [002] .n.1 82313.083666: cpu_idle: state=4294967295 cpu_id=2
20599          <idle>-0     (-----) [002] d..2 82313.083678: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20600 crtc_commit:111-321   (  321) [002] d..1 82313.083715: clk_enable: gcc_disp_axi_clk
20601 crtc_commit:111-321   (  321) [002] d..1 82313.083729: clk_enable: disp_cc_mdss_ahb_clk
20602 crtc_commit:111-321   (  321) [002] d..1 82313.083743: clk_enable: disp_cc_mdss_axi_clk
20603 crtc_commit:111-321   (  321) [002] d..1 82313.083769: clk_enable: gcc_disp_gpll0_clk_src
20604 crtc_commit:111-321   (  321) [002] d..1 82313.084278: clk_enable: disp_cc_mdss_mdp_clk_src
20605 crtc_commit:111-321   (  321) [002] d..1 82313.084321: clk_enable: disp_cc_mdss_mdp_clk
20606 crtc_commit:111-321   (  321) [002] d..1 82313.084333: clk_enable: disp_cc_mdss_vsync_clk
20607          <idle>-0     (-----) [001] ...1 82313.084550: cpu_idle: state=4294967295 cpu_id=1
20608          <idle>-0     (-----) [001] d..1 82313.084556: cpu_idle: state=2 cpu_id=1
20609 crtc_commit:111-321   (  321) [002] d..2 82313.084573: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20610          <idle>-0     (-----) [002] d..1 82313.084592: cpu_idle: state=0 cpu_id=2
20611          <idle>-0     (-----) [002] d..2 82313.085717: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
20612          <idle>-0     (-----) [002] dn.3 82313.085736: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
20613          <idle>-0     (-----) [002] .n.1 82313.085742: cpu_idle: state=4294967295 cpu_id=2
20614          <idle>-0     (-----) [002] d..2 82313.085759: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
20615     ksoftirqd/2-26    (   26) [002] d..2 82313.085796: 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
20616          <idle>-0     (-----) [002] d..1 82313.085809: cpu_idle: state=2 cpu_id=2
20617          <idle>-0     (-----) [000] d.h7 82313.101237: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20618          <idle>-0     (-----) [000] dnh8 82313.101456: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20619          <idle>-0     (-----) [000] dnh9 82313.101537: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20620          <idle>-0     (-----) [000] dnha 82313.101681: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20621          <idle>-0     (-----) [000] dnh7 82313.101707: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20622          <idle>-0     (-----) [000] dnh8 82313.101793: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20623          <idle>-0     (-----) [002] .n.1 82313.102079: cpu_idle: state=4294967295 cpu_id=2
20624          <idle>-0     (-----) [002] d..2 82313.102229: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20625          <idle>-0     (-----) [000] dnh3 82313.102242: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
20626          <idle>-0     (-----) [000] dnh4 82313.102277: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
20627          <idle>-0     (-----) [000] .n.1 82313.102325: cpu_idle: state=4294967295 cpu_id=0
20628          <idle>-0     (-----) [000] d..2 82313.102384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
20629 crtc_commit:111-321   (  321) [002] d..1 82313.102412: clk_disable: disp_cc_mdss_vsync_clk
20630     kworker/0:1-25262 (25262) [000] d..2 82313.102475: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20631 crtc_commit:111-321   (  321) [002] d..1 82313.102492: clk_disable: disp_cc_mdss_mdp_clk
20632 crtc_commit:111-321   (  321) [002] d..1 82313.102507: clk_disable: disp_cc_mdss_mdp_clk_src
20633 crtc_commit:111-321   (  321) [002] d..1 82313.102561: clk_disable: gcc_disp_gpll0_clk_src
20634          <idle>-0     (-----) [003] .n.1 82313.102644: cpu_idle: state=4294967295 cpu_id=3
20635          <idle>-0     (-----) [003] d..2 82313.102698: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
20636 SDM_EventThread-644   (  619) [000] ...1 82313.102795: tracing_mark_write: B|619|HWCCallbacks::Vsync::
20637         sugov:0-576   (  576) [003] .... 82313.102827: clk_set_rate: pwrcl_clk 652800000
20638 SDM_EventThread-644   (  619) [000] ...1 82313.102842: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
20639 SDM_EventThread-644   (  619) [000] ...1 82313.102851: tracing_mark_write: E|619
20640         sugov:0-576   (  576) [003] .... 82313.102907: clk_set_rate: cpu3_pwrcl_clk 748800000
20641         sugov:0-576   (  576) [003] .... 82313.102925: clk_set_rate: cpu2_pwrcl_clk 748800000
20642         sugov:0-576   (  576) [003] .... 82313.102934: clk_set_rate: cpu1_pwrcl_clk 748800000
20643         sugov:0-576   (  576) [003] .... 82313.102945: clk_set_rate: cpu0_pwrcl_clk 652800000
20644         sugov:0-576   (  576) [003] .... 82313.103015: cpu_frequency: state=652800 cpu_id=0
20645 SDM_EventThread-644   (  619) [000] .... 82313.103059: binder_transaction: transaction=1568232 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
20646 SDM_EventThread-644   (  619) [000] .... 82313.103091: binder_transaction_alloc_buf: transaction=1568232 data_size=76 offsets_size=0
20647         sugov:0-576   (  576) [003] .... 82313.103104: cpu_frequency: state=652800 cpu_id=1
20648         sugov:0-576   (  576) [003] .... 82313.103110: cpu_frequency: state=652800 cpu_id=2
20649         sugov:0-576   (  576) [003] .... 82313.103116: cpu_frequency: state=652800 cpu_id=3
20650 SDM_EventThread-644   (  619) [000] d..4 82313.103130: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
20651 crtc_commit:111-321   (  321) [002] d..1 82313.103151: clk_disable: disp_cc_mdss_axi_clk
20652 crtc_commit:111-321   (  321) [002] d..1 82313.103172: clk_disable: disp_cc_mdss_ahb_clk
20653 SDM_EventThread-644   (  619) [000] d..5 82313.103188: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
20654 crtc_commit:111-321   (  321) [002] d..1 82313.103191: clk_disable: gcc_disp_axi_clk
20655         sugov:0-576   (  576) [003] d..2 82313.103283: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20656          <idle>-0     (-----) [003] d..2 82313.103308: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
20657 SDM_EventThread-644   (  619) [000] ...1 82313.103319: tracing_mark_write: E|619
20658          <idle>-0     (-----) [003] dn.3 82313.103341: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
20659 crtc_commit:111-321   (  321) [002] d..2 82313.103357: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20660          <idle>-0     (-----) [003] d..2 82313.103360: 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
20661     ksoftirqd/3-34    (   34) [003] d.s2 82313.103420: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
20662          <idle>-0     (-----) [002] d..1 82313.103424: cpu_idle: state=0 cpu_id=2
20663 SDM_EventThread-644   (  619) [000] d..2 82313.103471: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20664          <idle>-0     (-----) [002] d.h2 82313.103474: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20665          <idle>-0     (-----) [000] d..2 82313.103481: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20666          <idle>-0     (-----) [002] dnh3 82313.103493: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20667          <idle>-0     (-----) [000] dn.3 82313.103508: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20668          <idle>-0     (-----) [002] .n.1 82313.103515: cpu_idle: state=4294967295 cpu_id=2
20669          <idle>-0     (-----) [002] d..2 82313.103528: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20670          <idle>-0     (-----) [000] d..2 82313.103542: 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
20671          <idle>-0     (-----) [001] .n.1 82313.103543: cpu_idle: state=4294967295 cpu_id=1
20672 crtc_commit:111-321   (  321) [002] d..1 82313.103567: clk_disable: disp_cc_mdss_rscc_ahb_clk
20673     ksoftirqd/3-34    (   34) [003] d.s3 82313.103570: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20674     ksoftirqd/0-3     (    3) [000] d..2 82313.103586: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20675 crtc_commit:111-321   (  321) [002] d..1 82313.103590: clk_disable: disp_cc_mdss_rscc_vsync_clk
20676          <idle>-0     (-----) [001] d..2 82313.103599: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
20677     ksoftirqd/3-34    (   34) [003] d.s2 82313.103605: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
20678 crtc_commit:111-321   (  321) [002] d..1 82313.103606: clk_disable: disp_cc_mdss_vsync_clk_src
20679<...>-8890 ( 8858) [001] .... 82313.103636: binder_transaction_received: transaction=1568232
20680     ksoftirqd/3-34    (   34) [003] d.s3 82313.103661: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
20681     ksoftirqd/3-34    (   34) [003] d..2 82313.103689: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
20682  kworker/u16:15-1311  ( 1311) [003] d..2 82313.103728: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20683          <idle>-0     (-----) [003] d..1 82313.103756: cpu_idle: state=2 cpu_id=3
20684<...>-8890 ( 8858) [001] ...1 82313.103894: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
20685<...>-8890 ( 8858) [001] d..1 82313.104023: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
20686<...>-8890 ( 8858) [001] d..2 82313.104079: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
20687 crtc_commit:111-321   (  321) [002] d..2 82313.104165: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20688          <idle>-0     (-----) [002] d..1 82313.104186: cpu_idle: state=2 cpu_id=2
20689<...>-8890 ( 8858) [001] d.s2 82313.104198: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20690<...>-8890 ( 8858) [001] d.s3 82313.104220: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20691<...>-1054 ( 1054) [000] d..2 82313.104222: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20692<...>-8890 ( 8858) [001] d..1 82313.104242: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
20693          <idle>-0     (-----) [000] d..1 82313.104254: cpu_idle: state=2 cpu_id=0
20694<...>-8890 ( 8858) [001] d..2 82313.104281: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
20695<...>-8890 ( 8858) [001] ...1 82313.104305: tracing_mark_write: E|8858
20696          <idle>-0     (-----) [003] .n.1 82313.104427: cpu_idle: state=4294967295 cpu_id=3
20697          <idle>-0     (-----) [003] d..2 82313.104455: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
20698<...>-8890 ( 8858) [001] d..2 82313.104463: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20699          <idle>-0     (-----) [001] d..1 82313.104496: cpu_idle: state=2 cpu_id=1
20700        DispSync-8879  ( 8858) [003] d..2 82313.104598: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20701          <idle>-0     (-----) [003] d..1 82313.104621: cpu_idle: state=2 cpu_id=3
20702          <idle>-0     (-----) [002] .n.1 82313.104711: cpu_idle: state=4294967295 cpu_id=2
20703          <idle>-0     (-----) [000] .n.1 82313.104731: cpu_idle: state=4294967295 cpu_id=0
20704          <idle>-0     (-----) [002] d..2 82313.104737: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20705          <idle>-0     (-----) [000] d..2 82313.104762: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
20706<...>-8894 ( 8858) [000] ...1 82313.104838: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
20707<...>-8894 ( 8858) [000] ...1 82313.104849: tracing_mark_write: E|8858
20708<...>-8894 ( 8858) [000] .... 82313.104933: binder_transaction: transaction=1568233 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
20709<...>-8894 ( 8858) [000] .... 82313.104951: binder_transaction_alloc_buf: transaction=1568233 data_size=68 offsets_size=0
20710<...>-8894 ( 8858) [000] ...2 82313.104979: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
20711<...>-8894 ( 8858) [000] d..4 82313.105028: sched_waking: [email protected] pid=619 prio=112 target_cpu=000
20712<...>-8894 ( 8858) [000] d..5 82313.105061: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=000
20713<...>-8894 ( 8858) [000] d..2 82313.105086: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
20714 crtc_commit:111-321   (  321) [002] d..2 82313.105117: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20715 [email protected]   (  619) [000] .... 82313.105236: binder_transaction_received: transaction=1568233
20716          <idle>-0     (-----) [002] d..1 82313.105255: cpu_idle: state=2 cpu_id=2
20717 [email protected]   (  619) [000] ...1 82313.105374: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
20718 [email protected]   (  619) [000] ...1 82313.105418: tracing_mark_write: C|619|SetVsyncState |0
20719          <idle>-0     (-----) [001] d.s3 82313.105492: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20720 [email protected]   (  619) [000] ...1 82313.105506: tracing_mark_write: E|619
20721          <idle>-0     (-----) [001] d.s4 82313.105520: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20722 [email protected]   (  619) [000] .... 82313.105536: binder_transaction: transaction=1568234 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
20723          <idle>-0     (-----) [001] ...1 82313.105537: cpu_idle: state=4294967295 cpu_id=1
20724 [email protected]   (  619) [000] .... 82313.105541: binder_transaction_alloc_buf: transaction=1568234 data_size=8 offsets_size=0
20725          <idle>-0     (-----) [001] d..1 82313.105547: cpu_idle: state=2 cpu_id=1
20726 [email protected]   (  619) [000] d..2 82313.105554: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
20727 [email protected]   (  619) [000] dn.3 82313.105579: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
20728 [email protected]   (  619) [000] d..2 82313.105593: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
20729<...>-8894 ( 8858) [000] .... 82313.105608: binder_transaction_received: transaction=1568234
20730<...>-8894 ( 8858) [000] d..2 82313.105688: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
20731 [email protected]   (  619) [000] .... 82313.105697: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
20732 [email protected]   (  619) [000] d..2 82313.105826: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20733          <idle>-0     (-----) [002] .n.1 82313.105841: cpu_idle: state=4294967295 cpu_id=2
20734          <idle>-0     (-----) [000] d..1 82313.105853: cpu_idle: state=2 cpu_id=0
20735          <idle>-0     (-----) [002] d..2 82313.105869: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20736 crtc_commit:111-321   (  321) [002] d..3 82313.105952: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20737 crtc_commit:111-321   (  321) [002] d..4 82313.106018: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
20738 crtc_commit:111-321   (  321) [002] d..2 82313.106273: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20739 SDM_EventThread-644   (  619) [002] d..2 82313.106412: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20740          <idle>-0     (-----) [002] d..1 82313.106437: cpu_idle: state=2 cpu_id=2
20741          <idle>-0     (-----) [001] d.s3 82313.106811: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20742          <idle>-0     (-----) [001] d.s4 82313.106839: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20743          <idle>-0     (-----) [001] ...1 82313.106856: cpu_idle: state=4294967295 cpu_id=1
20744          <idle>-0     (-----) [001] d..1 82313.106866: cpu_idle: state=2 cpu_id=1
20745          <idle>-0     (-----) [002] .n.1 82313.107162: cpu_idle: state=4294967295 cpu_id=2
20746          <idle>-0     (-----) [002] d..2 82313.107190: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20747 crtc_commit:111-321   (  321) [002] d..2 82313.107425: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20748          <idle>-0     (-----) [002] d..1 82313.107457: cpu_idle: state=0 cpu_id=2
20749          <idle>-0     (-----) [001] d.s3 82313.107784: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20750          <idle>-0     (-----) [001] d.s4 82313.107820: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20751          <idle>-0     (-----) [002] .n.1 82313.107829: cpu_idle: state=4294967295 cpu_id=2
20752          <idle>-0     (-----) [001] ...1 82313.107839: cpu_idle: state=4294967295 cpu_id=1
20753          <idle>-0     (-----) [002] d..2 82313.107843: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20754          <idle>-0     (-----) [001] d..1 82313.107851: cpu_idle: state=2 cpu_id=1
20755 crtc_commit:111-321   (  321) [002] d..1 82313.107909: clk_enable: disp_cc_mdss_vsync_clk_src
20756 crtc_commit:111-321   (  321) [002] d..1 82313.107914: clk_enable: disp_cc_mdss_rscc_vsync_clk
20757 crtc_commit:111-321   (  321) [002] d..1 82313.107935: clk_enable: disp_cc_mdss_rscc_ahb_clk
20758 crtc_commit:111-321   (  321) [002] d..2 82313.108017: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20759          <idle>-0     (-----) [002] d..1 82313.108031: cpu_idle: state=0 cpu_id=2
20760          <idle>-0     (-----) [002] d.h2 82313.108104: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20761          <idle>-0     (-----) [002] dnh3 82313.108123: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20762          <idle>-0     (-----) [002] .n.1 82313.108135: cpu_idle: state=4294967295 cpu_id=2
20763          <idle>-0     (-----) [002] d..2 82313.108148: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20764 crtc_commit:111-321   (  321) [002] d..2 82313.108178: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20765          <idle>-0     (-----) [002] d..1 82313.108189: cpu_idle: state=0 cpu_id=2
20766          <idle>-0     (-----) [002] d.h2 82313.108268: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20767          <idle>-0     (-----) [002] dnh3 82313.108281: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20768          <idle>-0     (-----) [002] .n.1 82313.108290: cpu_idle: state=4294967295 cpu_id=2
20769          <idle>-0     (-----) [002] d..2 82313.108303: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20770 crtc_commit:111-321   (  321) [002] d..1 82313.108347: clk_enable: gcc_disp_axi_clk
20771 crtc_commit:111-321   (  321) [002] d..1 82313.108362: clk_enable: disp_cc_mdss_ahb_clk
20772 crtc_commit:111-321   (  321) [002] d..1 82313.108377: clk_enable: disp_cc_mdss_axi_clk
20773 crtc_commit:111-321   (  321) [002] d..1 82313.108404: clk_enable: gcc_disp_gpll0_clk_src
20774 crtc_commit:111-321   (  321) [002] d..1 82313.108916: clk_enable: disp_cc_mdss_mdp_clk_src
20775 crtc_commit:111-321   (  321) [002] d..1 82313.108967: clk_enable: disp_cc_mdss_mdp_clk
20776 crtc_commit:111-321   (  321) [002] d.s3 82313.109045: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20777 crtc_commit:111-321   (  321) [002] d.s4 82313.109103: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
20778 crtc_commit:111-321   (  321) [002] d..1 82313.109116: clk_enable: disp_cc_mdss_vsync_clk
20779 crtc_commit:111-321   (  321) [002] d..2 82313.109475: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20780<...>-1054 ( 1054) [002] d..2 82313.109699: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20781          <idle>-0     (-----) [002] d..1 82313.109720: cpu_idle: state=0 cpu_id=2
20782          <idle>-0     (-----) [002] ...1 82313.111099: cpu_idle: state=4294967295 cpu_id=2
20783          <idle>-0     (-----) [002] d..1 82313.111106: cpu_idle: state=2 cpu_id=2
20784          <idle>-0     (-----) [002] ...1 82313.115874: cpu_idle: state=4294967295 cpu_id=2
20785          <idle>-0     (-----) [002] d..1 82313.115884: cpu_idle: state=2 cpu_id=2
20786          <idle>-0     (-----) [000] d.h7 82313.115973: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20787          <idle>-0     (-----) [000] dnh8 82313.116006: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20788          <idle>-0     (-----) [000] dnh9 82313.116018: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20789          <idle>-0     (-----) [000] dnha 82313.116046: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20790          <idle>-0     (-----) [000] dnh7 82313.116053: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
20791          <idle>-0     (-----) [000] dnh8 82313.116104: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20792          <idle>-0     (-----) [000] dnh3 82313.116265: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
20793          <idle>-0     (-----) [000] dnh4 82313.116284: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
20794          <idle>-0     (-----) [000] .n.1 82313.116322: cpu_idle: state=4294967295 cpu_id=0
20795          <idle>-0     (-----) [000] d..2 82313.116346: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
20796          <idle>-0     (-----) [002] .n.1 82313.116351: cpu_idle: state=4294967295 cpu_id=2
20797     kworker/0:1-25262 (25262) [000] d..2 82313.116369: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20798          <idle>-0     (-----) [002] d..2 82313.116386: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20799 crtc_commit:111-321   (  321) [002] d..1 82313.116434: clk_disable: disp_cc_mdss_vsync_clk
20800 SDM_EventThread-644   (  619) [000] d..2 82313.116438: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20801          <idle>-0     (-----) [000] d..2 82313.116445: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20802 crtc_commit:111-321   (  321) [002] d..1 82313.116454: clk_disable: disp_cc_mdss_mdp_clk
20803          <idle>-0     (-----) [000] dn.3 82313.116460: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20804 crtc_commit:111-321   (  321) [002] d..1 82313.116468: clk_disable: disp_cc_mdss_mdp_clk_src
20805          <idle>-0     (-----) [000] d..2 82313.116473: 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
20806     ksoftirqd/0-3     (    3) [000] d.s2 82313.116485: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
20807 crtc_commit:111-321   (  321) [002] d..1 82313.116505: clk_disable: gcc_disp_gpll0_clk_src
20808     ksoftirqd/0-3     (    3) [000] d.s3 82313.116534: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20809     ksoftirqd/0-3     (    3) [000] d..2 82313.116555: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20810          <idle>-0     (-----) [003] .n.1 82313.116595: cpu_idle: state=4294967295 cpu_id=3
20811          <idle>-0     (-----) [003] d..2 82313.116624: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
20812         sugov:0-576   (  576) [003] .... 82313.116659: clk_set_rate: pwrcl_clk 748800000
20813         sugov:0-576   (  576) [003] .... 82313.116673: clk_set_rate: cpu3_pwrcl_clk 652800000
20814         sugov:0-576   (  576) [003] .... 82313.116684: clk_set_rate: cpu2_pwrcl_clk 652800000
20815         sugov:0-576   (  576) [003] .... 82313.116696: clk_set_rate: cpu1_pwrcl_clk 652800000
20816         sugov:0-576   (  576) [003] .... 82313.116707: clk_set_rate: cpu0_pwrcl_clk 748800000
20817         sugov:0-576   (  576) [003] .... 82313.116719: cpu_frequency: state=748800 cpu_id=0
20818         sugov:0-576   (  576) [003] .... 82313.116741: cpu_frequency: state=748800 cpu_id=1
20819         sugov:0-576   (  576) [003] .... 82313.116747: cpu_frequency: state=748800 cpu_id=2
20820         sugov:0-576   (  576) [003] .... 82313.116751: cpu_frequency: state=748800 cpu_id=3
20821         sugov:0-576   (  576) [003] d..2 82313.116807: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20822          <idle>-0     (-----) [003] d..1 82313.116827: cpu_idle: state=2 cpu_id=3
20823 crtc_commit:111-321   (  321) [002] d..1 82313.117053: clk_disable: disp_cc_mdss_axi_clk
20824 crtc_commit:111-321   (  321) [002] d..1 82313.117069: clk_disable: disp_cc_mdss_ahb_clk
20825 crtc_commit:111-321   (  321) [002] d..1 82313.117087: clk_disable: gcc_disp_axi_clk
20826<...>-1054 ( 1054) [000] d..2 82313.117155: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20827          <idle>-0     (-----) [000] d..1 82313.117175: cpu_idle: state=2 cpu_id=0
20828 crtc_commit:111-321   (  321) [002] d..2 82313.117196: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20829          <idle>-0     (-----) [002] d..1 82313.117216: cpu_idle: state=0 cpu_id=2
20830          <idle>-0     (-----) [002] d.h2 82313.117267: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20831          <idle>-0     (-----) [002] dnh3 82313.117285: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20832          <idle>-0     (-----) [002] .n.1 82313.117297: cpu_idle: state=4294967295 cpu_id=2
20833          <idle>-0     (-----) [002] d..2 82313.117308: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20834 crtc_commit:111-321   (  321) [002] d..1 82313.117327: clk_disable: disp_cc_mdss_rscc_ahb_clk
20835 crtc_commit:111-321   (  321) [002] d..1 82313.117344: clk_disable: disp_cc_mdss_rscc_vsync_clk
20836 crtc_commit:111-321   (  321) [002] d..1 82313.117357: clk_disable: disp_cc_mdss_vsync_clk_src
20837 crtc_commit:111-321   (  321) [002] d..2 82313.117560: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
20838          <idle>-0     (-----) [002] d..1 82313.117579: cpu_idle: state=2 cpu_id=2
20839          <idle>-0     (-----) [001] d.s3 82313.117913: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20840          <idle>-0     (-----) [001] d.s4 82313.117939: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20841          <idle>-0     (-----) [001] ...1 82313.117954: cpu_idle: state=4294967295 cpu_id=1
20842          <idle>-0     (-----) [001] d..1 82313.117964: cpu_idle: state=2 cpu_id=1
20843          <idle>-0     (-----) [002] .n.1 82313.118247: cpu_idle: state=4294967295 cpu_id=2
20844          <idle>-0     (-----) [002] d..2 82313.118271: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20845 crtc_commit:111-321   (  321) [002] d.s3 82313.118521: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
20846 crtc_commit:111-321   (  321) [002] d.s4 82313.118557: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
20847 crtc_commit:111-321   (  321) [002] d..2 82313.118584: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
20848     kworker/2:1-25259 (25259) [002] d..2 82313.118668: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20849          <idle>-0     (-----) [002] d..1 82313.118687: cpu_idle: state=2 cpu_id=2
20850          <idle>-0     (-----) [001] d.s3 82313.118857: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20851          <idle>-0     (-----) [001] d.s4 82313.118883: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
20852          <idle>-0     (-----) [001] ...1 82313.118899: cpu_idle: state=4294967295 cpu_id=1
20853          <idle>-0     (-----) [001] d..1 82313.118908: cpu_idle: state=2 cpu_id=1
20854          <idle>-0     (-----) [002] .n.1 82313.119208: cpu_idle: state=4294967295 cpu_id=2
20855          <idle>-0     (-----) [002] d..2 82313.119233: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
20856 crtc_commit:111-321   (  321) [002] d..3 82313.119257: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
20857 crtc_commit:111-321   (  321) [002] d..4 82313.119313: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
20858 crtc_commit:111-321   (  321) [002] d..2 82313.119336: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
20859 SDM_EventThread-644   (  619) [002] d..2 82313.119405: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
20860          <idle>-0     (-----) [002] d..1 82313.119428: cpu_idle: state=0 cpu_id=2
20861          <idle>-0     (-----) [002] ...1 82313.120865: cpu_idle: state=4294967295 cpu_id=2
20862          <idle>-0     (-----) [002] d..1 82313.120871: cpu_idle: state=2 cpu_id=2
20863          <idle>-0     (-----) [000] ...1 82313.223808: cpu_idle: state=4294967295 cpu_id=0
20864          <idle>-0     (-----) [001] d.H3 82313.223840: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
20865          <idle>-0     (-----) [000] d..1 82313.223907: cpu_idle: state=2 cpu_id=0
20866          <idle>-0     (-----) [001] d.H4 82313.223993: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
20867          <idle>-0     (-----) [001] d.s3 82313.224069: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
20868          <idle>-0     (-----) [001] dns4 82313.224160: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
20869          <idle>-0     (-----) [001] dns3 82313.224191: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20870          <idle>-0     (-----) [003] .n.1 82313.224384: cpu_idle: state=4294967295 cpu_id=3
20871          <idle>-0     (-----) [001] dns4 82313.224384: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
20872          <idle>-0     (-----) [003] d..2 82313.224496: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
20873          <idle>-0     (-----) [001] .n.1 82313.224505: cpu_idle: state=4294967295 cpu_id=1
20874          <idle>-0     (-----) [001] d..2 82313.224561: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
20875         sugov:0-576   (  576) [003] .... 82313.224657: clk_set_rate: pwrcl_clk 652800000
20876         sugov:0-576   (  576) [003] .... 82313.224752: clk_set_rate: cpu3_pwrcl_clk 748800000
20877         sugov:0-576   (  576) [003] .... 82313.224771: clk_set_rate: cpu2_pwrcl_clk 748800000
20878         sugov:0-576   (  576) [003] .... 82313.224781: clk_set_rate: cpu1_pwrcl_clk 748800000
20879         sugov:0-576   (  576) [003] .... 82313.224792: clk_set_rate: cpu0_pwrcl_clk 652800000
20880         sugov:0-576   (  576) [003] .... 82313.224862: cpu_frequency: state=652800 cpu_id=0
20881     kworker/1:1-25249 (25249) [001] d..2 82313.224881: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20882         sugov:0-576   (  576) [003] .... 82313.224963: cpu_frequency: state=652800 cpu_id=1
20883         sugov:0-576   (  576) [003] .... 82313.224970: cpu_frequency: state=652800 cpu_id=2
20884         sugov:0-576   (  576) [003] .... 82313.224977: cpu_frequency: state=652800 cpu_id=3
20885         sugov:0-576   (  576) [003] d..2 82313.225136: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20886          <idle>-0     (-----) [003] d..1 82313.225303: cpu_idle: state=2 cpu_id=3
20887<...>-1054 ( 1054) [001] d..2 82313.225748: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20888          <idle>-0     (-----) [001] d..1 82313.225781: cpu_idle: state=2 cpu_id=1
20889          <idle>-0     (-----) [000] d.h3 82313.225914: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20890          <idle>-0     (-----) [000] dnh4 82313.225960: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20891          <idle>-0     (-----) [000] .n.1 82313.225996: cpu_idle: state=4294967295 cpu_id=0
20892          <idle>-0     (-----) [000] d..2 82313.226028: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
20893     kworker/0:1-25262 (25262) [000] d..2 82313.226053: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
20894     kworker/0:1-25262 (25262) [000] d..3 82313.226077: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
20895     kworker/0:1-25262 (25262) [000] d..3 82313.226093: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
20896     kworker/0:1-25262 (25262) [000] d..2 82313.226142: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20897          <idle>-0     (-----) [000] d..1 82313.226166: cpu_idle: state=2 cpu_id=0
20898          <idle>-0     (-----) [001] .n.1 82313.226418: cpu_idle: state=4294967295 cpu_id=1
20899          <idle>-0     (-----) [001] d..2 82313.226448: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
20900     kworker/1:1-25249 (25249) [001] d..2 82313.226641: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20901          <idle>-0     (-----) [001] d..1 82313.226663: cpu_idle: state=2 cpu_id=1
20902          <idle>-0     (-----) [001] d.h2 82313.328988: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
20903          <idle>-0     (-----) [000] d..2 82313.329128: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20904          <idle>-0     (-----) [001] dnh3 82313.329224: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
20905          <idle>-0     (-----) [000] dn.3 82313.329254: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20906          <idle>-0     (-----) [001] .n.1 82313.329628: cpu_idle: state=4294967295 cpu_id=1
20907          <idle>-0     (-----) [000] dns3 82313.329633: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
20908          <idle>-0     (-----) [001] d..2 82313.329762: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
20909          <idle>-0     (-----) [000] dns4 82313.329832: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20910          <idle>-0     (-----) [000] dns3 82313.329870: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20911          <idle>-0     (-----) [000] dns4 82313.329899: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
20912          <idle>-0     (-----) [000] dns3 82313.329928: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
20913          <idle>-0     (-----) [000] dns4 82313.329968: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
20914          <idle>-0     (-----) [000] .n.1 82313.329991: cpu_idle: state=4294967295 cpu_id=0
20915          <idle>-0     (-----) [000] d..2 82313.330057: 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
20916     ksoftirqd/0-3     (    3) [000] d..2 82313.330108: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
20917     kworker/0:1-25262 (25262) [000] d..2 82313.330207: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20918 [email protected]  (  776) [001] d..2 82313.330255: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20919          <idle>-0     (-----) [001] d..1 82313.330339: cpu_idle: state=2 cpu_id=1
20920          <idle>-0     (-----) [003] .n.1 82313.330361: cpu_idle: state=4294967295 cpu_id=3
20921          <idle>-0     (-----) [003] d..2 82313.330422: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
20922     kworker/3:1-25210 (25210) [003] d..2 82313.330557: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20923          <idle>-0     (-----) [003] d..1 82313.330584: cpu_idle: state=2 cpu_id=3
20924<...>-1054 ( 1054) [000] d..2 82313.331371: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
20925          <idle>-0     (-----) [000] d..1 82313.331412: cpu_idle: state=2 cpu_id=0
20926          <idle>-0     (-----) [001] d.s3 82313.331768: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20927          <idle>-0     (-----) [001] d.s4 82313.331811: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
20928          <idle>-0     (-----) [001] d.s4 82313.331830: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20929          <idle>-0     (-----) [001] d.H4 82313.331938: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
20930          <idle>-0     (-----) [001] d.H5 82313.331971: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
20931          <idle>-0     (-----) [001] ...1 82313.331999: cpu_idle: state=4294967295 cpu_id=1
20932          <idle>-0     (-----) [001] d..1 82313.332010: cpu_idle: state=2 cpu_id=1
20933          <idle>-0     (-----) [000] .n.1 82313.332179: cpu_idle: state=4294967295 cpu_id=0
20934          <idle>-0     (-----) [000] d..2 82313.332222: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20935          <idle>-0     (-----) [003] .n.1 82313.332301: cpu_idle: state=4294967295 cpu_id=3
20936<...>-1054 ( 1054) [000] d..2 82313.332304: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20937          <idle>-0     (-----) [000] d..2 82313.332312: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20938          <idle>-0     (-----) [000] dn.3 82313.332332: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20939          <idle>-0     (-----) [003] d..2 82313.332335: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
20940          <idle>-0     (-----) [000] d..2 82313.332345: 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
20941     ksoftirqd/0-3     (    3) [000] d..2 82313.332377: 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
20942          <idle>-0     (-----) [000] d..1 82313.332398: cpu_idle: state=2 cpu_id=0
20943         sugov:0-576   (  576) [003] .... 82313.332474: clk_set_rate: pwrcl_clk 748800000
20944         sugov:0-576   (  576) [003] .... 82313.332575: clk_set_rate: cpu3_pwrcl_clk 652800000
20945         sugov:0-576   (  576) [003] .... 82313.332596: clk_set_rate: cpu2_pwrcl_clk 652800000
20946         sugov:0-576   (  576) [003] .... 82313.332607: clk_set_rate: cpu1_pwrcl_clk 652800000
20947         sugov:0-576   (  576) [003] .... 82313.332621: clk_set_rate: cpu0_pwrcl_clk 748800000
20948         sugov:0-576   (  576) [003] .... 82313.332640: cpu_frequency: state=748800 cpu_id=0
20949         sugov:0-576   (  576) [003] .... 82313.332745: cpu_frequency: state=748800 cpu_id=1
20950         sugov:0-576   (  576) [003] .... 82313.332751: cpu_frequency: state=748800 cpu_id=2
20951         sugov:0-576   (  576) [003] .... 82313.332757: cpu_frequency: state=748800 cpu_id=3
20952         sugov:0-576   (  576) [003] d..2 82313.332810: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20953          <idle>-0     (-----) [003] d..1 82313.332827: cpu_idle: state=2 cpu_id=3
20954          <idle>-0     (-----) [000] d.h2 82313.341338: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
20955          <idle>-0     (-----) [000] dnh3 82313.341386: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
20956          <idle>-0     (-----) [000] .n.1 82313.341404: cpu_idle: state=4294967295 cpu_id=0
20957          <idle>-0     (-----) [000] d..2 82313.341428: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
20958 RxSchedulerPurg-25567 (25538) [000] d.s2 82313.341967: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20959 RxSchedulerPurg-25567 (25538) [000] d.s3 82313.341998: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20960 RxSchedulerPurg-25567 (25538) [000] d..2 82313.342651: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20961<...>-1054 ( 1054) [000] d..2 82313.342765: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
20962          <idle>-0     (-----) [000] d..1 82313.342787: cpu_idle: state=2 cpu_id=0
20963          <idle>-0     (-----) [001] d..2 82313.771169: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
20964          <idle>-0     (-----) [000] ...1 82313.771302: cpu_idle: state=4294967295 cpu_id=0
20965          <idle>-0     (-----) [001] dn.3 82313.771354: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
20966          <idle>-0     (-----) [000] d..1 82313.771386: cpu_idle: state=2 cpu_id=0
20967          <idle>-0     (-----) [001] dnH3 82313.771717: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
20968          <idle>-0     (-----) [001] dnH4 82313.771833: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
20969          <idle>-0     (-----) [001] dns3 82313.771962: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
20970          <idle>-0     (-----) [001] dns4 82313.771997: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
20971          <idle>-0     (-----) [001] dns3 82313.772018: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
20972          <idle>-0     (-----) [001] dns4 82313.772217: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
20973          <idle>-0     (-----) [003] .n.1 82313.772234: cpu_idle: state=4294967295 cpu_id=3
20974          <idle>-0     (-----) [001] .n.1 82313.772268: cpu_idle: state=4294967295 cpu_id=1
20975          <idle>-0     (-----) [003] d..2 82313.772364: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
20976          <idle>-0     (-----) [001] d..2 82313.772364: 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
20977     ksoftirqd/1-18    (   18) [001] d..2 82313.772434: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
20978         sugov:0-576   (  576) [003] .... 82313.772524: clk_set_rate: pwrcl_clk 652800000
20979         sugov:0-576   (  576) [003] .... 82313.772617: clk_set_rate: cpu3_pwrcl_clk 748800000
20980         sugov:0-576   (  576) [003] .... 82313.772635: clk_set_rate: cpu2_pwrcl_clk 748800000
20981         sugov:0-576   (  576) [003] .... 82313.772646: clk_set_rate: cpu1_pwrcl_clk 748800000
20982         sugov:0-576   (  576) [003] .... 82313.772658: clk_set_rate: cpu0_pwrcl_clk 652800000
20983         sugov:0-576   (  576) [003] .... 82313.772730: cpu_frequency: state=652800 cpu_id=0
20984     kworker/1:1-25249 (25249) [001] d..2 82313.772758: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
20985          <idle>-0     (-----) [001] d..2 82313.772768: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
20986          <idle>-0     (-----) [001] dn.3 82313.772781: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
20987          <idle>-0     (-----) [001] d..2 82313.772794: 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
20988     ksoftirqd/1-18    (   18) [001] d..2 82313.772827: 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
20989         sugov:0-576   (  576) [003] .... 82313.772842: cpu_frequency: state=652800 cpu_id=1
20990         sugov:0-576   (  576) [003] .... 82313.772849: cpu_frequency: state=652800 cpu_id=2
20991         sugov:0-576   (  576) [003] .... 82313.772854: cpu_frequency: state=652800 cpu_id=3
20992          <idle>-0     (-----) [001] d..1 82313.772860: cpu_idle: state=2 cpu_id=1
20993         sugov:0-576   (  576) [003] d..2 82313.772922: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
20994<...>-1054 ( 1054) [003] d..2 82313.773622: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
20995          <idle>-0     (-----) [003] d..1 82313.773653: cpu_idle: state=2 cpu_id=3
20996          <idle>-0     (-----) [003] d.h2 82313.840686: sched_waking: comm=CCodecWatchdog pid=10161 prio=120 target_cpu=003
20997          <idle>-0     (-----) [000] d..2 82313.840836: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20998          <idle>-0     (-----) [000] dn.3 82313.840969: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
20999          <idle>-0     (-----) [003] dnh3 82313.840969: sched_wakeup: comm=CCodecWatchdog pid=10161 prio=120 target_cpu=003
21000          <idle>-0     (-----) [000] dns3 82313.841358: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
21001          <idle>-0     (-----) [003] .n.1 82313.841367: cpu_idle: state=4294967295 cpu_id=3
21002          <idle>-0     (-----) [003] d..2 82313.841535: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=10161 next_prio=120
21003          <idle>-0     (-----) [000] dns4 82313.841608: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
21004          <idle>-0     (-----) [000] .n.1 82313.841654: cpu_idle: state=4294967295 cpu_id=0
21005          <idle>-0     (-----) [000] d..2 82313.841706: 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
21006     ksoftirqd/0-3     (    3) [000] d..2 82313.841764: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21007  CCodecWatchdog-10161 ( 9748) [003] d..2 82313.842364: sched_switch: prev_comm=CCodecWatchdog prev_pid=10161 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21008          <idle>-0     (-----) [003] d..1 82313.842438: cpu_idle: state=2 cpu_id=3
21009<...>-1054 ( 1054) [000] d..2 82313.842716: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21010          <idle>-0     (-----) [000] d..1 82313.842753: cpu_idle: state=2 cpu_id=0
21011          <idle>-0     (-----) [004] d.h2 82313.996433: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
21012          <idle>-0     (-----) [004] dnh3 82313.996615: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
21013          <idle>-0     (-----) [000] d..2 82313.996817: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21014          <idle>-0     (-----) [004] .n.1 82313.996860: cpu_idle: state=4294967295 cpu_id=4
21015          <idle>-0     (-----) [000] dn.3 82313.996874: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21016          <idle>-0     (-----) [004] d..2 82313.996957: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
21017          <idle>-0     (-----) [000] dns3 82313.997019: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
21018          <idle>-0     (-----) [000] dns4 82313.997084: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
21019          <idle>-0     (-----) [000] dns3 82313.997125: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21020          <idle>-0     (-----) [000] dns4 82313.997153: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21021          <idle>-0     (-----) [000] .n.1 82313.997173: cpu_idle: state=4294967295 cpu_id=0
21022          <idle>-0     (-----) [000] d..2 82313.997224: 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
21023     ksoftirqd/0-3     (    3) [000] d..2 82313.997272: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
21024     kworker/0:1-25262 (25262) [000] d..2 82313.997376: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21025 s.nexuslauncher-10023 (10023) [004] .... 82313.997705: binder_transaction: transaction=1568235 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
21026 s.nexuslauncher-10023 (10023) [004] .... 82313.997755: binder_transaction_alloc_buf: transaction=1568235 data_size=80 offsets_size=0
21027 s.nexuslauncher-10023 (10023) [004] d..4 82313.997787: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
21028 s.nexuslauncher-10023 (10023) [004] d..2 82313.998100: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21029<...>-1054 ( 1054) [000] d..2 82313.998121: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21030          <idle>-0     (-----) [004] d..1 82313.998147: cpu_idle: state=2 cpu_id=4
21031          <idle>-0     (-----) [000] d..1 82313.998166: cpu_idle: state=2 cpu_id=0
21032          <idle>-0     (-----) [001] dnh2 82313.998228: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
21033          <idle>-0     (-----) [001] .n.1 82313.998251: cpu_idle: state=4294967295 cpu_id=1
21034          <idle>-0     (-----) [001] d..2 82313.998296: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
21035<...>-8874 ( 8858) [001] .... 82313.998345: binder_transaction_received: transaction=1568235
21036<...>-8874 ( 8858) [001] ...1 82313.999046: tracing_mark_write: B|8858|HIDL::IComposerClient::getActiveConfig::client
21037<...>-8874 ( 8858) [001] ...1 82313.999092: tracing_mark_write: E|8858
21038<...>-8874 ( 8858) [001] .... 82313.999265: binder_transaction: transaction=1568236 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x7
21039<...>-8874 ( 8858) [001] .... 82313.999277: binder_transaction_alloc_buf: transaction=1568236 data_size=64 offsets_size=0
21040<...>-8874 ( 8858) [001] ...2 82313.999314: binder_set_priority: proc=619 thread=619 old=97 => new=120 desired=120
21041<...>-8874 ( 8858) [001] d..4 82313.999376: sched_waking: [email protected] pid=619 prio=120 target_cpu=000
21042<...>-8874 ( 8858) [001] d..5 82313.999457: sched_wakeup: [email protected] pid=619 prio=120 target_cpu=001
21043<...>-8874 ( 8858) [001] d..2 82313.999490: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=120
21044 [email protected]   (  619) [001] .... 82313.999525: binder_transaction_received: transaction=1568236
21045 [email protected]   (  619) [001] ...1 82313.999774: tracing_mark_write: B|619|HIDL::IComposerClient::getActiveConfig::server
21046 [email protected]   (  619) [001] ...1 82313.999933: tracing_mark_write: E|619
21047 [email protected]   (  619) [001] .... 82313.999978: binder_transaction: transaction=1568237 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
21048 [email protected]   (  619) [001] .... 82313.999988: binder_transaction_alloc_buf: transaction=1568237 data_size=12 offsets_size=0
21049 [email protected]   (  619) [001] d..2 82314.000002: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
21050 [email protected]   (  619) [001] dn.3 82314.000037: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
21051 [email protected]   (  619) [001] d..2 82314.000056: sched_switch: [email protected] prev_pid=619 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
21052<...>-8874 ( 8858) [001] .... 82314.000074: binder_transaction_received: transaction=1568237
21053<...>-8874 ( 8858) [001] d..1 82314.000212: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
21054<...>-8874 ( 8858) [001] d..2 82314.000317: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
21055<...>-8874 ( 8858) [001] d..1 82314.000345: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
21056<...>-8874 ( 8858) [001] d..2 82314.000387: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
21057<...>-8874 ( 8858) [001] d..1 82314.000406: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
21058<...>-8874 ( 8858) [001] d..2 82314.000458: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
21059<...>-8874 ( 8858) [001] d..2 82314.000541: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=120
21060 [email protected]   (  619) [001] .... 82314.000549: binder_set_priority: proc=619 thread=619 old=120 => new=97 desired=97
21061 [email protected]   (  619) [001] d..2 82314.000707: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21062          <idle>-0     (-----) [003] .n.1 82314.000717: cpu_idle: state=4294967295 cpu_id=3
21063          <idle>-0     (-----) [001] d..1 82314.000740: cpu_idle: state=2 cpu_id=1
21064          <idle>-0     (-----) [000] .n.1 82314.000746: cpu_idle: state=4294967295 cpu_id=0
21065          <idle>-0     (-----) [003] d..2 82314.000772: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
21066          <idle>-0     (-----) [000] d..2 82314.000782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
21067          <idle>-0     (-----) [002] .n.1 82314.000860: cpu_idle: state=4294967295 cpu_id=2
21068<...>-8894 ( 8858) [000] ...1 82314.000866: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
21069<...>-8894 ( 8858) [000] ...1 82314.000878: tracing_mark_write: E|8858
21070          <idle>-0     (-----) [002] d..2 82314.000908: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
21071        DispSync-8879  ( 8858) [003] d..2 82314.000921: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21072<...>-8894 ( 8858) [000] .... 82314.000941: binder_transaction: transaction=1568238 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
21073<...>-8894 ( 8858) [000] .... 82314.000948: binder_transaction_alloc_buf: transaction=1568238 data_size=68 offsets_size=0
21074          <idle>-0     (-----) [003] d..1 82314.000948: cpu_idle: state=2 cpu_id=3
21075<...>-8894 ( 8858) [000] ...2 82314.000958: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
21076<...>-8894 ( 8858) [000] d..4 82314.000971: sched_waking: [email protected] pid=619 prio=112 target_cpu=001
21077<...>-8894 ( 8858) [000] d..5 82314.001009: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=000
21078<...>-8894 ( 8858) [000] d..2 82314.001032: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
21079 [email protected]   (  619) [000] .... 82314.001045: binder_transaction_received: transaction=1568238
21080 [email protected]   (  619) [000] ...1 82314.001101: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
21081  appEventThread-8881  ( 8858) [002] d..1 82314.001105: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
21082  appEventThread-8881  ( 8858) [002] d..2 82314.001137: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
21083 [email protected]   (  619) [000] ...1 82314.001142: tracing_mark_write: C|619|SetVsyncState |1
21084 [email protected]   (  619) [000] d..4 82314.001243: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21085  appEventThread-8881  ( 8858) [002] d..2 82314.001270: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21086 [email protected]   (  619) [000] d..5 82314.001293: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21087          <idle>-0     (-----) [002] d..2 82314.001313: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21088 [email protected]   (  619) [000] ...1 82314.001357: tracing_mark_write: E|619
21089 [email protected]   (  619) [000] .... 82314.001374: binder_transaction: transaction=1568239 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
21090 [email protected]   (  619) [000] .... 82314.001380: binder_transaction_alloc_buf: transaction=1568239 data_size=8 offsets_size=0
21091 [email protected]   (  619) [000] d..2 82314.001386: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
21092 [email protected]   (  619) [000] dn.3 82314.001408: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
21093 [email protected]   (  619) [000] d..2 82314.001421: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
21094<...>-8894 ( 8858) [000] .... 82314.001435: binder_transaction_received: transaction=1568239
21095          <idle>-0     (-----) [003] .n.1 82314.001452: cpu_idle: state=4294967295 cpu_id=3
21096          <idle>-0     (-----) [003] d..2 82314.001480: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
21097<...>-8894 ( 8858) [000] d..2 82314.001505: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
21098 [email protected]   (  619) [000] .... 82314.001513: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
21099        DispSync-8879  ( 8858) [003] d..2 82314.001556: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21100          <idle>-0     (-----) [003] d..1 82314.001576: cpu_idle: state=2 cpu_id=3
21101 [email protected]   (  619) [000] d..2 82314.001602: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21102          <idle>-0     (-----) [000] d..1 82314.001630: cpu_idle: state=2 cpu_id=0
21103 crtc_commit:111-321   (  321) [002] d..2 82314.002104: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21104          <idle>-0     (-----) [002] d..1 82314.002130: cpu_idle: state=2 cpu_id=2
21105          <idle>-0     (-----) [001] d.s3 82314.002553: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21106          <idle>-0     (-----) [001] d.s4 82314.002581: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21107          <idle>-0     (-----) [001] ...1 82314.002600: cpu_idle: state=4294967295 cpu_id=1
21108          <idle>-0     (-----) [001] d..1 82314.002610: cpu_idle: state=2 cpu_id=1
21109          <idle>-0     (-----) [002] .n.1 82314.002914: cpu_idle: state=4294967295 cpu_id=2
21110          <idle>-0     (-----) [002] d..2 82314.002939: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21111 crtc_commit:111-321   (  321) [002] d..2 82314.003316: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21112          <idle>-0     (-----) [002] d..1 82314.003337: cpu_idle: state=2 cpu_id=2
21113          <idle>-0     (-----) [001] d.s3 82314.003671: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21114          <idle>-0     (-----) [001] d.s4 82314.003699: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21115          <idle>-0     (-----) [001] ...1 82314.003716: cpu_idle: state=4294967295 cpu_id=1
21116          <idle>-0     (-----) [001] d..1 82314.003726: cpu_idle: state=2 cpu_id=1
21117          <idle>-0     (-----) [002] .n.1 82314.004028: cpu_idle: state=4294967295 cpu_id=2
21118          <idle>-0     (-----) [002] d..2 82314.004053: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21119 crtc_commit:111-321   (  321) [002] d..1 82314.004256: clk_enable: disp_cc_mdss_vsync_clk_src
21120 crtc_commit:111-321   (  321) [002] d..1 82314.004266: clk_enable: disp_cc_mdss_rscc_vsync_clk
21121 crtc_commit:111-321   (  321) [002] d..1 82314.004344: clk_enable: disp_cc_mdss_rscc_ahb_clk
21122 crtc_commit:111-321   (  321) [002] d..2 82314.004459: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21123          <idle>-0     (-----) [002] d..1 82314.004476: cpu_idle: state=0 cpu_id=2
21124          <idle>-0     (-----) [002] d.h2 82314.004539: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21125          <idle>-0     (-----) [002] dnh3 82314.004557: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21126          <idle>-0     (-----) [002] .n.1 82314.004570: cpu_idle: state=4294967295 cpu_id=2
21127          <idle>-0     (-----) [002] d..2 82314.004585: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21128 crtc_commit:111-321   (  321) [002] d..2 82314.004616: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21129          <idle>-0     (-----) [002] d..1 82314.004628: cpu_idle: state=0 cpu_id=2
21130          <idle>-0     (-----) [002] d.h2 82314.004706: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21131          <idle>-0     (-----) [002] dnh3 82314.004719: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21132          <idle>-0     (-----) [002] .n.1 82314.004730: cpu_idle: state=4294967295 cpu_id=2
21133          <idle>-0     (-----) [002] d..2 82314.004742: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21134 crtc_commit:111-321   (  321) [002] d..1 82314.004809: clk_enable: gcc_disp_axi_clk
21135 crtc_commit:111-321   (  321) [002] d..1 82314.004842: clk_enable: disp_cc_mdss_ahb_clk
21136 crtc_commit:111-321   (  321) [002] d..1 82314.004863: clk_enable: disp_cc_mdss_axi_clk
21137 crtc_commit:111-321   (  321) [002] d..1 82314.004903: clk_enable: gcc_disp_gpll0_clk_src
21138 crtc_commit:111-321   (  321) [002] d..1 82314.005422: clk_enable: disp_cc_mdss_mdp_clk_src
21139 crtc_commit:111-321   (  321) [002] d..1 82314.005486: clk_enable: disp_cc_mdss_mdp_clk
21140 crtc_commit:111-321   (  321) [002] d.s3 82314.005543: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
21141 crtc_commit:111-321   (  321) [002] d.s4 82314.005628: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21142 crtc_commit:111-321   (  321) [002] d..1 82314.005643: clk_enable: disp_cc_mdss_vsync_clk
21143 crtc_commit:111-321   (  321) [002] d..2 82314.006038: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21144<...>-1054 ( 1054) [002] d..2 82314.006168: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21145          <idle>-0     (-----) [002] d..1 82314.006200: cpu_idle: state=0 cpu_id=2
21146          <idle>-0     (-----) [002] ...1 82314.007616: cpu_idle: state=4294967295 cpu_id=2
21147          <idle>-0     (-----) [002] d..1 82314.007623: cpu_idle: state=2 cpu_id=2
21148          <idle>-0     (-----) [003] d.h2 82314.015571: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
21149          <idle>-0     (-----) [003] dnh3 82314.015607: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
21150          <idle>-0     (-----) [003] dnh3 82314.015720: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
21151          <idle>-0     (-----) [003] dnh4 82314.015759: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
21152          <idle>-0     (-----) [003] .n.1 82314.015774: cpu_idle: state=4294967295 cpu_id=3
21153          <idle>-0     (-----) [003] d..2 82314.015794: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
21154        DispSync-8879  ( 8858) [003] d..1 82314.015841: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
21155        DispSync-8879  ( 8858) [003] d..2 82314.015868: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
21156        DispSync-8879  ( 8858) [003] d..2 82314.015929: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21157          <idle>-0     (-----) [003] d..2 82314.015937: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21158          <idle>-0     (-----) [003] dn.3 82314.015963: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21159          <idle>-0     (-----) [003] d..2 82314.015978: 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
21160     ksoftirqd/3-34    (   34) [003] d.s2 82314.016004: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21161     ksoftirqd/3-34    (   34) [003] d.s3 82314.016057: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
21162          <idle>-0     (-----) [002] .n.1 82314.016066: cpu_idle: state=4294967295 cpu_id=2
21163     ksoftirqd/3-34    (   34) [003] d..2 82314.016082: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21164          <idle>-0     (-----) [002] d..2 82314.016101: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
21165          <idle>-0     (-----) [001] .n.1 82314.016179: cpu_idle: state=4294967295 cpu_id=1
21166          <idle>-0     (-----) [001] d..2 82314.016236: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
21167         sugov:0-576   (  576) [002] .... 82314.016241: clk_set_rate: pwrcl_clk 748800000
21168         sugov:0-576   (  576) [002] .... 82314.016300: clk_set_rate: cpu3_pwrcl_clk 652800000
21169         sugov:0-576   (  576) [002] .... 82314.016319: clk_set_rate: cpu2_pwrcl_clk 652800000
21170         sugov:0-576   (  576) [002] .... 82314.016329: clk_set_rate: cpu1_pwrcl_clk 652800000
21171         sugov:0-576   (  576) [002] .... 82314.016340: clk_set_rate: cpu0_pwrcl_clk 748800000
21172         sugov:0-576   (  576) [002] .... 82314.016359: cpu_frequency: state=748800 cpu_id=0
21173<...>-1054 ( 1054) [003] d..2 82314.016391: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21174          <idle>-0     (-----) [003] d..1 82314.016410: cpu_idle: state=2 cpu_id=3
21175  appEventThread-8881  ( 8858) [001] d..3 82314.016417: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
21176         sugov:0-576   (  576) [002] .... 82314.016434: cpu_frequency: state=748800 cpu_id=1
21177         sugov:0-576   (  576) [002] .... 82314.016440: cpu_frequency: state=748800 cpu_id=2
21178         sugov:0-576   (  576) [002] .... 82314.016444: cpu_frequency: state=748800 cpu_id=3
21179         sugov:0-576   (  576) [002] d..2 82314.016498: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21180  appEventThread-8881  ( 8858) [001] d..2 82314.016512: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21181          <idle>-0     (-----) [002] d..1 82314.016524: cpu_idle: state=0 cpu_id=2
21182          <idle>-0     (-----) [001] d..1 82314.016535: cpu_idle: state=2 cpu_id=1
21183          <idle>-0     (-----) [004] dnh2 82314.017520: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
21184          <idle>-0     (-----) [004] .n.1 82314.017529: cpu_idle: state=4294967295 cpu_id=4
21185          <idle>-0     (-----) [004] d..2 82314.017543: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
21186          <idle>-0     (-----) [002] ...1 82314.017937: cpu_idle: state=4294967295 cpu_id=2
21187          <idle>-0     (-----) [002] d..1 82314.017943: cpu_idle: state=2 cpu_id=2
21188 s.nexuslauncher-10023 (10023) [004] d..2 82314.018182: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
21189          <idle>-0     (-----) [004] d..1 82314.018195: cpu_idle: state=2 cpu_id=4
21190          <idle>-0     (-----) [000] d.h7 82314.021462: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21191          <idle>-0     (-----) [000] dnh8 82314.021489: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21192          <idle>-0     (-----) [000] dnh9 82314.021516: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21193          <idle>-0     (-----) [000] dnha 82314.021542: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21194          <idle>-0     (-----) [000] dnh7 82314.021559: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
21195          <idle>-0     (-----) [000] dnh8 82314.021614: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21196          <idle>-0     (-----) [000] .n.1 82314.021726: cpu_idle: state=4294967295 cpu_id=0
21197          <idle>-0     (-----) [000] d..2 82314.021749: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
21198          <idle>-0     (-----) [002] .n.1 82314.021836: cpu_idle: state=4294967295 cpu_id=2
21199     kworker/0:1-25262 (25262) [000] d..2 82314.021864: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21200          <idle>-0     (-----) [002] d..2 82314.021868: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21201 crtc_commit:111-321   (  321) [002] d..1 82314.021953: clk_disable: disp_cc_mdss_vsync_clk
21202 crtc_commit:111-321   (  321) [002] d..1 82314.021984: clk_disable: disp_cc_mdss_mdp_clk
21203 SDM_EventThread-644   (  619) [000] ...1 82314.021990: tracing_mark_write: B|619|HWCCallbacks::Vsync::
21204 crtc_commit:111-321   (  321) [002] d..1 82314.021997: clk_disable: disp_cc_mdss_mdp_clk_src
21205 SDM_EventThread-644   (  619) [000] ...1 82314.022018: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
21206 SDM_EventThread-644   (  619) [000] ...1 82314.022024: tracing_mark_write: E|619
21207 crtc_commit:111-321   (  321) [002] d..1 82314.022035: clk_disable: gcc_disp_gpll0_clk_src
21208 SDM_EventThread-644   (  619) [000] .... 82314.022097: binder_transaction: transaction=1568240 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
21209 SDM_EventThread-644   (  619) [000] .... 82314.022103: binder_transaction_alloc_buf: transaction=1568240 data_size=76 offsets_size=0
21210 SDM_EventThread-644   (  619) [000] d..4 82314.022119: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
21211 SDM_EventThread-644   (  619) [000] d..5 82314.022166: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
21212 SDM_EventThread-644   (  619) [000] ...1 82314.022214: tracing_mark_write: E|619
21213 SDM_EventThread-644   (  619) [000] d..2 82314.022298: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21214          <idle>-0     (-----) [000] d..1 82314.022321: cpu_idle: state=2 cpu_id=0
21215          <idle>-0     (-----) [001] .n.1 82314.022491: cpu_idle: state=4294967295 cpu_id=1
21216          <idle>-0     (-----) [001] d..2 82314.022523: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
21217<...>-8890 ( 8858) [001] .... 82314.022543: binder_transaction_received: transaction=1568240
21218 crtc_commit:111-321   (  321) [002] d..1 82314.022564: clk_disable: disp_cc_mdss_axi_clk
21219 crtc_commit:111-321   (  321) [002] d..1 82314.022580: clk_disable: disp_cc_mdss_ahb_clk
21220 crtc_commit:111-321   (  321) [002] d..1 82314.022593: clk_disable: gcc_disp_axi_clk
21221<...>-8890 ( 8858) [001] ...1 82314.022641: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
21222<...>-8890 ( 8858) [001] d..1 82314.022683: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
21223 crtc_commit:111-321   (  321) [002] d..2 82314.022704: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21224<...>-8890 ( 8858) [001] d..2 82314.022712: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
21225          <idle>-0     (-----) [002] d..1 82314.022722: cpu_idle: state=0 cpu_id=2
21226<...>-8890 ( 8858) [001] ...1 82314.022732: tracing_mark_write: E|8858
21227          <idle>-0     (-----) [002] d.h2 82314.022780: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21228          <idle>-0     (-----) [002] dnh3 82314.022800: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21229          <idle>-0     (-----) [002] .n.1 82314.022811: cpu_idle: state=4294967295 cpu_id=2
21230<...>-8890 ( 8858) [001] d..2 82314.022819: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21231          <idle>-0     (-----) [002] d..2 82314.022825: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21232 crtc_commit:111-321   (  321) [002] d..1 82314.022843: clk_disable: disp_cc_mdss_rscc_ahb_clk
21233          <idle>-0     (-----) [001] d..1 82314.022844: cpu_idle: state=2 cpu_id=1
21234 crtc_commit:111-321   (  321) [002] d..1 82314.022859: clk_disable: disp_cc_mdss_rscc_vsync_clk
21235 crtc_commit:111-321   (  321) [002] d..1 82314.022870: clk_disable: disp_cc_mdss_vsync_clk_src
21236          <idle>-0     (-----) [003] .n.1 82314.023009: cpu_idle: state=4294967295 cpu_id=3
21237          <idle>-0     (-----) [003] d..2 82314.023033: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
21238 crtc_commit:111-321   (  321) [002] d..2 82314.023070: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21239          <idle>-0     (-----) [002] d..1 82314.023090: cpu_idle: state=2 cpu_id=2
21240        DispSync-8879  ( 8858) [003] d..2 82314.023099: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21241          <idle>-0     (-----) [003] d..1 82314.023118: cpu_idle: state=2 cpu_id=3
21242          <idle>-0     (-----) [001] d.s3 82314.023417: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21243          <idle>-0     (-----) [001] d.s4 82314.023443: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21244          <idle>-0     (-----) [001] ...1 82314.023459: cpu_idle: state=4294967295 cpu_id=1
21245          <idle>-0     (-----) [001] d..1 82314.023468: cpu_idle: state=2 cpu_id=1
21246          <idle>-0     (-----) [002] .n.1 82314.023744: cpu_idle: state=4294967295 cpu_id=2
21247          <idle>-0     (-----) [002] d..2 82314.023768: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21248 crtc_commit:111-321   (  321) [002] d..2 82314.024009: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21249          <idle>-0     (-----) [002] d..1 82314.024027: cpu_idle: state=2 cpu_id=2
21250          <idle>-0     (-----) [001] d.s3 82314.024375: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21251          <idle>-0     (-----) [001] d.s4 82314.024401: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21252          <idle>-0     (-----) [001] ...1 82314.024418: cpu_idle: state=4294967295 cpu_id=1
21253          <idle>-0     (-----) [001] d..1 82314.024427: cpu_idle: state=2 cpu_id=1
21254          <idle>-0     (-----) [002] .n.1 82314.024721: cpu_idle: state=4294967295 cpu_id=2
21255          <idle>-0     (-----) [002] d..2 82314.024745: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21256 crtc_commit:111-321   (  321) [002] d..3 82314.024814: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21257 crtc_commit:111-321   (  321) [002] d..4 82314.024872: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
21258 crtc_commit:111-321   (  321) [002] d..2 82314.025108: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21259 SDM_EventThread-644   (  619) [002] d.s4 82314.025182: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
21260 SDM_EventThread-644   (  619) [002] d.s5 82314.025232: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21261 SDM_EventThread-644   (  619) [002] d..2 82314.025355: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21262<...>-1054 ( 1054) [002] d..2 82314.025467: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21263          <idle>-0     (-----) [002] d..1 82314.025488: cpu_idle: state=2 cpu_id=2
21264          <idle>-0     (-----) [001] d.s3 82314.025637: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21265          <idle>-0     (-----) [001] d.s4 82314.025664: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21266          <idle>-0     (-----) [001] ...1 82314.025680: cpu_idle: state=4294967295 cpu_id=1
21267          <idle>-0     (-----) [001] d..1 82314.025689: cpu_idle: state=2 cpu_id=1
21268          <idle>-0     (-----) [002] .n.1 82314.025988: cpu_idle: state=4294967295 cpu_id=2
21269          <idle>-0     (-----) [002] d..2 82314.026013: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21270 crtc_commit:111-321   (  321) [002] d..2 82314.026229: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21271          <idle>-0     (-----) [002] d..1 82314.026251: cpu_idle: state=0 cpu_id=2
21272          <idle>-0     (-----) [001] d.s3 82314.026599: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21273          <idle>-0     (-----) [001] d.s4 82314.026634: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21274          <idle>-0     (-----) [002] .n.1 82314.026642: cpu_idle: state=4294967295 cpu_id=2
21275          <idle>-0     (-----) [002] d..2 82314.026654: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21276          <idle>-0     (-----) [001] ...1 82314.026655: cpu_idle: state=4294967295 cpu_id=1
21277          <idle>-0     (-----) [001] d..1 82314.026674: cpu_idle: state=0 cpu_id=1
21278 crtc_commit:111-321   (  321) [002] d..1 82314.026687: clk_enable: disp_cc_mdss_vsync_clk_src
21279 crtc_commit:111-321   (  321) [002] d..1 82314.026689: clk_enable: disp_cc_mdss_rscc_vsync_clk
21280 crtc_commit:111-321   (  321) [002] d..1 82314.026712: clk_enable: disp_cc_mdss_rscc_ahb_clk
21281 crtc_commit:111-321   (  321) [002] d..2 82314.026791: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21282          <idle>-0     (-----) [002] d..1 82314.026804: cpu_idle: state=0 cpu_id=2
21283          <idle>-0     (-----) [002] d.h2 82314.026883: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21284          <idle>-0     (-----) [002] dnh3 82314.026905: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21285          <idle>-0     (-----) [002] .n.1 82314.026917: cpu_idle: state=4294967295 cpu_id=2
21286          <idle>-0     (-----) [002] d..2 82314.026930: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21287 crtc_commit:111-321   (  321) [002] d..2 82314.026958: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21288          <idle>-0     (-----) [002] d..1 82314.026969: cpu_idle: state=0 cpu_id=2
21289          <idle>-0     (-----) [002] d.h2 82314.027054: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21290          <idle>-0     (-----) [002] dnh3 82314.027067: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21291          <idle>-0     (-----) [002] .n.1 82314.027075: cpu_idle: state=4294967295 cpu_id=2
21292          <idle>-0     (-----) [002] d..2 82314.027088: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21293 crtc_commit:111-321   (  321) [002] d..1 82314.027126: clk_enable: gcc_disp_axi_clk
21294 crtc_commit:111-321   (  321) [002] d..1 82314.027140: clk_enable: disp_cc_mdss_ahb_clk
21295 crtc_commit:111-321   (  321) [002] d..1 82314.027154: clk_enable: disp_cc_mdss_axi_clk
21296 crtc_commit:111-321   (  321) [002] d..1 82314.027180: clk_enable: gcc_disp_gpll0_clk_src
21297 crtc_commit:111-321   (  321) [002] d..1 82314.027689: clk_enable: disp_cc_mdss_mdp_clk_src
21298 crtc_commit:111-321   (  321) [002] d..1 82314.027732: clk_enable: disp_cc_mdss_mdp_clk
21299 crtc_commit:111-321   (  321) [002] d..1 82314.027745: clk_enable: disp_cc_mdss_vsync_clk
21300 crtc_commit:111-321   (  321) [002] d..2 82314.027989: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21301          <idle>-0     (-----) [002] d..1 82314.028009: cpu_idle: state=0 cpu_id=2
21302          <idle>-0     (-----) [001] d..2 82314.028531: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21303          <idle>-0     (-----) [001] dn.3 82314.028563: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21304          <idle>-0     (-----) [001] .n.1 82314.028571: cpu_idle: state=4294967295 cpu_id=1
21305          <idle>-0     (-----) [001] d..2 82314.028597: 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
21306     ksoftirqd/1-18    (   18) [001] d..2 82314.028673: 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
21307          <idle>-0     (-----) [001] d..1 82314.028689: cpu_idle: state=2 cpu_id=1
21308          <idle>-0     (-----) [002] ...1 82314.029366: cpu_idle: state=4294967295 cpu_id=2
21309          <idle>-0     (-----) [002] d..1 82314.029373: cpu_idle: state=2 cpu_id=2
21310          <idle>-0     (-----) [000] d.h7 82314.036811: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21311          <idle>-0     (-----) [003] d..2 82314.036811: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21312          <idle>-0     (-----) [003] dn.3 82314.036973: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21313          <idle>-0     (-----) [000] dnh8 82314.036973: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21314          <idle>-0     (-----) [000] dnh9 82314.037047: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21315          <idle>-0     (-----) [003] dnH3 82314.037304: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
21316          <idle>-0     (-----) [000] dnha 82314.037307: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21317          <idle>-0     (-----) [000] dnh7 82314.037331: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
21318          <idle>-0     (-----) [003] dnH4 82314.037379: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
21319          <idle>-0     (-----) [003] dns3 82314.037433: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21320          <idle>-0     (-----) [000] dnh8 82314.037482: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
21321          <idle>-0     (-----) [003] dns4 82314.037507: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
21322          <idle>-0     (-----) [003] .n.1 82314.037554: cpu_idle: state=4294967295 cpu_id=3
21323          <idle>-0     (-----) [000] .n.1 82314.037654: cpu_idle: state=4294967295 cpu_id=0
21324          <idle>-0     (-----) [002] .n.1 82314.037675: cpu_idle: state=4294967295 cpu_id=2
21325          <idle>-0     (-----) [003] d..2 82314.037687: 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
21326          <idle>-0     (-----) [000] d..2 82314.037699: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
21327          <idle>-0     (-----) [002] d..2 82314.037724: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21328          <idle>-0     (-----) [001] .n.1 82314.037743: cpu_idle: state=4294967295 cpu_id=1
21329     ksoftirqd/3-34    (   34) [003] d..2 82314.037751: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21330          <idle>-0     (-----) [001] d..2 82314.037792: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
21331 crtc_commit:111-321   (  321) [002] d..1 82314.037896: clk_disable: disp_cc_mdss_vsync_clk
21332     kworker/0:1-25262 (25262) [000] d..2 82314.037899: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21333         sugov:0-576   (  576) [001] .... 82314.037908: clk_set_rate: pwrcl_clk 652800000
21334         sugov:0-576   (  576) [001] .... 82314.037983: clk_set_rate: cpu3_pwrcl_clk 748800000
21335         sugov:0-576   (  576) [001] .... 82314.038001: clk_set_rate: cpu2_pwrcl_clk 748800000
21336         sugov:0-576   (  576) [001] .... 82314.038011: clk_set_rate: cpu1_pwrcl_clk 748800000
21337         sugov:0-576   (  576) [001] .... 82314.038022: clk_set_rate: cpu0_pwrcl_clk 652800000
21338 SDM_EventThread-644   (  619) [003] ...1 82314.038077: tracing_mark_write: B|619|HWCCallbacks::Vsync::
21339         sugov:0-576   (  576) [001] .... 82314.038096: cpu_frequency: state=652800 cpu_id=0
21340 crtc_commit:111-321   (  321) [002] d..1 82314.038107: clk_disable: disp_cc_mdss_mdp_clk
21341 crtc_commit:111-321   (  321) [002] d..1 82314.038125: clk_disable: disp_cc_mdss_mdp_clk_src
21342 SDM_EventThread-644   (  619) [003] ...1 82314.038126: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
21343 SDM_EventThread-644   (  619) [003] ...1 82314.038135: tracing_mark_write: E|619
21344 crtc_commit:111-321   (  321) [002] d..1 82314.038179: clk_disable: gcc_disp_gpll0_clk_src
21345         sugov:0-576   (  576) [001] .... 82314.038201: cpu_frequency: state=652800 cpu_id=1
21346         sugov:0-576   (  576) [001] .... 82314.038208: cpu_frequency: state=652800 cpu_id=2
21347         sugov:0-576   (  576) [001] .... 82314.038213: cpu_frequency: state=652800 cpu_id=3
21348         sugov:0-576   (  576) [001] d..2 82314.038332: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21349 SDM_EventThread-644   (  619) [003] .... 82314.038338: binder_transaction: transaction=1568241 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
21350 SDM_EventThread-644   (  619) [003] .... 82314.038369: binder_transaction_alloc_buf: transaction=1568241 data_size=76 offsets_size=0
21351          <idle>-0     (-----) [001] d..1 82314.038394: cpu_idle: state=2 cpu_id=1
21352 SDM_EventThread-644   (  619) [003] d..4 82314.038405: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
21353 SDM_EventThread-644   (  619) [003] d..5 82314.038455: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
21354 SDM_EventThread-644   (  619) [003] ...1 82314.038723: tracing_mark_write: E|619
21355 crtc_commit:111-321   (  321) [002] d..1 82314.038869: clk_disable: disp_cc_mdss_axi_clk
21356 crtc_commit:111-321   (  321) [002] d..1 82314.038892: clk_disable: disp_cc_mdss_ahb_clk
21357 SDM_EventThread-644   (  619) [003] d..2 82314.038910: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21358 crtc_commit:111-321   (  321) [002] d..1 82314.038911: clk_disable: gcc_disp_axi_clk
21359          <idle>-0     (-----) [003] d..1 82314.038938: cpu_idle: state=0 cpu_id=3
21360          <idle>-0     (-----) [001] .n.1 82314.039044: cpu_idle: state=4294967295 cpu_id=1
21361<...>-1054 ( 1054) [000] d..2 82314.039073: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21362 crtc_commit:111-321   (  321) [002] d..2 82314.039080: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21363          <idle>-0     (-----) [001] d..2 82314.039081: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
21364          <idle>-0     (-----) [002] d..1 82314.039106: cpu_idle: state=0 cpu_id=2
21365          <idle>-0     (-----) [000] d..1 82314.039106: cpu_idle: state=2 cpu_id=0
21366<...>-8890 ( 8858) [001] .... 82314.039117: binder_transaction_received: transaction=1568241
21367          <idle>-0     (-----) [002] d.h2 82314.039151: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21368          <idle>-0     (-----) [002] dnh3 82314.039170: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21369          <idle>-0     (-----) [002] .n.1 82314.039181: cpu_idle: state=4294967295 cpu_id=2
21370          <idle>-0     (-----) [002] d..2 82314.039195: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21371 crtc_commit:111-321   (  321) [002] d..1 82314.039235: clk_disable: disp_cc_mdss_rscc_ahb_clk
21372 crtc_commit:111-321   (  321) [002] d..1 82314.039258: clk_disable: disp_cc_mdss_rscc_vsync_clk
21373 crtc_commit:111-321   (  321) [002] d..1 82314.039273: clk_disable: disp_cc_mdss_vsync_clk_src
21374<...>-8890 ( 8858) [001] ...1 82314.039346: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
21375<...>-8890 ( 8858) [001] ...1 82314.039418: tracing_mark_write: E|8858
21376<...>-8890 ( 8858) [001] d..2 82314.039564: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21377          <idle>-0     (-----) [001] d..1 82314.039585: cpu_idle: state=2 cpu_id=1
21378 crtc_commit:111-321   (  321) [002] d..2 82314.039810: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21379          <idle>-0     (-----) [002] d..1 82314.039831: cpu_idle: state=2 cpu_id=2
21380          <idle>-0     (-----) [003] d.h2 82314.039938: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
21381          <idle>-0     (-----) [003] dnh3 82314.039970: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
21382          <idle>-0     (-----) [003] .n.1 82314.039983: cpu_idle: state=4294967295 cpu_id=3
21383          <idle>-0     (-----) [003] d..2 82314.040000: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
21384        DispSync-8879  ( 8858) [003] d..1 82314.040128: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
21385        DispSync-8879  ( 8858) [003] d..2 82314.040165: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
21386          <idle>-0     (-----) [001] dns3 82314.040186: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21387          <idle>-0     (-----) [001] dns4 82314.040218: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21388          <idle>-0     (-----) [001] .n.1 82314.040235: cpu_idle: state=4294967295 cpu_id=1
21389        DispSync-8879  ( 8858) [003] d..2 82314.040256: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21390          <idle>-0     (-----) [001] d..2 82314.040258: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
21391          <idle>-0     (-----) [003] d..1 82314.040275: cpu_idle: state=2 cpu_id=3
21392  appEventThread-8881  ( 8858) [001] d..1 82314.040450: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
21393  appEventThread-8881  ( 8858) [001] d..2 82314.040469: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
21394          <idle>-0     (-----) [002] .n.1 82314.040522: cpu_idle: state=4294967295 cpu_id=2
21395  appEventThread-8881  ( 8858) [001] d..2 82314.040528: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21396          <idle>-0     (-----) [002] d..2 82314.040550: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21397          <idle>-0     (-----) [001] d..1 82314.040550: cpu_idle: state=2 cpu_id=1
21398          <idle>-0     (-----) [003] .n.1 82314.040770: cpu_idle: state=4294967295 cpu_id=3
21399          <idle>-0     (-----) [003] d..2 82314.040796: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
21400        DispSync-8879  ( 8858) [003] d..2 82314.040855: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21401          <idle>-0     (-----) [003] d..1 82314.040874: cpu_idle: state=2 cpu_id=3
21402 crtc_commit:111-321   (  321) [002] d..2 82314.040946: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21403          <idle>-0     (-----) [002] d..1 82314.040968: cpu_idle: state=2 cpu_id=2
21404          <idle>-0     (-----) [001] d.s3 82314.041299: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21405          <idle>-0     (-----) [001] d.s4 82314.041327: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21406          <idle>-0     (-----) [001] ...1 82314.041344: cpu_idle: state=4294967295 cpu_id=1
21407          <idle>-0     (-----) [001] d..1 82314.041354: cpu_idle: state=2 cpu_id=1
21408          <idle>-0     (-----) [002] .n.1 82314.041661: cpu_idle: state=4294967295 cpu_id=2
21409          <idle>-0     (-----) [002] d..2 82314.041688: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21410 crtc_commit:111-321   (  321) [002] d..3 82314.041765: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
21411 crtc_commit:111-321   (  321) [002] d..4 82314.041844: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
21412 crtc_commit:111-321   (  321) [002] d..2 82314.042155: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21413 SDM_EventThread-644   (  619) [002] d..2 82314.042320: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21414          <idle>-0     (-----) [002] d..1 82314.042343: cpu_idle: state=2 cpu_id=2
21415          <idle>-0     (-----) [001] d.s3 82314.042706: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21416          <idle>-0     (-----) [001] d.s4 82314.042734: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21417          <idle>-0     (-----) [001] ...1 82314.042751: cpu_idle: state=4294967295 cpu_id=1
21418          <idle>-0     (-----) [001] d..1 82314.042775: cpu_idle: state=0 cpu_id=1
21419          <idle>-0     (-----) [002] .n.1 82314.043084: cpu_idle: state=4294967295 cpu_id=2
21420          <idle>-0     (-----) [002] d..2 82314.043120: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21421 crtc_commit:111-321   (  321) [002] d..2 82314.043373: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21422          <idle>-0     (-----) [001] d.s3 82314.043394: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21423          <idle>-0     (-----) [002] d..1 82314.043402: cpu_idle: state=0 cpu_id=2
21424          <idle>-0     (-----) [001] d.s4 82314.043413: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21425          <idle>-0     (-----) [002] .n.1 82314.043422: cpu_idle: state=4294967295 cpu_id=2
21426          <idle>-0     (-----) [001] ...1 82314.043430: cpu_idle: state=4294967295 cpu_id=1
21427          <idle>-0     (-----) [001] d..1 82314.043436: cpu_idle: state=0 cpu_id=1
21428          <idle>-0     (-----) [002] d..2 82314.043436: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21429 crtc_commit:111-321   (  321) [002] d..1 82314.043509: clk_enable: disp_cc_mdss_vsync_clk_src
21430 crtc_commit:111-321   (  321) [002] d..1 82314.043519: clk_enable: disp_cc_mdss_rscc_vsync_clk
21431 crtc_commit:111-321   (  321) [002] d..1 82314.043543: clk_enable: disp_cc_mdss_rscc_ahb_clk
21432 crtc_commit:111-321   (  321) [002] d..2 82314.043629: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21433          <idle>-0     (-----) [002] d..1 82314.043642: cpu_idle: state=0 cpu_id=2
21434          <idle>-0     (-----) [002] d.h2 82314.043721: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21435          <idle>-0     (-----) [002] dnh3 82314.043745: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21436          <idle>-0     (-----) [002] .n.1 82314.043762: cpu_idle: state=4294967295 cpu_id=2
21437          <idle>-0     (-----) [002] d..2 82314.043774: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21438 crtc_commit:111-321   (  321) [002] d..2 82314.043809: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21439          <idle>-0     (-----) [002] d..1 82314.043821: cpu_idle: state=0 cpu_id=2
21440          <idle>-0     (-----) [002] d.h2 82314.043901: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21441          <idle>-0     (-----) [002] dnh3 82314.043915: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21442          <idle>-0     (-----) [002] .n.1 82314.043925: cpu_idle: state=4294967295 cpu_id=2
21443          <idle>-0     (-----) [002] d..2 82314.043938: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21444 crtc_commit:111-321   (  321) [002] d..1 82314.043982: clk_enable: gcc_disp_axi_clk
21445 crtc_commit:111-321   (  321) [002] d..1 82314.043998: clk_enable: disp_cc_mdss_ahb_clk
21446 crtc_commit:111-321   (  321) [002] d..1 82314.044014: clk_enable: disp_cc_mdss_axi_clk
21447 crtc_commit:111-321   (  321) [002] d..1 82314.044040: clk_enable: gcc_disp_gpll0_clk_src
21448 crtc_commit:111-321   (  321) [002] d..1 82314.044555: clk_enable: disp_cc_mdss_mdp_clk_src
21449 crtc_commit:111-321   (  321) [002] d..1 82314.044603: clk_enable: disp_cc_mdss_mdp_clk
21450 crtc_commit:111-321   (  321) [002] d..1 82314.044616: clk_enable: disp_cc_mdss_vsync_clk
21451 crtc_commit:111-321   (  321) [002] d..2 82314.044983: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21452          <idle>-0     (-----) [002] d..1 82314.045004: cpu_idle: state=0 cpu_id=2
21453          <idle>-0     (-----) [002] d..2 82314.046340: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21454          <idle>-0     (-----) [002] dn.3 82314.046373: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21455          <idle>-0     (-----) [002] .n.1 82314.046381: cpu_idle: state=4294967295 cpu_id=2
21456          <idle>-0     (-----) [002] d..2 82314.046402: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21457     ksoftirqd/2-26    (   26) [002] d.s2 82314.046429: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
21458     ksoftirqd/2-26    (   26) [002] d.s3 82314.046494: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21459     ksoftirqd/2-26    (   26) [002] d..2 82314.046523: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21460<...>-1054 ( 1054) [002] d..2 82314.046889: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21461          <idle>-0     (-----) [001] d.s3 82314.046902: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21462          <idle>-0     (-----) [002] d..1 82314.046909: cpu_idle: state=2 cpu_id=2
21463          <idle>-0     (-----) [001] d.s4 82314.046932: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
21464          <idle>-0     (-----) [001] d.s4 82314.046949: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21465          <idle>-0     (-----) [001] ...1 82314.046962: cpu_idle: state=4294967295 cpu_id=1
21466          <idle>-0     (-----) [001] d..1 82314.046974: cpu_idle: state=0 cpu_id=1
21467          <idle>-0     (-----) [002] .n.1 82314.047349: cpu_idle: state=4294967295 cpu_id=2
21468          <idle>-0     (-----) [002] d..2 82314.047381: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21469<...>-1054 ( 1054) [002] d..2 82314.047518: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21470          <idle>-0     (-----) [002] d..1 82314.047540: cpu_idle: state=0 cpu_id=2
21471          <idle>-0     (-----) [001] d..2 82314.048746: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21472          <idle>-0     (-----) [001] dn.3 82314.048776: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21473          <idle>-0     (-----) [002] ...1 82314.048779: cpu_idle: state=4294967295 cpu_id=2
21474          <idle>-0     (-----) [001] .n.1 82314.048782: cpu_idle: state=4294967295 cpu_id=1
21475          <idle>-0     (-----) [002] d..1 82314.048785: cpu_idle: state=2 cpu_id=2
21476          <idle>-0     (-----) [001] d..2 82314.048808: 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
21477     ksoftirqd/1-18    (   18) [001] d.s2 82314.048835: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21478     ksoftirqd/1-18    (   18) [001] d.s3 82314.048854: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21479     ksoftirqd/1-18    (   18) [001] d..2 82314.048909: 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
21480          <idle>-0     (-----) [001] d..1 82314.048925: cpu_idle: state=2 cpu_id=1
21481          <idle>-0     (-----) [002] .n.1 82314.049229: cpu_idle: state=4294967295 cpu_id=2
21482          <idle>-0     (-----) [002] d..2 82314.049263: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21483<...>-1054 ( 1054) [002] d..2 82314.049568: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21484          <idle>-0     (-----) [002] d..1 82314.049599: cpu_idle: state=0 cpu_id=2
21485          <idle>-0     (-----) [001] d.s3 82314.050378: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21486          <idle>-0     (-----) [001] d.s4 82314.050404: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
21487          <idle>-0     (-----) [001] d.s4 82314.050419: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21488          <idle>-0     (-----) [002] .n.1 82314.050428: cpu_idle: state=4294967295 cpu_id=2
21489          <idle>-0     (-----) [001] ...1 82314.050439: cpu_idle: state=4294967295 cpu_id=1
21490          <idle>-0     (-----) [002] d..2 82314.050445: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21491          <idle>-0     (-----) [001] d..1 82314.050460: cpu_idle: state=0 cpu_id=1
21492<...>-1054 ( 1054) [002] d..2 82314.050486: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21493          <idle>-0     (-----) [002] d..1 82314.050504: cpu_idle: state=0 cpu_id=2
21494          <idle>-0     (-----) [000] d.h7 82314.052027: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21495          <idle>-0     (-----) [000] dnh8 82314.052061: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21496          <idle>-0     (-----) [000] dnh9 82314.052075: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21497          <idle>-0     (-----) [000] dnha 82314.052107: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21498          <idle>-0     (-----) [000] dnh7 82314.052115: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
21499          <idle>-0     (-----) [002] .n.1 82314.052116: cpu_idle: state=4294967295 cpu_id=2
21500          <idle>-0     (-----) [002] d..2 82314.052137: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21501          <idle>-0     (-----) [000] dnh8 82314.052171: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21502 crtc_commit:111-321   (  321) [002] d..1 82314.052219: clk_disable: disp_cc_mdss_vsync_clk
21503 crtc_commit:111-321   (  321) [002] d..1 82314.052240: clk_disable: disp_cc_mdss_mdp_clk
21504 crtc_commit:111-321   (  321) [002] d..1 82314.052253: clk_disable: disp_cc_mdss_mdp_clk_src
21505          <idle>-0     (-----) [000] dnh3 82314.052279: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
21506 crtc_commit:111-321   (  321) [002] d..1 82314.052296: clk_disable: gcc_disp_gpll0_clk_src
21507          <idle>-0     (-----) [000] dnh4 82314.052298: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
21508          <idle>-0     (-----) [001] .n.1 82314.052306: cpu_idle: state=4294967295 cpu_id=1
21509          <idle>-0     (-----) [000] .n.1 82314.052308: cpu_idle: state=4294967295 cpu_id=0
21510          <idle>-0     (-----) [001] d..2 82314.052331: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
21511          <idle>-0     (-----) [000] d..2 82314.052334: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
21512     kworker/0:1-25262 (25262) [000] d..2 82314.052358: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21513         sugov:0-576   (  576) [001] .... 82314.052365: clk_set_rate: pwrcl_clk 748800000
21514         sugov:0-576   (  576) [001] .... 82314.052378: clk_set_rate: cpu3_pwrcl_clk 652800000
21515         sugov:0-576   (  576) [001] .... 82314.052391: clk_set_rate: cpu2_pwrcl_clk 652800000
21516         sugov:0-576   (  576) [001] .... 82314.052402: clk_set_rate: cpu1_pwrcl_clk 652800000
21517 SDM_EventThread-644   (  619) [000] ...1 82314.052407: tracing_mark_write: B|619|HWCCallbacks::Vsync::
21518         sugov:0-576   (  576) [001] .... 82314.052412: clk_set_rate: cpu0_pwrcl_clk 748800000
21519 SDM_EventThread-644   (  619) [000] ...1 82314.052419: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
21520         sugov:0-576   (  576) [001] .... 82314.052426: cpu_frequency: state=748800 cpu_id=0
21521 SDM_EventThread-644   (  619) [000] ...1 82314.052427: tracing_mark_write: E|619
21522         sugov:0-576   (  576) [001] .... 82314.052446: cpu_frequency: state=748800 cpu_id=1
21523         sugov:0-576   (  576) [001] .... 82314.052452: cpu_frequency: state=748800 cpu_id=2
21524         sugov:0-576   (  576) [001] .... 82314.052456: cpu_frequency: state=748800 cpu_id=3
21525 SDM_EventThread-644   (  619) [000] .... 82314.052460: binder_transaction: transaction=1568242 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
21526 SDM_EventThread-644   (  619) [000] .... 82314.052466: binder_transaction_alloc_buf: transaction=1568242 data_size=76 offsets_size=0
21527 SDM_EventThread-644   (  619) [000] d..4 82314.052474: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
21528         sugov:0-576   (  576) [001] d..2 82314.052511: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21529 SDM_EventThread-644   (  619) [000] d..5 82314.052515: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=003
21530          <idle>-0     (-----) [001] d..2 82314.052517: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21531          <idle>-0     (-----) [001] dn.3 82314.052535: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21532          <idle>-0     (-----) [001] d..2 82314.052548: 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
21533 SDM_EventThread-644   (  619) [000] ...1 82314.052548: tracing_mark_write: E|619
21534     ksoftirqd/1-18    (   18) [001] d..2 82314.052575: 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
21535          <idle>-0     (-----) [001] d..1 82314.052595: cpu_idle: state=0 cpu_id=1
21536 SDM_EventThread-644   (  619) [000] d..2 82314.052613: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21537          <idle>-0     (-----) [000] d..1 82314.052636: cpu_idle: state=2 cpu_id=0
21538          <idle>-0     (-----) [003] .n.1 82314.052796: cpu_idle: state=4294967295 cpu_id=3
21539 crtc_commit:111-321   (  321) [002] d..1 82314.052822: clk_disable: disp_cc_mdss_axi_clk
21540          <idle>-0     (-----) [003] d..2 82314.052826: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
21541<...>-8890 ( 8858) [003] .... 82314.052836: binder_transaction_received: transaction=1568242
21542 crtc_commit:111-321   (  321) [002] d..1 82314.052837: clk_disable: disp_cc_mdss_ahb_clk
21543 crtc_commit:111-321   (  321) [002] d..1 82314.052850: clk_disable: gcc_disp_axi_clk
21544<...>-8890 ( 8858) [003] ...1 82314.052879: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
21545<...>-8890 ( 8858) [003] ...1 82314.052895: tracing_mark_write: E|8858
21546 crtc_commit:111-321   (  321) [002] d..2 82314.052940: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21547          <idle>-0     (-----) [002] d..1 82314.052953: cpu_idle: state=0 cpu_id=2
21548<...>-8890 ( 8858) [003] d..2 82314.052963: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21549          <idle>-0     (-----) [003] d..1 82314.052984: cpu_idle: state=2 cpu_id=3
21550          <idle>-0     (-----) [002] d.h2 82314.053020: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21551          <idle>-0     (-----) [002] dnh3 82314.053038: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21552          <idle>-0     (-----) [002] .n.1 82314.053048: cpu_idle: state=4294967295 cpu_id=2
21553          <idle>-0     (-----) [002] d..2 82314.053060: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21554 crtc_commit:111-321   (  321) [002] d..1 82314.053078: clk_disable: disp_cc_mdss_rscc_ahb_clk
21555 crtc_commit:111-321   (  321) [002] d..1 82314.053094: clk_disable: disp_cc_mdss_rscc_vsync_clk
21556 crtc_commit:111-321   (  321) [002] d..1 82314.053107: clk_disable: disp_cc_mdss_vsync_clk_src
21557 crtc_commit:111-321   (  321) [002] d..2 82314.053300: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21558          <idle>-0     (-----) [002] d..1 82314.053321: cpu_idle: state=0 cpu_id=2
21559          <idle>-0     (-----) [001] d.s3 82314.053337: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21560          <idle>-0     (-----) [001] d.s4 82314.053359: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21561          <idle>-0     (-----) [002] .n.1 82314.053368: cpu_idle: state=4294967295 cpu_id=2
21562          <idle>-0     (-----) [001] ...1 82314.053375: cpu_idle: state=4294967295 cpu_id=1
21563          <idle>-0     (-----) [002] d..2 82314.053380: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21564          <idle>-0     (-----) [001] d..1 82314.053381: cpu_idle: state=0 cpu_id=1
21565 crtc_commit:111-321   (  321) [002] d..2 82314.053596: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21566          <idle>-0     (-----) [002] d..1 82314.053613: cpu_idle: state=0 cpu_id=2
21567          <idle>-0     (-----) [001] d.s3 82314.053636: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21568          <idle>-0     (-----) [001] d.s4 82314.053654: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21569          <idle>-0     (-----) [002] .n.1 82314.053662: cpu_idle: state=4294967295 cpu_id=2
21570          <idle>-0     (-----) [001] ...1 82314.053665: cpu_idle: state=4294967295 cpu_id=1
21571          <idle>-0     (-----) [001] d..1 82314.053673: cpu_idle: state=0 cpu_id=1
21572          <idle>-0     (-----) [002] d..2 82314.053676: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21573 crtc_commit:111-321   (  321) [002] d..3 82314.053694: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21574 crtc_commit:111-321   (  321) [002] d..4 82314.053719: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21575 crtc_commit:111-321   (  321) [002] d..2 82314.053924: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21576          <idle>-0     (-----) [002] d..1 82314.053944: cpu_idle: state=0 cpu_id=2
21577          <idle>-0     (-----) [000] .n.1 82314.053994: cpu_idle: state=4294967295 cpu_id=0
21578          <idle>-0     (-----) [000] d..2 82314.054025: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21579 SDM_EventThread-644   (  619) [000] d..2 82314.054101: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21580          <idle>-0     (-----) [000] d..1 82314.054120: cpu_idle: state=2 cpu_id=0
21581          <idle>-0     (-----) [001] d.s3 82314.054247: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21582          <idle>-0     (-----) [001] d.s4 82314.054264: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21583          <idle>-0     (-----) [002] .n.1 82314.054272: cpu_idle: state=4294967295 cpu_id=2
21584          <idle>-0     (-----) [001] ...1 82314.054277: cpu_idle: state=4294967295 cpu_id=1
21585          <idle>-0     (-----) [001] d..1 82314.054282: cpu_idle: state=0 cpu_id=1
21586          <idle>-0     (-----) [002] d..2 82314.054285: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21587 crtc_commit:111-321   (  321) [002] d..2 82314.054467: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21588          <idle>-0     (-----) [002] d..1 82314.054484: cpu_idle: state=0 cpu_id=2
21589          <idle>-0     (-----) [001] d.s3 82314.054491: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21590          <idle>-0     (-----) [001] d.s4 82314.054508: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21591          <idle>-0     (-----) [002] .n.1 82314.054516: cpu_idle: state=4294967295 cpu_id=2
21592          <idle>-0     (-----) [001] ...1 82314.054519: cpu_idle: state=4294967295 cpu_id=1
21593          <idle>-0     (-----) [001] d..1 82314.054527: cpu_idle: state=0 cpu_id=1
21594          <idle>-0     (-----) [002] d..2 82314.054528: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21595 crtc_commit:111-321   (  321) [002] d..1 82314.054558: clk_enable: disp_cc_mdss_vsync_clk_src
21596 crtc_commit:111-321   (  321) [002] d..1 82314.054560: clk_enable: disp_cc_mdss_rscc_vsync_clk
21597 crtc_commit:111-321   (  321) [002] d..1 82314.054578: clk_enable: disp_cc_mdss_rscc_ahb_clk
21598 crtc_commit:111-321   (  321) [002] d..2 82314.054651: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21599          <idle>-0     (-----) [002] d..1 82314.054663: cpu_idle: state=0 cpu_id=2
21600          <idle>-0     (-----) [002] d.h2 82314.054741: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21601          <idle>-0     (-----) [002] dnh3 82314.054759: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21602          <idle>-0     (-----) [002] .n.1 82314.054771: cpu_idle: state=4294967295 cpu_id=2
21603          <idle>-0     (-----) [002] d..2 82314.054782: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21604 crtc_commit:111-321   (  321) [002] d..1 82314.054820: clk_enable: gcc_disp_axi_clk
21605 crtc_commit:111-321   (  321) [002] d..1 82314.054833: clk_enable: disp_cc_mdss_ahb_clk
21606 crtc_commit:111-321   (  321) [002] d..1 82314.054847: clk_enable: disp_cc_mdss_axi_clk
21607 crtc_commit:111-321   (  321) [002] d..1 82314.054871: clk_enable: gcc_disp_gpll0_clk_src
21608 crtc_commit:111-321   (  321) [002] d..1 82314.055380: clk_enable: disp_cc_mdss_mdp_clk_src
21609 crtc_commit:111-321   (  321) [002] d..1 82314.055417: clk_enable: disp_cc_mdss_mdp_clk
21610 crtc_commit:111-321   (  321) [002] d.s3 82314.055471: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21611 crtc_commit:111-321   (  321) [002] d.s4 82314.055498: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21612 crtc_commit:111-321   (  321) [002] d..1 82314.055510: clk_enable: disp_cc_mdss_vsync_clk
21613 crtc_commit:111-321   (  321) [002] d..2 82314.055742: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21614<...>-1054 ( 1054) [002] d..2 82314.055798: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21615          <idle>-0     (-----) [002] d..1 82314.055819: cpu_idle: state=0 cpu_id=2
21616          <idle>-0     (-----) [001] ...1 82314.055939: cpu_idle: state=4294967295 cpu_id=1
21617          <idle>-0     (-----) [001] d..1 82314.055944: cpu_idle: state=2 cpu_id=1
21618          <idle>-0     (-----) [002] ...1 82314.056940: cpu_idle: state=4294967295 cpu_id=2
21619          <idle>-0     (-----) [002] d..1 82314.056945: cpu_idle: state=2 cpu_id=2
21620          <idle>-0     (-----) [003] d..2 82314.060888: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21621          <idle>-0     (-----) [003] dn.3 82314.060910: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21622          <idle>-0     (-----) [003] .n.1 82314.060917: cpu_idle: state=4294967295 cpu_id=3
21623          <idle>-0     (-----) [003] d..2 82314.060939: 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
21624     ksoftirqd/3-34    (   34) [003] d.s2 82314.060952: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
21625     ksoftirqd/3-34    (   34) [003] d.s3 82314.061000: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
21626     ksoftirqd/3-34    (   34) [003] d..2 82314.061019: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21627          <idle>-0     (-----) [000] ...1 82314.061173: cpu_idle: state=4294967295 cpu_id=0
21628          <idle>-0     (-----) [000] d..1 82314.061186: cpu_idle: state=2 cpu_id=0
21629<...>-1054 ( 1054) [003] d..2 82314.061242: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
21630          <idle>-0     (-----) [003] d..1 82314.061266: cpu_idle: state=2 cpu_id=3
21631          <idle>-0     (-----) [001] d.s3 82314.061563: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
21632          <idle>-0     (-----) [001] d.s4 82314.061583: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
21633          <idle>-0     (-----) [001] d.s4 82314.061595: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
21634          <idle>-0     (-----) [001] ...1 82314.061611: cpu_idle: state=4294967295 cpu_id=1
21635          <idle>-0     (-----) [001] d..1 82314.061620: cpu_idle: state=2 cpu_id=1
21636          <idle>-0     (-----) [003] .n.1 82314.061904: cpu_idle: state=4294967295 cpu_id=3
21637          <idle>-0     (-----) [003] d..2 82314.061934: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21638<...>-1054 ( 1054) [003] d..2 82314.062039: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21639          <idle>-0     (-----) [003] d..2 82314.062045: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21640          <idle>-0     (-----) [003] dn.3 82314.062059: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
21641          <idle>-0     (-----) [003] d..2 82314.062070: 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
21642     ksoftirqd/3-34    (   34) [003] d..2 82314.062094: 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
21643          <idle>-0     (-----) [003] d..1 82314.062110: cpu_idle: state=2 cpu_id=3
21644          <idle>-0     (-----) [000] d.h7 82314.072671: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21645          <idle>-0     (-----) [000] dnh8 82314.072889: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21646          <idle>-0     (-----) [000] dnh9 82314.072971: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21647          <idle>-0     (-----) [000] dnha 82314.073118: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21648          <idle>-0     (-----) [000] dnh7 82314.073147: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21649          <idle>-0     (-----) [000] dnh8 82314.073231: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21650          <idle>-0     (-----) [002] .n.1 82314.073517: cpu_idle: state=4294967295 cpu_id=2
21651          <idle>-0     (-----) [002] d..2 82314.073655: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21652          <idle>-0     (-----) [000] dnh3 82314.073664: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
21653          <idle>-0     (-----) [000] dnh4 82314.073698: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
21654          <idle>-0     (-----) [000] .n.1 82314.073744: cpu_idle: state=4294967295 cpu_id=0
21655          <idle>-0     (-----) [000] d..2 82314.073801: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
21656 crtc_commit:111-321   (  321) [002] d..1 82314.073835: clk_disable: disp_cc_mdss_vsync_clk
21657     kworker/0:1-25262 (25262) [000] d..2 82314.073888: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21658 crtc_commit:111-321   (  321) [002] d..1 82314.073915: clk_disable: disp_cc_mdss_mdp_clk
21659 crtc_commit:111-321   (  321) [002] d..1 82314.073931: clk_disable: disp_cc_mdss_mdp_clk_src
21660 crtc_commit:111-321   (  321) [002] d..1 82314.073983: clk_disable: gcc_disp_gpll0_clk_src
21661          <idle>-0     (-----) [001] .n.1 82314.074074: cpu_idle: state=4294967295 cpu_id=1
21662          <idle>-0     (-----) [001] d..2 82314.074129: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
21663 SDM_EventThread-644   (  619) [000] ...1 82314.074206: tracing_mark_write: B|619|HWCCallbacks::Vsync::
21664 SDM_EventThread-644   (  619) [000] ...1 82314.074253: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
21665         sugov:0-576   (  576) [001] .... 82314.074258: clk_set_rate: pwrcl_clk 652800000
21666 SDM_EventThread-644   (  619) [000] ...1 82314.074260: tracing_mark_write: E|619
21667         sugov:0-576   (  576) [001] .... 82314.074336: clk_set_rate: cpu3_pwrcl_clk 748800000
21668         sugov:0-576   (  576) [001] .... 82314.074353: clk_set_rate: cpu2_pwrcl_clk 748800000
21669         sugov:0-576   (  576) [001] .... 82314.074363: clk_set_rate: cpu1_pwrcl_clk 748800000
21670         sugov:0-576   (  576) [001] .... 82314.074373: clk_set_rate: cpu0_pwrcl_clk 652800000
21671         sugov:0-576   (  576) [001] .... 82314.074443: cpu_frequency: state=652800 cpu_id=0
21672 SDM_EventThread-644   (  619) [000] .... 82314.074469: binder_transaction: transaction=1568243 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
21673 SDM_EventThread-644   (  619) [000] .... 82314.074501: binder_transaction_alloc_buf: transaction=1568243 data_size=76 offsets_size=0
21674         sugov:0-576   (  576) [001] .... 82314.074530: cpu_frequency: state=652800 cpu_id=1
21675         sugov:0-576   (  576) [001] .... 82314.074536: cpu_frequency: state=652800 cpu_id=2
21676         sugov:0-576   (  576) [001] .... 82314.074541: cpu_frequency: state=652800 cpu_id=3
21677 SDM_EventThread-644   (  619) [000] d..4 82314.074546: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=003
21678 crtc_commit:111-321   (  321) [002] d..1 82314.074572: clk_disable: disp_cc_mdss_axi_clk
21679 crtc_commit:111-321   (  321) [002] d..1 82314.074592: clk_disable: disp_cc_mdss_ahb_clk
21680 SDM_EventThread-644   (  619) [000] d..5 82314.074605: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=003
21681 crtc_commit:111-321   (  321) [002] d..1 82314.074610: clk_disable: gcc_disp_axi_clk
21682         sugov:0-576   (  576) [001] d..2 82314.074708: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21683          <idle>-0     (-----) [001] d..2 82314.074727: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21684 SDM_EventThread-644   (  619) [000] ...1 82314.074732: tracing_mark_write: E|619
21685          <idle>-0     (-----) [001] dn.3 82314.074759: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21686 crtc_commit:111-321   (  321) [002] d..2 82314.074779: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21687          <idle>-0     (-----) [001] d..2 82314.074780: 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
21688     ksoftirqd/1-18    (   18) [001] d.s2 82314.074836: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
21689          <idle>-0     (-----) [002] d..1 82314.074847: cpu_idle: state=0 cpu_id=2
21690 SDM_EventThread-644   (  619) [000] d..2 82314.074884: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21691          <idle>-0     (-----) [000] d..2 82314.074895: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21692          <idle>-0     (-----) [002] d.h2 82314.074899: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21693          <idle>-0     (-----) [002] dnh3 82314.074919: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21694          <idle>-0     (-----) [000] dn.3 82314.074922: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21695          <idle>-0     (-----) [002] .n.1 82314.074940: cpu_idle: state=4294967295 cpu_id=2
21696          <idle>-0     (-----) [002] d..2 82314.074954: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21697          <idle>-0     (-----) [000] d..2 82314.074958: 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
21698          <idle>-0     (-----) [003] .n.1 82314.074963: cpu_idle: state=4294967295 cpu_id=3
21699     ksoftirqd/1-18    (   18) [001] d.s3 82314.074986: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
21700 crtc_commit:111-321   (  321) [002] d..1 82314.074994: clk_disable: disp_cc_mdss_rscc_ahb_clk
21701 crtc_commit:111-321   (  321) [002] d..1 82314.075017: clk_disable: disp_cc_mdss_rscc_vsync_clk
21702     ksoftirqd/0-3     (    3) [000] d..2 82314.075019: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21703          <idle>-0     (-----) [003] d..2 82314.075022: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
21704 crtc_commit:111-321   (  321) [002] d..1 82314.075032: clk_disable: disp_cc_mdss_vsync_clk_src
21705     ksoftirqd/1-18    (   18) [001] d..2 82314.075032: 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
21706<...>-8890 ( 8858) [003] .... 82314.075058: binder_transaction_received: transaction=1568243
21707          <idle>-0     (-----) [001] d..1 82314.075065: cpu_idle: state=2 cpu_id=1
21708<...>-8890 ( 8858) [003] ...1 82314.075430: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
21709<...>-8890 ( 8858) [003] ...1 82314.075505: tracing_mark_write: E|8858
21710<...>-8890 ( 8858) [003] d..2 82314.075659: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
21711          <idle>-0     (-----) [003] d..1 82314.075687: cpu_idle: state=2 cpu_id=3
21712 crtc_commit:111-321   (  321) [002] d..2 82314.075740: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21713<...>-1054 ( 1054) [000] d..2 82314.075755: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21714          <idle>-0     (-----) [002] d..1 82314.075765: cpu_idle: state=2 cpu_id=2
21715          <idle>-0     (-----) [000] d..1 82314.075785: cpu_idle: state=2 cpu_id=0
21716          <idle>-0     (-----) [001] d.s3 82314.076129: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21717          <idle>-0     (-----) [001] d.s4 82314.076161: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21718          <idle>-0     (-----) [001] ...1 82314.076184: cpu_idle: state=4294967295 cpu_id=1
21719          <idle>-0     (-----) [001] d..1 82314.076195: cpu_idle: state=2 cpu_id=1
21720          <idle>-0     (-----) [002] .n.1 82314.076486: cpu_idle: state=4294967295 cpu_id=2
21721          <idle>-0     (-----) [002] d..2 82314.076512: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21722 crtc_commit:111-321   (  321) [002] d..2 82314.076916: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21723          <idle>-0     (-----) [002] d..1 82314.076936: cpu_idle: state=2 cpu_id=2
21724          <idle>-0     (-----) [001] d.s3 82314.077278: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21725          <idle>-0     (-----) [001] d.s4 82314.077305: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21726          <idle>-0     (-----) [001] ...1 82314.077322: cpu_idle: state=4294967295 cpu_id=1
21727          <idle>-0     (-----) [001] d..1 82314.077333: cpu_idle: state=2 cpu_id=1
21728          <idle>-0     (-----) [002] .n.1 82314.077632: cpu_idle: state=4294967295 cpu_id=2
21729          <idle>-0     (-----) [002] d..2 82314.077658: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21730 crtc_commit:111-321   (  321) [002] d..3 82314.077739: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21731 crtc_commit:111-321   (  321) [002] d..4 82314.077814: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
21732 crtc_commit:111-321   (  321) [002] d..2 82314.078077: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21733 SDM_EventThread-644   (  619) [002] d..2 82314.078242: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21734          <idle>-0     (-----) [002] d..1 82314.078265: cpu_idle: state=2 cpu_id=2
21735          <idle>-0     (-----) [001] d.s3 82314.078617: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21736          <idle>-0     (-----) [001] d.s4 82314.078645: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21737          <idle>-0     (-----) [001] d..2 82314.078656: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21738          <idle>-0     (-----) [001] dn.3 82314.078672: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21739          <idle>-0     (-----) [001] .n.1 82314.078678: cpu_idle: state=4294967295 cpu_id=1
21740          <idle>-0     (-----) [001] d..2 82314.078702: 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
21741     ksoftirqd/1-18    (   18) [001] d..2 82314.078750: 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
21742          <idle>-0     (-----) [001] d..1 82314.078769: cpu_idle: state=2 cpu_id=1
21743          <idle>-0     (-----) [002] .n.1 82314.078972: cpu_idle: state=4294967295 cpu_id=2
21744          <idle>-0     (-----) [002] d..2 82314.079001: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21745 crtc_commit:111-321   (  321) [002] d..2 82314.079236: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21746          <idle>-0     (-----) [002] d..1 82314.079268: cpu_idle: state=0 cpu_id=2
21747          <idle>-0     (-----) [001] d.s3 82314.079610: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21748          <idle>-0     (-----) [001] d.s4 82314.079648: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21749          <idle>-0     (-----) [002] .n.1 82314.079657: cpu_idle: state=4294967295 cpu_id=2
21750          <idle>-0     (-----) [001] ...1 82314.079669: cpu_idle: state=4294967295 cpu_id=1
21751          <idle>-0     (-----) [002] d..2 82314.079671: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21752          <idle>-0     (-----) [001] d..1 82314.079690: cpu_idle: state=0 cpu_id=1
21753 crtc_commit:111-321   (  321) [002] d..1 82314.079741: clk_enable: disp_cc_mdss_vsync_clk_src
21754 crtc_commit:111-321   (  321) [002] d..1 82314.079751: clk_enable: disp_cc_mdss_rscc_vsync_clk
21755 crtc_commit:111-321   (  321) [002] d..1 82314.079775: clk_enable: disp_cc_mdss_rscc_ahb_clk
21756 crtc_commit:111-321   (  321) [002] d..2 82314.079866: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21757          <idle>-0     (-----) [002] d..1 82314.079880: cpu_idle: state=0 cpu_id=2
21758          <idle>-0     (-----) [002] d.h2 82314.079951: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21759          <idle>-0     (-----) [002] dnh3 82314.079977: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21760          <idle>-0     (-----) [002] .n.1 82314.079991: cpu_idle: state=4294967295 cpu_id=2
21761          <idle>-0     (-----) [002] d..2 82314.080005: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21762 crtc_commit:111-321   (  321) [002] d..2 82314.080037: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21763          <idle>-0     (-----) [002] d..1 82314.080048: cpu_idle: state=0 cpu_id=2
21764          <idle>-0     (-----) [002] d.h2 82314.080130: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21765          <idle>-0     (-----) [002] dnh3 82314.080143: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21766          <idle>-0     (-----) [002] .n.1 82314.080154: cpu_idle: state=4294967295 cpu_id=2
21767          <idle>-0     (-----) [002] d..2 82314.080166: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21768 crtc_commit:111-321   (  321) [002] d..1 82314.080209: clk_enable: gcc_disp_axi_clk
21769 crtc_commit:111-321   (  321) [002] d..1 82314.080227: clk_enable: disp_cc_mdss_ahb_clk
21770 crtc_commit:111-321   (  321) [002] d..1 82314.080240: clk_enable: disp_cc_mdss_axi_clk
21771 crtc_commit:111-321   (  321) [002] d..1 82314.080268: clk_enable: gcc_disp_gpll0_clk_src
21772 crtc_commit:111-321   (  321) [002] d..1 82314.080782: clk_enable: disp_cc_mdss_mdp_clk_src
21773 crtc_commit:111-321   (  321) [002] d..1 82314.080828: clk_enable: disp_cc_mdss_mdp_clk
21774 crtc_commit:111-321   (  321) [002] d..1 82314.080842: clk_enable: disp_cc_mdss_vsync_clk
21775 crtc_commit:111-321   (  321) [002] d..2 82314.081205: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21776          <idle>-0     (-----) [002] d..1 82314.081226: cpu_idle: state=0 cpu_id=2
21777          <idle>-0     (-----) [001] ...1 82314.081697: cpu_idle: state=4294967295 cpu_id=1
21778          <idle>-0     (-----) [001] d..1 82314.081705: cpu_idle: state=2 cpu_id=1
21779          <idle>-0     (-----) [002] d..2 82314.082628: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21780          <idle>-0     (-----) [002] dn.3 82314.082661: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
21781          <idle>-0     (-----) [002] .n.1 82314.082669: cpu_idle: state=4294967295 cpu_id=2
21782          <idle>-0     (-----) [002] d..2 82314.082688: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
21783     ksoftirqd/2-26    (   26) [002] d..2 82314.082753: 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
21784          <idle>-0     (-----) [002] d..1 82314.082768: cpu_idle: state=2 cpu_id=2
21785          <idle>-0     (-----) [002] ...1 82314.086770: cpu_idle: state=4294967295 cpu_id=2
21786          <idle>-0     (-----) [002] d..1 82314.086778: cpu_idle: state=2 cpu_id=2
21787          <idle>-0     (-----) [000] d.h7 82314.086869: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21788          <idle>-0     (-----) [000] dnh8 82314.086895: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21789          <idle>-0     (-----) [000] dnh9 82314.086909: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21790          <idle>-0     (-----) [000] dnha 82314.086936: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21791          <idle>-0     (-----) [000] dnh7 82314.086942: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
21792          <idle>-0     (-----) [000] dnh8 82314.086988: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21793          <idle>-0     (-----) [000] .n.1 82314.087093: cpu_idle: state=4294967295 cpu_id=0
21794          <idle>-0     (-----) [000] d..2 82314.087117: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
21795     kworker/0:1-25262 (25262) [000] d..2 82314.087139: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21796 SDM_EventThread-644   (  619) [000] ...1 82314.087187: tracing_mark_write: B|619|HWCCallbacks::Vsync::
21797 SDM_EventThread-644   (  619) [000] ...1 82314.087199: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
21798 SDM_EventThread-644   (  619) [000] ...1 82314.087207: tracing_mark_write: E|619
21799 SDM_EventThread-644   (  619) [000] .... 82314.087237: binder_transaction: transaction=1568244 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
21800          <idle>-0     (-----) [002] .n.1 82314.087239: cpu_idle: state=4294967295 cpu_id=2
21801 SDM_EventThread-644   (  619) [000] .... 82314.087243: binder_transaction_alloc_buf: transaction=1568244 data_size=76 offsets_size=0
21802 SDM_EventThread-644   (  619) [000] d..4 82314.087251: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=003
21803          <idle>-0     (-----) [002] d..2 82314.087271: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21804 SDM_EventThread-644   (  619) [000] d..5 82314.087289: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
21805 crtc_commit:111-321   (  321) [002] d..1 82314.087320: clk_disable: disp_cc_mdss_vsync_clk
21806 SDM_EventThread-644   (  619) [000] ...1 82314.087325: tracing_mark_write: E|619
21807 crtc_commit:111-321   (  321) [002] d..1 82314.087340: clk_disable: disp_cc_mdss_mdp_clk
21808 crtc_commit:111-321   (  321) [002] d..1 82314.087353: clk_disable: disp_cc_mdss_mdp_clk_src
21809 crtc_commit:111-321   (  321) [002] d..1 82314.087391: clk_disable: gcc_disp_gpll0_clk_src
21810 SDM_EventThread-644   (  619) [000] d..2 82314.087398: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21811          <idle>-0     (-----) [000] d..2 82314.087406: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21812          <idle>-0     (-----) [000] dn.3 82314.087419: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21813          <idle>-0     (-----) [000] d..2 82314.087433: 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
21814     ksoftirqd/0-3     (    3) [000] d.s2 82314.087445: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
21815     ksoftirqd/0-3     (    3) [000] d.s3 82314.087467: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
21816     ksoftirqd/0-3     (    3) [000] d..2 82314.087484: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21817          <idle>-0     (-----) [001] .n.1 82314.087600: cpu_idle: state=4294967295 cpu_id=1
21818          <idle>-0     (-----) [001] d..2 82314.087640: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
21819<...>-8890 ( 8858) [001] .... 82314.087653: binder_transaction_received: transaction=1568244
21820<...>-8890 ( 8858) [001] ...1 82314.087705: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
21821<...>-8890 ( 8858) [001] ...1 82314.087727: tracing_mark_write: E|8858
21822<...>-8890 ( 8858) [001] d..2 82314.087816: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21823          <idle>-0     (-----) [001] d..1 82314.087841: cpu_idle: state=2 cpu_id=1
21824 crtc_commit:111-321   (  321) [002] d..1 82314.087938: clk_disable: disp_cc_mdss_axi_clk
21825 crtc_commit:111-321   (  321) [002] d..1 82314.087954: clk_disable: disp_cc_mdss_ahb_clk
21826 crtc_commit:111-321   (  321) [002] d..1 82314.087968: clk_disable: gcc_disp_axi_clk
21827<...>-1054 ( 1054) [000] d..2 82314.088062: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21828          <idle>-0     (-----) [000] d..1 82314.088086: cpu_idle: state=2 cpu_id=0
21829 crtc_commit:111-321   (  321) [002] d..2 82314.088092: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21830          <idle>-0     (-----) [002] d..1 82314.088114: cpu_idle: state=0 cpu_id=2
21831          <idle>-0     (-----) [002] d.h2 82314.088158: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21832          <idle>-0     (-----) [002] dnh3 82314.088177: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21833          <idle>-0     (-----) [002] .n.1 82314.088189: cpu_idle: state=4294967295 cpu_id=2
21834          <idle>-0     (-----) [002] d..2 82314.088202: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21835 crtc_commit:111-321   (  321) [002] d..1 82314.088222: clk_disable: disp_cc_mdss_rscc_ahb_clk
21836 crtc_commit:111-321   (  321) [002] d..1 82314.088240: clk_disable: disp_cc_mdss_rscc_vsync_clk
21837 crtc_commit:111-321   (  321) [002] d..1 82314.088253: clk_disable: disp_cc_mdss_vsync_clk_src
21838 crtc_commit:111-321   (  321) [002] d..2 82314.088461: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21839          <idle>-0     (-----) [002] d..1 82314.088537: cpu_idle: state=2 cpu_id=2
21840          <idle>-0     (-----) [001] d.s3 82314.088802: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21841          <idle>-0     (-----) [001] d.s4 82314.088831: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21842          <idle>-0     (-----) [001] ...1 82314.088848: cpu_idle: state=4294967295 cpu_id=1
21843          <idle>-0     (-----) [001] d..1 82314.088858: cpu_idle: state=2 cpu_id=1
21844          <idle>-0     (-----) [002] .n.1 82314.089141: cpu_idle: state=4294967295 cpu_id=2
21845          <idle>-0     (-----) [002] d..2 82314.089168: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21846 crtc_commit:111-321   (  321) [002] d..2 82314.089433: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21847          <idle>-0     (-----) [002] d..1 82314.089454: cpu_idle: state=2 cpu_id=2
21848          <idle>-0     (-----) [001] d.s3 82314.089788: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21849          <idle>-0     (-----) [001] d.s4 82314.089817: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21850          <idle>-0     (-----) [001] ...1 82314.089834: cpu_idle: state=4294967295 cpu_id=1
21851          <idle>-0     (-----) [001] d..1 82314.089844: cpu_idle: state=2 cpu_id=1
21852          <idle>-0     (-----) [002] .n.1 82314.090152: cpu_idle: state=4294967295 cpu_id=2
21853          <idle>-0     (-----) [002] d..2 82314.090178: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21854 crtc_commit:111-321   (  321) [002] d..3 82314.090205: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21855 crtc_commit:111-321   (  321) [002] d..4 82314.090269: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
21856 crtc_commit:111-321   (  321) [002] d..2 82314.090513: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21857 SDM_EventThread-644   (  619) [002] d..2 82314.090591: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21858          <idle>-0     (-----) [002] d..1 82314.090616: cpu_idle: state=0 cpu_id=2
21859          <idle>-0     (-----) [001] d.s3 82314.091060: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21860          <idle>-0     (-----) [001] d.s4 82314.091097: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21861          <idle>-0     (-----) [002] .n.1 82314.091107: cpu_idle: state=4294967295 cpu_id=2
21862          <idle>-0     (-----) [001] ...1 82314.091119: cpu_idle: state=4294967295 cpu_id=1
21863          <idle>-0     (-----) [002] d..2 82314.091122: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21864          <idle>-0     (-----) [001] d..1 82314.091131: cpu_idle: state=2 cpu_id=1
21865 crtc_commit:111-321   (  321) [002] d..2 82314.091333: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21866          <idle>-0     (-----) [002] d..1 82314.091353: cpu_idle: state=0 cpu_id=2
21867          <idle>-0     (-----) [001] d.s3 82314.091698: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21868          <idle>-0     (-----) [001] d.s4 82314.091732: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21869          <idle>-0     (-----) [002] .n.1 82314.091740: cpu_idle: state=4294967295 cpu_id=2
21870          <idle>-0     (-----) [001] ...1 82314.091753: cpu_idle: state=4294967295 cpu_id=1
21871          <idle>-0     (-----) [002] d..2 82314.091755: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21872          <idle>-0     (-----) [001] d..1 82314.091770: cpu_idle: state=0 cpu_id=1
21873 crtc_commit:111-321   (  321) [002] d.H2 82314.091914: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
21874 crtc_commit:111-321   (  321) [002] d.H3 82314.091947: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
21875          <idle>-0     (-----) [001] .n.1 82314.091956: cpu_idle: state=4294967295 cpu_id=1
21876 crtc_commit:111-321   (  321) [002] d..1 82314.091978: clk_enable: disp_cc_mdss_vsync_clk_src
21877          <idle>-0     (-----) [001] d..2 82314.091980: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
21878 crtc_commit:111-321   (  321) [002] d..1 82314.091982: clk_enable: disp_cc_mdss_rscc_vsync_clk
21879         sugov:0-576   (  576) [001] .... 82314.092014: clk_set_rate: pwrcl_clk 748800000
21880         sugov:0-576   (  576) [001] .... 82314.092030: clk_set_rate: cpu3_pwrcl_clk 652800000
21881         sugov:0-576   (  576) [001] .... 82314.092046: clk_set_rate: cpu2_pwrcl_clk 652800000
21882         sugov:0-576   (  576) [001] .... 82314.092058: clk_set_rate: cpu1_pwrcl_clk 652800000
21883         sugov:0-576   (  576) [001] .... 82314.092070: clk_set_rate: cpu0_pwrcl_clk 748800000
21884         sugov:0-576   (  576) [001] .... 82314.092089: cpu_frequency: state=748800 cpu_id=0
21885 crtc_commit:111-321   (  321) [002] d..1 82314.092091: clk_enable: disp_cc_mdss_rscc_ahb_clk
21886         sugov:0-576   (  576) [001] .... 82314.092113: cpu_frequency: state=748800 cpu_id=1
21887         sugov:0-576   (  576) [001] .... 82314.092117: cpu_frequency: state=748800 cpu_id=2
21888         sugov:0-576   (  576) [001] .... 82314.092122: cpu_frequency: state=748800 cpu_id=3
21889         sugov:0-576   (  576) [001] d..2 82314.092174: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21890 crtc_commit:111-321   (  321) [002] d..2 82314.092182: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21891          <idle>-0     (-----) [001] d..1 82314.092194: cpu_idle: state=0 cpu_id=1
21892          <idle>-0     (-----) [002] d..1 82314.092201: cpu_idle: state=0 cpu_id=2
21893          <idle>-0     (-----) [002] d.h2 82314.092261: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21894          <idle>-0     (-----) [002] dnh3 82314.092275: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21895          <idle>-0     (-----) [002] .n.1 82314.092286: cpu_idle: state=4294967295 cpu_id=2
21896          <idle>-0     (-----) [002] d..2 82314.092299: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21897 crtc_commit:111-321   (  321) [002] d..2 82314.092328: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21898          <idle>-0     (-----) [002] d..1 82314.092338: cpu_idle: state=0 cpu_id=2
21899          <idle>-0     (-----) [002] d.h2 82314.092422: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21900          <idle>-0     (-----) [002] dnh3 82314.092434: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21901          <idle>-0     (-----) [002] .n.1 82314.092444: cpu_idle: state=4294967295 cpu_id=2
21902          <idle>-0     (-----) [002] d..2 82314.092455: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21903 crtc_commit:111-321   (  321) [002] d..1 82314.092495: clk_enable: gcc_disp_axi_clk
21904 crtc_commit:111-321   (  321) [002] d..1 82314.092509: clk_enable: disp_cc_mdss_ahb_clk
21905 crtc_commit:111-321   (  321) [002] d..1 82314.092523: clk_enable: disp_cc_mdss_axi_clk
21906 crtc_commit:111-321   (  321) [002] d..1 82314.092548: clk_enable: gcc_disp_gpll0_clk_src
21907 crtc_commit:111-321   (  321) [002] d..1 82314.093058: clk_enable: disp_cc_mdss_mdp_clk_src
21908 crtc_commit:111-321   (  321) [002] d..1 82314.093101: clk_enable: disp_cc_mdss_mdp_clk
21909 crtc_commit:111-321   (  321) [002] d..1 82314.093114: clk_enable: disp_cc_mdss_vsync_clk
21910 crtc_commit:111-321   (  321) [002] d..2 82314.093358: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
21911          <idle>-0     (-----) [002] d..1 82314.093376: cpu_idle: state=0 cpu_id=2
21912          <idle>-0     (-----) [001] ...1 82314.093931: cpu_idle: state=4294967295 cpu_id=1
21913          <idle>-0     (-----) [001] d..1 82314.093938: cpu_idle: state=2 cpu_id=1
21914          <idle>-0     (-----) [002] ...1 82314.094727: cpu_idle: state=4294967295 cpu_id=2
21915          <idle>-0     (-----) [002] d..1 82314.094735: cpu_idle: state=2 cpu_id=2
21916          <idle>-0     (-----) [000] d.h7 82314.105558: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21917          <idle>-0     (-----) [000] dnh8 82314.105757: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
21918          <idle>-0     (-----) [000] dnh9 82314.105843: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21919          <idle>-0     (-----) [000] dnha 82314.105984: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21920          <idle>-0     (-----) [000] dnh7 82314.106006: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
21921          <idle>-0     (-----) [000] dnh8 82314.106178: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
21922          <idle>-0     (-----) [000] .n.1 82314.106390: cpu_idle: state=4294967295 cpu_id=0
21923          <idle>-0     (-----) [002] .n.1 82314.106392: cpu_idle: state=4294967295 cpu_id=2
21924          <idle>-0     (-----) [002] d..2 82314.106506: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21925          <idle>-0     (-----) [000] d..2 82314.106510: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
21926     kworker/0:1-25262 (25262) [000] d..2 82314.106600: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
21927 crtc_commit:111-321   (  321) [002] d..1 82314.106700: clk_disable: disp_cc_mdss_vsync_clk
21928 crtc_commit:111-321   (  321) [002] d..1 82314.106780: clk_disable: disp_cc_mdss_mdp_clk
21929 crtc_commit:111-321   (  321) [002] d..1 82314.106797: clk_disable: disp_cc_mdss_mdp_clk_src
21930 crtc_commit:111-321   (  321) [002] d..1 82314.106850: clk_disable: gcc_disp_gpll0_clk_src
21931 SDM_EventThread-644   (  619) [000] ...1 82314.106926: tracing_mark_write: B|619|HWCCallbacks::Vsync::
21932 SDM_EventThread-644   (  619) [000] ...1 82314.106974: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
21933 SDM_EventThread-644   (  619) [000] ...1 82314.106985: tracing_mark_write: E|619
21934 SDM_EventThread-644   (  619) [000] .... 82314.107183: binder_transaction: transaction=1568245 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
21935 SDM_EventThread-644   (  619) [000] .... 82314.107219: binder_transaction_alloc_buf: transaction=1568245 data_size=76 offsets_size=0
21936 SDM_EventThread-644   (  619) [000] d..4 82314.107257: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
21937 SDM_EventThread-644   (  619) [000] d..5 82314.107328: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
21938 SDM_EventThread-644   (  619) [000] ...1 82314.107458: tracing_mark_write: E|619
21939 crtc_commit:111-321   (  321) [002] d..1 82314.107476: clk_disable: disp_cc_mdss_axi_clk
21940 crtc_commit:111-321   (  321) [002] d..1 82314.107496: clk_disable: disp_cc_mdss_ahb_clk
21941 crtc_commit:111-321   (  321) [002] d..1 82314.107514: clk_disable: gcc_disp_axi_clk
21942          <idle>-0     (-----) [001] .n.1 82314.107693: cpu_idle: state=4294967295 cpu_id=1
21943 SDM_EventThread-644   (  619) [000] d..2 82314.107710: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21944 crtc_commit:111-321   (  321) [002] d..2 82314.107713: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21945          <idle>-0     (-----) [000] d..2 82314.107729: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21946          <idle>-0     (-----) [001] d..2 82314.107750: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
21947          <idle>-0     (-----) [000] dn.3 82314.107754: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
21948          <idle>-0     (-----) [002] d.h3 82314.107754: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21949          <idle>-0     (-----) [000] d..2 82314.107771: 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
21950          <idle>-0     (-----) [002] dnh4 82314.107773: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21951<...>-8890 ( 8858) [001] .... 82314.107788: binder_transaction_received: transaction=1568245
21952          <idle>-0     (-----) [002] d..2 82314.107795: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21953     ksoftirqd/0-3     (    3) [000] d.s2 82314.107829: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
21954 crtc_commit:111-321   (  321) [002] d..1 82314.107833: clk_disable: disp_cc_mdss_rscc_ahb_clk
21955 crtc_commit:111-321   (  321) [002] d..1 82314.107854: clk_disable: disp_cc_mdss_rscc_vsync_clk
21956 crtc_commit:111-321   (  321) [002] d..1 82314.107867: clk_disable: disp_cc_mdss_vsync_clk_src
21957     ksoftirqd/0-3     (    3) [000] d.s3 82314.107873: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
21958     ksoftirqd/0-3     (    3) [000] d..2 82314.107910: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
21959<...>-8890 ( 8858) [001] ...1 82314.108014: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
21960<...>-8890 ( 8858) [001] d..1 82314.108161: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
21961<...>-8890 ( 8858) [001] d..2 82314.108213: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
21962<...>-8890 ( 8858) [001] d..1 82314.108251: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
21963<...>-8890 ( 8858) [001] d..2 82314.108312: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=003
21964<...>-8890 ( 8858) [001] ...1 82314.108335: tracing_mark_write: E|8858
21965 crtc_commit:111-321   (  321) [002] d..2 82314.108402: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
21966          <idle>-0     (-----) [002] d..1 82314.108464: cpu_idle: state=2 cpu_id=2
21967          <idle>-0     (-----) [003] .n.1 82314.108572: cpu_idle: state=4294967295 cpu_id=3
21968<...>-8890 ( 8858) [001] d.s2 82314.108603: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21969<...>-8890 ( 8858) [001] d.s3 82314.108625: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
21970          <idle>-0     (-----) [003] d..2 82314.108626: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
21971<...>-8890 ( 8858) [001] d.s1 82314.108632: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21972<...>-8890 ( 8858) [001] dns2 82314.108664: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
21973<...>-8890 ( 8858) [001] d..2 82314.108680: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
21974     ksoftirqd/1-18    (   18) [001] d..2 82314.108725: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
21975        DispSync-8879  ( 8858) [003] d..2 82314.108776: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
21976<...>-8894 ( 8858) [003] ...1 82314.108855: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
21977<...>-8890 ( 8858) [001] d..2 82314.108858: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
21978<...>-8894 ( 8858) [003] ...1 82314.108865: tracing_mark_write: E|8858
21979          <idle>-0     (-----) [001] d..1 82314.108887: cpu_idle: state=2 cpu_id=1
21980<...>-1054 ( 1054) [000] d..2 82314.108896: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
21981          <idle>-0     (-----) [000] d..1 82314.108929: cpu_idle: state=2 cpu_id=0
21982<...>-8894 ( 8858) [003] .... 82314.108962: binder_transaction: transaction=1568246 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
21983<...>-8894 ( 8858) [003] .... 82314.108981: binder_transaction_alloc_buf: transaction=1568246 data_size=68 offsets_size=0
21984<...>-8894 ( 8858) [003] ...2 82314.109014: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
21985<...>-8894 ( 8858) [003] d..4 82314.109073: sched_waking: [email protected] pid=619 prio=112 target_cpu=000
21986<...>-8894 ( 8858) [003] d..5 82314.109111: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=003
21987<...>-8894 ( 8858) [003] d..2 82314.109137: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
21988 [email protected]   (  619) [003] .... 82314.109173: binder_transaction_received: transaction=1568246
21989          <idle>-0     (-----) [002] .n.1 82314.109176: cpu_idle: state=4294967295 cpu_id=2
21990          <idle>-0     (-----) [002] d..2 82314.109203: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
21991 [email protected]   (  619) [003] ...1 82314.109308: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
21992 [email protected]   (  619) [003] ...1 82314.109348: tracing_mark_write: C|619|SetVsyncState |0
21993 [email protected]   (  619) [003] ...1 82314.109426: tracing_mark_write: E|619
21994 [email protected]   (  619) [003] .... 82314.109455: binder_transaction: transaction=1568247 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
21995 [email protected]   (  619) [003] .... 82314.109460: binder_transaction_alloc_buf: transaction=1568247 data_size=8 offsets_size=0
21996 [email protected]   (  619) [003] d..2 82314.109473: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=003
21997 [email protected]   (  619) [003] dn.3 82314.109495: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=003
21998 [email protected]   (  619) [003] d..2 82314.109508: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
21999<...>-8894 ( 8858) [003] .... 82314.109521: binder_transaction_received: transaction=1568247
22000<...>-8894 ( 8858) [003] d..2 82314.109601: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
22001 [email protected]   (  619) [003] .... 82314.109610: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
22002 crtc_commit:111-321   (  321) [002] d..2 82314.109611: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22003          <idle>-0     (-----) [002] d..1 82314.109630: cpu_idle: state=2 cpu_id=2
22004 [email protected]   (  619) [003] d..2 82314.109744: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22005          <idle>-0     (-----) [003] d..1 82314.109777: cpu_idle: state=2 cpu_id=3
22006          <idle>-0     (-----) [001] d.s3 82314.109971: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22007          <idle>-0     (-----) [001] d.s4 82314.109999: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22008          <idle>-0     (-----) [001] ...1 82314.110015: cpu_idle: state=4294967295 cpu_id=1
22009          <idle>-0     (-----) [001] d..1 82314.110027: cpu_idle: state=2 cpu_id=1
22010          <idle>-0     (-----) [002] .n.1 82314.110332: cpu_idle: state=4294967295 cpu_id=2
22011          <idle>-0     (-----) [002] d..2 82314.110357: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22012 crtc_commit:111-321   (  321) [002] d..3 82314.110433: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22013 crtc_commit:111-321   (  321) [002] d..4 82314.110490: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22014 crtc_commit:111-321   (  321) [002] d..2 82314.110738: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22015          <idle>-0     (-----) [002] d..1 82314.110759: cpu_idle: state=2 cpu_id=2
22016          <idle>-0     (-----) [000] .n.1 82314.110814: cpu_idle: state=4294967295 cpu_id=0
22017          <idle>-0     (-----) [000] d..2 82314.110848: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
22018 SDM_EventThread-644   (  619) [000] d..2 82314.110977: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22019          <idle>-0     (-----) [000] d..1 82314.110995: cpu_idle: state=2 cpu_id=0
22020          <idle>-0     (-----) [001] d.s3 82314.111247: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22021          <idle>-0     (-----) [001] d.s4 82314.111274: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22022          <idle>-0     (-----) [001] ...1 82314.111290: cpu_idle: state=4294967295 cpu_id=1
22023          <idle>-0     (-----) [001] d..1 82314.111301: cpu_idle: state=2 cpu_id=1
22024          <idle>-0     (-----) [002] .n.1 82314.111598: cpu_idle: state=4294967295 cpu_id=2
22025          <idle>-0     (-----) [002] d..2 82314.111622: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22026 crtc_commit:111-321   (  321) [002] d..2 82314.112177: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22027          <idle>-0     (-----) [001] d.s3 82314.112195: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22028          <idle>-0     (-----) [002] d..1 82314.112199: cpu_idle: state=2 cpu_id=2
22029          <idle>-0     (-----) [001] d.s4 82314.112229: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22030          <idle>-0     (-----) [001] ...1 82314.112245: cpu_idle: state=4294967295 cpu_id=1
22031          <idle>-0     (-----) [001] d..1 82314.112257: cpu_idle: state=2 cpu_id=1
22032          <idle>-0     (-----) [002] .n.1 82314.112683: cpu_idle: state=4294967295 cpu_id=2
22033          <idle>-0     (-----) [002] d..2 82314.112707: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22034 crtc_commit:111-321   (  321) [002] d..1 82314.112785: clk_enable: disp_cc_mdss_vsync_clk_src
22035 crtc_commit:111-321   (  321) [002] d..1 82314.112794: clk_enable: disp_cc_mdss_rscc_vsync_clk
22036 crtc_commit:111-321   (  321) [002] d..1 82314.112818: clk_enable: disp_cc_mdss_rscc_ahb_clk
22037 crtc_commit:111-321   (  321) [002] d..2 82314.112909: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22038          <idle>-0     (-----) [002] d..1 82314.112928: cpu_idle: state=0 cpu_id=2
22039          <idle>-0     (-----) [002] d.h2 82314.112995: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22040          <idle>-0     (-----) [002] dnh3 82314.113014: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22041          <idle>-0     (-----) [002] .n.1 82314.113029: cpu_idle: state=4294967295 cpu_id=2
22042          <idle>-0     (-----) [002] d..2 82314.113040: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22043 crtc_commit:111-321   (  321) [002] d..2 82314.113068: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22044          <idle>-0     (-----) [002] d..1 82314.113079: cpu_idle: state=0 cpu_id=2
22045          <idle>-0     (-----) [002] d.h2 82314.113162: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22046          <idle>-0     (-----) [002] dnh3 82314.113173: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22047          <idle>-0     (-----) [002] .n.1 82314.113183: cpu_idle: state=4294967295 cpu_id=2
22048          <idle>-0     (-----) [002] d..2 82314.113194: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22049 crtc_commit:111-321   (  321) [002] d..1 82314.113239: clk_enable: gcc_disp_axi_clk
22050 crtc_commit:111-321   (  321) [002] d..1 82314.113257: clk_enable: disp_cc_mdss_ahb_clk
22051 crtc_commit:111-321   (  321) [002] d..1 82314.113272: clk_enable: disp_cc_mdss_axi_clk
22052 crtc_commit:111-321   (  321) [002] d..1 82314.113296: clk_enable: gcc_disp_gpll0_clk_src
22053 crtc_commit:111-321   (  321) [002] d..1 82314.113810: clk_enable: disp_cc_mdss_mdp_clk_src
22054 crtc_commit:111-321   (  321) [002] d..1 82314.113850: clk_enable: disp_cc_mdss_mdp_clk
22055 crtc_commit:111-321   (  321) [002] d..1 82314.113864: clk_enable: disp_cc_mdss_vsync_clk
22056 crtc_commit:111-321   (  321) [002] d..2 82314.114207: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22057          <idle>-0     (-----) [002] d..1 82314.114233: cpu_idle: state=0 cpu_id=2
22058          <idle>-0     (-----) [002] d..2 82314.115679: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22059          <idle>-0     (-----) [002] dn.3 82314.115708: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
22060          <idle>-0     (-----) [002] .n.1 82314.115713: cpu_idle: state=4294967295 cpu_id=2
22061          <idle>-0     (-----) [002] d..2 82314.115731: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
22062     ksoftirqd/2-26    (   26) [002] d.s2 82314.115756: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22063     ksoftirqd/2-26    (   26) [002] d.s3 82314.115811: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
22064     ksoftirqd/2-26    (   26) [002] d..2 82314.115837: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22065<...>-1054 ( 1054) [002] .... 82314.115917: clk_set_rate: l3_cluster0_vote_clk 403200000
22066<...>-1054 ( 1054) [002] .... 82314.115943: clk_set_rate: l3_clk 403200000
22067<...>-1054 ( 1054) [002] d..2 82314.116057: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22068          <idle>-0     (-----) [002] d..1 82314.116074: cpu_idle: state=2 cpu_id=2
22069          <idle>-0     (-----) [000] d.h7 82314.120062: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22070          <idle>-0     (-----) [000] dnh8 82314.120082: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22071          <idle>-0     (-----) [000] dnh9 82314.120093: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22072          <idle>-0     (-----) [000] dnha 82314.120115: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22073          <idle>-0     (-----) [000] dnh7 82314.120119: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22074          <idle>-0     (-----) [000] dnh8 82314.120137: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22075          <idle>-0     (-----) [000] .n.1 82314.120233: cpu_idle: state=4294967295 cpu_id=0
22076          <idle>-0     (-----) [000] d..2 82314.120253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
22077     kworker/0:1-25262 (25262) [000] d..2 82314.120273: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
22078 SDM_EventThread-644   (  619) [000] d..2 82314.120331: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22079          <idle>-0     (-----) [000] d..2 82314.120337: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22080          <idle>-0     (-----) [000] dn.3 82314.120349: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22081          <idle>-0     (-----) [000] d..2 82314.120360: 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
22082     ksoftirqd/0-3     (    3) [000] d.s2 82314.120369: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
22083          <idle>-0     (-----) [002] .n.1 82314.120403: cpu_idle: state=4294967295 cpu_id=2
22084     ksoftirqd/0-3     (    3) [000] d.s3 82314.120413: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22085     ksoftirqd/0-3     (    3) [000] d.s2 82314.120421: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22086     ksoftirqd/0-3     (    3) [000] d.s3 82314.120430: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22087          <idle>-0     (-----) [002] d..2 82314.120431: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22088     ksoftirqd/0-3     (    3) [000] d..2 82314.120442: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
22089 crtc_commit:111-321   (  321) [002] d..1 82314.120473: clk_disable: disp_cc_mdss_vsync_clk
22090     kworker/0:1-25262 (25262) [000] d..2 82314.120487: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22091 crtc_commit:111-321   (  321) [002] d..1 82314.120491: clk_disable: disp_cc_mdss_mdp_clk
22092 crtc_commit:111-321   (  321) [002] d..1 82314.120506: clk_disable: disp_cc_mdss_mdp_clk_src
22093 crtc_commit:111-321   (  321) [002] d..1 82314.120541: clk_disable: gcc_disp_gpll0_clk_src
22094 crtc_commit:111-321   (  321) [002] d..1 82314.121086: clk_disable: disp_cc_mdss_axi_clk
22095 crtc_commit:111-321   (  321) [002] d..1 82314.121105: clk_disable: disp_cc_mdss_ahb_clk
22096<...>-1054 ( 1054) [000] d..2 82314.121107: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22097 crtc_commit:111-321   (  321) [002] d..1 82314.121117: clk_disable: gcc_disp_axi_clk
22098          <idle>-0     (-----) [000] d..1 82314.121125: cpu_idle: state=2 cpu_id=0
22099 crtc_commit:111-321   (  321) [002] d..2 82314.121210: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22100          <idle>-0     (-----) [002] d..1 82314.121227: cpu_idle: state=0 cpu_id=2
22101          <idle>-0     (-----) [002] d.h2 82314.121286: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22102          <idle>-0     (-----) [002] dnh3 82314.121303: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22103          <idle>-0     (-----) [002] .n.1 82314.121314: cpu_idle: state=4294967295 cpu_id=2
22104          <idle>-0     (-----) [002] d..2 82314.121325: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22105 crtc_commit:111-321   (  321) [002] d..1 82314.121343: clk_disable: disp_cc_mdss_rscc_ahb_clk
22106 crtc_commit:111-321   (  321) [002] d..1 82314.121360: clk_disable: disp_cc_mdss_rscc_vsync_clk
22107 crtc_commit:111-321   (  321) [002] d..1 82314.121372: clk_disable: disp_cc_mdss_vsync_clk_src
22108 crtc_commit:111-321   (  321) [002] d..2 82314.121556: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22109          <idle>-0     (-----) [002] d..1 82314.121573: cpu_idle: state=2 cpu_id=2
22110          <idle>-0     (-----) [001] d.s3 82314.121881: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22111          <idle>-0     (-----) [001] d.s4 82314.121904: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22112          <idle>-0     (-----) [001] d..2 82314.121913: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22113          <idle>-0     (-----) [001] dn.3 82314.121928: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22114          <idle>-0     (-----) [001] .n.1 82314.121934: cpu_idle: state=4294967295 cpu_id=1
22115          <idle>-0     (-----) [001] d..2 82314.121954: 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
22116     ksoftirqd/1-18    (   18) [001] d..2 82314.121997: 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
22117          <idle>-0     (-----) [001] d..1 82314.122012: cpu_idle: state=2 cpu_id=1
22118          <idle>-0     (-----) [002] .n.1 82314.122190: cpu_idle: state=4294967295 cpu_id=2
22119          <idle>-0     (-----) [002] d..2 82314.122212: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22120 crtc_commit:111-321   (  321) [002] d..2 82314.122431: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22121          <idle>-0     (-----) [002] d..1 82314.122448: cpu_idle: state=2 cpu_id=2
22122          <idle>-0     (-----) [001] d.s3 82314.122773: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22123          <idle>-0     (-----) [001] d.s4 82314.122797: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22124          <idle>-0     (-----) [001] ...1 82314.122810: cpu_idle: state=4294967295 cpu_id=1
22125          <idle>-0     (-----) [001] d..1 82314.122819: cpu_idle: state=2 cpu_id=1
22126          <idle>-0     (-----) [002] .n.1 82314.123109: cpu_idle: state=4294967295 cpu_id=2
22127          <idle>-0     (-----) [002] d..2 82314.123130: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22128 crtc_commit:111-321   (  321) [002] d..3 82314.123155: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22129 crtc_commit:111-321   (  321) [002] d..4 82314.123204: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
22130 crtc_commit:111-321   (  321) [002] d..2 82314.123226: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
22131 SDM_EventThread-644   (  619) [002] d..2 82314.123291: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22132          <idle>-0     (-----) [002] d..1 82314.123308: cpu_idle: state=2 cpu_id=2
22133          <idle>-0     (-----) [000] ...1 82314.237081: cpu_idle: state=4294967295 cpu_id=0
22134          <idle>-0     (-----) [001] d.H3 82314.237103: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
22135          <idle>-0     (-----) [000] d..1 82314.237179: cpu_idle: state=2 cpu_id=0
22136          <idle>-0     (-----) [001] dnH4 82314.237236: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
22137          <idle>-0     (-----) [001] dns3 82314.237305: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
22138          <idle>-0     (-----) [001] dns4 82314.237390: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
22139          <idle>-0     (-----) [001] dns3 82314.237421: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22140          <idle>-0     (-----) [001] dns4 82314.237626: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22141          <idle>-0     (-----) [001] .n.1 82314.237745: cpu_idle: state=4294967295 cpu_id=1
22142          <idle>-0     (-----) [001] d..2 82314.237824: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
22143         sugov:0-576   (  576) [001] .... 82314.237982: clk_set_rate: pwrcl_clk 652800000
22144         sugov:0-576   (  576) [001] .... 82314.238075: clk_set_rate: cpu3_pwrcl_clk 748800000
22145         sugov:0-576   (  576) [001] .... 82314.238099: clk_set_rate: cpu2_pwrcl_clk 748800000
22146         sugov:0-576   (  576) [001] .... 82314.238110: clk_set_rate: cpu1_pwrcl_clk 748800000
22147         sugov:0-576   (  576) [001] .... 82314.238124: clk_set_rate: cpu0_pwrcl_clk 652800000
22148         sugov:0-576   (  576) [001] .... 82314.238199: cpu_frequency: state=652800 cpu_id=0
22149         sugov:0-576   (  576) [001] .... 82314.238323: cpu_frequency: state=652800 cpu_id=1
22150         sugov:0-576   (  576) [001] .... 82314.238331: cpu_frequency: state=652800 cpu_id=2
22151         sugov:0-576   (  576) [001] .... 82314.238338: cpu_frequency: state=652800 cpu_id=3
22152         sugov:0-576   (  576) [001] d..2 82314.238436: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
22153     kworker/1:1-25249 (25249) [001] d..2 82314.238910: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22154<...>-1054 ( 1054) [001] .... 82314.239222: clk_set_rate: l3_cluster0_vote_clk 300000000
22155<...>-1054 ( 1054) [001] .... 82314.239246: clk_set_rate: l3_clk 300000000
22156<...>-1054 ( 1054) [001] d..2 82314.239717: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22157          <idle>-0     (-----) [001] d..1 82314.239755: cpu_idle: state=2 cpu_id=1
22158          <idle>-0     (-----) [000] d.h3 82314.243671: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22159          <idle>-0     (-----) [000] dnh4 82314.243722: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22160          <idle>-0     (-----) [000] .n.1 82314.243854: cpu_idle: state=4294967295 cpu_id=0
22161          <idle>-0     (-----) [000] d..2 82314.243901: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
22162     kworker/0:1-25262 (25262) [000] d..2 82314.243934: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
22163     kworker/0:1-25262 (25262) [000] d..3 82314.243961: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
22164     kworker/0:1-25262 (25262) [000] d..3 82314.243989: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
22165     kworker/0:1-25262 (25262) [000] d..2 82314.244054: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22166          <idle>-0     (-----) [000] d..2 82314.244065: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22167          <idle>-0     (-----) [000] dn.3 82314.244093: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22168          <idle>-0     (-----) [000] d..2 82314.244110: 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
22169     ksoftirqd/0-3     (    3) [000] d.s2 82314.244146: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22170     ksoftirqd/0-3     (    3) [000] d.s3 82314.244168: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22171     ksoftirqd/0-3     (    3) [000] d..2 82314.244187: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
22172     kworker/0:1-25262 (25262) [000] d..2 82314.244246: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22173          <idle>-0     (-----) [000] d..1 82314.244270: cpu_idle: state=2 cpu_id=0
22174          <idle>-0     (-----) [001] .n.1 82314.244316: cpu_idle: state=4294967295 cpu_id=1
22175          <idle>-0     (-----) [001] d..2 82314.244356: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
22176     kworker/1:1-25249 (25249) [001] d..2 82314.244555: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22177          <idle>-0     (-----) [001] d..1 82314.244574: cpu_idle: state=2 cpu_id=1
22178          <idle>-0     (-----) [001] d.h2 82314.334929: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
22179          <idle>-0     (-----) [000] d..2 82314.335069: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22180          <idle>-0     (-----) [001] dnh3 82314.335167: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
22181          <idle>-0     (-----) [000] dn.3 82314.335198: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22182          <idle>-0     (-----) [001] .n.1 82314.335565: cpu_idle: state=4294967295 cpu_id=1
22183          <idle>-0     (-----) [000] dns3 82314.335571: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22184          <idle>-0     (-----) [001] d..2 82314.335702: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
22185          <idle>-0     (-----) [000] dns4 82314.335778: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22186          <idle>-0     (-----) [000] .n.1 82314.335828: cpu_idle: state=4294967295 cpu_id=0
22187          <idle>-0     (-----) [000] d..2 82314.335899: 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
22188     ksoftirqd/0-3     (    3) [000] d..2 82314.335954: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22189 [email protected]  (  776) [001] d..2 82314.336235: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22190          <idle>-0     (-----) [001] d..1 82314.336376: cpu_idle: state=2 cpu_id=1
22191<...>-1054 ( 1054) [000] d..2 82314.337472: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22192          <idle>-0     (-----) [000] d..1 82314.337516: cpu_idle: state=0 cpu_id=0
22193          <idle>-0     (-----) [001] d.s3 82314.337848: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22194          <idle>-0     (-----) [001] d.s4 82314.337892: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
22195          <idle>-0     (-----) [001] d.s4 82314.337922: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22196          <idle>-0     (-----) [000] .n.1 82314.337938: cpu_idle: state=4294967295 cpu_id=0
22197          <idle>-0     (-----) [001] ...1 82314.337953: cpu_idle: state=4294967295 cpu_id=1
22198          <idle>-0     (-----) [000] d..2 82314.337960: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22199          <idle>-0     (-----) [001] d..1 82314.337965: cpu_idle: state=2 cpu_id=1
22200<...>-1054 ( 1054) [000] d..2 82314.338022: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22201          <idle>-0     (-----) [000] d..1 82314.338035: cpu_idle: state=0 cpu_id=0
22202          <idle>-0     (-----) [000] d.h2 82314.340940: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
22203          <idle>-0     (-----) [000] dnh3 82314.340993: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
22204          <idle>-0     (-----) [000] .n.1 82314.341055: cpu_idle: state=4294967295 cpu_id=0
22205          <idle>-0     (-----) [000] d..2 82314.341080: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
22206 RxSchedulerPurg-25567 (25538) [000] d..2 82314.342447: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22207          <idle>-0     (-----) [000] d..1 82314.342474: cpu_idle: state=2 cpu_id=0
22208          <idle>-0     (-----) [001] d..2 82314.771139: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22209          <idle>-0     (-----) [000] ...1 82314.771274: cpu_idle: state=4294967295 cpu_id=0
22210          <idle>-0     (-----) [001] dn.3 82314.771329: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22211          <idle>-0     (-----) [000] d..1 82314.771358: cpu_idle: state=2 cpu_id=0
22212          <idle>-0     (-----) [001] dns3 82314.771714: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22213          <idle>-0     (-----) [001] dns4 82314.771936: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22214          <idle>-0     (-----) [001] dns3 82314.771975: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
22215          <idle>-0     (-----) [001] dns4 82314.772010: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
22216          <idle>-0     (-----) [001] .n.1 82314.772108: cpu_idle: state=4294967295 cpu_id=1
22217          <idle>-0     (-----) [001] d..2 82314.772260: 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
22218     ksoftirqd/1-18    (   18) [001] d..2 82314.772333: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
22219     kworker/1:1-25249 (25249) [001] d..2 82314.772436: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22220<...>-1054 ( 1054) [001] d..2 82314.773224: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22221          <idle>-0     (-----) [001] d..2 82314.773234: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22222          <idle>-0     (-----) [001] dn.3 82314.773248: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22223          <idle>-0     (-----) [001] d..2 82314.773267: 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
22224     ksoftirqd/1-18    (   18) [001] d..2 82314.773301: 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
22225          <idle>-0     (-----) [001] d..1 82314.773330: cpu_idle: state=2 cpu_id=1
22226          <idle>-0     (-----) [000] d.h2 82314.805326: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=000
22227          <idle>-0     (-----) [000] dnh3 82314.805645: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=000
22228          <idle>-0     (-----) [000] .n.1 82314.806287: cpu_idle: state=4294967295 cpu_id=0
22229          <idle>-0     (-----) [000] d..2 82314.806471: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
22230 PowerManagerSer-8971  ( 8943) [000] d..2 82314.807554: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22231          <idle>-0     (-----) [000] d..2 82314.807580: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22232          <idle>-0     (-----) [000] dn.3 82314.807624: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22233          <idle>-0     (-----) [000] d..2 82314.807650: 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
22234     ksoftirqd/0-3     (    3) [000] d.s2 82314.807742: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22235     ksoftirqd/0-3     (    3) [000] d.s3 82314.807934: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22236     ksoftirqd/0-3     (    3) [000] d..2 82314.807989: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22237<...>-1054 ( 1054) [000] d..2 82314.808778: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22238          <idle>-0     (-----) [000] d..1 82314.808866: cpu_idle: state=2 cpu_id=0
22239          <idle>-0     (-----) [000] d.h2 82314.924136: sched_waking: comm=CCodecWatchdog pid=9351 prio=120 target_cpu=000
22240          <idle>-0     (-----) [000] dnh3 82314.924434: sched_wakeup: comm=CCodecWatchdog pid=9351 prio=120 target_cpu=000
22241          <idle>-0     (-----) [001] d.h2 82314.924491: sched_waking: comm=CCodecWatchdog pid=9143 prio=120 target_cpu=001
22242          <idle>-0     (-----) [001] dnh3 82314.924576: sched_wakeup: comm=CCodecWatchdog pid=9143 prio=120 target_cpu=001
22243          <idle>-0     (-----) [001] .n.1 82314.924623: cpu_idle: state=4294967295 cpu_id=1
22244          <idle>-0     (-----) [001] d..2 82314.924961: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=9143 next_prio=120
22245          <idle>-0     (-----) [000] .n.1 82314.924984: cpu_idle: state=4294967295 cpu_id=0
22246          <idle>-0     (-----) [000] d..2 82314.925037: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=9351 next_prio=120
22247  CCodecWatchdog-9143  ( 8943) [001] d.s2 82314.925375: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22248  CCodecWatchdog-9143  ( 8943) [001] d.s3 82314.925540: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22249  CCodecWatchdog-9143  ( 8943) [001] d.s2 82314.925586: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
22250  CCodecWatchdog-9143  ( 8943) [001] d.s3 82314.925620: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
22251  CCodecWatchdog-9351  ( 9105) [000] d..2 82314.925835: sched_switch: prev_comm=CCodecWatchdog prev_pid=9351 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22252  CCodecWatchdog-9143  ( 8943) [001] d..2 82314.925880: sched_switch: prev_comm=CCodecWatchdog prev_pid=9143 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
22253          <idle>-0     (-----) [000] d..1 82314.925932: cpu_idle: state=2 cpu_id=0
22254     kworker/1:1-25249 (25249) [001] d..2 82314.925968: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22255          <idle>-0     (-----) [007] d.s3 82314.926434: sched_waking: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
22256          <idle>-0     (-----) [007] dns4 82314.926462: sched_wakeup: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
22257          <idle>-0     (-----) [007] .n.1 82314.926492: cpu_idle: state=4294967295 cpu_id=7
22258          <idle>-0     (-----) [007] d..2 82314.926512: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/7:3 next_pid=442 next_prio=120
22259     kworker/7:3-442   (  442) [007] d..2 82314.926551: sched_switch: prev_comm=kworker/7:3 prev_pid=442 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
22260          <idle>-0     (-----) [007] d..1 82314.926571: cpu_idle: state=2 cpu_id=7
22261<...>-1054 ( 1054) [001] d..2 82314.926600: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22262          <idle>-0     (-----) [001] d..1 82314.926634: cpu_idle: state=2 cpu_id=1
22263          <idle>-0     (-----) [000] d.h2 82314.958450: sched_waking: comm=oid.setupwizard pid=9298 prio=120 target_cpu=000
22264          <idle>-0     (-----) [000] dnh3 82314.958773: sched_wakeup: comm=oid.setupwizard pid=9298 prio=120 target_cpu=000
22265          <idle>-0     (-----) [000] .n.1 82314.959434: cpu_idle: state=4294967295 cpu_id=0
22266          <idle>-0     (-----) [000] d..2 82314.959615: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=9298 next_prio=120
22267 oid.setupwizard-9298  ( 9298) [000] d..2 82314.960709: sched_switch: prev_comm=oid.setupwizard prev_pid=9298 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22268          <idle>-0     (-----) [000] d..2 82314.960734: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22269          <idle>-0     (-----) [000] dn.3 82314.960782: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22270          <idle>-0     (-----) [000] d..2 82314.960804: 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
22271     ksoftirqd/0-3     (    3) [000] d.s2 82314.960898: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22272     ksoftirqd/0-3     (    3) [000] d.s3 82314.961085: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22273     ksoftirqd/0-3     (    3) [000] d..2 82314.961139: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22274<...>-1054 ( 1054) [000] d..2 82314.961739: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22275          <idle>-0     (-----) [000] d..1 82314.961829: cpu_idle: state=2 cpu_id=0
22276          <idle>-0     (-----) [003] d.h3 82314.986069: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
22277          <idle>-0     (-----) [000] d..2 82314.986228: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22278          <idle>-0     (-----) [003] dnh4 82314.986367: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
22279          <idle>-0     (-----) [000] dn.3 82314.986367: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
22280          <idle>-0     (-----) [000] dns3 82314.986753: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22281          <idle>-0     (-----) [003] dnh3 82314.986756: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
22282          <idle>-0     (-----) [000] dns4 82314.986810: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22283          <idle>-0     (-----) [000] .n.1 82314.986869: cpu_idle: state=4294967295 cpu_id=0
22284          <idle>-0     (-----) [003] dnh4 82314.986882: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
22285          <idle>-0     (-----) [003] .n.1 82314.986899: cpu_idle: state=4294967295 cpu_id=3
22286          <idle>-0     (-----) [000] d..2 82314.987004: 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
22287          <idle>-0     (-----) [003] d..2 82314.987005: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
22288     ksoftirqd/0-3     (    3) [000] d..2 82314.987075: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22289   kworker/u17:1-570   (  570) [003] d..2 82314.987178: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
22290   kworker/u17:1-570   (  570) [003] d..3 82314.987217: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
22291   kworker/u17:1-570   (  570) [003] d..2 82314.987289: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
22292          <idle>-0     (-----) [001] .n.1 82314.987294: cpu_idle: state=4294967295 cpu_id=1
22293          <idle>-0     (-----) [001] d..2 82314.987354: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
22294     kworker/3:1-25210 (25210) [003] d..2 82314.987433: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=000
22295         sugov:0-576   (  576) [001] .... 82314.987527: clk_set_rate: pwrcl_clk 748800000
22296     kworker/3:1-25210 (25210) [003] d..3 82314.987593: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
22297         sugov:0-576   (  576) [001] .... 82314.987621: clk_set_rate: cpu3_pwrcl_clk 652800000
22298         sugov:0-576   (  576) [001] .... 82314.987646: clk_set_rate: cpu2_pwrcl_clk 652800000
22299         sugov:0-576   (  576) [001] .... 82314.987657: clk_set_rate: cpu1_pwrcl_clk 652800000
22300         sugov:0-576   (  576) [001] .... 82314.987667: clk_set_rate: cpu0_pwrcl_clk 748800000
22301     kworker/3:1-25210 (25210) [003] d..2 82314.987681: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
22302         sugov:0-576   (  576) [001] .... 82314.987685: cpu_frequency: state=748800 cpu_id=0
22303         sugov:0-576   (  576) [001] .... 82314.987801: cpu_frequency: state=748800 cpu_id=1
22304         sugov:0-576   (  576) [001] .... 82314.987810: cpu_frequency: state=748800 cpu_id=2
22305         sugov:0-576   (  576) [001] .... 82314.987815: cpu_frequency: state=748800 cpu_id=3
22306         sugov:0-576   (  576) [001] d..2 82314.987998: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22307          <idle>-0     (-----) [001] d..1 82314.988068: cpu_idle: state=2 cpu_id=1
22308<...>-1054 ( 1054) [000] d..2 82314.988074: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22309          <idle>-0     (-----) [000] d..1 82314.988110: cpu_idle: state=2 cpu_id=0
22310            adbd-24054 (  960) [003] d.h2 82314.988217: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
22311            adbd-24054 (  960) [003] dnh3 82314.988255: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
22312            adbd-24054 (  960) [003] d..2 82314.988273: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
22313   kworker/u17:1-570   (  570) [003] d..2 82314.988293: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
22314   kworker/u17:1-570   (  570) [003] d..3 82314.988304: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
22315   kworker/u17:1-570   (  570) [003] d..2 82314.988335: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
22316     kworker/3:1-25210 (25210) [003] d..2 82314.988731: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
22317            adbd-24054 (  960) [003] d..2 82314.988913: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
22318            adbd-24054 (  960) [003] d..3 82314.988956: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
22319            adbd-24054 (  960) [003] d..2 82314.989110: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
22320          <idle>-0     (-----) [004] d.h2 82314.992405: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
22321          <idle>-0     (-----) [004] dnh3 82314.992446: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
22322          <idle>-0     (-----) [004] .n.1 82314.992483: cpu_idle: state=4294967295 cpu_id=4
22323          <idle>-0     (-----) [004] d..2 82314.992508: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
22324 s.nexuslauncher-10023 (10023) [004] .... 82314.993104: binder_transaction: transaction=1568248 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
22325 s.nexuslauncher-10023 (10023) [004] .... 82314.993135: binder_transaction_alloc_buf: transaction=1568248 data_size=80 offsets_size=0
22326 s.nexuslauncher-10023 (10023) [004] d..4 82314.993160: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
22327 s.nexuslauncher-10023 (10023) [004] d..2 82314.993398: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
22328          <idle>-0     (-----) [004] d..1 82314.993420: cpu_idle: state=2 cpu_id=4
22329          <idle>-0     (-----) [000] dnh2 82314.993532: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
22330          <idle>-0     (-----) [000] .n.1 82314.993547: cpu_idle: state=4294967295 cpu_id=0
22331          <idle>-0     (-----) [000] d..2 82314.993574: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
22332<...>-8874 ( 8858) [000] .... 82314.993620: binder_transaction_received: transaction=1568248
22333<...>-8874 ( 8858) [000] ...1 82314.993969: tracing_mark_write: B|8858|HIDL::IComposerClient::getActiveConfig::client
22334<...>-8874 ( 8858) [000] ...1 82314.993999: tracing_mark_write: E|8858
22335            adbd-960   (  960) [003] d..2 82314.994002: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=27539 next_prio=120
22336<...>-8874 ( 8858) [000] .... 82314.994153: binder_transaction: transaction=1568249 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x7
22337<...>-8874 ( 8858) [000] .... 82314.994163: binder_transaction_alloc_buf: transaction=1568249 data_size=64 offsets_size=0
22338<...>-8874 ( 8858) [000] ...2 82314.994198: binder_set_priority: proc=619 thread=619 old=97 => new=120 desired=120
22339<...>-8874 ( 8858) [000] d..4 82314.994265: sched_waking: [email protected] pid=619 prio=120 target_cpu=003
22340<...>-8874 ( 8858) [000] d..5 82314.994318: sched_wakeup: [email protected] pid=619 prio=120 target_cpu=000
22341<...>-8874 ( 8858) [000] d..2 82314.994346: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=120
22342 [email protected]   (  619) [000] .... 82314.994374: binder_transaction_received: transaction=1568249
22343 [email protected]   (  619) [000] ...1 82314.994595: tracing_mark_write: B|619|HIDL::IComposerClient::getActiveConfig::server
22344 [email protected]   (  619) [000] ...1 82314.994737: tracing_mark_write: E|619
22345 [email protected]   (  619) [000] .... 82314.994777: binder_transaction: transaction=1568250 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
22346 [email protected]   (  619) [000] .... 82314.994785: binder_transaction_alloc_buf: transaction=1568250 data_size=12 offsets_size=0
22347 [email protected]   (  619) [000] d..2 82314.994796: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
22348 [email protected]   (  619) [000] dn.3 82314.994821: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
22349 [email protected]   (  619) [000] d..2 82314.994833: sched_switch: [email protected] prev_pid=619 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
22350<...>-8874 ( 8858) [000] .... 82314.994846: binder_transaction_received: transaction=1568250
22351<...>-8874 ( 8858) [000] d..1 82314.994959: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
22352<...>-8874 ( 8858) [000] d..2 82314.995018: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
22353<...>-8874 ( 8858) [000] d..1 82314.995043: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=003
22354<...>-8874 ( 8858) [000] d..2 82314.995085: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
22355<...>-8874 ( 8858) [000] d..1 82314.995101: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
22356<...>-8874 ( 8858) [000] d..2 82314.995122: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
22357              sh-27539 (27539) [003] d.s3 82314.995158: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22358              sh-27539 (27539) [003] d.s4 82314.995225: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
22359<...>-8874 ( 8858) [000] d..2 82314.995292: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=120
22360 [email protected]   (  619) [000] .... 82314.995303: binder_set_priority: proc=619 thread=619 old=120 => new=97 desired=97
22361          <idle>-0     (-----) [002] .n.1 82314.995398: cpu_idle: state=4294967295 cpu_id=2
22362          <idle>-0     (-----) [001] .n.1 82314.995432: cpu_idle: state=4294967295 cpu_id=1
22363          <idle>-0     (-----) [002] d..2 82314.995444: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
22364 [email protected]   (  619) [000] d..2 82314.995447: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22365          <idle>-0     (-----) [001] d..2 82314.995463: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
22366          <idle>-0     (-----) [000] d..1 82314.995471: cpu_idle: state=2 cpu_id=0
22367        DispSync-8879  ( 8858) [002] d..2 82314.995558: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22368  appEventThread-8881  ( 8858) [001] d..1 82314.995674: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
22369<...>-1054 ( 1054) [002] .... 82314.995678: clk_set_rate: l3_cluster0_vote_clk 576000000
22370<...>-1054 ( 1054) [002] .... 82314.995695: clk_set_rate: l3_clk 576000000
22371  appEventThread-8881  ( 8858) [001] d..2 82314.995714: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
22372  appEventThread-8881  ( 8858) [001] d..2 82314.995805: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
22373<...>-8894 ( 8858) [001] ...1 82314.995892: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
22374<...>-8894 ( 8858) [001] ...1 82314.995902: tracing_mark_write: E|8858
22375<...>-8894 ( 8858) [001] .... 82314.995955: binder_transaction: transaction=1568251 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
22376<...>-8894 ( 8858) [001] .... 82314.995961: binder_transaction_alloc_buf: transaction=1568251 data_size=68 offsets_size=0
22377<...>-8894 ( 8858) [001] ...2 82314.995969: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
22378<...>-8894 ( 8858) [001] d..4 82314.995982: sched_waking: [email protected] pid=619 prio=112 target_cpu=000
22379          <idle>-0     (-----) [000] .n.1 82314.996002: cpu_idle: state=4294967295 cpu_id=0
22380<...>-8894 ( 8858) [001] d..5 82314.996004: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=001
22381          <idle>-0     (-----) [000] d..2 82314.996021: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
22382<...>-8894 ( 8858) [001] d..2 82314.996024: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
22383 [email protected]   (  619) [001] .... 82314.996037: binder_transaction_received: transaction=1568251
22384        DispSync-8879  ( 8858) [000] d..2 82314.996080: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22385 [email protected]   (  619) [001] ...1 82314.996092: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
22386          <idle>-0     (-----) [000] d..1 82314.996098: cpu_idle: state=0 cpu_id=0
22387 [email protected]   (  619) [001] ...1 82314.996131: tracing_mark_write: C|619|SetVsyncState |1
22388 [email protected]   (  619) [001] d..4 82314.996220: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22389 [email protected]   (  619) [001] d..5 82314.996264: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22390          <idle>-0     (-----) [000] .n.1 82314.996273: cpu_idle: state=4294967295 cpu_id=0
22391          <idle>-0     (-----) [000] d..2 82314.996286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22392 [email protected]   (  619) [001] ...1 82314.996325: tracing_mark_write: E|619
22393 [email protected]   (  619) [001] .... 82314.996340: binder_transaction: transaction=1568252 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
22394 [email protected]   (  619) [001] .... 82314.996346: binder_transaction_alloc_buf: transaction=1568252 data_size=8 offsets_size=0
22395 [email protected]   (  619) [001] d..2 82314.996351: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
22396 crtc_commit:111-321   (  321) [000] d..3 82314.996368: sched_pi_setprio: comm=kworker/u16:9 pid=1054 oldprio=120 newprio=83
22397 [email protected]   (  619) [001] dn.3 82314.996368: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
22398 [email protected]   (  619) [001] d..2 82314.996379: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
22399<...>-1054 ( 1054) [002] d..2 82314.996387: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22400<...>-8894 ( 8858) [001] .... 82314.996390: binder_transaction_received: transaction=1568252
22401 crtc_commit:111-321   (  321) [000] d..2 82314.996412: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22402          <idle>-0     (-----) [002] d..1 82314.996417: cpu_idle: state=2 cpu_id=2
22403          <idle>-0     (-----) [000] d..1 82314.996424: cpu_idle: state=0 cpu_id=0
22404<...>-8894 ( 8858) [001] d..2 82314.996455: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
22405 [email protected]   (  619) [001] .... 82314.996461: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
22406 [email protected]   (  619) [001] d..2 82314.996534: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22407          <idle>-0     (-----) [001] d..1 82314.996555: cpu_idle: state=2 cpu_id=1
22408          <idle>-0     (-----) [001] d.s3 82314.997215: sched_waking: comm=kworker/u16:9 pid=1054 prio=83 target_cpu=002
22409          <idle>-0     (-----) [001] d.s4 82314.997239: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=83 target_cpu=002
22410          <idle>-0     (-----) [001] ...1 82314.997254: cpu_idle: state=4294967295 cpu_id=1
22411          <idle>-0     (-----) [001] d..1 82314.997263: cpu_idle: state=2 cpu_id=1
22412              sh-27539 (27539) [003] d..2 82314.997279: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
22413              sh-27539 (27539) [003] d..3 82314.997333: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
22414          <idle>-0     (-----) [002] .n.1 82314.997492: cpu_idle: state=4294967295 cpu_id=2
22415          <idle>-0     (-----) [002] d..2 82314.997512: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=83
22416<...>-1054 ( 1054) [002] d..1 82314.997538: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22417<...>-1054 ( 1054) [002] d..2 82314.997560: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22418          <idle>-0     (-----) [000] .n.1 82314.997565: cpu_idle: state=4294967295 cpu_id=0
22419<...>-1054 ( 1054) [002] d..2 82314.997566: sched_pi_setprio: comm=kworker/u16:9 pid=1054 oldprio=83 newprio=120
22420          <idle>-0     (-----) [000] d..2 82314.997577: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22421<...>-1054 ( 1054) [002] d..2 82314.997591: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=960 next_prio=120
22422 crtc_commit:111-321   (  321) [000] d..2 82314.997811: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22423            adbd-960   (  960) [002] d..2 82314.997815: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
22424          <idle>-0     (-----) [000] d..1 82314.997823: cpu_idle: state=0 cpu_id=0
22425            adbd-960   (  960) [002] d..3 82314.997878: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
22426          <idle>-0     (-----) [000] .n.1 82314.998073: cpu_idle: state=4294967295 cpu_id=0
22427          <idle>-0     (-----) [000] d..2 82314.998090: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=27540 next_prio=120
22428            adbd-960   (  960) [002] d..2 82314.998125: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
22429           <...>-27540 (-----) [000] d..1 82314.998128: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
22430         rcuop/2-29    (   29) [002] d..2 82314.998143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
22431           <...>-27540 (-----) [000] d..2 82314.998160: sched_blocked_reason: pid=960 iowait=0 caller=do_page_fault+0x4e0/0x594
22432           <...>-27540 (-----) [000] d..2 82314.998178: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
22433         rcuop/2-29    (   29) [002] d..3 82314.998211: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22434           <...>-27540 (-----) [000] d..2 82314.998218: sched_switch: prev_comm=adbd prev_pid=27540 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
22435         rcuop/2-29    (   29) [002] d..2 82314.998227: 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
22436          <idle>-0     (-----) [000] d..1 82314.998232: cpu_idle: state=0 cpu_id=0
22437          <idle>-0     (-----) [001] d.s3 82314.998253: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22438     rcu_preempt-7     (    7) [002] d..2 82314.998258: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
22439            adbd-960   (  960) [002] d..1 82314.998265: sched_waking: comm=adbd pid=27540 prio=120 target_cpu=000
22440          <idle>-0     (-----) [001] d.s4 82314.998282: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22441            adbd-960   (  960) [002] d..2 82314.998289: sched_blocked_reason: pid=27540 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22442          <idle>-0     (-----) [000] .n.1 82314.998291: cpu_idle: state=4294967295 cpu_id=0
22443            adbd-960   (  960) [002] d..2 82314.998296: sched_wakeup: comm=adbd pid=27540 prio=120 target_cpu=000
22444          <idle>-0     (-----) [000] d..2 82314.998312: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22445          <idle>-0     (-----) [001] ...1 82314.998316: cpu_idle: state=4294967295 cpu_id=1
22446          <idle>-0     (-----) [001] d..1 82314.998327: cpu_idle: state=2 cpu_id=1
22447            adbd-960   (  960) [002] d..2 82314.998334: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22448<...>-1054 ( 1054) [002] d..2 82314.998406: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22449          <idle>-0     (-----) [002] d..1 82314.998424: cpu_idle: state=0 cpu_id=2
22450 crtc_commit:111-321   (  321) [000] d.h2 82314.998494: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
22451 crtc_commit:111-321   (  321) [000] d.h3 82314.998521: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
22452          <idle>-0     (-----) [002] .n.1 82314.998529: cpu_idle: state=4294967295 cpu_id=2
22453          <idle>-0     (-----) [002] d..2 82314.998544: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
22454        DispSync-8879  ( 8858) [002] d..1 82314.998575: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
22455        DispSync-8879  ( 8858) [002] d..2 82314.998594: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
22456 crtc_commit:111-321   (  321) [000] d..2 82314.998625: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=adbd next_pid=27540 next_prio=120
22457           <...>-27540 (-----) [000] d..1 82314.998639: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
22458        DispSync-8879  ( 8858) [002] d..2 82314.998640: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22459          <idle>-0     (-----) [002] d..1 82314.998652: cpu_idle: state=0 cpu_id=2
22460           <...>-27540 (-----) [000] d..2 82314.998655: sched_blocked_reason: pid=960 iowait=0 caller=do_page_fault+0x4e0/0x594
22461           <...>-27540 (-----) [000] d..2 82314.998664: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
22462          <idle>-0     (-----) [002] .n.1 82314.998670: cpu_idle: state=4294967295 cpu_id=2
22463          <idle>-0     (-----) [002] d..2 82314.998681: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
22464            adbd-960   (  960) [002] d..1 82314.998694: sched_waking: comm=adbd pid=27540 prio=120 target_cpu=000
22465           <...>-27540 (-----) [000] d..2 82314.998697: sched_switch: prev_comm=adbd prev_pid=27540 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22466            adbd-960   (  960) [002] d..2 82314.998711: sched_blocked_reason: pid=27540 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22467            adbd-960   (  960) [002] d..2 82314.998720: sched_wakeup: comm=adbd pid=27540 prio=120 target_cpu=000
22468          <idle>-0     (-----) [000] d..2 82314.998734: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=27540 next_prio=120
22469           <...>-27540 (-----) [000] d..1 82314.998741: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
22470            adbd-960   (  960) [002] d..2 82314.998749: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22471          <idle>-0     (-----) [002] d..1 82314.998758: cpu_idle: state=0 cpu_id=2
22472           <...>-27540 (-----) [000] d..2 82314.998760: sched_blocked_reason: pid=960 iowait=0 caller=do_page_fault+0x4e0/0x594
22473           <...>-27540 (-----) [000] d..2 82314.998769: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
22474          <idle>-0     (-----) [002] .n.1 82314.998775: cpu_idle: state=4294967295 cpu_id=2
22475          <idle>-0     (-----) [002] d..2 82314.998785: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
22476           <...>-27540 (-----) [000] d..2 82314.998792: sched_switch: prev_comm=adbd prev_pid=27540 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22477            adbd-960   (  960) [002] d..1 82314.998793: sched_waking: comm=adbd pid=27540 prio=120 target_cpu=000
22478          <idle>-0     (-----) [000] d..1 82314.998804: cpu_idle: state=0 cpu_id=0
22479            adbd-960   (  960) [002] d..2 82314.998804: sched_blocked_reason: pid=27540 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
22480            adbd-960   (  960) [002] d..2 82314.998812: sched_wakeup: comm=adbd pid=27540 prio=120 target_cpu=000
22481          <idle>-0     (-----) [000] .n.1 82314.998821: cpu_idle: state=4294967295 cpu_id=0
22482          <idle>-0     (-----) [000] d..2 82314.998833: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=27540 next_prio=120
22483            adbd-960   (  960) [002] d..2 82314.998835: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22484           <...>-27540 (-----) [000] d..1 82314.998838: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
22485          <idle>-0     (-----) [002] d..1 82314.998844: cpu_idle: state=0 cpu_id=2
22486           <...>-27540 (-----) [000] d..2 82314.998848: sched_blocked_reason: pid=960 iowait=0 caller=do_page_fault+0x4e0/0x594
22487           <...>-27540 (-----) [000] d..2 82314.998856: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
22488          <idle>-0     (-----) [002] .n.1 82314.998862: cpu_idle: state=4294967295 cpu_id=2
22489          <idle>-0     (-----) [002] d..2 82314.998872: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
22490          <idle>-0     (-----) [001] dns2 82314.998881: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22491          <idle>-0     (-----) [001] dns3 82314.998904: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
22492          <idle>-0     (-----) [001] .n.1 82314.998914: cpu_idle: state=4294967295 cpu_id=1
22493          <idle>-0     (-----) [001] d..2 82314.998932: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
22494            adbd-960   (  960) [002] d..1 82314.998932: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
22495           <...>-27540 (-----) [000] d..2 82314.998951: sched_switch: prev_comm=shell svc 27539 prev_pid=27540 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22496          <idle>-0     (-----) [000] d..1 82314.998966: cpu_idle: state=0 cpu_id=0
22497            adbd-960   (  960) [002] d..2 82314.998978: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
22498          <idle>-0     (-----) [000] .n.1 82314.998985: cpu_idle: state=4294967295 cpu_id=0
22499          <idle>-0     (-----) [000] d..2 82314.998999: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
22500  appEventThread-8881  ( 8858) [001] d..3 82314.999038: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
22501  appEventThread-8881  ( 8858) [001] d..2 82314.999097: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
22502     ksoftirqd/1-18    (   18) [001] d.s2 82314.999117: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22503     ksoftirqd/1-18    (   18) [001] d.s3 82314.999140: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22504              sh-27539 (27539) [003] d.h2 82314.999150: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
22505            adbd-24055 (  960) [000] d..2 82314.999151: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22506            adbd-960   (  960) [002] d..2 82314.999169: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22507          <idle>-0     (-----) [002] d..1 82314.999181: cpu_idle: state=0 cpu_id=2
22508     ksoftirqd/1-18    (   18) [001] d..2 82314.999183: 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
22509              sh-27539 (27539) [003] d.h3 82314.999205: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
22510          <idle>-0     (-----) [001] d..1 82314.999209: cpu_idle: state=0 cpu_id=1
22511          <idle>-0     (-----) [002] .n.1 82314.999211: cpu_idle: state=4294967295 cpu_id=2
22512          <idle>-0     (-----) [002] d..2 82314.999223: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
22513 crtc_commit:111-321   (  321) [000] d..1 82314.999236: clk_enable: disp_cc_mdss_vsync_clk_src
22514 crtc_commit:111-321   (  321) [000] d..1 82314.999242: clk_enable: disp_cc_mdss_rscc_vsync_clk
22515   kworker/u17:1-570   (  570) [002] d..2 82314.999247: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
22516   kworker/u17:1-570   (  570) [002] d..3 82314.999271: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
22517 crtc_commit:111-321   (  321) [000] d..1 82314.999285: clk_enable: disp_cc_mdss_rscc_ahb_clk
22518   kworker/u17:1-570   (  570) [002] d..2 82314.999302: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
22519     kworker/2:1-25259 (25259) [002] d..2 82314.999322: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
22520 crtc_commit:111-321   (  321) [000] d..2 82314.999365: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22521     kworker/2:1-25259 (25259) [002] d..3 82314.999367: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
22522          <idle>-0     (-----) [000] d..1 82314.999379: cpu_idle: state=0 cpu_id=0
22523     kworker/2:1-25259 (25259) [002] d..2 82314.999388: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
22524            adbd-24055 (  960) [002] d..2 82314.999445: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22525          <idle>-0     (-----) [000] d.h2 82314.999450: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22526          <idle>-0     (-----) [002] d..1 82314.999457: cpu_idle: state=0 cpu_id=2
22527          <idle>-0     (-----) [000] dnh3 82314.999466: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22528          <idle>-0     (-----) [000] .n.1 82314.999476: cpu_idle: state=4294967295 cpu_id=0
22529          <idle>-0     (-----) [000] d..2 82314.999486: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22530 crtc_commit:111-321   (  321) [000] d..1 82314.999537: clk_enable: gcc_disp_axi_clk
22531 crtc_commit:111-321   (  321) [000] d..1 82314.999559: clk_enable: disp_cc_mdss_ahb_clk
22532 crtc_commit:111-321   (  321) [000] d..1 82314.999574: clk_enable: disp_cc_mdss_axi_clk
22533 crtc_commit:111-321   (  321) [000] d..1 82314.999604: clk_enable: gcc_disp_gpll0_clk_src
22534              sh-27539 (27539) [003] d.h3 82314.999839: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
22535              sh-27539 (27539) [003] d.h4 82314.999862: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
22536          <idle>-0     (-----) [002] .n.1 82314.999869: cpu_idle: state=4294967295 cpu_id=2
22537          <idle>-0     (-----) [002] d..2 82314.999881: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
22538   kworker/u17:1-570   (  570) [002] d..2 82314.999897: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
22539   kworker/u17:1-570   (  570) [002] d..3 82314.999909: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
22540   kworker/u17:1-570   (  570) [002] d..2 82314.999938: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
22541     kworker/2:1-25259 (25259) [002] d..2 82314.999955: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
22542     kworker/2:1-25259 (25259) [002] d..3 82314.999999: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=002
22543     kworker/2:1-25259 (25259) [002] d..2 82315.000029: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
22544          <idle>-0     (-----) [004] dnh2 82315.000087: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
22545          <idle>-0     (-----) [004] .n.1 82315.000095: cpu_idle: state=4294967295 cpu_id=4
22546          <idle>-0     (-----) [004] d..2 82315.000108: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
22547 crtc_commit:111-321   (  321) [000] d..1 82315.000115: clk_enable: disp_cc_mdss_mdp_clk_src
22548            adbd-24054 (  960) [002] d..2 82315.000155: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22549 crtc_commit:111-321   (  321) [000] d..1 82315.000158: clk_enable: disp_cc_mdss_mdp_clk
22550          <idle>-0     (-----) [002] d..1 82315.000168: cpu_idle: state=0 cpu_id=2
22551 crtc_commit:111-321   (  321) [000] d..1 82315.000172: clk_enable: disp_cc_mdss_vsync_clk
22552              sh-27539 (27539) [003] d.h2 82315.000173: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
22553              sh-27539 (27539) [003] d.h3 82315.000195: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
22554          <idle>-0     (-----) [002] .n.1 82315.000201: cpu_idle: state=4294967295 cpu_id=2
22555          <idle>-0     (-----) [002] d..2 82315.000213: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
22556   kworker/u17:1-570   (  570) [002] d..2 82315.000228: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
22557   kworker/u17:1-570   (  570) [002] d..3 82315.000240: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
22558   kworker/u17:1-570   (  570) [002] d..2 82315.000267: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
22559     kworker/2:1-25259 (25259) [002] d..2 82315.000282: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=002
22560     kworker/2:1-25259 (25259) [002] d..3 82315.000298: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=002
22561     kworker/2:1-25259 (25259) [002] d..2 82315.000315: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
22562            adbd-24054 (  960) [002] d..2 82315.000349: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
22563            adbd-24054 (  960) [002] d..3 82315.000363: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
22564            adbd-24054 (  960) [002] d..2 82315.000445: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
22565 crtc_commit:111-321   (  321) [000] d..2 82315.000481: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22566          <idle>-0     (-----) [000] d..1 82315.000498: cpu_idle: state=0 cpu_id=0
22567 s.nexuslauncher-10023 (10023) [004] d..2 82315.000539: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
22568          <idle>-0     (-----) [004] d..1 82315.000551: cpu_idle: state=2 cpu_id=4
22569            adbd-960   (  960) [002] d..2 82315.000567: sched_waking: comm=shell svc 27539 pid=27540 prio=120 target_cpu=000
22570            adbd-960   (  960) [002] d..3 82315.000591: sched_wakeup: comm=shell svc 27539 pid=27540 prio=120 target_cpu=002
22571            adbd-960   (  960) [002] d..1 82315.000609: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
22572            adbd-960   (  960) [002] d..2 82315.000656: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
22573          <idle>-0     (-----) [000] .n.1 82315.000663: cpu_idle: state=4294967295 cpu_id=0
22574          <idle>-0     (-----) [000] d..2 82315.000676: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
22575            adbd-960   (  960) [002] d..2 82315.000734: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=shell svc 27539 next_pid=27540 next_prio=120
22576              sh-27539 (27539) [003] d.h2 82315.000775: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
22577            adbd-24055 (  960) [000] d..2 82315.000778: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22578          <idle>-0     (-----) [000] d..1 82315.000795: cpu_idle: state=0 cpu_id=0
22579              sh-27539 (27539) [003] d.h3 82315.000824: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=000
22580          <idle>-0     (-----) [000] .n.1 82315.000831: cpu_idle: state=4294967295 cpu_id=0
22581           <...>-27540 (-----) [002] d..2 82315.000843: sched_switch: prev_comm=shell svc 27539 prev_pid=27540 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22582          <idle>-0     (-----) [000] d..2 82315.000844: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
22583          <idle>-0     (-----) [002] d..1 82315.000856: cpu_idle: state=0 cpu_id=2
22584   kworker/u17:1-570   (  570) [000] d..2 82315.000863: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22585   kworker/u17:1-570   (  570) [000] d..3 82315.000887: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22586   kworker/u17:1-570   (  570) [000] d..2 82315.000919: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
22587     kworker/0:1-25262 (25262) [000] d..2 82315.000935: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
22588     kworker/0:1-25262 (25262) [000] d..3 82315.000956: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
22589     kworker/0:1-25262 (25262) [000] d..2 82315.000977: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
22590            adbd-24055 (  960) [000] d..2 82315.001009: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22591          <idle>-0     (-----) [000] d..1 82315.001025: cpu_idle: state=0 cpu_id=0
22592          <idle>-0     (-----) [002] d.s2 82315.001811: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22593          <idle>-0     (-----) [002] dns3 82315.001831: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22594          <idle>-0     (-----) [002] .n.1 82315.001855: cpu_idle: state=4294967295 cpu_id=2
22595          <idle>-0     (-----) [002] d..2 82315.001867: 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
22596     rcu_preempt-7     (    7) [002] d..2 82315.001894: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
22597     rcu_preempt-7     (    7) [002] d..3 82315.001910: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
22598     rcu_preempt-7     (    7) [002] d..2 82315.001926: 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
22599         rcuop/2-29    (   29) [002] d..2 82315.001934: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
22600         rcuop/2-29    (   29) [002] d..3 82315.001981: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
22601         rcuop/2-29    (   29) [002] d..2 82315.001994: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22602         rcuop/2-29    (   29) [002] d..3 82315.002008: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22603         rcuop/2-29    (   29) [002] d..2 82315.002019: 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
22604         rcuop/3-37    (   37) [002] d..2 82315.002070: 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
22605     rcu_preempt-7     (    7) [002] d..2 82315.002100: 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
22606          <idle>-0     (-----) [002] d..1 82315.002117: cpu_idle: state=0 cpu_id=2
22607          <idle>-0     (-----) [000] ...1 82315.002145: cpu_idle: state=4294967295 cpu_id=0
22608          <idle>-0     (-----) [000] d..1 82315.002151: cpu_idle: state=2 cpu_id=0
22609              sh-27539 (27539) [003] d.s3 82315.005147: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
22610              sh-27539 (27539) [003] d.s4 82315.005190: sched_blocked_reason: pid=1054 iowait=0 caller=worker_thread+0x578/0x788
22611              sh-27539 (27539) [003] d.s4 82315.005201: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22612          <idle>-0     (-----) [001] .n.1 82315.005222: cpu_idle: state=4294967295 cpu_id=1
22613          <idle>-0     (-----) [001] d..2 82315.005238: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22614<...>-1054 ( 1054) [001] d..2 82315.005422: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22615          <idle>-0     (-----) [001] d..1 82315.005436: cpu_idle: state=2 cpu_id=1
22616          <idle>-0     (-----) [000] d.h7 82315.006964: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22617          <idle>-0     (-----) [000] dnh8 82315.006983: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22618          <idle>-0     (-----) [000] dnh9 82315.007005: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22619          <idle>-0     (-----) [000] dnha 82315.007034: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22620          <idle>-0     (-----) [002] .n.1 82315.007041: cpu_idle: state=4294967295 cpu_id=2
22621          <idle>-0     (-----) [000] dnh7 82315.007044: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
22622          <idle>-0     (-----) [002] d..2 82315.007060: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22623          <idle>-0     (-----) [000] dnh8 82315.007095: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22624          <idle>-0     (-----) [000] .n.1 82315.007121: cpu_idle: state=4294967295 cpu_id=0
22625          <idle>-0     (-----) [000] d..2 82315.007140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
22626 crtc_commit:111-321   (  321) [002] d..1 82315.007169: clk_disable: disp_cc_mdss_vsync_clk
22627 crtc_commit:111-321   (  321) [002] d..1 82315.007198: clk_disable: disp_cc_mdss_mdp_clk
22628 crtc_commit:111-321   (  321) [002] d..1 82315.007211: clk_disable: disp_cc_mdss_mdp_clk_src
22629 SDM_EventThread-644   (  619) [000] ...1 82315.007225: tracing_mark_write: B|619|HWCCallbacks::Vsync::
22630 SDM_EventThread-644   (  619) [000] ...1 82315.007246: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
22631 crtc_commit:111-321   (  321) [002] d..1 82315.007247: clk_disable: gcc_disp_gpll0_clk_src
22632 SDM_EventThread-644   (  619) [000] ...1 82315.007252: tracing_mark_write: E|619
22633 SDM_EventThread-644   (  619) [000] .... 82315.007307: binder_transaction: transaction=1568253 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
22634 SDM_EventThread-644   (  619) [000] .... 82315.007314: binder_transaction_alloc_buf: transaction=1568253 data_size=76 offsets_size=0
22635 SDM_EventThread-644   (  619) [000] d..4 82315.007326: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
22636 SDM_EventThread-644   (  619) [000] d..5 82315.007357: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
22637 SDM_EventThread-644   (  619) [000] ...1 82315.007402: tracing_mark_write: E|619
22638 SDM_EventThread-644   (  619) [000] d..2 82315.007456: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
22639     kworker/0:1-25262 (25262) [000] d..2 82315.007503: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22640          <idle>-0     (-----) [000] d..1 82315.007523: cpu_idle: state=0 cpu_id=0
22641          <idle>-0     (-----) [001] .n.1 82315.007609: cpu_idle: state=4294967295 cpu_id=1
22642          <idle>-0     (-----) [001] d..2 82315.007637: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
22643<...>-8890 ( 8858) [001] .... 82315.007652: binder_transaction_received: transaction=1568253
22644<...>-8890 ( 8858) [001] ...1 82315.007726: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
22645<...>-8890 ( 8858) [001] d..1 82315.007753: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
22646 crtc_commit:111-321   (  321) [002] d..1 82315.007777: clk_disable: disp_cc_mdss_axi_clk
22647<...>-8890 ( 8858) [001] d..2 82315.007786: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
22648 crtc_commit:111-321   (  321) [002] d..1 82315.007792: clk_disable: disp_cc_mdss_ahb_clk
22649          <idle>-0     (-----) [000] .n.1 82315.007794: cpu_idle: state=4294967295 cpu_id=0
22650<...>-8890 ( 8858) [001] ...1 82315.007800: tracing_mark_write: E|8858
22651 crtc_commit:111-321   (  321) [002] d..1 82315.007804: clk_disable: gcc_disp_axi_clk
22652          <idle>-0     (-----) [000] d..2 82315.007806: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
22653        DispSync-8879  ( 8858) [000] d..2 82315.007857: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22654          <idle>-0     (-----) [000] d..1 82315.007869: cpu_idle: state=0 cpu_id=0
22655<...>-8890 ( 8858) [001] d..2 82315.007870: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22656          <idle>-0     (-----) [001] d..1 82315.007891: cpu_idle: state=0 cpu_id=1
22657 crtc_commit:111-321   (  321) [002] d..2 82315.007899: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22658          <idle>-0     (-----) [002] d..1 82315.007909: cpu_idle: state=0 cpu_id=2
22659          <idle>-0     (-----) [002] d.h2 82315.007981: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22660          <idle>-0     (-----) [002] dnh3 82315.007997: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22661          <idle>-0     (-----) [002] .n.1 82315.008007: cpu_idle: state=4294967295 cpu_id=2
22662          <idle>-0     (-----) [002] d..2 82315.008015: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22663 crtc_commit:111-321   (  321) [002] d..1 82315.008036: clk_disable: disp_cc_mdss_rscc_ahb_clk
22664 crtc_commit:111-321   (  321) [002] d..1 82315.008053: clk_disable: disp_cc_mdss_rscc_vsync_clk
22665 crtc_commit:111-321   (  321) [002] d..1 82315.008064: clk_disable: disp_cc_mdss_vsync_clk_src
22666 crtc_commit:111-321   (  321) [002] d..2 82315.008271: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22667          <idle>-0     (-----) [002] d..1 82315.008282: cpu_idle: state=0 cpu_id=2
22668          <idle>-0     (-----) [001] d.s3 82315.008306: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22669          <idle>-0     (-----) [001] d.s4 82315.008327: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22670          <idle>-0     (-----) [002] .n.1 82315.008333: cpu_idle: state=4294967295 cpu_id=2
22671          <idle>-0     (-----) [001] ...1 82315.008340: cpu_idle: state=4294967295 cpu_id=1
22672          <idle>-0     (-----) [002] d..2 82315.008341: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22673          <idle>-0     (-----) [001] d..1 82315.008346: cpu_idle: state=0 cpu_id=1
22674 crtc_commit:111-321   (  321) [002] d.s2 82315.008558: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22675 crtc_commit:111-321   (  321) [002] d.s3 82315.008579: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22676          <idle>-0     (-----) [001] ...1 82315.008593: cpu_idle: state=4294967295 cpu_id=1
22677          <idle>-0     (-----) [001] d..1 82315.008601: cpu_idle: state=0 cpu_id=1
22678 crtc_commit:111-321   (  321) [002] d..3 82315.008621: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22679 crtc_commit:111-321   (  321) [002] d..4 82315.008638: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22680          <idle>-0     (-----) [000] .n.1 82315.008644: cpu_idle: state=4294967295 cpu_id=0
22681          <idle>-0     (-----) [000] d..2 82315.008659: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
22682 SDM_EventThread-644   (  619) [000] d..2 82315.008742: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22683          <idle>-0     (-----) [000] d.h2 82315.008760: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
22684          <idle>-0     (-----) [000] dnh3 82315.008774: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
22685          <idle>-0     (-----) [000] d..2 82315.008791: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
22686        DispSync-8879  ( 8858) [000] d..1 82315.008812: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
22687 crtc_commit:111-321   (  321) [002] d..2 82315.008816: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
22688        DispSync-8879  ( 8858) [000] d..2 82315.008829: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
22689          <idle>-0     (-----) [001] .n.1 82315.008836: cpu_idle: state=4294967295 cpu_id=1
22690          <idle>-0     (-----) [001] d..2 82315.008848: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
22691     rcu_preempt-7     (    7) [002] d..2 82315.008850: 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
22692        DispSync-8879  ( 8858) [000] d..2 82315.008864: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22693          <idle>-0     (-----) [002] d..1 82315.008868: cpu_idle: state=0 cpu_id=2
22694          <idle>-0     (-----) [000] d..1 82315.008880: cpu_idle: state=0 cpu_id=0
22695  appEventThread-8881  ( 8858) [001] d..1 82315.008892: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
22696  appEventThread-8881  ( 8858) [001] d..2 82315.008910: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
22697          <idle>-0     (-----) [000] .n.1 82315.008918: cpu_idle: state=4294967295 cpu_id=0
22698          <idle>-0     (-----) [000] d..2 82315.008929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
22699  appEventThread-8881  ( 8858) [001] d..2 82315.008950: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22700        DispSync-8879  ( 8858) [000] d..2 82315.008957: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22701          <idle>-0     (-----) [001] d..1 82315.008966: cpu_idle: state=0 cpu_id=1
22702          <idle>-0     (-----) [000] d..1 82315.008971: cpu_idle: state=0 cpu_id=0
22703          <idle>-0     (-----) [001] d.s3 82315.009018: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22704          <idle>-0     (-----) [001] d.s4 82315.009035: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22705          <idle>-0     (-----) [002] .n.1 82315.009042: cpu_idle: state=4294967295 cpu_id=2
22706          <idle>-0     (-----) [001] ...1 82315.009047: cpu_idle: state=4294967295 cpu_id=1
22707          <idle>-0     (-----) [001] d..1 82315.009053: cpu_idle: state=0 cpu_id=1
22708          <idle>-0     (-----) [002] d..2 82315.009055: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22709 crtc_commit:111-321   (  321) [002] d..2 82315.009223: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22710          <idle>-0     (-----) [002] d..1 82315.009237: cpu_idle: state=0 cpu_id=2
22711          <idle>-0     (-----) [001] d.s3 82315.009247: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22712          <idle>-0     (-----) [001] d.s4 82315.009264: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22713          <idle>-0     (-----) [002] .n.1 82315.009271: cpu_idle: state=4294967295 cpu_id=2
22714          <idle>-0     (-----) [001] ...1 82315.009274: cpu_idle: state=4294967295 cpu_id=1
22715          <idle>-0     (-----) [001] d..1 82315.009281: cpu_idle: state=0 cpu_id=1
22716          <idle>-0     (-----) [002] d..2 82315.009282: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22717 crtc_commit:111-321   (  321) [002] d..1 82315.009310: clk_enable: disp_cc_mdss_vsync_clk_src
22718 crtc_commit:111-321   (  321) [002] d..1 82315.009313: clk_enable: disp_cc_mdss_rscc_vsync_clk
22719 crtc_commit:111-321   (  321) [002] d..1 82315.009330: clk_enable: disp_cc_mdss_rscc_ahb_clk
22720 crtc_commit:111-321   (  321) [002] d..2 82315.009397: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22721          <idle>-0     (-----) [002] d..1 82315.009408: cpu_idle: state=0 cpu_id=2
22722          <idle>-0     (-----) [002] d.h2 82315.009487: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22723          <idle>-0     (-----) [002] dnh3 82315.009501: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22724          <idle>-0     (-----) [002] .n.1 82315.009511: cpu_idle: state=4294967295 cpu_id=2
22725          <idle>-0     (-----) [002] d..2 82315.009522: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22726 crtc_commit:111-321   (  321) [002] d..1 82315.009556: clk_enable: gcc_disp_axi_clk
22727 crtc_commit:111-321   (  321) [002] d..1 82315.009570: clk_enable: disp_cc_mdss_ahb_clk
22728 crtc_commit:111-321   (  321) [002] d..1 82315.009582: clk_enable: disp_cc_mdss_axi_clk
22729 crtc_commit:111-321   (  321) [002] d..1 82315.009604: clk_enable: gcc_disp_gpll0_clk_src
22730 crtc_commit:111-321   (  321) [002] d..1 82315.010115: clk_enable: disp_cc_mdss_mdp_clk_src
22731 crtc_commit:111-321   (  321) [002] d..1 82315.010153: clk_enable: disp_cc_mdss_mdp_clk
22732 crtc_commit:111-321   (  321) [002] d..1 82315.010165: clk_enable: disp_cc_mdss_vsync_clk
22733          <idle>-0     (-----) [000] ...1 82315.010259: cpu_idle: state=4294967295 cpu_id=0
22734          <idle>-0     (-----) [000] d..1 82315.010265: cpu_idle: state=2 cpu_id=0
22735 crtc_commit:111-321   (  321) [002] d..2 82315.010402: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22736          <idle>-0     (-----) [002] d..1 82315.010416: cpu_idle: state=0 cpu_id=2
22737          <idle>-0     (-----) [001] ...1 82315.010484: cpu_idle: state=4294967295 cpu_id=1
22738          <idle>-0     (-----) [001] d..1 82315.010490: cpu_idle: state=2 cpu_id=1
22739              sh-27539 (27539) [003] d.H2 82315.011905: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
22740              sh-27539 (27539) [003] d.H3 82315.011927: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
22741          <idle>-0     (-----) [001] .n.1 82315.012172: cpu_idle: state=4294967295 cpu_id=1
22742          <idle>-0     (-----) [001] d..2 82315.012194: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
22743         sugov:0-576   (  576) [001] .... 82315.012246: clk_set_rate: pwrcl_clk 825600000
22744         sugov:0-576   (  576) [001] .... 82315.012264: clk_set_rate: cpu3_pwrcl_clk 748800000
22745         sugov:0-576   (  576) [001] .... 82315.012278: clk_set_rate: cpu2_pwrcl_clk 748800000
22746         sugov:0-576   (  576) [001] .... 82315.012287: clk_set_rate: cpu1_pwrcl_clk 748800000
22747         sugov:0-576   (  576) [001] .... 82315.012296: clk_set_rate: cpu0_pwrcl_clk 825600000
22748         sugov:0-576   (  576) [001] .... 82315.012312: cpu_frequency: state=825600 cpu_id=0
22749         sugov:0-576   (  576) [001] .... 82315.012349: cpu_frequency: state=825600 cpu_id=1
22750         sugov:0-576   (  576) [001] .... 82315.012354: cpu_frequency: state=825600 cpu_id=2
22751         sugov:0-576   (  576) [001] .... 82315.012360: cpu_frequency: state=825600 cpu_id=3
22752         sugov:0-576   (  576) [001] d..2 82315.012404: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22753          <idle>-0     (-----) [001] d..1 82315.012419: cpu_idle: state=0 cpu_id=1
22754          <idle>-0     (-----) [001] ...1 82315.013581: cpu_idle: state=4294967295 cpu_id=1
22755          <idle>-0     (-----) [001] d..1 82315.013586: cpu_idle: state=2 cpu_id=1
22756          <idle>-0     (-----) [002] d.s2 82315.015142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22757              sh-27539 (27539) [003] d.s2 82315.015147: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22758          <idle>-0     (-----) [002] dns3 82315.015163: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22759          <idle>-0     (-----) [002] .n.1 82315.015181: cpu_idle: state=4294967295 cpu_id=2
22760          <idle>-0     (-----) [002] d..2 82315.015197: 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
22761     rcu_preempt-7     (    7) [002] d..2 82315.015207: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
22762              sh-27539 (27539) [003] d.s3 82315.015209: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
22763     rcu_preempt-7     (    7) [002] d..3 82315.015229: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
22764     rcu_preempt-7     (    7) [002] d..2 82315.015242: 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
22765         rcuop/2-29    (   29) [002] d..2 82315.015248: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
22766         rcuop/2-29    (   29) [002] d..3 82315.015266: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
22767         rcuop/2-29    (   29) [002] d..2 82315.015272: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22768         rcuop/2-29    (   29) [002] d..3 82315.015283: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22769         rcuop/2-29    (   29) [002] d..2 82315.015293: 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
22770         rcuop/3-37    (   37) [002] d..2 82315.015317: 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
22771     rcu_preempt-7     (    7) [002] d..2 82315.015331: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22772<...>-1054 ( 1054) [002] .... 82315.015407: clk_set_rate: l3_cluster0_vote_clk 652800000
22773<...>-1054 ( 1054) [002] .... 82315.015415: clk_set_rate: l3_clk 652800000
22774<...>-1054 ( 1054) [002] d..2 82315.015695: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
22775          <idle>-0     (-----) [002] d..1 82315.015711: cpu_idle: state=0 cpu_id=2
22776          <idle>-0     (-----) [001] d.s3 82315.015990: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
22777          <idle>-0     (-----) [001] d.s4 82315.016007: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
22778          <idle>-0     (-----) [001] d.s4 82315.016017: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
22779          <idle>-0     (-----) [002] .n.1 82315.016024: cpu_idle: state=4294967295 cpu_id=2
22780          <idle>-0     (-----) [001] ...1 82315.016030: cpu_idle: state=4294967295 cpu_id=1
22781          <idle>-0     (-----) [002] d..2 82315.016037: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22782          <idle>-0     (-----) [001] d..1 82315.016043: cpu_idle: state=0 cpu_id=1
22783<...>-1054 ( 1054) [002] d..2 82315.016093: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
22784          <idle>-0     (-----) [002] d..1 82315.016104: cpu_idle: state=0 cpu_id=2
22785          <idle>-0     (-----) [001] .n.1 82315.018870: cpu_idle: state=4294967295 cpu_id=1
22786          <idle>-0     (-----) [001] d..2 82315.018890: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27541 next_prio=120
22787              sh-27539 (27539) [003] d..2 82315.019067: sched_switch: prev_comm=sh prev_pid=27539 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22788          <idle>-0     (-----) [003] d..1 82315.019105: cpu_idle: state=2 cpu_id=3
22789           <...>-27541 (-----) [001] d..2 82315.019264: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
22790           <...>-27541 (-----) [001] dn.3 82315.019287: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
22791           <...>-27541 (-----) [001] d..2 82315.019306: sched_switch: prev_comm=sh prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
22792          <idle>-0     (-----) [002] .n.1 82315.019366: cpu_idle: state=4294967295 cpu_id=2
22793          <idle>-0     (-----) [002] d..2 82315.019379: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27541 next_prio=120
22794     migration/1-17    (   17) [001] d..2 82315.019392: 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
22795          <idle>-0     (-----) [001] d..1 82315.019412: cpu_idle: state=0 cpu_id=1
22796           <...>-27541 (-----) [002] d.s1 82315.021815: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
22797           <...>-27541 (-----) [002] d.s2 82315.021854: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22798          <idle>-0     (-----) [001] .n.1 82315.021862: cpu_idle: state=4294967295 cpu_id=1
22799          <idle>-0     (-----) [001] d..2 82315.021877: 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
22800     rcu_preempt-7     (    7) [001] d..2 82315.021913: 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
22801          <idle>-0     (-----) [001] d..1 82315.021925: cpu_idle: state=0 cpu_id=1
22802          <idle>-0     (-----) [000] d.h7 82315.023465: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22803          <idle>-0     (-----) [000] dnh8 82315.023489: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
22804          <idle>-0     (-----) [000] dnh9 82315.023508: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
22805          <idle>-0     (-----) [000] dnha 82315.023546: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
22806          <idle>-0     (-----) [001] .n.1 82315.023552: cpu_idle: state=4294967295 cpu_id=1
22807          <idle>-0     (-----) [000] dnh7 82315.023554: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22808          <idle>-0     (-----) [001] d..2 82315.023563: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22809          <idle>-0     (-----) [000] dnh8 82315.023571: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22810          <idle>-0     (-----) [000] .n.1 82315.023593: cpu_idle: state=4294967295 cpu_id=0
22811          <idle>-0     (-----) [000] d..2 82315.023613: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
22812 crtc_commit:111-321   (  321) [001] d..1 82315.023626: clk_disable: disp_cc_mdss_vsync_clk
22813 crtc_commit:111-321   (  321) [001] d..1 82315.023646: clk_disable: disp_cc_mdss_mdp_clk
22814 crtc_commit:111-321   (  321) [001] d..1 82315.023657: clk_disable: disp_cc_mdss_mdp_clk_src
22815 SDM_EventThread-644   (  619) [000] ...1 82315.023688: tracing_mark_write: B|619|HWCCallbacks::Vsync::
22816 crtc_commit:111-321   (  321) [001] d..1 82315.023692: clk_disable: gcc_disp_gpll0_clk_src
22817 SDM_EventThread-644   (  619) [000] ...1 82315.023706: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
22818 SDM_EventThread-644   (  619) [000] ...1 82315.023714: tracing_mark_write: E|619
22819 SDM_EventThread-644   (  619) [000] .... 82315.023787: binder_transaction: transaction=1568254 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
22820 SDM_EventThread-644   (  619) [000] .... 82315.023796: binder_transaction_alloc_buf: transaction=1568254 data_size=76 offsets_size=0
22821 SDM_EventThread-644   (  619) [000] d..4 82315.023803: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
22822 SDM_EventThread-644   (  619) [000] d..5 82315.023843: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=003
22823 SDM_EventThread-644   (  619) [000] ...1 82315.023897: tracing_mark_write: E|619
22824 SDM_EventThread-644   (  619) [000] d..2 82315.023957: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
22825     kworker/0:1-25262 (25262) [000] d..2 82315.024003: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22826          <idle>-0     (-----) [000] d..1 82315.024022: cpu_idle: state=2 cpu_id=0
22827          <idle>-0     (-----) [003] .n.1 82315.024141: cpu_idle: state=4294967295 cpu_id=3
22828          <idle>-0     (-----) [003] d..2 82315.024169: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
22829<...>-8890 ( 8858) [003] .... 82315.024191: binder_transaction_received: transaction=1568254
22830 crtc_commit:111-321   (  321) [001] d..1 82315.024215: clk_disable: disp_cc_mdss_axi_clk
22831 crtc_commit:111-321   (  321) [001] d..1 82315.024228: clk_disable: disp_cc_mdss_ahb_clk
22832 crtc_commit:111-321   (  321) [001] d..1 82315.024240: clk_disable: gcc_disp_axi_clk
22833<...>-8890 ( 8858) [003] ...1 82315.024258: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
22834<...>-8890 ( 8858) [003] ...1 82315.024285: tracing_mark_write: E|8858
22835 crtc_commit:111-321   (  321) [001] d..2 82315.024323: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22836          <idle>-0     (-----) [001] d..1 82315.024334: cpu_idle: state=0 cpu_id=1
22837<...>-8890 ( 8858) [003] d..2 82315.024361: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22838          <idle>-0     (-----) [003] d..1 82315.024380: cpu_idle: state=2 cpu_id=3
22839          <idle>-0     (-----) [001] d.h2 82315.024409: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
22840          <idle>-0     (-----) [001] dnh3 82315.024424: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
22841          <idle>-0     (-----) [001] .n.1 82315.024433: cpu_idle: state=4294967295 cpu_id=1
22842          <idle>-0     (-----) [001] d..2 82315.024443: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22843 crtc_commit:111-321   (  321) [001] d..1 82315.024460: clk_disable: disp_cc_mdss_rscc_ahb_clk
22844 crtc_commit:111-321   (  321) [001] d..1 82315.024476: clk_disable: disp_cc_mdss_rscc_vsync_clk
22845 crtc_commit:111-321   (  321) [001] d..1 82315.024487: clk_disable: disp_cc_mdss_vsync_clk_src
22846 crtc_commit:111-321   (  321) [001] d..2 82315.024670: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22847          <idle>-0     (-----) [001] d.s4 82315.024712: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
22848          <idle>-0     (-----) [001] d.s5 82315.024734: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22849          <idle>-0     (-----) [001] d..1 82315.024753: cpu_idle: state=0 cpu_id=1
22850          <idle>-0     (-----) [000] .n.1 82315.025017: cpu_idle: state=4294967295 cpu_id=0
22851          <idle>-0     (-----) [000] d..2 82315.025040: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22852           <...>-27541 (-----) [002] d.s2 82315.025152: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
22853           <...>-27541 (-----) [002] d.s3 82315.025199: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22854 crtc_commit:111-321   (  321) [000] d..2 82315.025301: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22855          <idle>-0     (-----) [001] d.s3 82315.025344: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
22856          <idle>-0     (-----) [001] d.s4 82315.025368: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
22857          <idle>-0     (-----) [001] ...1 82315.025378: cpu_idle: state=4294967295 cpu_id=1
22858          <idle>-0     (-----) [001] d..1 82315.025383: cpu_idle: state=0 cpu_id=1
22859<...>-1054 ( 1054) [000] d..2 82315.025432: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
22860          <idle>-0     (-----) [000] d..1 82315.025453: cpu_idle: state=0 cpu_id=0
22861          <idle>-0     (-----) [003] .n.1 82315.025658: cpu_idle: state=4294967295 cpu_id=3
22862          <idle>-0     (-----) [003] d..2 82315.025678: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22863 crtc_commit:111-321   (  321) [003] d..1 82315.025698: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22864 crtc_commit:111-321   (  321) [003] d..2 82315.025713: sched_blocked_reason: pid=1054 iowait=0 caller=update_request_adhoc+0x384/0x480
22865 crtc_commit:111-321   (  321) [003] d..2 82315.025725: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22866          <idle>-0     (-----) [000] .n.1 82315.025733: cpu_idle: state=4294967295 cpu_id=0
22867          <idle>-0     (-----) [000] d..2 82315.025751: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22868 crtc_commit:111-321   (  321) [003] d..3 82315.025756: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22869 crtc_commit:111-321   (  321) [003] d..4 82315.025773: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
22870 crtc_commit:111-321   (  321) [003] d..3 82315.025795: sched_pi_setprio: comm=kworker/u16:9 pid=1054 oldprio=120 newprio=83
22871 crtc_commit:111-321   (  321) [003] d..2 82315.025846: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22872          <idle>-0     (-----) [003] d..1 82315.025860: cpu_idle: state=2 cpu_id=3
22873<...>-1054 ( 1054) [000] d..2 82315.025930: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=83 prev_state=D ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
22874 SDM_EventThread-644   (  619) [000] d..2 82315.026034: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22875          <idle>-0     (-----) [000] d..1 82315.026051: cpu_idle: state=0 cpu_id=0
22876          <idle>-0     (-----) [001] d.s3 82315.026533: sched_waking: comm=kworker/u16:9 pid=1054 prio=83 target_cpu=000
22877          <idle>-0     (-----) [001] d.s4 82315.026548: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=83 target_cpu=000
22878          <idle>-0     (-----) [000] .n.1 82315.026555: cpu_idle: state=4294967295 cpu_id=0
22879          <idle>-0     (-----) [001] ...1 82315.026557: cpu_idle: state=4294967295 cpu_id=1
22880          <idle>-0     (-----) [001] d..1 82315.026562: cpu_idle: state=0 cpu_id=1
22881          <idle>-0     (-----) [000] d..2 82315.026565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=83
22882<...>-1054 ( 1054) [000] d..1 82315.026577: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
22883<...>-1054 ( 1054) [000] d..2 82315.026595: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
22884<...>-1054 ( 1054) [000] d..2 82315.026599: sched_pi_setprio: comm=kworker/u16:9 pid=1054 oldprio=83 newprio=120
22885<...>-1054 ( 1054) [000] .... 82315.026690: clk_set_rate: l3_cluster0_vote_clk 480000000
22886<...>-1054 ( 1054) [000] .... 82315.026697: clk_set_rate: l3_clk 480000000
22887<...>-1054 ( 1054) [000] d..2 82315.026753: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
22888          <idle>-0     (-----) [000] d..1 82315.026770: cpu_idle: state=0 cpu_id=0
22889          <idle>-0     (-----) [003] .n.1 82315.026855: cpu_idle: state=4294967295 cpu_id=3
22890          <idle>-0     (-----) [003] d..2 82315.026876: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22891 crtc_commit:111-321   (  321) [003] d..2 82315.027085: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22892          <idle>-0     (-----) [003] d..1 82315.027100: cpu_idle: state=2 cpu_id=3
22893          <idle>-0     (-----) [001] d.s3 82315.027259: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
22894          <idle>-0     (-----) [001] d.s4 82315.027272: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
22895          <idle>-0     (-----) [001] ...1 82315.027281: cpu_idle: state=4294967295 cpu_id=1
22896          <idle>-0     (-----) [001] d..1 82315.027286: cpu_idle: state=0 cpu_id=1
22897          <idle>-0     (-----) [003] .n.1 82315.027527: cpu_idle: state=4294967295 cpu_id=3
22898          <idle>-0     (-----) [003] d..2 82315.027547: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22899 crtc_commit:111-321   (  321) [003] d..2 82315.027729: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22900          <idle>-0     (-----) [001] d.s3 82315.027744: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
22901          <idle>-0     (-----) [003] d..1 82315.027749: cpu_idle: state=0 cpu_id=3
22902          <idle>-0     (-----) [001] d.s4 82315.027759: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
22903          <idle>-0     (-----) [003] .n.1 82315.027767: cpu_idle: state=4294967295 cpu_id=3
22904          <idle>-0     (-----) [001] ...1 82315.027768: cpu_idle: state=4294967295 cpu_id=1
22905          <idle>-0     (-----) [001] d..1 82315.027772: cpu_idle: state=0 cpu_id=1
22906          <idle>-0     (-----) [003] d..2 82315.027777: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22907 crtc_commit:111-321   (  321) [003] d..1 82315.027813: clk_enable: disp_cc_mdss_vsync_clk_src
22908 crtc_commit:111-321   (  321) [003] d..1 82315.027819: clk_enable: disp_cc_mdss_rscc_vsync_clk
22909 crtc_commit:111-321   (  321) [003] d..1 82315.027837: clk_enable: disp_cc_mdss_rscc_ahb_clk
22910 crtc_commit:111-321   (  321) [003] d..2 82315.027905: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
22911          <idle>-0     (-----) [003] d..1 82315.027915: cpu_idle: state=0 cpu_id=3
22912          <idle>-0     (-----) [003] d.h2 82315.027997: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
22913          <idle>-0     (-----) [003] dnh3 82315.028012: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
22914          <idle>-0     (-----) [003] .n.1 82315.028021: cpu_idle: state=4294967295 cpu_id=3
22915          <idle>-0     (-----) [003] d..2 82315.028030: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
22916 crtc_commit:111-321   (  321) [003] d..1 82315.028065: clk_enable: gcc_disp_axi_clk
22917 crtc_commit:111-321   (  321) [003] d..1 82315.028078: clk_enable: disp_cc_mdss_ahb_clk
22918 crtc_commit:111-321   (  321) [003] d..1 82315.028090: clk_enable: disp_cc_mdss_axi_clk
22919 crtc_commit:111-321   (  321) [003] d..1 82315.028112: clk_enable: gcc_disp_gpll0_clk_src
22920          <idle>-0     (-----) [000] ...1 82315.028235: cpu_idle: state=4294967295 cpu_id=0
22921          <idle>-0     (-----) [000] d..1 82315.028241: cpu_idle: state=2 cpu_id=0
22922          <idle>-0     (-----) [001] d.s2 82315.028474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22923          <idle>-0     (-----) [001] dns3 82315.028493: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22924          <idle>-0     (-----) [001] .n.1 82315.028518: cpu_idle: state=4294967295 cpu_id=1
22925          <idle>-0     (-----) [001] d..2 82315.028532: 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
22926     rcu_preempt-7     (    7) [001] d..2 82315.028543: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
22927     rcu_preempt-7     (    7) [001] d..3 82315.028584: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
22928     rcu_preempt-7     (    7) [001] d..2 82315.028598: 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
22929         rcuop/2-29    (   29) [001] d..2 82315.028603: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
22930 crtc_commit:111-321   (  321) [003] d..1 82315.028622: clk_enable: disp_cc_mdss_mdp_clk_src
22931         rcuop/2-29    (   29) [001] d..3 82315.028639: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
22932         rcuop/2-29    (   29) [001] d..2 82315.028644: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22933         rcuop/2-29    (   29) [001] d..3 82315.028656: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22934 crtc_commit:111-321   (  321) [003] d..1 82315.028657: clk_enable: disp_cc_mdss_mdp_clk
22935         rcuop/2-29    (   29) [001] d..2 82315.028666: 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
22936         rcuop/3-37    (   37) [001] d..2 82315.028692: 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
22937 crtc_commit:111-321   (  321) [003] d..1 82315.028703: clk_enable: disp_cc_mdss_vsync_clk
22938     rcu_preempt-7     (    7) [001] d..2 82315.028721: 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
22939          <idle>-0     (-----) [001] d..1 82315.028735: cpu_idle: state=0 cpu_id=1
22940 crtc_commit:111-321   (  321) [003] d..2 82315.028959: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
22941          <idle>-0     (-----) [003] d..1 82315.028977: cpu_idle: state=0 cpu_id=3
22942          <idle>-0     (-----) [003] ...1 82315.030544: cpu_idle: state=4294967295 cpu_id=3
22943          <idle>-0     (-----) [003] d..1 82315.030549: cpu_idle: state=2 cpu_id=3
22944           <...>-27541 (-----) [002] d.H2 82315.031923: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
22945           <...>-27541 (-----) [002] d.H3 82315.031947: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
22946          <idle>-0     (-----) [001] .n.1 82315.031953: cpu_idle: state=4294967295 cpu_id=1
22947          <idle>-0     (-----) [001] d..2 82315.031967: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
22948         sugov:0-576   (  576) [001] .... 82315.032013: clk_set_rate: pwrcl_clk 979200000
22949         sugov:0-576   (  576) [001] .... 82315.032026: clk_set_rate: cpu3_pwrcl_clk 825600000
22950         sugov:0-576   (  576) [001] .... 82315.032037: clk_set_rate: cpu2_pwrcl_clk 825600000
22951         sugov:0-576   (  576) [001] .... 82315.032051: clk_set_rate: cpu1_pwrcl_clk 825600000
22952         sugov:0-576   (  576) [001] .... 82315.032060: clk_set_rate: cpu0_pwrcl_clk 979200000
22953         sugov:0-576   (  576) [001] .... 82315.032072: cpu_frequency: state=979200 cpu_id=0
22954         sugov:0-576   (  576) [001] .... 82315.032101: cpu_frequency: state=979200 cpu_id=1
22955         sugov:0-576   (  576) [001] .... 82315.032109: cpu_frequency: state=979200 cpu_id=2
22956         sugov:0-576   (  576) [001] .... 82315.032115: cpu_frequency: state=979200 cpu_id=3
22957         sugov:0-576   (  576) [001] d..2 82315.032147: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22958          <idle>-0     (-----) [001] d..1 82315.032156: cpu_idle: state=0 cpu_id=1
22959          <idle>-0     (-----) [001] d.s2 82315.035135: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22960           <...>-27541 (-----) [002] d.s2 82315.035149: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
22961          <idle>-0     (-----) [001] dns3 82315.035152: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22962          <idle>-0     (-----) [001] .n.1 82315.035163: cpu_idle: state=4294967295 cpu_id=1
22963          <idle>-0     (-----) [001] d..2 82315.035171: 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
22964           <...>-27541 (-----) [002] d.s3 82315.035201: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22965     rcu_preempt-7     (    7) [001] d..2 82315.035210: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22966           <...>-27541 (-----) [002] d.s2 82315.035218: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
22967           <...>-27541 (-----) [002] d.s3 82315.035262: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
22968           <...>-27541 (-----) [002] d.s2 82315.035282: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22969           <...>-27541 (-----) [002] d.s3 82315.035294: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22970<...>-1054 ( 1054) [001] .... 82315.035323: clk_set_rate: l3_cluster0_vote_clk 652800000
22971<...>-1054 ( 1054) [001] .... 82315.035328: clk_set_rate: l3_clk 652800000
22972<...>-1054 ( 1054) [001] d..2 82315.035566: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
22973  kworker/u16:15-1311  ( 1311) [001] d.s4 82315.035603: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22974  kworker/u16:15-1311  ( 1311) [001] d.s5 82315.035619: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
22975  kworker/u16:15-1311  ( 1311) [001] d.s5 82315.035625: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22976  kworker/u16:15-1311  ( 1311) [001] d..2 82315.035643: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
22977     rcu_preempt-7     (    7) [001] d..2 82315.035649: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
22978     rcu_preempt-7     (    7) [001] d..3 82315.035663: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
22979     rcu_preempt-7     (    7) [001] d..2 82315.035672: 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
22980         rcuop/2-29    (   29) [001] d..2 82315.035675: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
22981         rcuop/2-29    (   29) [001] d..3 82315.035689: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
22982         rcuop/2-29    (   29) [001] d..2 82315.035702: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22983         rcuop/2-29    (   29) [001] d..3 82315.035713: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
22984         rcuop/2-29    (   29) [001] d..2 82315.035723: 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
22985         rcuop/3-37    (   37) [001] d..2 82315.035775: 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
22986     rcu_preempt-7     (    7) [001] d..2 82315.035787: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22987<...>-1054 ( 1054) [001] d..2 82315.036077: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
22988          <idle>-0     (-----) [001] d.s4 82315.036115: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22989          <idle>-0     (-----) [001] d.s5 82315.036124: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
22990          <idle>-0     (-----) [001] dns5 82315.036129: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
22991          <idle>-0     (-----) [001] d..2 82315.036141: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
22992<...>-1054 ( 1054) [001] d..2 82315.036167: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
22993          <idle>-0     (-----) [001] d..1 82315.036181: cpu_idle: state=0 cpu_id=1
22994           <...>-27541 (-----) [002] d..2 82315.037054: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
22995           <...>-27541 (-----) [002] dn.3 82315.037075: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
22996           <...>-27541 (-----) [002] d..2 82315.037090: sched_switch: prev_comm=am prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=migration/2 next_pid=25 next_prio=0
22997          <idle>-0     (-----) [001] .n.1 82315.037138: cpu_idle: state=4294967295 cpu_id=1
22998          <idle>-0     (-----) [001] d..2 82315.037151: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=am next_pid=27541 next_prio=120
22999     migration/2-25    (   25) [002] d..2 82315.037160: 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
23000          <idle>-0     (-----) [002] d..1 82315.037180: cpu_idle: state=2 cpu_id=2
23001           <...>-27541 (-----) [001] d..2 82315.038225: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
23002           <...>-27541 (-----) [001] d..3 82315.038264: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
23003          <idle>-0     (-----) [000] .n.1 82315.038575: cpu_idle: state=4294967295 cpu_id=0
23004          <idle>-0     (-----) [000] d..2 82315.038605: 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
23005         rcuop/0-10    (   10) [000] d..2 82315.038648: 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
23006          <idle>-0     (-----) [000] d..1 82315.038663: cpu_idle: state=0 cpu_id=0
23007          <idle>-0     (-----) [000] d.h7 82315.039608: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
23008          <idle>-0     (-----) [000] dnh8 82315.039623: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
23009          <idle>-0     (-----) [000] dnh9 82315.039639: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23010          <idle>-0     (-----) [000] dnha 82315.039657: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23011          <idle>-0     (-----) [000] dnh7 82315.039664: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23012          <idle>-0     (-----) [000] dnh8 82315.039678: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23013          <idle>-0     (-----) [000] .n.1 82315.039697: cpu_idle: state=4294967295 cpu_id=0
23014          <idle>-0     (-----) [000] d..2 82315.039709: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
23015 SDM_EventThread-644   (  619) [000] ...1 82315.039769: tracing_mark_write: B|619|HWCCallbacks::Vsync::
23016 SDM_EventThread-644   (  619) [000] ...1 82315.039783: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
23017 SDM_EventThread-644   (  619) [000] ...1 82315.039790: tracing_mark_write: E|619
23018 SDM_EventThread-644   (  619) [000] .... 82315.039849: binder_transaction: transaction=1568255 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
23019 SDM_EventThread-644   (  619) [000] .... 82315.039857: binder_transaction_alloc_buf: transaction=1568255 data_size=76 offsets_size=0
23020 SDM_EventThread-644   (  619) [000] d..4 82315.039866: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=003
23021 SDM_EventThread-644   (  619) [000] d..5 82315.039895: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
23022          <idle>-0     (-----) [003] .n.1 82315.039938: cpu_idle: state=4294967295 cpu_id=3
23023 SDM_EventThread-644   (  619) [000] ...1 82315.039944: tracing_mark_write: E|619
23024          <idle>-0     (-----) [003] d..2 82315.039957: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23025 SDM_EventThread-644   (  619) [000] d..2 82315.039995: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
23026 crtc_commit:111-321   (  321) [003] d..1 82315.040007: clk_disable: disp_cc_mdss_vsync_clk
23027 crtc_commit:111-321   (  321) [003] d..1 82315.040029: clk_disable: disp_cc_mdss_mdp_clk
23028     kworker/0:1-25262 (25262) [000] d..2 82315.040032: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23029 crtc_commit:111-321   (  321) [003] d..1 82315.040041: clk_disable: disp_cc_mdss_mdp_clk_src
23030          <idle>-0     (-----) [000] d..1 82315.040048: cpu_idle: state=0 cpu_id=0
23031 crtc_commit:111-321   (  321) [003] d..1 82315.040073: clk_disable: gcc_disp_gpll0_clk_src
23032          <idle>-0     (-----) [002] .n.1 82315.040177: cpu_idle: state=4294967295 cpu_id=2
23033          <idle>-0     (-----) [002] d..2 82315.040202: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
23034<...>-8890 ( 8858) [002] .... 82315.040221: binder_transaction_received: transaction=1568255
23035<...>-8890 ( 8858) [002] ...1 82315.040301: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
23036<...>-8890 ( 8858) [002] ...1 82315.040327: tracing_mark_write: E|8858
23037<...>-8890 ( 8858) [002] d..2 82315.040404: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23038          <idle>-0     (-----) [002] d..1 82315.040425: cpu_idle: state=0 cpu_id=2
23039 crtc_commit:111-321   (  321) [003] d..1 82315.040597: clk_disable: disp_cc_mdss_axi_clk
23040 crtc_commit:111-321   (  321) [003] d..1 82315.040610: clk_disable: disp_cc_mdss_ahb_clk
23041 crtc_commit:111-321   (  321) [003] d..1 82315.040623: clk_disable: gcc_disp_axi_clk
23042 crtc_commit:111-321   (  321) [003] d..2 82315.040713: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23043          <idle>-0     (-----) [003] d..1 82315.040725: cpu_idle: state=0 cpu_id=3
23044          <idle>-0     (-----) [003] d.h2 82315.040800: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23045          <idle>-0     (-----) [003] dnh3 82315.040814: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23046          <idle>-0     (-----) [003] .n.1 82315.040822: cpu_idle: state=4294967295 cpu_id=3
23047          <idle>-0     (-----) [003] d..2 82315.040831: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23048 crtc_commit:111-321   (  321) [003] d..1 82315.040848: clk_disable: disp_cc_mdss_rscc_ahb_clk
23049 crtc_commit:111-321   (  321) [003] d..1 82315.040869: clk_disable: disp_cc_mdss_rscc_vsync_clk
23050 crtc_commit:111-321   (  321) [003] d..1 82315.040881: clk_disable: disp_cc_mdss_vsync_clk_src
23051 crtc_commit:111-321   (  321) [003] d..2 82315.041049: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23052          <idle>-0     (-----) [003] d..1 82315.041064: cpu_idle: state=0 cpu_id=3
23053           <...>-27541 (-----) [001] d.s3 82315.041078: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23054           <...>-27541 (-----) [001] d.s4 82315.041100: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23055          <idle>-0     (-----) [003] .n.1 82315.041105: cpu_idle: state=4294967295 cpu_id=3
23056          <idle>-0     (-----) [003] d..2 82315.041115: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23057 crtc_commit:111-321   (  321) [003] d..2 82315.041293: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23058          <idle>-0     (-----) [003] d..1 82315.041306: cpu_idle: state=0 cpu_id=3
23059           <...>-27541 (-----) [001] d.s3 82315.041332: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23060           <...>-27541 (-----) [001] d.s4 82315.041353: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23061          <idle>-0     (-----) [003] .n.1 82315.041358: cpu_idle: state=4294967295 cpu_id=3
23062          <idle>-0     (-----) [003] d..2 82315.041367: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23063 crtc_commit:111-321   (  321) [003] d..3 82315.041402: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23064 crtc_commit:111-321   (  321) [003] d..4 82315.041423: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23065          <idle>-0     (-----) [000] .n.1 82315.041430: cpu_idle: state=4294967295 cpu_id=0
23066          <idle>-0     (-----) [000] d..2 82315.041443: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
23067 SDM_EventThread-644   (  619) [000] d..2 82315.041512: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23068          <idle>-0     (-----) [000] d..1 82315.041524: cpu_idle: state=0 cpu_id=0
23069 crtc_commit:111-321   (  321) [003] d..2 82315.041596: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23070          <idle>-0     (-----) [003] d..1 82315.041609: cpu_idle: state=0 cpu_id=3
23071           <...>-27541 (-----) [001] d.s1 82315.041813: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
23072           <...>-27541 (-----) [001] d.s2 82315.041842: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
23073          <idle>-0     (-----) [000] .n.1 82315.041848: cpu_idle: state=4294967295 cpu_id=0
23074          <idle>-0     (-----) [000] d..2 82315.041861: 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
23075     rcu_preempt-7     (    7) [000] d..2 82315.041896: 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
23076          <idle>-0     (-----) [000] d..1 82315.041906: cpu_idle: state=0 cpu_id=0
23077           <...>-27541 (-----) [001] d.s2 82315.042001: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23078           <...>-27541 (-----) [001] d.s3 82315.042019: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23079          <idle>-0     (-----) [003] .n.1 82315.042026: cpu_idle: state=4294967295 cpu_id=3
23080          <idle>-0     (-----) [003] d..2 82315.042038: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23081 crtc_commit:111-321   (  321) [003] d..2 82315.042191: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23082          <idle>-0     (-----) [003] d..1 82315.042202: cpu_idle: state=0 cpu_id=3
23083           <...>-27541 (-----) [001] d.s2 82315.042215: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23084           <...>-27541 (-----) [001] d.s3 82315.042233: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23085          <idle>-0     (-----) [003] .n.1 82315.042239: cpu_idle: state=4294967295 cpu_id=3
23086          <idle>-0     (-----) [003] d..2 82315.042248: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23087 crtc_commit:111-321   (  321) [003] d..1 82315.042276: clk_enable: disp_cc_mdss_vsync_clk_src
23088 crtc_commit:111-321   (  321) [003] d..1 82315.042280: clk_enable: disp_cc_mdss_rscc_vsync_clk
23089 crtc_commit:111-321   (  321) [003] d..1 82315.042297: clk_enable: disp_cc_mdss_rscc_ahb_clk
23090 crtc_commit:111-321   (  321) [003] d..2 82315.042361: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23091          <idle>-0     (-----) [003] d..1 82315.042370: cpu_idle: state=0 cpu_id=3
23092          <idle>-0     (-----) [003] d.h2 82315.042457: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23093          <idle>-0     (-----) [003] dnh3 82315.042469: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23094          <idle>-0     (-----) [003] .n.1 82315.042478: cpu_idle: state=4294967295 cpu_id=3
23095          <idle>-0     (-----) [003] d..2 82315.042487: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23096 crtc_commit:111-321   (  321) [003] d..2 82315.042509: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23097          <idle>-0     (-----) [003] d..1 82315.042517: cpu_idle: state=0 cpu_id=3
23098          <idle>-0     (-----) [003] d.h2 82315.042606: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23099          <idle>-0     (-----) [003] dnh3 82315.042616: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23100          <idle>-0     (-----) [003] .n.1 82315.042623: cpu_idle: state=4294967295 cpu_id=3
23101          <idle>-0     (-----) [003] d..2 82315.042631: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23102 crtc_commit:111-321   (  321) [003] d..1 82315.042664: clk_enable: gcc_disp_axi_clk
23103 crtc_commit:111-321   (  321) [003] d..1 82315.042675: clk_enable: disp_cc_mdss_ahb_clk
23104 crtc_commit:111-321   (  321) [003] d..1 82315.042686: clk_enable: disp_cc_mdss_axi_clk
23105 crtc_commit:111-321   (  321) [003] d..1 82315.042705: clk_enable: gcc_disp_gpll0_clk_src
23106 crtc_commit:111-321   (  321) [003] d..1 82315.043214: clk_enable: disp_cc_mdss_mdp_clk_src
23107 crtc_commit:111-321   (  321) [003] d..1 82315.043249: clk_enable: disp_cc_mdss_mdp_clk
23108 crtc_commit:111-321   (  321) [003] d..1 82315.043262: clk_enable: disp_cc_mdss_vsync_clk
23109 crtc_commit:111-321   (  321) [003] d..2 82315.043491: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23110          <idle>-0     (-----) [003] d..1 82315.043503: cpu_idle: state=0 cpu_id=3
23111          <idle>-0     (-----) [003] ...1 82315.044644: cpu_idle: state=4294967295 cpu_id=3
23112          <idle>-0     (-----) [003] d..1 82315.044648: cpu_idle: state=2 cpu_id=3
23113           <...>-27541 (-----) [001] d.s2 82315.045142: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23114           <...>-27541 (-----) [001] d.s3 82315.045171: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23115          <idle>-0     (-----) [000] .n.1 82315.045176: cpu_idle: state=4294967295 cpu_id=0
23116          <idle>-0     (-----) [000] d..2 82315.045187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23117<...>-1054 ( 1054) [000] d..2 82315.045342: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23118          <idle>-0     (-----) [000] d..1 82315.045350: cpu_idle: state=0 cpu_id=0
23119          <idle>-0     (-----) [002] ...1 82315.046433: cpu_idle: state=4294967295 cpu_id=2
23120          <idle>-0     (-----) [002] d..1 82315.046438: cpu_idle: state=2 cpu_id=2
23121          <idle>-0     (-----) [000] d.s2 82315.048471: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
23122           <...>-27541 (-----) [001] d.s2 82315.048486: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
23123          <idle>-0     (-----) [000] dns3 82315.048486: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
23124          <idle>-0     (-----) [000] .n.1 82315.048506: cpu_idle: state=4294967295 cpu_id=0
23125          <idle>-0     (-----) [000] d..2 82315.048515: 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
23126           <...>-27541 (-----) [001] dns3 82315.048515: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
23127     rcu_preempt-7     (    7) [000] d..2 82315.048522: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
23128           <...>-27541 (-----) [001] d..2 82315.048536: sched_switch: prev_comm=app_process prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
23129     rcu_preempt-7     (    7) [000] d..3 82315.048559: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
23130     rcu_preempt-7     (    7) [000] d..2 82315.048573: 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
23131     kworker/1:1-25249 (25249) [001] d..2 82315.048584: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=app_process next_pid=27541 next_prio=120
23132         rcuop/2-29    (   29) [000] d..2 82315.048608: 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
23133          <idle>-0     (-----) [000] d..1 82315.048621: cpu_idle: state=2 cpu_id=0
23134           <...>-27541 (-----) [001] d.H3 82315.051920: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
23135           <...>-27541 (-----) [001] d.H4 82315.051948: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
23136          <idle>-0     (-----) [003] .n.1 82315.052230: cpu_idle: state=4294967295 cpu_id=3
23137          <idle>-0     (-----) [003] d..2 82315.052249: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
23138         sugov:0-576   (  576) [003] .... 82315.052296: clk_set_rate: pwrcl_clk 748800000
23139         sugov:0-576   (  576) [003] .... 82315.052309: clk_set_rate: cpu3_pwrcl_clk 979200000
23140         sugov:0-576   (  576) [003] .... 82315.052321: clk_set_rate: cpu2_pwrcl_clk 979200000
23141         sugov:0-576   (  576) [003] .... 82315.052330: clk_set_rate: cpu1_pwrcl_clk 979200000
23142         sugov:0-576   (  576) [003] .... 82315.052339: clk_set_rate: cpu0_pwrcl_clk 748800000
23143         sugov:0-576   (  576) [003] .... 82315.052405: cpu_frequency: state=748800 cpu_id=0
23144         sugov:0-576   (  576) [003] .... 82315.052438: cpu_frequency: state=748800 cpu_id=1
23145         sugov:0-576   (  576) [003] .... 82315.052443: cpu_frequency: state=748800 cpu_id=2
23146         sugov:0-576   (  576) [003] .... 82315.052448: cpu_frequency: state=748800 cpu_id=3
23147         sugov:0-576   (  576) [003] d..2 82315.052491: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23148          <idle>-0     (-----) [003] d..1 82315.052507: cpu_idle: state=0 cpu_id=3
23149          <idle>-0     (-----) [003] ...1 82315.053673: cpu_idle: state=4294967295 cpu_id=3
23150          <idle>-0     (-----) [003] d..1 82315.053679: cpu_idle: state=2 cpu_id=3
23151           <...>-27541 (-----) [001] d.s2 82315.055143: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23152           <...>-27541 (-----) [001] d.s3 82315.055171: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23153          <idle>-0     (-----) [000] dns2 82315.055496: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
23154          <idle>-0     (-----) [000] dns3 82315.055521: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
23155          <idle>-0     (-----) [000] .n.1 82315.055536: cpu_idle: state=4294967295 cpu_id=0
23156          <idle>-0     (-----) [000] d..2 82315.055551: 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
23157     rcu_preempt-7     (    7) [000] d..2 82315.055563: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
23158     rcu_preempt-7     (    7) [000] d..3 82315.055580: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
23159     rcu_preempt-7     (    7) [000] d..2 82315.055598: 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
23160         rcuop/0-10    (   10) [000] d..2 82315.055607: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
23161         rcuop/0-10    (   10) [000] d..3 82315.055635: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
23162         rcuop/0-10    (   10) [000] d..2 82315.055653: 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
23163         rcuop/1-21    (   21) [000] d..2 82315.055701: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23164<...>-1054 ( 1054) [000] d.h7 82315.056082: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
23165<...>-1054 ( 1054) [000] d.h8 82315.056100: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
23166<...>-1054 ( 1054) [000] d.h9 82315.056114: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23167<...>-1054 ( 1054) [000] d.ha 82315.056133: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23168<...>-1054 ( 1054) [000] d.h7 82315.056139: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23169<...>-1054 ( 1054) [000] dnh8 82315.056155: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23170<...>-1054 ( 1054) [000] d..2 82315.056179: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
23171 SDM_EventThread-644   (  619) [000] ...1 82315.056233: tracing_mark_write: B|619|HWCCallbacks::Vsync::
23172 SDM_EventThread-644   (  619) [000] ...1 82315.056247: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
23173 SDM_EventThread-644   (  619) [000] ...1 82315.056253: tracing_mark_write: E|619
23174 SDM_EventThread-644   (  619) [000] .... 82315.056306: binder_transaction: transaction=1568256 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
23175 SDM_EventThread-644   (  619) [000] .... 82315.056314: binder_transaction_alloc_buf: transaction=1568256 data_size=76 offsets_size=0
23176 SDM_EventThread-644   (  619) [000] d..4 82315.056322: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
23177 SDM_EventThread-644   (  619) [000] d..5 82315.056347: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
23178          <idle>-0     (-----) [003] .n.1 82315.056365: cpu_idle: state=4294967295 cpu_id=3
23179          <idle>-0     (-----) [003] d..2 82315.056387: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23180 SDM_EventThread-644   (  619) [000] ...1 82315.056389: tracing_mark_write: E|619
23181 crtc_commit:111-321   (  321) [003] d..1 82315.056432: clk_disable: disp_cc_mdss_vsync_clk
23182 SDM_EventThread-644   (  619) [000] d..2 82315.056440: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
23183 crtc_commit:111-321   (  321) [003] d..1 82315.056450: clk_disable: disp_cc_mdss_mdp_clk
23184     kworker/0:1-25262 (25262) [000] d..2 82315.056462: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23185 crtc_commit:111-321   (  321) [003] d..1 82315.056463: clk_disable: disp_cc_mdss_mdp_clk_src
23186<...>-1054 ( 1054) [000] d..2 82315.056495: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
23187 crtc_commit:111-321   (  321) [003] d..1 82315.056496: clk_disable: gcc_disp_gpll0_clk_src
23188          <idle>-0     (-----) [000] d..1 82315.056513: cpu_idle: state=0 cpu_id=0
23189          <idle>-0     (-----) [002] .n.1 82315.056555: cpu_idle: state=4294967295 cpu_id=2
23190          <idle>-0     (-----) [002] d..2 82315.056583: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
23191<...>-8890 ( 8858) [002] .... 82315.056594: binder_transaction_received: transaction=1568256
23192           <...>-27541 (-----) [001] d.s2 82315.056618: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23193           <...>-27541 (-----) [001] d.s3 82315.056635: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
23194<...>-8890 ( 8858) [002] ...1 82315.056642: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
23195           <...>-27541 (-----) [001] d.s3 82315.056647: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23196          <idle>-0     (-----) [000] .n.1 82315.056654: cpu_idle: state=4294967295 cpu_id=0
23197<...>-8890 ( 8858) [002] ...1 82315.056662: tracing_mark_write: E|8858
23198          <idle>-0     (-----) [000] d..2 82315.056668: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23199<...>-8890 ( 8858) [002] d..2 82315.056724: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23200<...>-1054 ( 1054) [000] d..2 82315.056727: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23201          <idle>-0     (-----) [000] d..1 82315.056742: cpu_idle: state=0 cpu_id=0
23202          <idle>-0     (-----) [002] d..1 82315.056745: cpu_idle: state=0 cpu_id=2
23203 crtc_commit:111-321   (  321) [003] d..1 82315.057015: clk_disable: disp_cc_mdss_axi_clk
23204 crtc_commit:111-321   (  321) [003] d..1 82315.057029: clk_disable: disp_cc_mdss_ahb_clk
23205 crtc_commit:111-321   (  321) [003] d..1 82315.057040: clk_disable: gcc_disp_axi_clk
23206 crtc_commit:111-321   (  321) [003] d..2 82315.057123: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23207          <idle>-0     (-----) [003] d..1 82315.057137: cpu_idle: state=0 cpu_id=3
23208          <idle>-0     (-----) [003] d.h2 82315.057204: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23209          <idle>-0     (-----) [003] dnh3 82315.057219: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23210          <idle>-0     (-----) [003] .n.1 82315.057230: cpu_idle: state=4294967295 cpu_id=3
23211          <idle>-0     (-----) [003] d..2 82315.057239: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23212 crtc_commit:111-321   (  321) [003] d..1 82315.057255: clk_disable: disp_cc_mdss_rscc_ahb_clk
23213 crtc_commit:111-321   (  321) [003] d..1 82315.057268: clk_disable: disp_cc_mdss_rscc_vsync_clk
23214 crtc_commit:111-321   (  321) [003] d..1 82315.057279: clk_disable: disp_cc_mdss_vsync_clk_src
23215 crtc_commit:111-321   (  321) [003] d..2 82315.057440: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23216          <idle>-0     (-----) [003] d..1 82315.057458: cpu_idle: state=0 cpu_id=3
23217           <...>-27541 (-----) [001] d.s2 82315.057462: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23218           <...>-27541 (-----) [001] d.s3 82315.057486: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23219          <idle>-0     (-----) [003] .n.1 82315.057492: cpu_idle: state=4294967295 cpu_id=3
23220          <idle>-0     (-----) [003] d..2 82315.057504: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23221 crtc_commit:111-321   (  321) [003] d..2 82315.057684: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23222          <idle>-0     (-----) [003] d..1 82315.057699: cpu_idle: state=0 cpu_id=3
23223           <...>-27541 (-----) [001] d.s2 82315.057721: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23224           <...>-27541 (-----) [001] d.s3 82315.057742: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23225          <idle>-0     (-----) [003] .n.1 82315.057750: cpu_idle: state=4294967295 cpu_id=3
23226          <idle>-0     (-----) [003] d..2 82315.057761: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23227 crtc_commit:111-321   (  321) [003] d..3 82315.057781: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23228 crtc_commit:111-321   (  321) [003] d..4 82315.057800: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23229          <idle>-0     (-----) [000] .n.1 82315.057807: cpu_idle: state=4294967295 cpu_id=0
23230          <idle>-0     (-----) [000] d..2 82315.057820: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
23231 SDM_EventThread-644   (  619) [000] d..2 82315.057874: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23232          <idle>-0     (-----) [000] d..1 82315.057887: cpu_idle: state=0 cpu_id=0
23233 crtc_commit:111-321   (  321) [003] d..2 82315.057979: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23234          <idle>-0     (-----) [003] d..1 82315.057994: cpu_idle: state=0 cpu_id=3
23235           <...>-27541 (-----) [001] d.s2 82315.058171: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23236           <...>-27541 (-----) [001] d.s3 82315.058193: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23237          <idle>-0     (-----) [003] .n.1 82315.058199: cpu_idle: state=4294967295 cpu_id=3
23238          <idle>-0     (-----) [003] d..2 82315.058211: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23239 crtc_commit:111-321   (  321) [003] d..2 82315.058357: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23240          <idle>-0     (-----) [003] d..1 82315.058372: cpu_idle: state=0 cpu_id=3
23241           <...>-27541 (-----) [001] d.s3 82315.058380: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23242           <...>-27541 (-----) [001] d.s4 82315.058402: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23243          <idle>-0     (-----) [003] .n.1 82315.058408: cpu_idle: state=4294967295 cpu_id=3
23244          <idle>-0     (-----) [003] d..2 82315.058419: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23245 crtc_commit:111-321   (  321) [003] d..1 82315.058484: clk_enable: disp_cc_mdss_vsync_clk_src
23246 crtc_commit:111-321   (  321) [003] d..1 82315.058487: clk_enable: disp_cc_mdss_rscc_vsync_clk
23247 crtc_commit:111-321   (  321) [003] d..1 82315.058503: clk_enable: disp_cc_mdss_rscc_ahb_clk
23248 crtc_commit:111-321   (  321) [003] d..2 82315.058573: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23249          <idle>-0     (-----) [003] d..1 82315.058586: cpu_idle: state=0 cpu_id=3
23250          <idle>-0     (-----) [003] d.h2 82315.058656: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23251          <idle>-0     (-----) [003] dnh3 82315.058672: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23252          <idle>-0     (-----) [003] .n.1 82315.058680: cpu_idle: state=4294967295 cpu_id=3
23253          <idle>-0     (-----) [003] d..2 82315.058691: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23254 crtc_commit:111-321   (  321) [003] d..1 82315.058724: clk_enable: gcc_disp_axi_clk
23255 crtc_commit:111-321   (  321) [003] d..1 82315.058736: clk_enable: disp_cc_mdss_ahb_clk
23256 crtc_commit:111-321   (  321) [003] d..1 82315.058748: clk_enable: disp_cc_mdss_axi_clk
23257 crtc_commit:111-321   (  321) [003] d..1 82315.058769: clk_enable: gcc_disp_gpll0_clk_src
23258 crtc_commit:111-321   (  321) [003] d..1 82315.059277: clk_enable: disp_cc_mdss_mdp_clk_src
23259 crtc_commit:111-321   (  321) [003] d..1 82315.059311: clk_enable: disp_cc_mdss_mdp_clk
23260 crtc_commit:111-321   (  321) [003] d..1 82315.059322: clk_enable: disp_cc_mdss_vsync_clk
23261 crtc_commit:111-321   (  321) [003] d..2 82315.059535: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23262          <idle>-0     (-----) [003] d..1 82315.059550: cpu_idle: state=0 cpu_id=3
23263          <idle>-0     (-----) [003] ...1 82315.060668: cpu_idle: state=4294967295 cpu_id=3
23264          <idle>-0     (-----) [003] d..1 82315.060673: cpu_idle: state=2 cpu_id=3
23265          <idle>-0     (-----) [000] d.s2 82315.061806: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
23266          <idle>-0     (-----) [000] dns3 82315.061825: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
23267          <idle>-0     (-----) [000] .n.1 82315.061846: cpu_idle: state=4294967295 cpu_id=0
23268          <idle>-0     (-----) [000] d..2 82315.061859: 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
23269     rcu_preempt-7     (    7) [000] d..2 82315.061869: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
23270     rcu_preempt-7     (    7) [000] d..3 82315.061888: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
23271     rcu_preempt-7     (    7) [000] d..2 82315.061906: 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
23272         rcuop/2-29    (   29) [000] d..2 82315.061942: 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
23273          <idle>-0     (-----) [000] d..1 82315.061956: cpu_idle: state=2 cpu_id=0
23274          <idle>-0     (-----) [002] ...1 82315.062754: cpu_idle: state=4294967295 cpu_id=2
23275          <idle>-0     (-----) [002] d..1 82315.062759: cpu_idle: state=2 cpu_id=2
23276           <...>-27541 (-----) [001] d.s2 82315.065146: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23277           <...>-27541 (-----) [001] d.s3 82315.065172: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23278          <idle>-0     (-----) [000] .n.1 82315.065363: cpu_idle: state=4294967295 cpu_id=0
23279          <idle>-0     (-----) [000] d..2 82315.065388: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23280<...>-1054 ( 1054) [000] d..2 82315.065632: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
23281          <idle>-0     (-----) [000] d..1 82315.065645: cpu_idle: state=0 cpu_id=0
23282           <...>-27541 (-----) [001] d.s2 82315.065659: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23283           <...>-27541 (-----) [001] d.s3 82315.065679: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
23284           <...>-27541 (-----) [001] d.s3 82315.065691: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23285          <idle>-0     (-----) [000] .n.1 82315.065696: cpu_idle: state=4294967295 cpu_id=0
23286          <idle>-0     (-----) [000] d..2 82315.065707: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23287<...>-1054 ( 1054) [000] .... 82315.065785: clk_set_rate: l3_cluster0_vote_clk 576000000
23288<...>-1054 ( 1054) [000] .... 82315.065793: clk_set_rate: l3_clk 576000000
23289<...>-1054 ( 1054) [000] d..2 82315.065849: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23290          <idle>-0     (-----) [000] d..1 82315.065860: cpu_idle: state=0 cpu_id=0
23291          <idle>-0     (-----) [000] d.s2 82315.068507: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
23292          <idle>-0     (-----) [000] dns3 82315.068527: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
23293          <idle>-0     (-----) [000] .n.1 82315.068544: cpu_idle: state=4294967295 cpu_id=0
23294          <idle>-0     (-----) [000] d..2 82315.068554: 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
23295     rcu_preempt-7     (    7) [000] d..2 82315.068587: 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
23296          <idle>-0     (-----) [000] d..1 82315.068603: cpu_idle: state=0 cpu_id=0
23297           <...>-27541 (-----) [001] d.H2 82315.071920: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
23298           <...>-27541 (-----) [001] d.H3 82315.071945: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
23299           <...>-27541 (-----) [001] d.s2 82315.071956: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
23300           <...>-27541 (-----) [001] d.s3 82315.072002: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
23301          <idle>-0     (-----) [003] .n.1 82315.072224: cpu_idle: state=4294967295 cpu_id=3
23302          <idle>-0     (-----) [003] d..2 82315.072248: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
23303         sugov:0-576   (  576) [003] .... 82315.072289: clk_set_rate: pwrcl_clk 1228800000
23304         sugov:0-576   (  576) [003] .... 82315.072303: clk_set_rate: cpu3_pwrcl_clk 748800000
23305         sugov:0-576   (  576) [003] .... 82315.072316: clk_set_rate: cpu2_pwrcl_clk 748800000
23306         sugov:0-576   (  576) [003] .... 82315.072326: clk_set_rate: cpu1_pwrcl_clk 748800000
23307         sugov:0-576   (  576) [003] .... 82315.072336: clk_set_rate: cpu0_pwrcl_clk 1228800000
23308         sugov:0-576   (  576) [003] .... 82315.072347: cpu_frequency: state=1228800 cpu_id=0
23309         sugov:0-576   (  576) [003] .... 82315.072372: cpu_frequency: state=1228800 cpu_id=1
23310         sugov:0-576   (  576) [003] .... 82315.072377: cpu_frequency: state=1228800 cpu_id=2
23311         sugov:0-576   (  576) [003] .... 82315.072383: cpu_frequency: state=1228800 cpu_id=3
23312         sugov:0-576   (  576) [003] d..2 82315.072408: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
23313     rcu_preempt-7     (    7) [003] d..2 82315.072417: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
23314     rcu_preempt-7     (    7) [003] d..3 82315.072453: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
23315     rcu_preempt-7     (    7) [003] d..2 82315.072464: 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
23316         rcuop/0-10    (   10) [003] d..2 82315.072469: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
23317         rcuop/0-10    (   10) [003] d..3 82315.072498: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
23318         rcuop/0-10    (   10) [003] d..2 82315.072502: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
23319         rcuop/0-10    (   10) [003] d..3 82315.072511: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
23320          <idle>-0     (-----) [000] d.h7 82315.072514: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
23321         rcuop/0-10    (   10) [003] d..2 82315.072521: 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
23322          <idle>-0     (-----) [000] dnh8 82315.072526: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
23323          <idle>-0     (-----) [000] dnh9 82315.072538: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23324         rcuop/1-21    (   21) [003] d..2 82315.072544: 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
23325          <idle>-0     (-----) [000] dnha 82315.072561: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23326     rcu_preempt-7     (    7) [003] d..2 82315.072568: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23327          <idle>-0     (-----) [000] dnh7 82315.072574: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23328          <idle>-0     (-----) [000] dnh8 82315.072587: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23329          <idle>-0     (-----) [000] .n.1 82315.072602: cpu_idle: state=4294967295 cpu_id=0
23330          <idle>-0     (-----) [000] d..2 82315.072614: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
23331 crtc_commit:111-321   (  321) [003] d..1 82315.072624: clk_disable: disp_cc_mdss_vsync_clk
23332 crtc_commit:111-321   (  321) [003] d..1 82315.072639: clk_disable: disp_cc_mdss_mdp_clk
23333 crtc_commit:111-321   (  321) [003] d..1 82315.072649: clk_disable: disp_cc_mdss_mdp_clk_src
23334 SDM_EventThread-644   (  619) [000] ...1 82315.072656: tracing_mark_write: B|619|HWCCallbacks::Vsync::
23335 SDM_EventThread-644   (  619) [000] ...1 82315.072667: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
23336 SDM_EventThread-644   (  619) [000] ...1 82315.072673: tracing_mark_write: E|619
23337 crtc_commit:111-321   (  321) [003] d..1 82315.072679: clk_disable: gcc_disp_gpll0_clk_src
23338 SDM_EventThread-644   (  619) [000] .... 82315.072709: binder_transaction: transaction=1568257 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
23339 SDM_EventThread-644   (  619) [000] .... 82315.072717: binder_transaction_alloc_buf: transaction=1568257 data_size=76 offsets_size=0
23340 SDM_EventThread-644   (  619) [000] d..4 82315.072724: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
23341 SDM_EventThread-644   (  619) [000] d..5 82315.072745: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
23342 SDM_EventThread-644   (  619) [000] ...1 82315.072778: tracing_mark_write: E|619
23343 SDM_EventThread-644   (  619) [000] d..2 82315.072815: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
23344     kworker/0:1-25262 (25262) [000] d..2 82315.072847: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23345          <idle>-0     (-----) [000] d..1 82315.072861: cpu_idle: state=0 cpu_id=0
23346          <idle>-0     (-----) [002] .n.1 82315.073006: cpu_idle: state=4294967295 cpu_id=2
23347          <idle>-0     (-----) [002] d..2 82315.073026: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
23348<...>-8890 ( 8858) [002] .... 82315.073036: binder_transaction_received: transaction=1568257
23349<...>-8890 ( 8858) [002] ...1 82315.073070: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
23350<...>-8890 ( 8858) [002] ...1 82315.073084: tracing_mark_write: E|8858
23351<...>-8890 ( 8858) [002] d..2 82315.073130: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23352          <idle>-0     (-----) [002] d..1 82315.073146: cpu_idle: state=0 cpu_id=2
23353 crtc_commit:111-321   (  321) [003] d..1 82315.073195: clk_disable: disp_cc_mdss_axi_clk
23354 crtc_commit:111-321   (  321) [003] d..1 82315.073211: clk_disable: disp_cc_mdss_ahb_clk
23355 crtc_commit:111-321   (  321) [003] d..1 82315.073221: clk_disable: gcc_disp_axi_clk
23356 crtc_commit:111-321   (  321) [003] d..2 82315.073293: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23357          <idle>-0     (-----) [003] d..1 82315.073304: cpu_idle: state=0 cpu_id=3
23358          <idle>-0     (-----) [003] d.h2 82315.073385: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23359          <idle>-0     (-----) [003] dnh3 82315.073396: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23360          <idle>-0     (-----) [003] .n.1 82315.073403: cpu_idle: state=4294967295 cpu_id=3
23361          <idle>-0     (-----) [003] d..2 82315.073411: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23362 crtc_commit:111-321   (  321) [003] d..1 82315.073427: clk_disable: disp_cc_mdss_rscc_ahb_clk
23363 crtc_commit:111-321   (  321) [003] d..1 82315.073440: clk_disable: disp_cc_mdss_rscc_vsync_clk
23364 crtc_commit:111-321   (  321) [003] d..1 82315.073450: clk_disable: disp_cc_mdss_vsync_clk_src
23365 crtc_commit:111-321   (  321) [003] d..2 82315.073587: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23366          <idle>-0     (-----) [003] d..1 82315.073598: cpu_idle: state=0 cpu_id=3
23367           <...>-27541 (-----) [001] d.s2 82315.073613: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23368           <...>-27541 (-----) [001] d.s3 82315.073632: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23369          <idle>-0     (-----) [003] .n.1 82315.073638: cpu_idle: state=4294967295 cpu_id=3
23370          <idle>-0     (-----) [003] d..2 82315.073648: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23371 crtc_commit:111-321   (  321) [003] d..2 82315.073801: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23372          <idle>-0     (-----) [003] d..1 82315.073810: cpu_idle: state=0 cpu_id=3
23373           <...>-27541 (-----) [001] d.s2 82315.073835: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23374           <...>-27541 (-----) [001] d.s3 82315.073853: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23375          <idle>-0     (-----) [003] .n.1 82315.073858: cpu_idle: state=4294967295 cpu_id=3
23376          <idle>-0     (-----) [003] d..2 82315.073867: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23377 crtc_commit:111-321   (  321) [003] d..3 82315.073881: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23378 crtc_commit:111-321   (  321) [003] d..4 82315.073898: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23379          <idle>-0     (-----) [000] .n.1 82315.073905: cpu_idle: state=4294967295 cpu_id=0
23380          <idle>-0     (-----) [000] d..2 82315.073916: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
23381 SDM_EventThread-644   (  619) [000] d..2 82315.073969: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23382          <idle>-0     (-----) [000] d..1 82315.073979: cpu_idle: state=0 cpu_id=0
23383 crtc_commit:111-321   (  321) [003] d..2 82315.074051: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23384          <idle>-0     (-----) [003] d..1 82315.074061: cpu_idle: state=0 cpu_id=3
23385           <...>-27541 (-----) [001] d.s2 82315.074330: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23386           <...>-27541 (-----) [001] d.s3 82315.074348: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23387          <idle>-0     (-----) [003] .n.1 82315.074354: cpu_idle: state=4294967295 cpu_id=3
23388          <idle>-0     (-----) [003] d..2 82315.074364: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23389 crtc_commit:111-321   (  321) [003] d..2 82315.074495: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23390          <idle>-0     (-----) [003] d..1 82315.074505: cpu_idle: state=0 cpu_id=3
23391           <...>-27541 (-----) [001] d.s2 82315.074522: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23392           <...>-27541 (-----) [001] d.s3 82315.074539: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23393          <idle>-0     (-----) [003] .n.1 82315.074544: cpu_idle: state=4294967295 cpu_id=3
23394          <idle>-0     (-----) [003] d..2 82315.074553: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23395 crtc_commit:111-321   (  321) [003] d..1 82315.074572: clk_enable: disp_cc_mdss_vsync_clk_src
23396 crtc_commit:111-321   (  321) [003] d..1 82315.074574: clk_enable: disp_cc_mdss_rscc_vsync_clk
23397 crtc_commit:111-321   (  321) [003] d..1 82315.074588: clk_enable: disp_cc_mdss_rscc_ahb_clk
23398 crtc_commit:111-321   (  321) [003] d..2 82315.074645: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23399          <idle>-0     (-----) [003] d..1 82315.074652: cpu_idle: state=0 cpu_id=3
23400          <idle>-0     (-----) [003] d.h2 82315.074741: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23401          <idle>-0     (-----) [003] dnh3 82315.074751: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23402          <idle>-0     (-----) [003] .n.1 82315.074759: cpu_idle: state=4294967295 cpu_id=3
23403          <idle>-0     (-----) [003] d..2 82315.074767: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23404 crtc_commit:111-321   (  321) [003] d..2 82315.074787: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23405          <idle>-0     (-----) [003] d..1 82315.074793: cpu_idle: state=0 cpu_id=3
23406          <idle>-0     (-----) [003] d.h2 82315.074885: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23407          <idle>-0     (-----) [003] dnh3 82315.074894: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23408          <idle>-0     (-----) [003] .n.1 82315.074899: cpu_idle: state=4294967295 cpu_id=3
23409          <idle>-0     (-----) [003] d..2 82315.074907: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23410 crtc_commit:111-321   (  321) [003] d..1 82315.074939: clk_enable: gcc_disp_axi_clk
23411 crtc_commit:111-321   (  321) [003] d..1 82315.074949: clk_enable: disp_cc_mdss_ahb_clk
23412 crtc_commit:111-321   (  321) [003] d..1 82315.074960: clk_enable: disp_cc_mdss_axi_clk
23413 crtc_commit:111-321   (  321) [003] d..1 82315.074977: clk_enable: gcc_disp_gpll0_clk_src
23414           <...>-27541 (-----) [001] d.s2 82315.075145: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23415           <...>-27541 (-----) [001] d.s3 82315.075183: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
23416 crtc_commit:111-321   (  321) [003] d..1 82315.075486: clk_enable: disp_cc_mdss_mdp_clk_src
23417 crtc_commit:111-321   (  321) [003] d..1 82315.075520: clk_enable: disp_cc_mdss_mdp_clk
23418 crtc_commit:111-321   (  321) [003] d..1 82315.075559: clk_enable: disp_cc_mdss_vsync_clk
23419 crtc_commit:111-321   (  321) [003] d..2 82315.075757: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23420<...>-1054 ( 1054) [003] .... 82315.075810: clk_set_rate: l3_cluster0_vote_clk 748800000
23421<...>-1054 ( 1054) [003] .... 82315.075815: clk_set_rate: l3_clk 748800000
23422<...>-1054 ( 1054) [003] d..2 82315.075927: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23423          <idle>-0     (-----) [003] d..1 82315.075937: cpu_idle: state=0 cpu_id=3
23424          <idle>-0     (-----) [003] d.s2 82315.078464: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
23425          <idle>-0     (-----) [003] dns3 82315.078477: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
23426          <idle>-0     (-----) [003] .n.1 82315.078488: cpu_idle: state=4294967295 cpu_id=3
23427          <idle>-0     (-----) [003] d..2 82315.078496: 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
23428     rcu_preempt-7     (    7) [003] d..2 82315.078504: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
23429     rcu_preempt-7     (    7) [003] d..3 82315.078514: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
23430     rcu_preempt-7     (    7) [003] d..2 82315.078523: 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
23431         rcuop/0-10    (   10) [003] d..2 82315.078546: 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
23432          <idle>-0     (-----) [003] d..1 82315.078557: cpu_idle: state=0 cpu_id=3
23433          <idle>-0     (-----) [002] ...1 82315.079152: cpu_idle: state=4294967295 cpu_id=2
23434          <idle>-0     (-----) [002] d..1 82315.079156: cpu_idle: state=2 cpu_id=2
23435          <idle>-0     (-----) [003] ...1 82315.079691: cpu_idle: state=4294967295 cpu_id=3
23436          <idle>-0     (-----) [003] d..1 82315.079695: cpu_idle: state=2 cpu_id=3
23437          <idle>-0     (-----) [000] ...1 82315.079985: cpu_idle: state=4294967295 cpu_id=0
23438          <idle>-0     (-----) [000] d..1 82315.079989: cpu_idle: state=2 cpu_id=0
23439           <...>-27541 (-----) [001] d.s4 82315.085138: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
23440           <...>-27541 (-----) [001] d.s5 82315.085170: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
23441          <idle>-0     (-----) [003] .n.1 82315.085467: cpu_idle: state=4294967295 cpu_id=3
23442          <idle>-0     (-----) [003] d..2 82315.085486: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23443<...>-1054 ( 1054) [003] d..2 82315.085729: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23444          <idle>-0     (-----) [003] d..1 82315.085742: cpu_idle: state=2 cpu_id=3
23445           <...>-27541 (-----) [001] d.s4 82315.086352: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
23446           <...>-27541 (-----) [001] d.s5 82315.086364: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
23447           <...>-27541 (-----) [001] d.s5 82315.086372: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
23448          <idle>-0     (-----) [003] .n.1 82315.086539: cpu_idle: state=4294967295 cpu_id=3
23449          <idle>-0     (-----) [003] d..2 82315.086554: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23450<...>-1054 ( 1054) [003] .... 82315.086626: clk_set_rate: l3_cluster0_vote_clk 940800000
23451<...>-1054 ( 1054) [003] .... 82315.086631: clk_set_rate: l3_clk 940800000
23452<...>-1054 ( 1054) [003] d..2 82315.086768: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23453          <idle>-0     (-----) [003] d..1 82315.086779: cpu_idle: state=0 cpu_id=3
23454          <idle>-0     (-----) [003] d.h2 82315.089004: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
23455          <idle>-0     (-----) [003] dnh3 82315.089018: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
23456          <idle>-0     (-----) [003] .n.1 82315.089035: cpu_idle: state=4294967295 cpu_id=3
23457          <idle>-0     (-----) [003] d..2 82315.089044: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
23458          <idle>-0     (-----) [000] d.h7 82315.089128: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
23459          <idle>-0     (-----) [000] dnh8 82315.089140: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
23460          <idle>-0     (-----) [000] dnh9 82315.089152: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
23461          <idle>-0     (-----) [000] dnha 82315.089179: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23462          <idle>-0     (-----) [000] dnh7 82315.089184: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23463 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.089195: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23464           <...>-27541 (-----) [001] d.s2 82315.089204: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
23465          <idle>-0     (-----) [003] d..1 82315.089205: cpu_idle: state=0 cpu_id=3
23466          <idle>-0     (-----) [000] dnh8 82315.089211: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
23467          <idle>-0     (-----) [003] .n.1 82315.089217: cpu_idle: state=4294967295 cpu_id=3
23468           <...>-27541 (-----) [001] d.s3 82315.089221: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
23469          <idle>-0     (-----) [003] d..2 82315.089226: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
23470          <idle>-0     (-----) [000] .n.1 82315.089230: cpu_idle: state=4294967295 cpu_id=0
23471          <idle>-0     (-----) [000] d..2 82315.089244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
23472 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.089251: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
23473     kworker/0:1-25262 (25262) [000] d..2 82315.089272: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23474          <idle>-0     (-----) [000] d..1 82315.089283: cpu_idle: state=2 cpu_id=0
23475 SDM_EventThread-644   (  619) [003] ...1 82315.089296: tracing_mark_write: B|619|HWCCallbacks::Vsync::
23476 SDM_EventThread-644   (  619) [003] ...1 82315.089308: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
23477 SDM_EventThread-644   (  619) [003] ...1 82315.089312: tracing_mark_write: E|619
23478          <idle>-0     (-----) [002] .n.1 82315.089348: cpu_idle: state=4294967295 cpu_id=2
23479 SDM_EventThread-644   (  619) [003] .... 82315.089355: binder_transaction: transaction=1568258 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
23480          <idle>-0     (-----) [002] d..2 82315.089361: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23481 SDM_EventThread-644   (  619) [003] .... 82315.089362: binder_transaction_alloc_buf: transaction=1568258 data_size=76 offsets_size=0
23482 SDM_EventThread-644   (  619) [003] d..4 82315.089369: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
23483 SDM_EventThread-644   (  619) [003] d..5 82315.089393: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=000
23484 crtc_commit:111-321   (  321) [002] d..1 82315.089395: clk_disable: disp_cc_mdss_vsync_clk
23485 crtc_commit:111-321   (  321) [002] d..1 82315.089411: clk_disable: disp_cc_mdss_mdp_clk
23486 crtc_commit:111-321   (  321) [002] d..1 82315.089420: clk_disable: disp_cc_mdss_mdp_clk_src
23487 SDM_EventThread-644   (  619) [003] ...1 82315.089426: tracing_mark_write: E|619
23488 crtc_commit:111-321   (  321) [002] d..1 82315.089448: clk_disable: gcc_disp_gpll0_clk_src
23489 SDM_EventThread-644   (  619) [003] d..2 82315.089471: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23490          <idle>-0     (-----) [003] d..1 82315.089484: cpu_idle: state=0 cpu_id=3
23491          <idle>-0     (-----) [000] .n.1 82315.089554: cpu_idle: state=4294967295 cpu_id=0
23492          <idle>-0     (-----) [000] d..2 82315.089570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
23493<...>-8890 ( 8858) [000] .... 82315.089580: binder_transaction_received: transaction=1568258
23494<...>-8890 ( 8858) [000] ...1 82315.089618: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
23495<...>-8890 ( 8858) [000] d..1 82315.089665: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
23496<...>-8890 ( 8858) [000] d..2 82315.089695: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
23497          <idle>-0     (-----) [003] .n.1 82315.089701: cpu_idle: state=4294967295 cpu_id=3
23498          <idle>-0     (-----) [003] d..2 82315.089709: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
23499<...>-8890 ( 8858) [000] d..1 82315.089714: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
23500<...>-8890 ( 8858) [000] dn.2 82315.089750: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
23501<...>-8890 ( 8858) [000] d..2 82315.089759: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
23502        DispSync-8879  ( 8858) [003] d..2 82315.089771: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23503          <idle>-0     (-----) [003] d..1 82315.089779: cpu_idle: state=0 cpu_id=3
23504<...>-8894 ( 8858) [000] d..2 82315.089791: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
23505<...>-8890 ( 8858) [000] d..1 82315.089797: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
23506<...>-8890 ( 8858) [000] d..2 82315.089813: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=003
23507          <idle>-0     (-----) [003] .n.1 82315.089819: cpu_idle: state=4294967295 cpu_id=3
23508<...>-8890 ( 8858) [000] ...1 82315.089821: tracing_mark_write: E|8858
23509          <idle>-0     (-----) [003] d..2 82315.089827: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
23510<...>-8894 ( 8858) [003] ...1 82315.089858: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
23511<...>-8890 ( 8858) [000] d..2 82315.089860: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23512<...>-8894 ( 8858) [003] ...1 82315.089863: tracing_mark_write: E|8858
23513          <idle>-0     (-----) [000] d..1 82315.089874: cpu_idle: state=0 cpu_id=0
23514<...>-8894 ( 8858) [003] .... 82315.089905: binder_transaction: transaction=1568259 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
23515<...>-8894 ( 8858) [003] .... 82315.089913: binder_transaction_alloc_buf: transaction=1568259 data_size=68 offsets_size=0
23516<...>-8894 ( 8858) [003] ...2 82315.089927: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
23517<...>-8894 ( 8858) [003] d..4 82315.089948: sched_waking: [email protected] pid=619 prio=112 target_cpu=001
23518 crtc_commit:111-321   (  321) [002] d..1 82315.089967: clk_disable: disp_cc_mdss_axi_clk
23519<...>-8894 ( 8858) [003] d..5 82315.089972: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=003
23520 crtc_commit:111-321   (  321) [002] d..1 82315.089977: clk_disable: disp_cc_mdss_ahb_clk
23521<...>-8894 ( 8858) [003] d..2 82315.089984: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
23522 crtc_commit:111-321   (  321) [002] d..1 82315.089986: clk_disable: gcc_disp_axi_clk
23523 [email protected]   (  619) [003] .... 82315.089996: binder_transaction_received: transaction=1568259
23524 [email protected]   (  619) [003] ...1 82315.090053: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
23525 crtc_commit:111-321   (  321) [002] d..2 82315.090057: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23526          <idle>-0     (-----) [002] d..1 82315.090066: cpu_idle: state=0 cpu_id=2
23527 [email protected]   (  619) [003] ...1 82315.090071: tracing_mark_write: C|619|SetVsyncState |0
23528 [email protected]   (  619) [003] ...1 82315.090105: tracing_mark_write: E|619
23529 [email protected]   (  619) [003] .... 82315.090118: binder_transaction: transaction=1568260 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
23530 [email protected]   (  619) [003] .... 82315.090120: binder_transaction_alloc_buf: transaction=1568260 data_size=8 offsets_size=0
23531 [email protected]   (  619) [003] d..2 82315.090125: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=003
23532 [email protected]   (  619) [003] dn.3 82315.090137: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=003
23533          <idle>-0     (-----) [002] d.h2 82315.090144: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23534 [email protected]   (  619) [003] d..2 82315.090145: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
23535<...>-8894 ( 8858) [003] .... 82315.090151: binder_transaction_received: transaction=1568260
23536          <idle>-0     (-----) [002] dnh3 82315.090155: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23537          <idle>-0     (-----) [002] .n.1 82315.090162: cpu_idle: state=4294967295 cpu_id=2
23538          <idle>-0     (-----) [002] d..2 82315.090168: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23539 crtc_commit:111-321   (  321) [002] d..1 82315.090182: clk_disable: disp_cc_mdss_rscc_ahb_clk
23540<...>-8894 ( 8858) [003] d..2 82315.090188: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
23541 [email protected]   (  619) [003] .... 82315.090192: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
23542 crtc_commit:111-321   (  321) [002] d..1 82315.090193: clk_disable: disp_cc_mdss_rscc_vsync_clk
23543 crtc_commit:111-321   (  321) [002] d..1 82315.090202: clk_disable: disp_cc_mdss_vsync_clk_src
23544 [email protected]   (  619) [003] d..2 82315.090247: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23545          <idle>-0     (-----) [003] d..1 82315.090259: cpu_idle: state=0 cpu_id=3
23546 crtc_commit:111-321   (  321) [002] d..2 82315.090329: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23547          <idle>-0     (-----) [002] d..1 82315.090340: cpu_idle: state=0 cpu_id=2
23548           <...>-27541 (-----) [001] d.s2 82315.090350: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23549           <...>-27541 (-----) [001] d.s3 82315.090367: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23550          <idle>-0     (-----) [002] .n.1 82315.090373: cpu_idle: state=4294967295 cpu_id=2
23551          <idle>-0     (-----) [002] d..2 82315.090380: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23552 crtc_commit:111-321   (  321) [002] d..2 82315.090516: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23553          <idle>-0     (-----) [002] d..1 82315.090525: cpu_idle: state=2 cpu_id=2
23554           <...>-27541 (-----) [001] d.s2 82315.090547: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23555           <...>-27541 (-----) [001] d.s3 82315.090560: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23556          <idle>-0     (-----) [002] .n.1 82315.090764: cpu_idle: state=4294967295 cpu_id=2
23557          <idle>-0     (-----) [002] d..2 82315.090776: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23558 crtc_commit:111-321   (  321) [002] d..3 82315.090792: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
23559 crtc_commit:111-321   (  321) [002] d..4 82315.090807: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
23560          <idle>-0     (-----) [003] .n.1 82315.090814: cpu_idle: state=4294967295 cpu_id=3
23561          <idle>-0     (-----) [003] d..2 82315.090823: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
23562 SDM_EventThread-644   (  619) [003] d..2 82315.090862: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23563          <idle>-0     (-----) [003] d..1 82315.090871: cpu_idle: state=0 cpu_id=3
23564 crtc_commit:111-321   (  321) [002] d..2 82315.090946: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23565          <idle>-0     (-----) [002] d..1 82315.090957: cpu_idle: state=0 cpu_id=2
23566           <...>-27541 (-----) [001] d.s2 82315.091130: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23567           <...>-27541 (-----) [001] d.s3 82315.091144: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23568          <idle>-0     (-----) [002] .n.1 82315.091150: cpu_idle: state=4294967295 cpu_id=2
23569          <idle>-0     (-----) [002] d..2 82315.091157: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23570 crtc_commit:111-321   (  321) [002] d..2 82315.091271: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23571          <idle>-0     (-----) [002] d..1 82315.091280: cpu_idle: state=0 cpu_id=2
23572           <...>-27541 (-----) [001] d.s2 82315.091290: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23573           <...>-27541 (-----) [001] d.s3 82315.091303: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23574          <idle>-0     (-----) [002] .n.1 82315.091308: cpu_idle: state=4294967295 cpu_id=2
23575          <idle>-0     (-----) [002] d..2 82315.091316: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23576 crtc_commit:111-321   (  321) [002] d..1 82315.091338: clk_enable: disp_cc_mdss_vsync_clk_src
23577 crtc_commit:111-321   (  321) [002] d..1 82315.091340: clk_enable: disp_cc_mdss_rscc_vsync_clk
23578 crtc_commit:111-321   (  321) [002] d..1 82315.091353: clk_enable: disp_cc_mdss_rscc_ahb_clk
23579 crtc_commit:111-321   (  321) [002] d..2 82315.091406: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23580          <idle>-0     (-----) [002] d..1 82315.091413: cpu_idle: state=0 cpu_id=2
23581          <idle>-0     (-----) [002] d.h2 82315.091500: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23582          <idle>-0     (-----) [002] dnh3 82315.091510: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23583          <idle>-0     (-----) [002] .n.1 82315.091516: cpu_idle: state=4294967295 cpu_id=2
23584          <idle>-0     (-----) [002] d..2 82315.091523: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23585 crtc_commit:111-321   (  321) [002] d..1 82315.091552: clk_enable: gcc_disp_axi_clk
23586 crtc_commit:111-321   (  321) [002] d..1 82315.091561: clk_enable: disp_cc_mdss_ahb_clk
23587 crtc_commit:111-321   (  321) [002] d..1 82315.091570: clk_enable: disp_cc_mdss_axi_clk
23588 crtc_commit:111-321   (  321) [002] d..1 82315.091585: clk_enable: gcc_disp_gpll0_clk_src
23589           <...>-27541 (-----) [001] d.H2 82315.091897: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
23590           <...>-27541 (-----) [001] d.H3 82315.091911: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
23591          <idle>-0     (-----) [003] .n.1 82315.091918: cpu_idle: state=4294967295 cpu_id=3
23592          <idle>-0     (-----) [003] d..2 82315.091927: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
23593         sugov:0-576   (  576) [003] .... 82315.091963: clk_set_rate: pwrcl_clk 1766400000
23594         sugov:0-576   (  576) [003] d..2 82315.092050: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23595          <idle>-0     (-----) [003] d..1 82315.092059: cpu_idle: state=0 cpu_id=3
23596 crtc_commit:111-321   (  321) [002] d..1 82315.092091: clk_enable: disp_cc_mdss_mdp_clk_src
23597 crtc_commit:111-321   (  321) [002] d..1 82315.092121: clk_enable: disp_cc_mdss_mdp_clk
23598           <...>-27541 (-----) [001] d.s2 82315.092173: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
23599 crtc_commit:111-321   (  321) [002] d..2 82315.092173: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23600          <idle>-0     (-----) [002] d..1 82315.092183: cpu_idle: state=0 cpu_id=2
23601           <...>-27541 (-----) [001] d.s3 82315.092185: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
23602          <idle>-0     (-----) [003] .n.1 82315.092190: cpu_idle: state=4294967295 cpu_id=3
23603          <idle>-0     (-----) [003] d..2 82315.092197: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
23604         sugov:0-576   (  576) [003] .... 82315.092209: clk_set_rate: cpu3_pwrcl_clk 1228800000
23605         sugov:0-576   (  576) [003] .... 82315.092218: clk_set_rate: cpu2_pwrcl_clk 1228800000
23606         sugov:0-576   (  576) [003] .... 82315.092226: clk_set_rate: cpu1_pwrcl_clk 1228800000
23607         sugov:0-576   (  576) [003] .... 82315.092233: clk_set_rate: cpu0_pwrcl_clk 1766400000
23608         sugov:0-576   (  576) [003] d..1 82315.092242: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23609         sugov:0-576   (  576) [003] d..2 82315.092256: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23610         sugov:0-576   (  576) [003] .... 82315.092258: cpu_frequency: state=1766400 cpu_id=0
23611          <idle>-0     (-----) [002] .n.1 82315.092261: cpu_idle: state=4294967295 cpu_id=2
23612          <idle>-0     (-----) [002] d..2 82315.092268: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23613 crtc_commit:111-321   (  321) [002] d..1 82315.092273: clk_enable: disp_cc_mdss_vsync_clk
23614         sugov:0-576   (  576) [003] d..2 82315.092391: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23615          <idle>-0     (-----) [003] d..1 82315.092399: cpu_idle: state=0 cpu_id=3
23616           <...>-27541 (-----) [001] d.s2 82315.092415: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
23617           <...>-27541 (-----) [001] d.s3 82315.092425: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
23618          <idle>-0     (-----) [003] .n.1 82315.092431: cpu_idle: state=4294967295 cpu_id=3
23619          <idle>-0     (-----) [003] d..2 82315.092436: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
23620         sugov:0-576   (  576) [003] .... 82315.092443: cpu_frequency: state=1766400 cpu_id=1
23621         sugov:0-576   (  576) [003] .... 82315.092446: cpu_frequency: state=1766400 cpu_id=2
23622         sugov:0-576   (  576) [003] .... 82315.092448: cpu_frequency: state=1766400 cpu_id=3
23623 crtc_commit:111-321   (  321) [002] d..2 82315.092448: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23624          <idle>-0     (-----) [002] d..1 82315.092455: cpu_idle: state=0 cpu_id=2
23625         sugov:0-576   (  576) [003] d..2 82315.092461: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23626          <idle>-0     (-----) [003] d..1 82315.092468: cpu_idle: state=0 cpu_id=3
23627          <idle>-0     (-----) [002] ...1 82315.093585: cpu_idle: state=4294967295 cpu_id=2
23628          <idle>-0     (-----) [002] d..1 82315.093588: cpu_idle: state=2 cpu_id=2
23629          <idle>-0     (-----) [003] ...1 82315.093834: cpu_idle: state=4294967295 cpu_id=3
23630          <idle>-0     (-----) [003] d..1 82315.093837: cpu_idle: state=2 cpu_id=3
23631           <...>-27541 (-----) [001] d.s2 82315.095127: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
23632           <...>-27541 (-----) [001] d.s3 82315.095158: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23633          <idle>-0     (-----) [000] .n.1 82315.095164: cpu_idle: state=4294967295 cpu_id=0
23634          <idle>-0     (-----) [000] d..2 82315.095173: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23635<...>-1054 ( 1054) [000] .... 82315.095214: clk_set_rate: l3_cluster0_vote_clk 1132800000
23636<...>-1054 ( 1054) [000] .... 82315.095217: clk_set_rate: l3_clk 1132800000
23637<...>-1054 ( 1054) [000] d..2 82315.095297: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23638          <idle>-0     (-----) [000] d..1 82315.095306: cpu_idle: state=0 cpu_id=0
23639          <idle>-0     (-----) [000] ...1 82315.101307: cpu_idle: state=4294967295 cpu_id=0
23640          <idle>-0     (-----) [000] d..1 82315.101309: cpu_idle: state=2 cpu_id=0
23641           <...>-27541 (-----) [001] d.s2 82315.105124: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23642           <...>-27541 (-----) [001] d.s3 82315.105146: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23643          <idle>-0     (-----) [000] .n.1 82315.105312: cpu_idle: state=4294967295 cpu_id=0
23644          <idle>-0     (-----) [000] d..2 82315.105324: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23645<...>-1054 ( 1054) [000] d.h7 82315.105407: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
23646<...>-1054 ( 1054) [000] d.h8 82315.105417: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
23647<...>-1054 ( 1054) [000] d.h9 82315.105426: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23648<...>-1054 ( 1054) [000] d.ha 82315.105437: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23649<...>-1054 ( 1054) [000] d.h7 82315.105440: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
23650<...>-1054 ( 1054) [000] dnh8 82315.105463: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23651<...>-1054 ( 1054) [000] d..2 82315.105479: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
23652 SDM_EventThread-644   (  619) [000] d..2 82315.105501: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
23653     kworker/0:1-25262 (25262) [000] d..2 82315.105514: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23654          <idle>-0     (-----) [002] .n.1 82315.105593: cpu_idle: state=4294967295 cpu_id=2
23655          <idle>-0     (-----) [002] d..2 82315.105603: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23656 crtc_commit:111-321   (  321) [002] d..1 82315.105629: clk_disable: disp_cc_mdss_vsync_clk
23657 crtc_commit:111-321   (  321) [002] d..1 82315.105640: clk_disable: disp_cc_mdss_mdp_clk
23658 crtc_commit:111-321   (  321) [002] d..1 82315.105648: clk_disable: disp_cc_mdss_mdp_clk_src
23659<...>-1054 ( 1054) [000] d..2 82315.105650: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
23660          <idle>-0     (-----) [000] d..1 82315.105661: cpu_idle: state=0 cpu_id=0
23661           <...>-27541 (-----) [001] d.s2 82315.105673: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23662 crtc_commit:111-321   (  321) [002] d..1 82315.105674: clk_disable: gcc_disp_gpll0_clk_src
23663           <...>-27541 (-----) [001] d.s3 82315.105682: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
23664           <...>-27541 (-----) [001] d.s3 82315.105689: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23665          <idle>-0     (-----) [000] .n.1 82315.105695: cpu_idle: state=4294967295 cpu_id=0
23666          <idle>-0     (-----) [000] d..2 82315.105704: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23667 crtc_commit:111-321   (  321) [002] d..1 82315.106199: clk_disable: disp_cc_mdss_axi_clk
23668<...>-1054 ( 1054) [000] .... 82315.106204: clk_set_rate: l3_cluster0_vote_clk 1401600000
23669<...>-1054 ( 1054) [000] .... 82315.106207: clk_set_rate: l3_clk 1401600000
23670 crtc_commit:111-321   (  321) [002] d..1 82315.106221: clk_disable: disp_cc_mdss_ahb_clk
23671 crtc_commit:111-321   (  321) [002] d..1 82315.106230: clk_disable: gcc_disp_axi_clk
23672<...>-1054 ( 1054) [000] d..2 82315.106233: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23673          <idle>-0     (-----) [000] d..1 82315.106240: cpu_idle: state=0 cpu_id=0
23674 crtc_commit:111-321   (  321) [002] d..2 82315.106297: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23675          <idle>-0     (-----) [002] d..1 82315.106304: cpu_idle: state=0 cpu_id=2
23676          <idle>-0     (-----) [002] d.h2 82315.106387: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23677          <idle>-0     (-----) [002] dnh3 82315.106395: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23678          <idle>-0     (-----) [002] .n.1 82315.106400: cpu_idle: state=4294967295 cpu_id=2
23679          <idle>-0     (-----) [002] d..2 82315.106406: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23680 crtc_commit:111-321   (  321) [002] d..1 82315.106418: clk_disable: disp_cc_mdss_rscc_ahb_clk
23681 crtc_commit:111-321   (  321) [002] d..1 82315.106428: clk_disable: disp_cc_mdss_rscc_vsync_clk
23682 crtc_commit:111-321   (  321) [002] d..1 82315.106438: clk_disable: disp_cc_mdss_vsync_clk_src
23683 crtc_commit:111-321   (  321) [002] d..2 82315.106547: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23684          <idle>-0     (-----) [002] d..1 82315.106554: cpu_idle: state=0 cpu_id=2
23685           <...>-27541 (-----) [001] d.s2 82315.106569: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23686           <...>-27541 (-----) [001] d.s3 82315.106582: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23687          <idle>-0     (-----) [002] .n.1 82315.106587: cpu_idle: state=4294967295 cpu_id=2
23688          <idle>-0     (-----) [002] d..2 82315.106593: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23689 crtc_commit:111-321   (  321) [002] d..2 82315.106712: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
23690          <idle>-0     (-----) [002] d..1 82315.106718: cpu_idle: state=0 cpu_id=2
23691           <...>-27541 (-----) [001] d.s2 82315.106746: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23692           <...>-27541 (-----) [001] d.s3 82315.106757: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
23693          <idle>-0     (-----) [002] .n.1 82315.106762: cpu_idle: state=4294967295 cpu_id=2
23694          <idle>-0     (-----) [002] d..2 82315.106768: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
23695 crtc_commit:111-321   (  321) [002] d..3 82315.106778: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23696 crtc_commit:111-321   (  321) [002] d..4 82315.106789: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
23697          <idle>-0     (-----) [000] .n.1 82315.106794: cpu_idle: state=4294967295 cpu_id=0
23698          <idle>-0     (-----) [000] d..2 82315.106801: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
23699 crtc_commit:111-321   (  321) [002] d..2 82315.106803: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
23700          <idle>-0     (-----) [002] d..1 82315.106809: cpu_idle: state=0 cpu_id=2
23701 SDM_EventThread-644   (  619) [000] d..2 82315.106834: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23702          <idle>-0     (-----) [000] d..1 82315.106840: cpu_idle: state=0 cpu_id=0
23703          <idle>-0     (-----) [002] ...1 82315.107924: cpu_idle: state=4294967295 cpu_id=2
23704          <idle>-0     (-----) [002] d..1 82315.107926: cpu_idle: state=2 cpu_id=2
23705           <...>-27541 (-----) [001] d.h2 82315.111806: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
23706           <...>-27541 (-----) [001] dnh3 82315.111818: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
23707           <...>-27541 (-----) [001] d..2 82315.111889: sched_switch: prev_comm=app_process prev_pid=27541 prev_prio=120 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
23708          <idle>-0     (-----) [000] ...1 82315.111901: cpu_idle: state=4294967295 cpu_id=0
23709          <idle>-0     (-----) [000] d..1 82315.111904: cpu_idle: state=0 cpu_id=0
23710     migration/1-17    (   17) [001] d.h3 82315.111965: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
23711     migration/1-17    (   17) [001] d.h3 82315.111982: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
23712     migration/1-17    (   17) [001] d.h4 82315.111993: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
23713     migration/1-17    (   17) [001] d..2 82315.112016: 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
23714          <idle>-0     (-----) [001] d..1 82315.112033: cpu_idle: state=2 cpu_id=1
23715          <idle>-0     (-----) [003] .n.1 82315.112233: cpu_idle: state=4294967295 cpu_id=3
23716          <idle>-0     (-----) [003] d..2 82315.112243: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
23717         sugov:0-576   (  576) [003] .... 82315.112266: clk_set_rate: pwrcl_clk 748800000
23718         sugov:0-576   (  576) [003] .... 82315.112321: clk_set_rate: cpu3_pwrcl_clk 1766400000
23719         sugov:0-576   (  576) [003] .... 82315.112330: clk_set_rate: cpu2_pwrcl_clk 1766400000
23720         sugov:0-576   (  576) [003] .... 82315.112338: clk_set_rate: cpu1_pwrcl_clk 1766400000
23721         sugov:0-576   (  576) [003] .... 82315.112346: clk_set_rate: cpu0_pwrcl_clk 748800000
23722         sugov:0-576   (  576) [003] .... 82315.112458: cpu_frequency: state=748800 cpu_id=0
23723          <idle>-0     (-----) [001] ...1 82315.112619: cpu_idle: state=4294967295 cpu_id=1
23724          <idle>-0     (-----) [001] d.s5 82315.112619: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
23725          <idle>-0     (-----) [001] d.s6 82315.112619: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
23726         sugov:0-576   (  576) [003] d..2 82315.112633: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23727          <idle>-0     (-----) [003] d..1 82315.112649: cpu_idle: state=0 cpu_id=3
23728          <idle>-0     (-----) [003] .n.1 82315.112684: cpu_idle: state=4294967295 cpu_id=3
23729          <idle>-0     (-----) [003] d..2 82315.112695: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
23730          <idle>-0     (-----) [001] d..1 82315.112698: cpu_idle: state=0 cpu_id=1
23731         sugov:0-576   (  576) [003] .... 82315.112704: cpu_frequency: state=748800 cpu_id=1
23732         sugov:0-576   (  576) [003] .... 82315.112711: cpu_frequency: state=748800 cpu_id=2
23733         sugov:0-576   (  576) [003] .... 82315.112715: cpu_frequency: state=748800 cpu_id=3
23734         sugov:0-576   (  576) [003] d..2 82315.112739: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23735          <idle>-0     (-----) [003] d..1 82315.112752: cpu_idle: state=0 cpu_id=3
23736          <idle>-0     (-----) [004] .n.1 82315.113051: cpu_idle: state=4294967295 cpu_id=4
23737          <idle>-0     (-----) [004] d..2 82315.113081: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=27541 next_prio=120
23738          <idle>-0     (-----) [007] dnh2 82315.113145: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
23739          <idle>-0     (-----) [007] .n.1 82315.113160: cpu_idle: state=4294967295 cpu_id=7
23740          <idle>-0     (-----) [007] d..2 82315.113180: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
23741         sugov:4-577   (  577) [007] .... 82315.113225: clk_set_rate: perfcl_clk 1363200000
23742         sugov:4-577   (  577) [007] .... 82315.113229: clk_set_rate: cpu7_perfcl_clk 825600000
23743         sugov:4-577   (  577) [007] .... 82315.113237: clk_set_rate: cpu6_perfcl_clk 825600000
23744         sugov:4-577   (  577) [007] .... 82315.113245: clk_set_rate: cpu5_perfcl_clk 825600000
23745         sugov:4-577   (  577) [007] .... 82315.113251: clk_set_rate: cpu4_perfcl_clk 1363200000
23746         sugov:4-577   (  577) [007] .... 82315.113260: cpu_frequency: state=1363200 cpu_id=4
23747         sugov:4-577   (  577) [007] .... 82315.113281: cpu_frequency: state=1363200 cpu_id=5
23748         sugov:4-577   (  577) [007] .... 82315.113285: cpu_frequency: state=1363200 cpu_id=6
23749         sugov:4-577   (  577) [007] .... 82315.113288: cpu_frequency: state=1363200 cpu_id=7
23750         sugov:4-577   (  577) [007] d..2 82315.113313: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
23751          <idle>-0     (-----) [007] d..1 82315.113332: cpu_idle: state=2 cpu_id=7
23752          <idle>-0     (-----) [003] ...1 82315.114077: cpu_idle: state=4294967295 cpu_id=3
23753          <idle>-0     (-----) [003] d..1 82315.114082: cpu_idle: state=2 cpu_id=3
23754           <...>-27541 (-----) [004] d.s2 82315.115142: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23755          <idle>-0     (-----) [000] dnh2 82315.115169: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23756          <idle>-0     (-----) [000] .n.1 82315.115176: cpu_idle: state=4294967295 cpu_id=0
23757          <idle>-0     (-----) [000] d..2 82315.115189: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23758<...>-1054 ( 1054) [000] .... 82315.115213: clk_set_rate: l3_cluster0_vote_clk 940800000
23759<...>-1054 ( 1054) [000] .... 82315.115219: clk_set_rate: l3_clk 940800000
23760<...>-1054 ( 1054) [000] d..2 82315.115378: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23761          <idle>-0     (-----) [000] d..1 82315.115392: cpu_idle: state=2 cpu_id=0
23762          <idle>-0     (-----) [001] ...1 82315.118708: cpu_idle: state=4294967295 cpu_id=1
23763          <idle>-0     (-----) [001] d..1 82315.118714: cpu_idle: state=2 cpu_id=1
23764           <...>-27541 (-----) [004] d.s2 82315.125121: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23765          <idle>-0     (-----) [000] dnh2 82315.125582: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23766          <idle>-0     (-----) [000] .n.1 82315.125594: cpu_idle: state=4294967295 cpu_id=0
23767          <idle>-0     (-----) [000] d..2 82315.125616: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23768<...>-1054 ( 1054) [000] .... 82315.125689: clk_set_rate: l3_cluster1_vote_clk 940800000
23769<...>-1054 ( 1054) [000] .... 82315.125783: clk_set_rate: l3_cluster0_vote_clk 300000000
23770<...>-1054 ( 1054) [000] d..2 82315.125829: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23771          <idle>-0     (-----) [000] d..1 82315.125849: cpu_idle: state=2 cpu_id=0
23772           <...>-27541 (-----) [004] d.H2 82315.131877: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
23773           <...>-27541 (-----) [004] d.H3 82315.131899: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
23774          <idle>-0     (-----) [007] .n.1 82315.132516: cpu_idle: state=4294967295 cpu_id=7
23775          <idle>-0     (-----) [007] d..2 82315.132540: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
23776         sugov:4-577   (  577) [007] .... 82315.132579: clk_set_rate: perfcl_clk 1612800000
23777         sugov:4-577   (  577) [007] .... 82315.132582: clk_set_rate: cpu7_perfcl_clk 1363200000
23778         sugov:4-577   (  577) [007] .... 82315.132590: clk_set_rate: cpu6_perfcl_clk 1363200000
23779         sugov:4-577   (  577) [007] .... 82315.132598: clk_set_rate: cpu5_perfcl_clk 1363200000
23780         sugov:4-577   (  577) [007] .... 82315.132605: clk_set_rate: cpu4_perfcl_clk 1612800000
23781         sugov:4-577   (  577) [007] .... 82315.132612: cpu_frequency: state=1612800 cpu_id=4
23782         sugov:4-577   (  577) [007] .... 82315.132632: cpu_frequency: state=1612800 cpu_id=5
23783         sugov:4-577   (  577) [007] .... 82315.132634: cpu_frequency: state=1612800 cpu_id=6
23784         sugov:4-577   (  577) [007] .... 82315.132636: cpu_frequency: state=1612800 cpu_id=7
23785         sugov:4-577   (  577) [007] d..2 82315.132674: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
23786          <idle>-0     (-----) [007] d..1 82315.132687: cpu_idle: state=2 cpu_id=7
23787           <...>-27541 (-----) [004] d.s2 82315.135121: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23788          <idle>-0     (-----) [000] dnh2 82315.135540: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23789          <idle>-0     (-----) [000] .n.1 82315.135551: cpu_idle: state=4294967295 cpu_id=0
23790          <idle>-0     (-----) [000] d..2 82315.135573: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23791<...>-1054 ( 1054) [000] .... 82315.135723: clk_set_rate: l3_cluster1_vote_clk 1209600000
23792<...>-1054 ( 1054) [000] .... 82315.135733: clk_set_rate: l3_clk 1209600000
23793<...>-1054 ( 1054) [000] d..2 82315.135902: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23794          <idle>-0     (-----) [000] d..1 82315.135922: cpu_idle: state=2 cpu_id=0
23795           <...>-27541 (-----) [004] d.s2 82315.138453: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23796          <idle>-0     (-----) [000] dnh2 82315.138860: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23797          <idle>-0     (-----) [000] .n.1 82315.138871: cpu_idle: state=4294967295 cpu_id=0
23798          <idle>-0     (-----) [000] d..2 82315.138891: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23799<...>-1054 ( 1054) [000] d..2 82315.139241: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
23800          <idle>-0     (-----) [000] d..1 82315.139263: cpu_idle: state=0 cpu_id=0
23801          <idle>-0     (-----) [001] d.s3 82315.139585: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23802          <idle>-0     (-----) [001] d.s4 82315.139608: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
23803          <idle>-0     (-----) [001] d.s4 82315.139622: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23804          <idle>-0     (-----) [000] .n.1 82315.139631: cpu_idle: state=4294967295 cpu_id=0
23805          <idle>-0     (-----) [001] ...1 82315.139638: cpu_idle: state=4294967295 cpu_id=1
23806          <idle>-0     (-----) [000] d..2 82315.139643: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23807          <idle>-0     (-----) [001] d..1 82315.139654: cpu_idle: state=0 cpu_id=1
23808<...>-1054 ( 1054) [000] d..2 82315.139682: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23809          <idle>-0     (-----) [000] d..1 82315.139695: cpu_idle: state=0 cpu_id=0
23810           <...>-27541 (-----) [004] d.s2 82315.145121: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23811          <idle>-0     (-----) [000] dnh2 82315.145144: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23812          <idle>-0     (-----) [000] .n.1 82315.145152: cpu_idle: state=4294967295 cpu_id=0
23813          <idle>-0     (-----) [000] d..2 82315.145165: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23814<...>-1054 ( 1054) [000] d..2 82315.145345: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
23815          <idle>-0     (-----) [000] d..1 82315.145359: cpu_idle: state=0 cpu_id=0
23816          <idle>-0     (-----) [001] ...1 82315.145662: cpu_idle: state=4294967295 cpu_id=1
23817          <idle>-0     (-----) [001] d..1 82315.145668: cpu_idle: state=2 cpu_id=1
23818          <idle>-0     (-----) [000] ...1 82315.151371: cpu_idle: state=4294967295 cpu_id=0
23819          <idle>-0     (-----) [000] d..1 82315.151378: cpu_idle: state=2 cpu_id=0
23820           <...>-27541 (-----) [004] d.H2 82315.151856: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
23821           <...>-27541 (-----) [004] d.H3 82315.151875: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
23822           <...>-27541 (-----) [004] d.H2 82315.151881: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
23823          <idle>-0     (-----) [003] dnh2 82315.152350: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
23824          <idle>-0     (-----) [003] .n.1 82315.152368: cpu_idle: state=4294967295 cpu_id=3
23825          <idle>-0     (-----) [003] d..2 82315.152392: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
23826         sugov:0-576   (  576) [003] .... 82315.152450: clk_set_rate: pwrcl_clk 652800000
23827          <idle>-0     (-----) [007] .n.1 82315.152465: cpu_idle: state=4294967295 cpu_id=7
23828          <idle>-0     (-----) [007] d..2 82315.152483: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
23829         sugov:0-576   (  576) [003] .... 82315.152491: clk_set_rate: cpu3_pwrcl_clk 748800000
23830         sugov:0-576   (  576) [003] .... 82315.152505: clk_set_rate: cpu2_pwrcl_clk 748800000
23831         sugov:0-576   (  576) [003] .... 82315.152515: clk_set_rate: cpu1_pwrcl_clk 748800000
23832         sugov:0-576   (  576) [003] .... 82315.152526: clk_set_rate: cpu0_pwrcl_clk 652800000
23833         sugov:0-576   (  576) [003] .... 82315.152597: cpu_frequency: state=652800 cpu_id=0
23834         sugov:4-577   (  577) [007] .... 82315.152614: clk_set_rate: perfcl_clk 2092800000
23835         sugov:4-577   (  577) [007] .... 82315.152617: clk_set_rate: cpu7_perfcl_clk 1612800000
23836         sugov:4-577   (  577) [007] .... 82315.152624: clk_set_rate: cpu6_perfcl_clk 1612800000
23837         sugov:4-577   (  577) [007] .... 82315.152630: clk_set_rate: cpu5_perfcl_clk 1612800000
23838         sugov:4-577   (  577) [007] .... 82315.152637: clk_set_rate: cpu4_perfcl_clk 2092800000
23839         sugov:0-576   (  576) [003] .... 82315.152638: cpu_frequency: state=652800 cpu_id=1
23840         sugov:4-577   (  577) [007] .... 82315.152644: cpu_frequency: state=2092800 cpu_id=4
23841         sugov:0-576   (  576) [003] .... 82315.152644: cpu_frequency: state=652800 cpu_id=2
23842         sugov:0-576   (  576) [003] .... 82315.152650: cpu_frequency: state=652800 cpu_id=3
23843         sugov:4-577   (  577) [007] d..2 82315.152880: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
23844          <idle>-0     (-----) [007] d..1 82315.152890: cpu_idle: state=2 cpu_id=7
23845         sugov:0-576   (  576) [003] d..2 82315.152924: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23846          <idle>-0     (-----) [003] d..1 82315.152945: cpu_idle: state=2 cpu_id=3
23847          <idle>-0     (-----) [001] d.s3 82315.153958: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
23848          <idle>-0     (-----) [001] ...1 82315.153985: cpu_idle: state=4294967295 cpu_id=1
23849          <idle>-0     (-----) [001] d..1 82315.153998: cpu_idle: state=0 cpu_id=1
23850          <idle>-0     (-----) [007] dnh2 82315.154246: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
23851          <idle>-0     (-----) [007] .n.1 82315.154252: cpu_idle: state=4294967295 cpu_id=7
23852          <idle>-0     (-----) [007] d..2 82315.154259: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
23853         sugov:4-577   (  577) [007] d..1 82315.154267: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
23854         sugov:4-577   (  577) [007] .... 82315.154275: cpu_frequency: state=2092800 cpu_id=5
23855         sugov:4-577   (  577) [007] .... 82315.154278: cpu_frequency: state=2092800 cpu_id=6
23856         sugov:4-577   (  577) [007] .... 82315.154279: cpu_frequency: state=2092800 cpu_id=7
23857         sugov:4-577   (  577) [007] d..2 82315.154290: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
23858          <idle>-0     (-----) [007] d..1 82315.154295: cpu_idle: state=2 cpu_id=7
23859          <idle>-0     (-----) [003] dnh2 82315.154471: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
23860          <idle>-0     (-----) [003] .n.1 82315.154481: cpu_idle: state=4294967295 cpu_id=3
23861          <idle>-0     (-----) [003] d..2 82315.154494: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
23862         sugov:0-576   (  576) [003] d..2 82315.154529: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23863          <idle>-0     (-----) [003] d..1 82315.154546: cpu_idle: state=0 cpu_id=3
23864           <...>-27541 (-----) [004] d.s2 82315.155118: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
23865          <idle>-0     (-----) [001] dnh2 82315.155160: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23866          <idle>-0     (-----) [001] .n.1 82315.155169: cpu_idle: state=4294967295 cpu_id=1
23867          <idle>-0     (-----) [001] d..2 82315.155190: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23868<...>-1054 ( 1054) [001] .... 82315.155313: clk_set_rate: l3_cluster1_vote_clk 1305600000
23869<...>-1054 ( 1054) [001] .... 82315.155320: clk_set_rate: l3_clk 1305600000
23870<...>-1054 ( 1054) [001] d..2 82315.155384: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23871          <idle>-0     (-----) [001] d..1 82315.155402: cpu_idle: state=0 cpu_id=1
23872          <idle>-0     (-----) [003] ...1 82315.160557: cpu_idle: state=4294967295 cpu_id=3
23873          <idle>-0     (-----) [003] d..1 82315.160563: cpu_idle: state=2 cpu_id=3
23874          <idle>-0     (-----) [001] ...1 82315.161410: cpu_idle: state=4294967295 cpu_id=1
23875          <idle>-0     (-----) [001] d..1 82315.161416: cpu_idle: state=2 cpu_id=1
23876           <...>-27541 (-----) [004] d.s2 82315.165112: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23877          <idle>-0     (-----) [001] dnh2 82315.165395: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23878          <idle>-0     (-----) [001] .n.1 82315.165404: cpu_idle: state=4294967295 cpu_id=1
23879          <idle>-0     (-----) [001] d..2 82315.165424: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23880<...>-1054 ( 1054) [001] .... 82315.165473: clk_set_rate: l3_cluster1_vote_clk 1401600000
23881<...>-1054 ( 1054) [001] .... 82315.165480: clk_set_rate: l3_clk 1401600000
23882<...>-1054 ( 1054) [001] d..2 82315.165605: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23883          <idle>-0     (-----) [001] d..1 82315.165625: cpu_idle: state=0 cpu_id=1
23884          <idle>-0     (-----) [001] ...1 82315.171633: cpu_idle: state=4294967295 cpu_id=1
23885          <idle>-0     (-----) [001] d..1 82315.171639: cpu_idle: state=2 cpu_id=1
23886           <...>-27541 (-----) [004] d.H2 82315.171816: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
23887           <...>-27541 (-----) [004] d.H3 82315.171823: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
23888           <...>-27541 (-----) [004] d.s2 82315.171828: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
23889           <...>-27541 (-----) [004] dns3 82315.171837: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
23890           <...>-27541 (-----) [004] d..2 82315.171842: sched_switch: prev_comm=app_process prev_pid=27541 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
23891     kworker/4:1-25432 (25432) [004] d..2 82315.171859: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=app_process next_pid=27541 next_prio=120
23892          <idle>-0     (-----) [007] .n.1 82315.172092: cpu_idle: state=4294967295 cpu_id=7
23893          <idle>-0     (-----) [007] d..2 82315.172102: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
23894         sugov:4-577   (  577) [007] .... 82315.172119: clk_set_rate: perfcl_clk 2649600000
23895         sugov:4-577   (  577) [007] .... 82315.172119: clk_set_rate: cpu7_perfcl_clk 2092800000
23896         sugov:4-577   (  577) [007] .... 82315.172124: clk_set_rate: cpu6_perfcl_clk 2092800000
23897         sugov:4-577   (  577) [007] .... 82315.172129: clk_set_rate: cpu5_perfcl_clk 2092800000
23898         sugov:4-577   (  577) [007] .... 82315.172134: clk_set_rate: cpu4_perfcl_clk 2649600000
23899         sugov:4-577   (  577) [007] .... 82315.172138: cpu_frequency: state=2649600 cpu_id=4
23900         sugov:4-577   (  577) [007] d..2 82315.172253: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
23901          <idle>-0     (-----) [007] d..1 82315.172259: cpu_idle: state=2 cpu_id=7
23902          <idle>-0     (-----) [001] d.s3 82315.173856: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
23903          <idle>-0     (-----) [001] ...1 82315.173882: cpu_idle: state=4294967295 cpu_id=1
23904          <idle>-0     (-----) [001] d..1 82315.173891: cpu_idle: state=2 cpu_id=1
23905          <idle>-0     (-----) [007] dnh2 82315.174037: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
23906          <idle>-0     (-----) [007] .n.1 82315.174041: cpu_idle: state=4294967295 cpu_id=7
23907          <idle>-0     (-----) [007] d..2 82315.174045: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
23908         sugov:4-577   (  577) [007] .... 82315.174050: cpu_frequency: state=2649600 cpu_id=5
23909         sugov:4-577   (  577) [007] .... 82315.174053: cpu_frequency: state=2649600 cpu_id=6
23910         sugov:4-577   (  577) [007] .... 82315.174054: cpu_frequency: state=2649600 cpu_id=7
23911         sugov:4-577   (  577) [007] d..2 82315.174061: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
23912          <idle>-0     (-----) [007] d..1 82315.174065: cpu_idle: state=2 cpu_id=7
23913           <...>-27541 (-----) [004] d.s2 82315.175114: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23914          <idle>-0     (-----) [001] dnh2 82315.175347: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23915          <idle>-0     (-----) [001] .n.1 82315.175356: cpu_idle: state=4294967295 cpu_id=1
23916          <idle>-0     (-----) [001] d..2 82315.175375: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23917<...>-1054 ( 1054) [001] d..2 82315.175521: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23918          <idle>-0     (-----) [001] d..1 82315.175539: cpu_idle: state=0 cpu_id=1
23919          <idle>-0     (-----) [001] ...1 82315.181546: cpu_idle: state=4294967295 cpu_id=1
23920          <idle>-0     (-----) [001] d..1 82315.181553: cpu_idle: state=2 cpu_id=1
23921           <...>-27541 (-----) [004] d.s4 82315.185113: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23922          <idle>-0     (-----) [001] dnh2 82315.185377: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23923          <idle>-0     (-----) [001] .n.1 82315.185386: cpu_idle: state=4294967295 cpu_id=1
23924          <idle>-0     (-----) [001] d..2 82315.185407: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23925<...>-1054 ( 1054) [001] .... 82315.185458: clk_set_rate: l3_cluster1_vote_clk 1478400000
23926<...>-1054 ( 1054) [001] .... 82315.185467: clk_set_rate: l3_clk 1478400000
23927<...>-1054 ( 1054) [001] d.s3 82315.185584: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23928<...>-1054 ( 1054) [001] d.s4 82315.185589: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23929<...>-1054 ( 1054) [001] d..2 82315.185777: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23930          <idle>-0     (-----) [001] d..1 82315.185796: cpu_idle: state=0 cpu_id=1
23931          <idle>-0     (-----) [003] d.h2 82315.188024: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
23932          <idle>-0     (-----) [003] dnh3 82315.188046: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
23933          <idle>-0     (-----) [003] .n.1 82315.188058: cpu_idle: state=4294967295 cpu_id=3
23934          <idle>-0     (-----) [003] d..2 82315.188077: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
23935 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.188279: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
23936          <idle>-0     (-----) [001] d.s3 82315.188290: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
23937          <idle>-0     (-----) [003] d..1 82315.188300: cpu_idle: state=0 cpu_id=3
23938          <idle>-0     (-----) [001] d.s4 82315.188305: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
23939          <idle>-0     (-----) [003] .n.1 82315.188310: cpu_idle: state=4294967295 cpu_id=3
23940          <idle>-0     (-----) [001] ...1 82315.188319: cpu_idle: state=4294967295 cpu_id=1
23941          <idle>-0     (-----) [003] d..2 82315.188322: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
23942          <idle>-0     (-----) [001] d..1 82315.188325: cpu_idle: state=0 cpu_id=1
23943 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.188364: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
23944          <idle>-0     (-----) [003] d..1 82315.188378: cpu_idle: state=0 cpu_id=3
23945           <...>-27541 (-----) [004] d.H2 82315.191819: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
23946           <...>-27541 (-----) [004] d.H3 82315.191828: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
23947          <idle>-0     (-----) [007] .n.1 82315.191999: cpu_idle: state=4294967295 cpu_id=7
23948          <idle>-0     (-----) [007] d..2 82315.192007: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
23949         sugov:4-577   (  577) [007] .... 82315.192025: clk_set_rate: perfcl_clk 2803200000
23950         sugov:4-577   (  577) [007] .... 82315.192026: clk_set_rate: cpu7_perfcl_clk 2649600000
23951         sugov:4-577   (  577) [007] .... 82315.192031: clk_set_rate: cpu6_perfcl_clk 2649600000
23952         sugov:4-577   (  577) [007] .... 82315.192035: clk_set_rate: cpu5_perfcl_clk 2649600000
23953         sugov:4-577   (  577) [007] .... 82315.192039: clk_set_rate: cpu4_perfcl_clk 2803200000
23954         sugov:4-577   (  577) [007] .... 82315.192044: cpu_frequency: state=2803200 cpu_id=4
23955         sugov:4-577   (  577) [007] .... 82315.192051: cpu_frequency: state=2803200 cpu_id=5
23956         sugov:4-577   (  577) [007] .... 82315.192052: cpu_frequency: state=2803200 cpu_id=6
23957         sugov:4-577   (  577) [007] .... 82315.192053: cpu_frequency: state=2803200 cpu_id=7
23958         sugov:4-577   (  577) [007] d..2 82315.192066: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
23959          <idle>-0     (-----) [007] d..1 82315.192071: cpu_idle: state=2 cpu_id=7
23960          <idle>-0     (-----) [003] ...1 82315.194386: cpu_idle: state=4294967295 cpu_id=3
23961          <idle>-0     (-----) [003] d..1 82315.194392: cpu_idle: state=2 cpu_id=3
23962           <...>-27541 (-----) [004] d.s2 82315.195114: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23963          <idle>-0     (-----) [001] dnh2 82315.195137: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23964          <idle>-0     (-----) [001] .n.1 82315.195143: cpu_idle: state=4294967295 cpu_id=1
23965          <idle>-0     (-----) [001] d..2 82315.195158: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23966<...>-1054 ( 1054) [001] d..2 82315.195294: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23967          <idle>-0     (-----) [001] d..1 82315.195312: cpu_idle: state=0 cpu_id=1
23968          <idle>-0     (-----) [001] ...1 82315.201318: cpu_idle: state=4294967295 cpu_id=1
23969          <idle>-0     (-----) [001] d..1 82315.201324: cpu_idle: state=2 cpu_id=1
23970           <...>-27541 (-----) [004] d.s2 82315.205111: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23971          <idle>-0     (-----) [001] dnh2 82315.205365: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23972          <idle>-0     (-----) [001] .n.1 82315.205375: cpu_idle: state=4294967295 cpu_id=1
23973          <idle>-0     (-----) [001] d..2 82315.205396: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23974<...>-1054 ( 1054) [001] d..2 82315.205546: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23975          <idle>-0     (-----) [001] d..1 82315.205565: cpu_idle: state=0 cpu_id=1
23976          <idle>-0     (-----) [001] ...1 82315.211573: cpu_idle: state=4294967295 cpu_id=1
23977          <idle>-0     (-----) [001] d..1 82315.211579: cpu_idle: state=2 cpu_id=1
23978           <...>-27541 (-----) [004] d.s2 82315.215112: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23979          <idle>-0     (-----) [001] dnh2 82315.215364: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23980          <idle>-0     (-----) [001] .n.1 82315.215374: cpu_idle: state=4294967295 cpu_id=1
23981          <idle>-0     (-----) [001] d..2 82315.215393: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23982<...>-1054 ( 1054) [001] d..2 82315.215544: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23983          <idle>-0     (-----) [001] d..1 82315.215561: cpu_idle: state=2 cpu_id=1
23984           <...>-27541 (-----) [004] d.s2 82315.225112: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23985          <idle>-0     (-----) [001] dnh2 82315.225363: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23986          <idle>-0     (-----) [001] .n.1 82315.225373: cpu_idle: state=4294967295 cpu_id=1
23987          <idle>-0     (-----) [001] d..2 82315.225394: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
23988<...>-1054 ( 1054) [001] d..2 82315.225543: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
23989          <idle>-0     (-----) [001] d..1 82315.225559: cpu_idle: state=2 cpu_id=1
23990           <...>-27541 (-----) [004] d..2 82315.234889: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
23991           <...>-27541 (-----) [004] d.s2 82315.235118: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
23992          <idle>-0     (-----) [001] dnh2 82315.235169: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
23993          <idle>-0     (-----) [001] .n.1 82315.235179: cpu_idle: state=4294967295 cpu_id=1
23994          <idle>-0     (-----) [001] d..2 82315.235202: 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
23995         rcuop/4-45    (   45) [001] d..2 82315.235211: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
23996         rcuop/4-45    (   45) [001] d..3 82315.235235: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
23997         rcuop/4-45    (   45) [001] d..2 82315.235272: 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
23998          <idle>-0     (-----) [002] dnh2 82315.235289: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
23999          <idle>-0     (-----) [001] d..1 82315.235290: cpu_idle: state=2 cpu_id=1
24000          <idle>-0     (-----) [002] .n.1 82315.235303: cpu_idle: state=4294967295 cpu_id=2
24001          <idle>-0     (-----) [002] d..2 82315.235323: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24002          <idle>-0     (-----) [003] .n.1 82315.235382: cpu_idle: state=4294967295 cpu_id=3
24003          <idle>-0     (-----) [003] d..2 82315.235413: 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
24004     rcu_preempt-7     (    7) [003] d..2 82315.235498: 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
24005          <idle>-0     (-----) [003] d..1 82315.235550: cpu_idle: state=0 cpu_id=3
24006<...>-1054 ( 1054) [002] d..2 82315.235881: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
24007          <idle>-0     (-----) [002] d..1 82315.235916: cpu_idle: state=2 cpu_id=2
24008          <idle>-0     (-----) [001] d.s3 82315.236032: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
24009          <idle>-0     (-----) [001] d.s4 82315.236060: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24010          <idle>-0     (-----) [001] dns4 82315.236071: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24011          <idle>-0     (-----) [001] .n.1 82315.236086: cpu_idle: state=4294967295 cpu_id=1
24012          <idle>-0     (-----) [001] d..2 82315.236112: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24013<...>-1054 ( 1054) [001] d..2 82315.236200: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24014          <idle>-0     (-----) [001] d..1 82315.236216: cpu_idle: state=0 cpu_id=1
24015          <idle>-0     (-----) [003] d.h2 82315.237762: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
24016          <idle>-0     (-----) [003] dnh3 82315.237801: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
24017          <idle>-0     (-----) [003] .n.1 82315.237825: cpu_idle: state=4294967295 cpu_id=3
24018          <idle>-0     (-----) [003] d..2 82315.237856: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
24019 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.238137: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
24020          <idle>-0     (-----) [001] d.s3 82315.238157: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
24021          <idle>-0     (-----) [003] d..1 82315.238162: cpu_idle: state=0 cpu_id=3
24022          <idle>-0     (-----) [001] d.s4 82315.238186: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
24023          <idle>-0     (-----) [003] .n.1 82315.238195: cpu_idle: state=4294967295 cpu_id=3
24024          <idle>-0     (-----) [001] ...1 82315.238209: cpu_idle: state=4294967295 cpu_id=1
24025          <idle>-0     (-----) [003] d..2 82315.238217: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
24026          <idle>-0     (-----) [001] d..1 82315.238225: cpu_idle: state=0 cpu_id=1
24027 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.238287: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24028          <idle>-0     (-----) [003] d..1 82315.238302: cpu_idle: state=0 cpu_id=3
24029           <...>-27541 (-----) [004] d..2 82315.239255: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
24030          <idle>-0     (-----) [003] dnh2 82315.239290: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
24031          <idle>-0     (-----) [003] .n.1 82315.239296: cpu_idle: state=4294967295 cpu_id=3
24032          <idle>-0     (-----) [003] d..2 82315.239311: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
24033<...>-581 ( 571) [003] d..1 82315.239642: sched_waking: comm=app_process pid=27541 prio=120 target_cpu=004
24034           <...>-27541 (-----) [004] d..2 82315.239650: sched_switch: prev_comm=app_process prev_pid=27541 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
24035          <idle>-0     (-----) [004] d..1 82315.239659: cpu_idle: state=2 cpu_id=4
24036<...>-581 ( 571) [003] d..2 82315.239698: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
24037          <idle>-0     (-----) [003] d..3 82315.239709: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
24038          <idle>-0     (-----) [003] dn.4 82315.239760: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
24039          <idle>-0     (-----) [003] d..2 82315.239774: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
24040         rcuop/2-29    (   29) [003] d..2 82315.239802: 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
24041          <idle>-0     (-----) [003] d..1 82315.239810: cpu_idle: state=0 cpu_id=3
24042          <idle>-0     (-----) [004] d.h2 82315.240489: sched_blocked_reason: pid=27541 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24043          <idle>-0     (-----) [004] dnh2 82315.240491: sched_wakeup: comm=app_process pid=27541 prio=120 target_cpu=004
24044          <idle>-0     (-----) [004] .n.1 82315.240494: cpu_idle: state=4294967295 cpu_id=4
24045          <idle>-0     (-----) [004] d..2 82315.240500: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=27541 next_prio=120
24046           <...>-27541 (-----) [004] d..1 82315.240505: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
24047           <...>-27541 (-----) [004] d..2 82315.240518: sched_switch: prev_comm=app_process prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24048          <idle>-0     (-----) [004] d..1 82315.240521: cpu_idle: state=2 cpu_id=4
24049          <idle>-0     (-----) [003] d.h2 82315.240525: sched_blocked_reason: pid=581 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
24050          <idle>-0     (-----) [003] dnh2 82315.240531: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
24051          <idle>-0     (-----) [003] .n.1 82315.240538: cpu_idle: state=4294967295 cpu_id=3
24052          <idle>-0     (-----) [003] d..2 82315.240546: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
24053<...>-581 ( 571) [003] d..1 82315.240554: sched_waking: comm=app_process pid=27541 prio=120 target_cpu=004
24054<...>-581 ( 571) [003] d..2 82315.240727: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
24055          <idle>-0     (-----) [003] d..1 82315.240739: cpu_idle: state=0 cpu_id=3
24056          <idle>-0     (-----) [004] d.h2 82315.241314: sched_blocked_reason: pid=27541 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24057          <idle>-0     (-----) [004] dnh2 82315.241316: sched_wakeup: comm=app_process pid=27541 prio=120 target_cpu=004
24058          <idle>-0     (-----) [004] .n.1 82315.241319: cpu_idle: state=4294967295 cpu_id=4
24059          <idle>-0     (-----) [004] d..2 82315.241323: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=27541 next_prio=120
24060           <...>-27541 (-----) [004] d..1 82315.241326: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
24061           <...>-27541 (-----) [004] d..2 82315.241344: sched_switch: prev_comm=app_process prev_pid=27541 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
24062          <idle>-0     (-----) [003] d.h2 82315.241346: sched_blocked_reason: pid=581 iowait=0 caller=proc_pid_cmdline_read+0x63c/0x668
24063          <idle>-0     (-----) [004] d..1 82315.241347: cpu_idle: state=2 cpu_id=4
24064          <idle>-0     (-----) [003] dnh2 82315.241352: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
24065          <idle>-0     (-----) [003] .n.1 82315.241359: cpu_idle: state=4294967295 cpu_id=3
24066          <idle>-0     (-----) [003] d..2 82315.241370: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
24067<...>-581 ( 571) [003] d..1 82315.241374: sched_waking: comm=app_process pid=27541 prio=120 target_cpu=004
24068<...>-581 ( 571) [003] d..2 82315.241405: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
24069          <idle>-0     (-----) [003] d..1 82315.241414: cpu_idle: state=0 cpu_id=3
24070          <idle>-0     (-----) [003] d.s2 82315.241807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24071          <idle>-0     (-----) [003] dns3 82315.241824: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24072          <idle>-0     (-----) [003] .n.1 82315.241853: cpu_idle: state=4294967295 cpu_id=3
24073          <idle>-0     (-----) [003] d..2 82315.241863: 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
24074     rcu_preempt-7     (    7) [003] d..2 82315.241882: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
24075     rcu_preempt-7     (    7) [003] d..3 82315.241927: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
24076     rcu_preempt-7     (    7) [003] d..2 82315.241945: 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
24077         rcuop/4-45    (   45) [003] d..2 82315.241987: 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
24078          <idle>-0     (-----) [003] d..1 82315.242002: cpu_idle: state=0 cpu_id=3
24079          <idle>-0     (-----) [004] d.h2 82315.242139: sched_blocked_reason: pid=27541 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24080          <idle>-0     (-----) [004] dnh2 82315.242140: sched_wakeup: comm=app_process pid=27541 prio=120 target_cpu=004
24081          <idle>-0     (-----) [004] .n.1 82315.242144: cpu_idle: state=4294967295 cpu_id=4
24082          <idle>-0     (-----) [004] d..2 82315.242149: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=27541 next_prio=120
24083           <...>-27541 (-----) [004] d..1 82315.242154: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
24084           <...>-27541 (-----) [004] d..2 82315.242167: sched_switch: prev_comm=app_process prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24085          <idle>-0     (-----) [004] d..1 82315.242171: cpu_idle: state=0 cpu_id=4
24086          <idle>-0     (-----) [003] d.h2 82315.242173: sched_blocked_reason: pid=581 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
24087          <idle>-0     (-----) [003] dnh2 82315.242178: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
24088          <idle>-0     (-----) [003] .n.1 82315.242185: cpu_idle: state=4294967295 cpu_id=3
24089          <idle>-0     (-----) [003] d..2 82315.242198: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
24090<...>-581 ( 571) [003] d..1 82315.242206: sched_waking: comm=app_process pid=27541 prio=120 target_cpu=004
24091          <idle>-0     (-----) [004] d.h2 82315.242221: sched_blocked_reason: pid=27541 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24092          <idle>-0     (-----) [004] dnh2 82315.242222: sched_wakeup: comm=app_process pid=27541 prio=120 target_cpu=004
24093          <idle>-0     (-----) [004] .n.1 82315.242224: cpu_idle: state=4294967295 cpu_id=4
24094          <idle>-0     (-----) [004] d..2 82315.242228: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=27541 next_prio=120
24095           <...>-27541 (-----) [004] d..1 82315.242230: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
24096<...>-581 ( 571) [003] d..2 82315.242238: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
24097          <idle>-0     (-----) [003] d..1 82315.242250: cpu_idle: state=0 cpu_id=3
24098          <idle>-0     (-----) [003] d.h2 82315.242263: sched_blocked_reason: pid=581 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
24099           <...>-27541 (-----) [004] d..2 82315.242264: sched_switch: prev_comm=app_process prev_pid=27541 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
24100          <idle>-0     (-----) [004] d..1 82315.242267: cpu_idle: state=0 cpu_id=4
24101          <idle>-0     (-----) [003] dnh2 82315.242268: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
24102          <idle>-0     (-----) [003] .n.1 82315.242275: cpu_idle: state=4294967295 cpu_id=3
24103          <idle>-0     (-----) [003] d..2 82315.242287: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
24104<...>-581 ( 571) [003] d..1 82315.242294: sched_waking: comm=app_process pid=27541 prio=120 target_cpu=004
24105          <idle>-0     (-----) [004] d.h2 82315.242309: sched_blocked_reason: pid=27541 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24106          <idle>-0     (-----) [004] dnh2 82315.242310: sched_wakeup: comm=app_process pid=27541 prio=120 target_cpu=004
24107          <idle>-0     (-----) [004] .n.1 82315.242312: cpu_idle: state=4294967295 cpu_id=4
24108          <idle>-0     (-----) [004] d..2 82315.242315: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=app_process next_pid=27541 next_prio=120
24109<...>-581 ( 571) [003] d..2 82315.242375: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24110          <idle>-0     (-----) [003] d..1 82315.242392: cpu_idle: state=0 cpu_id=3
24111           <...>-27541 (-----) [004] d.s2 82315.245120: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24112          <idle>-0     (-----) [001] dnH2 82315.245178: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24113          <idle>-0     (-----) [001] dns3 82315.245190: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
24114          <idle>-0     (-----) [001] dns4 82315.245204: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
24115          <idle>-0     (-----) [001] .n.1 82315.245227: cpu_idle: state=4294967295 cpu_id=1
24116          <idle>-0     (-----) [001] d..2 82315.245241: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
24117     kworker/1:1-25249 (25249) [001] d..2 82315.245343: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24118<...>-1054 ( 1054) [001] .... 82315.245405: clk_set_rate: l3_cluster1_vote_clk 1401600000
24119<...>-1054 ( 1054) [001] .... 82315.245414: clk_set_rate: l3_clk 1401600000
24120<...>-1054 ( 1054) [001] d..2 82315.245893: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24121          <idle>-0     (-----) [001] d.s4 82315.245935: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24122          <idle>-0     (-----) [001] d.s5 82315.245945: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24123          <idle>-0     (-----) [001] dns5 82315.245951: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24124          <idle>-0     (-----) [001] d..2 82315.245965: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24125<...>-1054 ( 1054) [001] d..2 82315.246022: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24126          <idle>-0     (-----) [001] d..1 82315.246041: cpu_idle: state=0 cpu_id=1
24127          <idle>-0     (-----) [000] d.h3 82315.246243: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
24128          <idle>-0     (-----) [000] dnh4 82315.246264: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
24129          <idle>-0     (-----) [000] .n.1 82315.246295: cpu_idle: state=4294967295 cpu_id=0
24130          <idle>-0     (-----) [000] d..2 82315.246327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
24131     kworker/0:1-25262 (25262) [000] d..2 82315.246336: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
24132     kworker/0:1-25262 (25262) [000] d..3 82315.246346: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
24133     kworker/0:1-25262 (25262) [000] d..3 82315.246359: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
24134          <idle>-0     (-----) [001] .n.1 82315.246367: cpu_idle: state=4294967295 cpu_id=1
24135          <idle>-0     (-----) [001] d..2 82315.246381: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
24136     kworker/0:1-25262 (25262) [000] d..2 82315.246391: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24137          <idle>-0     (-----) [000] d..1 82315.246413: cpu_idle: state=0 cpu_id=0
24138     kworker/1:1-25249 (25249) [001] d..2 82315.246510: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24139          <idle>-0     (-----) [001] d..1 82315.246526: cpu_idle: state=0 cpu_id=1
24140          <idle>-0     (-----) [003] d.s2 82315.248469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24141          <idle>-0     (-----) [003] dns3 82315.248483: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24142          <idle>-0     (-----) [003] .n.1 82315.248494: cpu_idle: state=4294967295 cpu_id=3
24143          <idle>-0     (-----) [003] d..2 82315.248507: 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
24144     rcu_preempt-7     (    7) [003] d..2 82315.248520: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
24145     rcu_preempt-7     (    7) [003] d..3 82315.248561: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
24146          <idle>-0     (-----) [000] .n.1 82315.248573: cpu_idle: state=4294967295 cpu_id=0
24147          <idle>-0     (-----) [000] d..2 82315.248591: 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
24148         rcuop/2-29    (   29) [000] d..2 82315.248598: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
24149     rcu_preempt-7     (    7) [003] d..2 82315.248603: 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
24150          <idle>-0     (-----) [003] d..1 82315.248617: cpu_idle: state=0 cpu_id=3
24151         rcuop/2-29    (   29) [000] d..3 82315.248628: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
24152          <idle>-0     (-----) [003] .n.1 82315.248634: cpu_idle: state=4294967295 cpu_id=3
24153          <idle>-0     (-----) [003] d..2 82315.248647: 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
24154         rcuop/2-29    (   29) [000] d..2 82315.248652: 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
24155          <idle>-0     (-----) [000] d..1 82315.248667: cpu_idle: state=0 cpu_id=0
24156         rcuop/3-37    (   37) [003] d..2 82315.248689: 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
24157          <idle>-0     (-----) [003] d..1 82315.248701: cpu_idle: state=0 cpu_id=3
24158          <idle>-0     (-----) [001] ...1 82315.252535: cpu_idle: state=4294967295 cpu_id=1
24159          <idle>-0     (-----) [001] d..1 82315.252541: cpu_idle: state=2 cpu_id=1
24160          <idle>-0     (-----) [000] ...1 82315.254676: cpu_idle: state=4294967295 cpu_id=0
24161          <idle>-0     (-----) [000] d..1 82315.254682: cpu_idle: state=2 cpu_id=0
24162           <...>-27541 (-----) [004] d.s2 82315.255117: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24163          <idle>-0     (-----) [003] d.s2 82315.255134: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24164          <idle>-0     (-----) [003] dns3 82315.255150: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24165          <idle>-0     (-----) [003] .n.1 82315.255170: cpu_idle: state=4294967295 cpu_id=3
24166          <idle>-0     (-----) [003] d..2 82315.255185: 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
24167     rcu_preempt-7     (    7) [003] d..2 82315.255196: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
24168          <idle>-0     (-----) [001] dnh2 82315.255303: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24169     rcu_preempt-7     (    7) [003] d..2 82315.255304: 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
24170          <idle>-0     (-----) [001] .n.1 82315.255313: cpu_idle: state=4294967295 cpu_id=1
24171          <idle>-0     (-----) [003] d..1 82315.255324: cpu_idle: state=2 cpu_id=3
24172          <idle>-0     (-----) [001] d..2 82315.255331: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24173          <idle>-0     (-----) [007] dnh2 82315.255402: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=007
24174          <idle>-0     (-----) [007] .n.1 82315.255407: cpu_idle: state=4294967295 cpu_id=7
24175          <idle>-0     (-----) [007] d..2 82315.255414: 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
24176         rcuop/4-45    (   45) [007] d..2 82315.255441: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
24177          <idle>-0     (-----) [007] d..1 82315.255447: cpu_idle: state=2 cpu_id=7
24178<...>-1054 ( 1054) [001] d..2 82315.255596: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24179          <idle>-0     (-----) [001] d.s4 82315.255642: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24180          <idle>-0     (-----) [001] d.s5 82315.255653: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24181          <idle>-0     (-----) [001] dns5 82315.255659: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24182          <idle>-0     (-----) [001] d..2 82315.255673: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24183<...>-1054 ( 1054) [001] .... 82315.255753: clk_set_rate: l3_cluster1_vote_clk 1478400000
24184<...>-1054 ( 1054) [001] .... 82315.255761: clk_set_rate: l3_clk 1478400000
24185<...>-1054 ( 1054) [001] d..2 82315.255856: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24186          <idle>-0     (-----) [001] d.s4 82315.255892: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24187          <idle>-0     (-----) [001] d.s5 82315.255902: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24188          <idle>-0     (-----) [001] dns5 82315.255907: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24189          <idle>-0     (-----) [001] d..2 82315.255921: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24190<...>-1054 ( 1054) [001] d..2 82315.255972: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24191          <idle>-0     (-----) [001] d..1 82315.255992: cpu_idle: state=0 cpu_id=1
24192           <...>-27541 (-----) [004] d..2 82315.257490: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=000
24193          <idle>-0     (-----) [000] dnh2 82315.257686: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=000
24194          <idle>-0     (-----) [000] .n.1 82315.257697: cpu_idle: state=4294967295 cpu_id=0
24195          <idle>-0     (-----) [000] d..2 82315.257720: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kswapd0 next_pid=142 next_prio=120
24196<...>-142 ( 142) [000] d.s3 82315.258494: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
24197<...>-142 ( 142) [000] d.s4 82315.258519: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
24198          <idle>-0     (-----) [003] .n.1 82315.258680: cpu_idle: state=4294967295 cpu_id=3
24199          <idle>-0     (-----) [003] d..2 82315.258706: 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
24200         rcuop/0-10    (   10) [003] d..2 82315.258756: 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
24201          <idle>-0     (-----) [003] d..1 82315.258769: cpu_idle: state=0 cpu_id=3
24202          <idle>-0     (-----) [003] d.h2 82315.260076: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
24203          <idle>-0     (-----) [003] dnh3 82315.260094: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
24204          <idle>-0     (-----) [003] .n.1 82315.260105: cpu_idle: state=4294967295 cpu_id=3
24205          <idle>-0     (-----) [003] d..2 82315.260112: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
24206<...>-142 ( 142) [000] d..2 82315.260145: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24207          <idle>-0     (-----) [000] d..1 82315.260172: cpu_idle: state=2 cpu_id=0
24208 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.260329: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
24209          <idle>-0     (-----) [003] d..1 82315.260340: cpu_idle: state=0 cpu_id=3
24210          <idle>-0     (-----) [001] d.s3 82315.260377: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
24211          <idle>-0     (-----) [001] d.s4 82315.260393: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
24212          <idle>-0     (-----) [003] .n.1 82315.260401: cpu_idle: state=4294967295 cpu_id=3
24213          <idle>-0     (-----) [001] ...1 82315.260408: cpu_idle: state=4294967295 cpu_id=1
24214          <idle>-0     (-----) [003] d..2 82315.260411: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
24215          <idle>-0     (-----) [001] d..1 82315.260415: cpu_idle: state=0 cpu_id=1
24216 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.260452: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24217          <idle>-0     (-----) [003] d..1 82315.260461: cpu_idle: state=0 cpu_id=3
24218          <idle>-0     (-----) [002] d.h2 82315.260528: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
24219          <idle>-0     (-----) [002] dnh3 82315.260548: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
24220          <idle>-0     (-----) [002] .n.1 82315.260566: cpu_idle: state=4294967295 cpu_id=2
24221          <idle>-0     (-----) [002] d..2 82315.260584: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
24222 irq/81-114a000.-9677  ( 9677) [002] d..2 82315.260761: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
24223          <idle>-0     (-----) [001] d.s3 82315.260771: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
24224          <idle>-0     (-----) [002] dn.1 82315.260780: cpu_idle: state=2 cpu_id=2
24225          <idle>-0     (-----) [001] d.s4 82315.260784: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
24226          <idle>-0     (-----) [001] ...1 82315.260795: cpu_idle: state=4294967295 cpu_id=1
24227          <idle>-0     (-----) [002] .n.1 82315.260803: cpu_idle: state=4294967295 cpu_id=2
24228          <idle>-0     (-----) [001] d..1 82315.260803: cpu_idle: state=2 cpu_id=1
24229          <idle>-0     (-----) [002] d..2 82315.260815: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
24230 irq/81-114a000.-9677  ( 9677) [002] d..2 82315.260854: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24231          <idle>-0     (-----) [002] d..1 82315.260874: cpu_idle: state=0 cpu_id=2
24232          <idle>-0     (-----) [003] d.s2 82315.261847: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24233          <idle>-0     (-----) [003] dns3 82315.261877: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24234          <idle>-0     (-----) [003] .n.1 82315.261904: cpu_idle: state=4294967295 cpu_id=3
24235          <idle>-0     (-----) [003] d..2 82315.261924: 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
24236     rcu_preempt-7     (    7) [003] d..2 82315.261948: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
24237     rcu_preempt-7     (    7) [003] d..3 82315.261969: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
24238     rcu_preempt-7     (    7) [003] d..2 82315.262010: 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
24239          <idle>-0     (-----) [003] d..1 82315.262029: cpu_idle: state=0 cpu_id=3
24240          <idle>-0     (-----) [000] .n.1 82315.262108: cpu_idle: state=4294967295 cpu_id=0
24241          <idle>-0     (-----) [000] d..2 82315.262132: 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
24242         rcuop/2-29    (   29) [000] d..2 82315.262140: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
24243         rcuop/2-29    (   29) [000] d..3 82315.262180: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
24244          <idle>-0     (-----) [002] .n.1 82315.262187: cpu_idle: state=4294967295 cpu_id=2
24245          <idle>-0     (-----) [002] d..2 82315.262201: 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
24246         rcuop/2-29    (   29) [000] d..2 82315.262208: 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
24247          <idle>-0     (-----) [000] d..1 82315.262226: cpu_idle: state=0 cpu_id=0
24248         rcuop/3-37    (   37) [002] d..2 82315.262233: 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
24249          <idle>-0     (-----) [002] d..1 82315.262247: cpu_idle: state=0 cpu_id=2
24250           <...>-27541 (-----) [004] d..3 82315.263503: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24251           <...>-27541 (-----) [004] d..3 82315.263516: sched_waking: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
24252           <...>-27541 (-----) [004] dn.4 82315.263524: sched_wakeup: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
24253           <...>-27541 (-----) [004] d..2 82315.263527: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:1H next_pid=545 next_prio=100
24254<...>-545 ( 545) [004] d..2 82315.263537: sched_switch: prev_comm=kworker/4:1H prev_pid=545 prev_prio=100 prev_state=S ==> next_comm=main next_pid=27541 next_prio=120
24255           <...>-27541 (-----) [004] d..2 82315.263549: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
24256          <idle>-0     (-----) [004] d..1 82315.263557: cpu_idle: state=0 cpu_id=4
24257          <idle>-0     (-----) [001] dnh2 82315.263665: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24258          <idle>-0     (-----) [001] .n.1 82315.263674: cpu_idle: state=4294967295 cpu_id=1
24259          <idle>-0     (-----) [001] d..2 82315.263693: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24260<...>-1054 ( 1054) [001] d..2 82315.263965: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24261          <idle>-0     (-----) [001] d..1 82315.263983: cpu_idle: state=0 cpu_id=1
24262          <idle>-0     (-----) [001] d.s3 82315.264037: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24263          <idle>-0     (-----) [001] d.s4 82315.264052: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24264          <idle>-0     (-----) [001] dns4 82315.264058: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24265          <idle>-0     (-----) [001] .n.1 82315.264068: cpu_idle: state=4294967295 cpu_id=1
24266          <idle>-0     (-----) [001] d..2 82315.264081: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24267<...>-1054 ( 1054) [001] d..2 82315.264204: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24268          <idle>-0     (-----) [001] d.s4 82315.264239: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24269          <idle>-0     (-----) [001] d.s5 82315.264251: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24270          <idle>-0     (-----) [001] dns5 82315.264256: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24271          <idle>-0     (-----) [001] d..2 82315.264270: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24272<...>-1054 ( 1054) [001] d..1 82315.264297: clk_enable: gcc_ufs_phy_axi_clk_src
24273<...>-1054 ( 1054) [001] d..1 82315.264316: clk_enable: gcc_ufs_phy_axi_clk
24274<...>-1054 ( 1054) [001] d..1 82315.264327: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
24275<...>-1054 ( 1054) [001] d..1 82315.264337: clk_enable: gcc_aggre_ufs_phy_axi_clk
24276<...>-1054 ( 1054) [001] d..1 82315.264346: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
24277<...>-1054 ( 1054) [001] d..1 82315.264353: clk_enable: gcc_ufs_phy_ahb_clk
24278<...>-1054 ( 1054) [001] d..1 82315.264365: clk_enable: gcc_ufs_phy_unipro_core_clk_src
24279<...>-1054 ( 1054) [001] d..1 82315.264372: clk_enable: gcc_ufs_phy_unipro_core_clk
24280<...>-1054 ( 1054) [001] d..1 82315.264380: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
24281<...>-1054 ( 1054) [001] d..1 82315.264390: clk_enable: gcc_ufs_phy_ice_core_clk_src
24282<...>-1054 ( 1054) [001] d..1 82315.264397: clk_enable: gcc_ufs_phy_ice_core_clk
24283<...>-1054 ( 1054) [001] d..1 82315.264405: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
24284<...>-1054 ( 1054) [001] d..1 82315.264422: clk_enable: gcc_ufs_mem_clkref_clk
24285<...>-1054 ( 1054) [001] d..1 82315.264432: clk_enable: gcc_ufs_phy_phy_aux_clk_src
24286<...>-1054 ( 1054) [001] d..1 82315.264438: clk_enable: gcc_ufs_phy_phy_aux_clk
24287<...>-1054 ( 1054) [001] d..1 82315.264447: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
24288<...>-1054 ( 1054) [001] d..3 82315.264494: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
24289<...>-1054 ( 1054) [001] dn.4 82315.264525: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
24290<...>-1054 ( 1054) [001] d..2 82315.264536: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
24291          <idle>-0     (-----) [004] ...1 82315.264568: cpu_idle: state=4294967295 cpu_id=4
24292          <idle>-0     (-----) [004] d..1 82315.264569: cpu_idle: state=0 cpu_id=4
24293  kworker/u16:15-1311  ( 1311) [001] d..2 82315.264586: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24294          <idle>-0     (-----) [005] ...1 82315.264730: cpu_idle: state=4294967295 cpu_id=5
24295          <idle>-0     (-----) [005] d..1 82315.264735: cpu_idle: state=0 cpu_id=5
24296          <idle>-0     (-----) [006] ...1 82315.264758: cpu_idle: state=4294967295 cpu_id=6
24297          <idle>-0     (-----) [006] d..1 82315.264762: cpu_idle: state=0 cpu_id=6
24298          <idle>-0     (-----) [007] ...1 82315.264785: cpu_idle: state=4294967295 cpu_id=7
24299<...>-1054 ( 1054) [001] d..2 82315.264786: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24300          <idle>-0     (-----) [007] d..1 82315.264790: cpu_idle: state=0 cpu_id=7
24301          <idle>-0     (-----) [001] d..1 82315.264805: cpu_idle: state=0 cpu_id=1
24302          <idle>-0     (-----) [004] d.s3 82315.265118: sched_waking: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
24303          <idle>-0     (-----) [004] dns4 82315.265121: sched_wakeup: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
24304          <idle>-0     (-----) [004] dns3 82315.265122: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24305          <idle>-0     (-----) [004] .n.1 82315.265133: cpu_idle: state=4294967295 cpu_id=4
24306          <idle>-0     (-----) [004] d..2 82315.265136: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1H next_pid=545 next_prio=100
24307          <idle>-0     (-----) [001] dnh2 82315.265144: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24308<...>-545 ( 545) [004] d..2 82315.265148: sched_switch: prev_comm=kworker/4:1H prev_pid=545 prev_prio=100 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
24309          <idle>-0     (-----) [004] d..1 82315.265151: cpu_idle: state=0 cpu_id=4
24310          <idle>-0     (-----) [001] .n.1 82315.265153: cpu_idle: state=4294967295 cpu_id=1
24311          <idle>-0     (-----) [001] d..2 82315.265168: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24312<...>-1054 ( 1054) [001] .... 82315.265212: clk_set_rate: l3_cluster1_vote_clk 1401600000
24313<...>-1054 ( 1054) [001] .... 82315.265221: clk_set_rate: l3_clk 1401600000
24314          <idle>-0     (-----) [003] ...1 82315.265634: cpu_idle: state=4294967295 cpu_id=3
24315          <idle>-0     (-----) [004] ...1 82315.265639: cpu_idle: state=4294967295 cpu_id=4
24316          <idle>-0     (-----) [004] d..1 82315.265640: cpu_idle: state=0 cpu_id=4
24317          <idle>-0     (-----) [003] d..1 82315.265641: cpu_idle: state=0 cpu_id=3
24318<...>-1054 ( 1054) [001] d..2 82315.265646: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24319          <idle>-0     (-----) [001] d.s4 82315.265686: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24320          <idle>-0     (-----) [003] ...1 82315.265691: cpu_idle: state=4294967295 cpu_id=3
24321          <idle>-0     (-----) [004] ...1 82315.265692: cpu_idle: state=4294967295 cpu_id=4
24322          <idle>-0     (-----) [004] d..1 82315.265693: cpu_idle: state=0 cpu_id=4
24323          <idle>-0     (-----) [003] d..1 82315.265696: cpu_idle: state=0 cpu_id=3
24324          <idle>-0     (-----) [001] d.s5 82315.265697: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24325          <idle>-0     (-----) [001] dns5 82315.265703: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24326          <idle>-0     (-----) [001] d..2 82315.265717: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24327          <idle>-0     (-----) [003] ...1 82315.265741: cpu_idle: state=4294967295 cpu_id=3
24328          <idle>-0     (-----) [004] ...1 82315.265742: cpu_idle: state=4294967295 cpu_id=4
24329          <idle>-0     (-----) [004] d..1 82315.265743: cpu_idle: state=0 cpu_id=4
24330          <idle>-0     (-----) [003] d..1 82315.265747: cpu_idle: state=0 cpu_id=3
24331<...>-1054 ( 1054) [001] d..2 82315.265776: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24332          <idle>-0     (-----) [003] ...1 82315.265788: cpu_idle: state=4294967295 cpu_id=3
24333          <idle>-0     (-----) [004] ...1 82315.265789: cpu_idle: state=4294967295 cpu_id=4
24334          <idle>-0     (-----) [004] d..1 82315.265790: cpu_idle: state=0 cpu_id=4
24335          <idle>-0     (-----) [003] d..1 82315.265794: cpu_idle: state=0 cpu_id=3
24336          <idle>-0     (-----) [001] d..1 82315.265794: cpu_idle: state=0 cpu_id=1
24337          <idle>-0     (-----) [004] ...1 82315.265966: cpu_idle: state=4294967295 cpu_id=4
24338          <idle>-0     (-----) [004] d..1 82315.265968: cpu_idle: state=0 cpu_id=4
24339          <idle>-0     (-----) [003] d.h4 82315.265970: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24340          <idle>-0     (-----) [003] d.h5 82315.265987: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24341          <idle>-0     (-----) [001] .n.1 82315.265995: cpu_idle: state=4294967295 cpu_id=1
24342          <idle>-0     (-----) [004] d.s3 82315.266002: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24343          <idle>-0     (-----) [003] ...1 82315.266005: cpu_idle: state=4294967295 cpu_id=3
24344          <idle>-0     (-----) [004] d.s4 82315.266006: sched_blocked_reason: pid=27541 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
24345          <idle>-0     (-----) [004] dns4 82315.266007: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24346          <idle>-0     (-----) [004] dns4 82315.266009: sched_waking: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
24347          <idle>-0     (-----) [001] d..2 82315.266009: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24348          <idle>-0     (-----) [003] d..1 82315.266011: cpu_idle: state=0 cpu_id=3
24349          <idle>-0     (-----) [004] dns5 82315.266011: sched_wakeup: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
24350          <idle>-0     (-----) [004] .n.1 82315.266014: cpu_idle: state=4294967295 cpu_id=4
24351          <idle>-0     (-----) [004] d..2 82315.266017: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1H next_pid=545 next_prio=100
24352<...>-545 ( 545) [004] d..2 82315.266021: sched_switch: prev_comm=kworker/4:1H prev_pid=545 prev_prio=100 prev_state=S ==> next_comm=main next_pid=27541 next_prio=120
24353<...>-1054 ( 1054) [001] d..2 82315.266037: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24354          <idle>-0     (-----) [001] d..1 82315.266051: cpu_idle: state=0 cpu_id=1
24355          <idle>-0     (-----) [001] ...1 82315.267277: cpu_idle: state=4294967295 cpu_id=1
24356          <idle>-0     (-----) [001] d..1 82315.267283: cpu_idle: state=2 cpu_id=1
24357          <idle>-0     (-----) [000] ...1 82315.268235: cpu_idle: state=4294967295 cpu_id=0
24358          <idle>-0     (-----) [000] d..1 82315.268242: cpu_idle: state=2 cpu_id=0
24359          <idle>-0     (-----) [002] ...1 82315.268261: cpu_idle: state=4294967295 cpu_id=2
24360          <idle>-0     (-----) [002] d..1 82315.268267: cpu_idle: state=2 cpu_id=2
24361          <idle>-0     (-----) [003] d.s2 82315.268467: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24362          <idle>-0     (-----) [003] dns3 82315.268480: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24363          <idle>-0     (-----) [003] .n.1 82315.268499: cpu_idle: state=4294967295 cpu_id=3
24364          <idle>-0     (-----) [003] d..2 82315.268513: 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
24365     rcu_preempt-7     (    7) [003] d..2 82315.268524: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
24366     rcu_preempt-7     (    7) [003] d..3 82315.268550: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
24367     rcu_preempt-7     (    7) [003] d..2 82315.268554: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=007
24368          <idle>-0     (-----) [007] dnh2 82315.268582: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=007
24369          <idle>-0     (-----) [007] .n.1 82315.268584: cpu_idle: state=4294967295 cpu_id=7
24370          <idle>-0     (-----) [007] d..2 82315.268591: 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
24371     rcu_preempt-7     (    7) [003] d..2 82315.268602: 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
24372          <idle>-0     (-----) [003] d..1 82315.268618: cpu_idle: state=0 cpu_id=3
24373          <idle>-0     (-----) [000] .n.1 82315.268672: cpu_idle: state=4294967295 cpu_id=0
24374          <idle>-0     (-----) [000] d..2 82315.268696: 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
24375         rcuop/0-10    (   10) [000] d..2 82315.268716: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24376         rcuop/0-10    (   10) [000] d..3 82315.268736: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24377         rcuop/4-45    (   45) [007] d..2 82315.268738: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
24378          <idle>-0     (-----) [007] d..1 82315.268742: cpu_idle: state=0 cpu_id=7
24379          <idle>-0     (-----) [003] .n.1 82315.268744: cpu_idle: state=4294967295 cpu_id=3
24380          <idle>-0     (-----) [003] d..2 82315.268756: 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
24381         rcuop/0-10    (   10) [000] d..2 82315.268766: 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
24382     rcu_preempt-7     (    7) [003] d..2 82315.268782: 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
24383          <idle>-0     (-----) [000] d..1 82315.268784: cpu_idle: state=0 cpu_id=0
24384          <idle>-0     (-----) [003] d..1 82315.268794: cpu_idle: state=0 cpu_id=3
24385           <...>-27541 (-----) [004] d.H2 82315.271827: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
24386          <idle>-0     (-----) [003] dnh2 82315.271852: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
24387          <idle>-0     (-----) [003] .n.1 82315.271860: cpu_idle: state=4294967295 cpu_id=3
24388          <idle>-0     (-----) [003] d..2 82315.271872: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
24389         sugov:0-576   (  576) [003] .... 82315.271909: clk_set_rate: pwrcl_clk 748800000
24390         sugov:0-576   (  576) [003] .... 82315.271923: clk_set_rate: cpu3_pwrcl_clk 652800000
24391         sugov:0-576   (  576) [003] .... 82315.271934: clk_set_rate: cpu2_pwrcl_clk 652800000
24392         sugov:0-576   (  576) [003] .... 82315.271942: clk_set_rate: cpu1_pwrcl_clk 652800000
24393         sugov:0-576   (  576) [003] .... 82315.271949: clk_set_rate: cpu0_pwrcl_clk 748800000
24394         sugov:0-576   (  576) [003] .... 82315.271959: cpu_frequency: state=748800 cpu_id=0
24395         sugov:0-576   (  576) [003] .... 82315.271985: cpu_frequency: state=748800 cpu_id=1
24396         sugov:0-576   (  576) [003] .... 82315.271990: cpu_frequency: state=748800 cpu_id=2
24397         sugov:0-576   (  576) [003] .... 82315.271994: cpu_frequency: state=748800 cpu_id=3
24398         sugov:0-576   (  576) [003] d..2 82315.272030: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24399          <idle>-0     (-----) [003] d..1 82315.272039: cpu_idle: state=0 cpu_id=3
24400          <idle>-0     (-----) [000] ...1 82315.274791: cpu_idle: state=4294967295 cpu_id=0
24401          <idle>-0     (-----) [000] d..1 82315.274796: cpu_idle: state=2 cpu_id=0
24402           <...>-27541 (-----) [004] d.s2 82315.275114: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24403          <idle>-0     (-----) [003] d.s2 82315.275130: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24404          <idle>-0     (-----) [003] dns3 82315.275144: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24405          <idle>-0     (-----) [003] .n.1 82315.275155: cpu_idle: state=4294967295 cpu_id=3
24406          <idle>-0     (-----) [003] d..2 82315.275163: 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
24407     rcu_preempt-7     (    7) [003] d..2 82315.275171: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
24408          <idle>-0     (-----) [007] dnh2 82315.275201: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=007
24409          <idle>-0     (-----) [007] .n.1 82315.275235: cpu_idle: state=4294967295 cpu_id=7
24410     rcu_preempt-7     (    7) [003] d..2 82315.275236: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=007
24411          <idle>-0     (-----) [007] d..2 82315.275238: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
24412          <idle>-0     (-----) [001] dnh2 82315.275244: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24413          <idle>-0     (-----) [005] dnh2 82315.275264: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=005
24414          <idle>-0     (-----) [005] .n.1 82315.275268: cpu_idle: state=4294967295 cpu_id=5
24415          <idle>-0     (-----) [005] d..2 82315.275275: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
24416         rcuop/0-10    (   10) [007] d..2 82315.275277: 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
24417          <idle>-0     (-----) [007] d..1 82315.275279: cpu_idle: state=0 cpu_id=7
24418     rcu_preempt-7     (    7) [003] d..2 82315.275281: 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
24419         rcuop/4-45    (   45) [005] d..2 82315.275285: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24420          <idle>-0     (-----) [005] d..1 82315.275289: cpu_idle: state=0 cpu_id=5
24421          <idle>-0     (-----) [003] d..1 82315.275295: cpu_idle: state=2 cpu_id=3
24422          <idle>-0     (-----) [001] dns3 82315.275298: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
24423          <idle>-0     (-----) [001] dns4 82315.275312: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
24424          <idle>-0     (-----) [001] .n.1 82315.275326: cpu_idle: state=4294967295 cpu_id=1
24425          <idle>-0     (-----) [001] d..2 82315.275340: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
24426          <idle>-0     (-----) [005] ...1 82315.275364: cpu_idle: state=4294967295 cpu_id=5
24427          <idle>-0     (-----) [005] d..1 82315.275365: cpu_idle: state=2 cpu_id=5
24428          <idle>-0     (-----) [006] ...1 82315.275367: cpu_idle: state=4294967295 cpu_id=6
24429          <idle>-0     (-----) [006] d..1 82315.275368: cpu_idle: state=2 cpu_id=6
24430          <idle>-0     (-----) [007] ...1 82315.275370: cpu_idle: state=4294967295 cpu_id=7
24431          <idle>-0     (-----) [007] d..1 82315.275371: cpu_idle: state=2 cpu_id=7
24432     kworker/1:1-25249 (25249) [001] d..2 82315.275377: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24433<...>-1054 ( 1054) [001] d..2 82315.275596: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24434          <idle>-0     (-----) [001] d.s4 82315.275636: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24435          <idle>-0     (-----) [001] d.s5 82315.275645: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24436          <idle>-0     (-----) [001] dns5 82315.275651: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24437          <idle>-0     (-----) [001] d..2 82315.275663: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24438<...>-1054 ( 1054) [001] .... 82315.275733: clk_set_rate: l3_cluster1_vote_clk 1478400000
24439<...>-1054 ( 1054) [001] .... 82315.275739: clk_set_rate: l3_clk 1478400000
24440<...>-1054 ( 1054) [001] d..2 82315.275816: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24441          <idle>-0     (-----) [001] d.s4 82315.275848: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24442          <idle>-0     (-----) [001] d.s5 82315.275857: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24443          <idle>-0     (-----) [001] dns5 82315.275861: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24444          <idle>-0     (-----) [001] d..2 82315.275874: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24445<...>-1054 ( 1054) [001] d..2 82315.275916: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24446          <idle>-0     (-----) [001] d..1 82315.275933: cpu_idle: state=0 cpu_id=1
24447          <idle>-0     (-----) [001] ...1 82315.281940: cpu_idle: state=4294967295 cpu_id=1
24448          <idle>-0     (-----) [001] d..1 82315.281946: cpu_idle: state=2 cpu_id=1
24449           <...>-27541 (-----) [004] d..2 82315.284172: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=005
24450           <...>-27541 (-----) [004] d..3 82315.284183: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=005
24451          <idle>-0     (-----) [005] .n.1 82315.284361: cpu_idle: state=4294967295 cpu_id=5
24452          <idle>-0     (-----) [005] d..2 82315.284371: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
24453         rcuop/4-45    (   45) [005] d..2 82315.284373: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
24454         rcuop/4-45    (   45) [005] d..3 82315.284386: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
24455         rcuop/4-45    (   45) [005] d..2 82315.284408: 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
24456     rcu_preempt-7     (    7) [005] d..2 82315.284417: 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
24457          <idle>-0     (-----) [005] d..1 82315.284422: cpu_idle: state=2 cpu_id=5
24458           <...>-27541 (-----) [004] d.s2 82315.285118: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24459          <idle>-0     (-----) [001] dnh2 82315.285351: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24460          <idle>-0     (-----) [001] .n.1 82315.285360: cpu_idle: state=4294967295 cpu_id=1
24461          <idle>-0     (-----) [001] d..2 82315.285377: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24462<...>-1054 ( 1054) [001] d..2 82315.285533: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24463          <idle>-0     (-----) [001] d..1 82315.285547: cpu_idle: state=2 cpu_id=1
24464           <...>-27541 (-----) [004] d..3 82315.286086: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24465           <...>-27541 (-----) [004] d..2 82315.286127: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
24466          <idle>-0     (-----) [004] d..1 82315.286136: cpu_idle: state=0 cpu_id=4
24467          <idle>-0     (-----) [001] dnh2 82315.286326: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24468          <idle>-0     (-----) [004] ...1 82315.286328: cpu_idle: state=4294967295 cpu_id=4
24469          <idle>-0     (-----) [004] d..1 82315.286330: cpu_idle: state=2 cpu_id=4
24470          <idle>-0     (-----) [001] .n.1 82315.286335: cpu_idle: state=4294967295 cpu_id=1
24471          <idle>-0     (-----) [001] d..2 82315.286350: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24472<...>-1054 ( 1054) [001] d..2 82315.286408: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24473          <idle>-0     (-----) [001] d..1 82315.286423: cpu_idle: state=0 cpu_id=1
24474          <idle>-0     (-----) [007] ...1 82315.286608: cpu_idle: state=4294967295 cpu_id=7
24475          <idle>-0     (-----) [007] d..1 82315.286612: cpu_idle: state=0 cpu_id=7
24476          <idle>-0     (-----) [004] ...1 82315.286630: cpu_idle: state=4294967295 cpu_id=4
24477          <idle>-0     (-----) [004] d..1 82315.286633: cpu_idle: state=0 cpu_id=4
24478          <idle>-0     (-----) [006] ...1 82315.286662: cpu_idle: state=4294967295 cpu_id=6
24479          <idle>-0     (-----) [006] d..1 82315.286665: cpu_idle: state=0 cpu_id=6
24480          <idle>-0     (-----) [005] ...1 82315.286687: cpu_idle: state=4294967295 cpu_id=5
24481          <idle>-0     (-----) [005] d..1 82315.286690: cpu_idle: state=0 cpu_id=5
24482          <idle>-0     (-----) [004] ...1 82315.286825: cpu_idle: state=4294967295 cpu_id=4
24483          <idle>-0     (-----) [004] d..1 82315.286827: cpu_idle: state=0 cpu_id=4
24484          <idle>-0     (-----) [004] ...1 82315.287234: cpu_idle: state=4294967295 cpu_id=4
24485          <idle>-0     (-----) [004] d..1 82315.287236: cpu_idle: state=0 cpu_id=4
24486          <idle>-0     (-----) [003] d.h4 82315.287236: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24487          <idle>-0     (-----) [003] d.h5 82315.287261: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24488          <idle>-0     (-----) [001] .n.1 82315.287267: cpu_idle: state=4294967295 cpu_id=1
24489          <idle>-0     (-----) [004] d.s3 82315.287276: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24490          <idle>-0     (-----) [001] d..2 82315.287280: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24491          <idle>-0     (-----) [004] d.s4 82315.287280: sched_blocked_reason: pid=27541 iowait=1 caller=__lock_page_or_retry+0x26c/0x2c4
24492          <idle>-0     (-----) [004] dns4 82315.287281: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24493          <idle>-0     (-----) [003] ...1 82315.287284: cpu_idle: state=4294967295 cpu_id=3
24494          <idle>-0     (-----) [004] dns4 82315.287284: sched_waking: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
24495          <idle>-0     (-----) [004] dns5 82315.287289: sched_wakeup: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
24496          <idle>-0     (-----) [004] .n.1 82315.287292: cpu_idle: state=4294967295 cpu_id=4
24497          <idle>-0     (-----) [003] d..1 82315.287293: cpu_idle: state=2 cpu_id=3
24498          <idle>-0     (-----) [004] d..2 82315.287298: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1H next_pid=545 next_prio=100
24499<...>-545 ( 545) [004] d..2 82315.287304: sched_switch: prev_comm=kworker/4:1H prev_pid=545 prev_prio=100 prev_state=S ==> next_comm=main next_pid=27541 next_prio=120
24500<...>-1054 ( 1054) [001] d..2 82315.287305: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24501          <idle>-0     (-----) [001] d..1 82315.287316: cpu_idle: state=0 cpu_id=1
24502          <idle>-0     (-----) [005] d.s2 82315.288477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
24503          <idle>-0     (-----) [005] dns3 82315.288482: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
24504          <idle>-0     (-----) [005] .n.1 82315.288489: cpu_idle: state=4294967295 cpu_id=5
24505          <idle>-0     (-----) [005] d..2 82315.288493: 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
24506     rcu_preempt-7     (    7) [005] d..2 82315.288498: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=005
24507     rcu_preempt-7     (    7) [005] d..3 82315.288502: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=005
24508     rcu_preempt-7     (    7) [005] d..2 82315.288505: 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
24509         rcuop/4-45    (   45) [005] d..2 82315.288515: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24510          <idle>-0     (-----) [005] d..1 82315.288518: cpu_idle: state=0 cpu_id=5
24511           <...>-27541 (-----) [004] d.H2 82315.291826: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
24512          <idle>-0     (-----) [003] dnh2 82315.291973: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
24513          <idle>-0     (-----) [003] .n.1 82315.291983: cpu_idle: state=4294967295 cpu_id=3
24514          <idle>-0     (-----) [003] d..2 82315.291998: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
24515         sugov:0-576   (  576) [003] .... 82315.292035: clk_set_rate: pwrcl_clk 652800000
24516         sugov:0-576   (  576) [003] .... 82315.292053: clk_set_rate: cpu3_pwrcl_clk 748800000
24517         sugov:0-576   (  576) [003] .... 82315.292062: clk_set_rate: cpu2_pwrcl_clk 748800000
24518         sugov:0-576   (  576) [003] .... 82315.292070: clk_set_rate: cpu1_pwrcl_clk 748800000
24519         sugov:0-576   (  576) [003] .... 82315.292077: clk_set_rate: cpu0_pwrcl_clk 652800000
24520         sugov:0-576   (  576) [003] .... 82315.292190: cpu_frequency: state=652800 cpu_id=0
24521         sugov:0-576   (  576) [003] .... 82315.292213: cpu_frequency: state=652800 cpu_id=1
24522         sugov:0-576   (  576) [003] .... 82315.292220: cpu_frequency: state=652800 cpu_id=2
24523         sugov:0-576   (  576) [003] .... 82315.292225: cpu_frequency: state=652800 cpu_id=3
24524         sugov:0-576   (  576) [003] d..2 82315.292270: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24525          <idle>-0     (-----) [003] d..1 82315.292287: cpu_idle: state=2 cpu_id=3
24526          <idle>-0     (-----) [000] d.h2 82315.294289: sched_waking: comm=wpa_supplicant pid=16539 prio=120 target_cpu=000
24527          <idle>-0     (-----) [000] dnh3 82315.294314: sched_wakeup: comm=wpa_supplicant pid=16539 prio=120 target_cpu=000
24528          <idle>-0     (-----) [000] .n.1 82315.294327: cpu_idle: state=4294967295 cpu_id=0
24529          <idle>-0     (-----) [000] d..2 82315.294346: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=wpa_supplicant next_pid=16539 next_prio=120
24530  wpa_supplicant-16539 (16539) [000] d..2 82315.294476: sched_switch: prev_comm=wpa_supplicant prev_pid=16539 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24531          <idle>-0     (-----) [000] d..1 82315.294497: cpu_idle: state=0 cpu_id=0
24532           <...>-27541 (-----) [004] d.s2 82315.295120: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24533           <...>-27541 (-----) [004] d.s2 82315.295131: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
24534           <...>-27541 (-----) [004] dns3 82315.295137: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
24535           <...>-27541 (-----) [004] d..2 82315.295141: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
24536          <idle>-0     (-----) [001] dnH2 82315.295143: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24537     kworker/4:1-25432 (25432) [004] d..2 82315.295152: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=main next_pid=27541 next_prio=120
24538          <idle>-0     (-----) [001] dns3 82315.295153: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
24539          <idle>-0     (-----) [001] dns4 82315.295166: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
24540          <idle>-0     (-----) [001] .n.1 82315.295188: cpu_idle: state=4294967295 cpu_id=1
24541          <idle>-0     (-----) [001] d..2 82315.295202: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
24542          <idle>-0     (-----) [005] ...1 82315.295223: cpu_idle: state=4294967295 cpu_id=5
24543          <idle>-0     (-----) [005] d..1 82315.295225: cpu_idle: state=2 cpu_id=5
24544          <idle>-0     (-----) [006] ...1 82315.295226: cpu_idle: state=4294967295 cpu_id=6
24545          <idle>-0     (-----) [006] d..1 82315.295227: cpu_idle: state=2 cpu_id=6
24546          <idle>-0     (-----) [007] ...1 82315.295228: cpu_idle: state=4294967295 cpu_id=7
24547          <idle>-0     (-----) [007] d..1 82315.295230: cpu_idle: state=2 cpu_id=7
24548     kworker/1:1-25249 (25249) [001] d..2 82315.295237: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24549<...>-1054 ( 1054) [001] d..2 82315.295587: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24550          <idle>-0     (-----) [001] d.s4 82315.295641: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24551          <idle>-0     (-----) [001] d.s5 82315.295655: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24552          <idle>-0     (-----) [001] dns5 82315.295667: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24553          <idle>-0     (-----) [001] d..2 82315.295696: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24554<...>-1054 ( 1054) [001] .... 82315.295790: clk_set_rate: l3_cluster1_vote_clk 1401600000
24555<...>-1054 ( 1054) [001] .... 82315.295798: clk_set_rate: l3_clk 1401600000
24556<...>-1054 ( 1054) [001] d..2 82315.296045: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24557           <...>-27541 (-----) [004] d..2 82315.296063: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=005
24558          <idle>-0     (-----) [001] d..1 82315.296065: cpu_idle: state=0 cpu_id=1
24559           <...>-27541 (-----) [004] d..3 82315.296072: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=005
24560           <...>-27541 (-----) [004] d..2 82315.296206: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
24561          <idle>-0     (-----) [004] d..1 82315.296214: cpu_idle: state=2 cpu_id=4
24562          <idle>-0     (-----) [005] .n.1 82315.296220: cpu_idle: state=4294967295 cpu_id=5
24563          <idle>-0     (-----) [005] d..2 82315.296227: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
24564         rcuop/4-45    (   45) [005] d..2 82315.296229: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
24565         rcuop/4-45    (   45) [005] d..2 82315.296284: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24566          <idle>-0     (-----) [000] dnh2 82315.296286: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
24567          <idle>-0     (-----) [005] d..1 82315.296287: cpu_idle: state=2 cpu_id=5
24568          <idle>-0     (-----) [000] .n.1 82315.296296: cpu_idle: state=4294967295 cpu_id=0
24569          <idle>-0     (-----) [000] d..2 82315.296309: 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
24570          <idle>-0     (-----) [002] .n.1 82315.296329: cpu_idle: state=4294967295 cpu_id=2
24571     rcu_preempt-7     (    7) [000] d..2 82315.296339: 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
24572          <idle>-0     (-----) [000] d..1 82315.296351: cpu_idle: state=0 cpu_id=0
24573          <idle>-0     (-----) [002] d..2 82315.296353: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27542 next_prio=120
24574           <...>-27542 (-----) [002] d..2 82315.296784: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
24575           <...>-27542 (-----) [002] d..3 82315.296820: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
24576          <idle>-0     (-----) [000] .n.1 82315.296826: cpu_idle: state=4294967295 cpu_id=0
24577          <idle>-0     (-----) [000] d..2 82315.296839: 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
24578         rcuop/2-29    (   29) [000] d..2 82315.296863: 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
24579          <idle>-0     (-----) [000] d..1 82315.296874: cpu_idle: state=0 cpu_id=0
24580           <...>-27542 (-----) [002] d..1 82315.297007: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24581           <...>-27542 (-----) [002] d..2 82315.297057: sched_switch: prev_comm=Jit thread pool prev_pid=27542 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24582          <idle>-0     (-----) [002] d..1 82315.297081: cpu_idle: state=0 cpu_id=2
24583          <idle>-0     (-----) [004] dnh2 82315.297707: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24584          <idle>-0     (-----) [004] .n.1 82315.297710: cpu_idle: state=4294967295 cpu_id=4
24585          <idle>-0     (-----) [004] d..2 82315.297715: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24586           <...>-27541 (-----) [004] d..1 82315.297729: sched_waking: comm=Jit thread pool pid=27542 prio=129 target_cpu=002
24587          <idle>-0     (-----) [002] dnh2 82315.297753: sched_wakeup: comm=Jit thread pool pid=27542 prio=129 target_cpu=002
24588          <idle>-0     (-----) [002] .n.1 82315.297762: cpu_idle: state=4294967295 cpu_id=2
24589          <idle>-0     (-----) [002] d..2 82315.297776: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27542 next_prio=129
24590           <...>-27542 (-----) [002] d..2 82315.297806: sched_switch: prev_comm=Jit thread pool prev_pid=27542 prev_prio=129 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24591          <idle>-0     (-----) [002] d..1 82315.297821: cpu_idle: state=0 cpu_id=2
24592           <...>-27541 (-----) [004] d..2 82315.299080: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
24593          <idle>-0     (-----) [004] d..1 82315.299087: cpu_idle: state=2 cpu_id=4
24594          <idle>-0     (-----) [006] .n.1 82315.299317: cpu_idle: state=4294967295 cpu_id=6
24595          <idle>-0     (-----) [006] d..2 82315.299326: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27543 next_prio=120
24596           <...>-27543 (-----) [006] d..2 82315.299390: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
24597          <idle>-0     (-----) [000] dnh2 82315.299422: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
24598          <idle>-0     (-----) [000] .n.1 82315.299428: cpu_idle: state=4294967295 cpu_id=0
24599          <idle>-0     (-----) [000] d..2 82315.299441: 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
24600           <...>-27543 (-----) [006] d..1 82315.299441: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24601           <...>-27543 (-----) [006] d..2 82315.299448: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24602           <...>-27543 (-----) [006] d..2 82315.299462: sched_switch: prev_comm=Signal Catcher prev_pid=27543 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
24603         rcuop/6-61    (   61) [000] d..2 82315.299466: 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
24604          <idle>-0     (-----) [006] d..1 82315.299467: cpu_idle: state=2 cpu_id=6
24605          <idle>-0     (-----) [000] d..1 82315.299474: cpu_idle: state=0 cpu_id=0
24606          <idle>-0     (-----) [004] .n.1 82315.299691: cpu_idle: state=4294967295 cpu_id=4
24607          <idle>-0     (-----) [004] d..2 82315.299697: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24608          <idle>-0     (-----) [007] .n.1 82315.299929: cpu_idle: state=4294967295 cpu_id=7
24609          <idle>-0     (-----) [007] d..2 82315.299938: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27544 next_prio=120
24610          <idle>-0     (-----) [003] .n.1 82315.299981: cpu_idle: state=4294967295 cpu_id=3
24611          <idle>-0     (-----) [003] d..2 82315.300004: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27545 next_prio=120
24612           <...>-27544 (-----) [007] d..2 82315.300017: sched_switch: prev_comm=ReferenceQueueD prev_pid=27544 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
24613          <idle>-0     (-----) [007] d..1 82315.300023: cpu_idle: state=2 cpu_id=7
24614           <...>-27541 (-----) [004] d..2 82315.300024: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24615          <idle>-0     (-----) [004] d..1 82315.300030: cpu_idle: state=2 cpu_id=4
24616           <...>-27545 (-----) [003] d..1 82315.300034: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24617          <idle>-0     (-----) [005] .n.1 82315.300034: cpu_idle: state=4294967295 cpu_id=5
24618          <idle>-0     (-----) [005] d..2 82315.300041: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27546 next_prio=120
24619           <...>-27546 (-----) [005] d..2 82315.300061: sched_switch: prev_comm=main prev_pid=27546 prev_prio=120 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
24620          <idle>-0     (-----) [005] d..1 82315.300065: cpu_idle: state=2 cpu_id=5
24621           <...>-27545 (-----) [003] d..2 82315.300077: sched_switch: prev_comm=main prev_pid=27545 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
24622          <idle>-0     (-----) [006] .n.1 82315.300091: cpu_idle: state=4294967295 cpu_id=6
24623          <idle>-0     (-----) [003] d..1 82315.300095: cpu_idle: state=2 cpu_id=3
24624          <idle>-0     (-----) [006] d..2 82315.300097: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27547 next_prio=120
24625           <...>-27547 (-----) [006] d..2 82315.300107: sched_switch: prev_comm=main prev_pid=27547 prev_prio=120 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
24626          <idle>-0     (-----) [006] d..1 82315.300110: cpu_idle: state=2 cpu_id=6
24627          <idle>-0     (-----) [004] d.h2 82315.300425: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
24628          <idle>-0     (-----) [004] dnh2 82315.300428: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24629          <idle>-0     (-----) [004] .n.1 82315.300430: cpu_idle: state=4294967295 cpu_id=4
24630          <idle>-0     (-----) [004] d..2 82315.300434: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24631           <...>-27541 (-----) [004] d..1 82315.300438: sched_waking: comm=main pid=27545 prio=120 target_cpu=003
24632          <idle>-0     (-----) [000] d.h2 82315.300459: sched_blocked_reason: pid=27545 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24633          <idle>-0     (-----) [000] dnh2 82315.300464: sched_wakeup: comm=main pid=27545 prio=120 target_cpu=000
24634          <idle>-0     (-----) [000] .n.1 82315.300471: cpu_idle: state=4294967295 cpu_id=0
24635          <idle>-0     (-----) [000] d..2 82315.300480: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27545 next_prio=120
24636           <...>-27541 (-----) [004] d..2 82315.300482: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24637          <idle>-0     (-----) [004] d..1 82315.300486: cpu_idle: state=2 cpu_id=4
24638           <...>-27545 (-----) [000] d..1 82315.300496: sched_waking: comm=main pid=27546 prio=120 target_cpu=005
24639           <...>-27545 (-----) [000] d..2 82315.300561: sched_switch: prev_comm=main prev_pid=27545 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
24640          <idle>-0     (-----) [000] d..1 82315.300572: cpu_idle: state=0 cpu_id=0
24641          <idle>-0     (-----) [005] d.h2 82315.300762: sched_blocked_reason: pid=27546 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24642          <idle>-0     (-----) [005] dnh2 82315.300764: sched_wakeup: comm=main pid=27546 prio=120 target_cpu=005
24643          <idle>-0     (-----) [005] .n.1 82315.300767: cpu_idle: state=4294967295 cpu_id=5
24644          <idle>-0     (-----) [005] d..2 82315.300771: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27546 next_prio=120
24645           <...>-27546 (-----) [005] d..1 82315.300778: sched_waking: comm=main pid=27547 prio=120 target_cpu=006
24646           <...>-27546 (-----) [005] d..2 82315.300781: sched_blocked_reason: pid=27547 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24647           <...>-27546 (-----) [005] d..2 82315.300784: sched_wakeup: comm=main pid=27547 prio=120 target_cpu=006
24648           <...>-27546 (-----) [005] d..2 82315.300802: sched_switch: prev_comm=main prev_pid=27546 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24649          <idle>-0     (-----) [005] d..1 82315.300805: cpu_idle: state=2 cpu_id=5
24650          <idle>-0     (-----) [006] .n.1 82315.301025: cpu_idle: state=4294967295 cpu_id=6
24651          <idle>-0     (-----) [006] d..2 82315.301031: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27547 next_prio=120
24652           <...>-27547 (-----) [006] d..1 82315.301036: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24653           <...>-27547 (-----) [006] d..2 82315.301040: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
24654           <...>-27547 (-----) [006] d..2 82315.301043: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24655           <...>-27547 (-----) [006] d..1 82315.301045: sched_waking: comm=main pid=27545 prio=120 target_cpu=000
24656           <...>-27547 (-----) [006] d..2 82315.301058: sched_switch: prev_comm=main prev_pid=27547 prev_prio=120 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
24657          <idle>-0     (-----) [006] d..1 82315.301062: cpu_idle: state=2 cpu_id=6
24658          <idle>-0     (-----) [000] d.h2 82315.301064: sched_blocked_reason: pid=27545 iowait=0 caller=SyS_madvise+0xc84/0xcbc
24659          <idle>-0     (-----) [000] dnh2 82315.301069: sched_wakeup: comm=main pid=27545 prio=120 target_cpu=000
24660          <idle>-0     (-----) [000] .n.1 82315.301076: cpu_idle: state=4294967295 cpu_id=0
24661          <idle>-0     (-----) [000] d..2 82315.301086: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27545 next_prio=120
24662           <...>-27545 (-----) [000] d..2 82315.301129: sched_switch: prev_comm=main prev_pid=27545 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
24663          <idle>-0     (-----) [000] d..1 82315.301138: cpu_idle: state=0 cpu_id=0
24664          <idle>-0     (-----) [004] .n.1 82315.301285: cpu_idle: state=4294967295 cpu_id=4
24665          <idle>-0     (-----) [004] d..2 82315.301291: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24666           <...>-27541 (-----) [004] d..1 82315.301296: sched_waking: comm=main pid=27547 prio=120 target_cpu=006
24667           <...>-27541 (-----) [004] d..2 82315.301299: sched_blocked_reason: pid=27547 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24668           <...>-27541 (-----) [004] d..2 82315.301303: sched_wakeup: comm=main pid=27547 prio=120 target_cpu=006
24669           <...>-27541 (-----) [004] d..2 82315.301311: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24670          <idle>-0     (-----) [004] d..1 82315.301317: cpu_idle: state=0 cpu_id=4
24671          <idle>-0     (-----) [006] .n.1 82315.301455: cpu_idle: state=4294967295 cpu_id=6
24672          <idle>-0     (-----) [006] d..2 82315.301462: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27547 next_prio=120
24673           <...>-27547 (-----) [006] d..1 82315.301468: sched_waking: comm=main pid=27545 prio=120 target_cpu=000
24674           <...>-27547 (-----) [006] d..1 82315.301474: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24675           <...>-27547 (-----) [006] d..2 82315.301477: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
24676           <...>-27547 (-----) [006] d..2 82315.301481: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24677          <idle>-0     (-----) [000] d.h2 82315.301485: sched_blocked_reason: pid=27545 iowait=0 caller=do_page_fault+0x4e0/0x594
24678          <idle>-0     (-----) [004] .n.1 82315.301485: cpu_idle: state=4294967295 cpu_id=4
24679          <idle>-0     (-----) [004] d..2 82315.301489: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24680          <idle>-0     (-----) [000] dnh2 82315.301490: sched_wakeup: comm=main pid=27545 prio=120 target_cpu=000
24681           <...>-27547 (-----) [006] d..2 82315.301490: sched_switch: prev_comm=main prev_pid=27547 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
24682           <...>-27541 (-----) [004] d..2 82315.301494: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24683          <idle>-0     (-----) [006] d..1 82315.301494: cpu_idle: state=0 cpu_id=6
24684          <idle>-0     (-----) [004] d..1 82315.301496: cpu_idle: state=0 cpu_id=4
24685          <idle>-0     (-----) [000] .n.1 82315.301498: cpu_idle: state=4294967295 cpu_id=0
24686          <idle>-0     (-----) [000] d..2 82315.301507: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27545 next_prio=120
24687           <...>-27545 (-----) [000] d..1 82315.301525: sched_waking: comm=main pid=27547 prio=120 target_cpu=006
24688          <idle>-0     (-----) [006] d.h2 82315.301543: sched_blocked_reason: pid=27547 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24689          <idle>-0     (-----) [006] dnh2 82315.301544: sched_wakeup: comm=main pid=27547 prio=120 target_cpu=006
24690          <idle>-0     (-----) [006] .n.1 82315.301546: cpu_idle: state=4294967295 cpu_id=6
24691          <idle>-0     (-----) [006] d..2 82315.301549: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27547 next_prio=120
24692           <...>-27547 (-----) [006] d..1 82315.301550: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24693           <...>-27547 (-----) [006] d..2 82315.301553: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
24694           <...>-27547 (-----) [006] d..2 82315.301556: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24695           <...>-27547 (-----) [006] d..1 82315.301557: sched_waking: comm=main pid=27545 prio=120 target_cpu=000
24696          <idle>-0     (-----) [004] .n.1 82315.301561: cpu_idle: state=4294967295 cpu_id=4
24697           <...>-27545 (-----) [000] d..2 82315.301561: sched_switch: prev_comm=main prev_pid=27545 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
24698          <idle>-0     (-----) [004] d..2 82315.301564: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24699          <idle>-0     (-----) [000] d..1 82315.301572: cpu_idle: state=0 cpu_id=0
24700           <...>-27547 (-----) [006] d..2 82315.301574: sched_switch: prev_comm=main prev_pid=27547 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
24701          <idle>-0     (-----) [006] d..1 82315.301576: cpu_idle: state=0 cpu_id=6
24702          <idle>-0     (-----) [000] d.h2 82315.301584: sched_blocked_reason: pid=27545 iowait=0 caller=do_page_fault+0x4e0/0x594
24703           <...>-27541 (-----) [004] d..2 82315.301587: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24704          <idle>-0     (-----) [000] dnh2 82315.301589: sched_wakeup: comm=main pid=27545 prio=120 target_cpu=000
24705          <idle>-0     (-----) [004] d..1 82315.301590: cpu_idle: state=0 cpu_id=4
24706          <idle>-0     (-----) [000] .n.1 82315.301596: cpu_idle: state=4294967295 cpu_id=0
24707          <idle>-0     (-----) [000] d..2 82315.301605: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27545 next_prio=120
24708           <...>-27545 (-----) [000] d..1 82315.301617: sched_waking: comm=main pid=27547 prio=120 target_cpu=006
24709          <idle>-0     (-----) [006] d.h2 82315.301631: sched_blocked_reason: pid=27547 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24710          <idle>-0     (-----) [006] dnh2 82315.301633: sched_wakeup: comm=main pid=27547 prio=120 target_cpu=006
24711          <idle>-0     (-----) [006] .n.1 82315.301635: cpu_idle: state=4294967295 cpu_id=6
24712          <idle>-0     (-----) [006] d..2 82315.301637: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27547 next_prio=120
24713           <...>-27547 (-----) [006] d..1 82315.301638: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24714           <...>-27547 (-----) [006] d..2 82315.301641: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
24715           <...>-27547 (-----) [006] d..2 82315.301644: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24716           <...>-27547 (-----) [006] d..1 82315.301644: sched_waking: comm=main pid=27545 prio=120 target_cpu=000
24717          <idle>-0     (-----) [004] .n.1 82315.301649: cpu_idle: state=4294967295 cpu_id=4
24718           <...>-27545 (-----) [000] d..2 82315.301650: sched_switch: prev_comm=main prev_pid=27545 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
24719          <idle>-0     (-----) [004] d..2 82315.301651: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24720          <idle>-0     (-----) [000] d..1 82315.301659: cpu_idle: state=0 cpu_id=0
24721           <...>-27547 (-----) [006] d..2 82315.301663: sched_switch: prev_comm=main prev_pid=27547 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
24722          <idle>-0     (-----) [006] d..1 82315.301666: cpu_idle: state=0 cpu_id=6
24723          <idle>-0     (-----) [000] d.h2 82315.301672: sched_blocked_reason: pid=27545 iowait=0 caller=do_page_fault+0x4e0/0x594
24724          <idle>-0     (-----) [000] dnh2 82315.301676: sched_wakeup: comm=main pid=27545 prio=120 target_cpu=000
24725          <idle>-0     (-----) [000] .n.1 82315.301683: cpu_idle: state=4294967295 cpu_id=0
24726          <idle>-0     (-----) [000] d..2 82315.301692: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27545 next_prio=120
24727           <...>-27545 (-----) [000] d..1 82315.301702: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24728           <...>-27541 (-----) [004] d..2 82315.301704: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D|K ==> next_comm=swapper/4 next_pid=0 next_prio=120
24729          <idle>-0     (-----) [004] d..1 82315.301707: cpu_idle: state=2 cpu_id=4
24730           <...>-27545 (-----) [000] d..1 82315.301727: sched_waking: comm=main pid=27546 prio=120 target_cpu=005
24731           <...>-27545 (-----) [000] d..2 82315.301767: sched_switch: prev_comm=main prev_pid=27545 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
24732          <idle>-0     (-----) [000] d.s2 82315.301807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
24733          <idle>-0     (-----) [000] dns3 82315.301825: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
24734          <idle>-0     (-----) [000] d..2 82315.301855: 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
24735     rcu_preempt-7     (    7) [000] d..2 82315.301867: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=005
24736          <idle>-0     (-----) [005] dnh2 82315.301916: sched_wakeup: comm=main pid=27546 prio=120 target_cpu=005
24737          <idle>-0     (-----) [005] .n.1 82315.301919: cpu_idle: state=4294967295 cpu_id=5
24738     rcu_preempt-7     (    7) [000] d..3 82315.301922: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
24739          <idle>-0     (-----) [005] d..2 82315.301924: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27546 next_prio=120
24740          <idle>-0     (-----) [001] .n.1 82315.301933: cpu_idle: state=4294967295 cpu_id=1
24741          <idle>-0     (-----) [004] d.h2 82315.301971: sched_blocked_reason: pid=27541 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24742          <idle>-0     (-----) [004] dnh2 82315.301973: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24743          <idle>-0     (-----) [004] .n.1 82315.301976: cpu_idle: state=4294967295 cpu_id=4
24744           <...>-27546 (-----) [005] d..2 82315.301980: sched_switch: prev_comm=main prev_pid=27546 prev_prio=120 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
24745          <idle>-0     (-----) [004] d..2 82315.301981: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24746          <idle>-0     (-----) [001] d..2 82315.301982: 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
24747          <idle>-0     (-----) [005] d..1 82315.301984: cpu_idle: state=2 cpu_id=5
24748           <...>-27541 (-----) [004] d..1 82315.301992: sched_waking: comm=main pid=27545 prio=120 target_cpu=000
24749     rcu_preempt-7     (    7) [000] d..2 82315.301997: 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
24750           <...>-27541 (-----) [004] d..1 82315.302005: sched_waking: comm=main pid=27546 prio=120 target_cpu=005
24751           <...>-27541 (-----) [004] d..2 82315.302008: sched_blocked_reason: pid=27546 iowait=0 caller=SyS_madvise+0xc84/0xcbc
24752           <...>-27541 (-----) [004] d..2 82315.302011: sched_wakeup: comm=main pid=27546 prio=120 target_cpu=005
24753          <idle>-0     (-----) [000] d..1 82315.302014: cpu_idle: state=0 cpu_id=0
24754         rcuop/4-45    (   45) [001] d..2 82315.302014: 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
24755          <idle>-0     (-----) [000] d.h2 82315.302027: sched_blocked_reason: pid=27545 iowait=0 caller=do_page_fault+0x4e0/0x594
24756          <idle>-0     (-----) [001] d..1 82315.302029: cpu_idle: state=0 cpu_id=1
24757          <idle>-0     (-----) [000] dnh2 82315.302032: sched_wakeup: comm=main pid=27545 prio=120 target_cpu=000
24758          <idle>-0     (-----) [000] .n.1 82315.302039: cpu_idle: state=4294967295 cpu_id=0
24759          <idle>-0     (-----) [000] d..2 82315.302052: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27545 next_prio=120
24760           <...>-27545 (-----) [000] d..2 82315.302173: sched_switch: prev_comm=FinalizerDaemon prev_pid=27545 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24761          <idle>-0     (-----) [000] d..1 82315.302190: cpu_idle: state=0 cpu_id=0
24762          <idle>-0     (-----) [005] .n.1 82315.302195: cpu_idle: state=4294967295 cpu_id=5
24763          <idle>-0     (-----) [005] d..2 82315.302201: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27546 next_prio=120
24764           <...>-27546 (-----) [005] d..1 82315.302224: sched_waking: comm=main pid=27547 prio=120 target_cpu=006
24765           <...>-27546 (-----) [005] d..2 82315.302231: sched_wakeup: comm=main pid=27547 prio=120 target_cpu=006
24766          <idle>-0     (-----) [006] .n.1 82315.302235: cpu_idle: state=4294967295 cpu_id=6
24767          <idle>-0     (-----) [006] d..2 82315.302238: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27547 next_prio=120
24768           <...>-27546 (-----) [005] d..1 82315.302241: sched_waking: comm=main pid=27547 prio=120 target_cpu=006
24769           <...>-27547 (-----) [006] d..2 82315.302244: sched_switch: prev_comm=main prev_pid=27547 prev_prio=120 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
24770          <idle>-0     (-----) [006] d..1 82315.302246: cpu_idle: state=2 cpu_id=6
24771           <...>-27546 (-----) [005] d..2 82315.302247: sched_blocked_reason: pid=27547 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24772           <...>-27546 (-----) [005] d..2 82315.302250: sched_wakeup: comm=main pid=27547 prio=120 target_cpu=006
24773          <idle>-0     (-----) [006] .n.1 82315.302256: cpu_idle: state=4294967295 cpu_id=6
24774           <...>-27546 (-----) [005] d..2 82315.302257: sched_switch: prev_comm=FinalizerWatchd prev_pid=27546 prev_prio=120 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
24775           <...>-27541 (-----) [004] d..2 82315.302258: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24776          <idle>-0     (-----) [006] d..2 82315.302259: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27547 next_prio=120
24777          <idle>-0     (-----) [005] d..1 82315.302261: cpu_idle: state=0 cpu_id=5
24778           <...>-27547 (-----) [006] d..1 82315.302262: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24779          <idle>-0     (-----) [004] d..1 82315.302263: cpu_idle: state=0 cpu_id=4
24780           <...>-27547 (-----) [006] d..2 82315.302265: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
24781           <...>-27547 (-----) [006] d..2 82315.302268: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24782           <...>-27547 (-----) [006] d..1 82315.302268: sched_waking: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=005
24783           <...>-27547 (-----) [006] d..2 82315.302271: sched_blocked_reason: pid=27546 iowait=0 caller=do_page_fault+0x4e0/0x594
24784          <idle>-0     (-----) [004] .n.1 82315.302273: cpu_idle: state=4294967295 cpu_id=4
24785           <...>-27547 (-----) [006] d..2 82315.302274: sched_wakeup: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=005
24786          <idle>-0     (-----) [004] d..2 82315.302276: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24787          <idle>-0     (-----) [005] .n.1 82315.302279: cpu_idle: state=4294967295 cpu_id=5
24788          <idle>-0     (-----) [005] d..2 82315.302282: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=27546 next_prio=120
24789           <...>-27546 (-----) [005] d..2 82315.302304: sched_switch: prev_comm=FinalizerWatchd prev_pid=27546 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24790          <idle>-0     (-----) [005] d..1 82315.302306: cpu_idle: state=2 cpu_id=5
24791           <...>-27547 (-----) [006] d..2 82315.302311: sched_switch: prev_comm=HeapTaskDaemon prev_pid=27547 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
24792          <idle>-0     (-----) [006] d..1 82315.302314: cpu_idle: state=2 cpu_id=6
24793           <...>-27541 (-----) [004] d..2 82315.302550: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
24794          <idle>-0     (-----) [000] dnh2 82315.302578: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
24795          <idle>-0     (-----) [000] .n.1 82315.302585: cpu_idle: state=4294967295 cpu_id=0
24796          <idle>-0     (-----) [000] d..2 82315.302598: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
24797<...>-581 ( 571) [000] d..2 82315.303739: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24798          <idle>-0     (-----) [000] d..1 82315.303757: cpu_idle: state=0 cpu_id=0
24799          <idle>-0     (-----) [002] ...1 82315.303830: cpu_idle: state=4294967295 cpu_id=2
24800          <idle>-0     (-----) [002] d..1 82315.303836: cpu_idle: state=2 cpu_id=2
24801           <...>-27541 (-----) [004] d..2 82315.304865: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=000
24802           <...>-27541 (-----) [004] d..3 82315.304882: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=005
24803          <idle>-0     (-----) [005] .n.1 82315.305026: cpu_idle: state=4294967295 cpu_id=5
24804          <idle>-0     (-----) [005] d..2 82315.305033: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kswapd0 next_pid=142 next_prio=120
24805           <...>-27541 (-----) [004] d.s4 82315.305120: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24806          <idle>-0     (-----) [001] dnh2 82315.305142: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24807          <idle>-0     (-----) [001] .n.1 82315.305150: cpu_idle: state=4294967295 cpu_id=1
24808          <idle>-0     (-----) [001] d..2 82315.305163: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24809<...>-1054 ( 1054) [001] .... 82315.305251: clk_set_rate: l3_cluster1_vote_clk 1209600000
24810<...>-1054 ( 1054) [001] .... 82315.305258: clk_set_rate: l3_clk 1209600000
24811<...>-1054 ( 1054) [001] d..2 82315.305642: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24812          <idle>-0     (-----) [001] d.s4 82315.305708: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24813          <idle>-0     (-----) [001] d.s5 82315.305719: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24814          <idle>-0     (-----) [001] dns5 82315.305725: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24815          <idle>-0     (-----) [001] d..2 82315.305739: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24816<...>-1054 ( 1054) [001] d..2 82315.305800: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24817          <idle>-0     (-----) [001] d..1 82315.305818: cpu_idle: state=0 cpu_id=1
24818<...>-142 ( 142) [005] d..2 82315.307522: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
24819<...>-142 ( 142) [005] dn.3 82315.307530: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
24820<...>-142 ( 142) [005] d..2 82315.307534: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
24821     kworker/5:0-23997 (23997) [005] d..3 82315.307540: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=001
24822     kworker/5:0-23997 (23997) [005] d..2 82315.307556: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
24823          <idle>-0     (-----) [001] dnh2 82315.307574: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=001
24824          <idle>-0     (-----) [001] .n.1 82315.307592: cpu_idle: state=4294967295 cpu_id=1
24825          <idle>-0     (-----) [001] d..2 82315.307610: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
24826           <...>-27541 (-----) [004] d.s2 82315.308456: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24827          <idle>-0     (-----) [000] d.h2 82315.308470: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
24828          <idle>-0     (-----) [000] dnh3 82315.308505: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
24829          <idle>-0     (-----) [000] dnH2 82315.308546: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
24830          <idle>-0     (-----) [000] dns2 82315.308565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
24831          <idle>-0     (-----) [000] dns3 82315.308634: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
24832          <idle>-0     (-----) [000] .n.1 82315.308662: cpu_idle: state=4294967295 cpu_id=0
24833          <idle>-0     (-----) [000] d..2 82315.308692: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
24834          <idle>-0     (-----) [002] .n.1 82315.308828: cpu_idle: state=4294967295 cpu_id=2
24835          <idle>-0     (-----) [002] d..2 82315.308878: 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
24836     rcu_preempt-7     (    7) [002] d..2 82315.309052: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24837<...>-821 ( 821) [001] d..2 82315.309152: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24838          <idle>-0     (-----) [001] d..1 82315.309194: cpu_idle: state=2 cpu_id=1
24839 RxSchedulerPurg-25567 (25538) [000] d..2 82315.309265: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
24840          <idle>-0     (-----) [000] d..1 82315.309305: cpu_idle: state=0 cpu_id=0
24841<...>-1054 ( 1054) [002] d..2 82315.309356: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
24842          <idle>-0     (-----) [002] d..1 82315.309400: cpu_idle: state=0 cpu_id=2
24843          <idle>-0     (-----) [001] d.s3 82315.309555: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
24844          <idle>-0     (-----) [001] d.s4 82315.309579: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24845          <idle>-0     (-----) [001] dns4 82315.309585: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24846          <idle>-0     (-----) [001] .n.1 82315.309595: cpu_idle: state=4294967295 cpu_id=1
24847          <idle>-0     (-----) [001] d..2 82315.309616: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24848<...>-1054 ( 1054) [001] d..2 82315.309815: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24849<...>-142 ( 142) [005] d..2 82315.309822: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
24850<...>-142 ( 142) [005] dn.3 82315.309827: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
24851<...>-142 ( 142) [005] d..2 82315.309831: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
24852     kworker/5:0-23997 (23997) [005] d..3 82315.309833: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=001
24853     kworker/5:0-23997 (23997) [005] d..2 82315.309843: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
24854<...>-142 ( 142) [005] d..2 82315.309850: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
24855          <idle>-0     (-----) [005] d..1 82315.309857: cpu_idle: state=2 cpu_id=5
24856          <idle>-0     (-----) [001] dnH3 82315.309858: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=001
24857          <idle>-0     (-----) [001] dns4 82315.309871: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24858          <idle>-0     (-----) [001] dns5 82315.309889: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24859          <idle>-0     (-----) [001] dns5 82315.309898: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
24860          <idle>-0     (-----) [002] .n.1 82315.309905: cpu_idle: state=4294967295 cpu_id=2
24861          <idle>-0     (-----) [001] d..2 82315.309910: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
24862          <idle>-0     (-----) [002] d..2 82315.309921: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24863<...>-1054 ( 1054) [002] d..2 82315.309956: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
24864          <idle>-0     (-----) [002] d..1 82315.309967: cpu_idle: state=0 cpu_id=2
24865          <idle>-0     (-----) [000] ...1 82315.310426: cpu_idle: state=4294967295 cpu_id=0
24866          <idle>-0     (-----) [000] d..1 82315.310434: cpu_idle: state=2 cpu_id=0
24867<...>-821 ( 821) [001] d..2 82315.310875: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24868          <idle>-0     (-----) [001] d..1 82315.310895: cpu_idle: state=0 cpu_id=1
24869           <...>-27541 (-----) [004] d.H2 82315.311820: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
24870          <idle>-0     (-----) [003] dnh2 82315.311986: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
24871          <idle>-0     (-----) [003] .n.1 82315.311997: cpu_idle: state=4294967295 cpu_id=3
24872          <idle>-0     (-----) [003] d..2 82315.312015: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
24873         sugov:0-576   (  576) [003] .... 82315.312055: clk_set_rate: pwrcl_clk 748800000
24874         sugov:0-576   (  576) [003] .... 82315.312075: clk_set_rate: cpu3_pwrcl_clk 652800000
24875         sugov:0-576   (  576) [003] .... 82315.312084: clk_set_rate: cpu2_pwrcl_clk 652800000
24876         sugov:0-576   (  576) [003] .... 82315.312092: clk_set_rate: cpu1_pwrcl_clk 652800000
24877         sugov:0-576   (  576) [003] .... 82315.312100: clk_set_rate: cpu0_pwrcl_clk 748800000
24878         sugov:0-576   (  576) [003] .... 82315.312109: cpu_frequency: state=748800 cpu_id=0
24879         sugov:0-576   (  576) [003] .... 82315.312138: cpu_frequency: state=748800 cpu_id=1
24880         sugov:0-576   (  576) [003] .... 82315.312143: cpu_frequency: state=748800 cpu_id=2
24881         sugov:0-576   (  576) [003] .... 82315.312147: cpu_frequency: state=748800 cpu_id=3
24882         sugov:0-576   (  576) [003] d..2 82315.312187: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
24883          <idle>-0     (-----) [003] d..1 82315.312203: cpu_idle: state=2 cpu_id=3
24884           <...>-27541 (-----) [004] d.s2 82315.315114: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
24885          <idle>-0     (-----) [002] d.s2 82315.315138: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
24886          <idle>-0     (-----) [001] dnh2 82315.315149: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24887          <idle>-0     (-----) [001] .n.1 82315.315157: cpu_idle: state=4294967295 cpu_id=1
24888          <idle>-0     (-----) [002] dns3 82315.315159: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
24889          <idle>-0     (-----) [001] d..2 82315.315171: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24890          <idle>-0     (-----) [002] .n.1 82315.315180: cpu_idle: state=4294967295 cpu_id=2
24891          <idle>-0     (-----) [002] d..2 82315.315192: 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
24892     rcu_preempt-7     (    7) [002] d..2 82315.315213: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
24893     rcu_preempt-7     (    7) [002] d..3 82315.315254: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
24894     rcu_preempt-7     (    7) [002] d..2 82315.315263: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
24895     rcu_preempt-7     (    7) [002] d..3 82315.315298: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
24896     rcu_preempt-7     (    7) [002] d..2 82315.315315: 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
24897         rcuop/6-61    (   61) [002] d..2 82315.315333: 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
24898         rcuop/2-29    (   29) [002] d..2 82315.315361: 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
24899          <idle>-0     (-----) [002] d..1 82315.315374: cpu_idle: state=2 cpu_id=2
24900<...>-1054 ( 1054) [001] d..2 82315.315458: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24901          <idle>-0     (-----) [001] d.s4 82315.315499: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24902          <idle>-0     (-----) [001] d.s5 82315.315509: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24903          <idle>-0     (-----) [001] dns5 82315.315514: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24904          <idle>-0     (-----) [001] d..2 82315.315526: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24905<...>-1054 ( 1054) [001] .... 82315.315602: clk_set_rate: l3_cluster1_vote_clk 1478400000
24906<...>-1054 ( 1054) [001] .... 82315.315609: clk_set_rate: l3_clk 1478400000
24907<...>-1054 ( 1054) [001] d..2 82315.315698: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
24908          <idle>-0     (-----) [001] d.s4 82315.315731: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24909          <idle>-0     (-----) [001] d.s5 82315.315740: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24910          <idle>-0     (-----) [001] dns5 82315.315746: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24911          <idle>-0     (-----) [001] d..2 82315.315759: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24912<...>-1054 ( 1054) [001] d..2 82315.315805: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24913          <idle>-0     (-----) [001] d..1 82315.315823: cpu_idle: state=0 cpu_id=1
24914          <idle>-0     (-----) [001] ...1 82315.321831: cpu_idle: state=4294967295 cpu_id=1
24915          <idle>-0     (-----) [001] d..1 82315.321837: cpu_idle: state=2 cpu_id=1
24916          <idle>-0     (-----) [002] d.s2 82315.322007: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
24917          <idle>-0     (-----) [002] dns3 82315.322038: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
24918          <idle>-0     (-----) [002] .n.1 82315.322051: cpu_idle: state=4294967295 cpu_id=2
24919          <idle>-0     (-----) [002] d..2 82315.322070: 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
24920     rcu_preempt-7     (    7) [002] d..2 82315.322084: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
24921     rcu_preempt-7     (    7) [002] d..3 82315.322131: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
24922     rcu_preempt-7     (    7) [002] d..2 82315.322145: 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
24923         rcuop/4-45    (   45) [002] d..2 82315.322189: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
24924         rcuop/4-45    (   45) [002] d..3 82315.322204: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
24925         rcuop/4-45    (   45) [002] d..2 82315.322215: 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
24926     rcu_preempt-7     (    7) [002] d..2 82315.322249: 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
24927          <idle>-0     (-----) [002] d..1 82315.322265: cpu_idle: state=2 cpu_id=2
24928           <...>-27541 (-----) [004] d..2 82315.323703: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
24929          <idle>-0     (-----) [000] .n.1 82315.323903: cpu_idle: state=4294967295 cpu_id=0
24930          <idle>-0     (-----) [000] d..2 82315.323927: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27548 next_prio=120
24931          <idle>-0     (-----) [001] dnh2 82315.323942: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
24932           <...>-27541 (-----) [004] d..2 82315.323949: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24933           <...>-27548 (-----) [000] d..1 82315.323952: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24934          <idle>-0     (-----) [001] .n.1 82315.323952: cpu_idle: state=4294967295 cpu_id=1
24935          <idle>-0     (-----) [004] d..1 82315.323960: cpu_idle: state=0 cpu_id=4
24936          <idle>-0     (-----) [001] d..2 82315.323968: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
24937          <idle>-0     (-----) [004] d.h2 82315.323971: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
24938          <idle>-0     (-----) [004] dnh2 82315.323972: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24939          <idle>-0     (-----) [004] .n.1 82315.323975: cpu_idle: state=4294967295 cpu_id=4
24940          <idle>-0     (-----) [004] d..2 82315.323979: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24941           <...>-27541 (-----) [004] d..1 82315.323982: sched_waking: comm=main pid=27548 prio=120 target_cpu=000
24942           <...>-27548 (-----) [000] d..2 82315.323998: sched_switch: prev_comm=main prev_pid=27548 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
24943           <...>-27541 (-----) [004] d..2 82315.324012: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24944          <idle>-0     (-----) [004] d..1 82315.324014: cpu_idle: state=0 cpu_id=4
24945          <idle>-0     (-----) [000] d.h2 82315.324018: sched_blocked_reason: pid=27548 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24946          <idle>-0     (-----) [000] dnh2 82315.324023: sched_wakeup: comm=main pid=27548 prio=120 target_cpu=000
24947          <idle>-0     (-----) [000] d..2 82315.324038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27548 next_prio=120
24948           <...>-27548 (-----) [000] d..1 82315.324049: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24949          <idle>-0     (-----) [004] d.h2 82315.324062: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
24950          <idle>-0     (-----) [004] dnh2 82315.324063: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24951          <idle>-0     (-----) [004] .n.1 82315.324065: cpu_idle: state=4294967295 cpu_id=4
24952          <idle>-0     (-----) [004] d..2 82315.324069: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24953           <...>-27541 (-----) [004] d..1 82315.324070: sched_waking: comm=main pid=27548 prio=120 target_cpu=000
24954           <...>-27548 (-----) [000] d..2 82315.324083: sched_switch: prev_comm=main prev_pid=27548 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
24955           <...>-27541 (-----) [004] d..2 82315.324095: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24956          <idle>-0     (-----) [004] d..1 82315.324097: cpu_idle: state=0 cpu_id=4
24957          <idle>-0     (-----) [000] d..1 82315.324099: cpu_idle: state=2 cpu_id=0
24958<...>-581 ( 571) [001] d..2 82315.324132: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24959          <idle>-0     (-----) [001] d..1 82315.324148: cpu_idle: state=0 cpu_id=1
24960          <idle>-0     (-----) [004] ...1 82315.324288: cpu_idle: state=4294967295 cpu_id=4
24961          <idle>-0     (-----) [004] d..1 82315.324289: cpu_idle: state=2 cpu_id=4
24962          <idle>-0     (-----) [000] d.h2 82315.324314: sched_blocked_reason: pid=27548 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24963          <idle>-0     (-----) [000] dnh2 82315.324320: sched_wakeup: comm=main pid=27548 prio=120 target_cpu=000
24964          <idle>-0     (-----) [000] .n.1 82315.324328: cpu_idle: state=4294967295 cpu_id=0
24965          <idle>-0     (-----) [000] d..2 82315.324341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27548 next_prio=120
24966           <...>-27548 (-----) [000] d..1 82315.324348: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24967           <...>-27548 (-----) [000] d..2 82315.324387: sched_switch: prev_comm=main prev_pid=27548 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
24968          <idle>-0     (-----) [000] d..1 82315.324403: cpu_idle: state=0 cpu_id=0
24969          <idle>-0     (-----) [004] d.h2 82315.325094: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
24970          <idle>-0     (-----) [004] dnh2 82315.325096: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24971          <idle>-0     (-----) [004] .n.1 82315.325099: cpu_idle: state=4294967295 cpu_id=4
24972          <idle>-0     (-----) [004] d..2 82315.325103: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
24973           <...>-27541 (-----) [004] d.s4 82315.325118: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24974           <...>-27541 (-----) [004] d..1 82315.325138: sched_waking: comm=main pid=27548 prio=120 target_cpu=000
24975          <idle>-0     (-----) [000] dnh2 82315.325147: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
24976          <idle>-0     (-----) [000] dnh2 82315.325160: sched_blocked_reason: pid=27548 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
24977          <idle>-0     (-----) [000] dnh2 82315.325166: sched_wakeup: comm=main pid=27548 prio=120 target_cpu=000
24978           <...>-27541 (-----) [004] d..2 82315.325170: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
24979          <idle>-0     (-----) [000] .n.1 82315.325173: cpu_idle: state=4294967295 cpu_id=0
24980          <idle>-0     (-----) [004] d..1 82315.325174: cpu_idle: state=0 cpu_id=4
24981          <idle>-0     (-----) [000] d..2 82315.325185: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24982          <idle>-0     (-----) [004] ...1 82315.325364: cpu_idle: state=4294967295 cpu_id=4
24983          <idle>-0     (-----) [004] d..1 82315.325366: cpu_idle: state=2 cpu_id=4
24984<...>-1054 ( 1054) [000] d..2 82315.325439: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=main next_pid=27548 next_prio=120
24985           <...>-27548 (-----) [000] d..1 82315.325444: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
24986          <idle>-0     (-----) [001] d.s3 82315.325486: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
24987          <idle>-0     (-----) [001] d.s4 82315.325510: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
24988          <idle>-0     (-----) [001] dns4 82315.325516: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
24989          <idle>-0     (-----) [001] .n.1 82315.325524: cpu_idle: state=4294967295 cpu_id=1
24990          <idle>-0     (-----) [001] d..2 82315.325537: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24991           <...>-27548 (-----) [000] d..2 82315.325553: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=007
24992           <...>-27548 (-----) [000] d..3 82315.325628: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
24993<...>-1054 ( 1054) [001] d..2 82315.325649: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
24994         rcuop/0-10    (   10) [001] d..2 82315.325710: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
24995<...>-1054 ( 1054) [001] d..2 82315.325774: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
24996          <idle>-0     (-----) [001] d..1 82315.325787: cpu_idle: state=0 cpu_id=1
24997          <idle>-0     (-----) [004] d.h2 82315.326146: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
24998          <idle>-0     (-----) [004] dnh2 82315.326148: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
24999          <idle>-0     (-----) [004] .n.1 82315.326151: cpu_idle: state=4294967295 cpu_id=4
25000           <...>-27548 (-----) [000] .... 82315.326153: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27548 comm=main
25001          <idle>-0     (-----) [004] d..2 82315.326156: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
25002           <...>-27541 (-----) [004] .... 82315.326288: binder_transaction: transaction=1568261 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
25003           <...>-27541 (-----) [004] .... 82315.326293: binder_transaction_alloc_buf: transaction=1568261 data_size=0 offsets_size=0
25004           <...>-27541 (-----) [004] d..4 82315.326297: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=000
25005           <...>-27541 (-----) [004] d..2 82315.326321: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25006          <idle>-0     (-----) [001] dnh2 82315.326324: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=001
25007          <idle>-0     (-----) [004] d..1 82315.326326: cpu_idle: state=2 cpu_id=4
25008          <idle>-0     (-----) [001] .n.1 82315.326330: cpu_idle: state=4294967295 cpu_id=1
25009          <idle>-0     (-----) [001] d..2 82315.326341: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=608 next_prio=120
25010<...>-608 ( 608) [001] .... 82315.326356: binder_transaction_received: transaction=1568261
25011<...>-608 ( 608) [001] .... 82315.326393: binder_transaction: transaction=1568262 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
25012<...>-608 ( 608) [001] .... 82315.326439: binder_transaction_alloc_buf: transaction=1568262 data_size=0 offsets_size=0
25013<...>-608 ( 608) [001] d..2 82315.326443: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
25014<...>-608 ( 608) [001] d..2 82315.326494: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25015          <idle>-0     (-----) [001] d..1 82315.326508: cpu_idle: state=0 cpu_id=1
25016          <idle>-0     (-----) [001] .n.1 82315.326775: cpu_idle: state=4294967295 cpu_id=1
25017          <idle>-0     (-----) [001] d..2 82315.326787: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27541_1 next_pid=27549 next_prio=120
25018           <...>-27548 (-----) [000] d..2 82315.326808: sched_switch: prev_comm=Binder:27541_1 prev_pid=27548 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25019          <idle>-0     (-----) [000] d..1 82315.326828: cpu_idle: state=0 cpu_id=0
25020           <...>-27549 (-----) [001] .... 82315.326863: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27549 comm=Binder:27541_1
25021          <idle>-0     (-----) [004] dnh2 82315.327130: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
25022          <idle>-0     (-----) [004] .n.1 82315.327134: cpu_idle: state=4294967295 cpu_id=4
25023          <idle>-0     (-----) [004] d..2 82315.327138: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
25024           <...>-27541 (-----) [004] .... 82315.327141: binder_transaction_received: transaction=1568262
25025           <...>-27549 (-----) [001] d..2 82315.327289: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25026           <...>-27541 (-----) [004] .... 82315.327299: binder_transaction: transaction=1568264 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
25027           <...>-27541 (-----) [004] .... 82315.327300: binder_transaction_alloc_buf: transaction=1568264 data_size=88 offsets_size=0
25028           <...>-27541 (-----) [004] d..4 82315.327302: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=001
25029          <idle>-0     (-----) [001] d..1 82315.327308: cpu_idle: state=2 cpu_id=1
25030           <...>-27541 (-----) [004] d..2 82315.327316: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25031          <idle>-0     (-----) [004] d..1 82315.327321: cpu_idle: state=0 cpu_id=4
25032          <idle>-0     (-----) [001] dnh2 82315.327510: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=001
25033          <idle>-0     (-----) [001] .n.1 82315.327519: cpu_idle: state=4294967295 cpu_id=1
25034          <idle>-0     (-----) [001] d..2 82315.327533: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=608 next_prio=120
25035<...>-608 ( 608) [001] .... 82315.327542: binder_transaction_received: transaction=1568264
25036<...>-608 ( 608) [001] .... 82315.327939: binder_transaction: transaction=1568265 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
25037<...>-608 ( 608) [001] .... 82315.327945: binder_transaction_alloc_buf: transaction=1568265 data_size=24 offsets_size=8
25038<...>-608 ( 608) [001] d..2 82315.327986: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
25039          <idle>-0     (-----) [004] dnh2 82315.328005: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
25040          <idle>-0     (-----) [004] .n.1 82315.328007: cpu_idle: state=4294967295 cpu_id=4
25041          <idle>-0     (-----) [004] d..2 82315.328011: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
25042           <...>-27541 (-----) [004] .... 82315.328013: binder_transaction_received: transaction=1568265
25043<...>-608 ( 608) [001] d..2 82315.328039: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25044          <idle>-0     (-----) [001] d..1 82315.328057: cpu_idle: state=0 cpu_id=1
25045           <...>-27541 (-----) [004] .... 82315.328092: binder_transaction: transaction=1568267 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
25046           <...>-27541 (-----) [004] .... 82315.328094: binder_transaction_alloc_buf: transaction=1568267 data_size=84 offsets_size=0
25047           <...>-27541 (-----) [004] d..4 82315.328095: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=001
25048           <...>-27541 (-----) [004] d..2 82315.328107: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25049          <idle>-0     (-----) [004] d..1 82315.328112: cpu_idle: state=0 cpu_id=4
25050          <idle>-0     (-----) [001] dnh2 82315.328116: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=001
25051          <idle>-0     (-----) [001] .n.1 82315.328124: cpu_idle: state=4294967295 cpu_id=1
25052          <idle>-0     (-----) [001] d..2 82315.328136: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=608 next_prio=120
25053<...>-608 ( 608) [001] .... 82315.328142: binder_transaction_received: transaction=1568267
25054<...>-608 ( 608) [001] .... 82315.328268: binder_transaction: transaction=1568268 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
25055<...>-608 ( 608) [001] .... 82315.328273: binder_transaction_alloc_buf: transaction=1568268 data_size=24 offsets_size=8
25056<...>-608 ( 608) [001] d..2 82315.328285: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
25057          <idle>-0     (-----) [004] dnh2 82315.328303: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
25058          <idle>-0     (-----) [004] .n.1 82315.328305: cpu_idle: state=4294967295 cpu_id=4
25059          <idle>-0     (-----) [004] d..2 82315.328309: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
25060           <...>-27541 (-----) [004] .... 82315.328311: binder_transaction_received: transaction=1568268
25061<...>-608 ( 608) [001] d..2 82315.328333: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25062          <idle>-0     (-----) [001] d..1 82315.328348: cpu_idle: state=0 cpu_id=1
25063           <...>-27541 (-----) [004] .... 82315.328472: binder_transaction: transaction=1568270 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
25064           <...>-27541 (-----) [004] .... 82315.328473: binder_transaction_alloc_buf: transaction=1568270 data_size=84 offsets_size=0
25065           <...>-27541 (-----) [004] d..4 82315.328475: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=001
25066           <...>-27541 (-----) [004] d..2 82315.328489: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25067          <idle>-0     (-----) [004] d..1 82315.328493: cpu_idle: state=0 cpu_id=4
25068          <idle>-0     (-----) [001] dnh2 82315.328495: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=001
25069          <idle>-0     (-----) [001] .n.1 82315.328503: cpu_idle: state=4294967295 cpu_id=1
25070          <idle>-0     (-----) [001] d..2 82315.328515: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=608 next_prio=120
25071<...>-608 ( 608) [001] .... 82315.328521: binder_transaction_received: transaction=1568270
25072          <idle>-0     (-----) [002] d.s2 82315.328607: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
25073          <idle>-0     (-----) [002] dns3 82315.328629: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
25074<...>-608 ( 608) [001] .... 82315.328630: binder_transaction: transaction=1568271 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
25075<...>-608 ( 608) [001] .... 82315.328634: binder_transaction_alloc_buf: transaction=1568271 data_size=24 offsets_size=8
25076<...>-608 ( 608) [001] d..2 82315.328646: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
25077          <idle>-0     (-----) [002] .n.1 82315.328649: cpu_idle: state=4294967295 cpu_id=2
25078          <idle>-0     (-----) [004] dnh2 82315.328663: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
25079          <idle>-0     (-----) [002] d..2 82315.328663: 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
25080          <idle>-0     (-----) [004] .n.1 82315.328666: cpu_idle: state=4294967295 cpu_id=4
25081          <idle>-0     (-----) [004] d..2 82315.328669: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
25082           <...>-27541 (-----) [004] .... 82315.328671: binder_transaction_received: transaction=1568271
25083<...>-608 ( 608) [001] d..2 82315.328693: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25084     rcu_preempt-7     (    7) [002] d..2 82315.328694: 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
25085          <idle>-0     (-----) [002] d..1 82315.328708: cpu_idle: state=2 cpu_id=2
25086          <idle>-0     (-----) [001] d..1 82315.328709: cpu_idle: state=0 cpu_id=1
25087           <...>-27541 (-----) [004] .... 82315.329022: binder_transaction: transaction=1568273 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
25088           <...>-27541 (-----) [004] .... 82315.329023: binder_transaction_alloc_buf: transaction=1568273 data_size=84 offsets_size=0
25089           <...>-27541 (-----) [004] d..4 82315.329025: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=001
25090           <...>-27541 (-----) [004] d..2 82315.329038: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25091          <idle>-0     (-----) [004] d..1 82315.329042: cpu_idle: state=2 cpu_id=4
25092          <idle>-0     (-----) [001] dnh2 82315.329045: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=001
25093          <idle>-0     (-----) [001] .n.1 82315.329052: cpu_idle: state=4294967295 cpu_id=1
25094          <idle>-0     (-----) [001] d..2 82315.329064: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=608 next_prio=120
25095<...>-608 ( 608) [001] .... 82315.329069: binder_transaction_received: transaction=1568273
25096<...>-608 ( 608) [001] .... 82315.329166: binder_transaction: transaction=1568274 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
25097<...>-608 ( 608) [001] .... 82315.329170: binder_transaction_alloc_buf: transaction=1568274 data_size=24 offsets_size=8
25098<...>-608 ( 608) [001] d..2 82315.329178: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
25099<...>-608 ( 608) [001] d..2 82315.329224: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25100          <idle>-0     (-----) [001] d..1 82315.329239: cpu_idle: state=0 cpu_id=1
25101          <idle>-0     (-----) [004] dnh2 82315.329870: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
25102          <idle>-0     (-----) [004] .n.1 82315.329873: cpu_idle: state=4294967295 cpu_id=4
25103          <idle>-0     (-----) [004] d..2 82315.329878: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
25104           <...>-27541 (-----) [004] .... 82315.329881: binder_transaction_received: transaction=1568274
25105           <...>-27541 (-----) [004] .... 82315.329932: binder_transaction: transaction=1568275 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
25106           <...>-27541 (-----) [004] .... 82315.329934: binder_transaction_alloc_buf: transaction=1568275 data_size=96 offsets_size=0
25107           <...>-27541 (-----) [004] d..4 82315.329935: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=001
25108           <...>-27541 (-----) [004] d..2 82315.329949: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25109          <idle>-0     (-----) [004] d..1 82315.329953: cpu_idle: state=2 cpu_id=4
25110          <idle>-0     (-----) [001] dnh2 82315.329956: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=001
25111          <idle>-0     (-----) [001] .n.1 82315.329962: cpu_idle: state=4294967295 cpu_id=1
25112          <idle>-0     (-----) [001] d..2 82315.329974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=608 next_prio=120
25113<...>-608 ( 608) [001] .... 82315.329980: binder_transaction_received: transaction=1568275
25114<...>-608 ( 608) [001] .... 82315.330075: binder_transaction: transaction=1568276 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
25115<...>-608 ( 608) [001] .... 82315.330079: binder_transaction_alloc_buf: transaction=1568276 data_size=24 offsets_size=8
25116<...>-608 ( 608) [001] d..2 82315.330092: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
25117<...>-608 ( 608) [001] d..2 82315.330138: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25118          <idle>-0     (-----) [001] d..1 82315.330151: cpu_idle: state=0 cpu_id=1
25119          <idle>-0     (-----) [004] dnh2 82315.330784: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
25120          <idle>-0     (-----) [004] .n.1 82315.330787: cpu_idle: state=4294967295 cpu_id=4
25121          <idle>-0     (-----) [004] d..2 82315.330791: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
25122           <...>-27541 (-----) [004] .... 82315.330794: binder_transaction_received: transaction=1568276
25123           <...>-27541 (-----) [004] .... 82315.330873: binder_transaction: transaction=1568278 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
25124           <...>-27541 (-----) [004] .... 82315.330875: binder_transaction_alloc_buf: transaction=1568278 data_size=84 offsets_size=0
25125           <...>-27541 (-----) [004] d..4 82315.330877: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=001
25126           <...>-27541 (-----) [004] d..2 82315.330891: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25127          <idle>-0     (-----) [004] d..1 82315.330895: cpu_idle: state=2 cpu_id=4
25128          <idle>-0     (-----) [001] dnh2 82315.330898: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=001
25129          <idle>-0     (-----) [001] .n.1 82315.330905: cpu_idle: state=4294967295 cpu_id=1
25130          <idle>-0     (-----) [001] d..2 82315.330916: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=608 next_prio=120
25131<...>-608 ( 608) [001] .... 82315.330922: binder_transaction_received: transaction=1568278
25132<...>-608 ( 608) [001] .... 82315.331017: binder_transaction: transaction=1568279 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
25133<...>-608 ( 608) [001] .... 82315.331022: binder_transaction_alloc_buf: transaction=1568279 data_size=24 offsets_size=8
25134<...>-608 ( 608) [001] d..2 82315.331029: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
25135<...>-608 ( 608) [001] d..2 82315.331075: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25136          <idle>-0     (-----) [001] d..1 82315.331089: cpu_idle: state=0 cpu_id=1
25137          <idle>-0     (-----) [004] dnh2 82315.331720: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
25138          <idle>-0     (-----) [004] .n.1 82315.331724: cpu_idle: state=4294967295 cpu_id=4
25139          <idle>-0     (-----) [004] d..2 82315.331729: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
25140           <...>-27541 (-----) [004] .... 82315.331731: binder_transaction_received: transaction=1568279
25141           <...>-27541 (-----) [004] d.H2 82315.331822: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
25142           <...>-27541 (-----) [004] d.H3 82315.331835: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
25143          <idle>-0     (-----) [007] .n.1 82315.331988: cpu_idle: state=4294967295 cpu_id=7
25144          <idle>-0     (-----) [007] d..2 82315.331996: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
25145         sugov:4-577   (  577) [007] .... 82315.332017: clk_set_rate: perfcl_clk 2400000000
25146         sugov:4-577   (  577) [007] .... 82315.332019: clk_set_rate: cpu7_perfcl_clk 2803200000
25147         sugov:4-577   (  577) [007] .... 82315.332024: clk_set_rate: cpu6_perfcl_clk 2803200000
25148         sugov:4-577   (  577) [007] .... 82315.332028: clk_set_rate: cpu5_perfcl_clk 2803200000
25149         sugov:4-577   (  577) [007] .... 82315.332032: clk_set_rate: cpu4_perfcl_clk 2400000000
25150         sugov:4-577   (  577) [007] .... 82315.332037: cpu_frequency: state=2400000 cpu_id=4
25151           <...>-27541 (-----) [004] .... 82315.332054: binder_transaction: transaction=1568280 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1f
25152           <...>-27541 (-----) [004] .... 82315.332056: binder_transaction_alloc_buf: transaction=1568280 data_size=484 offsets_size=16
25153         sugov:4-577   (  577) [007] d..2 82315.332143: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
25154          <idle>-0     (-----) [007] d..1 82315.332148: cpu_idle: state=2 cpu_id=7
25155          <idle>-0     (-----) [001] d.s3 82315.332191: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
25156          <idle>-0     (-----) [001] ...1 82315.332212: cpu_idle: state=4294967295 cpu_id=1
25157          <idle>-0     (-----) [001] d..1 82315.332217: cpu_idle: state=0 cpu_id=1
25158           <...>-27541 (-----) [004] d..4 82315.332275: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=001
25159           <...>-27541 (-----) [004] d..5 82315.332293: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
25160           <...>-27541 (-----) [004] d..2 82315.332318: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25161          <idle>-0     (-----) [004] d..1 82315.332323: cpu_idle: state=0 cpu_id=4
25162          <idle>-0     (-----) [007] dnh2 82315.332379: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
25163          <idle>-0     (-----) [007] .n.1 82315.332383: cpu_idle: state=4294967295 cpu_id=7
25164          <idle>-0     (-----) [007] d..2 82315.332388: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
25165         sugov:4-577   (  577) [007] .... 82315.332394: cpu_frequency: state=2400000 cpu_id=5
25166         sugov:4-577   (  577) [007] .... 82315.332397: cpu_frequency: state=2400000 cpu_id=6
25167         sugov:4-577   (  577) [007] .... 82315.332398: cpu_frequency: state=2400000 cpu_id=7
25168         sugov:4-577   (  577) [007] d..2 82315.332407: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25169          <idle>-0     (-----) [007] d..1 82315.332411: cpu_idle: state=2 cpu_id=7
25170          <idle>-0     (-----) [006] .n.1 82315.332441: cpu_idle: state=4294967295 cpu_id=6
25171          <idle>-0     (-----) [006] d..2 82315.332452: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
25172<...>-25493 ( 8943) [006] .... 82315.332461: binder_transaction_received: transaction=1568280
25173          <idle>-0     (-----) [000] ...1 82315.332836: cpu_idle: state=4294967295 cpu_id=0
25174          <idle>-0     (-----) [000] d..1 82315.332841: cpu_idle: state=2 cpu_id=0
25175<...>-25493 ( 8943) [006] d..2 82315.332928: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
25176          <idle>-0     (-----) [001] dnh2 82315.332950: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
25177          <idle>-0     (-----) [001] .n.1 82315.332956: cpu_idle: state=4294967295 cpu_id=1
25178          <idle>-0     (-----) [001] d..2 82315.332968: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
25179<...>-25493 ( 8943) [006] d..3 82315.333257: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=003
25180<...>-581 ( 571) [001] d..2 82315.333270: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25181<...>-25493 ( 8943) [006] d..3 82315.333279: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=001
25182          <idle>-0     (-----) [001] d..1 82315.333285: cpu_idle: state=0 cpu_id=1
25183          <idle>-0     (-----) [001] dnh2 82315.333302: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=001
25184          <idle>-0     (-----) [001] .n.1 82315.333309: cpu_idle: state=4294967295 cpu_id=1
25185          <idle>-0     (-----) [001] d..2 82315.333321: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=8960 next_prio=120
25186          <idle>-0     (-----) [004] ...1 82315.333331: cpu_idle: state=4294967295 cpu_id=4
25187          <idle>-0     (-----) [004] d..1 82315.333332: cpu_idle: state=2 cpu_id=4
25188<...>-25493 ( 8943) [006] d..2 82315.333351: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
25189          <idle>-0     (-----) [000] dnh2 82315.333392: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
25190          <idle>-0     (-----) [000] dnh2 82315.333399: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
25191<...>-25493 ( 8943) [006] d..2 82315.333399: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=002
25192          <idle>-0     (-----) [000] .n.1 82315.333406: cpu_idle: state=4294967295 cpu_id=0
25193          <idle>-0     (-----) [000] d..2 82315.333421: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
25194<...>-8960 ( 8943) [001] d.h1 82315.333429: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
25195<...>-8961 ( 8943) [000] d..2 82315.333499: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
25196<...>-8960 ( 8943) [001] d..2 82315.333526: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
25197<...>-25493 ( 8943) [006] d..3 82315.333565: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
25198<...>-25493 ( 8943) [006] d..4 82315.333579: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
25199<...>-581 ( 571) [000] d..2 82315.333601: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25200          <idle>-0     (-----) [000] d..1 82315.333619: cpu_idle: state=0 cpu_id=0
25201          <idle>-0     (-----) [007] .n.1 82315.333716: cpu_idle: state=4294967295 cpu_id=7
25202          <idle>-0     (-----) [007] d..2 82315.333724: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
25203<...>-25493 ( 8943) [006] d..3 82315.333756: sched_waking: comm=ActivityManager pid=8963 prio=118 target_cpu=006
25204<...>-8962 ( 8943) [007] d..2 82315.333760: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25205          <idle>-0     (-----) [007] d..1 82315.333766: cpu_idle: state=2 cpu_id=7
25206<...>-25493 ( 8943) [006] d..1 82315.333795: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
25207          <idle>-0     (-----) [000] dnh2 82315.333798: sched_wakeup: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25208   statsd.writer-1044  (  901) [001] d..2 82315.333800: 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
25209          <idle>-0     (-----) [000] .n.1 82315.333807: cpu_idle: state=4294967295 cpu_id=0
25210          <idle>-0     (-----) [001] d..1 82315.333816: cpu_idle: state=0 cpu_id=1
25211          <idle>-0     (-----) [000] d..2 82315.333819: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8963 next_prio=118
25212          <idle>-0     (-----) [001] dnh2 82315.333832: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=001
25213          <idle>-0     (-----) [001] .n.1 82315.333839: cpu_idle: state=4294967295 cpu_id=1
25214          <idle>-0     (-----) [001] d..2 82315.333851: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
25215<...>-8963 ( 8943) [000] d..1 82315.333870: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=001
25216<...>-25493 ( 8943) [006] .... 82315.333879: binder_transaction: transaction=1568285 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
25217<...>-25493 ( 8943) [006] .... 82315.333881: binder_transaction_alloc_buf: transaction=1568285 data_size=8 offsets_size=0
25218<...>-25493 ( 8943) [006] d..2 82315.333882: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
25219<...>-8961 ( 8943) [001] d..2 82315.333886: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25220<...>-25493 ( 8943) [006] d..3 82315.333890: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=006
25221          <idle>-0     (-----) [001] d..1 82315.333898: cpu_idle: state=0 cpu_id=1
25222<...>-25493 ( 8943) [006] d..2 82315.333904: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=main next_pid=27541 next_prio=120
25223           <...>-27541 (-----) [006] .... 82315.333909: binder_transaction_received: transaction=1568285
25224           <...>-27541 (-----) [006] .... 82315.333991: binder_transaction: transaction=1568286 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
25225           <...>-27541 (-----) [006] .... 82315.333993: binder_transaction_alloc_buf: transaction=1568286 data_size=0 offsets_size=0
25226           <...>-27541 (-----) [006] d..4 82315.333994: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
25227           <...>-27541 (-----) [006] dn.5 82315.333998: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
25228           <...>-27541 (-----) [006] d..2 82315.334002: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
25229<...>-25493 ( 8943) [006] .... 82315.334005: binder_transaction_received: transaction=1568286
25230<...>-25493 ( 8943) [006] .... 82315.334014: binder_transaction: transaction=1568287 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
25231<...>-25493 ( 8943) [006] .... 82315.334015: binder_transaction_alloc_buf: transaction=1568287 data_size=4 offsets_size=0
25232<...>-25493 ( 8943) [006] d..2 82315.334023: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=main next_pid=27541 next_prio=120
25233           <...>-27541 (-----) [006] .... 82315.334027: binder_transaction_received: transaction=1568287
25234<...>-8963 ( 8943) [000] d..1 82315.334030: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
25235           <...>-27541 (-----) [006] d..2 82315.334050: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25236          <idle>-0     (-----) [007] dnh2 82315.334055: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
25237          <idle>-0     (-----) [007] dnh2 82315.334057: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=007
25238          <idle>-0     (-----) [006] d..1 82315.334057: cpu_idle: state=2 cpu_id=6
25239          <idle>-0     (-----) [007] .n.1 82315.334059: cpu_idle: state=4294967295 cpu_id=7
25240          <idle>-0     (-----) [007] d..2 82315.334064: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
25241<...>-8961 ( 8943) [007] d..2 82315.334152: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=116 prev_state=R+ ==> next_comm=android.ui next_pid=8962 next_prio=118
25242<...>-8962 ( 8943) [007] d..2 82315.334159: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=116
25243<...>-8963 ( 8943) [000] d..2 82315.334355: sched_waking: comm=main pid=8859 prio=120 target_cpu=002
25244<...>-8963 ( 8943) [000] d..3 82315.334380: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25245<...>-8961 ( 8943) [007] d..1 82315.334473: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
25246<...>-8961 ( 8943) [007] d..2 82315.334485: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
25247<...>-8961 ( 8943) [007] d..2 82315.334506: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25248<...>-8963 ( 8943) [000] d..2 82315.334507: sched_switch: prev_comm=ActivityManager prev_pid=8963 prev_prio=118 prev_state=S ==> next_comm=main next_pid=8859 next_prio=120
25249          <idle>-0     (-----) [007] d..1 82315.334511: cpu_idle: state=2 cpu_id=7
25250          <idle>-0     (-----) [006] .n.1 82315.334662: cpu_idle: state=4294967295 cpu_id=6
25251          <idle>-0     (-----) [006] d..2 82315.334669: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
25252<...>-8962 ( 8943) [006] .... 82315.334749: binder_transaction: transaction=1568288 dest_node=399486 dest_proc=884 dest_thread=0 reply=0 flags=0x11 code=0x3
25253<...>-8962 ( 8943) [006] .... 82315.334751: binder_transaction_alloc_buf: transaction=1568288 data_size=68 offsets_size=0
25254<...>-8962 ( 8943) [006] d..4 82315.334754: sched_waking: comm=cameraserver pid=884 prio=120 target_cpu=001
25255<...>-8962 ( 8943) [006] d..5 82315.334770: sched_wakeup: comm=cameraserver pid=884 prio=120 target_cpu=004
25256<...>-8962 ( 8943) [006] d.h2 82315.334792: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
25257<...>-8962 ( 8943) [006] d.h3 82315.334798: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
25258<...>-8962 ( 8943) [006] d..3 82315.334818: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=001
25259          <idle>-0     (-----) [001] dnh2 82315.334838: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=001
25260          <idle>-0     (-----) [001] .n.1 82315.334844: cpu_idle: state=4294967295 cpu_id=1
25261          <idle>-0     (-----) [001] d..2 82315.334855: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=8967 next_prio=120
25262<...>-8962 ( 8943) [006] .... 82315.334861: binder_transaction: transaction=1568289 dest_node=402011 dest_proc=9083 dest_thread=0 reply=0 flags=0x11 code=0x4
25263<...>-8962 ( 8943) [006] .... 82315.334863: binder_transaction_alloc_buf: transaction=1568289 data_size=76 offsets_size=0
25264<...>-8962 ( 8943) [006] d..4 82315.334865: sched_waking: comm=Binder:9083_3 pid=9130 prio=120 target_cpu=002
25265<...>-8967 ( 8943) [001] d.h1 82315.334891: sched_wakeup: comm=Binder:9083_3 pid=9130 prio=120 target_cpu=001
25266<...>-8962 ( 8943) [006] .... 82315.334899: binder_transaction: transaction=1568290 dest_node=412802 dest_proc=9083 dest_thread=0 reply=0 flags=0x11 code=0x4
25267<...>-8962 ( 8943) [006] .... 82315.334900: binder_transaction_alloc_buf: transaction=1568290 data_size=76 offsets_size=0
25268<...>-8962 ( 8943) [006] d..4 82315.334902: sched_waking: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=000
25269          <idle>-0     (-----) [004] .n.1 82315.334907: cpu_idle: state=4294967295 cpu_id=4
25270          <idle>-0     (-----) [004] d..2 82315.334914: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cameraserver next_pid=884 next_prio=120
25271<...>-884 ( 884) [004] .... 82315.334920: binder_transaction_received: transaction=1568288
25272<...>-8967 ( 8943) [001] d.h1 82315.334926: sched_wakeup: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=001
25273<...>-8962 ( 8943) [006] d..3 82315.334931: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=007
25274          <idle>-0     (-----) [007] .n.1 82315.334935: cpu_idle: state=4294967295 cpu_id=7
25275          <idle>-0     (-----) [007] d..2 82315.334943: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
25276         sugov:4-577   (  577) [007] .... 82315.334960: clk_set_rate: perfcl_clk 2553600000
25277         sugov:4-577   (  577) [007] .... 82315.334961: clk_set_rate: cpu7_perfcl_clk 2400000000
25278         sugov:4-577   (  577) [007] .... 82315.334966: clk_set_rate: cpu6_perfcl_clk 2400000000
25279         sugov:4-577   (  577) [007] .... 82315.334970: clk_set_rate: cpu5_perfcl_clk 2400000000
25280<...>-8962 ( 8943) [006] d..3 82315.334971: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=001
25281         sugov:4-577   (  577) [007] .... 82315.334974: clk_set_rate: cpu4_perfcl_clk 2553600000
25282         sugov:4-577   (  577) [007] .... 82315.334979: cpu_frequency: state=2553600 cpu_id=4
25283<...>-8967 ( 8943) [001] d..2 82315.334981: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=S ==> next_comm=Binder:9083_3 next_pid=9130 next_prio=120
25284            main-8859  ( 8859) [000] d..1 82315.334983: sched_waking: comm=HeapTaskDaemon pid=25650 prio=124 target_cpu=002
25285<...>-884 ( 884) [004] d..2 82315.334984: sched_switch: prev_comm=cameraserver prev_pid=884 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25286          <idle>-0     (-----) [004] d..1 82315.334988: cpu_idle: state=0 cpu_id=4
25287<...>-9130 ( 9083) [001] d.h3 82315.335005: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=001
25288<...>-9130 ( 9083) [001] .... 82315.335005: binder_transaction_received: transaction=1568289
25289            main-8859  ( 8859) [000] d..2 82315.335014: sched_wakeup: comm=HeapTaskDaemon pid=25650 prio=124 target_cpu=002
25290<...>-8962 ( 8943) [006] d..3 82315.335022: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
25291<...>-8962 ( 8943) [006] d..2 82315.335068: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25292         sugov:4-577   (  577) [007] d..2 82315.335070: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
25293          <idle>-0     (-----) [006] d..1 82315.335073: cpu_idle: state=2 cpu_id=6
25294          <idle>-0     (-----) [007] d..1 82315.335074: cpu_idle: state=0 cpu_id=7
25295          <idle>-0     (-----) [002] dnh2 82315.335074: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=002
25296            main-8859  ( 8859) [000] d..2 82315.335078: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25297          <idle>-0     (-----) [002] .n.1 82315.335084: cpu_idle: state=4294967295 cpu_id=2
25298          <idle>-0     (-----) [000] d..1 82315.335095: cpu_idle: state=0 cpu_id=0
25299          <idle>-0     (-----) [002] d..2 82315.335100: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=25650 next_prio=124
25300<...>-9130 ( 9083) [001] d.s2 82315.335153: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
25301          <idle>-0     (-----) [003] dnh2 82315.335168: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=003
25302<...>-9130 ( 9083) [001] d.s1 82315.335169: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
25303           <...>-25650 (-----) [002] d.s3 82315.335170: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
25304          <idle>-0     (-----) [007] dnh2 82315.335172: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
25305          <idle>-0     (-----) [007] .n.1 82315.335175: cpu_idle: state=4294967295 cpu_id=7
25306          <idle>-0     (-----) [003] .n.1 82315.335178: cpu_idle: state=4294967295 cpu_id=3
25307          <idle>-0     (-----) [007] d..2 82315.335178: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
25308         sugov:4-577   (  577) [007] .... 82315.335181: cpu_frequency: state=2553600 cpu_id=5
25309         sugov:4-577   (  577) [007] .... 82315.335183: cpu_frequency: state=2553600 cpu_id=6
25310         sugov:4-577   (  577) [007] .... 82315.335184: cpu_frequency: state=2553600 cpu_id=7
25311<...>-9130 ( 9083) [001] d.s2 82315.335184: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
25312         sugov:4-577   (  577) [007] d..2 82315.335190: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25313          <idle>-0     (-----) [007] d..1 82315.335193: cpu_idle: state=0 cpu_id=7
25314          <idle>-0     (-----) [003] d..2 82315.335196: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
25315           <...>-25650 (-----) [002] d.s4 82315.335217: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
25316           <...>-25650 (-----) [002] d..1 82315.335304: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25317           <...>-25650 (-----) [002] d..2 82315.335320: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25318          <idle>-0     (-----) [000] .n.1 82315.335328: cpu_idle: state=4294967295 cpu_id=0
25319          <idle>-0     (-----) [000] d..2 82315.335343: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25320            main-8859  ( 8859) [000] d..1 82315.335363: sched_waking: comm=ReferenceQueueD pid=25647 prio=124 target_cpu=000
25321           <...>-25650 (-----) [002] d..2 82315.335395: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
25322            main-8859  ( 8859) [000] d..2 82315.335403: sched_wakeup: comm=ReferenceQueueD pid=25647 prio=124 target_cpu=003
25323<...>-9130 ( 9083) [001] d..2 82315.335421: sched_switch: prev_comm=Binder:9083_3 prev_pid=9130 prev_prio=120 prev_state=S ==> next_comm=Binder:9083_6 next_pid=9638 next_prio=120
25324   system_server-8943  ( 8943) [003] d..2 82315.335424: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=ReferenceQueueD next_pid=25647 next_prio=124
25325<...>-9638 ( 9083) [001] .... 82315.335430: binder_transaction_received: transaction=1568290
25326           <...>-25650 (-----) [002] d..3 82315.335440: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
25327            main-8859  ( 8859) [000] d..2 82315.335460: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
25328     rcu_preempt-7     (    7) [000] d..2 82315.335473: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
25329     rcu_preempt-7     (    7) [000] d..3 82315.335508: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
25330     rcu_preempt-7     (    7) [000] d..2 82315.335525: 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
25331         rcuop/4-45    (   45) [000] d..2 82315.335531: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
25332<...>-9638 ( 9083) [001] d..3 82315.335538: sched_waking: comm=droid.bluetooth pid=9083 prio=120 target_cpu=002
25333           <...>-25650 (-----) [002] d..1 82315.335550: sched_waking: comm=ReferenceQueueD pid=25647 prio=124 target_cpu=003
25334           <...>-25647 (-----) [003] d..2 82315.335568: sched_switch: prev_comm=ReferenceQueueD prev_pid=25647 prev_prio=124 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
25335         rcuop/4-45    (   45) [000] d..3 82315.335580: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
25336          <idle>-0     (-----) [003] d..2 82315.335598: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
25337<...>-9638 ( 9083) [001] d..4 82315.335610: sched_wakeup: comm=droid.bluetooth pid=9083 prio=120 target_cpu=003
25338           <...>-25650 (-----) [002] d..2 82315.335616: sched_blocked_reason: pid=25647 iowait=0 caller=do_page_fault+0x4e0/0x594
25339         rcuop/4-45    (   45) [000] d..2 82315.335616: 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
25340           <...>-25650 (-----) [002] d..2 82315.335622: sched_wakeup: comm=ReferenceQueueD pid=25647 prio=124 target_cpu=003
25341          <idle>-0     (-----) [000] d..1 82315.335631: cpu_idle: state=0 cpu_id=0
25342           <...>-25650 (-----) [002] d..2 82315.335657: sched_switch: prev_comm=HeapTaskDaemon prev_pid=25650 prev_prio=124 prev_state=D|K ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
25343<...>-9638 ( 9083) [001] d..2 82315.335684: sched_switch: prev_comm=Binder:9083_6 prev_pid=9638 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
25344     ksoftirqd/1-18    (   18) [001] d.s2 82315.335698: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25345     ksoftirqd/1-18    (   18) [001] d.s3 82315.335739: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
25346     ksoftirqd/1-18    (   18) [001] d..2 82315.335763: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
25347         rcuop/2-29    (   29) [001] d..2 82315.335778: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=8960 next_prio=120
25348<...>-9047 ( 8943) [002] d..2 82315.335800: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25349<...>-1054 ( 1054) [002] .... 82315.335894: clk_set_rate: l3_cluster0_vote_clk 403200000
25350<...>-8960 ( 8943) [001] d..2 82315.335977: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25351          <idle>-0     (-----) [001] d.h3 82315.335991: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
25352          <idle>-0     (-----) [004] ...1 82315.335997: cpu_idle: state=4294967295 cpu_id=4
25353          <idle>-0     (-----) [004] d..1 82315.335998: cpu_idle: state=2 cpu_id=4
25354          <idle>-0     (-----) [001] dnh4 82315.336008: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
25355          <idle>-0     (-----) [001] d..2 82315.336020: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
25356         rcuop/5-53    (   53) [003] d..2 82315.336042: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=droid.bluetooth next_pid=9083 next_prio=120
25357<...>-1054 ( 1054) [002] d..2 82315.336075: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
25358 [email protected]  (  776) [001] d.s1 82315.336090: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
25359          <idle>-0     (-----) [002] d..1 82315.336093: cpu_idle: state=2 cpu_id=2
25360 [email protected]  (  776) [001] d.s2 82315.336103: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
25361<...>-9083 ( 9083) [003] d..2 82315.336129: sched_switch: prev_comm=droid.bluetooth prev_pid=9083 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=25647 next_prio=124
25362 [email protected]  (  776) [001] d..2 82315.336130: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
25363     ksoftirqd/1-18    (   18) [001] d.s2 82315.336141: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
25364           <...>-25647 (-----) [003] d..1 82315.336147: sched_waking: comm=HeapTaskDaemon pid=25650 prio=124 target_cpu=002
25365     ksoftirqd/1-18    (   18) [001] d.s3 82315.336155: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
25366     ksoftirqd/1-18    (   18) [001] d.s3 82315.336163: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
25367           <...>-25647 (-----) [003] d..2 82315.336169: sched_blocked_reason: pid=25650 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25368           <...>-25647 (-----) [003] d..2 82315.336175: sched_wakeup: comm=HeapTaskDaemon pid=25650 prio=124 target_cpu=002
25369          <idle>-0     (-----) [007] ...1 82315.336200: cpu_idle: state=4294967295 cpu_id=7
25370          <idle>-0     (-----) [007] d..1 82315.336201: cpu_idle: state=2 cpu_id=7
25371           <...>-25647 (-----) [003] d..2 82315.336207: sched_switch: prev_comm=ReferenceQueueD prev_pid=25647 prev_prio=124 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
25372     ksoftirqd/1-18    (   18) [001] d..2 82315.336213: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25373          <idle>-0     (-----) [003] d..1 82315.336221: cpu_idle: state=0 cpu_id=3
25374          <idle>-0     (-----) [002] .n.1 82315.336278: cpu_idle: state=4294967295 cpu_id=2
25375          <idle>-0     (-----) [002] d..2 82315.336296: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=25650 next_prio=124
25376           <...>-25650 (-----) [002] d..1 82315.336318: sched_waking: comm=ReferenceQueueD pid=25647 prio=124 target_cpu=003
25377           <...>-25650 (-----) [002] d..2 82315.336330: sched_blocked_reason: pid=25647 iowait=0 caller=do_page_fault+0x4e0/0x594
25378           <...>-25650 (-----) [002] d..2 82315.336339: sched_wakeup: comm=ReferenceQueueD pid=25647 prio=124 target_cpu=003
25379          <idle>-0     (-----) [003] .n.1 82315.336346: cpu_idle: state=4294967295 cpu_id=3
25380          <idle>-0     (-----) [003] d..2 82315.336358: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=25647 next_prio=124
25381           <...>-25647 (-----) [003] d..1 82315.336367: sched_waking: comm=HeapTaskDaemon pid=25650 prio=124 target_cpu=002
25382           <...>-25650 (-----) [002] d..2 82315.336371: sched_switch: prev_comm=HeapTaskDaemon prev_pid=25650 prev_prio=124 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
25383           <...>-25647 (-----) [003] d..2 82315.336382: sched_blocked_reason: pid=25650 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25384<...>-1054 ( 1054) [001] d..2 82315.336384: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25385           <...>-25647 (-----) [003] d..2 82315.336390: sched_wakeup: comm=HeapTaskDaemon pid=25650 prio=124 target_cpu=002
25386          <idle>-0     (-----) [002] d..2 82315.336402: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=25650 next_prio=124
25387           <...>-25647 (-----) [003] d..2 82315.336416: sched_switch: prev_comm=ReferenceQueueD prev_pid=25647 prev_prio=124 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
25388          <idle>-0     (-----) [001] d.s4 82315.336426: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25389          <idle>-0     (-----) [003] d..1 82315.336429: cpu_idle: state=0 cpu_id=3
25390           <...>-25650 (-----) [002] d..1 82315.336433: sched_waking: comm=ReferenceQueueD pid=25647 prio=124 target_cpu=003
25391          <idle>-0     (-----) [001] d.s5 82315.336435: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
25392          <idle>-0     (-----) [001] dns5 82315.336439: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25393           <...>-25650 (-----) [002] d..2 82315.336443: sched_blocked_reason: pid=25647 iowait=0 caller=do_page_fault+0x4e0/0x594
25394           <...>-25650 (-----) [002] d..2 82315.336451: sched_wakeup: comm=ReferenceQueueD pid=25647 prio=124 target_cpu=003
25395          <idle>-0     (-----) [001] d..2 82315.336452: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25396          <idle>-0     (-----) [003] .n.1 82315.336457: cpu_idle: state=4294967295 cpu_id=3
25397          <idle>-0     (-----) [003] d..2 82315.336467: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=25647 next_prio=124
25398<...>-1054 ( 1054) [001] .... 82315.336484: clk_set_rate: l3_cluster1_vote_clk 576000000
25399<...>-1054 ( 1054) [001] .... 82315.336489: clk_set_rate: l3_clk 576000000
25400           <...>-25647 (-----) [003] d.h3 82315.336497: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
25401           <...>-25647 (-----) [003] dnh4 82315.336514: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
25402           <...>-25647 (-----) [003] d..2 82315.336530: sched_switch: prev_comm=ReferenceQueueD prev_pid=25647 prev_prio=124 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
25403           <...>-25650 (-----) [002] d..2 82315.336608: sched_switch: prev_comm=HeapTaskDaemon prev_pid=25650 prev_prio=124 prev_state=x ==> next_comm=swapper/2 next_pid=0 next_prio=120
25404          <idle>-0     (-----) [002] d..1 82315.336631: cpu_idle: state=0 cpu_id=2
25405 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.336698: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=ReferenceQueueD next_pid=25647 next_prio=124
25406<...>-1054 ( 1054) [001] d.s2 82315.336716: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
25407<...>-1054 ( 1054) [001] d.s3 82315.336733: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
25408           <...>-25647 (-----) [003] d..2 82315.336746: sched_switch: prev_comm=ReferenceQueueD prev_pid=25647 prev_prio=124 prev_state=R+ ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
25409 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.336777: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=ReferenceQueueD next_pid=25647 next_prio=124
25410<...>-1054 ( 1054) [001] d..2 82315.336845: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25411          <idle>-0     (-----) [001] d..1 82315.336865: cpu_idle: state=0 cpu_id=1
25412           <...>-25647 (-----) [003] d..1 82315.337002: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25413           <...>-25647 (-----) [003] d..2 82315.337025: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25414          <idle>-0     (-----) [000] .n.1 82315.337031: cpu_idle: state=4294967295 cpu_id=0
25415          <idle>-0     (-----) [000] d..2 82315.337045: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25416            main-8859  ( 8859) [000] d..1 82315.337069: sched_waking: comm=FinalizerDaemon pid=25648 prio=124 target_cpu=002
25417            main-8859  ( 8859) [000] d..2 82315.337115: sched_wakeup: comm=FinalizerDaemon pid=25648 prio=124 target_cpu=001
25418          <idle>-0     (-----) [001] .n.1 82315.337123: cpu_idle: state=4294967295 cpu_id=1
25419            main-8859  ( 8859) [000] d..1 82315.337125: sched_waking: comm=ReferenceQueueD pid=25647 prio=124 target_cpu=003
25420          <idle>-0     (-----) [001] d..2 82315.337138: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=25648 next_prio=124
25421           <...>-25647 (-----) [003] d..2 82315.337146: sched_switch: prev_comm=ReferenceQueueD prev_pid=25647 prev_prio=124 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25422            main-8859  ( 8859) [000] d..2 82315.337162: sched_wakeup: comm=ReferenceQueueD pid=25647 prio=124 target_cpu=003
25423          <idle>-0     (-----) [003] d..2 82315.337177: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=25647 next_prio=124
25424            main-8859  ( 8859) [000] d..2 82315.337202: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25425          <idle>-0     (-----) [000] d..1 82315.337216: cpu_idle: state=0 cpu_id=0
25426           <...>-25647 (-----) [003] d.h2 82315.337241: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25427           <...>-25647 (-----) [003] d.h3 82315.337265: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25428           <...>-25648 (-----) [001] d..1 82315.337438: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25429           <...>-25648 (-----) [001] d..2 82315.337462: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25430          <idle>-0     (-----) [000] .n.1 82315.337468: cpu_idle: state=4294967295 cpu_id=0
25431          <idle>-0     (-----) [000] d..2 82315.337481: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25432            main-8859  ( 8859) [000] d..1 82315.337517: sched_waking: comm=FinalizerWatchd pid=25649 prio=124 target_cpu=002
25433           <...>-25647 (-----) [003] d..2 82315.337520: sched_switch: prev_comm=ReferenceQueueD prev_pid=25647 prev_prio=124 prev_state=x ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25434<...>-1054 ( 1054) [003] d..1 82315.337555: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
25435            main-8859  ( 8859) [000] d..2 82315.337562: sched_wakeup: comm=FinalizerWatchd pid=25649 prio=124 target_cpu=003
25436            main-8859  ( 8859) [000] d..1 82315.337571: sched_waking: comm=FinalizerDaemon pid=25648 prio=124 target_cpu=001
25437           <...>-25648 (-----) [001] d..2 82315.337573: sched_switch: prev_comm=FinalizerDaemon prev_pid=25648 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25438<...>-1054 ( 1054) [003] d..1 82315.337573: clk_disable: gcc_ufs_phy_phy_aux_clk
25439<...>-1054 ( 1054) [003] d..1 82315.337585: clk_disable: gcc_ufs_phy_phy_aux_clk_src
25440            main-8859  ( 8859) [000] d..2 82315.337590: sched_wakeup: comm=FinalizerDaemon pid=25648 prio=124 target_cpu=001
25441<...>-1054 ( 1054) [003] d..1 82315.337598: clk_disable: gcc_ufs_mem_clkref_clk
25442          <idle>-0     (-----) [001] d..2 82315.337605: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=25648 next_prio=124
25443<...>-1054 ( 1054) [003] d..1 82315.337615: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
25444<...>-1054 ( 1054) [003] d..1 82315.337620: clk_disable: gcc_ufs_phy_axi_clk
25445<...>-1054 ( 1054) [003] d..1 82315.337631: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
25446            main-8859  ( 8859) [000] d..2 82315.337633: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25447<...>-1054 ( 1054) [003] d..1 82315.337637: clk_disable: gcc_aggre_ufs_phy_axi_clk
25448<...>-1054 ( 1054) [003] d..1 82315.337645: clk_disable: gcc_ufs_phy_axi_clk_src
25449          <idle>-0     (-----) [000] d..1 82315.337648: cpu_idle: state=0 cpu_id=0
25450<...>-1054 ( 1054) [003] d..1 82315.337653: clk_disable: gcc_ufs_phy_ahb_clk
25451<...>-1054 ( 1054) [003] d..1 82315.337662: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
25452<...>-1054 ( 1054) [003] d..1 82315.337668: clk_disable: gcc_ufs_phy_unipro_core_clk
25453<...>-1054 ( 1054) [003] d..1 82315.337676: clk_disable: gcc_ufs_phy_unipro_core_clk_src
25454<...>-1054 ( 1054) [003] d..1 82315.337685: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
25455<...>-1054 ( 1054) [003] d..1 82315.337690: clk_disable: gcc_ufs_phy_ice_core_clk
25456<...>-1054 ( 1054) [003] d..1 82315.337698: clk_disable: gcc_ufs_phy_ice_core_clk_src
25457           <...>-25648 (-----) [001] d..2 82315.337907: sched_switch: prev_comm=FinalizerDaemon prev_pid=25648 prev_prio=124 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
25458          <idle>-0     (-----) [001] d..1 82315.337932: cpu_idle: state=0 cpu_id=1
25459<...>-1054 ( 1054) [003] d..2 82315.338036: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=FinalizerWatchd next_pid=25649 next_prio=124
25460          <idle>-0     (-----) [001] d.s3 82315.338091: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
25461          <idle>-0     (-----) [001] d.s4 82315.338117: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
25462          <idle>-0     (-----) [001] dns4 82315.338123: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25463          <idle>-0     (-----) [001] .n.1 82315.338133: cpu_idle: state=4294967295 cpu_id=1
25464          <idle>-0     (-----) [001] d..2 82315.338147: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25465<...>-1054 ( 1054) [001] d..2 82315.338188: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25466          <idle>-0     (-----) [001] d..1 82315.338203: cpu_idle: state=0 cpu_id=1
25467           <...>-25649 (-----) [003] d..1 82315.338270: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25468           <...>-25649 (-----) [003] d..2 82315.338294: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25469          <idle>-0     (-----) [000] .n.1 82315.338299: cpu_idle: state=4294967295 cpu_id=0
25470          <idle>-0     (-----) [000] d..2 82315.338314: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25471           <...>-25649 (-----) [003] d..1 82315.338332: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25472            main-8859  ( 8859) [000] d..2 82315.338350: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25473          <idle>-0     (-----) [000] d..1 82315.338362: cpu_idle: state=0 cpu_id=0
25474           <...>-25649 (-----) [003] d..2 82315.338362: sched_blocked_reason: pid=8859 iowait=0 caller=do_page_fault+0x4e0/0x594
25475           <...>-25649 (-----) [003] d..2 82315.338371: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25476          <idle>-0     (-----) [000] .n.1 82315.338377: cpu_idle: state=4294967295 cpu_id=0
25477          <idle>-0     (-----) [000] d..2 82315.338389: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25478           <...>-25649 (-----) [003] d..2 82315.338608: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=002
25479           <...>-25649 (-----) [003] d..3 82315.338660: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=000
25480           <...>-25649 (-----) [003] d..1 82315.338671: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25481            main-8859  ( 8859) [000] d..2 82315.338684: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D ==> next_comm=rcuos/2 next_pid=30 next_prio=120
25482<...>-30 ( 30) [000] d..2 82315.338696: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
25483           <...>-25649 (-----) [003] d..2 82315.338704: sched_blocked_reason: pid=8859 iowait=0 caller=do_page_fault+0x4e0/0x594
25484           <...>-25649 (-----) [003] d..2 82315.338710: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25485<...>-30 ( 30) [000] d..3 82315.338746: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
25486<...>-30 ( 30) [000] d..2 82315.338760: 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
25487<...>-8 ( 8) [000] d..2 82315.338778: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=main next_pid=8859 next_prio=120
25488           <...>-25649 (-----) [003] d..2 82315.338809: sched_switch: prev_comm=FinalizerWatchd prev_pid=25649 prev_prio=124 prev_state=x ==> next_comm=swapper/3 next_pid=0 next_prio=120
25489          <idle>-0     (-----) [003] d..1 82315.338834: cpu_idle: state=2 cpu_id=3
25490          <idle>-0     (-----) [001] ...1 82315.339476: cpu_idle: state=4294967295 cpu_id=1
25491          <idle>-0     (-----) [001] d..1 82315.339482: cpu_idle: state=2 cpu_id=1
25492            main-8859  ( 8859) [000] d.s2 82315.341814: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
25493            main-8859  ( 8859) [000] d.s3 82315.341847: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
25494          <idle>-0     (-----) [002] .n.1 82315.341855: cpu_idle: state=4294967295 cpu_id=2
25495          <idle>-0     (-----) [002] d..2 82315.341873: 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
25496     rcu_preempt-7     (    7) [002] d..2 82315.341914: 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
25497          <idle>-0     (-----) [002] d..1 82315.341927: cpu_idle: state=0 cpu_id=2
25498            main-8859  ( 8859) [000] d.h1 82315.344550: sched_waking: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25499            main-8859  ( 8859) [000] d.h2 82315.344584: sched_wakeup: comm=ActivityManager pid=8963 prio=118 target_cpu=001
25500          <idle>-0     (-----) [001] .n.1 82315.344737: cpu_idle: state=4294967295 cpu_id=1
25501          <idle>-0     (-----) [001] d..2 82315.344763: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8963 next_prio=118
25502<...>-8963 ( 8943) [001] d..2 82315.344928: sched_switch: prev_comm=ActivityManager prev_pid=8963 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25503          <idle>-0     (-----) [001] d..1 82315.344949: cpu_idle: state=0 cpu_id=1
25504            main-8859  ( 8859) [000] d.s1 82315.345146: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
25505            main-8859  ( 8859) [000] dns2 82315.345169: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
25506            main-8859  ( 8859) [000] dns2 82315.345176: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25507            main-8859  ( 8859) [000] dns3 82315.345215: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
25508            main-8859  ( 8859) [000] d..2 82315.345232: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=R+ ==> next_comm=rcu_sched next_pid=8 next_prio=120
25509<...>-8 ( 8) [000] d..2 82315.345248: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=000
25510<...>-8 ( 8) [000] d..3 82315.345263: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=000
25511<...>-8 ( 8) [000] d..2 82315.345277: 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
25512<...>-30 ( 30) [000] d..2 82315.345283: sched_waking: comm=rcuos/3 pid=38 prio=120 target_cpu=002
25513<...>-30 ( 30) [000] d..3 82315.345329: sched_wakeup: comm=rcuos/3 pid=38 prio=120 target_cpu=001
25514          <idle>-0     (-----) [001] .n.1 82315.345335: cpu_idle: state=4294967295 cpu_id=1
25515<...>-30 ( 30) [000] d..2 82315.345341: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25516          <idle>-0     (-----) [001] d..2 82315.345352: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/3 next_pid=38 next_prio=120
25517<...>-1054 ( 1054) [000] .... 82315.345373: clk_set_rate: l3_cluster1_vote_clk 300000000
25518<...>-1054 ( 1054) [000] .... 82315.345378: clk_set_rate: l3_clk 403200000
25519<...>-38 ( 38) [001] d..2 82315.345389: sched_switch: prev_comm=rcuos/3 prev_pid=38 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25520          <idle>-0     (-----) [001] d..1 82315.345404: cpu_idle: state=0 cpu_id=1
25521<...>-1054 ( 1054) [000] d..2 82315.345613: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=main next_pid=8859 next_prio=120
25522          <idle>-0     (-----) [001] d.s3 82315.345660: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
25523          <idle>-0     (-----) [001] d.s4 82315.345688: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
25524          <idle>-0     (-----) [001] dns4 82315.345695: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25525          <idle>-0     (-----) [001] .n.1 82315.345703: cpu_idle: state=4294967295 cpu_id=1
25526          <idle>-0     (-----) [001] d..2 82315.345717: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25527<...>-1054 ( 1054) [001] .... 82315.345801: clk_set_rate: l3_cluster0_vote_clk 480000000
25528<...>-1054 ( 1054) [001] .... 82315.345807: clk_set_rate: l3_clk 480000000
25529<...>-1054 ( 1054) [001] d..2 82315.345856: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25530          <idle>-0     (-----) [001] d..1 82315.345871: cpu_idle: state=0 cpu_id=1
25531          <idle>-0     (-----) [002] d.s2 82315.348476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
25532          <idle>-0     (-----) [002] dns3 82315.348495: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
25533          <idle>-0     (-----) [002] .n.1 82315.348519: cpu_idle: state=4294967295 cpu_id=2
25534          <idle>-0     (-----) [002] d..2 82315.348533: 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
25535     rcu_preempt-7     (    7) [002] d..2 82315.348542: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
25536     rcu_preempt-7     (    7) [002] d..3 82315.348586: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
25537     rcu_preempt-7     (    7) [002] d..2 82315.348604: 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
25538         rcuop/0-10    (   10) [002] d..2 82315.348644: 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
25539          <idle>-0     (-----) [002] d..1 82315.348659: cpu_idle: state=0 cpu_id=2
25540            main-8859  ( 8859) [000] d.s2 82315.351818: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
25541            main-8859  ( 8859) [000] dns3 82315.351838: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
25542            main-8859  ( 8859) [000] d..2 82315.351914: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
25543     kworker/0:1-25262 (25262) [000] d..2 82315.351928: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
25544     kworker/0:1-25262 (25262) [000] d..3 82315.351952: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
25545          <idle>-0     (-----) [001] dnH3 82315.351960: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
25546     kworker/0:1-25262 (25262) [000] d..2 82315.351960: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
25547     kworker/0:1-25262 (25262) [000] d..3 82315.351977: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
25548     kworker/0:1-25262 (25262) [000] d..2 82315.351983: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
25549          <idle>-0     (-----) [002] .n.1 82315.351984: cpu_idle: state=4294967295 cpu_id=2
25550          <idle>-0     (-----) [001] dnH4 82315.351986: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
25551          <idle>-0     (-----) [002] d..2 82315.352000: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
25552     kworker/0:1-25262 (25262) [000] d..3 82315.352000: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
25553     kworker/0:1-25262 (25262) [000] d..2 82315.352005: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
25554     kworker/0:1-25262 (25262) [000] d..2 82315.352020: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
25555          <idle>-0     (-----) [001] .n.1 82315.352029: cpu_idle: state=4294967295 cpu_id=1
25556     kworker/0:1-25262 (25262) [000] d..2 82315.352033: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
25557          <idle>-0     (-----) [001] d..2 82315.352046: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
25558     kworker/0:1-25262 (25262) [000] d..2 82315.352046: sched_waking: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
25559     kworker/2:1-25259 (25259) [002] d..2 82315.352049: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25560          <idle>-0     (-----) [002] d..1 82315.352058: cpu_idle: state=0 cpu_id=2
25561     kworker/0:1-25262 (25262) [000] d..2 82315.352084: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=main next_pid=8859 next_prio=120
25562     kworker/1:1-25249 (25249) [001] d..2 82315.352090: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25563          <idle>-0     (-----) [001] d..1 82315.352107: cpu_idle: state=2 cpu_id=1
25564          <idle>-0     (-----) [003] .n.1 82315.352143: cpu_idle: state=4294967295 cpu_id=3
25565          <idle>-0     (-----) [003] d..2 82315.352163: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
25566         sugov:0-576   (  576) [003] .... 82315.352201: clk_set_rate: pwrcl_clk 1324800000
25567         sugov:0-576   (  576) [003] .... 82315.352213: clk_set_rate: cpu3_pwrcl_clk 748800000
25568         sugov:0-576   (  576) [003] .... 82315.352223: clk_set_rate: cpu2_pwrcl_clk 748800000
25569         sugov:0-576   (  576) [003] .... 82315.352231: clk_set_rate: cpu1_pwrcl_clk 748800000
25570         sugov:0-576   (  576) [003] .... 82315.352239: clk_set_rate: cpu0_pwrcl_clk 1324800000
25571         sugov:0-576   (  576) [003] .... 82315.352249: cpu_frequency: state=1324800 cpu_id=0
25572         sugov:0-576   (  576) [003] .... 82315.352271: cpu_frequency: state=1324800 cpu_id=1
25573         sugov:0-576   (  576) [003] .... 82315.352276: cpu_frequency: state=1324800 cpu_id=2
25574         sugov:0-576   (  576) [003] .... 82315.352283: cpu_frequency: state=1324800 cpu_id=3
25575         sugov:0-576   (  576) [003] d..2 82315.352307: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
25576     kworker/3:1-25210 (25210) [003] d..2 82315.352338: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25577          <idle>-0     (-----) [003] d..1 82315.352350: cpu_idle: state=2 cpu_id=3
25578          <idle>-0     (-----) [002] .n.1 82315.352467: cpu_idle: state=4294967295 cpu_id=2
25579          <idle>-0     (-----) [002] d..2 82315.352477: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27550 next_prio=120
25580          <idle>-0     (-----) [006] dnh2 82315.352738: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
25581          <idle>-0     (-----) [006] .n.1 82315.352745: cpu_idle: state=4294967295 cpu_id=6
25582          <idle>-0     (-----) [006] d..2 82315.352754: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
25583<...>-560 ( 560) [006] d..2 82315.352771: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
25584          <idle>-0     (-----) [004] dnh2 82315.352773: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
25585          <idle>-0     (-----) [006] d..1 82315.352776: cpu_idle: state=2 cpu_id=6
25586          <idle>-0     (-----) [004] .n.1 82315.352779: cpu_idle: state=4294967295 cpu_id=4
25587          <idle>-0     (-----) [004] d..2 82315.352789: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
25588          <idle>-0     (-----) [007] dnh2 82315.352795: sched_wakeup: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
25589          <idle>-0     (-----) [007] .n.1 82315.352800: cpu_idle: state=4294967295 cpu_id=7
25590          <idle>-0     (-----) [007] d..2 82315.352808: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/7:3 next_pid=442 next_prio=120
25591     kworker/4:1-25432 (25432) [004] d..2 82315.352810: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
25592          <idle>-0     (-----) [004] d..1 82315.352817: cpu_idle: state=0 cpu_id=4
25593     kworker/7:3-442   (  442) [007] d..2 82315.352826: sched_switch: prev_comm=kworker/7:3 prev_pid=442 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25594          <idle>-0     (-----) [007] d..1 82315.352832: cpu_idle: state=2 cpu_id=7
25595          <idle>-0     (-----) [005] dnh2 82315.352832: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
25596          <idle>-0     (-----) [005] .n.1 82315.352838: cpu_idle: state=4294967295 cpu_id=5
25597          <idle>-0     (-----) [005] d..2 82315.352848: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
25598     kworker/5:0-23997 (23997) [005] d..2 82315.352865: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
25599          <idle>-0     (-----) [005] d..1 82315.352871: cpu_idle: state=2 cpu_id=5
25600          <idle>-0     (-----) [001] .n.1 82315.353590: cpu_idle: state=4294967295 cpu_id=1
25601          <idle>-0     (-----) [001] d..2 82315.353608: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27552 next_prio=120
25602<...>-27552 ( 8859) [001] d..1 82315.353635: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25603            main-8859  ( 8859) [000] d..2 82315.353636: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D ==> next_comm=main next_pid=27551 next_prio=120
25604<...>-27552 ( 8859) [001] d..2 82315.353657: sched_blocked_reason: pid=8859 iowait=0 caller=do_page_fault+0x4e0/0x594
25605<...>-27552 ( 8859) [001] d..2 82315.353666: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25606<...>-27551 ( 8859) [000] d..2 82315.353673: sched_switch: prev_comm=main prev_pid=27551 prev_prio=120 prev_state=D|K ==> next_comm=main next_pid=8859 next_prio=120
25607            main-8859  ( 8859) [000] d..1 82315.353691: sched_waking: comm=main pid=27551 prio=120 target_cpu=000
25608<...>-27552 ( 8859) [001] d..2 82315.353696: sched_switch: prev_comm=main prev_pid=27552 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
25609          <idle>-0     (-----) [001] d..1 82315.353710: cpu_idle: state=0 cpu_id=1
25610            main-8859  ( 8859) [000] d..2 82315.353711: sched_blocked_reason: pid=27551 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25611            main-8859  ( 8859) [000] d..2 82315.353719: sched_wakeup: comm=main pid=27551 prio=120 target_cpu=001
25612          <idle>-0     (-----) [001] .n.1 82315.353725: cpu_idle: state=4294967295 cpu_id=1
25613          <idle>-0     (-----) [001] d..2 82315.353735: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27551 next_prio=120
25614<...>-27551 ( 8859) [001] d..1 82315.353746: sched_waking: comm=main pid=27552 prio=120 target_cpu=001
25615<...>-27551 ( 8859) [001] d..2 82315.353773: sched_blocked_reason: pid=27552 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25616<...>-27551 ( 8859) [001] d..2 82315.353780: sched_wakeup: comm=main pid=27552 prio=120 target_cpu=003
25617            main-8859  ( 8859) [000] d..2 82315.353813: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25618          <idle>-0     (-----) [004] ...1 82315.353825: cpu_idle: state=4294967295 cpu_id=4
25619          <idle>-0     (-----) [004] d..1 82315.353827: cpu_idle: state=2 cpu_id=4
25620          <idle>-0     (-----) [000] d..1 82315.353835: cpu_idle: state=0 cpu_id=0
25621<...>-27551 ( 8859) [001] d..2 82315.353835: sched_switch: prev_comm=main prev_pid=27551 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25622          <idle>-0     (-----) [001] d..1 82315.353847: cpu_idle: state=0 cpu_id=1
25623          <idle>-0     (-----) [003] .n.1 82315.353901: cpu_idle: state=4294967295 cpu_id=3
25624          <idle>-0     (-----) [003] d..2 82315.353919: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27552 next_prio=120
25625<...>-27552 ( 8859) [003] d..1 82315.353934: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25626<...>-27552 ( 8859) [003] d..2 82315.353945: sched_blocked_reason: pid=8859 iowait=0 caller=do_page_fault+0x4e0/0x594
25627<...>-27552 ( 8859) [003] d..2 82315.353952: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25628<...>-27552 ( 8859) [003] d..1 82315.353954: sched_waking: comm=main pid=27551 prio=120 target_cpu=001
25629          <idle>-0     (-----) [000] .n.1 82315.353960: cpu_idle: state=4294967295 cpu_id=0
25630<...>-27552 ( 8859) [003] d..2 82315.353961: sched_blocked_reason: pid=27551 iowait=0 caller=SyS_madvise+0xc84/0xcbc
25631<...>-27552 ( 8859) [003] d..2 82315.353967: sched_wakeup: comm=main pid=27551 prio=120 target_cpu=001
25632          <idle>-0     (-----) [000] d..2 82315.353970: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25633          <idle>-0     (-----) [001] .n.1 82315.353974: cpu_idle: state=4294967295 cpu_id=1
25634          <idle>-0     (-----) [001] d..2 82315.353983: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27551 next_prio=120
25635<...>-27552 ( 8859) [003] d..2 82315.353993: sched_switch: prev_comm=main prev_pid=27552 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
25636<...>-27551 ( 8859) [001] d..1 82315.353995: sched_waking: comm=main pid=27552 prio=120 target_cpu=003
25637            main-8859  ( 8859) [000] d..2 82315.353996: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
25638<...>-27551 ( 8859) [001] d..2 82315.354003: sched_blocked_reason: pid=27552 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25639          <idle>-0     (-----) [000] d..1 82315.354005: cpu_idle: state=0 cpu_id=0
25640          <idle>-0     (-----) [003] d..1 82315.354006: cpu_idle: state=0 cpu_id=3
25641          <idle>-0     (-----) [003] .n.1 82315.354010: cpu_idle: state=4294967295 cpu_id=3
25642<...>-27551 ( 8859) [001] d..2 82315.354010: sched_wakeup: comm=main pid=27552 prio=120 target_cpu=003
25643          <idle>-0     (-----) [003] d..2 82315.354022: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27552 next_prio=120
25644<...>-27552 ( 8859) [003] d..1 82315.354026: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25645<...>-27552 ( 8859) [003] d..2 82315.354034: sched_blocked_reason: pid=8859 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25646<...>-27551 ( 8859) [001] d..2 82315.354036: sched_switch: prev_comm=main prev_pid=27551 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25647<...>-27552 ( 8859) [003] d..2 82315.354040: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25648          <idle>-0     (-----) [000] .n.1 82315.354046: cpu_idle: state=4294967295 cpu_id=0
25649          <idle>-0     (-----) [001] d..1 82315.354046: cpu_idle: state=0 cpu_id=1
25650          <idle>-0     (-----) [000] d..2 82315.354055: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25651            main-8859  ( 8859) [000] d..1 82315.354066: sched_waking: comm=main pid=27551 prio=120 target_cpu=001
25652<...>-27552 ( 8859) [003] d..2 82315.354066: sched_switch: prev_comm=main prev_pid=27552 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25653            main-8859  ( 8859) [000] d..2 82315.354075: sched_blocked_reason: pid=27551 iowait=0 caller=do_page_fault+0x4e0/0x594
25654          <idle>-0     (-----) [003] d..1 82315.354076: cpu_idle: state=0 cpu_id=3
25655            main-8859  ( 8859) [000] d..2 82315.354082: sched_wakeup: comm=main pid=27551 prio=120 target_cpu=001
25656          <idle>-0     (-----) [001] .n.1 82315.354088: cpu_idle: state=4294967295 cpu_id=1
25657          <idle>-0     (-----) [001] d..2 82315.354097: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27551 next_prio=120
25658            main-8859  ( 8859) [000] d..2 82315.354099: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25659          <idle>-0     (-----) [000] d..1 82315.354109: cpu_idle: state=0 cpu_id=0
25660<...>-27551 ( 8859) [001] d..1 82315.354113: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25661<...>-27551 ( 8859) [001] d..2 82315.354121: sched_blocked_reason: pid=8859 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25662<...>-27551 ( 8859) [001] d..2 82315.354128: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25663          <idle>-0     (-----) [000] .n.1 82315.354134: cpu_idle: state=4294967295 cpu_id=0
25664          <idle>-0     (-----) [000] d..2 82315.354142: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25665            main-8859  ( 8859) [000] d..1 82315.354147: sched_waking: comm=main pid=27551 prio=120 target_cpu=001
25666<...>-27551 ( 8859) [001] d..2 82315.354152: sched_switch: prev_comm=main prev_pid=27551 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25667            main-8859  ( 8859) [000] d..2 82315.354161: sched_blocked_reason: pid=27551 iowait=0 caller=do_page_fault+0x4e0/0x594
25668          <idle>-0     (-----) [001] d..1 82315.354163: cpu_idle: state=0 cpu_id=1
25669          <idle>-0     (-----) [001] .n.1 82315.354166: cpu_idle: state=4294967295 cpu_id=1
25670            main-8859  ( 8859) [000] d..2 82315.354167: sched_wakeup: comm=main pid=27551 prio=120 target_cpu=001
25671          <idle>-0     (-----) [001] d..2 82315.354179: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27551 next_prio=120
25672            main-8859  ( 8859) [000] d..2 82315.354182: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
25673          <idle>-0     (-----) [000] d..1 82315.354191: cpu_idle: state=0 cpu_id=0
25674<...>-27551 ( 8859) [001] d..1 82315.354192: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25675<...>-27551 ( 8859) [001] d..2 82315.354200: sched_blocked_reason: pid=8859 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25676<...>-27551 ( 8859) [001] d..2 82315.354207: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25677          <idle>-0     (-----) [000] .n.1 82315.354212: cpu_idle: state=4294967295 cpu_id=0
25678          <idle>-0     (-----) [000] d..2 82315.354220: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25679<...>-27551 ( 8859) [001] d..2 82315.354229: sched_switch: prev_comm=main prev_pid=27551 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25680            main-8859  ( 8859) [000] d..1 82315.354232: sched_waking: comm=main pid=27551 prio=120 target_cpu=001
25681          <idle>-0     (-----) [001] d..1 82315.354239: cpu_idle: state=0 cpu_id=1
25682            main-8859  ( 8859) [000] d..2 82315.354240: sched_blocked_reason: pid=27551 iowait=0 caller=do_page_fault+0x4e0/0x594
25683            main-8859  ( 8859) [000] d..2 82315.354246: sched_wakeup: comm=main pid=27551 prio=120 target_cpu=001
25684          <idle>-0     (-----) [001] .n.1 82315.354253: cpu_idle: state=4294967295 cpu_id=1
25685            main-8859  ( 8859) [000] d..2 82315.354261: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25686          <idle>-0     (-----) [001] d..2 82315.354262: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27551 next_prio=120
25687          <idle>-0     (-----) [000] d..1 82315.354270: cpu_idle: state=0 cpu_id=0
25688<...>-27551 ( 8859) [001] d..1 82315.354271: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25689<...>-27551 ( 8859) [001] d..2 82315.354279: sched_blocked_reason: pid=8859 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25690<...>-27551 ( 8859) [001] d..2 82315.354286: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25691          <idle>-0     (-----) [000] .n.1 82315.354291: cpu_idle: state=4294967295 cpu_id=0
25692          <idle>-0     (-----) [000] d..2 82315.354299: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25693<...>-27551 ( 8859) [001] d..2 82315.354303: sched_switch: prev_comm=main prev_pid=27551 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25694            main-8859  ( 8859) [000] d..1 82315.354303: sched_waking: comm=main pid=27551 prio=120 target_cpu=001
25695            main-8859  ( 8859) [000] d..2 82315.354311: sched_blocked_reason: pid=27551 iowait=0 caller=do_page_fault+0x4e0/0x594
25696          <idle>-0     (-----) [001] d..1 82315.354313: cpu_idle: state=0 cpu_id=1
25697            main-8859  ( 8859) [000] d..2 82315.354318: sched_wakeup: comm=main pid=27551 prio=120 target_cpu=001
25698          <idle>-0     (-----) [001] .n.1 82315.354323: cpu_idle: state=4294967295 cpu_id=1
25699          <idle>-0     (-----) [001] d..2 82315.354331: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27551 next_prio=120
25700          <idle>-0     (-----) [003] .n.1 82315.354381: cpu_idle: state=4294967295 cpu_id=3
25701<...>-27551 ( 8859) [001] d..1 82315.354390: sched_waking: comm=main pid=27552 prio=120 target_cpu=003
25702          <idle>-0     (-----) [003] d..2 82315.354390: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27553 next_prio=120
25703<...>-27553 ( 8859) [003] d..1 82315.354409: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25704            main-8859  ( 8859) [000] d..2 82315.354424: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25705<...>-27551 ( 8859) [001] d..2 82315.354436: sched_wakeup: comm=main pid=27552 prio=120 target_cpu=000
25706          <idle>-0     (-----) [000] d..2 82315.354447: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27552 next_prio=120
25707<...>-27553 ( 8859) [003] d..2 82315.354458: sched_blocked_reason: pid=8859 iowait=0 caller=do_page_fault+0x4e0/0x594
25708<...>-27553 ( 8859) [003] d..2 82315.354466: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25709<...>-27552 ( 8859) [000] d..2 82315.354475: sched_switch: prev_comm=main prev_pid=27552 prev_prio=120 prev_state=D|K ==> next_comm=main next_pid=8859 next_prio=120
25710            main-8859  ( 8859) [000] d..1 82315.354487: sched_waking: comm=main pid=27552 prio=120 target_cpu=000
25711<...>-27551 ( 8859) [001] d..2 82315.354489: sched_switch: prev_comm=ReferenceQueueD prev_pid=27551 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25712<...>-27553 ( 8859) [003] d..2 82315.354494: sched_switch: prev_comm=main prev_pid=27553 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
25713          <idle>-0     (-----) [001] d..1 82315.354502: cpu_idle: state=0 cpu_id=1
25714            main-8859  ( 8859) [000] d..2 82315.354503: sched_blocked_reason: pid=27552 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25715          <idle>-0     (-----) [003] d..1 82315.354506: cpu_idle: state=0 cpu_id=3
25716            main-8859  ( 8859) [000] d..2 82315.354510: sched_wakeup: comm=main pid=27552 prio=120 target_cpu=001
25717          <idle>-0     (-----) [001] .n.1 82315.354516: cpu_idle: state=4294967295 cpu_id=1
25718          <idle>-0     (-----) [001] d..2 82315.354526: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27552 next_prio=120
25719<...>-27552 ( 8859) [001] d..1 82315.354539: sched_waking: comm=ReferenceQueueD pid=27551 prio=120 target_cpu=001
25720<...>-27552 ( 8859) [001] d..2 82315.354565: sched_blocked_reason: pid=27551 iowait=0 caller=do_page_fault+0x4e0/0x594
25721<...>-27552 ( 8859) [001] d..2 82315.354573: sched_wakeup: comm=ReferenceQueueD pid=27551 prio=120 target_cpu=003
25722          <idle>-0     (-----) [003] .n.1 82315.354579: cpu_idle: state=4294967295 cpu_id=3
25723            main-8859  ( 8859) [000] d..2 82315.354580: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
25724          <idle>-0     (-----) [003] d..2 82315.354588: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27551 next_prio=120
25725<...>-27552 ( 8859) [001] d..2 82315.354592: sched_switch: prev_comm=main prev_pid=27552 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25726<...>-27551 ( 8859) [003] d..1 82315.354594: sched_waking: comm=main pid=27553 prio=120 target_cpu=003
25727          <idle>-0     (-----) [000] d..1 82315.354595: cpu_idle: state=0 cpu_id=0
25728          <idle>-0     (-----) [001] d..1 82315.354603: cpu_idle: state=0 cpu_id=1
25729<...>-27551 ( 8859) [003] d..2 82315.354610: sched_blocked_reason: pid=27553 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25730<...>-27551 ( 8859) [003] d..2 82315.354618: sched_wakeup: comm=main pid=27553 prio=120 target_cpu=001
25731          <idle>-0     (-----) [001] .n.1 82315.354622: cpu_idle: state=4294967295 cpu_id=1
25732          <idle>-0     (-----) [001] d..2 82315.354631: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27553 next_prio=120
25733<...>-27551 ( 8859) [003] d..2 82315.354635: sched_switch: prev_comm=ReferenceQueueD prev_pid=27551 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
25734<...>-27553 ( 8859) [001] d..1 82315.354642: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25735          <idle>-0     (-----) [003] d..1 82315.354645: cpu_idle: state=0 cpu_id=3
25736<...>-27553 ( 8859) [001] d..2 82315.354650: sched_blocked_reason: pid=8859 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25737<...>-27553 ( 8859) [001] d..2 82315.354657: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25738          <idle>-0     (-----) [000] .n.1 82315.354663: cpu_idle: state=4294967295 cpu_id=0
25739          <idle>-0     (-----) [000] d..2 82315.354673: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25740<...>-27553 ( 8859) [001] d..2 82315.354684: sched_switch: prev_comm=main prev_pid=27553 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25741           <...>-27550 (-----) [002] .... 82315.354694: cgroup_mkdir: root=1 id=109 level=2 path=/uid_10151/pid_27550
25742          <idle>-0     (-----) [001] d..1 82315.354694: cpu_idle: state=0 cpu_id=1
25743            main-8859  ( 8859) [000] d..1 82315.354705: sched_waking: comm=main pid=27552 prio=120 target_cpu=001
25744            main-8859  ( 8859) [000] d..2 82315.354715: sched_blocked_reason: pid=27552 iowait=0 caller=SyS_madvise+0xc84/0xcbc
25745            main-8859  ( 8859) [000] d..2 82315.354722: sched_wakeup: comm=main pid=27552 prio=120 target_cpu=001
25746            main-8859  ( 8859) [000] d..1 82315.354724: sched_waking: comm=ReferenceQueueD pid=27551 prio=120 target_cpu=003
25747          <idle>-0     (-----) [001] .n.1 82315.354728: cpu_idle: state=4294967295 cpu_id=1
25748            main-8859  ( 8859) [000] d..2 82315.354730: sched_blocked_reason: pid=27551 iowait=0 caller=do_page_fault+0x4e0/0x594
25749            main-8859  ( 8859) [000] d..2 82315.354736: sched_wakeup: comm=ReferenceQueueD pid=27551 prio=120 target_cpu=003
25750          <idle>-0     (-----) [001] d..2 82315.354736: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27552 next_prio=120
25751          <idle>-0     (-----) [003] .n.1 82315.354742: cpu_idle: state=4294967295 cpu_id=3
25752          <idle>-0     (-----) [003] d..2 82315.354750: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27551 next_prio=120
25753<...>-27552 ( 8859) [001] d..1 82315.354764: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25754            main-8859  ( 8859) [000] d..2 82315.354770: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
25755<...>-27552 ( 8859) [001] d..2 82315.354780: sched_blocked_reason: pid=8859 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25756          <idle>-0     (-----) [000] d..1 82315.354783: cpu_idle: state=0 cpu_id=0
25757          <idle>-0     (-----) [000] .n.1 82315.354787: cpu_idle: state=4294967295 cpu_id=0
25758<...>-27552 ( 8859) [001] d..2 82315.354787: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25759          <idle>-0     (-----) [000] d..2 82315.354799: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25760<...>-27552 ( 8859) [001] d..2 82315.354803: sched_switch: prev_comm=main prev_pid=27552 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25761<...>-27551 ( 8859) [003] d..2 82315.354804: sched_switch: prev_comm=ReferenceQueueD prev_pid=27551 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
25762            main-8859  ( 8859) [000] d..1 82315.354810: sched_waking: comm=main pid=27552 prio=120 target_cpu=001
25763          <idle>-0     (-----) [003] d..1 82315.354813: cpu_idle: state=0 cpu_id=3
25764          <idle>-0     (-----) [001] d..1 82315.354816: cpu_idle: state=0 cpu_id=1
25765            main-8859  ( 8859) [000] d..2 82315.354818: sched_blocked_reason: pid=27552 iowait=0 caller=do_page_fault+0x4e0/0x594
25766            main-8859  ( 8859) [000] d..2 82315.354825: sched_wakeup: comm=main pid=27552 prio=120 target_cpu=001
25767            main-8859  ( 8859) [000] d..1 82315.354827: sched_waking: comm=ReferenceQueueD pid=27551 prio=120 target_cpu=003
25768          <idle>-0     (-----) [001] .n.1 82315.354831: cpu_idle: state=4294967295 cpu_id=1
25769            main-8859  ( 8859) [000] d..2 82315.354833: sched_blocked_reason: pid=27551 iowait=0 caller=do_page_fault+0x4e0/0x594
25770            main-8859  ( 8859) [000] d..2 82315.354839: sched_wakeup: comm=ReferenceQueueD pid=27551 prio=120 target_cpu=003
25771          <idle>-0     (-----) [001] d..2 82315.354839: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27552 next_prio=120
25772          <idle>-0     (-----) [003] .n.1 82315.354844: cpu_idle: state=4294967295 cpu_id=3
25773          <idle>-0     (-----) [003] d..2 82315.354853: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27551 next_prio=120
25774            main-8859  ( 8859) [000] d..2 82315.354854: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
25775<...>-27551 ( 8859) [003] d..1 82315.354857: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25776          <idle>-0     (-----) [000] d..1 82315.354864: cpu_idle: state=0 cpu_id=0
25777<...>-27551 ( 8859) [003] d..2 82315.354866: sched_blocked_reason: pid=8859 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25778<...>-27552 ( 8859) [001] d..2 82315.354866: sched_switch: prev_comm=main prev_pid=27552 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25779<...>-27551 ( 8859) [003] d..2 82315.354872: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25780          <idle>-0     (-----) [001] d..1 82315.354875: cpu_idle: state=0 cpu_id=1
25781          <idle>-0     (-----) [000] .n.1 82315.354878: cpu_idle: state=4294967295 cpu_id=0
25782          <idle>-0     (-----) [000] d..2 82315.354887: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25783           <...>-27550 (-----) [002] .... 82315.354890: cgroup_attach_task: dst_root=1 dst_id=109 dst_level=2 dst_path=/uid_10151/pid_27550 pid=27550 comm=main
25784            main-8859  ( 8859) [000] d..1 82315.354895: sched_waking: comm=main pid=27552 prio=120 target_cpu=001
25785            main-8859  ( 8859) [000] d..2 82315.354903: sched_blocked_reason: pid=27552 iowait=0 caller=do_page_fault+0x4e0/0x594
25786            main-8859  ( 8859) [000] d..2 82315.354909: sched_wakeup: comm=main pid=27552 prio=120 target_cpu=001
25787          <idle>-0     (-----) [001] .n.1 82315.354915: cpu_idle: state=4294967295 cpu_id=1
25788          <idle>-0     (-----) [001] d..2 82315.354924: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27552 next_prio=120
25789            main-8859  ( 8859) [000] d..2 82315.354925: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25790          <idle>-0     (-----) [000] d..1 82315.354934: cpu_idle: state=0 cpu_id=0
25791<...>-27552 ( 8859) [001] d..1 82315.354936: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25792<...>-27551 ( 8859) [003] d..2 82315.354939: sched_switch: prev_comm=ReferenceQueueD prev_pid=27551 prev_prio=124 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
25793<...>-27552 ( 8859) [001] d..2 82315.354944: sched_blocked_reason: pid=8859 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25794          <idle>-0     (-----) [003] d..1 82315.354950: cpu_idle: state=0 cpu_id=3
25795<...>-27552 ( 8859) [001] d..2 82315.354951: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25796          <idle>-0     (-----) [000] .n.1 82315.354957: cpu_idle: state=4294967295 cpu_id=0
25797<...>-27552 ( 8859) [001] d..1 82315.354964: sched_waking: comm=main pid=27553 prio=120 target_cpu=001
25798          <idle>-0     (-----) [000] d..2 82315.354966: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25799            main-8859  ( 8859) [000] d..1 82315.354970: sched_waking: comm=ReferenceQueueD pid=27551 prio=124 target_cpu=003
25800            main-8859  ( 8859) [000] d..2 82315.354979: sched_blocked_reason: pid=27551 iowait=0 caller=do_page_fault+0x4e0/0x594
25801            main-8859  ( 8859) [000] d..2 82315.354985: sched_wakeup: comm=ReferenceQueueD pid=27551 prio=124 target_cpu=003
25802          <idle>-0     (-----) [003] .n.1 82315.354992: cpu_idle: state=4294967295 cpu_id=3
25803<...>-27552 ( 8859) [001] d..2 82315.354996: sched_wakeup: comm=main pid=27553 prio=120 target_cpu=003
25804          <idle>-0     (-----) [003] d..2 82315.355004: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27553 next_prio=120
25805<...>-27553 ( 8859) [003] d..2 82315.355022: sched_switch: prev_comm=main prev_pid=27553 prev_prio=120 prev_state=D|K ==> next_comm=ReferenceQueueD next_pid=27551 next_prio=124
25806            main-8859  ( 8859) [000] d..2 82315.355024: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
25807<...>-27551 ( 8859) [003] d..1 82315.355027: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25808<...>-27551 ( 8859) [003] d..2 82315.355035: sched_blocked_reason: pid=8859 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25809          <idle>-0     (-----) [000] d..1 82315.355037: cpu_idle: state=0 cpu_id=0
25810          <idle>-0     (-----) [000] .n.1 82315.355040: cpu_idle: state=4294967295 cpu_id=0
25811<...>-27551 ( 8859) [003] d..2 82315.355041: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25812          <idle>-0     (-----) [000] d..2 82315.355052: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25813<...>-27552 ( 8859) [001] d..2 82315.355059: sched_switch: prev_comm=FinalizerDaemon prev_pid=27552 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25814            main-8859  ( 8859) [000] d..1 82315.355063: sched_waking: comm=main pid=27553 prio=120 target_cpu=003
25815<...>-27551 ( 8859) [003] d..2 82315.355071: sched_switch: prev_comm=ReferenceQueueD prev_pid=27551 prev_prio=124 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25816          <idle>-0     (-----) [001] d..1 82315.355071: cpu_idle: state=0 cpu_id=1
25817          <idle>-0     (-----) [003] d..1 82315.355081: cpu_idle: state=0 cpu_id=3
25818            main-8859  ( 8859) [000] d..2 82315.355090: sched_blocked_reason: pid=27553 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25819            main-8859  ( 8859) [000] d..2 82315.355097: sched_wakeup: comm=main pid=27553 prio=120 target_cpu=001
25820          <idle>-0     (-----) [001] .n.1 82315.355103: cpu_idle: state=4294967295 cpu_id=1
25821          <idle>-0     (-----) [001] d..2 82315.355118: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27553 next_prio=120
25822            main-8859  ( 8859) [000] d.s2 82315.355135: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25823           <...>-27550 (-----) [002] d.s2 82315.355143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
25824<...>-27553 ( 8859) [001] d..2 82315.355146: sched_switch: prev_comm=main prev_pid=27553 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
25825            main-8859  ( 8859) [000] d.s3 82315.355155: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25826          <idle>-0     (-----) [001] d..2 82315.355161: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25827           <...>-27550 (-----) [002] d.s3 82315.355180: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
25828            main-8859  ( 8859) [000] d..1 82315.355191: sched_waking: comm=main pid=27553 prio=120 target_cpu=001
25829            main-8859  ( 8859) [000] d..2 82315.355202: sched_blocked_reason: pid=27553 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25830            main-8859  ( 8859) [000] d..2 82315.355205: sched_wakeup: comm=main pid=27553 prio=120 target_cpu=001
25831<...>-1054 ( 1054) [001] .... 82315.355254: clk_set_rate: l3_cluster0_vote_clk 652800000
25832<...>-1054 ( 1054) [001] .... 82315.355258: clk_set_rate: l3_clk 652800000
25833          <idle>-0     (-----) [003] .n.1 82315.355268: cpu_idle: state=4294967295 cpu_id=3
25834          <idle>-0     (-----) [003] d..2 82315.355280: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27554 next_prio=120
25835            main-8859  ( 8859) [000] d..2 82315.355297: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25836<...>-27554 ( 8859) [003] d..2 82315.355333: sched_switch: prev_comm=main prev_pid=27554 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25837          <idle>-0     (-----) [000] d..1 82315.355339: cpu_idle: state=0 cpu_id=0
25838          <idle>-0     (-----) [003] d..1 82315.355344: cpu_idle: state=0 cpu_id=3
25839<...>-1054 ( 1054) [001] d..2 82315.355486: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
25840     rcu_preempt-7     (    7) [001] d.s3 82315.355516: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
25841     rcu_preempt-7     (    7) [001] d.s4 82315.355543: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
25842     rcu_preempt-7     (    7) [001] d.s4 82315.355549: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
25843          <idle>-0     (-----) [000] .n.1 82315.355555: cpu_idle: state=4294967295 cpu_id=0
25844          <idle>-0     (-----) [000] d..2 82315.355564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25845     rcu_preempt-7     (    7) [001] d..2 82315.355566: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=main next_pid=27553 next_prio=120
25846<...>-27553 ( 8859) [001] d..1 82315.355578: sched_waking: comm=FinalizerDaemon pid=27552 prio=120 target_cpu=001
25847<...>-27553 ( 8859) [001] d..2 82315.355601: sched_blocked_reason: pid=27552 iowait=0 caller=do_page_fault+0x4e0/0x594
25848<...>-27553 ( 8859) [001] d..2 82315.355607: sched_wakeup: comm=FinalizerDaemon pid=27552 prio=120 target_cpu=003
25849<...>-27553 ( 8859) [001] d..1 82315.355609: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
25850<...>-1054 ( 1054) [000] d..2 82315.355613: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25851          <idle>-0     (-----) [003] .n.1 82315.355613: cpu_idle: state=4294967295 cpu_id=3
25852<...>-27553 ( 8859) [001] d..2 82315.355620: sched_blocked_reason: pid=8859 iowait=0 caller=do_page_fault+0x4e0/0x594
25853          <idle>-0     (-----) [003] d..2 82315.355622: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=27552 next_prio=120
25854          <idle>-0     (-----) [000] dn.1 82315.355623: cpu_idle: state=0 cpu_id=0
25855<...>-27553 ( 8859) [001] d..2 82315.355626: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
25856          <idle>-0     (-----) [000] .n.1 82315.355626: cpu_idle: state=4294967295 cpu_id=0
25857          <idle>-0     (-----) [000] d..2 82315.355638: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=8859 next_prio=120
25858<...>-27553 ( 8859) [001] d..1 82315.355687: sched_waking: comm=main pid=27554 prio=120 target_cpu=003
25859<...>-27553 ( 8859) [001] d..2 82315.355702: sched_wakeup: comm=main pid=27554 prio=120 target_cpu=003
25860<...>-27552 ( 8859) [003] d..2 82315.355709: sched_switch: prev_comm=FinalizerDaemon prev_pid=27552 prev_prio=124 prev_state=S ==> next_comm=main next_pid=27554 next_prio=120
25861            main-8859  ( 8859) [000] d..1 82315.355719: sched_waking: comm=main pid=27554 prio=120 target_cpu=003
25862<...>-27554 ( 8859) [003] d..2 82315.355727: sched_switch: prev_comm=main prev_pid=27554 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
25863            main-8859  ( 8859) [000] d..2 82315.355737: sched_blocked_reason: pid=27554 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25864          <idle>-0     (-----) [003] d..1 82315.355738: cpu_idle: state=0 cpu_id=3
25865            main-8859  ( 8859) [000] d..2 82315.355745: sched_wakeup: comm=main pid=27554 prio=120 target_cpu=003
25866          <idle>-0     (-----) [003] .n.1 82315.355750: cpu_idle: state=4294967295 cpu_id=3
25867          <idle>-0     (-----) [003] d..2 82315.355759: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27554 next_prio=120
25868<...>-27553 ( 8859) [001] d..2 82315.355765: sched_switch: prev_comm=FinalizerWatchd prev_pid=27553 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
25869<...>-27554 ( 8859) [003] d..1 82315.355770: sched_waking: comm=FinalizerWatchd pid=27553 prio=120 target_cpu=001
25870<...>-27554 ( 8859) [003] d..2 82315.355779: sched_blocked_reason: pid=27553 iowait=0 caller=do_page_fault+0x4e0/0x594
25871          <idle>-0     (-----) [001] d..1 82315.355781: cpu_idle: state=0 cpu_id=1
25872          <idle>-0     (-----) [001] .n.1 82315.355784: cpu_idle: state=4294967295 cpu_id=1
25873<...>-27554 ( 8859) [003] d..2 82315.355786: sched_wakeup: comm=FinalizerWatchd pid=27553 prio=120 target_cpu=001
25874            main-8859  ( 8859) [000] d..2 82315.355797: sched_waking: comm=ActivityManager pid=8963 prio=118 target_cpu=001
25875          <idle>-0     (-----) [001] d..2 82315.355797: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=27553 next_prio=120
25876            main-8859  ( 8859) [000] dn.3 82315.355816: sched_wakeup: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25877            main-8859  ( 8859) [000] d..2 82315.355824: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=R+ ==> next_comm=ActivityManager next_pid=8963 next_prio=118
25878<...>-27553 ( 8859) [001] d..2 82315.355878: sched_switch: prev_comm=FinalizerWatchd prev_pid=27553 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25879          <idle>-0     (-----) [001] d..1 82315.355888: cpu_idle: state=0 cpu_id=1
25880<...>-8963 ( 8943) [000] d..2 82315.355909: sched_switch: prev_comm=ActivityManager prev_pid=8963 prev_prio=118 prev_state=S ==> next_comm=main next_pid=8859 next_prio=120
25881<...>-27554 ( 8859) [003] d..2 82315.355916: sched_switch: prev_comm=HeapTaskDaemon prev_pid=27554 prev_prio=124 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
25882            main-8859  ( 8859) [000] d..2 82315.355933: sched_waking: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25883          <idle>-0     (-----) [003] d..1 82315.355934: cpu_idle: state=0 cpu_id=3
25884            main-8859  ( 8859) [000] dn.3 82315.355942: sched_wakeup: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25885            main-8859  ( 8859) [000] d..2 82315.355948: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=R+ ==> next_comm=ActivityManager next_pid=8963 next_prio=118
25886<...>-8963 ( 8943) [000] d..2 82315.355978: sched_switch: prev_comm=ActivityManager prev_pid=8963 prev_prio=118 prev_state=S ==> next_comm=main next_pid=8859 next_prio=120
25887            main-8859  ( 8859) [000] d..2 82315.355995: sched_waking: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25888            main-8859  ( 8859) [000] dn.3 82315.356003: sched_wakeup: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25889            main-8859  ( 8859) [000] d..2 82315.356009: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=R+ ==> next_comm=ActivityManager next_pid=8963 next_prio=118
25890<...>-8963 ( 8943) [000] d..2 82315.356036: sched_switch: prev_comm=ActivityManager prev_pid=8963 prev_prio=118 prev_state=S ==> next_comm=main next_pid=8859 next_prio=120
25891            main-8859  ( 8859) [000] d..2 82315.356053: sched_waking: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25892            main-8859  ( 8859) [000] dn.3 82315.356061: sched_wakeup: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25893            main-8859  ( 8859) [000] d..2 82315.356066: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=R+ ==> next_comm=ActivityManager next_pid=8963 next_prio=118
25894<...>-8963 ( 8943) [000] d..2 82315.356098: sched_switch: prev_comm=ActivityManager prev_pid=8963 prev_prio=118 prev_state=S ==> next_comm=main next_pid=8859 next_prio=120
25895            main-8859  ( 8859) [000] d..2 82315.356129: sched_waking: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25896            main-8859  ( 8859) [000] dn.3 82315.356137: sched_wakeup: comm=ActivityManager pid=8963 prio=118 target_cpu=000
25897            main-8859  ( 8859) [000] d..2 82315.356143: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=R+ ==> next_comm=ActivityManager next_pid=8963 next_prio=118
25898<...>-8963 ( 8943) [000] d..2 82315.356358: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
25899<...>-8963 ( 8943) [000] d..3 82315.356392: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
25900<...>-8963 ( 8943) [000] d..2 82315.356515: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
25901<...>-8963 ( 8943) [000] d..3 82315.356532: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
25902<...>-8963 ( 8943) [000] d..3 82315.356697: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=007
25903<...>-8963 ( 8943) [000] d..4 82315.356729: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=001
25904          <idle>-0     (-----) [001] .n.1 82315.356734: cpu_idle: state=4294967295 cpu_id=1
25905<...>-8963 ( 8943) [000] d.h3 82315.356778: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
25906          <idle>-0     (-----) [001] d..2 82315.356779: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
25907<...>-8961 ( 8943) [001] d..2 82315.356853: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25908<...>-8963 ( 8943) [000] d..2 82315.356855: sched_switch: prev_comm=ActivityManager prev_pid=8963 prev_prio=118 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
25909          <idle>-0     (-----) [001] d..1 82315.356862: cpu_idle: state=0 cpu_id=1
25910          <idle>-0     (-----) [003] ...1 82315.357050: cpu_idle: state=4294967295 cpu_id=3
25911          <idle>-0     (-----) [003] d..1 82315.357054: cpu_idle: state=2 cpu_id=3
25912   statsd.writer-1044  (  901) [000] d..2 82315.357058: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
25913<...>-581 ( 571) [000] d..2 82315.357208: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=main next_pid=8859 next_prio=120
25914            main-8859  ( 8859) [000] d..2 82315.357359: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25915          <idle>-0     (-----) [000] d..1 82315.357376: cpu_idle: state=0 cpu_id=0
25916          <idle>-0     (-----) [007] dnh2 82315.357500: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
25917          <idle>-0     (-----) [007] .n.1 82315.357504: cpu_idle: state=4294967295 cpu_id=7
25918          <idle>-0     (-----) [007] d..2 82315.357510: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
25919         sugov:4-577   (  577) [007] .... 82315.357530: clk_set_rate: perfcl_clk 825600000
25920         sugov:4-577   (  577) [007] .... 82315.357531: clk_set_rate: cpu7_perfcl_clk 2553600000
25921         sugov:4-577   (  577) [007] .... 82315.357536: clk_set_rate: cpu6_perfcl_clk 2553600000
25922         sugov:4-577   (  577) [007] .... 82315.357541: clk_set_rate: cpu5_perfcl_clk 2553600000
25923         sugov:4-577   (  577) [007] .... 82315.357545: clk_set_rate: cpu4_perfcl_clk 825600000
25924         sugov:4-577   (  577) [007] .... 82315.357550: cpu_frequency: state=825600 cpu_id=4
25925         sugov:4-577   (  577) [007] d..2 82315.357714: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
25926          <idle>-0     (-----) [007] d..1 82315.357725: cpu_idle: state=2 cpu_id=7
25927          <idle>-0     (-----) [001] d.s3 82315.357749: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
25928          <idle>-0     (-----) [001] ...1 82315.357768: cpu_idle: state=4294967295 cpu_id=1
25929          <idle>-0     (-----) [001] d..1 82315.357772: cpu_idle: state=0 cpu_id=1
25930           <...>-27550 (-----) [002] d.s2 82315.358480: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
25931          <idle>-0     (-----) [000] ...1 82315.358492: cpu_idle: state=4294967295 cpu_id=0
25932          <idle>-0     (-----) [000] d..1 82315.358496: cpu_idle: state=2 cpu_id=0
25933           <...>-27550 (-----) [002] d.s3 82315.358510: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
25934          <idle>-0     (-----) [007] dnh2 82315.358776: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
25935          <idle>-0     (-----) [007] .n.1 82315.358783: cpu_idle: state=4294967295 cpu_id=7
25936          <idle>-0     (-----) [000] .n.1 82315.358792: cpu_idle: state=4294967295 cpu_id=0
25937          <idle>-0     (-----) [007] d..2 82315.358794: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
25938         sugov:4-577   (  577) [007] .... 82315.358806: cpu_frequency: state=825600 cpu_id=5
25939          <idle>-0     (-----) [000] d..2 82315.358811: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25940         sugov:4-577   (  577) [007] .... 82315.358812: cpu_frequency: state=825600 cpu_id=6
25941         sugov:4-577   (  577) [007] .... 82315.358815: cpu_frequency: state=825600 cpu_id=7
25942         sugov:4-577   (  577) [007] d..2 82315.358838: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
25943          <idle>-0     (-----) [007] d..1 82315.358848: cpu_idle: state=2 cpu_id=7
25944<...>-1054 ( 1054) [000] d..2 82315.358985: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25945          <idle>-0     (-----) [000] d..1 82315.358998: cpu_idle: state=0 cpu_id=0
25946          <idle>-0     (-----) [001] d.s3 82315.359001: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
25947          <idle>-0     (-----) [001] d.s4 82315.359010: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
25948          <idle>-0     (-----) [001] d.s4 82315.359018: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
25949          <idle>-0     (-----) [000] .n.1 82315.359024: cpu_idle: state=4294967295 cpu_id=0
25950          <idle>-0     (-----) [001] ...1 82315.359024: cpu_idle: state=4294967295 cpu_id=1
25951          <idle>-0     (-----) [001] d..1 82315.359027: cpu_idle: state=0 cpu_id=1
25952          <idle>-0     (-----) [000] d..2 82315.359033: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
25953<...>-1054 ( 1054) [000] d..2 82315.359054: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
25954          <idle>-0     (-----) [000] d..1 82315.359063: cpu_idle: state=0 cpu_id=0
25955          <idle>-0     (-----) [000] ...1 82315.360177: cpu_idle: state=4294967295 cpu_id=0
25956          <idle>-0     (-----) [000] d..1 82315.360181: cpu_idle: state=2 cpu_id=0
25957          <idle>-0     (-----) [001] d.s2 82315.361796: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
25958          <idle>-0     (-----) [001] dns3 82315.361809: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
25959          <idle>-0     (-----) [001] .n.1 82315.361821: cpu_idle: state=4294967295 cpu_id=1
25960          <idle>-0     (-----) [001] d..2 82315.361830: 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
25961     rcu_preempt-7     (    7) [001] d..2 82315.361840: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
25962     rcu_preempt-7     (    7) [001] d..3 82315.361857: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
25963     rcu_preempt-7     (    7) [001] d..2 82315.361873: 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
25964           <...>-27550 (-----) [002] d..2 82315.361889: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmar next_pid=27555 next_prio=120
25965         rcuop/2-29    (   29) [001] d..2 82315.361919: 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
25966          <idle>-0     (-----) [001] d..1 82315.361928: cpu_idle: state=0 cpu_id=1
25967           <...>-27555 (-----) [002] d..1 82315.362601: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=002
25968           <...>-27555 (-----) [002] d..2 82315.362630: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=001
25969          <idle>-0     (-----) [001] .n.1 82315.362634: cpu_idle: state=4294967295 cpu_id=1
25970          <idle>-0     (-----) [001] d..2 82315.362645: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
25971           <...>-27555 (-----) [002] d..2 82315.362661: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25972           <...>-27550 (-----) [001] d..1 82315.362678: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=002
25973          <idle>-0     (-----) [002] d..1 82315.362684: cpu_idle: state=0 cpu_id=2
25974           <...>-27550 (-----) [001] d..2 82315.362692: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=002
25975          <idle>-0     (-----) [002] .n.1 82315.362699: cpu_idle: state=4294967295 cpu_id=2
25976          <idle>-0     (-----) [002] d..2 82315.362710: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
25977           <...>-27555 (-----) [002] d..2 82315.362731: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
25978          <idle>-0     (-----) [002] d..1 82315.362740: cpu_idle: state=2 cpu_id=2
25979           <...>-27550 (-----) [001] d..2 82315.362830: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmar next_pid=27556 next_prio=120
25980           <...>-27556 (-----) [001] d..1 82315.363093: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=001
25981           <...>-27556 (-----) [001] d..2 82315.363119: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
25982           <...>-27556 (-----) [001] d..2 82315.363162: sched_switch: prev_comm=Signal Catcher prev_pid=27556 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
25983          <idle>-0     (-----) [001] d..1 82315.363177: cpu_idle: state=0 cpu_id=1
25984          <idle>-0     (-----) [000] .n.1 82315.363302: cpu_idle: state=4294967295 cpu_id=0
25985          <idle>-0     (-----) [000] d..2 82315.363322: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
25986          <idle>-0     (-----) [001] .n.1 82315.363740: cpu_idle: state=4294967295 cpu_id=1
25987          <idle>-0     (-----) [001] d..2 82315.363750: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27557 next_prio=120
25988           <...>-27550 (-----) [000] d..1 82315.363765: sched_waking: comm=id.nn.benchmar pid=27557 prio=120 target_cpu=001
25989           <...>-27557 (-----) [001] d..2 82315.363772: sched_switch: prev_comm=id.nn.benchmar prev_pid=27557 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
25990          <idle>-0     (-----) [001] d..1 82315.363780: cpu_idle: state=0 cpu_id=1
25991           <...>-27550 (-----) [000] d..2 82315.363782: sched_blocked_reason: pid=27557 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
25992           <...>-27550 (-----) [000] d..2 82315.363789: sched_wakeup: comm=id.nn.benchmar pid=27557 prio=120 target_cpu=001
25993          <idle>-0     (-----) [001] .n.1 82315.363794: cpu_idle: state=4294967295 cpu_id=1
25994          <idle>-0     (-----) [001] d..2 82315.363802: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27557 next_prio=120
25995           <...>-27550 (-----) [000] d..2 82315.363814: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
25996           <...>-27557 (-----) [001] d..1 82315.363815: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
25997           <...>-27557 (-----) [001] d..2 82315.363824: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
25998           <...>-27557 (-----) [001] d..2 82315.363831: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
25999          <idle>-0     (-----) [000] d..2 82315.363838: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26000           <...>-27550 (-----) [000] d..1 82315.363850: sched_waking: comm=id.nn.benchmar pid=27557 prio=120 target_cpu=001
26001           <...>-27557 (-----) [001] d..2 82315.363858: sched_switch: prev_comm=id.nn.benchmar prev_pid=27557 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
26002           <...>-27550 (-----) [000] d..2 82315.363866: sched_blocked_reason: pid=27557 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26003          <idle>-0     (-----) [001] d..1 82315.363866: cpu_idle: state=0 cpu_id=1
26004           <...>-27550 (-----) [000] d..2 82315.363873: sched_wakeup: comm=id.nn.benchmar pid=27557 prio=120 target_cpu=001
26005          <idle>-0     (-----) [001] .n.1 82315.363878: cpu_idle: state=4294967295 cpu_id=1
26006          <idle>-0     (-----) [001] d..2 82315.363887: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27557 next_prio=120
26007           <...>-27550 (-----) [000] d..2 82315.363891: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26008           <...>-27557 (-----) [001] d..1 82315.363895: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26009          <idle>-0     (-----) [000] d..1 82315.363902: cpu_idle: state=0 cpu_id=0
26010           <...>-27557 (-----) [001] d..2 82315.363903: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26011           <...>-27557 (-----) [001] d..2 82315.363909: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26012          <idle>-0     (-----) [000] .n.1 82315.363915: cpu_idle: state=4294967295 cpu_id=0
26013          <idle>-0     (-----) [000] d..2 82315.363924: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26014           <...>-27557 (-----) [001] d..2 82315.363928: sched_switch: prev_comm=id.nn.benchmar prev_pid=27557 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
26015           <...>-27550 (-----) [000] d..1 82315.363935: sched_waking: comm=id.nn.benchmar pid=27557 prio=120 target_cpu=001
26016          <idle>-0     (-----) [001] d..1 82315.363936: cpu_idle: state=0 cpu_id=1
26017           <...>-27550 (-----) [000] d..2 82315.363942: sched_blocked_reason: pid=27557 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26018           <...>-27550 (-----) [000] d..2 82315.363948: sched_wakeup: comm=id.nn.benchmar pid=27557 prio=120 target_cpu=001
26019          <idle>-0     (-----) [001] .n.1 82315.363953: cpu_idle: state=4294967295 cpu_id=1
26020          <idle>-0     (-----) [001] d..2 82315.363962: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27557 next_prio=120
26021           <...>-27550 (-----) [000] d..2 82315.363965: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26022           <...>-27557 (-----) [001] d..1 82315.363966: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26023           <...>-27557 (-----) [001] d..2 82315.363974: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26024          <idle>-0     (-----) [000] d..1 82315.363975: cpu_idle: state=0 cpu_id=0
26025           <...>-27557 (-----) [001] d..2 82315.363980: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26026          <idle>-0     (-----) [000] .n.1 82315.363986: cpu_idle: state=4294967295 cpu_id=0
26027           <...>-27557 (-----) [001] d..2 82315.363997: sched_switch: prev_comm=id.nn.benchmar prev_pid=27557 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
26028          <idle>-0     (-----) [000] d..2 82315.363997: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26029           <...>-27550 (-----) [000] d..1 82315.364004: sched_waking: comm=id.nn.benchmar pid=27557 prio=120 target_cpu=001
26030          <idle>-0     (-----) [001] d..1 82315.364004: cpu_idle: state=0 cpu_id=1
26031           <...>-27550 (-----) [000] d..2 82315.364010: sched_blocked_reason: pid=27557 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26032           <...>-27550 (-----) [000] d..2 82315.364018: sched_wakeup: comm=id.nn.benchmar pid=27557 prio=120 target_cpu=001
26033          <idle>-0     (-----) [001] .n.1 82315.364022: cpu_idle: state=4294967295 cpu_id=1
26034          <idle>-0     (-----) [001] d..2 82315.364030: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27557 next_prio=120
26035           <...>-27557 (-----) [001] d..1 82315.364034: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26036           <...>-27550 (-----) [000] d..2 82315.364039: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26037           <...>-27557 (-----) [001] d..2 82315.364047: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26038          <idle>-0     (-----) [000] d..1 82315.364049: cpu_idle: state=0 cpu_id=0
26039           <...>-27557 (-----) [001] d..2 82315.364053: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26040          <idle>-0     (-----) [000] .n.1 82315.364059: cpu_idle: state=4294967295 cpu_id=0
26041          <idle>-0     (-----) [000] d..2 82315.364067: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26042           <...>-27550 (-----) [000] d..1 82315.364108: sched_waking: comm=id.nn.benchmar pid=27557 prio=120 target_cpu=001
26043           <...>-27557 (-----) [001] d..2 82315.364123: sched_switch: prev_comm=id.nn.benchmar prev_pid=27557 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
26044           <...>-27550 (-----) [000] d..2 82315.364133: sched_blocked_reason: pid=27557 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26045          <idle>-0     (-----) [001] d..1 82315.364133: cpu_idle: state=0 cpu_id=1
26046           <...>-27550 (-----) [000] d..2 82315.364139: sched_wakeup: comm=id.nn.benchmar pid=27557 prio=120 target_cpu=001
26047          <idle>-0     (-----) [001] .n.1 82315.364144: cpu_idle: state=4294967295 cpu_id=1
26048          <idle>-0     (-----) [001] d..2 82315.364153: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27557 next_prio=120
26049           <...>-27550 (-----) [000] d..2 82315.364161: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26050           <...>-27557 (-----) [001] d..1 82315.364163: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26051           <...>-27557 (-----) [001] d..2 82315.364171: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26052          <idle>-0     (-----) [000] d..1 82315.364171: cpu_idle: state=0 cpu_id=0
26053           <...>-27557 (-----) [001] d..2 82315.364178: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26054          <idle>-0     (-----) [000] .n.1 82315.364184: cpu_idle: state=4294967295 cpu_id=0
26055          <idle>-0     (-----) [000] d..2 82315.364192: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26056           <...>-27550 (-----) [000] d..2 82315.364251: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26057          <idle>-0     (-----) [000] d..1 82315.364262: cpu_idle: state=0 cpu_id=0
26058           <...>-27557 (-----) [001] d..1 82315.364267: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26059           <...>-27557 (-----) [001] d..2 82315.364277: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26060           <...>-27557 (-----) [001] d..2 82315.364285: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26061          <idle>-0     (-----) [000] .n.1 82315.364290: cpu_idle: state=4294967295 cpu_id=0
26062          <idle>-0     (-----) [000] d..2 82315.364298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26063           <...>-27557 (-----) [001] d..2 82315.364512: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
26064           <...>-27557 (-----) [001] dn.3 82315.364536: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
26065           <...>-27557 (-----) [001] d..2 82315.364544: sched_switch: prev_comm=ADB-JDWP Connec prev_pid=27557 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=960 next_prio=120
26066            adbd-960   (  960) [001] d..2 82315.364964: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=ADB-JDWP Connec next_pid=27557 next_prio=120
26067          <idle>-0     (-----) [002] .n.1 82315.365004: cpu_idle: state=4294967295 cpu_id=2
26068           <...>-27557 (-----) [001] d..2 82315.365014: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
26069          <idle>-0     (-----) [002] d..2 82315.365021: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27558 next_prio=120
26070           <...>-27557 (-----) [001] dn.3 82315.365025: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
26071           <...>-27557 (-----) [001] d..2 82315.365033: sched_switch: prev_comm=ADB-JDWP Connec prev_pid=27557 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=960 next_prio=120
26072           <...>-27550 (-----) [000] d..1 82315.365035: sched_waking: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26073           <...>-27558 (-----) [002] d..2 82315.365061: sched_switch: prev_comm=id.nn.benchmar prev_pid=27558 prev_prio=120 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
26074           <...>-27550 (-----) [000] d..2 82315.365071: sched_blocked_reason: pid=27558 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26075          <idle>-0     (-----) [002] d..1 82315.365073: cpu_idle: state=0 cpu_id=2
26076          <idle>-0     (-----) [002] .n.1 82315.365076: cpu_idle: state=4294967295 cpu_id=2
26077           <...>-27550 (-----) [000] d..2 82315.365078: sched_wakeup: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26078          <idle>-0     (-----) [002] d..2 82315.365087: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27558 next_prio=120
26079           <...>-27550 (-----) [000] d..2 82315.365090: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmar next_pid=27559 next_prio=120
26080           <...>-27558 (-----) [002] d.s2 82315.365132: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
26081           <...>-27558 (-----) [002] d.s3 82315.365162: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
26082           <...>-27559 (-----) [000] d..2 82315.365170: sched_switch: prev_comm=id.nn.benchmar prev_pid=27559 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
26083           <...>-27558 (-----) [002] d..1 82315.365182: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=000
26084           <...>-27558 (-----) [002] d..2 82315.365207: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26085           <...>-27558 (-----) [002] d..2 82315.365214: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26086           <...>-27558 (-----) [002] d..2 82315.365236: sched_switch: prev_comm=id.nn.benchmar prev_pid=27558 prev_prio=120 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
26087          <idle>-0     (-----) [002] d..1 82315.365248: cpu_idle: state=0 cpu_id=2
26088            adbd-960   (  960) [001] d..2 82315.365273: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=ADB-JDWP Connec next_pid=27557 next_prio=120
26089           <...>-27557 (-----) [001] d..2 82315.365318: sched_switch: prev_comm=ADB-JDWP Connec prev_pid=27557 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26090<...>-1054 ( 1054) [000] .... 82315.365340: clk_set_rate: l3_cluster0_vote_clk 844800000
26091          <idle>-0     (-----) [001] d..1 82315.365340: cpu_idle: state=0 cpu_id=1
26092<...>-1054 ( 1054) [000] .... 82315.365345: clk_set_rate: l3_clk 844800000
26093<...>-1054 ( 1054) [000] d..2 82315.365381: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmar next_pid=27559 next_prio=120
26094          <idle>-0     (-----) [003] .n.1 82315.365384: cpu_idle: state=4294967295 cpu_id=3
26095           <...>-27559 (-----) [000] d..2 82315.365400: sched_switch: prev_comm=id.nn.benchmar prev_pid=27559 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
26096          <idle>-0     (-----) [003] d..2 82315.365402: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26097           <...>-27550 (-----) [003] d..1 82315.365413: sched_waking: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26098          <idle>-0     (-----) [000] d..1 82315.365415: cpu_idle: state=0 cpu_id=0
26099           <...>-27550 (-----) [003] d..2 82315.365422: sched_blocked_reason: pid=27558 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26100           <...>-27550 (-----) [003] d..2 82315.365429: sched_wakeup: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26101          <idle>-0     (-----) [002] .n.1 82315.365435: cpu_idle: state=4294967295 cpu_id=2
26102          <idle>-0     (-----) [002] d..2 82315.365444: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27558 next_prio=120
26103           <...>-27558 (-----) [002] d..1 82315.365453: sched_waking: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26104           <...>-27550 (-----) [003] d..2 82315.365455: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26105           <...>-27558 (-----) [002] d..2 82315.365461: sched_blocked_reason: pid=27559 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26106          <idle>-0     (-----) [003] d..1 82315.365466: cpu_idle: state=0 cpu_id=3
26107           <...>-27558 (-----) [002] d..2 82315.365467: sched_wakeup: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26108          <idle>-0     (-----) [000] .n.1 82315.365473: cpu_idle: state=4294967295 cpu_id=0
26109          <idle>-0     (-----) [000] d..2 82315.365482: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27559 next_prio=120
26110           <...>-27558 (-----) [002] d..1 82315.365485: sched_waking: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26111           <...>-27559 (-----) [000] d..2 82315.365496: sched_switch: prev_comm=id.nn.benchmar prev_pid=27559 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
26112           <...>-27558 (-----) [002] d..2 82315.365503: sched_blocked_reason: pid=27559 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26113          <idle>-0     (-----) [000] d..1 82315.365503: cpu_idle: state=0 cpu_id=0
26114           <...>-27558 (-----) [002] d..2 82315.365508: sched_wakeup: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26115          <idle>-0     (-----) [000] .n.1 82315.365513: cpu_idle: state=4294967295 cpu_id=0
26116          <idle>-0     (-----) [000] d..2 82315.365520: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27559 next_prio=120
26117           <...>-27558 (-----) [002] d..2 82315.365527: sched_switch: prev_comm=id.nn.benchmar prev_pid=27558 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26118           <...>-27559 (-----) [000] d..1 82315.365533: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26119          <idle>-0     (-----) [002] d..1 82315.365537: cpu_idle: state=0 cpu_id=2
26120           <...>-27559 (-----) [000] d..2 82315.365541: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26121           <...>-27559 (-----) [000] d..2 82315.365547: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26122           <...>-27559 (-----) [000] d..1 82315.365551: sched_waking: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26123          <idle>-0     (-----) [003] .n.1 82315.365553: cpu_idle: state=4294967295 cpu_id=3
26124           <...>-27559 (-----) [000] d..2 82315.365557: sched_blocked_reason: pid=27558 iowait=0 caller=SyS_madvise+0xc84/0xcbc
26125          <idle>-0     (-----) [003] d..2 82315.365561: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26126           <...>-27559 (-----) [000] d..2 82315.365562: sched_wakeup: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26127          <idle>-0     (-----) [002] .n.1 82315.365568: cpu_idle: state=4294967295 cpu_id=2
26128          <idle>-0     (-----) [002] d..2 82315.365576: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27558 next_prio=120
26129           <...>-27559 (-----) [000] d..2 82315.365580: sched_switch: prev_comm=id.nn.benchmar prev_pid=27559 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
26130           <...>-27550 (-----) [003] d..2 82315.365582: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26131           <...>-27558 (-----) [002] d..1 82315.365586: sched_waking: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26132          <idle>-0     (-----) [000] d..1 82315.365588: cpu_idle: state=0 cpu_id=0
26133          <idle>-0     (-----) [003] d..1 82315.365590: cpu_idle: state=0 cpu_id=3
26134           <...>-27558 (-----) [002] d..2 82315.365592: sched_blocked_reason: pid=27559 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26135           <...>-27558 (-----) [002] d..2 82315.365599: sched_wakeup: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26136          <idle>-0     (-----) [000] .n.1 82315.365604: cpu_idle: state=4294967295 cpu_id=0
26137          <idle>-0     (-----) [000] d..2 82315.365612: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27559 next_prio=120
26138           <...>-27559 (-----) [000] d..1 82315.365621: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26139           <...>-27558 (-----) [002] d..2 82315.365627: sched_switch: prev_comm=id.nn.benchmar prev_pid=27558 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26140           <...>-27559 (-----) [000] d..2 82315.365627: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26141           <...>-27559 (-----) [000] d..2 82315.365634: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26142           <...>-27559 (-----) [000] d..1 82315.365636: sched_waking: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26143          <idle>-0     (-----) [002] d..1 82315.365638: cpu_idle: state=0 cpu_id=2
26144          <idle>-0     (-----) [003] .n.1 82315.365640: cpu_idle: state=4294967295 cpu_id=3
26145           <...>-27559 (-----) [000] d..2 82315.365641: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26146           <...>-27559 (-----) [000] d..2 82315.365647: sched_wakeup: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26147          <idle>-0     (-----) [003] d..2 82315.365647: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26148          <idle>-0     (-----) [002] .n.1 82315.365653: cpu_idle: state=4294967295 cpu_id=2
26149          <idle>-0     (-----) [002] d..2 82315.365660: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27558 next_prio=120
26150           <...>-27559 (-----) [000] d..2 82315.365666: sched_switch: prev_comm=id.nn.benchmar prev_pid=27559 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26151           <...>-27550 (-----) [003] d..2 82315.365668: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26152           <...>-27558 (-----) [002] d..1 82315.365670: sched_waking: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26153          <idle>-0     (-----) [003] d..1 82315.365675: cpu_idle: state=0 cpu_id=3
26154          <idle>-0     (-----) [000] d..1 82315.365675: cpu_idle: state=0 cpu_id=0
26155           <...>-27558 (-----) [002] d..2 82315.365677: sched_blocked_reason: pid=27559 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26156           <...>-27558 (-----) [002] d..2 82315.365684: sched_wakeup: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26157          <idle>-0     (-----) [000] .n.1 82315.365689: cpu_idle: state=4294967295 cpu_id=0
26158          <idle>-0     (-----) [000] d..2 82315.365697: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27559 next_prio=120
26159           <...>-27558 (-----) [002] d..2 82315.365701: sched_switch: prev_comm=id.nn.benchmar prev_pid=27558 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26160           <...>-27559 (-----) [000] d..1 82315.365702: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26161           <...>-27559 (-----) [000] d..2 82315.365709: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26162          <idle>-0     (-----) [002] d..1 82315.365710: cpu_idle: state=0 cpu_id=2
26163           <...>-27559 (-----) [000] d..2 82315.365714: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26164           <...>-27559 (-----) [000] d..1 82315.365717: sched_waking: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26165          <idle>-0     (-----) [003] .n.1 82315.365720: cpu_idle: state=4294967295 cpu_id=3
26166           <...>-27559 (-----) [000] d..2 82315.365723: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26167          <idle>-0     (-----) [003] d..2 82315.365727: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26168           <...>-27559 (-----) [000] d..2 82315.365728: sched_wakeup: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26169          <idle>-0     (-----) [002] .n.1 82315.365734: cpu_idle: state=4294967295 cpu_id=2
26170          <idle>-0     (-----) [002] d..2 82315.365741: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27558 next_prio=120
26171           <...>-27559 (-----) [000] d..2 82315.365745: sched_switch: prev_comm=id.nn.benchmar prev_pid=27559 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26172           <...>-27558 (-----) [002] d..1 82315.365747: sched_waking: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26173           <...>-27550 (-----) [003] d..2 82315.365748: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26174          <idle>-0     (-----) [000] d..1 82315.365753: cpu_idle: state=0 cpu_id=0
26175           <...>-27558 (-----) [002] d..2 82315.365753: sched_blocked_reason: pid=27559 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26176          <idle>-0     (-----) [003] d..1 82315.365755: cpu_idle: state=0 cpu_id=3
26177           <...>-27558 (-----) [002] d..2 82315.365759: sched_wakeup: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26178          <idle>-0     (-----) [000] .n.1 82315.365765: cpu_idle: state=4294967295 cpu_id=0
26179          <idle>-0     (-----) [000] d..2 82315.365772: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27559 next_prio=120
26180           <...>-27558 (-----) [002] d..2 82315.365775: sched_switch: prev_comm=id.nn.benchmar prev_pid=27558 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26181           <...>-27559 (-----) [000] d..1 82315.365777: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26182           <...>-27559 (-----) [000] d..2 82315.365783: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26183          <idle>-0     (-----) [002] d..1 82315.365784: cpu_idle: state=0 cpu_id=2
26184           <...>-27559 (-----) [000] d..2 82315.365789: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26185           <...>-27559 (-----) [000] d..1 82315.365792: sched_waking: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26186          <idle>-0     (-----) [003] .n.1 82315.365795: cpu_idle: state=4294967295 cpu_id=3
26187           <...>-27559 (-----) [000] d..2 82315.365797: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26188          <idle>-0     (-----) [003] d..2 82315.365802: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26189           <...>-27559 (-----) [000] d..2 82315.365803: sched_wakeup: comm=id.nn.benchmar pid=27558 prio=120 target_cpu=002
26190          <idle>-0     (-----) [002] .n.1 82315.365809: cpu_idle: state=4294967295 cpu_id=2
26191          <idle>-0     (-----) [002] d..2 82315.365817: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27558 next_prio=120
26192           <...>-27559 (-----) [000] d..2 82315.365824: sched_switch: prev_comm=id.nn.benchmar prev_pid=27559 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26193           <...>-27558 (-----) [002] d..1 82315.365831: sched_waking: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26194          <idle>-0     (-----) [000] d..1 82315.365832: cpu_idle: state=0 cpu_id=0
26195           <...>-27558 (-----) [002] d..2 82315.365843: sched_wakeup: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26196          <idle>-0     (-----) [000] .n.1 82315.365849: cpu_idle: state=4294967295 cpu_id=0
26197          <idle>-0     (-----) [000] d..2 82315.365856: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27559 next_prio=120
26198           <...>-27559 (-----) [000] d..1 82315.365868: sched_waking: comm=ReferenceQueueD pid=27558 prio=120 target_cpu=002
26199           <...>-27558 (-----) [002] d..2 82315.365880: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26200           <...>-27559 (-----) [000] d..2 82315.365887: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26201          <idle>-0     (-----) [002] d..1 82315.365889: cpu_idle: state=0 cpu_id=2
26202           <...>-27559 (-----) [000] d..2 82315.365894: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=120 target_cpu=002
26203          <idle>-0     (-----) [002] .n.1 82315.365899: cpu_idle: state=4294967295 cpu_id=2
26204          <idle>-0     (-----) [002] d..2 82315.365907: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=120
26205           <...>-27558 (-----) [002] d..1 82315.365913: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26206           <...>-27559 (-----) [000] d..2 82315.365924: sched_switch: prev_comm=id.nn.benchmar prev_pid=27559 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26207           <...>-27550 (-----) [003] d..2 82315.365927: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
26208          <idle>-0     (-----) [000] d..1 82315.365934: cpu_idle: state=0 cpu_id=0
26209           <...>-27558 (-----) [002] d..2 82315.365935: sched_blocked_reason: pid=27550 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26210          <idle>-0     (-----) [003] dn.1 82315.365938: cpu_idle: state=0 cpu_id=3
26211           <...>-27558 (-----) [002] d..2 82315.365941: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26212          <idle>-0     (-----) [003] .n.1 82315.365946: cpu_idle: state=4294967295 cpu_id=3
26213          <idle>-0     (-----) [003] d..2 82315.365954: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26214           <...>-27558 (-----) [002] d..2 82315.365957: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26215          <idle>-0     (-----) [002] d..1 82315.365965: cpu_idle: state=0 cpu_id=2
26216           <...>-27550 (-----) [003] d..1 82315.365989: sched_waking: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26217           <...>-27550 (-----) [003] d..2 82315.366000: sched_blocked_reason: pid=27559 iowait=0 caller=do_page_fault+0x4e0/0x594
26218           <...>-27550 (-----) [003] d..2 82315.366007: sched_wakeup: comm=id.nn.benchmar pid=27559 prio=120 target_cpu=000
26219           <...>-27550 (-----) [003] d..1 82315.366009: sched_waking: comm=ReferenceQueueD pid=27558 prio=120 target_cpu=002
26220          <idle>-0     (-----) [000] .n.1 82315.366012: cpu_idle: state=4294967295 cpu_id=0
26221           <...>-27550 (-----) [003] d..2 82315.366016: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26222          <idle>-0     (-----) [000] d..2 82315.366020: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27559 next_prio=120
26223           <...>-27550 (-----) [003] d..2 82315.366021: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=120 target_cpu=002
26224          <idle>-0     (-----) [002] .n.1 82315.366027: cpu_idle: state=4294967295 cpu_id=2
26225          <idle>-0     (-----) [002] d..2 82315.366035: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=120
26226           <...>-27550 (-----) [003] d..1 82315.366071: sched_waking: comm=ReferenceQueueD pid=27558 prio=120 target_cpu=002
26227           <...>-27558 (-----) [002] d..2 82315.366079: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26228           <...>-27550 (-----) [003] d..2 82315.366087: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26229          <idle>-0     (-----) [002] d..1 82315.366087: cpu_idle: state=0 cpu_id=2
26230           <...>-27550 (-----) [003] d..2 82315.366093: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=120 target_cpu=002
26231          <idle>-0     (-----) [002] .n.1 82315.366099: cpu_idle: state=4294967295 cpu_id=2
26232          <idle>-0     (-----) [002] d..2 82315.366106: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=120
26233           <...>-27558 (-----) [002] d..1 82315.366110: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26234           <...>-27550 (-----) [003] d..2 82315.366113: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
26235           <...>-27559 (-----) [000] d..2 82315.366119: sched_switch: prev_comm=FinalizerDaemon prev_pid=27559 prev_prio=124 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26236           <...>-27558 (-----) [002] d..2 82315.366121: sched_blocked_reason: pid=27550 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26237          <idle>-0     (-----) [003] dn.1 82315.366124: cpu_idle: state=0 cpu_id=3
26238           <...>-27558 (-----) [002] d..2 82315.366127: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26239          <idle>-0     (-----) [003] .n.1 82315.366131: cpu_idle: state=4294967295 cpu_id=3
26240          <idle>-0     (-----) [000] d..1 82315.366131: cpu_idle: state=0 cpu_id=0
26241          <idle>-0     (-----) [003] d..2 82315.366140: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26242           <...>-27550 (-----) [003] d..1 82315.366147: sched_waking: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=000
26243           <...>-27550 (-----) [003] d..2 82315.366155: sched_blocked_reason: pid=27559 iowait=0 caller=do_page_fault+0x4e0/0x594
26244           <...>-27558 (-----) [002] d..2 82315.366157: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26245           <...>-27550 (-----) [003] d..2 82315.366162: sched_wakeup: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=000
26246           <...>-27550 (-----) [003] d..1 82315.366163: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26247          <idle>-0     (-----) [002] d..1 82315.366165: cpu_idle: state=0 cpu_id=2
26248          <idle>-0     (-----) [000] .n.1 82315.366168: cpu_idle: state=4294967295 cpu_id=0
26249           <...>-27550 (-----) [003] d..2 82315.366169: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26250           <...>-27550 (-----) [003] d..2 82315.366175: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26251          <idle>-0     (-----) [000] d..2 82315.366176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=27559 next_prio=124
26252          <idle>-0     (-----) [002] .n.1 82315.366180: cpu_idle: state=4294967295 cpu_id=2
26253          <idle>-0     (-----) [002] d..2 82315.366187: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26254           <...>-27550 (-----) [003] d..2 82315.366191: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26255           <...>-27558 (-----) [002] d..1 82315.366194: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26256          <idle>-0     (-----) [003] d..1 82315.366200: cpu_idle: state=0 cpu_id=3
26257           <...>-27558 (-----) [002] d..2 82315.366201: sched_blocked_reason: pid=27550 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26258           <...>-27559 (-----) [000] d..2 82315.366202: sched_switch: prev_comm=FinalizerDaemon prev_pid=27559 prev_prio=124 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26259           <...>-27558 (-----) [002] d..2 82315.366207: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26260          <idle>-0     (-----) [000] d..1 82315.366210: cpu_idle: state=0 cpu_id=0
26261          <idle>-0     (-----) [003] .n.1 82315.366212: cpu_idle: state=4294967295 cpu_id=3
26262          <idle>-0     (-----) [003] d..2 82315.366220: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26263           <...>-27550 (-----) [003] d..1 82315.366223: sched_waking: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=000
26264           <...>-27558 (-----) [002] d..2 82315.366230: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26265           <...>-27550 (-----) [003] d..2 82315.366230: sched_blocked_reason: pid=27559 iowait=0 caller=do_page_fault+0x4e0/0x594
26266           <...>-27550 (-----) [003] d..2 82315.366236: sched_wakeup: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=000
26267          <idle>-0     (-----) [002] d..1 82315.366238: cpu_idle: state=0 cpu_id=2
26268           <...>-27550 (-----) [003] d..1 82315.366239: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26269          <idle>-0     (-----) [000] .n.1 82315.366241: cpu_idle: state=4294967295 cpu_id=0
26270           <...>-27550 (-----) [003] d..2 82315.366244: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26271          <idle>-0     (-----) [000] d..2 82315.366249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=27559 next_prio=124
26272           <...>-27550 (-----) [003] d..2 82315.366249: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26273          <idle>-0     (-----) [002] .n.1 82315.366255: cpu_idle: state=4294967295 cpu_id=2
26274          <idle>-0     (-----) [002] d..2 82315.366263: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26275           <...>-27559 (-----) [000] d..1 82315.366272: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26276           <...>-27550 (-----) [003] d..2 82315.366287: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
26277           <...>-27559 (-----) [000] d..2 82315.366296: sched_blocked_reason: pid=27550 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26278          <idle>-0     (-----) [003] dn.1 82315.366299: cpu_idle: state=0 cpu_id=3
26279          <idle>-0     (-----) [003] .n.1 82315.366302: cpu_idle: state=4294967295 cpu_id=3
26280           <...>-27559 (-----) [000] d..2 82315.366305: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26281          <idle>-0     (-----) [003] d..2 82315.366313: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26282           <...>-27558 (-----) [002] d..2 82315.366319: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26283           <...>-27550 (-----) [003] d..1 82315.366325: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26284           <...>-27559 (-----) [000] d..2 82315.366326: sched_switch: prev_comm=FinalizerDaemon prev_pid=27559 prev_prio=124 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26285          <idle>-0     (-----) [002] d..1 82315.366327: cpu_idle: state=0 cpu_id=2
26286           <...>-27550 (-----) [003] d..2 82315.366333: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26287          <idle>-0     (-----) [000] d..1 82315.366335: cpu_idle: state=0 cpu_id=0
26288           <...>-27550 (-----) [003] d..2 82315.366339: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26289           <...>-27550 (-----) [003] d..1 82315.366341: sched_waking: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=000
26290          <idle>-0     (-----) [002] .n.1 82315.366344: cpu_idle: state=4294967295 cpu_id=2
26291           <...>-27550 (-----) [003] d..2 82315.366347: sched_blocked_reason: pid=27559 iowait=0 caller=do_page_fault+0x4e0/0x594
26292          <idle>-0     (-----) [002] d..2 82315.366352: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26293           <...>-27550 (-----) [003] d..2 82315.366353: sched_wakeup: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=000
26294          <idle>-0     (-----) [000] .n.1 82315.366360: cpu_idle: state=4294967295 cpu_id=0
26295          <idle>-0     (-----) [000] d..2 82315.366368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=27559 next_prio=124
26296           <...>-27550 (-----) [003] d..2 82315.366370: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26297           <...>-27558 (-----) [002] d..2 82315.366371: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26298           <...>-27559 (-----) [000] d..1 82315.366375: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26299          <idle>-0     (-----) [003] d..1 82315.366378: cpu_idle: state=0 cpu_id=3
26300          <idle>-0     (-----) [002] d..1 82315.366378: cpu_idle: state=0 cpu_id=2
26301           <...>-27559 (-----) [000] d..2 82315.366382: sched_blocked_reason: pid=27550 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26302           <...>-27559 (-----) [000] d..2 82315.366388: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26303          <idle>-0     (-----) [003] .n.1 82315.366393: cpu_idle: state=4294967295 cpu_id=3
26304          <idle>-0     (-----) [003] d..2 82315.366401: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26305           <...>-27550 (-----) [003] d..1 82315.366405: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26306           <...>-27550 (-----) [003] d..2 82315.366412: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26307           <...>-27550 (-----) [003] d..2 82315.366418: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26308           <...>-27559 (-----) [000] d..2 82315.366418: sched_switch: prev_comm=FinalizerDaemon prev_pid=27559 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26309          <idle>-0     (-----) [002] .n.1 82315.366423: cpu_idle: state=4294967295 cpu_id=2
26310          <idle>-0     (-----) [000] d..1 82315.366427: cpu_idle: state=0 cpu_id=0
26311          <idle>-0     (-----) [002] d..2 82315.366430: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26312           <...>-27550 (-----) [003] d..2 82315.366434: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
26313           <...>-27558 (-----) [002] d..1 82315.366437: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26314          <idle>-0     (-----) [003] d..1 82315.366443: cpu_idle: state=0 cpu_id=3
26315           <...>-27558 (-----) [002] d..2 82315.366444: sched_blocked_reason: pid=27550 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26316           <...>-27558 (-----) [002] d..2 82315.366450: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26317          <idle>-0     (-----) [003] .n.1 82315.366455: cpu_idle: state=4294967295 cpu_id=3
26318          <idle>-0     (-----) [003] d..2 82315.366463: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26319           <...>-27558 (-----) [002] d..2 82315.366468: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26320           <...>-27550 (-----) [003] d..1 82315.366474: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26321          <idle>-0     (-----) [002] d..1 82315.366476: cpu_idle: state=0 cpu_id=2
26322           <...>-27550 (-----) [003] d..2 82315.366480: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26323           <...>-27550 (-----) [003] d..2 82315.366487: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26324          <idle>-0     (-----) [002] .n.1 82315.366493: cpu_idle: state=4294967295 cpu_id=2
26325          <idle>-0     (-----) [002] d..2 82315.366500: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26326           <...>-27550 (-----) [003] d..2 82315.366504: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26327           <...>-27558 (-----) [002] d..1 82315.366506: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26328           <...>-27558 (-----) [002] d..2 82315.366513: sched_blocked_reason: pid=27550 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26329          <idle>-0     (-----) [003] d..1 82315.366513: cpu_idle: state=0 cpu_id=3
26330           <...>-27558 (-----) [002] d..2 82315.366519: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26331          <idle>-0     (-----) [003] .n.1 82315.366525: cpu_idle: state=4294967295 cpu_id=3
26332          <idle>-0     (-----) [003] d..2 82315.366533: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26333           <...>-27558 (-----) [002] d..2 82315.366535: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26334           <...>-27550 (-----) [003] d..1 82315.366536: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26335           <...>-27550 (-----) [003] d..2 82315.366543: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26336          <idle>-0     (-----) [002] d..1 82315.366543: cpu_idle: state=0 cpu_id=2
26337           <...>-27550 (-----) [003] d..2 82315.366549: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26338          <idle>-0     (-----) [002] .n.1 82315.366555: cpu_idle: state=4294967295 cpu_id=2
26339          <idle>-0     (-----) [002] d..2 82315.366562: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26340          <idle>-0     (-----) [000] .n.1 82315.366601: cpu_idle: state=4294967295 cpu_id=0
26341           <...>-27550 (-----) [003] d..1 82315.366603: sched_waking: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=000
26342          <idle>-0     (-----) [000] d..2 82315.366610: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27560 next_prio=120
26343           <...>-27558 (-----) [002] d..1 82315.366619: sched_waking: comm=id.nn.benchmar pid=27560 prio=120 target_cpu=000
26344           <...>-27560 (-----) [000] d..2 82315.366630: sched_switch: prev_comm=id.nn.benchmar prev_pid=27560 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
26345          <idle>-0     (-----) [000] d..1 82315.366638: cpu_idle: state=0 cpu_id=0
26346           <...>-27550 (-----) [003] d..2 82315.366644: sched_wakeup: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=001
26347           <...>-27558 (-----) [002] d..2 82315.366644: sched_blocked_reason: pid=27560 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26348          <idle>-0     (-----) [001] .n.1 82315.366649: cpu_idle: state=4294967295 cpu_id=1
26349           <...>-27558 (-----) [002] d..2 82315.366650: sched_wakeup: comm=id.nn.benchmar pid=27560 prio=120 target_cpu=000
26350          <idle>-0     (-----) [000] .n.1 82315.366655: cpu_idle: state=4294967295 cpu_id=0
26351          <idle>-0     (-----) [001] d..2 82315.366656: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=27559 next_prio=124
26352          <idle>-0     (-----) [000] d..2 82315.366662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27560 next_prio=120
26353           <...>-27550 (-----) [003] d..2 82315.366666: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26354           <...>-27558 (-----) [002] d..2 82315.366667: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26355           <...>-27560 (-----) [000] d..1 82315.366677: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26356          <idle>-0     (-----) [003] d..1 82315.366679: cpu_idle: state=0 cpu_id=3
26357          <idle>-0     (-----) [002] d..1 82315.366679: cpu_idle: state=0 cpu_id=2
26358           <...>-27560 (-----) [000] d..2 82315.366684: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26359           <...>-27560 (-----) [000] d..2 82315.366690: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26360           <...>-27560 (-----) [000] d..1 82315.366693: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26361          <idle>-0     (-----) [003] .n.1 82315.366696: cpu_idle: state=4294967295 cpu_id=3
26362           <...>-27560 (-----) [000] d..2 82315.366698: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26363          <idle>-0     (-----) [003] d..2 82315.366704: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26364           <...>-27560 (-----) [000] d..2 82315.366704: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26365          <idle>-0     (-----) [002] .n.1 82315.366710: cpu_idle: state=4294967295 cpu_id=2
26366           <...>-27559 (-----) [001] d..2 82315.366713: sched_switch: prev_comm=FinalizerDaemon prev_pid=27559 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26367           <...>-27560 (-----) [000] d..2 82315.366714: sched_switch: prev_comm=id.nn.benchmar prev_pid=27560 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
26368          <idle>-0     (-----) [002] d..2 82315.366718: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26369          <idle>-0     (-----) [001] d..1 82315.366720: cpu_idle: state=0 cpu_id=1
26370          <idle>-0     (-----) [000] d..1 82315.366723: cpu_idle: state=0 cpu_id=0
26371           <...>-27558 (-----) [002] d..1 82315.366725: sched_waking: comm=id.nn.benchmar pid=27560 prio=120 target_cpu=000
26372           <...>-27550 (-----) [003] d..2 82315.366728: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26373           <...>-27558 (-----) [002] d..2 82315.366733: sched_blocked_reason: pid=27560 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26374          <idle>-0     (-----) [003] d..1 82315.366737: cpu_idle: state=0 cpu_id=3
26375           <...>-27558 (-----) [002] d..2 82315.366739: sched_wakeup: comm=id.nn.benchmar pid=27560 prio=120 target_cpu=000
26376          <idle>-0     (-----) [000] .n.1 82315.366744: cpu_idle: state=4294967295 cpu_id=0
26377          <idle>-0     (-----) [000] d..2 82315.366752: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27560 next_prio=120
26378           <...>-27558 (-----) [002] d..2 82315.366757: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26379           <...>-27560 (-----) [000] d..1 82315.366760: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26380          <idle>-0     (-----) [002] d..1 82315.366765: cpu_idle: state=0 cpu_id=2
26381           <...>-27560 (-----) [000] d..2 82315.366766: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26382           <...>-27560 (-----) [000] d..2 82315.366772: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26383           <...>-27560 (-----) [000] d..1 82315.366774: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26384          <idle>-0     (-----) [003] .n.1 82315.366778: cpu_idle: state=4294967295 cpu_id=3
26385           <...>-27560 (-----) [000] d..2 82315.366780: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26386          <idle>-0     (-----) [003] d..2 82315.366785: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26387           <...>-27560 (-----) [000] d..2 82315.366785: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26388          <idle>-0     (-----) [002] .n.1 82315.366791: cpu_idle: state=4294967295 cpu_id=2
26389           <...>-27560 (-----) [000] d..2 82315.366796: sched_switch: prev_comm=id.nn.benchmar prev_pid=27560 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26390          <idle>-0     (-----) [002] d..2 82315.366798: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26391          <idle>-0     (-----) [000] d..1 82315.366805: cpu_idle: state=0 cpu_id=0
26392           <...>-27558 (-----) [002] d..1 82315.366805: sched_waking: comm=id.nn.benchmar pid=27560 prio=120 target_cpu=000
26393           <...>-27550 (-----) [003] d..2 82315.366807: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26394           <...>-27558 (-----) [002] d..2 82315.366811: sched_blocked_reason: pid=27560 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26395          <idle>-0     (-----) [003] d..1 82315.366815: cpu_idle: state=0 cpu_id=3
26396           <...>-27558 (-----) [002] d..2 82315.366818: sched_wakeup: comm=id.nn.benchmar pid=27560 prio=120 target_cpu=000
26397          <idle>-0     (-----) [000] .n.1 82315.366823: cpu_idle: state=4294967295 cpu_id=0
26398          <idle>-0     (-----) [000] d..2 82315.366831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27560 next_prio=120
26399           <...>-27558 (-----) [002] d..2 82315.366833: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26400           <...>-27560 (-----) [000] d..1 82315.366836: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26401          <idle>-0     (-----) [002] d..1 82315.366842: cpu_idle: state=0 cpu_id=2
26402           <...>-27560 (-----) [000] d..2 82315.366843: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26403           <...>-27560 (-----) [000] d..2 82315.366848: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26404           <...>-27560 (-----) [000] d..1 82315.366851: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26405          <idle>-0     (-----) [003] .n.1 82315.366854: cpu_idle: state=4294967295 cpu_id=3
26406           <...>-27560 (-----) [000] d..2 82315.366856: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26407          <idle>-0     (-----) [003] d..2 82315.366861: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26408           <...>-27560 (-----) [000] d..2 82315.366862: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26409          <idle>-0     (-----) [002] .n.1 82315.366867: cpu_idle: state=4294967295 cpu_id=2
26410           <...>-27560 (-----) [000] d..2 82315.366870: sched_switch: prev_comm=id.nn.benchmar prev_pid=27560 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26411          <idle>-0     (-----) [002] d..2 82315.366875: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26412          <idle>-0     (-----) [000] d..1 82315.366878: cpu_idle: state=0 cpu_id=0
26413           <...>-27558 (-----) [002] d..1 82315.366880: sched_waking: comm=id.nn.benchmar pid=27560 prio=120 target_cpu=000
26414           <...>-27550 (-----) [003] d..2 82315.366881: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26415           <...>-27558 (-----) [002] d..2 82315.366887: sched_blocked_reason: pid=27560 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26416          <idle>-0     (-----) [003] d..1 82315.366888: cpu_idle: state=0 cpu_id=3
26417           <...>-27558 (-----) [002] d..2 82315.366893: sched_wakeup: comm=id.nn.benchmar pid=27560 prio=120 target_cpu=000
26418          <idle>-0     (-----) [000] .n.1 82315.366898: cpu_idle: state=4294967295 cpu_id=0
26419          <idle>-0     (-----) [000] d..2 82315.366906: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27560 next_prio=120
26420           <...>-27558 (-----) [002] d..2 82315.366909: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26421           <...>-27560 (-----) [000] d..1 82315.366910: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26422           <...>-27560 (-----) [000] d..2 82315.366916: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26423          <idle>-0     (-----) [002] d..1 82315.366917: cpu_idle: state=0 cpu_id=2
26424           <...>-27560 (-----) [000] d..2 82315.366922: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26425           <...>-27560 (-----) [000] d..1 82315.366924: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26426          <idle>-0     (-----) [003] .n.1 82315.366927: cpu_idle: state=4294967295 cpu_id=3
26427           <...>-27560 (-----) [000] d..2 82315.366929: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26428          <idle>-0     (-----) [003] d..2 82315.366934: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26429           <...>-27560 (-----) [000] d..2 82315.366935: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26430          <idle>-0     (-----) [002] .n.1 82315.366941: cpu_idle: state=4294967295 cpu_id=2
26431           <...>-27560 (-----) [000] d..2 82315.366946: sched_switch: prev_comm=id.nn.benchmar prev_pid=27560 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
26432          <idle>-0     (-----) [002] d..2 82315.366948: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26433          <idle>-0     (-----) [000] d..1 82315.366954: cpu_idle: state=0 cpu_id=0
26434           <...>-27558 (-----) [002] d..1 82315.366954: sched_waking: comm=id.nn.benchmar pid=27560 prio=120 target_cpu=000
26435           <...>-27550 (-----) [003] d..2 82315.366954: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26436           <...>-27558 (-----) [002] d..2 82315.366961: sched_blocked_reason: pid=27560 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26437          <idle>-0     (-----) [003] d..1 82315.366962: cpu_idle: state=0 cpu_id=3
26438           <...>-27558 (-----) [002] d..2 82315.366966: sched_wakeup: comm=id.nn.benchmar pid=27560 prio=120 target_cpu=000
26439          <idle>-0     (-----) [000] .n.1 82315.366972: cpu_idle: state=4294967295 cpu_id=0
26440          <idle>-0     (-----) [000] d..2 82315.366979: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27560 next_prio=120
26441           <...>-27558 (-----) [002] d..2 82315.366982: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
26442           <...>-27560 (-----) [000] d..1 82315.366989: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26443          <idle>-0     (-----) [002] d..1 82315.366990: cpu_idle: state=0 cpu_id=2
26444           <...>-27560 (-----) [000] d..2 82315.366996: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26445           <...>-27560 (-----) [000] d..2 82315.367002: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26446           <...>-27560 (-----) [000] d..1 82315.367004: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26447          <idle>-0     (-----) [003] .n.1 82315.367007: cpu_idle: state=4294967295 cpu_id=3
26448           <...>-27560 (-----) [000] d..2 82315.367009: sched_blocked_reason: pid=27558 iowait=0 caller=do_page_fault+0x4e0/0x594
26449          <idle>-0     (-----) [003] d..2 82315.367014: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26450           <...>-27560 (-----) [000] d..2 82315.367014: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
26451          <idle>-0     (-----) [002] .n.1 82315.367020: cpu_idle: state=4294967295 cpu_id=2
26452          <idle>-0     (-----) [002] d..2 82315.367028: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
26453           <...>-27558 (-----) [002] d..2 82315.367063: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26454          <idle>-0     (-----) [002] d..1 82315.367071: cpu_idle: state=0 cpu_id=2
26455           <...>-27560 (-----) [000] d..2 82315.367135: sched_switch: prev_comm=FinalizerWatchd prev_pid=27560 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26456          <idle>-0     (-----) [000] d..1 82315.367150: cpu_idle: state=0 cpu_id=0
26457          <idle>-0     (-----) [000] .n.1 82315.367326: cpu_idle: state=4294967295 cpu_id=0
26458          <idle>-0     (-----) [000] d..2 82315.367336: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27561 next_prio=120
26459           <...>-27550 (-----) [003] d..1 82315.367347: sched_waking: comm=id.nn.benchmar pid=27561 prio=120 target_cpu=000
26460           <...>-27561 (-----) [000] d..2 82315.367350: sched_switch: prev_comm=id.nn.benchmar prev_pid=27561 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
26461          <idle>-0     (-----) [000] d..1 82315.367358: cpu_idle: state=0 cpu_id=0
26462           <...>-27550 (-----) [003] d..2 82315.367358: sched_blocked_reason: pid=27561 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26463           <...>-27550 (-----) [003] d..2 82315.367365: sched_wakeup: comm=id.nn.benchmar pid=27561 prio=120 target_cpu=000
26464          <idle>-0     (-----) [000] .n.1 82315.367370: cpu_idle: state=4294967295 cpu_id=0
26465          <idle>-0     (-----) [000] d..2 82315.367377: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27561 next_prio=120
26466           <...>-27550 (-----) [003] d..2 82315.367386: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26467           <...>-27561 (-----) [000] d..1 82315.367390: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26468           <...>-27561 (-----) [000] d..2 82315.367399: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26469          <idle>-0     (-----) [003] d..1 82315.367400: cpu_idle: state=0 cpu_id=3
26470          <idle>-0     (-----) [003] .n.1 82315.367404: cpu_idle: state=4294967295 cpu_id=3
26471           <...>-27561 (-----) [000] d..2 82315.367405: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26472           <...>-27561 (-----) [000] d..2 82315.367415: sched_switch: prev_comm=id.nn.benchmar prev_pid=27561 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
26473          <idle>-0     (-----) [003] d..2 82315.367417: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26474          <idle>-0     (-----) [000] d..1 82315.367423: cpu_idle: state=0 cpu_id=0
26475           <...>-27550 (-----) [003] d..1 82315.367423: sched_waking: comm=id.nn.benchmar pid=27561 prio=120 target_cpu=000
26476           <...>-27550 (-----) [003] d..2 82315.367430: sched_blocked_reason: pid=27561 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26477           <...>-27550 (-----) [003] d..2 82315.367436: sched_wakeup: comm=id.nn.benchmar pid=27561 prio=120 target_cpu=000
26478          <idle>-0     (-----) [000] .n.1 82315.367441: cpu_idle: state=4294967295 cpu_id=0
26479          <idle>-0     (-----) [000] d..2 82315.367449: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27561 next_prio=120
26480           <...>-27550 (-----) [003] d..2 82315.367453: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26481           <...>-27561 (-----) [000] d..1 82315.367457: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26482          <idle>-0     (-----) [003] d..1 82315.367462: cpu_idle: state=0 cpu_id=3
26483           <...>-27561 (-----) [000] d..2 82315.367464: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26484           <...>-27561 (-----) [000] d..2 82315.367470: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26485          <idle>-0     (-----) [003] .n.1 82315.367475: cpu_idle: state=4294967295 cpu_id=3
26486           <...>-27561 (-----) [000] d..2 82315.367482: sched_switch: prev_comm=id.nn.benchmar prev_pid=27561 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26487          <idle>-0     (-----) [003] d..2 82315.367483: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26488          <idle>-0     (-----) [000] d..1 82315.367489: cpu_idle: state=0 cpu_id=0
26489           <...>-27550 (-----) [003] d..1 82315.367490: sched_waking: comm=id.nn.benchmar pid=27561 prio=120 target_cpu=000
26490           <...>-27550 (-----) [003] d..2 82315.367497: sched_blocked_reason: pid=27561 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26491           <...>-27550 (-----) [003] d..2 82315.367503: sched_wakeup: comm=id.nn.benchmar pid=27561 prio=120 target_cpu=000
26492          <idle>-0     (-----) [000] .n.1 82315.367508: cpu_idle: state=4294967295 cpu_id=0
26493          <idle>-0     (-----) [000] d..2 82315.367516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27561 next_prio=120
26494           <...>-27550 (-----) [003] d..2 82315.367519: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26495           <...>-27561 (-----) [000] d..1 82315.367520: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26496           <...>-27561 (-----) [000] d..2 82315.367527: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26497          <idle>-0     (-----) [003] d..1 82315.367528: cpu_idle: state=0 cpu_id=3
26498           <...>-27561 (-----) [000] d..2 82315.367533: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26499          <idle>-0     (-----) [003] .n.1 82315.367538: cpu_idle: state=4294967295 cpu_id=3
26500           <...>-27561 (-----) [000] d..2 82315.367542: sched_switch: prev_comm=id.nn.benchmar prev_pid=27561 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
26501          <idle>-0     (-----) [003] d..2 82315.367547: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26502          <idle>-0     (-----) [000] d..1 82315.367550: cpu_idle: state=0 cpu_id=0
26503           <...>-27550 (-----) [003] d..1 82315.367553: sched_waking: comm=id.nn.benchmar pid=27561 prio=120 target_cpu=000
26504           <...>-27550 (-----) [003] d..2 82315.367560: sched_blocked_reason: pid=27561 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26505           <...>-27550 (-----) [003] d..2 82315.367567: sched_wakeup: comm=id.nn.benchmar pid=27561 prio=120 target_cpu=000
26506          <idle>-0     (-----) [000] .n.1 82315.367572: cpu_idle: state=4294967295 cpu_id=0
26507          <idle>-0     (-----) [000] d..2 82315.367579: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27561 next_prio=120
26508           <...>-27550 (-----) [003] d..2 82315.367580: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26509           <...>-27561 (-----) [000] d..1 82315.367583: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26510           <...>-27561 (-----) [000] d..2 82315.367589: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26511          <idle>-0     (-----) [003] d..1 82315.367589: cpu_idle: state=0 cpu_id=3
26512           <...>-27561 (-----) [000] d..2 82315.367595: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26513          <idle>-0     (-----) [003] .n.1 82315.367600: cpu_idle: state=4294967295 cpu_id=3
26514          <idle>-0     (-----) [003] d..2 82315.367608: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26515           <...>-27561 (-----) [000] d..2 82315.367608: sched_switch: prev_comm=id.nn.benchmar prev_pid=27561 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
26516          <idle>-0     (-----) [000] d..1 82315.367616: cpu_idle: state=0 cpu_id=0
26517           <...>-27550 (-----) [003] d..1 82315.367622: sched_waking: comm=id.nn.benchmar pid=27561 prio=120 target_cpu=000
26518           <...>-27550 (-----) [003] d..2 82315.367628: sched_blocked_reason: pid=27561 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26519           <...>-27550 (-----) [003] d..2 82315.367634: sched_wakeup: comm=id.nn.benchmar pid=27561 prio=120 target_cpu=000
26520          <idle>-0     (-----) [000] .n.1 82315.367639: cpu_idle: state=4294967295 cpu_id=0
26521           <...>-27550 (-----) [003] d..2 82315.367646: sched_switch: prev_comm=id.nn.benchmar prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26522          <idle>-0     (-----) [000] d..2 82315.367647: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27561 next_prio=120
26523          <idle>-0     (-----) [003] d..1 82315.367655: cpu_idle: state=0 cpu_id=3
26524           <...>-27561 (-----) [000] d..1 82315.367656: sched_waking: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26525           <...>-27561 (-----) [000] d..2 82315.367663: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26526           <...>-27561 (-----) [000] d..2 82315.367669: sched_wakeup: comm=id.nn.benchmar pid=27550 prio=120 target_cpu=003
26527          <idle>-0     (-----) [003] .n.1 82315.367675: cpu_idle: state=4294967295 cpu_id=3
26528          <idle>-0     (-----) [003] d..2 82315.367682: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmar next_pid=27550 next_prio=120
26529           <...>-27561 (-----) [000] d..2 82315.367782: sched_switch: prev_comm=HeapTaskDaemon prev_pid=27561 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26530          <idle>-0     (-----) [000] d..1 82315.367795: cpu_idle: state=0 cpu_id=0
26531          <idle>-0     (-----) [002] ...1 82315.368184: cpu_idle: state=4294967295 cpu_id=2
26532          <idle>-0     (-----) [002] d..1 82315.368187: cpu_idle: state=2 cpu_id=2
26533          <idle>-0     (-----) [001] d.s2 82315.368462: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
26534          <idle>-0     (-----) [001] dns3 82315.368475: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
26535          <idle>-0     (-----) [001] .n.1 82315.368487: cpu_idle: state=4294967295 cpu_id=1
26536          <idle>-0     (-----) [001] d..2 82315.368494: 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
26537     rcu_preempt-7     (    7) [001] d..2 82315.368521: 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
26538          <idle>-0     (-----) [001] d..1 82315.368531: cpu_idle: state=2 cpu_id=1
26539          <idle>-0     (-----) [000] ...1 82315.368909: cpu_idle: state=4294967295 cpu_id=0
26540          <idle>-0     (-----) [000] d..1 82315.368912: cpu_idle: state=2 cpu_id=0
26541           <...>-27550 (-----) [003] d.H2 82315.371899: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
26542           <...>-27550 (-----) [003] d.H3 82315.371933: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
26543           <...>-27550 (-----) [003] d.s2 82315.371939: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
26544           <...>-27550 (-----) [003] d.s3 82315.371957: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
26545          <idle>-0     (-----) [002] .n.1 82315.372096: cpu_idle: state=4294967295 cpu_id=2
26546          <idle>-0     (-----) [000] ...1 82315.372099: cpu_idle: state=4294967295 cpu_id=0
26547          <idle>-0     (-----) [000] d..1 82315.372107: cpu_idle: state=0 cpu_id=0
26548          <idle>-0     (-----) [002] d..2 82315.372111: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
26549          <idle>-0     (-----) [001] .n.1 82315.372139: cpu_idle: state=4294967295 cpu_id=1
26550         sugov:0-576   (  576) [002] .... 82315.372149: clk_set_rate: pwrcl_clk 1420800000
26551          <idle>-0     (-----) [001] d..2 82315.372156: 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
26552         sugov:0-576   (  576) [002] .... 82315.372162: clk_set_rate: cpu3_pwrcl_clk 1324800000
26553     rcu_preempt-7     (    7) [001] d..2 82315.372164: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
26554         sugov:0-576   (  576) [002] .... 82315.372173: clk_set_rate: cpu2_pwrcl_clk 1324800000
26555         sugov:0-576   (  576) [002] .... 82315.372180: clk_set_rate: cpu1_pwrcl_clk 1324800000
26556     rcu_preempt-7     (    7) [001] d..3 82315.372186: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
26557         sugov:0-576   (  576) [002] .... 82315.372187: clk_set_rate: cpu0_pwrcl_clk 1420800000
26558         sugov:0-576   (  576) [002] .... 82315.372195: cpu_frequency: state=1420800 cpu_id=0
26559     rcu_preempt-7     (    7) [001] d..2 82315.372213: 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
26560         sugov:0-576   (  576) [002] .... 82315.372221: cpu_frequency: state=1420800 cpu_id=1
26561         sugov:0-576   (  576) [002] .... 82315.372224: cpu_frequency: state=1420800 cpu_id=2
26562          <idle>-0     (-----) [001] d..1 82315.372226: cpu_idle: state=0 cpu_id=1
26563         sugov:0-576   (  576) [002] .... 82315.372226: cpu_frequency: state=1420800 cpu_id=3
26564         sugov:0-576   (  576) [002] d..2 82315.372246: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
26565         rcuop/0-10    (   10) [002] d..2 82315.372256: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
26566         rcuop/0-10    (   10) [002] d..3 82315.372292: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
26567         rcuop/0-10    (   10) [002] d..2 82315.372351: 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
26568         rcuop/1-21    (   21) [002] d..2 82315.372435: 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
26569          <idle>-0     (-----) [002] d..1 82315.372446: cpu_idle: state=0 cpu_id=2
26570          <idle>-0     (-----) [006] .n.1 82315.372908: cpu_idle: state=4294967295 cpu_id=6
26571          <idle>-0     (-----) [006] d..2 82315.372932: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27562 next_prio=120
26572           <...>-27562 (-----) [006] d..1 82315.372961: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26573           <...>-27550 (-----) [003] d..2 82315.372962: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26574          <idle>-0     (-----) [003] d..1 82315.372979: cpu_idle: state=0 cpu_id=3
26575          <idle>-0     (-----) [003] d.h2 82315.372991: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26576          <idle>-0     (-----) [003] dnh2 82315.372994: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26577           <...>-27562 (-----) [006] d..2 82315.372996: sched_switch: prev_comm=id.nn.benchmark prev_pid=27562 prev_prio=120 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
26578          <idle>-0     (-----) [003] .n.1 82315.373000: cpu_idle: state=4294967295 cpu_id=3
26579          <idle>-0     (-----) [003] d..2 82315.373008: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
26580          <idle>-0     (-----) [006] d..1 82315.373011: cpu_idle: state=2 cpu_id=6
26581           <...>-27550 (-----) [003] d..1 82315.373014: sched_waking: comm=id.nn.benchmark pid=27562 prio=120 target_cpu=006
26582           <...>-27550 (-----) [003] d..2 82315.373039: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26583          <idle>-0     (-----) [003] d..1 82315.373047: cpu_idle: state=0 cpu_id=3
26584          <idle>-0     (-----) [000] ...1 82315.373218: cpu_idle: state=4294967295 cpu_id=0
26585          <idle>-0     (-----) [000] d..1 82315.373222: cpu_idle: state=2 cpu_id=0
26586          <idle>-0     (-----) [002] ...1 82315.373561: cpu_idle: state=4294967295 cpu_id=2
26587          <idle>-0     (-----) [002] d..1 82315.373564: cpu_idle: state=2 cpu_id=2
26588          <idle>-0     (-----) [006] d.h2 82315.374076: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26589          <idle>-0     (-----) [006] dnh2 82315.374081: sched_wakeup: comm=id.nn.benchmark pid=27562 prio=120 target_cpu=006
26590          <idle>-0     (-----) [006] .n.1 82315.374087: cpu_idle: state=4294967295 cpu_id=6
26591          <idle>-0     (-----) [006] d..2 82315.374098: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27562 next_prio=120
26592           <...>-27562 (-----) [006] d..1 82315.374109: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26593          <idle>-0     (-----) [003] d.h2 82315.374126: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26594          <idle>-0     (-----) [003] dnh2 82315.374130: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26595          <idle>-0     (-----) [003] .n.1 82315.374135: cpu_idle: state=4294967295 cpu_id=3
26596           <...>-27562 (-----) [006] d..2 82315.374140: sched_switch: prev_comm=id.nn.benchmark prev_pid=27562 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
26597          <idle>-0     (-----) [003] d..2 82315.374142: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
26598          <idle>-0     (-----) [006] d..1 82315.374149: cpu_idle: state=2 cpu_id=6
26599           <...>-27550 (-----) [003] d..1 82315.374149: sched_waking: comm=id.nn.benchmark pid=27562 prio=120 target_cpu=006
26600           <...>-27550 (-----) [003] d..2 82315.374181: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26601          <idle>-0     (-----) [003] d..1 82315.374189: cpu_idle: state=0 cpu_id=3
26602          <idle>-0     (-----) [001] d..2 82315.375145: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
26603          <idle>-0     (-----) [001] dn.3 82315.375159: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
26604          <idle>-0     (-----) [001] .n.1 82315.375162: cpu_idle: state=4294967295 cpu_id=1
26605          <idle>-0     (-----) [001] d..2 82315.375172: 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
26606     ksoftirqd/1-18    (   18) [001] d.s2 82315.375184: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
26607          <idle>-0     (-----) [006] d.h2 82315.375208: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26608     ksoftirqd/1-18    (   18) [001] d.s3 82315.375212: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
26609          <idle>-0     (-----) [006] dnh2 82315.375213: sched_wakeup: comm=id.nn.benchmark pid=27562 prio=120 target_cpu=006
26610          <idle>-0     (-----) [006] .n.1 82315.375219: cpu_idle: state=4294967295 cpu_id=6
26611     ksoftirqd/1-18    (   18) [001] d..2 82315.375224: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
26612          <idle>-0     (-----) [006] d..2 82315.375230: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27562 next_prio=120
26613           <...>-27562 (-----) [006] d..1 82315.375235: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26614          <idle>-0     (-----) [003] d.h2 82315.375252: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26615          <idle>-0     (-----) [003] dnh2 82315.375255: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26616          <idle>-0     (-----) [003] .n.1 82315.375260: cpu_idle: state=4294967295 cpu_id=3
26617           <...>-27562 (-----) [006] d..2 82315.375266: sched_switch: prev_comm=id.nn.benchmark prev_pid=27562 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
26618          <idle>-0     (-----) [003] d..2 82315.375269: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
26619           <...>-27550 (-----) [003] d..1 82315.375275: sched_waking: comm=id.nn.benchmark pid=27562 prio=120 target_cpu=006
26620          <idle>-0     (-----) [006] d.h2 82315.375293: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26621          <idle>-0     (-----) [006] dnh2 82315.375295: sched_wakeup: comm=id.nn.benchmark pid=27562 prio=120 target_cpu=006
26622           <...>-27550 (-----) [003] d..2 82315.375301: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26623          <idle>-0     (-----) [006] d..2 82315.375309: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27562 next_prio=120
26624          <idle>-0     (-----) [003] d..1 82315.375310: cpu_idle: state=0 cpu_id=3
26625           <...>-27562 (-----) [006] d..1 82315.375311: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26626          <idle>-0     (-----) [003] d.h2 82315.375326: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26627          <idle>-0     (-----) [003] dnh2 82315.375328: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26628          <idle>-0     (-----) [003] .n.1 82315.375333: cpu_idle: state=4294967295 cpu_id=3
26629          <idle>-0     (-----) [003] d..2 82315.375340: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
26630<...>-1054 ( 1054) [001] d..2 82315.375370: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26631          <idle>-0     (-----) [001] d..1 82315.375377: cpu_idle: state=0 cpu_id=1
26632           <...>-27562 (-----) [006] d..2 82315.375425: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
26633          <idle>-0     (-----) [001] dnh2 82315.375464: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
26634          <idle>-0     (-----) [001] .n.1 82315.375468: cpu_idle: state=4294967295 cpu_id=1
26635          <idle>-0     (-----) [001] d..2 82315.375475: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
26636         rcuop/6-61    (   61) [001] d..2 82315.375494: 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
26637          <idle>-0     (-----) [001] d..1 82315.375499: cpu_idle: state=0 cpu_id=1
26638           <...>-27550 (-----) [003] d..1 82315.375521: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26639           <...>-27562 (-----) [006] d..2 82315.375531: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
26640          <idle>-0     (-----) [006] d..1 82315.375545: cpu_idle: state=2 cpu_id=6
26641           <...>-27550 (-----) [003] d..2 82315.375561: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26642          <idle>-0     (-----) [003] d..1 82315.375576: cpu_idle: state=0 cpu_id=3
26643          <idle>-0     (-----) [006] d.h2 82315.376608: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26644          <idle>-0     (-----) [006] dnh2 82315.376613: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26645          <idle>-0     (-----) [006] .n.1 82315.376619: cpu_idle: state=4294967295 cpu_id=6
26646          <idle>-0     (-----) [006] d..2 82315.376629: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
26647           <...>-27562 (-----) [006] d..1 82315.376642: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26648          <idle>-0     (-----) [003] d.h2 82315.376661: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26649          <idle>-0     (-----) [003] dnh2 82315.376664: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26650          <idle>-0     (-----) [003] .n.1 82315.376669: cpu_idle: state=4294967295 cpu_id=3
26651          <idle>-0     (-----) [003] d..2 82315.376677: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
26652           <...>-27562 (-----) [006] d..1 82315.376735: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26653           <...>-27550 (-----) [003] d..2 82315.376741: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26654          <idle>-0     (-----) [003] d..1 82315.376751: cpu_idle: state=2 cpu_id=3
26655           <...>-27562 (-----) [006] d..2 82315.376788: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
26656          <idle>-0     (-----) [006] d..1 82315.376802: cpu_idle: state=2 cpu_id=6
26657          <idle>-0     (-----) [003] d.h2 82315.377115: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26658          <idle>-0     (-----) [003] dnh2 82315.377121: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26659          <idle>-0     (-----) [003] .n.1 82315.377126: cpu_idle: state=4294967295 cpu_id=3
26660          <idle>-0     (-----) [003] d..2 82315.377136: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
26661           <...>-27550 (-----) [003] d..1 82315.377144: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26662           <...>-27550 (-----) [003] d..2 82315.377191: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26663          <idle>-0     (-----) [003] d..1 82315.377202: cpu_idle: state=0 cpu_id=3
26664          <idle>-0     (-----) [006] d.h2 82315.377995: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26665          <idle>-0     (-----) [006] dnh2 82315.378000: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26666          <idle>-0     (-----) [006] .n.1 82315.378007: cpu_idle: state=4294967295 cpu_id=6
26667          <idle>-0     (-----) [006] d..2 82315.378018: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
26668           <...>-27562 (-----) [006] d..1 82315.378025: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26669          <idle>-0     (-----) [003] d.h2 82315.378043: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26670          <idle>-0     (-----) [003] dnh2 82315.378047: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
26671          <idle>-0     (-----) [003] .n.1 82315.378052: cpu_idle: state=4294967295 cpu_id=3
26672          <idle>-0     (-----) [003] d..2 82315.378060: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
26673           <...>-27550 (-----) [003] d..1 82315.378213: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26674           <...>-27562 (-----) [006] d..2 82315.378226: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
26675          <idle>-0     (-----) [006] d..1 82315.378238: cpu_idle: state=2 cpu_id=6
26676           <...>-27550 (-----) [003] d..2 82315.378256: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26677          <idle>-0     (-----) [003] d..1 82315.378271: cpu_idle: state=0 cpu_id=3
26678          <idle>-0     (-----) [001] d.s2 82315.378458: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
26679          <idle>-0     (-----) [001] dns3 82315.378470: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
26680          <idle>-0     (-----) [001] .n.1 82315.378479: cpu_idle: state=4294967295 cpu_id=1
26681          <idle>-0     (-----) [001] d..2 82315.378485: 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
26682     rcu_preempt-7     (    7) [001] d..2 82315.378496: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
26683     rcu_preempt-7     (    7) [001] d..3 82315.378512: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
26684     rcu_preempt-7     (    7) [001] d..2 82315.378523: 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
26685         rcuop/2-29    (   29) [001] d..2 82315.378532: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
26686         rcuop/2-29    (   29) [001] d..3 82315.378564: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
26687         rcuop/2-29    (   29) [001] d..2 82315.379073: 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
26688         rcuop/3-37    (   37) [001] d..2 82315.379134: 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
26689          <idle>-0     (-----) [001] d..1 82315.379144: cpu_idle: state=0 cpu_id=1
26690          <idle>-0     (-----) [006] d.h2 82315.379289: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26691          <idle>-0     (-----) [006] dnh2 82315.379294: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26692          <idle>-0     (-----) [006] .n.1 82315.379300: cpu_idle: state=4294967295 cpu_id=6
26693          <idle>-0     (-----) [006] d..2 82315.379311: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
26694           <...>-27562 (-----) [006] d..1 82315.379322: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26695          <idle>-0     (-----) [003] d.h2 82315.379342: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26696          <idle>-0     (-----) [003] dnh2 82315.379345: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26697          <idle>-0     (-----) [003] .n.1 82315.379351: cpu_idle: state=4294967295 cpu_id=3
26698           <...>-27562 (-----) [006] d..2 82315.379351: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
26699          <idle>-0     (-----) [003] d..2 82315.379360: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26700          <idle>-0     (-----) [006] d..1 82315.379361: cpu_idle: state=2 cpu_id=6
26701           <...>-27550 (-----) [003] d..1 82315.379373: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26702           <...>-27550 (-----) [003] d..2 82315.379402: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26703          <idle>-0     (-----) [003] d..1 82315.379410: cpu_idle: state=0 cpu_id=3
26704          <idle>-0     (-----) [006] d.h2 82315.380421: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26705          <idle>-0     (-----) [006] dnh2 82315.380426: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26706          <idle>-0     (-----) [006] .n.1 82315.380432: cpu_idle: state=4294967295 cpu_id=6
26707          <idle>-0     (-----) [006] d..2 82315.380442: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
26708           <...>-27562 (-----) [006] d..1 82315.380452: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26709          <idle>-0     (-----) [003] d.h2 82315.380471: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26710          <idle>-0     (-----) [003] dnh2 82315.380474: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26711          <idle>-0     (-----) [003] .n.1 82315.380480: cpu_idle: state=4294967295 cpu_id=3
26712           <...>-27562 (-----) [006] d..2 82315.380481: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
26713          <idle>-0     (-----) [003] d..2 82315.380488: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26714          <idle>-0     (-----) [006] d..1 82315.380491: cpu_idle: state=2 cpu_id=6
26715           <...>-27550 (-----) [003] d..1 82315.380495: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26716           <...>-27550 (-----) [003] d..2 82315.380521: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26717          <idle>-0     (-----) [003] d..1 82315.380528: cpu_idle: state=0 cpu_id=3
26718          <idle>-0     (-----) [006] d.h2 82315.381555: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26719          <idle>-0     (-----) [006] dnh2 82315.381560: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26720          <idle>-0     (-----) [006] .n.1 82315.381565: cpu_idle: state=4294967295 cpu_id=6
26721          <idle>-0     (-----) [006] d..2 82315.381576: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
26722           <...>-27562 (-----) [006] d..1 82315.381580: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26723          <idle>-0     (-----) [003] d.h2 82315.381598: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26724          <idle>-0     (-----) [003] dnh2 82315.381601: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26725          <idle>-0     (-----) [003] .n.1 82315.381606: cpu_idle: state=4294967295 cpu_id=3
26726          <idle>-0     (-----) [003] d..2 82315.381614: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26727           <...>-27550 (-----) [003] d..1 82315.381620: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26728           <...>-27562 (-----) [006] d..2 82315.381622: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
26729          <idle>-0     (-----) [006] d..1 82315.381634: cpu_idle: state=2 cpu_id=6
26730           <...>-27550 (-----) [003] d..2 82315.381650: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26731          <idle>-0     (-----) [003] d..1 82315.381658: cpu_idle: state=0 cpu_id=3
26732          <idle>-0     (-----) [006] d.h2 82315.382700: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26733          <idle>-0     (-----) [006] dnh2 82315.382705: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26734          <idle>-0     (-----) [006] .n.1 82315.382711: cpu_idle: state=4294967295 cpu_id=6
26735          <idle>-0     (-----) [006] d..2 82315.382722: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
26736           <...>-27562 (-----) [006] d..1 82315.382732: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26737          <idle>-0     (-----) [003] d.h2 82315.382751: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26738          <idle>-0     (-----) [003] dnh2 82315.382754: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26739          <idle>-0     (-----) [003] .n.1 82315.382759: cpu_idle: state=4294967295 cpu_id=3
26740           <...>-27562 (-----) [006] d..2 82315.382765: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
26741          <idle>-0     (-----) [003] d..2 82315.382768: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26742          <idle>-0     (-----) [006] d..2 82315.382768: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
26743           <...>-27550 (-----) [003] d..1 82315.382775: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
26744          <idle>-0     (-----) [006] dn.3 82315.382777: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
26745          <idle>-0     (-----) [006] d..2 82315.382786: 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
26746     ksoftirqd/6-58    (   58) [006] d..2 82315.382807: 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
26747          <idle>-0     (-----) [006] d..1 82315.382815: cpu_idle: state=2 cpu_id=6
26748           <...>-27550 (-----) [003] d..2 82315.382820: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26749           <...>-27550 (-----) [003] d..2 82315.382826: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
26750          <idle>-0     (-----) [001] .n.1 82315.382831: cpu_idle: state=4294967295 cpu_id=1
26751          <idle>-0     (-----) [001] d..2 82315.382860: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
26752           <...>-27562 (-----) [001] d..1 82315.382885: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26753           <...>-27550 (-----) [003] d..2 82315.382886: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26754           <...>-27562 (-----) [001] d..2 82315.382895: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26755          <idle>-0     (-----) [003] d..1 82315.382896: cpu_idle: state=0 cpu_id=3
26756           <...>-27562 (-----) [001] d..2 82315.382902: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26757          <idle>-0     (-----) [003] .n.1 82315.382907: cpu_idle: state=4294967295 cpu_id=3
26758          <idle>-0     (-----) [003] d..2 82315.382915: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26759           <...>-27562 (-----) [001] d..2 82315.382921: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
26760           <...>-27550 (-----) [003] d..1 82315.382929: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
26761          <idle>-0     (-----) [001] d..1 82315.382930: cpu_idle: state=0 cpu_id=1
26762           <...>-27550 (-----) [003] d..2 82315.382935: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26763           <...>-27550 (-----) [003] d..2 82315.382941: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
26764          <idle>-0     (-----) [001] .n.1 82315.382946: cpu_idle: state=4294967295 cpu_id=1
26765          <idle>-0     (-----) [001] d..2 82315.382953: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
26766           <...>-27562 (-----) [001] d..2 82315.383018: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=S ==> next_comm=Binder:27550_1 next_pid=27563 next_prio=120
26767           <...>-27550 (-----) [003] d..1 82315.383026: sched_waking: comm=Binder:27550_1 pid=27563 prio=120 target_cpu=001
26768           <...>-27563 (-----) [001] d..2 82315.383037: sched_switch: prev_comm=Binder:27550_1 prev_pid=27563 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
26769           <...>-27550 (-----) [003] d..2 82315.383047: sched_blocked_reason: pid=27563 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26770          <idle>-0     (-----) [001] d..1 82315.383047: cpu_idle: state=0 cpu_id=1
26771           <...>-27550 (-----) [003] d..2 82315.383053: sched_wakeup: comm=Binder:27550_1 pid=27563 prio=120 target_cpu=001
26772          <idle>-0     (-----) [001] .n.1 82315.383058: cpu_idle: state=4294967295 cpu_id=1
26773          <idle>-0     (-----) [001] d..2 82315.383065: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27563 next_prio=120
26774           <...>-27563 (-----) [001] d..1 82315.383075: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26775           <...>-27550 (-----) [003] d..2 82315.383075: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26776           <...>-27563 (-----) [001] d..2 82315.383084: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26777          <idle>-0     (-----) [003] dn.1 82315.383086: cpu_idle: state=0 cpu_id=3
26778          <idle>-0     (-----) [003] .n.1 82315.383090: cpu_idle: state=4294967295 cpu_id=3
26779           <...>-27563 (-----) [001] d..2 82315.383090: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26780          <idle>-0     (-----) [003] d..2 82315.383102: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26781           <...>-27563 (-----) [001] d..2 82315.383107: sched_switch: prev_comm=Binder:27550_1 prev_pid=27563 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
26782           <...>-27550 (-----) [003] d..1 82315.383109: sched_waking: comm=Binder:27550_1 pid=27563 prio=120 target_cpu=001
26783          <idle>-0     (-----) [001] d..1 82315.383113: cpu_idle: state=0 cpu_id=1
26784           <...>-27550 (-----) [003] d..2 82315.383116: sched_blocked_reason: pid=27563 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26785           <...>-27550 (-----) [003] d..2 82315.383122: sched_wakeup: comm=Binder:27550_1 pid=27563 prio=120 target_cpu=001
26786          <idle>-0     (-----) [001] .n.1 82315.383127: cpu_idle: state=4294967295 cpu_id=1
26787          <idle>-0     (-----) [001] d..2 82315.383133: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27563 next_prio=120
26788           <...>-27563 (-----) [001] d..1 82315.383141: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26789           <...>-27550 (-----) [003] d..2 82315.383141: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26790           <...>-27563 (-----) [001] d..2 82315.383149: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26791          <idle>-0     (-----) [003] d..1 82315.383149: cpu_idle: state=2 cpu_id=3
26792           <...>-27563 (-----) [001] d..2 82315.383154: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26793          <idle>-0     (-----) [003] .n.1 82315.383165: cpu_idle: state=4294967295 cpu_id=3
26794           <...>-27563 (-----) [001] d..2 82315.383172: sched_switch: prev_comm=Binder:27550_1 prev_pid=27563 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
26795          <idle>-0     (-----) [003] d..2 82315.383175: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26796          <idle>-0     (-----) [001] d..1 82315.383178: cpu_idle: state=0 cpu_id=1
26797           <...>-27550 (-----) [003] d..1 82315.383181: sched_waking: comm=Binder:27550_1 pid=27563 prio=120 target_cpu=001
26798           <...>-27550 (-----) [003] d..2 82315.383187: sched_blocked_reason: pid=27563 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26799           <...>-27550 (-----) [003] d..2 82315.383194: sched_wakeup: comm=Binder:27550_1 pid=27563 prio=120 target_cpu=001
26800          <idle>-0     (-----) [001] .n.1 82315.383199: cpu_idle: state=4294967295 cpu_id=1
26801          <idle>-0     (-----) [001] d..2 82315.383205: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27563 next_prio=120
26802           <...>-27563 (-----) [001] d..1 82315.383209: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26803           <...>-27550 (-----) [003] d..2 82315.383212: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26804           <...>-27563 (-----) [001] d..2 82315.383220: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26805          <idle>-0     (-----) [003] d..1 82315.383221: cpu_idle: state=0 cpu_id=3
26806           <...>-27563 (-----) [001] d..2 82315.383226: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26807          <idle>-0     (-----) [003] .n.1 82315.383232: cpu_idle: state=4294967295 cpu_id=3
26808          <idle>-0     (-----) [003] d..2 82315.383239: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26809           <...>-27563 (-----) [001] d..2 82315.383242: sched_switch: prev_comm=Binder:27550_1 prev_pid=27563 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
26810           <...>-27550 (-----) [003] d..1 82315.383245: sched_waking: comm=Binder:27550_1 pid=27563 prio=120 target_cpu=001
26811          <idle>-0     (-----) [001] d..1 82315.383248: cpu_idle: state=0 cpu_id=1
26812           <...>-27550 (-----) [003] d..2 82315.383253: sched_blocked_reason: pid=27563 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
26813           <...>-27550 (-----) [003] d..2 82315.383259: sched_wakeup: comm=Binder:27550_1 pid=27563 prio=120 target_cpu=001
26814          <idle>-0     (-----) [001] .n.1 82315.383264: cpu_idle: state=4294967295 cpu_id=1
26815          <idle>-0     (-----) [001] d..2 82315.383270: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27563 next_prio=120
26816           <...>-27563 (-----) [001] d..1 82315.383273: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26817           <...>-27550 (-----) [003] d..2 82315.383280: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26818           <...>-27563 (-----) [001] d..2 82315.383287: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26819          <idle>-0     (-----) [003] dn.1 82315.383288: cpu_idle: state=0 cpu_id=3
26820          <idle>-0     (-----) [003] .n.1 82315.383292: cpu_idle: state=4294967295 cpu_id=3
26821           <...>-27563 (-----) [001] d..2 82315.383292: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26822          <idle>-0     (-----) [003] d..2 82315.383303: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26823           <...>-27563 (-----) [001] d..1 82315.383410: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26824           <...>-27550 (-----) [003] d..2 82315.383422: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26825          <idle>-0     (-----) [003] d..1 82315.383433: cpu_idle: state=0 cpu_id=3
26826           <...>-27563 (-----) [001] d..2 82315.383433: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26827           <...>-27563 (-----) [001] d..2 82315.383440: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26828          <idle>-0     (-----) [003] .n.1 82315.383445: cpu_idle: state=4294967295 cpu_id=3
26829          <idle>-0     (-----) [003] d..2 82315.383454: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26830           <...>-27550 (-----) [003] d..2 82315.383502: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26831           <...>-27563 (-----) [001] d..1 82315.383505: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26832          <idle>-0     (-----) [003] d..1 82315.383509: cpu_idle: state=0 cpu_id=3
26833           <...>-27563 (-----) [001] d..2 82315.383514: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26834           <...>-27563 (-----) [001] d..2 82315.383521: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26835          <idle>-0     (-----) [003] .n.1 82315.383526: cpu_idle: state=4294967295 cpu_id=3
26836          <idle>-0     (-----) [003] d..2 82315.383534: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26837           <...>-27563 (-----) [001] d..1 82315.383545: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26838           <...>-27550 (-----) [003] d..2 82315.383554: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
26839          <idle>-0     (-----) [003] d..1 82315.383561: cpu_idle: state=0 cpu_id=3
26840           <...>-27563 (-----) [001] d..2 82315.383561: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
26841           <...>-27563 (-----) [001] d..2 82315.383567: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=003
26842          <idle>-0     (-----) [003] .n.1 82315.383572: cpu_idle: state=4294967295 cpu_id=3
26843          <idle>-0     (-----) [003] d..2 82315.383578: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26844           <...>-27563 (-----) [001] d..2 82315.383697: sched_switch: prev_comm=Binder:27550_2 prev_pid=27563 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26845          <idle>-0     (-----) [001] d..1 82315.383708: cpu_idle: state=0 cpu_id=1
26846           <...>-27550 (-----) [003] .... 82315.383932: binder_transaction: transaction=1568291 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
26847           <...>-27550 (-----) [003] .... 82315.383949: binder_transaction_alloc_buf: transaction=1568291 data_size=0 offsets_size=0
26848           <...>-27550 (-----) [003] d..4 82315.383965: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=001
26849           <...>-27550 (-----) [003] dn.5 82315.383989: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=003
26850           <...>-27550 (-----) [003] d..2 82315.383998: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=servicemanager next_pid=608 next_prio=120
26851<...>-608 ( 608) [003] .... 82315.384019: binder_transaction_received: transaction=1568291
26852<...>-608 ( 608) [003] .... 82315.384093: binder_transaction: transaction=1568292 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
26853<...>-608 ( 608) [003] .... 82315.384109: binder_transaction_alloc_buf: transaction=1568292 data_size=0 offsets_size=0
26854<...>-608 ( 608) [003] d..2 82315.384138: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26855           <...>-27550 (-----) [003] .... 82315.384146: binder_transaction_received: transaction=1568292
26856           <...>-27550 (-----) [003] .... 82315.384661: binder_transaction: transaction=1568294 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
26857           <...>-27550 (-----) [003] .... 82315.384664: binder_transaction_alloc_buf: transaction=1568294 data_size=88 offsets_size=0
26858           <...>-27550 (-----) [003] d..4 82315.384668: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=003
26859           <...>-27550 (-----) [003] dn.5 82315.384679: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=003
26860           <...>-27550 (-----) [003] d..2 82315.384685: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=servicemanager next_pid=608 next_prio=120
26861<...>-608 ( 608) [003] .... 82315.384690: binder_transaction_received: transaction=1568294
26862<...>-608 ( 608) [003] .... 82315.385047: binder_transaction: transaction=1568295 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
26863<...>-608 ( 608) [003] .... 82315.385050: binder_transaction_alloc_buf: transaction=1568295 data_size=24 offsets_size=8
26864          <idle>-0     (-----) [001] d.s2 82315.385127: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
26865          <idle>-0     (-----) [001] dns3 82315.385139: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
26866<...>-608 ( 608) [003] d.s2 82315.385140: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
26867          <idle>-0     (-----) [001] .n.1 82315.385154: cpu_idle: state=4294967295 cpu_id=1
26868<...>-608 ( 608) [003] d.s3 82315.385158: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
26869          <idle>-0     (-----) [001] d..2 82315.385164: 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
26870     rcu_preempt-7     (    7) [001] d..2 82315.385178: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
26871<...>-608 ( 608) [003] d..2 82315.385190: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26872           <...>-27550 (-----) [003] .... 82315.385196: binder_transaction_received: transaction=1568295
26873<...>-1054 ( 1054) [001] d..2 82315.385432: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
26874          <idle>-0     (-----) [001] d.s4 82315.385472: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
26875          <idle>-0     (-----) [001] d.s5 82315.385478: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
26876          <idle>-0     (-----) [001] dns5 82315.385481: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
26877          <idle>-0     (-----) [001] d..2 82315.385490: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
26878<...>-1054 ( 1054) [001] .... 82315.385550: clk_set_rate: l3_cluster0_vote_clk 480000000
26879           <...>-27550 (-----) [003] .... 82315.385552: binder_transaction: transaction=1568297 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xe
26880<...>-1054 ( 1054) [001] .... 82315.385555: clk_set_rate: l3_clk 480000000
26881           <...>-27550 (-----) [003] .... 82315.385557: binder_transaction_alloc_buf: transaction=1568297 data_size=100 offsets_size=8
26882<...>-1054 ( 1054) [001] d..2 82315.385752: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
26883          <idle>-0     (-----) [001] d.s4 82315.385784: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
26884          <idle>-0     (-----) [001] d.s5 82315.385791: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
26885          <idle>-0     (-----) [001] dns5 82315.385795: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
26886          <idle>-0     (-----) [001] d..2 82315.385805: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
26887<...>-1054 ( 1054) [001] d..2 82315.385825: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26888          <idle>-0     (-----) [001] d..1 82315.385837: cpu_idle: state=0 cpu_id=1
26889           <...>-27550 (-----) [003] d..4 82315.386130: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
26890           <...>-27550 (-----) [003] dn.5 82315.386167: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=003
26891           <...>-27550 (-----) [003] d..2 82315.386213: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
26892<...>-25493 ( 8943) [003] .... 82315.386228: binder_transaction_received: transaction=1568297
26893<...>-25493 ( 8943) [003] d..2 82315.387238: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
26894<...>-25493 ( 8943) [003] d..3 82315.387283: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
26895          <idle>-0     (-----) [001] .n.1 82315.387287: cpu_idle: state=4294967295 cpu_id=1
26896          <idle>-0     (-----) [001] d..2 82315.387298: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
26897<...>-581 ( 571) [001] d..2 82315.387540: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
26898          <idle>-0     (-----) [001] d..1 82315.387553: cpu_idle: state=0 cpu_id=1
26899<...>-25493 ( 8943) [003] d.s2 82315.388486: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
26900<...>-25493 ( 8943) [003] d.s3 82315.388508: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
26901          <idle>-0     (-----) [001] .n.1 82315.388513: cpu_idle: state=4294967295 cpu_id=1
26902          <idle>-0     (-----) [001] d..2 82315.388525: 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
26903     rcu_preempt-7     (    7) [001] d..2 82315.388532: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
26904     rcu_preempt-7     (    7) [001] d..3 82315.388550: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
26905     rcu_preempt-7     (    7) [001] d..2 82315.388553: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
26906     rcu_preempt-7     (    7) [001] d..3 82315.388579: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
26907     rcu_preempt-7     (    7) [001] d..2 82315.388591: 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
26908         rcuop/6-61    (   61) [001] d..2 82315.388607: 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
26909         rcuop/0-10    (   10) [001] d..2 82315.388612: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
26910         rcuop/0-10    (   10) [001] d..3 82315.388638: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
26911         rcuop/0-10    (   10) [001] d..2 82315.388676: 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
26912         rcuop/1-21    (   21) [001] d..2 82315.388704: 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
26913          <idle>-0     (-----) [001] d..1 82315.388715: cpu_idle: state=2 cpu_id=1
26914<...>-25493 ( 8943) [003] .... 82315.390127: binder_transaction: transaction=1568300 dest_node=1568298 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x4
26915<...>-25493 ( 8943) [003] .... 82315.390141: binder_transaction_alloc_buf: transaction=1568300 data_size=4568 offsets_size=168
26916<...>-25493 ( 8943) [003] d..4 82315.390316: sched_waking: comm=Binder:27550_2 pid=27563 prio=120 target_cpu=001
26917<...>-25493 ( 8943) [003] d..5 82315.390345: sched_wakeup: comm=Binder:27550_2 pid=27563 prio=120 target_cpu=001
26918          <idle>-0     (-----) [001] .n.1 82315.390621: cpu_idle: state=4294967295 cpu_id=1
26919          <idle>-0     (-----) [001] d..2 82315.390641: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_2 next_pid=27563 next_prio=120
26920           <...>-27563 (-----) [001] .... 82315.390649: binder_transaction_received: transaction=1568300
26921<...>-25493 ( 8943) [003] d..3 82315.391608: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=001
26922<...>-25493 ( 8943) [003] d..4 82315.391649: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=000
26923<...>-25493 ( 8943) [003] .... 82315.391725: binder_transaction: transaction=1568322 dest_node=1568298 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x27
26924<...>-25493 ( 8943) [003] .... 82315.391729: binder_transaction_alloc_buf: transaction=1568322 data_size=76 offsets_size=0
26925          <idle>-0     (-----) [000] .n.1 82315.391907: cpu_idle: state=4294967295 cpu_id=0
26926          <idle>-0     (-----) [000] d..2 82315.391931: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
26927<...>-25493 ( 8943) [003] d..2 82315.392000: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
26928<...>-25493 ( 8943) [003] d..3 82315.392038: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
26929<...>-25493 ( 8943) [003] d..3 82315.392108: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
26930<...>-25493 ( 8943) [003] d..2 82315.392219: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
26931<...>-25493 ( 8943) [003] d..3 82315.392239: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
26932<...>-25493 ( 8943) [003] d..1 82315.392422: sched_waking: comm=batterystats-wo pid=8965 prio=120 target_cpu=000
26933<...>-25493 ( 8943) [003] d..2 82315.392453: sched_wakeup: comm=batterystats-wo pid=8965 prio=120 target_cpu=002
26934          <idle>-0     (-----) [002] .n.1 82315.392709: cpu_idle: state=4294967295 cpu_id=2
26935<...>-25493 ( 8943) [003] .... 82315.392710: binder_transaction: transaction=1568323 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
26936<...>-25493 ( 8943) [003] .... 82315.392714: binder_transaction_alloc_buf: transaction=1568323 data_size=4 offsets_size=0
26937          <idle>-0     (-----) [002] d..2 82315.392733: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=batterystats-wo next_pid=8965 next_prio=120
26938<...>-25493 ( 8943) [003] d..2 82315.392759: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=re-initialized> next_pid=27550 next_prio=120
26939           <...>-27550 (-----) [003] .... 82315.392773: binder_transaction_received: transaction=1568323
26940 batterystats-wo-8965  ( 8943) [002] d..2 82315.392877: sched_switch: prev_comm=batterystats-wo prev_pid=8965 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26941          <idle>-0     (-----) [002] d..1 82315.392892: cpu_idle: state=2 cpu_id=2
26942           <...>-27550 (-----) [003] d..2 82315.392986: sched_switch: prev_comm=re-initialized> prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26943          <idle>-0     (-----) [003] d..1 82315.393011: cpu_idle: state=0 cpu_id=3
26944          <idle>-0     (-----) [006] dnh2 82315.393166: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
26945          <idle>-0     (-----) [006] .n.1 82315.393175: cpu_idle: state=4294967295 cpu_id=6
26946          <idle>-0     (-----) [006] d..2 82315.393190: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
26947<...>-821 ( 821) [000] d..2 82315.393262: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
26948<...>-8962 ( 8943) [006] .... 82315.393386: binder_transaction: transaction=1568324 dest_node=399486 dest_proc=884 dest_thread=0 reply=0 flags=0x11 code=0x2
26949<...>-8962 ( 8943) [006] .... 82315.393392: binder_transaction_alloc_buf: transaction=1568324 data_size=64 offsets_size=0
26950<...>-8962 ( 8943) [006] d..4 82315.393400: sched_waking: comm=cameraserver pid=884 prio=120 target_cpu=004
26951<...>-8962 ( 8943) [006] d..5 82315.393423: sched_wakeup: comm=cameraserver pid=884 prio=120 target_cpu=004
26952<...>-8962 ( 8943) [006] d..3 82315.393475: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=001
26953<...>-8962 ( 8943) [006] .... 82315.393557: binder_transaction: transaction=1568325 dest_node=402011 dest_proc=9083 dest_thread=0 reply=0 flags=0x11 code=0x4
26954<...>-8962 ( 8943) [006] .... 82315.393563: binder_transaction_alloc_buf: transaction=1568325 data_size=76 offsets_size=0
26955<...>-8962 ( 8943) [006] d..4 82315.393571: sched_waking: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=001
26956   statsd.writer-1044  (  901) [000] d..2 82315.393579: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
26957          <idle>-0     (-----) [003] dnh2 82315.393619: sched_wakeup: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=003
26958          <idle>-0     (-----) [003] .n.1 82315.393626: cpu_idle: state=4294967295 cpu_id=3
26959          <idle>-0     (-----) [003] d..2 82315.393637: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9083_6 next_pid=9638 next_prio=120
26960<...>-8962 ( 8943) [006] .... 82315.393653: binder_transaction: transaction=1568326 dest_node=412802 dest_proc=9083 dest_thread=0 reply=0 flags=0x11 code=0x4
26961<...>-9638 ( 9083) [003] .... 82315.393654: binder_transaction_received: transaction=1568325
26962<...>-8962 ( 8943) [006] .... 82315.393657: binder_transaction_alloc_buf: transaction=1568326 data_size=76 offsets_size=0
26963<...>-8962 ( 8943) [006] d..4 82315.393661: sched_waking: comm=Binder:9083_3 pid=9130 prio=120 target_cpu=001
26964<...>-581 ( 571) [000] d..2 82315.393700: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
26965           <...>-27563 (-----) [001] dnh1 82315.393700: sched_wakeup: comm=Binder:9083_3 pid=9130 prio=120 target_cpu=001
26966           <...>-27563 (-----) [001] d..2 82315.393713: sched_switch: prev_comm=Binder:27550_2 prev_pid=27563 prev_prio=120 prev_state=R ==> next_comm=Binder:9083_3 next_pid=9130 next_prio=120
26967          <idle>-0     (-----) [000] d..1 82315.393719: cpu_idle: state=2 cpu_id=0
26968<...>-8962 ( 8943) [006] d..3 82315.393721: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=002
26969<...>-9130 ( 9083) [001] .... 82315.393727: binder_transaction_received: transaction=1568326
26970          <idle>-0     (-----) [002] dnh2 82315.393752: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=002
26971          <idle>-0     (-----) [002] .n.1 82315.393761: cpu_idle: state=4294967295 cpu_id=2
26972          <idle>-0     (-----) [002] d..2 82315.393773: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=8967 next_prio=120
26973<...>-8962 ( 8943) [006] d..3 82315.393783: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=001
26974<...>-9130 ( 9083) [001] d.h1 82315.393818: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=001
26975<...>-8962 ( 8943) [006] d..3 82315.393910: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=003
26976<...>-9130 ( 9083) [001] d..3 82315.393930: sched_waking: comm=droid.bluetooth pid=9083 prio=120 target_cpu=003
26977<...>-8962 ( 8943) [006] d..4 82315.393938: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
26978          <idle>-0     (-----) [004] .n.1 82315.393944: cpu_idle: state=4294967295 cpu_id=4
26979<...>-8962 ( 8943) [006] d.h3 82315.393981: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
26980          <idle>-0     (-----) [004] d..2 82315.393986: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cameraserver next_pid=884 next_prio=120
26981<...>-9130 ( 9083) [001] d..4 82315.393992: sched_wakeup: comm=droid.bluetooth pid=9083 prio=120 target_cpu=000
26982<...>-884 ( 884) [004] .... 82315.393997: binder_transaction_received: transaction=1568324
26983<...>-8967 ( 8943) [002] d..2 82315.394031: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
26984<...>-9130 ( 9083) [001] d..1 82315.394033: sched_waking: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=003
26985          <idle>-0     (-----) [002] d..1 82315.394047: cpu_idle: state=0 cpu_id=2
26986<...>-9638 ( 9083) [003] d..2 82315.394052: sched_switch: prev_comm=Binder:9083_6 prev_pid=9638 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26987<...>-9130 ( 9083) [001] d..2 82315.394067: sched_wakeup: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=003
26988          <idle>-0     (-----) [003] d..2 82315.394079: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9083_6 next_pid=9638 next_prio=120
26989<...>-8962 ( 8943) [006] d..2 82315.394101: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
26990          <idle>-0     (-----) [006] d..1 82315.394120: cpu_idle: state=2 cpu_id=6
26991<...>-9130 ( 9083) [001] d..2 82315.394123: sched_switch: prev_comm=Binder:9083_3 prev_pid=9130 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=8960 next_prio=120
26992          <idle>-0     (-----) [000] dnh2 82315.394127: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
26993          <idle>-0     (-----) [000] dnh2 82315.394136: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=000
26994<...>-9638 ( 9083) [003] d..2 82315.394143: sched_switch: prev_comm=Binder:9083_6 prev_pid=9638 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
26995          <idle>-0     (-----) [000] .n.1 82315.394145: cpu_idle: state=4294967295 cpu_id=0
26996<...>-884 ( 884) [004] d..2 82315.394146: sched_switch: prev_comm=cameraserver prev_pid=884 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
26997          <idle>-0     (-----) [003] d..1 82315.394156: cpu_idle: state=0 cpu_id=3
26998          <idle>-0     (-----) [000] d..2 82315.394157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
26999          <idle>-0     (-----) [004] d..1 82315.394161: cpu_idle: state=2 cpu_id=4
27000         sugov:0-576   (  576) [000] .... 82315.394209: clk_set_rate: pwrcl_clk 979200000
27001         sugov:0-576   (  576) [000] .... 82315.394235: clk_set_rate: cpu3_pwrcl_clk 1420800000
27002         sugov:0-576   (  576) [000] .... 82315.394251: clk_set_rate: cpu2_pwrcl_clk 1420800000
27003         sugov:0-576   (  576) [000] .... 82315.394260: clk_set_rate: cpu1_pwrcl_clk 1420800000
27004         sugov:0-576   (  576) [000] .... 82315.394269: clk_set_rate: cpu0_pwrcl_clk 979200000
27005<...>-8960 ( 8943) [001] d..2 82315.394378: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=Binder:27550_2 next_pid=27563 next_prio=120
27006         sugov:0-576   (  576) [000] .... 82315.394384: cpu_frequency: state=979200 cpu_id=0
27007         sugov:0-576   (  576) [000] .... 82315.394417: cpu_frequency: state=979200 cpu_id=1
27008         sugov:0-576   (  576) [000] .... 82315.394421: cpu_frequency: state=979200 cpu_id=2
27009         sugov:0-576   (  576) [000] .... 82315.394426: cpu_frequency: state=979200 cpu_id=3
27010         sugov:0-576   (  576) [000] d..2 82315.394447: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=droid.bluetooth next_pid=9083 next_prio=120
27011          <idle>-0     (-----) [007] .n.1 82315.394505: cpu_idle: state=4294967295 cpu_id=7
27012          <idle>-0     (-----) [007] d..2 82315.394530: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
27013<...>-9083 ( 9083) [000] d..2 82315.394558: sched_switch: prev_comm=droid.bluetooth prev_pid=9083 prev_prio=120 prev_state=S ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
27014   system_server-8943  ( 8943) [007] d..2 82315.394770: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
27015          <idle>-0     (-----) [007] d..1 82315.394788: cpu_idle: state=2 cpu_id=7
27016<...>-9047 ( 8943) [000] d.s3 82315.395169: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27017           <...>-27563 (-----) [001] d.s1 82315.395184: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27018<...>-9047 ( 8943) [000] d.s4 82315.395216: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27019           <...>-27563 (-----) [001] d.s2 82315.395238: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
27020          <idle>-0     (-----) [003] ...1 82315.395298: cpu_idle: state=4294967295 cpu_id=3
27021          <idle>-0     (-----) [003] d..1 82315.395304: cpu_idle: state=2 cpu_id=3
27022<...>-9047 ( 8943) [000] d..2 82315.396438: sched_waking: comm=netd pid=8873 prio=120 target_cpu=007
27023<...>-9047 ( 8943) [000] d..3 82315.396516: sched_wakeup: comm=netd pid=8873 prio=120 target_cpu=000
27024<...>-9047 ( 8943) [000] d..2 82315.396621: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27025<...>-1054 ( 1054) [000] .... 82315.396720: clk_set_rate: l3_cluster0_vote_clk 844800000
27026<...>-1054 ( 1054) [000] .... 82315.396729: clk_set_rate: l3_clk 844800000
27027<...>-1054 ( 1054) [000] d..2 82315.397083: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
27028     rcu_preempt-7     (    7) [000] d..2 82315.397110: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=netd next_pid=8873 next_prio=120
27029<...>-8873 ( 8857) [000] d..2 82315.397320: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=000
27030<...>-8873 ( 8857) [000] d..3 82315.397335: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=000
27031<...>-8873 ( 8857) [000] d..2 82315.397551: sched_switch: prev_comm=netd prev_pid=8873 prev_prio=120 prev_state=S ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
27032           <...>-27563 (-----) [001] d.s2 82315.397640: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27033           <...>-27563 (-----) [001] d.s3 82315.397659: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27034           <...>-27563 (-----) [001] d.s3 82315.397665: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27035<...>-9047 ( 8943) [000] d..2 82315.397682: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27036<...>-1054 ( 1054) [000] d..2 82315.397757: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
27037          <idle>-0     (-----) [000] d..1 82315.397776: cpu_idle: state=0 cpu_id=0
27038           <...>-27563 (-----) [001] d..3 82315.398939: sched_waking: comm=re-initialized> pid=27550 prio=120 target_cpu=003
27039           <...>-27563 (-----) [001] d..4 82315.398978: sched_wakeup: comm=re-initialized> pid=27550 prio=120 target_cpu=000
27040          <idle>-0     (-----) [000] .n.1 82315.398985: cpu_idle: state=4294967295 cpu_id=0
27041          <idle>-0     (-----) [000] d..2 82315.398998: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=re-initialized> next_pid=27550 next_prio=120
27042           <...>-27563 (-----) [001] d..4 82315.399381: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27043           <...>-27563 (-----) [001] dn.5 82315.399407: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27044           <...>-27563 (-----) [001] d..2 82315.399417: sched_switch: prev_comm=Binder:27550_2 prev_pid=27563 prev_prio=120 prev_state=R+ ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
27045           <...>-27562 (-----) [001] .... 82315.399426: binder_transaction_received: transaction=1568322
27046           <...>-27562 (-----) [001] d..1 82315.399506: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27047           <...>-27550 (-----) [000] d..2 82315.399512: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
27048           <...>-27562 (-----) [001] d..2 82315.399524: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27049          <idle>-0     (-----) [000] d..1 82315.399525: cpu_idle: state=0 cpu_id=0
27050           <...>-27562 (-----) [001] d..2 82315.399532: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27051          <idle>-0     (-----) [000] .n.1 82315.399538: cpu_idle: state=4294967295 cpu_id=0
27052          <idle>-0     (-----) [000] d..2 82315.399548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27053           <...>-27562 (-----) [001] d..2 82315.399551: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D|K ==> next_comm=Binder:27550_2 next_pid=27563 next_prio=120
27054           <...>-27550 (-----) [000] d..1 82315.399556: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27055           <...>-27550 (-----) [000] d..2 82315.399573: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27056           <...>-27550 (-----) [000] d..2 82315.399584: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27057           <...>-27563 (-----) [001] d..2 82315.399597: sched_switch: prev_comm=Binder:27550_2 prev_pid=27563 prev_prio=120 prev_state=S ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
27058           <...>-27550 (-----) [000] d..2 82315.399615: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
27059          <idle>-0     (-----) [000] d..1 82315.399623: cpu_idle: state=0 cpu_id=0
27060           <...>-27562 (-----) [001] d..1 82315.399624: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27061           <...>-27562 (-----) [001] d..2 82315.399633: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27062           <...>-27562 (-----) [001] d..2 82315.399640: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27063          <idle>-0     (-----) [000] .n.1 82315.399645: cpu_idle: state=4294967295 cpu_id=0
27064          <idle>-0     (-----) [000] d..2 82315.399653: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27065           <...>-27562 (-----) [001] d..2 82315.399666: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27066           <...>-27550 (-----) [000] d..1 82315.399668: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27067           <...>-27550 (-----) [000] d..2 82315.399677: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27068           <...>-27550 (-----) [000] d..2 82315.399684: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27069          <idle>-0     (-----) [001] d..2 82315.399695: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
27070           <...>-27562 (-----) [001] d..1 82315.399701: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27071           <...>-27550 (-----) [000] d..2 82315.399704: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
27072          <idle>-0     (-----) [000] d..1 82315.399712: cpu_idle: state=0 cpu_id=0
27073           <...>-27562 (-----) [001] d..2 82315.399713: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27074           <...>-27562 (-----) [001] d..2 82315.399720: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27075          <idle>-0     (-----) [000] .n.1 82315.399725: cpu_idle: state=4294967295 cpu_id=0
27076          <idle>-0     (-----) [000] d..2 82315.399733: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27077           <...>-27562 (-----) [001] d..1 82315.399775: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27078           <...>-27550 (-----) [000] d..2 82315.399775: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
27079          <idle>-0     (-----) [000] d..1 82315.399782: cpu_idle: state=0 cpu_id=0
27080           <...>-27562 (-----) [001] d..2 82315.399784: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27081           <...>-27562 (-----) [001] d..2 82315.399791: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27082          <idle>-0     (-----) [000] .n.1 82315.399796: cpu_idle: state=4294967295 cpu_id=0
27083          <idle>-0     (-----) [000] d..2 82315.399805: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27084           <...>-27562 (-----) [001] d..2 82315.399813: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27085           <...>-27550 (-----) [000] d..1 82315.399813: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27086           <...>-27550 (-----) [000] d..2 82315.399822: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27087           <...>-27550 (-----) [000] d..2 82315.399830: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27088          <idle>-0     (-----) [001] d..2 82315.399843: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
27089           <...>-27562 (-----) [001] d..1 82315.399850: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27090           <...>-27550 (-----) [000] d..2 82315.399852: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
27091          <idle>-0     (-----) [000] d..1 82315.399859: cpu_idle: state=0 cpu_id=0
27092           <...>-27562 (-----) [001] d..2 82315.399860: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27093           <...>-27562 (-----) [001] d..2 82315.399867: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27094          <idle>-0     (-----) [000] .n.1 82315.399872: cpu_idle: state=4294967295 cpu_id=0
27095          <idle>-0     (-----) [000] d..2 82315.399880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27096           <...>-27550 (-----) [000] d..1 82315.399887: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27097           <...>-27562 (-----) [001] d..2 82315.399888: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
27098           <...>-27550 (-----) [000] d..2 82315.399897: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27099          <idle>-0     (-----) [001] d..1 82315.399898: cpu_idle: state=0 cpu_id=1
27100           <...>-27550 (-----) [000] d..2 82315.399904: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27101          <idle>-0     (-----) [001] .n.1 82315.399911: cpu_idle: state=4294967295 cpu_id=1
27102          <idle>-0     (-----) [001] d..2 82315.399921: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
27103           <...>-27562 (-----) [001] d..1 82315.399935: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27104           <...>-27550 (-----) [000] d..2 82315.399941: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
27105          <idle>-0     (-----) [000] d..1 82315.399949: cpu_idle: state=0 cpu_id=0
27106           <...>-27562 (-----) [001] d..2 82315.399950: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27107           <...>-27562 (-----) [001] d..2 82315.399957: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27108          <idle>-0     (-----) [000] .n.1 82315.399962: cpu_idle: state=4294967295 cpu_id=0
27109          <idle>-0     (-----) [000] d..2 82315.399971: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27110           <...>-27562 (-----) [001] d..2 82315.399979: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27111           <...>-27550 (-----) [000] d..1 82315.399979: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27112           <...>-27550 (-----) [000] d..2 82315.399988: sched_blocked_reason: pid=27562 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27113          <idle>-0     (-----) [001] d..1 82315.399991: cpu_idle: state=0 cpu_id=1
27114          <idle>-0     (-----) [001] .n.1 82315.399995: cpu_idle: state=4294967295 cpu_id=1
27115           <...>-27550 (-----) [000] d..2 82315.399995: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
27116          <idle>-0     (-----) [001] d..2 82315.400010: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
27117           <...>-27562 (-----) [001] d..1 82315.400014: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27118           <...>-27550 (-----) [000] d..2 82315.400019: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
27119          <idle>-0     (-----) [000] d..1 82315.400027: cpu_idle: state=0 cpu_id=0
27120           <...>-27562 (-----) [001] d..2 82315.400028: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27121           <...>-27562 (-----) [001] d..2 82315.400036: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27122          <idle>-0     (-----) [000] .n.1 82315.400041: cpu_idle: state=4294967295 cpu_id=0
27123          <idle>-0     (-----) [000] d..2 82315.400051: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27124          <idle>-0     (-----) [002] ...1 82315.400054: cpu_idle: state=4294967295 cpu_id=2
27125          <idle>-0     (-----) [002] d..1 82315.400059: cpu_idle: state=2 cpu_id=2
27126           <...>-27562 (-----) [001] d..2 82315.400371: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=S ==> next_comm=Binder:27550_1 next_pid=27564 next_prio=120
27127           <...>-27550 (-----) [000] .... 82315.400407: binder_transaction: transaction=1568327 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
27128           <...>-27550 (-----) [000] .... 82315.400414: binder_transaction_alloc_buf: transaction=1568327 data_size=96 offsets_size=0
27129           <...>-27550 (-----) [000] d..4 82315.400421: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=003
27130           <...>-27550 (-----) [000] d..5 82315.400443: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27131           <...>-27550 (-----) [000] d..2 82315.400458: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27132<...>-25493 ( 8943) [000] .... 82315.400466: binder_transaction_received: transaction=1568327
27133<...>-25493 ( 8943) [000] .... 82315.400823: binder_transaction: transaction=1568328 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27134<...>-25493 ( 8943) [000] .... 82315.400830: binder_transaction_alloc_buf: transaction=1568328 data_size=340 offsets_size=0
27135<...>-25493 ( 8943) [000] d..2 82315.400835: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27136<...>-25493 ( 8943) [000] d..3 82315.400849: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27137<...>-25493 ( 8943) [000] d..2 82315.400886: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27138           <...>-27550 (-----) [000] .... 82315.400894: binder_transaction_received: transaction=1568328
27139           <...>-27564 (-----) [001] d..2 82315.401078: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27140          <idle>-0     (-----) [001] d..1 82315.401099: cpu_idle: state=0 cpu_id=1
27141           <...>-27550 (-----) [000] .... 82315.401219: binder_transaction: transaction=1568329 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
27142           <...>-27550 (-----) [000] .... 82315.401223: binder_transaction_alloc_buf: transaction=1568329 data_size=116 offsets_size=8
27143           <...>-27550 (-----) [000] d..4 82315.401648: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27144           <...>-27550 (-----) [000] d..5 82315.401664: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27145           <...>-27550 (-----) [000] d..2 82315.401680: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27146<...>-25493 ( 8943) [000] .... 82315.401688: binder_transaction_received: transaction=1568329
27147<...>-25493 ( 8943) [000] d.s1 82315.401811: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
27148<...>-25493 ( 8943) [000] d.s2 82315.401840: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27149          <idle>-0     (-----) [001] .n.1 82315.401847: cpu_idle: state=4294967295 cpu_id=1
27150          <idle>-0     (-----) [001] d..2 82315.401862: 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
27151     rcu_preempt-7     (    7) [001] d..2 82315.401872: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
27152     rcu_preempt-7     (    7) [001] d..3 82315.401896: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
27153     rcu_preempt-7     (    7) [001] d..2 82315.401914: 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
27154         rcuop/2-29    (   29) [001] d..2 82315.401924: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
27155         rcuop/2-29    (   29) [001] d..3 82315.401943: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
27156         rcuop/2-29    (   29) [001] d..2 82315.401959: 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
27157         rcuop/3-37    (   37) [001] d..2 82315.401992: 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
27158          <idle>-0     (-----) [001] d..1 82315.402003: cpu_idle: state=0 cpu_id=1
27159<...>-25493 ( 8943) [000] .... 82315.402124: binder_transaction: transaction=1568332 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27160<...>-25493 ( 8943) [000] .... 82315.402130: binder_transaction_alloc_buf: transaction=1568332 data_size=4 offsets_size=0
27161<...>-25493 ( 8943) [000] d..2 82315.402134: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27162<...>-25493 ( 8943) [000] d..3 82315.402150: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27163<...>-25493 ( 8943) [000] d..2 82315.402186: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27164           <...>-27550 (-----) [000] .... 82315.402196: binder_transaction_received: transaction=1568332
27165           <...>-27550 (-----) [000] .... 82315.402319: binder_transaction: transaction=1568333 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
27166           <...>-27550 (-----) [000] .... 82315.402323: binder_transaction_alloc_buf: transaction=1568333 data_size=96 offsets_size=0
27167           <...>-27550 (-----) [000] d..4 82315.402328: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27168           <...>-27550 (-----) [000] d..5 82315.402342: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27169           <...>-27550 (-----) [000] d..2 82315.402354: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27170<...>-25493 ( 8943) [000] .... 82315.402361: binder_transaction_received: transaction=1568333
27171<...>-25493 ( 8943) [000] .... 82315.402631: binder_transaction: transaction=1568334 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27172<...>-25493 ( 8943) [000] .... 82315.402636: binder_transaction_alloc_buf: transaction=1568334 data_size=340 offsets_size=0
27173<...>-25493 ( 8943) [000] d..2 82315.402640: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27174<...>-25493 ( 8943) [000] d..3 82315.402653: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
27175<...>-25493 ( 8943) [000] d..2 82315.402690: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27176           <...>-27550 (-----) [000] .... 82315.402697: binder_transaction_received: transaction=1568334
27177           <...>-27550 (-----) [000] d.s2 82315.405146: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27178           <...>-27550 (-----) [000] d.s3 82315.405173: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27179          <idle>-0     (-----) [001] .n.1 82315.405179: cpu_idle: state=4294967295 cpu_id=1
27180          <idle>-0     (-----) [001] d..2 82315.405191: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27181<...>-1054 ( 1054) [001] .... 82315.405335: clk_set_rate: l3_cluster0_vote_clk 652800000
27182<...>-1054 ( 1054) [001] .... 82315.405342: clk_set_rate: l3_clk 652800000
27183<...>-1054 ( 1054) [001] d..2 82315.405392: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27184          <idle>-0     (-----) [001] d..1 82315.405404: cpu_idle: state=0 cpu_id=1
27185          <idle>-0     (-----) [001] d.s2 82315.408465: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27186           <...>-27550 (-----) [000] d.s2 82315.408478: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27187          <idle>-0     (-----) [001] dns3 82315.408479: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27188           <...>-27550 (-----) [000] d.s3 82315.408500: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27189          <idle>-0     (-----) [001] .n.1 82315.408507: cpu_idle: state=4294967295 cpu_id=1
27190          <idle>-0     (-----) [001] d..2 82315.408518: 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
27191     rcu_preempt-7     (    7) [001] d..2 82315.408529: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27192     rcu_preempt-7     (    7) [001] d..3 82315.408548: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27193     rcu_preempt-7     (    7) [001] d..2 82315.408552: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
27194     rcu_preempt-7     (    7) [001] d..3 82315.408567: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
27195     rcu_preempt-7     (    7) [001] d..2 82315.408580: 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
27196         rcuop/0-10    (   10) [001] d..2 82315.408588: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
27197         rcuop/0-10    (   10) [001] d..3 82315.408608: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
27198         rcuop/0-10    (   10) [001] d..2 82315.408618: 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
27199         rcuop/6-61    (   61) [001] d..2 82315.408635: 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
27200         rcuop/1-21    (   21) [001] d..2 82315.408662: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27201<...>-1054 ( 1054) [001] d..2 82315.408743: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27202          <idle>-0     (-----) [001] d..1 82315.408756: cpu_idle: state=2 cpu_id=1
27203          <idle>-0     (-----) [005] d.s2 82315.409385: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=005
27204          <idle>-0     (-----) [005] d.H4 82315.409471: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
27205          <idle>-0     (-----) [005] ...1 82315.409507: cpu_idle: state=4294967295 cpu_id=5
27206          <idle>-0     (-----) [005] d..1 82315.409516: cpu_idle: state=2 cpu_id=5
27207          <idle>-0     (-----) [001] dnh2 82315.409643: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=001
27208          <idle>-0     (-----) [001] .n.1 82315.409653: cpu_idle: state=4294967295 cpu_id=1
27209          <idle>-0     (-----) [001] d..2 82315.409670: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kswapd0 next_pid=142 next_prio=120
27210          <idle>-0     (-----) [003] dnh2 82315.409693: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
27211          <idle>-0     (-----) [003] .n.1 82315.409703: cpu_idle: state=4294967295 cpu_id=3
27212<...>-142 ( 142) [001] d..2 82315.409713: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27213          <idle>-0     (-----) [003] d..2 82315.409717: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
27214          <idle>-0     (-----) [001] d..1 82315.409725: cpu_idle: state=0 cpu_id=1
27215         sugov:0-576   (  576) [003] .... 82315.409758: clk_set_rate: pwrcl_clk 1056000000
27216         sugov:0-576   (  576) [003] .... 82315.409769: clk_set_rate: cpu3_pwrcl_clk 979200000
27217         sugov:0-576   (  576) [003] .... 82315.409780: clk_set_rate: cpu2_pwrcl_clk 979200000
27218         sugov:0-576   (  576) [003] .... 82315.409790: clk_set_rate: cpu1_pwrcl_clk 979200000
27219         sugov:0-576   (  576) [003] .... 82315.409797: clk_set_rate: cpu0_pwrcl_clk 1056000000
27220         sugov:0-576   (  576) [003] .... 82315.409807: cpu_frequency: state=1056000 cpu_id=0
27221         sugov:0-576   (  576) [003] .... 82315.409835: cpu_frequency: state=1056000 cpu_id=1
27222         sugov:0-576   (  576) [003] .... 82315.409840: cpu_frequency: state=1056000 cpu_id=2
27223         sugov:0-576   (  576) [003] .... 82315.409845: cpu_frequency: state=1056000 cpu_id=3
27224         sugov:0-576   (  576) [003] d..2 82315.409887: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27225          <idle>-0     (-----) [003] d..1 82315.409903: cpu_idle: state=0 cpu_id=3
27226          <idle>-0     (-----) [003] ...1 82315.411072: cpu_idle: state=4294967295 cpu_id=3
27227          <idle>-0     (-----) [003] d..1 82315.411076: cpu_idle: state=2 cpu_id=3
27228           <...>-27550 (-----) [000] d.H2 82315.411877: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
27229           <...>-27550 (-----) [000] d.H3 82315.411895: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
27230          <idle>-0     (-----) [003] .n.1 82315.412062: cpu_idle: state=4294967295 cpu_id=3
27231          <idle>-0     (-----) [003] d..2 82315.412080: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
27232         sugov:0-576   (  576) [003] .... 82315.412104: clk_set_rate: pwrcl_clk 1689600000
27233         sugov:0-576   (  576) [003] d..2 82315.412219: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
27234          <idle>-0     (-----) [003] d..1 82315.412233: cpu_idle: state=0 cpu_id=3
27235          <idle>-0     (-----) [001] d.s3 82315.412355: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
27236          <idle>-0     (-----) [001] d.s4 82315.412371: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
27237          <idle>-0     (-----) [003] .n.1 82315.412377: cpu_idle: state=4294967295 cpu_id=3
27238          <idle>-0     (-----) [001] ...1 82315.412380: cpu_idle: state=4294967295 cpu_id=1
27239          <idle>-0     (-----) [001] d..1 82315.412384: cpu_idle: state=0 cpu_id=1
27240          <idle>-0     (-----) [003] d..2 82315.412386: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
27241         sugov:0-576   (  576) [003] .... 82315.412400: clk_set_rate: cpu3_pwrcl_clk 1056000000
27242         sugov:0-576   (  576) [003] .... 82315.412410: clk_set_rate: cpu2_pwrcl_clk 1056000000
27243         sugov:0-576   (  576) [003] .... 82315.412417: clk_set_rate: cpu1_pwrcl_clk 1056000000
27244         sugov:0-576   (  576) [003] .... 82315.412425: clk_set_rate: cpu0_pwrcl_clk 1689600000
27245         sugov:0-576   (  576) [003] .... 82315.412435: cpu_frequency: state=1689600 cpu_id=0
27246         sugov:0-576   (  576) [003] .... 82315.412449: cpu_frequency: state=1689600 cpu_id=1
27247         sugov:0-576   (  576) [003] .... 82315.412453: cpu_frequency: state=1689600 cpu_id=2
27248         sugov:0-576   (  576) [003] .... 82315.412457: cpu_frequency: state=1689600 cpu_id=3
27249         sugov:0-576   (  576) [003] d..2 82315.412479: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27250          <idle>-0     (-----) [003] d..1 82315.412491: cpu_idle: state=0 cpu_id=3
27251           <...>-27550 (-----) [000] .... 82315.412985: binder_transaction: transaction=1568335 dest_node=396891 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x33
27252           <...>-27550 (-----) [000] .... 82315.412988: binder_transaction_alloc_buf: transaction=1568335 data_size=92 offsets_size=0
27253           <...>-27550 (-----) [000] d..4 82315.412993: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27254           <...>-27550 (-----) [000] dn.5 82315.413007: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27255           <...>-27550 (-----) [000] d..2 82315.413014: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27256<...>-25493 ( 8943) [000] .... 82315.413019: binder_transaction_received: transaction=1568335
27257<...>-25493 ( 8943) [000] .... 82315.413192: binder_transaction: transaction=1568336 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27258<...>-25493 ( 8943) [000] .... 82315.413196: binder_transaction_alloc_buf: transaction=1568336 data_size=4 offsets_size=0
27259<...>-25493 ( 8943) [000] d..2 82315.413227: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27260           <...>-27550 (-----) [000] .... 82315.413233: binder_transaction_received: transaction=1568336
27261           <...>-27550 (-----) [000] .... 82315.413688: binder_transaction: transaction=1568337 dest_node=397015 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x26
27262           <...>-27550 (-----) [000] .... 82315.413691: binder_transaction_alloc_buf: transaction=1568337 data_size=80 offsets_size=0
27263           <...>-27550 (-----) [000] d..4 82315.413694: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27264           <...>-27550 (-----) [000] dn.5 82315.413706: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27265           <...>-27550 (-----) [000] d..2 82315.413712: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27266<...>-25493 ( 8943) [000] .... 82315.413718: binder_transaction_received: transaction=1568337
27267<...>-25493 ( 8943) [000] .... 82315.413864: binder_transaction: transaction=1568338 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27268<...>-25493 ( 8943) [000] .... 82315.413867: binder_transaction_alloc_buf: transaction=1568338 data_size=8 offsets_size=0
27269<...>-25493 ( 8943) [000] d..2 82315.413896: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27270           <...>-27550 (-----) [000] .... 82315.413903: binder_transaction_received: transaction=1568338
27271           <...>-27550 (-----) [000] .... 82315.414664: binder_transaction: transaction=1568339 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3a
27272           <...>-27550 (-----) [000] .... 82315.414667: binder_transaction_alloc_buf: transaction=1568339 data_size=260 offsets_size=0
27273           <...>-27550 (-----) [000] d..4 82315.414670: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27274           <...>-27550 (-----) [000] dn.5 82315.414681: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27275           <...>-27550 (-----) [000] d..2 82315.414688: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27276<...>-25493 ( 8943) [000] .... 82315.414693: binder_transaction_received: transaction=1568339
27277<...>-25493 ( 8943) [000] .... 82315.415046: binder_transaction: transaction=1568340 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27278<...>-25493 ( 8943) [000] .... 82315.415050: binder_transaction_alloc_buf: transaction=1568340 data_size=1120 offsets_size=0
27279<...>-25493 ( 8943) [000] d..2 82315.415079: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27280           <...>-27550 (-----) [000] .... 82315.415085: binder_transaction_received: transaction=1568340
27281           <...>-27550 (-----) [000] d.s2 82315.415132: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27282          <idle>-0     (-----) [001] d.s2 82315.415152: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27283           <...>-27550 (-----) [000] dns3 82315.415162: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27284          <idle>-0     (-----) [001] dns3 82315.415170: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27285           <...>-27550 (-----) [000] d..2 82315.415174: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27286          <idle>-0     (-----) [001] .n.1 82315.415177: cpu_idle: state=4294967295 cpu_id=1
27287          <idle>-0     (-----) [001] d..2 82315.415185: 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
27288     rcu_preempt-7     (    7) [001] d..2 82315.415198: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
27289     rcu_preempt-7     (    7) [001] d..3 82315.415210: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
27290     rcu_preempt-7     (    7) [001] d..2 82315.415223: 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
27291         rcuop/2-29    (   29) [001] d..2 82315.415232: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
27292         rcuop/2-29    (   29) [001] d..3 82315.415242: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
27293<...>-1054 ( 1054) [000] .... 82315.415244: clk_set_rate: l3_cluster0_vote_clk 940800000
27294         rcuop/2-29    (   29) [001] d..2 82315.415248: 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
27295<...>-1054 ( 1054) [000] .... 82315.415248: clk_set_rate: l3_clk 940800000
27296         rcuop/3-37    (   37) [001] d..2 82315.415274: 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
27297          <idle>-0     (-----) [001] d..1 82315.415284: cpu_idle: state=0 cpu_id=1
27298<...>-1054 ( 1054) [000] d..2 82315.415465: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27299          <idle>-0     (-----) [001] d.s3 82315.415777: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27300          <idle>-0     (-----) [001] d.s4 82315.415790: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27301          <idle>-0     (-----) [001] dns4 82315.415793: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27302          <idle>-0     (-----) [001] .n.1 82315.415797: cpu_idle: state=4294967295 cpu_id=1
27303          <idle>-0     (-----) [001] d..2 82315.415804: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27304<...>-1054 ( 1054) [001] d..2 82315.415840: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27305          <idle>-0     (-----) [001] d..1 82315.415847: cpu_idle: state=0 cpu_id=1
27306           <...>-27550 (-----) [000] d.s2 82315.418470: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
27307           <...>-27550 (-----) [000] dns3 82315.418487: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
27308          <idle>-0     (-----) [003] ...1 82315.418492: cpu_idle: state=4294967295 cpu_id=3
27309          <idle>-0     (-----) [003] d..1 82315.418496: cpu_idle: state=2 cpu_id=3
27310           <...>-27550 (-----) [000] d..2 82315.418497: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
27311     kworker/0:1-25262 (25262) [000] d..2 82315.418525: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27312          <idle>-0     (-----) [001] d.s2 82315.421792: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27313          <idle>-0     (-----) [001] dns3 82315.421802: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27314          <idle>-0     (-----) [001] .n.1 82315.421815: cpu_idle: state=4294967295 cpu_id=1
27315          <idle>-0     (-----) [001] d..2 82315.421823: 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
27316     rcu_preempt-7     (    7) [001] d..2 82315.421830: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27317     rcu_preempt-7     (    7) [001] d..3 82315.421842: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27318     rcu_preempt-7     (    7) [001] d..2 82315.421849: 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
27319         rcuop/0-10    (   10) [001] d..2 82315.421853: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
27320         rcuop/0-10    (   10) [001] d..3 82315.421864: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
27321         rcuop/0-10    (   10) [001] d..2 82315.421907: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27322         rcuop/0-10    (   10) [001] d..3 82315.421915: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27323         rcuop/0-10    (   10) [001] d..2 82315.421922: 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
27324         rcuop/1-21    (   21) [001] d..2 82315.421932: 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
27325     rcu_preempt-7     (    7) [001] d..2 82315.421949: 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
27326          <idle>-0     (-----) [001] d..1 82315.421965: cpu_idle: state=0 cpu_id=1
27327           <...>-27550 (-----) [000] d.s2 82315.425128: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27328           <...>-27550 (-----) [000] dns3 82315.425160: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27329           <...>-27550 (-----) [000] d..2 82315.425172: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27330<...>-1054 ( 1054) [000] d..2 82315.425329: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27331          <idle>-0     (-----) [001] d.s3 82315.425368: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27332          <idle>-0     (-----) [001] d.s4 82315.425382: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27333          <idle>-0     (-----) [001] dns4 82315.425384: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27334          <idle>-0     (-----) [001] .n.1 82315.425389: cpu_idle: state=4294967295 cpu_id=1
27335          <idle>-0     (-----) [001] d..2 82315.425398: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27336<...>-1054 ( 1054) [001] .... 82315.425457: clk_set_rate: l3_cluster0_vote_clk 1305600000
27337<...>-1054 ( 1054) [001] .... 82315.425462: clk_set_rate: l3_clk 1305600000
27338<...>-1054 ( 1054) [001] d..2 82315.425502: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27339          <idle>-0     (-----) [001] d..1 82315.425519: cpu_idle: state=0 cpu_id=1
27340          <idle>-0     (-----) [001] d.s2 82315.428456: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27341          <idle>-0     (-----) [001] dns3 82315.428465: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27342          <idle>-0     (-----) [001] .n.1 82315.428475: cpu_idle: state=4294967295 cpu_id=1
27343          <idle>-0     (-----) [001] d..2 82315.428482: 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
27344     rcu_preempt-7     (    7) [001] d..2 82315.428488: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27345     rcu_preempt-7     (    7) [001] d..3 82315.428498: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27346     rcu_preempt-7     (    7) [001] d..2 82315.428504: 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
27347         rcuop/0-10    (   10) [001] d..2 82315.428539: 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
27348          <idle>-0     (-----) [001] d..1 82315.428554: cpu_idle: state=2 cpu_id=1
27349           <...>-27550 (-----) [000] d.H3 82315.431895: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
27350           <...>-27550 (-----) [000] d.H4 82315.431919: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
27351          <idle>-0     (-----) [003] .n.1 82315.432399: cpu_idle: state=4294967295 cpu_id=3
27352          <idle>-0     (-----) [003] d..2 82315.432422: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
27353         sugov:0-576   (  576) [003] .... 82315.432452: clk_set_rate: pwrcl_clk 1766400000
27354         sugov:0-576   (  576) [003] .... 82315.432462: clk_set_rate: cpu3_pwrcl_clk 1689600000
27355         sugov:0-576   (  576) [003] .... 82315.432471: clk_set_rate: cpu2_pwrcl_clk 1689600000
27356         sugov:0-576   (  576) [003] .... 82315.432478: clk_set_rate: cpu1_pwrcl_clk 1689600000
27357         sugov:0-576   (  576) [003] .... 82315.432486: clk_set_rate: cpu0_pwrcl_clk 1766400000
27358         sugov:0-576   (  576) [003] .... 82315.432496: cpu_frequency: state=1766400 cpu_id=0
27359         sugov:0-576   (  576) [003] d..2 82315.432691: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
27360          <idle>-0     (-----) [003] d..1 82315.432705: cpu_idle: state=0 cpu_id=3
27361          <idle>-0     (-----) [001] d.s3 82315.433445: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
27362          <idle>-0     (-----) [001] d.s4 82315.433461: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
27363          <idle>-0     (-----) [003] .n.1 82315.433467: cpu_idle: state=4294967295 cpu_id=3
27364          <idle>-0     (-----) [001] ...1 82315.433470: cpu_idle: state=4294967295 cpu_id=1
27365          <idle>-0     (-----) [003] d..2 82315.433473: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
27366          <idle>-0     (-----) [001] d..1 82315.433475: cpu_idle: state=2 cpu_id=1
27367         sugov:0-576   (  576) [003] .... 82315.433479: cpu_frequency: state=1766400 cpu_id=1
27368         sugov:0-576   (  576) [003] .... 82315.433483: cpu_frequency: state=1766400 cpu_id=2
27369         sugov:0-576   (  576) [003] .... 82315.433485: cpu_frequency: state=1766400 cpu_id=3
27370         sugov:0-576   (  576) [003] d..2 82315.433499: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27371          <idle>-0     (-----) [003] d..1 82315.433506: cpu_idle: state=0 cpu_id=3
27372           <...>-27550 (-----) [000] d.s2 82315.435131: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27373           <...>-27550 (-----) [000] d.s3 82315.435166: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
27374          <idle>-0     (-----) [003] .n.1 82315.435170: cpu_idle: state=4294967295 cpu_id=3
27375          <idle>-0     (-----) [003] d..2 82315.435178: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27376<...>-1054 ( 1054) [003] .... 82315.435219: clk_set_rate: l3_cluster0_vote_clk 1401600000
27377<...>-1054 ( 1054) [003] .... 82315.435224: clk_set_rate: l3_clk 1401600000
27378<...>-1054 ( 1054) [003] d..2 82315.435455: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
27379          <idle>-0     (-----) [003] d..1 82315.435464: cpu_idle: state=0 cpu_id=3
27380          <idle>-0     (-----) [001] d.s3 82315.435700: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
27381          <idle>-0     (-----) [001] d.s4 82315.435708: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27382          <idle>-0     (-----) [001] d.s4 82315.435716: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
27383          <idle>-0     (-----) [003] .n.1 82315.435721: cpu_idle: state=4294967295 cpu_id=3
27384          <idle>-0     (-----) [001] ...1 82315.435724: cpu_idle: state=4294967295 cpu_id=1
27385          <idle>-0     (-----) [003] d..2 82315.435729: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27386          <idle>-0     (-----) [001] d..1 82315.435731: cpu_idle: state=0 cpu_id=1
27387<...>-1054 ( 1054) [003] d..2 82315.435745: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27388          <idle>-0     (-----) [003] d..1 82315.435753: cpu_idle: state=2 cpu_id=3
27389           <...>-27550 (-----) [000] d..2 82315.439841: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27390           <...>-27550 (-----) [000] d..3 82315.439859: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27391          <idle>-0     (-----) [001] .n.1 82315.439864: cpu_idle: state=4294967295 cpu_id=1
27392          <idle>-0     (-----) [001] d..2 82315.439875: 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
27393         rcuop/0-10    (   10) [001] d..2 82315.439880: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27394         rcuop/0-10    (   10) [001] d..3 82315.439890: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27395         rcuop/0-10    (   10) [001] d..2 82315.439897: 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
27396     rcu_preempt-7     (    7) [001] d..2 82315.439916: 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
27397          <idle>-0     (-----) [001] d..1 82315.439921: cpu_idle: state=0 cpu_id=1
27398           <...>-27550 (-----) [000] d.s2 82315.445125: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
27399          <idle>-0     (-----) [001] d.s2 82315.445126: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27400          <idle>-0     (-----) [001] dns3 82315.445136: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27401          <idle>-0     (-----) [001] .n.1 82315.445149: cpu_idle: state=4294967295 cpu_id=1
27402          <idle>-0     (-----) [001] d..2 82315.445156: 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
27403           <...>-27550 (-----) [000] d.s3 82315.445161: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27404           <...>-27550 (-----) [000] d.s2 82315.445166: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27405     rcu_preempt-7     (    7) [001] d..2 82315.445170: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27406           <...>-27550 (-----) [000] d.s3 82315.445180: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27407<...>-1054 ( 1054) [001] d..2 82315.445287: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
27408     rcu_preempt-7     (    7) [001] d..2 82315.445291: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27409     rcu_preempt-7     (    7) [001] d..3 82315.445300: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27410     rcu_preempt-7     (    7) [001] d..2 82315.445306: 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
27411         rcuop/0-10    (   10) [001] d..2 82315.445319: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27412         rcuop/0-10    (   10) [001] d..3 82315.445326: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27413         rcuop/0-10    (   10) [001] d..2 82315.445330: 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
27414     rcu_preempt-7     (    7) [001] d..2 82315.445344: 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
27415          <idle>-0     (-----) [001] d..1 82315.445358: cpu_idle: state=0 cpu_id=1
27416          <idle>-0     (-----) [001] d.s2 82315.451795: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27417          <idle>-0     (-----) [001] dns3 82315.451806: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27418           <...>-27550 (-----) [000] d.h2 82315.451810: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
27419          <idle>-0     (-----) [001] .n.1 82315.451816: cpu_idle: state=4294967295 cpu_id=1
27420           <...>-27550 (-----) [000] dnh3 82315.451822: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
27421          <idle>-0     (-----) [001] d..2 82315.451825: 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
27422           <...>-27550 (-----) [000] dns2 82315.451908: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27423     rcu_preempt-7     (    7) [001] d..2 82315.451913: 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
27424          <idle>-0     (-----) [001] d..1 82315.451921: cpu_idle: state=0 cpu_id=1
27425           <...>-27550 (-----) [000] dns3 82315.451926: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27426          <idle>-0     (-----) [001] .n.1 82315.451931: cpu_idle: state=4294967295 cpu_id=1
27427           <...>-27550 (-----) [000] d..2 82315.451935: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
27428          <idle>-0     (-----) [001] d..2 82315.451937: 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
27429     rcu_preempt-7     (    7) [001] d..2 82315.451940: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27430     rcu_preempt-7     (    7) [001] d..2 82315.451981: 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
27431          <idle>-0     (-----) [001] d..1 82315.451989: cpu_idle: state=0 cpu_id=1
27432     migration/0-13    (   13) [000] d.h3 82315.452013: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
27433     migration/0-13    (   13) [000] d.h3 82315.452037: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
27434     migration/0-13    (   13) [000] d.h4 82315.452057: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
27435     migration/0-13    (   13) [000] d..2 82315.452085: 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
27436          <idle>-0     (-----) [000] d..1 82315.452116: cpu_idle: state=0 cpu_id=0
27437          <idle>-0     (-----) [003] .n.1 82315.452594: cpu_idle: state=4294967295 cpu_id=3
27438          <idle>-0     (-----) [003] d..2 82315.452610: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
27439         sugov:0-576   (  576) [003] .... 82315.452644: clk_set_rate: pwrcl_clk 652800000
27440         sugov:0-576   (  576) [003] .... 82315.452738: clk_set_rate: cpu3_pwrcl_clk 1766400000
27441         sugov:0-576   (  576) [003] .... 82315.452749: clk_set_rate: cpu2_pwrcl_clk 1766400000
27442         sugov:0-576   (  576) [003] .... 82315.452757: clk_set_rate: cpu1_pwrcl_clk 1766400000
27443         sugov:0-576   (  576) [003] .... 82315.452765: clk_set_rate: cpu0_pwrcl_clk 652800000
27444          <idle>-0     (-----) [001] ...1 82315.452768: cpu_idle: state=4294967295 cpu_id=1
27445          <idle>-0     (-----) [001] d..1 82315.452773: cpu_idle: state=0 cpu_id=1
27446         sugov:0-576   (  576) [003] .... 82315.452879: cpu_frequency: state=652800 cpu_id=0
27447          <idle>-0     (-----) [006] .n.1 82315.453039: cpu_idle: state=4294967295 cpu_id=6
27448          <idle>-0     (-----) [006] d..2 82315.453060: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27449          <idle>-0     (-----) [007] dnh2 82315.453106: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
27450          <idle>-0     (-----) [007] dnh2 82315.453116: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=007
27451          <idle>-0     (-----) [007] .n.1 82315.453123: cpu_idle: state=4294967295 cpu_id=7
27452          <idle>-0     (-----) [007] d..2 82315.453136: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
27453         sugov:0-576   (  576) [003] d..2 82315.453138: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
27454          <idle>-0     (-----) [001] d.s3 82315.453156: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
27455          <idle>-0     (-----) [003] d..1 82315.453161: cpu_idle: state=2 cpu_id=3
27456         sugov:4-577   (  577) [007] .... 82315.453170: clk_set_rate: perfcl_clk 1363200000
27457         sugov:4-577   (  577) [007] .... 82315.453172: clk_set_rate: cpu7_perfcl_clk 825600000
27458          <idle>-0     (-----) [001] d.s4 82315.453178: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
27459         sugov:4-577   (  577) [007] .... 82315.453180: clk_set_rate: cpu6_perfcl_clk 825600000
27460         sugov:4-577   (  577) [007] .... 82315.453186: clk_set_rate: cpu5_perfcl_clk 825600000
27461          <idle>-0     (-----) [001] ...1 82315.453191: cpu_idle: state=4294967295 cpu_id=1
27462          <idle>-0     (-----) [003] .n.1 82315.453191: cpu_idle: state=4294967295 cpu_id=3
27463         sugov:4-577   (  577) [007] .... 82315.453192: clk_set_rate: cpu4_perfcl_clk 1363200000
27464          <idle>-0     (-----) [001] d..1 82315.453199: cpu_idle: state=2 cpu_id=1
27465         sugov:4-577   (  577) [007] .... 82315.453200: cpu_frequency: state=1363200 cpu_id=4
27466          <idle>-0     (-----) [003] d..2 82315.453207: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
27467         sugov:0-576   (  576) [003] .... 82315.453228: cpu_frequency: state=652800 cpu_id=1
27468         sugov:4-577   (  577) [007] .... 82315.453235: cpu_frequency: state=1363200 cpu_id=5
27469         sugov:0-576   (  576) [003] .... 82315.453238: cpu_frequency: state=652800 cpu_id=2
27470         sugov:4-577   (  577) [007] .... 82315.453240: cpu_frequency: state=1363200 cpu_id=6
27471          <idle>-0     (-----) [000] ...1 82315.453243: cpu_idle: state=4294967295 cpu_id=0
27472         sugov:4-577   (  577) [007] .... 82315.453243: cpu_frequency: state=1363200 cpu_id=7
27473         sugov:0-576   (  576) [003] .... 82315.453245: cpu_frequency: state=652800 cpu_id=3
27474          <idle>-0     (-----) [000] d..1 82315.453252: cpu_idle: state=2 cpu_id=0
27475         sugov:4-577   (  577) [007] d..2 82315.453259: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
27476         rcuop/0-10    (   10) [007] d..2 82315.453280: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27477         sugov:0-576   (  576) [003] d..2 82315.453280: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27478          <idle>-0     (-----) [003] d..1 82315.453298: cpu_idle: state=0 cpu_id=3
27479         rcuop/0-10    (   10) [007] d..2 82315.453301: 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
27480          <idle>-0     (-----) [007] d..1 82315.453316: cpu_idle: state=2 cpu_id=7
27481          <idle>-0     (-----) [001] dnh2 82315.453893: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27482          <idle>-0     (-----) [001] .n.1 82315.453902: cpu_idle: state=4294967295 cpu_id=1
27483          <idle>-0     (-----) [001] d..2 82315.453920: 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
27484     rcu_preempt-7     (    7) [001] d..2 82315.453951: 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
27485          <idle>-0     (-----) [001] d..1 82315.453966: cpu_idle: state=0 cpu_id=1
27486          <idle>-0     (-----) [001] .n.1 82315.454869: cpu_idle: state=4294967295 cpu_id=1
27487          <idle>-0     (-----) [001] d..2 82315.454885: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27565 next_prio=120
27488           <...>-27550 (-----) [006] d..2 82315.454925: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27489           <...>-27565 (-----) [001] d..1 82315.454938: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27490          <idle>-0     (-----) [006] d..1 82315.454941: cpu_idle: state=2 cpu_id=6
27491           <...>-27565 (-----) [001] d..2 82315.454981: sched_switch: prev_comm=id.nn.benchmark prev_pid=27565 prev_prio=129 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
27492          <idle>-0     (-----) [001] d..1 82315.454996: cpu_idle: state=0 cpu_id=1
27493          <idle>-0     (-----) [006] d.h2 82315.456198: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27494          <idle>-0     (-----) [006] dnh2 82315.456203: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27495          <idle>-0     (-----) [006] .n.1 82315.456207: cpu_idle: state=4294967295 cpu_id=6
27496          <idle>-0     (-----) [006] d..2 82315.456215: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27497           <...>-27550 (-----) [006] d..1 82315.456223: sched_waking: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=001
27498          <idle>-0     (-----) [001] d.h2 82315.456245: sched_blocked_reason: pid=27565 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27499          <idle>-0     (-----) [001] dnh2 82315.456251: sched_wakeup: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=001
27500           <...>-27550 (-----) [006] d..2 82315.456258: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27501          <idle>-0     (-----) [001] .n.1 82315.456259: cpu_idle: state=4294967295 cpu_id=1
27502          <idle>-0     (-----) [006] d..2 82315.456262: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
27503          <idle>-0     (-----) [001] d..2 82315.456273: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27565 next_prio=129
27504          <idle>-0     (-----) [006] dn.3 82315.456275: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
27505          <idle>-0     (-----) [006] d..2 82315.456280: 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
27506           <...>-27565 (-----) [001] d..1 82315.456289: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27507     ksoftirqd/6-58    (   58) [006] d.s2 82315.456294: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27508     ksoftirqd/6-58    (   58) [006] d.H2 82315.456315: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27509     ksoftirqd/6-58    (   58) [006] d.H2 82315.456317: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27510     ksoftirqd/6-58    (   58) [006] d..2 82315.456326: sched_switch: prev_comm=ksoftirqd/6 prev_pid=58 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27511          <idle>-0     (-----) [003] dnh2 82315.456328: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
27512           <...>-27550 (-----) [006] d..1 82315.456333: sched_waking: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=001
27513          <idle>-0     (-----) [003] .n.1 82315.456337: cpu_idle: state=4294967295 cpu_id=3
27514           <...>-27565 (-----) [001] d..2 82315.456347: sched_switch: prev_comm=id.nn.benchmark prev_pid=27565 prev_prio=129 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27515          <idle>-0     (-----) [003] d..2 82315.456350: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27516          <idle>-0     (-----) [001] d..1 82315.456358: cpu_idle: state=0 cpu_id=1
27517           <...>-27550 (-----) [006] d..2 82315.456363: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27518          <idle>-0     (-----) [006] d..1 82315.456370: cpu_idle: state=2 cpu_id=6
27519          <idle>-0     (-----) [001] d.h2 82315.456372: sched_blocked_reason: pid=27565 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27520          <idle>-0     (-----) [001] dnh2 82315.456376: sched_wakeup: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=001
27521          <idle>-0     (-----) [001] .n.1 82315.456384: cpu_idle: state=4294967295 cpu_id=1
27522<...>-1054 ( 1054) [003] .... 82315.456392: clk_set_rate: l3_cluster0_vote_clk 844800000
27523          <idle>-0     (-----) [001] d..2 82315.456393: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27565 next_prio=129
27524           <...>-27565 (-----) [001] d..1 82315.456399: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27525<...>-1054 ( 1054) [003] .... 82315.456403: clk_set_rate: l3_clk 844800000
27526           <...>-27565 (-----) [001] d..2 82315.456436: sched_switch: prev_comm=id.nn.benchmark prev_pid=27565 prev_prio=129 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27527          <idle>-0     (-----) [001] d..1 82315.456448: cpu_idle: state=0 cpu_id=1
27528<...>-1054 ( 1054) [003] d..2 82315.456689: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
27529          <idle>-0     (-----) [003] d..1 82315.456709: cpu_idle: state=0 cpu_id=3
27530          <idle>-0     (-----) [001] d.s3 82315.457297: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
27531          <idle>-0     (-----) [001] d.s4 82315.457309: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27532          <idle>-0     (-----) [001] d.s4 82315.457319: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
27533          <idle>-0     (-----) [003] .n.1 82315.457327: cpu_idle: state=4294967295 cpu_id=3
27534          <idle>-0     (-----) [001] ...1 82315.457331: cpu_idle: state=4294967295 cpu_id=1
27535          <idle>-0     (-----) [001] d..1 82315.457338: cpu_idle: state=0 cpu_id=1
27536          <idle>-0     (-----) [003] d..2 82315.457341: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27537<...>-1054 ( 1054) [003] d..2 82315.457399: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27538          <idle>-0     (-----) [006] d.h2 82315.457413: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27539          <idle>-0     (-----) [003] d..1 82315.457415: cpu_idle: state=0 cpu_id=3
27540          <idle>-0     (-----) [006] dnh2 82315.457416: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27541          <idle>-0     (-----) [006] .n.1 82315.457421: cpu_idle: state=4294967295 cpu_id=6
27542          <idle>-0     (-----) [006] d..2 82315.457429: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27543           <...>-27550 (-----) [006] d..1 82315.457436: sched_waking: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=001
27544          <idle>-0     (-----) [001] d.h2 82315.457455: sched_blocked_reason: pid=27565 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27545           <...>-27550 (-----) [006] d..2 82315.457457: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27546          <idle>-0     (-----) [001] dnh2 82315.457460: sched_wakeup: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=001
27547          <idle>-0     (-----) [006] d..1 82315.457464: cpu_idle: state=2 cpu_id=6
27548          <idle>-0     (-----) [001] .n.1 82315.457467: cpu_idle: state=4294967295 cpu_id=1
27549          <idle>-0     (-----) [001] d..2 82315.457477: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27565 next_prio=129
27550           <...>-27565 (-----) [001] d..1 82315.457482: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27551           <...>-27565 (-----) [001] d..2 82315.457656: sched_switch: prev_comm=id.nn.benchmark prev_pid=27565 prev_prio=129 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
27552          <idle>-0     (-----) [001] d..1 82315.457673: cpu_idle: state=0 cpu_id=1
27553          <idle>-0     (-----) [006] d.h2 82315.458453: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27554          <idle>-0     (-----) [006] dnh2 82315.458458: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27555          <idle>-0     (-----) [006] .n.1 82315.458462: cpu_idle: state=4294967295 cpu_id=6
27556          <idle>-0     (-----) [001] d.s2 82315.458469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27557          <idle>-0     (-----) [006] d..2 82315.458470: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27558           <...>-27550 (-----) [006] d..1 82315.458482: sched_waking: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=001
27559          <idle>-0     (-----) [001] dns3 82315.458490: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27560          <idle>-0     (-----) [001] dns3 82315.458501: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
27561          <idle>-0     (-----) [001] dns4 82315.458520: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
27562          <idle>-0     (-----) [003] dnh2 82315.458529: sched_blocked_reason: pid=27565 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27563          <idle>-0     (-----) [003] dnh2 82315.458536: sched_wakeup: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=003
27564           <...>-27550 (-----) [006] d..2 82315.458541: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27565          <idle>-0     (-----) [001] .n.1 82315.458547: cpu_idle: state=4294967295 cpu_id=1
27566          <idle>-0     (-----) [006] d..1 82315.458548: cpu_idle: state=2 cpu_id=6
27567          <idle>-0     (-----) [003] .n.1 82315.458549: cpu_idle: state=4294967295 cpu_id=3
27568          <idle>-0     (-----) [001] d..2 82315.458559: 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
27569          <idle>-0     (-----) [003] d..2 82315.458564: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27570     rcu_preempt-7     (    7) [001] d..2 82315.458599: 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
27571          <idle>-0     (-----) [001] d..1 82315.458614: cpu_idle: state=0 cpu_id=1
27572<...>-1054 ( 1054) [003] d..2 82315.458743: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=27565 next_prio=129
27573           <...>-27565 (-----) [003] d..1 82315.458773: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27574          <idle>-0     (-----) [001] d.s3 82315.458783: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
27575          <idle>-0     (-----) [001] d.s4 82315.458807: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27576          <idle>-0     (-----) [001] dns4 82315.458813: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27577          <idle>-0     (-----) [001] .n.1 82315.458822: cpu_idle: state=4294967295 cpu_id=1
27578          <idle>-0     (-----) [001] d..2 82315.458836: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27579<...>-1054 ( 1054) [001] d..2 82315.458873: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27580          <idle>-0     (-----) [001] d..1 82315.458887: cpu_idle: state=0 cpu_id=1
27581           <...>-27565 (-----) [003] d..2 82315.458958: sched_switch: prev_comm=id.nn.benchmark prev_pid=27565 prev_prio=129 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
27582          <idle>-0     (-----) [003] d..1 82315.458987: cpu_idle: state=0 cpu_id=3
27583          <idle>-0     (-----) [006] d.h2 82315.459607: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27584          <idle>-0     (-----) [006] dnh2 82315.459611: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27585          <idle>-0     (-----) [006] .n.1 82315.459615: cpu_idle: state=4294967295 cpu_id=6
27586          <idle>-0     (-----) [006] d..2 82315.459623: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27587           <...>-27550 (-----) [006] d..1 82315.459631: sched_waking: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=003
27588          <idle>-0     (-----) [003] d.h2 82315.459654: sched_blocked_reason: pid=27565 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27589          <idle>-0     (-----) [003] dnh2 82315.459660: sched_wakeup: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=003
27590          <idle>-0     (-----) [003] .n.1 82315.459669: cpu_idle: state=4294967295 cpu_id=3
27591           <...>-27550 (-----) [006] d..2 82315.459673: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27592          <idle>-0     (-----) [006] d..1 82315.459679: cpu_idle: state=2 cpu_id=6
27593          <idle>-0     (-----) [003] d..2 82315.459683: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27565 next_prio=129
27594           <...>-27565 (-----) [003] d..1 82315.459733: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27595           <...>-27565 (-----) [003] d..2 82315.459774: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
27596           <...>-27565 (-----) [003] d..3 82315.459804: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
27597          <idle>-0     (-----) [001] .n.1 82315.459810: cpu_idle: state=4294967295 cpu_id=1
27598          <idle>-0     (-----) [001] d..2 82315.459824: 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
27599         rcuop/2-29    (   29) [001] d..2 82315.459854: 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
27600          <idle>-0     (-----) [001] d..1 82315.459866: cpu_idle: state=0 cpu_id=1
27601           <...>-27565 (-----) [003] d..2 82315.459874: sched_switch: prev_comm=id.nn.benchmark prev_pid=27565 prev_prio=129 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
27602          <idle>-0     (-----) [003] d..1 82315.459894: cpu_idle: state=0 cpu_id=3
27603          <idle>-0     (-----) [006] d.h2 82315.460670: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27604          <idle>-0     (-----) [006] dnh2 82315.460674: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27605          <idle>-0     (-----) [006] .n.1 82315.460678: cpu_idle: state=4294967295 cpu_id=6
27606          <idle>-0     (-----) [006] d..2 82315.460686: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27607           <...>-27550 (-----) [006] d..1 82315.460692: sched_waking: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=003
27608          <idle>-0     (-----) [003] d.h2 82315.460713: sched_blocked_reason: pid=27565 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27609          <idle>-0     (-----) [003] dnh2 82315.460718: sched_wakeup: comm=id.nn.benchmark pid=27565 prio=129 target_cpu=003
27610           <...>-27550 (-----) [006] d..2 82315.460721: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27611          <idle>-0     (-----) [006] d..1 82315.460728: cpu_idle: state=2 cpu_id=6
27612          <idle>-0     (-----) [003] .n.1 82315.460728: cpu_idle: state=4294967295 cpu_id=3
27613          <idle>-0     (-----) [003] d..2 82315.460743: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27565 next_prio=129
27614           <...>-27565 (-----) [003] d..1 82315.460755: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27615           <...>-27565 (-----) [003] d..2 82315.461037: sched_switch: prev_comm=Profile Saver prev_pid=27565 prev_prio=129 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
27616          <idle>-0     (-----) [003] d..1 82315.461057: cpu_idle: state=0 cpu_id=3
27617          <idle>-0     (-----) [006] d.h2 82315.461714: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27618          <idle>-0     (-----) [006] dnh2 82315.461719: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27619          <idle>-0     (-----) [006] .n.1 82315.461723: cpu_idle: state=4294967295 cpu_id=6
27620          <idle>-0     (-----) [006] d..2 82315.461731: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27621          <idle>-0     (-----) [003] ...1 82315.462866: cpu_idle: state=4294967295 cpu_id=3
27622          <idle>-0     (-----) [003] d..1 82315.462872: cpu_idle: state=2 cpu_id=3
27623           <...>-27550 (-----) [006] .... 82315.464205: binder_transaction: transaction=1568341 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
27624           <...>-27550 (-----) [006] .... 82315.464212: binder_transaction_alloc_buf: transaction=1568341 data_size=96 offsets_size=0
27625           <...>-27550 (-----) [006] d..4 82315.464221: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
27626           <...>-27550 (-----) [006] dn.5 82315.464240: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27627           <...>-27550 (-----) [006] d..2 82315.464274: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27628<...>-25493 ( 8943) [006] .... 82315.464289: binder_transaction_received: transaction=1568341
27629<...>-25493 ( 8943) [006] .... 82315.464743: binder_transaction: transaction=1568342 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27630<...>-25493 ( 8943) [006] .... 82315.464748: binder_transaction_alloc_buf: transaction=1568342 data_size=340 offsets_size=0
27631<...>-25493 ( 8943) [006] d..2 82315.464776: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27632           <...>-27550 (-----) [006] .... 82315.464785: binder_transaction_received: transaction=1568342
27633           <...>-27550 (-----) [006] d.s2 82315.465126: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27634          <idle>-0     (-----) [001] dnH3 82315.465151: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27635          <idle>-0     (-----) [001] dns2 82315.465158: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27636          <idle>-0     (-----) [001] dns3 82315.465176: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27637          <idle>-0     (-----) [001] .n.1 82315.465188: cpu_idle: state=4294967295 cpu_id=1
27638          <idle>-0     (-----) [001] d..2 82315.465202: 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
27639     rcu_preempt-7     (    7) [001] d..2 82315.465213: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=007
27640     rcu_preempt-7     (    7) [001] d..2 82315.465285: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27641<...>-1054 ( 1054) [001] .... 82315.465343: clk_set_rate: l3_cluster1_vote_clk 576000000
27642<...>-1054 ( 1054) [001] d..2 82315.465560: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27643          <idle>-0     (-----) [007] dnh2 82315.465560: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=007
27644          <idle>-0     (-----) [007] .n.1 82315.465567: cpu_idle: state=4294967295 cpu_id=7
27645          <idle>-0     (-----) [007] d..2 82315.465577: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
27646          <idle>-0     (-----) [001] d.s4 82315.465606: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27647         rcuop/0-10    (   10) [007] d..2 82315.465617: 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
27648          <idle>-0     (-----) [001] d.s5 82315.465618: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27649          <idle>-0     (-----) [001] dns5 82315.465624: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27650          <idle>-0     (-----) [007] d..1 82315.465629: cpu_idle: state=2 cpu_id=7
27651          <idle>-0     (-----) [001] d..2 82315.465640: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27652           <...>-27550 (-----) [006] d..2 82315.465850: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
27653<...>-1054 ( 1054) [001] d..2 82315.465853: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27654          <idle>-0     (-----) [001] d..1 82315.465872: cpu_idle: state=0 cpu_id=1
27655          <idle>-0     (-----) [001] dnh2 82315.465892: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
27656          <idle>-0     (-----) [001] .n.1 82315.465900: cpu_idle: state=4294967295 cpu_id=1
27657          <idle>-0     (-----) [001] d..2 82315.465914: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
27658         rcuop/6-61    (   61) [001] d..2 82315.465950: 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
27659          <idle>-0     (-----) [001] d..1 82315.465963: cpu_idle: state=0 cpu_id=1
27660           <...>-27550 (-----) [006] .... 82315.466220: binder_transaction: transaction=1568343 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x22
27661           <...>-27550 (-----) [006] .... 82315.466223: binder_transaction_alloc_buf: transaction=1568343 data_size=84 offsets_size=0
27662           <...>-27550 (-----) [006] d..4 82315.466227: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27663           <...>-27550 (-----) [006] dn.5 82315.466235: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27664           <...>-27550 (-----) [006] d..2 82315.466241: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27665<...>-25493 ( 8943) [006] .... 82315.466251: binder_transaction_received: transaction=1568343
27666<...>-25493 ( 8943) [006] .... 82315.466514: binder_transaction: transaction=1568344 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27667<...>-25493 ( 8943) [006] .... 82315.466518: binder_transaction_alloc_buf: transaction=1568344 data_size=80 offsets_size=0
27668<...>-25493 ( 8943) [006] d..2 82315.466542: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27669           <...>-27550 (-----) [006] .... 82315.466551: binder_transaction_received: transaction=1568344
27670          <idle>-0     (-----) [001] d.s3 82315.466711: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27671          <idle>-0     (-----) [001] d.s4 82315.466722: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27672          <idle>-0     (-----) [001] dns4 82315.466727: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27673          <idle>-0     (-----) [001] .n.1 82315.466736: cpu_idle: state=4294967295 cpu_id=1
27674          <idle>-0     (-----) [001] d..2 82315.466750: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27675<...>-1054 ( 1054) [001] .... 82315.466789: clk_set_rate: l3_cluster0_vote_clk 300000000
27676<...>-1054 ( 1054) [001] .... 82315.466795: clk_set_rate: l3_clk 576000000
27677<...>-1054 ( 1054) [001] d..2 82315.466860: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27678          <idle>-0     (-----) [001] d..1 82315.466878: cpu_idle: state=0 cpu_id=1
27679           <...>-27550 (-----) [006] .... 82315.466988: binder_transaction: transaction=1568345 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xd
27680           <...>-27550 (-----) [006] .... 82315.466991: binder_transaction_alloc_buf: transaction=1568345 data_size=160 offsets_size=0
27681           <...>-27550 (-----) [006] d..4 82315.466994: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27682           <...>-27550 (-----) [006] dn.5 82315.467004: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27683           <...>-27550 (-----) [006] d..2 82315.467009: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27684<...>-25493 ( 8943) [006] .... 82315.467016: binder_transaction_received: transaction=1568345
27685<...>-25493 ( 8943) [006] .... 82315.467385: binder_transaction: transaction=1568346 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27686<...>-25493 ( 8943) [006] .... 82315.467388: binder_transaction_alloc_buf: transaction=1568346 data_size=2112 offsets_size=0
27687<...>-25493 ( 8943) [006] d..2 82315.467410: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27688           <...>-27550 (-----) [006] .... 82315.467418: binder_transaction_received: transaction=1568346
27689          <idle>-0     (-----) [001] d.s2 82315.471838: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27690          <idle>-0     (-----) [001] dns3 82315.471863: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27691          <idle>-0     (-----) [001] .n.1 82315.471884: cpu_idle: state=4294967295 cpu_id=1
27692          <idle>-0     (-----) [001] d..2 82315.471900: 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
27693     rcu_preempt-7     (    7) [001] d..2 82315.471914: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
27694     rcu_preempt-7     (    7) [001] d..3 82315.471936: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
27695     rcu_preempt-7     (    7) [001] d..2 82315.471955: 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
27696         rcuop/2-29    (   29) [001] d..2 82315.471964: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
27697         rcuop/2-29    (   29) [001] d..3 82315.471988: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
27698         rcuop/2-29    (   29) [001] d..2 82315.472001: 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
27699         rcuop/3-37    (   37) [001] d..2 82315.472044: 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
27700          <idle>-0     (-----) [001] d..1 82315.472062: cpu_idle: state=2 cpu_id=1
27701           <...>-27550 (-----) [006] .... 82315.474620: binder_transaction: transaction=1568347 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
27702           <...>-27550 (-----) [006] .... 82315.474625: binder_transaction_alloc_buf: transaction=1568347 data_size=160 offsets_size=0
27703           <...>-27550 (-----) [006] d..4 82315.474629: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27704           <...>-27550 (-----) [006] dn.5 82315.474639: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27705           <...>-27550 (-----) [006] d..2 82315.474644: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27706<...>-25493 ( 8943) [006] .... 82315.474653: binder_transaction_received: transaction=1568347
27707<...>-25493 ( 8943) [006] .... 82315.475047: binder_transaction: transaction=1568348 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27708<...>-25493 ( 8943) [006] .... 82315.475050: binder_transaction_alloc_buf: transaction=1568348 data_size=2348 offsets_size=0
27709<...>-25493 ( 8943) [006] d..2 82315.475075: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27710           <...>-27550 (-----) [006] .... 82315.475084: binder_transaction_received: transaction=1568348
27711           <...>-27550 (-----) [006] d.s2 82315.475126: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27712          <idle>-0     (-----) [001] dnh2 82315.475521: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27713          <idle>-0     (-----) [001] .n.1 82315.475534: cpu_idle: state=4294967295 cpu_id=1
27714          <idle>-0     (-----) [001] d..2 82315.475555: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27715<...>-1054 ( 1054) [001] d..2 82315.475861: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27716          <idle>-0     (-----) [001] d..1 82315.475876: cpu_idle: state=0 cpu_id=1
27717           <...>-27550 (-----) [006] .... 82315.476001: binder_transaction: transaction=1568349 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3a
27718           <...>-27550 (-----) [006] .... 82315.476004: binder_transaction_alloc_buf: transaction=1568349 data_size=260 offsets_size=0
27719           <...>-27550 (-----) [006] d..4 82315.476008: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27720           <...>-27550 (-----) [006] dn.5 82315.476019: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27721           <...>-27550 (-----) [006] d..2 82315.476026: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27722<...>-25493 ( 8943) [006] .... 82315.476034: binder_transaction_received: transaction=1568349
27723<...>-25493 ( 8943) [006] .... 82315.476277: binder_transaction: transaction=1568350 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27724<...>-25493 ( 8943) [006] .... 82315.476280: binder_transaction_alloc_buf: transaction=1568350 data_size=1120 offsets_size=0
27725<...>-25493 ( 8943) [006] d..2 82315.476304: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27726           <...>-27550 (-----) [006] .... 82315.476312: binder_transaction_received: transaction=1568350
27727          <idle>-0     (-----) [001] d.s3 82315.476635: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27728          <idle>-0     (-----) [001] d.s4 82315.476648: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27729          <idle>-0     (-----) [001] dns4 82315.476654: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27730          <idle>-0     (-----) [001] .n.1 82315.476663: cpu_idle: state=4294967295 cpu_id=1
27731          <idle>-0     (-----) [001] d..2 82315.476674: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27732<...>-1054 ( 1054) [001] .... 82315.476758: clk_set_rate: l3_cluster1_vote_clk 940800000
27733<...>-1054 ( 1054) [001] .... 82315.476765: clk_set_rate: l3_clk 940800000
27734<...>-1054 ( 1054) [001] d..2 82315.476817: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27735          <idle>-0     (-----) [001] d..1 82315.476829: cpu_idle: state=0 cpu_id=1
27736           <...>-27550 (-----) [006] .... 82315.477190: binder_transaction: transaction=1568351 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x43
27737           <...>-27550 (-----) [006] .... 82315.477193: binder_transaction_alloc_buf: transaction=1568351 data_size=68 offsets_size=0
27738           <...>-27550 (-----) [006] d..4 82315.477195: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27739           <...>-27550 (-----) [006] dn.5 82315.477204: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27740           <...>-27550 (-----) [006] d..2 82315.477209: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27741<...>-25493 ( 8943) [006] .... 82315.477215: binder_transaction_received: transaction=1568351
27742<...>-25493 ( 8943) [006] .... 82315.477514: binder_transaction: transaction=1568352 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27743<...>-25493 ( 8943) [006] .... 82315.477516: binder_transaction_alloc_buf: transaction=1568352 data_size=216 offsets_size=0
27744<...>-25493 ( 8943) [006] d..2 82315.477535: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27745           <...>-27550 (-----) [006] .... 82315.477543: binder_transaction_received: transaction=1568352
27746           <...>-27550 (-----) [006] d..2 82315.478160: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
27747          <idle>-0     (-----) [001] dnh2 82315.478204: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
27748          <idle>-0     (-----) [001] .n.1 82315.478211: cpu_idle: state=4294967295 cpu_id=1
27749          <idle>-0     (-----) [001] d..2 82315.478221: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
27750<...>-581 ( 571) [001] d.s2 82315.478521: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27751<...>-581 ( 571) [001] dns3 82315.478544: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27752<...>-581 ( 571) [001] d..2 82315.478567: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
27753     rcu_preempt-7     (    7) [001] d..2 82315.478581: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
27754     rcu_preempt-7     (    7) [001] d..3 82315.478602: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
27755     rcu_preempt-7     (    7) [001] d..2 82315.478616: 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
27756         rcuop/6-61    (   61) [001] d..2 82315.478634: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27757         rcuop/6-61    (   61) [001] d..3 82315.478650: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27758         rcuop/6-61    (   61) [001] d..2 82315.478661: 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
27759     rcu_preempt-7     (    7) [001] d..2 82315.478676: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
27760<...>-581 ( 571) [001] d..2 82315.478797: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=007
27761<...>-581 ( 571) [001] dn.3 82315.478874: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
27762<...>-581 ( 571) [001] dnh2 82315.478933: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
27763<...>-581 ( 571) [001] d..2 82315.478968: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
27764         rcuop/0-10    (   10) [001] d..2 82315.478983: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
27765          <idle>-0     (-----) [007] dnh2 82315.479189: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
27766          <idle>-0     (-----) [007] .n.1 82315.479196: cpu_idle: state=4294967295 cpu_id=7
27767          <idle>-0     (-----) [007] d..2 82315.479205: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
27768         sugov:4-577   (  577) [007] .... 82315.479231: clk_set_rate: perfcl_clk 1056000000
27769         sugov:4-577   (  577) [007] .... 82315.479232: clk_set_rate: cpu7_perfcl_clk 1363200000
27770         sugov:4-577   (  577) [007] .... 82315.479238: clk_set_rate: cpu6_perfcl_clk 1363200000
27771         sugov:4-577   (  577) [007] .... 82315.479242: clk_set_rate: cpu5_perfcl_clk 1363200000
27772         sugov:4-577   (  577) [007] .... 82315.479247: clk_set_rate: cpu4_perfcl_clk 1056000000
27773         sugov:4-577   (  577) [007] .... 82315.479253: cpu_frequency: state=1056000 cpu_id=4
27774<...>-581 ( 571) [001] d..2 82315.479260: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27775         sugov:4-577   (  577) [007] .... 82315.479267: cpu_frequency: state=1056000 cpu_id=5
27776         sugov:4-577   (  577) [007] .... 82315.479271: cpu_frequency: state=1056000 cpu_id=6
27777         sugov:4-577   (  577) [007] .... 82315.479274: cpu_frequency: state=1056000 cpu_id=7
27778          <idle>-0     (-----) [001] d..1 82315.479288: cpu_idle: state=0 cpu_id=1
27779         sugov:4-577   (  577) [007] d..2 82315.479299: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
27780          <idle>-0     (-----) [001] .n.1 82315.479305: cpu_idle: state=4294967295 cpu_id=1
27781          <idle>-0     (-----) [007] d..1 82315.479314: cpu_idle: state=2 cpu_id=7
27782          <idle>-0     (-----) [001] d..2 82315.479323: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27566 next_prio=120
27783           <...>-27566 (-----) [001] d..1 82315.479355: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27784           <...>-27550 (-----) [006] d..2 82315.479359: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27785          <idle>-0     (-----) [006] d..1 82315.479376: cpu_idle: state=2 cpu_id=6
27786           <...>-27566 (-----) [001] d..2 82315.479405: sched_switch: prev_comm=id.nn.benchmark prev_pid=27566 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
27787          <idle>-0     (-----) [001] d..1 82315.479420: cpu_idle: state=0 cpu_id=1
27788          <idle>-0     (-----) [006] d.h2 82315.480360: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27789          <idle>-0     (-----) [006] dnh2 82315.480365: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27790          <idle>-0     (-----) [006] .n.1 82315.480370: cpu_idle: state=4294967295 cpu_id=6
27791          <idle>-0     (-----) [006] d..2 82315.480380: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27792           <...>-27550 (-----) [006] d..1 82315.480387: sched_waking: comm=id.nn.benchmark pid=27566 prio=120 target_cpu=001
27793          <idle>-0     (-----) [001] d.h2 82315.480411: sched_blocked_reason: pid=27566 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27794          <idle>-0     (-----) [001] dnh2 82315.480417: sched_wakeup: comm=id.nn.benchmark pid=27566 prio=120 target_cpu=001
27795          <idle>-0     (-----) [001] .n.1 82315.480426: cpu_idle: state=4294967295 cpu_id=1
27796          <idle>-0     (-----) [001] d..2 82315.480439: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27566 next_prio=120
27797           <...>-27550 (-----) [006] d..1 82315.480465: sched_waking: comm=id.nn.benchmark pid=27566 prio=120 target_cpu=001
27798           <...>-27566 (-----) [001] d..2 82315.480488: sched_switch: prev_comm=id.nn.benchmark prev_pid=27566 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27799          <idle>-0     (-----) [001] d..1 82315.480502: cpu_idle: state=0 cpu_id=1
27800           <...>-27550 (-----) [006] d..2 82315.480514: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27801          <idle>-0     (-----) [001] d.h2 82315.480516: sched_blocked_reason: pid=27566 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27802          <idle>-0     (-----) [001] dnh2 82315.480521: sched_wakeup: comm=id.nn.benchmark pid=27566 prio=120 target_cpu=001
27803          <idle>-0     (-----) [006] d..1 82315.480525: cpu_idle: state=0 cpu_id=6
27804          <idle>-0     (-----) [001] .n.1 82315.480528: cpu_idle: state=4294967295 cpu_id=1
27805          <idle>-0     (-----) [001] d..2 82315.480540: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27566 next_prio=120
27806           <...>-27566 (-----) [001] d..1 82315.480546: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27807          <idle>-0     (-----) [006] d.h2 82315.480567: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27808          <idle>-0     (-----) [006] dnh2 82315.480569: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27809          <idle>-0     (-----) [006] .n.1 82315.480574: cpu_idle: state=4294967295 cpu_id=6
27810          <idle>-0     (-----) [006] d..2 82315.480580: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27811           <...>-27550 (-----) [006] d..1 82315.480584: sched_waking: comm=id.nn.benchmark pid=27566 prio=120 target_cpu=001
27812           <...>-27566 (-----) [001] d..2 82315.480595: sched_switch: prev_comm=id.nn.benchmark prev_pid=27566 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
27813          <idle>-0     (-----) [001] d..1 82315.480608: cpu_idle: state=0 cpu_id=1
27814           <...>-27550 (-----) [006] d..2 82315.480613: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27815          <idle>-0     (-----) [006] d..1 82315.480620: cpu_idle: state=0 cpu_id=6
27816          <idle>-0     (-----) [001] d.h2 82315.480621: sched_blocked_reason: pid=27566 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27817          <idle>-0     (-----) [001] dnh2 82315.480627: sched_wakeup: comm=id.nn.benchmark pid=27566 prio=120 target_cpu=001
27818          <idle>-0     (-----) [001] .n.1 82315.480634: cpu_idle: state=4294967295 cpu_id=1
27819          <idle>-0     (-----) [001] d..2 82315.480649: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27566 next_prio=120
27820           <...>-27566 (-----) [001] d..1 82315.480667: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27821          <idle>-0     (-----) [006] d.h2 82315.480684: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27822          <idle>-0     (-----) [006] dnh2 82315.480686: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27823          <idle>-0     (-----) [006] .n.1 82315.480689: cpu_idle: state=4294967295 cpu_id=6
27824          <idle>-0     (-----) [006] d..2 82315.480694: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27825           <...>-27566 (-----) [001] d..1 82315.481050: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27826           <...>-27550 (-----) [006] d..2 82315.481057: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27827          <idle>-0     (-----) [006] d..1 82315.481069: cpu_idle: state=0 cpu_id=6
27828          <idle>-0     (-----) [006] d.h2 82315.481079: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27829          <idle>-0     (-----) [006] dnh2 82315.481081: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27830          <idle>-0     (-----) [006] .n.1 82315.481085: cpu_idle: state=4294967295 cpu_id=6
27831          <idle>-0     (-----) [006] d..2 82315.481091: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27832           <...>-27566 (-----) [001] d..2 82315.481472: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
27833          <idle>-0     (-----) [001] d..1 82315.481493: cpu_idle: state=0 cpu_id=1
27834           <...>-27550 (-----) [006] d..1 82315.483724: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=002
27835          <idle>-0     (-----) [001] dnh2 82315.483770: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27836          <idle>-0     (-----) [001] .n.1 82315.483778: cpu_idle: state=4294967295 cpu_id=1
27837          <idle>-0     (-----) [001] d..2 82315.483794: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
27838           <...>-27550 (-----) [006] d..2 82315.483987: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27839          <idle>-0     (-----) [006] d..1 82315.484001: cpu_idle: state=2 cpu_id=6
27840           <...>-27555 (-----) [001] d..1 82315.484010: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27841           <...>-27555 (-----) [001] d..2 82315.484071: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=001
27842           <...>-27555 (-----) [001] d..3 82315.484111: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=000
27843          <idle>-0     (-----) [000] .n.1 82315.484320: cpu_idle: state=4294967295 cpu_id=0
27844           <...>-27555 (-----) [001] d..2 82315.484341: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
27845          <idle>-0     (-----) [000] d..2 82315.484354: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kswapd0 next_pid=142 next_prio=120
27846          <idle>-0     (-----) [001] d..1 82315.484357: cpu_idle: state=0 cpu_id=1
27847          <idle>-0     (-----) [006] d.h2 82315.484928: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27848          <idle>-0     (-----) [006] dnh2 82315.484933: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27849          <idle>-0     (-----) [006] .n.1 82315.484938: cpu_idle: state=4294967295 cpu_id=6
27850          <idle>-0     (-----) [006] d..2 82315.484947: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27851           <...>-27550 (-----) [006] d..1 82315.484957: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27852          <idle>-0     (-----) [001] d.h2 82315.484983: sched_blocked_reason: pid=27555 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27853           <...>-27550 (-----) [006] d..2 82315.484984: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
27854          <idle>-0     (-----) [001] dnh2 82315.484989: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27855          <idle>-0     (-----) [006] d..1 82315.484991: cpu_idle: state=2 cpu_id=6
27856          <idle>-0     (-----) [001] .n.1 82315.484997: cpu_idle: state=4294967295 cpu_id=1
27857          <idle>-0     (-----) [001] d..2 82315.485008: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
27858           <...>-27555 (-----) [001] d..1 82315.485053: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27859           <...>-27555 (-----) [001] d.s1 82315.485151: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
27860           <...>-27555 (-----) [001] d.s2 82315.485200: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
27861           <...>-27555 (-----) [001] d.s2 82315.485209: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
27862           <...>-27555 (-----) [001] d.s3 82315.485248: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27863          <idle>-0     (-----) [006] d.h2 82315.485892: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
27864          <idle>-0     (-----) [006] dnh2 82315.485896: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27865          <idle>-0     (-----) [006] .n.1 82315.485901: cpu_idle: state=4294967295 cpu_id=6
27866          <idle>-0     (-----) [006] d..2 82315.485909: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27867           <...>-27550 (-----) [006] .... 82315.486007: binder_transaction: transaction=1568353 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xd
27868           <...>-27550 (-----) [006] .... 82315.486011: binder_transaction_alloc_buf: transaction=1568353 data_size=160 offsets_size=0
27869           <...>-27550 (-----) [006] d..4 82315.486016: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27870           <...>-27550 (-----) [006] dn.5 82315.486025: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
27871           <...>-27550 (-----) [006] d..2 82315.486030: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
27872<...>-25493 ( 8943) [006] .... 82315.486042: binder_transaction_received: transaction=1568353
27873<...>-25493 ( 8943) [006] .... 82315.486435: binder_transaction: transaction=1568354 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
27874<...>-25493 ( 8943) [006] .... 82315.486439: binder_transaction_alloc_buf: transaction=1568354 data_size=2112 offsets_size=0
27875<...>-25493 ( 8943) [006] d..2 82315.486469: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27876           <...>-27550 (-----) [006] .... 82315.486479: binder_transaction_received: transaction=1568354
27877           <...>-27550 (-----) [006] d..2 82315.487014: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
27878           <...>-27555 (-----) [001] d.h1 82315.487049: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
27879           <...>-27550 (-----) [006] d..1 82315.487053: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=001
27880           <...>-27550 (-----) [006] d..2 82315.487183: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27881          <idle>-0     (-----) [006] d..1 82315.487194: cpu_idle: state=2 cpu_id=6
27882          <idle>-0     (-----) [002] dnh2 82315.487262: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27883          <idle>-0     (-----) [002] .n.1 82315.487282: cpu_idle: state=4294967295 cpu_id=2
27884          <idle>-0     (-----) [002] d..2 82315.487308: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
27885           <...>-27566 (-----) [002] d..3 82315.487698: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27886           <...>-27566 (-----) [002] d..2 82315.487781: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27887          <idle>-0     (-----) [002] d..1 82315.487811: cpu_idle: state=0 cpu_id=2
27888          <idle>-0     (-----) [006] dnh2 82315.488452: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
27889          <idle>-0     (-----) [006] .n.1 82315.488459: cpu_idle: state=4294967295 cpu_id=6
27890          <idle>-0     (-----) [006] d..2 82315.488470: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
27891<...>-142 ( 142) [000] d..2 82315.488492: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
27892           <...>-27555 (-----) [001] d..2 82315.488497: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
27893     rcu_preempt-7     (    7) [000] d..2 82315.488523: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27894           <...>-27550 (-----) [006] d..1 82315.488535: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27895          <idle>-0     (-----) [002] dnh2 82315.488564: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27896          <idle>-0     (-----) [002] .n.1 82315.488574: cpu_idle: state=4294967295 cpu_id=2
27897           <...>-27550 (-----) [006] d..2 82315.488583: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
27898          <idle>-0     (-----) [002] d..2 82315.488590: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
27899          <idle>-0     (-----) [006] d..1 82315.488599: cpu_idle: state=2 cpu_id=6
27900<...>-581 ( 571) [001] d..2 82315.488608: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
27901<...>-1054 ( 1054) [000] .... 82315.488611: clk_set_rate: l3_cluster1_vote_clk 576000000
27902<...>-1054 ( 1054) [000] .... 82315.488619: clk_set_rate: l3_clk 576000000
27903<...>-1054 ( 1054) [000] d..2 82315.488973: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=kswapd0 next_pid=142 next_prio=120
27904           <...>-27555 (-----) [001] d.s2 82315.489025: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27905           <...>-27555 (-----) [001] d.s3 82315.489055: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27906           <...>-27555 (-----) [001] d.s3 82315.489068: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27907<...>-142 ( 142) [000] d..2 82315.489083: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27908           <...>-27566 (-----) [002] d..2 82315.489121: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
27909           <...>-27566 (-----) [002] d..3 82315.489152: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
27910<...>-1054 ( 1054) [000] d..2 82315.489262: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=kswapd0 next_pid=142 next_prio=120
27911           <...>-27555 (-----) [001] d.s2 82315.489304: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27912           <...>-27555 (-----) [001] d.s3 82315.489329: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27913           <...>-27555 (-----) [001] d.s3 82315.489341: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27914<...>-142 ( 142) [000] d..2 82315.489353: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27915<...>-1054 ( 1054) [000] .... 82315.489461: clk_set_rate: l3_cluster0_vote_clk 403200000
27916<...>-1054 ( 1054) [000] d..2 82315.489642: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=kswapd0 next_pid=142 next_prio=120
27917           <...>-27555 (-----) [001] d.s2 82315.489676: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27918           <...>-27555 (-----) [001] d.s3 82315.489704: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
27919           <...>-27555 (-----) [001] d.s3 82315.489716: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
27920<...>-142 ( 142) [000] d..2 82315.489728: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
27921<...>-1054 ( 1054) [000] d..2 82315.489756: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
27922           <...>-27566 (-----) [002] d..1 82315.490533: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27923           <...>-27555 (-----) [001] d..2 82315.490546: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27924           <...>-27566 (-----) [002] d..2 82315.490572: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
27925           <...>-27566 (-----) [002] d..2 82315.490587: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27926          <idle>-0     (-----) [001] d..2 82315.490612: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
27927           <...>-27566 (-----) [002] d..2 82315.490623: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
27928           <...>-27566 (-----) [002] d..3 82315.490692: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
27929<...>-142 ( 142) [000] d..2 82315.490711: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
27930           <...>-27555 (-----) [001] d..1 82315.490721: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27931           <...>-27566 (-----) [002] d..2 82315.490734: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D|K ==> next_comm=logd.writer next_pid=581 next_prio=130
27932         rcuop/2-29    (   29) [000] d..2 82315.490736: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
27933           <...>-27555 (-----) [001] d..2 82315.490764: sched_blocked_reason: pid=27566 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27934           <...>-27555 (-----) [001] d..2 82315.490777: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27935<...>-581 ( 571) [002] d..2 82315.490796: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
27936           <...>-27555 (-----) [001] d..2 82315.490817: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27937           <...>-27566 (-----) [002] d..1 82315.490818: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27938           <...>-27566 (-----) [002] d..2 82315.490839: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
27939          <idle>-0     (-----) [001] d..1 82315.490840: cpu_idle: state=0 cpu_id=1
27940           <...>-27566 (-----) [002] d..2 82315.490854: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27941          <idle>-0     (-----) [001] .n.1 82315.490865: cpu_idle: state=4294967295 cpu_id=1
27942           <...>-27566 (-----) [002] d..2 82315.490884: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D|K ==> next_comm=logd.writer next_pid=581 next_prio=130
27943          <idle>-0     (-----) [001] d..2 82315.490887: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
27944           <...>-27555 (-----) [001] d..1 82315.490900: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27945           <...>-27555 (-----) [001] d..2 82315.490917: sched_blocked_reason: pid=27566 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27946           <...>-27555 (-----) [001] d..2 82315.490927: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27947<...>-581 ( 571) [002] d..2 82315.490942: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
27948           <...>-27555 (-----) [001] d..2 82315.490962: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27949           <...>-27566 (-----) [002] d..1 82315.490966: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27950           <...>-27566 (-----) [002] d..2 82315.490978: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
27951          <idle>-0     (-----) [001] d..1 82315.490980: cpu_idle: state=0 cpu_id=1
27952           <...>-27566 (-----) [002] d..2 82315.490988: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27953          <idle>-0     (-----) [001] .n.1 82315.490996: cpu_idle: state=4294967295 cpu_id=1
27954          <idle>-0     (-----) [001] d..2 82315.491013: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
27955           <...>-27566 (-----) [002] d..2 82315.491016: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
27956           <...>-27555 (-----) [001] d..1 82315.491024: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27957           <...>-27555 (-----) [001] d..2 82315.491041: sched_blocked_reason: pid=27566 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27958           <...>-27555 (-----) [001] d..2 82315.491051: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27959<...>-581 ( 571) [002] d..2 82315.491062: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
27960           <...>-27566 (-----) [002] d..1 82315.491075: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27961           <...>-27555 (-----) [001] d..2 82315.491098: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
27962           <...>-27566 (-----) [002] d..2 82315.491110: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
27963          <idle>-0     (-----) [001] d..1 82315.491115: cpu_idle: state=0 cpu_id=1
27964           <...>-27566 (-----) [002] d..2 82315.491119: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27965          <idle>-0     (-----) [001] .n.1 82315.491125: cpu_idle: state=4294967295 cpu_id=1
27966          <idle>-0     (-----) [001] d..2 82315.491141: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
27967          <idle>-0     (-----) [003] .n.1 82315.491579: cpu_idle: state=4294967295 cpu_id=3
27968          <idle>-0     (-----) [003] d..2 82315.491613: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27567 next_prio=112
27969           <...>-27567 (-----) [003] d..1 82315.491649: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27970           <...>-27566 (-----) [002] d..2 82315.491655: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
27971           <...>-27567 (-----) [003] d..2 82315.491687: sched_blocked_reason: pid=27566 iowait=0 caller=do_page_fault+0x4e0/0x594
27972           <...>-27567 (-----) [003] d..2 82315.491698: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
27973<...>-581 ( 571) [002] d..2 82315.491711: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
27974           <...>-27566 (-----) [002] d..1 82315.491729: sched_waking: comm=roidJUnitRunner pid=27567 prio=112 target_cpu=003
27975           <...>-27567 (-----) [003] d..2 82315.491776: sched_switch: prev_comm=roidJUnitRunner prev_pid=27567 prev_prio=112 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
27976           <...>-27566 (-----) [002] d..2 82315.491802: sched_blocked_reason: pid=27567 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27977           <...>-27566 (-----) [002] d..2 82315.491813: sched_wakeup: comm=roidJUnitRunner pid=27567 prio=112 target_cpu=003
27978          <idle>-0     (-----) [003] d..2 82315.491867: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27567 next_prio=112
27979           <...>-27567 (-----) [003] d..1 82315.491882: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27980           <...>-27555 (-----) [001] d..2 82315.491980: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
27981           <...>-27566 (-----) [002] d.H3 82315.492001: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
27982           <...>-27567 (-----) [003] d..2 82315.492004: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
27983           <...>-27567 (-----) [003] d..2 82315.492011: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
27984           <...>-27566 (-----) [002] d.H4 82315.492057: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
27985           <...>-27567 (-----) [003] d..2 82315.492060: sched_switch: prev_comm=roidJUnitRunner prev_pid=27567 prev_prio=112 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
27986<...>-142 ( 142) [000] d..2 82315.492073: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=576 next_prio=49
27987          <idle>-0     (-----) [003] d..1 82315.492084: cpu_idle: state=0 cpu_id=3
27988         sugov:0-576   (  576) [000] .... 82315.492126: clk_set_rate: pwrcl_clk 902400000
27989         sugov:0-576   (  576) [000] .... 82315.492145: clk_set_rate: cpu3_pwrcl_clk 652800000
27990           <...>-27566 (-----) [002] d..2 82315.492151: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
27991<...>-581 ( 571) [001] d..2 82315.492153: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=D ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
27992         sugov:0-576   (  576) [000] .... 82315.492156: clk_set_rate: cpu2_pwrcl_clk 652800000
27993         sugov:0-576   (  576) [000] .... 82315.492166: clk_set_rate: cpu1_pwrcl_clk 652800000
27994           <...>-27555 (-----) [001] d..1 82315.492170: sched_waking: comm=roidJUnitRunner pid=27567 prio=112 target_cpu=003
27995         sugov:0-576   (  576) [000] .... 82315.492174: clk_set_rate: cpu0_pwrcl_clk 902400000
27996           <...>-27555 (-----) [001] d..2 82315.492186: sched_blocked_reason: pid=27567 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
27997         sugov:0-576   (  576) [000] .... 82315.492186: cpu_frequency: state=902400 cpu_id=0
27998          <idle>-0     (-----) [002] d..1 82315.492188: cpu_idle: state=0 cpu_id=2
27999           <...>-27555 (-----) [001] d..2 82315.492196: sched_wakeup: comm=roidJUnitRunner pid=27567 prio=112 target_cpu=003
28000          <idle>-0     (-----) [003] .n.1 82315.492205: cpu_idle: state=4294967295 cpu_id=3
28001          <idle>-0     (-----) [003] d..2 82315.492221: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27567 next_prio=112
28002         sugov:0-576   (  576) [000] .... 82315.492225: cpu_frequency: state=902400 cpu_id=1
28003           <...>-27567 (-----) [003] d..1 82315.492230: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
28004         sugov:0-576   (  576) [000] .... 82315.492230: cpu_frequency: state=902400 cpu_id=2
28005         sugov:0-576   (  576) [000] .... 82315.492234: cpu_frequency: state=902400 cpu_id=3
28006         sugov:0-576   (  576) [000] d..2 82315.492261: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
28007           <...>-27567 (-----) [003] d..2 82315.492274: sched_blocked_reason: pid=581 iowait=0 caller=proc_pid_cmdline_read+0x63c/0x668
28008           <...>-27567 (-----) [003] d..2 82315.492280: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
28009           <...>-27567 (-----) [003] d..2 82315.492301: sched_switch: prev_comm=roidJUnitRunner prev_pid=27567 prev_prio=112 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
28010          <idle>-0     (-----) [003] d..1 82315.492315: cpu_idle: state=0 cpu_id=3
28011           <...>-27555 (-----) [001] d..2 82315.492359: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
28012          <idle>-0     (-----) [001] d..1 82315.492383: cpu_idle: state=0 cpu_id=1
28013<...>-142 ( 142) [000] d..2 82315.492684: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
28014<...>-142 ( 142) [000] dn.3 82315.492709: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
28015<...>-142 ( 142) [000] d..2 82315.492725: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
28016     kworker/0:1-25262 (25262) [000] d..3 82315.492745: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=000
28017     kworker/0:1-25262 (25262) [000] d..4 82315.492778: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=001
28018          <idle>-0     (-----) [001] .n.1 82315.492785: cpu_idle: state=4294967295 cpu_id=1
28019          <idle>-0     (-----) [001] d..2 82315.492798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
28020     kworker/0:1-25262 (25262) [000] d..2 82315.492800: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
28021<...>-581 ( 571) [000] d..1 82315.492808: sched_waking: comm=roidJUnitRunner pid=27567 prio=112 target_cpu=003
28022<...>-581 ( 571) [000] d..2 82315.492819: sched_blocked_reason: pid=27567 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28023<...>-581 ( 571) [000] d..2 82315.492827: sched_wakeup: comm=roidJUnitRunner pid=27567 prio=112 target_cpu=003
28024          <idle>-0     (-----) [003] .n.1 82315.492834: cpu_idle: state=4294967295 cpu_id=3
28025<...>-581 ( 571) [000] d..2 82315.492839: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=D ==> next_comm=kswapd0 next_pid=142 next_prio=120
28026          <idle>-0     (-----) [003] d..2 82315.492845: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27567 next_prio=112
28027           <...>-27567 (-----) [003] d..1 82315.492850: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
28028           <...>-27567 (-----) [003] d..2 82315.492863: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
28029           <...>-27567 (-----) [003] d..2 82315.492869: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
28030           <...>-27567 (-----) [003] d..1 82315.492872: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
28031           <...>-27567 (-----) [003] d..2 82315.492885: sched_blocked_reason: pid=581 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
28032           <...>-27567 (-----) [003] d..2 82315.492890: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
28033           <...>-27567 (-----) [003] d..2 82315.492927: sched_switch: prev_comm=roidJUnitRunner prev_pid=27567 prev_prio=112 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
28034          <idle>-0     (-----) [003] d..1 82315.492940: cpu_idle: state=0 cpu_id=3
28035<...>-821 ( 821) [001] d..2 82315.493624: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28036           <...>-27555 (-----) [001] d..2 82315.493745: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
28037          <idle>-0     (-----) [001] d..1 82315.493763: cpu_idle: state=0 cpu_id=1
28038          <idle>-0     (-----) [003] ...1 82315.494474: cpu_idle: state=4294967295 cpu_id=3
28039          <idle>-0     (-----) [003] d..1 82315.494480: cpu_idle: state=2 cpu_id=3
28040          <idle>-0     (-----) [001] ...1 82315.494986: cpu_idle: state=4294967295 cpu_id=1
28041          <idle>-0     (-----) [001] d..1 82315.494991: cpu_idle: state=2 cpu_id=1
28042<...>-142 ( 142) [000] d.s1 82315.495146: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28043<...>-142 ( 142) [000] dns2 82315.495169: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28044<...>-142 ( 142) [000] d..2 82315.495182: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
28045     rcu_preempt-7     (    7) [000] d..2 82315.495197: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
28046     rcu_preempt-7     (    7) [000] d..3 82315.495241: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
28047          <idle>-0     (-----) [002] .n.1 82315.495249: cpu_idle: state=4294967295 cpu_id=2
28048     rcu_preempt-7     (    7) [000] d..2 82315.495262: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
28049          <idle>-0     (-----) [002] d..2 82315.495266: 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
28050<...>-581 ( 571) [000] d..1 82315.495275: sched_waking: comm=roidJUnitRunner pid=27567 prio=112 target_cpu=003
28051<...>-581 ( 571) [000] d..2 82315.495306: sched_blocked_reason: pid=27567 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28052<...>-581 ( 571) [000] d..2 82315.495310: sched_wakeup: comm=roidJUnitRunner pid=27567 prio=112 target_cpu=002
28053<...>-581 ( 571) [000] d..2 82315.495321: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=D ==> next_comm=kswapd0 next_pid=142 next_prio=120
28054         rcuop/6-61    (   61) [002] d..2 82315.495360: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27567 next_prio=112
28055           <...>-27567 (-----) [002] d..1 82315.495381: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
28056           <...>-27567 (-----) [002] d..2 82315.495393: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
28057           <...>-27567 (-----) [002] d..2 82315.495401: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
28058           <...>-27567 (-----) [002] d..1 82315.495403: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
28059           <...>-27567 (-----) [002] d..2 82315.495418: sched_blocked_reason: pid=581 iowait=0 caller=__access_remote_vm+0x2a8/0x2b8
28060           <...>-27567 (-----) [002] d..2 82315.495422: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
28061          <idle>-0     (-----) [001] .n.1 82315.495591: cpu_idle: state=4294967295 cpu_id=1
28062          <idle>-0     (-----) [001] d..2 82315.495622: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28063           <...>-27567 (-----) [002] d..2 82315.495666: sched_switch: prev_comm=Instrumentation prev_pid=27567 prev_prio=120 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
28064          <idle>-0     (-----) [002] d..1 82315.495686: cpu_idle: state=0 cpu_id=2
28065           <...>-27555 (-----) [001] d..2 82315.495736: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
28066          <idle>-0     (-----) [001] d..1 82315.495757: cpu_idle: state=0 cpu_id=1
28067          <idle>-0     (-----) [001] ...1 82315.496881: cpu_idle: state=4294967295 cpu_id=1
28068          <idle>-0     (-----) [001] d..1 82315.496888: cpu_idle: state=2 cpu_id=1
28069<...>-142 ( 142) [000] d.s2 82315.498475: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28070<...>-142 ( 142) [000] d.s3 82315.498507: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
28071          <idle>-0     (-----) [002] .n.1 82315.498515: cpu_idle: state=4294967295 cpu_id=2
28072          <idle>-0     (-----) [002] d..2 82315.498536: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28073<...>-1054 ( 1054) [002] .... 82315.498612: clk_set_rate: l3_cluster0_vote_clk 652800000
28074<...>-1054 ( 1054) [002] .... 82315.498618: clk_set_rate: l3_clk 652800000
28075<...>-1054 ( 1054) [002] d..2 82315.498875: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28076          <idle>-0     (-----) [002] d..1 82315.498890: cpu_idle: state=0 cpu_id=2
28077          <idle>-0     (-----) [001] d.s3 82315.499084: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
28078          <idle>-0     (-----) [001] d.s4 82315.499099: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28079          <idle>-0     (-----) [001] d.s4 82315.499108: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
28080          <idle>-0     (-----) [002] .n.1 82315.499115: cpu_idle: state=4294967295 cpu_id=2
28081          <idle>-0     (-----) [001] ...1 82315.499121: cpu_idle: state=4294967295 cpu_id=1
28082          <idle>-0     (-----) [002] d..2 82315.499128: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28083          <idle>-0     (-----) [001] d..1 82315.499133: cpu_idle: state=0 cpu_id=1
28084<...>-1054 ( 1054) [002] d..2 82315.499351: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28085          <idle>-0     (-----) [002] d..1 82315.499365: cpu_idle: state=2 cpu_id=2
28086          <idle>-0     (-----) [001] d.s3 82315.499902: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
28087          <idle>-0     (-----) [001] d.s4 82315.499910: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28088          <idle>-0     (-----) [001] d.s4 82315.499917: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
28089          <idle>-0     (-----) [001] ...1 82315.499928: cpu_idle: state=4294967295 cpu_id=1
28090          <idle>-0     (-----) [001] d..1 82315.499933: cpu_idle: state=0 cpu_id=1
28091          <idle>-0     (-----) [002] .n.1 82315.500096: cpu_idle: state=4294967295 cpu_id=2
28092          <idle>-0     (-----) [002] d..2 82315.500116: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28093<...>-1054 ( 1054) [002] .... 82315.500157: clk_set_rate: l3_cluster1_vote_clk 300000000
28094<...>-1054 ( 1054) [002] d..2 82315.500187: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28095          <idle>-0     (-----) [002] d..1 82315.500202: cpu_idle: state=0 cpu_id=2
28096<...>-142 ( 142) [000] d..2 82315.500223: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
28097<...>-142 ( 142) [000] dn.3 82315.500243: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
28098<...>-142 ( 142) [000] d..2 82315.500257: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
28099     kworker/0:1-25262 (25262) [000] d..3 82315.500266: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=001
28100     kworker/0:1-25262 (25262) [000] d..4 82315.500282: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=001
28101          <idle>-0     (-----) [001] .n.1 82315.500288: cpu_idle: state=4294967295 cpu_id=1
28102     kworker/0:1-25262 (25262) [000] d..2 82315.500299: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
28103          <idle>-0     (-----) [001] d..2 82315.500301: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
28104<...>-581 ( 571) [000] d..1 82315.500307: sched_waking: comm=Instrumentation pid=27567 prio=120 target_cpu=002
28105<...>-581 ( 571) [000] d..2 82315.500342: sched_blocked_reason: pid=27567 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28106<...>-581 ( 571) [000] d..2 82315.500347: sched_wakeup: comm=Instrumentation pid=27567 prio=120 target_cpu=001
28107<...>-581 ( 571) [000] d..2 82315.500435: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
28108<...>-142 ( 142) [000] d..2 82315.500477: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28109          <idle>-0     (-----) [000] d..1 82315.500502: cpu_idle: state=0 cpu_id=0
28110<...>-821 ( 821) [001] d..2 82315.501018: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=Instrumentation next_pid=27567 next_prio=120
28111           <...>-27567 (-----) [001] d..1 82315.501031: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=001
28112           <...>-27567 (-----) [001] d..2 82315.501057: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
28113           <...>-27567 (-----) [001] d..2 82315.501065: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28114          <idle>-0     (-----) [000] .n.1 82315.501073: cpu_idle: state=4294967295 cpu_id=0
28115          <idle>-0     (-----) [000] d..2 82315.501085: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28116           <...>-27567 (-----) [001] d..1 82315.501222: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28117           <...>-27567 (-----) [001] d..2 82315.501262: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28118          <idle>-0     (-----) [002] .n.1 82315.501266: cpu_idle: state=4294967295 cpu_id=2
28119          <idle>-0     (-----) [002] d..2 82315.501278: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28120           <...>-27567 (-----) [001] d..2 82315.501416: sched_switch: prev_comm=Instrumentation prev_pid=27567 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28121          <idle>-0     (-----) [001] d..1 82315.501434: cpu_idle: state=0 cpu_id=1
28122           <...>-27555 (-----) [000] d.s1 82315.501819: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28123           <...>-27555 (-----) [000] dns2 82315.501840: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28124           <...>-27555 (-----) [000] d..2 82315.501857: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
28125     rcu_preempt-7     (    7) [000] d..2 82315.501878: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28126           <...>-27566 (-----) [002] d..2 82315.501940: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28127           <...>-27555 (-----) [000] d..1 82315.501950: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28128           <...>-27555 (-----) [000] d..2 82315.501961: sched_blocked_reason: pid=27566 iowait=0 caller=do_page_fault+0x4e0/0x594
28129          <idle>-0     (-----) [002] d..1 82315.501962: cpu_idle: state=0 cpu_id=2
28130           <...>-27555 (-----) [000] d..2 82315.501969: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28131          <idle>-0     (-----) [002] .n.1 82315.501976: cpu_idle: state=4294967295 cpu_id=2
28132          <idle>-0     (-----) [002] d..2 82315.501989: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28133           <...>-27566 (-----) [002] .... 82315.502502: binder_transaction: transaction=1568355 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xb
28134           <...>-27566 (-----) [002] .... 82315.502514: binder_transaction_alloc_buf: transaction=1568355 data_size=612 offsets_size=16
28135           <...>-27566 (-----) [002] ...2 82315.503106: binder_set_priority: proc=8943 thread=25493 old=120 => new=112 desired=112
28136           <...>-27566 (-----) [002] d..4 82315.503114: sched_waking: comm=Binder:8943_17 pid=25493 prio=112 target_cpu=006
28137           <...>-27566 (-----) [002] dn.5 82315.503149: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=112 target_cpu=002
28138           <...>-27566 (-----) [002] dnh5 82315.503210: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
28139           <...>-27566 (-----) [002] d..2 82315.503240: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=112
28140<...>-25493 ( 8943) [002] .... 82315.503256: binder_transaction_received: transaction=1568355
28141          <idle>-0     (-----) [007] dnh2 82315.504096: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
28142          <idle>-0     (-----) [007] .n.1 82315.504105: cpu_idle: state=4294967295 cpu_id=7
28143          <idle>-0     (-----) [007] d..2 82315.504117: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
28144         sugov:4-577   (  577) [007] .... 82315.504146: clk_set_rate: perfcl_clk 979200000
28145         sugov:4-577   (  577) [007] .... 82315.504147: clk_set_rate: cpu7_perfcl_clk 1056000000
28146         sugov:4-577   (  577) [007] .... 82315.504153: clk_set_rate: cpu6_perfcl_clk 1056000000
28147         sugov:4-577   (  577) [007] .... 82315.504159: clk_set_rate: cpu5_perfcl_clk 1056000000
28148         sugov:4-577   (  577) [007] .... 82315.504164: clk_set_rate: cpu4_perfcl_clk 979200000
28149         sugov:4-577   (  577) [007] .... 82315.504171: cpu_frequency: state=979200 cpu_id=4
28150         sugov:4-577   (  577) [007] .... 82315.504187: cpu_frequency: state=979200 cpu_id=5
28151         sugov:4-577   (  577) [007] .... 82315.504191: cpu_frequency: state=979200 cpu_id=6
28152         sugov:4-577   (  577) [007] .... 82315.504194: cpu_frequency: state=979200 cpu_id=7
28153         sugov:4-577   (  577) [007] d..2 82315.504216: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28154          <idle>-0     (-----) [007] d..1 82315.504227: cpu_idle: state=2 cpu_id=7
28155<...>-25493 ( 8943) [002] .... 82315.504239: binder_transaction: transaction=1568358 dest_node=0 dest_proc=27550 dest_thread=27566 reply=1 flags=0x0 code=0x0
28156<...>-25493 ( 8943) [002] .... 82315.504249: binder_transaction_alloc_buf: transaction=1568358 data_size=8 offsets_size=0
28157<...>-25493 ( 8943) [002] .... 82315.504256: binder_set_priority: proc=8943 thread=25493 old=112 => new=120 desired=120
28158<...>-25493 ( 8943) [002] d..2 82315.504335: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28159           <...>-27566 (-----) [002] .... 82315.504350: binder_transaction_received: transaction=1568358
28160           <...>-27566 (-----) [002] .... 82315.504959: binder_transaction: transaction=1568359 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x9
28161           <...>-27566 (-----) [002] .... 82315.504963: binder_transaction_alloc_buf: transaction=1568359 data_size=376 offsets_size=16
28162           <...>-27566 (-----) [002] d.s3 82315.505143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28163           <...>-27566 (-----) [002] d.s4 82315.505168: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28164           <...>-27555 (-----) [000] d..2 82315.505182: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
28165     rcu_preempt-7     (    7) [000] d..2 82315.505192: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
28166           <...>-27566 (-----) [002] ...2 82315.505192: binder_set_priority: proc=8943 thread=25493 old=120 => new=112 desired=112
28167           <...>-27566 (-----) [002] d..4 82315.505196: sched_waking: comm=Binder:8943_17 pid=25493 prio=112 target_cpu=002
28168           <...>-27566 (-----) [002] dn.5 82315.505205: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=112 target_cpu=002
28169           <...>-27566 (-----) [002] d..2 82315.505215: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=112
28170     rcu_preempt-7     (    7) [000] d..3 82315.505217: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
28171     rcu_preempt-7     (    7) [000] d..2 82315.505221: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
28172<...>-25493 ( 8943) [002] .... 82315.505223: binder_transaction_received: transaction=1568359
28173     rcu_preempt-7     (    7) [000] d..3 82315.505260: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
28174     rcu_preempt-7     (    7) [000] d..2 82315.505279: 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
28175         rcuop/2-29    (   29) [000] d..2 82315.505296: 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
28176         rcuop/0-10    (   10) [000] d..2 82315.505304: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
28177         rcuop/0-10    (   10) [000] d..3 82315.505343: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
28178         rcuop/0-10    (   10) [000] d..2 82315.505358: 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
28179         rcuop/1-21    (   21) [000] d..2 82315.505375: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28180<...>-25493 ( 8943) [002] .... 82315.505774: binder_transaction: transaction=1568362 dest_node=0 dest_proc=27550 dest_thread=27566 reply=1 flags=0x0 code=0x0
28181<...>-25493 ( 8943) [002] .... 82315.505780: binder_transaction_alloc_buf: transaction=1568362 data_size=8 offsets_size=0
28182<...>-25493 ( 8943) [002] .... 82315.505787: binder_set_priority: proc=8943 thread=25493 old=112 => new=120 desired=120
28183<...>-25493 ( 8943) [002] d..2 82315.505847: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28184           <...>-27566 (-----) [002] .... 82315.505858: binder_transaction_received: transaction=1568362
28185          <idle>-0     (-----) [001] ...1 82315.507442: cpu_idle: state=4294967295 cpu_id=1
28186          <idle>-0     (-----) [001] d..1 82315.507447: cpu_idle: state=2 cpu_id=1
28187           <...>-27566 (-----) [002] .... 82315.508411: binder_transaction: transaction=1568363 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x27
28188           <...>-27566 (-----) [002] .... 82315.508416: binder_transaction_alloc_buf: transaction=1568363 data_size=136 offsets_size=0
28189           <...>-27566 (-----) [002] ...2 82315.508422: binder_set_priority: proc=8943 thread=25493 old=120 => new=112 desired=112
28190           <...>-27566 (-----) [002] d..4 82315.508425: sched_waking: comm=Binder:8943_17 pid=25493 prio=112 target_cpu=002
28191           <...>-27566 (-----) [002] dn.5 82315.508442: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=112 target_cpu=002
28192           <...>-27555 (-----) [000] d.s2 82315.508484: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
28193           <...>-27566 (-----) [002] d..2 82315.508493: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=112
28194<...>-25493 ( 8943) [002] .... 82315.508503: binder_transaction_received: transaction=1568363
28195           <...>-27555 (-----) [000] dns3 82315.508541: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28196           <...>-27555 (-----) [000] d..2 82315.508562: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28197<...>-1054 ( 1054) [000] d..2 82315.508790: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28198<...>-25493 ( 8943) [002] .... 82315.508850: binder_transaction: transaction=1568364 dest_node=0 dest_proc=27550 dest_thread=27566 reply=1 flags=0x0 code=0x0
28199<...>-25493 ( 8943) [002] .... 82315.508856: binder_transaction_alloc_buf: transaction=1568364 data_size=8 offsets_size=0
28200<...>-25493 ( 8943) [002] .... 82315.508861: binder_set_priority: proc=8943 thread=25493 old=112 => new=120 desired=120
28201<...>-25493 ( 8943) [002] d..2 82315.508922: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28202           <...>-27566 (-----) [002] .... 82315.508932: binder_transaction_received: transaction=1568364
28203           <...>-27566 (-----) [002] d..2 82315.509117: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
28204           <...>-27566 (-----) [002] d..3 82315.509143: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
28205           <...>-27555 (-----) [000] d.H3 82315.511909: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
28206           <...>-27555 (-----) [000] d.H4 82315.511948: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
28207           <...>-27555 (-----) [000] d.s2 82315.511956: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28208           <...>-27555 (-----) [000] d.s3 82315.511993: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
28209          <idle>-0     (-----) [003] .n.1 82315.512208: cpu_idle: state=4294967295 cpu_id=3
28210          <idle>-0     (-----) [003] d..2 82315.512236: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
28211         sugov:0-576   (  576) [003] .... 82315.512277: clk_set_rate: pwrcl_clk 1612800000
28212         sugov:0-576   (  576) [003] .... 82315.512297: clk_set_rate: cpu3_pwrcl_clk 902400000
28213         sugov:0-576   (  576) [003] .... 82315.512307: clk_set_rate: cpu2_pwrcl_clk 902400000
28214         sugov:0-576   (  576) [003] .... 82315.512316: clk_set_rate: cpu1_pwrcl_clk 902400000
28215         sugov:0-576   (  576) [003] .... 82315.512323: clk_set_rate: cpu0_pwrcl_clk 1612800000
28216         sugov:0-576   (  576) [003] .... 82315.512333: cpu_frequency: state=1612800 cpu_id=0
28217         sugov:0-576   (  576) [003] .... 82315.512357: cpu_frequency: state=1612800 cpu_id=1
28218         sugov:0-576   (  576) [003] .... 82315.512361: cpu_frequency: state=1612800 cpu_id=2
28219         sugov:0-576   (  576) [003] .... 82315.512365: cpu_frequency: state=1612800 cpu_id=3
28220         sugov:0-576   (  576) [003] d..2 82315.512388: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
28221     rcu_preempt-7     (    7) [003] d..2 82315.512445: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
28222<...>-581 ( 571) [003] d..2 82315.512613: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28223          <idle>-0     (-----) [003] d..1 82315.512630: cpu_idle: state=0 cpu_id=3
28224           <...>-27555 (-----) [000] d..1 82315.514048: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28225           <...>-27566 (-----) [002] d..2 82315.514048: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28226           <...>-27555 (-----) [000] d..2 82315.514063: sched_blocked_reason: pid=27566 iowait=0 caller=do_page_fault+0x4e0/0x594
28227           <...>-27555 (-----) [000] d..2 82315.514072: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28228          <idle>-0     (-----) [002] d..2 82315.514087: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28229           <...>-27566 (-----) [002] d..2 82315.514702: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
28230           <...>-27566 (-----) [002] d..3 82315.514744: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
28231          <idle>-0     (-----) [003] .n.1 82315.514751: cpu_idle: state=4294967295 cpu_id=3
28232          <idle>-0     (-----) [003] d..2 82315.514760: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
28233         rcuop/2-29    (   29) [003] d..2 82315.514777: 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
28234          <idle>-0     (-----) [003] d..1 82315.514783: cpu_idle: state=0 cpu_id=3
28235           <...>-27555 (-----) [000] d..1 82315.515324: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28236           <...>-27566 (-----) [002] d..2 82315.515332: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28237           <...>-27555 (-----) [000] d..2 82315.515345: sched_blocked_reason: pid=27566 iowait=0 caller=do_page_fault+0x4e0/0x594
28238          <idle>-0     (-----) [002] d..1 82315.515345: cpu_idle: state=0 cpu_id=2
28239           <...>-27555 (-----) [000] d..2 82315.515352: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28240          <idle>-0     (-----) [002] .n.1 82315.515360: cpu_idle: state=4294967295 cpu_id=2
28241          <idle>-0     (-----) [002] d..2 82315.515370: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28242           <...>-27555 (-----) [000] d..1 82315.515633: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28243           <...>-27566 (-----) [002] d..2 82315.515641: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28244           <...>-27555 (-----) [000] d..2 82315.515652: sched_blocked_reason: pid=27566 iowait=0 caller=do_page_fault+0x4e0/0x594
28245          <idle>-0     (-----) [002] d..1 82315.515653: cpu_idle: state=0 cpu_id=2
28246           <...>-27555 (-----) [000] d..2 82315.515659: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28247          <idle>-0     (-----) [002] .n.1 82315.515665: cpu_idle: state=4294967295 cpu_id=2
28248          <idle>-0     (-----) [002] d..2 82315.515673: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28249           <...>-27566 (-----) [002] d..2 82315.515951: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28250           <...>-27555 (-----) [000] d..1 82315.515954: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28251          <idle>-0     (-----) [002] d..1 82315.515960: cpu_idle: state=0 cpu_id=2
28252           <...>-27555 (-----) [000] d..2 82315.515964: sched_blocked_reason: pid=27566 iowait=0 caller=do_page_fault+0x4e0/0x594
28253           <...>-27555 (-----) [000] d..2 82315.515970: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28254          <idle>-0     (-----) [002] .n.1 82315.515976: cpu_idle: state=4294967295 cpu_id=2
28255          <idle>-0     (-----) [002] d..2 82315.515984: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28256          <idle>-0     (-----) [003] d.s2 82315.518470: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
28257           <...>-27555 (-----) [000] d.s2 82315.518479: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28258          <idle>-0     (-----) [003] dns3 82315.518485: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
28259          <idle>-0     (-----) [003] .n.1 82315.518503: cpu_idle: state=4294967295 cpu_id=3
28260          <idle>-0     (-----) [003] d..2 82315.518514: 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
28261           <...>-27555 (-----) [000] d.s3 82315.518523: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
28262     rcu_preempt-7     (    7) [003] d..2 82315.518526: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
28263     rcu_preempt-7     (    7) [003] d..3 82315.518558: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
28264     rcu_preempt-7     (    7) [003] d..2 82315.518574: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28265<...>-1054 ( 1054) [003] .... 82315.518675: clk_set_rate: l3_cluster0_vote_clk 1132800000
28266<...>-1054 ( 1054) [003] .... 82315.518682: clk_set_rate: l3_clk 1132800000
28267<...>-1054 ( 1054) [003] d..2 82315.519000: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=rcuop/6 next_pid=61 next_prio=120
28268         rcuop/6-61    (   61) [003] d..2 82315.519033: 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
28269          <idle>-0     (-----) [003] d..1 82315.519046: cpu_idle: state=2 cpu_id=3
28270          <idle>-0     (-----) [001] d.s3 82315.519657: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
28271          <idle>-0     (-----) [001] d.s4 82315.519668: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28272          <idle>-0     (-----) [001] d.s4 82315.519674: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
28273          <idle>-0     (-----) [001] ...1 82315.519683: cpu_idle: state=4294967295 cpu_id=1
28274          <idle>-0     (-----) [001] d..1 82315.519694: cpu_idle: state=0 cpu_id=1
28275          <idle>-0     (-----) [003] .n.1 82315.519842: cpu_idle: state=4294967295 cpu_id=3
28276          <idle>-0     (-----) [003] d..2 82315.519861: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28277<...>-1054 ( 1054) [003] d..2 82315.519924: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28278          <idle>-0     (-----) [003] d..1 82315.519934: cpu_idle: state=0 cpu_id=3
28279           <...>-27566 (-----) [002] d..2 82315.523102: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28280           <...>-27555 (-----) [000] d..1 82315.523110: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28281           <...>-27555 (-----) [000] d..2 82315.523121: sched_blocked_reason: pid=27566 iowait=0 caller=do_page_fault+0x4e0/0x594
28282          <idle>-0     (-----) [002] d..1 82315.523121: cpu_idle: state=0 cpu_id=2
28283           <...>-27555 (-----) [000] d..2 82315.523128: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=002
28284          <idle>-0     (-----) [002] .n.1 82315.523134: cpu_idle: state=4294967295 cpu_id=2
28285          <idle>-0     (-----) [002] d..2 82315.523145: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28286           <...>-27566 (-----) [002] d..1 82315.523167: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28287           <...>-27555 (-----) [000] d..2 82315.523186: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
28288           <...>-27566 (-----) [002] d..2 82315.523198: sched_blocked_reason: pid=27555 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28289           <...>-27566 (-----) [002] d..2 82315.523204: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28290          <idle>-0     (-----) [000] d..2 82315.523211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28291           <...>-27555 (-----) [000] d..2 82315.524295: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28292          <idle>-0     (-----) [000] d..1 82315.524312: cpu_idle: state=0 cpu_id=0
28293           <...>-27566 (-----) [002] d..1 82315.524629: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28294           <...>-27566 (-----) [002] d..2 82315.524644: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28295          <idle>-0     (-----) [000] .n.1 82315.524652: cpu_idle: state=4294967295 cpu_id=0
28296          <idle>-0     (-----) [000] d..2 82315.524660: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28297          <idle>-0     (-----) [003] d.s2 82315.525161: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
28298          <idle>-0     (-----) [003] dns3 82315.525176: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
28299          <idle>-0     (-----) [003] .n.1 82315.525183: cpu_idle: state=4294967295 cpu_id=3
28300          <idle>-0     (-----) [003] d..2 82315.525190: 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
28301     rcu_preempt-7     (    7) [003] d..2 82315.525215: 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
28302          <idle>-0     (-----) [003] d..1 82315.525222: cpu_idle: state=0 cpu_id=3
28303          <idle>-0     (-----) [001] ...1 82315.525697: cpu_idle: state=4294967295 cpu_id=1
28304          <idle>-0     (-----) [001] d..1 82315.525701: cpu_idle: state=2 cpu_id=1
28305           <...>-27555 (-----) [000] d..2 82315.527836: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28306          <idle>-0     (-----) [000] d..1 82315.527851: cpu_idle: state=0 cpu_id=0
28307           <...>-27566 (-----) [002] d.s2 82315.528470: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
28308           <...>-27566 (-----) [002] d.s3 82315.528516: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28309          <idle>-0     (-----) [000] .n.1 82315.528522: cpu_idle: state=4294967295 cpu_id=0
28310          <idle>-0     (-----) [000] d..2 82315.528532: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28311<...>-1054 ( 1054) [000] d..2 82315.528756: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
28312          <idle>-0     (-----) [000] d..1 82315.528765: cpu_idle: state=0 cpu_id=0
28313          <idle>-0     (-----) [001] d.s3 82315.529795: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28314          <idle>-0     (-----) [001] d.s4 82315.529804: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28315          <idle>-0     (-----) [001] d.s4 82315.529810: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28316          <idle>-0     (-----) [000] .n.1 82315.529816: cpu_idle: state=4294967295 cpu_id=0
28317          <idle>-0     (-----) [001] ...1 82315.529818: cpu_idle: state=4294967295 cpu_id=1
28318          <idle>-0     (-----) [000] d..2 82315.529823: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28319          <idle>-0     (-----) [001] d..1 82315.529825: cpu_idle: state=0 cpu_id=1
28320<...>-1054 ( 1054) [000] .... 82315.529887: clk_set_rate: l3_cluster0_vote_clk 1305600000
28321<...>-1054 ( 1054) [000] .... 82315.529892: clk_set_rate: l3_clk 1305600000
28322<...>-1054 ( 1054) [000] d..2 82315.529930: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28323          <idle>-0     (-----) [000] d..1 82315.529939: cpu_idle: state=0 cpu_id=0
28324          <idle>-0     (-----) [000] ...1 82315.531601: cpu_idle: state=4294967295 cpu_id=0
28325          <idle>-0     (-----) [000] d..1 82315.531604: cpu_idle: state=2 cpu_id=0
28326          <idle>-0     (-----) [003] d.H3 82315.531888: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
28327          <idle>-0     (-----) [003] d.H3 82315.531912: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
28328          <idle>-0     (-----) [003] dnH4 82315.531927: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
28329          <idle>-0     (-----) [003] dns2 82315.531931: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
28330          <idle>-0     (-----) [003] dns3 82315.531941: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
28331          <idle>-0     (-----) [003] .n.1 82315.531951: cpu_idle: state=4294967295 cpu_id=3
28332          <idle>-0     (-----) [003] d..2 82315.531958: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
28333         sugov:0-576   (  576) [003] .... 82315.531998: clk_set_rate: pwrcl_clk 1766400000
28334         sugov:0-576   (  576) [003] d..2 82315.532075: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
28335     rcu_preempt-7     (    7) [003] d..2 82315.532084: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
28336     rcu_preempt-7     (    7) [003] d..3 82315.532098: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
28337     rcu_preempt-7     (    7) [003] d..2 82315.532101: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
28338     rcu_preempt-7     (    7) [003] d..3 82315.532131: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
28339     rcu_preempt-7     (    7) [003] d..2 82315.532141: 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
28340         rcuop/0-10    (   10) [003] d..2 82315.532151: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
28341         rcuop/0-10    (   10) [003] d..3 82315.532180: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
28342          <idle>-0     (-----) [001] d.s3 82315.532209: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
28343          <idle>-0     (-----) [001] d.s4 82315.532227: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
28344          <idle>-0     (-----) [001] ...1 82315.532234: cpu_idle: state=4294967295 cpu_id=1
28345          <idle>-0     (-----) [001] d..1 82315.532236: cpu_idle: state=0 cpu_id=1
28346          <idle>-0     (-----) [000] .n.1 82315.532397: cpu_idle: state=4294967295 cpu_id=0
28347          <idle>-0     (-----) [000] d..2 82315.532409: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
28348         sugov:0-576   (  576) [000] .... 82315.532420: clk_set_rate: cpu3_pwrcl_clk 1612800000
28349         sugov:0-576   (  576) [000] .... 82315.532430: clk_set_rate: cpu2_pwrcl_clk 1612800000
28350         sugov:0-576   (  576) [000] .... 82315.532437: clk_set_rate: cpu1_pwrcl_clk 1612800000
28351         sugov:0-576   (  576) [000] .... 82315.532444: clk_set_rate: cpu0_pwrcl_clk 1766400000
28352         sugov:0-576   (  576) [000] .... 82315.532452: cpu_frequency: state=1766400 cpu_id=0
28353         rcuop/0-10    (   10) [003] d..2 82315.532591: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
28354         sugov:0-576   (  576) [000] d..2 82315.532592: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
28355          <idle>-0     (-----) [000] d..1 82315.532601: cpu_idle: state=0 cpu_id=0
28356         rcuop/0-10    (   10) [003] d..3 82315.532608: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28357          <idle>-0     (-----) [000] .n.1 82315.532612: cpu_idle: state=4294967295 cpu_id=0
28358          <idle>-0     (-----) [001] d.s3 82315.532614: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
28359         rcuop/0-10    (   10) [003] d..2 82315.532616: 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
28360          <idle>-0     (-----) [000] d..2 82315.532620: 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
28361         rcuop/1-21    (   21) [003] d..2 82315.532636: 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
28362     rcu_preempt-7     (    7) [000] d..2 82315.532638: 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
28363          <idle>-0     (-----) [001] d.s4 82315.532642: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
28364          <idle>-0     (-----) [000] d..1 82315.532644: cpu_idle: state=0 cpu_id=0
28365         rcuop/2-29    (   29) [003] d..2 82315.532648: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=576 next_prio=49
28366          <idle>-0     (-----) [001] ...1 82315.532654: cpu_idle: state=4294967295 cpu_id=1
28367          <idle>-0     (-----) [001] d..1 82315.532657: cpu_idle: state=2 cpu_id=1
28368         sugov:0-576   (  576) [003] .... 82315.532661: cpu_frequency: state=1766400 cpu_id=1
28369         sugov:0-576   (  576) [003] .... 82315.532665: cpu_frequency: state=1766400 cpu_id=2
28370         sugov:0-576   (  576) [003] .... 82315.532668: cpu_frequency: state=1766400 cpu_id=3
28371         sugov:0-576   (  576) [003] d..2 82315.532677: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
28372         rcuop/2-29    (   29) [003] d..2 82315.532690: 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
28373          <idle>-0     (-----) [003] d..1 82315.532702: cpu_idle: state=0 cpu_id=3
28374          <idle>-0     (-----) [007] dnh2 82315.532777: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
28375          <idle>-0     (-----) [007] .n.1 82315.532787: cpu_idle: state=4294967295 cpu_id=7
28376          <idle>-0     (-----) [007] d..2 82315.532798: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
28377         sugov:4-577   (  577) [007] .... 82315.532822: clk_set_rate: perfcl_clk 825600000
28378         sugov:4-577   (  577) [007] .... 82315.532824: clk_set_rate: cpu7_perfcl_clk 979200000
28379         sugov:4-577   (  577) [007] .... 82315.532830: clk_set_rate: cpu6_perfcl_clk 979200000
28380         sugov:4-577   (  577) [007] .... 82315.532836: clk_set_rate: cpu5_perfcl_clk 979200000
28381         sugov:4-577   (  577) [007] .... 82315.532842: clk_set_rate: cpu4_perfcl_clk 825600000
28382         sugov:4-577   (  577) [007] .... 82315.532847: cpu_frequency: state=825600 cpu_id=4
28383         sugov:4-577   (  577) [007] .... 82315.532862: cpu_frequency: state=825600 cpu_id=5
28384         sugov:4-577   (  577) [007] .... 82315.532866: cpu_frequency: state=825600 cpu_id=6
28385         sugov:4-577   (  577) [007] .... 82315.532870: cpu_frequency: state=825600 cpu_id=7
28386         sugov:4-577   (  577) [007] d..2 82315.532895: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28387          <idle>-0     (-----) [007] d..1 82315.532909: cpu_idle: state=2 cpu_id=7
28388           <...>-27566 (-----) [002] d..1 82315.537769: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28389           <...>-27566 (-----) [002] d..2 82315.537786: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28390          <idle>-0     (-----) [000] .n.1 82315.537790: cpu_idle: state=4294967295 cpu_id=0
28391          <idle>-0     (-----) [000] d..2 82315.537797: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28392           <...>-27555 (-----) [000] d.s1 82315.538457: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28393           <...>-27566 (-----) [002] d.s2 82315.538463: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28394           <...>-27555 (-----) [000] dns2 82315.538472: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28395           <...>-27566 (-----) [002] d.s3 82315.538477: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28396           <...>-27555 (-----) [000] d..2 82315.538489: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
28397     rcu_preempt-7     (    7) [000] d..2 82315.538496: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
28398     rcu_preempt-7     (    7) [000] d..3 82315.538518: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
28399     rcu_preempt-7     (    7) [000] d..2 82315.538527: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28400<...>-1054 ( 1054) [000] .... 82315.538565: clk_set_rate: l3_cluster0_vote_clk 1401600000
28401<...>-1054 ( 1054) [000] .... 82315.538568: clk_set_rate: l3_clk 1401600000
28402          <idle>-0     (-----) [003] ...1 82315.538702: cpu_idle: state=4294967295 cpu_id=3
28403          <idle>-0     (-----) [003] d..1 82315.538705: cpu_idle: state=2 cpu_id=3
28404<...>-1054 ( 1054) [000] d..2 82315.538723: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
28405         rcuop/0-10    (   10) [000] d..2 82315.538739: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28406          <idle>-0     (-----) [001] d.s3 82315.538932: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28407          <idle>-0     (-----) [001] d.s4 82315.538949: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28408          <idle>-0     (-----) [001] dns4 82315.538952: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28409          <idle>-0     (-----) [001] .n.1 82315.538957: cpu_idle: state=4294967295 cpu_id=1
28410          <idle>-0     (-----) [001] d..2 82315.538969: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28411<...>-1054 ( 1054) [001] d..2 82315.539132: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
28412          <idle>-0     (-----) [001] d.s4 82315.539158: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28413          <idle>-0     (-----) [001] d.s5 82315.539163: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28414          <idle>-0     (-----) [001] dns5 82315.539165: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28415          <idle>-0     (-----) [001] d..2 82315.539172: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28416<...>-1054 ( 1054) [001] d..2 82315.539187: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28417          <idle>-0     (-----) [001] d..1 82315.539197: cpu_idle: state=2 cpu_id=1
28418           <...>-27555 (-----) [000] d..2 82315.540842: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28419          <idle>-0     (-----) [000] d..1 82315.540852: cpu_idle: state=0 cpu_id=0
28420           <...>-27566 (-----) [002] d.s2 82315.541808: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
28421           <...>-27566 (-----) [002] dns3 82315.541827: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
28422           <...>-27566 (-----) [002] d..2 82315.541836: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=R ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
28423     kworker/2:1-25259 (25259) [002] d..2 82315.541867: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28424          <idle>-0     (-----) [000] d.s2 82315.545126: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28425          <idle>-0     (-----) [000] dns3 82315.545138: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28426          <idle>-0     (-----) [000] .n.1 82315.545149: cpu_idle: state=4294967295 cpu_id=0
28427          <idle>-0     (-----) [000] d..2 82315.545157: 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
28428     rcu_preempt-7     (    7) [000] d..2 82315.545165: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
28429     rcu_preempt-7     (    7) [000] d..3 82315.545189: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
28430     rcu_preempt-7     (    7) [000] d..2 82315.545196: 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
28431         rcuop/2-29    (   29) [000] d..2 82315.545213: 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
28432          <idle>-0     (-----) [000] d..1 82315.545221: cpu_idle: state=0 cpu_id=0
28433           <...>-27566 (-----) [002] d.s2 82315.548461: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28434           <...>-27566 (-----) [002] d.s3 82315.548492: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28435          <idle>-0     (-----) [000] .n.1 82315.548497: cpu_idle: state=4294967295 cpu_id=0
28436          <idle>-0     (-----) [000] d..2 82315.548505: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28437<...>-1054 ( 1054) [000] d..2 82315.548678: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
28438          <idle>-0     (-----) [000] d..1 82315.548686: cpu_idle: state=0 cpu_id=0
28439          <idle>-0     (-----) [001] d.s3 82315.549030: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28440          <idle>-0     (-----) [001] d.s4 82315.549039: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28441          <idle>-0     (-----) [001] d.s4 82315.549045: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28442          <idle>-0     (-----) [000] .n.1 82315.549050: cpu_idle: state=4294967295 cpu_id=0
28443          <idle>-0     (-----) [001] ...1 82315.549053: cpu_idle: state=4294967295 cpu_id=1
28444          <idle>-0     (-----) [001] d..1 82315.549057: cpu_idle: state=2 cpu_id=1
28445          <idle>-0     (-----) [000] d..2 82315.549058: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28446<...>-1054 ( 1054) [000] d..2 82315.549119: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28447          <idle>-0     (-----) [000] d..1 82315.549125: cpu_idle: state=2 cpu_id=0
28448           <...>-27566 (-----) [002] d.h2 82315.551808: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
28449           <...>-27566 (-----) [002] dnh3 82315.551819: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
28450           <...>-27566 (-----) [002] d..2 82315.551888: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
28451     migration/2-25    (   25) [002] d.h3 82315.551958: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
28452     migration/2-25    (   25) [002] d.h3 82315.551973: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
28453     migration/2-25    (   25) [002] d.h4 82315.551985: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
28454     migration/2-25    (   25) [002] d..2 82315.552007: 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
28455          <idle>-0     (-----) [002] d..1 82315.552026: cpu_idle: state=0 cpu_id=2
28456          <idle>-0     (-----) [000] ...1 82315.552063: cpu_idle: state=4294967295 cpu_id=0
28457          <idle>-0     (-----) [000] d..1 82315.552072: cpu_idle: state=0 cpu_id=0
28458          <idle>-0     (-----) [003] .n.1 82315.552238: cpu_idle: state=4294967295 cpu_id=3
28459          <idle>-0     (-----) [003] d..2 82315.552253: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
28460         sugov:0-576   (  576) [003] .... 82315.552282: clk_set_rate: pwrcl_clk 979200000
28461         sugov:0-576   (  576) [003] .... 82315.552345: clk_set_rate: cpu3_pwrcl_clk 1766400000
28462         sugov:0-576   (  576) [003] .... 82315.552356: clk_set_rate: cpu2_pwrcl_clk 1766400000
28463         sugov:0-576   (  576) [003] .... 82315.552363: clk_set_rate: cpu1_pwrcl_clk 1766400000
28464         sugov:0-576   (  576) [003] .... 82315.552371: clk_set_rate: cpu0_pwrcl_clk 979200000
28465         sugov:0-576   (  576) [003] .... 82315.552485: cpu_frequency: state=979200 cpu_id=0
28466          <idle>-0     (-----) [001] ...1 82315.552619: cpu_idle: state=4294967295 cpu_id=1
28467          <idle>-0     (-----) [001] d..1 82315.552630: cpu_idle: state=0 cpu_id=1
28468         sugov:0-576   (  576) [003] d..2 82315.552651: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
28469          <idle>-0     (-----) [003] d..1 82315.552666: cpu_idle: state=0 cpu_id=3
28470          <idle>-0     (-----) [001] d.s3 82315.552674: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
28471          <idle>-0     (-----) [001] d.s4 82315.552692: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
28472          <idle>-0     (-----) [003] .n.1 82315.552698: cpu_idle: state=4294967295 cpu_id=3
28473          <idle>-0     (-----) [001] ...1 82315.552701: cpu_idle: state=4294967295 cpu_id=1
28474          <idle>-0     (-----) [001] d..1 82315.552706: cpu_idle: state=0 cpu_id=1
28475          <idle>-0     (-----) [003] d..2 82315.552706: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
28476         sugov:0-576   (  576) [003] .... 82315.552715: cpu_frequency: state=979200 cpu_id=1
28477         sugov:0-576   (  576) [003] .... 82315.552719: cpu_frequency: state=979200 cpu_id=2
28478         sugov:0-576   (  576) [003] .... 82315.552723: cpu_frequency: state=979200 cpu_id=3
28479         sugov:0-576   (  576) [003] d..2 82315.552743: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28480          <idle>-0     (-----) [003] d..1 82315.552753: cpu_idle: state=0 cpu_id=3
28481          <idle>-0     (-----) [006] .n.1 82315.552990: cpu_idle: state=4294967295 cpu_id=6
28482          <idle>-0     (-----) [006] d..2 82315.553012: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28483          <idle>-0     (-----) [007] dnh2 82315.553045: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
28484          <idle>-0     (-----) [007] .n.1 82315.553053: cpu_idle: state=4294967295 cpu_id=7
28485          <idle>-0     (-----) [007] d..2 82315.553064: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
28486         sugov:4-577   (  577) [007] .... 82315.553088: clk_set_rate: perfcl_clk 2803200000
28487         sugov:4-577   (  577) [007] .... 82315.553090: clk_set_rate: cpu7_perfcl_clk 825600000
28488         sugov:4-577   (  577) [007] .... 82315.553096: clk_set_rate: cpu6_perfcl_clk 825600000
28489         sugov:4-577   (  577) [007] .... 82315.553103: clk_set_rate: cpu5_perfcl_clk 825600000
28490         sugov:4-577   (  577) [007] .... 82315.553109: clk_set_rate: cpu4_perfcl_clk 2803200000
28491         sugov:4-577   (  577) [007] .... 82315.553116: cpu_frequency: state=2803200 cpu_id=4
28492          <idle>-0     (-----) [002] ...1 82315.553144: cpu_idle: state=4294967295 cpu_id=2
28493          <idle>-0     (-----) [002] d..1 82315.553150: cpu_idle: state=2 cpu_id=2
28494         sugov:4-577   (  577) [007] d..2 82315.553275: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
28495          <idle>-0     (-----) [007] d..1 82315.553281: cpu_idle: state=2 cpu_id=7
28496          <idle>-0     (-----) [001] d.s3 82315.554767: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
28497          <idle>-0     (-----) [001] ...1 82315.554783: cpu_idle: state=4294967295 cpu_id=1
28498          <idle>-0     (-----) [001] d..1 82315.554788: cpu_idle: state=0 cpu_id=1
28499          <idle>-0     (-----) [007] dnh2 82315.554932: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
28500          <idle>-0     (-----) [007] .n.1 82315.554935: cpu_idle: state=4294967295 cpu_id=7
28501          <idle>-0     (-----) [007] d..2 82315.554939: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
28502         sugov:4-577   (  577) [007] .... 82315.554943: cpu_frequency: state=2803200 cpu_id=5
28503         sugov:4-577   (  577) [007] .... 82315.554946: cpu_frequency: state=2803200 cpu_id=6
28504         sugov:4-577   (  577) [007] .... 82315.554947: cpu_frequency: state=2803200 cpu_id=7
28505         sugov:4-577   (  577) [007] d..2 82315.554954: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28506          <idle>-0     (-----) [007] d..1 82315.554959: cpu_idle: state=2 cpu_id=7
28507           <...>-27566 (-----) [006] d..1 82315.556144: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28508          <idle>-0     (-----) [000] dnh2 82315.556164: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28509          <idle>-0     (-----) [000] .n.1 82315.556170: cpu_idle: state=4294967295 cpu_id=0
28510          <idle>-0     (-----) [000] d..2 82315.556182: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28511           <...>-27555 (-----) [000] d..2 82315.557115: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28512          <idle>-0     (-----) [000] d..1 82315.557134: cpu_idle: state=0 cpu_id=0
28513           <...>-27566 (-----) [006] d.s2 82315.558452: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28514          <idle>-0     (-----) [000] dnh2 82315.558473: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28515          <idle>-0     (-----) [000] .n.1 82315.558480: cpu_idle: state=4294967295 cpu_id=0
28516          <idle>-0     (-----) [000] d..2 82315.558491: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28517<...>-1054 ( 1054) [000] .... 82315.558515: clk_set_rate: l3_cluster0_vote_clk 480000000
28518<...>-1054 ( 1054) [000] .... 82315.558519: clk_set_rate: l3_clk 480000000
28519          <idle>-0     (-----) [003] ...1 82315.558761: cpu_idle: state=4294967295 cpu_id=3
28520          <idle>-0     (-----) [003] d..1 82315.558766: cpu_idle: state=2 cpu_id=3
28521<...>-1054 ( 1054) [000] d..2 82315.558789: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
28522          <idle>-0     (-----) [000] d..1 82315.558806: cpu_idle: state=0 cpu_id=0
28523          <idle>-0     (-----) [001] d.s3 82315.558810: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28524          <idle>-0     (-----) [001] d.s4 82315.558823: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28525          <idle>-0     (-----) [001] d.s4 82315.558832: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28526          <idle>-0     (-----) [000] .n.1 82315.558839: cpu_idle: state=4294967295 cpu_id=0
28527          <idle>-0     (-----) [001] ...1 82315.558840: cpu_idle: state=4294967295 cpu_id=1
28528          <idle>-0     (-----) [001] d..1 82315.558847: cpu_idle: state=0 cpu_id=1
28529          <idle>-0     (-----) [000] d..2 82315.558851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28530<...>-1054 ( 1054) [000] .... 82315.558901: clk_set_rate: l3_cluster1_vote_clk 1209600000
28531<...>-1054 ( 1054) [000] .... 82315.558906: clk_set_rate: l3_clk 1209600000
28532<...>-1054 ( 1054) [000] d..2 82315.558989: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28533          <idle>-0     (-----) [000] d..1 82315.559002: cpu_idle: state=0 cpu_id=0
28534           <...>-27566 (-----) [006] d..1 82315.563216: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28535          <idle>-0     (-----) [000] dnh2 82315.563237: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28536          <idle>-0     (-----) [000] .n.1 82315.563243: cpu_idle: state=4294967295 cpu_id=0
28537          <idle>-0     (-----) [000] d..2 82315.563254: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28538           <...>-27566 (-----) [006] d..2 82315.564266: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
28539          <idle>-0     (-----) [001] dnh2 82315.564298: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
28540          <idle>-0     (-----) [001] .n.1 82315.564302: cpu_idle: state=4294967295 cpu_id=1
28541          <idle>-0     (-----) [001] d..2 82315.564316: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
28542           <...>-27566 (-----) [006] d..2 82315.564359: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28543           <...>-27555 (-----) [000] d..1 82315.564364: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
28544          <idle>-0     (-----) [006] d..1 82315.564369: cpu_idle: state=2 cpu_id=6
28545<...>-581 ( 571) [001] d..2 82315.564455: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28546          <idle>-0     (-----) [001] d..1 82315.564465: cpu_idle: state=0 cpu_id=1
28547          <idle>-0     (-----) [001] ...1 82315.565146: cpu_idle: state=4294967295 cpu_id=1
28548          <idle>-0     (-----) [001] d..1 82315.565151: cpu_idle: state=2 cpu_id=1
28549          <idle>-0     (-----) [006] dnh2 82315.565248: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
28550          <idle>-0     (-----) [006] .n.1 82315.565252: cpu_idle: state=4294967295 cpu_id=6
28551          <idle>-0     (-----) [006] d..2 82315.565257: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28552           <...>-27566 (-----) [006] d..2 82315.565320: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
28553          <idle>-0     (-----) [004] ...1 82315.565324: cpu_idle: state=4294967295 cpu_id=4
28554          <idle>-0     (-----) [004] d..1 82315.565330: cpu_idle: state=2 cpu_id=4
28555          <idle>-0     (-----) [001] dnh2 82315.565448: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
28556          <idle>-0     (-----) [001] .n.1 82315.565455: cpu_idle: state=4294967295 cpu_id=1
28557          <idle>-0     (-----) [001] d..2 82315.565467: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
28558<...>-581 ( 571) [001] d..2 82315.565555: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28559          <idle>-0     (-----) [001] d..1 82315.565570: cpu_idle: state=0 cpu_id=1
28560          <idle>-0     (-----) [003] d.h2 82315.567469: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
28561          <idle>-0     (-----) [003] dnh3 82315.567487: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
28562          <idle>-0     (-----) [003] .n.1 82315.567496: cpu_idle: state=4294967295 cpu_id=3
28563          <idle>-0     (-----) [003] d..2 82315.567510: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
28564 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.567680: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
28565          <idle>-0     (-----) [001] d.s3 82315.567692: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
28566          <idle>-0     (-----) [003] d..1 82315.567695: cpu_idle: state=2 cpu_id=3
28567          <idle>-0     (-----) [001] d.s4 82315.567703: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
28568          <idle>-0     (-----) [001] ...1 82315.567713: cpu_idle: state=4294967295 cpu_id=1
28569          <idle>-0     (-----) [003] .n.1 82315.567713: cpu_idle: state=4294967295 cpu_id=3
28570          <idle>-0     (-----) [001] d..1 82315.567718: cpu_idle: state=0 cpu_id=1
28571          <idle>-0     (-----) [003] d..2 82315.567722: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
28572 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.567754: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28573          <idle>-0     (-----) [003] d..1 82315.567765: cpu_idle: state=0 cpu_id=3
28574           <...>-27555 (-----) [000] d.s2 82315.568476: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28575           <...>-27555 (-----) [000] dns3 82315.568497: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28576           <...>-27555 (-----) [000] d..2 82315.568510: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28577<...>-1054 ( 1054) [000] .... 82315.568562: clk_set_rate: l3_cluster1_vote_clk 1478400000
28578<...>-1054 ( 1054) [000] .... 82315.568568: clk_set_rate: l3_clk 1478400000
28579<...>-1054 ( 1054) [000] d..2 82315.568642: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28580          <idle>-0     (-----) [001] d.s3 82315.568659: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=000
28581          <idle>-0     (-----) [001] d.s4 82315.568682: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28582          <idle>-0     (-----) [001] dns4 82315.568686: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28583          <idle>-0     (-----) [001] .n.1 82315.568692: cpu_idle: state=4294967295 cpu_id=1
28584          <idle>-0     (-----) [001] d..2 82315.568703: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28585<...>-1054 ( 1054) [001] d..2 82315.568907: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
28586          <idle>-0     (-----) [001] d.s4 82315.568940: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28587          <idle>-0     (-----) [001] d.s5 82315.568947: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28588          <idle>-0     (-----) [001] dns5 82315.568951: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28589          <idle>-0     (-----) [001] d..2 82315.568961: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28590<...>-1054 ( 1054) [001] d..2 82315.569062: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28591          <idle>-0     (-----) [001] d..1 82315.569076: cpu_idle: state=0 cpu_id=1
28592           <...>-27566 (-----) [006] d..2 82315.569895: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
28593           <...>-27555 (-----) [000] d.h1 82315.569924: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
28594           <...>-27566 (-----) [006] .... 82315.570702: binder_transaction: transaction=1568365 dest_node=1568281 dest_proc=27541 dest_thread=0 reply=0 flags=0x10 code=0x1
28595           <...>-27566 (-----) [006] .... 82315.570706: binder_transaction_alloc_buf: transaction=1568365 data_size=692 offsets_size=0
28596           <...>-27566 (-----) [006] ...2 82315.570714: binder_set_priority: proc=27541 thread=27549 old=120 => new=112 desired=112
28597           <...>-27566 (-----) [006] d..4 82315.570717: sched_waking: comm=Binder:27541_2 pid=27549 prio=112 target_cpu=001
28598           <...>-27566 (-----) [006] dn.5 82315.570731: sched_wakeup: comm=Binder:27541_2 pid=27549 prio=112 target_cpu=006
28599           <...>-27566 (-----) [006] d..2 82315.570759: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=R+ ==> next_comm=Binder:27541_2 next_pid=27549 next_prio=112
28600           <...>-27549 (-----) [006] .... 82315.570771: binder_transaction_received: transaction=1568365
28601           <...>-27549 (-----) [006] d..2 82315.570843: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=000
28602          <idle>-0     (-----) [001] dnh2 82315.570868: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=001
28603          <idle>-0     (-----) [001] .n.1 82315.570874: cpu_idle: state=4294967295 cpu_id=1
28604          <idle>-0     (-----) [001] d..2 82315.570883: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kswapd0 next_pid=142 next_prio=120
28605          <idle>-0     (-----) [003] d.h2 82315.571275: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
28606          <idle>-0     (-----) [003] dnh3 82315.571283: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
28607          <idle>-0     (-----) [003] .n.1 82315.571292: cpu_idle: state=4294967295 cpu_id=3
28608          <idle>-0     (-----) [003] d..2 82315.571299: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
28609<...>-142 ( 142) [001] d.s2 82315.571455: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
28610 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.571461: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
28611<...>-142 ( 142) [001] d.s3 82315.571475: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
28612<...>-581 ( 571) [003] d..2 82315.571483: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
28613           <...>-27549 (-----) [006] d..2 82315.571504: sched_waking: comm=shell svc 27539 pid=27540 prio=120 target_cpu=002
28614 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.571507: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
28615           <...>-27549 (-----) [006] d..1 82315.571533: sched_waking: comm=main pid=27541 prio=120 target_cpu=006
28616           <...>-27549 (-----) [006] d..2 82315.571546: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
28617<...>-581 ( 571) [003] d..2 82315.571608: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28618          <idle>-0     (-----) [003] d..1 82315.571635: cpu_idle: state=0 cpu_id=3
28619           <...>-27549 (-----) [006] .... 82315.571646: binder_transaction: transaction=1568366 dest_node=0 dest_proc=27550 dest_thread=27566 reply=1 flags=0x0 code=0x0
28620           <...>-27549 (-----) [006] .... 82315.571649: binder_transaction_alloc_buf: transaction=1568366 data_size=4 offsets_size=0
28621           <...>-27549 (-----) [006] .... 82315.571652: binder_set_priority: proc=27541 thread=27549 old=112 => new=120 desired=120
28622           <...>-27549 (-----) [006] d..2 82315.571674: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28623           <...>-27566 (-----) [006] .... 82315.571681: binder_transaction_received: transaction=1568366
28624          <idle>-0     (-----) [002] dnh2 82315.571733: sched_wakeup: comm=shell svc 27539 pid=27540 prio=120 target_cpu=002
28625           <...>-27566 (-----) [006] d..3 82315.571735: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
28626          <idle>-0     (-----) [002] .n.1 82315.571742: cpu_idle: state=4294967295 cpu_id=2
28627          <idle>-0     (-----) [004] .n.1 82315.571745: cpu_idle: state=4294967295 cpu_id=4
28628           <...>-27566 (-----) [006] d..4 82315.571748: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
28629          <idle>-0     (-----) [004] d..2 82315.571754: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
28630          <idle>-0     (-----) [002] d..2 82315.571759: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 27539 next_pid=27540 next_prio=120
28631           <...>-27566 (-----) [006] d..2 82315.571768: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28632           <...>-27541 (-----) [004] .... 82315.571820: binder_transaction: transaction=1568367 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
28633           <...>-27541 (-----) [004] .... 82315.571822: binder_transaction_alloc_buf: transaction=1568367 data_size=0 offsets_size=0
28634<...>-142 ( 142) [001] d.s4 82315.571822: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
28635           <...>-27541 (-----) [004] d..4 82315.571825: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=002
28636          <idle>-0     (-----) [006] d.H3 82315.571831: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
28637           <...>-27541 (-----) [004] d..5 82315.571842: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
28638          <idle>-0     (-----) [006] dns3 82315.571849: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
28639          <idle>-0     (-----) [003] dnh2 82315.571866: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
28640           <...>-27540 (-----) [002] d..2 82315.571868: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
28641           <...>-27541 (-----) [004] d..2 82315.571871: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
28642<...>-142 ( 142) [001] d.s5 82315.571872: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
28643          <idle>-0     (-----) [004] d..1 82315.571878: cpu_idle: state=2 cpu_id=4
28644          <idle>-0     (-----) [006] d..2 82315.571880: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
28645          <idle>-0     (-----) [003] dnh3 82315.571883: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
28646<...>-25493 ( 8943) [006] .... 82315.571886: binder_transaction_received: transaction=1568367
28647          <idle>-0     (-----) [003] .n.1 82315.571887: cpu_idle: state=4294967295 cpu_id=3
28648           <...>-27540 (-----) [002] d..3 82315.571892: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
28649          <idle>-0     (-----) [003] d..2 82315.571895: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
28650          <idle>-0     (-----) [007] .n.1 82315.571900: cpu_idle: state=4294967295 cpu_id=7
28651          <idle>-0     (-----) [007] d..2 82315.571910: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
28652<...>-25493 ( 8943) [006] .... 82315.571911: binder_transaction: transaction=1568368 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
28653           <...>-27540 (-----) [002] d..2 82315.571911: sched_switch: prev_comm=shell svc 27539 prev_pid=27540 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
28654<...>-25493 ( 8943) [006] .... 82315.571912: binder_transaction_alloc_buf: transaction=1568368 data_size=4 offsets_size=0
28655<...>-25493 ( 8943) [006] d..2 82315.571913: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
28656<...>-25493 ( 8943) [006] d..3 82315.571922: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=006
28657         sugov:0-576   (  576) [003] .... 82315.571927: clk_set_rate: pwrcl_clk 1228800000
28658<...>-25493 ( 8943) [006] d..2 82315.571932: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=main next_pid=27541 next_prio=120
28659           <...>-27541 (-----) [006] .... 82315.571935: binder_transaction_received: transaction=1568368
28660         sugov:0-576   (  576) [003] .... 82315.571944: clk_set_rate: cpu3_pwrcl_clk 979200000
28661         sugov:0-576   (  576) [003] .... 82315.571953: clk_set_rate: cpu2_pwrcl_clk 979200000
28662           <...>-27541 (-----) [006] d..2 82315.571954: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28663         sugov:0-576   (  576) [003] .... 82315.571960: clk_set_rate: cpu1_pwrcl_clk 979200000
28664          <idle>-0     (-----) [006] d..1 82315.571960: cpu_idle: state=0 cpu_id=6
28665         sugov:0-576   (  576) [003] .... 82315.571968: clk_set_rate: cpu0_pwrcl_clk 1228800000
28666         sugov:0-576   (  576) [003] .... 82315.571978: cpu_frequency: state=1228800 cpu_id=0
28667         sugov:0-576   (  576) [003] .... 82315.571998: cpu_frequency: state=1228800 cpu_id=1
28668         sugov:0-576   (  576) [003] .... 82315.572002: cpu_frequency: state=1228800 cpu_id=2
28669         sugov:0-576   (  576) [003] .... 82315.572007: cpu_frequency: state=1228800 cpu_id=3
28670         sugov:0-576   (  576) [003] d..2 82315.572030: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
28671         rcuop/6-61    (   61) [003] d..2 82315.572038: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
28672         rcuop/6-61    (   61) [003] d..3 82315.572069: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
28673         rcuop/6-61    (   61) [003] d..2 82315.572081: 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
28674            adbd-960   (  960) [002] d..1 82315.572108: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
28675     rcu_preempt-7     (    7) [003] d..2 82315.572114: 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
28676           <...>-27550 (-----) [007] d..2 82315.572129: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
28677         rcuop/0-10    (   10) [003] d..2 82315.572129: 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
28678          <idle>-0     (-----) [003] d..1 82315.572139: cpu_idle: state=0 cpu_id=3
28679            adbd-960   (  960) [002] d..2 82315.572145: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
28680          <idle>-0     (-----) [003] dnh2 82315.572152: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
28681          <idle>-0     (-----) [003] .n.1 82315.572157: cpu_idle: state=4294967295 cpu_id=3
28682           <...>-27550 (-----) [007] d..1 82315.572160: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
28683          <idle>-0     (-----) [003] d..2 82315.572165: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
28684           <...>-27550 (-----) [007] d..2 82315.572167: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
28685          <idle>-0     (-----) [006] .n.1 82315.572173: cpu_idle: state=4294967295 cpu_id=6
28686          <idle>-0     (-----) [006] d..2 82315.572177: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28687           <...>-27550 (-----) [007] d..2 82315.572207: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28688          <idle>-0     (-----) [007] d..1 82315.572214: cpu_idle: state=2 cpu_id=7
28689            adbd-960   (  960) [002] d..2 82315.572219: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28690          <idle>-0     (-----) [002] d..1 82315.572233: cpu_idle: state=0 cpu_id=2
28691            adbd-24055 (  960) [003] d..2 82315.572293: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
28692<...>-581 ( 571) [003] d.h2 82315.572333: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=000
28693<...>-581 ( 571) [003] dnh3 82315.572364: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
28694           <...>-27566 (-----) [006] .... 82315.572369: binder_transaction: transaction=1568369 dest_node=396343 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x32
28695           <...>-27566 (-----) [006] .... 82315.572370: binder_transaction_alloc_buf: transaction=1568369 data_size=68 offsets_size=0
28696           <...>-27566 (-----) [006] ...2 82315.572372: binder_set_priority: proc=8943 thread=25493 old=120 => new=112 desired=112
28697           <...>-27566 (-----) [006] d..4 82315.572373: sched_waking: comm=Binder:8943_17 pid=25493 prio=112 target_cpu=006
28698<...>-581 ( 571) [003] d..2 82315.572373: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
28699           <...>-27566 (-----) [006] dn.5 82315.572378: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=112 target_cpu=006
28700           <...>-27566 (-----) [006] d..2 82315.572381: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=112
28701<...>-25493 ( 8943) [006] .... 82315.572385: binder_transaction_received: transaction=1568369
28702   kworker/u17:1-570   (  570) [003] d..2 82315.572393: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
28703   kworker/u17:1-570   (  570) [003] d..3 82315.572404: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
28704   kworker/u17:1-570   (  570) [003] d..2 82315.572425: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
28705     kworker/3:1-25210 (25210) [003] d..2 82315.572435: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
28706     kworker/3:1-25210 (25210) [003] d..2 82315.572496: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
28707<...>-581 ( 571) [003] d..2 82315.572549: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28708          <idle>-0     (-----) [003] d..3 82315.572559: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
28709<...>-25493 ( 8943) [006] .... 82315.572567: binder_transaction: transaction=1568370 dest_node=0 dest_proc=27550 dest_thread=27566 reply=1 flags=0x0 code=0x0
28710<...>-25493 ( 8943) [006] .... 82315.572568: binder_transaction_alloc_buf: transaction=1568370 data_size=4 offsets_size=0
28711<...>-25493 ( 8943) [006] .... 82315.572569: binder_set_priority: proc=8943 thread=25493 old=112 => new=120 desired=120
28712          <idle>-0     (-----) [002] d.h2 82315.572570: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
28713          <idle>-0     (-----) [003] dn.4 82315.572577: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
28714          <idle>-0     (-----) [002] dnh3 82315.572579: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
28715<...>-25493 ( 8943) [006] d..2 82315.572583: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28716          <idle>-0     (-----) [002] .n.1 82315.572587: cpu_idle: state=4294967295 cpu_id=2
28717           <...>-27566 (-----) [006] .... 82315.572587: binder_transaction_received: transaction=1568370
28718          <idle>-0     (-----) [003] d..2 82315.572587: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
28719          <idle>-0     (-----) [002] d..2 82315.572594: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
28720         rcuop/2-29    (   29) [003] d..2 82315.572604: 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
28721          <idle>-0     (-----) [007] dnh2 82315.572611: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=007
28722          <idle>-0     (-----) [003] d..1 82315.572611: cpu_idle: state=0 cpu_id=3
28723          <idle>-0     (-----) [007] .n.1 82315.572614: cpu_idle: state=4294967295 cpu_id=7
28724          <idle>-0     (-----) [007] d..2 82315.572619: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
28725            adbd-24055 (  960) [007] d..2 82315.572661: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28726          <idle>-0     (-----) [007] d..1 82315.572666: cpu_idle: state=2 cpu_id=7
28727          <idle>-0     (-----) [003] d.h3 82315.572688: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
28728          <idle>-0     (-----) [003] dnh4 82315.572698: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
28729          <idle>-0     (-----) [003] .n.1 82315.572706: cpu_idle: state=4294967295 cpu_id=3
28730          <idle>-0     (-----) [003] d..2 82315.572716: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
28731   kworker/u17:1-570   (  570) [003] d..2 82315.572727: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
28732 irq/81-114a000.-9677  ( 9677) [002] d..2 82315.572733: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
28733   kworker/u17:1-570   (  570) [003] d..3 82315.572734: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
28734          <idle>-0     (-----) [002] d..1 82315.572742: cpu_idle: state=0 cpu_id=2
28735<...>-142 ( 142) [001] d.s3 82315.572748: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
28736   kworker/u17:1-570   (  570) [003] d..2 82315.572752: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
28737     kworker/3:1-25210 (25210) [003] d..2 82315.572759: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=007
28738<...>-142 ( 142) [001] d.s4 82315.572760: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
28739          <idle>-0     (-----) [002] .n.1 82315.572766: cpu_idle: state=4294967295 cpu_id=2
28740          <idle>-0     (-----) [002] d..2 82315.572775: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
28741     kworker/3:1-25210 (25210) [003] d..2 82315.572787: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28742          <idle>-0     (-----) [003] d..1 82315.572796: cpu_idle: state=0 cpu_id=3
28743 irq/81-114a000.-9677  ( 9677) [002] d..2 82315.572803: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28744          <idle>-0     (-----) [002] d..1 82315.572813: cpu_idle: state=0 cpu_id=2
28745           <...>-27566 (-----) [006] d..1 82315.572857: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28746           <...>-27555 (-----) [000] d..2 82315.572857: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
28747          <idle>-0     (-----) [000] d.h2 82315.572878: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
28748          <idle>-0     (-----) [000] dnh2 82315.572882: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28749          <idle>-0     (-----) [003] d.h3 82315.572884: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
28750          <idle>-0     (-----) [003] dnh4 82315.572891: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
28751          <idle>-0     (-----) [000] d..2 82315.572893: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28752           <...>-27566 (-----) [006] d..2 82315.572894: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
28753          <idle>-0     (-----) [003] .n.1 82315.572897: cpu_idle: state=4294967295 cpu_id=3
28754          <idle>-0     (-----) [006] d..1 82315.572901: cpu_idle: state=2 cpu_id=6
28755           <...>-27555 (-----) [000] d..1 82315.572902: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
28756          <idle>-0     (-----) [003] d..2 82315.572906: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
28757   kworker/u17:1-570   (  570) [003] d..2 82315.572918: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
28758   kworker/u17:1-570   (  570) [003] d..3 82315.572925: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
28759          <idle>-0     (-----) [007] dnh2 82315.572931: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=007
28760          <idle>-0     (-----) [007] .n.1 82315.572935: cpu_idle: state=4294967295 cpu_id=7
28761          <idle>-0     (-----) [007] d..2 82315.572942: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
28762   kworker/u17:1-570   (  570) [003] d..2 82315.572944: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
28763     kworker/3:1-25210 (25210) [003] d..2 82315.572958: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=002
28764     kworker/3:1-25210 (25210) [003] d..3 82315.573143: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
28765           <...>-27555 (-----) [000] d..2 82315.573175: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
28766          <idle>-0     (-----) [006] d.h2 82315.573207: sched_blocked_reason: pid=27566 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28767          <idle>-0     (-----) [006] dnh2 82315.573209: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
28768          <idle>-0     (-----) [006] .n.1 82315.573212: cpu_idle: state=4294967295 cpu_id=6
28769          <idle>-0     (-----) [006] d..2 82315.573217: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28770     kworker/3:1-25210 (25210) [003] d..2 82315.573219: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
28771            adbd-24055 (  960) [007] d..2 82315.573222: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
28772          <idle>-0     (-----) [000] d..1 82315.573222: cpu_idle: state=0 cpu_id=0
28773           <...>-27566 (-----) [006] d..1 82315.573222: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28774          <idle>-0     (-----) [007] d..1 82315.573227: cpu_idle: state=2 cpu_id=7
28775           <...>-27566 (-----) [006] d..2 82315.573237: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
28776          <idle>-0     (-----) [000] d.h2 82315.573238: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
28777          <idle>-0     (-----) [006] d..1 82315.573240: cpu_idle: state=2 cpu_id=6
28778          <idle>-0     (-----) [000] dnh2 82315.573241: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28779            adbd-24054 (  960) [003] d..2 82315.573245: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
28780          <idle>-0     (-----) [000] .n.1 82315.573246: cpu_idle: state=4294967295 cpu_id=0
28781          <idle>-0     (-----) [000] d..2 82315.573255: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28782            adbd-24054 (  960) [003] d..3 82315.573258: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
28783           <...>-27555 (-----) [000] d..1 82315.573264: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
28784            adbd-24054 (  960) [003] d..2 82315.573321: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
28785            adbd-960   (  960) [003] d..2 82315.573434: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28786          <idle>-0     (-----) [003] d..1 82315.573444: cpu_idle: state=0 cpu_id=3
28787           <...>-27555 (-----) [000] d..2 82315.573472: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
28788          <idle>-0     (-----) [000] d..1 82315.573482: cpu_idle: state=2 cpu_id=0
28789          <idle>-0     (-----) [002] ...1 82315.573927: cpu_idle: state=4294967295 cpu_id=2
28790          <idle>-0     (-----) [002] d..1 82315.573930: cpu_idle: state=2 cpu_id=2
28791          <idle>-0     (-----) [006] d.h2 82315.574100: sched_blocked_reason: pid=27566 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28792          <idle>-0     (-----) [006] dnh2 82315.574102: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
28793          <idle>-0     (-----) [006] .n.1 82315.574104: cpu_idle: state=4294967295 cpu_id=6
28794          <idle>-0     (-----) [006] d..2 82315.574109: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28795           <...>-27566 (-----) [006] d..1 82315.574118: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28796           <...>-27566 (-----) [006] d..2 82315.574131: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
28797          <idle>-0     (-----) [006] d..1 82315.574135: cpu_idle: state=0 cpu_id=6
28798          <idle>-0     (-----) [000] d.h2 82315.574246: sched_blocked_reason: pid=27555 iowait=0 caller=do_page_fault+0x4e0/0x594
28799          <idle>-0     (-----) [000] dnh2 82315.574251: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28800          <idle>-0     (-----) [000] .n.1 82315.574257: cpu_idle: state=4294967295 cpu_id=0
28801          <idle>-0     (-----) [000] d..2 82315.574269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28802           <...>-27555 (-----) [000] d..1 82315.574278: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
28803          <idle>-0     (-----) [006] d.h2 82315.574294: sched_blocked_reason: pid=27566 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28804          <idle>-0     (-----) [006] dnh2 82315.574295: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
28805          <idle>-0     (-----) [006] .n.1 82315.574297: cpu_idle: state=4294967295 cpu_id=6
28806          <idle>-0     (-----) [006] d..2 82315.574300: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
28807          <idle>-0     (-----) [003] .n.1 82315.574367: cpu_idle: state=4294967295 cpu_id=3
28808          <idle>-0     (-----) [003] d..2 82315.574379: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27568 next_prio=112
28809           <...>-27566 (-----) [006] d..2 82315.574401: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
28810          <idle>-0     (-----) [006] d..1 82315.574406: cpu_idle: state=0 cpu_id=6
28811           <...>-27568 (-----) [003] .... 82315.574930: binder_transaction: transaction=1568371 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xe
28812           <...>-27568 (-----) [003] .... 82315.574936: binder_transaction_alloc_buf: transaction=1568371 data_size=260 offsets_size=0
28813           <...>-27568 (-----) [003] d..4 82315.574940: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
28814           <...>-27568 (-----) [003] dn.5 82315.574959: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=003
28815           <...>-27568 (-----) [003] d..2 82315.575000: sched_switch: prev_comm=MonitoringInstr prev_pid=27568 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
28816<...>-25493 ( 8943) [003] .... 82315.575005: binder_transaction_received: transaction=1568371
28817          <idle>-0     (-----) [006] ...1 82315.575414: cpu_idle: state=4294967295 cpu_id=6
28818          <idle>-0     (-----) [006] d..1 82315.575415: cpu_idle: state=2 cpu_id=6
28819<...>-25493 ( 8943) [003] .... 82315.575623: binder_transaction: transaction=1568372 dest_node=0 dest_proc=27550 dest_thread=27568 reply=1 flags=0x0 code=0x0
28820<...>-25493 ( 8943) [003] .... 82315.575627: binder_transaction_alloc_buf: transaction=1568372 data_size=2564 offsets_size=0
28821<...>-25493 ( 8943) [003] d..2 82315.575660: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=MonitoringInstr next_pid=27568 next_prio=120
28822           <...>-27568 (-----) [003] .... 82315.575667: binder_transaction_received: transaction=1568372
28823           <...>-27568 (-----) [003] d..1 82315.575684: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28824           <...>-27555 (-----) [000] d..2 82315.575704: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
28825           <...>-27568 (-----) [003] d..2 82315.575715: sched_blocked_reason: pid=27555 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28826           <...>-27568 (-----) [003] d..2 82315.575722: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28827          <idle>-0     (-----) [000] d..2 82315.575732: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28828           <...>-27568 (-----) [003] d..2 82315.575745: sched_switch: prev_comm=MonitoringInstr prev_pid=27568 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
28829           <...>-27555 (-----) [000] d..1 82315.575750: sched_waking: comm=MonitoringInstr pid=27568 prio=120 target_cpu=003
28830          <idle>-0     (-----) [003] d..1 82315.575759: cpu_idle: state=0 cpu_id=3
28831           <...>-27555 (-----) [000] d..2 82315.575760: sched_blocked_reason: pid=27568 iowait=0 caller=do_page_fault+0x4e0/0x594
28832           <...>-27555 (-----) [000] d..2 82315.575767: sched_wakeup: comm=MonitoringInstr pid=27568 prio=120 target_cpu=003
28833          <idle>-0     (-----) [003] .n.1 82315.575773: cpu_idle: state=4294967295 cpu_id=3
28834          <idle>-0     (-----) [003] d..2 82315.575782: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MonitoringInstr next_pid=27568 next_prio=120
28835           <...>-27568 (-----) [003] d..1 82315.575788: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28836           <...>-27555 (-----) [000] d..2 82315.575804: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
28837           <...>-27568 (-----) [003] d..2 82315.575812: sched_blocked_reason: pid=27555 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
28838          <idle>-0     (-----) [000] d..1 82315.575814: cpu_idle: state=0 cpu_id=0
28839          <idle>-0     (-----) [000] .n.1 82315.575818: cpu_idle: state=4294967295 cpu_id=0
28840           <...>-27568 (-----) [003] d..2 82315.575818: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
28841          <idle>-0     (-----) [000] d..2 82315.575830: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
28842<...>-142 ( 142) [001] d..2 82315.575832: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
28843           <...>-27555 (-----) [000] d..1 82315.575840: sched_waking: comm=MonitoringInstr pid=27568 prio=120 target_cpu=003
28844           <...>-27568 (-----) [003] d..2 82315.575841: sched_switch: prev_comm=MonitoringInstr prev_pid=27568 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
28845<...>-142 ( 142) [001] dn.3 82315.575848: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
28846          <idle>-0     (-----) [003] d..1 82315.575848: cpu_idle: state=0 cpu_id=3
28847           <...>-27555 (-----) [000] d..2 82315.575849: sched_blocked_reason: pid=27568 iowait=0 caller=do_page_fault+0x4e0/0x594
28848           <...>-27555 (-----) [000] d..2 82315.575855: sched_wakeup: comm=MonitoringInstr pid=27568 prio=120 target_cpu=003
28849<...>-142 ( 142) [001] d..2 82315.575857: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
28850          <idle>-0     (-----) [003] .n.1 82315.575860: cpu_idle: state=4294967295 cpu_id=3
28851     kworker/1:1-25249 (25249) [001] d..3 82315.575866: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=001
28852          <idle>-0     (-----) [003] d..2 82315.575867: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MonitoringInstr next_pid=27568 next_prio=120
28853     kworker/1:1-25249 (25249) [001] d..4 82315.575888: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
28854     kworker/1:1-25249 (25249) [001] d..2 82315.575900: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
28855          <idle>-0     (-----) [002] .n.1 82315.576017: cpu_idle: state=4294967295 cpu_id=2
28856          <idle>-0     (-----) [002] d..2 82315.576029: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
28857           <...>-27568 (-----) [003] .... 82315.576691: binder_transaction: transaction=1568373 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
28858           <...>-27568 (-----) [003] .... 82315.576696: binder_transaction_alloc_buf: transaction=1568373 data_size=96 offsets_size=0
28859           <...>-27568 (-----) [003] d..4 82315.576701: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=003
28860           <...>-27568 (-----) [003] dn.5 82315.576716: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=003
28861<...>-821 ( 821) [002] d..2 82315.576719: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28862           <...>-27568 (-----) [003] d..2 82315.576723: sched_switch: prev_comm=MonitoringInstr prev_pid=27568 prev_prio=120 prev_state=R+ ==> next_comm=servicemanager next_pid=608 next_prio=120
28863<...>-608 ( 608) [003] .... 82315.576731: binder_transaction_received: transaction=1568373
28864          <idle>-0     (-----) [002] d..1 82315.576731: cpu_idle: state=0 cpu_id=2
28865<...>-608 ( 608) [003] .... 82315.576911: binder_transaction: transaction=1568374 dest_node=0 dest_proc=27550 dest_thread=27568 reply=1 flags=0x0 code=0x0
28866<...>-608 ( 608) [003] .... 82315.576914: binder_transaction_alloc_buf: transaction=1568374 data_size=24 offsets_size=8
28867<...>-608 ( 608) [003] d..2 82315.576951: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=MonitoringInstr next_pid=27568 next_prio=120
28868           <...>-27568 (-----) [003] .... 82315.576957: binder_transaction_received: transaction=1568374
28869           <...>-27568 (-----) [003] d.s2 82315.578470: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
28870<...>-142 ( 142) [001] d.s3 82315.578472: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28871<...>-142 ( 142) [001] dns4 82315.578489: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28872           <...>-27568 (-----) [003] d.s3 82315.578507: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
28873<...>-142 ( 142) [001] d..2 82315.578514: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28874<...>-1054 ( 1054) [001] .... 82315.578602: clk_set_rate: l3_cluster0_vote_clk 844800000
28875<...>-1054 ( 1054) [001] d..2 82315.578765: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
28876     rcu_preempt-7     (    7) [001] d.s4 82315.578795: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28877     rcu_preempt-7     (    7) [001] d.s5 82315.578805: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28878     rcu_preempt-7     (    7) [001] d.s5 82315.578809: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28879     rcu_preempt-7     (    7) [001] d..2 82315.578827: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28880<...>-1054 ( 1054) [001] d..2 82315.578988: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=kswapd0 next_pid=142 next_prio=120
28881<...>-142 ( 142) [001] d.s2 82315.579018: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28882<...>-142 ( 142) [001] d.s3 82315.579028: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
28883<...>-142 ( 142) [001] dns3 82315.579031: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
28884<...>-142 ( 142) [001] d..2 82315.579039: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
28885<...>-1054 ( 1054) [001] .... 82315.579064: clk_set_rate: l3_cluster1_vote_clk 940800000
28886<...>-1054 ( 1054) [001] .... 82315.579068: clk_set_rate: l3_clk 940800000
28887<...>-1054 ( 1054) [001] d..2 82315.579303: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
28888           <...>-27555 (-----) [000] d..2 82315.579366: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
28889          <idle>-0     (-----) [000] d..1 82315.579388: cpu_idle: state=0 cpu_id=0
28890           <...>-27568 (-----) [003] .... 82315.580096: binder_transaction: transaction=1568376 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
28891           <...>-27568 (-----) [003] .... 82315.580099: binder_transaction_alloc_buf: transaction=1568376 data_size=492 offsets_size=8
28892           <...>-27568 (-----) [003] d..4 82315.580112: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=003
28893           <...>-27568 (-----) [003] dn.5 82315.580125: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=003
28894           <...>-27568 (-----) [003] d..2 82315.580132: sched_switch: prev_comm=MonitoringInstr prev_pid=27568 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
28895<...>-25493 ( 8943) [003] .... 82315.580139: binder_transaction_received: transaction=1568376
28896<...>-142 ( 142) [001] d..2 82315.580540: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
28897<...>-142 ( 142) [001] dn.3 82315.580553: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
28898<...>-142 ( 142) [001] d..2 82315.580561: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
28899     kworker/1:1-25249 (25249) [001] d..3 82315.580567: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
28900     kworker/1:1-25249 (25249) [001] d..4 82315.580583: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
28901          <idle>-0     (-----) [002] .n.1 82315.580590: cpu_idle: state=4294967295 cpu_id=2
28902     kworker/1:1-25249 (25249) [001] d..2 82315.580594: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
28903          <idle>-0     (-----) [000] ...1 82315.580598: cpu_idle: state=4294967295 cpu_id=0
28904          <idle>-0     (-----) [002] d..2 82315.580601: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
28905          <idle>-0     (-----) [000] d..1 82315.580602: cpu_idle: state=2 cpu_id=0
28906<...>-142 ( 142) [001] d..2 82315.580621: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28907          <idle>-0     (-----) [001] d..1 82315.580639: cpu_idle: state=0 cpu_id=1
28908<...>-25493 ( 8943) [003] d..2 82315.580749: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
28909<...>-25493 ( 8943) [003] d..3 82315.580790: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
28910<...>-821 ( 821) [002] d..2 82315.581091: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
28911<...>-581 ( 571) [002] d..2 82315.581207: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28912          <idle>-0     (-----) [002] d..1 82315.581221: cpu_idle: state=0 cpu_id=2
28913<...>-25493 ( 8943) [003] d..2 82315.581633: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
28914<...>-25493 ( 8943) [003] d..3 82315.581648: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
28915          <idle>-0     (-----) [002] .n.1 82315.581655: cpu_idle: state=4294967295 cpu_id=2
28916          <idle>-0     (-----) [002] d..2 82315.581664: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
28917<...>-581 ( 571) [002] d..2 82315.581725: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28918<...>-25493 ( 8943) [003] d..3 82315.581728: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=005
28919          <idle>-0     (-----) [002] d..1 82315.581736: cpu_idle: state=0 cpu_id=2
28920<...>-25493 ( 8943) [003] .... 82315.581955: binder_transaction: transaction=1568377 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
28921<...>-25493 ( 8943) [003] .... 82315.581961: binder_transaction_alloc_buf: transaction=1568377 data_size=140 offsets_size=8
28922<...>-25493 ( 8943) [003] ...2 82315.582036: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
28923<...>-25493 ( 8943) [003] d..4 82315.582041: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=000
28924<...>-25493 ( 8943) [003] d..5 82315.582061: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=000
28925<...>-25493 ( 8943) [003] d..2 82315.582075: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=S ==> next_comm=MonitoringInstr next_pid=27568 next_prio=120
28926           <...>-27568 (-----) [003] d..2 82315.582101: sched_switch: prev_comm=MonitoringInstr prev_pid=27568 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28927          <idle>-0     (-----) [003] d..1 82315.582118: cpu_idle: state=0 cpu_id=3
28928          <idle>-0     (-----) [000] .n.1 82315.582221: cpu_idle: state=4294967295 cpu_id=0
28929          <idle>-0     (-----) [000] d..2 82315.582237: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
28930<...>-8874 ( 8858) [000] .... 82315.582250: binder_transaction_received: transaction=1568377
28931          <idle>-0     (-----) [004] dnh2 82315.582459: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
28932          <idle>-0     (-----) [004] .n.1 82315.582464: cpu_idle: state=4294967295 cpu_id=4
28933          <idle>-0     (-----) [004] d..2 82315.582471: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
28934<...>-9005 ( 8943) [004] .... 82315.582558: binder_transaction: transaction=1568378 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
28935<...>-9005 ( 8943) [004] .... 82315.582560: binder_transaction_alloc_buf: transaction=1568378 data_size=80 offsets_size=0
28936<...>-9005 ( 8943) [004] d..4 82315.582563: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
28937          <idle>-0     (-----) [001] dnh2 82315.582609: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
28938          <idle>-0     (-----) [001] .n.1 82315.582614: cpu_idle: state=4294967295 cpu_id=1
28939          <idle>-0     (-----) [001] d..2 82315.582623: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
28940<...>-13083 ( 8858) [001] .... 82315.582632: binder_transaction_received: transaction=1568378
28941<...>-9005 ( 8943) [004] d..2 82315.582632: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
28942          <idle>-0     (-----) [004] d..1 82315.582638: cpu_idle: state=2 cpu_id=4
28943<...>-8874 ( 8858) [000] ...1 82315.582646: tracing_mark_write: B|8858|HIDL::IComposerClient::getActiveConfig::client
28944<...>-8874 ( 8858) [000] ...1 82315.582654: tracing_mark_write: E|8858
28945<...>-13083 ( 8858) [001] d..2 82315.582685: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
28946<...>-8874 ( 8858) [000] .... 82315.582690: binder_transaction: transaction=1568379 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x7
28947          <idle>-0     (-----) [001] d..1 82315.582692: cpu_idle: state=0 cpu_id=1
28948<...>-8874 ( 8858) [000] .... 82315.582694: binder_transaction_alloc_buf: transaction=1568379 data_size=64 offsets_size=0
28949<...>-8874 ( 8858) [000] ...2 82315.582718: binder_set_priority: proc=619 thread=619 old=97 => new=116 desired=116
28950<...>-8874 ( 8858) [000] d..4 82315.582731: sched_waking: [email protected] pid=619 prio=116 target_cpu=003
28951<...>-8874 ( 8858) [000] d..5 82315.582750: sched_wakeup: [email protected] pid=619 prio=116 target_cpu=000
28952<...>-8874 ( 8858) [000] d..2 82315.582762: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=116 prev_state=S ==> [email protected] next_pid=619 next_prio=116
28953 [email protected]   (  619) [000] .... 82315.582772: binder_transaction_received: transaction=1568379
28954 [email protected]   (  619) [000] ...1 82315.582826: tracing_mark_write: B|619|HIDL::IComposerClient::getActiveConfig::server
28955 [email protected]   (  619) [000] ...1 82315.582862: tracing_mark_write: E|619
28956 [email protected]   (  619) [000] .... 82315.582874: binder_transaction: transaction=1568380 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
28957 [email protected]   (  619) [000] .... 82315.582877: binder_transaction_alloc_buf: transaction=1568380 data_size=12 offsets_size=0
28958 [email protected]   (  619) [000] d..2 82315.582881: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=000
28959 [email protected]   (  619) [000] dn.3 82315.582892: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=000
28960 [email protected]   (  619) [000] d..2 82315.582898: sched_switch: [email protected] prev_pid=619 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
28961<...>-8874 ( 8858) [000] .... 82315.582904: binder_transaction_received: transaction=1568380
28962<...>-8874 ( 8858) [000] d..1 82315.582935: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
28963<...>-8874 ( 8858) [000] d..2 82315.582955: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
28964<...>-8874 ( 8858) [000] d..1 82315.582962: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=003
28965          <idle>-0     (-----) [003] .n.1 82315.582962: cpu_idle: state=4294967295 cpu_id=3
28966          <idle>-0     (-----) [003] d..2 82315.582971: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
28967<...>-8874 ( 8858) [000] d..2 82315.582986: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
28968<...>-8874 ( 8858) [000] d..1 82315.582992: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
28969          <idle>-0     (-----) [001] .n.1 82315.582992: cpu_idle: state=4294967295 cpu_id=1
28970          <idle>-0     (-----) [001] d..2 82315.583000: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
28971<...>-8874 ( 8858) [000] d..2 82315.583007: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
28972        DispSync-8879  ( 8858) [003] d..2 82315.583015: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=sfEventThread next_pid=8882 next_prio=97
28973<...>-8874 ( 8858) [000] d..1 82315.583020: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
28974<...>-8894 ( 8858) [001] ...1 82315.583021: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
28975<...>-8894 ( 8858) [001] ...1 82315.583026: tracing_mark_write: E|8858
28976<...>-8874 ( 8858) [000] d..2 82315.583035: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
28977   sfEventThread-8882  ( 8858) [003] d..1 82315.583036: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
28978          <idle>-0     (-----) [002] .n.1 82315.583040: cpu_idle: state=4294967295 cpu_id=2
28979<...>-8894 ( 8858) [001] .... 82315.583047: binder_transaction: transaction=1568381 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
28980          <idle>-0     (-----) [002] d..2 82315.583050: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
28981<...>-8894 ( 8858) [001] .... 82315.583051: binder_transaction_alloc_buf: transaction=1568381 data_size=68 offsets_size=0
28982   sfEventThread-8882  ( 8858) [003] d..2 82315.583055: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
28983<...>-8874 ( 8858) [000] .... 82315.583061: binder_transaction: transaction=1568382 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x0 code=0x0
28984<...>-8894 ( 8858) [001] d..2 82315.583063: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=R+ ==> next_comm=DispSync next_pid=8879 next_prio=97
28985<...>-8874 ( 8858) [000] .... 82315.583064: binder_transaction_alloc_buf: transaction=1568382 data_size=52 offsets_size=16
28986<...>-13083 ( 8858) [002] d..2 82315.583075: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
28987   sfEventThread-8882  ( 8858) [003] d..1 82315.583077: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
28988          <idle>-0     (-----) [002] d..1 82315.583085: cpu_idle: state=0 cpu_id=2
28989        DispSync-8879  ( 8858) [001] d..2 82315.583087: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
28990   sfEventThread-8882  ( 8858) [003] d..2 82315.583089: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
28991<...>-8894 ( 8858) [001] ...2 82315.583091: binder_set_priority: proc=619 thread=658 old=97 => new=112 desired=112
28992          <idle>-0     (-----) [002] .n.1 82315.583095: cpu_idle: state=4294967295 cpu_id=2
28993<...>-8894 ( 8858) [001] d..4 82315.583097: sched_waking: comm=HwBinder:619_2 pid=658 prio=112 target_cpu=001
28994          <idle>-0     (-----) [002] d..2 82315.583104: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
28995<...>-8894 ( 8858) [001] d..5 82315.583108: sched_wakeup: comm=HwBinder:619_2 pid=658 prio=112 target_cpu=001
28996   sfEventThread-8882  ( 8858) [003] d..2 82315.583111: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
28997<...>-13083 ( 8858) [002] d..1 82315.583112: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
28998<...>-8894 ( 8858) [001] d..2 82315.583118: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> next_comm=HwBinder:619_2 next_pid=658 next_prio=112
28999          <idle>-0     (-----) [003] dn.1 82315.583122: cpu_idle: state=0 cpu_id=3
29000<...>-658 ( 619) [001] .... 82315.583125: binder_transaction_received: transaction=1568381
29001<...>-13083 ( 8858) [002] d..2 82315.583125: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
29002          <idle>-0     (-----) [003] .n.1 82315.583129: cpu_idle: state=4294967295 cpu_id=3
29003          <idle>-0     (-----) [003] d..2 82315.583136: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
29004<...>-658 ( 619) [001] ...1 82315.583151: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
29005<...>-13083 ( 8858) [002] d..2 82315.583160: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29006   sfEventThread-8882  ( 8858) [003] d..2 82315.583162: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29007<...>-658 ( 619) [001] ...1 82315.583162: tracing_mark_write: C|619|SetVsyncState |1
29008          <idle>-0     (-----) [002] d..1 82315.583170: cpu_idle: state=0 cpu_id=2
29009          <idle>-0     (-----) [003] d..1 82315.583170: cpu_idle: state=0 cpu_id=3
29010<...>-658 ( 619) [001] d..4 82315.583187: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29011<...>-658 ( 619) [001] d..5 82315.583205: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29012          <idle>-0     (-----) [002] .n.1 82315.583210: cpu_idle: state=4294967295 cpu_id=2
29013          <idle>-0     (-----) [002] d..2 82315.583218: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
29014<...>-658 ( 619) [001] ...1 82315.583226: tracing_mark_write: E|619
29015<...>-658 ( 619) [001] .... 82315.583234: binder_transaction: transaction=1568385 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
29016<...>-658 ( 619) [001] .... 82315.583237: binder_transaction_alloc_buf: transaction=1568385 data_size=8 offsets_size=0
29017<...>-658 ( 619) [001] d..2 82315.583239: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
29018<...>-658 ( 619) [001] dn.3 82315.583249: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
29019<...>-658 ( 619) [001] d..2 82315.583256: sched_switch: prev_comm=HwBinder:619_2 prev_pid=658 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
29020<...>-8894 ( 8858) [001] .... 82315.583262: binder_transaction_received: transaction=1568385
29021<...>-8894 ( 8858) [001] d..2 82315.583288: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> next_comm=HwBinder:619_2 next_pid=658 next_prio=112
29022<...>-658 ( 619) [001] .... 82315.583292: binder_set_priority: proc=619 thread=658 old=112 => new=97 desired=97
29023<...>-658 ( 619) [001] d..2 82315.583340: sched_switch: prev_comm=HwBinder:619_2 prev_pid=658 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29024          <idle>-0     (-----) [001] d..1 82315.583349: cpu_idle: state=0 cpu_id=1
29025 crtc_commit:111-321   (  321) [002] d..2 82315.583374: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
29026          <idle>-0     (-----) [002] d..1 82315.583383: cpu_idle: state=2 cpu_id=2
29027<...>-8874 ( 8858) [000] d..2 82315.583391: sched_waking: comm=Binder:8943_17 pid=25493 prio=116 target_cpu=003
29028<...>-8874 ( 8858) [000] d..3 82315.583405: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=116 target_cpu=003
29029<...>-8874 ( 8858) [000] .... 82315.583408: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
29030          <idle>-0     (-----) [003] .n.1 82315.583410: cpu_idle: state=4294967295 cpu_id=3
29031          <idle>-0     (-----) [003] d..2 82315.583418: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29032<...>-25493 ( 8943) [003] .... 82315.583425: binder_transaction_received: transaction=1568382
29033<...>-8874 ( 8858) [000] d..2 82315.583464: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=116
29034 [email protected]   (  619) [000] .... 82315.583469: binder_set_priority: proc=619 thread=619 old=116 => new=97 desired=97
29035<...>-25493 ( 8943) [003] .... 82315.583478: binder_transaction: transaction=1568388 dest_node=1568386 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
29036<...>-25493 ( 8943) [003] .... 82315.583482: binder_transaction_alloc_buf: transaction=1568388 data_size=80 offsets_size=0
29037<...>-25493 ( 8943) [003] ...2 82315.583485: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
29038<...>-25493 ( 8943) [003] d..4 82315.583488: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=000
29039<...>-25493 ( 8943) [003] dn.5 82315.583503: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
29040<...>-25493 ( 8943) [003] d..2 82315.583511: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
29041<...>-8874 ( 8858) [003] .... 82315.583516: binder_transaction_received: transaction=1568388
29042 [email protected]   (  619) [000] d..2 82315.583535: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29043<...>-8874 ( 8858) [003] .... 82315.583538: binder_transaction: transaction=1568389 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x8 code=0x0
29044<...>-8874 ( 8858) [003] .... 82315.583540: binder_transaction_alloc_buf: transaction=1568389 data_size=4 offsets_size=0
29045<...>-8874 ( 8858) [003] d..2 82315.583543: sched_waking: comm=Binder:8943_17 pid=25493 prio=116 target_cpu=000
29046<...>-25493 ( 8943) [000] d..2 82315.583557: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29047          <idle>-0     (-----) [001] d.s3 82315.583561: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29048          <idle>-0     (-----) [000] d..1 82315.583571: cpu_idle: state=0 cpu_id=0
29049<...>-8874 ( 8858) [003] d..3 82315.583573: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=116 target_cpu=003
29050          <idle>-0     (-----) [001] d.s4 82315.583574: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29051<...>-8874 ( 8858) [003] .... 82315.583576: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
29052          <idle>-0     (-----) [001] ...1 82315.583582: cpu_idle: state=4294967295 cpu_id=1
29053          <idle>-0     (-----) [001] d..1 82315.583585: cpu_idle: state=0 cpu_id=1
29054<...>-8874 ( 8858) [003] d..2 82315.583606: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29055<...>-25493 ( 8943) [003] .... 82315.583610: binder_transaction_received: transaction=1568389
29056          <idle>-0     (-----) [002] .n.1 82315.583688: cpu_idle: state=4294967295 cpu_id=2
29057          <idle>-0     (-----) [002] d..2 82315.583702: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
29058 crtc_commit:111-321   (  321) [002] d..2 82315.583839: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
29059          <idle>-0     (-----) [002] d..1 82315.583851: cpu_idle: state=0 cpu_id=2
29060          <idle>-0     (-----) [001] d.s3 82315.583855: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29061          <idle>-0     (-----) [001] d.s4 82315.583866: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29062          <idle>-0     (-----) [002] .n.1 82315.583872: cpu_idle: state=4294967295 cpu_id=2
29063          <idle>-0     (-----) [001] ...1 82315.583872: cpu_idle: state=4294967295 cpu_id=1
29064          <idle>-0     (-----) [001] d..1 82315.583875: cpu_idle: state=0 cpu_id=1
29065          <idle>-0     (-----) [002] d..2 82315.583879: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
29066 crtc_commit:111-321   (  321) [002] d..1 82315.583917: clk_enable: disp_cc_mdss_vsync_clk_src
29067 crtc_commit:111-321   (  321) [002] d..1 82315.583920: clk_enable: disp_cc_mdss_rscc_vsync_clk
29068 crtc_commit:111-321   (  321) [002] d..1 82315.583943: clk_enable: disp_cc_mdss_rscc_ahb_clk
29069<...>-25493 ( 8943) [003] .... 82315.583976: binder_transaction: transaction=1568390 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
29070<...>-25493 ( 8943) [003] .... 82315.583979: binder_transaction_alloc_buf: transaction=1568390 data_size=160 offsets_size=8
29071<...>-25493 ( 8943) [003] ...2 82315.583986: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
29072<...>-25493 ( 8943) [003] d..4 82315.583989: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
29073 crtc_commit:111-321   (  321) [002] d..2 82315.583995: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
29074<...>-25493 ( 8943) [003] dn.5 82315.584001: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
29075          <idle>-0     (-----) [002] d..1 82315.584002: cpu_idle: state=0 cpu_id=2
29076<...>-25493 ( 8943) [003] d..2 82315.584009: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
29077<...>-8874 ( 8858) [003] .... 82315.584014: binder_transaction_received: transaction=1568390
29078          <idle>-0     (-----) [002] d.h2 82315.584091: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29079          <idle>-0     (-----) [002] dnh3 82315.584101: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29080          <idle>-0     (-----) [002] .n.1 82315.584107: cpu_idle: state=4294967295 cpu_id=2
29081          <idle>-0     (-----) [002] d..2 82315.584114: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
29082<...>-8874 ( 8858) [003] ...1 82315.584132: tracing_mark_write: B|8858|HIDL::IComposerClient::getActiveConfig::client
29083<...>-8874 ( 8858) [003] ...1 82315.584137: tracing_mark_write: E|8858
29084 crtc_commit:111-321   (  321) [002] d..1 82315.584146: clk_enable: gcc_disp_axi_clk
29085<...>-8874 ( 8858) [003] .... 82315.584152: binder_transaction: transaction=1568391 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x7
29086<...>-8874 ( 8858) [003] .... 82315.584156: binder_transaction_alloc_buf: transaction=1568391 data_size=64 offsets_size=0
29087 crtc_commit:111-321   (  321) [002] d..1 82315.584157: clk_enable: disp_cc_mdss_ahb_clk
29088<...>-8874 ( 8858) [003] ...2 82315.584159: binder_set_priority: proc=619 thread=619 old=97 => new=116 desired=116
29089<...>-8874 ( 8858) [003] d..4 82315.584165: sched_waking: [email protected] pid=619 prio=116 target_cpu=000
29090 crtc_commit:111-321   (  321) [002] d..1 82315.584167: clk_enable: disp_cc_mdss_axi_clk
29091<...>-8874 ( 8858) [003] d..5 82315.584178: sched_wakeup: [email protected] pid=619 prio=116 target_cpu=000
29092 crtc_commit:111-321   (  321) [002] d..1 82315.584184: clk_enable: gcc_disp_gpll0_clk_src
29093          <idle>-0     (-----) [000] .n.1 82315.584185: cpu_idle: state=4294967295 cpu_id=0
29094<...>-8874 ( 8858) [003] d..2 82315.584191: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=116 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29095          <idle>-0     (-----) [000] d..2 82315.584194: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=116
29096 [email protected]   (  619) [000] .... 82315.584199: binder_transaction_received: transaction=1568391
29097<...>-25493 ( 8943) [003] d..2 82315.584210: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29098 [email protected]   (  619) [000] ...1 82315.584216: tracing_mark_write: B|619|HIDL::IComposerClient::getActiveConfig::server
29099          <idle>-0     (-----) [003] d..1 82315.584225: cpu_idle: state=0 cpu_id=3
29100 [email protected]   (  619) [000] ...1 82315.584227: tracing_mark_write: E|619
29101 [email protected]   (  619) [000] .... 82315.584235: binder_transaction: transaction=1568392 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
29102 [email protected]   (  619) [000] .... 82315.584238: binder_transaction_alloc_buf: transaction=1568392 data_size=12 offsets_size=0
29103 [email protected]   (  619) [000] d..2 82315.584241: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
29104 [email protected]   (  619) [000] dn.3 82315.584257: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=000
29105 [email protected]   (  619) [000] d..2 82315.584263: sched_switch: [email protected] prev_pid=619 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
29106<...>-8874 ( 8858) [000] .... 82315.584269: binder_transaction_received: transaction=1568392
29107<...>-8874 ( 8858) [000] .... 82315.584317: binder_transaction: transaction=1568393 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x0 code=0x0
29108<...>-8874 ( 8858) [000] .... 82315.584320: binder_transaction_alloc_buf: transaction=1568393 data_size=52 offsets_size=8
29109<...>-8874 ( 8858) [000] d..2 82315.584389: sched_waking: comm=Binder:8943_17 pid=25493 prio=116 target_cpu=003
29110<...>-8874 ( 8858) [000] d..3 82315.584403: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=116 target_cpu=003
29111<...>-8874 ( 8858) [000] .... 82315.584407: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
29112          <idle>-0     (-----) [003] .n.1 82315.584409: cpu_idle: state=4294967295 cpu_id=3
29113          <idle>-0     (-----) [003] d..2 82315.584419: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29114<...>-25493 ( 8943) [003] .... 82315.584425: binder_transaction_received: transaction=1568393
29115<...>-8874 ( 8858) [000] d..2 82315.584448: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=116
29116 [email protected]   (  619) [000] .... 82315.584452: binder_set_priority: proc=619 thread=619 old=116 => new=97 desired=97
29117 [email protected]   (  619) [000] d..2 82315.584496: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29118          <idle>-0     (-----) [000] d..1 82315.584510: cpu_idle: state=0 cpu_id=0
29119 crtc_commit:111-321   (  321) [002] d..1 82315.584691: clk_enable: disp_cc_mdss_mdp_clk_src
29120 crtc_commit:111-321   (  321) [002] d..1 82315.584719: clk_enable: disp_cc_mdss_mdp_clk
29121 crtc_commit:111-321   (  321) [002] d..1 82315.584729: clk_enable: disp_cc_mdss_vsync_clk
29122 crtc_commit:111-321   (  321) [002] d..2 82315.584929: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29123          <idle>-0     (-----) [002] d..1 82315.584939: cpu_idle: state=0 cpu_id=2
29124          <idle>-0     (-----) [001] d.s2 82315.585126: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
29125          <idle>-0     (-----) [001] dns3 82315.585140: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
29126          <idle>-0     (-----) [001] .n.1 82315.585152: cpu_idle: state=4294967295 cpu_id=1
29127          <idle>-0     (-----) [001] d..2 82315.585159: 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
29128     rcu_preempt-7     (    7) [001] d..2 82315.585170: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
29129     rcu_preempt-7     (    7) [001] d..3 82315.585200: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
29130     rcu_preempt-7     (    7) [001] d..2 82315.585213: 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
29131         rcuop/6-61    (   61) [001] d..2 82315.585240: 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
29132          <idle>-0     (-----) [001] d..1 82315.585248: cpu_idle: state=0 cpu_id=1
29133          <idle>-0     (-----) [001] d.h2 82315.585807: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
29134<...>-25493 ( 8943) [003] d..3 82315.585810: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
29135          <idle>-0     (-----) [001] dnh3 82315.585815: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
29136          <idle>-0     (-----) [001] .n.1 82315.585821: cpu_idle: state=4294967295 cpu_id=1
29137          <idle>-0     (-----) [001] d..2 82315.585828: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
29138<...>-25493 ( 8943) [003] d..4 82315.585831: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
29139          <idle>-0     (-----) [000] .n.1 82315.585837: cpu_idle: state=4294967295 cpu_id=0
29140        DispSync-8879  ( 8858) [001] d..1 82315.585842: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
29141          <idle>-0     (-----) [000] d..2 82315.585848: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
29142        DispSync-8879  ( 8858) [001] d..2 82315.585860: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
29143          <idle>-0     (-----) [002] .n.1 82315.585865: cpu_idle: state=4294967295 cpu_id=2
29144          <idle>-0     (-----) [002] d..2 82315.585873: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
29145        DispSync-8879  ( 8858) [001] d..2 82315.585883: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29146          <idle>-0     (-----) [001] d..1 82315.585891: cpu_idle: state=0 cpu_id=1
29147<...>-9039 ( 8943) [000] d..2 82315.585901: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29148   sfEventThread-8882  ( 8858) [002] d..3 82315.585909: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
29149          <idle>-0     (-----) [000] d..1 82315.585912: cpu_idle: state=0 cpu_id=0
29150   sfEventThread-8882  ( 8858) [002] d..4 82315.585932: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
29151          <idle>-0     (-----) [001] .n.1 82315.585937: cpu_idle: state=4294967295 cpu_id=1
29152          <idle>-0     (-----) [001] d..2 82315.585944: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
29153   sfEventThread-8882  ( 8858) [002] d..3 82315.585947: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
29154   sfEventThread-8882  ( 8858) [002] d..2 82315.585981: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29155          <idle>-0     (-----) [002] d..1 82315.585992: cpu_idle: state=0 cpu_id=2
29156<...>-25493 ( 8943) [003] d..3 82315.586003: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=001
29157<...>-25493 ( 8943) [003] d..4 82315.586030: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
29158          <idle>-0     (-----) [000] .n.1 82315.586035: cpu_idle: state=4294967295 cpu_id=0
29159          <idle>-0     (-----) [000] d..2 82315.586044: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
29160<...>-8961 ( 8943) [000] d..2 82315.586104: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29161          <idle>-0     (-----) [000] d..1 82315.586115: cpu_idle: state=0 cpu_id=0
29162<...>-25493 ( 8943) [003] d..2 82315.586181: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
29163<...>-25493 ( 8943) [003] d..3 82315.586197: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
29164  surfaceflinger-8858  ( 8858) [001] d..1 82315.586283: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
29165  surfaceflinger-8858  ( 8858) [001] d..2 82315.586298: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
29166          <idle>-0     (-----) [002] .n.1 82315.586304: cpu_idle: state=4294967295 cpu_id=2
29167          <idle>-0     (-----) [002] d..2 82315.586311: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
29168<...>-25493 ( 8943) [003] .... 82315.586334: binder_transaction: transaction=1568396 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
29169<...>-25493 ( 8943) [003] .... 82315.586338: binder_transaction_alloc_buf: transaction=1568396 data_size=136 offsets_size=8
29170<...>-25493 ( 8943) [003] ...2 82315.586344: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
29171<...>-25493 ( 8943) [003] d..4 82315.586347: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=000
29172   sfEventThread-8882  ( 8858) [002] d..2 82315.586349: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
29173<...>-25493 ( 8943) [003] dn.5 82315.586364: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
29174<...>-25493 ( 8943) [003] d..2 82315.586372: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
29175<...>-8874 ( 8858) [003] .... 82315.586379: binder_transaction_received: transaction=1568396
29176<...>-581 ( 571) [002] d..2 82315.586430: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29177<...>-25493 ( 8943) [002] d..2 82315.586450: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29178          <idle>-0     (-----) [002] d..1 82315.586462: cpu_idle: state=0 cpu_id=2
29179<...>-8874 ( 8858) [003] .... 82315.586587: binder_transaction: transaction=1568397 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x0 code=0x0
29180<...>-8874 ( 8858) [003] .... 82315.586590: binder_transaction_alloc_buf: transaction=1568397 data_size=52 offsets_size=16
29181          <idle>-0     (-----) [004] dnh2 82315.586652: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
29182          <idle>-0     (-----) [004] .n.1 82315.586656: cpu_idle: state=4294967295 cpu_id=4
29183          <idle>-0     (-----) [004] d..2 82315.586662: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
29184<...>-8874 ( 8858) [003] d..2 82315.586702: sched_waking: comm=Binder:8943_17 pid=25493 prio=116 target_cpu=002
29185<...>-8874 ( 8858) [003] d..3 82315.586721: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=116 target_cpu=003
29186<...>-8874 ( 8858) [003] .... 82315.586725: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
29187<...>-9005 ( 8943) [004] d..2 82315.586735: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29188          <idle>-0     (-----) [004] d..1 82315.586741: cpu_idle: state=2 cpu_id=4
29189<...>-8874 ( 8858) [003] d..2 82315.586769: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29190<...>-25493 ( 8943) [003] .... 82315.586775: binder_transaction_received: transaction=1568397
29191<...>-25493 ( 8943) [003] .... 82315.586815: binder_transaction: transaction=1568402 dest_node=1568400 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
29192<...>-25493 ( 8943) [003] .... 82315.586819: binder_transaction_alloc_buf: transaction=1568402 data_size=80 offsets_size=0
29193<...>-25493 ( 8943) [003] ...2 82315.586822: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
29194<...>-25493 ( 8943) [003] d..4 82315.586824: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
29195<...>-25493 ( 8943) [003] dn.5 82315.586834: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
29196<...>-25493 ( 8943) [003] d..2 82315.586841: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
29197<...>-8874 ( 8858) [003] .... 82315.586845: binder_transaction_received: transaction=1568402
29198<...>-8874 ( 8858) [003] .... 82315.586861: binder_transaction: transaction=1568403 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x8 code=0x0
29199<...>-8874 ( 8858) [003] .... 82315.586863: binder_transaction_alloc_buf: transaction=1568403 data_size=4 offsets_size=0
29200<...>-8874 ( 8858) [003] .... 82315.586866: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
29201<...>-8874 ( 8858) [003] d..2 82315.586895: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29202<...>-25493 ( 8943) [003] .... 82315.586900: binder_transaction_received: transaction=1568403
29203  surfaceflinger-8858  ( 8858) [001] ...1 82315.587091: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
29204<...>-25493 ( 8943) [003] .... 82315.587093: binder_transaction: transaction=1568404 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
29205  surfaceflinger-8858  ( 8858) [001] ...1 82315.587096: tracing_mark_write: E|8858
29206<...>-25493 ( 8943) [003] .... 82315.587097: binder_transaction_alloc_buf: transaction=1568404 data_size=76 offsets_size=0
29207<...>-25493 ( 8943) [003] ...2 82315.587101: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
29208<...>-25493 ( 8943) [003] d..4 82315.587103: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
29209<...>-25493 ( 8943) [003] dn.5 82315.587114: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
29210<...>-25493 ( 8943) [003] d..2 82315.587122: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
29211<...>-8874 ( 8858) [003] .... 82315.587128: binder_transaction_received: transaction=1568404
29212  surfaceflinger-8858  ( 8858) [001] .... 82315.587142: binder_transaction: transaction=1568405 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
29213  surfaceflinger-8858  ( 8858) [001] .... 82315.587145: binder_transaction_alloc_buf: transaction=1568405 data_size=540 offsets_size=96
29214<...>-8874 ( 8858) [003] .... 82315.587161: binder_transaction: transaction=1568406 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x0 code=0x0
29215<...>-8874 ( 8858) [003] .... 82315.587164: binder_transaction_alloc_buf: transaction=1568406 data_size=0 offsets_size=0
29216<...>-8874 ( 8858) [003] .... 82315.587166: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
29217<...>-8874 ( 8858) [003] d..2 82315.587198: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29218<...>-25493 ( 8943) [003] .... 82315.587204: binder_transaction_received: transaction=1568406
29219  surfaceflinger-8858  ( 8858) [001] ...2 82315.587214: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
29220  surfaceflinger-8858  ( 8858) [001] d..4 82315.587218: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
29221  surfaceflinger-8858  ( 8858) [001] d..5 82315.587232: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
29222          <idle>-0     (-----) [000] .n.1 82315.587237: cpu_idle: state=4294967295 cpu_id=0
29223          <idle>-0     (-----) [000] d..2 82315.587244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
29224 [email protected]   (  619) [000] .... 82315.587251: binder_transaction_received: transaction=1568405
29225  surfaceflinger-8858  ( 8858) [001] d..2 82315.587255: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29226          <idle>-0     (-----) [001] d..1 82315.587266: cpu_idle: state=0 cpu_id=1
29227 [email protected]   (  619) [000] ...1 82315.587278: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
29228<...>-25493 ( 8943) [003] d..2 82315.587298: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
29229<...>-25493 ( 8943) [003] d..3 82315.587315: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
29230<...>-25493 ( 8943) [003] d..1 82315.587337: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
29231<...>-25493 ( 8943) [003] d..2 82315.587372: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=logd.writer next_pid=581 next_prio=130
29232 [email protected]   (  619) [000] ...1 82315.587399: tracing_mark_write: B|619|HWCSession::PresentDisplay::
29233<...>-581 ( 571) [003] d..2 82315.587432: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
29234<...>-25493 ( 8943) [003] d..1 82315.587579: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=002
29235<...>-25493 ( 8943) [003] d..2 82315.587613: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=000
29236          <idle>-0     (-----) [002] ...1 82315.587798: cpu_idle: state=4294967295 cpu_id=2
29237          <idle>-0     (-----) [002] d..1 82315.587802: cpu_idle: state=2 cpu_id=2
29238 [email protected]   (  619) [000] ...1 82315.587910: tracing_mark_write: B|619|HWDeviceDRM::Validate::
29239          <idle>-0     (-----) [004] dnh2 82315.588037: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
29240          <idle>-0     (-----) [004] .n.1 82315.588040: cpu_idle: state=4294967295 cpu_id=4
29241          <idle>-0     (-----) [004] d..2 82315.588046: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
29242<...>-9005 ( 8943) [004] d..2 82315.588060: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29243          <idle>-0     (-----) [004] d..1 82315.588063: cpu_idle: state=2 cpu_id=4
29244 [email protected]   (  619) [000] ...1 82315.588432: tracing_mark_write: E|619
29245<...>-25493 ( 8943) [003] d.s2 82315.588476: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
29246<...>-25493 ( 8943) [003] dns3 82315.588507: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
29247<...>-25493 ( 8943) [003] d..2 82315.588522: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
29248<...>-1054 ( 1054) [003] .... 82315.588557: clk_set_rate: l3_cluster1_vote_clk 300000000
29249<...>-1054 ( 1054) [003] .... 82315.588563: clk_set_rate: l3_clk 844800000
29250 [email protected]   (  619) [000] ...1 82315.588590: tracing_mark_write: B|619|HWDeviceDRM::Commit::
29251 [email protected]   (  619) [000] ...1 82315.588618: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
29252<...>-1054 ( 1054) [003] d..2 82315.588774: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29253          <idle>-0     (-----) [001] d.s3 82315.588814: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
29254          <idle>-0     (-----) [001] d.s4 82315.588833: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
29255          <idle>-0     (-----) [001] dns4 82315.588837: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
29256          <idle>-0     (-----) [001] .n.1 82315.588843: cpu_idle: state=4294967295 cpu_id=1
29257          <idle>-0     (-----) [001] d..2 82315.588854: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
29258<...>-25493 ( 8943) [003] d..3 82315.588885: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
29259<...>-25493 ( 8943) [003] d..4 82315.588910: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
29260<...>-25493 ( 8943) [003] d..1 82315.588936: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
29261<...>-1054 ( 1054) [001] d..2 82315.588959: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29262          <idle>-0     (-----) [001] d..1 82315.588966: cpu_idle: state=0 cpu_id=1
29263 [email protected]   (  619) [000] d..2 82315.588979: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29264 [email protected]   (  619) [000] d..3 82315.589002: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
29265          <idle>-0     (-----) [001] .n.1 82315.589007: cpu_idle: state=4294967295 cpu_id=1
29266          <idle>-0     (-----) [001] d..2 82315.589013: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
29267          <idle>-0     (-----) [002] .n.1 82315.589025: cpu_idle: state=4294967295 cpu_id=2
29268          <idle>-0     (-----) [002] d..2 82315.589041: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
29269<...>-25493 ( 8943) [003] d..2 82315.589071: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
29270<...>-25493 ( 8943) [003] d..3 82315.589083: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
29271<...>-9039 ( 8943) [002] d..2 82315.589090: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29272 [email protected]   (  619) [000] ...1 82315.589091: tracing_mark_write: E|619
29273 [email protected]   (  619) [000] ...1 82315.589095: tracing_mark_write: E|619
29274          <idle>-0     (-----) [002] d..1 82315.589102: cpu_idle: state=0 cpu_id=2
29275 [email protected]   (  619) [000] ...1 82315.589140: tracing_mark_write: E|619
29276 crtc_commit:111-321   (  321) [001] d..2 82315.589144: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
29277<...>-581 ( 571) [001] d.s4 82315.589172: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
29278 [email protected]   (  619) [000] ...1 82315.589184: tracing_mark_write: E|619
29279<...>-581 ( 571) [001] d.s5 82315.589190: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29280 [email protected]   (  619) [000] .... 82315.589195: binder_transaction: transaction=1568407 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
29281          <idle>-0     (-----) [002] .n.1 82315.589196: cpu_idle: state=4294967295 cpu_id=2
29282 [email protected]   (  619) [000] .... 82315.589198: binder_transaction_alloc_buf: transaction=1568407 data_size=576 offsets_size=112
29283          <idle>-0     (-----) [002] d..2 82315.589203: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
29284 [email protected]   (  619) [000] d..2 82315.589214: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
29285 [email protected]   (  619) [000] d..3 82315.589235: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
29286 [email protected]   (  619) [000] .... 82315.589239: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
29287<...>-25493 ( 8943) [003] d..2 82315.589249: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
29288  surfaceflinger-8858  ( 8858) [003] .... 82315.589258: binder_transaction_received: transaction=1568407
29289 [email protected]   (  619) [000] d..2 82315.589294: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
29290<...>-581 ( 571) [001] d..2 82315.589295: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
29291<...>-25493 ( 8943) [001] d..2 82315.589323: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
29292<...>-25493 ( 8943) [001] d..3 82315.589333: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
29293 LazyTaskWriterT-9080  ( 8943) [000] d..2 82315.589366: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29294          <idle>-0     (-----) [000] d..1 82315.589380: cpu_idle: state=0 cpu_id=0
29295<...>-25493 ( 8943) [001] ...1 82315.589429: tracing_mark_write: B|8943|HIDL::IPower::powerHintAsync::client
29296<...>-25493 ( 8943) [001] ...1 82315.589436: tracing_mark_write: E|8943
29297<...>-25493 ( 8943) [001] .... 82315.589507: binder_transaction: transaction=1568408 dest_node=735 dest_proc=791 dest_thread=0 reply=0 flags=0x11 code=0x6
29298<...>-25493 ( 8943) [001] .... 82315.589512: binder_transaction_alloc_buf: transaction=1568408 data_size=44 offsets_size=0
29299<...>-25493 ( 8943) [001] d..4 82315.589518: sched_waking: [email protected] pid=791 prio=120 target_cpu=001
29300<...>-25493 ( 8943) [001] d..5 82315.589554: sched_wakeup: [email protected] pid=791 prio=120 target_cpu=003
29301          <idle>-0     (-----) [004] dnh2 82315.589631: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
29302<...>-25493 ( 8943) [001] d..2 82315.589631: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=R+ ==> next_comm=logd.writer next_pid=581 next_prio=130
29303          <idle>-0     (-----) [004] .n.1 82315.589635: cpu_idle: state=4294967295 cpu_id=4
29304          <idle>-0     (-----) [004] d..2 82315.589640: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
29305<...>-9005 ( 8943) [004] d..2 82315.589655: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29306          <idle>-0     (-----) [004] d..1 82315.589659: cpu_idle: state=2 cpu_id=4
29307<...>-581 ( 571) [001] d..2 82315.589685: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29308  surfaceflinger-8858  ( 8858) [003] d..2 82315.589705: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> [email protected] next_pid=791 next_prio=120
29309<...>-791 ( 791) [003] .... 82315.589714: binder_transaction_received: transaction=1568408
29310<...>-25493 ( 8943) [001] d..2 82315.589755: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
29311<...>-791 ( 791) [003] ...1 82315.589758: tracing_mark_write: B|791|HIDL::IPower::powerHintAsync::server
29312<...>-25493 ( 8943) [001] d..3 82315.589766: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
29313<...>-791 ( 791) [003] ...2 82315.589969: tracing_mark_write: B|791|launch
29314<...>-791 ( 791) [003] ...2 82315.589975: tracing_mark_write: C|791|launch_lock|1
29315<...>-791 ( 791) [003] d..1 82315.590017: sched_waking: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=006
29316<...>-791 ( 791) [003] d..2 82315.590048: sched_wakeup: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=000
29317          <idle>-0     (-----) [000] .n.1 82315.590054: cpu_idle: state=4294967295 cpu_id=0
29318          <idle>-0     (-----) [000] d..2 82315.590095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NodeLooperThrea next_pid=4447 next_prio=100
29319<...>-4447 ( 791) [000] .... 82315.590193: cpu_frequency_limits: min=1766400 max=1766400 cpu_id=0
29320<...>-791 ( 791) [003] ...1 82315.590197: tracing_mark_write: E|791
29321<...>-791 ( 791) [003] ...1 82315.590202: tracing_mark_write: E|791
29322<...>-4447 ( 791) [000] .... 82315.590222: clk_set_rate: pwrcl_clk 1766400000
29323<...>-791 ( 791) [003] d..2 82315.590243: sched_switch: [email protected] prev_pid=791 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29324          <idle>-0     (-----) [003] d..1 82315.590259: cpu_idle: state=0 cpu_id=3
29325<...>-4447 ( 791) [000] d..2 82315.590302: sched_switch: prev_comm=NodeLooperThrea prev_pid=4447 prev_prio=100 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
29326<...>-25493 ( 8943) [001] d.s2 82315.590306: sched_waking: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=000
29327<...>-25493 ( 8943) [001] d.s3 82315.590317: sched_blocked_reason: pid=4447 iowait=0 caller=wait_for_tx_done+0x34/0x120
29328          <idle>-0     (-----) [000] d..1 82315.590317: cpu_idle: state=0 cpu_id=0
29329<...>-25493 ( 8943) [001] d.s3 82315.590325: sched_wakeup: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=000
29330          <idle>-0     (-----) [000] .n.1 82315.590331: cpu_idle: state=4294967295 cpu_id=0
29331          <idle>-0     (-----) [000] d..2 82315.590340: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NodeLooperThrea next_pid=4447 next_prio=100
29332<...>-4447 ( 791) [000] .... 82315.590352: clk_set_rate: cpu3_pwrcl_clk 1228800000
29333<...>-4447 ( 791) [000] .... 82315.590360: clk_set_rate: cpu2_pwrcl_clk 1228800000
29334<...>-4447 ( 791) [000] .... 82315.590367: clk_set_rate: cpu1_pwrcl_clk 1228800000
29335<...>-4447 ( 791) [000] .... 82315.590373: clk_set_rate: cpu0_pwrcl_clk 1766400000
29336<...>-4447 ( 791) [000] .... 82315.590382: cpu_frequency: state=1766400 cpu_id=0
29337<...>-4447 ( 791) [000] .... 82315.590404: cpu_frequency: state=1766400 cpu_id=1
29338<...>-4447 ( 791) [000] .... 82315.590408: cpu_frequency: state=1766400 cpu_id=2
29339<...>-4447 ( 791) [000] .... 82315.590411: cpu_frequency: state=1766400 cpu_id=3
29340<...>-4447 ( 791) [000] .... 82315.590478: cpu_frequency_limits: min=2803200 max=2803200 cpu_id=4
29341 crtc_commit:111-321   (  321) [002] d..1 82315.590479: clk_enable: disp_cc_mdss_esc0_clk_src
29342 crtc_commit:111-321   (  321) [002] d..1 82315.590481: clk_enable: disp_cc_mdss_esc0_clk
29343<...>-25493 ( 8943) [001] d..3 82315.590614: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
29344<...>-25493 ( 8943) [001] d..4 82315.590632: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=003
29345          <idle>-0     (-----) [003] .n.1 82315.590638: cpu_idle: state=4294967295 cpu_id=3
29346<...>-25493 ( 8943) [001] d..1 82315.590641: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
29347          <idle>-0     (-----) [003] d..2 82315.590645: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
29348<...>-25493 ( 8943) [001] d..2 82315.590673: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=logd.writer next_pid=581 next_prio=130
29349<...>-9039 ( 8943) [003] d..2 82315.590680: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29350          <idle>-0     (-----) [003] d..1 82315.590687: cpu_idle: state=0 cpu_id=3
29351<...>-581 ( 571) [001] d..2 82315.590736: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
29352<...>-4447 ( 791) [000] d..2 82315.590844: sched_switch: prev_comm=NodeLooperThrea prev_pid=4447 prev_prio=100 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
29353 crtc_commit:111-321   (  321) [002] d..1 82315.590845: clk_enable: dsi0pll_vco_clk
29354 crtc_commit:111-321   (  321) [002] d..1 82315.590847: clk_enable: dsi0pll_pll_out_div
29355 crtc_commit:111-321   (  321) [002] d..1 82315.590848: clk_enable: dsi0pll_bitclk_src
29356 crtc_commit:111-321   (  321) [002] d..1 82315.590848: clk_enable: dsi0pll_byteclk_src
29357 crtc_commit:111-321   (  321) [002] d..1 82315.590849: clk_enable: dsi0_phy_pll_out_byteclk
29358 crtc_commit:111-321   (  321) [002] d..1 82315.590850: clk_enable: disp_cc_mdss_byte0_clk_src
29359 crtc_commit:111-321   (  321) [002] d..1 82315.590851: clk_enable: disp_cc_mdss_byte0_clk
29360 crtc_commit:111-321   (  321) [002] d..1 82315.590856: clk_enable: dsi0pll_post_bit_div
29361          <idle>-0     (-----) [000] d..1 82315.590857: cpu_idle: state=0 cpu_id=0
29362 crtc_commit:111-321   (  321) [002] d..1 82315.590857: clk_enable: dsi0pll_pclk_src_mux
29363 crtc_commit:111-321   (  321) [002] d..1 82315.590858: clk_enable: dsi0pll_pclk_src
29364 crtc_commit:111-321   (  321) [002] d..1 82315.590858: clk_enable: dsi0_phy_pll_out_dsiclk
29365 crtc_commit:111-321   (  321) [002] d..1 82315.590859: clk_enable: disp_cc_mdss_pclk0_clk_src
29366 crtc_commit:111-321   (  321) [002] d..1 82315.590860: clk_enable: disp_cc_mdss_pclk0_clk
29367 crtc_commit:111-321   (  321) [002] d..1 82315.590864: clk_enable: disp_cc_mdss_byte0_div_clk_src
29368 crtc_commit:111-321   (  321) [002] d..1 82315.590865: clk_enable: disp_cc_mdss_byte0_intf_clk
29369<...>-25493 ( 8943) [001] d.s2 82315.590884: sched_waking: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=000
29370<...>-25493 ( 8943) [001] d.s3 82315.590892: sched_blocked_reason: pid=4447 iowait=0 caller=wait_for_tx_done+0x34/0x120
29371<...>-25493 ( 8943) [001] d.s3 82315.590898: sched_wakeup: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=000
29372          <idle>-0     (-----) [000] .n.1 82315.590905: cpu_idle: state=4294967295 cpu_id=0
29373          <idle>-0     (-----) [000] d..2 82315.590915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NodeLooperThrea next_pid=4447 next_prio=100
29374<...>-25493 ( 8943) [001] .... 82315.591027: binder_transaction: transaction=1568409 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
29375<...>-25493 ( 8943) [001] .... 82315.591030: binder_transaction_alloc_buf: transaction=1568409 data_size=252 offsets_size=8
29376<...>-25493 ( 8943) [001] ...2 82315.591038: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
29377<...>-25493 ( 8943) [001] d..4 82315.591040: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
29378<...>-25493 ( 8943) [001] dn.5 82315.591055: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=001
29379<...>-25493 ( 8943) [001] d..2 82315.591060: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
29380<...>-4447 ( 791) [000] d..2 82315.591066: sched_switch: prev_comm=NodeLooperThrea prev_pid=4447 prev_prio=100 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
29381          <idle>-0     (-----) [000] d..1 82315.591076: cpu_idle: state=0 cpu_id=0
29382<...>-8874 ( 8858) [001] d.s4 82315.591085: sched_waking: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=000
29383<...>-8874 ( 8858) [001] d.s5 82315.591092: sched_blocked_reason: pid=4447 iowait=0 caller=wait_for_tx_done+0x34/0x120
29384<...>-8874 ( 8858) [001] d.s5 82315.591098: sched_wakeup: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=000
29385<...>-8874 ( 8858) [001] .... 82315.591103: binder_transaction_received: transaction=1568409
29386          <idle>-0     (-----) [000] .n.1 82315.591103: cpu_idle: state=4294967295 cpu_id=0
29387          <idle>-0     (-----) [000] d..2 82315.591111: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NodeLooperThrea next_pid=4447 next_prio=100
29388 crtc_commit:111-321   (  321) [002] d..3 82315.591114: sched_pi_setprio: comm=NodeLooperThrea pid=4447 oldprio=100 newprio=83
29389<...>-4447 ( 791) [000] d..1 82315.591127: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29390 crtc_commit:111-321   (  321) [002] d..2 82315.591152: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29391<...>-4447 ( 791) [000] d..2 82315.591166: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29392<...>-25493 ( 8943) [002] d..2 82315.591171: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=S ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
29393<...>-4447 ( 791) [000] d..2 82315.591173: sched_pi_setprio: comm=NodeLooperThrea pid=4447 oldprio=83 newprio=100
29394 crtc_commit:111-321   (  321) [002] d..2 82315.591271: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
29395<...>-8874 ( 8858) [001] d.s2 82315.591291: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29396          <idle>-0     (-----) [002] d..1 82315.591298: cpu_idle: state=0 cpu_id=2
29397<...>-8874 ( 8858) [001] d.s3 82315.591306: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29398          <idle>-0     (-----) [002] .n.1 82315.591315: cpu_idle: state=4294967295 cpu_id=2
29399<...>-4447 ( 791) [000] .... 82315.591318: clk_set_rate: l3_cluster0_vote_clk 1478400000
29400          <idle>-0     (-----) [002] d..2 82315.591320: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
29401<...>-4447 ( 791) [000] .... 82315.591322: clk_set_rate: l3_clk 1478400000
29402          <idle>-0     (-----) [004] dnh2 82315.591345: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
29403          <idle>-0     (-----) [004] .n.1 82315.591349: cpu_idle: state=4294967295 cpu_id=4
29404          <idle>-0     (-----) [004] d..2 82315.591354: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
29405 crtc_commit:111-321   (  321) [002] d..2 82315.591356: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
29406          <idle>-0     (-----) [002] d..1 82315.591360: cpu_idle: state=0 cpu_id=2
29407<...>-8874 ( 8858) [001] .... 82315.591361: binder_transaction: transaction=1568410 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x0 code=0x0
29408<...>-8874 ( 8858) [001] .... 82315.591364: binder_transaction_alloc_buf: transaction=1568410 data_size=52 offsets_size=16
29409<...>-9005 ( 8943) [004] d..2 82315.591369: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29410          <idle>-0     (-----) [004] d..1 82315.591373: cpu_idle: state=2 cpu_id=4
29411<...>-4447 ( 791) [000] .... 82315.591388: clk_set_rate: l3_cluster1_vote_clk 1478400000
29412          <idle>-0     (-----) [002] ...1 82315.591457: cpu_idle: state=4294967295 cpu_id=2
29413          <idle>-0     (-----) [002] d..1 82315.591459: cpu_idle: state=0 cpu_id=2
29414          <idle>-0     (-----) [003] ...1 82315.591461: cpu_idle: state=4294967295 cpu_id=3
29415          <idle>-0     (-----) [003] d..1 82315.591463: cpu_idle: state=0 cpu_id=3
29416<...>-8874 ( 8858) [001] d..2 82315.591497: sched_waking: comm=Binder:8943_17 pid=25493 prio=116 target_cpu=002
29417<...>-8874 ( 8858) [001] d..3 82315.591510: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=116 target_cpu=001
29418<...>-8874 ( 8858) [001] .... 82315.591512: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
29419<...>-8874 ( 8858) [001] d..2 82315.591545: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29420<...>-25493 ( 8943) [001] .... 82315.591549: binder_transaction_received: transaction=1568410
29421<...>-4447 ( 791) [000] d..2 82315.591550: sched_switch: prev_comm=NodeLooperThrea prev_pid=4447 prev_prio=100 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29422          <idle>-0     (-----) [000] d..1 82315.591560: cpu_idle: state=0 cpu_id=0
29423<...>-25493 ( 8943) [001] .... 82315.591580: binder_transaction: transaction=1568415 dest_node=1568413 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
29424<...>-25493 ( 8943) [001] .... 82315.591583: binder_transaction_alloc_buf: transaction=1568415 data_size=80 offsets_size=0
29425<...>-25493 ( 8943) [001] ...2 82315.591585: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
29426<...>-25493 ( 8943) [001] d..4 82315.591586: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=001
29427<...>-25493 ( 8943) [001] dn.5 82315.591594: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=001
29428<...>-25493 ( 8943) [001] d..2 82315.591599: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
29429<...>-8874 ( 8858) [001] .... 82315.591602: binder_transaction_received: transaction=1568415
29430<...>-8874 ( 8858) [001] .... 82315.591614: binder_transaction: transaction=1568416 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x8 code=0x0
29431<...>-8874 ( 8858) [001] .... 82315.591616: binder_transaction_alloc_buf: transaction=1568416 data_size=4 offsets_size=0
29432<...>-8874 ( 8858) [001] .... 82315.591618: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
29433<...>-8874 ( 8858) [001] d..2 82315.591638: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29434<...>-25493 ( 8943) [001] .... 82315.591642: binder_transaction_received: transaction=1568416
29435          <idle>-0     (-----) [005] ...1 82315.591658: cpu_idle: state=4294967295 cpu_id=5
29436          <idle>-0     (-----) [005] d..1 82315.591663: cpu_idle: state=0 cpu_id=5
29437          <idle>-0     (-----) [004] ...1 82315.591677: cpu_idle: state=4294967295 cpu_id=4
29438          <idle>-0     (-----) [004] d..1 82315.591679: cpu_idle: state=0 cpu_id=4
29439          <idle>-0     (-----) [007] ...1 82315.591710: cpu_idle: state=4294967295 cpu_id=7
29440          <idle>-0     (-----) [007] d..1 82315.591715: cpu_idle: state=0 cpu_id=7
29441          <idle>-0     (-----) [006] ...1 82315.591738: cpu_idle: state=4294967295 cpu_id=6
29442          <idle>-0     (-----) [006] d..1 82315.591743: cpu_idle: state=0 cpu_id=6
29443<...>-25493 ( 8943) [001] d..1 82315.591752: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
29444          <idle>-0     (-----) [004] dnh2 82315.591767: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
29445          <idle>-0     (-----) [004] .n.1 82315.591770: cpu_idle: state=4294967295 cpu_id=4
29446          <idle>-0     (-----) [004] d..2 82315.591780: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
29447          <idle>-0     (-----) [002] d.s3 82315.591791: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
29448<...>-25493 ( 8943) [001] d.h2 82315.591811: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
29449<...>-25493 ( 8943) [001] dnh3 82315.591819: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
29450<...>-25493 ( 8943) [001] dns1 82315.591826: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
29451<...>-9005 ( 8943) [004] d.h3 82315.591829: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
29452          <idle>-0     (-----) [007] dnh2 82315.591859: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=007
29453<...>-9005 ( 8943) [004] d.h4 82315.591862: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
29454          <idle>-0     (-----) [002] d.H4 82315.591863: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
29455          <idle>-0     (-----) [007] .n.1 82315.591865: cpu_idle: state=4294967295 cpu_id=7
29456          <idle>-0     (-----) [007] d..2 82315.591871: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
29457          <idle>-0     (-----) [002] d.H5 82315.591873: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
29458          <idle>-0     (-----) [005] dnh2 82315.591875: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
29459          <idle>-0     (-----) [003] .n.1 82315.591878: cpu_idle: state=4294967295 cpu_id=3
29460          <idle>-0     (-----) [006] .n.1 82315.591887: cpu_idle: state=4294967295 cpu_id=6
29461          <idle>-0     (-----) [005] .n.1 82315.591903: cpu_idle: state=4294967295 cpu_id=5
29462<...>-9005 ( 8943) [004] .... 82315.591903: binder_transaction: transaction=1568417 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
29463          <idle>-0     (-----) [006] d..2 82315.591904: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
29464<...>-9005 ( 8943) [004] .... 82315.591905: binder_transaction_alloc_buf: transaction=1568417 data_size=80 offsets_size=0
29465          <idle>-0     (-----) [003] d..2 82315.591906: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
29466<...>-9005 ( 8943) [004] d..4 82315.591906: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
29467          <idle>-0     (-----) [000] ...1 82315.591909: cpu_idle: state=4294967295 cpu_id=0
29468         sugov:4-577   (  577) [007] d..2 82315.591909: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29469          <idle>-0     (-----) [005] d..2 82315.591910: 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
29470          <idle>-0     (-----) [000] d..1 82315.591912: cpu_idle: state=0 cpu_id=0
29471          <idle>-0     (-----) [002] ...1 82315.591912: cpu_idle: state=4294967295 cpu_id=2
29472          <idle>-0     (-----) [007] d..1 82315.591913: cpu_idle: state=0 cpu_id=7
29473<...>-25493 ( 8943) [001] d..2 82315.591913: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=116 prev_state=R ==> next_comm=migration/1 next_pid=17 next_prio=0
29474          <idle>-0     (-----) [002] d..1 82315.591916: cpu_idle: state=0 cpu_id=2
29475  crtc_event:111-322   (  322) [006] d..2 82315.591917: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29476          <idle>-0     (-----) [006] d..1 82315.591920: cpu_idle: state=0 cpu_id=6
29477     rcu_preempt-7     (    7) [005] d..2 82315.591922: 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
29478<...>-9005 ( 8943) [004] d..5 82315.591925: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
29479          <idle>-0     (-----) [005] d..1 82315.591926: cpu_idle: state=0 cpu_id=5
29480         sugov:0-576   (  576) [003] d..2 82315.591929: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29481          <idle>-0     (-----) [007] .n.1 82315.591930: cpu_idle: state=4294967295 cpu_id=7
29482          <idle>-0     (-----) [007] d..2 82315.591933: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
29483          <idle>-0     (-----) [003] d..1 82315.591934: cpu_idle: state=0 cpu_id=3
29484          <idle>-0     (-----) [006] .n.1 82315.591941: cpu_idle: state=4294967295 cpu_id=6
29485          <idle>-0     (-----) [006] d..2 82315.591952: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=116
29486<...>-8874 ( 8858) [007] .... 82315.591952: binder_transaction_received: transaction=1568417
29487<...>-8874 ( 8858) [007] d..1 82315.591964: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
29488          <idle>-0     (-----) [002] dnh2 82315.591984: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
29489     migration/1-17    (   17) [001] d..2 82315.591985: 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
29490          <idle>-0     (-----) [002] .n.1 82315.591988: cpu_idle: state=4294967295 cpu_id=2
29491<...>-8874 ( 8858) [007] d..2 82315.591988: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29492          <idle>-0     (-----) [007] d..1 82315.591992: cpu_idle: state=0 cpu_id=7
29493          <idle>-0     (-----) [002] d..2 82315.591993: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
29494          <idle>-0     (-----) [001] d..1 82315.591994: cpu_idle: state=0 cpu_id=1
29495<...>-25493 ( 8943) [006] d..2 82315.592002: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29496          <idle>-0     (-----) [006] d..1 82315.592006: cpu_idle: state=0 cpu_id=6
29497   sfEventThread-8882  ( 8858) [002] d..2 82315.592023: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29498          <idle>-0     (-----) [002] d..1 82315.592030: cpu_idle: state=0 cpu_id=2
29499<...>-9005 ( 8943) [004] .... 82315.592234: binder_transaction: transaction=1568418 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
29500<...>-9005 ( 8943) [004] .... 82315.592236: binder_transaction_alloc_buf: transaction=1568418 data_size=3116 offsets_size=160
29501<...>-9005 ( 8943) [004] ...2 82315.592246: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
29502<...>-9005 ( 8943) [004] d..4 82315.592247: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=007
29503<...>-9005 ( 8943) [004] d..5 82315.592255: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=004
29504<...>-9005 ( 8943) [004] d..2 82315.592259: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
29505<...>-8874 ( 8858) [004] .... 82315.592263: binder_transaction_received: transaction=1568418
29506<...>-8874 ( 8858) [004] .... 82315.592359: binder_transaction: transaction=1568419 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
29507<...>-8874 ( 8858) [004] .... 82315.592361: binder_transaction_alloc_buf: transaction=1568419 data_size=0 offsets_size=0
29508<...>-8874 ( 8858) [004] d..2 82315.592362: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
29509<...>-8874 ( 8858) [004] dn.3 82315.592366: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
29510<...>-8874 ( 8858) [004] d..2 82315.592368: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=116 prev_state=R+ ==> next_comm=android.anim next_pid=9005 next_prio=116
29511<...>-9005 ( 8943) [004] .... 82315.592371: binder_transaction_received: transaction=1568419
29512          <idle>-0     (-----) [000] d.h5 82315.592389: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
29513<...>-9005 ( 8943) [004] d..1 82315.592393: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
29514<...>-9005 ( 8943) [004] d..2 82315.592400: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
29515          <idle>-0     (-----) [006] .n.1 82315.592405: cpu_idle: state=4294967295 cpu_id=6
29516          <idle>-0     (-----) [006] d..2 82315.592408: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
29517          <idle>-0     (-----) [005] dnh2 82315.592410: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
29518          <idle>-0     (-----) [005] .n.1 82315.592413: cpu_idle: state=4294967295 cpu_id=5
29519          <idle>-0     (-----) [005] d..2 82315.592415: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
29520          <idle>-0     (-----) [000] ...1 82315.592444: cpu_idle: state=4294967295 cpu_id=0
29521<...>-9005 ( 8943) [004] d..2 82315.592444: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
29522 crtc_commit:111-321   (  321) [005] d..2 82315.592445: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29523<...>-8874 ( 8858) [004] .... 82315.592447: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
29524          <idle>-0     (-----) [005] d..1 82315.592447: cpu_idle: state=0 cpu_id=5
29525          <idle>-0     (-----) [000] d..1 82315.592447: cpu_idle: state=0 cpu_id=0
29526<...>-25493 ( 8943) [006] d..1 82315.592462: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=000
29527<...>-8874 ( 8858) [004] d..2 82315.592470: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29528          <idle>-0     (-----) [004] d..1 82315.592476: cpu_idle: state=0 cpu_id=4
29529<...>-25493 ( 8943) [006] d..2 82315.592477: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=007
29530          <idle>-0     (-----) [007] .n.1 82315.592482: cpu_idle: state=4294967295 cpu_id=7
29531          <idle>-0     (-----) [007] d..2 82315.592496: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
29532 LazyTaskWriterT-9080  ( 8943) [007] d..2 82315.592517: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29533          <idle>-0     (-----) [007] d..1 82315.592520: cpu_idle: state=0 cpu_id=7
29534<...>-25493 ( 8943) [006] d..3 82315.592576: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
29535<...>-25493 ( 8943) [006] d..4 82315.592585: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
29536          <idle>-0     (-----) [007] .n.1 82315.592589: cpu_idle: state=4294967295 cpu_id=7
29537          <idle>-0     (-----) [007] d..2 82315.592593: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
29538<...>-25493 ( 8943) [006] d..3 82315.592597: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=007
29539<...>-25493 ( 8943) [006] d..4 82315.592609: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
29540          <idle>-0     (-----) [004] .n.1 82315.592613: cpu_idle: state=4294967295 cpu_id=4
29541          <idle>-0     (-----) [004] d..2 82315.592617: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
29542<...>-8969 ( 8943) [004] d..2 82315.592640: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29543          <idle>-0     (-----) [004] d..1 82315.592644: cpu_idle: state=0 cpu_id=4
29544<...>-25493 ( 8943) [006] d..3 82315.592665: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
29545<...>-25493 ( 8943) [006] d..4 82315.592671: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
29546   system_server-8943  ( 8943) [007] .... 82315.592673: binder_transaction: transaction=1568420 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x16
29547          <idle>-0     (-----) [004] .n.1 82315.592675: cpu_idle: state=4294967295 cpu_id=4
29548   system_server-8943  ( 8943) [007] .... 82315.592676: binder_transaction_alloc_buf: transaction=1568420 data_size=92 offsets_size=0
29549          <idle>-0     (-----) [004] d..2 82315.592678: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
29550   system_server-8943  ( 8943) [007] d..4 82315.592679: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
29551   system_server-8943  ( 8943) [007] d..5 82315.592686: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
29552   system_server-8943  ( 8943) [007] d..2 82315.592707: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
29553<...>-9131 ( 9105) [007] .... 82315.592712: binder_transaction_received: transaction=1568420
29554<...>-25493 ( 8943) [006] d..2 82315.592759: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
29555          <idle>-0     (-----) [000] dnh2 82315.592777: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
29556          <idle>-0     (-----) [000] .n.1 82315.592781: cpu_idle: state=4294967295 cpu_id=0
29557          <idle>-0     (-----) [000] d..2 82315.592787: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
29558<...>-25493 ( 8943) [006] d..2 82315.592797: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
29559<...>-9131 ( 9105) [007] d..3 82315.592814: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
29560          <idle>-0     (-----) [001] dnh2 82315.592816: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
29561<...>-25493 ( 8943) [006] d..3 82315.592819: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=001
29562          <idle>-0     (-----) [001] .n.1 82315.592820: cpu_idle: state=4294967295 cpu_id=1
29563<...>-9131 ( 9105) [007] d..4 82315.592825: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
29564          <idle>-0     (-----) [001] d..2 82315.592826: 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
29565   statsd.writer-1044  (  901) [001] d.h3 82315.592836: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=001
29566<...>-581 ( 571) [000] d..2 82315.592837: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29567          <idle>-0     (-----) [000] d..1 82315.592845: cpu_idle: state=0 cpu_id=0
29568<...>-9131 ( 9105) [007] d..2 82315.592870: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
29569<...>-25493 ( 8943) [006] .... 82315.592901: binder_transaction: transaction=1568421 dest_node=418757 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x33
29570<...>-25493 ( 8943) [006] .... 82315.592904: binder_transaction_alloc_buf: transaction=1568421 data_size=252 offsets_size=16
29571<...>-25493 ( 8943) [006] d..4 82315.592911: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
29572<...>-25493 ( 8943) [006] d..5 82315.592923: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=005
29573          <idle>-0     (-----) [005] .n.1 82315.592927: cpu_idle: state=4294967295 cpu_id=5
29574<...>-9105 ( 9105) [007] d..2 82315.592930: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29575          <idle>-0     (-----) [005] d..2 82315.592931: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
29576          <idle>-0     (-----) [007] d..1 82315.592936: cpu_idle: state=0 cpu_id=7
29577  Binder:10023_2-10088 (10023) [005] .... 82315.592936: binder_transaction_received: transaction=1568421
29578   statsd.writer-1044  (  901) [001] d..2 82315.592984: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=8960 next_prio=120
29579<...>-25493 ( 8943) [006] d..3 82315.592986: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=000
29580<...>-25493 ( 8943) [006] d..4 82315.593001: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=007
29581          <idle>-0     (-----) [007] .n.1 82315.593005: cpu_idle: state=4294967295 cpu_id=7
29582          <idle>-0     (-----) [007] d..2 82315.593019: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
29583 PowerManagerSer-8971  ( 8943) [007] d..2 82315.593046: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29584          <idle>-0     (-----) [007] d..1 82315.593050: cpu_idle: state=0 cpu_id=7
29585<...>-25493 ( 8943) [006] d..2 82315.593070: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
29586  Binder:10023_2-10088 (10023) [005] d..3 82315.593084: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
29587<...>-25493 ( 8943) [006] d..1 82315.593085: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=007
29588          <idle>-0     (-----) [000] dnh2 82315.593088: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
29589<...>-25493 ( 8943) [006] d..2 82315.593091: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=007
29590          <idle>-0     (-----) [000] .n.1 82315.593092: cpu_idle: state=4294967295 cpu_id=0
29591          <idle>-0     (-----) [007] .n.1 82315.593096: cpu_idle: state=4294967295 cpu_id=7
29592  Binder:10023_2-10088 (10023) [005] d..4 82315.593096: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
29593          <idle>-0     (-----) [000] d..2 82315.593098: 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
29594          <idle>-0     (-----) [007] d..2 82315.593100: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
29595<...>-8960 ( 8943) [001] d..2 82315.593100: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29596          <idle>-0     (-----) [001] d..1 82315.593109: cpu_idle: state=0 cpu_id=1
29597  Binder:10023_2-10088 (10023) [005] d..2 82315.593120: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
29598 PowerManagerSer-8971  ( 8943) [007] d..2 82315.593121: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29599          <idle>-0     (-----) [007] d..1 82315.593125: cpu_idle: state=0 cpu_id=7
29600          <idle>-0     (-----) [002] ...1 82315.593151: cpu_idle: state=4294967295 cpu_id=2
29601          <idle>-0     (-----) [002] d..1 82315.593153: cpu_idle: state=0 cpu_id=2
29602   statsd.writer-1044  (  901) [000] d..2 82315.593169: 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
29603          <idle>-0     (-----) [000] d..1 82315.593177: cpu_idle: state=0 cpu_id=0
29604          <idle>-0     (-----) [007] ...1 82315.593317: cpu_idle: state=4294967295 cpu_id=7
29605          <idle>-0     (-----) [007] d..1 82315.593318: cpu_idle: state=0 cpu_id=7
29606<...>-25493 ( 8943) [006] d..3 82315.593323: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=003
29607 s.nexuslauncher-10023 (10023) [005] .... 82315.593329: binder_transaction: transaction=1568422 dest_node=396343 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x45
29608 s.nexuslauncher-10023 (10023) [005] .... 82315.593331: binder_transaction_alloc_buf: transaction=1568422 data_size=72 offsets_size=0
29609 s.nexuslauncher-10023 (10023) [005] ...2 82315.593332: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
29610 s.nexuslauncher-10023 (10023) [005] d..4 82315.593334: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
29611<...>-25493 ( 8943) [006] d..4 82315.593337: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
29612          <idle>-0     (-----) [003] ...1 82315.593341: cpu_idle: state=4294967295 cpu_id=3
29613          <idle>-0     (-----) [007] .n.1 82315.593341: cpu_idle: state=4294967295 cpu_id=7
29614          <idle>-0     (-----) [003] d..1 82315.593343: cpu_idle: state=0 cpu_id=3
29615          <idle>-0     (-----) [007] d..2 82315.593345: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
29616 s.nexuslauncher-10023 (10023) [005] d..5 82315.593362: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
29617<...>-9039 ( 8943) [007] d..2 82315.593366: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
29618<...>-9062 ( 8943) [007] .... 82315.593370: binder_transaction_received: transaction=1568422
29619 s.nexuslauncher-10023 (10023) [005] d..2 82315.593375: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29620          <idle>-0     (-----) [005] d..1 82315.593381: cpu_idle: state=0 cpu_id=5
29621<...>-9062 ( 8943) [007] d..2 82315.593457: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29622          <idle>-0     (-----) [007] d..1 82315.593461: cpu_idle: state=0 cpu_id=7
29623<...>-25493 ( 8943) [006] d..3 82315.593547: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
29624<...>-25493 ( 8943) [006] d..4 82315.593558: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
29625          <idle>-0     (-----) [005] .n.1 82315.593563: cpu_idle: state=4294967295 cpu_id=5
29626          <idle>-0     (-----) [005] d..2 82315.593567: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
29627<...>-8969 ( 8943) [005] d..2 82315.593592: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29628          <idle>-0     (-----) [005] d..1 82315.593596: cpu_idle: state=0 cpu_id=5
29629<...>-25493 ( 8943) [006] .... 82315.593627: binder_transaction: transaction=1568423 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
29630<...>-25493 ( 8943) [006] .... 82315.593629: binder_transaction_alloc_buf: transaction=1568423 data_size=96 offsets_size=0
29631<...>-25493 ( 8943) [006] d..4 82315.593631: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
29632<...>-25493 ( 8943) [006] d..5 82315.593638: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
29633          <idle>-0     (-----) [007] .n.1 82315.593642: cpu_idle: state=4294967295 cpu_id=7
29634          <idle>-0     (-----) [007] d..2 82315.593646: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
29635<...>-9131 ( 9105) [007] .... 82315.593650: binder_transaction_received: transaction=1568423
29636<...>-9131 ( 9105) [007] d..3 82315.593691: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
29637<...>-25493 ( 8943) [006] d..3 82315.593695: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
29638<...>-9131 ( 9105) [007] d..4 82315.593696: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
29639<...>-25493 ( 8943) [006] d..4 82315.593705: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
29640<...>-9131 ( 9105) [007] d..2 82315.593717: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
29641<...>-8962 ( 8943) [007] d..3 82315.593754: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
29642<...>-8962 ( 8943) [007] d..4 82315.593759: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
29643<...>-8962 ( 8943) [007] d..2 82315.593773: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
29644<...>-25493 ( 8943) [006] .... 82315.593809: binder_transaction: transaction=1568424 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
29645<...>-9105 ( 9105) [007] d..2 82315.593809: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
29646<...>-25493 ( 8943) [006] .... 82315.593811: binder_transaction_alloc_buf: transaction=1568424 data_size=76 offsets_size=0
29647<...>-25493 ( 8943) [006] ...2 82315.593812: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
29648<...>-25493 ( 8943) [006] d..4 82315.593813: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
29649<...>-25493 ( 8943) [006] dn.5 82315.593820: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
29650<...>-25493 ( 8943) [006] d..2 82315.593823: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
29651<...>-8874 ( 8858) [006] .... 82315.593828: binder_transaction_received: transaction=1568424
29652   system_server-8943  ( 8943) [007] .... 82315.593838: binder_transaction: transaction=1568425 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
29653   system_server-8943  ( 8943) [007] .... 82315.593840: binder_transaction_alloc_buf: transaction=1568425 data_size=96 offsets_size=0
29654   system_server-8943  ( 8943) [007] d..4 82315.593841: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
29655<...>-8874 ( 8858) [006] .... 82315.593844: binder_transaction: transaction=1568426 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x0 code=0x0
29656<...>-8874 ( 8858) [006] .... 82315.593845: binder_transaction_alloc_buf: transaction=1568426 data_size=0 offsets_size=0
29657   system_server-8943  ( 8943) [007] d..5 82315.593845: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
29658<...>-8874 ( 8858) [006] .... 82315.593846: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
29659<...>-8874 ( 8858) [006] d..2 82315.593858: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
29660<...>-25493 ( 8943) [006] .... 82315.593861: binder_transaction_received: transaction=1568426
29661   system_server-8943  ( 8943) [007] d..2 82315.593862: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
29662<...>-9131 ( 9105) [007] .... 82315.593865: binder_transaction_received: transaction=1568425
29663<...>-9131 ( 9105) [007] d..3 82315.593896: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
29664<...>-9131 ( 9105) [007] d..4 82315.593901: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
29665<...>-9131 ( 9105) [007] d..2 82315.593917: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
29666<...>-9105 ( 9105) [007] d..2 82315.593947: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29667          <idle>-0     (-----) [007] d..1 82315.593952: cpu_idle: state=0 cpu_id=7
29668<...>-25493 ( 8943) [006] d..3 82315.594070: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
29669<...>-25493 ( 8943) [006] d..4 82315.594078: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
29670          <idle>-0     (-----) [007] .n.1 82315.594083: cpu_idle: state=4294967295 cpu_id=7
29671          <idle>-0     (-----) [007] d..2 82315.594087: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
29672<...>-9039 ( 8943) [007] d..2 82315.594102: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29673          <idle>-0     (-----) [007] d..1 82315.594105: cpu_idle: state=0 cpu_id=7
29674<...>-25493 ( 8943) [006] d..1 82315.594114: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
29675<...>-25493 ( 8943) [006] d..2 82315.594120: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
29676          <idle>-0     (-----) [007] .n.1 82315.594124: cpu_idle: state=4294967295 cpu_id=7
29677          <idle>-0     (-----) [007] d..2 82315.594128: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
29678<...>-25493 ( 8943) [006] d..1 82315.594146: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
29679<...>-25493 ( 8943) [006] d..2 82315.594159: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=007
29680<...>-9062 ( 8943) [007] .... 82315.594168: binder_transaction: transaction=1568427 dest_node=409915 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x4
29681<...>-9062 ( 8943) [007] .... 82315.594169: binder_transaction_alloc_buf: transaction=1568427 data_size=84 offsets_size=0
29682<...>-9062 ( 8943) [007] d..4 82315.594170: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
29683<...>-9062 ( 8943) [007] d..5 82315.594180: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
29684<...>-25493 ( 8943) [006] .... 82315.594238: binder_transaction: transaction=1568428 dest_node=0 dest_proc=27550 dest_thread=27568 reply=1 flags=0x0 code=0x0
29685<...>-25493 ( 8943) [006] .... 82315.594239: binder_transaction_alloc_buf: transaction=1568428 data_size=8 offsets_size=0
29686<...>-25493 ( 8943) [006] d..2 82315.594241: sched_waking: comm=MonitoringInstr pid=27568 prio=120 target_cpu=003
29687<...>-9062 ( 8943) [007] .... 82315.594244: binder_transaction: transaction=1568429 dest_node=409915 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x2
29688<...>-9062 ( 8943) [007] .... 82315.594246: binder_transaction_alloc_buf: transaction=1568429 data_size=148 offsets_size=0
29689<...>-25493 ( 8943) [006] d..3 82315.594253: sched_wakeup: comm=MonitoringInstr pid=27568 prio=120 target_cpu=006
29690<...>-9062 ( 8943) [007] d..1 82315.594254: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
29691<...>-9062 ( 8943) [007] d..2 82315.594272: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
29692          <idle>-0     (-----) [005] .n.1 82315.594276: cpu_idle: state=4294967295 cpu_id=5
29693          <idle>-0     (-----) [005] d..2 82315.594280: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
29694<...>-25493 ( 8943) [006] d..2 82315.594281: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=MonitoringInstr next_pid=27568 next_prio=120
29695           <...>-27568 (-----) [006] .... 82315.594286: binder_transaction_received: transaction=1568428
29696<...>-9062 ( 8943) [007] .... 82315.594301: binder_transaction: transaction=1568430 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
29697<...>-9062 ( 8943) [007] .... 82315.594302: binder_transaction_alloc_buf: transaction=1568430 data_size=4 offsets_size=0
29698<...>-9062 ( 8943) [007] d..2 82315.594303: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
29699<...>-9062 ( 8943) [007] d..3 82315.594309: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
29700<...>-9062 ( 8943) [007] .... 82315.594312: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
29701<...>-8969 ( 8943) [005] d..2 82315.594314: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
29702<...>-9062 ( 8943) [007] d..2 82315.594316: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=R+ ==> next_comm=ActivityManager next_pid=8961 next_prio=118
29703 s.nexuslauncher-10023 (10023) [005] .... 82315.594318: binder_transaction_received: transaction=1568430
29704           <...>-27568 (-----) [006] d..2 82315.594358: sched_switch: prev_comm=MonitoringInstr prev_pid=27568 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29705<...>-8961 ( 8943) [007] .... 82315.594362: binder_transaction: transaction=1568431 dest_node=401308 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
29706<...>-8961 ( 8943) [007] .... 82315.594364: binder_transaction_alloc_buf: transaction=1568431 data_size=248 offsets_size=0
29707          <idle>-0     (-----) [006] d..1 82315.594366: cpu_idle: state=0 cpu_id=6
29708<...>-8961 ( 8943) [007] d..4 82315.594366: sched_waking: comm=Binder:9105_7 pid=9651 prio=120 target_cpu=006
29709<...>-8961 ( 8943) [007] d..5 82315.594375: sched_wakeup: comm=Binder:9105_7 pid=9651 prio=120 target_cpu=006
29710          <idle>-0     (-----) [006] .n.1 82315.594380: cpu_idle: state=4294967295 cpu_id=6
29711          <idle>-0     (-----) [006] d..2 82315.594384: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_7 next_pid=9651 next_prio=120
29712<...>-9651 ( 9105) [006] .... 82315.594388: binder_transaction_received: transaction=1568431
29713<...>-8961 ( 8943) [007] .... 82315.594399: binder_transaction: transaction=1568432 dest_node=424459 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
29714<...>-8961 ( 8943) [007] .... 82315.594400: binder_transaction_alloc_buf: transaction=1568432 data_size=248 offsets_size=0
29715<...>-8961 ( 8943) [007] d..4 82315.594402: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=006
29716<...>-8961 ( 8943) [007] d..5 82315.594407: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=006
29717          <idle>-0     (-----) [000] ...1 82315.594430: cpu_idle: state=4294967295 cpu_id=0
29718<...>-8961 ( 8943) [007] .... 82315.594431: binder_transaction: transaction=1568433 dest_node=1159303 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0xa
29719          <idle>-0     (-----) [000] d..1 82315.594432: cpu_idle: state=0 cpu_id=0
29720<...>-8961 ( 8943) [007] .... 82315.594433: binder_transaction_alloc_buf: transaction=1568433 data_size=248 offsets_size=0
29721<...>-8961 ( 8943) [007] d..4 82315.594434: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=005
29722<...>-8961 ( 8943) [007] d..5 82315.594439: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=005
29723<...>-8961 ( 8943) [007] d..2 82315.594458: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
29724<...>-9062 ( 8943) [007] d..2 82315.594468: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
29725<...>-9651 ( 9105) [006] d..3 82315.594470: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
29726<...>-9131 ( 9105) [007] .... 82315.594471: binder_transaction_received: transaction=1568427
29727<...>-9651 ( 9105) [006] d..4 82315.594479: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
29728          <idle>-0     (-----) [001] ...1 82315.594480: cpu_idle: state=4294967295 cpu_id=1
29729          <idle>-0     (-----) [001] d..1 82315.594482: cpu_idle: state=0 cpu_id=1
29730<...>-9651 ( 9105) [006] d..2 82315.594507: sched_switch: prev_comm=Binder:9105_7 prev_pid=9651 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
29731<...>-9380 ( 9105) [006] .... 82315.594510: binder_transaction_received: transaction=1568432
29732<...>-9131 ( 9105) [007] d..4 82315.594545: sched_waking: comm=Binder:9105_7 pid=9651 prio=120 target_cpu=006
29733<...>-9131 ( 9105) [007] d..5 82315.594554: sched_wakeup: comm=Binder:9105_7 pid=9651 prio=120 target_cpu=007
29734<...>-9131 ( 9105) [007] .... 82315.594557: binder_transaction_received: transaction=1568429
29735 s.nexuslauncher-10023 (10023) [005] d..2 82315.594560: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
29736<...>-9380 ( 9105) [006] d..2 82315.594565: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
29737          <idle>-0     (-----) [000] dnh2 82315.594575: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
29738          <idle>-0     (-----) [000] .n.1 82315.594578: cpu_idle: state=4294967295 cpu_id=0
29739          <idle>-0     (-----) [000] d..2 82315.594584: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
29740<...>-9131 ( 9105) [007] d..2 82315.594611: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_7 next_pid=9651 next_prio=120
29741<...>-9651 ( 9105) [007] d..2 82315.594617: sched_switch: prev_comm=Binder:9105_7 prev_pid=9651 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29742 s.nexuslauncher-10023 (10023) [005] .... 82315.594621: binder_transaction: transaction=1568434 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x12
29743 s.nexuslauncher-10023 (10023) [005] .... 82315.594622: binder_transaction_alloc_buf: transaction=1568434 data_size=100 offsets_size=8
29744          <idle>-0     (-----) [007] d..1 82315.594622: cpu_idle: state=0 cpu_id=7
29745 s.nexuslauncher-10023 (10023) [005] ...2 82315.594625: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
29746 s.nexuslauncher-10023 (10023) [005] d..4 82315.594626: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
29747 s.nexuslauncher-10023 (10023) [005] d..5 82315.594633: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
29748 s.nexuslauncher-10023 (10023) [005] d..2 82315.594637: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=android.display next_pid=8969 next_prio=117
29749          <idle>-0     (-----) [007] .n.1 82315.594638: cpu_idle: state=4294967295 cpu_id=7
29750          <idle>-0     (-----) [007] d..2 82315.594641: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
29751<...>-581 ( 571) [000] d..2 82315.594643: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29752<...>-9062 ( 8943) [007] .... 82315.594646: binder_transaction_received: transaction=1568434
29753<...>-9105 ( 9105) [006] .... 82315.594647: binder_transaction: transaction=1568435 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1e
29754<...>-9105 ( 9105) [006] .... 82315.594648: binder_transaction_alloc_buf: transaction=1568435 data_size=88 offsets_size=0
29755<...>-9105 ( 9105) [006] d..4 82315.594650: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
29756          <idle>-0     (-----) [000] d..1 82315.594651: cpu_idle: state=0 cpu_id=0
29757<...>-9105 ( 9105) [006] d..5 82315.594654: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
29758<...>-9105 ( 9105) [006] d..2 82315.594658: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
29759<...>-25493 ( 8943) [006] .... 82315.594662: binder_transaction_received: transaction=1568435
29760<...>-8969 ( 8943) [005] d..2 82315.594671: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
29761  Binder:10023_2-10088 (10023) [005] .... 82315.594675: binder_transaction_received: transaction=1568433
29762<...>-25493 ( 8943) [006] d..2 82315.594716: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29763          <idle>-0     (-----) [006] d..1 82315.594724: cpu_idle: state=0 cpu_id=6
29764  Binder:10023_2-10088 (10023) [005] d..2 82315.594740: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29765          <idle>-0     (-----) [005] d..1 82315.594746: cpu_idle: state=0 cpu_id=5
29766<...>-9062 ( 8943) [007] d..3 82315.594802: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
29767<...>-9062 ( 8943) [007] d..4 82315.594814: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=006
29768          <idle>-0     (-----) [006] .n.1 82315.594819: cpu_idle: state=4294967295 cpu_id=6
29769<...>-9062 ( 8943) [007] d..3 82315.594822: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
29770          <idle>-0     (-----) [006] d..2 82315.594823: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
29771<...>-9062 ( 8943) [007] d..4 82315.594828: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
29772          <idle>-0     (-----) [005] .n.1 82315.594833: cpu_idle: state=4294967295 cpu_id=5
29773          <idle>-0     (-----) [005] d..2 82315.594837: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
29774   system_server-8943  ( 8943) [006] .... 82315.594852: binder_transaction: transaction=1568436 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x16
29775   system_server-8943  ( 8943) [006] .... 82315.594854: binder_transaction_alloc_buf: transaction=1568436 data_size=92 offsets_size=0
29776<...>-8969 ( 8943) [005] d..2 82315.594854: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29777<...>-9062 ( 8943) [007] d..3 82315.594854: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=007
29778   system_server-8943  ( 8943) [006] d..4 82315.594855: sched_waking: comm=Binder:9105_7 pid=9651 prio=120 target_cpu=007
29779          <idle>-0     (-----) [005] d..1 82315.594858: cpu_idle: state=0 cpu_id=5
29780<...>-9062 ( 8943) [007] d..4 82315.594866: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=006
29781   system_server-8943  ( 8943) [006] d..5 82315.594868: sched_wakeup: comm=Binder:9105_7 pid=9651 prio=120 target_cpu=006
29782   system_server-8943  ( 8943) [006] d..2 82315.594886: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
29783<...>-8961 ( 8943) [006] d..2 82315.594898: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_7 next_pid=9651 next_prio=120
29784<...>-9651 ( 9105) [006] .... 82315.594902: binder_transaction_received: transaction=1568436
29785<...>-9062 ( 8943) [007] d..3 82315.594919: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=006
29786<...>-9062 ( 8943) [007] d..4 82315.594925: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=006
29787<...>-9651 ( 9105) [006] d..2 82315.594954: sched_switch: prev_comm=Binder:9105_7 prev_pid=9651 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
29788<...>-8961 ( 8943) [006] d..2 82315.594977: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29789          <idle>-0     (-----) [006] d..1 82315.594982: cpu_idle: state=0 cpu_id=6
29790<...>-9005 ( 8943) [004] .... 82315.595007: binder_transaction: transaction=1568437 dest_node=617822 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
29791<...>-9005 ( 8943) [004] .... 82315.595010: binder_transaction_alloc_buf: transaction=1568437 data_size=80 offsets_size=0
29792<...>-9005 ( 8943) [004] d..4 82315.595011: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
29793<...>-9005 ( 8943) [004] d..5 82315.595019: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
29794          <idle>-0     (-----) [006] .n.1 82315.595024: cpu_idle: state=4294967295 cpu_id=6
29795          <idle>-0     (-----) [006] d..2 82315.595027: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
29796<...>-8874 ( 8858) [006] .... 82315.595031: binder_transaction_received: transaction=1568437
29797<...>-8874 ( 8858) [006] d..1 82315.595046: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
29798<...>-9005 ( 8943) [004] d..2 82315.595049: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29799          <idle>-0     (-----) [004] d..1 82315.595057: cpu_idle: state=0 cpu_id=4
29800          <idle>-0     (-----) [001] dnh2 82315.595064: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
29801<...>-8874 ( 8858) [006] d..2 82315.595066: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29802          <idle>-0     (-----) [001] .n.1 82315.595067: cpu_idle: state=4294967295 cpu_id=1
29803          <idle>-0     (-----) [006] d..1 82315.595070: cpu_idle: state=0 cpu_id=6
29804          <idle>-0     (-----) [001] d..2 82315.595073: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
29805  appEventThread-8881  ( 8858) [001] d..1 82315.595134: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
29806          <idle>-0     (-----) [005] dnh2 82315.595180: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=005
29807          <idle>-0     (-----) [005] .n.1 82315.595182: cpu_idle: state=4294967295 cpu_id=5
29808          <idle>-0     (-----) [005] d..2 82315.595186: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
29809<...>-9062 ( 8943) [007] d..1 82315.595194: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
29810<...>-9062 ( 8943) [007] d..2 82315.595201: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
29811  appEventThread-8881  ( 8858) [001] d..2 82315.595201: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29812        DispSync-8879  ( 8858) [005] d..2 82315.595202: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29813          <idle>-0     (-----) [005] d..1 82315.595205: cpu_idle: state=0 cpu_id=5
29814          <idle>-0     (-----) [004] .n.1 82315.595206: cpu_idle: state=4294967295 cpu_id=4
29815          <idle>-0     (-----) [001] d..1 82315.595209: cpu_idle: state=0 cpu_id=1
29816          <idle>-0     (-----) [004] d..2 82315.595210: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
29817          <idle>-0     (-----) [003] d.h2 82315.595247: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
29818<...>-9062 ( 8943) [007] d..2 82315.595252: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29819          <idle>-0     (-----) [003] dnh3 82315.595254: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
29820          <idle>-0     (-----) [007] d..1 82315.595258: cpu_idle: state=0 cpu_id=7
29821          <idle>-0     (-----) [003] .n.1 82315.595260: cpu_idle: state=4294967295 cpu_id=3
29822          <idle>-0     (-----) [006] ...1 82315.595261: cpu_idle: state=4294967295 cpu_id=6
29823          <idle>-0     (-----) [006] d..1 82315.595262: cpu_idle: state=0 cpu_id=6
29824          <idle>-0     (-----) [003] d..2 82315.595265: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
29825 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.595408: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
29826          <idle>-0     (-----) [003] d..1 82315.595415: cpu_idle: state=0 cpu_id=3
29827          <idle>-0     (-----) [001] d.s3 82315.595429: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
29828          <idle>-0     (-----) [001] d.s4 82315.595437: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
29829          <idle>-0     (-----) [003] .n.1 82315.595442: cpu_idle: state=4294967295 cpu_id=3
29830          <idle>-0     (-----) [001] ...1 82315.595442: cpu_idle: state=4294967295 cpu_id=1
29831          <idle>-0     (-----) [001] d..1 82315.595445: cpu_idle: state=0 cpu_id=1
29832          <idle>-0     (-----) [003] d..2 82315.595447: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
29833 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.595469: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
29834          <idle>-0     (-----) [007] ...1 82315.595472: cpu_idle: state=4294967295 cpu_id=7
29835          <idle>-0     (-----) [007] d..1 82315.595473: cpu_idle: state=0 cpu_id=7
29836          <idle>-0     (-----) [003] d..1 82315.595475: cpu_idle: state=0 cpu_id=3
29837<...>-9005 ( 8943) [004] d..3 82315.595482: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
29838<...>-9005 ( 8943) [004] d..4 82315.595490: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
29839          <idle>-0     (-----) [007] .n.1 82315.595494: cpu_idle: state=4294967295 cpu_id=7
29840          <idle>-0     (-----) [007] d..2 82315.595497: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
29841<...>-9039 ( 8943) [007] d..2 82315.595514: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29842          <idle>-0     (-----) [007] d..1 82315.595517: cpu_idle: state=0 cpu_id=7
29843<...>-9005 ( 8943) [004] .... 82315.595553: binder_transaction: transaction=1568438 dest_node=617843 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
29844<...>-9005 ( 8943) [004] .... 82315.595555: binder_transaction_alloc_buf: transaction=1568438 data_size=184 offsets_size=8
29845<...>-9005 ( 8943) [004] ...2 82315.595558: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
29846<...>-9005 ( 8943) [004] d..4 82315.595560: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
29847<...>-9005 ( 8943) [004] d..5 82315.595567: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
29848<...>-9005 ( 8943) [004] d..2 82315.595572: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
29849<...>-8874 ( 8858) [004] .... 82315.595576: binder_transaction_received: transaction=1568438
29850<...>-8874 ( 8858) [004] .... 82315.595718: binder_transaction: transaction=1568439 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
29851<...>-8874 ( 8858) [004] .... 82315.595720: binder_transaction_alloc_buf: transaction=1568439 data_size=52 offsets_size=16
29852          <idle>-0     (-----) [007] ...1 82315.595734: cpu_idle: state=4294967295 cpu_id=7
29853          <idle>-0     (-----) [007] d..1 82315.595735: cpu_idle: state=0 cpu_id=7
29854<...>-8874 ( 8858) [004] d..2 82315.595880: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
29855<...>-8874 ( 8858) [004] dn.3 82315.595885: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
29856<...>-8874 ( 8858) [004] d..2 82315.595888: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=android.anim next_pid=9005 next_prio=110
29857<...>-9005 ( 8943) [004] .... 82315.595891: binder_transaction_received: transaction=1568439
29858<...>-9005 ( 8943) [004] .... 82315.595912: binder_transaction: transaction=1568444 dest_node=1568442 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
29859<...>-9005 ( 8943) [004] .... 82315.595913: binder_transaction_alloc_buf: transaction=1568444 data_size=80 offsets_size=0
29860<...>-9005 ( 8943) [004] ...2 82315.595914: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
29861<...>-9005 ( 8943) [004] d..4 82315.595916: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=002
29862<...>-9005 ( 8943) [004] d..5 82315.595932: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
29863          <idle>-0     (-----) [005] .n.1 82315.595937: cpu_idle: state=4294967295 cpu_id=5
29864          <idle>-0     (-----) [005] d..2 82315.595951: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
29865<...>-9005 ( 8943) [004] d..2 82315.595953: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
29866<...>-13083 ( 8858) [005] .... 82315.595954: binder_transaction_received: transaction=1568444
29867<...>-8874 ( 8858) [004] .... 82315.595955: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
29868<...>-13083 ( 8858) [005] .... 82315.595966: binder_transaction: transaction=1568445 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x8 code=0x0
29869<...>-13083 ( 8858) [005] .... 82315.595967: binder_transaction_alloc_buf: transaction=1568445 data_size=4 offsets_size=0
29870<...>-13083 ( 8858) [005] d..2 82315.595969: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
29871<...>-13083 ( 8858) [005] d..3 82315.595977: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
29872<...>-13083 ( 8858) [005] .... 82315.595978: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
29873<...>-8874 ( 8858) [004] d..2 82315.595982: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29874          <idle>-0     (-----) [004] d..1 82315.595988: cpu_idle: state=0 cpu_id=4
29875<...>-13083 ( 8858) [005] d..2 82315.595990: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
29876<...>-9005 ( 8943) [005] .... 82315.595993: binder_transaction_received: transaction=1568445
29877          <idle>-0     (-----) [000] ...1 82315.596174: cpu_idle: state=4294967295 cpu_id=0
29878          <idle>-0     (-----) [000] d..1 82315.596176: cpu_idle: state=0 cpu_id=0
29879          <idle>-0     (-----) [004] ...1 82315.596233: cpu_idle: state=4294967295 cpu_id=4
29880          <idle>-0     (-----) [004] d..1 82315.596234: cpu_idle: state=0 cpu_id=4
29881<...>-9005 ( 8943) [005] d..3 82315.596347: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
29882<...>-9005 ( 8943) [005] d..4 82315.596354: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
29883          <idle>-0     (-----) [007] .n.1 82315.596359: cpu_idle: state=4294967295 cpu_id=7
29884          <idle>-0     (-----) [007] d..2 82315.596362: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
29885<...>-9039 ( 8943) [007] d..2 82315.596370: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
29886<...>-9005 ( 8943) [005] d..1 82315.596372: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
29887          <idle>-0     (-----) [007] d..1 82315.596373: cpu_idle: state=0 cpu_id=7
29888<...>-9005 ( 8943) [005] d..2 82315.596378: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
29889          <idle>-0     (-----) [007] .n.1 82315.596382: cpu_idle: state=4294967295 cpu_id=7
29890          <idle>-0     (-----) [007] d..2 82315.596385: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
29891<...>-9062 ( 8943) [007] .... 82315.596458: binder_transaction: transaction=1568446 dest_node=1568298 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x33
29892<...>-9062 ( 8943) [007] .... 82315.596460: binder_transaction_alloc_buf: transaction=1568446 data_size=252 offsets_size=16
29893<...>-9062 ( 8943) [007] d..4 82315.596472: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=001
29894<...>-9062 ( 8943) [007] d..5 82315.596487: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=006
29895          <idle>-0     (-----) [006] .n.1 82315.596491: cpu_idle: state=4294967295 cpu_id=6
29896          <idle>-0     (-----) [006] d..2 82315.596507: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
29897<...>-9005 ( 8943) [005] d..2 82315.596509: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29898           <...>-27564 (-----) [006] .... 82315.596512: binder_transaction_received: transaction=1568446
29899          <idle>-0     (-----) [005] d..1 82315.596513: cpu_idle: state=0 cpu_id=5
29900          <idle>-0     (-----) [002] d.h2 82315.596596: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
29901          <idle>-0     (-----) [002] dnh3 82315.596603: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
29902          <idle>-0     (-----) [002] .n.1 82315.596607: cpu_idle: state=4294967295 cpu_id=2
29903          <idle>-0     (-----) [002] d..2 82315.596614: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
29904<...>-9062 ( 8943) [007] d..2 82315.596650: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
29905          <idle>-0     (-----) [000] dnh2 82315.596665: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
29906          <idle>-0     (-----) [000] .n.1 82315.596668: cpu_idle: state=4294967295 cpu_id=0
29907          <idle>-0     (-----) [000] d..2 82315.596674: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
29908<...>-9062 ( 8943) [007] d..3 82315.596692: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
29909<...>-9062 ( 8943) [007] d..4 82315.596698: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
29910<...>-581 ( 571) [000] d..2 82315.596719: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29911           <...>-27564 (-----) [006] d..3 82315.596724: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
29912          <idle>-0     (-----) [000] d..1 82315.596726: cpu_idle: state=0 cpu_id=0
29913 irq/81-114a000.-9677  ( 9677) [002] d..2 82315.596730: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
29914           <...>-27564 (-----) [006] d..4 82315.596732: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
29915          <idle>-0     (-----) [002] d..1 82315.596737: cpu_idle: state=0 cpu_id=2
29916          <idle>-0     (-----) [001] d.s3 82315.596748: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
29917          <idle>-0     (-----) [001] d.s4 82315.596755: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
29918          <idle>-0     (-----) [001] ...1 82315.596760: cpu_idle: state=4294967295 cpu_id=1
29919          <idle>-0     (-----) [002] .n.1 82315.596760: cpu_idle: state=4294967295 cpu_id=2
29920          <idle>-0     (-----) [001] d..1 82315.596763: cpu_idle: state=0 cpu_id=1
29921          <idle>-0     (-----) [002] d..2 82315.596766: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
29922           <...>-27564 (-----) [006] d..2 82315.596775: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29923          <idle>-0     (-----) [006] d..1 82315.596780: cpu_idle: state=0 cpu_id=6
29924 irq/81-114a000.-9677  ( 9677) [002] d..2 82315.596785: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
29925          <idle>-0     (-----) [002] d..1 82315.596791: cpu_idle: state=0 cpu_id=2
29926          <idle>-0     (-----) [003] ...1 82315.596878: cpu_idle: state=4294967295 cpu_id=3
29927          <idle>-0     (-----) [003] d..1 82315.596880: cpu_idle: state=0 cpu_id=3
29928<...>-9062 ( 8943) [007] .... 82315.596912: binder_transaction: transaction=1568449 dest_node=1568298 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x33
29929<...>-9062 ( 8943) [007] .... 82315.596914: binder_transaction_alloc_buf: transaction=1568449 data_size=4356 offsets_size=16
29930<...>-9062 ( 8943) [007] d..4 82315.596917: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=006
29931<...>-9062 ( 8943) [007] d..5 82315.596925: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=006
29932          <idle>-0     (-----) [006] .n.1 82315.596930: cpu_idle: state=4294967295 cpu_id=6
29933          <idle>-0     (-----) [006] d..2 82315.596933: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
29934           <...>-27564 (-----) [006] .... 82315.596935: binder_transaction_received: transaction=1568449
29935<...>-9062 ( 8943) [007] d..3 82315.596972: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
29936<...>-9062 ( 8943) [007] d..4 82315.596983: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
29937<...>-9062 ( 8943) [007] d..3 82315.597022: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
29938<...>-9062 ( 8943) [007] d..4 82315.597032: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
29939          <idle>-0     (-----) [004] .n.1 82315.597036: cpu_idle: state=4294967295 cpu_id=4
29940          <idle>-0     (-----) [004] d..2 82315.597040: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
29941<...>-8969 ( 8943) [004] d..2 82315.597063: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29942          <idle>-0     (-----) [004] d..1 82315.597067: cpu_idle: state=0 cpu_id=4
29943           <...>-27564 (-----) [006] d..2 82315.597203: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
29944<...>-9039 ( 8943) [006] d..2 82315.597224: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29945          <idle>-0     (-----) [006] d..1 82315.597229: cpu_idle: state=0 cpu_id=6
29946          <idle>-0     (-----) [004] ...1 82315.597271: cpu_idle: state=4294967295 cpu_id=4
29947          <idle>-0     (-----) [004] d..1 82315.597272: cpu_idle: state=0 cpu_id=4
29948<...>-9062 ( 8943) [007] d..1 82315.597280: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
29949<...>-9062 ( 8943) [007] d..2 82315.597288: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
29950          <idle>-0     (-----) [006] .n.1 82315.597292: cpu_idle: state=4294967295 cpu_id=6
29951          <idle>-0     (-----) [006] d..2 82315.597296: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
29952<...>-9039 ( 8943) [006] d..2 82315.597307: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29953          <idle>-0     (-----) [006] d..1 82315.597310: cpu_idle: state=0 cpu_id=6
29954<...>-9062 ( 8943) [007] d..1 82315.597311: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
29955<...>-9062 ( 8943) [007] d..2 82315.597318: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
29956          <idle>-0     (-----) [004] .n.1 82315.597322: cpu_idle: state=4294967295 cpu_id=4
29957          <idle>-0     (-----) [004] d..2 82315.597325: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
29958<...>-9062 ( 8943) [007] d..2 82315.597353: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
29959          <idle>-0     (-----) [000] dnh2 82315.597367: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
29960          <idle>-0     (-----) [000] .n.1 82315.597371: cpu_idle: state=4294967295 cpu_id=0
29961          <idle>-0     (-----) [000] d..2 82315.597376: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
29962<...>-8969 ( 8943) [004] .... 82315.597376: binder_transaction: transaction=1568450 dest_node=1160192 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x6
29963<...>-8969 ( 8943) [004] .... 82315.597378: binder_transaction_alloc_buf: transaction=1568450 data_size=60 offsets_size=0
29964<...>-8969 ( 8943) [004] d..4 82315.597379: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=005
29965<...>-8969 ( 8943) [004] d..5 82315.597386: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=005
29966          <idle>-0     (-----) [005] .n.1 82315.597391: cpu_idle: state=4294967295 cpu_id=5
29967<...>-9062 ( 8943) [007] d..1 82315.597392: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=007
29968          <idle>-0     (-----) [005] d..2 82315.597394: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
29969  Binder:10023_2-10088 (10023) [005] .... 82315.597398: binder_transaction_received: transaction=1568450
29970<...>-9062 ( 8943) [007] d..2 82315.597404: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=006
29971<...>-8969 ( 8943) [004] d..2 82315.597407: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
29972          <idle>-0     (-----) [006] .n.1 82315.597408: cpu_idle: state=4294967295 cpu_id=6
29973          <idle>-0     (-----) [006] d..2 82315.597411: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
29974          <idle>-0     (-----) [004] d..1 82315.597412: cpu_idle: state=0 cpu_id=4
29975<...>-9062 ( 8943) [007] d..1 82315.597424: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
29976 LazyTaskWriterT-9080  ( 8943) [006] d..2 82315.597429: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
29977          <idle>-0     (-----) [006] d..1 82315.597432: cpu_idle: state=0 cpu_id=6
29978<...>-9062 ( 8943) [007] d..2 82315.597441: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=006
29979<...>-581 ( 571) [000] d..2 82315.597442: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
29980          <idle>-0     (-----) [006] .n.1 82315.597446: cpu_idle: state=4294967295 cpu_id=6
29981          <idle>-0     (-----) [006] d..2 82315.597450: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
29982<...>-9062 ( 8943) [007] d..1 82315.597452: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=006
29983<...>-9062 ( 8943) [007] d..2 82315.597475: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=006
29984  Binder:10023_2-10088 (10023) [005] d..2 82315.597479: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
29985          <idle>-0     (-----) [005] d..1 82315.597482: cpu_idle: state=0 cpu_id=5
29986<...>-8962 ( 8943) [000] d..2 82315.597511: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
29987          <idle>-0     (-----) [000] d..1 82315.597520: cpu_idle: state=0 cpu_id=0
29988<...>-9062 ( 8943) [007] d..2 82315.597550: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
29989          <idle>-0     (-----) [000] dnh2 82315.597567: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
29990<...>-9062 ( 8943) [007] d..3 82315.597568: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=001
29991          <idle>-0     (-----) [000] .n.1 82315.597571: cpu_idle: state=4294967295 cpu_id=0
29992          <idle>-0     (-----) [000] d..2 82315.597577: 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
29993          <idle>-0     (-----) [001] dnh2 82315.597583: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=001
29994          <idle>-0     (-----) [001] .n.1 82315.597587: cpu_idle: state=4294967295 cpu_id=1
29995          <idle>-0     (-----) [001] d..2 82315.597592: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=8960 next_prio=120
29996          <idle>-0     (-----) [004] ...1 82315.597656: cpu_idle: state=4294967295 cpu_id=4
29997          <idle>-0     (-----) [004] d..1 82315.597657: cpu_idle: state=0 cpu_id=4
29998<...>-8960 ( 8943) [001] d..2 82315.597683: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
29999   statsd.writer-1044  (  901) [000] d..2 82315.597687: 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
30000          <idle>-0     (-----) [001] d..1 82315.597692: cpu_idle: state=0 cpu_id=1
30001          <idle>-0     (-----) [000] d..1 82315.597695: cpu_idle: state=0 cpu_id=0
30002 TaskSnapshotPer-9077  ( 8943) [006] d..2 82315.597749: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
30003 LazyTaskWriterT-9080  ( 8943) [006] d..2 82315.597761: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30004          <idle>-0     (-----) [006] d..1 82315.597767: cpu_idle: state=0 cpu_id=6
30005          <idle>-0     (-----) [002] ...1 82315.597921: cpu_idle: state=4294967295 cpu_id=2
30006          <idle>-0     (-----) [002] d..1 82315.597923: cpu_idle: state=0 cpu_id=2
30007          <idle>-0     (-----) [006] ...1 82315.597958: cpu_idle: state=4294967295 cpu_id=6
30008          <idle>-0     (-----) [006] d..1 82315.597959: cpu_idle: state=0 cpu_id=6
30009<...>-9062 ( 8943) [007] d..3 82315.598048: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
30010<...>-9062 ( 8943) [007] d..4 82315.598057: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
30011          <idle>-0     (-----) [006] .n.1 82315.598061: cpu_idle: state=4294967295 cpu_id=6
30012          <idle>-0     (-----) [006] d..2 82315.598064: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
30013<...>-9039 ( 8943) [006] d..2 82315.598075: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30014          <idle>-0     (-----) [006] d..1 82315.598078: cpu_idle: state=0 cpu_id=6
30015<...>-9062 ( 8943) [007] .... 82315.598229: binder_transaction: transaction=1568451 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
30016<...>-9062 ( 8943) [007] .... 82315.598231: binder_transaction_alloc_buf: transaction=1568451 data_size=96 offsets_size=0
30017<...>-9062 ( 8943) [007] d..4 82315.598232: sched_waking: comm=Binder:9105_7 pid=9651 prio=120 target_cpu=006
30018<...>-9062 ( 8943) [007] d..5 82315.598241: sched_wakeup: comm=Binder:9105_7 pid=9651 prio=120 target_cpu=006
30019          <idle>-0     (-----) [006] .n.1 82315.598245: cpu_idle: state=4294967295 cpu_id=6
30020          <idle>-0     (-----) [006] d..2 82315.598248: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_7 next_pid=9651 next_prio=120
30021<...>-9651 ( 9105) [006] .... 82315.598252: binder_transaction_received: transaction=1568451
30022<...>-9651 ( 9105) [006] d..2 82315.598317: sched_switch: prev_comm=Binder:9105_7 prev_pid=9651 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30023          <idle>-0     (-----) [006] d..1 82315.598321: cpu_idle: state=0 cpu_id=6
30024<...>-9062 ( 8943) [007] .... 82315.598434: binder_transaction: transaction=1568452 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
30025<...>-9062 ( 8943) [007] .... 82315.598435: binder_transaction_alloc_buf: transaction=1568452 data_size=380 offsets_size=16
30026          <idle>-0     (-----) [005] d.h2 82315.598449: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=005
30027          <idle>-0     (-----) [005] dnh3 82315.598455: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=005
30028<...>-9062 ( 8943) [007] d.s3 82315.598458: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=001
30029          <idle>-0     (-----) [005] dns2 82315.598459: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
30030          <idle>-0     (-----) [005] dns3 82315.598476: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
30031<...>-9062 ( 8943) [007] d.s4 82315.598479: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=004
30032          <idle>-0     (-----) [004] .n.1 82315.598481: cpu_idle: state=4294967295 cpu_id=4
30033          <idle>-0     (-----) [005] .n.1 82315.598484: cpu_idle: state=4294967295 cpu_id=5
30034          <idle>-0     (-----) [004] d..2 82315.598485: 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
30035          <idle>-0     (-----) [005] d..2 82315.598487: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
30036     rcu_preempt-7     (    7) [004] d..2 82315.598492: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
30037        DispSync-8879  ( 8858) [005] d..1 82315.598497: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
30038<...>-9062 ( 8943) [007] ...2 82315.598507: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
30039<...>-9062 ( 8943) [007] d..4 82315.598508: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
30040          <idle>-0     (-----) [001] dnh2 82315.598517: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
30041     rcu_preempt-7     (    7) [004] d..3 82315.598519: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
30042<...>-9062 ( 8943) [007] d..5 82315.598520: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
30043          <idle>-0     (-----) [001] .n.1 82315.598521: cpu_idle: state=4294967295 cpu_id=1
30044          <idle>-0     (-----) [006] .n.1 82315.598524: cpu_idle: state=4294967295 cpu_id=6
30045<...>-9062 ( 8943) [007] d..2 82315.598525: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
30046     rcu_preempt-7     (    7) [004] d..2 82315.598543: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
30047          <idle>-0     (-----) [001] d..2 82315.598545: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
30048        DispSync-8879  ( 8858) [005] d..2 82315.598546: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
30049          <idle>-0     (-----) [006] d..2 82315.598547: 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
30050          <idle>-0     (-----) [005] d..1 82315.598549: cpu_idle: state=0 cpu_id=5
30051     rcu_preempt-7     (    7) [004] d..3 82315.598556: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
30052         rcuop/2-29    (   29) [006] d..2 82315.598558: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
30053          <idle>-0     (-----) [005] .n.1 82315.598561: cpu_idle: state=4294967295 cpu_id=5
30054          <idle>-0     (-----) [005] d..2 82315.598572: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
30055         rcuop/0-10    (   10) [005] d..2 82315.598575: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
30056     rcu_preempt-7     (    7) [004] d..2 82315.598575: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
30057  appEventThread-8881  ( 8858) [001] d..3 82315.598579: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
30058         rcuop/2-29    (   29) [006] d..3 82315.598582: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=006
30059         rcuop/0-10    (   10) [005] d..3 82315.598587: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=006
30060           <...>-27550 (-----) [007] d..2 82315.598597: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
30061<...>-1054 ( 1054) [004] d.h3 82315.598607: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
30062         rcuop/0-10    (   10) [005] d..2 82315.598610: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
30063         rcuop/2-29    (   29) [006] d..2 82315.598611: 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
30064          <idle>-0     (-----) [005] d..1 82315.598612: cpu_idle: state=0 cpu_id=5
30065         rcuop/3-37    (   37) [006] d..2 82315.598617: 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
30066          <idle>-0     (-----) [000] dnh2 82315.598620: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
30067         rcuop/1-21    (   21) [006] d..2 82315.598623: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
30068          <idle>-0     (-----) [000] .n.1 82315.598624: cpu_idle: state=4294967295 cpu_id=0
30069<...>-13083 ( 8858) [006] .... 82315.598627: binder_transaction_received: transaction=1568452
30070          <idle>-0     (-----) [000] d..2 82315.598630: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
30071  appEventThread-8881  ( 8858) [001] d..2 82315.598639: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30072          <idle>-0     (-----) [001] d..1 82315.598647: cpu_idle: state=0 cpu_id=1
30073<...>-13083 ( 8858) [006] .... 82315.598671: binder_transaction: transaction=1568453 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
30074<...>-13083 ( 8858) [006] .... 82315.598673: binder_transaction_alloc_buf: transaction=1568453 data_size=0 offsets_size=0
30075<...>-13083 ( 8858) [006] d..2 82315.598674: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30076<...>-581 ( 571) [000] d..2 82315.598676: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30077<...>-13083 ( 8858) [006] d..3 82315.598681: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
30078<...>-13083 ( 8858) [006] .... 82315.598682: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
30079          <idle>-0     (-----) [000] d..1 82315.598683: cpu_idle: state=0 cpu_id=0
30080<...>-13083 ( 8858) [006] d..2 82315.598694: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30081<...>-9062 ( 8943) [006] .... 82315.598697: binder_transaction_received: transaction=1568453
30082<...>-1054 ( 1054) [004] d..2 82315.598756: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=android.anim next_pid=9005 next_prio=110
30083          <idle>-0     (-----) [001] d.s3 82315.598796: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=004
30084           <...>-27550 (-----) [007] .... 82315.598805: binder_transaction: transaction=1568454 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
30085           <...>-27550 (-----) [007] .... 82315.598806: binder_transaction_alloc_buf: transaction=1568454 data_size=96 offsets_size=0
30086           <...>-27550 (-----) [007] d..4 82315.598809: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
30087          <idle>-0     (-----) [001] ...1 82315.598813: cpu_idle: state=4294967295 cpu_id=1
30088          <idle>-0     (-----) [005] d.h2 82315.598814: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
30089           <...>-27550 (-----) [007] dn.5 82315.598814: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
30090          <idle>-0     (-----) [005] dnh2 82315.598815: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=005
30091          <idle>-0     (-----) [001] d..1 82315.598816: cpu_idle: state=0 cpu_id=1
30092          <idle>-0     (-----) [005] .n.1 82315.598817: cpu_idle: state=4294967295 cpu_id=5
30093           <...>-27550 (-----) [007] d..2 82315.598818: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
30094          <idle>-0     (-----) [005] d..2 82315.598820: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
30095<...>-11815 ( 8943) [007] .... 82315.598823: binder_transaction_received: transaction=1568454
30096<...>-1054 ( 1054) [005] d..2 82315.598901: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
30097          <idle>-0     (-----) [005] d..1 82315.598903: cpu_idle: state=0 cpu_id=5
30098<...>-9062 ( 8943) [006] d..3 82315.598929: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
30099<...>-11815 ( 8943) [007] .... 82315.598932: binder_transaction: transaction=1568455 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30100<...>-11815 ( 8943) [007] .... 82315.598933: binder_transaction_alloc_buf: transaction=1568455 data_size=340 offsets_size=0
30101          <idle>-0     (-----) [001] d.s3 82315.598935: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=005
30102<...>-9062 ( 8943) [006] d..4 82315.598935: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
30103<...>-9062 ( 8943) [006] d..3 82315.598944: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
30104          <idle>-0     (-----) [001] ...1 82315.598945: cpu_idle: state=4294967295 cpu_id=1
30105<...>-11815 ( 8943) [007] d..2 82315.598945: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
30106          <idle>-0     (-----) [005] d.h2 82315.598946: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
30107          <idle>-0     (-----) [005] dnh2 82315.598947: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=005
30108          <idle>-0     (-----) [001] d..1 82315.598948: cpu_idle: state=0 cpu_id=1
30109          <idle>-0     (-----) [005] .n.1 82315.598949: cpu_idle: state=4294967295 cpu_id=5
30110           <...>-27550 (-----) [007] .... 82315.598949: binder_transaction_received: transaction=1568455
30111          <idle>-0     (-----) [005] d..2 82315.598953: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
30112<...>-9062 ( 8943) [006] d..4 82315.598956: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
30113<...>-9062 ( 8943) [006] d..1 82315.598987: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
30114<...>-9062 ( 8943) [006] d..2 82315.598992: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
30115<...>-1054 ( 1054) [005] d..2 82315.599027: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=android.display next_pid=8969 next_prio=117
30116<...>-9062 ( 8943) [006] .... 82315.599033: binder_transaction: transaction=1568456 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
30117<...>-9062 ( 8943) [006] .... 82315.599034: binder_transaction_alloc_buf: transaction=1568456 data_size=4 offsets_size=0
30118<...>-9062 ( 8943) [006] d..2 82315.599036: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
30119<...>-9062 ( 8943) [006] d..3 82315.599041: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
30120<...>-9062 ( 8943) [006] .... 82315.599043: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30121<...>-9062 ( 8943) [006] d..2 82315.599047: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=R+ ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
30122<...>-9039 ( 8943) [006] d..2 82315.599058: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
30123<...>-8969 ( 8943) [005] d..2 82315.599059: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
30124 s.nexuslauncher-10023 (10023) [005] .... 82315.599064: binder_transaction_received: transaction=1568456
30125<...>-9062 ( 8943) [006] d..2 82315.599069: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
30126<...>-25493 ( 8943) [006] d..1 82315.599141: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=006
30127<...>-25493 ( 8943) [006] dn.2 82315.599147: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=006
30128<...>-25493 ( 8943) [006] d..2 82315.599150: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30129<...>-8961 ( 8943) [006] d..2 82315.599155: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
30130<...>-25493 ( 8943) [006] d..1 82315.599157: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=006
30131<...>-25493 ( 8943) [006] dn.2 82315.599159: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=006
30132<...>-25493 ( 8943) [006] d..2 82315.599161: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30133<...>-8961 ( 8943) [006] d..1 82315.599169: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=000
30134          <idle>-0     (-----) [000] dnh2 82315.599182: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=000
30135          <idle>-0     (-----) [000] .n.1 82315.599186: cpu_idle: state=4294967295 cpu_id=0
30136          <idle>-0     (-----) [000] d..2 82315.599192: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
30137<...>-8962 ( 8943) [000] d..1 82315.599210: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=006
30138<...>-8961 ( 8943) [006] d..2 82315.599210: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
30139<...>-25493 ( 8943) [006] dnh1 82315.599225: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=006
30140<...>-25493 ( 8943) [006] d..2 82315.599228: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30141<...>-8961 ( 8943) [006] d..2 82315.599234: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
30142<...>-25493 ( 8943) [006] .... 82315.599297: binder_transaction: transaction=1568457 dest_node=0 dest_proc=9105 dest_thread=9105 reply=1 flags=0x0 code=0x0
30143<...>-8962 ( 8943) [000] d.h4 82315.599298: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=006
30144<...>-25493 ( 8943) [006] .... 82315.599299: binder_transaction_alloc_buf: transaction=1568457 data_size=752 offsets_size=0
30145<...>-25493 ( 8943) [006] d..2 82315.599300: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
30146<...>-9005 ( 8943) [004] d..3 82315.599302: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
30147<...>-25493 ( 8943) [006] dn.3 82315.599306: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
30148<...>-25493 ( 8943) [006] d..2 82315.599313: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
30149<...>-9005 ( 8943) [004] d..4 82315.599314: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
30150<...>-9105 ( 9105) [006] .... 82315.599318: binder_transaction_received: transaction=1568457
30151 s.nexuslauncher-10023 (10023) [005] dnh1 82315.599321: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=005
30152<...>-8962 ( 8943) [000] d.h6 82315.599321: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
30153 s.nexuslauncher-10023 (10023) [005] d..2 82315.599326: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
30154<...>-8962 ( 8943) [000] d.h7 82315.599331: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
30155  crtc_event:111-322   (  322) [005] d..2 82315.599336: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
30156<...>-8962 ( 8943) [000] d.h8 82315.599341: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
30157<...>-8962 ( 8943) [000] d.h6 82315.599352: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
30158 s.nexuslauncher-10023 (10023) [005] dnh1 82315.599353: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
30159 s.nexuslauncher-10023 (10023) [005] d..2 82315.599355: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
30160<...>-9005 ( 8943) [004] .... 82315.599366: binder_transaction: transaction=1568458 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
30161<...>-9005 ( 8943) [004] .... 82315.599368: binder_transaction_alloc_buf: transaction=1568458 data_size=96 offsets_size=0
30162<...>-8962 ( 8943) [000] d.h7 82315.599368: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=001
30163<...>-9005 ( 8943) [004] d..4 82315.599369: sched_waking: comm=Binder:9105_7 pid=9651 prio=120 target_cpu=006
30164          <idle>-0     (-----) [001] .n.1 82315.599373: cpu_idle: state=4294967295 cpu_id=1
30165<...>-9005 ( 8943) [004] d..5 82315.599375: sched_wakeup: comm=Binder:9105_7 pid=9651 prio=120 target_cpu=006
30166 crtc_commit:111-321   (  321) [005] d..2 82315.599376: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
30167          <idle>-0     (-----) [001] d..2 82315.599379: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
30168<...>-8962 ( 8943) [000] d..1 82315.599383: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=006
30169<...>-9105 ( 9105) [006] d.h1 82315.599396: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=006
30170 SDM_EventThread-644   (  619) [001] ...1 82315.599426: tracing_mark_write: B|619|HWCCallbacks::Vsync::
30171 SDM_EventThread-644   (  619) [001] ...1 82315.599437: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
30172 SDM_EventThread-644   (  619) [001] ...1 82315.599440: tracing_mark_write: E|619
30173<...>-8962 ( 8943) [000] d..3 82315.599445: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=006
30174           <...>-27550 (-----) [007] dnh1 82315.599466: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
30175           <...>-27550 (-----) [007] d..2 82315.599471: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
30176<...>-9005 ( 8943) [004] .... 82315.599485: binder_transaction: transaction=1568460 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
30177<...>-9005 ( 8943) [004] .... 82315.599487: binder_transaction_alloc_buf: transaction=1568460 data_size=76 offsets_size=0
30178<...>-9005 ( 8943) [004] ...2 82315.599488: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
30179<...>-9005 ( 8943) [004] d..4 82315.599489: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
30180 SDM_EventThread-644   (  619) [001] .... 82315.599496: binder_transaction: transaction=1568459 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
30181<...>-9005 ( 8943) [004] dn.5 82315.599497: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
30182 SDM_EventThread-644   (  619) [001] .... 82315.599499: binder_transaction_alloc_buf: transaction=1568459 data_size=76 offsets_size=0
30183<...>-9005 ( 8943) [004] d..2 82315.599500: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
30184 SDM_EventThread-644   (  619) [001] d..4 82315.599504: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=000
30185<...>-13083 ( 8858) [004] .... 82315.599505: binder_transaction_received: transaction=1568460
30186<...>-8962 ( 8943) [000] d..2 82315.599511: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
30187   system_server-8943  ( 8943) [007] .... 82315.599511: binder_transaction: transaction=1568461 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
30188   system_server-8943  ( 8943) [007] .... 82315.599513: binder_transaction_alloc_buf: transaction=1568461 data_size=96 offsets_size=0
30189<...>-13083 ( 8858) [004] .... 82315.599522: binder_transaction: transaction=1568462 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
30190<...>-13083 ( 8858) [004] .... 82315.599523: binder_transaction_alloc_buf: transaction=1568462 data_size=0 offsets_size=0
30191<...>-13083 ( 8858) [004] .... 82315.599524: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
30192 SDM_EventThread-644   (  619) [001] d..5 82315.599532: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
30193<...>-13083 ( 8858) [004] d..2 82315.599535: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
30194   system_server-8943  ( 8943) [007] .... 82315.599536: binder_transaction: transaction=1568463 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
30195          <idle>-0     (-----) [002] .n.1 82315.599536: cpu_idle: state=4294967295 cpu_id=2
30196   system_server-8943  ( 8943) [007] .... 82315.599537: binder_transaction_alloc_buf: transaction=1568463 data_size=96 offsets_size=0
30197<...>-9005 ( 8943) [004] .... 82315.599538: binder_transaction_received: transaction=1568462
30198          <idle>-0     (-----) [002] d..2 82315.599543: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
30199<...>-8890 ( 8858) [002] .... 82315.599548: binder_transaction_received: transaction=1568459
30200 SDM_EventThread-644   (  619) [001] ...1 82315.599552: tracing_mark_write: E|619
30201   system_server-8943  ( 8943) [007] .... 82315.599556: binder_transaction: transaction=1568464 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
30202   system_server-8943  ( 8943) [007] .... 82315.599557: binder_transaction_alloc_buf: transaction=1568464 data_size=96 offsets_size=0
30203     kworker/0:1-25262 (25262) [000] d..2 82315.599558: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30204 SDM_EventThread-644   (  619) [001] d..4 82315.599564: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
30205<...>-9105 ( 9105) [006] .... 82315.599577: binder_transaction: transaction=1568465 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
30206<...>-9105 ( 9105) [006] .... 82315.599579: binder_transaction_alloc_buf: transaction=1568465 data_size=96 offsets_size=0
30207<...>-9105 ( 9105) [006] d..4 82315.599580: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
30208<...>-8890 ( 8858) [002] ...1 82315.599586: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
30209   system_server-8943  ( 8943) [007] d..2 82315.599591: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
30210<...>-9105 ( 9105) [006] d..5 82315.599591: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
30211<...>-9105 ( 9105) [006] d..2 82315.599596: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_7 next_pid=9651 next_prio=120
30212<...>-9651 ( 9105) [006] .... 82315.599597: binder_transaction_received: transaction=1568458
30213<...>-8890 ( 8858) [002] d..1 82315.599598: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=005
30214 s.nexuslauncher-10023 (10023) [005] dnh1 82315.599603: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
30215 s.nexuslauncher-10023 (10023) [005] d..2 82315.599608: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
30216 crtc_commit:111-321   (  321) [005] d..2 82315.599616: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
30217<...>-9005 ( 8943) [004] dnh1 82315.599622: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=004
30218<...>-8890 ( 8858) [002] ...1 82315.599623: tracing_mark_write: E|8858
30219<...>-9005 ( 8943) [004] d..2 82315.599626: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
30220 SDM_EventThread-644   (  619) [001] d..2 82315.599634: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
30221        DispSync-8879  ( 8858) [004] d..2 82315.599639: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
30222<...>-9651 ( 9105) [006] d..4 82315.599647: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
30223<...>-9062 ( 8943) [001] .... 82315.599666: binder_transaction_received: transaction=1568465
30224<...>-9651 ( 9105) [006] d..5 82315.599672: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
30225<...>-9651 ( 9105) [006] .... 82315.599674: binder_transaction_received: transaction=1568461
30226<...>-8890 ( 8858) [002] d..2 82315.599675: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30227 s.nexuslauncher-10023 (10023) [005] d..3 82315.599678: sched_waking: comm=UiThreadHelper pid=16586 prio=118 target_cpu=007
30228          <idle>-0     (-----) [002] d..1 82315.599683: cpu_idle: state=0 cpu_id=2
30229 s.nexuslauncher-10023 (10023) [005] d..4 82315.599689: sched_wakeup: comm=UiThreadHelper pid=16586 prio=118 target_cpu=005
30230<...>-9651 ( 9105) [006] d..4 82315.599702: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=006
30231<...>-9651 ( 9105) [006] d..5 82315.599707: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=006
30232 s.nexuslauncher-10023 (10023) [005] d..2 82315.599709: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=UiThreadHelper next_pid=16586 next_prio=118
30233<...>-9651 ( 9105) [006] .... 82315.599709: binder_transaction_received: transaction=1568463
30234<...>-9651 ( 9105) [006] d..4 82315.599732: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
30235<...>-9651 ( 9105) [006] d..5 82315.599738: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
30236<...>-9651 ( 9105) [006] .... 82315.599740: binder_transaction_received: transaction=1568464
30237<...>-9651 ( 9105) [006] d..2 82315.599766: sched_switch: prev_comm=Binder:9105_7 prev_pid=9651 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
30238<...>-9380 ( 9105) [006] d..2 82315.599770: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
30239<...>-9132 ( 9105) [006] d..2 82315.599774: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
30240<...>-9131 ( 9105) [006] d..2 82315.599777: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
30241<...>-16586 ( 10023) [005] .... 82315.599787: binder_transaction: transaction=1568466 dest_node=1160283 dest_proc=9105 dest_thread=0 reply=0 flags=0x10 code=0x9
30242<...>-16586 ( 10023) [005] .... 82315.599789: binder_transaction_alloc_buf: transaction=1568466 data_size=120 offsets_size=0
30243<...>-16586 ( 10023) [005] ...2 82315.599790: binder_set_priority: proc=9105 thread=9131 old=120 => new=118 desired=118
30244<...>-16586 ( 10023) [005] d..4 82315.599792: sched_waking: comm=Binder:9105_1 pid=9131 prio=118 target_cpu=006
30245<...>-9005 ( 8943) [004] d..3 82315.599793: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
30246<...>-25493 ( 8943) [006] d..2 82315.599797: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30247<...>-16586 ( 10023) [005] d..5 82315.599803: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=118 target_cpu=006
30248<...>-9005 ( 8943) [004] d..4 82315.599806: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
30249          <idle>-0     (-----) [006] d..2 82315.599809: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
30250<...>-16586 ( 10023) [005] d..2 82315.599814: sched_switch: prev_comm=UiThreadHelper prev_pid=16586 prev_prio=118 prev_state=S ==> next_comm=android.display next_pid=8969 next_prio=117
30251<...>-9039 ( 8943) [006] d..2 82315.599823: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=118
30252<...>-9131 ( 9105) [006] .... 82315.599827: binder_transaction_received: transaction=1568466
30253<...>-9062 ( 8943) [001] .... 82315.599834: binder_transaction: transaction=1568467 dest_node=0 dest_proc=9105 dest_thread=9105 reply=1 flags=0x0 code=0x0
30254<...>-8969 ( 8943) [005] d..2 82315.599836: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
30255<...>-9062 ( 8943) [001] .... 82315.599837: binder_transaction_alloc_buf: transaction=1568467 data_size=340 offsets_size=0
30256<...>-9062 ( 8943) [001] d..2 82315.599839: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
30257          <idle>-0     (-----) [005] d..1 82315.599843: cpu_idle: state=0 cpu_id=5
30258<...>-9062 ( 8943) [001] d..3 82315.599855: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
30259<...>-9062 ( 8943) [001] d..2 82315.599901: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
30260<...>-9105 ( 9105) [001] .... 82315.599905: binder_transaction_received: transaction=1568467
30261<...>-9005 ( 8943) [004] .... 82315.599911: binder_transaction: transaction=1568468 dest_node=617843 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
30262<...>-9005 ( 8943) [004] .... 82315.599913: binder_transaction_alloc_buf: transaction=1568468 data_size=176 offsets_size=8
30263<...>-9005 ( 8943) [004] ...2 82315.599917: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
30264<...>-9005 ( 8943) [004] d..4 82315.599919: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
30265<...>-9005 ( 8943) [004] dn.5 82315.599923: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
30266<...>-9005 ( 8943) [004] d..2 82315.599926: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
30267<...>-13083 ( 8858) [004] .... 82315.599930: binder_transaction_received: transaction=1568468
30268<...>-9131 ( 9105) [006] .... 82315.599932: binder_transaction: transaction=1568469 dest_node=0 dest_proc=10023 dest_thread=16586 reply=1 flags=0x0 code=0x0
30269<...>-9131 ( 9105) [006] .... 82315.599934: binder_transaction_alloc_buf: transaction=1568469 data_size=4 offsets_size=0
30270<...>-9131 ( 9105) [006] d..2 82315.599936: sched_waking: comm=UiThreadHelper pid=16586 prio=118 target_cpu=005
30271<...>-9131 ( 9105) [006] d..3 82315.599943: sched_wakeup: comm=UiThreadHelper pid=16586 prio=118 target_cpu=006
30272<...>-9131 ( 9105) [006] .... 82315.599944: binder_set_priority: proc=9105 thread=9131 old=118 => new=120 desired=120
30273<...>-9131 ( 9105) [006] d..2 82315.599949: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=R+ ==> next_comm=UiThreadHelper next_pid=16586 next_prio=118
30274<...>-16586 ( 10023) [006] .... 82315.599953: binder_transaction_received: transaction=1568469
30275<...>-8961 ( 8943) [000] d..3 82315.599965: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
30276<...>-8961 ( 8943) [000] d..4 82315.599979: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
30277          <idle>-0     (-----) [002] .n.1 82315.599983: cpu_idle: state=4294967295 cpu_id=2
30278<...>-16586 ( 10023) [006] d..2 82315.599984: sched_switch: prev_comm=UiThreadHelper prev_pid=16586 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
30279          <idle>-0     (-----) [002] d..2 82315.599989: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
30280<...>-9131 ( 9105) [006] d..2 82315.599999: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30281<...>-9105 ( 9105) [001] .... 82315.600003: binder_transaction: transaction=1568470 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
30282          <idle>-0     (-----) [006] d..1 82315.600005: cpu_idle: state=0 cpu_id=6
30283<...>-9105 ( 9105) [001] .... 82315.600005: binder_transaction_alloc_buf: transaction=1568470 data_size=96 offsets_size=0
30284<...>-9105 ( 9105) [001] d..4 82315.600008: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
30285<...>-9105 ( 9105) [001] d..5 82315.600015: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
30286<...>-9105 ( 9105) [001] d..2 82315.600022: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
30287<...>-9062 ( 8943) [001] .... 82315.600026: binder_transaction_received: transaction=1568470
30288<...>-13083 ( 8858) [004] .... 82315.600084: binder_transaction: transaction=1568471 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
30289<...>-13083 ( 8858) [004] .... 82315.600086: binder_transaction_alloc_buf: transaction=1568471 data_size=52 offsets_size=16
30290           <...>-27550 (-----) [007] .... 82315.600093: binder_transaction: transaction=1568473 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
30291           <...>-27550 (-----) [007] .... 82315.600095: binder_transaction_alloc_buf: transaction=1568473 data_size=96 offsets_size=0
30292           <...>-27550 (-----) [007] d..4 82315.600097: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
30293           <...>-27550 (-----) [007] d..5 82315.600106: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=007
30294           <...>-27550 (-----) [007] d..2 82315.600110: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
30295<...>-25493 ( 8943) [007] .... 82315.600114: binder_transaction_received: transaction=1568473
30296<...>-9062 ( 8943) [001] .... 82315.600167: binder_transaction: transaction=1568475 dest_node=0 dest_proc=9105 dest_thread=9105 reply=1 flags=0x0 code=0x0
30297<...>-9062 ( 8943) [001] .... 82315.600170: binder_transaction_alloc_buf: transaction=1568475 data_size=340 offsets_size=0
30298<...>-9062 ( 8943) [001] d..2 82315.600172: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
30299<...>-9062 ( 8943) [001] d..3 82315.600180: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
30300<...>-25493 ( 8943) [007] .... 82315.600196: binder_transaction: transaction=1568476 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30301<...>-25493 ( 8943) [007] .... 82315.600198: binder_transaction_alloc_buf: transaction=1568476 data_size=340 offsets_size=0
30302<...>-25493 ( 8943) [007] d..2 82315.600199: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
30303<...>-9062 ( 8943) [001] d..2 82315.600200: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
30304<...>-25493 ( 8943) [007] d..3 82315.600203: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
30305<...>-9105 ( 9105) [001] .... 82315.600204: binder_transaction_received: transaction=1568475
30306<...>-25493 ( 8943) [007] d..2 82315.600213: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
30307           <...>-27550 (-----) [007] .... 82315.600217: binder_transaction_received: transaction=1568476
30308<...>-8961 ( 8943) [000] .... 82315.600262: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10023 comm=s.nexuslauncher
30309          <idle>-0     (-----) [006] ...1 82315.600263: cpu_idle: state=4294967295 cpu_id=6
30310          <idle>-0     (-----) [006] d..1 82315.600264: cpu_idle: state=0 cpu_id=6
30311<...>-13083 ( 8858) [004] .... 82315.600270: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
30312<...>-13083 ( 8858) [004] d..2 82315.600289: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
30313<...>-8961 ( 8943) [000] .... 82315.600291: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10023 comm=s.nexuslauncher
30314<...>-9005 ( 8943) [004] .... 82315.600293: binder_transaction_received: transaction=1568471
30315<...>-8961 ( 8943) [000] .... 82315.600300: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10023 comm=s.nexuslauncher
30316<...>-9005 ( 8943) [004] .... 82315.600317: binder_transaction: transaction=1568479 dest_node=1568477 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
30317<...>-9005 ( 8943) [004] .... 82315.600318: binder_transaction_alloc_buf: transaction=1568479 data_size=80 offsets_size=0
30318<...>-9005 ( 8943) [004] ...2 82315.600319: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
30319<...>-9005 ( 8943) [004] d..4 82315.600320: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
30320<...>-9005 ( 8943) [004] dn.5 82315.600324: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
30321<...>-9005 ( 8943) [004] d..2 82315.600327: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
30322<...>-13083 ( 8858) [004] .... 82315.600329: binder_transaction_received: transaction=1568479
30323<...>-9105 ( 9105) [001] d..3 82315.600330: sched_waking: comm=recents.fg pid=9368 prio=120 target_cpu=007
30324<...>-13083 ( 8858) [004] .... 82315.600336: binder_transaction: transaction=1568480 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x8 code=0x0
30325<...>-13083 ( 8858) [004] .... 82315.600337: binder_transaction_alloc_buf: transaction=1568480 data_size=4 offsets_size=0
30326<...>-13083 ( 8858) [004] .... 82315.600338: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
30327<...>-13083 ( 8858) [004] d..2 82315.600348: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
30328<...>-9005 ( 8943) [004] .... 82315.600350: binder_transaction_received: transaction=1568480
30329          <idle>-0     (-----) [006] dnh2 82315.600353: sched_wakeup: comm=recents.fg pid=9368 prio=120 target_cpu=006
30330          <idle>-0     (-----) [006] .n.1 82315.600355: cpu_idle: state=4294967295 cpu_id=6
30331          <idle>-0     (-----) [006] d..2 82315.600359: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=recents.fg next_pid=9368 next_prio=120
30332<...>-8961 ( 8943) [000] .... 82315.600366: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10045 comm=Jit thread pool
30333<...>-8961 ( 8943) [000] .... 82315.600376: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10045 comm=Jit thread pool
30334<...>-8961 ( 8943) [000] .... 82315.600382: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10045 comm=Jit thread pool
30335<...>-8961 ( 8943) [000] .... 82315.600416: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10056 comm=Signal Catcher
30336<...>-9368 ( 9105) [006] .... 82315.600417: binder_transaction: transaction=1568481 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x5c
30337<...>-9368 ( 9105) [006] .... 82315.600418: binder_transaction_alloc_buf: transaction=1568481 data_size=84 offsets_size=0
30338<...>-9105 ( 9105) [001] .... 82315.600419: binder_transaction: transaction=1568482 dest_node=409920 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x2
30339<...>-9368 ( 9105) [006] d..4 82315.600419: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=007
30340<...>-9105 ( 9105) [001] .... 82315.600421: binder_transaction_alloc_buf: transaction=1568482 data_size=84 offsets_size=0
30341<...>-8961 ( 8943) [000] .... 82315.600425: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10056 comm=Signal Catcher
30342<...>-9368 ( 9105) [006] d..5 82315.600427: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
30343<...>-9105 ( 9105) [001] d..4 82315.600429: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
30344<...>-8961 ( 8943) [000] .... 82315.600431: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10056 comm=Signal Catcher
30345<...>-9368 ( 9105) [006] d.h2 82315.600450: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
30346<...>-8961 ( 8943) [000] .... 82315.600476: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10058 comm=ADB-JDWP Connec
30347<...>-9368 ( 9105) [006] d..2 82315.600479: sched_switch: prev_comm=recents.fg prev_pid=9368 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
30348<...>-9062 ( 8943) [006] .... 82315.600482: binder_transaction_received: transaction=1568482
30349<...>-821 ( 821) [002] d..2 82315.600485: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30350<...>-8961 ( 8943) [000] .... 82315.600486: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10058 comm=ADB-JDWP Connec
30351<...>-8961 ( 8943) [000] .... 82315.600493: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10058 comm=ADB-JDWP Connec
30352          <idle>-0     (-----) [002] d..1 82315.600495: cpu_idle: state=0 cpu_id=2
30353<...>-9062 ( 8943) [006] d..3 82315.600523: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=000
30354<...>-8961 ( 8943) [000] .... 82315.600525: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10059 comm=ReferenceQueueD
30355<...>-8961 ( 8943) [000] .... 82315.600534: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10059 comm=ReferenceQueueD
30356<...>-9062 ( 8943) [006] d..4 82315.600535: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
30357<...>-8961 ( 8943) [000] .... 82315.600540: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10059 comm=ReferenceQueueD
30358<...>-8961 ( 8943) [000] .... 82315.600572: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10060 comm=FinalizerDaemon
30359<...>-9062 ( 8943) [006] d..2 82315.600576: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
30360<...>-8961 ( 8943) [000] .... 82315.600582: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10060 comm=FinalizerDaemon
30361<...>-8961 ( 8943) [000] .... 82315.600587: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10060 comm=FinalizerDaemon
30362<...>-8962 ( 8943) [006] d..2 82315.600596: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
30363<...>-25493 ( 8943) [006] .... 82315.600598: binder_transaction_received: transaction=1568481
30364<...>-8961 ( 8943) [000] .... 82315.600622: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10061 comm=FinalizerWatchd
30365<...>-8961 ( 8943) [000] .... 82315.600631: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10061 comm=FinalizerWatchd
30366<...>-8961 ( 8943) [000] .... 82315.600637: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10061 comm=FinalizerWatchd
30367<...>-8961 ( 8943) [000] .... 82315.600669: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10062 comm=HeapTaskDaemon
30368<...>-25493 ( 8943) [006] d..2 82315.600672: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30369          <idle>-0     (-----) [006] d..1 82315.600677: cpu_idle: state=0 cpu_id=6
30370<...>-8961 ( 8943) [000] .... 82315.600678: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10062 comm=HeapTaskDaemon
30371<...>-8961 ( 8943) [000] .... 82315.600684: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10062 comm=HeapTaskDaemon
30372<...>-8961 ( 8943) [000] .... 82315.600716: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10063 comm=Binder:10023_1
30373<...>-8961 ( 8943) [000] .... 82315.600725: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10063 comm=Binder:10023_1
30374<...>-8961 ( 8943) [000] .... 82315.600731: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10063 comm=Binder:10023_1
30375<...>-9005 ( 8943) [004] d..3 82315.600732: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
30376<...>-9005 ( 8943) [004] d..4 82315.600740: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
30377<...>-9005 ( 8943) [004] d..1 82315.600744: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
30378          <idle>-0     (-----) [006] .n.1 82315.600745: cpu_idle: state=4294967295 cpu_id=6
30379<...>-9105 ( 9105) [001] .... 82315.600747: binder_transaction: transaction=1568483 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
30380          <idle>-0     (-----) [006] d..2 82315.600748: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
30381<...>-9005 ( 8943) [004] d..2 82315.600750: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
30382<...>-9105 ( 9105) [001] .... 82315.600750: binder_transaction_alloc_buf: transaction=1568483 data_size=80 offsets_size=0
30383<...>-9105 ( 9105) [001] d..4 82315.600753: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
30384          <idle>-0     (-----) [005] .n.1 82315.600754: cpu_idle: state=4294967295 cpu_id=5
30385          <idle>-0     (-----) [005] d..2 82315.600758: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
30386<...>-8961 ( 8943) [000] .... 82315.600763: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10088 comm=Binder:10023_2
30387<...>-9039 ( 8943) [006] d..2 82315.600766: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30388          <idle>-0     (-----) [006] d..1 82315.600769: cpu_idle: state=0 cpu_id=6
30389<...>-8961 ( 8943) [000] .... 82315.600772: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10088 comm=Binder:10023_2
30390          <idle>-0     (-----) [006] dnh2 82315.600774: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
30391          <idle>-0     (-----) [006] .n.1 82315.600776: cpu_idle: state=4294967295 cpu_id=6
30392<...>-8961 ( 8943) [000] .... 82315.600778: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10088 comm=Binder:10023_2
30393          <idle>-0     (-----) [006] d..2 82315.600779: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
30394<...>-13083 ( 8858) [006] .... 82315.600782: binder_transaction_received: transaction=1568483
30395<...>-9105 ( 9105) [001] d..3 82315.600789: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
30396<...>-13083 ( 8858) [006] d..1 82315.600795: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
30397<...>-13083 ( 8858) [006] d.h2 82315.600809: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
30398<...>-8961 ( 8943) [000] .... 82315.600812: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10100 comm=Profile Saver
30399          <idle>-0     (-----) [003] dnh2 82315.600813: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
30400          <idle>-0     (-----) [003] .n.1 82315.600817: cpu_idle: state=4294967295 cpu_id=3
30401<...>-8961 ( 8943) [000] .... 82315.600821: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10100 comm=Profile Saver
30402          <idle>-0     (-----) [003] d..2 82315.600822: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
30403<...>-8969 ( 8943) [005] d..2 82315.600823: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
30404<...>-13083 ( 8858) [006] d..2 82315.600824: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
30405          <idle>-0     (-----) [005] d..1 82315.600827: cpu_idle: state=0 cpu_id=5
30406<...>-8961 ( 8943) [000] .... 82315.600827: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10100 comm=Profile Saver
30407    RenderThread-9436  ( 9105) [006] d..2 82315.600844: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30408          <idle>-0     (-----) [006] d..1 82315.600848: cpu_idle: state=0 cpu_id=6
30409<...>-8961 ( 8943) [000] .... 82315.600860: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10131 comm=pool-1-thread-1
30410  appEventThread-8881  ( 8858) [003] d..2 82315.600869: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30411<...>-8961 ( 8943) [000] .... 82315.600870: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10131 comm=pool-1-thread-1
30412          <idle>-0     (-----) [003] d..1 82315.600876: cpu_idle: state=0 cpu_id=3
30413<...>-8961 ( 8943) [000] .... 82315.600882: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10136 comm=launcher-loader
30414<...>-8961 ( 8943) [000] .... 82315.600890: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10136 comm=launcher-loader
30415<...>-8961 ( 8943) [000] .... 82315.600896: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10136 comm=launcher-loader
30416<...>-8961 ( 8943) [000] .... 82315.600928: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10175 comm=GAC_Executor[0]
30417<...>-8961 ( 8943) [000] .... 82315.600938: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10175 comm=GAC_Executor[0]
30418<...>-8961 ( 8943) [000] .... 82315.600943: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10175 comm=GAC_Executor[0]
30419<...>-8961 ( 8943) [000] .... 82315.600976: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10177 comm=GoogleApiHandle
30420<...>-9105 ( 9105) [001] d..2 82315.600982: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30421<...>-8961 ( 8943) [000] .... 82315.600985: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10177 comm=GoogleApiHandle
30422<...>-8961 ( 8943) [000] .... 82315.600991: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10177 comm=GoogleApiHandle
30423          <idle>-0     (-----) [001] d..1 82315.600994: cpu_idle: state=0 cpu_id=1
30424<...>-9005 ( 8943) [004] .... 82315.601023: binder_transaction: transaction=1568484 dest_node=617822 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
30425<...>-8961 ( 8943) [000] .... 82315.601025: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10205 comm=queued-work-loo
30426<...>-9005 ( 8943) [004] .... 82315.601025: binder_transaction_alloc_buf: transaction=1568484 data_size=80 offsets_size=0
30427<...>-9005 ( 8943) [004] d..4 82315.601027: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
30428<...>-8961 ( 8943) [000] .... 82315.601034: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10205 comm=queued-work-loo
30429<...>-9005 ( 8943) [004] d..5 82315.601034: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
30430          <idle>-0     (-----) [006] .n.1 82315.601038: cpu_idle: state=4294967295 cpu_id=6
30431<...>-8961 ( 8943) [000] .... 82315.601039: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10205 comm=queued-work-loo
30432          <idle>-0     (-----) [006] d..2 82315.601042: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
30433<...>-13083 ( 8858) [006] .... 82315.601045: binder_transaction_received: transaction=1568484
30434<...>-13083 ( 8858) [006] d..1 82315.601051: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
30435          <idle>-0     (-----) [003] dnh2 82315.601064: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
30436<...>-9005 ( 8943) [004] d..2 82315.601064: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30437<...>-13083 ( 8858) [006] d..2 82315.601066: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30438          <idle>-0     (-----) [003] .n.1 82315.601067: cpu_idle: state=4294967295 cpu_id=3
30439          <idle>-0     (-----) [006] d..1 82315.601069: cpu_idle: state=0 cpu_id=6
30440<...>-8961 ( 8943) [000] .... 82315.601072: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10472 comm=GAC_Executor[1]
30441          <idle>-0     (-----) [003] d..2 82315.601073: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
30442          <idle>-0     (-----) [004] d..1 82315.601074: cpu_idle: state=0 cpu_id=4
30443<...>-8961 ( 8943) [000] .... 82315.601081: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10472 comm=GAC_Executor[1]
30444<...>-8961 ( 8943) [000] .... 82315.601087: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10472 comm=GAC_Executor[1]
30445  appEventThread-8881  ( 8858) [003] d..2 82315.601092: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30446          <idle>-0     (-----) [003] d..1 82315.601097: cpu_idle: state=0 cpu_id=3
30447          <idle>-0     (-----) [006] .n.1 82315.601118: cpu_idle: state=4294967295 cpu_id=6
30448<...>-8961 ( 8943) [000] .... 82315.601121: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10531 comm=Binder:10023_3
30449          <idle>-0     (-----) [006] d..2 82315.601122: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27569 next_prio=120
30450<...>-8961 ( 8943) [000] .... 82315.601130: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10531 comm=Binder:10023_3
30451<...>-8961 ( 8943) [000] .... 82315.601136: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10531 comm=Binder:10023_3
30452           <...>-27569 (-----) [006] d..1 82315.601144: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
30453           <...>-27550 (-----) [007] d..2 82315.601148: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
30454           <...>-27569 (-----) [006] d..2 82315.601154: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
30455           <...>-27569 (-----) [006] d..2 82315.601158: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
30456          <idle>-0     (-----) [007] d..2 82315.601161: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
30457<...>-8961 ( 8943) [000] .... 82315.601169: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=10726 comm=Binder:10023_4
30458<...>-8961 ( 8943) [000] .... 82315.601178: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10726 comm=Binder:10023_4
30459<...>-8961 ( 8943) [000] .... 82315.601184: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=10726 comm=Binder:10023_4
30460           <...>-27550 (-----) [007] .... 82315.601191: binder_transaction: transaction=1568485 dest_node=396343 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x31
30461           <...>-27550 (-----) [007] .... 82315.601192: binder_transaction_alloc_buf: transaction=1568485 data_size=64 offsets_size=0
30462           <...>-27550 (-----) [007] d..4 82315.601193: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
30463           <...>-27550 (-----) [007] dn.5 82315.601201: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
30464           <...>-27550 (-----) [007] d..2 82315.601203: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
30465<...>-9062 ( 8943) [007] .... 82315.601207: binder_transaction_received: transaction=1568485
30466<...>-8961 ( 8943) [000] .... 82315.601217: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=11605 comm=smartspace-load
30467<...>-8961 ( 8943) [000] .... 82315.601226: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=11605 comm=smartspace-load
30468<...>-8961 ( 8943) [000] .... 82315.601232: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=11605 comm=smartspace-load
30469<...>-8961 ( 8943) [000] .... 82315.601263: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16586 comm=UiThreadHelper
30470<...>-8961 ( 8943) [000] .... 82315.601272: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16586 comm=UiThreadHelper
30471<...>-8961 ( 8943) [000] .... 82315.601278: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16586 comm=UiThreadHelper
30472<...>-9062 ( 8943) [007] .... 82315.601291: binder_transaction: transaction=1568486 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30473<...>-9062 ( 8943) [007] .... 82315.601292: binder_transaction_alloc_buf: transaction=1568486 data_size=8 offsets_size=0
30474<...>-9062 ( 8943) [007] d..2 82315.601302: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
30475           <...>-27550 (-----) [007] .... 82315.601306: binder_transaction_received: transaction=1568486
30476<...>-8961 ( 8943) [000] .... 82315.601310: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16587 comm=pool-1-thread-2
30477<...>-8961 ( 8943) [000] .... 82315.601320: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16587 comm=pool-1-thread-2
30478<...>-8961 ( 8943) [000] .... 82315.601326: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16587 comm=pool-1-thread-2
30479<...>-8961 ( 8943) [000] .... 82315.601359: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16594 comm=Recents-HighRes
30480<...>-8961 ( 8943) [000] .... 82315.601369: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16594 comm=Recents-HighRes
30481           <...>-27550 (-----) [007] .... 82315.601380: binder_transaction: transaction=1568487 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x2c
30482           <...>-27550 (-----) [007] .... 82315.601381: binder_transaction_alloc_buf: transaction=1568487 data_size=100 offsets_size=8
30483<...>-8961 ( 8943) [000] .... 82315.601381: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16595 comm=Recents-TaskRes
30484           <...>-27550 (-----) [007] d..4 82315.601385: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
30485           <...>-27550 (-----) [007] dn.5 82315.601389: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
30486<...>-8961 ( 8943) [000] .... 82315.601390: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16595 comm=Recents-TaskRes
30487           <...>-27550 (-----) [007] d..2 82315.601392: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
30488<...>-9062 ( 8943) [007] .... 82315.601394: binder_transaction_received: transaction=1568487
30489<...>-8961 ( 8943) [000] .... 82315.601402: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16596 comm=pool-3-thread-1
30490<...>-8961 ( 8943) [000] .... 82315.601410: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16596 comm=pool-3-thread-1
30491<...>-8961 ( 8943) [000] .... 82315.601416: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16596 comm=pool-3-thread-1
30492<...>-9062 ( 8943) [007] d..2 82315.601442: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
30493<...>-8961 ( 8943) [000] .... 82315.601449: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16602 comm=qsb-experiments
30494           <...>-27550 (-----) [007] d..2 82315.601451: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30495          <idle>-0     (-----) [007] d..1 82315.601459: cpu_idle: state=0 cpu_id=7
30496<...>-8961 ( 8943) [000] .... 82315.601459: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16602 comm=qsb-experiments
30497<...>-8961 ( 8943) [000] .... 82315.601465: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16602 comm=qsb-experiments
30498           <...>-27569 (-----) [006] d..2 82315.601467: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
30499          <idle>-0     (-----) [001] dnh2 82315.601488: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
30500          <idle>-0     (-----) [001] .n.1 82315.601492: cpu_idle: state=4294967295 cpu_id=1
30501<...>-8961 ( 8943) [000] .... 82315.601498: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16603 comm=magnifier pixel
30502          <idle>-0     (-----) [001] d..2 82315.601499: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
30503<...>-8961 ( 8943) [000] .... 82315.601507: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16603 comm=magnifier pixel
30504<...>-8961 ( 8943) [000] .... 82315.601513: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16603 comm=magnifier pixel
30505<...>-8961 ( 8943) [000] .... 82315.601547: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16604 comm=search-thread
30506<...>-8961 ( 8943) [000] .... 82315.601556: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16604 comm=search-thread
30507<...>-8961 ( 8943) [000] .... 82315.601562: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16604 comm=search-thread
30508<...>-8961 ( 8943) [000] .... 82315.601595: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16607 comm=RenderThread
30509<...>-8961 ( 8943) [000] .... 82315.601604: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16607 comm=RenderThread
30510<...>-8961 ( 8943) [000] .... 82315.601610: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16607 comm=RenderThread
30511<...>-8961 ( 8943) [000] .... 82315.601643: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16608 comm=remote-ui
30512          <idle>-0     (-----) [007] ...1 82315.601651: cpu_idle: state=4294967295 cpu_id=7
30513          <idle>-0     (-----) [007] d..1 82315.601652: cpu_idle: state=0 cpu_id=7
30514<...>-8961 ( 8943) [000] .... 82315.601652: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16608 comm=remote-ui
30515<...>-8961 ( 8943) [000] .... 82315.601658: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16608 comm=remote-ui
30516<...>-8961 ( 8943) [000] .... 82315.601690: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16610 comm=reflection-thre
30517<...>-8961 ( 8943) [000] .... 82315.601699: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16610 comm=reflection-thre
30518<...>-8961 ( 8943) [000] .... 82315.601706: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16610 comm=reflection-thre
30519<...>-581 ( 571) [001] d..2 82315.601720: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30520          <idle>-0     (-----) [001] d..1 82315.601729: cpu_idle: state=0 cpu_id=1
30521<...>-8961 ( 8943) [000] .... 82315.601740: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16611 comm=reflection-plac
30522<...>-8961 ( 8943) [000] .... 82315.601749: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16611 comm=reflection-plac
30523<...>-8961 ( 8943) [000] .... 82315.601755: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16611 comm=reflection-plac
30524<...>-8961 ( 8943) [000] d.h2 82315.601800: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
30525<...>-8961 ( 8943) [000] dnh3 82315.601807: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
30526<...>-8961 ( 8943) [000] d..2 82315.601821: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
30527          <idle>-0     (-----) [001] ...1 82315.601829: cpu_idle: state=4294967295 cpu_id=1
30528          <idle>-0     (-----) [001] d..1 82315.601832: cpu_idle: state=0 cpu_id=1
30529          <idle>-0     (-----) [007] .n.1 82315.601846: cpu_idle: state=4294967295 cpu_id=7
30530          <idle>-0     (-----) [007] d..2 82315.601871: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30531     migration/0-13    (   13) [000] d..2 82315.601884: 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
30532<...>-8961 ( 8943) [007] .... 82315.601894: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16612 comm=GrallocUploadTh
30533<...>-8961 ( 8943) [007] .... 82315.601900: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16612 comm=GrallocUploadTh
30534          <idle>-0     (-----) [000] d..1 82315.601900: cpu_idle: state=0 cpu_id=0
30535<...>-8961 ( 8943) [007] .... 82315.601902: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16612 comm=GrallocUploadTh
30536<...>-8961 ( 8943) [007] .... 82315.601924: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16614 comm=pool-1-thread-3
30537           <...>-27569 (-----) [006] d..2 82315.601926: sched_switch: prev_comm=EGL Init prev_pid=27569 prev_prio=120 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
30538<...>-8961 ( 8943) [007] .... 82315.601928: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16614 comm=pool-1-thread-3
30539<...>-8961 ( 8943) [007] .... 82315.601930: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16614 comm=pool-1-thread-3
30540          <idle>-0     (-----) [006] d..1 82315.601936: cpu_idle: state=0 cpu_id=6
30541<...>-8961 ( 8943) [007] .... 82315.601944: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=16615 comm=file-logger
30542<...>-8961 ( 8943) [007] .... 82315.601948: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16615 comm=file-logger
30543<...>-8961 ( 8943) [007] .... 82315.601950: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=16615 comm=file-logger
30544<...>-8961 ( 8943) [007] .... 82315.601963: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=18018 comm=Binder:10023_5
30545<...>-8961 ( 8943) [007] .... 82315.601967: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=18018 comm=Binder:10023_5
30546<...>-8961 ( 8943) [007] .... 82315.601969: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=18018 comm=Binder:10023_5
30547<...>-8961 ( 8943) [007] .... 82315.601982: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=18840 comm=hwuiTask1
30548<...>-8961 ( 8943) [007] .... 82315.601985: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=18840 comm=hwuiTask1
30549<...>-8961 ( 8943) [007] .... 82315.601987: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=18840 comm=hwuiTask1
30550<...>-8961 ( 8943) [007] .... 82315.602002: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=23680 comm=Binder:10023_6
30551<...>-8961 ( 8943) [007] .... 82315.602005: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=23680 comm=Binder:10023_6
30552<...>-8961 ( 8943) [007] .... 82315.602007: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=23680 comm=Binder:10023_6
30553<...>-8961 ( 8943) [007] .... 82315.602022: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=24097 comm=pool-3-thread-2
30554<...>-8961 ( 8943) [007] .... 82315.602025: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24097 comm=pool-3-thread-2
30555<...>-8961 ( 8943) [007] .... 82315.602027: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=24097 comm=pool-3-thread-2
30556          <idle>-0     (-----) [006] ...1 82315.602127: cpu_idle: state=4294967295 cpu_id=6
30557          <idle>-0     (-----) [006] d..1 82315.602128: cpu_idle: state=0 cpu_id=6
30558<...>-8961 ( 8943) [007] .... 82315.602144: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27550 comm=id.nn.benchmark
30559<...>-8961 ( 8943) [007] .... 82315.602154: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27550 comm=id.nn.benchmark
30560<...>-8961 ( 8943) [007] .... 82315.602157: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27550 comm=id.nn.benchmark
30561<...>-8961 ( 8943) [007] .... 82315.602172: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27555 comm=Jit thread pool
30562<...>-8961 ( 8943) [007] .... 82315.602175: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27555 comm=Jit thread pool
30563<...>-8961 ( 8943) [007] .... 82315.602177: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27555 comm=Jit thread pool
30564<...>-8961 ( 8943) [007] .... 82315.602195: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27556 comm=Signal Catcher
30565<...>-8961 ( 8943) [007] .... 82315.602199: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27556 comm=Signal Catcher
30566<...>-8961 ( 8943) [007] .... 82315.602201: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27556 comm=Signal Catcher
30567<...>-8961 ( 8943) [007] .... 82315.602215: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27557 comm=ADB-JDWP Connec
30568<...>-8961 ( 8943) [007] .... 82315.602218: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27557 comm=ADB-JDWP Connec
30569<...>-8961 ( 8943) [007] .... 82315.602220: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27557 comm=ADB-JDWP Connec
30570<...>-8961 ( 8943) [007] .... 82315.602236: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27558 comm=ReferenceQueueD
30571<...>-8961 ( 8943) [007] .... 82315.602239: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27558 comm=ReferenceQueueD
30572<...>-8961 ( 8943) [007] .... 82315.602241: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27558 comm=ReferenceQueueD
30573<...>-8961 ( 8943) [007] .... 82315.602256: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27559 comm=FinalizerDaemon
30574<...>-8961 ( 8943) [007] .... 82315.602259: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27559 comm=FinalizerDaemon
30575<...>-8961 ( 8943) [007] .... 82315.602261: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27559 comm=FinalizerDaemon
30576<...>-8961 ( 8943) [007] .... 82315.602275: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27560 comm=FinalizerWatchd
30577<...>-8961 ( 8943) [007] .... 82315.602277: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27560 comm=FinalizerWatchd
30578<...>-8961 ( 8943) [007] .... 82315.602279: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27560 comm=FinalizerWatchd
30579<...>-8961 ( 8943) [007] .... 82315.602293: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27561 comm=HeapTaskDaemon
30580<...>-8961 ( 8943) [007] .... 82315.602296: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27561 comm=HeapTaskDaemon
30581<...>-8961 ( 8943) [007] .... 82315.602298: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27561 comm=HeapTaskDaemon
30582<...>-8961 ( 8943) [007] .... 82315.602313: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27562 comm=Binder:27550_1
30583<...>-8961 ( 8943) [007] .... 82315.602316: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27562 comm=Binder:27550_1
30584<...>-8961 ( 8943) [007] .... 82315.602318: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27562 comm=Binder:27550_1
30585<...>-8961 ( 8943) [007] .... 82315.602330: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27563 comm=Binder:27550_2
30586<...>-8961 ( 8943) [007] .... 82315.602333: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27563 comm=Binder:27550_2
30587<...>-8961 ( 8943) [007] .... 82315.602335: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27563 comm=Binder:27550_2
30588<...>-8961 ( 8943) [007] .... 82315.602347: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27564 comm=Binder:27550_3
30589<...>-8961 ( 8943) [007] .... 82315.602350: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27564 comm=Binder:27550_3
30590<...>-8961 ( 8943) [007] .... 82315.602351: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27564 comm=Binder:27550_3
30591<...>-8961 ( 8943) [007] .... 82315.602362: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27565 comm=Profile Saver
30592<...>-8961 ( 8943) [007] .... 82315.602365: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27565 comm=Profile Saver
30593<...>-8961 ( 8943) [007] .... 82315.602367: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27565 comm=Profile Saver
30594<...>-8961 ( 8943) [007] .... 82315.602381: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27566 comm=roidJUnitRunner
30595<...>-8961 ( 8943) [007] .... 82315.602384: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27566 comm=roidJUnitRunner
30596<...>-8961 ( 8943) [007] .... 82315.602386: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27566 comm=roidJUnitRunner
30597<...>-8961 ( 8943) [007] .... 82315.602399: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27567 comm=Instrumentation
30598<...>-8961 ( 8943) [007] .... 82315.602402: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27567 comm=Instrumentation
30599<...>-8961 ( 8943) [007] .... 82315.602404: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27567 comm=Instrumentation
30600<...>-8961 ( 8943) [007] .... 82315.602416: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=27568 comm=MonitoringInstr
30601<...>-8961 ( 8943) [007] .... 82315.602419: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27568 comm=MonitoringInstr
30602<...>-8961 ( 8943) [007] .... 82315.602421: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=27568 comm=MonitoringInstr
30603<...>-8961 ( 8943) [007] d..3 82315.602454: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=001
30604<...>-8961 ( 8943) [007] d..3 82315.602472: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
30605          <idle>-0     (-----) [000] dnh2 82315.602475: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=000
30606          <idle>-0     (-----) [000] .n.1 82315.602479: cpu_idle: state=4294967295 cpu_id=0
30607<...>-8961 ( 8943) [007] d..4 82315.602479: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
30608          <idle>-0     (-----) [006] .n.1 82315.602483: cpu_idle: state=4294967295 cpu_id=6
30609          <idle>-0     (-----) [000] d..2 82315.602485: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=8960 next_prio=120
30610          <idle>-0     (-----) [006] d..2 82315.602486: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
30611<...>-8962 ( 8943) [006] d..2 82315.602512: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30612          <idle>-0     (-----) [006] d..1 82315.602516: cpu_idle: state=0 cpu_id=6
30613<...>-8961 ( 8943) [007] d..2 82315.602550: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
30614          <idle>-0     (-----) [001] dnh2 82315.602569: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
30615          <idle>-0     (-----) [001] .n.1 82315.602572: cpu_idle: state=4294967295 cpu_id=1
30616          <idle>-0     (-----) [001] d..2 82315.602579: 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
30617<...>-8960 ( 8943) [000] d..2 82315.602591: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30618<...>-8961 ( 8943) [007] d..1 82315.602599: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
30619          <idle>-0     (-----) [000] d..1 82315.602599: cpu_idle: state=0 cpu_id=0
30620<...>-8961 ( 8943) [007] d..2 82315.602606: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
30621          <idle>-0     (-----) [006] .n.1 82315.602610: cpu_idle: state=4294967295 cpu_id=6
30622          <idle>-0     (-----) [006] d..2 82315.602614: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
30623<...>-25493 ( 8943) [006] d..1 82315.602619: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=007
30624<...>-8961 ( 8943) [007] d..2 82315.602625: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30625<...>-25493 ( 8943) [006] d..2 82315.602631: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=007
30626          <idle>-0     (-----) [007] d..2 82315.602634: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30627<...>-25493 ( 8943) [006] d..1 82315.602638: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
30628<...>-25493 ( 8943) [006] d..2 82315.602642: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
30629<...>-8961 ( 8943) [007] d..2 82315.602645: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
30630<...>-25493 ( 8943) [006] d..1 82315.602647: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=007
30631<...>-25493 ( 8943) [006] d..2 82315.602650: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=007
30632<...>-9062 ( 8943) [007] d..1 82315.602656: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
30633<...>-9062 ( 8943) [007] d..2 82315.602665: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
30634<...>-25493 ( 8943) [006] .... 82315.602682: binder_transaction: transaction=1568488 dest_node=0 dest_proc=9105 dest_thread=9368 reply=1 flags=0x0 code=0x0
30635<...>-25493 ( 8943) [006] .... 82315.602684: binder_transaction_alloc_buf: transaction=1568488 data_size=8 offsets_size=0
30636<...>-25493 ( 8943) [006] d..2 82315.602685: sched_waking: comm=recents.fg pid=9368 prio=120 target_cpu=006
30637<...>-25493 ( 8943) [006] d..3 82315.602690: sched_wakeup: comm=recents.fg pid=9368 prio=120 target_cpu=006
30638<...>-9062 ( 8943) [007] .... 82315.602697: binder_transaction: transaction=1568489 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30639<...>-9062 ( 8943) [007] .... 82315.602698: binder_transaction_alloc_buf: transaction=1568489 data_size=8 offsets_size=0
30640<...>-9062 ( 8943) [007] d..2 82315.602699: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
30641<...>-25493 ( 8943) [006] d..2 82315.602701: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=recents.fg next_pid=9368 next_prio=120
30642<...>-9368 ( 9105) [006] .... 82315.602705: binder_transaction_received: transaction=1568488
30643   statsd.writer-1044  (  901) [001] d..2 82315.602706: 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
30644<...>-9062 ( 8943) [007] d..3 82315.602711: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
30645          <idle>-0     (-----) [001] d..1 82315.602714: cpu_idle: state=0 cpu_id=1
30646          <idle>-0     (-----) [004] .n.1 82315.602716: cpu_idle: state=4294967295 cpu_id=4
30647          <idle>-0     (-----) [004] d..2 82315.602720: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30648<...>-9062 ( 8943) [007] d..2 82315.602724: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
30649           <...>-27550 (-----) [004] .... 82315.602725: binder_transaction_received: transaction=1568489
30650<...>-9368 ( 9105) [006] d..2 82315.602744: sched_switch: prev_comm=recents.fg prev_pid=9368 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30651          <idle>-0     (-----) [006] d..1 82315.602749: cpu_idle: state=0 cpu_id=6
30652<...>-8962 ( 8943) [007] .... 82315.602769: binder_transaction: transaction=1568490 dest_node=417419 dest_proc=9748 dest_thread=0 reply=0 flags=0x11 code=0x1
30653<...>-8962 ( 8943) [007] .... 82315.602771: binder_transaction_alloc_buf: transaction=1568490 data_size=80 offsets_size=0
30654<...>-8962 ( 8943) [007] d..4 82315.602773: sched_waking: comm=Binder:9748_4 pid=10178 prio=120 target_cpu=002
30655<...>-8962 ( 8943) [007] d..5 82315.602789: sched_wakeup: comm=Binder:9748_4 pid=10178 prio=120 target_cpu=006
30656          <idle>-0     (-----) [006] .n.1 82315.602793: cpu_idle: state=4294967295 cpu_id=6
30657          <idle>-0     (-----) [006] d..2 82315.602807: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9748_4 next_pid=10178 next_prio=120
30658<...>-10178 ( 9748) [006] .... 82315.602812: binder_transaction_received: transaction=1568490
30659<...>-8962 ( 8943) [007] d..3 82315.602843: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=002
30660<...>-8962 ( 8943) [007] d..4 82315.602856: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=006
30661<...>-8962 ( 8943) [007] d..3 82315.602881: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=000
30662<...>-8962 ( 8943) [007] d..4 82315.602891: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
30663<...>-8962 ( 8943) [007] d..3 82315.602912: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=000
30664<...>-8962 ( 8943) [007] d..3 82315.602924: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
30665          <idle>-0     (-----) [000] dnh2 82315.602926: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=000
30666          <idle>-0     (-----) [000] .n.1 82315.602930: cpu_idle: state=4294967295 cpu_id=0
30667<...>-8962 ( 8943) [007] d..4 82315.602931: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=006
30668          <idle>-0     (-----) [000] d..2 82315.602936: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=8960 next_prio=120
30669<...>-10178 ( 9748) [006] d..2 82315.602943: sched_switch: prev_comm=Binder:9748_4 prev_pid=10178 prev_prio=120 prev_state=S ==> next_comm=android.fg next_pid=8967 next_prio=120
30670<...>-8962 ( 8943) [007] d..2 82315.602954: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30671<...>-8967 ( 8943) [006] d..2 82315.602973: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=S ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
30672<...>-9047 ( 8943) [006] d..2 82315.603004: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
30673   system_server-8943  ( 8943) [006] d..2 82315.603036: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30674          <idle>-0     (-----) [006] d..1 82315.603041: cpu_idle: state=0 cpu_id=6
30675<...>-8961 ( 8943) [007] d..1 82315.603155: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
30676<...>-8961 ( 8943) [007] d..2 82315.603162: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
30677          <idle>-0     (-----) [006] .n.1 82315.603166: cpu_idle: state=4294967295 cpu_id=6
30678          <idle>-0     (-----) [006] d..2 82315.603170: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
30679<...>-9047 ( 8943) [006] d..1 82315.603183: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=006
30680<...>-8961 ( 8943) [007] d..2 82315.603192: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30681<...>-9047 ( 8943) [006] d..2 82315.603197: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
30682          <idle>-0     (-----) [007] d..2 82315.603200: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
30683<...>-9047 ( 8943) [006] d..1 82315.603202: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=007
30684<...>-9047 ( 8943) [006] d..2 82315.603205: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=007
30685<...>-9047 ( 8943) [006] d..2 82315.603221: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30686          <idle>-0     (-----) [006] d..1 82315.603225: cpu_idle: state=0 cpu_id=6
30687   system_server-8943  ( 8943) [007] d..2 82315.603236: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30688          <idle>-0     (-----) [003] d.h2 82315.603267: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
30689          <idle>-0     (-----) [003] dnh3 82315.603272: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
30690          <idle>-0     (-----) [003] .n.1 82315.603278: cpu_idle: state=4294967295 cpu_id=3
30691          <idle>-0     (-----) [003] d..2 82315.603283: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
30692<...>-8961 ( 8943) [007] d..2 82315.603312: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
30693          <idle>-0     (-----) [001] dnh2 82315.603327: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
30694          <idle>-0     (-----) [001] .n.1 82315.603331: cpu_idle: state=4294967295 cpu_id=1
30695          <idle>-0     (-----) [001] d..2 82315.603337: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
30696<...>-8961 ( 8943) [007] d..2 82315.603398: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
30697          <idle>-0     (-----) [007] d..1 82315.603404: cpu_idle: state=0 cpu_id=7
30698<...>-581 ( 571) [001] d..2 82315.603413: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
30699          <idle>-0     (-----) [006] ...1 82315.603417: cpu_idle: state=4294967295 cpu_id=6
30700          <idle>-0     (-----) [006] d..1 82315.603418: cpu_idle: state=0 cpu_id=6
30701          <idle>-0     (-----) [001] d..1 82315.603420: cpu_idle: state=0 cpu_id=1
30702 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.603436: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
30703          <idle>-0     (-----) [003] d..1 82315.603443: cpu_idle: state=0 cpu_id=3
30704          <idle>-0     (-----) [001] d.s3 82315.603457: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
30705          <idle>-0     (-----) [001] d.s4 82315.603466: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
30706          <idle>-0     (-----) [003] .n.1 82315.603471: cpu_idle: state=4294967295 cpu_id=3
30707          <idle>-0     (-----) [001] ...1 82315.603473: cpu_idle: state=4294967295 cpu_id=1
30708          <idle>-0     (-----) [001] d..1 82315.603475: cpu_idle: state=0 cpu_id=1
30709          <idle>-0     (-----) [003] d..2 82315.603477: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
30710 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.603500: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30711          <idle>-0     (-----) [003] d..1 82315.603505: cpu_idle: state=0 cpu_id=3
30712           <...>-27550 (-----) [004] .... 82315.603531: binder_transaction: transaction=1568491 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
30713           <...>-27550 (-----) [004] .... 82315.603533: binder_transaction_alloc_buf: transaction=1568491 data_size=96 offsets_size=0
30714           <...>-27550 (-----) [004] ...2 82315.603535: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30715           <...>-27550 (-----) [004] d..4 82315.603536: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30716           <...>-27550 (-----) [004] d..5 82315.603543: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30717          <idle>-0     (-----) [007] .n.1 82315.603548: cpu_idle: state=4294967295 cpu_id=7
30718           <...>-27550 (-----) [004] d..2 82315.603551: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30719          <idle>-0     (-----) [007] d..2 82315.603552: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30720<...>-9062 ( 8943) [007] .... 82315.603554: binder_transaction_received: transaction=1568491
30721          <idle>-0     (-----) [004] d..1 82315.603556: cpu_idle: state=0 cpu_id=4
30722<...>-9062 ( 8943) [007] .... 82315.603657: binder_transaction: transaction=1568492 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30723<...>-9062 ( 8943) [007] .... 82315.603658: binder_transaction_alloc_buf: transaction=1568492 data_size=340 offsets_size=0
30724<...>-9062 ( 8943) [007] d..2 82315.603659: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
30725<...>-9062 ( 8943) [007] d..3 82315.603668: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
30726<...>-9062 ( 8943) [007] .... 82315.603669: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30727<...>-9062 ( 8943) [007] d..2 82315.603683: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30728           <...>-27550 (-----) [007] .... 82315.603687: binder_transaction_received: transaction=1568492
30729           <...>-27550 (-----) [007] .... 82315.603747: binder_transaction: transaction=1568493 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
30730           <...>-27550 (-----) [007] .... 82315.603748: binder_transaction_alloc_buf: transaction=1568493 data_size=96 offsets_size=0
30731           <...>-27550 (-----) [007] ...2 82315.603750: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30732           <...>-27550 (-----) [007] d..4 82315.603751: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30733           <...>-27550 (-----) [007] dn.5 82315.603755: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30734           <...>-27550 (-----) [007] d..2 82315.603757: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30735<...>-9062 ( 8943) [007] .... 82315.603760: binder_transaction_received: transaction=1568493
30736<...>-9062 ( 8943) [007] .... 82315.603833: binder_transaction: transaction=1568494 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30737<...>-9062 ( 8943) [007] .... 82315.603834: binder_transaction_alloc_buf: transaction=1568494 data_size=340 offsets_size=0
30738<...>-9062 ( 8943) [007] .... 82315.603835: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30739<...>-9062 ( 8943) [007] d..2 82315.603848: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30740           <...>-27550 (-----) [007] .... 82315.603852: binder_transaction_received: transaction=1568494
30741<...>-8960 ( 8943) [000] d..2 82315.604287: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30742          <idle>-0     (-----) [000] d..1 82315.604301: cpu_idle: state=0 cpu_id=0
30743           <...>-27550 (-----) [007] .... 82315.604323: binder_transaction: transaction=1568495 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
30744           <...>-27550 (-----) [007] .... 82315.604325: binder_transaction_alloc_buf: transaction=1568495 data_size=96 offsets_size=0
30745           <...>-27550 (-----) [007] ...2 82315.604326: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30746           <...>-27550 (-----) [007] d..4 82315.604327: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30747           <...>-27550 (-----) [007] dn.5 82315.604331: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30748           <...>-27550 (-----) [007] d..2 82315.604334: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30749<...>-9062 ( 8943) [007] .... 82315.604338: binder_transaction_received: transaction=1568495
30750<...>-9062 ( 8943) [007] .... 82315.604424: binder_transaction: transaction=1568496 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30751<...>-9062 ( 8943) [007] .... 82315.604425: binder_transaction_alloc_buf: transaction=1568496 data_size=340 offsets_size=0
30752<...>-9062 ( 8943) [007] .... 82315.604427: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30753<...>-9062 ( 8943) [007] d..2 82315.604440: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30754           <...>-27550 (-----) [007] .... 82315.604444: binder_transaction_received: transaction=1568496
30755           <...>-27550 (-----) [007] .... 82315.604938: binder_transaction: transaction=1568497 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x13
30756           <...>-27550 (-----) [007] .... 82315.604940: binder_transaction_alloc_buf: transaction=1568497 data_size=124 offsets_size=8
30757           <...>-27550 (-----) [007] ...2 82315.604945: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30758           <...>-27550 (-----) [007] d..4 82315.604947: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30759           <...>-27550 (-----) [007] dn.5 82315.604951: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30760           <...>-27550 (-----) [007] d..2 82315.604954: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30761<...>-9062 ( 8943) [007] .... 82315.604957: binder_transaction_received: transaction=1568497
30762          <idle>-0     (-----) [004] d.h2 82315.605106: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=004
30763          <idle>-0     (-----) [004] dnh3 82315.605113: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=004
30764          <idle>-0     (-----) [004] dns2 82315.605125: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
30765          <idle>-0     (-----) [004] dns3 82315.605137: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
30766          <idle>-0     (-----) [005] .n.1 82315.605141: cpu_idle: state=4294967295 cpu_id=5
30767          <idle>-0     (-----) [004] .n.1 82315.605142: cpu_idle: state=4294967295 cpu_id=4
30768          <idle>-0     (-----) [004] d..2 82315.605144: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
30769          <idle>-0     (-----) [005] d..2 82315.605145: 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
30770     rcu_preempt-7     (    7) [005] d..2 82315.605162: 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
30771        DispSync-8879  ( 8858) [004] d..1 82315.605162: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
30772          <idle>-0     (-----) [005] d..1 82315.605164: cpu_idle: state=0 cpu_id=5
30773          <idle>-0     (-----) [002] dnh2 82315.605179: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
30774          <idle>-0     (-----) [002] .n.1 82315.605183: cpu_idle: state=4294967295 cpu_id=2
30775        DispSync-8879  ( 8858) [004] d..2 82315.605185: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30776          <idle>-0     (-----) [004] d..1 82315.605188: cpu_idle: state=0 cpu_id=4
30777          <idle>-0     (-----) [002] d..2 82315.605190: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
30778   sfEventThread-8882  ( 8858) [002] d..3 82315.605230: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
30779   sfEventThread-8882  ( 8858) [002] d..4 82315.605243: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
30780          <idle>-0     (-----) [003] .n.1 82315.605248: cpu_idle: state=4294967295 cpu_id=3
30781<...>-9062 ( 8943) [007] .... 82315.605251: binder_transaction: transaction=1568498 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30782<...>-9062 ( 8943) [007] .... 82315.605253: binder_transaction_alloc_buf: transaction=1568498 data_size=1884 offsets_size=16
30783          <idle>-0     (-----) [003] d..2 82315.605253: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
30784   sfEventThread-8882  ( 8858) [002] d..3 82315.605256: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
30785<...>-9062 ( 8943) [007] .... 82315.605266: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30786          <idle>-0     (-----) [004] dnh2 82315.605272: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
30787          <idle>-0     (-----) [004] .n.1 82315.605274: cpu_idle: state=4294967295 cpu_id=4
30788          <idle>-0     (-----) [004] d..2 82315.605277: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
30789   sfEventThread-8882  ( 8858) [002] d..2 82315.605285: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30790<...>-9062 ( 8943) [007] d..2 82315.605287: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30791           <...>-27550 (-----) [007] .... 82315.605291: binder_transaction_received: transaction=1568498
30792          <idle>-0     (-----) [002] d..1 82315.605292: cpu_idle: state=0 cpu_id=2
30793<...>-9005 ( 8943) [004] .... 82315.605355: binder_transaction: transaction=1568502 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
30794<...>-9005 ( 8943) [004] .... 82315.605358: binder_transaction_alloc_buf: transaction=1568502 data_size=80 offsets_size=0
30795<...>-9005 ( 8943) [004] d..4 82315.605360: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
30796<...>-9005 ( 8943) [004] d..5 82315.605371: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
30797          <idle>-0     (-----) [005] .n.1 82315.605375: cpu_idle: state=4294967295 cpu_id=5
30798          <idle>-0     (-----) [005] d..2 82315.605378: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
30799<...>-13083 ( 8858) [005] .... 82315.605382: binder_transaction_received: transaction=1568502
30800<...>-13083 ( 8858) [005] d..1 82315.605398: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
30801          <idle>-0     (-----) [002] dnh2 82315.605411: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
30802          <idle>-0     (-----) [002] .n.1 82315.605414: cpu_idle: state=4294967295 cpu_id=2
30803<...>-13083 ( 8858) [005] d..2 82315.605418: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
30804          <idle>-0     (-----) [002] d..2 82315.605419: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
30805          <idle>-0     (-----) [005] d..1 82315.605421: cpu_idle: state=0 cpu_id=5
30806   sfEventThread-8882  ( 8858) [002] d..2 82315.605439: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30807          <idle>-0     (-----) [002] d..1 82315.605444: cpu_idle: state=0 cpu_id=2
30808           <...>-27550 (-----) [007] .... 82315.605494: binder_transaction: transaction=1568503 dest_node=398684 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x15
30809           <...>-27550 (-----) [007] .... 82315.605496: binder_transaction_alloc_buf: transaction=1568503 data_size=292 offsets_size=0
30810           <...>-27550 (-----) [007] ...2 82315.605497: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30811           <...>-27550 (-----) [007] d..4 82315.605498: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30812           <...>-27550 (-----) [007] dn.5 82315.605502: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30813           <...>-27550 (-----) [007] d..2 82315.605505: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30814<...>-9062 ( 8943) [007] .... 82315.605508: binder_transaction_received: transaction=1568503
30815  surfaceflinger-8858  ( 8858) [003] d..1 82315.605611: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
30816  surfaceflinger-8858  ( 8858) [003] d..2 82315.605622: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
30817          <idle>-0     (-----) [002] .n.1 82315.605627: cpu_idle: state=4294967295 cpu_id=2
30818          <idle>-0     (-----) [002] d..2 82315.605632: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
30819<...>-9005 ( 8943) [004] .... 82315.605637: binder_transaction: transaction=1568504 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
30820<...>-9005 ( 8943) [004] .... 82315.605639: binder_transaction_alloc_buf: transaction=1568504 data_size=1292 offsets_size=64
30821   sfEventThread-8882  ( 8858) [002] d..2 82315.605647: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30822<...>-9005 ( 8943) [004] ...2 82315.605651: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
30823<...>-9005 ( 8943) [004] d..4 82315.605652: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
30824          <idle>-0     (-----) [002] d..1 82315.605652: cpu_idle: state=0 cpu_id=2
30825<...>-9005 ( 8943) [004] dn.5 82315.605659: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
30826<...>-9005 ( 8943) [004] d..2 82315.605663: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
30827<...>-13083 ( 8858) [004] .... 82315.605666: binder_transaction_received: transaction=1568504
30828<...>-13083 ( 8858) [004] .... 82315.605719: binder_transaction: transaction=1568505 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
30829<...>-13083 ( 8858) [004] .... 82315.605721: binder_transaction_alloc_buf: transaction=1568505 data_size=0 offsets_size=0
30830<...>-13083 ( 8858) [004] .... 82315.605721: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
30831<...>-13083 ( 8858) [004] d..2 82315.605740: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
30832<...>-9005 ( 8943) [004] .... 82315.605743: binder_transaction_received: transaction=1568505
30833<...>-9062 ( 8943) [007] .... 82315.605774: binder_transaction: transaction=1568506 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30834<...>-9062 ( 8943) [007] .... 82315.605776: binder_transaction_alloc_buf: transaction=1568506 data_size=320 offsets_size=8
30835          <idle>-0     (-----) [000] ...1 82315.605778: cpu_idle: state=4294967295 cpu_id=0
30836          <idle>-0     (-----) [000] d..1 82315.605780: cpu_idle: state=0 cpu_id=0
30837<...>-9005 ( 8943) [004] d..2 82315.605790: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
30838          <idle>-0     (-----) [004] d..1 82315.605796: cpu_idle: state=0 cpu_id=4
30839<...>-9062 ( 8943) [007] .... 82315.605808: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30840<...>-9062 ( 8943) [007] d..2 82315.605827: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30841           <...>-27550 (-----) [007] .... 82315.605831: binder_transaction_received: transaction=1568506
30842           <...>-27550 (-----) [007] .... 82315.606052: binder_transaction: transaction=1568507 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x6a
30843           <...>-27550 (-----) [007] .... 82315.606053: binder_transaction_alloc_buf: transaction=1568507 data_size=160 offsets_size=0
30844           <...>-27550 (-----) [007] ...2 82315.606054: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30845           <...>-27550 (-----) [007] d..4 82315.606055: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30846           <...>-27550 (-----) [007] dn.5 82315.606059: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30847           <...>-27550 (-----) [007] d..2 82315.606062: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30848<...>-9062 ( 8943) [007] .... 82315.606065: binder_transaction_received: transaction=1568507
30849<...>-9062 ( 8943) [007] .... 82315.606123: binder_transaction: transaction=1568508 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30850<...>-9062 ( 8943) [007] .... 82315.606124: binder_transaction_alloc_buf: transaction=1568508 data_size=8 offsets_size=0
30851<...>-9062 ( 8943) [007] .... 82315.606125: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30852<...>-9062 ( 8943) [007] d..2 82315.606139: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30853           <...>-27550 (-----) [007] .... 82315.606143: binder_transaction_received: transaction=1568508
30854  surfaceflinger-8858  ( 8858) [003] ...1 82315.606237: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
30855  surfaceflinger-8858  ( 8858) [003] ...1 82315.606242: tracing_mark_write: E|8858
30856           <...>-27550 (-----) [007] d..2 82315.606276: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
30857          <idle>-0     (-----) [000] dnh2 82315.606295: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
30858          <idle>-0     (-----) [000] .n.1 82315.606298: cpu_idle: state=4294967295 cpu_id=0
30859          <idle>-0     (-----) [000] d..2 82315.606305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
30860  surfaceflinger-8858  ( 8858) [003] .... 82315.606314: binder_transaction: transaction=1568509 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
30861  surfaceflinger-8858  ( 8858) [003] .... 82315.606318: binder_transaction_alloc_buf: transaction=1568509 data_size=540 offsets_size=96
30862  surfaceflinger-8858  ( 8858) [003] ...2 82315.606335: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
30863  surfaceflinger-8858  ( 8858) [003] d..4 82315.606343: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
30864  surfaceflinger-8858  ( 8858) [003] d..5 82315.606360: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
30865          <idle>-0     (-----) [002] .n.1 82315.606364: cpu_idle: state=4294967295 cpu_id=2
30866<...>-581 ( 571) [000] d..2 82315.606369: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
30867          <idle>-0     (-----) [002] d..2 82315.606369: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
30868  surfaceflinger-8858  ( 8858) [003] d..2 82315.606377: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30869          <idle>-0     (-----) [000] d..1 82315.606377: cpu_idle: state=0 cpu_id=0
30870 [email protected]   (  619) [002] .... 82315.606377: binder_transaction_received: transaction=1568509
30871          <idle>-0     (-----) [003] d..1 82315.606386: cpu_idle: state=0 cpu_id=3
30872 [email protected]   (  619) [002] ...1 82315.606425: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
30873 [email protected]   (  619) [002] ...1 82315.606529: tracing_mark_write: B|619|HWCSession::PresentDisplay::
30874           <...>-27550 (-----) [007] .... 82315.606534: binder_transaction: transaction=1568510 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
30875           <...>-27550 (-----) [007] .... 82315.606536: binder_transaction_alloc_buf: transaction=1568510 data_size=96 offsets_size=0
30876           <...>-27550 (-----) [007] ...2 82315.606537: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30877           <...>-27550 (-----) [007] d..4 82315.606538: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30878           <...>-27550 (-----) [007] dn.5 82315.606542: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30879           <...>-27550 (-----) [007] d..2 82315.606545: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30880<...>-9062 ( 8943) [007] .... 82315.606548: binder_transaction_received: transaction=1568510
30881<...>-9062 ( 8943) [007] .... 82315.606621: binder_transaction: transaction=1568511 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30882<...>-9062 ( 8943) [007] .... 82315.606623: binder_transaction_alloc_buf: transaction=1568511 data_size=340 offsets_size=0
30883<...>-9062 ( 8943) [007] .... 82315.606624: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30884<...>-9062 ( 8943) [007] d..2 82315.606637: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30885           <...>-27550 (-----) [007] .... 82315.606640: binder_transaction_received: transaction=1568511
30886 [email protected]   (  619) [002] ...1 82315.606652: tracing_mark_write: B|619|HWDeviceDRM::Commit::
30887 [email protected]   (  619) [002] ...1 82315.606660: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
30888           <...>-27550 (-----) [007] .... 82315.606702: binder_transaction: transaction=1568512 dest_node=396343 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x47
30889           <...>-27550 (-----) [007] .... 82315.606703: binder_transaction_alloc_buf: transaction=1568512 data_size=64 offsets_size=0
30890           <...>-27550 (-----) [007] ...2 82315.606704: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30891           <...>-27550 (-----) [007] d..4 82315.606705: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30892           <...>-27550 (-----) [007] dn.5 82315.606709: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30893           <...>-27550 (-----) [007] d..2 82315.606712: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30894<...>-9062 ( 8943) [007] .... 82315.606715: binder_transaction_received: transaction=1568512
30895<...>-9062 ( 8943) [007] .... 82315.606767: binder_transaction: transaction=1568513 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30896<...>-9062 ( 8943) [007] .... 82315.606769: binder_transaction_alloc_buf: transaction=1568513 data_size=8 offsets_size=0
30897<...>-9062 ( 8943) [007] .... 82315.606770: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30898<...>-9062 ( 8943) [007] d..2 82315.606783: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30899           <...>-27550 (-----) [007] .... 82315.606787: binder_transaction_received: transaction=1568513
30900 [email protected]   (  619) [002] d..2 82315.607070: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
30901          <idle>-0     (-----) [005] dnh2 82315.607089: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
30902          <idle>-0     (-----) [005] .n.1 82315.607091: cpu_idle: state=4294967295 cpu_id=5
30903          <idle>-0     (-----) [005] d..2 82315.607094: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
30904           <...>-27550 (-----) [007] .... 82315.607133: binder_transaction: transaction=1568514 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3e
30905           <...>-27550 (-----) [007] .... 82315.607135: binder_transaction_alloc_buf: transaction=1568514 data_size=136 offsets_size=8
30906           <...>-27550 (-----) [007] ...2 82315.607138: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30907           <...>-27550 (-----) [007] d..4 82315.607138: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30908           <...>-27550 (-----) [007] dn.5 82315.607143: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30909           <...>-27550 (-----) [007] d..2 82315.607146: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30910<...>-9062 ( 8943) [007] .... 82315.607149: binder_transaction_received: transaction=1568514
30911 [email protected]   (  619) [002] ...1 82315.607150: tracing_mark_write: E|619
30912 [email protected]   (  619) [002] ...1 82315.607153: tracing_mark_write: E|619
30913 [email protected]   (  619) [002] ...1 82315.607196: tracing_mark_write: E|619
30914 [email protected]   (  619) [002] ...1 82315.607234: tracing_mark_write: E|619
30915<...>-9062 ( 8943) [007] d..3 82315.607239: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=007
30916 [email protected]   (  619) [002] .... 82315.607244: binder_transaction: transaction=1568515 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
30917 [email protected]   (  619) [002] .... 82315.607246: binder_transaction_alloc_buf: transaction=1568515 data_size=576 offsets_size=112
30918<...>-9062 ( 8943) [007] d..4 82315.607251: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=006
30919          <idle>-0     (-----) [006] .n.1 82315.607255: cpu_idle: state=4294967295 cpu_id=6
30920 [email protected]   (  619) [002] d..2 82315.607257: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
30921          <idle>-0     (-----) [006] d..2 82315.607259: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30922 [email protected]   (  619) [002] d..3 82315.607268: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
30923 [email protected]   (  619) [002] .... 82315.607270: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
30924          <idle>-0     (-----) [003] .n.1 82315.607272: cpu_idle: state=4294967295 cpu_id=3
30925<...>-9062 ( 8943) [007] .... 82315.607274: binder_transaction: transaction=1568516 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30926<...>-9062 ( 8943) [007] .... 82315.607275: binder_transaction_alloc_buf: transaction=1568516 data_size=4 offsets_size=0
30927<...>-9062 ( 8943) [007] .... 82315.607276: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30928          <idle>-0     (-----) [003] d..2 82315.607278: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
30929  surfaceflinger-8858  ( 8858) [003] .... 82315.607282: binder_transaction_received: transaction=1568515
30930<...>-9062 ( 8943) [007] d..2 82315.607292: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30931           <...>-27550 (-----) [007] .... 82315.607296: binder_transaction_received: transaction=1568516
30932<...>-8961 ( 8943) [006] .... 82315.607305: binder_transaction: transaction=1568517 dest_node=401308 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xd
30933<...>-8961 ( 8943) [006] .... 82315.607307: binder_transaction_alloc_buf: transaction=1568517 data_size=112 offsets_size=0
30934<...>-8961 ( 8943) [006] d..4 82315.607310: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
30935<...>-8961 ( 8943) [006] dn.5 82315.607317: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
30936 [email protected]   (  619) [002] d..2 82315.607318: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
30937<...>-8961 ( 8943) [006] d..2 82315.607320: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R+ ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
30938<...>-9131 ( 9105) [006] .... 82315.607325: binder_transaction_received: transaction=1568517
30939          <idle>-0     (-----) [002] d..1 82315.607328: cpu_idle: state=0 cpu_id=2
30940<...>-9131 ( 9105) [006] d..2 82315.607415: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30941           <...>-27550 (-----) [007] .... 82315.607433: binder_transaction: transaction=1568518 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x27
30942           <...>-27550 (-----) [007] .... 82315.607434: binder_transaction_alloc_buf: transaction=1568518 data_size=164 offsets_size=0
30943           <...>-27550 (-----) [007] ...2 82315.607435: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30944           <...>-27550 (-----) [007] d..4 82315.607436: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30945           <...>-27550 (-----) [007] dn.5 82315.607440: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30946           <...>-27550 (-----) [007] d..2 82315.607443: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30947<...>-8961 ( 8943) [006] .... 82315.607445: binder_transaction: transaction=1568519 dest_node=424459 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xd
30948<...>-8961 ( 8943) [006] .... 82315.607446: binder_transaction_alloc_buf: transaction=1568519 data_size=112 offsets_size=0
30949<...>-9062 ( 8943) [007] .... 82315.607447: binder_transaction_received: transaction=1568518
30950<...>-8961 ( 8943) [006] d..4 82315.607447: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
30951<...>-8961 ( 8943) [006] dn.5 82315.607452: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
30952<...>-8961 ( 8943) [006] d..2 82315.607455: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R+ ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
30953<...>-9131 ( 9105) [006] .... 82315.607457: binder_transaction_received: transaction=1568519
30954<...>-9131 ( 9105) [006] d..2 82315.607494: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
30955<...>-8961 ( 8943) [006] .... 82315.607521: binder_transaction: transaction=1568520 dest_node=1159303 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0xd
30956<...>-9062 ( 8943) [007] .... 82315.607522: binder_transaction: transaction=1568521 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30957<...>-9062 ( 8943) [007] .... 82315.607523: binder_transaction_alloc_buf: transaction=1568521 data_size=8 offsets_size=0
30958<...>-8961 ( 8943) [006] .... 82315.607524: binder_transaction_alloc_buf: transaction=1568520 data_size=112 offsets_size=0
30959<...>-9062 ( 8943) [007] .... 82315.607524: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30960<...>-8961 ( 8943) [006] d..4 82315.607526: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=005
30961<...>-8961 ( 8943) [006] d..5 82315.607537: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=006
30962<...>-9062 ( 8943) [007] d..2 82315.607538: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30963           <...>-27550 (-----) [007] .... 82315.607542: binder_transaction_received: transaction=1568521
30964  surfaceflinger-8858  ( 8858) [003] d..2 82315.607549: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
30965<...>-8961 ( 8943) [006] d..2 82315.607555: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
30966          <idle>-0     (-----) [003] d..1 82315.607558: cpu_idle: state=0 cpu_id=3
30967  Binder:10023_2-10088 (10023) [006] .... 82315.607560: binder_transaction_received: transaction=1568520
30968           <...>-27550 (-----) [007] .... 82315.607567: binder_transaction: transaction=1568522 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x27
30969           <...>-27550 (-----) [007] .... 82315.607568: binder_transaction_alloc_buf: transaction=1568522 data_size=172 offsets_size=0
30970           <...>-27550 (-----) [007] ...2 82315.607569: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30971           <...>-27550 (-----) [007] d..4 82315.607570: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30972           <...>-27550 (-----) [007] dn.5 82315.607573: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30973           <...>-27550 (-----) [007] d..2 82315.607576: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30974<...>-9062 ( 8943) [007] .... 82315.607579: binder_transaction_received: transaction=1568522
30975<...>-9062 ( 8943) [007] .... 82315.607631: binder_transaction: transaction=1568523 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30976<...>-9062 ( 8943) [007] .... 82315.607632: binder_transaction_alloc_buf: transaction=1568523 data_size=8 offsets_size=0
30977<...>-9062 ( 8943) [007] .... 82315.607633: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30978<...>-9062 ( 8943) [007] d..2 82315.607646: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30979           <...>-27550 (-----) [007] .... 82315.607650: binder_transaction_received: transaction=1568523
30980 crtc_commit:111-321   (  321) [005] d..2 82315.607660: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
30981          <idle>-0     (-----) [005] d..1 82315.607663: cpu_idle: state=0 cpu_id=5
30982  Binder:10023_2-10088 (10023) [006] d..2 82315.607669: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
30983          <idle>-0     (-----) [006] d..1 82315.607674: cpu_idle: state=0 cpu_id=6
30984           <...>-27550 (-----) [007] .... 82315.607713: binder_transaction: transaction=1568524 dest_node=396628 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
30985           <...>-27550 (-----) [007] .... 82315.607714: binder_transaction_alloc_buf: transaction=1568524 data_size=136 offsets_size=8
30986           <...>-27550 (-----) [007] ...2 82315.607899: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
30987           <...>-27550 (-----) [007] d..4 82315.607900: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30988           <...>-27550 (-----) [007] dn.5 82315.607904: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
30989           <...>-27550 (-----) [007] d..2 82315.607907: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
30990<...>-9062 ( 8943) [007] .... 82315.607911: binder_transaction_received: transaction=1568524
30991          <idle>-0     (-----) [000] ...1 82315.607961: cpu_idle: state=4294967295 cpu_id=0
30992          <idle>-0     (-----) [000] d..1 82315.607963: cpu_idle: state=0 cpu_id=0
30993<...>-9062 ( 8943) [007] .... 82315.608045: binder_transaction: transaction=1568527 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
30994<...>-9062 ( 8943) [007] .... 82315.608047: binder_transaction_alloc_buf: transaction=1568527 data_size=12 offsets_size=0
30995<...>-9062 ( 8943) [007] .... 82315.608048: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
30996<...>-9062 ( 8943) [007] d..2 82315.608062: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
30997           <...>-27550 (-----) [007] .... 82315.608068: binder_transaction_received: transaction=1568527
30998           <...>-27550 (-----) [007] d.s2 82315.608462: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=005
30999           <...>-27550 (-----) [007] d.s3 82315.608475: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=004
31000          <idle>-0     (-----) [004] .n.1 82315.608480: cpu_idle: state=4294967295 cpu_id=4
31001          <idle>-0     (-----) [004] d..2 82315.608485: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
31002<...>-1054 ( 1054) [004] d..2 82315.608631: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
31003          <idle>-0     (-----) [004] d..1 82315.608634: cpu_idle: state=0 cpu_id=4
31004          <idle>-0     (-----) [002] ...1 82315.608662: cpu_idle: state=4294967295 cpu_id=2
31005          <idle>-0     (-----) [002] d..1 82315.608665: cpu_idle: state=0 cpu_id=2
31006          <idle>-0     (-----) [001] d.s3 82315.608666: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=004
31007          <idle>-0     (-----) [001] ...1 82315.608677: cpu_idle: state=4294967295 cpu_id=1
31008          <idle>-0     (-----) [004] d.h2 82315.608680: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
31009          <idle>-0     (-----) [001] d..1 82315.608681: cpu_idle: state=0 cpu_id=1
31010          <idle>-0     (-----) [004] dnh2 82315.608681: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=004
31011          <idle>-0     (-----) [004] .n.1 82315.608683: cpu_idle: state=4294967295 cpu_id=4
31012          <idle>-0     (-----) [004] d..2 82315.608686: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
31013<...>-1054 ( 1054) [004] d..2 82315.608779: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
31014          <idle>-0     (-----) [004] d..1 82315.608781: cpu_idle: state=0 cpu_id=4
31015          <idle>-0     (-----) [001] d.s3 82315.608813: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=004
31016          <idle>-0     (-----) [001] ...1 82315.608824: cpu_idle: state=4294967295 cpu_id=1
31017          <idle>-0     (-----) [004] d.h2 82315.608824: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
31018          <idle>-0     (-----) [004] dnh2 82315.608825: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=004
31019          <idle>-0     (-----) [001] d..1 82315.608826: cpu_idle: state=0 cpu_id=1
31020          <idle>-0     (-----) [004] .n.1 82315.608827: cpu_idle: state=4294967295 cpu_id=4
31021          <idle>-0     (-----) [004] d..2 82315.608829: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
31022<...>-1054 ( 1054) [004] d..2 82315.608843: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31023          <idle>-0     (-----) [004] d..1 82315.608845: cpu_idle: state=0 cpu_id=4
31024          <idle>-0     (-----) [005] d.s2 82315.611822: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
31025          <idle>-0     (-----) [005] dns3 82315.611827: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
31026          <idle>-0     (-----) [005] .n.1 82315.611834: cpu_idle: state=4294967295 cpu_id=5
31027          <idle>-0     (-----) [005] d..2 82315.611838: 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
31028     rcu_preempt-7     (    7) [005] d..2 82315.611842: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
31029     rcu_preempt-7     (    7) [005] d..3 82315.611855: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=004
31030          <idle>-0     (-----) [004] .n.1 82315.611859: cpu_idle: state=4294967295 cpu_id=4
31031          <idle>-0     (-----) [004] d..2 82315.611870: 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
31032     rcu_preempt-7     (    7) [005] d..2 82315.611876: 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
31033          <idle>-0     (-----) [005] d..1 82315.611879: cpu_idle: state=0 cpu_id=5
31034         rcuop/6-61    (   61) [004] d..2 82315.611881: 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
31035          <idle>-0     (-----) [004] d..1 82315.611883: cpu_idle: state=0 cpu_id=4
31036          <idle>-0     (-----) [000] d.h5 82315.613128: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=005
31037          <idle>-0     (-----) [000] d.h5 82315.613144: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
31038          <idle>-0     (-----) [005] dnh2 82315.613149: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
31039          <idle>-0     (-----) [005] dnh2 82315.613151: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=005
31040          <idle>-0     (-----) [005] .n.1 82315.613153: cpu_idle: state=4294967295 cpu_id=5
31041          <idle>-0     (-----) [005] d..2 82315.613156: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
31042          <idle>-0     (-----) [000] ...1 82315.613161: cpu_idle: state=4294967295 cpu_id=0
31043          <idle>-0     (-----) [000] d..1 82315.613165: cpu_idle: state=0 cpu_id=0
31044          <idle>-0     (-----) [006] .n.1 82315.613170: cpu_idle: state=4294967295 cpu_id=6
31045          <idle>-0     (-----) [006] d..2 82315.613174: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
31046  crtc_event:111-322   (  322) [006] d..2 82315.613188: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31047          <idle>-0     (-----) [006] d..1 82315.613190: cpu_idle: state=0 cpu_id=6
31048 crtc_commit:111-321   (  321) [005] d..2 82315.613257: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
31049          <idle>-0     (-----) [005] d..1 82315.613259: cpu_idle: state=0 cpu_id=5
31050          <idle>-0     (-----) [005] ...1 82315.615117: cpu_idle: state=4294967295 cpu_id=5
31051          <idle>-0     (-----) [005] d..1 82315.615118: cpu_idle: state=0 cpu_id=5
31052          <idle>-0     (-----) [000] d.h5 82315.615469: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
31053          <idle>-0     (-----) [005] dnh2 82315.615482: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
31054          <idle>-0     (-----) [005] .n.1 82315.615483: cpu_idle: state=4294967295 cpu_id=5
31055          <idle>-0     (-----) [000] ...1 82315.615484: cpu_idle: state=4294967295 cpu_id=0
31056          <idle>-0     (-----) [005] d..2 82315.615486: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
31057          <idle>-0     (-----) [000] d..1 82315.615486: cpu_idle: state=0 cpu_id=0
31058 crtc_commit:111-321   (  321) [005] d..2 82315.615512: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31059          <idle>-0     (-----) [005] d..1 82315.615514: cpu_idle: state=0 cpu_id=5
31060          <idle>-0     (-----) [000] d.h5 82315.615753: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=006
31061          <idle>-0     (-----) [006] dnh2 82315.615766: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=006
31062          <idle>-0     (-----) [000] d.h7 82315.615767: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
31063          <idle>-0     (-----) [006] .n.1 82315.615768: cpu_idle: state=4294967295 cpu_id=6
31064          <idle>-0     (-----) [006] d..2 82315.615771: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
31065          <idle>-0     (-----) [000] dnh8 82315.615776: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
31066  crtc_event:111-322   (  322) [006] d..2 82315.615777: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31067          <idle>-0     (-----) [006] d..1 82315.615778: cpu_idle: state=0 cpu_id=6
31068          <idle>-0     (-----) [000] dnh9 82315.615786: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
31069          <idle>-0     (-----) [000] dnh7 82315.615795: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=001
31070          <idle>-0     (-----) [005] dnh2 82315.615797: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
31071           <...>-27550 (-----) [007] d..2 82315.615797: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
31072          <idle>-0     (-----) [005] .n.1 82315.615799: cpu_idle: state=4294967295 cpu_id=5
31073          <idle>-0     (-----) [005] d..2 82315.615801: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
31074          <idle>-0     (-----) [000] dnh8 82315.615809: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=001
31075          <idle>-0     (-----) [001] .n.1 82315.615813: cpu_idle: state=4294967295 cpu_id=1
31076 crtc_commit:111-321   (  321) [005] d..2 82315.615818: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31077          <idle>-0     (-----) [005] d..1 82315.615820: cpu_idle: state=0 cpu_id=5
31078          <idle>-0     (-----) [000] .n.1 82315.615822: cpu_idle: state=4294967295 cpu_id=0
31079          <idle>-0     (-----) [001] dnh2 82315.615823: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
31080          <idle>-0     (-----) [000] d..2 82315.615831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
31081          <idle>-0     (-----) [001] d..2 82315.615831: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
31082     kworker/0:1-25262 (25262) [000] d..2 82315.615856: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31083          <idle>-0     (-----) [000] d..1 82315.615862: cpu_idle: state=0 cpu_id=0
31084 SDM_EventThread-644   (  619) [001] ...1 82315.615873: tracing_mark_write: B|619|HWCCallbacks::Vsync::
31085 SDM_EventThread-644   (  619) [001] ...1 82315.615883: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
31086 SDM_EventThread-644   (  619) [001] ...1 82315.615886: tracing_mark_write: E|619
31087 SDM_EventThread-644   (  619) [001] .... 82315.615912: binder_transaction: transaction=1568528 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
31088 SDM_EventThread-644   (  619) [001] .... 82315.615916: binder_transaction_alloc_buf: transaction=1568528 data_size=76 offsets_size=0
31089 SDM_EventThread-644   (  619) [001] d..4 82315.615923: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
31090           <...>-27550 (-----) [007] .... 82315.615940: binder_transaction: transaction=1568529 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3f
31091           <...>-27550 (-----) [007] .... 82315.615942: binder_transaction_alloc_buf: transaction=1568529 data_size=100 offsets_size=8
31092 SDM_EventThread-644   (  619) [001] d..5 82315.615942: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=000
31093           <...>-27550 (-----) [007] ...2 82315.615947: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
31094          <idle>-0     (-----) [000] .n.1 82315.615947: cpu_idle: state=4294967295 cpu_id=0
31095           <...>-27550 (-----) [007] d..4 82315.615949: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31096          <idle>-0     (-----) [000] d..2 82315.615953: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
31097           <...>-27550 (-----) [007] dn.5 82315.615954: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31098           <...>-27550 (-----) [007] d..2 82315.615958: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31099<...>-8890 ( 8858) [000] .... 82315.615960: binder_transaction_received: transaction=1568528
31100 SDM_EventThread-644   (  619) [001] ...1 82315.615962: tracing_mark_write: E|619
31101<...>-9062 ( 8943) [007] .... 82315.615965: binder_transaction_received: transaction=1568529
31102 SDM_EventThread-644   (  619) [001] d..4 82315.615973: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
31103          <idle>-0     (-----) [005] dnh2 82315.615987: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
31104          <idle>-0     (-----) [005] .n.1 82315.615989: cpu_idle: state=4294967295 cpu_id=5
31105          <idle>-0     (-----) [005] d..2 82315.615990: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
31106 crtc_commit:111-321   (  321) [005] d..2 82315.615996: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31107          <idle>-0     (-----) [005] d..1 82315.615997: cpu_idle: state=0 cpu_id=5
31108<...>-8890 ( 8858) [000] ...1 82315.615998: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
31109 SDM_EventThread-644   (  619) [001] d..2 82315.616001: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
31110<...>-8890 ( 8858) [000] ...1 82315.616012: tracing_mark_write: E|8858
31111<...>-8890 ( 8858) [000] d..2 82315.616044: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31112          <idle>-0     (-----) [000] d..1 82315.616052: cpu_idle: state=0 cpu_id=0
31113<...>-581 ( 571) [001] d..2 82315.616080: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31114          <idle>-0     (-----) [001] d..1 82315.616090: cpu_idle: state=0 cpu_id=1
31115<...>-9062 ( 8943) [007] .... 82315.616103: binder_transaction: transaction=1568530 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31116<...>-9062 ( 8943) [007] .... 82315.616104: binder_transaction_alloc_buf: transaction=1568530 data_size=8 offsets_size=0
31117<...>-9062 ( 8943) [007] .... 82315.616106: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
31118<...>-9062 ( 8943) [007] d..2 82315.616124: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31119           <...>-27550 (-----) [007] .... 82315.616129: binder_transaction_received: transaction=1568530
31120           <...>-27550 (-----) [007] d..2 82315.616203: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
31121          <idle>-0     (-----) [001] dnh2 82315.616218: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
31122          <idle>-0     (-----) [001] .n.1 82315.616221: cpu_idle: state=4294967295 cpu_id=1
31123          <idle>-0     (-----) [001] d..2 82315.616227: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
31124<...>-581 ( 571) [001] d..2 82315.616266: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31125          <idle>-0     (-----) [001] d..1 82315.616273: cpu_idle: state=0 cpu_id=1
31126           <...>-27550 (-----) [007] .... 82315.616403: binder_transaction: transaction=1568531 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x6a
31127           <...>-27550 (-----) [007] .... 82315.616404: binder_transaction_alloc_buf: transaction=1568531 data_size=112 offsets_size=8
31128           <...>-27550 (-----) [007] ...2 82315.616408: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
31129           <...>-27550 (-----) [007] d..4 82315.616409: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31130           <...>-27550 (-----) [007] dn.5 82315.616414: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31131           <...>-27550 (-----) [007] d..2 82315.616417: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31132<...>-9062 ( 8943) [007] .... 82315.616421: binder_transaction_received: transaction=1568531
31133<...>-9062 ( 8943) [007] .... 82315.616501: binder_transaction: transaction=1568532 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31134<...>-9062 ( 8943) [007] .... 82315.616502: binder_transaction_alloc_buf: transaction=1568532 data_size=4 offsets_size=0
31135<...>-9062 ( 8943) [007] .... 82315.616503: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
31136<...>-9062 ( 8943) [007] d..2 82315.616519: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31137           <...>-27550 (-----) [007] .... 82315.616523: binder_transaction_received: transaction=1568532
31138           <...>-27550 (-----) [007] .... 82315.616592: binder_transaction: transaction=1568533 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3f
31139           <...>-27550 (-----) [007] .... 82315.616593: binder_transaction_alloc_buf: transaction=1568533 data_size=100 offsets_size=8
31140           <...>-27550 (-----) [007] ...2 82315.616595: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
31141           <...>-27550 (-----) [007] d..4 82315.616596: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31142           <...>-27550 (-----) [007] dn.5 82315.616601: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31143           <...>-27550 (-----) [007] d..2 82315.616604: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31144<...>-9062 ( 8943) [007] .... 82315.616606: binder_transaction_received: transaction=1568533
31145<...>-9062 ( 8943) [007] .... 82315.616668: binder_transaction: transaction=1568534 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31146<...>-9062 ( 8943) [007] .... 82315.616669: binder_transaction_alloc_buf: transaction=1568534 data_size=8 offsets_size=0
31147<...>-9062 ( 8943) [007] .... 82315.616670: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
31148<...>-9062 ( 8943) [007] d..2 82315.616685: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31149           <...>-27550 (-----) [007] .... 82315.616689: binder_transaction_received: transaction=1568534
31150           <...>-27550 (-----) [007] d..2 82315.616766: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
31151          <idle>-0     (-----) [001] dnh2 82315.616781: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
31152          <idle>-0     (-----) [001] .n.1 82315.616784: cpu_idle: state=4294967295 cpu_id=1
31153          <idle>-0     (-----) [001] d..2 82315.616790: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
31154           <...>-27550 (-----) [007] d..2 82315.616817: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
31155<...>-581 ( 571) [001] d..2 82315.616818: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31156          <idle>-0     (-----) [001] d..1 82315.616824: cpu_idle: state=0 cpu_id=1
31157          <idle>-0     (-----) [001] dnh2 82315.616832: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
31158          <idle>-0     (-----) [001] .n.1 82315.616835: cpu_idle: state=4294967295 cpu_id=1
31159          <idle>-0     (-----) [001] d..2 82315.616841: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
31160<...>-581 ( 571) [001] d..2 82315.616873: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31161          <idle>-0     (-----) [001] d..1 82315.616880: cpu_idle: state=0 cpu_id=1
31162           <...>-27550 (-----) [007] .... 82315.617426: binder_transaction: transaction=1568535 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x44
31163           <...>-27550 (-----) [007] .... 82315.617427: binder_transaction_alloc_buf: transaction=1568535 data_size=100 offsets_size=8
31164           <...>-27550 (-----) [007] ...2 82315.617429: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
31165           <...>-27550 (-----) [007] d..4 82315.617430: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31166           <...>-27550 (-----) [007] dn.5 82315.617435: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31167           <...>-27550 (-----) [007] d..2 82315.617438: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31168<...>-9062 ( 8943) [007] .... 82315.617441: binder_transaction_received: transaction=1568535
31169<...>-9062 ( 8943) [007] .... 82315.617514: binder_transaction: transaction=1568536 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31170<...>-9062 ( 8943) [007] .... 82315.617515: binder_transaction_alloc_buf: transaction=1568536 data_size=8 offsets_size=0
31171<...>-9062 ( 8943) [007] .... 82315.617516: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
31172<...>-9062 ( 8943) [007] d..2 82315.617532: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31173           <...>-27550 (-----) [007] .... 82315.617535: binder_transaction_received: transaction=1568536
31174           <...>-27550 (-----) [007] d..2 82315.617613: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
31175          <idle>-0     (-----) [001] dnh2 82315.617627: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
31176          <idle>-0     (-----) [001] .n.1 82315.617631: cpu_idle: state=4294967295 cpu_id=1
31177          <idle>-0     (-----) [001] d..2 82315.617636: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
31178           <...>-27550 (-----) [007] d..2 82315.617661: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
31179<...>-581 ( 571) [001] d..2 82315.617667: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31180          <idle>-0     (-----) [001] d..1 82315.617674: cpu_idle: state=0 cpu_id=1
31181          <idle>-0     (-----) [001] dnh2 82315.617681: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
31182          <idle>-0     (-----) [001] .n.1 82315.617685: cpu_idle: state=4294967295 cpu_id=1
31183          <idle>-0     (-----) [001] d..2 82315.617690: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
31184<...>-581 ( 571) [001] d..2 82315.617721: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
31185          <idle>-0     (-----) [001] d..1 82315.617728: cpu_idle: state=0 cpu_id=1
31186          <idle>-0     (-----) [004] d.h2 82315.617792: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=004
31187          <idle>-0     (-----) [004] dnh3 82315.617798: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=004
31188          <idle>-0     (-----) [004] .n.1 82315.617800: cpu_idle: state=4294967295 cpu_id=4
31189          <idle>-0     (-----) [004] d..2 82315.617803: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
31190        DispSync-8879  ( 8858) [004] d..1 82315.617818: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
31191           <...>-27550 (-----) [007] .... 82315.617825: binder_transaction: transaction=1568537 dest_node=396343 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x4
31192           <...>-27550 (-----) [007] .... 82315.617826: binder_transaction_alloc_buf: transaction=1568537 data_size=136 offsets_size=24
31193          <idle>-0     (-----) [003] dnh2 82315.617835: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
31194        DispSync-8879  ( 8858) [004] d..2 82315.617838: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31195          <idle>-0     (-----) [003] .n.1 82315.617839: cpu_idle: state=4294967295 cpu_id=3
31196          <idle>-0     (-----) [004] d..1 82315.617841: cpu_idle: state=0 cpu_id=4
31197          <idle>-0     (-----) [003] d..2 82315.617845: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
31198  appEventThread-8881  ( 8858) [003] d..3 82315.617893: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
31199          <idle>-0     (-----) [006] dnh2 82315.617919: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
31200          <idle>-0     (-----) [006] .n.1 82315.617944: cpu_idle: state=4294967295 cpu_id=6
31201          <idle>-0     (-----) [006] d..2 82315.617946: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
31202  appEventThread-8881  ( 8858) [003] d..3 82315.617953: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
31203          <idle>-0     (-----) [004] dnh2 82315.617968: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
31204          <idle>-0     (-----) [004] .n.1 82315.617970: cpu_idle: state=4294967295 cpu_id=4
31205          <idle>-0     (-----) [004] d..2 82315.617973: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
31206  appEventThread-8881  ( 8858) [003] d..2 82315.617982: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31207          <idle>-0     (-----) [003] d..1 82315.617990: cpu_idle: state=0 cpu_id=3
31208           <...>-27550 (-----) [007] ...2 82315.618052: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
31209           <...>-27550 (-----) [007] d..4 82315.618053: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31210           <...>-27550 (-----) [007] dn.5 82315.618058: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31211           <...>-27550 (-----) [007] d..2 82315.618061: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31212<...>-9062 ( 8943) [007] .... 82315.618065: binder_transaction_received: transaction=1568537
31213<...>-9105 ( 9105) [006] .... 82315.618112: binder_transaction: transaction=1568544 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
31214<...>-9105 ( 9105) [006] .... 82315.618115: binder_transaction_alloc_buf: transaction=1568544 data_size=80 offsets_size=0
31215<...>-9105 ( 9105) [006] d..4 82315.618118: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
31216<...>-9105 ( 9105) [006] d..5 82315.618131: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
31217<...>-9005 ( 8943) [004] .... 82315.618133: binder_transaction: transaction=1568545 dest_node=1568477 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x9
31218          <idle>-0     (-----) [005] .n.1 82315.618134: cpu_idle: state=4294967295 cpu_id=5
31219<...>-9005 ( 8943) [004] .... 82315.618135: binder_transaction_alloc_buf: transaction=1568545 data_size=116 offsets_size=8
31220          <idle>-0     (-----) [005] d..2 82315.618137: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
31221<...>-13083 ( 8858) [005] .... 82315.618139: binder_transaction_received: transaction=1568544
31222<...>-9005 ( 8943) [004] ...2 82315.618140: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
31223<...>-9005 ( 8943) [004] d..4 82315.618142: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
31224<...>-9005 ( 8943) [004] d..5 82315.618148: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
31225<...>-9005 ( 8943) [004] d..2 82315.618153: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
31226<...>-8874 ( 8858) [004] .... 82315.618158: binder_transaction_received: transaction=1568545
31227<...>-13083 ( 8858) [005] d..1 82315.618162: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
31228          <idle>-0     (-----) [003] dnh2 82315.618176: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
31229<...>-13083 ( 8858) [005] d..2 82315.618180: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31230          <idle>-0     (-----) [003] .n.1 82315.618180: cpu_idle: state=4294967295 cpu_id=3
31231          <idle>-0     (-----) [005] d..1 82315.618181: cpu_idle: state=0 cpu_id=5
31232          <idle>-0     (-----) [003] d..2 82315.618185: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
31233<...>-8874 ( 8858) [004] .... 82315.618192: binder_transaction: transaction=1568546 dest_node=445687 dest_proc=8943 dest_thread=9005 reply=0 flags=0x10 code=0x2
31234<...>-8874 ( 8858) [004] .... 82315.618193: binder_transaction_alloc_buf: transaction=1568546 data_size=68 offsets_size=0
31235<...>-8874 ( 8858) [004] d..4 82315.618194: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
31236<...>-8874 ( 8858) [004] dn.5 82315.618198: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
31237<...>-8874 ( 8858) [004] d..2 82315.618201: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=android.anim next_pid=9005 next_prio=110
31238<...>-9005 ( 8943) [004] .... 82315.618204: binder_transaction_received: transaction=1568546
31239<...>-9005 ( 8943) [004] .... 82315.618212: binder_transaction: transaction=1568547 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
31240  appEventThread-8881  ( 8858) [003] d..2 82315.618213: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31241<...>-9005 ( 8943) [004] .... 82315.618213: binder_transaction_alloc_buf: transaction=1568547 data_size=4 offsets_size=0
31242          <idle>-0     (-----) [003] d..1 82315.618218: cpu_idle: state=0 cpu_id=3
31243<...>-9005 ( 8943) [004] d..2 82315.618221: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
31244<...>-8874 ( 8858) [004] .... 82315.618224: binder_transaction_received: transaction=1568547
31245<...>-8874 ( 8858) [004] .... 82315.618242: binder_transaction: transaction=1568548 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
31246<...>-8874 ( 8858) [004] .... 82315.618242: binder_transaction_alloc_buf: transaction=1568548 data_size=68 offsets_size=0
31247<...>-8874 ( 8858) [004] d..2 82315.618243: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
31248<...>-8874 ( 8858) [004] dn.3 82315.618246: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
31249<...>-8874 ( 8858) [004] d..2 82315.618249: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=android.anim next_pid=9005 next_prio=110
31250<...>-9005 ( 8943) [004] .... 82315.618251: binder_transaction_received: transaction=1568548
31251<...>-9005 ( 8943) [004] .... 82315.618266: binder_transaction: transaction=1568549 dest_node=1568477 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
31252<...>-9005 ( 8943) [004] .... 82315.618267: binder_transaction_alloc_buf: transaction=1568549 data_size=104 offsets_size=0
31253<...>-9005 ( 8943) [004] ...2 82315.618268: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
31254<...>-9005 ( 8943) [004] d..4 82315.618270: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
31255<...>-9005 ( 8943) [004] d..5 82315.618276: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
31256<...>-9005 ( 8943) [004] d..2 82315.618280: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
31257          <idle>-0     (-----) [005] .n.1 82315.618280: cpu_idle: state=4294967295 cpu_id=5
31258<...>-8874 ( 8858) [004] .... 82315.618282: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
31259          <idle>-0     (-----) [005] d..2 82315.618282: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
31260<...>-13083 ( 8858) [005] .... 82315.618283: binder_transaction_received: transaction=1568549
31261<...>-9105 ( 9105) [006] d..3 82315.618294: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
31262<...>-8874 ( 8858) [004] d..2 82315.618298: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31263<...>-9105 ( 9105) [006] d..4 82315.618302: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
31264          <idle>-0     (-----) [004] d..1 82315.618303: cpu_idle: state=0 cpu_id=4
31265<...>-13083 ( 8858) [005] ...1 82315.618304: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
31266<...>-9105 ( 9105) [006] d..2 82315.618309: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
31267<...>-13083 ( 8858) [005] ...1 82315.618312: tracing_mark_write: E|8858
31268<...>-13083 ( 8858) [005] ...1 82315.618320: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
31269<...>-13083 ( 8858) [005] ...1 82315.618321: tracing_mark_write: E|8858
31270<...>-9062 ( 8943) [007] .... 82315.618324: binder_transaction: transaction=1568550 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31271<...>-9062 ( 8943) [007] .... 82315.618326: binder_transaction_alloc_buf: transaction=1568550 data_size=28 offsets_size=8
31272<...>-9062 ( 8943) [007] .... 82315.618335: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
31273<...>-9062 ( 8943) [007] d..2 82315.618353: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31274<...>-13083 ( 8858) [005] .... 82315.618354: binder_transaction: transaction=1568553 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
31275<...>-13083 ( 8858) [005] .... 82315.618356: binder_transaction_alloc_buf: transaction=1568553 data_size=136 offsets_size=16
31276           <...>-27550 (-----) [007] .... 82315.618358: binder_transaction_received: transaction=1568550
31277<...>-13083 ( 8858) [005] ...2 82315.618369: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
31278    RenderThread-9436  ( 9105) [006] d..1 82315.618369: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
31279<...>-13083 ( 8858) [005] d..4 82315.618371: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=001
31280    RenderThread-9436  ( 9105) [006] d..2 82315.618373: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
31281<...>-13083 ( 8858) [005] d..5 82315.618382: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=005
31282<...>-13083 ( 8858) [005] d..2 82315.618403: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=S ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
31283    RenderThread-9436  ( 9105) [006] .... 82315.618406: binder_transaction: transaction=1568554 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
31284    RenderThread-9436  ( 9105) [006] .... 82315.618407: binder_transaction_alloc_buf: transaction=1568554 data_size=104 offsets_size=0
31285    RenderThread-9436  ( 9105) [006] d..4 82315.618408: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
31286<...>-1127 ( 621) [005] .... 82315.618409: binder_transaction_received: transaction=1568553
31287    RenderThread-9436  ( 9105) [006] d..5 82315.618415: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
31288    RenderThread-9436  ( 9105) [006] d..2 82315.618419: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
31289          <idle>-0     (-----) [004] .n.1 82315.618420: cpu_idle: state=4294967295 cpu_id=4
31290          <idle>-0     (-----) [004] d..2 82315.618423: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
31291<...>-8874 ( 8858) [004] .... 82315.618425: binder_transaction_received: transaction=1568554
31292<...>-1127 ( 621) [005] ...1 82315.618433: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
31293<...>-1127 ( 621) [005] d.s2 82315.618455: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=006
31294           <...>-27550 (-----) [007] d.s2 82315.618458: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=004
31295<...>-1127 ( 621) [005] dns3 82315.618464: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=005
31296<...>-1127 ( 621) [005] dns1 82315.618468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
31297<...>-8874 ( 8858) [004] .... 82315.618469: binder_transaction: transaction=1568555 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
31298<...>-9105 ( 9105) [006] d..2 82315.618469: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31299           <...>-27550 (-----) [007] d.s3 82315.618470: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=005
31300<...>-8874 ( 8858) [004] .... 82315.618470: binder_transaction_alloc_buf: transaction=1568555 data_size=52 offsets_size=8
31301          <idle>-0     (-----) [006] d..1 82315.618474: cpu_idle: state=0 cpu_id=6
31302<...>-1127 ( 621) [005] dns2 82315.618479: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=006
31303<...>-1127 ( 621) [005] d..2 82315.618483: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=110 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
31304          <idle>-0     (-----) [006] .n.1 82315.618484: cpu_idle: state=4294967295 cpu_id=6
31305          <idle>-0     (-----) [006] d..2 82315.618488: 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
31306<...>-8874 ( 8858) [004] d..2 82315.618488: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
31307  crtc_event:111-322   (  322) [005] d..2 82315.618491: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
31308<...>-8874 ( 8858) [004] d..3 82315.618493: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
31309     rcu_preempt-7     (    7) [006] d..2 82315.618497: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
31310    RenderThread-9436  ( 9105) [006] .... 82315.618499: binder_transaction_received: transaction=1568555
31311<...>-8874 ( 8858) [004] d..2 82315.618504: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
31312          <idle>-0     (-----) [004] d..1 82315.618508: cpu_idle: state=0 cpu_id=4
31313<...>-1127 ( 621) [005] ...1 82315.618517: tracing_mark_write: B|621|AllocBuffer
31314<...>-1127 ( 621) [005] ...1 82315.618523: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9400320
31315           <...>-27550 (-----) [007] .... 82315.618590: binder_transaction: transaction=1568556 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x2
31316           <...>-27550 (-----) [007] .... 82315.618592: binder_transaction_alloc_buf: transaction=1568556 data_size=100 offsets_size=0
31317           <...>-27550 (-----) [007] ...2 82315.618595: binder_set_priority: proc=608 thread=608 old=120 => new=110 desired=110
31318           <...>-27550 (-----) [007] d..4 82315.618596: sched_waking: comm=servicemanager pid=608 prio=110 target_cpu=003
31319<...>-1127 ( 621) [005] ...1 82315.618602: tracing_mark_write: E|621
31320<...>-1127 ( 621) [005] ...1 82315.618604: tracing_mark_write: B|621|ION_IOC_MAP
31321<...>-1127 ( 621) [005] ...1 82315.618613: tracing_mark_write: E|621
31322<...>-1127 ( 621) [005] ...1 82315.618615: tracing_mark_write: E|621
31323<...>-1127 ( 621) [005] ...1 82315.618616: tracing_mark_write: B|621|AllocBuffer
31324           <...>-27550 (-----) [007] d..2 82315.618617: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31325          <idle>-0     (-----) [000] dnh2 82315.618617: sched_wakeup: comm=servicemanager pid=608 prio=110 target_cpu=000
31326<...>-1127 ( 621) [005] ...1 82315.618618: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
31327          <idle>-0     (-----) [000] .n.1 82315.618621: cpu_idle: state=4294967295 cpu_id=0
31328<...>-1127 ( 621) [005] ...1 82315.618621: tracing_mark_write: E|621
31329<...>-1127 ( 621) [005] ...1 82315.618622: tracing_mark_write: B|621|ION_IOC_MAP
31330<...>-1127 ( 621) [005] ...1 82315.618624: tracing_mark_write: E|621
31331<...>-1127 ( 621) [005] ...1 82315.618625: tracing_mark_write: E|621
31332          <idle>-0     (-----) [007] d..1 82315.618626: cpu_idle: state=0 cpu_id=7
31333          <idle>-0     (-----) [000] d..2 82315.618628: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=608 next_prio=110
31334<...>-608 ( 608) [000] .... 82315.618635: binder_transaction_received: transaction=1568556
31335<...>-1127 ( 621) [005] ...1 82315.618656: tracing_mark_write: E|621
31336<...>-1127 ( 621) [005] .... 82315.618661: binder_transaction: transaction=1568557 dest_node=0 dest_proc=8858 dest_thread=13083 reply=1 flags=0x0 code=0x0
31337<...>-1127 ( 621) [005] .... 82315.618662: binder_transaction_alloc_buf: transaction=1568557 data_size=172 offsets_size=32
31338<...>-1127 ( 621) [005] d..2 82315.618681: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
31339<...>-1127 ( 621) [005] d..3 82315.618691: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
31340<...>-1127 ( 621) [005] .... 82315.618692: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
31341          <idle>-0     (-----) [004] .n.1 82315.618695: cpu_idle: state=4294967295 cpu_id=4
31342          <idle>-0     (-----) [004] d..2 82315.618698: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
31343<...>-13083 ( 8858) [004] .... 82315.618700: binder_transaction_received: transaction=1568557
31344<...>-1127 ( 621) [005] ...1 82315.618701: tracing_mark_write: B|621|FreeBuffer
31345<...>-1127 ( 621) [005] ...1 82315.618706: tracing_mark_write: E|621
31346<...>-1127 ( 621) [005] ...1 82315.618707: tracing_mark_write: B|621|FreeBuffer
31347<...>-1127 ( 621) [005] ...1 82315.618708: tracing_mark_write: B|621|UnmapBuffer
31348<...>-13083 ( 8858) [004] ...1 82315.618713: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
31349<...>-1127 ( 621) [005] ...1 82315.618717: tracing_mark_write: E|621
31350<...>-1127 ( 621) [005] d..2 82315.618719: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
31351<...>-1127 ( 621) [005] d..3 82315.618733: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=007
31352          <idle>-0     (-----) [007] .n.1 82315.618738: cpu_idle: state=4294967295 cpu_id=7
31353<...>-13083 ( 8858) [004] ...1 82315.618744: tracing_mark_write: E|8858
31354<...>-1127 ( 621) [005] ...1 82315.618750: tracing_mark_write: E|621
31355          <idle>-0     (-----) [007] d..2 82315.618751: 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
31356<...>-13083 ( 8858) [004] ...1 82315.618757: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
31357         rcuop/4-45    (   45) [007] d..2 82315.618759: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31358<...>-13083 ( 8858) [004] ...1 82315.618759: tracing_mark_write: E|8858
31359          <idle>-0     (-----) [007] d..1 82315.618761: cpu_idle: state=0 cpu_id=7
31360<...>-1127 ( 621) [005] d..2 82315.618762: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
31361<...>-13083 ( 8858) [004] .... 82315.618774: binder_transaction: transaction=1568558 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
31362<...>-13083 ( 8858) [004] .... 82315.618774: binder_transaction_alloc_buf: transaction=1568558 data_size=28 offsets_size=0
31363<...>-13083 ( 8858) [004] d..2 82315.618775: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
31364<...>-13083 ( 8858) [004] d..3 82315.618780: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
31365<...>-13083 ( 8858) [004] .... 82315.618781: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
31366<...>-13083 ( 8858) [004] d..2 82315.618791: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
31367<...>-9005 ( 8943) [004] .... 82315.618795: binder_transaction_received: transaction=1568558
31368<...>-608 ( 608) [000] .... 82315.618806: binder_transaction: transaction=1568559 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31369<...>-608 ( 608) [000] .... 82315.618808: binder_transaction_alloc_buf: transaction=1568559 data_size=24 offsets_size=8
31370<...>-9005 ( 8943) [004] .... 82315.618813: binder_transaction: transaction=1568560 dest_node=1568477 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
31371<...>-9005 ( 8943) [004] .... 82315.618814: binder_transaction_alloc_buf: transaction=1568560 data_size=84 offsets_size=0
31372<...>-9005 ( 8943) [004] ...2 82315.618818: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
31373<...>-608 ( 608) [000] d..2 82315.618818: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
31374<...>-9005 ( 8943) [004] d..4 82315.618819: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
31375<...>-9005 ( 8943) [004] dn.5 82315.618823: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
31376<...>-9005 ( 8943) [004] d..2 82315.618826: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
31377<...>-13083 ( 8858) [004] .... 82315.618828: binder_transaction_received: transaction=1568560
31378<...>-608 ( 608) [000] .... 82315.618828: binder_set_priority: proc=608 thread=608 old=110 => new=120 desired=120
31379          <idle>-0     (-----) [007] dnh2 82315.618832: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
31380          <idle>-0     (-----) [007] .n.1 82315.618834: cpu_idle: state=4294967295 cpu_id=7
31381          <idle>-0     (-----) [007] d..2 82315.618837: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31382           <...>-27550 (-----) [007] .... 82315.618839: binder_transaction_received: transaction=1568559
31383<...>-13083 ( 8858) [004] .... 82315.618841: binder_transaction: transaction=1568562 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
31384<...>-13083 ( 8858) [004] .... 82315.618842: binder_transaction_alloc_buf: transaction=1568562 data_size=208 offsets_size=16
31385<...>-13083 ( 8858) [004] .... 82315.618853: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
31386<...>-608 ( 608) [000] d..2 82315.618861: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31387<...>-13083 ( 8858) [004] d..2 82315.618868: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
31388<...>-9005 ( 8943) [004] .... 82315.618871: binder_transaction_received: transaction=1568562
31389          <idle>-0     (-----) [000] d..1 82315.618882: cpu_idle: state=0 cpu_id=0
31390<...>-9005 ( 8943) [004] ...1 82315.618889: tracing_mark_write: B|8943|HIDL::IMapper::importBuffer::passthrough
31391          <idle>-0     (-----) [000] ...1 82315.618892: cpu_idle: state=4294967295 cpu_id=0
31392           <...>-27550 (-----) [007] .... 82315.618894: binder_transaction: transaction=1568563 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x4
31393          <idle>-0     (-----) [000] d..1 82315.618894: cpu_idle: state=0 cpu_id=0
31394           <...>-27550 (-----) [007] .... 82315.618895: binder_transaction_alloc_buf: transaction=1568563 data_size=68 offsets_size=0
31395           <...>-27550 (-----) [007] ...2 82315.618896: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
31396           <...>-27550 (-----) [007] d..4 82315.618896: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
31397           <...>-27550 (-----) [007] dn.5 82315.618903: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
31398           <...>-27550 (-----) [007] d..2 82315.618905: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
31399<...>-13083 ( 8858) [007] .... 82315.618909: binder_transaction_received: transaction=1568563
31400<...>-9005 ( 8943) [004] ...1 82315.618913: tracing_mark_write: E|8943
31401<...>-9005 ( 8943) [004] ...1 82315.618917: tracing_mark_write: B|8943|HIDL::IMapper::validateBufferSize::passthrough
31402<...>-9005 ( 8943) [004] ...1 82315.618924: tracing_mark_write: E|8943
31403<...>-9005 ( 8943) [004] ...1 82315.618928: tracing_mark_write: B|8943|HIDL::IMapper::getTransportSize::passthrough
31404<...>-9005 ( 8943) [004] ...1 82315.618930: tracing_mark_write: E|8943
31405<...>-9005 ( 8943) [004] ...1 82315.618951: tracing_mark_write: B|8943|HIDL::IMapper::lock::passthrough
31406<...>-9005 ( 8943) [004] ...1 82315.618954: tracing_mark_write: B|8943|MapBuffer
31407<...>-9005 ( 8943) [004] ...1 82315.618980: tracing_mark_write: E|8943
31408<...>-9005 ( 8943) [004] ...1 82315.618982: tracing_mark_write: B|8943|CleanBuffer
31409<...>-1054 ( 1054) [005] d..2 82315.618982: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
31410<...>-9005 ( 8943) [004] ...1 82315.618984: tracing_mark_write: C|8943|operation id|2
31411          <idle>-0     (-----) [005] d..1 82315.618988: cpu_idle: state=0 cpu_id=5
31412<...>-13083 ( 8858) [007] d..1 82315.618996: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
31413    RenderThread-9436  ( 9105) [006] d..2 82315.619000: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
31414<...>-13083 ( 8858) [007] .... 82315.619008: binder_transaction: transaction=1568564 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31415<...>-13083 ( 8858) [007] .... 82315.619009: binder_transaction_alloc_buf: transaction=1568564 data_size=24 offsets_size=8
31416          <idle>-0     (-----) [003] dnh2 82315.619010: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
31417          <idle>-0     (-----) [003] .n.1 82315.619014: cpu_idle: state=4294967295 cpu_id=3
31418    RenderThread-9436  ( 9105) [006] d..3 82315.619016: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
31419          <idle>-0     (-----) [003] d..2 82315.619019: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
31420          <idle>-0     (-----) [005] .n.1 82315.619021: cpu_idle: state=4294967295 cpu_id=5
31421          <idle>-0     (-----) [005] d..2 82315.619036: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31422<...>-13083 ( 8858) [007] .... 82315.619037: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
31423  appEventThread-8881  ( 8858) [003] d..2 82315.619045: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31424          <idle>-0     (-----) [001] d.s3 82315.619049: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=005
31425          <idle>-0     (-----) [003] d..1 82315.619050: cpu_idle: state=0 cpu_id=3
31426<...>-13083 ( 8858) [007] d..2 82315.619051: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31427           <...>-27550 (-----) [007] .... 82315.619055: binder_transaction_received: transaction=1568564
31428          <idle>-0     (-----) [001] ...1 82315.619064: cpu_idle: state=4294967295 cpu_id=1
31429 kgsl_worker_thr-258   (  258) [005] d..2 82315.619064: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31430          <idle>-0     (-----) [001] d..1 82315.619067: cpu_idle: state=0 cpu_id=1
31431          <idle>-0     (-----) [005] d.h3 82315.619069: sched_blocked_reason: pid=1054 iowait=0 caller=wait_for_tx_done+0x34/0x120
31432          <idle>-0     (-----) [005] dnh3 82315.619070: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=005
31433           <...>-27550 (-----) [007] .... 82315.619071: binder_transaction: transaction=1568567 dest_node=1568565 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
31434           <...>-27550 (-----) [007] .... 82315.619072: binder_transaction_alloc_buf: transaction=1568567 data_size=80 offsets_size=0
31435           <...>-27550 (-----) [007] ...2 82315.619073: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
31436          <idle>-0     (-----) [005] d..2 82315.619074: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
31437           <...>-27550 (-----) [007] d..4 82315.619074: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
31438           <...>-27550 (-----) [007] dn.5 82315.619078: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
31439           <...>-27550 (-----) [007] d..2 82315.619080: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
31440<...>-13083 ( 8858) [007] .... 82315.619083: binder_transaction_received: transaction=1568567
31441    RenderThread-9436  ( 9105) [006] d..2 82315.619093: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
31442<...>-13083 ( 8858) [007] .... 82315.619095: binder_transaction: transaction=1568568 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31443<...>-13083 ( 8858) [007] .... 82315.619095: binder_transaction_alloc_buf: transaction=1568568 data_size=32 offsets_size=8
31444    RenderThread-9436  ( 9105) [006] dn.3 82315.619099: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31445    RenderThread-9436  ( 9105) [006] d..2 82315.619103: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31446<...>-1054 ( 1054) [005] d..2 82315.619144: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31447          <idle>-0     (-----) [005] d..1 82315.619147: cpu_idle: state=0 cpu_id=5
31448<...>-13083 ( 8858) [007] .... 82315.619153: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
31449<...>-13083 ( 8858) [007] d..2 82315.619165: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31450           <...>-27550 (-----) [007] .... 82315.619168: binder_transaction_received: transaction=1568568
31451 kgsl_worker_thr-258   (  258) [006] d..1 82315.619176: clk_enable: gpll0_out_even
31452 kgsl_worker_thr-258   (  258) [006] d..1 82315.619177: clk_enable: gcc_gpu_gpll0_div_clk_src
31453           <...>-27550 (-----) [007] .... 82315.619185: binder_transaction: transaction=1568569 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x4
31454           <...>-27550 (-----) [007] .... 82315.619186: binder_transaction_alloc_buf: transaction=1568569 data_size=68 offsets_size=0
31455           <...>-27550 (-----) [007] ...2 82315.619187: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
31456           <...>-27550 (-----) [007] d..4 82315.619188: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
31457           <...>-27550 (-----) [007] dn.5 82315.619192: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
31458           <...>-27550 (-----) [007] d..2 82315.619194: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
31459<...>-13083 ( 8858) [007] .... 82315.619197: binder_transaction_received: transaction=1568569
31460<...>-13083 ( 8858) [007] d..1 82315.619221: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
31461<...>-13083 ( 8858) [007] .... 82315.619232: binder_transaction: transaction=1568570 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31462<...>-13083 ( 8858) [007] .... 82315.619232: binder_transaction_alloc_buf: transaction=1568570 data_size=24 offsets_size=8
31463          <idle>-0     (-----) [003] dnh2 82315.619235: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
31464<...>-13083 ( 8858) [007] .... 82315.619237: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
31465          <idle>-0     (-----) [003] .n.1 82315.619239: cpu_idle: state=4294967295 cpu_id=3
31466          <idle>-0     (-----) [003] d..2 82315.619243: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
31467<...>-13083 ( 8858) [007] d..2 82315.619250: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31468           <...>-27550 (-----) [007] .... 82315.619253: binder_transaction_received: transaction=1568570
31469  appEventThread-8881  ( 8858) [003] d..2 82315.619263: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31470           <...>-27550 (-----) [007] .... 82315.619264: binder_transaction: transaction=1568573 dest_node=1568571 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
31471           <...>-27550 (-----) [007] .... 82315.619265: binder_transaction_alloc_buf: transaction=1568573 data_size=80 offsets_size=0
31472           <...>-27550 (-----) [007] ...2 82315.619266: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
31473           <...>-27550 (-----) [007] d..4 82315.619267: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
31474          <idle>-0     (-----) [003] d..1 82315.619269: cpu_idle: state=0 cpu_id=3
31475           <...>-27550 (-----) [007] dn.5 82315.619270: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
31476           <...>-27550 (-----) [007] d..2 82315.619273: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
31477<...>-13083 ( 8858) [007] .... 82315.619275: binder_transaction_received: transaction=1568573
31478<...>-13083 ( 8858) [007] .... 82315.619285: binder_transaction: transaction=1568574 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31479<...>-13083 ( 8858) [007] .... 82315.619286: binder_transaction_alloc_buf: transaction=1568574 data_size=32 offsets_size=8
31480<...>-13083 ( 8858) [007] .... 82315.619288: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
31481<...>-13083 ( 8858) [007] d..2 82315.619299: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31482           <...>-27550 (-----) [007] .... 82315.619302: binder_transaction_received: transaction=1568574
31483           <...>-27550 (-----) [007] .... 82315.619346: binder_transaction: transaction=1568575 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
31484           <...>-27550 (-----) [007] .... 82315.619347: binder_transaction_alloc_buf: transaction=1568575 data_size=96 offsets_size=0
31485           <...>-27550 (-----) [007] ...2 82315.619348: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
31486           <...>-27550 (-----) [007] d..4 82315.619349: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31487           <...>-27550 (-----) [007] dn.5 82315.619353: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31488           <...>-27550 (-----) [007] d..2 82315.619356: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31489<...>-9062 ( 8943) [007] .... 82315.619359: binder_transaction_received: transaction=1568575
31490          <idle>-0     (-----) [005] ...1 82315.619394: cpu_idle: state=4294967295 cpu_id=5
31491          <idle>-0     (-----) [005] d..1 82315.619396: cpu_idle: state=0 cpu_id=5
31492<...>-9005 ( 8943) [004] ...1 82315.619459: tracing_mark_write: E|8943
31493<...>-9005 ( 8943) [004] ...1 82315.619461: tracing_mark_write: E|8943
31494<...>-9062 ( 8943) [007] .... 82315.619470: binder_transaction: transaction=1568576 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31495<...>-9062 ( 8943) [007] .... 82315.619471: binder_transaction_alloc_buf: transaction=1568576 data_size=340 offsets_size=0
31496<...>-9062 ( 8943) [007] .... 82315.619473: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
31497<...>-9062 ( 8943) [007] d..2 82315.619487: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31498           <...>-27550 (-----) [007] .... 82315.619491: binder_transaction_received: transaction=1568576
31499           <...>-27550 (-----) [007] .... 82315.619634: binder_transaction: transaction=1568577 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
31500           <...>-27550 (-----) [007] .... 82315.619635: binder_transaction_alloc_buf: transaction=1568577 data_size=96 offsets_size=0
31501           <...>-27550 (-----) [007] ...2 82315.619636: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
31502           <...>-27550 (-----) [007] d..4 82315.619637: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31503           <...>-27550 (-----) [007] dn.5 82315.619641: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31504           <...>-27550 (-----) [007] d..2 82315.619644: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31505<...>-9062 ( 8943) [007] .... 82315.619647: binder_transaction_received: transaction=1568577
31506 kgsl_worker_thr-258   (  258) [006] d..1 82315.619683: clk_enable: gpu_cc_gmu_clk_src
31507 kgsl_worker_thr-258   (  258) [006] d..1 82315.619704: clk_enable: gpu_cc_cx_gmu_clk
31508 kgsl_worker_thr-258   (  258) [006] d..1 82315.619712: clk_enable: gpu_cc_cxo_clk
31509 kgsl_worker_thr-258   (  258) [006] d..1 82315.619718: clk_enable: gcc_ddrss_gpu_axi_clk
31510 kgsl_worker_thr-258   (  258) [006] d..1 82315.619724: clk_enable: gcc_gpu_memnoc_gfx_clk
31511<...>-9062 ( 8943) [007] .... 82315.619725: binder_transaction: transaction=1568578 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31512<...>-9062 ( 8943) [007] .... 82315.619727: binder_transaction_alloc_buf: transaction=1568578 data_size=340 offsets_size=0
31513<...>-9062 ( 8943) [007] .... 82315.619728: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
31514<...>-9062 ( 8943) [007] d..2 82315.619741: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31515           <...>-27550 (-----) [007] .... 82315.619745: binder_transaction_received: transaction=1568578
31516 kgsl_worker_thr-258   (  258) [006] d..2 82315.619760: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=RenderThread next_pid=9436 next_prio=120
31517    RenderThread-9436  ( 9105) [006] .... 82315.619842: binder_transaction: transaction=1568579 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
31518    RenderThread-9436  ( 9105) [006] .... 82315.619843: binder_transaction_alloc_buf: transaction=1568579 data_size=192 offsets_size=8
31519    RenderThread-9436  ( 9105) [006] d..4 82315.619846: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
31520    RenderThread-9436  ( 9105) [006] d..5 82315.619854: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
31521    RenderThread-9436  ( 9105) [006] d..2 82315.619858: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
31522<...>-13083 ( 8858) [006] d.h3 82315.619865: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31523<...>-13083 ( 8858) [006] d.h4 82315.619874: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
31524<...>-13083 ( 8858) [006] .... 82315.619878: binder_transaction_received: transaction=1568579
31525          <idle>-0     (-----) [005] .n.1 82315.619878: cpu_idle: state=4294967295 cpu_id=5
31526          <idle>-0     (-----) [005] d..2 82315.619881: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31527 kgsl_worker_thr-258   (  258) [005] d..2 82315.619888: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
31528          <idle>-0     (-----) [005] d..1 82315.619890: cpu_idle: state=0 cpu_id=5
31529<...>-13083 ( 8858) [006] .... 82315.619938: binder_transaction: transaction=1568580 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
31530<...>-13083 ( 8858) [006] .... 82315.619939: binder_transaction_alloc_buf: transaction=1568580 data_size=68 offsets_size=0
31531<...>-13083 ( 8858) [006] d..2 82315.619940: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
31532<...>-13083 ( 8858) [006] d..3 82315.619944: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
31533<...>-13083 ( 8858) [006] d..2 82315.619953: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
31534    RenderThread-9436  ( 9105) [006] .... 82315.619956: binder_transaction_received: transaction=1568580
31535          <idle>-0     (-----) [005] d.h2 82315.619989: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
31536          <idle>-0     (-----) [005] dnh3 82315.619992: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
31537          <idle>-0     (-----) [005] .n.1 82315.619994: cpu_idle: state=4294967295 cpu_id=5
31538          <idle>-0     (-----) [005] d..2 82315.619997: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31539    RenderThread-9436  ( 9105) [006] d..2 82315.620000: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31540 kgsl_worker_thr-258   (  258) [005] d..2 82315.620003: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
31541          <idle>-0     (-----) [005] d..1 82315.620005: cpu_idle: state=0 cpu_id=5
31542          <idle>-0     (-----) [006] d..1 82315.620005: cpu_idle: state=0 cpu_id=6
31543          <idle>-0     (-----) [005] .n.1 82315.620030: cpu_idle: state=4294967295 cpu_id=5
31544          <idle>-0     (-----) [005] d..2 82315.620032: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27570 next_prio=110
31545           <...>-27550 (-----) [007] d..2 82315.620047: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31546          <idle>-0     (-----) [007] d..1 82315.620055: cpu_idle: state=0 cpu_id=7
31547           <...>-27570 (-----) [005] d.h2 82315.620103: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
31548           <...>-27570 (-----) [005] d.h3 82315.620113: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31549          <idle>-0     (-----) [006] .n.1 82315.620119: cpu_idle: state=4294967295 cpu_id=6
31550          <idle>-0     (-----) [006] d..2 82315.620122: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31551 kgsl_worker_thr-258   (  258) [006] d..2 82315.620174: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31552          <idle>-0     (-----) [006] d..1 82315.620175: cpu_idle: state=0 cpu_id=6
31553          <idle>-0     (-----) [007] ...1 82315.620246: cpu_idle: state=4294967295 cpu_id=7
31554          <idle>-0     (-----) [007] d..1 82315.620247: cpu_idle: state=0 cpu_id=7
31555          <idle>-0     (-----) [006] d.h2 82315.620274: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31556          <idle>-0     (-----) [006] dnh3 82315.620277: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31557          <idle>-0     (-----) [006] .n.1 82315.620280: cpu_idle: state=4294967295 cpu_id=6
31558          <idle>-0     (-----) [006] d..2 82315.620282: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31559 kgsl_worker_thr-258   (  258) [006] d..2 82315.620299: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31560          <idle>-0     (-----) [006] d..1 82315.620300: cpu_idle: state=0 cpu_id=6
31561           <...>-27570 (-----) [005] .... 82315.620391: binder_transaction: transaction=1568581 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x7
31562           <...>-27570 (-----) [005] .... 82315.620393: binder_transaction_alloc_buf: transaction=1568581 data_size=68 offsets_size=0
31563           <...>-27570 (-----) [005] ...2 82315.620394: binder_set_priority: proc=8858 thread=13083 old=120 => new=116 desired=116
31564           <...>-27570 (-----) [005] d..4 82315.620395: sched_waking: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=006
31565          <idle>-0     (-----) [006] d.h2 82315.620399: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31566           <...>-27570 (-----) [005] dn.5 82315.620404: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=005
31567          <idle>-0     (-----) [006] dnh3 82315.620404: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31568          <idle>-0     (-----) [006] .n.1 82315.620407: cpu_idle: state=4294967295 cpu_id=6
31569           <...>-27570 (-----) [005] d..2 82315.620408: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=116
31570          <idle>-0     (-----) [006] d..2 82315.620409: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31571<...>-13083 ( 8858) [005] .... 82315.620412: binder_transaction_received: transaction=1568581
31572 kgsl_worker_thr-258   (  258) [006] d..2 82315.620415: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31573          <idle>-0     (-----) [006] d..1 82315.620416: cpu_idle: state=0 cpu_id=6
31574<...>-13083 ( 8858) [005] .... 82315.620426: binder_transaction: transaction=1568582 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
31575<...>-13083 ( 8858) [005] .... 82315.620427: binder_transaction_alloc_buf: transaction=1568582 data_size=24 offsets_size=8
31576<...>-13083 ( 8858) [005] .... 82315.620431: binder_set_priority: proc=8858 thread=13083 old=116 => new=120 desired=120
31577<...>-13083 ( 8858) [005] d..2 82315.620442: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=116
31578           <...>-27570 (-----) [005] .... 82315.620445: binder_transaction_received: transaction=1568582
31579           <...>-27570 (-----) [005] .... 82315.620463: binder_transaction: transaction=1568584 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0xb
31580           <...>-27570 (-----) [005] .... 82315.620464: binder_transaction_alloc_buf: transaction=1568584 data_size=88 offsets_size=8
31581           <...>-27570 (-----) [005] ...2 82315.620466: binder_set_priority: proc=8858 thread=13083 old=120 => new=116 desired=116
31582           <...>-27570 (-----) [005] d..4 82315.620467: sched_waking: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=005
31583           <...>-27570 (-----) [005] dn.5 82315.620471: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=005
31584           <...>-27570 (-----) [005] d..2 82315.620473: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=116
31585<...>-13083 ( 8858) [005] .... 82315.620476: binder_transaction_received: transaction=1568584
31586<...>-13083 ( 8858) [005] .... 82315.620499: binder_transaction: transaction=1568585 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
31587<...>-13083 ( 8858) [005] .... 82315.620499: binder_transaction_alloc_buf: transaction=1568585 data_size=56 offsets_size=0
31588<...>-13083 ( 8858) [005] .... 82315.620500: binder_set_priority: proc=8858 thread=13083 old=116 => new=120 desired=120
31589<...>-13083 ( 8858) [005] d..2 82315.620512: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=116
31590           <...>-27570 (-----) [005] .... 82315.620515: binder_transaction_received: transaction=1568585
31591          <idle>-0     (-----) [006] d.h2 82315.620516: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31592          <idle>-0     (-----) [006] dnh3 82315.620518: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31593          <idle>-0     (-----) [006] .n.1 82315.620520: cpu_idle: state=4294967295 cpu_id=6
31594          <idle>-0     (-----) [006] d..2 82315.620523: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31595           <...>-27570 (-----) [005] .... 82315.620525: binder_transaction: transaction=1568586 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0xc
31596           <...>-27570 (-----) [005] .... 82315.620526: binder_transaction_alloc_buf: transaction=1568586 data_size=88 offsets_size=8
31597           <...>-27570 (-----) [005] ...2 82315.620527: binder_set_priority: proc=8858 thread=13083 old=120 => new=116 desired=116
31598           <...>-27570 (-----) [005] d..4 82315.620528: sched_waking: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=005
31599 kgsl_worker_thr-258   (  258) [006] d..2 82315.620528: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31600          <idle>-0     (-----) [006] d..1 82315.620530: cpu_idle: state=0 cpu_id=6
31601           <...>-27570 (-----) [005] dn.5 82315.620532: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=005
31602           <...>-27570 (-----) [005] d..2 82315.620534: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=116
31603<...>-13083 ( 8858) [005] .... 82315.620537: binder_transaction_received: transaction=1568586
31604<...>-13083 ( 8858) [005] .... 82315.620544: binder_transaction: transaction=1568587 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
31605<...>-13083 ( 8858) [005] .... 82315.620545: binder_transaction_alloc_buf: transaction=1568587 data_size=4 offsets_size=0
31606<...>-13083 ( 8858) [005] .... 82315.620546: binder_set_priority: proc=8858 thread=13083 old=116 => new=120 desired=120
31607<...>-13083 ( 8858) [005] d..2 82315.620556: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=116
31608           <...>-27570 (-----) [005] .... 82315.620559: binder_transaction_received: transaction=1568587
31609           <...>-27570 (-----) [005] .... 82315.620572: binder_transaction: transaction=1568588 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x4
31610           <...>-27570 (-----) [005] .... 82315.620573: binder_transaction_alloc_buf: transaction=1568588 data_size=68 offsets_size=0
31611           <...>-27570 (-----) [005] ...2 82315.620574: binder_set_priority: proc=8858 thread=13083 old=120 => new=116 desired=116
31612           <...>-27570 (-----) [005] d..4 82315.620574: sched_waking: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=005
31613           <...>-27570 (-----) [005] dn.5 82315.620577: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=005
31614           <...>-27570 (-----) [005] d..2 82315.620580: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=116
31615<...>-13083 ( 8858) [005] .... 82315.620582: binder_transaction_received: transaction=1568588
31616<...>-13083 ( 8858) [005] d..1 82315.620607: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
31617<...>-13083 ( 8858) [005] .... 82315.620618: binder_transaction: transaction=1568589 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
31618<...>-13083 ( 8858) [005] .... 82315.620618: binder_transaction_alloc_buf: transaction=1568589 data_size=24 offsets_size=8
31619          <idle>-0     (-----) [003] dnh2 82315.620621: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
31620<...>-13083 ( 8858) [005] .... 82315.620623: binder_set_priority: proc=8858 thread=13083 old=116 => new=120 desired=120
31621          <idle>-0     (-----) [003] .n.1 82315.620625: cpu_idle: state=4294967295 cpu_id=3
31622          <idle>-0     (-----) [003] d..2 82315.620630: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
31623          <idle>-0     (-----) [006] d.h2 82315.620630: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31624          <idle>-0     (-----) [006] dnh3 82315.620632: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31625          <idle>-0     (-----) [006] .n.1 82315.620634: cpu_idle: state=4294967295 cpu_id=6
31626<...>-13083 ( 8858) [005] d..2 82315.620636: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=116
31627          <idle>-0     (-----) [006] d..2 82315.620637: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31628           <...>-27570 (-----) [005] .... 82315.620639: binder_transaction_received: transaction=1568589
31629 kgsl_worker_thr-258   (  258) [006] d..2 82315.620643: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31630          <idle>-0     (-----) [006] d..1 82315.620644: cpu_idle: state=0 cpu_id=6
31631           <...>-27570 (-----) [005] .... 82315.620650: binder_transaction: transaction=1568592 dest_node=1568590 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
31632  appEventThread-8881  ( 8858) [003] d..2 82315.620650: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31633           <...>-27570 (-----) [005] .... 82315.620651: binder_transaction_alloc_buf: transaction=1568592 data_size=80 offsets_size=0
31634           <...>-27570 (-----) [005] ...2 82315.620651: binder_set_priority: proc=8858 thread=13083 old=120 => new=116 desired=116
31635           <...>-27570 (-----) [005] d..4 82315.620652: sched_waking: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=005
31636          <idle>-0     (-----) [003] d..1 82315.620656: cpu_idle: state=0 cpu_id=3
31637           <...>-27570 (-----) [005] dn.5 82315.620656: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=005
31638           <...>-27570 (-----) [005] d..2 82315.620658: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=116
31639<...>-13083 ( 8858) [005] .... 82315.620661: binder_transaction_received: transaction=1568592
31640<...>-13083 ( 8858) [005] .... 82315.620671: binder_transaction: transaction=1568593 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
31641<...>-13083 ( 8858) [005] .... 82315.620672: binder_transaction_alloc_buf: transaction=1568593 data_size=32 offsets_size=8
31642<...>-13083 ( 8858) [005] .... 82315.620673: binder_set_priority: proc=8858 thread=13083 old=116 => new=120 desired=120
31643<...>-13083 ( 8858) [005] d..2 82315.620684: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=116
31644           <...>-27570 (-----) [005] .... 82315.620687: binder_transaction_received: transaction=1568593
31645          <idle>-0     (-----) [006] d.h2 82315.620744: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31646          <idle>-0     (-----) [006] dnh3 82315.620747: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31647          <idle>-0     (-----) [006] .n.1 82315.620749: cpu_idle: state=4294967295 cpu_id=6
31648          <idle>-0     (-----) [006] d..2 82315.620751: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31649 kgsl_worker_thr-258   (  258) [006] d..2 82315.620757: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31650          <idle>-0     (-----) [006] d..1 82315.620758: cpu_idle: state=0 cpu_id=6
31651           <...>-27570 (-----) [005] d..2 82315.620840: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
31652          <idle>-0     (-----) [006] d.h2 82315.620858: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31653          <idle>-0     (-----) [000] dnh2 82315.620859: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
31654          <idle>-0     (-----) [006] dnh3 82315.620860: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31655          <idle>-0     (-----) [000] .n.1 82315.620862: cpu_idle: state=4294967295 cpu_id=0
31656          <idle>-0     (-----) [006] .n.1 82315.620862: cpu_idle: state=4294967295 cpu_id=6
31657          <idle>-0     (-----) [006] d..2 82315.620865: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31658          <idle>-0     (-----) [000] d..2 82315.620869: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
31659 kgsl_worker_thr-258   (  258) [006] d..2 82315.620871: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31660          <idle>-0     (-----) [006] d..1 82315.620872: cpu_idle: state=0 cpu_id=6
31661           <...>-27570 (-----) [005] d..1 82315.620888: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
31662           <...>-27570 (-----) [005] d..2 82315.620895: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
31663          <idle>-0     (-----) [007] .n.1 82315.620899: cpu_idle: state=4294967295 cpu_id=7
31664          <idle>-0     (-----) [007] d..2 82315.620903: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31665           <...>-27570 (-----) [005] d..2 82315.620904: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31666          <idle>-0     (-----) [005] d..1 82315.620912: cpu_idle: state=0 cpu_id=5
31667           <...>-27550 (-----) [007] d..3 82315.620917: sched_waking: comm=RenderThread pid=27570 prio=116 target_cpu=005
31668           <...>-27550 (-----) [007] d..4 82315.620924: sched_wakeup: comm=RenderThread pid=27570 prio=116 target_cpu=005
31669          <idle>-0     (-----) [005] .n.1 82315.620929: cpu_idle: state=4294967295 cpu_id=5
31670           <...>-27550 (-----) [007] d..2 82315.620932: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31671          <idle>-0     (-----) [005] d..2 82315.620933: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=116
31672          <idle>-0     (-----) [007] d..1 82315.620935: cpu_idle: state=0 cpu_id=7
31673           <...>-27570 (-----) [005] d..1 82315.620942: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
31674           <...>-27570 (-----) [005] d..2 82315.620947: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
31675          <idle>-0     (-----) [007] .n.1 82315.620951: cpu_idle: state=4294967295 cpu_id=7
31676           <...>-27570 (-----) [005] d..2 82315.620953: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31677          <idle>-0     (-----) [007] d..2 82315.620954: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31678          <idle>-0     (-----) [005] d..1 82315.620956: cpu_idle: state=0 cpu_id=5
31679          <idle>-0     (-----) [006] d.h2 82315.620972: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31680          <idle>-0     (-----) [006] dnh3 82315.620974: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31681          <idle>-0     (-----) [006] .n.1 82315.620976: cpu_idle: state=4294967295 cpu_id=6
31682          <idle>-0     (-----) [006] d..2 82315.620978: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31683 kgsl_worker_thr-258   (  258) [006] d..2 82315.620984: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31684          <idle>-0     (-----) [006] d..1 82315.620986: cpu_idle: state=0 cpu_id=6
31685<...>-581 ( 571) [000] d..2 82315.621034: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
31686          <idle>-0     (-----) [000] d..1 82315.621045: cpu_idle: state=0 cpu_id=0
31687           <...>-27550 (-----) [007] .... 82315.621052: binder_transaction: transaction=1568594 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xc4
31688           <...>-27550 (-----) [007] .... 82315.621053: binder_transaction_alloc_buf: transaction=1568594 data_size=72 offsets_size=0
31689           <...>-27550 (-----) [007] ...2 82315.621055: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
31690           <...>-27550 (-----) [007] d..4 82315.621055: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31691           <...>-27550 (-----) [007] dn.5 82315.621060: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31692           <...>-27550 (-----) [007] d..2 82315.621063: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31693<...>-9062 ( 8943) [007] .... 82315.621066: binder_transaction_received: transaction=1568594
31694          <idle>-0     (-----) [006] d.h2 82315.621085: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31695          <idle>-0     (-----) [006] dnh3 82315.621088: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31696          <idle>-0     (-----) [006] .n.1 82315.621089: cpu_idle: state=4294967295 cpu_id=6
31697          <idle>-0     (-----) [006] d..2 82315.621092: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31698 kgsl_worker_thr-258   (  258) [006] d..2 82315.621099: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31699          <idle>-0     (-----) [006] d..1 82315.621101: cpu_idle: state=0 cpu_id=6
31700          <idle>-0     (-----) [005] ...1 82315.621147: cpu_idle: state=4294967295 cpu_id=5
31701          <idle>-0     (-----) [005] d..1 82315.621148: cpu_idle: state=0 cpu_id=5
31702          <idle>-0     (-----) [006] d.h2 82315.621199: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31703          <idle>-0     (-----) [006] dnh3 82315.621201: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31704          <idle>-0     (-----) [006] .n.1 82315.621203: cpu_idle: state=4294967295 cpu_id=6
31705          <idle>-0     (-----) [006] d..2 82315.621206: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31706<...>-9062 ( 8943) [007] .... 82315.621215: binder_transaction: transaction=1568595 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31707<...>-9062 ( 8943) [007] .... 82315.621216: binder_transaction_alloc_buf: transaction=1568595 data_size=4 offsets_size=0
31708<...>-9062 ( 8943) [007] .... 82315.621217: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
31709 kgsl_worker_thr-258   (  258) [006] d..2 82315.621224: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31710          <idle>-0     (-----) [006] d..1 82315.621225: cpu_idle: state=0 cpu_id=6
31711<...>-9062 ( 8943) [007] d..2 82315.621232: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31712           <...>-27550 (-----) [007] .... 82315.621236: binder_transaction_received: transaction=1568595
31713           <...>-27550 (-----) [007] .... 82315.621299: binder_transaction: transaction=1568596 dest_node=397538 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
31714           <...>-27550 (-----) [007] .... 82315.621300: binder_transaction_alloc_buf: transaction=1568596 data_size=160 offsets_size=8
31715<...>-9005 ( 8943) [004] ...1 82315.621305: tracing_mark_write: B|8943|HIDL::IMapper::unlock::passthrough
31716<...>-9005 ( 8943) [004] ...1 82315.621313: tracing_mark_write: B|8943|CleanBuffer
31717<...>-9005 ( 8943) [004] ...1 82315.621315: tracing_mark_write: C|8943|operation id|1
31718          <idle>-0     (-----) [006] d.h2 82315.621322: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31719          <idle>-0     (-----) [006] dnh3 82315.621324: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31720          <idle>-0     (-----) [006] .n.1 82315.621326: cpu_idle: state=4294967295 cpu_id=6
31721          <idle>-0     (-----) [006] d..2 82315.621328: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31722 kgsl_worker_thr-258   (  258) [006] d..2 82315.621340: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31723          <idle>-0     (-----) [006] d..1 82315.621342: cpu_idle: state=0 cpu_id=6
31724          <idle>-0     (-----) [003] d.s4 82315.621374: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31725          <idle>-0     (-----) [006] dnh2 82315.621387: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31726          <idle>-0     (-----) [003] ...1 82315.621388: cpu_idle: state=4294967295 cpu_id=3
31727          <idle>-0     (-----) [006] .n.1 82315.621389: cpu_idle: state=4294967295 cpu_id=6
31728          <idle>-0     (-----) [003] d..1 82315.621390: cpu_idle: state=0 cpu_id=3
31729          <idle>-0     (-----) [006] d..2 82315.621391: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31730 kgsl_worker_thr-258   (  258) [006] d..2 82315.621398: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31731          <idle>-0     (-----) [006] d..1 82315.621400: cpu_idle: state=0 cpu_id=6
31732          <idle>-0     (-----) [003] d.s4 82315.621417: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31733          <idle>-0     (-----) [003] ...1 82315.621428: cpu_idle: state=4294967295 cpu_id=3
31734          <idle>-0     (-----) [006] dnh2 82315.621429: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31735          <idle>-0     (-----) [006] .n.1 82315.621431: cpu_idle: state=4294967295 cpu_id=6
31736          <idle>-0     (-----) [003] d..1 82315.621432: cpu_idle: state=0 cpu_id=3
31737          <idle>-0     (-----) [006] d..2 82315.621433: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31738 kgsl_worker_thr-258   (  258) [006] d..2 82315.621440: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31739          <idle>-0     (-----) [006] d..1 82315.621442: cpu_idle: state=0 cpu_id=6
31740           <...>-27550 (-----) [007] ...2 82315.621469: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
31741           <...>-27550 (-----) [007] d..4 82315.621470: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31742          <idle>-0     (-----) [003] d.s4 82315.621472: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31743           <...>-27550 (-----) [007] dn.5 82315.621474: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31744           <...>-27550 (-----) [007] d..2 82315.621477: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31745<...>-9062 ( 8943) [007] .... 82315.621480: binder_transaction_received: transaction=1568596
31746          <idle>-0     (-----) [006] dnh2 82315.621483: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31747          <idle>-0     (-----) [003] ...1 82315.621483: cpu_idle: state=4294967295 cpu_id=3
31748          <idle>-0     (-----) [006] .n.1 82315.621485: cpu_idle: state=4294967295 cpu_id=6
31749          <idle>-0     (-----) [003] d..1 82315.621486: cpu_idle: state=0 cpu_id=3
31750          <idle>-0     (-----) [006] d..2 82315.621488: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31751 kgsl_worker_thr-258   (  258) [006] d..2 82315.621496: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31752          <idle>-0     (-----) [006] d..1 82315.621498: cpu_idle: state=0 cpu_id=6
31753          <idle>-0     (-----) [003] d.s4 82315.621580: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31754          <idle>-0     (-----) [003] ...1 82315.621590: cpu_idle: state=4294967295 cpu_id=3
31755          <idle>-0     (-----) [006] dnh2 82315.621591: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31756          <idle>-0     (-----) [006] .n.1 82315.621593: cpu_idle: state=4294967295 cpu_id=6
31757          <idle>-0     (-----) [003] d..1 82315.621594: cpu_idle: state=0 cpu_id=3
31758          <idle>-0     (-----) [006] d..2 82315.621596: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31759 kgsl_worker_thr-258   (  258) [006] d..2 82315.621603: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31760          <idle>-0     (-----) [006] d..1 82315.621605: cpu_idle: state=0 cpu_id=6
31761          <idle>-0     (-----) [003] d.s4 82315.621620: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31762          <idle>-0     (-----) [006] dnh2 82315.621632: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31763          <idle>-0     (-----) [003] ...1 82315.621632: cpu_idle: state=4294967295 cpu_id=3
31764          <idle>-0     (-----) [006] .n.1 82315.621634: cpu_idle: state=4294967295 cpu_id=6
31765          <idle>-0     (-----) [003] d..1 82315.621634: cpu_idle: state=0 cpu_id=3
31766          <idle>-0     (-----) [006] d..2 82315.621636: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31767 kgsl_worker_thr-258   (  258) [006] d..2 82315.621651: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31768          <idle>-0     (-----) [006] d..1 82315.621652: cpu_idle: state=0 cpu_id=6
31769          <idle>-0     (-----) [006] d.h2 82315.621752: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31770          <idle>-0     (-----) [006] dnh3 82315.621755: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31771<...>-9062 ( 8943) [007] d..2 82315.621757: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=D|K ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31772          <idle>-0     (-----) [006] .n.1 82315.621757: cpu_idle: state=4294967295 cpu_id=6
31773          <idle>-0     (-----) [006] d..2 82315.621759: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31774           <...>-27550 (-----) [007] d..2 82315.621767: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31775          <idle>-0     (-----) [007] d..1 82315.621783: cpu_idle: state=0 cpu_id=7
31776<...>-9005 ( 8943) [004] d.h1 82315.621787: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=004
31777<...>-9005 ( 8943) [004] d.h2 82315.621798: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=005
31778          <idle>-0     (-----) [005] .n.1 82315.621802: cpu_idle: state=4294967295 cpu_id=5
31779          <idle>-0     (-----) [005] d..2 82315.621805: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
31780        DispSync-8879  ( 8858) [005] d..1 82315.621818: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
31781          <idle>-0     (-----) [002] dnh2 82315.621835: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
31782        DispSync-8879  ( 8858) [005] d..2 82315.621838: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31783          <idle>-0     (-----) [002] .n.1 82315.621839: cpu_idle: state=4294967295 cpu_id=2
31784          <idle>-0     (-----) [005] d..1 82315.621842: cpu_idle: state=0 cpu_id=5
31785          <idle>-0     (-----) [002] d..2 82315.621845: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
31786<...>-9005 ( 8943) [004] d..1 82315.621851: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31787<...>-9005 ( 8943) [004] d..2 82315.621855: sched_blocked_reason: pid=9062 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
31788<...>-9005 ( 8943) [004] d..2 82315.621859: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31789<...>-9005 ( 8943) [004] ...1 82315.621862: tracing_mark_write: E|8943
31790          <idle>-0     (-----) [007] .n.1 82315.621863: cpu_idle: state=4294967295 cpu_id=7
31791<...>-9005 ( 8943) [004] ...1 82315.621865: tracing_mark_write: E|8943
31792          <idle>-0     (-----) [007] d..2 82315.621868: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31793 kgsl_worker_thr-258   (  258) [006] d..2 82315.621877: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31794          <idle>-0     (-----) [006] d..1 82315.621880: cpu_idle: state=0 cpu_id=6
31795   sfEventThread-8882  ( 8858) [002] d..3 82315.621881: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
31796<...>-9005 ( 8943) [004] .... 82315.621883: binder_transaction: transaction=1568599 dest_node=1568477 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
31797<...>-9005 ( 8943) [004] .... 82315.621885: binder_transaction_alloc_buf: transaction=1568599 data_size=168 offsets_size=0
31798<...>-9005 ( 8943) [004] ...2 82315.621887: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
31799<...>-9005 ( 8943) [004] d..4 82315.621888: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
31800   sfEventThread-8882  ( 8858) [002] d..4 82315.621893: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
31801<...>-9005 ( 8943) [004] dn.5 82315.621895: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
31802          <idle>-0     (-----) [003] .n.1 82315.621897: cpu_idle: state=4294967295 cpu_id=3
31803<...>-9005 ( 8943) [004] d..2 82315.621898: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
31804<...>-13083 ( 8858) [004] .... 82315.621903: binder_transaction_received: transaction=1568599
31805          <idle>-0     (-----) [003] d..2 82315.621903: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
31806          <idle>-0     (-----) [001] d.s3 82315.621912: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31807   sfEventThread-8882  ( 8858) [002] d..2 82315.621923: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31808          <idle>-0     (-----) [006] dnh2 82315.621924: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31809          <idle>-0     (-----) [001] ...1 82315.621924: cpu_idle: state=4294967295 cpu_id=1
31810          <idle>-0     (-----) [006] .n.1 82315.621926: cpu_idle: state=4294967295 cpu_id=6
31811          <idle>-0     (-----) [006] d..2 82315.621928: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31812          <idle>-0     (-----) [001] d..1 82315.621928: cpu_idle: state=0 cpu_id=1
31813          <idle>-0     (-----) [002] d..1 82315.621931: cpu_idle: state=0 cpu_id=2
31814<...>-13083 ( 8858) [004] d..1 82315.621937: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
31815          <idle>-0     (-----) [002] dnh2 82315.621951: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
31816          <idle>-0     (-----) [002] .n.1 82315.621954: cpu_idle: state=4294967295 cpu_id=2
31817          <idle>-0     (-----) [002] d..2 82315.621960: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
31818<...>-13083 ( 8858) [004] .... 82315.621962: binder_transaction: transaction=1568600 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
31819<...>-13083 ( 8858) [004] .... 82315.621963: binder_transaction_alloc_buf: transaction=1568600 data_size=68 offsets_size=0
31820<...>-13083 ( 8858) [004] .... 82315.621964: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
31821 kgsl_worker_thr-258   (  258) [006] d..2 82315.621964: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
31822          <idle>-0     (-----) [006] d..1 82315.621965: cpu_idle: state=0 cpu_id=6
31823<...>-13083 ( 8858) [004] d..2 82315.621975: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
31824   sfEventThread-8882  ( 8858) [002] d..2 82315.621978: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31825<...>-9005 ( 8943) [004] .... 82315.621979: binder_transaction_received: transaction=1568600
31826          <idle>-0     (-----) [002] d..1 82315.621984: cpu_idle: state=0 cpu_id=2
31827          <idle>-0     (-----) [006] d.h2 82315.622064: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31828          <idle>-0     (-----) [006] dnh3 82315.622067: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31829          <idle>-0     (-----) [006] .n.1 82315.622069: cpu_idle: state=4294967295 cpu_id=6
31830          <idle>-0     (-----) [006] d..2 82315.622071: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31831<...>-9062 ( 8943) [007] .... 82315.622098: binder_transaction: transaction=1568601 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
31832<...>-9062 ( 8943) [007] .... 82315.622099: binder_transaction_alloc_buf: transaction=1568601 data_size=36 offsets_size=8
31833<...>-9062 ( 8943) [007] d..2 82315.622102: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
31834<...>-9062 ( 8943) [007] d..3 82315.622107: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
31835<...>-9062 ( 8943) [007] .... 82315.622108: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
31836<...>-9062 ( 8943) [007] d..2 82315.622124: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31837           <...>-27550 (-----) [007] .... 82315.622128: binder_transaction_received: transaction=1568601
31838           <...>-27550 (-----) [007] d..3 82315.622164: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=005
31839           <...>-27550 (-----) [007] d..4 82315.622171: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=005
31840          <idle>-0     (-----) [005] .n.1 82315.622175: cpu_idle: state=4294967295 cpu_id=5
31841          <idle>-0     (-----) [005] d..2 82315.622178: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
31842           <...>-27550 (-----) [007] d..2 82315.622191: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31843          <idle>-0     (-----) [007] d..1 82315.622196: cpu_idle: state=0 cpu_id=7
31844           <...>-27570 (-----) [005] d..1 82315.622213: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
31845           <...>-27570 (-----) [005] d..2 82315.622221: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
31846          <idle>-0     (-----) [007] .n.1 82315.622225: cpu_idle: state=4294967295 cpu_id=7
31847           <...>-27570 (-----) [005] d..2 82315.622228: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31848          <idle>-0     (-----) [007] d..2 82315.622229: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31849          <idle>-0     (-----) [005] d..1 82315.622232: cpu_idle: state=0 cpu_id=5
31850           <...>-27550 (-----) [007] d..3 82315.622237: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=005
31851           <...>-27550 (-----) [007] d..4 82315.622243: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=005
31852          <idle>-0     (-----) [005] .n.1 82315.622247: cpu_idle: state=4294967295 cpu_id=5
31853          <idle>-0     (-----) [005] d..2 82315.622251: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
31854           <...>-27570 (-----) [005] d..2 82315.622258: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31855          <idle>-0     (-----) [005] d..1 82315.622261: cpu_idle: state=0 cpu_id=5
31856           <...>-27550 (-----) [007] .... 82315.622272: binder_transaction: transaction=1568602 dest_node=1568565 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
31857           <...>-27550 (-----) [007] .... 82315.622274: binder_transaction_alloc_buf: transaction=1568602 data_size=80 offsets_size=0
31858           <...>-27550 (-----) [007] d..4 82315.622275: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
31859<...>-9005 ( 8943) [004] d..3 82315.622280: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
31860           <...>-27550 (-----) [007] d..5 82315.622289: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
31861<...>-9005 ( 8943) [004] d..4 82315.622291: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
31862          <idle>-0     (-----) [005] .n.1 82315.622293: cpu_idle: state=4294967295 cpu_id=5
31863          <idle>-0     (-----) [005] d..2 82315.622296: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
31864           <...>-27550 (-----) [007] d..3 82315.622302: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=005
31865           <...>-27550 (-----) [007] d..4 82315.622310: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=006
31866<...>-8969 ( 8943) [005] d..2 82315.622322: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
31867<...>-13083 ( 8858) [005] .... 82315.622326: binder_transaction_received: transaction=1568602
31868<...>-13083 ( 8858) [005] d..1 82315.622334: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
31869          <idle>-0     (-----) [002] dnh2 82315.622350: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
31870<...>-13083 ( 8858) [005] d..2 82315.622354: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31871          <idle>-0     (-----) [002] .n.1 82315.622354: cpu_idle: state=4294967295 cpu_id=2
31872          <idle>-0     (-----) [005] d..1 82315.622358: cpu_idle: state=0 cpu_id=5
31873          <idle>-0     (-----) [002] d..2 82315.622359: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
31874<...>-9005 ( 8943) [004] .... 82315.622371: binder_transaction: transaction=1568603 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
31875<...>-9005 ( 8943) [004] .... 82315.622373: binder_transaction_alloc_buf: transaction=1568603 data_size=96 offsets_size=0
31876<...>-9005 ( 8943) [004] d..4 82315.622375: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
31877<...>-9005 ( 8943) [004] d..5 82315.622382: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
31878  appEventThread-8881  ( 8858) [002] d..2 82315.622385: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
31879          <idle>-0     (-----) [002] d..1 82315.622392: cpu_idle: state=0 cpu_id=2
31880           <...>-27550 (-----) [007] .... 82315.622393: binder_transaction: transaction=1568604 dest_node=1568551 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x2
31881           <...>-27550 (-----) [007] .... 82315.622395: binder_transaction_alloc_buf: transaction=1568604 data_size=580 offsets_size=16
31882<...>-9005 ( 8943) [004] d..3 82315.622430: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
31883<...>-9005 ( 8943) [004] d..4 82315.622440: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
31884           <...>-27550 (-----) [007] ...2 82315.622484: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
31885           <...>-27550 (-----) [007] d..4 82315.622485: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31886           <...>-27550 (-----) [007] dn.5 82315.622489: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
31887           <...>-27550 (-----) [007] d..2 82315.622492: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
31888<...>-9062 ( 8943) [007] .... 82315.622496: binder_transaction_received: transaction=1568604
31889 kgsl_worker_thr-258   (  258) [006] d..2 82315.622498: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=005
31890 kgsl_worker_thr-258   (  258) [006] d..3 82315.622506: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=005
31891          <idle>-0     (-----) [005] .n.1 82315.622511: cpu_idle: state=4294967295 cpu_id=5
31892          <idle>-0     (-----) [005] d..2 82315.622515: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
31893<...>-1054 ( 1054) [005] d..2 82315.622520: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
31894<...>-1054 ( 1054) [005] d..3 82315.622533: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=005
31895 kgsl_worker_thr-258   (  258) [006] d..2 82315.622557: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=android.ui next_pid=8962 next_prio=118
31896<...>-1054 ( 1054) [005] d..2 82315.622559: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
31897  kworker/u16:15-1311  ( 1311) [005] d..2 82315.622566: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31898          <idle>-0     (-----) [005] d..1 82315.622568: cpu_idle: state=0 cpu_id=5
31899<...>-9062 ( 8943) [007] d..2 82315.622588: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
31900          <idle>-0     (-----) [000] ...1 82315.622588: cpu_idle: state=4294967295 cpu_id=0
31901          <idle>-0     (-----) [000] d..1 82315.622591: cpu_idle: state=0 cpu_id=0
31902           <...>-27550 (-----) [007] d..2 82315.622598: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31903          <idle>-0     (-----) [007] d..1 82315.622603: cpu_idle: state=0 cpu_id=7
31904<...>-8962 ( 8943) [006] d..3 82315.622605: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
31905<...>-8962 ( 8943) [006] d..4 82315.622614: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
31906          <idle>-0     (-----) [007] .n.1 82315.622619: cpu_idle: state=4294967295 cpu_id=7
31907          <idle>-0     (-----) [007] d..2 82315.622623: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
31908<...>-9005 ( 8943) [004] .... 82315.622630: binder_transaction: transaction=1568607 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
31909<...>-8962 ( 8943) [006] d..2 82315.622631: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
31910<...>-9005 ( 8943) [004] .... 82315.622631: binder_transaction_alloc_buf: transaction=1568607 data_size=380 offsets_size=16
31911<...>-9005 ( 8943) [004] ...2 82315.622635: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
31912<...>-9131 ( 9105) [006] .... 82315.622635: binder_transaction_received: transaction=1568603
31913<...>-9005 ( 8943) [004] d..4 82315.622636: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
31914  surfaceflinger-8858  ( 8858) [003] d.h1 82315.622644: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
31915<...>-9005 ( 8943) [004] dn.5 82315.622644: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
31916<...>-9005 ( 8943) [004] d..2 82315.622648: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
31917<...>-13083 ( 8858) [004] .... 82315.622651: binder_transaction_received: transaction=1568607
31918  surfaceflinger-8858  ( 8858) [003] dnh2 82315.622655: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
31919<...>-9131 ( 9105) [006] d.h1 82315.622655: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=006
31920   system_server-8943  ( 8943) [007] .... 82315.622663: binder_transaction: transaction=1568608 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
31921  surfaceflinger-8858  ( 8858) [003] d..2 82315.622663: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
31922   system_server-8943  ( 8943) [007] .... 82315.622665: binder_transaction_alloc_buf: transaction=1568608 data_size=96 offsets_size=0
31923<...>-9131 ( 9105) [006] d.h2 82315.622665: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
31924          <idle>-0     (-----) [005] .n.1 82315.622669: cpu_idle: state=4294967295 cpu_id=5
31925          <idle>-0     (-----) [005] d..2 82315.622672: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31926<...>-13083 ( 8858) [004] .... 82315.622682: binder_transaction: transaction=1568609 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
31927<...>-13083 ( 8858) [004] .... 82315.622683: binder_transaction_alloc_buf: transaction=1568609 data_size=0 offsets_size=0
31928<...>-13083 ( 8858) [004] .... 82315.622684: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
31929          <idle>-0     (-----) [001] .n.1 82315.622687: cpu_idle: state=4294967295 cpu_id=1
31930   system_server-8943  ( 8943) [007] d..2 82315.622688: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31931          <idle>-0     (-----) [007] d..1 82315.622692: cpu_idle: state=0 cpu_id=7
31932          <idle>-0     (-----) [001] d..2 82315.622694: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
31933<...>-13083 ( 8858) [004] d..2 82315.622698: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
31934<...>-9005 ( 8943) [004] .... 82315.622701: binder_transaction_received: transaction=1568609
31935 kgsl_worker_thr-258   (  258) [005] d..2 82315.622704: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
31936          <idle>-0     (-----) [005] d..1 82315.622706: cpu_idle: state=0 cpu_id=5
31937<...>-9131 ( 9105) [006] d..3 82315.622722: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
31938<...>-9131 ( 9105) [006] d..4 82315.622733: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
31939          <idle>-0     (-----) [007] .n.1 82315.622738: cpu_idle: state=4294967295 cpu_id=7
31940          <idle>-0     (-----) [007] d..2 82315.622742: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
31941          <idle>-0     (-----) [000] ...1 82315.622763: cpu_idle: state=4294967295 cpu_id=0
31942          <idle>-0     (-----) [000] d..1 82315.622765: cpu_idle: state=0 cpu_id=0
31943<...>-9131 ( 9105) [006] d..4 82315.622769: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
31944<...>-9131 ( 9105) [006] d..5 82315.622778: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
31945<...>-9131 ( 9105) [006] .... 82315.622780: binder_transaction_received: transaction=1568608
31946<...>-9105 ( 9105) [007] d..2 82315.622801: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
31947<...>-9131 ( 9105) [006] d..3 82315.622804: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
31948          <idle>-0     (-----) [005] d.h2 82315.622804: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
31949          <idle>-0     (-----) [005] dnh3 82315.622807: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
31950<...>-9132 ( 9105) [007] d..2 82315.622810: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31951  surfaceflinger-8858  ( 8858) [001] d.s1 82315.622810: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
31952          <idle>-0     (-----) [005] .n.1 82315.622811: cpu_idle: state=4294967295 cpu_id=5
31953          <idle>-0     (-----) [005] d..2 82315.622813: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
31954<...>-9131 ( 9105) [006] d..4 82315.622814: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
31955          <idle>-0     (-----) [007] d..2 82315.622816: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
31956 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.622817: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=RenderThread next_pid=27570 next_prio=110
31957  surfaceflinger-8858  ( 8858) [001] d.s2 82315.622821: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
31958 kgsl_worker_thr-258   (  258) [005] d..2 82315.622850: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
31959<...>-9105 ( 9105) [007] d..2 82315.622852: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
31960<...>-9131 ( 9105) [006] d..2 82315.622853: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
31961          <idle>-0     (-----) [005] d..1 82315.622853: cpu_idle: state=0 cpu_id=5
31962          <idle>-0     (-----) [007] d..1 82315.622856: cpu_idle: state=0 cpu_id=7
31963          <idle>-0     (-----) [006] d..1 82315.622858: cpu_idle: state=0 cpu_id=6
31964           <...>-27570 (-----) [003] d..2 82315.622872: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31965          <idle>-0     (-----) [003] d..1 82315.622882: cpu_idle: state=0 cpu_id=3
31966  surfaceflinger-8858  ( 8858) [001] ...1 82315.623013: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
31967  surfaceflinger-8858  ( 8858) [001] ...1 82315.623018: tracing_mark_write: E|8858
31968          <idle>-0     (-----) [005] ...1 82315.623043: cpu_idle: state=4294967295 cpu_id=5
31969          <idle>-0     (-----) [005] d..1 82315.623044: cpu_idle: state=0 cpu_id=5
31970          <idle>-0     (-----) [007] ...1 82315.623047: cpu_idle: state=4294967295 cpu_id=7
31971          <idle>-0     (-----) [006] ...1 82315.623048: cpu_idle: state=4294967295 cpu_id=6
31972          <idle>-0     (-----) [007] d..1 82315.623048: cpu_idle: state=0 cpu_id=7
31973          <idle>-0     (-----) [006] d..1 82315.623049: cpu_idle: state=0 cpu_id=6
31974  surfaceflinger-8858  ( 8858) [001] .... 82315.623062: binder_transaction: transaction=1568610 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
31975  surfaceflinger-8858  ( 8858) [001] .... 82315.623064: binder_transaction_alloc_buf: transaction=1568610 data_size=540 offsets_size=96
31976<...>-9005 ( 8943) [004] .... 82315.623071: binder_transaction: transaction=1568611 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
31977<...>-9005 ( 8943) [004] .... 82315.623073: binder_transaction_alloc_buf: transaction=1568611 data_size=308 offsets_size=8
31978<...>-9005 ( 8943) [004] ...2 82315.623076: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
31979<...>-9005 ( 8943) [004] d..4 82315.623077: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
31980  surfaceflinger-8858  ( 8858) [001] ...2 82315.623080: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
31981<...>-9005 ( 8943) [004] dn.5 82315.623082: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
31982<...>-9005 ( 8943) [004] d..2 82315.623085: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
31983  surfaceflinger-8858  ( 8858) [001] d..4 82315.623087: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
31984<...>-13083 ( 8858) [004] .... 82315.623088: binder_transaction_received: transaction=1568611
31985  surfaceflinger-8858  ( 8858) [001] d..5 82315.623099: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
31986          <idle>-0     (-----) [002] .n.1 82315.623104: cpu_idle: state=4294967295 cpu_id=2
31987          <idle>-0     (-----) [002] d..2 82315.623109: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
31988  surfaceflinger-8858  ( 8858) [001] d..2 82315.623111: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
31989 [email protected]   (  619) [002] .... 82315.623114: binder_transaction_received: transaction=1568610
31990     ksoftirqd/1-18    (   18) [001] d.s2 82315.623120: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
31991     ksoftirqd/1-18    (   18) [001] d.s3 82315.623128: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
31992          <idle>-0     (-----) [003] .n.1 82315.623133: cpu_idle: state=4294967295 cpu_id=3
31993          <idle>-0     (-----) [003] d..2 82315.623139: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
31994     ksoftirqd/1-18    (   18) [001] d..2 82315.623141: 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
31995          <idle>-0     (-----) [001] d..1 82315.623150: cpu_idle: state=0 cpu_id=1
31996 [email protected]   (  619) [002] ...1 82315.623152: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
31997 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.623162: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
31998          <idle>-0     (-----) [003] d..1 82315.623167: cpu_idle: state=0 cpu_id=3
31999<...>-13083 ( 8858) [004] .... 82315.623202: binder_transaction: transaction=1568612 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
32000<...>-13083 ( 8858) [004] .... 82315.623204: binder_transaction_alloc_buf: transaction=1568612 data_size=52 offsets_size=16
32001 [email protected]   (  619) [002] ...1 82315.623247: tracing_mark_write: B|619|HWCSession::PresentDisplay::
32002<...>-13083 ( 8858) [004] .... 82315.623315: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32003<...>-13083 ( 8858) [004] d..2 82315.623333: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
32004<...>-9005 ( 8943) [004] .... 82315.623337: binder_transaction_received: transaction=1568612
32005<...>-9005 ( 8943) [004] .... 82315.623355: binder_transaction: transaction=1568617 dest_node=1568615 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
32006<...>-9005 ( 8943) [004] .... 82315.623357: binder_transaction_alloc_buf: transaction=1568617 data_size=80 offsets_size=0
32007<...>-9005 ( 8943) [004] ...2 82315.623357: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32008<...>-9005 ( 8943) [004] d..4 82315.623358: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32009<...>-9005 ( 8943) [004] dn.5 82315.623362: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32010<...>-9005 ( 8943) [004] d..2 82315.623365: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32011<...>-13083 ( 8858) [004] .... 82315.623367: binder_transaction_received: transaction=1568617
32012<...>-13083 ( 8858) [004] .... 82315.623373: binder_transaction: transaction=1568618 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x8 code=0x0
32013<...>-13083 ( 8858) [004] .... 82315.623374: binder_transaction_alloc_buf: transaction=1568618 data_size=4 offsets_size=0
32014<...>-13083 ( 8858) [004] .... 82315.623375: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32015<...>-13083 ( 8858) [004] d..2 82315.623385: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
32016<...>-9005 ( 8943) [004] .... 82315.623388: binder_transaction_received: transaction=1568618
32017<...>-9005 ( 8943) [004] .... 82315.623573: binder_transaction: transaction=1568619 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
32018<...>-9005 ( 8943) [004] .... 82315.623574: binder_transaction_alloc_buf: transaction=1568619 data_size=80 offsets_size=0
32019<...>-9005 ( 8943) [004] d..4 82315.623575: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
32020<...>-9005 ( 8943) [004] d..5 82315.623587: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
32021          <idle>-0     (-----) [005] .n.1 82315.623591: cpu_idle: state=4294967295 cpu_id=5
32022          <idle>-0     (-----) [005] d..2 82315.623594: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
32023<...>-13083 ( 8858) [005] .... 82315.623595: binder_transaction_received: transaction=1568619
32024<...>-13083 ( 8858) [005] d..1 82315.623601: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
32025<...>-13083 ( 8858) [005] d..2 82315.623617: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32026          <idle>-0     (-----) [001] dnh2 82315.623617: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
32027          <idle>-0     (-----) [005] d..1 82315.623620: cpu_idle: state=0 cpu_id=5
32028          <idle>-0     (-----) [001] .n.1 82315.623621: cpu_idle: state=4294967295 cpu_id=1
32029          <idle>-0     (-----) [001] d..2 82315.623626: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
32030 [email protected]   (  619) [002] ...1 82315.623644: tracing_mark_write: B|619|HWDeviceDRM::Validate::
32031   sfEventThread-8882  ( 8858) [001] d..2 82315.623652: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32032          <idle>-0     (-----) [001] d..1 82315.623658: cpu_idle: state=0 cpu_id=1
32033          <idle>-0     (-----) [005] ...1 82315.623818: cpu_idle: state=4294967295 cpu_id=5
32034          <idle>-0     (-----) [005] d..1 82315.623819: cpu_idle: state=0 cpu_id=5
32035<...>-9005 ( 8943) [004] d..3 82315.623885: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
32036<...>-9005 ( 8943) [004] d..4 82315.623895: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
32037          <idle>-0     (-----) [006] .n.1 82315.623899: cpu_idle: state=4294967295 cpu_id=6
32038          <idle>-0     (-----) [006] d..2 82315.623902: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
32039<...>-9039 ( 8943) [006] d..2 82315.623926: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32040          <idle>-0     (-----) [006] d..1 82315.623929: cpu_idle: state=0 cpu_id=6
32041 [email protected]   (  619) [002] ...1 82315.624037: tracing_mark_write: E|619
32042 [email protected]   (  619) [002] ...1 82315.624126: tracing_mark_write: B|619|HWDeviceDRM::Commit::
32043 [email protected]   (  619) [002] ...1 82315.624133: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
32044          <idle>-0     (-----) [003] ...1 82315.624302: cpu_idle: state=4294967295 cpu_id=3
32045          <idle>-0     (-----) [003] d..1 82315.624305: cpu_idle: state=0 cpu_id=3
32046<...>-9005 ( 8943) [004] .... 82315.624315: binder_transaction: transaction=1568620 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
32047<...>-9005 ( 8943) [004] .... 82315.624317: binder_transaction_alloc_buf: transaction=1568620 data_size=292 offsets_size=8
32048<...>-9005 ( 8943) [004] ...2 82315.624319: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32049<...>-9005 ( 8943) [004] d..4 82315.624321: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
32050<...>-9005 ( 8943) [004] dn.5 82315.624328: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32051<...>-9005 ( 8943) [004] d..2 82315.624331: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32052<...>-13083 ( 8858) [004] .... 82315.624335: binder_transaction_received: transaction=1568620
32053 [email protected]   (  619) [002] d..2 82315.624373: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
32054          <idle>-0     (-----) [005] dnh2 82315.624389: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
32055          <idle>-0     (-----) [005] .n.1 82315.624391: cpu_idle: state=4294967295 cpu_id=5
32056          <idle>-0     (-----) [005] d..2 82315.624394: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
32057<...>-13083 ( 8858) [004] .... 82315.624427: binder_transaction: transaction=1568621 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
32058<...>-13083 ( 8858) [004] .... 82315.624428: binder_transaction_alloc_buf: transaction=1568621 data_size=52 offsets_size=16
32059 [email protected]   (  619) [002] ...1 82315.624445: tracing_mark_write: E|619
32060 [email protected]   (  619) [002] ...1 82315.624448: tracing_mark_write: E|619
32061 [email protected]   (  619) [002] ...1 82315.624480: tracing_mark_write: E|619
32062<...>-13083 ( 8858) [004] .... 82315.624515: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32063 [email protected]   (  619) [002] ...1 82315.624515: tracing_mark_write: E|619
32064 [email protected]   (  619) [002] .... 82315.624526: binder_transaction: transaction=1568626 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
32065 [email protected]   (  619) [002] .... 82315.624528: binder_transaction_alloc_buf: transaction=1568626 data_size=576 offsets_size=112
32066<...>-13083 ( 8858) [004] d..2 82315.624533: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
32067<...>-9005 ( 8943) [004] .... 82315.624537: binder_transaction_received: transaction=1568621
32068 [email protected]   (  619) [002] d..2 82315.624539: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
32069 [email protected]   (  619) [002] d..3 82315.624550: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
32070 [email protected]   (  619) [002] .... 82315.624553: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
32071<...>-9005 ( 8943) [004] .... 82315.624554: binder_transaction: transaction=1568627 dest_node=1568624 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
32072<...>-9005 ( 8943) [004] .... 82315.624555: binder_transaction_alloc_buf: transaction=1568627 data_size=80 offsets_size=0
32073<...>-9005 ( 8943) [004] ...2 82315.624556: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32074          <idle>-0     (-----) [001] .n.1 82315.624556: cpu_idle: state=4294967295 cpu_id=1
32075<...>-9005 ( 8943) [004] d..4 82315.624556: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32076<...>-9005 ( 8943) [004] dn.5 82315.624560: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32077          <idle>-0     (-----) [001] d..2 82315.624561: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
32078<...>-9005 ( 8943) [004] d..2 82315.624563: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32079<...>-13083 ( 8858) [004] .... 82315.624565: binder_transaction_received: transaction=1568627
32080  surfaceflinger-8858  ( 8858) [001] .... 82315.624565: binder_transaction_received: transaction=1568626
32081<...>-13083 ( 8858) [004] .... 82315.624571: binder_transaction: transaction=1568628 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x8 code=0x0
32082<...>-13083 ( 8858) [004] .... 82315.624572: binder_transaction_alloc_buf: transaction=1568628 data_size=4 offsets_size=0
32083<...>-13083 ( 8858) [004] .... 82315.624573: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32084<...>-13083 ( 8858) [004] d..2 82315.624583: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
32085<...>-9005 ( 8943) [004] .... 82315.624586: binder_transaction_received: transaction=1568628
32086 [email protected]   (  619) [002] d..2 82315.624604: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
32087          <idle>-0     (-----) [002] d..1 82315.624616: cpu_idle: state=0 cpu_id=2
32088  surfaceflinger-8858  ( 8858) [001] d..2 82315.624833: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32089          <idle>-0     (-----) [001] d..1 82315.624843: cpu_idle: state=0 cpu_id=1
32090<...>-9005 ( 8943) [004] d..3 82315.624919: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
32091<...>-9005 ( 8943) [004] d..4 82315.624927: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
32092          <idle>-0     (-----) [006] .n.1 82315.624932: cpu_idle: state=4294967295 cpu_id=6
32093          <idle>-0     (-----) [006] d..2 82315.624935: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
32094<...>-9039 ( 8943) [006] d..2 82315.624942: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32095          <idle>-0     (-----) [006] d..1 82315.624944: cpu_idle: state=0 cpu_id=6
32096 crtc_commit:111-321   (  321) [005] d..2 82315.624961: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
32097          <idle>-0     (-----) [005] d..1 82315.624964: cpu_idle: state=0 cpu_id=5
32098<...>-9005 ( 8943) [004] .... 82315.624986: binder_transaction: transaction=1568629 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
32099<...>-9005 ( 8943) [004] .... 82315.624987: binder_transaction_alloc_buf: transaction=1568629 data_size=684 offsets_size=32
32100<...>-9005 ( 8943) [004] ...2 82315.624990: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32101<...>-9005 ( 8943) [004] d..4 82315.624991: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32102<...>-9005 ( 8943) [004] dn.5 82315.624996: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32103<...>-9005 ( 8943) [004] d..2 82315.624999: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32104<...>-13083 ( 8858) [004] .... 82315.625002: binder_transaction_received: transaction=1568629
32105<...>-13083 ( 8858) [004] .... 82315.625032: binder_transaction: transaction=1568630 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
32106<...>-13083 ( 8858) [004] .... 82315.625033: binder_transaction_alloc_buf: transaction=1568630 data_size=0 offsets_size=0
32107<...>-13083 ( 8858) [004] .... 82315.625034: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32108<...>-13083 ( 8858) [004] d..2 82315.625048: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
32109<...>-9005 ( 8943) [004] .... 82315.625051: binder_transaction_received: transaction=1568630
32110<...>-9005 ( 8943) [004] d..3 82315.625088: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
32111<...>-9005 ( 8943) [004] d..4 82315.625100: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=006
32112          <idle>-0     (-----) [006] dns2 82315.625122: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=006
32113          <idle>-0     (-----) [006] dns3 82315.625134: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
32114<...>-9005 ( 8943) [004] d..3 82315.625137: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
32115          <idle>-0     (-----) [005] .n.1 82315.625138: cpu_idle: state=4294967295 cpu_id=5
32116          <idle>-0     (-----) [006] .n.1 82315.625141: cpu_idle: state=4294967295 cpu_id=6
32117          <idle>-0     (-----) [005] d..2 82315.625142: 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
32118          <idle>-0     (-----) [006] d..2 82315.625143: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
32119     rcu_preempt-7     (    7) [005] d..2 82315.625147: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
32120<...>-9005 ( 8943) [004] d..4 82315.625150: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=007
32121          <idle>-0     (-----) [007] .n.1 82315.625154: cpu_idle: state=4294967295 cpu_id=7
32122     rcu_preempt-7     (    7) [005] d..3 82315.625156: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
32123     rcu_preempt-7     (    7) [005] d..2 82315.625158: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
32124          <idle>-0     (-----) [007] d..2 82315.625158: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
32125     rcu_preempt-7     (    7) [005] d..3 82315.625163: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=005
32126     rcu_preempt-7     (    7) [005] d..2 82315.625168: 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
32127         rcuop/2-29    (   29) [005] d..2 82315.625170: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=006
32128         rcuop/2-29    (   29) [005] d..3 82315.625177: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=005
32129   system_server-8943  ( 8943) [006] .... 82315.625179: binder_transaction: transaction=1568631 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x18
32130         rcuop/2-29    (   29) [005] d..2 82315.625181: 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
32131   system_server-8943  ( 8943) [006] .... 82315.625181: binder_transaction_alloc_buf: transaction=1568631 data_size=108 offsets_size=0
32132         rcuop/0-10    (   10) [005] d..2 82315.625183: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=006
32133   system_server-8943  ( 8943) [006] d..4 82315.625183: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
32134<...>-9006 ( 8943) [007] .... 82315.625190: binder_transaction: transaction=1568632 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
32135         rcuop/0-10    (   10) [005] d..3 82315.625190: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=005
32136<...>-9006 ( 8943) [007] .... 82315.625191: binder_transaction_alloc_buf: transaction=1568632 data_size=80 offsets_size=0
32137<...>-9006 ( 8943) [007] d..4 82315.625193: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
32138   system_server-8943  ( 8943) [006] d..5 82315.625194: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
32139<...>-9006 ( 8943) [007] d..5 82315.625202: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
32140         rcuop/0-10    (   10) [005] d..2 82315.625209: 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
32141         rcuop/3-37    (   37) [005] d..2 82315.625217: 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
32142   system_server-8943  ( 8943) [006] d..2 82315.625218: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32143<...>-9006 ( 8943) [007] d..2 82315.625221: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
32144          <idle>-0     (-----) [006] d..1 82315.625223: cpu_idle: state=0 cpu_id=6
32145<...>-9131 ( 9105) [007] .... 82315.625224: binder_transaction_received: transaction=1568631
32146<...>-9131 ( 9105) [007] d..3 82315.625314: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
32147<...>-9131 ( 9105) [007] d..4 82315.625325: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
32148          <idle>-0     (-----) [006] .n.1 82315.625329: cpu_idle: state=4294967295 cpu_id=6
32149          <idle>-0     (-----) [006] d..2 82315.625333: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
32150         rcuop/1-21    (   21) [005] d..2 82315.625334: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
32151<...>-13083 ( 8858) [005] .... 82315.625336: binder_transaction_received: transaction=1568632
32152<...>-13083 ( 8858) [005] d..1 82315.625342: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
32153<...>-9131 ( 9105) [007] d..2 82315.625352: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32154<...>-13083 ( 8858) [005] d..2 82315.625356: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32155          <idle>-0     (-----) [001] dnh2 82315.625357: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
32156          <idle>-0     (-----) [007] d..1 82315.625358: cpu_idle: state=0 cpu_id=7
32157          <idle>-0     (-----) [001] .n.1 82315.625361: cpu_idle: state=4294967295 cpu_id=1
32158          <idle>-0     (-----) [005] d..1 82315.625361: cpu_idle: state=0 cpu_id=5
32159          <idle>-0     (-----) [001] d..2 82315.625367: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
32160   sfEventThread-8882  ( 8858) [001] d..2 82315.625390: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32161          <idle>-0     (-----) [001] d..1 82315.625397: cpu_idle: state=0 cpu_id=1
32162<...>-9105 ( 9105) [006] d..1 82315.625407: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=003
32163<...>-9105 ( 9105) [006] d..2 82315.625424: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=007
32164          <idle>-0     (-----) [007] .n.1 82315.625429: cpu_idle: state=4294967295 cpu_id=7
32165          <idle>-0     (-----) [007] d..2 82315.625447: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
32166<...>-9005 ( 8943) [004] d..3 82315.625447: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
32167<...>-9005 ( 8943) [004] d..4 82315.625457: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
32168<...>-9105 ( 9105) [006] d..2 82315.625515: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32169          <idle>-0     (-----) [006] d..1 82315.625519: cpu_idle: state=0 cpu_id=6
32170<...>-9321 ( 9105) [007] .... 82315.625547: binder_transaction: transaction=1568633 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x84
32171<...>-9321 ( 9105) [007] .... 82315.625548: binder_transaction_alloc_buf: transaction=1568633 data_size=76 offsets_size=0
32172<...>-9321 ( 9105) [007] d..4 82315.625550: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
32173<...>-9321 ( 9105) [007] d..5 82315.625560: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
32174          <idle>-0     (-----) [006] .n.1 82315.625565: cpu_idle: state=4294967295 cpu_id=6
32175<...>-9321 ( 9105) [007] d..2 82315.625565: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
32176          <idle>-0     (-----) [006] d..2 82315.625569: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
32177<...>-25493 ( 8943) [006] .... 82315.625574: binder_transaction_received: transaction=1568633
32178<...>-9039 ( 8943) [007] d..2 82315.625582: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32179          <idle>-0     (-----) [007] d..1 82315.625587: cpu_idle: state=0 cpu_id=7
32180<...>-9005 ( 8943) [004] .... 82315.625650: binder_transaction: transaction=1568634 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
32181<...>-9005 ( 8943) [004] .... 82315.625652: binder_transaction_alloc_buf: transaction=1568634 data_size=96 offsets_size=0
32182<...>-9005 ( 8943) [004] d..4 82315.625654: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
32183<...>-9005 ( 8943) [004] d..5 82315.625661: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
32184          <idle>-0     (-----) [007] .n.1 82315.625665: cpu_idle: state=4294967295 cpu_id=7
32185          <idle>-0     (-----) [007] d..2 82315.625669: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
32186<...>-9131 ( 9105) [007] .... 82315.625672: binder_transaction_received: transaction=1568634
32187<...>-9005 ( 8943) [004] d..3 82315.625693: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
32188<...>-9131 ( 9105) [007] d..3 82315.625701: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
32189<...>-9005 ( 8943) [004] d..4 82315.625702: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
32190<...>-9131 ( 9105) [007] d..4 82315.625710: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
32191<...>-25493 ( 8943) [006] .... 82315.625716: binder_transaction: transaction=1568635 dest_node=0 dest_proc=9105 dest_thread=9321 reply=1 flags=0x0 code=0x0
32192<...>-25493 ( 8943) [006] .... 82315.625718: binder_transaction_alloc_buf: transaction=1568635 data_size=8 offsets_size=0
32193<...>-25493 ( 8943) [006] d..2 82315.625719: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=007
32194<...>-25493 ( 8943) [006] d..3 82315.625727: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=006
32195<...>-9131 ( 9105) [007] d..2 82315.625728: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
32196<...>-25493 ( 8943) [006] d..2 82315.625738: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
32197<...>-9321 ( 9105) [006] .... 82315.625742: binder_transaction_received: transaction=1568635
32198<...>-8962 ( 8943) [007] d..3 82315.625754: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=006
32199<...>-8962 ( 8943) [007] d..4 82315.625760: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=006
32200<...>-8962 ( 8943) [007] d..2 82315.625781: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
32201<...>-9105 ( 9105) [007] d..2 82315.625819: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32202<...>-9321 ( 9105) [006] .... 82315.625824: binder_transaction: transaction=1568636 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x37
32203          <idle>-0     (-----) [007] d..1 82315.625824: cpu_idle: state=0 cpu_id=7
32204<...>-9321 ( 9105) [006] .... 82315.625825: binder_transaction_alloc_buf: transaction=1568636 data_size=76 offsets_size=0
32205<...>-9321 ( 9105) [006] d..4 82315.625826: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
32206<...>-9321 ( 9105) [006] d..5 82315.625837: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=007
32207<...>-9321 ( 9105) [006] d..2 82315.625841: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
32208          <idle>-0     (-----) [007] .n.1 82315.625841: cpu_idle: state=4294967295 cpu_id=7
32209          <idle>-0     (-----) [007] d..2 82315.625845: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
32210<...>-25493 ( 8943) [007] .... 82315.625848: binder_transaction_received: transaction=1568636
32211   system_server-8943  ( 8943) [006] .... 82315.625873: binder_transaction: transaction=1568637 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x9
32212   system_server-8943  ( 8943) [006] .... 82315.625874: binder_transaction_alloc_buf: transaction=1568637 data_size=148 offsets_size=0
32213   system_server-8943  ( 8943) [006] d..4 82315.625875: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
32214   system_server-8943  ( 8943) [006] d..5 82315.625883: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
32215<...>-9005 ( 8943) [004] .... 82315.625889: binder_transaction: transaction=1568638 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
32216<...>-9005 ( 8943) [004] .... 82315.625890: binder_transaction_alloc_buf: transaction=1568638 data_size=3116 offsets_size=176
32217<...>-9005 ( 8943) [004] ...2 82315.625902: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32218<...>-9005 ( 8943) [004] d..4 82315.625903: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
32219   system_server-8943  ( 8943) [006] .... 82315.625908: binder_transaction: transaction=1568639 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
32220   system_server-8943  ( 8943) [006] .... 82315.625909: binder_transaction_alloc_buf: transaction=1568639 data_size=96 offsets_size=0
32221<...>-9005 ( 8943) [004] dn.5 82315.625911: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32222<...>-9005 ( 8943) [004] d..2 82315.625914: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32223<...>-13083 ( 8858) [004] .... 82315.625917: binder_transaction_received: transaction=1568638
32224   system_server-8943  ( 8943) [006] d..2 82315.625923: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
32225<...>-9131 ( 9105) [006] .... 82315.625926: binder_transaction_received: transaction=1568637
32226<...>-25493 ( 8943) [007] d..2 82315.625929: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32227          <idle>-0     (-----) [007] d..1 82315.625934: cpu_idle: state=0 cpu_id=7
32228<...>-9131 ( 9105) [006] d..3 82315.625975: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
32229<...>-9131 ( 9105) [006] d..4 82315.625983: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
32230          <idle>-0     (-----) [007] .n.1 82315.625987: cpu_idle: state=4294967295 cpu_id=7
32231          <idle>-0     (-----) [007] d..2 82315.625991: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
32232<...>-13083 ( 8858) [004] .... 82315.625991: binder_transaction: transaction=1568640 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
32233<...>-13083 ( 8858) [004] .... 82315.625992: binder_transaction_alloc_buf: transaction=1568640 data_size=0 offsets_size=0
32234<...>-13083 ( 8858) [004] .... 82315.625993: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32235<...>-9131 ( 9105) [006] d..4 82315.625997: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
32236<...>-9131 ( 9105) [006] d..5 82315.626003: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
32237<...>-9131 ( 9105) [006] .... 82315.626005: binder_transaction_received: transaction=1568639
32238<...>-13083 ( 8858) [004] d..2 82315.626011: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
32239<...>-9005 ( 8943) [004] .... 82315.626015: binder_transaction_received: transaction=1568640
32240<...>-9131 ( 9105) [006] d..2 82315.626038: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32241<...>-9105 ( 9105) [007] .... 82315.626042: binder_transaction: transaction=1568641 dest_node=396343 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x42
32242          <idle>-0     (-----) [006] d..1 82315.626043: cpu_idle: state=0 cpu_id=6
32243<...>-9105 ( 9105) [007] .... 82315.626043: binder_transaction_alloc_buf: transaction=1568641 data_size=68 offsets_size=0
32244<...>-9105 ( 9105) [007] d..4 82315.626045: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
32245<...>-9105 ( 9105) [007] d..5 82315.626059: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
32246          <idle>-0     (-----) [006] .n.1 82315.626063: cpu_idle: state=4294967295 cpu_id=6
32247          <idle>-0     (-----) [006] d..2 82315.626067: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
32248<...>-11815 ( 8943) [006] .... 82315.626071: binder_transaction_received: transaction=1568641
32249          <idle>-0     (-----) [002] ...1 82315.626074: cpu_idle: state=4294967295 cpu_id=2
32250          <idle>-0     (-----) [002] d..1 82315.626077: cpu_idle: state=0 cpu_id=2
32251<...>-9105 ( 9105) [007] d..2 82315.626104: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
32252<...>-9132 ( 9105) [007] d..2 82315.626111: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32253          <idle>-0     (-----) [007] d..1 82315.626115: cpu_idle: state=0 cpu_id=7
32254<...>-11815 ( 8943) [006] d..2 82315.626139: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32255          <idle>-0     (-----) [006] d..1 82315.626143: cpu_idle: state=0 cpu_id=6
32256<...>-9005 ( 8943) [004] d..3 82315.626239: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
32257<...>-9005 ( 8943) [004] d..4 82315.626247: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
32258          <idle>-0     (-----) [007] .n.1 82315.626251: cpu_idle: state=4294967295 cpu_id=7
32259          <idle>-0     (-----) [007] d..2 82315.626255: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
32260<...>-9039 ( 8943) [007] d..2 82315.626270: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32261          <idle>-0     (-----) [007] d..1 82315.626273: cpu_idle: state=0 cpu_id=7
32262          <idle>-0     (-----) [006] ...1 82315.626335: cpu_idle: state=4294967295 cpu_id=6
32263          <idle>-0     (-----) [006] d..1 82315.626336: cpu_idle: state=0 cpu_id=6
32264<...>-9005 ( 8943) [004] .... 82315.626368: binder_transaction: transaction=1568642 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
32265<...>-9005 ( 8943) [004] .... 82315.626370: binder_transaction_alloc_buf: transaction=1568642 data_size=96 offsets_size=0
32266<...>-9005 ( 8943) [004] d..4 82315.626371: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
32267<...>-9005 ( 8943) [004] d..5 82315.626379: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
32268          <idle>-0     (-----) [007] .n.1 82315.626383: cpu_idle: state=4294967295 cpu_id=7
32269          <idle>-0     (-----) [007] d..2 82315.626386: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
32270<...>-9132 ( 9105) [007] .... 82315.626389: binder_transaction_received: transaction=1568642
32271<...>-9005 ( 8943) [004] d..3 82315.626403: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
32272<...>-9005 ( 8943) [004] d..4 82315.626413: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
32273          <idle>-0     (-----) [006] .n.1 82315.626418: cpu_idle: state=4294967295 cpu_id=6
32274          <idle>-0     (-----) [006] d..2 82315.626421: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
32275<...>-9132 ( 9105) [007] d..3 82315.626425: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
32276<...>-9132 ( 9105) [007] d..4 82315.626431: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
32277<...>-8962 ( 8943) [006] d..3 82315.626443: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=006
32278<...>-8962 ( 8943) [006] d..4 82315.626448: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=006
32279<...>-8962 ( 8943) [006] d..2 82315.626460: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
32280   system_server-8943  ( 8943) [006] .... 82315.626481: binder_transaction: transaction=1568643 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
32281   system_server-8943  ( 8943) [006] .... 82315.626482: binder_transaction_alloc_buf: transaction=1568643 data_size=96 offsets_size=0
32282<...>-9132 ( 9105) [007] d..4 82315.626492: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
32283<...>-9132 ( 9105) [007] d..5 82315.626497: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
32284<...>-9005 ( 8943) [004] .... 82315.626500: binder_transaction: transaction=1568644 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
32285<...>-9132 ( 9105) [007] .... 82315.626500: binder_transaction_received: transaction=1568643
32286<...>-9005 ( 8943) [004] .... 82315.626502: binder_transaction_alloc_buf: transaction=1568644 data_size=380 offsets_size=16
32287   system_server-8943  ( 8943) [006] d..2 82315.626502: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
32288<...>-9005 ( 8943) [004] ...2 82315.626506: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32289<...>-9005 ( 8943) [004] d..4 82315.626507: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32290<...>-9131 ( 9105) [006] d..2 82315.626510: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32291<...>-9005 ( 8943) [004] dn.5 82315.626511: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32292<...>-9005 ( 8943) [004] d..2 82315.626514: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32293          <idle>-0     (-----) [006] d..1 82315.626514: cpu_idle: state=0 cpu_id=6
32294<...>-13083 ( 8858) [004] .... 82315.626518: binder_transaction_received: transaction=1568644
32295<...>-9132 ( 9105) [007] d..2 82315.626532: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
32296<...>-13083 ( 8858) [004] .... 82315.626536: binder_transaction: transaction=1568645 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
32297<...>-13083 ( 8858) [004] .... 82315.626537: binder_transaction_alloc_buf: transaction=1568645 data_size=0 offsets_size=0
32298<...>-13083 ( 8858) [004] .... 82315.626538: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32299<...>-13083 ( 8858) [004] d..2 82315.626550: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
32300<...>-9005 ( 8943) [004] .... 82315.626553: binder_transaction_received: transaction=1568645
32301<...>-9105 ( 9105) [007] d..2 82315.626562: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32302          <idle>-0     (-----) [007] d..1 82315.626566: cpu_idle: state=0 cpu_id=7
32303          <idle>-0     (-----) [006] ...1 82315.626738: cpu_idle: state=4294967295 cpu_id=6
32304          <idle>-0     (-----) [006] d..1 82315.626739: cpu_idle: state=0 cpu_id=6
32305          <idle>-0     (-----) [007] ...1 82315.626757: cpu_idle: state=4294967295 cpu_id=7
32306          <idle>-0     (-----) [007] d..1 82315.626758: cpu_idle: state=0 cpu_id=7
32307<...>-9005 ( 8943) [004] d..3 82315.626766: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
32308<...>-9005 ( 8943) [004] d..4 82315.626774: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
32309          <idle>-0     (-----) [007] .n.1 82315.626778: cpu_idle: state=4294967295 cpu_id=7
32310          <idle>-0     (-----) [007] d..2 82315.626781: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
32311<...>-9005 ( 8943) [004] d..1 82315.626795: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
32312<...>-9039 ( 8943) [007] d..2 82315.626796: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32313          <idle>-0     (-----) [007] d..1 82315.626800: cpu_idle: state=0 cpu_id=7
32314<...>-9005 ( 8943) [004] d..2 82315.626803: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
32315          <idle>-0     (-----) [005] .n.1 82315.626807: cpu_idle: state=4294967295 cpu_id=5
32316          <idle>-0     (-----) [005] d..2 82315.626811: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
32317<...>-9005 ( 8943) [004] .... 82315.626841: binder_transaction: transaction=1568646 dest_node=617822 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
32318<...>-9005 ( 8943) [004] .... 82315.626843: binder_transaction_alloc_buf: transaction=1568646 data_size=80 offsets_size=0
32319<...>-9005 ( 8943) [004] d..4 82315.626844: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
32320<...>-9005 ( 8943) [004] d..5 82315.626854: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
32321<...>-8969 ( 8943) [005] d..1 82315.626857: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
32322          <idle>-0     (-----) [006] .n.1 82315.626858: cpu_idle: state=4294967295 cpu_id=6
32323          <idle>-0     (-----) [006] d..2 82315.626862: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
32324<...>-8969 ( 8943) [005] d..2 82315.626865: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
32325<...>-13083 ( 8858) [006] .... 82315.626865: binder_transaction_received: transaction=1568646
32326          <idle>-0     (-----) [007] .n.1 82315.626869: cpu_idle: state=4294967295 cpu_id=7
32327          <idle>-0     (-----) [007] d..2 82315.626872: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
32328<...>-13083 ( 8858) [006] d..1 82315.626874: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
32329<...>-9005 ( 8943) [004] d..2 82315.626874: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32330          <idle>-0     (-----) [004] d..1 82315.626884: cpu_idle: state=0 cpu_id=4
32331          <idle>-0     (-----) [002] dnh2 82315.626888: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
32332          <idle>-0     (-----) [002] .n.1 82315.626892: cpu_idle: state=4294967295 cpu_id=2
32333<...>-13083 ( 8858) [006] d..2 82315.626892: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32334<...>-8969 ( 8943) [005] d..2 82315.626894: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32335          <idle>-0     (-----) [006] d..1 82315.626895: cpu_idle: state=0 cpu_id=6
32336          <idle>-0     (-----) [002] d..2 82315.626897: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
32337          <idle>-0     (-----) [005] d..1 82315.626898: cpu_idle: state=0 cpu_id=5
32338  appEventThread-8881  ( 8858) [002] d..2 82315.626938: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
32339          <idle>-0     (-----) [002] d..1 82315.626944: cpu_idle: state=0 cpu_id=2
32340          <idle>-0     (-----) [001] ...1 82315.627059: cpu_idle: state=4294967295 cpu_id=1
32341          <idle>-0     (-----) [001] d..1 82315.627062: cpu_idle: state=0 cpu_id=1
32342          <idle>-0     (-----) [006] ...1 82315.627108: cpu_idle: state=4294967295 cpu_id=6
32343          <idle>-0     (-----) [006] d..1 82315.627109: cpu_idle: state=0 cpu_id=6
32344<...>-9062 ( 8943) [007] d..3 82315.627177: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
32345<...>-9062 ( 8943) [007] d..4 82315.627190: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
32346          <idle>-0     (-----) [006] .n.1 82315.627193: cpu_idle: state=4294967295 cpu_id=6
32347          <idle>-0     (-----) [006] d..2 82315.627197: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
32348<...>-9062 ( 8943) [007] .... 82315.627210: binder_transaction: transaction=1568647 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
32349<...>-9039 ( 8943) [006] d..2 82315.627211: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32350<...>-9062 ( 8943) [007] .... 82315.627212: binder_transaction_alloc_buf: transaction=1568647 data_size=64 offsets_size=0
32351<...>-9062 ( 8943) [007] ...2 82315.627213: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32352<...>-9062 ( 8943) [007] d..4 82315.627214: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
32353          <idle>-0     (-----) [006] d..1 82315.627215: cpu_idle: state=0 cpu_id=6
32354<...>-9062 ( 8943) [007] d..5 82315.627221: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
32355<...>-9062 ( 8943) [007] d..2 82315.627226: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32356<...>-13083 ( 8858) [007] .... 82315.627230: binder_transaction_received: transaction=1568647
32357<...>-13083 ( 8858) [007] .... 82315.627245: binder_transaction: transaction=1568648 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
32358<...>-13083 ( 8858) [007] .... 82315.627246: binder_transaction_alloc_buf: transaction=1568648 data_size=24 offsets_size=8
32359<...>-13083 ( 8858) [007] d..2 82315.627331: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
32360<...>-13083 ( 8858) [007] dn.3 82315.627336: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
32361<...>-13083 ( 8858) [007] d..2 82315.627339: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
32362<...>-9062 ( 8943) [007] .... 82315.627342: binder_transaction_received: transaction=1568648
32363<...>-9062 ( 8943) [007] .... 82315.627423: binder_transaction: transaction=1568651 dest_node=1568649 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
32364<...>-9062 ( 8943) [007] .... 82315.627424: binder_transaction_alloc_buf: transaction=1568651 data_size=216 offsets_size=8
32365<...>-9062 ( 8943) [007] ...2 82315.627426: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
32366<...>-9062 ( 8943) [007] d..4 82315.627428: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
32367<...>-9062 ( 8943) [007] d..5 82315.627436: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
32368<...>-9062 ( 8943) [007] d..2 82315.627440: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32369          <idle>-0     (-----) [004] .n.1 82315.627442: cpu_idle: state=4294967295 cpu_id=4
32370<...>-13083 ( 8858) [007] .... 82315.627443: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32371          <idle>-0     (-----) [004] d..2 82315.627446: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
32372<...>-8874 ( 8858) [004] .... 82315.627451: binder_transaction_received: transaction=1568651
32373<...>-13083 ( 8858) [007] d..2 82315.627462: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32374          <idle>-0     (-----) [007] d..1 82315.627468: cpu_idle: state=0 cpu_id=7
32375<...>-8874 ( 8858) [004] .... 82315.627565: binder_transaction: transaction=1568652 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
32376<...>-8874 ( 8858) [004] .... 82315.627566: binder_transaction_alloc_buf: transaction=1568652 data_size=52 offsets_size=16
32377<...>-8874 ( 8858) [004] d..2 82315.627649: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
32378<...>-8874 ( 8858) [004] d..3 82315.627657: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
32379<...>-8874 ( 8858) [004] .... 82315.627658: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
32380          <idle>-0     (-----) [007] .n.1 82315.627662: cpu_idle: state=4294967295 cpu_id=7
32381          <idle>-0     (-----) [007] d..2 82315.627666: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
32382<...>-9062 ( 8943) [007] .... 82315.627669: binder_transaction_received: transaction=1568652
32383<...>-8874 ( 8858) [004] d..2 82315.627677: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32384          <idle>-0     (-----) [004] d..1 82315.627684: cpu_idle: state=0 cpu_id=4
32385<...>-9062 ( 8943) [007] .... 82315.627685: binder_transaction: transaction=1568657 dest_node=1568655 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
32386<...>-9062 ( 8943) [007] .... 82315.627686: binder_transaction_alloc_buf: transaction=1568657 data_size=80 offsets_size=0
32387<...>-9062 ( 8943) [007] ...2 82315.627687: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
32388<...>-9062 ( 8943) [007] d..4 82315.627688: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
32389<...>-9062 ( 8943) [007] d..5 82315.627695: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=007
32390<...>-9062 ( 8943) [007] d..2 82315.627699: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
32391<...>-8874 ( 8858) [007] .... 82315.627702: binder_transaction_received: transaction=1568657
32392<...>-8874 ( 8858) [007] .... 82315.627710: binder_transaction: transaction=1568658 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x8 code=0x0
32393<...>-8874 ( 8858) [007] .... 82315.627711: binder_transaction_alloc_buf: transaction=1568658 data_size=4 offsets_size=0
32394<...>-8874 ( 8858) [007] d..2 82315.627712: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
32395<...>-8874 ( 8858) [007] dn.3 82315.627715: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
32396<...>-8874 ( 8858) [007] d..2 82315.627718: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
32397<...>-9062 ( 8943) [007] .... 82315.627721: binder_transaction_received: transaction=1568658
32398<...>-9062 ( 8943) [007] d..3 82315.628027: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
32399<...>-9062 ( 8943) [007] d..4 82315.628035: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
32400          <idle>-0     (-----) [006] .n.1 82315.628039: cpu_idle: state=4294967295 cpu_id=6
32401<...>-9062 ( 8943) [007] d..1 82315.628039: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=007
32402          <idle>-0     (-----) [006] d..2 82315.628043: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
32403<...>-9062 ( 8943) [007] d..2 82315.628047: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
32404<...>-9039 ( 8943) [006] d..2 82315.628050: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
32405<...>-25493 ( 8943) [006] d..1 82315.628072: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
32406<...>-25493 ( 8943) [006] d..2 82315.628077: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
32407<...>-25493 ( 8943) [006] d..2 82315.628084: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
32408<...>-9062 ( 8943) [007] .... 82315.628114: binder_transaction: transaction=1568659 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
32409<...>-9062 ( 8943) [007] .... 82315.628116: binder_transaction_alloc_buf: transaction=1568659 data_size=228 offsets_size=8
32410<...>-9062 ( 8943) [007] d..2 82315.628147: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
32411<...>-9062 ( 8943) [007] d..3 82315.628159: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
32412<...>-11815 ( 8943) [006] d..2 82315.628159: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
32413<...>-9062 ( 8943) [007] .... 82315.628160: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
32414          <idle>-0     (-----) [004] .n.1 82315.628163: cpu_idle: state=4294967295 cpu_id=4
32415          <idle>-0     (-----) [004] d..2 82315.628167: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
32416           <...>-27550 (-----) [004] .... 82315.628172: binder_transaction_received: transaction=1568659
32417<...>-9062 ( 8943) [007] d..2 82315.628180: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
32418<...>-8874 ( 8858) [007] .... 82315.628183: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
32419<...>-8874 ( 8858) [007] d..2 82315.628198: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32420          <idle>-0     (-----) [007] d..1 82315.628203: cpu_idle: state=0 cpu_id=7
32421<...>-25493 ( 8943) [006] d..1 82315.628216: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
32422<...>-25493 ( 8943) [006] d..2 82315.628222: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
32423          <idle>-0     (-----) [005] .n.1 82315.628227: cpu_idle: state=4294967295 cpu_id=5
32424          <idle>-0     (-----) [005] d..2 82315.628231: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
32425<...>-25493 ( 8943) [006] .... 82315.628301: binder_transaction: transaction=1568660 dest_node=0 dest_proc=9105 dest_thread=9321 reply=1 flags=0x0 code=0x0
32426<...>-25493 ( 8943) [006] .... 82315.628303: binder_transaction_alloc_buf: transaction=1568660 data_size=784 offsets_size=0
32427<...>-25493 ( 8943) [006] d..2 82315.628304: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=006
32428<...>-25493 ( 8943) [006] d..3 82315.628308: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=006
32429<...>-25493 ( 8943) [006] d..2 82315.628318: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
32430<...>-9321 ( 9105) [006] .... 82315.628322: binder_transaction_received: transaction=1568660
32431<...>-8969 ( 8943) [005] d..2 82315.628337: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32432          <idle>-0     (-----) [005] d..1 82315.628340: cpu_idle: state=0 cpu_id=5
32433          <idle>-0     (-----) [007] ...1 82315.628448: cpu_idle: state=4294967295 cpu_id=7
32434          <idle>-0     (-----) [007] d..1 82315.628450: cpu_idle: state=0 cpu_id=7
32435           <...>-27550 (-----) [004] d.s2 82315.628457: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=005
32436           <...>-27550 (-----) [004] d.s3 82315.628465: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=005
32437          <idle>-0     (-----) [005] .n.1 82315.628469: cpu_idle: state=4294967295 cpu_id=5
32438          <idle>-0     (-----) [005] d..2 82315.628473: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
32439           <...>-27550 (-----) [004] .... 82315.628481: binder_transaction: transaction=1568661 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x11
32440           <...>-27550 (-----) [004] .... 82315.628482: binder_transaction_alloc_buf: transaction=1568661 data_size=100 offsets_size=8
32441           <...>-27550 (-----) [004] ...2 82315.628488: binder_set_priority: proc=8943 thread=25493 old=120 => new=110 desired=110
32442           <...>-27550 (-----) [004] d..4 82315.628489: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=006
32443           <...>-27550 (-----) [004] d..5 82315.628499: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=007
32444          <idle>-0     (-----) [007] .n.1 82315.628503: cpu_idle: state=4294967295 cpu_id=7
32445          <idle>-0     (-----) [007] d..2 82315.628507: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
32446           <...>-27550 (-----) [004] d..2 82315.628509: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32447<...>-25493 ( 8943) [007] .... 82315.628510: binder_transaction_received: transaction=1568661
32448          <idle>-0     (-----) [004] d..1 82315.628518: cpu_idle: state=0 cpu_id=4
32449<...>-9321 ( 9105) [006] .... 82315.628524: binder_transaction: transaction=1568662 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xd
32450<...>-9321 ( 9105) [006] .... 82315.628526: binder_transaction_alloc_buf: transaction=1568662 data_size=160 offsets_size=0
32451<...>-9321 ( 9105) [006] d..4 82315.628530: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
32452<...>-9321 ( 9105) [006] d..5 82315.628538: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
32453<...>-9321 ( 9105) [006] d..2 82315.628545: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
32454<...>-9062 ( 8943) [006] .... 82315.628548: binder_transaction_received: transaction=1568662
32455<...>-25493 ( 8943) [007] .... 82315.628599: binder_transaction: transaction=1568663 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
32456<...>-25493 ( 8943) [007] .... 82315.628600: binder_transaction_alloc_buf: transaction=1568663 data_size=4 offsets_size=0
32457<...>-25493 ( 8943) [007] d..2 82315.628602: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
32458<...>-25493 ( 8943) [007] d..3 82315.628610: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
32459<...>-25493 ( 8943) [007] .... 82315.628611: binder_set_priority: proc=8943 thread=25493 old=110 => new=120 desired=120
32460<...>-25493 ( 8943) [007] d..2 82315.628625: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
32461           <...>-27550 (-----) [007] .... 82315.628628: binder_transaction_received: transaction=1568663
32462  kworker/u16:15-1311  ( 1311) [005] d..2 82315.628673: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
32463          <idle>-0     (-----) [005] d..1 82315.628675: cpu_idle: state=0 cpu_id=5
32464           <...>-27550 (-----) [007] d..3 82315.628682: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=003
32465           <...>-27550 (-----) [007] d..4 82315.628697: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=004
32466          <idle>-0     (-----) [004] .n.1 82315.628701: cpu_idle: state=4294967295 cpu_id=4
32467<...>-9062 ( 8943) [006] .... 82315.628709: binder_transaction: transaction=1568664 dest_node=0 dest_proc=9105 dest_thread=9321 reply=1 flags=0x0 code=0x0
32468<...>-9062 ( 8943) [006] .... 82315.628710: binder_transaction_alloc_buf: transaction=1568664 data_size=2112 offsets_size=0
32469<...>-9062 ( 8943) [006] d..2 82315.628712: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=006
32470          <idle>-0     (-----) [004] d..2 82315.628720: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
32471<...>-9062 ( 8943) [006] d..3 82315.628721: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=006
32472          <idle>-0     (-----) [001] d.s3 82315.628726: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=005
32473           <...>-27550 (-----) [007] d..2 82315.628726: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32474          <idle>-0     (-----) [007] d..1 82315.628731: cpu_idle: state=0 cpu_id=7
32475<...>-9062 ( 8943) [006] d..2 82315.628731: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
32476<...>-9321 ( 9105) [006] .... 82315.628735: binder_transaction_received: transaction=1568664
32477          <idle>-0     (-----) [001] ...1 82315.628737: cpu_idle: state=4294967295 cpu_id=1
32478          <idle>-0     (-----) [005] d.h2 82315.628739: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
32479          <idle>-0     (-----) [005] dnh2 82315.628741: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=005
32480          <idle>-0     (-----) [001] d..1 82315.628741: cpu_idle: state=0 cpu_id=1
32481          <idle>-0     (-----) [005] .n.1 82315.628743: cpu_idle: state=4294967295 cpu_id=5
32482           <...>-27570 (-----) [004] d..1 82315.628745: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
32483          <idle>-0     (-----) [005] d..2 82315.628745: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
32484           <...>-27570 (-----) [004] d..2 82315.628752: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
32485          <idle>-0     (-----) [007] .n.1 82315.628756: cpu_idle: state=4294967295 cpu_id=7
32486          <idle>-0     (-----) [007] d..2 82315.628760: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
32487           <...>-27570 (-----) [004] d..2 82315.628762: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32488          <idle>-0     (-----) [004] d..1 82315.628770: cpu_idle: state=0 cpu_id=4
32489          <idle>-0     (-----) [004] ...1 82315.628776: cpu_idle: state=4294967295 cpu_id=4
32490          <idle>-0     (-----) [004] d..1 82315.628777: cpu_idle: state=0 cpu_id=4
32491           <...>-27550 (-----) [007] d..2 82315.628780: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32492          <idle>-0     (-----) [007] d..1 82315.628784: cpu_idle: state=0 cpu_id=7
32493  kworker/u16:15-1311  ( 1311) [005] d..2 82315.628810: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32494          <idle>-0     (-----) [005] d..1 82315.628811: cpu_idle: state=0 cpu_id=5
32495<...>-9321 ( 9105) [006] d..2 82315.628830: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32496          <idle>-0     (-----) [006] d..1 82315.628835: cpu_idle: state=0 cpu_id=6
32497          <idle>-0     (-----) [007] ...1 82315.629043: cpu_idle: state=4294967295 cpu_id=7
32498          <idle>-0     (-----) [007] d..1 82315.629044: cpu_idle: state=0 cpu_id=7
32499          <idle>-0     (-----) [000] d.h5 82315.629596: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=005
32500          <idle>-0     (-----) [000] d.h5 82315.629610: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
32501          <idle>-0     (-----) [005] dnh2 82315.629615: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=005
32502          <idle>-0     (-----) [005] .n.1 82315.629617: cpu_idle: state=4294967295 cpu_id=5
32503          <idle>-0     (-----) [005] dn.2 82315.629618: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
32504          <idle>-0     (-----) [005] d..2 82315.629620: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
32505          <idle>-0     (-----) [000] ...1 82315.629628: cpu_idle: state=4294967295 cpu_id=0
32506          <idle>-0     (-----) [000] d..1 82315.629631: cpu_idle: state=0 cpu_id=0
32507          <idle>-0     (-----) [004] .n.1 82315.629639: cpu_idle: state=4294967295 cpu_id=4
32508          <idle>-0     (-----) [004] d..2 82315.629642: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
32509  crtc_event:111-322   (  322) [005] d..2 82315.629646: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32510          <idle>-0     (-----) [005] d..1 82315.629648: cpu_idle: state=0 cpu_id=5
32511 crtc_commit:111-321   (  321) [004] d..2 82315.629745: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
32512          <idle>-0     (-----) [004] d..1 82315.629747: cpu_idle: state=0 cpu_id=4
32513          <idle>-0     (-----) [001] ...1 82315.630404: cpu_idle: state=4294967295 cpu_id=1
32514          <idle>-0     (-----) [001] d..1 82315.630406: cpu_idle: state=0 cpu_id=1
32515          <idle>-0     (-----) [005] d.s2 82315.631786: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
32516          <idle>-0     (-----) [005] dns3 82315.631806: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
32517          <idle>-0     (-----) [005] .n.1 82315.631812: cpu_idle: state=4294967295 cpu_id=5
32518          <idle>-0     (-----) [004] d.s3 82315.631815: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=005
32519          <idle>-0     (-----) [005] d..2 82315.631815: 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
32520          <idle>-0     (-----) [004] dns4 82315.631822: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=004
32521          <idle>-0     (-----) [004] dns3 82315.631825: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
32522     rcu_preempt-7     (    7) [005] d..2 82315.631827: 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
32523          <idle>-0     (-----) [005] d..1 82315.631829: cpu_idle: state=0 cpu_id=5
32524          <idle>-0     (-----) [004] dns4 82315.631833: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
32525          <idle>-0     (-----) [004] .n.1 82315.631835: cpu_idle: state=4294967295 cpu_id=4
32526          <idle>-0     (-----) [005] .n.1 82315.631836: cpu_idle: state=4294967295 cpu_id=5
32527          <idle>-0     (-----) [004] d..2 82315.631838: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
32528          <idle>-0     (-----) [005] d..2 82315.631839: 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
32529     rcu_preempt-7     (    7) [005] d..2 82315.631841: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=007
32530  crtc_event:111-322   (  322) [004] d..2 82315.631848: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32531          <idle>-0     (-----) [004] d..1 82315.631850: cpu_idle: state=0 cpu_id=4
32532     rcu_preempt-7     (    7) [005] d..3 82315.631852: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=006
32533     rcu_preempt-7     (    7) [005] d..2 82315.631853: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=004
32534          <idle>-0     (-----) [006] .n.1 82315.631857: cpu_idle: state=4294967295 cpu_id=6
32535     rcu_preempt-7     (    7) [005] d..3 82315.631865: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=004
32536          <idle>-0     (-----) [004] .n.1 82315.631882: cpu_idle: state=4294967295 cpu_id=4
32537          <idle>-0     (-----) [006] d..2 82315.631882: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
32538          <idle>-0     (-----) [004] d..2 82315.631886: 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
32539     rcu_preempt-7     (    7) [005] d..2 82315.631887: 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
32540         rcuop/4-45    (   45) [006] d..2 82315.631887: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
32541         rcuop/6-61    (   61) [004] d..2 82315.631888: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=001
32542          <idle>-0     (-----) [005] d..1 82315.631889: cpu_idle: state=0 cpu_id=5
32543         rcuop/4-45    (   45) [006] d..3 82315.631905: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=005
32544         rcuop/6-61    (   61) [004] d..3 82315.631907: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=005
32545          <idle>-0     (-----) [005] .n.1 82315.631908: cpu_idle: state=4294967295 cpu_id=5
32546          <idle>-0     (-----) [005] d..2 82315.631924: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
32547         rcuop/4-45    (   45) [006] d..2 82315.631927: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32548         rcuop/5-53    (   53) [005] d..2 82315.631929: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
32549          <idle>-0     (-----) [006] d..1 82315.631930: cpu_idle: state=0 cpu_id=6
32550          <idle>-0     (-----) [000] d.h5 82315.631937: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=004
32551         rcuop/6-61    (   61) [004] d..2 82315.631939: 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
32552          <idle>-0     (-----) [004] d..1 82315.631942: cpu_idle: state=0 cpu_id=4
32553          <idle>-0     (-----) [004] dnh2 82315.631952: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=004
32554<...>-69 ( 69) [005] d..2 82315.631954: 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
32555          <idle>-0     (-----) [000] ...1 82315.631955: cpu_idle: state=4294967295 cpu_id=0
32556          <idle>-0     (-----) [004] .n.1 82315.631955: cpu_idle: state=4294967295 cpu_id=4
32557          <idle>-0     (-----) [005] d..1 82315.631955: cpu_idle: state=0 cpu_id=5
32558          <idle>-0     (-----) [000] d..1 82315.631957: cpu_idle: state=0 cpu_id=0
32559          <idle>-0     (-----) [004] d..2 82315.631957: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
32560 crtc_commit:111-321   (  321) [004] d..2 82315.631983: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32561          <idle>-0     (-----) [004] d..1 82315.631985: cpu_idle: state=0 cpu_id=4
32562          <idle>-0     (-----) [000] d.h5 82315.632215: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=004
32563          <idle>-0     (-----) [004] dnh2 82315.632227: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=004
32564          <idle>-0     (-----) [000] d.h7 82315.632228: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
32565          <idle>-0     (-----) [004] .n.1 82315.632229: cpu_idle: state=4294967295 cpu_id=4
32566          <idle>-0     (-----) [004] d..2 82315.632231: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
32567          <idle>-0     (-----) [000] dnh8 82315.632237: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
32568  crtc_event:111-322   (  322) [004] d..2 82315.632237: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32569          <idle>-0     (-----) [004] d..1 82315.632239: cpu_idle: state=0 cpu_id=4
32570          <idle>-0     (-----) [000] dnh9 82315.632247: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=004
32571          <idle>-0     (-----) [000] dnh7 82315.632256: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=001
32572          <idle>-0     (-----) [004] dnh2 82315.632258: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=004
32573          <idle>-0     (-----) [004] .n.1 82315.632260: cpu_idle: state=4294967295 cpu_id=4
32574          <idle>-0     (-----) [004] d..2 82315.632262: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
32575          <idle>-0     (-----) [000] dnh8 82315.632269: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=001
32576          <idle>-0     (-----) [001] .n.1 82315.632273: cpu_idle: state=4294967295 cpu_id=1
32577 crtc_commit:111-321   (  321) [004] d..2 82315.632276: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32578          <idle>-0     (-----) [004] d..1 82315.632278: cpu_idle: state=0 cpu_id=4
32579          <idle>-0     (-----) [000] .n.1 82315.632279: cpu_idle: state=4294967295 cpu_id=0
32580          <idle>-0     (-----) [001] d..2 82315.632281: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
32581          <idle>-0     (-----) [000] d..2 82315.632287: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
32582     kworker/0:1-25262 (25262) [000] d..2 82315.632306: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32583          <idle>-0     (-----) [000] d..1 82315.632311: cpu_idle: state=0 cpu_id=0
32584 SDM_EventThread-644   (  619) [001] ...1 82315.632319: tracing_mark_write: B|619|HWCCallbacks::Vsync::
32585 SDM_EventThread-644   (  619) [001] ...1 82315.632327: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
32586 SDM_EventThread-644   (  619) [001] ...1 82315.632330: tracing_mark_write: E|619
32587 SDM_EventThread-644   (  619) [001] .... 82315.632353: binder_transaction: transaction=1568665 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
32588 SDM_EventThread-644   (  619) [001] .... 82315.632356: binder_transaction_alloc_buf: transaction=1568665 data_size=76 offsets_size=0
32589 SDM_EventThread-644   (  619) [001] d..4 82315.632360: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=000
32590 SDM_EventThread-644   (  619) [001] d..5 82315.632374: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=000
32591          <idle>-0     (-----) [000] .n.1 82315.632379: cpu_idle: state=4294967295 cpu_id=0
32592          <idle>-0     (-----) [000] d..2 82315.632385: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
32593<...>-8890 ( 8858) [000] .... 82315.632391: binder_transaction_received: transaction=1568665
32594 SDM_EventThread-644   (  619) [001] ...1 82315.632391: tracing_mark_write: E|619
32595 SDM_EventThread-644   (  619) [001] d..4 82315.632402: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=004
32596          <idle>-0     (-----) [004] dnh2 82315.632415: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=004
32597          <idle>-0     (-----) [004] .n.1 82315.632417: cpu_idle: state=4294967295 cpu_id=4
32598          <idle>-0     (-----) [004] d..2 82315.632419: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
32599 crtc_commit:111-321   (  321) [004] d..2 82315.632423: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32600<...>-8890 ( 8858) [000] ...1 82315.632424: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
32601          <idle>-0     (-----) [004] d..1 82315.632425: cpu_idle: state=0 cpu_id=4
32602 SDM_EventThread-644   (  619) [001] d..2 82315.632431: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32603<...>-8890 ( 8858) [000] ...1 82315.632438: tracing_mark_write: E|8858
32604          <idle>-0     (-----) [001] d..1 82315.632440: cpu_idle: state=0 cpu_id=1
32605<...>-8890 ( 8858) [000] d..2 82315.632467: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
32606          <idle>-0     (-----) [000] d..1 82315.632474: cpu_idle: state=0 cpu_id=0
32607          <idle>-0     (-----) [004] ...1 82315.632616: cpu_idle: state=4294967295 cpu_id=4
32608          <idle>-0     (-----) [004] d..1 82315.632617: cpu_idle: state=0 cpu_id=4
32609          <idle>-0     (-----) [005] d.h2 82315.634461: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=005
32610          <idle>-0     (-----) [005] dnh3 82315.634466: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=005
32611          <idle>-0     (-----) [005] .n.1 82315.634468: cpu_idle: state=4294967295 cpu_id=5
32612          <idle>-0     (-----) [005] d..2 82315.634471: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
32613        DispSync-8879  ( 8858) [005] d..1 82315.634484: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
32614          <idle>-0     (-----) [002] dnh2 82315.634498: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
32615        DispSync-8879  ( 8858) [005] d..2 82315.634502: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32616          <idle>-0     (-----) [002] .n.1 82315.634502: cpu_idle: state=4294967295 cpu_id=2
32617          <idle>-0     (-----) [005] d..1 82315.634505: cpu_idle: state=0 cpu_id=5
32618          <idle>-0     (-----) [002] d..2 82315.634508: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
32619  appEventThread-8881  ( 8858) [002] d..3 82315.634548: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
32620          <idle>-0     (-----) [006] dnh2 82315.634567: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
32621          <idle>-0     (-----) [006] .n.1 82315.634569: cpu_idle: state=4294967295 cpu_id=6
32622          <idle>-0     (-----) [006] d..2 82315.634572: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
32623  appEventThread-8881  ( 8858) [002] d..3 82315.634575: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
32624          <idle>-0     (-----) [004] dnh2 82315.634590: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
32625          <idle>-0     (-----) [004] .n.1 82315.634592: cpu_idle: state=4294967295 cpu_id=4
32626  appEventThread-8881  ( 8858) [002] d..3 82315.634594: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
32627          <idle>-0     (-----) [004] d..2 82315.634595: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
32628          <idle>-0     (-----) [005] dnh2 82315.634613: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
32629          <idle>-0     (-----) [005] .n.1 82315.634615: cpu_idle: state=4294967295 cpu_id=5
32630          <idle>-0     (-----) [005] d..2 82315.634618: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
32631  appEventThread-8881  ( 8858) [002] d..2 82315.634625: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
32632          <idle>-0     (-----) [002] d..1 82315.634632: cpu_idle: state=0 cpu_id=2
32633<...>-9105 ( 9105) [006] .... 82315.634687: binder_transaction: transaction=1568666 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
32634<...>-9105 ( 9105) [006] .... 82315.634689: binder_transaction_alloc_buf: transaction=1568666 data_size=80 offsets_size=0
32635<...>-9105 ( 9105) [006] d..4 82315.634690: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
32636<...>-9105 ( 9105) [006] d..5 82315.634698: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
32637          <idle>-0     (-----) [007] .n.1 82315.634703: cpu_idle: state=4294967295 cpu_id=7
32638          <idle>-0     (-----) [007] d..2 82315.634706: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
32639<...>-8874 ( 8858) [007] .... 82315.634710: binder_transaction_received: transaction=1568666
32640<...>-9105 ( 9105) [006] d..3 82315.634711: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
32641<...>-8874 ( 8858) [007] d..1 82315.634720: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
32642<...>-9105 ( 9105) [006] d..4 82315.634721: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
32643          <idle>-0     (-----) [002] dnh2 82315.634734: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
32644<...>-8874 ( 8858) [007] d..2 82315.634735: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
32645          <idle>-0     (-----) [002] .n.1 82315.634737: cpu_idle: state=4294967295 cpu_id=2
32646<...>-9005 ( 8943) [005] d..2 82315.634742: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32647          <idle>-0     (-----) [002] d..2 82315.634743: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
32648          <idle>-0     (-----) [005] d..1 82315.634747: cpu_idle: state=0 cpu_id=5
32649    RenderThread-9436  ( 9105) [007] d..2 82315.634755: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32650          <idle>-0     (-----) [007] d..1 82315.634759: cpu_idle: state=0 cpu_id=7
32651  appEventThread-8881  ( 8858) [002] d..2 82315.634764: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
32652          <idle>-0     (-----) [002] d..1 82315.634769: cpu_idle: state=0 cpu_id=2
32653<...>-9105 ( 9105) [006] d..3 82315.634784: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
32654<...>-9105 ( 9105) [006] d..4 82315.634790: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
32655          <idle>-0     (-----) [007] .n.1 82315.634795: cpu_idle: state=4294967295 cpu_id=7
32656          <idle>-0     (-----) [007] d..2 82315.634798: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
32657<...>-9105 ( 9105) [006] d..2 82315.634799: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32658          <idle>-0     (-----) [006] d..1 82315.634804: cpu_idle: state=0 cpu_id=6
32659    RenderThread-9436  ( 9105) [007] d..1 82315.634853: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
32660    RenderThread-9436  ( 9105) [007] d..2 82315.634860: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
32661          <idle>-0     (-----) [006] .n.1 82315.634864: cpu_idle: state=4294967295 cpu_id=6
32662          <idle>-0     (-----) [006] d..2 82315.634867: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
32663<...>-9105 ( 9105) [006] d..2 82315.634887: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32664          <idle>-0     (-----) [006] d..1 82315.634890: cpu_idle: state=0 cpu_id=6
32665    RenderThread-9436  ( 9105) [007] .... 82315.634892: binder_transaction: transaction=1568667 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
32666    RenderThread-9436  ( 9105) [007] .... 82315.634893: binder_transaction_alloc_buf: transaction=1568667 data_size=104 offsets_size=0
32667    RenderThread-9436  ( 9105) [007] d..4 82315.634894: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
32668    RenderThread-9436  ( 9105) [007] d..5 82315.634897: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
32669    RenderThread-9436  ( 9105) [007] d..2 82315.634902: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
32670<...>-8874 ( 8858) [007] .... 82315.634905: binder_transaction_received: transaction=1568667
32671<...>-8874 ( 8858) [007] .... 82315.634932: binder_transaction: transaction=1568668 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
32672<...>-8874 ( 8858) [007] .... 82315.634933: binder_transaction_alloc_buf: transaction=1568668 data_size=52 offsets_size=8
32673<...>-8874 ( 8858) [007] d..2 82315.634961: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
32674<...>-8874 ( 8858) [007] d..3 82315.634965: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
32675<...>-8874 ( 8858) [007] d..2 82315.634974: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
32676    RenderThread-9436  ( 9105) [007] .... 82315.634977: binder_transaction_received: transaction=1568668
32677    RenderThread-9436  ( 9105) [007] d..2 82315.635735: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
32678          <idle>-0     (-----) [007] d..1 82315.635740: cpu_idle: state=0 cpu_id=7
32679          <idle>-0     (-----) [007] d.h2 82315.635831: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
32680          <idle>-0     (-----) [007] d.h3 82315.635835: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
32681          <idle>-0     (-----) [007] dnh3 82315.635836: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
32682          <idle>-0     (-----) [007] .n.1 82315.635838: cpu_idle: state=4294967295 cpu_id=7
32683          <idle>-0     (-----) [007] d..2 82315.635842: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
32684    RenderThread-9436  ( 9105) [007] .... 82315.635930: binder_transaction: transaction=1568669 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
32685    RenderThread-9436  ( 9105) [007] .... 82315.635932: binder_transaction_alloc_buf: transaction=1568669 data_size=192 offsets_size=8
32686    RenderThread-9436  ( 9105) [007] d..4 82315.635935: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
32687          <idle>-0     (-----) [000] d.h3 82315.635937: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
32688    RenderThread-9436  ( 9105) [007] d..5 82315.635938: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
32689    RenderThread-9436  ( 9105) [007] d..2 82315.635943: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
32690<...>-8874 ( 8858) [007] .... 82315.635946: binder_transaction_received: transaction=1568669
32691          <idle>-0     (-----) [005] dnh2 82315.635953: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
32692          <idle>-0     (-----) [000] ...1 82315.635955: cpu_idle: state=4294967295 cpu_id=0
32693          <idle>-0     (-----) [005] .n.1 82315.635955: cpu_idle: state=4294967295 cpu_id=5
32694          <idle>-0     (-----) [000] d..1 82315.635958: cpu_idle: state=0 cpu_id=0
32695          <idle>-0     (-----) [005] d..2 82315.635958: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
32696 kgsl_worker_thr-258   (  258) [005] d..2 82315.635984: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=005
32697 kgsl_worker_thr-258   (  258) [005] d..3 82315.635994: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
32698          <idle>-0     (-----) [006] .n.1 82315.635999: cpu_idle: state=4294967295 cpu_id=6
32699          <idle>-0     (-----) [006] d..2 82315.636003: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
32700 kgsl_worker_thr-258   (  258) [005] d..2 82315.636004: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32701          <idle>-0     (-----) [005] d..1 82315.636006: cpu_idle: state=0 cpu_id=5
32702<...>-8874 ( 8858) [007] .... 82315.636008: binder_transaction: transaction=1568670 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
32703<...>-8874 ( 8858) [007] .... 82315.636009: binder_transaction_alloc_buf: transaction=1568670 data_size=68 offsets_size=0
32704<...>-8874 ( 8858) [007] d..2 82315.636010: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
32705<...>-8874 ( 8858) [007] d..3 82315.636014: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
32706<...>-8874 ( 8858) [007] d..2 82315.636022: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
32707    RenderThread-9436  ( 9105) [007] .... 82315.636025: binder_transaction_received: transaction=1568670
32708    RenderThread-9436  ( 9105) [007] d..2 82315.636054: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32709          <idle>-0     (-----) [007] d..1 82315.636058: cpu_idle: state=0 cpu_id=7
32710  kworker/u16:15-1311  ( 1311) [006] d..2 82315.636100: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
32711          <idle>-0     (-----) [006] d..1 82315.636103: cpu_idle: state=0 cpu_id=6
32712          <idle>-0     (-----) [001] d.s3 82315.636139: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
32713           <...>-27550 (-----) [004] d..3 82315.636150: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=004
32714          <idle>-0     (-----) [001] ...1 82315.636150: cpu_idle: state=4294967295 cpu_id=1
32715          <idle>-0     (-----) [006] d.h2 82315.636152: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
32716          <idle>-0     (-----) [006] dnh2 82315.636153: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
32717          <idle>-0     (-----) [001] d..1 82315.636153: cpu_idle: state=0 cpu_id=1
32718          <idle>-0     (-----) [006] .n.1 82315.636155: cpu_idle: state=4294967295 cpu_id=6
32719          <idle>-0     (-----) [006] d..2 82315.636158: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
32720           <...>-27550 (-----) [004] d..4 82315.636163: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=005
32721  kworker/u16:15-1311  ( 1311) [006] d..2 82315.636166: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32722          <idle>-0     (-----) [005] .n.1 82315.636167: cpu_idle: state=4294967295 cpu_id=5
32723          <idle>-0     (-----) [006] d..1 82315.636168: cpu_idle: state=0 cpu_id=6
32724          <idle>-0     (-----) [005] d..2 82315.636170: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
32725           <...>-27550 (-----) [004] d..2 82315.636173: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32726          <idle>-0     (-----) [004] d..1 82315.636179: cpu_idle: state=0 cpu_id=4
32727           <...>-27570 (-----) [005] d..1 82315.636181: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
32728           <...>-27570 (-----) [005] d..2 82315.636188: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
32729          <idle>-0     (-----) [004] .n.1 82315.636193: cpu_idle: state=4294967295 cpu_id=4
32730           <...>-27570 (-----) [005] d..2 82315.636196: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32731          <idle>-0     (-----) [004] d..2 82315.636197: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
32732          <idle>-0     (-----) [005] d..1 82315.636199: cpu_idle: state=0 cpu_id=5
32733           <...>-27550 (-----) [004] .... 82315.636268: binder_transaction: transaction=1568671 dest_node=1568551 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x6
32734           <...>-27550 (-----) [004] .... 82315.636270: binder_transaction_alloc_buf: transaction=1568671 data_size=596 offsets_size=16
32735           <...>-27550 (-----) [004] ...2 82315.636277: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
32736           <...>-27550 (-----) [004] d..4 82315.636278: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
32737           <...>-27550 (-----) [004] d..5 82315.636286: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
32738          <idle>-0     (-----) [006] .n.1 82315.636290: cpu_idle: state=4294967295 cpu_id=6
32739           <...>-27550 (-----) [004] d..2 82315.636293: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32740          <idle>-0     (-----) [006] d..2 82315.636294: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
32741          <idle>-0     (-----) [004] d..1 82315.636297: cpu_idle: state=0 cpu_id=4
32742<...>-9062 ( 8943) [006] .... 82315.636299: binder_transaction_received: transaction=1568671
32743          <idle>-0     (-----) [004] ...1 82315.636503: cpu_idle: state=4294967295 cpu_id=4
32744          <idle>-0     (-----) [004] d..1 82315.636505: cpu_idle: state=0 cpu_id=4
32745<...>-9062 ( 8943) [006] d..3 82315.636623: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
32746<...>-9062 ( 8943) [006] d..4 82315.636635: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
32747          <idle>-0     (-----) [004] .n.1 82315.636639: cpu_idle: state=4294967295 cpu_id=4
32748          <idle>-0     (-----) [004] d..2 82315.636643: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
32749<...>-8969 ( 8943) [004] d..2 82315.636671: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32750          <idle>-0     (-----) [004] d..1 82315.636675: cpu_idle: state=0 cpu_id=4
32751<...>-9062 ( 8943) [006] .... 82315.636711: binder_transaction: transaction=1568672 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
32752<...>-9062 ( 8943) [006] .... 82315.636713: binder_transaction_alloc_buf: transaction=1568672 data_size=96 offsets_size=0
32753<...>-9062 ( 8943) [006] d..4 82315.636715: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
32754<...>-9062 ( 8943) [006] d..5 82315.636724: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
32755          <idle>-0     (-----) [007] .n.1 82315.636729: cpu_idle: state=4294967295 cpu_id=7
32756          <idle>-0     (-----) [007] d..2 82315.636733: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
32757<...>-9132 ( 9105) [007] .... 82315.636735: binder_transaction_received: transaction=1568672
32758<...>-9062 ( 8943) [006] d..3 82315.636769: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
32759<...>-9062 ( 8943) [006] d..4 82315.636780: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
32760<...>-9132 ( 9105) [007] d..3 82315.636787: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
32761<...>-9132 ( 9105) [007] d..4 82315.636796: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
32762<...>-9132 ( 9105) [007] d..2 82315.636820: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
32763<...>-8962 ( 8943) [007] d..3 82315.636858: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=006
32764<...>-8962 ( 8943) [007] d..4 82315.636868: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
32765<...>-8962 ( 8943) [007] d..2 82315.636882: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
32766   system_server-8943  ( 8943) [007] .... 82315.636912: binder_transaction: transaction=1568673 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
32767   system_server-8943  ( 8943) [007] .... 82315.636913: binder_transaction_alloc_buf: transaction=1568673 data_size=96 offsets_size=0
32768   system_server-8943  ( 8943) [007] d..4 82315.636914: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
32769   system_server-8943  ( 8943) [007] d..5 82315.636919: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
32770   system_server-8943  ( 8943) [007] d..2 82315.636936: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
32771<...>-9132 ( 9105) [007] .... 82315.636939: binder_transaction_received: transaction=1568673
32772<...>-9062 ( 8943) [006] .... 82315.636946: binder_transaction: transaction=1568674 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
32773<...>-9062 ( 8943) [006] .... 82315.636948: binder_transaction_alloc_buf: transaction=1568674 data_size=684 offsets_size=32
32774<...>-9062 ( 8943) [006] ...2 82315.636955: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
32775<...>-9062 ( 8943) [006] d..4 82315.636956: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=007
32776<...>-9062 ( 8943) [006] d..5 82315.636964: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
32777<...>-9062 ( 8943) [006] d..2 82315.636968: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
32778<...>-8874 ( 8858) [006] .... 82315.636972: binder_transaction_received: transaction=1568674
32779<...>-9132 ( 9105) [007] d..2 82315.636983: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
32780<...>-8874 ( 8858) [006] .... 82315.637010: binder_transaction: transaction=1568675 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
32781<...>-8874 ( 8858) [006] .... 82315.637011: binder_transaction_alloc_buf: transaction=1568675 data_size=0 offsets_size=0
32782<...>-8874 ( 8858) [006] d..2 82315.637012: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
32783<...>-8874 ( 8858) [006] dn.3 82315.637016: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
32784<...>-8874 ( 8858) [006] d..2 82315.637019: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
32785<...>-9062 ( 8943) [006] .... 82315.637021: binder_transaction_received: transaction=1568675
32786<...>-9105 ( 9105) [007] d..2 82315.637038: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32787          <idle>-0     (-----) [007] d..1 82315.637043: cpu_idle: state=0 cpu_id=7
32788<...>-9062 ( 8943) [006] d..3 82315.637334: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
32789<...>-9062 ( 8943) [006] d..4 82315.637348: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
32790          <idle>-0     (-----) [007] .n.1 82315.637352: cpu_idle: state=4294967295 cpu_id=7
32791          <idle>-0     (-----) [007] d..2 82315.637356: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
32792<...>-9039 ( 8943) [007] d..2 82315.637377: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32793          <idle>-0     (-----) [007] d..1 82315.637380: cpu_idle: state=0 cpu_id=7
32794<...>-9062 ( 8943) [006] .... 82315.637469: binder_transaction: transaction=1568676 dest_node=1568649 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
32795<...>-9062 ( 8943) [006] .... 82315.637471: binder_transaction_alloc_buf: transaction=1568676 data_size=208 offsets_size=8
32796<...>-9062 ( 8943) [006] ...2 82315.637473: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32797<...>-9062 ( 8943) [006] d..4 82315.637474: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
32798<...>-9062 ( 8943) [006] d..5 82315.637488: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32799          <idle>-0     (-----) [004] .n.1 82315.637492: cpu_idle: state=4294967295 cpu_id=4
32800<...>-9062 ( 8943) [006] d..2 82315.637492: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
32801<...>-8874 ( 8858) [006] .... 82315.637495: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
32802          <idle>-0     (-----) [004] d..2 82315.637496: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32803<...>-13083 ( 8858) [004] .... 82315.637500: binder_transaction_received: transaction=1568676
32804<...>-8874 ( 8858) [006] d..2 82315.637516: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32805          <idle>-0     (-----) [006] d..1 82315.637521: cpu_idle: state=0 cpu_id=6
32806<...>-13083 ( 8858) [004] .... 82315.637643: binder_transaction: transaction=1568677 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
32807<...>-13083 ( 8858) [004] .... 82315.637645: binder_transaction_alloc_buf: transaction=1568677 data_size=52 offsets_size=16
32808<...>-13083 ( 8858) [004] d..2 82315.637817: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
32809<...>-13083 ( 8858) [004] d..3 82315.637825: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
32810<...>-13083 ( 8858) [004] .... 82315.637826: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32811          <idle>-0     (-----) [006] .n.1 82315.637829: cpu_idle: state=4294967295 cpu_id=6
32812          <idle>-0     (-----) [006] d..2 82315.637833: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
32813<...>-9062 ( 8943) [006] .... 82315.637836: binder_transaction_received: transaction=1568677
32814<...>-13083 ( 8858) [004] d..2 82315.637848: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32815          <idle>-0     (-----) [004] d..1 82315.637853: cpu_idle: state=0 cpu_id=4
32816<...>-9062 ( 8943) [006] .... 82315.637857: binder_transaction: transaction=1568682 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
32817<...>-9062 ( 8943) [006] .... 82315.637858: binder_transaction_alloc_buf: transaction=1568682 data_size=80 offsets_size=0
32818<...>-9062 ( 8943) [006] ...2 82315.637859: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32819<...>-9062 ( 8943) [006] d..4 82315.637860: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32820<...>-9062 ( 8943) [006] d..5 82315.637867: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
32821<...>-9062 ( 8943) [006] d..2 82315.637871: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32822<...>-13083 ( 8858) [006] .... 82315.637875: binder_transaction_received: transaction=1568682
32823<...>-13083 ( 8858) [006] .... 82315.637883: binder_transaction: transaction=1568683 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x8 code=0x0
32824<...>-13083 ( 8858) [006] .... 82315.637884: binder_transaction_alloc_buf: transaction=1568683 data_size=4 offsets_size=0
32825<...>-13083 ( 8858) [006] d..2 82315.637885: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
32826<...>-13083 ( 8858) [006] d..3 82315.637889: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
32827<...>-13083 ( 8858) [006] .... 82315.637889: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32828<...>-13083 ( 8858) [006] d..2 82315.637893: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
32829<...>-9062 ( 8943) [006] .... 82315.637896: binder_transaction_received: transaction=1568683
32830<...>-9062 ( 8943) [006] d..3 82315.638029: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
32831<...>-9062 ( 8943) [006] d..4 82315.638037: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
32832          <idle>-0     (-----) [007] .n.1 82315.638041: cpu_idle: state=4294967295 cpu_id=7
32833          <idle>-0     (-----) [007] d..2 82315.638044: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
32834<...>-8962 ( 8943) [007] d..3 82315.638067: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
32835<...>-8962 ( 8943) [007] d..4 82315.638072: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
32836<...>-8962 ( 8943) [007] d..2 82315.638084: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
32837   system_server-8943  ( 8943) [007] .... 82315.638109: binder_transaction: transaction=1568684 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
32838   system_server-8943  ( 8943) [007] .... 82315.638111: binder_transaction_alloc_buf: transaction=1568684 data_size=96 offsets_size=0
32839   system_server-8943  ( 8943) [007] d..4 82315.638112: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
32840   system_server-8943  ( 8943) [007] d..5 82315.638116: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
32841   system_server-8943  ( 8943) [007] d..2 82315.638133: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
32842<...>-9132 ( 9105) [007] .... 82315.638136: binder_transaction_received: transaction=1568684
32843<...>-9132 ( 9105) [007] d..3 82315.638165: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
32844<...>-9132 ( 9105) [007] d..4 82315.638171: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
32845<...>-9132 ( 9105) [007] d..2 82315.638188: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
32846<...>-9105 ( 9105) [007] d..2 82315.638214: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32847          <idle>-0     (-----) [007] d..1 82315.638219: cpu_idle: state=0 cpu_id=7
32848<...>-9062 ( 8943) [006] d..3 82315.638305: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
32849<...>-9062 ( 8943) [006] d..4 82315.638313: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
32850<...>-9062 ( 8943) [006] d..1 82315.638317: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
32851          <idle>-0     (-----) [007] .n.1 82315.638317: cpu_idle: state=4294967295 cpu_id=7
32852          <idle>-0     (-----) [007] d..2 82315.638321: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
32853<...>-9062 ( 8943) [006] d..2 82315.638321: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
32854          <idle>-0     (-----) [004] .n.1 82315.638326: cpu_idle: state=4294967295 cpu_id=4
32855          <idle>-0     (-----) [004] d..2 82315.638329: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
32856<...>-9039 ( 8943) [007] d..2 82315.638337: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
32857          <idle>-0     (-----) [007] d..1 82315.638341: cpu_idle: state=0 cpu_id=7
32858          <idle>-0     (-----) [005] d.h2 82315.638447: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=005
32859          <idle>-0     (-----) [005] dnh3 82315.638452: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=005
32860<...>-9062 ( 8943) [006] d.s2 82315.638453: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
32861<...>-8969 ( 8943) [004] .... 82315.638457: binder_transaction: transaction=1568685 dest_node=1568605 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x6
32862          <idle>-0     (-----) [005] dns2 82315.638457: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
32863<...>-8969 ( 8943) [004] .... 82315.638458: binder_transaction_alloc_buf: transaction=1568685 data_size=60 offsets_size=0
32864<...>-8969 ( 8943) [004] d..4 82315.638461: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=006
32865<...>-9062 ( 8943) [006] d.s3 82315.638469: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=007
32866          <idle>-0     (-----) [005] dns3 82315.638470: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
32867<...>-8969 ( 8943) [004] d..5 82315.638471: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=004
32868          <idle>-0     (-----) [007] .n.1 82315.638473: cpu_idle: state=4294967295 cpu_id=7
32869          <idle>-0     (-----) [005] .n.1 82315.638474: cpu_idle: state=4294967295 cpu_id=5
32870          <idle>-0     (-----) [005] d..2 82315.638477: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
32871          <idle>-0     (-----) [007] d..2 82315.638478: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
32872     rcu_preempt-7     (    7) [007] d..2 82315.638485: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
32873        DispSync-8879  ( 8858) [005] d..1 82315.638486: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
32874<...>-8969 ( 8943) [004] d..2 82315.638490: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=110 prev_state=R+ ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
32875<...>-9062 ( 8943) [006] .... 82315.638491: binder_transaction: transaction=1568686 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
32876<...>-9062 ( 8943) [006] .... 82315.638492: binder_transaction_alloc_buf: transaction=1568686 data_size=1520 offsets_size=8
32877           <...>-27564 (-----) [004] .... 82315.638495: binder_transaction_received: transaction=1568685
32878<...>-9062 ( 8943) [006] d..2 82315.638500: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
32879          <idle>-0     (-----) [001] dnh2 82315.638501: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
32880          <idle>-0     (-----) [001] .n.1 82315.638504: cpu_idle: state=4294967295 cpu_id=1
32881        DispSync-8879  ( 8858) [005] d..2 82315.638505: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
32882          <idle>-0     (-----) [005] d..1 82315.638508: cpu_idle: state=0 cpu_id=5
32883          <idle>-0     (-----) [001] d..2 82315.638511: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
32884<...>-9062 ( 8943) [006] d..3 82315.638512: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
32885<...>-9062 ( 8943) [006] .... 82315.638513: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
32886          <idle>-0     (-----) [005] .n.1 82315.638516: cpu_idle: state=4294967295 cpu_id=5
32887          <idle>-0     (-----) [005] d..2 82315.638520: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
32888           <...>-27550 (-----) [005] .... 82315.638523: binder_transaction_received: transaction=1568686
32889<...>-9062 ( 8943) [006] d..2 82315.638529: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
32890<...>-13083 ( 8858) [006] d..2 82315.638544: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
32891   sfEventThread-8882  ( 8858) [001] d..3 82315.638545: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=007
32892          <idle>-0     (-----) [006] d..1 82315.638555: cpu_idle: state=0 cpu_id=6
32893          <idle>-0     (-----) [006] ...1 82315.638561: cpu_idle: state=4294967295 cpu_id=6
32894          <idle>-0     (-----) [006] dnh2 82315.638565: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=006
32895          <idle>-0     (-----) [006] d..2 82315.638570: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
32896   sfEventThread-8882  ( 8858) [001] d..3 82315.638570: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
32897   sfEventThread-8882  ( 8858) [001] d..4 82315.638586: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
32898          <idle>-0     (-----) [003] .n.1 82315.638591: cpu_idle: state=4294967295 cpu_id=3
32899          <idle>-0     (-----) [003] d..2 82315.638597: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
32900   sfEventThread-8882  ( 8858) [001] d..3 82315.638597: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
32901           <...>-27564 (-----) [004] d..2 82315.638611: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=android.display next_pid=8969 next_prio=110
32902<...>-9006 ( 8943) [006] d.h1 82315.638616: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=006
32903   sfEventThread-8882  ( 8858) [001] d..2 82315.638631: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32904          <idle>-0     (-----) [001] d..1 82315.638638: cpu_idle: state=0 cpu_id=1
32905<...>-8969 ( 8943) [004] d..2 82315.638640: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32906          <idle>-0     (-----) [004] d..1 82315.638644: cpu_idle: state=0 cpu_id=4
32907  kworker/u16:15-1311  ( 1311) [007] d..2 82315.638645: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
32908          <idle>-0     (-----) [007] d..1 82315.638648: cpu_idle: state=0 cpu_id=7
32909<...>-9006 ( 8943) [006] .... 82315.638669: binder_transaction: transaction=1568688 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
32910<...>-9006 ( 8943) [006] .... 82315.638671: binder_transaction_alloc_buf: transaction=1568688 data_size=80 offsets_size=0
32911<...>-9006 ( 8943) [006] d..4 82315.638672: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
32912<...>-9006 ( 8943) [006] d..5 82315.638683: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
32913          <idle>-0     (-----) [001] d.s3 82315.638685: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=007
32914          <idle>-0     (-----) [004] .n.1 82315.638687: cpu_idle: state=4294967295 cpu_id=4
32915          <idle>-0     (-----) [004] d..2 82315.638691: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
32916<...>-13083 ( 8858) [004] .... 82315.638694: binder_transaction_received: transaction=1568688
32917          <idle>-0     (-----) [001] ...1 82315.638695: cpu_idle: state=4294967295 cpu_id=1
32918          <idle>-0     (-----) [007] d.h2 82315.638697: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
32919          <idle>-0     (-----) [001] d..1 82315.638698: cpu_idle: state=0 cpu_id=1
32920          <idle>-0     (-----) [007] dnh2 82315.638698: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=007
32921          <idle>-0     (-----) [007] .n.1 82315.638700: cpu_idle: state=4294967295 cpu_id=7
32922          <idle>-0     (-----) [007] d..2 82315.638703: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
32923<...>-13083 ( 8858) [004] d..1 82315.638704: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
32924          <idle>-0     (-----) [001] dnh2 82315.638717: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
32925          <idle>-0     (-----) [001] .n.1 82315.638720: cpu_idle: state=4294967295 cpu_id=1
32926<...>-13083 ( 8858) [004] d..2 82315.638721: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
32927          <idle>-0     (-----) [004] d..1 82315.638725: cpu_idle: state=0 cpu_id=4
32928           <...>-27550 (-----) [005] .... 82315.638725: binder_transaction: transaction=1568689 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
32929          <idle>-0     (-----) [001] d..2 82315.638726: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
32930           <...>-27550 (-----) [005] .... 82315.638727: binder_transaction_alloc_buf: transaction=1568689 data_size=80 offsets_size=0
32931           <...>-27550 (-----) [005] ...2 82315.638728: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32932           <...>-27550 (-----) [005] d..4 82315.638729: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32933           <...>-27550 (-----) [005] dn.5 82315.638738: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
32934           <...>-27550 (-----) [005] d..2 82315.638741: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32935<...>-13083 ( 8858) [005] .... 82315.638745: binder_transaction_received: transaction=1568689
32936   sfEventThread-8882  ( 8858) [001] d..2 82315.638748: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
32937<...>-13083 ( 8858) [005] .... 82315.638754: binder_transaction: transaction=1568690 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x8 code=0x0
32938          <idle>-0     (-----) [001] d..1 82315.638754: cpu_idle: state=0 cpu_id=1
32939<...>-13083 ( 8858) [005] .... 82315.638755: binder_transaction_alloc_buf: transaction=1568690 data_size=4 offsets_size=0
32940<...>-13083 ( 8858) [005] .... 82315.638756: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
32941<...>-13083 ( 8858) [005] d..2 82315.638768: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
32942           <...>-27550 (-----) [005] .... 82315.638771: binder_transaction_received: transaction=1568690
32943  kworker/u16:15-1311  ( 1311) [007] d..2 82315.638795: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
32944          <idle>-0     (-----) [007] d..1 82315.638798: cpu_idle: state=0 cpu_id=7
32945          <idle>-0     (-----) [001] d.s3 82315.638831: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=007
32946          <idle>-0     (-----) [001] ...1 82315.638841: cpu_idle: state=4294967295 cpu_id=1
32947          <idle>-0     (-----) [007] d.h2 82315.638842: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
32948          <idle>-0     (-----) [007] dnh2 82315.638843: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=007
32949          <idle>-0     (-----) [001] d..1 82315.638844: cpu_idle: state=0 cpu_id=1
32950          <idle>-0     (-----) [007] .n.1 82315.638845: cpu_idle: state=4294967295 cpu_id=7
32951          <idle>-0     (-----) [007] d..2 82315.638848: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
32952<...>-9006 ( 8943) [006] .... 82315.638850: binder_transaction: transaction=1568691 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
32953<...>-9006 ( 8943) [006] .... 82315.638852: binder_transaction_alloc_buf: transaction=1568691 data_size=684 offsets_size=32
32954<...>-9006 ( 8943) [006] ...2 82315.638856: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
32955<...>-9006 ( 8943) [006] d..4 82315.638857: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
32956<...>-9006 ( 8943) [006] d..5 82315.638867: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
32957          <idle>-0     (-----) [004] .n.1 82315.638872: cpu_idle: state=4294967295 cpu_id=4
32958<...>-9006 ( 8943) [006] d..2 82315.638872: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
32959          <idle>-0     (-----) [004] d..2 82315.638876: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32960<...>-13083 ( 8858) [004] .... 82315.638877: binder_transaction_received: transaction=1568691
32961           <...>-27550 (-----) [005] d..3 82315.638887: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=005
32962           <...>-27550 (-----) [005] d..4 82315.638897: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=007
32963<...>-13083 ( 8858) [004] d..1 82315.638900: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=005
32964  kworker/u16:15-1311  ( 1311) [007] d..2 82315.638901: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
32965<...>-13083 ( 8858) [004] dn.2 82315.638908: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=004
32966           <...>-27550 (-----) [005] .... 82315.638910: binder_transaction: transaction=1568692 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0xc
32967<...>-13083 ( 8858) [004] d..2 82315.638910: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=8879 next_prio=97
32968           <...>-27550 (-----) [005] .... 82315.638911: binder_transaction_alloc_buf: transaction=1568692 data_size=100 offsets_size=0
32969           <...>-27550 (-----) [005] ...2 82315.638912: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
32970           <...>-27550 (-----) [005] d..4 82315.638912: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
32971        DispSync-8879  ( 8858) [004] d..2 82315.638916: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32972<...>-13083 ( 8858) [004] d..1 82315.638917: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=004
32973           <...>-27550 (-----) [005] dn.5 82315.638920: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
32974<...>-13083 ( 8858) [004] dn.2 82315.638920: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=004
32975<...>-13083 ( 8858) [004] d..2 82315.638922: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=8879 next_prio=97
32976           <...>-27550 (-----) [005] d..2 82315.638923: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
32977        DispSync-8879  ( 8858) [004] d..2 82315.638927: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
32978<...>-8874 ( 8858) [005] .... 82315.638927: binder_transaction_received: transaction=1568692
32979<...>-13083 ( 8858) [004] d..1 82315.638928: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
32980<...>-9005 ( 8943) [006] .... 82315.638931: binder_transaction: transaction=1568693 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
32981  surfaceflinger-8858  ( 8858) [003] d..2 82315.638932: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
32982<...>-9005 ( 8943) [006] .... 82315.638933: binder_transaction_alloc_buf: transaction=1568693 data_size=80 offsets_size=0
32983<...>-9005 ( 8943) [006] d..4 82315.638935: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
32984<...>-13083 ( 8858) [004] d..1 82315.638939: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=004
32985          <idle>-0     (-----) [003] d..1 82315.638941: cpu_idle: state=0 cpu_id=3
32986<...>-13083 ( 8858) [004] dn.2 82315.638945: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=004
32987<...>-9005 ( 8943) [006] d..5 82315.638947: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
32988<...>-8874 ( 8858) [005] ...1 82315.638947: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
32989          <idle>-0     (-----) [003] dnh2 82315.638949: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
32990<...>-13083 ( 8858) [004] d..2 82315.638949: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=8879 next_prio=97
32991        DispSync-8879  ( 8858) [004] d..2 82315.638953: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
32992          <idle>-0     (-----) [003] .n.1 82315.638953: cpu_idle: state=4294967295 cpu_id=3
32993<...>-8874 ( 8858) [005] ...1 82315.638954: tracing_mark_write: E|8858
32994   Binder:8858_1-8871  ( 8858) [004] .... 82315.638955: binder_transaction_received: transaction=1568693
32995          <idle>-0     (-----) [003] d..2 82315.638958: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
32996<...>-8874 ( 8858) [005] ...1 82315.638961: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
32997   Binder:8858_1-8871  ( 8858) [004] d..1 82315.638962: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
32998<...>-8874 ( 8858) [005] ...1 82315.638962: tracing_mark_write: E|8858
32999           <...>-27570 (-----) [007] d..2 82315.638965: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
33000  surfaceflinger-8858  ( 8858) [003] d..2 82315.638972: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33001   Binder:8858_1-8871  ( 8858) [004] d..2 82315.638973: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
33002<...>-13083 ( 8858) [004] d..1 82315.638974: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=004
33003          <idle>-0     (-----) [001] dnh2 82315.638975: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
33004<...>-13083 ( 8858) [004] dn.2 82315.638977: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=004
33005          <idle>-0     (-----) [001] .n.1 82315.638978: cpu_idle: state=4294967295 cpu_id=1
33006          <idle>-0     (-----) [003] d..1 82315.638978: cpu_idle: state=0 cpu_id=3
33007<...>-8874 ( 8858) [005] .... 82315.638978: binder_transaction: transaction=1568694 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
33008<...>-13083 ( 8858) [004] d..2 82315.638978: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=DispSync next_pid=8879 next_prio=97
33009<...>-8874 ( 8858) [005] .... 82315.638980: binder_transaction_alloc_buf: transaction=1568694 data_size=136 offsets_size=16
33010          <idle>-0     (-----) [000] dnh2 82315.638982: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
33011        DispSync-8879  ( 8858) [004] d..2 82315.638982: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
33012<...>-8874 ( 8858) [005] ...2 82315.638983: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
33013<...>-13083 ( 8858) [004] d..1 82315.638983: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
33014          <idle>-0     (-----) [001] d..2 82315.638983: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
33015<...>-8874 ( 8858) [005] d..4 82315.638984: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=005
33016          <idle>-0     (-----) [000] .n.1 82315.638986: cpu_idle: state=4294967295 cpu_id=0
33017          <idle>-0     (-----) [000] d..2 82315.638993: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
33018<...>-13083 ( 8858) [004] .... 82315.638993: binder_transaction: transaction=1568695 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
33019<...>-13083 ( 8858) [004] .... 82315.638994: binder_transaction_alloc_buf: transaction=1568695 data_size=0 offsets_size=0
33020<...>-13083 ( 8858) [004] dn.2 82315.638995: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=006
33021          <idle>-0     (-----) [003] dnh2 82315.638996: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
33022<...>-8874 ( 8858) [005] d..5 82315.638997: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=004
33023          <idle>-0     (-----) [003] .n.1 82315.638999: cpu_idle: state=4294967295 cpu_id=3
33024<...>-8874 ( 8858) [005] d..2 82315.639002: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33025          <idle>-0     (-----) [003] d..2 82315.639004: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
33026<...>-13083 ( 8858) [004] dn.3 82315.639004: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=007
33027           <...>-27570 (-----) [007] d..2 82315.639008: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
33028           <...>-27550 (-----) [005] d..2 82315.639010: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33029<...>-9006 ( 8943) [007] .... 82315.639015: binder_transaction_received: transaction=1568695
33030          <idle>-0     (-----) [005] d..1 82315.639015: cpu_idle: state=0 cpu_id=5
33031<...>-13083 ( 8858) [004] .... 82315.639018: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
33032   sfEventThread-8882  ( 8858) [001] d..2 82315.639021: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
33033<...>-13083 ( 8858) [004] d..2 82315.639059: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33034<...>-9006 ( 8943) [007] d..2 82315.639062: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33035<...>-1127 ( 621) [001] .... 82315.639062: binder_transaction_received: transaction=1568694
33036          <idle>-0     (-----) [004] d..1 82315.639063: cpu_idle: state=0 cpu_id=4
33037<...>-581 ( 571) [000] d..2 82315.639097: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33038<...>-1127 ( 621) [001] ...1 82315.639103: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
33039          <idle>-0     (-----) [000] d..1 82315.639105: cpu_idle: state=0 cpu_id=0
33040<...>-9005 ( 8943) [006] .... 82315.639112: binder_transaction: transaction=1568696 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
33041<...>-9005 ( 8943) [006] .... 82315.639114: binder_transaction_alloc_buf: transaction=1568696 data_size=1292 offsets_size=64
33042<...>-9005 ( 8943) [006] ...2 82315.639120: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
33043<...>-9005 ( 8943) [006] d..4 82315.639122: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
33044<...>-9005 ( 8943) [006] dn.5 82315.639130: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
33045<...>-9005 ( 8943) [006] d..2 82315.639133: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
33046<...>-13083 ( 8858) [006] .... 82315.639136: binder_transaction_received: transaction=1568696
33047<...>-1127 ( 621) [001] ...1 82315.639145: tracing_mark_write: B|621|AllocBuffer
33048<...>-1127 ( 621) [001] ...1 82315.639154: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9400320
33049<...>-13083 ( 8858) [006] .... 82315.639175: binder_transaction: transaction=1568697 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
33050<...>-13083 ( 8858) [006] .... 82315.639176: binder_transaction_alloc_buf: transaction=1568697 data_size=0 offsets_size=0
33051<...>-13083 ( 8858) [006] .... 82315.639176: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
33052<...>-13083 ( 8858) [006] d..2 82315.639192: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
33053<...>-9005 ( 8943) [006] .... 82315.639196: binder_transaction_received: transaction=1568697
33054<...>-9005 ( 8943) [006] .... 82315.639237: binder_transaction: transaction=1568698 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
33055<...>-9005 ( 8943) [006] .... 82315.639238: binder_transaction_alloc_buf: transaction=1568698 data_size=76 offsets_size=0
33056<...>-9005 ( 8943) [006] ...2 82315.639239: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
33057<...>-9005 ( 8943) [006] d..4 82315.639240: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
33058<...>-9005 ( 8943) [006] dn.5 82315.639245: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
33059<...>-9005 ( 8943) [006] d..2 82315.639247: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
33060<...>-13083 ( 8858) [006] .... 82315.639250: binder_transaction_received: transaction=1568698
33061<...>-13083 ( 8858) [006] .... 82315.639259: binder_transaction: transaction=1568699 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
33062<...>-13083 ( 8858) [006] .... 82315.639259: binder_transaction_alloc_buf: transaction=1568699 data_size=0 offsets_size=0
33063<...>-13083 ( 8858) [006] .... 82315.639260: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
33064<...>-13083 ( 8858) [006] d..2 82315.639270: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
33065<...>-9005 ( 8943) [006] .... 82315.639273: binder_transaction_received: transaction=1568699
33066<...>-1127 ( 621) [001] ...1 82315.639282: tracing_mark_write: E|621
33067<...>-1127 ( 621) [001] ...1 82315.639285: tracing_mark_write: B|621|ION_IOC_MAP
33068<...>-1127 ( 621) [001] ...1 82315.639299: tracing_mark_write: E|621
33069<...>-1127 ( 621) [001] ...1 82315.639304: tracing_mark_write: E|621
33070<...>-1127 ( 621) [001] ...1 82315.639307: tracing_mark_write: B|621|AllocBuffer
33071<...>-1127 ( 621) [001] ...1 82315.639310: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
33072<...>-1127 ( 621) [001] ...1 82315.639322: tracing_mark_write: E|621
33073<...>-1127 ( 621) [001] ...1 82315.639325: tracing_mark_write: B|621|ION_IOC_MAP
33074<...>-1127 ( 621) [001] ...1 82315.639332: tracing_mark_write: E|621
33075<...>-1127 ( 621) [001] ...1 82315.639334: tracing_mark_write: E|621
33076<...>-9005 ( 8943) [006] .... 82315.639357: binder_transaction: transaction=1568700 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
33077<...>-9005 ( 8943) [006] .... 82315.639358: binder_transaction_alloc_buf: transaction=1568700 data_size=96 offsets_size=0
33078<...>-9005 ( 8943) [006] d..4 82315.639360: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
33079<...>-9005 ( 8943) [006] d..5 82315.639369: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
33080           <...>-27570 (-----) [007] d..2 82315.639373: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
33081<...>-9132 ( 9105) [007] .... 82315.639380: binder_transaction_received: transaction=1568700
33082<...>-9005 ( 8943) [006] d..3 82315.639399: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
33083<...>-9005 ( 8943) [006] d..4 82315.639404: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
33084<...>-1127 ( 621) [001] ...1 82315.639410: tracing_mark_write: E|621
33085<...>-9132 ( 9105) [007] d..3 82315.639419: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
33086<...>-1127 ( 621) [001] .... 82315.639420: binder_transaction: transaction=1568701 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
33087<...>-1127 ( 621) [001] .... 82315.639422: binder_transaction_alloc_buf: transaction=1568701 data_size=172 offsets_size=32
33088<...>-9132 ( 9105) [007] d..4 82315.639425: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
33089<...>-1127 ( 621) [001] d..2 82315.639431: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
33090<...>-9005 ( 8943) [006] d..3 82315.639437: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
33091<...>-9005 ( 8943) [006] d..4 82315.639443: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
33092<...>-9132 ( 9105) [007] d..2 82315.639444: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
33093<...>-1127 ( 621) [001] d..3 82315.639448: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=001
33094          <idle>-0     (-----) [004] .n.1 82315.639448: cpu_idle: state=4294967295 cpu_id=4
33095          <idle>-0     (-----) [004] d..2 82315.639451: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
33096<...>-1127 ( 621) [001] .... 82315.639477: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
33097<...>-8962 ( 8943) [007] d..2 82315.639479: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
33098<...>-8969 ( 8943) [004] d..2 82315.639481: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33099          <idle>-0     (-----) [004] d..1 82315.639485: cpu_idle: state=0 cpu_id=4
33100<...>-1127 ( 621) [001] ...1 82315.639498: tracing_mark_write: B|621|FreeBuffer
33101<...>-1127 ( 621) [001] ...1 82315.639509: tracing_mark_write: E|621
33102<...>-9105 ( 9105) [007] d..2 82315.639511: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
33103<...>-1127 ( 621) [001] ...1 82315.639512: tracing_mark_write: B|621|FreeBuffer
33104<...>-1127 ( 621) [001] ...1 82315.639514: tracing_mark_write: B|621|UnmapBuffer
33105<...>-8962 ( 8943) [007] d..3 82315.639519: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
33106<...>-9005 ( 8943) [006] .... 82315.639522: binder_transaction: transaction=1568702 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
33107<...>-9005 ( 8943) [006] .... 82315.639524: binder_transaction_alloc_buf: transaction=1568702 data_size=380 offsets_size=16
33108<...>-8962 ( 8943) [007] d..4 82315.639524: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
33109<...>-9005 ( 8943) [006] ...2 82315.639527: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
33110<...>-9005 ( 8943) [006] d..4 82315.639528: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
33111<...>-9005 ( 8943) [006] dn.5 82315.639532: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
33112<...>-9005 ( 8943) [006] d..2 82315.639535: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
33113<...>-8962 ( 8943) [007] d..2 82315.639536: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
33114<...>-13083 ( 8858) [006] .... 82315.639538: binder_transaction_received: transaction=1568702
33115<...>-1127 ( 621) [001] ...1 82315.639554: tracing_mark_write: E|621
33116<...>-13083 ( 8858) [006] .... 82315.639555: binder_transaction: transaction=1568703 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
33117<...>-13083 ( 8858) [006] .... 82315.639556: binder_transaction_alloc_buf: transaction=1568703 data_size=0 offsets_size=0
33118<...>-13083 ( 8858) [006] .... 82315.639557: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
33119<...>-1127 ( 621) [001] ...1 82315.639560: tracing_mark_write: E|621
33120   system_server-8943  ( 8943) [007] .... 82315.639564: binder_transaction: transaction=1568704 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
33121   system_server-8943  ( 8943) [007] .... 82315.639565: binder_transaction_alloc_buf: transaction=1568704 data_size=96 offsets_size=0
33122   system_server-8943  ( 8943) [007] d..4 82315.639566: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
33123<...>-13083 ( 8858) [006] d..2 82315.639570: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
33124   system_server-8943  ( 8943) [007] d..5 82315.639571: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
33125<...>-9005 ( 8943) [006] .... 82315.639573: binder_transaction_received: transaction=1568703
33126<...>-1127 ( 621) [001] d..2 82315.639583: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
33127<...>-8874 ( 8858) [001] .... 82315.639588: binder_transaction_received: transaction=1568701
33128   system_server-8943  ( 8943) [007] d..2 82315.639588: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
33129<...>-9132 ( 9105) [007] .... 82315.639591: binder_transaction_received: transaction=1568704
33130<...>-8874 ( 8858) [001] ...1 82315.639611: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
33131<...>-9132 ( 9105) [007] d..3 82315.639619: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
33132<...>-9132 ( 9105) [007] d..4 82315.639624: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
33133<...>-9132 ( 9105) [007] d..2 82315.639640: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
33134<...>-8874 ( 8858) [001] ...1 82315.639641: tracing_mark_write: E|8858
33135<...>-9105 ( 9105) [007] d..2 82315.639662: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33136<...>-8874 ( 8858) [001] ...1 82315.639665: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
33137<...>-8874 ( 8858) [001] ...1 82315.639669: tracing_mark_write: E|8858
33138<...>-8874 ( 8858) [001] ...1 82315.639678: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
33139<...>-8874 ( 8858) [001] ...1 82315.639682: tracing_mark_write: E|8858
33140<...>-8874 ( 8858) [001] ...1 82315.639686: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
33141<...>-8874 ( 8858) [001] ...1 82315.639689: tracing_mark_write: E|8858
33142<...>-9005 ( 8943) [006] .... 82315.639690: binder_transaction: transaction=1568705 dest_node=1568605 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x2
33143<...>-9005 ( 8943) [006] .... 82315.639691: binder_transaction_alloc_buf: transaction=1568705 data_size=1540 offsets_size=0
33144<...>-9005 ( 8943) [006] d..4 82315.639693: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=004
33145<...>-8874 ( 8858) [001] .... 82315.639700: binder_transaction: transaction=1568706 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
33146<...>-9005 ( 8943) [006] d..5 82315.639700: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=004
33147<...>-8874 ( 8858) [001] .... 82315.639703: binder_transaction_alloc_buf: transaction=1568706 data_size=136 offsets_size=16
33148          <idle>-0     (-----) [004] .n.1 82315.639704: cpu_idle: state=4294967295 cpu_id=4
33149<...>-8874 ( 8858) [001] ...2 82315.639706: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
33150<...>-8874 ( 8858) [001] d..4 82315.639708: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=001
33151          <idle>-0     (-----) [004] d..2 82315.639708: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
33152           <...>-27564 (-----) [004] .... 82315.639711: binder_transaction_received: transaction=1568705
33153<...>-8874 ( 8858) [001] dn.5 82315.639715: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=001
33154<...>-8874 ( 8858) [001] d..2 82315.639720: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
33155<...>-1127 ( 621) [001] .... 82315.639723: binder_transaction_received: transaction=1568706
33156<...>-1127 ( 621) [001] ...1 82315.639736: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
33157<...>-1127 ( 621) [001] ...1 82315.639750: tracing_mark_write: B|621|AllocBuffer
33158<...>-1127 ( 621) [001] ...1 82315.639755: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9400320
33159           <...>-27570 (-----) [007] d..1 82315.639809: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=004
33160           <...>-27564 (-----) [004] d..2 82315.639815: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
33161  surfaceflinger-8858  ( 8858) [003] ...1 82315.639817: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
33162           <...>-27570 (-----) [007] d..2 82315.639820: sched_blocked_reason: pid=27564 iowait=0 caller=do_page_fault+0x4e0/0x594
33163          <idle>-0     (-----) [004] d..1 82315.639820: cpu_idle: state=0 cpu_id=4
33164  surfaceflinger-8858  ( 8858) [003] ...1 82315.639821: tracing_mark_write: E|8858
33165           <...>-27570 (-----) [007] d..2 82315.639824: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=004
33166          <idle>-0     (-----) [004] .n.1 82315.639828: cpu_idle: state=4294967295 cpu_id=4
33167           <...>-27570 (-----) [007] d..2 82315.639832: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=D|K ==> next_comm=swapper/7 next_pid=0 next_prio=120
33168          <idle>-0     (-----) [004] d..2 82315.639833: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
33169           <...>-27564 (-----) [004] d..1 82315.639834: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=007
33170           <...>-27564 (-----) [004] d..2 82315.639838: sched_blocked_reason: pid=27570 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33171          <idle>-0     (-----) [007] dn.1 82315.639839: cpu_idle: state=0 cpu_id=7
33172          <idle>-0     (-----) [007] .n.1 82315.639840: cpu_idle: state=4294967295 cpu_id=7
33173           <...>-27564 (-----) [004] d..2 82315.639841: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=007
33174          <idle>-0     (-----) [007] d..2 82315.639844: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
33175           <...>-27564 (-----) [004] d..2 82315.639849: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
33176           <...>-27570 (-----) [007] d..1 82315.639851: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=004
33177          <idle>-0     (-----) [004] d..1 82315.639852: cpu_idle: state=0 cpu_id=4
33178  surfaceflinger-8858  ( 8858) [003] .... 82315.639853: binder_transaction: transaction=1568707 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
33179           <...>-27570 (-----) [007] d..2 82315.639853: sched_blocked_reason: pid=27564 iowait=0 caller=do_page_fault+0x4e0/0x594
33180<...>-1127 ( 621) [001] ...1 82315.639854: tracing_mark_write: E|621
33181  surfaceflinger-8858  ( 8858) [003] .... 82315.639855: binder_transaction_alloc_buf: transaction=1568707 data_size=540 offsets_size=96
33182<...>-1127 ( 621) [001] ...1 82315.639856: tracing_mark_write: B|621|ION_IOC_MAP
33183           <...>-27570 (-----) [007] d..2 82315.639857: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=004
33184          <idle>-0     (-----) [004] .n.1 82315.639861: cpu_idle: state=4294967295 cpu_id=4
33185          <idle>-0     (-----) [004] d..2 82315.639864: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
33186<...>-1127 ( 621) [001] ...1 82315.639866: tracing_mark_write: E|621
33187<...>-1127 ( 621) [001] ...1 82315.639869: tracing_mark_write: E|621
33188  surfaceflinger-8858  ( 8858) [003] ...2 82315.639870: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
33189<...>-1127 ( 621) [001] ...1 82315.639871: tracing_mark_write: B|621|AllocBuffer
33190<...>-1127 ( 621) [001] ...1 82315.639874: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
33191  surfaceflinger-8858  ( 8858) [003] d..4 82315.639878: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
33192<...>-1127 ( 621) [001] ...1 82315.639885: tracing_mark_write: E|621
33193<...>-1127 ( 621) [001] ...1 82315.639887: tracing_mark_write: B|621|ION_IOC_MAP
33194  surfaceflinger-8858  ( 8858) [003] d..5 82315.639890: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
33195          <idle>-0     (-----) [002] .n.1 82315.639895: cpu_idle: state=4294967295 cpu_id=2
33196<...>-1127 ( 621) [001] ...1 82315.639896: tracing_mark_write: E|621
33197<...>-1127 ( 621) [001] ...1 82315.639898: tracing_mark_write: E|621
33198          <idle>-0     (-----) [002] d..2 82315.639902: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
33199 [email protected]   (  619) [002] .... 82315.639908: binder_transaction_received: transaction=1568707
33200  surfaceflinger-8858  ( 8858) [003] d..2 82315.639909: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33201          <idle>-0     (-----) [003] d..1 82315.639919: cpu_idle: state=0 cpu_id=3
33202<...>-1127 ( 621) [001] ...1 82315.639933: tracing_mark_write: E|621
33203 [email protected]   (  619) [002] ...1 82315.639939: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
33204<...>-1127 ( 621) [001] .... 82315.639940: binder_transaction: transaction=1568708 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
33205<...>-1127 ( 621) [001] .... 82315.639942: binder_transaction_alloc_buf: transaction=1568708 data_size=172 offsets_size=32
33206<...>-9005 ( 8943) [006] d..3 82315.639945: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
33207<...>-1127 ( 621) [001] .... 82315.639948: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
33208<...>-9005 ( 8943) [006] d..4 82315.639953: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
33209           <...>-27564 (-----) [004] d..2 82315.639955: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33210           <...>-27570 (-----) [007] d..2 82315.639956: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
33211          <idle>-0     (-----) [004] d..1 82315.639959: cpu_idle: state=0 cpu_id=4
33212<...>-1127 ( 621) [001] ...1 82315.639967: tracing_mark_write: B|621|FreeBuffer
33213<...>-9005 ( 8943) [006] d..3 82315.639968: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
33214<...>-1127 ( 621) [001] ...1 82315.639974: tracing_mark_write: E|621
33215<...>-9005 ( 8943) [006] d..4 82315.639975: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
33216<...>-9039 ( 8943) [007] d..2 82315.639976: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33217<...>-1127 ( 621) [001] ...1 82315.639976: tracing_mark_write: B|621|FreeBuffer
33218<...>-1127 ( 621) [001] ...1 82315.639978: tracing_mark_write: B|621|UnmapBuffer
33219          <idle>-0     (-----) [004] .n.1 82315.639979: cpu_idle: state=4294967295 cpu_id=4
33220          <idle>-0     (-----) [004] d..2 82315.639983: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
33221<...>-1127 ( 621) [001] ...1 82315.639986: tracing_mark_write: E|621
33222<...>-1127 ( 621) [001] ...1 82315.639992: tracing_mark_write: E|621
33223<...>-1127 ( 621) [001] d..2 82315.640010: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
33224<...>-8874 ( 8858) [001] .... 82315.640015: binder_transaction_received: transaction=1568708
33225<...>-8969 ( 8943) [004] d..2 82315.640015: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33226          <idle>-0     (-----) [004] d..1 82315.640020: cpu_idle: state=0 cpu_id=4
33227<...>-8874 ( 8858) [001] ...1 82315.640027: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
33228 [email protected]   (  619) [002] ...1 82315.640035: tracing_mark_write: B|619|HWCSession::PresentDisplay::
33229<...>-8874 ( 8858) [001] ...1 82315.640044: tracing_mark_write: E|8858
33230<...>-8874 ( 8858) [001] ...1 82315.640064: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
33231<...>-8874 ( 8858) [001] ...1 82315.640067: tracing_mark_write: E|8858
33232<...>-8874 ( 8858) [001] ...1 82315.640074: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
33233<...>-8874 ( 8858) [001] ...1 82315.640077: tracing_mark_write: E|8858
33234<...>-8874 ( 8858) [001] ...1 82315.640081: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
33235<...>-8874 ( 8858) [001] ...1 82315.640083: tracing_mark_write: E|8858
33236<...>-9005 ( 8943) [006] d..3 82315.640090: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
33237<...>-8874 ( 8858) [001] .... 82315.640091: binder_transaction: transaction=1568709 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
33238<...>-8874 ( 8858) [001] .... 82315.640093: binder_transaction_alloc_buf: transaction=1568709 data_size=136 offsets_size=16
33239<...>-8874 ( 8858) [001] ...2 82315.640096: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
33240<...>-9005 ( 8943) [006] d..4 82315.640097: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
33241<...>-8874 ( 8858) [001] d..4 82315.640097: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=001
33242          <idle>-0     (-----) [004] .n.1 82315.640102: cpu_idle: state=4294967295 cpu_id=4
33243<...>-8874 ( 8858) [001] dn.5 82315.640105: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=001
33244          <idle>-0     (-----) [004] d..2 82315.640106: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
33245<...>-8874 ( 8858) [001] d..2 82315.640110: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
33246<...>-1127 ( 621) [001] .... 82315.640113: binder_transaction_received: transaction=1568709
33247<...>-8969 ( 8943) [004] d..2 82315.640120: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
33248          <idle>-0     (-----) [004] d..1 82315.640123: cpu_idle: state=0 cpu_id=4
33249<...>-1127 ( 621) [001] ...1 82315.640125: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
33250<...>-1127 ( 621) [001] ...1 82315.640137: tracing_mark_write: B|621|AllocBuffer
33251<...>-1127 ( 621) [001] ...1 82315.640141: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9400320
33252<...>-9005 ( 8943) [006] .... 82315.640142: binder_transaction: transaction=1568710 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
33253<...>-9005 ( 8943) [006] .... 82315.640143: binder_transaction_alloc_buf: transaction=1568710 data_size=96 offsets_size=0
33254<...>-9005 ( 8943) [006] d..4 82315.640145: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
33255 [email protected]   (  619) [002] ...1 82315.640149: tracing_mark_write: B|619|HWDeviceDRM::Commit::
33256<...>-9005 ( 8943) [006] d..5 82315.640152: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
33257           <...>-27570 (-----) [007] d..2 82315.640156: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
33258 [email protected]   (  619) [002] ...1 82315.640157: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
33259<...>-9132 ( 9105) [007] .... 82315.640163: binder_transaction_received: transaction=1568710
33260<...>-9005 ( 8943) [006] d..3 82315.640184: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
33261<...>-9005 ( 8943) [006] d..4 82315.640190: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
33262<...>-9132 ( 9105) [007] d..3 82315.640198: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
33263<...>-9132 ( 9105) [007] d..4 82315.640204: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
33264<...>-9132 ( 9105) [007] d..2 82315.640221: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
33265<...>-8962 ( 8943) [007] d..3 82315.640247: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
33266<...>-8962 ( 8943) [007] d..4 82315.640252: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
33267<...>-8962 ( 8943) [007] d..2 82315.640266: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
33268<...>-9005 ( 8943) [006] .... 82315.640284: binder_transaction: transaction=1568711 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
33269<...>-9005 ( 8943) [006] .... 82315.640286: binder_transaction_alloc_buf: transaction=1568711 data_size=380 offsets_size=16
33270<...>-9005 ( 8943) [006] ...2 82315.640289: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
33271<...>-9005 ( 8943) [006] d..4 82315.640290: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
33272   system_server-8943  ( 8943) [007] .... 82315.640292: binder_transaction: transaction=1568712 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
33273   system_server-8943  ( 8943) [007] .... 82315.640293: binder_transaction_alloc_buf: transaction=1568712 data_size=96 offsets_size=0
33274   system_server-8943  ( 8943) [007] d..4 82315.640294: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
33275<...>-9005 ( 8943) [006] dn.5 82315.640295: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
33276<...>-9005 ( 8943) [006] d..2 82315.640298: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
33277   system_server-8943  ( 8943) [007] d..5 82315.640299: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
33278<...>-13083 ( 8858) [006] .... 82315.640301: binder_transaction_received: transaction=1568711
33279   system_server-8943  ( 8943) [007] d..2 82315.640316: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
33280          <idle>-0     (-----) [004] ...1 82315.640317: cpu_idle: state=4294967295 cpu_id=4
33281          <idle>-0     (-----) [004] d..1 82315.640318: cpu_idle: state=0 cpu_id=4
33282<...>-9132 ( 9105) [007] .... 82315.640319: binder_transaction_received: transaction=1568712
33283<...>-13083 ( 8858) [006] .... 82315.640321: binder_transaction: transaction=1568713 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
33284<...>-13083 ( 8858) [006] .... 82315.640322: binder_transaction_alloc_buf: transaction=1568713 data_size=0 offsets_size=0
33285<...>-13083 ( 8858) [006] .... 82315.640323: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
33286<...>-13083 ( 8858) [006] d..2 82315.640335: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
33287<...>-9005 ( 8943) [006] .... 82315.640338: binder_transaction_received: transaction=1568713
33288<...>-9132 ( 9105) [007] d..2 82315.640359: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
33289<...>-9105 ( 9105) [007] d..2 82315.640395: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33290           <...>-27570 (-----) [007] d..2 82315.640428: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=001
33291           <...>-27570 (-----) [007] d..3 82315.640445: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=004
33292          <idle>-0     (-----) [004] .n.1 82315.640450: cpu_idle: state=4294967295 cpu_id=4
33293          <idle>-0     (-----) [004] d..2 82315.640467: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kswapd0 next_pid=142 next_prio=120
33294 [email protected]   (  619) [002] d..2 82315.640570: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=004
33295<...>-9005 ( 8943) [006] d..3 82315.640589: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
33296          <idle>-0     (-----) [005] dnh2 82315.640596: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
33297          <idle>-0     (-----) [005] .n.1 82315.640598: cpu_idle: state=4294967295 cpu_id=5
33298<...>-9005 ( 8943) [006] d..4 82315.640598: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
33299          <idle>-0     (-----) [005] d..2 82315.640602: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
33300           <...>-27570 (-----) [007] d..2 82315.640606: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
33301<...>-9039 ( 8943) [007] d..2 82315.640624: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33302<...>-9005 ( 8943) [006] d..1 82315.640626: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
33303<...>-9005 ( 8943) [006] d..2 82315.640635: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
33304<...>-9005 ( 8943) [006] d..2 82315.640659: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33305 [email protected]   (  619) [002] ...1 82315.640660: tracing_mark_write: E|619
33306 [email protected]   (  619) [002] ...1 82315.640663: tracing_mark_write: E|619
33307          <idle>-0     (-----) [006] d..1 82315.640669: cpu_idle: state=0 cpu_id=6
33308 [email protected]   (  619) [002] ...1 82315.640709: tracing_mark_write: E|619
33309 [email protected]   (  619) [002] ...1 82315.640744: tracing_mark_write: E|619
33310 [email protected]   (  619) [002] .... 82315.640754: binder_transaction: transaction=1568714 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
33311 [email protected]   (  619) [002] .... 82315.640756: binder_transaction_alloc_buf: transaction=1568714 data_size=576 offsets_size=112
33312 [email protected]   (  619) [002] d..2 82315.640768: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
33313 [email protected]   (  619) [002] d..3 82315.640779: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
33314 [email protected]   (  619) [002] .... 82315.640783: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
33315          <idle>-0     (-----) [003] .n.1 82315.640786: cpu_idle: state=4294967295 cpu_id=3
33316          <idle>-0     (-----) [003] d..2 82315.640792: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
33317  surfaceflinger-8858  ( 8858) [003] .... 82315.640796: binder_transaction_received: transaction=1568714
33318 [email protected]   (  619) [002] d..2 82315.640844: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33319          <idle>-0     (-----) [002] d..1 82315.640859: cpu_idle: state=0 cpu_id=2
33320           <...>-27570 (-----) [007] d..2 82315.641102: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
33321          <idle>-0     (-----) [007] d..1 82315.641117: cpu_idle: state=0 cpu_id=7
33322 crtc_commit:111-321   (  321) [005] d..2 82315.641193: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=android.display next_pid=8969 next_prio=117
33323  surfaceflinger-8858  ( 8858) [003] d..2 82315.641198: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
33324          <idle>-0     (-----) [003] d..1 82315.641208: cpu_idle: state=0 cpu_id=3
33325          <idle>-0     (-----) [007] ...1 82315.641314: cpu_idle: state=4294967295 cpu_id=7
33326          <idle>-0     (-----) [007] d..1 82315.641316: cpu_idle: state=0 cpu_id=7
33327<...>-8969 ( 8943) [005] d..2 82315.641336: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33328          <idle>-0     (-----) [005] d..1 82315.641342: cpu_idle: state=0 cpu_id=5
33329<...>-1127 ( 621) [001] d..1 82315.641628: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=007
33330          <idle>-0     (-----) [007] d.h2 82315.641648: sched_blocked_reason: pid=27570 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33331          <idle>-0     (-----) [007] dnh2 82315.641650: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=007
33332          <idle>-0     (-----) [007] .n.1 82315.641652: cpu_idle: state=4294967295 cpu_id=7
33333          <idle>-0     (-----) [007] d..2 82315.641656: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
33334<...>-1127 ( 621) [001] ...1 82315.641666: tracing_mark_write: E|621
33335<...>-1127 ( 621) [001] ...1 82315.641670: tracing_mark_write: B|621|ION_IOC_MAP
33336<...>-1127 ( 621) [001] ...1 82315.641690: tracing_mark_write: E|621
33337<...>-1127 ( 621) [001] ...1 82315.641697: tracing_mark_write: E|621
33338<...>-1127 ( 621) [001] ...1 82315.641701: tracing_mark_write: B|621|AllocBuffer
33339<...>-1127 ( 621) [001] ...1 82315.641710: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
33340<...>-1127 ( 621) [001] d..2 82315.641728: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
33341           <...>-27570 (-----) [007] d..1 82315.641749: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=001
33342<...>-8874 ( 8858) [001] d..2 82315.641751: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33343          <idle>-0     (-----) [001] d.h2 82315.641769: sched_blocked_reason: pid=1127 iowait=0 caller=__ion_alloc+0x17c/0x10f8
33344          <idle>-0     (-----) [001] dnh2 82315.641772: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=001
33345          <idle>-0     (-----) [001] d..2 82315.641783: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
33346<...>-1127 ( 621) [001] ...1 82315.641800: tracing_mark_write: E|621
33347<...>-1127 ( 621) [001] ...1 82315.641803: tracing_mark_write: B|621|ION_IOC_MAP
33348<...>-1127 ( 621) [001] ...1 82315.641812: tracing_mark_write: E|621
33349<...>-1127 ( 621) [001] ...1 82315.641814: tracing_mark_write: E|621
33350<...>-1127 ( 621) [001] ...1 82315.641893: tracing_mark_write: E|621
33351<...>-1127 ( 621) [001] .... 82315.641909: binder_transaction: transaction=1568715 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
33352<...>-1127 ( 621) [001] .... 82315.641914: binder_transaction_alloc_buf: transaction=1568715 data_size=172 offsets_size=32
33353<...>-1127 ( 621) [001] d..2 82315.641923: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=001
33354<...>-1127 ( 621) [001] d..3 82315.641931: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=001
33355           <...>-27570 (-----) [007] d..2 82315.641934: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
33356<...>-1127 ( 621) [001] .... 82315.641935: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
33357          <idle>-0     (-----) [000] dnh2 82315.641953: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
33358          <idle>-0     (-----) [000] .n.1 82315.641958: cpu_idle: state=4294967295 cpu_id=0
33359<...>-1127 ( 621) [001] ...1 82315.641961: tracing_mark_write: B|621|FreeBuffer
33360          <idle>-0     (-----) [000] d..2 82315.641967: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
33361<...>-1127 ( 621) [001] ...1 82315.641972: tracing_mark_write: E|621
33362<...>-1127 ( 621) [001] ...1 82315.641975: tracing_mark_write: B|621|FreeBuffer
33363<...>-1127 ( 621) [001] ...1 82315.641977: tracing_mark_write: B|621|UnmapBuffer
33364<...>-1127 ( 621) [001] ...1 82315.641988: tracing_mark_write: E|621
33365<...>-1127 ( 621) [001] ...1 82315.641999: tracing_mark_write: E|621
33366<...>-1127 ( 621) [001] d..2 82315.642039: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
33367<...>-581 ( 571) [000] d..2 82315.642043: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33368<...>-8874 ( 8858) [001] .... 82315.642044: binder_transaction_received: transaction=1568715
33369          <idle>-0     (-----) [000] d..1 82315.642049: cpu_idle: state=0 cpu_id=0
33370<...>-8874 ( 8858) [001] ...1 82315.642077: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
33371<...>-8874 ( 8858) [001] ...1 82315.642108: tracing_mark_write: E|8858
33372<...>-8874 ( 8858) [001] ...1 82315.642146: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
33373<...>-8874 ( 8858) [001] ...1 82315.642150: tracing_mark_write: E|8858
33374<...>-8874 ( 8858) [001] .... 82315.642195: binder_transaction: transaction=1568716 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
33375<...>-8874 ( 8858) [001] .... 82315.642198: binder_transaction_alloc_buf: transaction=1568716 data_size=0 offsets_size=0
33376<...>-8874 ( 8858) [001] d..2 82315.642200: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
33377           <...>-27570 (-----) [007] d..2 82315.642204: sched_waking: comm=kauditd pid=583 prio=120 target_cpu=000
33378<...>-8874 ( 8858) [001] .... 82315.642213: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
33379          <idle>-0     (-----) [005] dnh2 82315.642217: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
33380          <idle>-0     (-----) [005] .n.1 82315.642219: cpu_idle: state=4294967295 cpu_id=5
33381           <...>-27570 (-----) [007] d..3 82315.642222: sched_wakeup: comm=kauditd pid=583 prio=120 target_cpu=006
33382          <idle>-0     (-----) [005] d..2 82315.642223: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33383          <idle>-0     (-----) [006] .n.1 82315.642227: cpu_idle: state=4294967295 cpu_id=6
33384           <...>-27550 (-----) [005] .... 82315.642228: binder_transaction_received: transaction=1568716
33385          <idle>-0     (-----) [006] d..2 82315.642250: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kauditd next_pid=583 next_prio=120
33386<...>-8874 ( 8858) [001] d..2 82315.642257: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33387<...>-583 ( 583) [006] d..2 82315.642261: sched_waking: comm=logd.auditd pid=590 prio=130 target_cpu=000
33388           <...>-27570 (-----) [007] d..2 82315.642263: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
33389          <idle>-0     (-----) [001] d..1 82315.642270: cpu_idle: state=0 cpu_id=1
33390          <idle>-0     (-----) [000] dnh2 82315.642276: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
33391<...>-583 ( 583) [006] d..2 82315.642278: sched_switch: prev_comm=kauditd prev_pid=583 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33392          <idle>-0     (-----) [006] d..1 82315.642280: cpu_idle: state=0 cpu_id=6
33393          <idle>-0     (-----) [000] .n.1 82315.642280: cpu_idle: state=4294967295 cpu_id=0
33394          <idle>-0     (-----) [001] dnh2 82315.642281: sched_wakeup: comm=logd.auditd pid=590 prio=130 target_cpu=001
33395          <idle>-0     (-----) [001] .n.1 82315.642285: cpu_idle: state=4294967295 cpu_id=1
33396          <idle>-0     (-----) [000] d..2 82315.642286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
33397          <idle>-0     (-----) [001] d..2 82315.642292: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.auditd next_pid=590 next_prio=130
33398           <...>-27570 (-----) [007] d..2 82315.642307: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
33399<...>-581 ( 571) [000] d..2 82315.642318: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33400          <idle>-0     (-----) [000] d..1 82315.642324: cpu_idle: state=0 cpu_id=0
33401           <...>-27550 (-----) [005] .... 82315.642327: binder_transaction: transaction=1568717 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
33402           <...>-27550 (-----) [005] .... 82315.642329: binder_transaction_alloc_buf: transaction=1568717 data_size=96 offsets_size=0
33403           <...>-27550 (-----) [005] ...2 82315.642331: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
33404          <idle>-0     (-----) [000] dnh2 82315.642332: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
33405           <...>-27550 (-----) [005] d..4 82315.642333: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
33406          <idle>-0     (-----) [000] .n.1 82315.642335: cpu_idle: state=4294967295 cpu_id=0
33407          <idle>-0     (-----) [000] d..2 82315.642341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
33408           <...>-27550 (-----) [005] d..5 82315.642341: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
33409          <idle>-0     (-----) [006] .n.1 82315.642345: cpu_idle: state=4294967295 cpu_id=6
33410          <idle>-0     (-----) [006] d..2 82315.642348: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
33411           <...>-27550 (-----) [005] d..2 82315.642349: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33412<...>-9062 ( 8943) [006] .... 82315.642351: binder_transaction_received: transaction=1568717
33413          <idle>-0     (-----) [005] d..1 82315.642354: cpu_idle: state=0 cpu_id=5
33414<...>-581 ( 571) [000] d..2 82315.642373: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33415          <idle>-0     (-----) [000] d..1 82315.642379: cpu_idle: state=0 cpu_id=0
33416<...>-590 ( 571) [001] d..1 82315.642433: sched_waking: comm=logd.daemon pid=579 prio=130 target_cpu=002
33417<...>-590 ( 571) [001] d..2 82315.642453: sched_wakeup: comm=logd.daemon pid=579 prio=130 target_cpu=000
33418          <idle>-0     (-----) [000] .n.1 82315.642458: cpu_idle: state=4294967295 cpu_id=0
33419          <idle>-0     (-----) [000] d..2 82315.642465: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.daemon next_pid=579 next_prio=130
33420<...>-590 ( 571) [001] d..2 82315.642470: sched_switch: prev_comm=logd.auditd prev_pid=590 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33421          <idle>-0     (-----) [001] d..1 82315.642475: cpu_idle: state=0 cpu_id=1
33422          <idle>-0     (-----) [003] ...1 82315.642499: cpu_idle: state=4294967295 cpu_id=3
33423          <idle>-0     (-----) [003] d..1 82315.642502: cpu_idle: state=0 cpu_id=3
33424<...>-9062 ( 8943) [006] .... 82315.642556: binder_transaction: transaction=1568718 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
33425<...>-9062 ( 8943) [006] .... 82315.642558: binder_transaction_alloc_buf: transaction=1568718 data_size=340 offsets_size=0
33426<...>-9062 ( 8943) [006] d..2 82315.642560: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
33427<...>-9062 ( 8943) [006] d..3 82315.642568: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33428<...>-9062 ( 8943) [006] .... 82315.642569: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
33429<...>-9062 ( 8943) [006] d..2 82315.642582: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33430           <...>-27550 (-----) [006] .... 82315.642587: binder_transaction_received: transaction=1568718
33431           <...>-27570 (-----) [007] d..2 82315.642613: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
33432          <idle>-0     (-----) [001] dnh2 82315.642637: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
33433          <idle>-0     (-----) [001] .n.1 82315.642644: cpu_idle: state=4294967295 cpu_id=1
33434          <idle>-0     (-----) [001] d..2 82315.642651: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
33435<...>-581 ( 571) [001] d..2 82315.642689: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33436          <idle>-0     (-----) [001] d..1 82315.642693: cpu_idle: state=0 cpu_id=1
33437           <...>-27570 (-----) [007] d..2 82315.642865: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
33438          <idle>-0     (-----) [001] dnh2 82315.642879: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
33439          <idle>-0     (-----) [001] .n.1 82315.642883: cpu_idle: state=4294967295 cpu_id=1
33440          <idle>-0     (-----) [001] d..2 82315.642887: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
33441<...>-581 ( 571) [001] d..2 82315.642934: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33442          <idle>-0     (-----) [001] d..1 82315.642938: cpu_idle: state=0 cpu_id=1
33443           <...>-27570 (-----) [007] d..2 82315.642941: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
33444          <idle>-0     (-----) [001] dnh2 82315.642958: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
33445          <idle>-0     (-----) [001] .n.1 82315.642964: cpu_idle: state=4294967295 cpu_id=1
33446          <idle>-0     (-----) [001] d..2 82315.642971: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
33447<...>-581 ( 571) [001] d..2 82315.643005: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33448          <idle>-0     (-----) [001] d..1 82315.643009: cpu_idle: state=0 cpu_id=1
33449           <...>-27550 (-----) [006] .... 82315.643013: binder_transaction: transaction=1568719 dest_node=1568565 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
33450           <...>-27550 (-----) [006] .... 82315.643016: binder_transaction_alloc_buf: transaction=1568719 data_size=80 offsets_size=0
33451           <...>-27550 (-----) [006] d..4 82315.643018: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
33452          <idle>-0     (-----) [001] dnh2 82315.643038: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
33453          <idle>-0     (-----) [001] .n.1 82315.643042: cpu_idle: state=4294967295 cpu_id=1
33454          <idle>-0     (-----) [001] d..2 82315.643049: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
33455<...>-8874 ( 8858) [001] .... 82315.643053: binder_transaction_received: transaction=1568719
33456<...>-8874 ( 8858) [001] d..1 82315.643078: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
33457<...>-8874 ( 8858) [001] d..2 82315.643099: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
33458          <idle>-0     (-----) [002] .n.1 82315.643105: cpu_idle: state=4294967295 cpu_id=2
33459          <idle>-0     (-----) [002] d..2 82315.643113: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
33460<...>-8874 ( 8858) [001] d..2 82315.643120: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33461          <idle>-0     (-----) [001] d..1 82315.643125: cpu_idle: state=0 cpu_id=1
33462<...>-579 ( 571) [000] d..1 82315.643141: sched_waking: comm=logd.auditd pid=590 prio=130 target_cpu=001
33463<...>-579 ( 571) [000] d..2 82315.643158: sched_wakeup: comm=logd.auditd pid=590 prio=130 target_cpu=001
33464          <idle>-0     (-----) [001] .n.1 82315.643163: cpu_idle: state=4294967295 cpu_id=1
33465          <idle>-0     (-----) [001] d..2 82315.643168: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.auditd next_pid=590 next_prio=130
33466<...>-579 ( 571) [000] d..2 82315.643174: sched_switch: prev_comm=logd.daemon prev_pid=579 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33467  appEventThread-8881  ( 8858) [002] d..2 82315.643179: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33468          <idle>-0     (-----) [000] d..1 82315.643183: cpu_idle: state=0 cpu_id=0
33469          <idle>-0     (-----) [002] d..1 82315.643190: cpu_idle: state=0 cpu_id=2
33470<...>-590 ( 571) [001] d..2 82315.643301: sched_switch: prev_comm=logd.auditd prev_pid=590 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33471          <idle>-0     (-----) [001] d..1 82315.643312: cpu_idle: state=0 cpu_id=1
33472           <...>-27570 (-----) [007] d..1 82315.643534: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33473           <...>-27550 (-----) [006] d..2 82315.643534: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
33474           <...>-27570 (-----) [007] d..2 82315.643540: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
33475           <...>-27570 (-----) [007] d..2 82315.643544: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33476          <idle>-0     (-----) [006] d..2 82315.643547: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33477           <...>-27570 (-----) [007] d..1 82315.643591: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33478           <...>-27550 (-----) [006] d..2 82315.643596: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
33479           <...>-27570 (-----) [007] d..2 82315.643599: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
33480           <...>-27570 (-----) [007] d..2 82315.643603: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33481          <idle>-0     (-----) [006] d..2 82315.643605: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33482<...>-142 ( 142) [004] d..2 82315.643666: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
33483<...>-142 ( 142) [004] dn.3 82315.643675: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
33484<...>-142 ( 142) [004] d..2 82315.643680: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
33485     kworker/4:1-25432 (25432) [004] d..3 82315.643686: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
33486     kworker/4:1-25432 (25432) [004] d..2 82315.643699: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
33487          <idle>-0     (-----) [002] dnh2 82315.643702: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
33488          <idle>-0     (-----) [002] .n.1 82315.643706: cpu_idle: state=4294967295 cpu_id=2
33489          <idle>-0     (-----) [002] d..2 82315.643712: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
33490           <...>-27570 (-----) [007] d..1 82315.643864: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33491           <...>-27550 (-----) [006] d..2 82315.643869: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
33492           <...>-27570 (-----) [007] d..2 82315.643874: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
33493          <idle>-0     (-----) [006] dn.1 82315.643875: cpu_idle: state=0 cpu_id=6
33494          <idle>-0     (-----) [006] .n.1 82315.643877: cpu_idle: state=4294967295 cpu_id=6
33495           <...>-27570 (-----) [007] d..2 82315.643878: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33496          <idle>-0     (-----) [006] d..2 82315.643881: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33497           <...>-27550 (-----) [006] d..1 82315.643886: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=007
33498           <...>-27570 (-----) [007] d..2 82315.643891: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=D|K ==> next_comm=swapper/7 next_pid=0 next_prio=120
33499           <...>-27550 (-----) [006] d..2 82315.643896: sched_blocked_reason: pid=27570 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33500           <...>-27550 (-----) [006] d..2 82315.643900: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=007
33501          <idle>-0     (-----) [007] d..2 82315.643903: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
33502           <...>-27570 (-----) [007] d..1 82315.643908: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33503           <...>-27550 (-----) [006] d..2 82315.643909: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
33504          <idle>-0     (-----) [006] d..1 82315.643911: cpu_idle: state=0 cpu_id=6
33505           <...>-27570 (-----) [007] d..2 82315.643911: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
33506           <...>-27570 (-----) [007] d..2 82315.643915: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33507          <idle>-0     (-----) [006] .n.1 82315.643919: cpu_idle: state=4294967295 cpu_id=6
33508           <...>-27570 (-----) [007] d..2 82315.643921: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=D|K ==> next_comm=swapper/7 next_pid=0 next_prio=120
33509          <idle>-0     (-----) [006] d..2 82315.643922: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33510           <...>-27550 (-----) [006] d..1 82315.643923: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=007
33511          <idle>-0     (-----) [007] d..1 82315.643924: cpu_idle: state=0 cpu_id=7
33512           <...>-27550 (-----) [006] d..2 82315.643926: sched_blocked_reason: pid=27570 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33513           <...>-27550 (-----) [006] d..2 82315.643929: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=007
33514          <idle>-0     (-----) [007] .n.1 82315.643934: cpu_idle: state=4294967295 cpu_id=7
33515          <idle>-0     (-----) [007] d..2 82315.643937: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
33516           <...>-27550 (-----) [006] d..1 82315.643941: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=007
33517           <...>-27570 (-----) [007] d..2 82315.643943: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=D|K ==> next_comm=swapper/7 next_pid=0 next_prio=120
33518          <idle>-0     (-----) [007] d..1 82315.643945: cpu_idle: state=0 cpu_id=7
33519           <...>-27550 (-----) [006] d..2 82315.643946: sched_blocked_reason: pid=27570 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33520           <...>-27550 (-----) [006] d..2 82315.643949: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=007
33521          <idle>-0     (-----) [007] .n.1 82315.643953: cpu_idle: state=4294967295 cpu_id=7
33522          <idle>-0     (-----) [007] d..2 82315.643955: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
33523<...>-821 ( 821) [002] d..2 82315.643955: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33524          <idle>-0     (-----) [002] d..1 82315.643964: cpu_idle: state=0 cpu_id=2
33525           <...>-27570 (-----) [007] d..1 82315.644007: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33526           <...>-27550 (-----) [006] d..2 82315.644013: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
33527           <...>-27570 (-----) [007] d..2 82315.644016: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
33528          <idle>-0     (-----) [006] dn.1 82315.644017: cpu_idle: state=0 cpu_id=6
33529          <idle>-0     (-----) [006] .n.1 82315.644018: cpu_idle: state=4294967295 cpu_id=6
33530           <...>-27570 (-----) [007] d..2 82315.644019: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33531          <idle>-0     (-----) [006] d..2 82315.644022: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33532           <...>-27550 (-----) [006] d..2 82315.644063: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
33533          <idle>-0     (-----) [006] d..1 82315.644067: cpu_idle: state=0 cpu_id=6
33534          <idle>-0     (-----) [006] ...1 82315.644258: cpu_idle: state=4294967295 cpu_id=6
33535          <idle>-0     (-----) [006] d..1 82315.644260: cpu_idle: state=0 cpu_id=6
33536           <...>-27570 (-----) [007] d..1 82315.644301: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33537           <...>-27570 (-----) [007] d..2 82315.644305: sched_blocked_reason: pid=27550 iowait=0 caller=do_page_fault+0x4e0/0x594
33538           <...>-27570 (-----) [007] d..2 82315.644308: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33539          <idle>-0     (-----) [006] .n.1 82315.644312: cpu_idle: state=4294967295 cpu_id=6
33540          <idle>-0     (-----) [006] d..2 82315.644316: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33541           <...>-27550 (-----) [006] .... 82315.644368: binder_transaction: transaction=1568720 dest_node=396347 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x13
33542           <...>-27550 (-----) [006] .... 82315.644370: binder_transaction_alloc_buf: transaction=1568720 data_size=108 offsets_size=8
33543           <...>-27570 (-----) [007] ...1 82315.644388: tracing_mark_write: B|27550|HIDL::IServiceManager::getTransport::client
33544           <...>-27570 (-----) [007] ...1 82315.644391: tracing_mark_write: E|27550
33545           <...>-27570 (-----) [007] .... 82315.644422: binder_transaction: transaction=1568724 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x3
33546           <...>-27570 (-----) [007] .... 82315.644424: binder_transaction_alloc_buf: transaction=1568724 data_size=204 offsets_size=32
33547           <...>-27570 (-----) [007] ...2 82315.644428: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
33548           <...>-27570 (-----) [007] d..4 82315.644429: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=001
33549           <...>-27570 (-----) [007] d..2 82315.644450: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
33550          <idle>-0     (-----) [000] dnh2 82315.644451: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=000
33551          <idle>-0     (-----) [007] d..1 82315.644454: cpu_idle: state=0 cpu_id=7
33552          <idle>-0     (-----) [000] .n.1 82315.644455: cpu_idle: state=4294967295 cpu_id=0
33553          <idle>-0     (-----) [000] d..2 82315.644463: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=586 next_prio=110
33554<...>-586 ( 586) [000] .... 82315.644473: binder_transaction_received: transaction=1568724
33555           <...>-27550 (-----) [006] ...2 82315.644568: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
33556           <...>-27550 (-----) [006] d..4 82315.644569: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
33557           <...>-27550 (-----) [006] dn.5 82315.644574: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
33558           <...>-27550 (-----) [006] d..2 82315.644578: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
33559<...>-9062 ( 8943) [006] .... 82315.644587: binder_transaction_received: transaction=1568720
33560<...>-9062 ( 8943) [006] .... 82315.644809: binder_transaction: transaction=1568725 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
33561<...>-9062 ( 8943) [006] .... 82315.644811: binder_transaction_alloc_buf: transaction=1568725 data_size=4 offsets_size=0
33562<...>-9062 ( 8943) [006] .... 82315.644813: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
33563<...>-9062 ( 8943) [006] d..2 82315.644830: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33564           <...>-27550 (-----) [006] .... 82315.644836: binder_transaction_received: transaction=1568725
33565           <...>-27550 (-----) [006] .... 82315.644870: binder_transaction: transaction=1568726 dest_node=396347 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x2
33566           <...>-27550 (-----) [006] .... 82315.644871: binder_transaction_alloc_buf: transaction=1568726 data_size=84 offsets_size=0
33567           <...>-27550 (-----) [006] ...2 82315.644872: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
33568           <...>-27550 (-----) [006] d..4 82315.644873: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
33569           <...>-27550 (-----) [006] dn.5 82315.644877: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
33570           <...>-27550 (-----) [006] d..2 82315.644880: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
33571<...>-9062 ( 8943) [006] .... 82315.644883: binder_transaction_received: transaction=1568726
33572<...>-9062 ( 8943) [006] .... 82315.644938: binder_transaction: transaction=1568727 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
33573<...>-9062 ( 8943) [006] .... 82315.644939: binder_transaction_alloc_buf: transaction=1568727 data_size=28 offsets_size=0
33574<...>-9062 ( 8943) [006] .... 82315.644940: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
33575<...>-9062 ( 8943) [006] d..2 82315.644954: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33576           <...>-27550 (-----) [006] .... 82315.644959: binder_transaction_received: transaction=1568727
33577           <...>-27550 (-----) [006] .... 82315.645006: binder_transaction: transaction=1568728 dest_node=396347 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
33578           <...>-27550 (-----) [006] .... 82315.645007: binder_transaction_alloc_buf: transaction=1568728 data_size=88 offsets_size=0
33579           <...>-27550 (-----) [006] ...2 82315.645008: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
33580           <...>-27550 (-----) [006] d..4 82315.645009: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
33581           <...>-27550 (-----) [006] dn.5 82315.645013: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
33582           <...>-27550 (-----) [006] d..2 82315.645016: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
33583<...>-9062 ( 8943) [006] .... 82315.645019: binder_transaction_received: transaction=1568728
33584          <idle>-0     (-----) [001] d.h3 82315.645116: sched_waking: comm=logd.klogd pid=589 prio=130 target_cpu=002
33585          <idle>-0     (-----) [007] d.s2 82315.645126: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
33586          <idle>-0     (-----) [007] dns3 82315.645131: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
33587          <idle>-0     (-----) [007] dns3 82315.645135: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=007
33588          <idle>-0     (-----) [001] dnh4 82315.645138: sched_wakeup: comm=logd.klogd pid=589 prio=130 target_cpu=001
33589          <idle>-0     (-----) [007] dns4 82315.645145: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=005
33590          <idle>-0     (-----) [007] .n.1 82315.645149: cpu_idle: state=4294967295 cpu_id=7
33591          <idle>-0     (-----) [005] .n.1 82315.645150: cpu_idle: state=4294967295 cpu_id=5
33592<...>-586 ( 586) [000] .... 82315.645151: binder_transaction: transaction=1568729 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
33593          <idle>-0     (-----) [007] d..2 82315.645152: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
33594          <idle>-0     (-----) [005] d..2 82315.645155: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
33595<...>-9062 ( 8943) [006] .... 82315.645156: binder_transaction: transaction=1568730 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
33596     rcu_preempt-7     (    7) [007] d..2 82315.645157: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=005
33597<...>-9062 ( 8943) [006] .... 82315.645158: binder_transaction_alloc_buf: transaction=1568730 data_size=6088 offsets_size=0
33598          <idle>-0     (-----) [001] .n.1 82315.645159: cpu_idle: state=4294967295 cpu_id=1
33599<...>-9062 ( 8943) [006] .... 82315.645160: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
33600<...>-586 ( 586) [000] .... 82315.645162: binder_transaction_alloc_buf: transaction=1568729 data_size=8 offsets_size=0
33601<...>-586 ( 586) [000] d..2 82315.645164: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=007
33602     rcu_preempt-7     (    7) [007] d..3 82315.645165: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=007
33603          <idle>-0     (-----) [001] d..2 82315.645165: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.klogd next_pid=589 next_prio=130
33604     rcu_preempt-7     (    7) [007] d..2 82315.645168: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
33605<...>-9062 ( 8943) [006] d..2 82315.645175: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33606           <...>-27550 (-----) [006] .... 82315.645179: binder_transaction_received: transaction=1568730
33607<...>-586 ( 586) [000] d..3 82315.645184: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=000
33608     rcu_preempt-7     (    7) [007] d..3 82315.645184: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=007
33609<...>-586 ( 586) [000] .... 82315.645230: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
33610     rcu_preempt-7     (    7) [007] d..2 82315.645230: 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
33611         rcuop/0-10    (   10) [007] d..2 82315.645232: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=005
33612         rcuop/0-10    (   10) [007] d..3 82315.645238: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=005
33613<...>-589 ( 571) [001] d..2 82315.645257: sched_switch: prev_comm=logd.klogd prev_pid=589 prev_prio=130 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33614           <...>-27570 (-----) [001] .... 82315.645265: binder_transaction_received: transaction=1568729
33615         rcuop/0-10    (   10) [007] d..2 82315.645269: 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
33616         rcuop/2-29    (   29) [007] d..2 82315.645271: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=005
33617<...>-586 ( 586) [000] d..2 82315.645274: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33618         rcuop/2-29    (   29) [007] d..3 82315.645280: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=007
33619  kworker/u16:15-1311  ( 1311) [005] d..2 82315.645282: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcuop/1 next_pid=21 next_prio=120
33620          <idle>-0     (-----) [000] d..1 82315.645287: cpu_idle: state=0 cpu_id=0
33621         rcuop/2-29    (   29) [007] d..2 82315.645289: 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
33622         rcuop/1-21    (   21) [005] d..2 82315.645292: 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
33623          <idle>-0     (-----) [005] d..1 82315.645295: cpu_idle: state=0 cpu_id=5
33624         rcuop/3-37    (   37) [007] d..2 82315.645299: 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
33625          <idle>-0     (-----) [007] d..1 82315.645302: cpu_idle: state=0 cpu_id=7
33626           <...>-27570 (-----) [001] d.s2 82315.645317: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=005
33627          <idle>-0     (-----) [005] d.h2 82315.645330: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
33628          <idle>-0     (-----) [005] dnh2 82315.645331: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=005
33629          <idle>-0     (-----) [005] .n.1 82315.645333: cpu_idle: state=4294967295 cpu_id=5
33630          <idle>-0     (-----) [005] d..2 82315.645336: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
33631  kworker/u16:15-1311  ( 1311) [005] d..2 82315.645344: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33632          <idle>-0     (-----) [005] d..1 82315.645347: cpu_idle: state=0 cpu_id=5
33633           <...>-27570 (-----) [001] ...1 82315.645353: tracing_mark_write: B|27550|HIDL::IServiceManager::get::client
33634           <...>-27570 (-----) [001] ...1 82315.645358: tracing_mark_write: E|27550
33635           <...>-27570 (-----) [001] .... 82315.645372: binder_transaction: transaction=1568731 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x1
33636           <...>-27570 (-----) [001] .... 82315.645374: binder_transaction_alloc_buf: transaction=1568731 data_size=204 offsets_size=32
33637           <...>-27570 (-----) [001] ...2 82315.645378: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
33638           <...>-27570 (-----) [001] d..4 82315.645381: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=000
33639           <...>-27570 (-----) [001] dn.5 82315.645396: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=001
33640           <...>-27570 (-----) [001] d..2 82315.645401: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=hwservicemanage next_pid=586 next_prio=110
33641<...>-586 ( 586) [001] .... 82315.645405: binder_transaction_received: transaction=1568731
33642           <...>-27550 (-----) [006] .... 82315.645524: binder_transaction: transaction=1568732 dest_node=396616 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xc
33643           <...>-27550 (-----) [006] .... 82315.645525: binder_transaction_alloc_buf: transaction=1568732 data_size=348 offsets_size=16
33644           <...>-27550 (-----) [006] ...2 82315.645530: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
33645           <...>-27550 (-----) [006] d..4 82315.645531: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
33646           <...>-27550 (-----) [006] dn.5 82315.645536: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
33647           <...>-27550 (-----) [006] d..2 82315.645539: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
33648<...>-9062 ( 8943) [006] .... 82315.645542: binder_transaction_received: transaction=1568732
33649<...>-586 ( 586) [001] .... 82315.645577: binder_transaction: transaction=1568733 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
33650<...>-586 ( 586) [001] .... 82315.645580: binder_transaction_alloc_buf: transaction=1568733 data_size=28 offsets_size=8
33651<...>-586 ( 586) [001] .... 82315.645604: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
33652<...>-586 ( 586) [001] d..2 82315.645632: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33653           <...>-27570 (-----) [001] .... 82315.645637: binder_transaction_received: transaction=1568733
33654           <...>-27570 (-----) [001] ...1 82315.645688: tracing_mark_write: B|27550|HIDL::IBase::interfaceChain::client
33655           <...>-27570 (-----) [001] ...1 82315.645692: tracing_mark_write: E|27550
33656<...>-9062 ( 8943) [006] .... 82315.645701: binder_transaction: transaction=1568735 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x3
33657<...>-9062 ( 8943) [006] .... 82315.645703: binder_transaction_alloc_buf: transaction=1568735 data_size=88 offsets_size=0
33658<...>-9062 ( 8943) [006] d..4 82315.645706: sched_waking: comm=Binder:9090_8 pid=16647 prio=120 target_cpu=000
33659           <...>-27570 (-----) [001] .... 82315.645722: binder_transaction: transaction=1568736 dest_node=42 dest_proc=620 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
33660          <idle>-0     (-----) [000] dnh2 82315.645725: sched_wakeup: comm=Binder:9090_8 pid=16647 prio=120 target_cpu=000
33661           <...>-27570 (-----) [001] .... 82315.645725: binder_transaction_alloc_buf: transaction=1568736 data_size=32 offsets_size=0
33662          <idle>-0     (-----) [000] .n.1 82315.645729: cpu_idle: state=4294967295 cpu_id=0
33663           <...>-27570 (-----) [001] ...2 82315.645729: binder_set_priority: proc=620 thread=637 old=120 => new=110 desired=110
33664           <...>-27570 (-----) [001] d..4 82315.645732: sched_waking: comm=HwBinder:620_1 pid=637 prio=110 target_cpu=001
33665          <idle>-0     (-----) [000] d..2 82315.645735: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9090_8 next_pid=16647 next_prio=120
33666<...>-9062 ( 8943) [006] .... 82315.645737: binder_transaction: transaction=1568737 dest_node=1160142 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x4
33667<...>-9062 ( 8943) [006] .... 82315.645739: binder_transaction_alloc_buf: transaction=1568737 data_size=108 offsets_size=0
33668<...>-16647 ( 9090) [000] .... 82315.645741: binder_transaction_received: transaction=1568735
33669<...>-9062 ( 8943) [006] d..4 82315.645742: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=006
33670           <...>-27570 (-----) [001] dn.5 82315.645743: sched_wakeup: comm=HwBinder:620_1 pid=637 prio=110 target_cpu=001
33671           <...>-27570 (-----) [001] d..2 82315.645748: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:620_1 next_pid=637 next_prio=110
33672<...>-9062 ( 8943) [006] d..5 82315.645754: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=007
33673<...>-637 ( 620) [001] .... 82315.645755: binder_transaction_received: transaction=1568736
33674          <idle>-0     (-----) [007] .n.1 82315.645758: cpu_idle: state=4294967295 cpu_id=7
33675          <idle>-0     (-----) [007] d..2 82315.645762: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
33676  Binder:10023_2-10088 (10023) [007] .... 82315.645768: binder_transaction_received: transaction=1568737
33677<...>-9062 ( 8943) [006] .... 82315.645769: binder_transaction: transaction=1568738 dest_node=1160142 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x3
33678<...>-9062 ( 8943) [006] .... 82315.645770: binder_transaction_alloc_buf: transaction=1568738 data_size=108 offsets_size=0
33679<...>-637 ( 620) [001] ...1 82315.645797: tracing_mark_write: B|620|HIDL::IBase::interfaceChain::server
33680<...>-9062 ( 8943) [006] d..3 82315.645797: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
33681<...>-9062 ( 8943) [006] d..4 82315.645804: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
33682<...>-142 ( 142) [004] d..2 82315.645819: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
33683<...>-9062 ( 8943) [006] .... 82315.645820: binder_transaction: transaction=1568739 dest_node=1568540 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x4
33684<...>-9062 ( 8943) [006] .... 82315.645821: binder_transaction_alloc_buf: transaction=1568739 data_size=108 offsets_size=0
33685<...>-9062 ( 8943) [006] d..4 82315.645823: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=004
33686<...>-142 ( 142) [004] dn.3 82315.645825: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
33687<...>-637 ( 620) [001] ...1 82315.645827: tracing_mark_write: E|620
33688<...>-142 ( 142) [004] d..2 82315.645834: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
33689<...>-9062 ( 8943) [006] d..5 82315.645836: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=005
33690     kworker/4:1-25432 (25432) [004] d..3 82315.645838: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
33691          <idle>-0     (-----) [005] .n.1 82315.645841: cpu_idle: state=4294967295 cpu_id=5
33692          <idle>-0     (-----) [005] d..2 82315.645844: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
33693           <...>-27564 (-----) [005] .... 82315.645846: binder_transaction_received: transaction=1568739
33694<...>-637 ( 620) [001] .... 82315.645847: binder_transaction: transaction=1568740 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
33695     kworker/4:1-25432 (25432) [004] d..2 82315.645849: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
33696<...>-637 ( 620) [001] .... 82315.645849: binder_transaction_alloc_buf: transaction=1568740 data_size=204 offsets_size=40
33697  Binder:10023_2-10088 (10023) [007] d..3 82315.645850: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=005
33698<...>-637 ( 620) [001] .... 82315.645852: binder_set_priority: proc=620 thread=637 old=110 => new=120 desired=120
33699          <idle>-0     (-----) [002] dnh2 82315.645854: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
33700          <idle>-0     (-----) [002] .n.1 82315.645858: cpu_idle: state=4294967295 cpu_id=2
33701          <idle>-0     (-----) [002] d..2 82315.645864: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
33702<...>-16647 ( 9090) [000] d.h1 82315.645887: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
33703<...>-637 ( 620) [001] d..2 82315.645888: sched_switch: prev_comm=HwBinder:620_1 prev_pid=637 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33704<...>-16647 ( 9090) [000] d..3 82315.645893: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
33705           <...>-27570 (-----) [001] .... 82315.645893: binder_transaction_received: transaction=1568740
33706  Binder:10023_2-10088 (10023) [007] d..4 82315.645905: sched_waking: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=001
33707<...>-16647 ( 9090) [000] d..4 82315.645908: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
33708  Binder:10023_2-10088 (10023) [007] d..5 82315.645917: sched_wakeup: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=007
33709  Binder:10023_2-10088 (10023) [007] .... 82315.645934: binder_transaction_received: transaction=1568738
33710<...>-16647 ( 9090) [000] d..2 82315.645944: sched_switch: prev_comm=Binder:9090_8 prev_pid=16647 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
33711           <...>-27570 (-----) [001] ...1 82315.645961: tracing_mark_write: B|27550|HIDL::ISurfaceFlingerConfigs::hasWideColorDisplay::client
33712           <...>-27564 (-----) [005] d..2 82315.645963: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33713           <...>-27570 (-----) [001] ...1 82315.645965: tracing_mark_write: E|27550
33714  Binder:10023_2-10088 (10023) [007] d..2 82315.645967: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
33715           <...>-27550 (-----) [005] d..2 82315.645970: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33716<...>-9062 ( 8943) [006] .... 82315.645970: binder_transaction: transaction=1568741 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x5
33717<...>-9062 ( 8943) [006] .... 82315.645972: binder_transaction_alloc_buf: transaction=1568741 data_size=200 offsets_size=16
33718          <idle>-0     (-----) [005] d..1 82315.645974: cpu_idle: state=0 cpu_id=5
33719           <...>-27570 (-----) [001] .... 82315.645976: binder_transaction: transaction=1568742 dest_node=42 dest_proc=620 dest_thread=0 reply=0 flags=0x10 code=0x4
33720           <...>-27570 (-----) [001] .... 82315.645978: binder_transaction_alloc_buf: transaction=1568742 data_size=60 offsets_size=0
33721           <...>-27570 (-----) [001] ...2 82315.645980: binder_set_priority: proc=620 thread=637 old=120 => new=110 desired=110
33722           <...>-27570 (-----) [001] d..4 82315.645982: sched_waking: comm=HwBinder:620_1 pid=637 prio=110 target_cpu=001
33723           <...>-27570 (-----) [001] dn.5 82315.645989: sched_wakeup: comm=HwBinder:620_1 pid=637 prio=110 target_cpu=001
33724           <...>-27570 (-----) [001] d..2 82315.645994: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:620_1 next_pid=637 next_prio=110
33725<...>-637 ( 620) [001] .... 82315.645997: binder_transaction_received: transaction=1568742
33726<...>-637 ( 620) [001] ...1 82315.646011: tracing_mark_write: B|620|HIDL::ISurfaceFlingerConfigs::hasWideColorDisplay::server
33727<...>-9062 ( 8943) [006] d..4 82315.646019: sched_waking: comm=Binder:9090_8 pid=16647 prio=120 target_cpu=000
33728<...>-637 ( 620) [001] ...1 82315.646020: tracing_mark_write: E|620
33729   system_server-8943  ( 8943) [007] .... 82315.646026: binder_transaction: transaction=1568745 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xb
33730<...>-637 ( 620) [001] .... 82315.646026: binder_transaction: transaction=1568746 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
33731<...>-637 ( 620) [001] .... 82315.646028: binder_transaction_alloc_buf: transaction=1568746 data_size=44 offsets_size=8
33732   system_server-8943  ( 8943) [007] .... 82315.646028: binder_transaction_alloc_buf: transaction=1568745 data_size=128 offsets_size=8
33733<...>-637 ( 620) [001] .... 82315.646030: binder_set_priority: proc=620 thread=637 old=110 => new=120 desired=120
33734 s.nexuslauncher-10023 (10023) [000] d.h4 82315.646050: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=004
33735   system_server-8943  ( 8943) [007] d..4 82315.646052: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
33736<...>-637 ( 620) [001] d..2 82315.646055: sched_switch: prev_comm=HwBinder:620_1 prev_pid=637 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33737           <...>-27570 (-----) [001] .... 82315.646059: binder_transaction_received: transaction=1568746
33738<...>-821 ( 821) [002] d..2 82315.646059: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
33739   system_server-8943  ( 8943) [007] d..5 82315.646060: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
33740          <idle>-0     (-----) [002] d..1 82315.646066: cpu_idle: state=0 cpu_id=2
33741 s.nexuslauncher-10023 (10023) [000] d.h4 82315.646070: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
33742          <idle>-0     (-----) [005] dnh2 82315.646076: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=005
33743          <idle>-0     (-----) [005] .n.1 82315.646078: cpu_idle: state=4294967295 cpu_id=5
33744<...>-9062 ( 8943) [006] .... 82315.646079: binder_transaction: transaction=1568748 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
33745<...>-9062 ( 8943) [006] .... 82315.646080: binder_transaction_alloc_buf: transaction=1568748 data_size=204 offsets_size=0
33746<...>-9062 ( 8943) [006] d..2 82315.646081: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
33747   system_server-8943  ( 8943) [007] d..2 82315.646083: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:10023_3 next_pid=10531 next_prio=120
33748          <idle>-0     (-----) [005] dnh2 82315.646085: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=005
33749<...>-9062 ( 8943) [006] d..3 82315.646090: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33750<...>-9062 ( 8943) [006] .... 82315.646091: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
33751 s.nexuslauncher-10023 (10023) [000] d.h1 82315.646091: sched_wakeup: comm=Binder:9090_8 pid=16647 prio=120 target_cpu=000
33752  Binder:10023_3-10531 (10023) [007] d..2 82315.646091: sched_switch: prev_comm=Binder:10023_3 prev_pid=10531 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
33753          <idle>-0     (-----) [005] d..2 82315.646093: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
33754<...>-9132 ( 9105) [007] .... 82315.646095: binder_transaction_received: transaction=1568745
33755<...>-9062 ( 8943) [006] d..2 82315.646105: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33756           <...>-27550 (-----) [006] .... 82315.646110: binder_transaction_received: transaction=1568748
33757<...>-9132 ( 9105) [007] d..2 82315.646112: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
33758  crtc_event:111-322   (  322) [005] d..2 82315.646116: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
33759          <idle>-0     (-----) [005] d..1 82315.646119: cpu_idle: state=0 cpu_id=5
33760           <...>-27550 (-----) [006] d..2 82315.646186: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33761           <...>-27570 (-----) [001] d..2 82315.646191: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
33762          <idle>-0     (-----) [006] d..1 82315.646192: cpu_idle: state=0 cpu_id=6
33763           <...>-27570 (-----) [001] d..3 82315.646200: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
33764 crtc_commit:111-321   (  321) [007] d..2 82315.646213: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
33765 s.nexuslauncher-10023 (10023) [000] d..2 82315.646224: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
33766           <...>-27570 (-----) [001] ...1 82315.646238: tracing_mark_write: B|27550|HIDL::ISurfaceFlingerConfigs::hasHDRDisplay::client
33767           <...>-27570 (-----) [001] ...1 82315.646242: tracing_mark_write: E|27550
33768           <...>-27570 (-----) [001] .... 82315.646252: binder_transaction: transaction=1568749 dest_node=42 dest_proc=620 dest_thread=0 reply=0 flags=0x10 code=0x5
33769           <...>-27570 (-----) [001] .... 82315.646254: binder_transaction_alloc_buf: transaction=1568749 data_size=60 offsets_size=0
33770           <...>-27570 (-----) [001] ...2 82315.646256: binder_set_priority: proc=620 thread=637 old=120 => new=110 desired=110
33771           <...>-27570 (-----) [001] d..4 82315.646257: sched_waking: comm=HwBinder:620_1 pid=637 prio=110 target_cpu=001
33772          <idle>-0     (-----) [005] dnh2 82315.646302: sched_wakeup: comm=HwBinder:620_1 pid=637 prio=110 target_cpu=005
33773          <idle>-0     (-----) [005] .n.1 82315.646304: cpu_idle: state=4294967295 cpu_id=5
33774          <idle>-0     (-----) [005] d..2 82315.646307: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:620_1 next_pid=637 next_prio=110
33775           <...>-27570 (-----) [001] d..2 82315.646311: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
33776<...>-637 ( 620) [005] .... 82315.646311: binder_transaction_received: transaction=1568749
33777<...>-9090 ( 9090) [000] d..2 82315.646313: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=Binder:9090_8 next_pid=16647 next_prio=120
33778<...>-16647 ( 9090) [000] .... 82315.646317: binder_transaction_received: transaction=1568741
33779<...>-637 ( 620) [005] ...1 82315.646322: tracing_mark_write: B|620|HIDL::ISurfaceFlingerConfigs::hasHDRDisplay::server
33780<...>-637 ( 620) [005] ...1 82315.646327: tracing_mark_write: E|620
33781<...>-637 ( 620) [005] .... 82315.646330: binder_transaction: transaction=1568750 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
33782<...>-637 ( 620) [005] .... 82315.646332: binder_transaction_alloc_buf: transaction=1568750 data_size=44 offsets_size=8
33783<...>-637 ( 620) [005] d..2 82315.646333: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=001
33784<...>-637 ( 620) [005] d..3 82315.646343: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=005
33785<...>-9132 ( 9105) [007] d..3 82315.646346: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
33786<...>-637 ( 620) [005] .... 82315.646361: binder_set_priority: proc=620 thread=637 old=110 => new=120 desired=120
33787<...>-9132 ( 9105) [007] d..4 82315.646372: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
33788<...>-637 ( 620) [005] d..2 82315.646373: sched_switch: prev_comm=HwBinder:620_1 prev_pid=637 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33789           <...>-27570 (-----) [005] .... 82315.646376: binder_transaction_received: transaction=1568750
33790          <idle>-0     (-----) [006] .n.1 82315.646383: cpu_idle: state=4294967295 cpu_id=6
33791          <idle>-0     (-----) [006] d..2 82315.646387: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
33792<...>-581 ( 571) [001] d..2 82315.646391: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33793           <...>-27570 (-----) [005] d..2 82315.646403: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
33794          <idle>-0     (-----) [001] d..1 82315.646404: cpu_idle: state=0 cpu_id=1
33795<...>-9132 ( 9105) [007] d..2 82315.646407: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
33796          <idle>-0     (-----) [007] d..1 82315.646412: cpu_idle: state=0 cpu_id=7
33797          <idle>-0     (-----) [001] dnh2 82315.646418: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
33798          <idle>-0     (-----) [001] .n.1 82315.646422: cpu_idle: state=4294967295 cpu_id=1
33799          <idle>-0     (-----) [001] d..2 82315.646428: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
33800<...>-581 ( 571) [001] d..2 82315.646462: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33801          <idle>-0     (-----) [001] d..1 82315.646470: cpu_idle: state=0 cpu_id=1
33802<...>-9105 ( 9105) [006] d..2 82315.646482: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33803          <idle>-0     (-----) [006] d..1 82315.646486: cpu_idle: state=0 cpu_id=6
33804<...>-16647 ( 9090) [000] d..3 82315.646486: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
33805<...>-16647 ( 9090) [000] d..4 82315.646504: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
33806          <idle>-0     (-----) [001] .n.1 82315.646508: cpu_idle: state=4294967295 cpu_id=1
33807          <idle>-0     (-----) [001] d..2 82315.646515: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
33808<...>-16647 ( 9090) [000] d..2 82315.646545: sched_switch: prev_comm=Binder:9090_8 prev_pid=16647 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33809          <idle>-0     (-----) [000] d..1 82315.646555: cpu_idle: state=0 cpu_id=0
33810<...>-9090 ( 9090) [001] .... 82315.646682: binder_transaction: transaction=1568751 dest_node=1568743 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x1
33811<...>-9090 ( 9090) [001] .... 82315.646684: binder_transaction_alloc_buf: transaction=1568751 data_size=128 offsets_size=8
33812<...>-9090 ( 9090) [001] d..4 82315.646867: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
33813           <...>-27570 (-----) [005] d..2 82315.646869: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
33814          <idle>-0     (-----) [006] dnh2 82315.646882: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
33815          <idle>-0     (-----) [006] .n.1 82315.646884: cpu_idle: state=4294967295 cpu_id=6
33816          <idle>-0     (-----) [006] d..2 82315.646887: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
33817          <idle>-0     (-----) [000] dnh2 82315.646889: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
33818<...>-9062 ( 8943) [006] .... 82315.646890: binder_transaction_received: transaction=1568751
33819          <idle>-0     (-----) [000] .n.1 82315.646893: cpu_idle: state=4294967295 cpu_id=0
33820          <idle>-0     (-----) [000] d..2 82315.646899: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
33821<...>-9090 ( 9090) [001] d..2 82315.646926: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
33822          <idle>-0     (-----) [001] d..1 82315.646935: cpu_idle: state=0 cpu_id=1
33823<...>-581 ( 571) [000] d..2 82315.646958: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33824          <idle>-0     (-----) [000] d..1 82315.646967: cpu_idle: state=0 cpu_id=0
33825<...>-9062 ( 8943) [006] .... 82315.646976: binder_transaction: transaction=1568754 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x2
33826<...>-9062 ( 8943) [006] .... 82315.646978: binder_transaction_alloc_buf: transaction=1568754 data_size=124 offsets_size=8
33827<...>-9062 ( 8943) [006] d..4 82315.646999: sched_waking: comm=Binder:9090_8 pid=16647 prio=120 target_cpu=000
33828          <idle>-0     (-----) [000] dnh2 82315.647013: sched_wakeup: comm=Binder:9090_8 pid=16647 prio=120 target_cpu=000
33829          <idle>-0     (-----) [000] .n.1 82315.647017: cpu_idle: state=4294967295 cpu_id=0
33830          <idle>-0     (-----) [000] d..2 82315.647023: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9090_8 next_pid=16647 next_prio=120
33831<...>-16647 ( 9090) [000] .... 82315.647026: binder_transaction_received: transaction=1568754
33832<...>-9062 ( 8943) [006] .... 82315.647057: binder_transaction: transaction=1568756 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x6
33833<...>-9062 ( 8943) [006] .... 82315.647058: binder_transaction_alloc_buf: transaction=1568756 data_size=116 offsets_size=8
33834<...>-9062 ( 8943) [006] .... 82315.647081: binder_transaction: transaction=1568757 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x6
33835<...>-9062 ( 8943) [006] .... 82315.647082: binder_transaction_alloc_buf: transaction=1568757 data_size=116 offsets_size=8
33836<...>-9062 ( 8943) [006] .... 82315.647117: binder_transaction: transaction=1568758 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x4
33837<...>-16647 ( 9090) [000] d..3 82315.647117: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
33838<...>-9062 ( 8943) [006] .... 82315.647118: binder_transaction_alloc_buf: transaction=1568758 data_size=296 offsets_size=8
33839<...>-16647 ( 9090) [000] d..4 82315.647128: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
33840          <idle>-0     (-----) [001] .n.1 82315.647134: cpu_idle: state=4294967295 cpu_id=1
33841          <idle>-0     (-----) [001] d..2 82315.647141: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
33842<...>-16647 ( 9090) [000] d..4 82315.647149: sched_waking: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=001
33843<...>-16647 ( 9090) [000] d..5 82315.647166: sched_wakeup: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=000
33844<...>-16647 ( 9090) [000] .... 82315.647171: binder_transaction_received: transaction=1568756
33845<...>-9062 ( 8943) [006] .... 82315.647173: binder_transaction: transaction=1568761 dest_node=1568540 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x2
33846<...>-9062 ( 8943) [006] .... 82315.647174: binder_transaction_alloc_buf: transaction=1568761 data_size=384 offsets_size=16
33847<...>-9062 ( 8943) [006] d..4 82315.647184: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=005
33848<...>-9062 ( 8943) [006] d..5 82315.647195: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=007
33849          <idle>-0     (-----) [007] .n.1 82315.647200: cpu_idle: state=4294967295 cpu_id=7
33850<...>-9090 ( 9090) [001] .... 82315.647203: binder_transaction: transaction=1568763 dest_node=396616 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x22
33851          <idle>-0     (-----) [007] d..2 82315.647203: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
33852<...>-9090 ( 9090) [001] .... 82315.647206: binder_transaction_alloc_buf: transaction=1568763 data_size=128 offsets_size=8
33853           <...>-27564 (-----) [007] .... 82315.647207: binder_transaction_received: transaction=1568761
33854<...>-9090 ( 9090) [001] d..4 82315.647212: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=007
33855<...>-9090 ( 9090) [001] d..5 82315.647230: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=001
33856<...>-16647 ( 9090) [000] d..4 82315.647237: sched_waking: comm=Binder:9090_7 pid=3293 prio=120 target_cpu=001
33857<...>-9062 ( 8943) [006] d..2 82315.647274: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33858<...>-16647 ( 9090) [000] d..5 82315.647275: sched_wakeup: comm=Binder:9090_7 pid=3293 prio=120 target_cpu=000
33859          <idle>-0     (-----) [006] d..1 82315.647279: cpu_idle: state=0 cpu_id=6
33860<...>-16647 ( 9090) [000] .... 82315.647283: binder_transaction_received: transaction=1568757
33861<...>-9090 ( 9090) [001] d..2 82315.647283: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
33862<...>-25493 ( 8943) [001] .... 82315.647290: binder_transaction_received: transaction=1568763
33863           <...>-27564 (-----) [007] d..1 82315.647298: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=005
33864           <...>-27570 (-----) [005] d..2 82315.647305: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=D|K ==> next_comm=swapper/5 next_pid=0 next_prio=120
33865           <...>-27564 (-----) [007] d..2 82315.647310: sched_blocked_reason: pid=27570 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
33866           <...>-27564 (-----) [007] d..2 82315.647314: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=005
33867          <idle>-0     (-----) [005] d..2 82315.647317: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
33868<...>-16647 ( 9090) [000] d..4 82315.647343: sched_waking: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=001
33869           <...>-27564 (-----) [007] d..3 82315.647344: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33870           <...>-27564 (-----) [007] d..4 82315.647351: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33871          <idle>-0     (-----) [006] .n.1 82315.647356: cpu_idle: state=4294967295 cpu_id=6
33872<...>-16647 ( 9090) [000] d..5 82315.647359: sched_wakeup: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=000
33873          <idle>-0     (-----) [006] d..2 82315.647360: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33874<...>-16647 ( 9090) [000] .... 82315.647366: binder_transaction_received: transaction=1568758
33875           <...>-27564 (-----) [007] d..2 82315.647385: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
33876          <idle>-0     (-----) [007] d..1 82315.647390: cpu_idle: state=0 cpu_id=7
33877           <...>-27550 (-----) [006] d..2 82315.647393: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33878          <idle>-0     (-----) [006] d..1 82315.647397: cpu_idle: state=0 cpu_id=6
33879<...>-25493 ( 8943) [001] .... 82315.647429: binder_transaction: transaction=1568764 dest_node=1568540 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x6
33880<...>-25493 ( 8943) [001] .... 82315.647432: binder_transaction_alloc_buf: transaction=1568764 data_size=104 offsets_size=0
33881<...>-25493 ( 8943) [001] d..4 82315.647434: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=007
33882          <idle>-0     (-----) [007] dnh2 82315.647448: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=007
33883          <idle>-0     (-----) [007] .n.1 82315.647451: cpu_idle: state=4294967295 cpu_id=7
33884          <idle>-0     (-----) [007] d..2 82315.647453: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
33885           <...>-27564 (-----) [007] .... 82315.647455: binder_transaction_received: transaction=1568764
33886<...>-16647 ( 9090) [000] d..2 82315.647471: sched_switch: prev_comm=Binder:9090_8 prev_pid=16647 prev_prio=120 prev_state=S ==> next_comm=Binder:9090_6 next_pid=10728 next_prio=120
33887   Binder:9090_6-10728 ( 9090) [000] d..2 82315.647480: sched_switch: prev_comm=Binder:9090_6 prev_pid=10728 prev_prio=120 prev_state=S ==> next_comm=Binder:9090_7 next_pid=3293 next_prio=120
33888   Binder:9090_7-3293  ( 9090) [000] d..2 82315.647488: sched_switch: prev_comm=Binder:9090_7 prev_pid=3293 prev_prio=120 prev_state=S ==> next_comm=Binder:9090_5 next_pid=10478 next_prio=120
33889           <...>-27564 (-----) [007] d..3 82315.647489: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33890           <...>-27564 (-----) [007] d..4 82315.647496: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
33891   Binder:9090_5-10478 ( 9090) [000] d..2 82315.647501: sched_switch: prev_comm=Binder:9090_5 prev_pid=10478 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33892          <idle>-0     (-----) [006] .n.1 82315.647501: cpu_idle: state=4294967295 cpu_id=6
33893          <idle>-0     (-----) [006] d..2 82315.647504: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
33894<...>-25493 ( 8943) [001] .... 82315.647505: binder_transaction: transaction=1568765 dest_node=0 dest_proc=9090 dest_thread=9090 reply=1 flags=0x0 code=0x0
33895<...>-25493 ( 8943) [001] .... 82315.647508: binder_transaction_alloc_buf: transaction=1568765 data_size=4 offsets_size=0
33896<...>-25493 ( 8943) [001] d..2 82315.647510: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
33897          <idle>-0     (-----) [000] d..1 82315.647510: cpu_idle: state=0 cpu_id=0
33898           <...>-27550 (-----) [006] d..2 82315.647516: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
33899<...>-25493 ( 8943) [001] d..3 82315.647518: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
33900          <idle>-0     (-----) [006] d..1 82315.647519: cpu_idle: state=0 cpu_id=6
33901           <...>-27564 (-----) [007] d..2 82315.647521: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
33902          <idle>-0     (-----) [007] d..1 82315.647524: cpu_idle: state=0 cpu_id=7
33903<...>-25493 ( 8943) [001] d..2 82315.647541: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
33904<...>-9090 ( 9090) [001] .... 82315.647545: binder_transaction_received: transaction=1568765
33905<...>-9090 ( 9090) [001] .... 82315.647686: binder_transaction: transaction=1568766 dest_node=396616 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x16
33906<...>-9090 ( 9090) [001] .... 82315.647688: binder_transaction_alloc_buf: transaction=1568766 data_size=148 offsets_size=16
33907<...>-9090 ( 9090) [001] d..4 82315.647697: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=001
33908<...>-9090 ( 9090) [001] d..5 82315.647705: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=001
33909<...>-9090 ( 9090) [001] d..2 82315.647713: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
33910<...>-25493 ( 8943) [001] .... 82315.647719: binder_transaction_received: transaction=1568766
33911          <idle>-0     (-----) [006] ...1 82315.647729: cpu_idle: state=4294967295 cpu_id=6
33912          <idle>-0     (-----) [006] d..1 82315.647730: cpu_idle: state=0 cpu_id=6
33913<...>-25493 ( 8943) [001] .... 82315.647835: binder_transaction: transaction=1568767 dest_node=0 dest_proc=9090 dest_thread=9090 reply=1 flags=0x0 code=0x0
33914<...>-25493 ( 8943) [001] .... 82315.647837: binder_transaction_alloc_buf: transaction=1568767 data_size=4 offsets_size=0
33915<...>-25493 ( 8943) [001] d..2 82315.647839: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
33916<...>-25493 ( 8943) [001] d..3 82315.647846: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
33917<...>-25493 ( 8943) [001] d..2 82315.647869: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
33918<...>-9090 ( 9090) [001] .... 82315.647873: binder_transaction_received: transaction=1568767
33919           <...>-27570 (-----) [005] .... 82315.647888: binder_transaction: transaction=1568768 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x7
33920           <...>-27570 (-----) [005] .... 82315.647890: binder_transaction_alloc_buf: transaction=1568768 data_size=68 offsets_size=0
33921           <...>-27570 (-----) [005] ...2 82315.647893: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
33922           <...>-27570 (-----) [005] d..4 82315.647895: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=001
33923           <...>-27570 (-----) [005] dn.5 82315.647907: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
33924           <...>-27570 (-----) [005] d..2 82315.647928: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
33925<...>-8874 ( 8858) [005] .... 82315.647935: binder_transaction_received: transaction=1568768
33926<...>-8874 ( 8858) [005] .... 82315.647965: binder_transaction: transaction=1568769 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
33927<...>-8874 ( 8858) [005] .... 82315.647966: binder_transaction_alloc_buf: transaction=1568769 data_size=24 offsets_size=8
33928<...>-8874 ( 8858) [005] .... 82315.647972: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
33929<...>-8874 ( 8858) [005] d..2 82315.647985: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33930           <...>-27570 (-----) [005] .... 82315.647988: binder_transaction_received: transaction=1568769
33931           <...>-27570 (-----) [005] .... 82315.648003: binder_transaction: transaction=1568771 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0xb
33932           <...>-27570 (-----) [005] .... 82315.648004: binder_transaction_alloc_buf: transaction=1568771 data_size=88 offsets_size=8
33933           <...>-27570 (-----) [005] ...2 82315.648005: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
33934           <...>-27570 (-----) [005] d..4 82315.648006: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
33935           <...>-27570 (-----) [005] dn.5 82315.648010: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
33936           <...>-27570 (-----) [005] d..2 82315.648012: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
33937<...>-8874 ( 8858) [005] .... 82315.648015: binder_transaction_received: transaction=1568771
33938<...>-8874 ( 8858) [005] .... 82315.648043: binder_transaction: transaction=1568772 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
33939<...>-8874 ( 8858) [005] .... 82315.648044: binder_transaction_alloc_buf: transaction=1568772 data_size=56 offsets_size=0
33940<...>-8874 ( 8858) [005] .... 82315.648044: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
33941<...>-8874 ( 8858) [005] d..2 82315.648056: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33942           <...>-27570 (-----) [005] .... 82315.648059: binder_transaction_received: transaction=1568772
33943           <...>-27570 (-----) [005] .... 82315.648070: binder_transaction: transaction=1568773 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0xc
33944           <...>-27570 (-----) [005] .... 82315.648071: binder_transaction_alloc_buf: transaction=1568773 data_size=88 offsets_size=8
33945           <...>-27570 (-----) [005] ...2 82315.648072: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
33946           <...>-27570 (-----) [005] d..4 82315.648073: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
33947<...>-9090 ( 9090) [001] d..2 82315.648075: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
33948           <...>-27570 (-----) [005] dn.5 82315.648076: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
33949           <...>-27570 (-----) [005] d..2 82315.648079: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
33950<...>-8874 ( 8858) [005] .... 82315.648081: binder_transaction_received: transaction=1568773
33951<...>-9090 ( 9090) [001] d..3 82315.648088: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
33952<...>-8874 ( 8858) [005] .... 82315.648089: binder_transaction: transaction=1568774 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
33953<...>-8874 ( 8858) [005] .... 82315.648090: binder_transaction_alloc_buf: transaction=1568774 data_size=4 offsets_size=0
33954<...>-8874 ( 8858) [005] .... 82315.648091: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
33955<...>-8874 ( 8858) [005] d..2 82315.648101: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
33956           <...>-27570 (-----) [005] .... 82315.648104: binder_transaction_received: transaction=1568774
33957<...>-9090 ( 9090) [001] d..3 82315.648245: sched_waking: comm=queued-work-loo pid=9203 prio=118 target_cpu=000
33958<...>-9090 ( 9090) [001] d..4 82315.648261: sched_wakeup: comm=queued-work-loo pid=9203 prio=118 target_cpu=000
33959          <idle>-0     (-----) [000] .n.1 82315.648267: cpu_idle: state=4294967295 cpu_id=0
33960          <idle>-0     (-----) [000] d..2 82315.648275: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=9203 next_prio=118
33961<...>-9203 ( 9090) [000] d..2 82315.648363: sched_switch: prev_comm=queued-work-loo prev_pid=9203 prev_prio=118 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
33962<...>-581 ( 571) [000] d.h6 82315.648430: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=007
33963<...>-142 ( 142) [004] d.s2 82315.648459: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=005
33964          <idle>-0     (-----) [007] dnH2 82315.648460: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=007
33965          <idle>-0     (-----) [007] dns3 82315.648465: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=005
33966<...>-142 ( 142) [004] d.s3 82315.648472: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
33967          <idle>-0     (-----) [006] .n.1 82315.648476: cpu_idle: state=4294967295 cpu_id=6
33968          <idle>-0     (-----) [007] dns4 82315.648477: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=006
33969          <idle>-0     (-----) [006] d..2 82315.648480: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
33970          <idle>-0     (-----) [007] .n.1 82315.648481: cpu_idle: state=4294967295 cpu_id=7
33971          <idle>-0     (-----) [007] d..2 82315.648484: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
33972          <idle>-0     (-----) [002] ...1 82315.648491: cpu_idle: state=4294967295 cpu_id=2
33973  crtc_event:111-322   (  322) [006] d..2 82315.648491: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
33974          <idle>-0     (-----) [002] d..1 82315.648494: cpu_idle: state=0 cpu_id=2
33975 crtc_commit:111-321   (  321) [007] d..2 82315.648533: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
33976          <idle>-0     (-----) [007] d..1 82315.648535: cpu_idle: state=0 cpu_id=7
33977<...>-581 ( 571) [000] d..2 82315.648540: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
33978<...>-9090 ( 9090) [001] d..3 82315.648548: sched_waking: comm=MetricsManager pid=9867 prio=139 target_cpu=001
33979          <idle>-0     (-----) [000] d..1 82315.648549: cpu_idle: state=0 cpu_id=0
33980<...>-9090 ( 9090) [001] d..4 82315.648570: sched_wakeup: comm=MetricsManager pid=9867 prio=139 target_cpu=000
33981          <idle>-0     (-----) [000] .n.1 82315.648577: cpu_idle: state=4294967295 cpu_id=0
33982          <idle>-0     (-----) [000] d..2 82315.648585: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MetricsManager next_pid=9867 next_prio=139
33983<...>-9867 ( 9090) [000] d.h4 82315.648683: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=006
33984  kworker/u16:15-1311  ( 1311) [006] d..2 82315.648702: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
33985          <idle>-0     (-----) [007] dnh2 82315.648705: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=007
33986          <idle>-0     (-----) [006] d..1 82315.648705: cpu_idle: state=0 cpu_id=6
33987<...>-9867 ( 9090) [000] d.h6 82315.648705: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
33988          <idle>-0     (-----) [007] .n.1 82315.648707: cpu_idle: state=4294967295 cpu_id=7
33989          <idle>-0     (-----) [007] d..2 82315.648709: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
33990<...>-9867 ( 9090) [000] dnh7 82315.648715: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
33991  crtc_event:111-322   (  322) [007] d..2 82315.648718: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
33992          <idle>-0     (-----) [007] d..1 82315.648720: cpu_idle: state=0 cpu_id=7
33993<...>-9867 ( 9090) [000] dnh8 82315.648728: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=007
33994<...>-9867 ( 9090) [000] dnh6 82315.648741: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=001
33995          <idle>-0     (-----) [007] dnh2 82315.648743: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=007
33996          <idle>-0     (-----) [007] .n.1 82315.648745: cpu_idle: state=4294967295 cpu_id=7
33997<...>-9090 ( 9090) [001] d.s2 82315.648745: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
33998          <idle>-0     (-----) [007] d..2 82315.648747: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
33999          <idle>-0     (-----) [006] d.h2 82315.648763: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
34000<...>-9867 ( 9090) [000] dnh7 82315.648763: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
34001          <idle>-0     (-----) [006] dnh2 82315.648764: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
34002          <idle>-0     (-----) [006] .n.1 82315.648766: cpu_idle: state=4294967295 cpu_id=6
34003          <idle>-0     (-----) [002] .n.1 82315.648767: cpu_idle: state=4294967295 cpu_id=2
34004          <idle>-0     (-----) [006] d..2 82315.648769: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
34005 crtc_commit:111-321   (  321) [007] d..2 82315.648770: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34006          <idle>-0     (-----) [007] d..1 82315.648772: cpu_idle: state=0 cpu_id=7
34007          <idle>-0     (-----) [002] d..2 82315.648774: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
34008<...>-9867 ( 9090) [000] d..2 82315.648776: sched_switch: prev_comm=MetricsManager prev_pid=9867 prev_prio=139 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
34009     kworker/0:1-25262 (25262) [000] d..2 82315.648789: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=MetricsManager next_pid=9867 next_prio=139
34010<...>-9090 ( 9090) [001] d..2 82315.648792: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
34011<...>-9090 ( 9090) [001] d..3 82315.648810: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
34012 SDM_EventThread-644   (  619) [002] ...1 82315.648822: tracing_mark_write: B|619|HWCCallbacks::Vsync::
34013 SDM_EventThread-644   (  619) [002] ...1 82315.648832: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
34014 SDM_EventThread-644   (  619) [002] ...1 82315.648835: tracing_mark_write: E|619
34015 SDM_EventThread-644   (  619) [002] .... 82315.648861: binder_transaction: transaction=1568775 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
34016 SDM_EventThread-644   (  619) [002] .... 82315.648864: binder_transaction_alloc_buf: transaction=1568775 data_size=76 offsets_size=0
34017 SDM_EventThread-644   (  619) [002] d..4 82315.648870: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=000
34018<...>-9867 ( 9090) [000] d..2 82315.648871: sched_switch: prev_comm=MetricsManager prev_pid=9867 prev_prio=139 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34019  kworker/u16:15-1311  ( 1311) [006] d..2 82315.648881: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
34020          <idle>-0     (-----) [000] d..1 82315.648882: cpu_idle: state=0 cpu_id=0
34021          <idle>-0     (-----) [006] d..1 82315.648884: cpu_idle: state=0 cpu_id=6
34022 SDM_EventThread-644   (  619) [002] d..5 82315.648888: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=000
34023          <idle>-0     (-----) [000] .n.1 82315.648893: cpu_idle: state=4294967295 cpu_id=0
34024          <idle>-0     (-----) [000] d..2 82315.648900: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
34025<...>-8890 ( 8858) [000] .... 82315.648907: binder_transaction_received: transaction=1568775
34026 SDM_EventThread-644   (  619) [002] ...1 82315.648907: tracing_mark_write: E|619
34027<...>-9090 ( 9090) [001] d.s2 82315.648919: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
34028 SDM_EventThread-644   (  619) [002] d..4 82315.648924: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=007
34029          <idle>-0     (-----) [006] d.h2 82315.648934: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
34030          <idle>-0     (-----) [006] dnh2 82315.648935: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
34031          <idle>-0     (-----) [006] .n.1 82315.648937: cpu_idle: state=4294967295 cpu_id=6
34032          <idle>-0     (-----) [006] d..2 82315.648940: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
34033          <idle>-0     (-----) [007] dnh2 82315.648942: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=007
34034          <idle>-0     (-----) [007] .n.1 82315.648944: cpu_idle: state=4294967295 cpu_id=7
34035          <idle>-0     (-----) [007] d..2 82315.648946: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
34036 crtc_commit:111-321   (  321) [007] d..2 82315.648950: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34037          <idle>-0     (-----) [007] d..1 82315.648952: cpu_idle: state=0 cpu_id=7
34038<...>-8890 ( 8858) [000] ...1 82315.648959: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
34039 SDM_EventThread-644   (  619) [002] d..2 82315.648969: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
34040<...>-8890 ( 8858) [000] ...1 82315.648977: tracing_mark_write: E|8858
34041  kworker/u16:15-1311  ( 1311) [006] d..2 82315.649014: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34042<...>-8890 ( 8858) [000] d..2 82315.649016: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34043          <idle>-0     (-----) [006] d..1 82315.649017: cpu_idle: state=0 cpu_id=6
34044          <idle>-0     (-----) [000] d..1 82315.649030: cpu_idle: state=0 cpu_id=0
34045<...>-581 ( 571) [002] d..2 82315.649046: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34046          <idle>-0     (-----) [002] d..1 82315.649059: cpu_idle: state=0 cpu_id=2
34047          <idle>-0     (-----) [007] ...1 82315.649159: cpu_idle: state=4294967295 cpu_id=7
34048          <idle>-0     (-----) [007] d..1 82315.649160: cpu_idle: state=0 cpu_id=7
34049          <idle>-0     (-----) [006] ...1 82315.649207: cpu_idle: state=4294967295 cpu_id=6
34050          <idle>-0     (-----) [006] d..1 82315.649208: cpu_idle: state=0 cpu_id=6
34051<...>-9090 ( 9090) [001] d..3 82315.649371: sched_waking: comm=MetricsManager pid=9867 prio=139 target_cpu=000
34052<...>-9090 ( 9090) [001] d..4 82315.649384: sched_wakeup: comm=MetricsManager pid=9867 prio=139 target_cpu=000
34053          <idle>-0     (-----) [000] .n.1 82315.649389: cpu_idle: state=4294967295 cpu_id=0
34054          <idle>-0     (-----) [000] d..2 82315.649395: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MetricsManager next_pid=9867 next_prio=139
34055<...>-9867 ( 9090) [000] d..2 82315.649594: sched_switch: prev_comm=MetricsManager prev_pid=9867 prev_prio=139 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34056          <idle>-0     (-----) [000] d..1 82315.649604: cpu_idle: state=0 cpu_id=0
34057<...>-142 ( 142) [004] d.h1 82315.649616: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=004
34058<...>-142 ( 142) [004] d.h2 82315.649628: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=007
34059          <idle>-0     (-----) [007] .n.1 82315.649632: cpu_idle: state=4294967295 cpu_id=7
34060          <idle>-0     (-----) [007] d..2 82315.649634: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
34061        DispSync-8879  ( 8858) [007] d..1 82315.649653: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
34062        DispSync-8879  ( 8858) [007] d..1 82315.649667: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
34063          <idle>-0     (-----) [003] dnh2 82315.649674: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
34064          <idle>-0     (-----) [003] .n.1 82315.649681: cpu_idle: state=4294967295 cpu_id=3
34065          <idle>-0     (-----) [002] dnh2 82315.649684: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
34066        DispSync-8879  ( 8858) [007] d..2 82315.649686: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34067          <idle>-0     (-----) [007] d..1 82315.649689: cpu_idle: state=0 cpu_id=7
34068          <idle>-0     (-----) [003] d..2 82315.649690: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
34069          <idle>-0     (-----) [002] .n.1 82315.649691: cpu_idle: state=4294967295 cpu_id=2
34070          <idle>-0     (-----) [002] d..2 82315.649697: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
34071   sfEventThread-8882  ( 8858) [003] d..3 82315.649738: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=007
34072  appEventThread-8881  ( 8858) [002] d..3 82315.649755: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
34073          <idle>-0     (-----) [006] dnh2 82315.649762: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=006
34074          <idle>-0     (-----) [006] .n.1 82315.649764: cpu_idle: state=4294967295 cpu_id=6
34075          <idle>-0     (-----) [006] d..2 82315.649767: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
34076   sfEventThread-8882  ( 8858) [003] d..3 82315.649767: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
34077   sfEventThread-8882  ( 8858) [003] d..4 82315.649785: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
34078          <idle>-0     (-----) [007] dnh2 82315.649788: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
34079          <idle>-0     (-----) [007] .n.1 82315.649790: cpu_idle: state=4294967295 cpu_id=7
34080          <idle>-0     (-----) [000] .n.1 82315.649790: cpu_idle: state=4294967295 cpu_id=0
34081  appEventThread-8881  ( 8858) [002] d..3 82315.649791: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
34082          <idle>-0     (-----) [007] d..2 82315.649792: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
34083<...>-9090 ( 9090) [001] d..3 82315.649795: sched_waking: comm=MetricsManager pid=9867 prio=139 target_cpu=000
34084   sfEventThread-8882  ( 8858) [003] d..3 82315.649795: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=006
34085          <idle>-0     (-----) [000] d..2 82315.649796: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
34086<...>-9006 ( 8943) [006] d.h1 82315.649806: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=006
34087<...>-9006 ( 8943) [006] d.h1 82315.649808: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
34088<...>-9090 ( 9090) [001] d..4 82315.649811: sched_wakeup: comm=MetricsManager pid=9867 prio=139 target_cpu=000
34089   sfEventThread-8882  ( 8858) [003] d..2 82315.649832: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34090          <idle>-0     (-----) [003] d..1 82315.649840: cpu_idle: state=0 cpu_id=3
34091  appEventThread-8881  ( 8858) [002] d..2 82315.649844: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
34092<...>-9090 ( 9090) [001] d..2 82315.649898: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34093          <idle>-0     (-----) [001] d..1 82315.649912: cpu_idle: state=0 cpu_id=1
34094<...>-9105 ( 9105) [007] .... 82315.649947: binder_transaction: transaction=1568776 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
34095<...>-9105 ( 9105) [007] .... 82315.649950: binder_transaction_alloc_buf: transaction=1568776 data_size=80 offsets_size=0
34096<...>-9105 ( 9105) [007] d..4 82315.649951: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
34097<...>-9105 ( 9105) [007] d..5 82315.649962: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
34098<...>-9105 ( 9105) [007] d..3 82315.649984: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
34099<...>-9105 ( 9105) [007] d..4 82315.649990: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
34100<...>-9006 ( 8943) [006] .... 82315.650002: binder_transaction: transaction=1568777 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
34101<...>-9006 ( 8943) [006] .... 82315.650003: binder_transaction_alloc_buf: transaction=1568777 data_size=80 offsets_size=0
34102<...>-9006 ( 8943) [006] d..4 82315.650006: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
34103<...>-9006 ( 8943) [006] d..5 82315.650014: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
34104<...>-9005 ( 8943) [002] .... 82315.650019: binder_transaction: transaction=1568778 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
34105<...>-9005 ( 8943) [002] .... 82315.650021: binder_transaction_alloc_buf: transaction=1568778 data_size=80 offsets_size=0
34106<...>-9005 ( 8943) [002] d..4 82315.650025: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
34107<...>-142 ( 142) [004] dnh2 82315.650042: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
34108<...>-142 ( 142) [004] d..2 82315.650045: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
34109   Binder:8858_1-8871  ( 8858) [004] .... 82315.650052: binder_transaction_received: transaction=1568778
34110   Binder:8858_1-8871  ( 8858) [004] d..1 82315.650069: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
34111<...>-9006 ( 8943) [006] .... 82315.650071: binder_transaction: transaction=1568779 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
34112<...>-9006 ( 8943) [006] .... 82315.650072: binder_transaction_alloc_buf: transaction=1568779 data_size=684 offsets_size=32
34113<...>-9105 ( 9105) [007] d..2 82315.650076: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
34114<...>-9006 ( 8943) [006] ...2 82315.650080: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
34115<...>-9006 ( 8943) [006] d..4 82315.650082: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
34116          <idle>-0     (-----) [003] dnh2 82315.650083: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
34117          <idle>-0     (-----) [003] .n.1 82315.650087: cpu_idle: state=4294967295 cpu_id=3
34118<...>-9006 ( 8943) [006] d..5 82315.650089: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
34119          <idle>-0     (-----) [003] d..2 82315.650091: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
34120<...>-8874 ( 8858) [007] .... 82315.650092: binder_transaction_received: transaction=1568776
34121<...>-9006 ( 8943) [006] d..2 82315.650095: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
34122   Binder:8858_1-8871  ( 8858) [004] d..2 82315.650096: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
34123<...>-8951 ( 8858) [004] .... 82315.650099: binder_transaction_received: transaction=1568779
34124<...>-13083 ( 8858) [006] .... 82315.650100: binder_transaction_received: transaction=1568777
34125<...>-8874 ( 8858) [007] d..1 82315.650103: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
34126<...>-13083 ( 8858) [006] d..1 82315.650112: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
34127   sfEventThread-8882  ( 8858) [003] d..2 82315.650116: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34128<...>-8874 ( 8858) [007] d..2 82315.650121: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
34129          <idle>-0     (-----) [003] d..1 82315.650122: cpu_idle: state=0 cpu_id=3
34130          <idle>-0     (-----) [001] dnh2 82315.650122: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
34131          <idle>-0     (-----) [001] .n.1 82315.650127: cpu_idle: state=4294967295 cpu_id=1
34132          <idle>-0     (-----) [003] dnh2 82315.650130: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
34133<...>-13083 ( 8858) [006] d..2 82315.650131: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
34134          <idle>-0     (-----) [001] d..2 82315.650133: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
34135          <idle>-0     (-----) [003] .n.1 82315.650134: cpu_idle: state=4294967295 cpu_id=3
34136<...>-8951 ( 8858) [004] .... 82315.650138: binder_transaction: transaction=1568780 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
34137          <idle>-0     (-----) [003] d..2 82315.650139: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
34138<...>-8951 ( 8858) [004] .... 82315.650140: binder_transaction_alloc_buf: transaction=1568780 data_size=0 offsets_size=0
34139<...>-8951 ( 8858) [004] d..2 82315.650141: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=006
34140<...>-8951 ( 8858) [004] d..3 82315.650149: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
34141<...>-8951 ( 8858) [004] .... 82315.650150: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
34142   sfEventThread-8882  ( 8858) [003] d..2 82315.650155: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34143          <idle>-0     (-----) [003] d..1 82315.650161: cpu_idle: state=0 cpu_id=3
34144<...>-8951 ( 8858) [004] d..2 82315.650164: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
34145  appEventThread-8881  ( 8858) [001] d..2 82315.650164: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34146<...>-9006 ( 8943) [004] .... 82315.650167: binder_transaction_received: transaction=1568780
34147          <idle>-0     (-----) [001] d..1 82315.650172: cpu_idle: state=0 cpu_id=1
34148    RenderThread-9436  ( 9105) [007] d..1 82315.650184: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
34149    RenderThread-9436  ( 9105) [007] d..2 82315.650190: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
34150<...>-9006 ( 8943) [004] d..2 82315.650199: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
34151    RenderThread-9436  ( 9105) [007] .... 82315.650223: binder_transaction: transaction=1568781 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
34152    RenderThread-9436  ( 9105) [007] .... 82315.650224: binder_transaction_alloc_buf: transaction=1568781 data_size=104 offsets_size=0
34153    RenderThread-9436  ( 9105) [007] d..4 82315.650226: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
34154    RenderThread-9436  ( 9105) [007] d..5 82315.650234: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=007
34155    RenderThread-9436  ( 9105) [007] d..2 82315.650238: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
34156<...>-8951 ( 8858) [007] .... 82315.650242: binder_transaction_received: transaction=1568781
34157<...>-8951 ( 8858) [007] .... 82315.650269: binder_transaction: transaction=1568782 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
34158<...>-8951 ( 8858) [007] .... 82315.650270: binder_transaction_alloc_buf: transaction=1568782 data_size=52 offsets_size=8
34159<...>-8951 ( 8858) [007] d..2 82315.650275: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
34160<...>-8951 ( 8858) [007] d..3 82315.650279: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
34161<...>-8951 ( 8858) [007] d..2 82315.650288: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
34162<...>-9105 ( 9105) [007] d..2 82315.650319: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
34163    RenderThread-9436  ( 9105) [007] .... 82315.650321: binder_transaction_received: transaction=1568782
34164           <...>-27570 (-----) [005] .... 82315.650482: binder_transaction: transaction=1568783 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x9
34165           <...>-27570 (-----) [005] .... 82315.650483: binder_transaction_alloc_buf: transaction=1568783 data_size=116 offsets_size=8
34166           <...>-27570 (-----) [005] ...2 82315.650489: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
34167           <...>-27570 (-----) [005] d..4 82315.650490: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=007
34168           <...>-27570 (-----) [005] dn.5 82315.650499: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
34169           <...>-27570 (-----) [005] d..2 82315.650502: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
34170<...>-8951 ( 8858) [005] .... 82315.650506: binder_transaction_received: transaction=1568783
34171<...>-9005 ( 8943) [002] .... 82315.650534: binder_transaction: transaction=1568786 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
34172<...>-8951 ( 8858) [005] .... 82315.650536: binder_transaction: transaction=1568787 dest_node=1568784 dest_proc=27550 dest_thread=27570 reply=0 flags=0x10 code=0x2
34173<...>-9005 ( 8943) [002] .... 82315.650537: binder_transaction_alloc_buf: transaction=1568786 data_size=1292 offsets_size=64
34174<...>-8951 ( 8858) [005] .... 82315.650537: binder_transaction_alloc_buf: transaction=1568787 data_size=68 offsets_size=0
34175<...>-8951 ( 8858) [005] d..2 82315.650543: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
34176           <...>-27570 (-----) [005] .... 82315.650548: binder_transaction_received: transaction=1568787
34177<...>-9005 ( 8943) [002] ...2 82315.650554: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
34178<...>-9005 ( 8943) [002] d..4 82315.650556: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
34179<...>-9005 ( 8943) [002] dn.5 82315.650575: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=002
34180           <...>-27570 (-----) [005] .... 82315.650608: binder_transaction: transaction=1568788 dest_node=0 dest_proc=8858 dest_thread=8951 reply=1 flags=0x0 code=0x0
34181           <...>-27570 (-----) [005] .... 82315.650609: binder_transaction_alloc_buf: transaction=1568788 data_size=4 offsets_size=0
34182           <...>-27570 (-----) [005] d..2 82315.650610: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
34183           <...>-27570 (-----) [005] dn.3 82315.650614: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
34184           <...>-27570 (-----) [005] d..2 82315.650617: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
34185           <...>-27550 (-----) [006] d..2 82315.650619: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
34186<...>-8951 ( 8858) [005] .... 82315.650620: binder_transaction_received: transaction=1568788
34187<...>-8951 ( 8858) [005] .... 82315.650638: binder_transaction: transaction=1568789 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
34188<...>-8951 ( 8858) [005] .... 82315.650639: binder_transaction_alloc_buf: transaction=1568789 data_size=68 offsets_size=0
34189<...>-8951 ( 8858) [005] .... 82315.650640: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
34190<...>-13083 ( 8858) [006] .... 82315.650642: binder_transaction_received: transaction=1568786
34191<...>-9005 ( 8943) [002] d..2 82315.650647: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34192<...>-8951 ( 8858) [005] d..2 82315.650652: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
34193           <...>-27570 (-----) [005] .... 82315.650654: binder_transaction_received: transaction=1568789
34194          <idle>-0     (-----) [002] d..1 82315.650657: cpu_idle: state=0 cpu_id=2
34195<...>-13083 ( 8858) [006] .... 82315.650682: binder_transaction: transaction=1568790 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
34196<...>-13083 ( 8858) [006] .... 82315.650683: binder_transaction_alloc_buf: transaction=1568790 data_size=0 offsets_size=0
34197<...>-13083 ( 8858) [006] d..2 82315.650684: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=002
34198           <...>-27570 (-----) [005] .... 82315.650691: binder_transaction: transaction=1568791 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x11
34199<...>-13083 ( 8858) [006] .... 82315.650691: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
34200           <...>-27570 (-----) [005] .... 82315.650691: binder_transaction_alloc_buf: transaction=1568791 data_size=84 offsets_size=0
34201           <...>-27570 (-----) [005] ...2 82315.650692: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
34202           <...>-27570 (-----) [005] d..4 82315.650693: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
34203           <...>-27570 (-----) [005] dn.5 82315.650697: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
34204          <idle>-0     (-----) [002] dnh2 82315.650699: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=002
34205           <...>-27570 (-----) [005] d..2 82315.650699: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
34206<...>-8951 ( 8858) [005] .... 82315.650702: binder_transaction_received: transaction=1568791
34207          <idle>-0     (-----) [002] .n.1 82315.650702: cpu_idle: state=4294967295 cpu_id=2
34208          <idle>-0     (-----) [002] d..2 82315.650709: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
34209<...>-8951 ( 8858) [005] .... 82315.650711: binder_transaction: transaction=1568792 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
34210<...>-8951 ( 8858) [005] .... 82315.650712: binder_transaction_alloc_buf: transaction=1568792 data_size=4 offsets_size=0
34211<...>-9005 ( 8943) [002] .... 82315.650712: binder_transaction_received: transaction=1568790
34212<...>-8951 ( 8858) [005] .... 82315.650713: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
34213<...>-13083 ( 8858) [006] d..2 82315.650718: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
34214           <...>-27570 (-----) [006] .... 82315.650723: binder_transaction_received: transaction=1568792
34215<...>-8951 ( 8858) [005] d..3 82315.650729: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
34216<...>-8951 ( 8858) [005] d..2 82315.650738: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34217<...>-9005 ( 8943) [002] dnh1 82315.650741: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
34218<...>-9005 ( 8943) [002] d..2 82315.650747: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
34219          <idle>-0     (-----) [005] d..1 82315.650749: cpu_idle: state=0 cpu_id=5
34220           <...>-27570 (-----) [006] .... 82315.650762: binder_transaction: transaction=1568793 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
34221           <...>-27570 (-----) [006] .... 82315.650763: binder_transaction_alloc_buf: transaction=1568793 data_size=84 offsets_size=0
34222           <...>-27570 (-----) [006] ...2 82315.650764: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
34223           <...>-27570 (-----) [006] d..4 82315.650770: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
34224          <idle>-0     (-----) [005] .n.1 82315.650775: cpu_idle: state=4294967295 cpu_id=5
34225           <...>-27570 (-----) [006] dn.5 82315.650797: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
34226          <idle>-0     (-----) [005] d..2 82315.650799: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
34227           <...>-27570 (-----) [006] d..2 82315.650800: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
34228<...>-8951 ( 8858) [006] .... 82315.650803: binder_transaction_received: transaction=1568793
34229<...>-8951 ( 8858) [006] .... 82315.650813: binder_transaction: transaction=1568794 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
34230<...>-8951 ( 8858) [006] .... 82315.650814: binder_transaction_alloc_buf: transaction=1568794 data_size=8 offsets_size=0
34231<...>-8951 ( 8858) [006] .... 82315.650815: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
34232     migration/2-25    (   25) [002] d..2 82315.650819: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
34233<...>-8951 ( 8858) [006] d..2 82315.650849: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34234           <...>-27570 (-----) [002] .... 82315.650850: binder_transaction_received: transaction=1568794
34235<...>-9005 ( 8943) [005] d..2 82315.650851: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34236          <idle>-0     (-----) [006] d..1 82315.650854: cpu_idle: state=0 cpu_id=6
34237          <idle>-0     (-----) [005] d..1 82315.650855: cpu_idle: state=0 cpu_id=5
34238  surfaceflinger-8858  ( 8858) [000] ...1 82315.650871: tracing_mark_write: B|8858|HIDL::IComposerClient::createLayer::client
34239  surfaceflinger-8858  ( 8858) [000] ...1 82315.650876: tracing_mark_write: E|8858
34240  surfaceflinger-8858  ( 8858) [000] .... 82315.650906: binder_transaction: transaction=1568795 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x5
34241  surfaceflinger-8858  ( 8858) [000] .... 82315.650909: binder_transaction_alloc_buf: transaction=1568795 data_size=68 offsets_size=0
34242  surfaceflinger-8858  ( 8858) [000] ...2 82315.650914: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
34243  surfaceflinger-8858  ( 8858) [000] d..4 82315.650921: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
34244  surfaceflinger-8858  ( 8858) [000] d..5 82315.650940: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
34245          <idle>-0     (-----) [003] .n.1 82315.650944: cpu_idle: state=4294967295 cpu_id=3
34246          <idle>-0     (-----) [003] d..2 82315.650950: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
34247  surfaceflinger-8858  ( 8858) [000] d..2 82315.650951: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=MetricsManager next_pid=9867 next_prio=139
34248 [email protected]   (  619) [003] .... 82315.650957: binder_transaction_received: transaction=1568795
34249 [email protected]   (  619) [003] ...1 82315.650996: tracing_mark_write: B|619|HIDL::IComposerClient::createLayer::server
34250           <...>-27570 (-----) [002] d..2 82315.651012: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
34251           <...>-27570 (-----) [002] d..3 82315.651021: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
34252 [email protected]   (  619) [003] ...1 82315.651036: tracing_mark_write: E|619
34253    RenderThread-9436  ( 9105) [007] d..2 82315.651043: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
34254 [email protected]   (  619) [003] .... 82315.651044: binder_transaction: transaction=1568796 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
34255 [email protected]   (  619) [003] .... 82315.651047: binder_transaction_alloc_buf: transaction=1568796 data_size=16 offsets_size=0
34256          <idle>-0     (-----) [005] ...1 82315.651048: cpu_idle: state=4294967295 cpu_id=5
34257          <idle>-0     (-----) [007] d..1 82315.651048: cpu_idle: state=0 cpu_id=7
34258          <idle>-0     (-----) [005] d..1 82315.651049: cpu_idle: state=0 cpu_id=5
34259 [email protected]   (  619) [003] d..2 82315.651049: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
34260           <...>-27570 (-----) [002] .... 82315.651051: binder_transaction: transaction=1568797 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
34261           <...>-27570 (-----) [002] .... 82315.651054: binder_transaction_alloc_buf: transaction=1568797 data_size=84 offsets_size=0
34262           <...>-27570 (-----) [002] ...2 82315.651057: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
34263           <...>-27570 (-----) [002] d..4 82315.651059: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
34264 [email protected]   (  619) [003] d..3 82315.651064: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
34265 [email protected]   (  619) [003] .... 82315.651067: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
34266          <idle>-0     (-----) [001] .n.1 82315.651070: cpu_idle: state=4294967295 cpu_id=1
34267          <idle>-0     (-----) [006] dnh2 82315.651072: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
34268           <...>-27570 (-----) [002] d..2 82315.651074: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
34269          <idle>-0     (-----) [006] .n.1 82315.651074: cpu_idle: state=4294967295 cpu_id=6
34270          <idle>-0     (-----) [001] d..2 82315.651075: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
34271          <idle>-0     (-----) [006] d..2 82315.651077: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
34272<...>-8951 ( 8858) [006] .... 82315.651079: binder_transaction_received: transaction=1568797
34273  surfaceflinger-8858  ( 8858) [001] .... 82315.651080: binder_transaction_received: transaction=1568796
34274<...>-8951 ( 8858) [006] .... 82315.651084: binder_transaction: transaction=1568798 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
34275<...>-8951 ( 8858) [006] .... 82315.651085: binder_transaction_alloc_buf: transaction=1568798 data_size=8 offsets_size=0
34276<...>-8951 ( 8858) [006] d..2 82315.651085: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=002
34277<...>-8951 ( 8858) [006] d..3 82315.651094: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=006
34278<...>-8951 ( 8858) [006] .... 82315.651111: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
34279 [email protected]   (  619) [003] d..2 82315.651114: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34280<...>-8951 ( 8858) [006] d..2 82315.651120: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
34281          <idle>-0     (-----) [003] d..1 82315.651123: cpu_idle: state=0 cpu_id=3
34282           <...>-27570 (-----) [006] .... 82315.651123: binder_transaction_received: transaction=1568798
34283          <idle>-0     (-----) [007] d.h2 82315.651140: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
34284          <idle>-0     (-----) [007] d.h3 82315.651144: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
34285          <idle>-0     (-----) [007] dnh3 82315.651146: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
34286          <idle>-0     (-----) [007] .n.1 82315.651148: cpu_idle: state=4294967295 cpu_id=7
34287          <idle>-0     (-----) [007] d..2 82315.651151: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
34288<...>-581 ( 571) [002] d..2 82315.651151: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34289<...>-142 ( 142) [004] d..2 82315.651155: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
34290          <idle>-0     (-----) [002] d..1 82315.651160: cpu_idle: state=0 cpu_id=2
34291<...>-142 ( 142) [004] dn.3 82315.651161: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
34292<...>-142 ( 142) [004] d..2 82315.651166: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
34293           <...>-27570 (-----) [006] d..1 82315.651169: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
34294     kworker/4:1-25432 (25432) [004] d..3 82315.651171: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
34295<...>-9867 ( 9090) [000] d..1 82315.651178: sched_waking: comm=Primes-1 pid=10196 prio=120 target_cpu=001
34296           <...>-27570 (-----) [006] d..2 82315.651180: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
34297     kworker/4:1-25432 (25432) [004] d..2 82315.651182: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
34298          <idle>-0     (-----) [005] .n.1 82315.651184: cpu_idle: state=4294967295 cpu_id=5
34299          <idle>-0     (-----) [002] dnh2 82315.651186: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
34300           <...>-27570 (-----) [006] d..2 82315.651188: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34301          <idle>-0     (-----) [005] d..2 82315.651189: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
34302          <idle>-0     (-----) [002] .n.1 82315.651190: cpu_idle: state=4294967295 cpu_id=2
34303<...>-142 ( 142) [004] d..2 82315.651192: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34304<...>-9867 ( 9090) [000] d..2 82315.651192: sched_wakeup: comm=Primes-1 pid=10196 prio=120 target_cpu=001
34305          <idle>-0     (-----) [006] d..1 82315.651193: cpu_idle: state=0 cpu_id=6
34306          <idle>-0     (-----) [002] d..2 82315.651196: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
34307          <idle>-0     (-----) [004] d..1 82315.651203: cpu_idle: state=0 cpu_id=4
34308    RenderThread-9436  ( 9105) [007] .... 82315.651240: binder_transaction: transaction=1568799 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
34309    RenderThread-9436  ( 9105) [007] .... 82315.651242: binder_transaction_alloc_buf: transaction=1568799 data_size=192 offsets_size=8
34310<...>-9867 ( 9090) [000] d.h2 82315.651243: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=005
34311    RenderThread-9436  ( 9105) [007] d..4 82315.651245: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
34312  surfaceflinger-8858  ( 8858) [001] ...1 82315.651251: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
34313    RenderThread-9436  ( 9105) [007] dn.5 82315.651253: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=007
34314  surfaceflinger-8858  ( 8858) [001] ...1 82315.651254: tracing_mark_write: E|8858
34315    RenderThread-9436  ( 9105) [007] d..2 82315.651256: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
34316<...>-8951 ( 8858) [007] .... 82315.651260: binder_transaction_received: transaction=1568799
34317          <idle>-0     (-----) [004] dnh2 82315.651267: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=004
34318          <idle>-0     (-----) [004] .n.1 82315.651270: cpu_idle: state=4294967295 cpu_id=4
34319          <idle>-0     (-----) [004] d..2 82315.651273: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
34320  surfaceflinger-8858  ( 8858) [001] .... 82315.651283: binder_transaction: transaction=1568800 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
34321  surfaceflinger-8858  ( 8858) [001] .... 82315.651285: binder_transaction_alloc_buf: transaction=1568800 data_size=620 offsets_size=112
34322 kgsl_worker_thr-258   (  258) [004] d..2 82315.651302: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
34323<...>-8951 ( 8858) [007] .... 82315.651308: binder_transaction: transaction=1568801 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
34324<...>-8951 ( 8858) [007] .... 82315.651309: binder_transaction_alloc_buf: transaction=1568801 data_size=68 offsets_size=0
34325 kgsl_worker_thr-258   (  258) [004] d..3 82315.651310: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
34326          <idle>-0     (-----) [006] .n.1 82315.651314: cpu_idle: state=4294967295 cpu_id=6
34327          <idle>-0     (-----) [006] d..2 82315.651318: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
34328<...>-8951 ( 8858) [007] d..2 82315.651319: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
34329 kgsl_worker_thr-258   (  258) [004] d..2 82315.651320: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34330    RenderThread-9436  ( 9105) [007] .... 82315.651323: binder_transaction_received: transaction=1568801
34331          <idle>-0     (-----) [004] d..1 82315.651323: cpu_idle: state=0 cpu_id=4
34332  surfaceflinger-8858  ( 8858) [001] ...2 82315.651324: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
34333  surfaceflinger-8858  ( 8858) [001] d..4 82315.651327: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
34334  surfaceflinger-8858  ( 8858) [001] d..5 82315.651337: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
34335  kworker/u16:15-1311  ( 1311) [006] d..2 82315.651340: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34336          <idle>-0     (-----) [006] d..1 82315.651342: cpu_idle: state=0 cpu_id=6
34337          <idle>-0     (-----) [003] .n.1 82315.651343: cpu_idle: state=4294967295 cpu_id=3
34338  surfaceflinger-8858  ( 8858) [001] d..2 82315.651348: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=Primes-1 next_pid=10196 next_prio=120
34339          <idle>-0     (-----) [003] d..2 82315.651349: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
34340 [email protected]   (  619) [003] .... 82315.651352: binder_transaction_received: transaction=1568800
34341    RenderThread-9436  ( 9105) [007] d..2 82315.651353: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34342          <idle>-0     (-----) [007] d..1 82315.651357: cpu_idle: state=0 cpu_id=7
34343 [email protected]   (  619) [003] ...1 82315.651371: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
34344<...>-9867 ( 9090) [000] d..2 82315.651409: sched_switch: prev_comm=MetricsManager prev_pid=9867 prev_prio=139 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34345          <idle>-0     (-----) [000] d..1 82315.651422: cpu_idle: state=0 cpu_id=0
34346<...>-821 ( 821) [002] d..2 82315.651433: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34347 [email protected]   (  619) [003] ...1 82315.651436: tracing_mark_write: B|619|HIDL::IMapper::importBuffer::passthrough
34348          <idle>-0     (-----) [002] d..1 82315.651442: cpu_idle: state=0 cpu_id=2
34349 [email protected]   (  619) [003] ...1 82315.651484: tracing_mark_write: E|619
34350          <idle>-0     (-----) [004] ...1 82315.651513: cpu_idle: state=4294967295 cpu_id=4
34351          <idle>-0     (-----) [004] d..1 82315.651515: cpu_idle: state=0 cpu_id=4
34352 [email protected]   (  619) [003] ...1 82315.651556: tracing_mark_write: B|619|HWCSession::PresentDisplay::
34353          <idle>-0     (-----) [006] ...1 82315.651557: cpu_idle: state=4294967295 cpu_id=6
34354          <idle>-0     (-----) [006] d..1 82315.651558: cpu_idle: state=0 cpu_id=6
34355           <...>-27550 (-----) [005] d..3 82315.651560: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=006
34356           <...>-27550 (-----) [005] d..4 82315.651568: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=006
34357<...>-10196 ( 9090) [001] d..3 82315.651572: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
34358          <idle>-0     (-----) [006] .n.1 82315.651572: cpu_idle: state=4294967295 cpu_id=6
34359          <idle>-0     (-----) [006] d..2 82315.651575: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
34360           <...>-27550 (-----) [005] d..2 82315.651576: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34361          <idle>-0     (-----) [005] d..1 82315.651582: cpu_idle: state=0 cpu_id=5
34362<...>-10196 ( 9090) [001] d..4 82315.651591: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
34363          <idle>-0     (-----) [000] .n.1 82315.651597: cpu_idle: state=4294967295 cpu_id=0
34364          <idle>-0     (-----) [000] d..2 82315.651604: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
34365<...>-9090 ( 9090) [000] d..2 82315.651640: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34366          <idle>-0     (-----) [000] d..1 82315.651647: cpu_idle: state=0 cpu_id=0
34367           <...>-27570 (-----) [006] d..1 82315.651649: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
34368           <...>-27570 (-----) [006] d..2 82315.651656: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
34369          <idle>-0     (-----) [005] .n.1 82315.651660: cpu_idle: state=4294967295 cpu_id=5
34370          <idle>-0     (-----) [005] d..2 82315.651664: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
34371           <...>-27570 (-----) [006] .... 82315.651671: binder_transaction: transaction=1568802 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
34372           <...>-27570 (-----) [006] .... 82315.651673: binder_transaction_alloc_buf: transaction=1568802 data_size=104 offsets_size=0
34373           <...>-27570 (-----) [006] ...2 82315.651674: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
34374           <...>-27570 (-----) [006] d..4 82315.651675: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=007
34375           <...>-27550 (-----) [005] d..2 82315.651680: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34376           <...>-27570 (-----) [006] dn.5 82315.651682: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
34377          <idle>-0     (-----) [005] d..1 82315.651683: cpu_idle: state=0 cpu_id=5
34378           <...>-27570 (-----) [006] d..2 82315.651685: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
34379<...>-8951 ( 8858) [006] .... 82315.651689: binder_transaction_received: transaction=1568802
34380<...>-8951 ( 8858) [006] ...1 82315.651708: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
34381<...>-8951 ( 8858) [006] ...1 82315.651719: tracing_mark_write: B|8858|FreeBuffer
34382<...>-8951 ( 8858) [006] d..2 82315.651730: sched_waking: comm=system pid=104 prio=120 target_cpu=003
34383<...>-8951 ( 8858) [006] d..3 82315.651745: sched_wakeup: comm=system pid=104 prio=120 target_cpu=004
34384          <idle>-0     (-----) [004] .n.1 82315.651749: cpu_idle: state=4294967295 cpu_id=4
34385          <idle>-0     (-----) [004] d..2 82315.651763: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system next_pid=104 next_prio=120
34386<...>-8951 ( 8858) [006] ...1 82315.651767: tracing_mark_write: E|8858
34387<...>-8951 ( 8858) [006] ...1 82315.651768: tracing_mark_write: B|8858|FreeBuffer
34388<...>-8951 ( 8858) [006] ...1 82315.651797: tracing_mark_write: E|8858
34389<...>-8951 ( 8858) [006] ...1 82315.651799: tracing_mark_write: E|8858
34390<...>-8951 ( 8858) [006] ...1 82315.651812: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
34391          <idle>-0     (-----) [007] d.s2 82315.651817: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
34392<...>-8951 ( 8858) [006] ...1 82315.651818: tracing_mark_write: E|8858
34393          <idle>-0     (-----) [007] dns3 82315.651823: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
34394<...>-8951 ( 8858) [006] ...1 82315.651824: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
34395<...>-8951 ( 8858) [006] ...1 82315.651825: tracing_mark_write: E|8858
34396          <idle>-0     (-----) [007] .n.1 82315.651826: cpu_idle: state=4294967295 cpu_id=7
34397          <idle>-0     (-----) [007] d..2 82315.651829: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34398<...>-8951 ( 8858) [006] .... 82315.651835: binder_transaction: transaction=1568803 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
34399<...>-8951 ( 8858) [006] .... 82315.651837: binder_transaction_alloc_buf: transaction=1568803 data_size=136 offsets_size=16
34400<...>-8951 ( 8858) [006] ...2 82315.651840: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
34401<...>-8951 ( 8858) [006] d..4 82315.651841: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=001
34402     rcu_preempt-7     (    7) [007] d..2 82315.651843: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34403          <idle>-0     (-----) [007] d..1 82315.651846: cpu_idle: state=0 cpu_id=7
34404<...>-8951 ( 8858) [006] d..5 82315.651856: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=005
34405          <idle>-0     (-----) [005] .n.1 82315.651860: cpu_idle: state=4294967295 cpu_id=5
34406          <idle>-0     (-----) [005] d..2 82315.651875: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
34407<...>-8951 ( 8858) [006] d..2 82315.651877: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
34408<...>-1127 ( 621) [005] .... 82315.651882: binder_transaction_received: transaction=1568803
34409           <...>-27570 (-----) [006] d..2 82315.651888: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34410          <idle>-0     (-----) [006] d..1 82315.651893: cpu_idle: state=0 cpu_id=6
34411<...>-1127 ( 621) [005] ...1 82315.651912: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
34412<...>-1127 ( 621) [005] ...1 82315.651953: tracing_mark_write: B|621|AllocBuffer
34413<...>-1127 ( 621) [005] ...1 82315.651960: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9469952
34414 [email protected]   (  619) [003] ...1 82315.652085: tracing_mark_write: B|619|HWDeviceDRM::Validate::
34415          <idle>-0     (-----) [006] ...1 82315.652148: cpu_idle: state=4294967295 cpu_id=6
34416          <idle>-0     (-----) [006] d..1 82315.652149: cpu_idle: state=0 cpu_id=6
34417          <idle>-0     (-----) [002] ...1 82315.652687: cpu_idle: state=4294967295 cpu_id=2
34418          <idle>-0     (-----) [002] d..1 82315.652690: cpu_idle: state=0 cpu_id=2
34419          <idle>-0     (-----) [000] ...1 82315.652804: cpu_idle: state=4294967295 cpu_id=0
34420          <idle>-0     (-----) [000] d..1 82315.652807: cpu_idle: state=0 cpu_id=0
34421 [email protected]   (  619) [003] ...1 82315.652882: tracing_mark_write: E|619
34422<...>-10196 ( 9090) [001] d..1 82315.652938: sched_waking: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=000
34423<...>-10196 ( 9090) [001] d..2 82315.652955: sched_wakeup: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=000
34424          <idle>-0     (-----) [000] .n.1 82315.652959: cpu_idle: state=4294967295 cpu_id=0
34425          <idle>-0     (-----) [000] d..2 82315.652966: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GAC_Executor[1] next_pid=10009 next_prio=120
34426 [email protected]   (  619) [003] ...1 82315.652991: tracing_mark_write: B|619|HWDeviceDRM::Commit::
34427 [email protected]   (  619) [003] ...1 82315.652998: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
34428          system-104   (  104) [004] d..2 82315.652998: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34429          <idle>-0     (-----) [004] d..1 82315.653002: cpu_idle: state=0 cpu_id=4
34430<...>-10196 ( 9090) [001] d..3 82315.653258: sched_waking: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=001
34431<...>-1127 ( 621) [005] ...1 82315.653266: tracing_mark_write: E|621
34432<...>-1127 ( 621) [005] ...1 82315.653268: tracing_mark_write: B|621|ION_IOC_MAP
34433<...>-10196 ( 9090) [001] d..4 82315.653278: sched_wakeup: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=000
34434<...>-1127 ( 621) [005] ...1 82315.653279: tracing_mark_write: E|621
34435<...>-1127 ( 621) [005] ...1 82315.653281: tracing_mark_write: E|621
34436<...>-1127 ( 621) [005] ...1 82315.653283: tracing_mark_write: B|621|AllocBuffer
34437<...>-1127 ( 621) [005] ...1 82315.653286: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
34438<...>-1127 ( 621) [005] ...1 82315.653291: tracing_mark_write: E|621
34439<...>-1127 ( 621) [005] ...1 82315.653292: tracing_mark_write: B|621|ION_IOC_MAP
34440<...>-1127 ( 621) [005] ...1 82315.653294: tracing_mark_write: E|621
34441<...>-1127 ( 621) [005] ...1 82315.653295: tracing_mark_write: E|621
34442<...>-10009 ( 9090) [000] .... 82315.653314: binder_transaction: transaction=1568804 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
34443<...>-10009 ( 9090) [000] .... 82315.653318: binder_transaction_alloc_buf: transaction=1568804 data_size=132 offsets_size=0
34444<...>-10009 ( 9090) [000] d..4 82315.653323: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=001
34445<...>-1127 ( 621) [005] ...1 82315.653335: tracing_mark_write: E|621
34446<...>-1127 ( 621) [005] .... 82315.653341: binder_transaction: transaction=1568805 dest_node=0 dest_proc=8858 dest_thread=8951 reply=1 flags=0x0 code=0x0
34447<...>-1127 ( 621) [005] .... 82315.653342: binder_transaction_alloc_buf: transaction=1568805 data_size=172 offsets_size=32
34448<...>-1127 ( 621) [005] d..2 82315.653347: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
34449          <idle>-0     (-----) [006] dnh2 82315.653375: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
34450          <idle>-0     (-----) [006] .n.1 82315.653380: cpu_idle: state=4294967295 cpu_id=6
34451<...>-1127 ( 621) [005] d..3 82315.653381: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
34452<...>-10009 ( 9090) [000] d..2 82315.653382: sched_switch: prev_comm=GAC_Executor[1] prev_pid=10009 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
34453<...>-1127 ( 621) [005] .... 82315.653382: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
34454          <idle>-0     (-----) [006] d..2 82315.653384: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
34455<...>-10196 ( 9090) [001] d..2 82315.653387: sched_switch: prev_comm=Primes-1 prev_pid=10196 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34456<...>-25493 ( 8943) [006] .... 82315.653389: binder_transaction_received: transaction=1568804
34457<...>-1127 ( 621) [005] ...1 82315.653392: tracing_mark_write: B|621|FreeBuffer
34458<...>-1127 ( 621) [005] ...1 82315.653396: tracing_mark_write: E|621
34459<...>-1127 ( 621) [005] ...1 82315.653397: tracing_mark_write: B|621|FreeBuffer
34460<...>-1127 ( 621) [005] ...1 82315.653398: tracing_mark_write: B|621|UnmapBuffer
34461          <idle>-0     (-----) [001] d..1 82315.653402: cpu_idle: state=0 cpu_id=1
34462<...>-1127 ( 621) [005] ...1 82315.653414: tracing_mark_write: E|621
34463<...>-1127 ( 621) [005] ...1 82315.653416: tracing_mark_write: E|621
34464 [email protected]   (  619) [003] d..2 82315.653428: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=007
34465<...>-1127 ( 621) [005] d..2 82315.653430: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
34466<...>-8951 ( 8858) [005] .... 82315.653435: binder_transaction_received: transaction=1568805
34467          <idle>-0     (-----) [007] dnh2 82315.653448: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=007
34468          <idle>-0     (-----) [007] .n.1 82315.653450: cpu_idle: state=4294967295 cpu_id=7
34469<...>-8951 ( 8858) [005] ...1 82315.653452: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
34470          <idle>-0     (-----) [007] d..2 82315.653453: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
34471<...>-8951 ( 8858) [005] ...1 82315.653467: tracing_mark_write: E|8858
34472<...>-8951 ( 8858) [005] ...1 82315.653481: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
34473<...>-8951 ( 8858) [005] ...1 82315.653483: tracing_mark_write: E|8858
34474 [email protected]   (  619) [003] ...1 82315.653504: tracing_mark_write: E|619
34475<...>-8951 ( 8858) [005] .... 82315.653506: binder_transaction: transaction=1568806 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
34476<...>-8951 ( 8858) [005] .... 82315.653507: binder_transaction_alloc_buf: transaction=1568806 data_size=28 offsets_size=0
34477 [email protected]   (  619) [003] ...1 82315.653508: tracing_mark_write: E|619
34478<...>-8951 ( 8858) [005] d..2 82315.653508: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=006
34479<...>-8951 ( 8858) [005] d..3 82315.653516: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=005
34480<...>-8951 ( 8858) [005] .... 82315.653517: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
34481<...>-8951 ( 8858) [005] d..2 82315.653529: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
34482           <...>-27570 (-----) [005] .... 82315.653532: binder_transaction_received: transaction=1568806
34483 [email protected]   (  619) [003] ...1 82315.653547: tracing_mark_write: E|619
34484           <...>-27570 (-----) [005] .... 82315.653559: binder_transaction: transaction=1568807 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
34485           <...>-27570 (-----) [005] .... 82315.653560: binder_transaction_alloc_buf: transaction=1568807 data_size=84 offsets_size=0
34486           <...>-27570 (-----) [005] ...2 82315.653561: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
34487           <...>-27570 (-----) [005] d..4 82315.653562: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
34488           <...>-27570 (-----) [005] dn.5 82315.653566: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
34489           <...>-27570 (-----) [005] d..2 82315.653569: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
34490<...>-8951 ( 8858) [005] .... 82315.653572: binder_transaction_received: transaction=1568807
34491 [email protected]   (  619) [003] ...1 82315.653579: tracing_mark_write: E|619
34492<...>-8951 ( 8858) [005] .... 82315.653589: binder_transaction: transaction=1568809 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
34493 [email protected]   (  619) [003] .... 82315.653590: binder_transaction: transaction=1568808 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
34494<...>-8951 ( 8858) [005] .... 82315.653590: binder_transaction_alloc_buf: transaction=1568809 data_size=208 offsets_size=16
34495 [email protected]   (  619) [003] .... 82315.653592: binder_transaction_alloc_buf: transaction=1568808 data_size=576 offsets_size=112
34496 [email protected]   (  619) [003] d..2 82315.653603: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
34497<...>-8951 ( 8858) [005] .... 82315.653613: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
34498 [email protected]   (  619) [003] d..3 82315.653616: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
34499 [email protected]   (  619) [003] .... 82315.653618: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
34500          <idle>-0     (-----) [001] .n.1 82315.653622: cpu_idle: state=4294967295 cpu_id=1
34501<...>-8951 ( 8858) [005] d..2 82315.653626: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
34502          <idle>-0     (-----) [001] d..2 82315.653628: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
34503           <...>-27570 (-----) [005] .... 82315.653629: binder_transaction_received: transaction=1568809
34504  surfaceflinger-8858  ( 8858) [001] .... 82315.653635: binder_transaction_received: transaction=1568808
34505           <...>-27570 (-----) [005] ...1 82315.653667: tracing_mark_write: B|27550|HIDL::IServiceManager::getTransport::client
34506           <...>-27570 (-----) [005] ...1 82315.653669: tracing_mark_write: E|27550
34507 [email protected]   (  619) [003] d..2 82315.653673: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
34508           <...>-27570 (-----) [005] .... 82315.653686: binder_transaction: transaction=1568810 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x3
34509          <idle>-0     (-----) [003] d..1 82315.653687: cpu_idle: state=0 cpu_id=3
34510           <...>-27570 (-----) [005] .... 82315.653687: binder_transaction_alloc_buf: transaction=1568810 data_size=204 offsets_size=32
34511           <...>-27570 (-----) [005] ...2 82315.653690: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
34512           <...>-27570 (-----) [005] d..4 82315.653691: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=001
34513           <...>-27570 (-----) [005] d..2 82315.653709: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34514          <idle>-0     (-----) [002] dnh2 82315.653712: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=002
34515          <idle>-0     (-----) [002] .n.1 82315.653715: cpu_idle: state=4294967295 cpu_id=2
34516          <idle>-0     (-----) [005] d..1 82315.653718: cpu_idle: state=0 cpu_id=5
34517          <idle>-0     (-----) [002] d..2 82315.653721: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=586 next_prio=110
34518<...>-586 ( 586) [002] .... 82315.653729: binder_transaction_received: transaction=1568810
34519<...>-25493 ( 8943) [006] .... 82315.653754: binder_transaction: transaction=1568811 dest_node=0 dest_proc=9090 dest_thread=10009 reply=1 flags=0x0 code=0x0
34520<...>-25493 ( 8943) [006] .... 82315.653757: binder_transaction_alloc_buf: transaction=1568811 data_size=3152 offsets_size=0
34521<...>-25493 ( 8943) [006] d..2 82315.653759: sched_waking: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=000
34522<...>-9833 ( 9090) [000] dnh1 82315.653777: sched_wakeup: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=000
34523<...>-25493 ( 8943) [006] d..2 82315.653780: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34524<...>-9833 ( 9090) [000] d..2 82315.653784: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=R ==> next_comm=GAC_Executor[1] next_pid=10009 next_prio=120
34525          <idle>-0     (-----) [006] d..1 82315.653784: cpu_idle: state=0 cpu_id=6
34526<...>-10009 ( 9090) [000] .... 82315.653789: binder_transaction_received: transaction=1568811
34527<...>-10009 ( 9090) [000] .... 82315.653970: binder_transaction: transaction=1568812 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
34528<...>-10009 ( 9090) [000] .... 82315.653973: binder_transaction_alloc_buf: transaction=1568812 data_size=140 offsets_size=0
34529          <idle>-0     (-----) [005] ...1 82315.653975: cpu_idle: state=4294967295 cpu_id=5
34530<...>-10009 ( 9090) [000] d..4 82315.653975: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
34531          <idle>-0     (-----) [005] d..1 82315.653976: cpu_idle: state=0 cpu_id=5
34532          <idle>-0     (-----) [006] dnh2 82315.653990: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
34533<...>-10009 ( 9090) [000] d..2 82315.653992: sched_switch: prev_comm=GAC_Executor[1] prev_pid=10009 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
34534          <idle>-0     (-----) [006] .n.1 82315.653992: cpu_idle: state=4294967295 cpu_id=6
34535  surfaceflinger-8858  ( 8858) [001] d..2 82315.653996: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34536          <idle>-0     (-----) [006] d..2 82315.653996: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
34537<...>-25493 ( 8943) [006] .... 82315.653997: binder_transaction_received: transaction=1568812
34538          <idle>-0     (-----) [001] d..1 82315.654005: cpu_idle: state=0 cpu_id=1
34539<...>-9833 ( 9090) [000] .... 82315.654121: binder_transaction: transaction=1568813 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x19
34540<...>-9833 ( 9090) [000] .... 82315.654124: binder_transaction_alloc_buf: transaction=1568813 data_size=424 offsets_size=16
34541<...>-586 ( 586) [002] .... 82315.654191: binder_transaction: transaction=1568816 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
34542<...>-586 ( 586) [002] .... 82315.654194: binder_transaction_alloc_buf: transaction=1568816 data_size=8 offsets_size=0
34543<...>-586 ( 586) [002] d..2 82315.654196: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=005
34544<...>-25493 ( 8943) [006] .... 82315.654199: binder_transaction: transaction=1568817 dest_node=0 dest_proc=9090 dest_thread=10009 reply=1 flags=0x0 code=0x0
34545<...>-25493 ( 8943) [006] .... 82315.654200: binder_transaction_alloc_buf: transaction=1568817 data_size=3372 offsets_size=0
34546<...>-25493 ( 8943) [006] d..2 82315.654202: sched_waking: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=000
34547<...>-586 ( 586) [002] .... 82315.654206: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
34548          <idle>-0     (-----) [005] dnh2 82315.654211: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=005
34549          <idle>-0     (-----) [005] .n.1 82315.654213: cpu_idle: state=4294967295 cpu_id=5
34550          <idle>-0     (-----) [005] d..2 82315.654216: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
34551           <...>-27570 (-----) [005] .... 82315.654218: binder_transaction_received: transaction=1568816
34552          <idle>-0     (-----) [001] dnh2 82315.654221: sched_wakeup: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=001
34553<...>-25493 ( 8943) [006] d..2 82315.654224: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34554          <idle>-0     (-----) [001] .n.1 82315.654226: cpu_idle: state=4294967295 cpu_id=1
34555          <idle>-0     (-----) [006] d..1 82315.654229: cpu_idle: state=0 cpu_id=6
34556          <idle>-0     (-----) [001] d..2 82315.654232: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GAC_Executor[1] next_pid=10009 next_prio=120
34557<...>-10009 ( 9090) [001] .... 82315.654237: binder_transaction_received: transaction=1568817
34558<...>-586 ( 586) [002] d..2 82315.654242: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34559          <idle>-0     (-----) [002] d..1 82315.654251: cpu_idle: state=0 cpu_id=2
34560<...>-9833 ( 9090) [000] d..4 82315.654358: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
34561<...>-9833 ( 9090) [000] dn.5 82315.654374: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
34562<...>-9833 ( 9090) [000] d..2 82315.654407: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
34563<...>-25493 ( 8943) [000] .... 82315.654413: binder_transaction_received: transaction=1568813
34564          <idle>-0     (-----) [006] ...1 82315.654523: cpu_idle: state=4294967295 cpu_id=6
34565          <idle>-0     (-----) [006] d..1 82315.654524: cpu_idle: state=0 cpu_id=6
34566<...>-10009 ( 9090) [001] d..2 82315.654579: sched_switch: prev_comm=GAC_Executor[1] prev_pid=10009 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34567          <idle>-0     (-----) [001] d..1 82315.654590: cpu_idle: state=0 cpu_id=1
34568           <...>-27570 (-----) [005] ...1 82315.654791: tracing_mark_write: B|27550|HIDL::IServiceManager::registerPassthroughClient::client
34569           <...>-27570 (-----) [005] ...1 82315.654793: tracing_mark_write: E|27550
34570           <...>-27570 (-----) [005] .... 82315.654802: binder_transaction: transaction=1568818 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x8
34571           <...>-27570 (-----) [005] .... 82315.654803: binder_transaction_alloc_buf: transaction=1568818 data_size=204 offsets_size=32
34572           <...>-27570 (-----) [005] ...2 82315.654804: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
34573           <...>-27570 (-----) [005] d..4 82315.654805: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=002
34574           <...>-27570 (-----) [005] d..2 82315.654818: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
34575          <idle>-0     (-----) [002] dnh2 82315.654820: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=002
34576          <idle>-0     (-----) [002] .n.1 82315.654824: cpu_idle: state=4294967295 cpu_id=2
34577          <idle>-0     (-----) [005] d..1 82315.654824: cpu_idle: state=0 cpu_id=5
34578          <idle>-0     (-----) [002] d..2 82315.654830: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=586 next_prio=110
34579<...>-586 ( 586) [002] .... 82315.654833: binder_transaction_received: transaction=1568818
34580<...>-25493 ( 8943) [000] .... 82315.654950: binder_transaction: transaction=1568819 dest_node=1568814 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x1
34581<...>-25493 ( 8943) [000] .... 82315.654953: binder_transaction_alloc_buf: transaction=1568819 data_size=296 offsets_size=8
34582<...>-25493 ( 8943) [000] d..4 82315.654965: sched_waking: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=000
34583<...>-586 ( 586) [002] .... 82315.654975: binder_transaction: transaction=1568820 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
34584<...>-586 ( 586) [002] .... 82315.654978: binder_transaction_alloc_buf: transaction=1568820 data_size=4 offsets_size=0
34585<...>-586 ( 586) [002] d..2 82315.654980: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=005
34586<...>-25493 ( 8943) [000] d..5 82315.654985: sched_wakeup: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=001
34587<...>-586 ( 586) [002] .... 82315.654989: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
34588          <idle>-0     (-----) [001] .n.1 82315.654990: cpu_idle: state=4294967295 cpu_id=1
34589          <idle>-0     (-----) [005] dnh2 82315.654993: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=005
34590          <idle>-0     (-----) [005] .n.1 82315.654996: cpu_idle: state=4294967295 cpu_id=5
34591          <idle>-0     (-----) [001] d..2 82315.654997: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9090_5 next_pid=10478 next_prio=120
34592          <idle>-0     (-----) [005] d..2 82315.654999: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
34593           <...>-27570 (-----) [005] .... 82315.655001: binder_transaction_received: transaction=1568820
34594   Binder:9090_5-10478 ( 9090) [001] .... 82315.655002: binder_transaction_received: transaction=1568819
34595          <idle>-0     (-----) [003] ...1 82315.655006: cpu_idle: state=4294967295 cpu_id=3
34596          <idle>-0     (-----) [003] d..1 82315.655008: cpu_idle: state=0 cpu_id=3
34597<...>-586 ( 586) [002] d..2 82315.655020: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34598          <idle>-0     (-----) [002] d..1 82315.655028: cpu_idle: state=0 cpu_id=2
34599           <...>-27570 (-----) [005] ...1 82315.655055: tracing_mark_write: B|27550|HIDL::IMapper::interfaceChain::passthrough
34600           <...>-27570 (-----) [005] ...1 82315.655058: tracing_mark_write: E|27550
34601<...>-25493 ( 8943) [000] .... 82315.655064: binder_transaction: transaction=1568821 dest_node=0 dest_proc=9090 dest_thread=9833 reply=1 flags=0x0 code=0x0
34602           <...>-27570 (-----) [005] ...1 82315.655066: tracing_mark_write: B|27550|HIDL::IMapper::interfaceChain::passthrough
34603<...>-25493 ( 8943) [000] .... 82315.655067: binder_transaction_alloc_buf: transaction=1568821 data_size=8 offsets_size=0
34604           <...>-27570 (-----) [005] ...1 82315.655068: tracing_mark_write: E|27550
34605           <...>-27570 (-----) [005] ...1 82315.655086: tracing_mark_write: B|27550|HIDL::IMapper::importBuffer::passthrough
34606<...>-25493 ( 8943) [000] d..2 82315.655090: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
34607<...>-9833 ( 9090) [000] .... 82315.655097: binder_transaction_received: transaction=1568821
34608   Binder:9090_5-10478 ( 9090) [001] d..3 82315.655137: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
34609           <...>-27570 (-----) [005] ...1 82315.655143: tracing_mark_write: E|27550
34610           <...>-27570 (-----) [005] ...1 82315.655148: tracing_mark_write: B|27550|HIDL::IMapper::validateBufferSize::passthrough
34611   Binder:9090_5-10478 ( 9090) [001] d..4 82315.655152: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
34612   Binder:9090_5-10478 ( 9090) [001] d..2 82315.655188: sched_switch: prev_comm=Binder:9090_5 prev_pid=10478 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
34613<...>-9833 ( 9090) [000] d..1 82315.655203: sched_waking: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=001
34614<...>-9833 ( 9090) [000] dn.2 82315.655219: sched_wakeup: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=000
34615<...>-9833 ( 9090) [000] d..2 82315.655225: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=R+ ==> next_comm=GAC_Executor[1] next_pid=10009 next_prio=120
34616<...>-10009 ( 9090) [000] d..2 82315.655236: sched_switch: prev_comm=GAC_Executor[1] prev_pid=10009 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
34617<...>-9833 ( 9090) [000] d..1 82315.655239: sched_waking: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=000
34618<...>-9833 ( 9090) [000] dn.2 82315.655246: sched_wakeup: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=000
34619<...>-9833 ( 9090) [000] d..2 82315.655250: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=R+ ==> next_comm=GAC_Executor[1] next_pid=10009 next_prio=120
34620<...>-9090 ( 9090) [001] d..2 82315.655284: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34621          <idle>-0     (-----) [001] d..1 82315.655294: cpu_idle: state=0 cpu_id=1
34622<...>-10009 ( 9090) [000] d..1 82315.655335: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
34623<...>-10009 ( 9090) [000] d..2 82315.655346: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
34624          <idle>-0     (-----) [001] .n.1 82315.655352: cpu_idle: state=4294967295 cpu_id=1
34625          <idle>-0     (-----) [001] d..2 82315.655359: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
34626<...>-10009 ( 9090) [000] d..2 82315.655388: sched_switch: prev_comm=GAC_Executor[1] prev_pid=10009 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
34627<...>-9833 ( 9090) [000] d..2 82315.655438: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34628<...>-9090 ( 9090) [001] d..3 82315.655447: sched_waking: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=000
34629          <idle>-0     (-----) [000] d..1 82315.655450: cpu_idle: state=0 cpu_id=0
34630<...>-9090 ( 9090) [001] d..4 82315.655458: sched_wakeup: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=000
34631          <idle>-0     (-----) [000] .n.1 82315.655464: cpu_idle: state=4294967295 cpu_id=0
34632          <idle>-0     (-----) [000] d..2 82315.655471: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
34633           <...>-27570 (-----) [005] d..2 82315.655534: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
34634          <idle>-0     (-----) [002] dnh2 82315.655550: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
34635          <idle>-0     (-----) [002] .n.1 82315.655555: cpu_idle: state=4294967295 cpu_id=2
34636          <idle>-0     (-----) [002] d..2 82315.655561: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
34637           <...>-27570 (-----) [005] ...1 82315.655565: tracing_mark_write: E|27550
34638           <...>-27570 (-----) [005] ...1 82315.655570: tracing_mark_write: B|27550|HIDL::IMapper::getTransportSize::passthrough
34639           <...>-27570 (-----) [005] ...1 82315.655571: tracing_mark_write: E|27550
34640<...>-9090 ( 9090) [001] d..1 82315.655648: sched_waking: comm=GAC_Executor[0] pid=9869 prio=120 target_cpu=000
34641<...>-581 ( 571) [002] d..2 82315.655649: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34642          <idle>-0     (-----) [002] d..1 82315.655657: cpu_idle: state=0 cpu_id=2
34643<...>-9090 ( 9090) [001] d..2 82315.655664: sched_wakeup: comm=GAC_Executor[0] pid=9869 prio=120 target_cpu=000
34644<...>-9833 ( 9090) [000] d..2 82315.655675: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=R ==> next_comm=GAC_Executor[0] next_pid=9869 next_prio=120
34645<...>-9090 ( 9090) [001] d..2 82315.655713: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34646          <idle>-0     (-----) [001] d..1 82315.655722: cpu_idle: state=0 cpu_id=1
34647<...>-9869 ( 9090) [000] .... 82315.655984: binder_transaction: transaction=1568822 dest_node=1421753 dest_proc=9871 dest_thread=0 reply=0 flags=0x10 code=0x2e
34648<...>-9869 ( 9090) [000] .... 82315.655989: binder_transaction_alloc_buf: transaction=1568822 data_size=308 offsets_size=8
34649<...>-9869 ( 9090) [000] d..4 82315.656072: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=003
34650          <idle>-0     (-----) [006] dnh2 82315.656119: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34651          <idle>-0     (-----) [006] .n.1 82315.656121: cpu_idle: state=4294967295 cpu_id=6
34652          <idle>-0     (-----) [006] d..2 82315.656125: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
34653<...>-9869 ( 9090) [000] d..2 82315.656127: sched_switch: prev_comm=GAC_Executor[0] prev_pid=9869 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
34654   Binder:9871_6-10122 ( 9871) [006] .... 82315.656133: binder_transaction_received: transaction=1568822
34655<...>-9833 ( 9090) [000] .... 82315.656195: binder_transaction: transaction=1568825 dest_node=1421753 dest_proc=9871 dest_thread=0 reply=0 flags=0x10 code=0x2e
34656<...>-9833 ( 9090) [000] .... 82315.656198: binder_transaction_alloc_buf: transaction=1568825 data_size=308 offsets_size=8
34657<...>-9833 ( 9090) [000] ...2 82315.656217: binder_set_priority: proc=9871 thread=9893 old=120 => new=129 desired=129
34658<...>-9833 ( 9090) [000] d..4 82315.656220: sched_waking: comm=Binder:9871_1 pid=9893 prio=129 target_cpu=007
34659<...>-9833 ( 9090) [000] d..5 82315.656237: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=129 target_cpu=000
34660<...>-9833 ( 9090) [000] d..2 82315.656268: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=129
34661   Binder:9871_1-9893  ( 9871) [000] .... 82315.656274: binder_transaction_received: transaction=1568825
34662   Binder:9871_6-10122 ( 9871) [006] .... 82315.656347: binder_transaction: transaction=1568828 dest_node=395637 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xa
34663   Binder:9871_6-10122 ( 9871) [006] .... 82315.656349: binder_transaction_alloc_buf: transaction=1568828 data_size=172 offsets_size=0
34664   Binder:9871_6-10122 ( 9871) [006] d..4 82315.656351: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
34665   Binder:9871_6-10122 ( 9871) [006] d..5 82315.656361: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
34666   Binder:9871_6-10122 ( 9871) [006] d..2 82315.656382: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
34667<...>-25493 ( 8943) [006] .... 82315.656386: binder_transaction_received: transaction=1568828
34668   Binder:9871_1-9893  ( 9871) [000] .... 82315.656439: binder_transaction: transaction=1568829 dest_node=395637 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xa
34669   Binder:9871_1-9893  ( 9871) [000] .... 82315.656442: binder_transaction_alloc_buf: transaction=1568829 data_size=172 offsets_size=0
34670   Binder:9871_1-9893  ( 9871) [000] d..4 82315.656445: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
34671   Binder:9871_1-9893  ( 9871) [000] d..5 82315.656464: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
34672<...>-25493 ( 8943) [006] .... 82315.656495: binder_transaction: transaction=1568830 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
34673<...>-25493 ( 8943) [006] .... 82315.656497: binder_transaction_alloc_buf: transaction=1568830 data_size=8 offsets_size=0
34674<...>-25493 ( 8943) [006] d..2 82315.656498: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34675   Binder:9871_1-9893  ( 9871) [000] d..2 82315.656500: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=129 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
34676<...>-25493 ( 8943) [006] d..3 82315.656502: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34677<...>-9062 ( 8943) [000] .... 82315.656507: binder_transaction_received: transaction=1568829
34678<...>-25493 ( 8943) [006] d..2 82315.656511: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
34679   Binder:9871_6-10122 ( 9871) [006] .... 82315.656515: binder_transaction_received: transaction=1568830
34680   Binder:9871_6-10122 ( 9871) [006] .... 82315.656598: binder_transaction: transaction=1568831 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
34681   Binder:9871_6-10122 ( 9871) [006] .... 82315.656600: binder_transaction_alloc_buf: transaction=1568831 data_size=168 offsets_size=0
34682   Binder:9871_6-10122 ( 9871) [006] d..4 82315.656601: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
34683   Binder:9871_6-10122 ( 9871) [006] d..5 82315.656604: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
34684   Binder:9871_6-10122 ( 9871) [006] d..2 82315.656609: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
34685<...>-25493 ( 8943) [006] .... 82315.656612: binder_transaction_received: transaction=1568831
34686<...>-9062 ( 8943) [000] .... 82315.656640: binder_transaction: transaction=1568832 dest_node=0 dest_proc=9871 dest_thread=9893 reply=1 flags=0x0 code=0x0
34687<...>-9062 ( 8943) [000] .... 82315.656643: binder_transaction_alloc_buf: transaction=1568832 data_size=8 offsets_size=0
34688<...>-9062 ( 8943) [000] d..2 82315.656646: sched_waking: comm=Binder:9871_1 pid=9893 prio=129 target_cpu=000
34689<...>-9062 ( 8943) [000] d..3 82315.656654: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=129 target_cpu=000
34690<...>-9062 ( 8943) [000] d..2 82315.656674: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=129
34691   Binder:9871_1-9893  ( 9871) [000] .... 82315.656678: binder_transaction_received: transaction=1568832
34692 crtc_commit:111-321   (  321) [007] d..2 82315.656757: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
34693          <idle>-0     (-----) [007] d..1 82315.656760: cpu_idle: state=0 cpu_id=7
34694   Binder:9871_1-9893  ( 9871) [000] .... 82315.656780: binder_transaction: transaction=1568833 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
34695<...>-25493 ( 8943) [006] .... 82315.656782: binder_transaction: transaction=1568834 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
34696   Binder:9871_1-9893  ( 9871) [000] .... 82315.656782: binder_transaction_alloc_buf: transaction=1568833 data_size=168 offsets_size=0
34697   Binder:9871_1-9893  ( 9871) [000] d..4 82315.656785: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
34698<...>-25493 ( 8943) [006] .... 82315.656785: binder_transaction_alloc_buf: transaction=1568834 data_size=3532 offsets_size=0
34699   Binder:9871_1-9893  ( 9871) [000] d..5 82315.656792: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
34700<...>-25493 ( 8943) [006] d..2 82315.656794: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34701<...>-25493 ( 8943) [006] d..3 82315.656798: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34702   Binder:9871_1-9893  ( 9871) [000] d..2 82315.656800: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=129 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
34703<...>-9062 ( 8943) [000] .... 82315.656804: binder_transaction_received: transaction=1568833
34704<...>-25493 ( 8943) [006] d..2 82315.656809: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
34705   Binder:9871_6-10122 ( 9871) [006] .... 82315.656813: binder_transaction_received: transaction=1568834
34706          <idle>-0     (-----) [002] ...1 82315.656950: cpu_idle: state=4294967295 cpu_id=2
34707          <idle>-0     (-----) [002] d..1 82315.656952: cpu_idle: state=0 cpu_id=2
34708   Binder:9871_6-10122 ( 9871) [006] .... 82315.656954: binder_transaction: transaction=1568835 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x6a
34709   Binder:9871_6-10122 ( 9871) [006] .... 82315.656956: binder_transaction_alloc_buf: transaction=1568835 data_size=180 offsets_size=0
34710   Binder:9871_6-10122 ( 9871) [006] d..4 82315.656957: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
34711   Binder:9871_6-10122 ( 9871) [006] d..5 82315.656961: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
34712   Binder:9871_6-10122 ( 9871) [006] d..2 82315.656965: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
34713<...>-25493 ( 8943) [006] .... 82315.656968: binder_transaction_received: transaction=1568835
34714<...>-25493 ( 8943) [006] .... 82315.657023: binder_transaction: transaction=1568836 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
34715<...>-25493 ( 8943) [006] .... 82315.657025: binder_transaction_alloc_buf: transaction=1568836 data_size=8 offsets_size=0
34716<...>-25493 ( 8943) [006] d..2 82315.657026: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34717<...>-25493 ( 8943) [006] d..3 82315.657030: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34718<...>-25493 ( 8943) [006] d..2 82315.657040: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
34719   Binder:9871_6-10122 ( 9871) [006] .... 82315.657043: binder_transaction_received: transaction=1568836
34720          <idle>-0     (-----) [001] ...1 82315.657084: cpu_idle: state=4294967295 cpu_id=1
34721          <idle>-0     (-----) [001] d..1 82315.657087: cpu_idle: state=0 cpu_id=1
34722<...>-9062 ( 8943) [000] .... 82315.657153: binder_transaction: transaction=1568837 dest_node=0 dest_proc=9871 dest_thread=9893 reply=1 flags=0x0 code=0x0
34723<...>-9062 ( 8943) [000] .... 82315.657156: binder_transaction_alloc_buf: transaction=1568837 data_size=3532 offsets_size=0
34724<...>-9062 ( 8943) [000] d..2 82315.657159: sched_waking: comm=Binder:9871_1 pid=9893 prio=129 target_cpu=000
34725<...>-9062 ( 8943) [000] d..3 82315.657167: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=129 target_cpu=000
34726<...>-9062 ( 8943) [000] d..2 82315.657188: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=129
34727   Binder:9871_1-9893  ( 9871) [000] .... 82315.657192: binder_transaction_received: transaction=1568837
34728   Binder:9871_6-10122 ( 9871) [006] d..1 82315.657303: sched_waking: comm=lowpool[10] pid=24462 prio=130 target_cpu=000
34729   Binder:9871_6-10122 ( 9871) [006] d..2 82315.657320: sched_wakeup: comm=lowpool[10] pid=24462 prio=130 target_cpu=007
34730          <idle>-0     (-----) [007] .n.1 82315.657325: cpu_idle: state=4294967295 cpu_id=7
34731          <idle>-0     (-----) [007] d..2 82315.657339: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
34732   Binder:9871_6-10122 ( 9871) [006] .... 82315.657378: binder_transaction: transaction=1568838 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
34733   Binder:9871_6-10122 ( 9871) [006] .... 82315.657379: binder_transaction_alloc_buf: transaction=1568838 data_size=168 offsets_size=0
34734   Binder:9871_6-10122 ( 9871) [006] d..4 82315.657381: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
34735   Binder:9871_6-10122 ( 9871) [006] d..5 82315.657390: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
34736   Binder:9871_1-9893  ( 9871) [000] .... 82315.657409: binder_transaction: transaction=1568839 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x6a
34737   Binder:9871_6-10122 ( 9871) [006] d..2 82315.657410: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
34738   Binder:9871_1-9893  ( 9871) [000] .... 82315.657412: binder_transaction_alloc_buf: transaction=1568839 data_size=180 offsets_size=0
34739<...>-24462 ( 9871) [007] d..2 82315.657413: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34740<...>-9062 ( 8943) [006] .... 82315.657414: binder_transaction_received: transaction=1568838
34741   Binder:9871_1-9893  ( 9871) [000] d..4 82315.657415: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
34742          <idle>-0     (-----) [007] d..1 82315.657417: cpu_idle: state=0 cpu_id=7
34743   Binder:9871_1-9893  ( 9871) [000] dn.5 82315.657432: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
34744   Binder:9871_1-9893  ( 9871) [000] d..2 82315.657464: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=129 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
34745<...>-25493 ( 8943) [000] .... 82315.657469: binder_transaction_received: transaction=1568839
34746<...>-25493 ( 8943) [000] .... 82315.657581: binder_transaction: transaction=1568840 dest_node=0 dest_proc=9871 dest_thread=9893 reply=1 flags=0x0 code=0x0
34747<...>-25493 ( 8943) [000] .... 82315.657584: binder_transaction_alloc_buf: transaction=1568840 data_size=8 offsets_size=0
34748<...>-9062 ( 8943) [006] .... 82315.657600: binder_transaction: transaction=1568841 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
34749<...>-9062 ( 8943) [006] .... 82315.657602: binder_transaction_alloc_buf: transaction=1568841 data_size=2328 offsets_size=0
34750<...>-9062 ( 8943) [006] d..2 82315.657603: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34751<...>-25493 ( 8943) [000] d..2 82315.657606: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=129
34752<...>-9062 ( 8943) [006] d..3 82315.657608: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34753   Binder:9871_1-9893  ( 9871) [000] .... 82315.657611: binder_transaction_received: transaction=1568840
34754<...>-9062 ( 8943) [006] d..2 82315.657618: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
34755   Binder:9871_6-10122 ( 9871) [006] .... 82315.657622: binder_transaction_received: transaction=1568841
34756   Binder:9871_1-9893  ( 9871) [000] d..1 82315.657887: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=003
34757          <idle>-0     (-----) [007] dnh2 82315.657933: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=007
34758          <idle>-0     (-----) [007] .n.1 82315.657936: cpu_idle: state=4294967295 cpu_id=7
34759          <idle>-0     (-----) [007] d..2 82315.657939: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
34760<...>-16709 ( 9871) [007] d..2 82315.657970: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34761   Binder:9871_6-10122 ( 9871) [006] d..1 82315.657971: sched_waking: comm=lowpool[10] pid=24462 prio=130 target_cpu=007
34762          <idle>-0     (-----) [007] d..1 82315.657973: cpu_idle: state=0 cpu_id=7
34763   Binder:9871_6-10122 ( 9871) [006] d..2 82315.657979: sched_wakeup: comm=lowpool[10] pid=24462 prio=130 target_cpu=007
34764          <idle>-0     (-----) [007] .n.1 82315.657983: cpu_idle: state=4294967295 cpu_id=7
34765          <idle>-0     (-----) [007] d..2 82315.657986: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
34766   Binder:9871_1-9893  ( 9871) [000] .... 82315.657989: binder_transaction: transaction=1568842 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
34767   Binder:9871_1-9893  ( 9871) [000] .... 82315.657991: binder_transaction_alloc_buf: transaction=1568842 data_size=168 offsets_size=0
34768   Binder:9871_1-9893  ( 9871) [000] d..4 82315.657994: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
34769   Binder:9871_1-9893  ( 9871) [000] dn.5 82315.658009: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
34770   Binder:9871_1-9893  ( 9871) [000] d..2 82315.658037: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=129 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
34771<...>-9062 ( 8943) [000] .... 82315.658041: binder_transaction_received: transaction=1568842
34772<...>-24462 ( 9871) [007] d..2 82315.658043: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34773          <idle>-0     (-----) [007] d..1 82315.658045: cpu_idle: state=0 cpu_id=7
34774   Binder:9871_6-10122 ( 9871) [006] .... 82315.658045: binder_transaction: transaction=1568843 dest_node=1568823 dest_proc=9090 dest_thread=9869 reply=0 flags=0x10 code=0x1
34775   Binder:9871_6-10122 ( 9871) [006] .... 82315.658047: binder_transaction_alloc_buf: transaction=1568843 data_size=148 offsets_size=8
34776   Binder:9871_6-10122 ( 9871) [006] d..4 82315.658094: sched_waking: comm=GAC_Executor[0] pid=9869 prio=120 target_cpu=000
34777   Binder:9871_6-10122 ( 9871) [006] d..2 82315.658112: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34778          <idle>-0     (-----) [001] dnh2 82315.658112: sched_wakeup: comm=GAC_Executor[0] pid=9869 prio=120 target_cpu=001
34779          <idle>-0     (-----) [001] .n.1 82315.658116: cpu_idle: state=4294967295 cpu_id=1
34780          <idle>-0     (-----) [006] d..1 82315.658119: cpu_idle: state=0 cpu_id=6
34781          <idle>-0     (-----) [001] d..2 82315.658123: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GAC_Executor[0] next_pid=9869 next_prio=120
34782<...>-9869 ( 9090) [001] .... 82315.658130: binder_transaction_received: transaction=1568843
34783<...>-9869 ( 9090) [001] d..3 82315.658340: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
34784<...>-9869 ( 9090) [001] d..4 82315.658352: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
34785<...>-9062 ( 8943) [000] .... 82315.658353: binder_transaction: transaction=1568846 dest_node=0 dest_proc=9871 dest_thread=9893 reply=1 flags=0x0 code=0x0
34786<...>-9062 ( 8943) [000] .... 82315.658356: binder_transaction_alloc_buf: transaction=1568846 data_size=2328 offsets_size=0
34787<...>-9062 ( 8943) [000] d..2 82315.658379: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=129
34788   Binder:9871_1-9893  ( 9871) [000] .... 82315.658384: binder_transaction_received: transaction=1568846
34789<...>-9869 ( 9090) [001] .... 82315.658414: binder_transaction: transaction=1568847 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
34790<...>-9869 ( 9090) [001] .... 82315.658417: binder_transaction_alloc_buf: transaction=1568847 data_size=4 offsets_size=0
34791<...>-9869 ( 9090) [001] d..2 82315.658419: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34792          <idle>-0     (-----) [006] dnh2 82315.658434: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34793          <idle>-0     (-----) [006] .n.1 82315.658437: cpu_idle: state=4294967295 cpu_id=6
34794          <idle>-0     (-----) [006] d..2 82315.658443: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
34795   Binder:9871_6-10122 ( 9871) [006] .... 82315.658445: binder_transaction_received: transaction=1568847
34796          <idle>-0     (-----) [007] d.s2 82315.658454: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
34797          <idle>-0     (-----) [007] dns3 82315.658458: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=007
34798          <idle>-0     (-----) [007] dns3 82315.658462: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
34799<...>-9869 ( 9090) [001] d..2 82315.658472: sched_switch: prev_comm=GAC_Executor[0] prev_pid=9869 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
34800          <idle>-0     (-----) [007] dns4 82315.658472: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=004
34801          <idle>-0     (-----) [004] .n.1 82315.658477: cpu_idle: state=4294967295 cpu_id=4
34802          <idle>-0     (-----) [007] .n.1 82315.658477: cpu_idle: state=4294967295 cpu_id=7
34803          <idle>-0     (-----) [007] d..2 82315.658480: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
34804          <idle>-0     (-----) [004] d..2 82315.658482: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
34805     rcu_preempt-7     (    7) [007] d..2 82315.658487: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=004
34806   Binder:9871_6-10122 ( 9871) [006] .... 82315.658491: binder_transaction: transaction=1568848 dest_node=0 dest_proc=9090 dest_thread=9869 reply=1 flags=0x0 code=0x0
34807   Binder:9871_6-10122 ( 9871) [006] .... 82315.658492: binder_transaction_alloc_buf: transaction=1568848 data_size=4 offsets_size=0
34808   Binder:9871_6-10122 ( 9871) [006] d..2 82315.658493: sched_waking: comm=GAC_Executor[0] pid=9869 prio=120 target_cpu=001
34809     rcu_preempt-7     (    7) [007] d..3 82315.658494: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=007
34810     rcu_preempt-7     (    7) [007] d..2 82315.658495: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=006
34811     rcu_preempt-7     (    7) [007] d..3 82315.658502: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=007
34812     rcu_preempt-7     (    7) [007] d..2 82315.658508: 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
34813         rcuop/6-61    (   61) [007] d..2 82315.658510: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=005
34814   Binder:9871_1-9893  ( 9871) [000] dnh1 82315.658511: sched_wakeup: comm=GAC_Executor[0] pid=9869 prio=120 target_cpu=000
34815   Binder:9871_6-10122 ( 9871) [006] d..2 82315.658518: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34816   Binder:9871_1-9893  ( 9871) [000] d..2 82315.658520: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=129 prev_state=R+ ==> next_comm=GAC_Executor[0] next_pid=9869 next_prio=120
34817         rcuop/6-61    (   61) [007] d..3 82315.658523: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
34818<...>-9869 ( 9090) [000] .... 82315.658525: binder_transaction_received: transaction=1568848
34819          <idle>-0     (-----) [006] d..2 82315.658525: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/7 next_pid=69 next_prio=120
34820         rcuop/6-61    (   61) [007] d..2 82315.658532: 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
34821         rcuop/4-45    (   45) [007] d..2 82315.658534: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=005
34822         rcuop/4-45    (   45) [007] d..3 82315.658541: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=006
34823<...>-69 ( 69) [006] d..2 82315.658545: 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
34824<...>-9090 ( 9090) [001] .... 82315.658546: binder_transaction: transaction=1568849 dest_node=1568844 dest_proc=9871 dest_thread=0 reply=0 flags=0x10 code=0x5f4e5446
34825<...>-9090 ( 9090) [001] .... 82315.658548: binder_transaction_alloc_buf: transaction=1568849 data_size=0 offsets_size=0
34826         rcuop/4-45    (   45) [007] d..2 82315.658550: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34827<...>-9090 ( 9090) [001] d..4 82315.658551: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=006
34828          <idle>-0     (-----) [007] d..1 82315.658553: cpu_idle: state=0 cpu_id=7
34829         rcuop/5-53    (   53) [006] d..2 82315.658564: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34830<...>-9090 ( 9090) [001] d..5 82315.658567: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
34831          <idle>-0     (-----) [006] d..1 82315.658568: cpu_idle: state=0 cpu_id=6
34832<...>-9090 ( 9090) [001] d..2 82315.658600: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
34833   Binder:9871_6-10122 ( 9871) [001] .... 82315.658604: binder_transaction_received: transaction=1568849
34834<...>-9869 ( 9090) [000] d..2 82315.658612: sched_switch: prev_comm=GAC_Executor[0] prev_pid=9869 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=129
34835   Binder:9871_6-10122 ( 9871) [001] .... 82315.658685: binder_transaction: transaction=1568850 dest_node=0 dest_proc=9090 dest_thread=9090 reply=1 flags=0x0 code=0x0
34836   Binder:9871_6-10122 ( 9871) [001] .... 82315.658688: binder_transaction_alloc_buf: transaction=1568850 data_size=132 offsets_size=0
34837   Binder:9871_6-10122 ( 9871) [001] d..2 82315.658690: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
34838   Binder:9871_6-10122 ( 9871) [001] d..3 82315.658697: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
34839   Binder:9871_6-10122 ( 9871) [001] d..2 82315.658717: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
34840<...>-9090 ( 9090) [001] .... 82315.658721: binder_transaction_received: transaction=1568850
34841  kworker/u16:15-1311  ( 1311) [004] d..2 82315.658726: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
34842          <idle>-0     (-----) [004] d..1 82315.658729: cpu_idle: state=0 cpu_id=4
34843<...>-9090 ( 9090) [001] d.s2 82315.658774: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=004
34844          <idle>-0     (-----) [004] d.h2 82315.658788: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
34845          <idle>-0     (-----) [004] dnh2 82315.658789: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=004
34846          <idle>-0     (-----) [004] .n.1 82315.658791: cpu_idle: state=4294967295 cpu_id=4
34847          <idle>-0     (-----) [004] d..2 82315.658794: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
34848  kworker/u16:15-1311  ( 1311) [004] d..2 82315.658825: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34849          <idle>-0     (-----) [004] d..1 82315.658827: cpu_idle: state=0 cpu_id=4
34850   Binder:9871_1-9893  ( 9871) [000] d..1 82315.658917: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=007
34851          <idle>-0     (-----) [007] dnh2 82315.658931: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=007
34852          <idle>-0     (-----) [007] .n.1 82315.658933: cpu_idle: state=4294967295 cpu_id=7
34853          <idle>-0     (-----) [007] d..2 82315.658936: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
34854<...>-9090 ( 9090) [001] d..1 82315.658945: sched_waking: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=000
34855<...>-9090 ( 9090) [001] d..2 82315.658960: sched_wakeup: comm=GAC_Executor[1] pid=10009 prio=120 target_cpu=000
34856   Binder:9871_1-9893  ( 9871) [000] d..2 82315.658970: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=129 prev_state=R+ ==> next_comm=GAC_Executor[1] next_pid=10009 next_prio=120
34857<...>-16709 ( 9871) [007] d..2 82315.658988: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34858          <idle>-0     (-----) [007] d..1 82315.658991: cpu_idle: state=0 cpu_id=7
34859<...>-10009 ( 9090) [000] d..2 82315.659026: sched_switch: prev_comm=GAC_Executor[1] prev_pid=10009 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=129
34860   Binder:9871_1-9893  ( 9871) [000] .... 82315.659073: binder_transaction: transaction=1568851 dest_node=1568826 dest_proc=9090 dest_thread=9833 reply=0 flags=0x10 code=0x1
34861   Binder:9871_1-9893  ( 9871) [000] .... 82315.659075: binder_transaction_alloc_buf: transaction=1568851 data_size=148 offsets_size=8
34862   Binder:9871_1-9893  ( 9871) [000] d..4 82315.659100: sched_waking: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=000
34863<...>-9090 ( 9090) [001] d..2 82315.659102: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34864   Binder:9871_1-9893  ( 9871) [000] d..5 82315.659109: sched_wakeup: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=000
34865          <idle>-0     (-----) [001] d..1 82315.659112: cpu_idle: state=0 cpu_id=1
34866   Binder:9871_1-9893  ( 9871) [000] d..2 82315.659116: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=129 prev_state=S ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
34867<...>-9833 ( 9090) [000] .... 82315.659122: binder_transaction_received: transaction=1568851
34868<...>-9833 ( 9090) [000] .... 82315.659311: binder_transaction: transaction=1568854 dest_node=0 dest_proc=9871 dest_thread=9893 reply=1 flags=0x0 code=0x0
34869<...>-9833 ( 9090) [000] .... 82315.659314: binder_transaction_alloc_buf: transaction=1568854 data_size=4 offsets_size=0
34870<...>-9833 ( 9090) [000] d..2 82315.659316: sched_waking: comm=Binder:9871_1 pid=9893 prio=129 target_cpu=000
34871<...>-9833 ( 9090) [000] d..3 82315.659324: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=129 target_cpu=000
34872<...>-9833 ( 9090) [000] d..2 82315.659344: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=129
34873   Binder:9871_1-9893  ( 9871) [000] .... 82315.659348: binder_transaction_received: transaction=1568854
34874   Binder:9871_1-9893  ( 9871) [000] .... 82315.659413: binder_transaction: transaction=1568855 dest_node=0 dest_proc=9090 dest_thread=9833 reply=1 flags=0x0 code=0x0
34875   Binder:9871_1-9893  ( 9871) [000] .... 82315.659416: binder_transaction_alloc_buf: transaction=1568855 data_size=4 offsets_size=0
34876   Binder:9871_1-9893  ( 9871) [000] d..2 82315.659418: sched_waking: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=000
34877   Binder:9871_1-9893  ( 9871) [000] d..3 82315.659426: sched_wakeup: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=000
34878   Binder:9871_1-9893  ( 9871) [000] .... 82315.659428: binder_set_priority: proc=9871 thread=9893 old=129 => new=120 desired=120
34879   Binder:9871_1-9893  ( 9871) [000] d..2 82315.659438: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=R+ ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
34880<...>-9833 ( 9090) [000] .... 82315.659441: binder_transaction_received: transaction=1568855
34881<...>-9833 ( 9090) [000] .... 82315.659505: binder_transaction: transaction=1568856 dest_node=1568852 dest_proc=9871 dest_thread=0 reply=0 flags=0x10 code=0x5f4e5446
34882<...>-9833 ( 9090) [000] .... 82315.659507: binder_transaction_alloc_buf: transaction=1568856 data_size=0 offsets_size=0
34883<...>-9833 ( 9090) [000] ...2 82315.659509: binder_set_priority: proc=9871 thread=10122 old=120 => new=129 desired=129
34884<...>-9833 ( 9090) [000] d..4 82315.659511: sched_waking: comm=Binder:9871_6 pid=10122 prio=129 target_cpu=001
34885<...>-9833 ( 9090) [000] d..5 82315.659522: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=129 target_cpu=001
34886          <idle>-0     (-----) [001] .n.1 82315.659527: cpu_idle: state=4294967295 cpu_id=1
34887<...>-9833 ( 9090) [000] d..2 82315.659530: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=120
34888          <idle>-0     (-----) [001] d..2 82315.659535: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
34889   Binder:9871_6-10122 ( 9871) [001] .... 82315.659539: binder_transaction_received: transaction=1568856
34890   Binder:9871_1-9893  ( 9871) [000] d..2 82315.659563: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34891          <idle>-0     (-----) [000] d..1 82315.659578: cpu_idle: state=0 cpu_id=0
34892   Binder:9871_6-10122 ( 9871) [001] .... 82315.659597: binder_transaction: transaction=1568857 dest_node=0 dest_proc=9090 dest_thread=9833 reply=1 flags=0x0 code=0x0
34893   Binder:9871_6-10122 ( 9871) [001] .... 82315.659600: binder_transaction_alloc_buf: transaction=1568857 data_size=132 offsets_size=0
34894   Binder:9871_6-10122 ( 9871) [001] d..2 82315.659602: sched_waking: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=000
34895   Binder:9871_6-10122 ( 9871) [001] d..3 82315.659615: sched_wakeup: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=001
34896   Binder:9871_6-10122 ( 9871) [001] .... 82315.659617: binder_set_priority: proc=9871 thread=10122 old=129 => new=120 desired=120
34897   Binder:9871_6-10122 ( 9871) [001] d..2 82315.659625: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=R+ ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
34898<...>-9833 ( 9090) [001] .... 82315.659629: binder_transaction_received: transaction=1568857
34899<...>-9833 ( 9090) [001] .... 82315.660207: binder_transaction: transaction=1568858 dest_node=1568852 dest_proc=9871 dest_thread=0 reply=0 flags=0x11 code=0x1
34900<...>-9833 ( 9090) [001] .... 82315.660210: binder_transaction_alloc_buf: transaction=1568858 data_size=544 offsets_size=8
34901<...>-9833 ( 9090) [001] d..4 82315.660276: sched_waking: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=000
34902<...>-9833 ( 9090) [001] d..5 82315.660288: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=000
34903          <idle>-0     (-----) [000] .n.1 82315.660294: cpu_idle: state=4294967295 cpu_id=0
34904          <idle>-0     (-----) [000] d..2 82315.660301: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=120
34905   Binder:9871_1-9893  ( 9871) [000] .... 82315.660304: binder_transaction_received: transaction=1568858
34906<...>-9833 ( 9090) [001] d..2 82315.660384: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
34907   Binder:9871_6-10122 ( 9871) [001] d..2 82315.660416: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
34908          <idle>-0     (-----) [001] d..1 82315.660426: cpu_idle: state=0 cpu_id=1
34909   Binder:9871_1-9893  ( 9871) [000] d..1 82315.660734: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=007
34910          <idle>-0     (-----) [007] dnh2 82315.660748: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=007
34911          <idle>-0     (-----) [007] .n.1 82315.660750: cpu_idle: state=4294967295 cpu_id=7
34912          <idle>-0     (-----) [007] d..2 82315.660752: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
34913   Binder:9871_1-9893  ( 9871) [000] d..2 82315.660803: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34914          <idle>-0     (-----) [000] d..1 82315.660813: cpu_idle: state=0 cpu_id=0
34915<...>-16709 ( 9871) [007] .... 82315.660902: binder_transaction: transaction=1568861 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x17
34916<...>-16709 ( 9871) [007] .... 82315.660903: binder_transaction_alloc_buf: transaction=1568861 data_size=396 offsets_size=8
34917<...>-16709 ( 9871) [007] d..4 82315.660910: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
34918<...>-16709 ( 9871) [007] dn.5 82315.660922: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
34919<...>-16709 ( 9871) [007] d..2 82315.660945: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
34920<...>-9062 ( 8943) [007] .... 82315.660953: binder_transaction_received: transaction=1568861
34921<...>-9062 ( 8943) [007] d..3 82315.661257: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
34922          <idle>-0     (-----) [002] dnh2 82315.661278: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
34923          <idle>-0     (-----) [002] .n.1 82315.661281: cpu_idle: state=4294967295 cpu_id=2
34924          <idle>-0     (-----) [002] d..2 82315.661288: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
34925<...>-9062 ( 8943) [007] .... 82315.661335: binder_transaction: transaction=1568862 dest_node=417398 dest_proc=9871 dest_thread=0 reply=0 flags=0x11 code=0x7
34926<...>-9062 ( 8943) [007] .... 82315.661337: binder_transaction_alloc_buf: transaction=1568862 data_size=424 offsets_size=8
34927<...>-9062 ( 8943) [007] d..4 82315.661342: sched_waking: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=000
34928          <idle>-0     (-----) [000] dnh2 82315.661357: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=000
34929          <idle>-0     (-----) [000] .n.1 82315.661362: cpu_idle: state=4294967295 cpu_id=0
34930          <idle>-0     (-----) [000] d..2 82315.661368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=120
34931   Binder:9871_1-9893  ( 9871) [000] .... 82315.661371: binder_transaction_received: transaction=1568862
34932<...>-9062 ( 8943) [007] .... 82315.661409: binder_transaction: transaction=1568863 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
34933<...>-9062 ( 8943) [007] .... 82315.661410: binder_transaction_alloc_buf: transaction=1568863 data_size=200 offsets_size=0
34934<...>-9062 ( 8943) [007] d..2 82315.661422: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
34935<...>-16709 ( 9871) [007] .... 82315.661428: binder_transaction_received: transaction=1568863
34936   Binder:9871_1-9893  ( 9871) [000] d..3 82315.661475: sched_waking: comm=.gms.persistent pid=9871 prio=120 target_cpu=001
34937          <idle>-0     (-----) [006] dnh2 82315.661524: sched_wakeup: comm=.gms.persistent pid=9871 prio=120 target_cpu=006
34938          <idle>-0     (-----) [006] .n.1 82315.661527: cpu_idle: state=4294967295 cpu_id=6
34939          <idle>-0     (-----) [006] d..2 82315.661529: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=.gms.persistent next_pid=9871 next_prio=120
34940   Binder:9871_1-9893  ( 9871) [000] d..2 82315.661561: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
34941          <idle>-0     (-----) [000] d..1 82315.661570: cpu_idle: state=0 cpu_id=0
34942<...>-9871 ( 9871) [006] .... 82315.661657: binder_transaction: transaction=1568864 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x2f
34943<...>-9871 ( 9871) [006] .... 82315.661659: binder_transaction_alloc_buf: transaction=1568864 data_size=104 offsets_size=8
34944<...>-9871 ( 9871) [006] d..4 82315.661663: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
34945<...>-9871 ( 9871) [006] d..5 82315.661673: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
34946<...>-9871 ( 9871) [006] d..2 82315.661695: sched_switch: prev_comm=.gms.persistent prev_pid=9871 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
34947<...>-9062 ( 8943) [006] .... 82315.661700: binder_transaction_received: transaction=1568864
34948          <idle>-0     (-----) [001] ...1 82315.661704: cpu_idle: state=4294967295 cpu_id=1
34949          <idle>-0     (-----) [001] d..1 82315.661706: cpu_idle: state=0 cpu_id=1
34950<...>-821 ( 821) [002] d..2 82315.661779: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34951          <idle>-0     (-----) [002] d..1 82315.661811: cpu_idle: state=0 cpu_id=2
34952<...>-9062 ( 8943) [006] d..3 82315.661865: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
34953          <idle>-0     (-----) [002] dnh2 82315.661880: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
34954          <idle>-0     (-----) [002] .n.1 82315.661884: cpu_idle: state=4294967295 cpu_id=2
34955          <idle>-0     (-----) [002] d..2 82315.661889: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
34956<...>-9062 ( 8943) [006] d..2 82315.661928: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34957          <idle>-0     (-----) [006] d..1 82315.661934: cpu_idle: state=0 cpu_id=6
34958<...>-16709 ( 9871) [007] d..2 82315.662017: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=000
34959<...>-16709 ( 9871) [007] d..3 82315.662034: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=004
34960          <idle>-0     (-----) [004] .n.1 82315.662038: cpu_idle: state=4294967295 cpu_id=4
34961          <idle>-0     (-----) [004] d..2 82315.662054: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/6 next_pid=62 next_prio=120
34962<...>-62 ( 62) [004] d..2 82315.662058: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
34963<...>-62 ( 62) [004] d..3 82315.662072: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=006
34964          <idle>-0     (-----) [006] .n.1 82315.662076: cpu_idle: state=4294967295 cpu_id=6
34965          <idle>-0     (-----) [006] d..2 82315.662090: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
34966<...>-62 ( 62) [004] d..2 82315.662092: sched_switch: prev_comm=rcuos/6 prev_pid=62 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
34967          <idle>-0     (-----) [004] d..1 82315.662095: cpu_idle: state=0 cpu_id=4
34968<...>-8 ( 8) [006] d..2 82315.662099: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
34969          <idle>-0     (-----) [006] d..1 82315.662101: cpu_idle: state=0 cpu_id=6
34970<...>-821 ( 821) [002] d..2 82315.662158: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
34971          <idle>-0     (-----) [002] d..1 82315.662165: cpu_idle: state=0 cpu_id=2
34972           <...>-27570 (-----) [005] d..2 82315.662333: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
34973          <idle>-0     (-----) [005] d..1 82315.662343: cpu_idle: state=0 cpu_id=5
34974          <idle>-0     (-----) [000] d.h3 82315.662355: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=004
34975          <idle>-0     (-----) [004] dnh2 82315.662371: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=004
34976          <idle>-0     (-----) [004] .n.1 82315.662373: cpu_idle: state=4294967295 cpu_id=4
34977          <idle>-0     (-----) [004] d..2 82315.662375: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
34978          <idle>-0     (-----) [000] ...1 82315.662376: cpu_idle: state=4294967295 cpu_id=0
34979          <idle>-0     (-----) [000] d..1 82315.662378: cpu_idle: state=0 cpu_id=0
34980 kgsl_worker_thr-258   (  258) [004] d..2 82315.662383: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
34981          <idle>-0     (-----) [004] d..1 82315.662385: cpu_idle: state=0 cpu_id=4
34982          <idle>-0     (-----) [005] d.h2 82315.662429: sched_waking: comm=RenderThread pid=27570 prio=110 target_cpu=005
34983          <idle>-0     (-----) [005] d.h3 82315.662433: sched_blocked_reason: pid=27570 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
34984          <idle>-0     (-----) [005] dnh3 82315.662434: sched_wakeup: comm=RenderThread pid=27570 prio=110 target_cpu=005
34985          <idle>-0     (-----) [005] .n.1 82315.662437: cpu_idle: state=4294967295 cpu_id=5
34986          <idle>-0     (-----) [005] d..2 82315.662441: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=110
34987           <...>-27570 (-----) [005] d..1 82315.662452: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=004
34988           <...>-27570 (-----) [005] d..2 82315.662458: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=004
34989          <idle>-0     (-----) [004] .n.1 82315.662462: cpu_idle: state=4294967295 cpu_id=4
34990          <idle>-0     (-----) [004] d..2 82315.662465: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
34991<...>-16709 ( 9871) [007] .... 82315.662471: binder_transaction: transaction=1568865 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
34992<...>-16709 ( 9871) [007] .... 82315.662474: binder_transaction_alloc_buf: transaction=1568865 data_size=80 offsets_size=0
34993<...>-16709 ( 9871) [007] d..4 82315.662477: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=000
34994 kgsl_worker_thr-258   (  258) [004] d..2 82315.662486: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
34995          <idle>-0     (-----) [004] d..1 82315.662487: cpu_idle: state=0 cpu_id=4
34996<...>-16709 ( 9871) [007] d..2 82315.662493: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
34997          <idle>-0     (-----) [007] d..1 82315.662501: cpu_idle: state=0 cpu_id=7
34998          <idle>-0     (-----) [000] d.h5 82315.662513: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=007
34999          <idle>-0     (-----) [000] d.h5 82315.662525: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=007
35000          <idle>-0     (-----) [007] dnh2 82315.662531: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=007
35001          <idle>-0     (-----) [007] dnh2 82315.662537: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=007
35002          <idle>-0     (-----) [007] .n.1 82315.662539: cpu_idle: state=4294967295 cpu_id=7
35003          <idle>-0     (-----) [007] d..2 82315.662541: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
35004          <idle>-0     (-----) [000] dnh2 82315.662547: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=000
35005          <idle>-0     (-----) [000] .n.1 82315.662551: cpu_idle: state=4294967295 cpu_id=0
35006          <idle>-0     (-----) [004] .n.1 82315.662557: cpu_idle: state=4294967295 cpu_id=4
35007          <idle>-0     (-----) [000] d..2 82315.662558: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=servicemanager next_pid=608 next_prio=120
35008          <idle>-0     (-----) [004] d..2 82315.662560: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
35009<...>-608 ( 608) [000] .... 82315.662566: binder_transaction_received: transaction=1568865
35010  crtc_event:111-322   (  322) [007] d..2 82315.662566: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
35011          <idle>-0     (-----) [007] d..1 82315.662569: cpu_idle: state=0 cpu_id=7
35012 crtc_commit:111-321   (  321) [004] d.h1 82315.662585: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=004
35013 crtc_commit:111-321   (  321) [004] d.h2 82315.662594: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=007
35014          <idle>-0     (-----) [007] .n.1 82315.662598: cpu_idle: state=4294967295 cpu_id=7
35015          <idle>-0     (-----) [007] d..2 82315.662601: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
35016 kgsl_worker_thr-258   (  258) [007] d..2 82315.662613: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=004
35017 kgsl_worker_thr-258   (  258) [007] d..3 82315.662623: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
35018          <idle>-0     (-----) [006] .n.1 82315.662627: cpu_idle: state=4294967295 cpu_id=6
35019 kgsl_worker_thr-258   (  258) [007] d..2 82315.662629: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
35020          <idle>-0     (-----) [006] d..2 82315.662630: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
35021          <idle>-0     (-----) [007] d..1 82315.662631: cpu_idle: state=0 cpu_id=7
35022 crtc_commit:111-321   (  321) [004] d..2 82315.662674: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
35023          <idle>-0     (-----) [004] d..1 82315.662677: cpu_idle: state=0 cpu_id=4
35024           <...>-27570 (-----) [005] .... 82315.662703: binder_transaction: transaction=1568866 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
35025           <...>-27570 (-----) [005] .... 82315.662705: binder_transaction_alloc_buf: transaction=1568866 data_size=192 offsets_size=8
35026           <...>-27570 (-----) [005] ...2 82315.662739: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
35027           <...>-27570 (-----) [005] d..4 82315.662740: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35028           <...>-27570 (-----) [005] dn.5 82315.662746: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35029           <...>-27570 (-----) [005] d..2 82315.662750: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35030<...>-8951 ( 8858) [005] .... 82315.662757: binder_transaction_received: transaction=1568866
35031  kworker/u16:15-1311  ( 1311) [006] d..2 82315.662760: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35032          <idle>-0     (-----) [006] d..1 82315.662763: cpu_idle: state=0 cpu_id=6
35033<...>-608 ( 608) [000] .... 82315.662766: binder_transaction: transaction=1568867 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
35034<...>-608 ( 608) [000] .... 82315.662768: binder_transaction_alloc_buf: transaction=1568867 data_size=24 offsets_size=8
35035<...>-608 ( 608) [000] d..2 82315.662793: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=007
35036<...>-608 ( 608) [000] d..3 82315.662810: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=000
35037<...>-608 ( 608) [000] d..2 82315.662850: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35038<...>-16709 ( 9871) [000] .... 82315.662854: binder_transaction_received: transaction=1568867
35039<...>-8951 ( 8858) [005] .... 82315.662856: binder_transaction: transaction=1568868 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
35040<...>-8951 ( 8858) [005] .... 82315.662857: binder_transaction_alloc_buf: transaction=1568868 data_size=68 offsets_size=0
35041<...>-8951 ( 8858) [005] .... 82315.662858: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
35042<...>-8951 ( 8858) [005] d..2 82315.662872: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=110
35043           <...>-27570 (-----) [005] .... 82315.662876: binder_transaction_received: transaction=1568868
35044          <idle>-0     (-----) [004] ...1 82315.662898: cpu_idle: state=4294967295 cpu_id=4
35045          <idle>-0     (-----) [004] d..1 82315.662899: cpu_idle: state=0 cpu_id=4
35046           <...>-27570 (-----) [005] d..1 82315.662925: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
35047           <...>-27570 (-----) [005] d..2 82315.662938: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
35048          <idle>-0     (-----) [004] .n.1 82315.662942: cpu_idle: state=4294967295 cpu_id=4
35049          <idle>-0     (-----) [004] d..2 82315.662945: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
35050           <...>-27570 (-----) [005] d..2 82315.662947: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35051          <idle>-0     (-----) [005] d..1 82315.662954: cpu_idle: state=0 cpu_id=5
35052<...>-16709 ( 9871) [000] .... 82315.662968: binder_transaction: transaction=1568869 dest_node=403587 dest_proc=9271 dest_thread=0 reply=0 flags=0x10 code=0x17
35053<...>-16709 ( 9871) [000] .... 82315.662971: binder_transaction_alloc_buf: transaction=1568869 data_size=80 offsets_size=0
35054<...>-16709 ( 9871) [000] ...2 82315.662975: binder_set_priority: proc=9271 thread=9532 old=120 => new=130 desired=130
35055<...>-16709 ( 9871) [000] d..4 82315.662978: sched_waking: comm=Binder:9271_5 pid=9532 prio=130 target_cpu=002
35056<...>-16709 ( 9871) [000] d..5 82315.662992: sched_wakeup: comm=Binder:9271_5 pid=9532 prio=130 target_cpu=000
35057<...>-16709 ( 9871) [000] d..2 82315.663000: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=Binder:9271_5 next_pid=9532 next_prio=130
35058   Binder:9271_5-9532  ( 9271) [000] .... 82315.663006: binder_transaction_received: transaction=1568869
35059           <...>-27550 (-----) [004] .... 82315.663080: binder_transaction: transaction=1568870 dest_node=1568551 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xc
35060           <...>-27550 (-----) [004] .... 82315.663082: binder_transaction_alloc_buf: transaction=1568870 data_size=88 offsets_size=8
35061           <...>-27550 (-----) [004] ...2 82315.663087: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
35062           <...>-27550 (-----) [004] d..4 82315.663088: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
35063           <...>-27550 (-----) [004] d..5 82315.663095: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
35064          <idle>-0     (-----) [006] .n.1 82315.663100: cpu_idle: state=4294967295 cpu_id=6
35065           <...>-27550 (-----) [004] d..2 82315.663102: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35066          <idle>-0     (-----) [006] d..2 82315.663104: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
35067<...>-9062 ( 8943) [006] .... 82315.663106: binder_transaction_received: transaction=1568870
35068          <idle>-0     (-----) [004] d..1 82315.663107: cpu_idle: state=0 cpu_id=4
35069          <idle>-0     (-----) [005] ...1 82315.663184: cpu_idle: state=4294967295 cpu_id=5
35070          <idle>-0     (-----) [005] d..1 82315.663186: cpu_idle: state=0 cpu_id=5
35071<...>-9062 ( 8943) [006] d..3 82315.663200: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
35072<...>-9062 ( 8943) [006] d..4 82315.663214: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
35073          <idle>-0     (-----) [004] .n.1 82315.663218: cpu_idle: state=4294967295 cpu_id=4
35074          <idle>-0     (-----) [004] d..2 82315.663221: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
35075   Binder:9271_5-9532  ( 9271) [000] .... 82315.663235: binder_transaction: transaction=1568871 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
35076   Binder:9271_5-9532  ( 9271) [000] .... 82315.663238: binder_transaction_alloc_buf: transaction=1568871 data_size=8 offsets_size=0
35077   Binder:9271_5-9532  ( 9271) [000] d..2 82315.663240: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=000
35078<...>-9062 ( 8943) [006] .... 82315.663242: binder_transaction: transaction=1568872 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
35079<...>-9062 ( 8943) [006] .... 82315.663243: binder_transaction_alloc_buf: transaction=1568872 data_size=4 offsets_size=0
35080<...>-9062 ( 8943) [006] d..2 82315.663244: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
35081   Binder:9271_5-9532  ( 9271) [000] d..3 82315.663248: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=000
35082   Binder:9271_5-9532  ( 9271) [000] .... 82315.663249: binder_set_priority: proc=9271 thread=9532 old=130 => new=120 desired=120
35083<...>-9062 ( 8943) [006] d..3 82315.663252: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
35084<...>-9062 ( 8943) [006] .... 82315.663253: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
35085<...>-9062 ( 8943) [006] d..2 82315.663268: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
35086           <...>-27550 (-----) [006] .... 82315.663272: binder_transaction_received: transaction=1568872
35087   Binder:9271_5-9532  ( 9271) [000] d..2 82315.663275: sched_switch: prev_comm=Binder:9271_5 prev_pid=9532 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35088<...>-16709 ( 9871) [000] .... 82315.663279: binder_transaction_received: transaction=1568871
35089<...>-16709 ( 9871) [000] .... 82315.663331: binder_transaction: transaction=1568873 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
35090<...>-16709 ( 9871) [000] .... 82315.663334: binder_transaction_alloc_buf: transaction=1568873 data_size=80 offsets_size=0
35091<...>-16709 ( 9871) [000] d..4 82315.663336: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=000
35092<...>-16709 ( 9871) [000] dn.5 82315.663343: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=000
35093<...>-16709 ( 9871) [000] d..2 82315.663348: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=servicemanager next_pid=608 next_prio=120
35094<...>-608 ( 608) [000] .... 82315.663352: binder_transaction_received: transaction=1568873
35095           <...>-27550 (-----) [006] d..1 82315.663363: sched_waking: comm=MonitoringInstr pid=27568 prio=120 target_cpu=006
35096           <...>-27550 (-----) [006] d..2 82315.663376: sched_wakeup: comm=MonitoringInstr pid=27568 prio=120 target_cpu=005
35097          <idle>-0     (-----) [005] .n.1 82315.663380: cpu_idle: state=4294967295 cpu_id=5
35098          <idle>-0     (-----) [005] d..2 82315.663384: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MonitoringInstr next_pid=27568 next_prio=120
35099<...>-608 ( 608) [000] d.h3 82315.663410: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=007
35100           <...>-27568 (-----) [005] d..1 82315.663423: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
35101          <idle>-0     (-----) [007] dnh2 82315.663424: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=007
35102          <idle>-0     (-----) [007] .n.1 82315.663427: cpu_idle: state=4294967295 cpu_id=7
35103          <idle>-0     (-----) [007] d..2 82315.663429: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
35104           <...>-27568 (-----) [005] d..2 82315.663434: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=007
35105 kgsl_worker_thr-258   (  258) [007] d..2 82315.663451: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
35106<...>-608 ( 608) [000] .... 82315.663452: binder_transaction: transaction=1568874 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
35107<...>-608 ( 608) [000] .... 82315.663453: binder_transaction_alloc_buf: transaction=1568874 data_size=24 offsets_size=8
35108<...>-9005 ( 8943) [004] d..3 82315.663458: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
35109<...>-9005 ( 8943) [004] d..4 82315.663466: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
35110<...>-608 ( 608) [000] d..2 82315.663471: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35111           <...>-27550 (-----) [006] .... 82315.663474: binder_transaction: transaction=1568875 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x10
35112           <...>-27550 (-----) [006] .... 82315.663475: binder_transaction_alloc_buf: transaction=1568875 data_size=476 offsets_size=8
35113<...>-16709 ( 9871) [000] .... 82315.663476: binder_transaction_received: transaction=1568874
35114           <...>-27550 (-----) [006] d..4 82315.663479: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35115           <...>-27550 (-----) [006] dn.5 82315.663484: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35116           <...>-27550 (-----) [006] d..2 82315.663487: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
35117<...>-9062 ( 8943) [006] .... 82315.663490: binder_transaction_received: transaction=1568875
35118           <...>-27566 (-----) [007] d..2 82315.663514: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
35119          <idle>-0     (-----) [007] d..1 82315.663518: cpu_idle: state=0 cpu_id=7
35120<...>-16709 ( 9871) [000] .... 82315.663541: binder_transaction: transaction=1568876 dest_node=403587 dest_proc=9271 dest_thread=0 reply=0 flags=0x10 code=0x1b
35121<...>-16709 ( 9871) [000] .... 82315.663543: binder_transaction_alloc_buf: transaction=1568876 data_size=80 offsets_size=0
35122<...>-16709 ( 9871) [000] ...2 82315.663545: binder_set_priority: proc=9271 thread=9532 old=120 => new=130 desired=130
35123<...>-16709 ( 9871) [000] d..4 82315.663547: sched_waking: comm=Binder:9271_5 pid=9532 prio=130 target_cpu=000
35124<...>-9005 ( 8943) [004] .... 82315.663549: binder_transaction: transaction=1568877 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
35125<...>-9005 ( 8943) [004] .... 82315.663552: binder_transaction_alloc_buf: transaction=1568877 data_size=96 offsets_size=0
35126<...>-16709 ( 9871) [000] d..5 82315.663554: sched_wakeup: comm=Binder:9271_5 pid=9532 prio=130 target_cpu=000
35127<...>-9005 ( 8943) [004] d..4 82315.663555: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
35128<...>-16709 ( 9871) [000] d..2 82315.663562: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=Binder:9271_5 next_pid=9532 next_prio=130
35129<...>-9005 ( 8943) [004] d..5 82315.663564: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
35130   Binder:9271_5-9532  ( 9271) [000] .... 82315.663565: binder_transaction_received: transaction=1568876
35131          <idle>-0     (-----) [007] .n.1 82315.663569: cpu_idle: state=4294967295 cpu_id=7
35132          <idle>-0     (-----) [007] d..2 82315.663572: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
35133<...>-9132 ( 9105) [007] .... 82315.663577: binder_transaction_received: transaction=1568877
35134<...>-9005 ( 8943) [004] d..3 82315.663603: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
35135<...>-9005 ( 8943) [004] d..4 82315.663611: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
35136           <...>-27568 (-----) [005] d..2 82315.663643: sched_switch: prev_comm=MonitoringInstr prev_pid=27568 prev_prio=120 prev_state=x ==> next_comm=android.display next_pid=8969 next_prio=117
35137   Binder:9271_5-9532  ( 9271) [000] .... 82315.663653: binder_transaction: transaction=1568878 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
35138<...>-9132 ( 9105) [007] d..3 82315.663655: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
35139   Binder:9271_5-9532  ( 9271) [000] .... 82315.663655: binder_transaction_alloc_buf: transaction=1568878 data_size=8 offsets_size=0
35140   Binder:9271_5-9532  ( 9271) [000] d..2 82315.663657: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=000
35141<...>-9132 ( 9105) [007] d..4 82315.663662: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
35142   Binder:9271_5-9532  ( 9271) [000] d..3 82315.663664: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=000
35143   Binder:9271_5-9532  ( 9271) [000] .... 82315.663666: binder_set_priority: proc=9271 thread=9532 old=130 => new=120 desired=120
35144<...>-9062 ( 8943) [006] ...1 82315.663677: tracing_mark_write: B|8943|HIDL::IPower::powerHintAsync::client
35145<...>-8969 ( 8943) [005] d..2 82315.663678: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35146<...>-9062 ( 8943) [006] ...1 82315.663680: tracing_mark_write: E|8943
35147          <idle>-0     (-----) [005] d..1 82315.663684: cpu_idle: state=0 cpu_id=5
35148   Binder:9271_5-9532  ( 9271) [000] d..2 82315.663689: sched_switch: prev_comm=Binder:9271_5 prev_pid=9532 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35149<...>-9132 ( 9105) [007] d..2 82315.663693: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
35150<...>-16709 ( 9871) [000] .... 82315.663693: binder_transaction_received: transaction=1568878
35151<...>-9062 ( 8943) [006] .... 82315.663702: binder_transaction: transaction=1568879 dest_node=735 dest_proc=791 dest_thread=0 reply=0 flags=0x11 code=0x6
35152<...>-9062 ( 8943) [006] .... 82315.663703: binder_transaction_alloc_buf: transaction=1568879 data_size=44 offsets_size=0
35153<...>-9062 ( 8943) [006] d..4 82315.663706: sched_waking: [email protected] pid=791 prio=120 target_cpu=003
35154<...>-9062 ( 8943) [006] d..5 82315.663722: sched_wakeup: [email protected] pid=791 prio=120 target_cpu=005
35155          <idle>-0     (-----) [005] .n.1 82315.663726: cpu_idle: state=4294967295 cpu_id=5
35156<...>-8962 ( 8943) [007] d..3 82315.663737: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
35157          <idle>-0     (-----) [005] d..2 82315.663743: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=791 next_prio=120
35158<...>-8962 ( 8943) [007] d..4 82315.663746: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
35159<...>-791 ( 791) [005] .... 82315.663747: binder_transaction_received: transaction=1568879
35160<...>-16709 ( 9871) [000] .... 82315.663756: binder_transaction: transaction=1568880 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
35161<...>-16709 ( 9871) [000] .... 82315.663759: binder_transaction_alloc_buf: transaction=1568880 data_size=80 offsets_size=0
35162<...>-16709 ( 9871) [000] d..4 82315.663761: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=000
35163<...>-8962 ( 8943) [007] d..2 82315.663762: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35164<...>-16709 ( 9871) [000] dn.5 82315.663768: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=000
35165<...>-16709 ( 9871) [000] d..2 82315.663773: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=servicemanager next_pid=608 next_prio=120
35166<...>-791 ( 791) [005] ...1 82315.663775: tracing_mark_write: B|791|HIDL::IPower::powerHintAsync::server
35167<...>-608 ( 608) [000] .... 82315.663777: binder_transaction_received: transaction=1568880
35168<...>-9005 ( 8943) [004] .... 82315.663808: binder_transaction: transaction=1568881 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
35169<...>-9005 ( 8943) [004] .... 82315.663810: binder_transaction_alloc_buf: transaction=1568881 data_size=380 offsets_size=16
35170<...>-9005 ( 8943) [004] ...2 82315.663815: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
35171<...>-9005 ( 8943) [004] d..4 82315.663816: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35172<...>-9105 ( 9105) [007] d..2 82315.663817: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
35173<...>-9005 ( 8943) [004] dn.5 82315.663824: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
35174<...>-9062 ( 8943) [006] d..2 82315.663826: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
35175<...>-9005 ( 8943) [004] d..2 82315.663827: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35176<...>-791 ( 791) [005] ...2 82315.663831: tracing_mark_write: B|791|launch
35177<...>-8951 ( 8858) [004] .... 82315.663832: binder_transaction_received: transaction=1568881
35178<...>-791 ( 791) [005] ...2 82315.663833: tracing_mark_write: C|791|launch_lock|0
35179<...>-608 ( 608) [000] .... 82315.663837: binder_transaction: transaction=1568882 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
35180<...>-608 ( 608) [000] .... 82315.663839: binder_transaction_alloc_buf: transaction=1568882 data_size=24 offsets_size=8
35181          <idle>-0     (-----) [001] dnh2 82315.663844: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
35182          <idle>-0     (-----) [001] .n.1 82315.663847: cpu_idle: state=4294967295 cpu_id=1
35183          <idle>-0     (-----) [001] d..2 82315.663855: 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
35184<...>-791 ( 791) [005] d..1 82315.663856: sched_waking: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=000
35185   system_server-8943  ( 8943) [007] .... 82315.663856: binder_transaction: transaction=1568883 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
35186<...>-608 ( 608) [000] d..2 82315.663857: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35187   system_server-8943  ( 8943) [007] .... 82315.663857: binder_transaction_alloc_buf: transaction=1568883 data_size=96 offsets_size=0
35188   system_server-8943  ( 8943) [007] d..4 82315.663859: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
35189<...>-16709 ( 9871) [000] .... 82315.663861: binder_transaction_received: transaction=1568882
35190   system_server-8943  ( 8943) [007] d..5 82315.663864: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
35191<...>-9062 ( 8943) [006] d..3 82315.663866: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=007
35192<...>-8951 ( 8858) [004] .... 82315.663868: binder_transaction: transaction=1568884 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
35193<...>-8951 ( 8858) [004] .... 82315.663869: binder_transaction_alloc_buf: transaction=1568884 data_size=0 offsets_size=0
35194<...>-8951 ( 8858) [004] .... 82315.663870: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
35195<...>-791 ( 791) [005] dn.2 82315.663872: sched_wakeup: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=005
35196<...>-9062 ( 8943) [006] d..4 82315.663873: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=007
35197<...>-8951 ( 8858) [004] d..2 82315.663891: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35198<...>-791 ( 791) [005] d..2 82315.663892: sched_switch: [email protected] prev_pid=791 prev_prio=120 prev_state=R+ ==> next_comm=NodeLooperThrea next_pid=4447 next_prio=100
35199   system_server-8943  ( 8943) [007] d..2 82315.663894: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
35200<...>-9005 ( 8943) [004] .... 82315.663894: binder_transaction_received: transaction=1568884
35201<...>-4447 ( 791) [005] d..2 82315.663904: sched_switch: prev_comm=NodeLooperThrea prev_pid=4447 prev_prio=100 prev_state=S ==> [email protected] next_pid=791 next_prio=120
35202<...>-791 ( 791) [005] d..1 82315.663905: sched_waking: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=005
35203<...>-791 ( 791) [005] dn.2 82315.663908: sched_wakeup: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=005
35204<...>-791 ( 791) [005] d..2 82315.663910: sched_switch: [email protected] prev_pid=791 prev_prio=120 prev_state=R+ ==> next_comm=NodeLooperThrea next_pid=4447 next_prio=100
35205 PowerManagerSer-8971  ( 8943) [007] d..2 82315.663924: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
35206<...>-16709 ( 9871) [000] .... 82315.663925: binder_transaction: transaction=1568885 dest_node=403587 dest_proc=9271 dest_thread=0 reply=0 flags=0x10 code=0x19
35207<...>-9062 ( 8943) [006] d..2 82315.663925: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
35208<...>-16709 ( 9871) [000] .... 82315.663926: binder_transaction_alloc_buf: transaction=1568885 data_size=80 offsets_size=0
35209<...>-9132 ( 9105) [007] .... 82315.663927: binder_transaction_received: transaction=1568883
35210<...>-16709 ( 9871) [000] ...2 82315.663929: binder_set_priority: proc=9271 thread=9532 old=120 => new=130 desired=130
35211<...>-16709 ( 9871) [000] d..4 82315.663930: sched_waking: comm=Binder:9271_5 pid=9532 prio=130 target_cpu=000
35212<...>-16709 ( 9871) [000] d..5 82315.663938: sched_wakeup: comm=Binder:9271_5 pid=9532 prio=130 target_cpu=000
35213<...>-4447 ( 791) [005] .... 82315.663942: cpu_frequency_limits: min=300000 max=1766400 cpu_id=0
35214<...>-16709 ( 9871) [000] d..2 82315.663945: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=Binder:9271_5 next_pid=9532 next_prio=130
35215   Binder:9271_5-9532  ( 9271) [000] .... 82315.663949: binder_transaction_received: transaction=1568885
35216<...>-4447 ( 791) [005] .... 82315.663959: cpu_frequency_limits: min=825600 max=2803200 cpu_id=4
35217<...>-9132 ( 9105) [007] d..3 82315.663960: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
35218           <...>-27550 (-----) [006] d..1 82315.663964: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=007
35219<...>-9132 ( 9105) [007] d..4 82315.663966: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
35220           <...>-27550 (-----) [006] d..2 82315.663975: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=005
35221           <...>-27550 (-----) [006] d..2 82315.663986: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35222<...>-9132 ( 9105) [007] d..2 82315.663987: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35223          <idle>-0     (-----) [006] d..1 82315.663992: cpu_idle: state=0 cpu_id=6
35224<...>-9105 ( 9105) [007] d..2 82315.664019: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
35225          <idle>-0     (-----) [007] d..1 82315.664024: cpu_idle: state=0 cpu_id=7
35226   Binder:9271_5-9532  ( 9271) [000] .... 82315.664036: binder_transaction: transaction=1568886 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
35227   statsd.writer-1044  (  901) [001] d..2 82315.664038: 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
35228   Binder:9271_5-9532  ( 9271) [000] .... 82315.664039: binder_transaction_alloc_buf: transaction=1568886 data_size=8 offsets_size=0
35229   Binder:9271_5-9532  ( 9271) [000] d..2 82315.664041: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=000
35230          <idle>-0     (-----) [001] d..1 82315.664047: cpu_idle: state=0 cpu_id=1
35231   Binder:9271_5-9532  ( 9271) [000] d..3 82315.664048: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=000
35232   Binder:9271_5-9532  ( 9271) [000] .... 82315.664049: binder_set_priority: proc=9271 thread=9532 old=130 => new=120 desired=120
35233   Binder:9271_5-9532  ( 9271) [000] d..2 82315.664072: sched_switch: prev_comm=Binder:9271_5 prev_pid=9532 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35234<...>-16709 ( 9871) [000] .... 82315.664076: binder_transaction_received: transaction=1568886
35235<...>-16709 ( 9871) [000] .... 82315.664122: binder_transaction: transaction=1568887 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
35236<...>-16709 ( 9871) [000] .... 82315.664125: binder_transaction_alloc_buf: transaction=1568887 data_size=80 offsets_size=0
35237<...>-16709 ( 9871) [000] d..4 82315.664127: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=000
35238<...>-16709 ( 9871) [000] dn.5 82315.664134: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=000
35239<...>-16709 ( 9871) [000] d..2 82315.664139: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=servicemanager next_pid=608 next_prio=120
35240<...>-608 ( 608) [000] .... 82315.664142: binder_transaction_received: transaction=1568887
35241<...>-4447 ( 791) [005] d..2 82315.664160: sched_switch: prev_comm=NodeLooperThrea prev_pid=4447 prev_prio=100 prev_state=D ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
35242          <idle>-0     (-----) [001] d.s3 82315.664194: sched_waking: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=005
35243<...>-608 ( 608) [000] .... 82315.664196: binder_transaction: transaction=1568888 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
35244<...>-608 ( 608) [000] .... 82315.664198: binder_transaction_alloc_buf: transaction=1568888 data_size=24 offsets_size=8
35245<...>-9005 ( 8943) [004] d..3 82315.664204: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
35246          <idle>-0     (-----) [001] ...1 82315.664213: cpu_idle: state=4294967295 cpu_id=1
35247<...>-9005 ( 8943) [004] d..4 82315.664214: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
35248          <idle>-0     (-----) [006] d.h2 82315.664215: sched_blocked_reason: pid=4447 iowait=0 caller=wait_for_tx_done+0x34/0x120
35249<...>-608 ( 608) [000] d..2 82315.664216: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35250          <idle>-0     (-----) [001] d..1 82315.664216: cpu_idle: state=0 cpu_id=1
35251          <idle>-0     (-----) [006] dnh2 82315.664216: sched_wakeup: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=006
35252          <idle>-0     (-----) [006] .n.1 82315.664218: cpu_idle: state=4294967295 cpu_id=6
35253          <idle>-0     (-----) [007] .n.1 82315.664219: cpu_idle: state=4294967295 cpu_id=7
35254<...>-16709 ( 9871) [000] .... 82315.664220: binder_transaction_received: transaction=1568888
35255          <idle>-0     (-----) [007] d..2 82315.664222: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
35256          <idle>-0     (-----) [006] d..2 82315.664223: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NodeLooperThrea next_pid=4447 next_prio=100
35257<...>-9039 ( 8943) [007] d..2 82315.664244: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
35258          <idle>-0     (-----) [007] d..1 82315.664246: cpu_idle: state=0 cpu_id=7
35259<...>-16709 ( 9871) [000] .... 82315.664279: binder_transaction: transaction=1568889 dest_node=403587 dest_proc=9271 dest_thread=0 reply=0 flags=0x10 code=0x14
35260<...>-16709 ( 9871) [000] .... 82315.664281: binder_transaction_alloc_buf: transaction=1568889 data_size=80 offsets_size=0
35261<...>-16709 ( 9871) [000] ...2 82315.664283: binder_set_priority: proc=9271 thread=9532 old=120 => new=130 desired=130
35262<...>-16709 ( 9871) [000] d..4 82315.664284: sched_waking: comm=Binder:9271_5 pid=9532 prio=130 target_cpu=000
35263<...>-16709 ( 9871) [000] d..5 82315.664291: sched_wakeup: comm=Binder:9271_5 pid=9532 prio=130 target_cpu=000
35264<...>-16709 ( 9871) [000] d..2 82315.664299: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=Binder:9271_5 next_pid=9532 next_prio=130
35265   Binder:9271_5-9532  ( 9271) [000] .... 82315.664302: binder_transaction_received: transaction=1568889
35266<...>-4447 ( 791) [006] d..2 82315.664355: sched_switch: prev_comm=NodeLooperThrea prev_pid=4447 prev_prio=100 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
35267          <idle>-0     (-----) [006] d..1 82315.664359: cpu_idle: state=0 cpu_id=6
35268<...>-9005 ( 8943) [004] .... 82315.664363: binder_transaction: transaction=1568890 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
35269<...>-9005 ( 8943) [004] .... 82315.664365: binder_transaction_alloc_buf: transaction=1568890 data_size=96 offsets_size=0
35270<...>-9005 ( 8943) [004] d..4 82315.664366: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
35271<...>-9005 ( 8943) [004] d..5 82315.664373: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
35272          <idle>-0     (-----) [007] .n.1 82315.664378: cpu_idle: state=4294967295 cpu_id=7
35273          <idle>-0     (-----) [001] d.s3 82315.664379: sched_waking: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=006
35274          <idle>-0     (-----) [007] d..2 82315.664380: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
35275<...>-9132 ( 9105) [007] .... 82315.664383: binder_transaction_received: transaction=1568890
35276          <idle>-0     (-----) [001] ...1 82315.664389: cpu_idle: state=4294967295 cpu_id=1
35277          <idle>-0     (-----) [006] d.h2 82315.664391: sched_blocked_reason: pid=4447 iowait=0 caller=wait_for_tx_done+0x34/0x120
35278          <idle>-0     (-----) [006] dnh2 82315.664392: sched_wakeup: comm=NodeLooperThrea pid=4447 prio=100 target_cpu=006
35279          <idle>-0     (-----) [001] d..1 82315.664392: cpu_idle: state=0 cpu_id=1
35280          <idle>-0     (-----) [006] .n.1 82315.664394: cpu_idle: state=4294967295 cpu_id=6
35281          <idle>-0     (-----) [006] d..2 82315.664397: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=NodeLooperThrea next_pid=4447 next_prio=100
35282<...>-9005 ( 8943) [004] d..3 82315.664400: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
35283<...>-9005 ( 8943) [004] d..4 82315.664409: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
35284<...>-9132 ( 9105) [007] d..3 82315.664414: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
35285<...>-9132 ( 9105) [007] d..4 82315.664419: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
35286<...>-9132 ( 9105) [007] d..2 82315.664435: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35287   Binder:9271_5-9532  ( 9271) [000] .... 82315.664445: binder_transaction: transaction=1568891 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
35288   Binder:9271_5-9532  ( 9271) [000] .... 82315.664448: binder_transaction_alloc_buf: transaction=1568891 data_size=8 offsets_size=0
35289   Binder:9271_5-9532  ( 9271) [000] d..2 82315.664450: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=000
35290           <...>-27566 (-----) [005] ...1 82315.664453: tracing_mark_write: B|27550|[NN_LA_PO]HDRNet_QUANT8
35291<...>-4447 ( 791) [006] .... 82315.664457: clk_set_rate: l3_cluster0_vote_clk 940800000
35292   Binder:9271_5-9532  ( 9271) [000] d..3 82315.664457: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=000
35293   Binder:9271_5-9532  ( 9271) [000] .... 82315.664459: binder_set_priority: proc=9271 thread=9532 old=130 => new=120 desired=120
35294<...>-9105 ( 9105) [007] d..2 82315.664459: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
35295          <idle>-0     (-----) [007] d..1 82315.664463: cpu_idle: state=0 cpu_id=7
35296           <...>-27566 (-----) [005] d..3 82315.664464: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
35297           <...>-27566 (-----) [005] d..4 82315.664476: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
35298          <idle>-0     (-----) [007] .n.1 82315.664480: cpu_idle: state=4294967295 cpu_id=7
35299          <idle>-0     (-----) [007] d..2 82315.664483: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
35300   Binder:9271_5-9532  ( 9271) [000] d..2 82315.664483: sched_switch: prev_comm=Binder:9271_5 prev_pid=9532 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35301           <...>-27566 (-----) [005] d..2 82315.664487: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> [email protected] next_pid=791 next_prio=120
35302<...>-16709 ( 9871) [000] .... 82315.664488: binder_transaction_received: transaction=1568891
35303<...>-791 ( 791) [005] d..2 82315.664532: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
35304          <idle>-0     (-----) [001] dnh2 82315.664551: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
35305          <idle>-0     (-----) [001] .n.1 82315.664555: cpu_idle: state=4294967295 cpu_id=1
35306<...>-791 ( 791) [005] ...1 82315.664555: tracing_mark_write: E|791
35307<...>-791 ( 791) [005] ...1 82315.664558: tracing_mark_write: E|791
35308          <idle>-0     (-----) [001] d..2 82315.664561: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
35309<...>-9005 ( 8943) [004] .... 82315.664569: binder_transaction: transaction=1568892 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
35310          <idle>-0     (-----) [002] ...1 82315.664569: cpu_idle: state=4294967295 cpu_id=2
35311<...>-9005 ( 8943) [004] .... 82315.664570: binder_transaction_alloc_buf: transaction=1568892 data_size=380 offsets_size=16
35312          <idle>-0     (-----) [003] ...1 82315.664571: cpu_idle: state=4294967295 cpu_id=3
35313          <idle>-0     (-----) [002] d..1 82315.664571: cpu_idle: state=0 cpu_id=2
35314<...>-9005 ( 8943) [004] ...2 82315.664574: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
35315          <idle>-0     (-----) [003] d..1 82315.664575: cpu_idle: state=0 cpu_id=3
35316<...>-9005 ( 8943) [004] d..4 82315.664575: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
35317          <idle>-0     (-----) [002] ...1 82315.664577: cpu_idle: state=4294967295 cpu_id=2
35318          <idle>-0     (-----) [002] d..1 82315.664579: cpu_idle: state=0 cpu_id=2
35319          <idle>-0     (-----) [003] ...1 82315.664579: cpu_idle: state=4294967295 cpu_id=3
35320<...>-9005 ( 8943) [004] dn.5 82315.664580: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
35321          <idle>-0     (-----) [003] d..1 82315.664582: cpu_idle: state=0 cpu_id=3
35322<...>-9005 ( 8943) [004] d..2 82315.664583: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35323          <idle>-0     (-----) [002] ...1 82315.664583: cpu_idle: state=4294967295 cpu_id=2
35324          <idle>-0     (-----) [002] d..1 82315.664585: cpu_idle: state=0 cpu_id=2
35325<...>-791 ( 791) [005] d..2 82315.664585: sched_switch: [email protected] prev_pid=791 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35326          <idle>-0     (-----) [003] ...1 82315.664586: cpu_idle: state=4294967295 cpu_id=3
35327<...>-8951 ( 8858) [004] .... 82315.664587: binder_transaction_received: transaction=1568892
35328          <idle>-0     (-----) [003] d..1 82315.664589: cpu_idle: state=0 cpu_id=3
35329          <idle>-0     (-----) [005] d..1 82315.664590: cpu_idle: state=0 cpu_id=5
35330<...>-8951 ( 8858) [004] .... 82315.664611: binder_transaction: transaction=1568893 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
35331<...>-8951 ( 8858) [004] .... 82315.664612: binder_transaction_alloc_buf: transaction=1568893 data_size=0 offsets_size=0
35332<...>-8951 ( 8858) [004] .... 82315.664613: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
35333<...>-4447 ( 791) [006] d..2 82315.664613: sched_switch: prev_comm=NodeLooperThrea prev_pid=4447 prev_prio=100 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
35334<...>-8951 ( 8858) [004] d..2 82315.664625: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35335<...>-9005 ( 8943) [004] .... 82315.664628: binder_transaction_received: transaction=1568893
35336<...>-8962 ( 8943) [006] d..3 82315.664642: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
35337<...>-581 ( 571) [001] d..2 82315.664649: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35338          <idle>-0     (-----) [001] d..1 82315.664657: cpu_idle: state=0 cpu_id=1
35339<...>-8962 ( 8943) [006] d.h3 82315.664676: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
35340          <idle>-0     (-----) [002] dnh2 82315.664678: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
35341          <idle>-0     (-----) [002] .n.1 82315.664682: cpu_idle: state=4294967295 cpu_id=2
35342          <idle>-0     (-----) [002] d..2 82315.664688: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
35343<...>-8962 ( 8943) [006] d.h4 82315.664688: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
35344<...>-8962 ( 8943) [006] d.h3 82315.664689: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
35345          <idle>-0     (-----) [005] .n.1 82315.664693: cpu_idle: state=4294967295 cpu_id=5
35346          <idle>-0     (-----) [005] d..2 82315.664696: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
35347          <idle>-0     (-----) [003] dnh2 82315.664703: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
35348          <idle>-0     (-----) [003] .n.1 82315.664707: cpu_idle: state=4294967295 cpu_id=3
35349<...>-8962 ( 8943) [006] d..2 82315.664711: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35350          <idle>-0     (-----) [003] d..2 82315.664713: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
35351         sugov:4-577   (  577) [005] .... 82315.664714: clk_set_rate: perfcl_clk 2553600000
35352         sugov:4-577   (  577) [005] .... 82315.664715: clk_set_rate: cpu7_perfcl_clk 2803200000
35353          <idle>-0     (-----) [006] d..1 82315.664717: cpu_idle: state=0 cpu_id=6
35354         sugov:4-577   (  577) [005] .... 82315.664720: clk_set_rate: cpu6_perfcl_clk 2803200000
35355         sugov:4-577   (  577) [005] .... 82315.664724: clk_set_rate: cpu5_perfcl_clk 2803200000
35356         sugov:4-577   (  577) [005] .... 82315.664728: clk_set_rate: cpu4_perfcl_clk 2553600000
35357         sugov:4-577   (  577) [005] .... 82315.664733: cpu_frequency: state=2553600 cpu_id=4
35358         sugov:4-577   (  577) [005] .... 82315.664740: cpu_frequency: state=2553600 cpu_id=5
35359         sugov:4-577   (  577) [005] .... 82315.664741: cpu_frequency: state=2553600 cpu_id=6
35360         sugov:4-577   (  577) [005] .... 82315.664742: cpu_frequency: state=2553600 cpu_id=7
35361         sugov:0-576   (  576) [003] .... 82315.664743: clk_set_rate: pwrcl_clk 1228800000
35362         sugov:4-577   (  577) [005] d..2 82315.664750: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35363   system_server-8943  ( 8943) [002] .... 82315.664751: binder_transaction: transaction=1568894 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
35364          <idle>-0     (-----) [005] d..1 82315.664754: cpu_idle: state=0 cpu_id=5
35365   system_server-8943  ( 8943) [002] .... 82315.664754: binder_transaction_alloc_buf: transaction=1568894 data_size=96 offsets_size=0
35366   system_server-8943  ( 8943) [002] d..4 82315.664757: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
35367         sugov:0-576   (  576) [003] .... 82315.664759: clk_set_rate: cpu3_pwrcl_clk 1766400000
35368         sugov:0-576   (  576) [003] .... 82315.664766: clk_set_rate: cpu2_pwrcl_clk 1766400000
35369         sugov:0-576   (  576) [003] .... 82315.664772: clk_set_rate: cpu1_pwrcl_clk 1766400000
35370         sugov:0-576   (  576) [003] .... 82315.664778: clk_set_rate: cpu0_pwrcl_clk 1228800000
35371   system_server-8943  ( 8943) [002] d..5 82315.664780: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
35372          <idle>-0     (-----) [001] .n.1 82315.664787: cpu_idle: state=4294967295 cpu_id=1
35373          <idle>-0     (-----) [001] d..2 82315.664854: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
35374<...>-9132 ( 9105) [001] .... 82315.664861: binder_transaction_received: transaction=1568894
35375<...>-16709 ( 9871) [000] d.h4 82315.664879: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=004
35376         sugov:0-576   (  576) [003] .... 82315.664892: cpu_frequency: state=1228800 cpu_id=0
35377         sugov:0-576   (  576) [003] .... 82315.664903: cpu_frequency: state=1228800 cpu_id=1
35378<...>-9005 ( 8943) [004] d..3 82315.664905: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
35379         sugov:0-576   (  576) [003] .... 82315.664906: cpu_frequency: state=1228800 cpu_id=2
35380<...>-16709 ( 9871) [000] d.h5 82315.664908: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
35381         sugov:0-576   (  576) [003] .... 82315.664909: cpu_frequency: state=1228800 cpu_id=3
35382<...>-9005 ( 8943) [004] d..4 82315.664918: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
35383   system_server-8943  ( 8943) [002] d..2 82315.664919: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
35384          <idle>-0     (-----) [006] .n.1 82315.664922: cpu_idle: state=4294967295 cpu_id=6
35385          <idle>-0     (-----) [006] d..2 82315.664948: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
35386         sugov:0-576   (  576) [003] d..2 82315.664949: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35387          <idle>-0     (-----) [005] ...1 82315.664957: cpu_idle: state=4294967295 cpu_id=5
35388          <idle>-0     (-----) [005] d..1 82315.664958: cpu_idle: state=0 cpu_id=5
35389          <idle>-0     (-----) [003] d..1 82315.664959: cpu_idle: state=0 cpu_id=3
35390<...>-9039 ( 8943) [006] d..2 82315.664961: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35391          <idle>-0     (-----) [006] d..1 82315.664964: cpu_idle: state=0 cpu_id=6
35392<...>-9132 ( 9105) [001] d..3 82315.664966: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
35393<...>-9132 ( 9105) [001] d..4 82315.664992: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
35394          <idle>-0     (-----) [003] .n.1 82315.664999: cpu_idle: state=4294967295 cpu_id=3
35395          <idle>-0     (-----) [003] d..2 82315.665026: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35396 crtc_commit:111-321   (  321) [002] d..2 82315.665036: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
35397          <idle>-0     (-----) [002] d..1 82315.665049: cpu_idle: state=0 cpu_id=2
35398<...>-9005 ( 8943) [004] .... 82315.665054: binder_transaction: transaction=1568895 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
35399<...>-9005 ( 8943) [004] .... 82315.665057: binder_transaction_alloc_buf: transaction=1568895 data_size=96 offsets_size=0
35400<...>-9005 ( 8943) [004] d..4 82315.665059: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
35401          <idle>-0     (-----) [002] dnh2 82315.665095: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=002
35402          <idle>-0     (-----) [002] .n.1 82315.665100: cpu_idle: state=4294967295 cpu_id=2
35403<...>-9105 ( 9105) [003] d..2 82315.665107: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35404<...>-9132 ( 9105) [001] d..2 82315.665109: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35405          <idle>-0     (-----) [002] d..2 82315.665109: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
35406           <...>-27550 (-----) [007] d.s1 82315.665125: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=007
35407<...>-9005 ( 8943) [004] d.s2 82315.665126: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=007
35408<...>-9131 ( 9105) [002] .... 82315.665147: binder_transaction_received: transaction=1568895
35409          <idle>-0     (-----) [003] dnH3 82315.665149: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
35410<...>-16709 ( 9871) [000] d.h6 82315.665152: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
35411<...>-9005 ( 8943) [004] d.s2 82315.665165: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
35412<...>-9005 ( 8943) [004] d.s3 82315.665171: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
35413          <idle>-0     (-----) [001] dnh3 82315.665172: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
35414          <idle>-0     (-----) [003] d..2 82315.665175: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
35415<...>-9005 ( 8943) [004] d..3 82315.665191: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
35416<...>-9005 ( 8943) [004] d..4 82315.665197: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
35417<...>-16709 ( 9871) [000] dnh7 82315.665198: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
35418          <idle>-0     (-----) [001] d..2 82315.665199: 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
35419          <idle>-0     (-----) [006] .n.1 82315.665202: cpu_idle: state=4294967295 cpu_id=6
35420          <idle>-0     (-----) [006] d..2 82315.665205: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
35421  crtc_event:111-322   (  322) [003] d..2 82315.665210: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35422<...>-16709 ( 9871) [000] dnh8 82315.665210: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
35423<...>-8962 ( 8943) [006] d..3 82315.665220: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
35424          <idle>-0     (-----) [003] d..1 82315.665220: cpu_idle: state=0 cpu_id=3
35425     rcu_preempt-7     (    7) [001] d..2 82315.665223: 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
35426<...>-16709 ( 9871) [000] dnh9 82315.665228: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
35427<...>-9131 ( 9105) [002] d..3 82315.665233: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
35428          <idle>-0     (-----) [001] d..1 82315.665233: cpu_idle: state=0 cpu_id=1
35429<...>-16709 ( 9871) [000] dnh6 82315.665233: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
35430          <idle>-0     (-----) [003] .n.1 82315.665234: cpu_idle: state=4294967295 cpu_id=3
35431          <idle>-0     (-----) [003] d..2 82315.665242: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
35432          <idle>-0     (-----) [001] dnh2 82315.665243: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=001
35433<...>-8962 ( 8943) [006] d..2 82315.665244: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35434          <idle>-0     (-----) [006] d..1 82315.665248: cpu_idle: state=0 cpu_id=6
35435          <idle>-0     (-----) [001] .n.1 82315.665253: cpu_idle: state=4294967295 cpu_id=1
35436<...>-9131 ( 9105) [002] d..4 82315.665256: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
35437          <idle>-0     (-----) [001] d..2 82315.665266: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
35438<...>-16709 ( 9871) [000] dnh7 82315.665273: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=001
35439<...>-9005 ( 8943) [004] .... 82315.665298: binder_transaction: transaction=1568896 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
35440<...>-9005 ( 8943) [004] .... 82315.665300: binder_transaction_alloc_buf: transaction=1568896 data_size=380 offsets_size=16
35441<...>-9005 ( 8943) [004] ...2 82315.665304: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
35442<...>-9005 ( 8943) [004] d..4 82315.665305: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
35443 crtc_commit:111-321   (  321) [003] d..2 82315.665310: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
35444<...>-9005 ( 8943) [004] d..5 82315.665316: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35445<...>-16709 ( 9871) [000] d..2 82315.665317: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
35446          <idle>-0     (-----) [005] .n.1 82315.665320: cpu_idle: state=4294967295 cpu_id=5
35447<...>-9005 ( 8943) [004] d..2 82315.665321: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
35448          <idle>-0     (-----) [005] d..2 82315.665324: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35449<...>-8951 ( 8858) [005] .... 82315.665328: binder_transaction_received: transaction=1568896
35450<...>-9131 ( 9105) [002] d..2 82315.665330: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35451     kworker/0:1-25262 (25262) [000] d..2 82315.665335: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35452     kworker/4:1-25432 (25432) [004] d..2 82315.665336: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35453          <idle>-0     (-----) [004] d..1 82315.665342: cpu_idle: state=0 cpu_id=4
35454   system_server-8943  ( 8943) [001] .... 82315.665347: binder_transaction: transaction=1568897 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
35455   system_server-8943  ( 8943) [001] .... 82315.665351: binder_transaction_alloc_buf: transaction=1568897 data_size=96 offsets_size=0
35456 SDM_EventThread-644   (  619) [003] ...1 82315.665351: tracing_mark_write: B|619|HWCCallbacks::Vsync::
35457   system_server-8943  ( 8943) [001] d..4 82315.665355: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=002
35458<...>-8951 ( 8858) [005] .... 82315.665355: binder_transaction: transaction=1568898 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
35459<...>-8951 ( 8858) [005] .... 82315.665357: binder_transaction_alloc_buf: transaction=1568898 data_size=0 offsets_size=0
35460<...>-8951 ( 8858) [005] d..2 82315.665358: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
35461 SDM_EventThread-644   (  619) [003] ...1 82315.665361: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
35462 SDM_EventThread-644   (  619) [003] ...1 82315.665365: tracing_mark_write: E|619
35463<...>-8951 ( 8858) [005] d..3 82315.665366: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
35464<...>-8951 ( 8858) [005] .... 82315.665368: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
35465          <idle>-0     (-----) [006] dnh2 82315.665381: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
35466<...>-8951 ( 8858) [005] d..2 82315.665381: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35467          <idle>-0     (-----) [006] .n.1 82315.665383: cpu_idle: state=4294967295 cpu_id=6
35468<...>-9005 ( 8943) [005] .... 82315.665385: binder_transaction_received: transaction=1568898
35469 SDM_EventThread-644   (  619) [003] .... 82315.665389: binder_transaction: transaction=1568899 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
35470 SDM_EventThread-644   (  619) [003] .... 82315.665393: binder_transaction_alloc_buf: transaction=1568899 data_size=76 offsets_size=0
35471 SDM_EventThread-644   (  619) [003] d..4 82315.665398: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=000
35472          <idle>-0     (-----) [006] d..2 82315.665413: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
35473<...>-9131 ( 9105) [006] .... 82315.665417: binder_transaction_received: transaction=1568897
35474<...>-9105 ( 9105) [002] d..2 82315.665421: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
35475          <idle>-0     (-----) [002] d..1 82315.665434: cpu_idle: state=0 cpu_id=2
35476          <idle>-0     (-----) [002] .n.1 82315.665437: cpu_idle: state=4294967295 cpu_id=2
35477 SDM_EventThread-644   (  619) [003] d..5 82315.665439: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
35478<...>-9131 ( 9105) [006] d..3 82315.665450: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
35479          <idle>-0     (-----) [002] d..2 82315.665450: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
35480<...>-8890 ( 8858) [002] .... 82315.665457: binder_transaction_received: transaction=1568899
35481 SDM_EventThread-644   (  619) [003] ...1 82315.665459: tracing_mark_write: E|619
35482   system_server-8943  ( 8943) [001] d..2 82315.665463: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35483 SDM_EventThread-644   (  619) [003] d..4 82315.665473: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
35484          <idle>-0     (-----) [001] d..1 82315.665474: cpu_idle: state=0 cpu_id=1
35485<...>-8890 ( 8858) [002] d.h1 82315.665474: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
35486<...>-9131 ( 9105) [006] d..2 82315.665484: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35487          <idle>-0     (-----) [006] d..1 82315.665488: cpu_idle: state=0 cpu_id=6
35488 SDM_EventThread-644   (  619) [003] d..5 82315.665490: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
35489          <idle>-0     (-----) [001] .n.1 82315.665496: cpu_idle: state=4294967295 cpu_id=1
35490          <idle>-0     (-----) [001] d..2 82315.665503: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
35491<...>-8890 ( 8858) [002] ...1 82315.665506: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
35492 crtc_commit:111-321   (  321) [001] d..2 82315.665522: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35493<...>-8890 ( 8858) [002] ...1 82315.665523: tracing_mark_write: E|8858
35494 SDM_EventThread-644   (  619) [003] d..2 82315.665526: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35495          <idle>-0     (-----) [001] d..1 82315.665529: cpu_idle: state=0 cpu_id=1
35496<...>-8890 ( 8858) [002] d..2 82315.665560: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
35497          <idle>-0     (-----) [002] d..1 82315.665571: cpu_idle: state=0 cpu_id=2
35498<...>-9105 ( 9105) [003] d..2 82315.665589: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35499          <idle>-0     (-----) [003] d..1 82315.665600: cpu_idle: state=0 cpu_id=3
35500          <idle>-0     (-----) [004] ...1 82315.665605: cpu_idle: state=4294967295 cpu_id=4
35501          <idle>-0     (-----) [004] d..1 82315.665606: cpu_idle: state=0 cpu_id=4
35502<...>-9005 ( 8943) [005] d..3 82315.665648: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
35503<...>-9005 ( 8943) [005] d..4 82315.665657: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
35504          <idle>-0     (-----) [006] .n.1 82315.665661: cpu_idle: state=4294967295 cpu_id=6
35505          <idle>-0     (-----) [006] d..2 82315.665665: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
35506<...>-9039 ( 8943) [006] d..2 82315.665681: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35507<...>-9005 ( 8943) [005] d..1 82315.665682: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
35508          <idle>-0     (-----) [006] d..1 82315.665684: cpu_idle: state=0 cpu_id=6
35509<...>-9005 ( 8943) [005] d..2 82315.665693: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
35510          <idle>-0     (-----) [004] .n.1 82315.665697: cpu_idle: state=4294967295 cpu_id=4
35511          <idle>-0     (-----) [004] d..2 82315.665701: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
35512<...>-16709 ( 9871) [000] .... 82315.665703: binder_transaction: transaction=1568900 dest_node=397015 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
35513<...>-16709 ( 9871) [000] .... 82315.665706: binder_transaction_alloc_buf: transaction=1568900 data_size=76 offsets_size=0
35514<...>-16709 ( 9871) [000] d..4 82315.665711: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
35515<...>-16709 ( 9871) [000] dn.5 82315.665723: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
35516<...>-16709 ( 9871) [000] d..2 82315.665730: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
35517<...>-25493 ( 8943) [000] .... 82315.665737: binder_transaction_received: transaction=1568900
35518<...>-8969 ( 8943) [004] d..1 82315.665739: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35519<...>-8969 ( 8943) [004] d..2 82315.665746: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35520          <idle>-0     (-----) [006] .n.1 82315.665750: cpu_idle: state=4294967295 cpu_id=6
35521          <idle>-0     (-----) [006] d..2 82315.665753: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
35522<...>-8969 ( 8943) [004] d..2 82315.665774: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35523          <idle>-0     (-----) [004] d..1 82315.665778: cpu_idle: state=0 cpu_id=4
35524<...>-9062 ( 8943) [006] d..1 82315.665855: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
35525<...>-9005 ( 8943) [005] d..2 82315.665858: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35526<...>-9062 ( 8943) [006] d..2 82315.665865: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
35527          <idle>-0     (-----) [005] d..2 82315.665868: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
35528<...>-9062 ( 8943) [006] d..2 82315.665884: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35529          <idle>-0     (-----) [006] d..1 82315.665888: cpu_idle: state=0 cpu_id=6
35530<...>-9005 ( 8943) [005] d..3 82315.665902: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
35531<...>-9005 ( 8943) [005] d..4 82315.665909: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
35532          <idle>-0     (-----) [006] .n.1 82315.665914: cpu_idle: state=4294967295 cpu_id=6
35533          <idle>-0     (-----) [006] d..2 82315.665917: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
35534<...>-9039 ( 8943) [006] d..2 82315.665927: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35535          <idle>-0     (-----) [006] d..1 82315.665929: cpu_idle: state=0 cpu_id=6
35536<...>-25493 ( 8943) [000] .... 82315.665985: binder_transaction: transaction=1568901 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
35537<...>-25493 ( 8943) [000] .... 82315.665989: binder_transaction_alloc_buf: transaction=1568901 data_size=8 offsets_size=0
35538          <idle>-0     (-----) [004] ...1 82315.666011: cpu_idle: state=4294967295 cpu_id=4
35539          <idle>-0     (-----) [004] d..1 82315.666012: cpu_idle: state=0 cpu_id=4
35540<...>-25493 ( 8943) [000] d..2 82315.666018: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35541<...>-16709 ( 9871) [000] .... 82315.666025: binder_transaction_received: transaction=1568901
35542          <idle>-0     (-----) [006] ...1 82315.666160: cpu_idle: state=4294967295 cpu_id=6
35543          <idle>-0     (-----) [006] d..1 82315.666161: cpu_idle: state=0 cpu_id=6
35544<...>-9005 ( 8943) [005] .... 82315.666216: binder_transaction: transaction=1568902 dest_node=617843 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
35545<...>-9005 ( 8943) [005] .... 82315.666217: binder_transaction_alloc_buf: transaction=1568902 data_size=228 offsets_size=8
35546<...>-9005 ( 8943) [005] ...2 82315.666222: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
35547<...>-9005 ( 8943) [005] d..4 82315.666223: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35548<...>-9005 ( 8943) [005] dn.5 82315.666228: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35549<...>-9005 ( 8943) [005] d..2 82315.666231: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35550<...>-8951 ( 8858) [005] .... 82315.666235: binder_transaction_received: transaction=1568902
35551           <...>-27550 (-----) [007] d.h1 82315.666315: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=007
35552          <idle>-0     (-----) [003] dnh2 82315.666352: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
35553          <idle>-0     (-----) [003] .n.1 82315.666358: cpu_idle: state=4294967295 cpu_id=3
35554          <idle>-0     (-----) [003] d..2 82315.666364: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
35555        DispSync-8879  ( 8858) [003] d..1 82315.666387: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
35556<...>-8951 ( 8858) [005] d..2 82315.666390: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35557<...>-9005 ( 8943) [005] d..2 82315.666400: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35558          <idle>-0     (-----) [005] d..1 82315.666406: cpu_idle: state=0 cpu_id=5
35559        DispSync-8879  ( 8858) [003] d..2 82315.666408: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
35560        DispSync-8879  ( 8858) [003] d..1 82315.666412: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35561          <idle>-0     (-----) [002] .n.1 82315.666413: cpu_idle: state=4294967295 cpu_id=2
35562          <idle>-0     (-----) [002] d..2 82315.666421: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
35563        DispSync-8879  ( 8858) [003] d..1 82315.666423: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
35564          <idle>-0     (-----) [005] dnh2 82315.666426: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35565          <idle>-0     (-----) [005] .n.1 82315.666428: cpu_idle: state=4294967295 cpu_id=5
35566          <idle>-0     (-----) [005] d..2 82315.666432: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35567        DispSync-8879  ( 8858) [003] d..2 82315.666434: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
35568          <idle>-0     (-----) [001] .n.1 82315.666439: cpu_idle: state=4294967295 cpu_id=1
35569<...>-8951 ( 8858) [005] d..2 82315.666440: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35570          <idle>-0     (-----) [005] d..1 82315.666444: cpu_idle: state=0 cpu_id=5
35571          <idle>-0     (-----) [001] d..2 82315.666446: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
35572        DispSync-8879  ( 8858) [003] d..2 82315.666458: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
35573   sfEventThread-8882  ( 8858) [002] d..3 82315.666462: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
35574          <idle>-0     (-----) [003] d..1 82315.666467: cpu_idle: state=0 cpu_id=3
35575          <idle>-0     (-----) [004] dnh2 82315.666480: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
35576          <idle>-0     (-----) [004] .n.1 82315.666482: cpu_idle: state=4294967295 cpu_id=4
35577          <idle>-0     (-----) [004] d..2 82315.666486: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
35578   sfEventThread-8882  ( 8858) [002] d..3 82315.666488: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
35579  appEventThread-8881  ( 8858) [001] d..3 82315.666499: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
35580   sfEventThread-8882  ( 8858) [002] d..4 82315.666509: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
35581  appEventThread-8881  ( 8858) [001] d..4 82315.666515: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
35582          <idle>-0     (-----) [003] .n.1 82315.666515: cpu_idle: state=4294967295 cpu_id=3
35583          <idle>-0     (-----) [003] d..2 82315.666522: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
35584   sfEventThread-8882  ( 8858) [002] d..1 82315.666531: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35585  appEventThread-8881  ( 8858) [001] d..2 82315.666543: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35586          <idle>-0     (-----) [005] dnh2 82315.666544: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35587          <idle>-0     (-----) [005] .n.1 82315.666546: cpu_idle: state=4294967295 cpu_id=5
35588          <idle>-0     (-----) [005] d..2 82315.666549: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35589          <idle>-0     (-----) [001] d..1 82315.666552: cpu_idle: state=0 cpu_id=1
35590<...>-8951 ( 8858) [005] d..1 82315.666553: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
35591   sfEventThread-8882  ( 8858) [002] d..2 82315.666559: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
35592          <idle>-0     (-----) [002] d..1 82315.666569: cpu_idle: state=0 cpu_id=2
35593<...>-8951 ( 8858) [005] .... 82315.666576: binder_transaction: transaction=1568903 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
35594<...>-8951 ( 8858) [005] .... 82315.666577: binder_transaction_alloc_buf: transaction=1568903 data_size=52 offsets_size=16
35595          <idle>-0     (-----) [002] dnh2 82315.666579: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
35596          <idle>-0     (-----) [002] .n.1 82315.666584: cpu_idle: state=4294967295 cpu_id=2
35597          <idle>-0     (-----) [002] d..2 82315.666590: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
35598   sfEventThread-8882  ( 8858) [002] d..2 82315.666620: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
35599          <idle>-0     (-----) [002] d..1 82315.666628: cpu_idle: state=0 cpu_id=2
35600<...>-9006 ( 8943) [004] .... 82315.666768: binder_transaction: transaction=1568906 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
35601<...>-9006 ( 8943) [004] .... 82315.666770: binder_transaction_alloc_buf: transaction=1568906 data_size=80 offsets_size=0
35602<...>-9006 ( 8943) [004] d..4 82315.666773: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
35603<...>-8951 ( 8858) [005] d..2 82315.666806: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
35604          <idle>-0     (-----) [001] dnh2 82315.666810: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
35605<...>-8951 ( 8858) [005] d..3 82315.666810: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
35606<...>-8951 ( 8858) [005] .... 82315.666812: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
35607          <idle>-0     (-----) [001] .n.1 82315.666814: cpu_idle: state=4294967295 cpu_id=1
35608          <idle>-0     (-----) [001] d..2 82315.666822: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
35609<...>-13083 ( 8858) [001] .... 82315.666828: binder_transaction_received: transaction=1568906
35610<...>-8951 ( 8858) [005] d..2 82315.666832: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35611<...>-9005 ( 8943) [005] .... 82315.666835: binder_transaction_received: transaction=1568903
35612<...>-9005 ( 8943) [005] d..1 82315.666848: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
35613<...>-9006 ( 8943) [004] d..2 82315.666851: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35614<...>-13083 ( 8858) [001] d..1 82315.666852: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
35615<...>-9005 ( 8943) [005] d..2 82315.666858: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
35616          <idle>-0     (-----) [004] d..2 82315.666861: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
35617<...>-13083 ( 8858) [001] d..2 82315.666864: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
35618          <idle>-0     (-----) [002] .n.1 82315.666870: cpu_idle: state=4294967295 cpu_id=2
35619<...>-9005 ( 8943) [005] .... 82315.666874: binder_transaction: transaction=1568909 dest_node=1568907 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
35620          <idle>-0     (-----) [002] d..2 82315.666876: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
35621<...>-9005 ( 8943) [005] .... 82315.666879: binder_transaction_alloc_buf: transaction=1568909 data_size=80 offsets_size=0
35622<...>-9006 ( 8943) [004] .... 82315.666880: binder_transaction: transaction=1568910 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
35623<...>-9005 ( 8943) [005] ...2 82315.666880: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
35624<...>-9006 ( 8943) [004] .... 82315.666881: binder_transaction_alloc_buf: transaction=1568910 data_size=684 offsets_size=32
35625<...>-9005 ( 8943) [005] d..4 82315.666883: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=001
35626<...>-13083 ( 8858) [001] d..2 82315.666893: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35627   sfEventThread-8882  ( 8858) [002] d..2 82315.666901: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
35628          <idle>-0     (-----) [001] d..1 82315.666901: cpu_idle: state=0 cpu_id=1
35629<...>-9005 ( 8943) [005] dn.5 82315.666904: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
35630          <idle>-0     (-----) [002] d..1 82315.666908: cpu_idle: state=0 cpu_id=2
35631<...>-9006 ( 8943) [004] ...2 82315.666908: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
35632<...>-9006 ( 8943) [004] d..4 82315.666922: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35633<...>-9005 ( 8943) [005] d..2 82315.666924: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
35634<...>-9006 ( 8943) [004] d..5 82315.666933: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
35635<...>-13083 ( 8858) [005] .... 82315.666935: binder_transaction_received: transaction=1568909
35636<...>-9006 ( 8943) [004] d..2 82315.666937: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35637<...>-8951 ( 8858) [004] .... 82315.666941: binder_transaction_received: transaction=1568910
35638<...>-13083 ( 8858) [005] .... 82315.666944: binder_transaction: transaction=1568911 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x8 code=0x0
35639<...>-13083 ( 8858) [005] .... 82315.666946: binder_transaction_alloc_buf: transaction=1568911 data_size=4 offsets_size=0
35640<...>-13083 ( 8858) [005] .... 82315.666947: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
35641<...>-13083 ( 8858) [005] d..2 82315.666958: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35642<...>-9005 ( 8943) [005] .... 82315.666961: binder_transaction_received: transaction=1568911
35643<...>-8951 ( 8858) [004] .... 82315.666973: binder_transaction: transaction=1568912 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
35644<...>-8951 ( 8858) [004] .... 82315.666974: binder_transaction_alloc_buf: transaction=1568912 data_size=0 offsets_size=0
35645<...>-8951 ( 8858) [004] d..2 82315.666975: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
35646<...>-8951 ( 8858) [004] d..3 82315.666980: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
35647<...>-8951 ( 8858) [004] .... 82315.666980: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
35648<...>-8951 ( 8858) [004] d..2 82315.666985: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
35649<...>-9006 ( 8943) [004] .... 82315.666988: binder_transaction_received: transaction=1568912
35650<...>-9006 ( 8943) [004] d..2 82315.667016: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
35651<...>-8951 ( 8858) [004] d..2 82315.667034: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35652          <idle>-0     (-----) [004] d..1 82315.667039: cpu_idle: state=0 cpu_id=4
35653<...>-9005 ( 8943) [005] .... 82315.667288: binder_transaction: transaction=1568913 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
35654<...>-9005 ( 8943) [005] .... 82315.667290: binder_transaction_alloc_buf: transaction=1568913 data_size=96 offsets_size=0
35655<...>-9005 ( 8943) [005] d..4 82315.667292: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
35656<...>-9005 ( 8943) [005] d..5 82315.667300: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
35657          <idle>-0     (-----) [006] .n.1 82315.667303: cpu_idle: state=4294967295 cpu_id=6
35658          <idle>-0     (-----) [006] d..2 82315.667306: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
35659<...>-9131 ( 9105) [006] .... 82315.667310: binder_transaction_received: transaction=1568913
35660<...>-9005 ( 8943) [005] d..3 82315.667333: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
35661          <idle>-0     (-----) [001] dnh2 82315.667369: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=001
35662          <idle>-0     (-----) [001] .n.1 82315.667374: cpu_idle: state=4294967295 cpu_id=1
35663<...>-9131 ( 9105) [006] d..2 82315.667376: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35664<...>-16709 ( 9871) [000] d..2 82315.667378: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
35665          <idle>-0     (-----) [006] d..1 82315.667379: cpu_idle: state=0 cpu_id=6
35666          <idle>-0     (-----) [001] d..2 82315.667382: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
35667<...>-16709 ( 9871) [000] d..3 82315.667403: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=001
35668<...>-8962 ( 8943) [001] d..3 82315.667442: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=001
35669<...>-8962 ( 8943) [001] d..4 82315.667463: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
35670          <idle>-0     (-----) [002] .n.1 82315.667468: cpu_idle: state=4294967295 cpu_id=2
35671          <idle>-0     (-----) [002] d..2 82315.667477: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
35672<...>-9005 ( 8943) [005] .... 82315.667490: binder_transaction: transaction=1568914 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
35673<...>-9005 ( 8943) [005] .... 82315.667492: binder_transaction_alloc_buf: transaction=1568914 data_size=684 offsets_size=40
35674<...>-8962 ( 8943) [001] d..2 82315.667496: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=rcuos/0 next_pid=11 next_prio=120
35675<...>-9005 ( 8943) [005] ...2 82315.667497: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
35676<...>-9005 ( 8943) [005] d..4 82315.667498: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
35677<...>-9005 ( 8943) [005] dn.5 82315.667506: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35678<...>-9005 ( 8943) [005] d..2 82315.667509: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35679<...>-8951 ( 8858) [005] .... 82315.667513: binder_transaction_received: transaction=1568914
35680         rcuos/0-11    (   11) [001] d..2 82315.667515: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
35681          <idle>-0     (-----) [001] d..1 82315.667524: cpu_idle: state=0 cpu_id=1
35682<...>-8951 ( 8858) [005] .... 82315.667544: binder_transaction: transaction=1568915 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
35683<...>-8951 ( 8858) [005] .... 82315.667546: binder_transaction_alloc_buf: transaction=1568915 data_size=0 offsets_size=0
35684<...>-8951 ( 8858) [005] .... 82315.667546: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
35685   system_server-8943  ( 8943) [002] .... 82315.667550: binder_transaction: transaction=1568916 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
35686   system_server-8943  ( 8943) [002] .... 82315.667554: binder_transaction_alloc_buf: transaction=1568916 data_size=96 offsets_size=0
35687   system_server-8943  ( 8943) [002] d..4 82315.667557: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
35688<...>-8951 ( 8858) [005] d..2 82315.667562: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35689<...>-9005 ( 8943) [005] .... 82315.667565: binder_transaction_received: transaction=1568915
35690          <idle>-0     (-----) [006] dnh2 82315.667572: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
35691          <idle>-0     (-----) [006] .n.1 82315.667574: cpu_idle: state=4294967295 cpu_id=6
35692          <idle>-0     (-----) [006] d..2 82315.667577: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
35693<...>-9131 ( 9105) [006] .... 82315.667578: binder_transaction_received: transaction=1568916
35694<...>-9131 ( 9105) [006] d..2 82315.667617: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35695   system_server-8943  ( 8943) [002] d..2 82315.667620: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
35696          <idle>-0     (-----) [006] d..1 82315.667620: cpu_idle: state=0 cpu_id=6
35697          <idle>-0     (-----) [002] d..1 82315.667631: cpu_idle: state=0 cpu_id=2
35698<...>-9005 ( 8943) [005] d..3 82315.667838: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
35699<...>-9005 ( 8943) [005] d..4 82315.667847: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
35700          <idle>-0     (-----) [006] .n.1 82315.667851: cpu_idle: state=4294967295 cpu_id=6
35701          <idle>-0     (-----) [006] d..2 82315.667854: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
35702<...>-9039 ( 8943) [006] d..2 82315.667870: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35703          <idle>-0     (-----) [006] d..1 82315.667872: cpu_idle: state=0 cpu_id=6
35704<...>-9005 ( 8943) [005] d..1 82315.667879: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35705<...>-9005 ( 8943) [005] d..2 82315.667886: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35706          <idle>-0     (-----) [006] .n.1 82315.667890: cpu_idle: state=4294967295 cpu_id=6
35707          <idle>-0     (-----) [006] d..2 82315.667893: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
35708  surfaceflinger-8858  ( 8858) [003] ...1 82315.667926: tracing_mark_write: B|8858|HIDL::IComposerClient::createLayer::client
35709<...>-9005 ( 8943) [005] d..3 82315.667928: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=003
35710  surfaceflinger-8858  ( 8858) [003] ...1 82315.667932: tracing_mark_write: E|8858
35711          <idle>-0     (-----) [001] dnh2 82315.667950: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=001
35712          <idle>-0     (-----) [001] .n.1 82315.667955: cpu_idle: state=4294967295 cpu_id=1
35713          <idle>-0     (-----) [001] d..2 82315.667964: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
35714  surfaceflinger-8858  ( 8858) [003] .... 82315.667964: binder_transaction: transaction=1568917 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x5
35715  surfaceflinger-8858  ( 8858) [003] .... 82315.667969: binder_transaction_alloc_buf: transaction=1568917 data_size=68 offsets_size=0
35716  surfaceflinger-8858  ( 8858) [003] ...2 82315.667974: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
35717  surfaceflinger-8858  ( 8858) [003] d..4 82315.667982: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
35718<...>-9005 ( 8943) [005] d..1 82315.667986: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35719<...>-9062 ( 8943) [006] d..2 82315.667989: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35720          <idle>-0     (-----) [006] d..1 82315.667992: cpu_idle: state=0 cpu_id=6
35721<...>-9005 ( 8943) [005] d..2 82315.667996: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35722          <idle>-0     (-----) [006] .n.1 82315.668000: cpu_idle: state=4294967295 cpu_id=6
35723          <idle>-0     (-----) [006] d..2 82315.668003: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
35724  surfaceflinger-8858  ( 8858) [003] d..5 82315.668003: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
35725          <idle>-0     (-----) [002] .n.1 82315.668009: cpu_idle: state=4294967295 cpu_id=2
35726<...>-9062 ( 8943) [006] d..2 82315.668009: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35727<...>-9005 ( 8943) [005] .... 82315.668010: binder_transaction: transaction=1568918 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
35728          <idle>-0     (-----) [006] d..1 82315.668011: cpu_idle: state=0 cpu_id=6
35729<...>-9005 ( 8943) [005] .... 82315.668011: binder_transaction_alloc_buf: transaction=1568918 data_size=80 offsets_size=0
35730<...>-9005 ( 8943) [005] d..4 82315.668012: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
35731          <idle>-0     (-----) [002] d..2 82315.668017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
35732  surfaceflinger-8858  ( 8858) [003] d..2 82315.668018: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35733<...>-9005 ( 8943) [005] d..5 82315.668023: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
35734 [email protected]   (  619) [002] .... 82315.668025: binder_transaction_received: transaction=1568917
35735          <idle>-0     (-----) [004] .n.1 82315.668028: cpu_idle: state=4294967295 cpu_id=4
35736<...>-9005 ( 8943) [005] d..1 82315.668029: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35737          <idle>-0     (-----) [004] d..2 82315.668032: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
35738<...>-8951 ( 8858) [004] .... 82315.668034: binder_transaction_received: transaction=1568918
35739<...>-9005 ( 8943) [005] d..2 82315.668034: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35740          <idle>-0     (-----) [006] .n.1 82315.668039: cpu_idle: state=4294967295 cpu_id=6
35741<...>-8951 ( 8858) [004] d..1 82315.668040: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
35742          <idle>-0     (-----) [006] d..2 82315.668041: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
35743<...>-9062 ( 8943) [006] d..2 82315.668047: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35744          <idle>-0     (-----) [006] d..1 82315.668048: cpu_idle: state=0 cpu_id=6
35745<...>-8951 ( 8858) [004] d..2 82315.668059: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35746<...>-16709 ( 9871) [000] dnh1 82315.668061: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
35747          <idle>-0     (-----) [004] d..1 82315.668062: cpu_idle: state=0 cpu_id=4
35748 [email protected]   (  619) [002] ...1 82315.668065: tracing_mark_write: B|619|HIDL::IComposerClient::createLayer::server
35749<...>-16709 ( 9871) [000] d..2 82315.668072: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
35750   sfEventThread-8882  ( 8858) [000] d..2 82315.668102: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35751 [email protected]   (  619) [002] ...1 82315.668108: tracing_mark_write: E|619
35752 [email protected]   (  619) [002] .... 82315.668119: binder_transaction: transaction=1568919 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
35753 [email protected]   (  619) [002] .... 82315.668121: binder_transaction_alloc_buf: transaction=1568919 data_size=16 offsets_size=0
35754 [email protected]   (  619) [002] d..2 82315.668124: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
35755 [email protected]   (  619) [002] d..3 82315.668144: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
35756<...>-16709 ( 9871) [000] d..2 82315.668151: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
35757 [email protected]   (  619) [002] .... 82315.668155: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
35758  surfaceflinger-8858  ( 8858) [000] .... 82315.668161: binder_transaction_received: transaction=1568919
35759<...>-9005 ( 8943) [005] .... 82315.668181: binder_transaction: transaction=1568920 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
35760<...>-9005 ( 8943) [005] .... 82315.668183: binder_transaction_alloc_buf: transaction=1568920 data_size=988 offsets_size=48
35761<...>-9005 ( 8943) [005] ...2 82315.668189: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
35762<...>-9005 ( 8943) [005] d..4 82315.668190: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
35763<...>-9005 ( 8943) [005] dn.5 82315.668199: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35764 [email protected]   (  619) [002] d..2 82315.668199: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
35765<...>-9005 ( 8943) [005] d..2 82315.668202: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35766<...>-8951 ( 8858) [005] .... 82315.668206: binder_transaction_received: transaction=1568920
35767          <idle>-0     (-----) [002] d..1 82315.668210: cpu_idle: state=0 cpu_id=2
35768<...>-9105 ( 9105) [003] .... 82315.668222: binder_transaction: transaction=1568921 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
35769<...>-9105 ( 9105) [003] .... 82315.668226: binder_transaction_alloc_buf: transaction=1568921 data_size=80 offsets_size=0
35770<...>-9105 ( 9105) [003] d..4 82315.668229: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
35771<...>-9105 ( 9105) [003] d..5 82315.668256: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
35772          <idle>-0     (-----) [002] .n.1 82315.668262: cpu_idle: state=4294967295 cpu_id=2
35773<...>-8951 ( 8858) [005] .... 82315.668291: binder_transaction: transaction=1568922 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
35774          <idle>-0     (-----) [002] d..2 82315.668293: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
35775<...>-8951 ( 8858) [005] .... 82315.668293: binder_transaction_alloc_buf: transaction=1568922 data_size=0 offsets_size=0
35776<...>-8951 ( 8858) [005] .... 82315.668293: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
35777<...>-13083 ( 8858) [002] .... 82315.668298: binder_transaction_received: transaction=1568921
35778<...>-8951 ( 8858) [005] d..2 82315.668309: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35779<...>-9005 ( 8943) [005] .... 82315.668313: binder_transaction_received: transaction=1568922
35780<...>-9105 ( 9105) [003] d..3 82315.668316: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
35781<...>-13083 ( 8858) [002] d..1 82315.668318: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
35782<...>-13083 ( 8858) [002] d..2 82315.668336: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
35783          <idle>-0     (-----) [006] dnh2 82315.668340: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
35784          <idle>-0     (-----) [006] .n.1 82315.668342: cpu_idle: state=4294967295 cpu_id=6
35785          <idle>-0     (-----) [006] d..2 82315.668344: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
35786<...>-9105 ( 9105) [003] d..2 82315.668344: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
35787<...>-9005 ( 8943) [005] .... 82315.668358: binder_transaction: transaction=1568923 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
35788<...>-9005 ( 8943) [005] .... 82315.668359: binder_transaction_alloc_buf: transaction=1568923 data_size=76 offsets_size=0
35789<...>-9005 ( 8943) [005] ...2 82315.668361: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
35790<...>-9005 ( 8943) [005] d..4 82315.668364: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=002
35791    RenderThread-9436  ( 9105) [006] d..2 82315.668365: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35792          <idle>-0     (-----) [006] d..1 82315.668368: cpu_idle: state=0 cpu_id=6
35793<...>-13083 ( 8858) [002] d..2 82315.668375: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
35794          <idle>-0     (-----) [002] d..1 82315.668385: cpu_idle: state=0 cpu_id=2
35795  appEventThread-8881  ( 8858) [003] d..2 82315.668385: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35796<...>-9005 ( 8943) [005] dn.5 82315.668387: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
35797<...>-9005 ( 8943) [005] d..2 82315.668406: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
35798<...>-13083 ( 8858) [005] .... 82315.668410: binder_transaction_received: transaction=1568923
35799  surfaceflinger-8858  ( 8858) [000] ...1 82315.668412: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
35800  surfaceflinger-8858  ( 8858) [000] ...1 82315.668417: tracing_mark_write: E|8858
35801<...>-13083 ( 8858) [005] .... 82315.668421: binder_transaction: transaction=1568924 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
35802<...>-13083 ( 8858) [005] .... 82315.668422: binder_transaction_alloc_buf: transaction=1568924 data_size=0 offsets_size=0
35803<...>-13083 ( 8858) [005] .... 82315.668423: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
35804<...>-13083 ( 8858) [005] d..2 82315.668434: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35805<...>-9005 ( 8943) [005] .... 82315.668437: binder_transaction_received: transaction=1568924
35806          <idle>-0     (-----) [006] d.s2 82315.668459: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=006
35807<...>-9005 ( 8943) [005] d.s2 82315.668461: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=006
35808  surfaceflinger-8858  ( 8858) [000] .... 82315.668486: binder_transaction: transaction=1568925 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
35809  surfaceflinger-8858  ( 8858) [000] .... 82315.668489: binder_transaction_alloc_buf: transaction=1568925 data_size=700 offsets_size=128
35810<...>-9105 ( 9105) [003] d.h1 82315.668491: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
35811          <idle>-0     (-----) [006] ...1 82315.668491: cpu_idle: state=4294967295 cpu_id=6
35812          <idle>-0     (-----) [006] d..1 82315.668493: cpu_idle: state=0 cpu_id=6
35813<...>-9105 ( 9105) [003] d.h1 82315.668496: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
35814<...>-9005 ( 8943) [005] d..1 82315.668521: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35815           <...>-27550 (-----) [007] d..1 82315.668525: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=000
35816<...>-9005 ( 8943) [005] d..2 82315.668527: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35817          <idle>-0     (-----) [006] .n.1 82315.668531: cpu_idle: state=4294967295 cpu_id=6
35818          <idle>-0     (-----) [006] d..2 82315.668536: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
35819           <...>-27550 (-----) [007] d..2 82315.668542: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=004
35820          <idle>-0     (-----) [004] .n.1 82315.668546: cpu_idle: state=4294967295 cpu_id=4
35821  surfaceflinger-8858  ( 8858) [000] ...2 82315.668549: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
35822  surfaceflinger-8858  ( 8858) [000] d..4 82315.668562: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
35823          <idle>-0     (-----) [004] d..2 82315.668563: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
35824<...>-9005 ( 8943) [005] d..2 82315.668567: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35825<...>-9062 ( 8943) [006] d..1 82315.668569: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
35826<...>-9105 ( 9105) [003] d..3 82315.668572: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
35827<...>-9062 ( 8943) [006] d..2 82315.668575: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
35828  surfaceflinger-8858  ( 8858) [000] d..5 82315.668575: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
35829          <idle>-0     (-----) [005] d..2 82315.668578: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
35830          <idle>-0     (-----) [002] .n.1 82315.668580: cpu_idle: state=4294967295 cpu_id=2
35831  surfaceflinger-8858  ( 8858) [000] d..2 82315.668588: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35832          <idle>-0     (-----) [002] d..2 82315.668589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
35833<...>-9062 ( 8943) [006] d.h3 82315.668590: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
35834 [email protected]   (  619) [002] .... 82315.668594: binder_transaction_received: transaction=1568925
35835<...>-9062 ( 8943) [006] d..2 82315.668597: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
35836<...>-9105 ( 9105) [003] d..2 82315.668598: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
35837<...>-8 ( 8) [003] d..2 82315.668617: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
35838 [email protected]   (  619) [002] ...1 82315.668620: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
35839<...>-9005 ( 8943) [005] .... 82315.668651: binder_transaction: transaction=1568926 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
35840<...>-9005 ( 8943) [005] .... 82315.668653: binder_transaction_alloc_buf: transaction=1568926 data_size=96 offsets_size=0
35841<...>-9005 ( 8943) [005] d..4 82315.668654: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
35842    RenderThread-9436  ( 9105) [006] d..1 82315.668656: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
35843<...>-9005 ( 8943) [005] d..5 82315.668661: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
35844  kworker/u16:15-1311  ( 1311) [003] d.h3 82315.668677: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
35845<...>-9005 ( 8943) [005] d..3 82315.668701: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=001
35846 [email protected]   (  619) [002] ...1 82315.668705: tracing_mark_write: B|619|HIDL::IMapper::importBuffer::passthrough
35847    RenderThread-9436  ( 9105) [006] .... 82315.668708: binder_transaction: transaction=1568927 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
35848    RenderThread-9436  ( 9105) [006] .... 82315.668709: binder_transaction_alloc_buf: transaction=1568927 data_size=104 offsets_size=0
35849    RenderThread-9436  ( 9105) [006] d..4 82315.668710: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
35850    RenderThread-9436  ( 9105) [006] d..5 82315.668718: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
35851<...>-15374 ( 8943) [001] d.h1 82315.668721: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=001
35852    RenderThread-9436  ( 9105) [006] d..2 82315.668723: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
35853<...>-9131 ( 9105) [006] .... 82315.668725: binder_transaction_received: transaction=1568926
35854 [email protected]   (  619) [002] ...1 82315.668741: tracing_mark_write: E|619
35855<...>-9131 ( 9105) [006] d..2 82315.668776: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35856          <idle>-0     (-----) [006] d..1 82315.668781: cpu_idle: state=0 cpu_id=6
35857<...>-9005 ( 8943) [005] .... 82315.668807: binder_transaction: transaction=1568928 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
35858<...>-9005 ( 8943) [005] .... 82315.668809: binder_transaction_alloc_buf: transaction=1568928 data_size=76 offsets_size=0
35859<...>-9005 ( 8943) [005] ...2 82315.668810: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
35860<...>-9005 ( 8943) [005] d..4 82315.668811: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
35861<...>-9005 ( 8943) [005] d..5 82315.668822: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
35862<...>-9005 ( 8943) [005] d..2 82315.668827: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
35863          <idle>-0     (-----) [006] .n.1 82315.668827: cpu_idle: state=4294967295 cpu_id=6
35864          <idle>-0     (-----) [006] d..2 82315.668831: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
35865<...>-13083 ( 8858) [005] .... 82315.668832: binder_transaction_received: transaction=1568927
35866<...>-8951 ( 8858) [006] .... 82315.668835: binder_transaction_received: transaction=1568928
35867 [email protected]   (  619) [002] ...1 82315.668842: tracing_mark_write: B|619|HWCSession::PresentDisplay::
35868<...>-8951 ( 8858) [006] .... 82315.668848: binder_transaction: transaction=1568929 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
35869<...>-8951 ( 8858) [006] .... 82315.668850: binder_transaction_alloc_buf: transaction=1568929 data_size=0 offsets_size=0
35870<...>-8951 ( 8858) [006] d..2 82315.668851: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
35871<...>-8951 ( 8858) [006] d..3 82315.668859: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=006
35872<...>-13083 ( 8858) [005] .... 82315.668859: binder_transaction: transaction=1568930 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
35873<...>-8951 ( 8858) [006] .... 82315.668860: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
35874<...>-13083 ( 8858) [005] .... 82315.668860: binder_transaction_alloc_buf: transaction=1568930 data_size=52 offsets_size=8
35875<...>-13083 ( 8858) [005] d..2 82315.668864: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
35876<...>-13083 ( 8858) [005] d..3 82315.668870: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
35877<...>-8951 ( 8858) [006] d..2 82315.668874: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
35878    RenderThread-9436  ( 9105) [006] .... 82315.668877: binder_transaction_received: transaction=1568930
35879<...>-13083 ( 8858) [005] d..2 82315.668888: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35880          <idle>-0     (-----) [005] d..1 82315.668893: cpu_idle: state=0 cpu_id=5
35881  kworker/u16:15-1311  ( 1311) [003] d..2 82315.668986: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35882<...>-15374 ( 8943) [001] d.s2 82315.669025: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
35883<...>-15374 ( 8943) [001] d.s3 82315.669052: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
35884<...>-15374 ( 8943) [001] d.s3 82315.669057: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
35885<...>-9105 ( 9105) [003] d..2 82315.669121: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
35886<...>-8962 ( 8943) [003] d..3 82315.669188: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
35887<...>-8962 ( 8943) [003] d..4 82315.669219: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
35888<...>-8962 ( 8943) [003] d..2 82315.669267: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
35889<...>-16709 ( 9871) [000] .... 82315.669328: binder_transaction: transaction=1568931 dest_node=1568859 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x1
35890<...>-16709 ( 9871) [000] .... 82315.669332: binder_transaction_alloc_buf: transaction=1568931 data_size=168 offsets_size=0
35891<...>-16709 ( 9871) [000] d..4 82315.669338: sched_waking: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=001
35892   system_server-8943  ( 8943) [003] .... 82315.669339: binder_transaction: transaction=1568932 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
35893   system_server-8943  ( 8943) [003] .... 82315.669342: binder_transaction_alloc_buf: transaction=1568932 data_size=96 offsets_size=0
35894   system_server-8943  ( 8943) [003] d..4 82315.669346: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
35895    RenderThread-9436  ( 9105) [006] d.h1 82315.669365: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
35896<...>-16709 ( 9871) [000] dn.5 82315.669368: sched_wakeup: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=000
35897<...>-16709 ( 9871) [000] d..2 82315.669376: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=Binder:9090_5 next_pid=10478 next_prio=120
35898   Binder:9090_5-10478 ( 9090) [000] .... 82315.669384: binder_transaction_received: transaction=1568931
35899   system_server-8943  ( 8943) [003] d..2 82315.669424: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35900 [email protected]   (  619) [002] ...1 82315.669487: tracing_mark_write: B|619|HWDeviceDRM::Validate::
35901    RenderThread-9436  ( 9105) [006] d..2 82315.669626: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
35902<...>-16709 ( 9871) [003] d..1 82315.669628: sched_waking: comm=lowpool[10] pid=24462 prio=130 target_cpu=007
35903<...>-9131 ( 9105) [006] .... 82315.669629: binder_transaction_received: transaction=1568932
35904   Binder:9090_5-10478 ( 9090) [000] d.h2 82315.669656: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=007
35905           <...>-27550 (-----) [007] d.h1 82315.669670: sched_wakeup: comm=lowpool[10] pid=24462 prio=130 target_cpu=007
35906<...>-9131 ( 9105) [006] d..3 82315.669677: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
35907   Binder:9090_5-10478 ( 9090) [000] dnh3 82315.669688: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
35908<...>-16709 ( 9871) [003] dnh1 82315.669702: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
35909   Binder:9090_5-10478 ( 9090) [000] dnh2 82315.669744: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
35910<...>-9131 ( 9105) [006] d..2 82315.669744: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35911<...>-16709 ( 9871) [003] d..2 82315.669747: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35912<...>-9005 ( 8943) [006] d.h3 82315.669753: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
35913<...>-9005 ( 8943) [006] d.h4 82315.669759: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
35914   Binder:9090_5-10478 ( 9090) [000] dnh3 82315.669760: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
35915<...>-9005 ( 8943) [006] d.h4 82315.669760: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
35916<...>-9005 ( 8943) [006] .... 82315.669764: binder_transaction_received: transaction=1568929
35917<...>-9105 ( 9105) [003] d..2 82315.669768: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=576 next_prio=49
35918   Binder:9090_5-10478 ( 9090) [000] d..2 82315.669778: sched_switch: prev_comm=Binder:9090_5 prev_pid=10478 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
35919 kgsl_worker_thr-258   (  258) [000] d..2 82315.669790: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=Binder:9090_5 next_pid=10478 next_prio=120
35920         sugov:0-576   (  576) [003] .... 82315.669806: clk_set_rate: pwrcl_clk 1324800000
35921         sugov:0-576   (  576) [003] .... 82315.669824: clk_set_rate: cpu3_pwrcl_clk 1228800000
35922         sugov:0-576   (  576) [003] .... 82315.669832: clk_set_rate: cpu2_pwrcl_clk 1228800000
35923         sugov:0-576   (  576) [003] .... 82315.669839: clk_set_rate: cpu1_pwrcl_clk 1228800000
35924         sugov:0-576   (  576) [003] .... 82315.669845: clk_set_rate: cpu0_pwrcl_clk 1324800000
35925         sugov:0-576   (  576) [003] .... 82315.669853: cpu_frequency: state=1324800 cpu_id=0
35926         sugov:0-576   (  576) [003] .... 82315.669876: cpu_frequency: state=1324800 cpu_id=1
35927         sugov:0-576   (  576) [003] .... 82315.669879: cpu_frequency: state=1324800 cpu_id=2
35928         sugov:0-576   (  576) [003] .... 82315.669883: cpu_frequency: state=1324800 cpu_id=3
35929         sugov:0-576   (  576) [003] d..2 82315.669904: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
35930           <...>-27555 (-----) [004] d..2 82315.669965: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
35931          <idle>-0     (-----) [004] d..1 82315.669977: cpu_idle: state=0 cpu_id=4
35932   Binder:9090_5-10478 ( 9090) [000] d..3 82315.669985: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
35933<...>-9105 ( 9105) [003] d..2 82315.669992: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35934   Binder:9090_5-10478 ( 9090) [000] d..4 82315.670011: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
35935   Binder:9090_5-10478 ( 9090) [000] d..2 82315.670103: sched_switch: prev_comm=Binder:9090_5 prev_pid=10478 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
35936<...>-9005 ( 8943) [006] d..3 82315.670113: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
35937<...>-9005 ( 8943) [006] dn.4 82315.670121: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
35938<...>-9005 ( 8943) [006] d..2 82315.670125: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
35939<...>-9039 ( 8943) [006] d..2 82315.670142: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
35940    RenderThread-9436  ( 9105) [006] d..1 82315.670157: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
35941           <...>-27550 (-----) [007] d..1 82315.670166: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=004
35942           <...>-27550 (-----) [007] d..2 82315.670174: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=004
35943<...>-16709 ( 9871) [003] dnh1 82315.670175: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
35944          <idle>-0     (-----) [004] .n.1 82315.670180: cpu_idle: state=4294967295 cpu_id=4
35945<...>-16709 ( 9871) [003] d..2 82315.670183: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
35946          <idle>-0     (-----) [004] d..2 82315.670185: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
35947 [email protected]   (  619) [002] ...1 82315.670188: tracing_mark_write: E|619
35948 kgsl_worker_thr-258   (  258) [003] d..2 82315.670251: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
35949    RenderThread-9436  ( 9105) [006] .... 82315.670263: binder_transaction: transaction=1568933 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
35950    RenderThread-9436  ( 9105) [006] .... 82315.670265: binder_transaction_alloc_buf: transaction=1568933 data_size=192 offsets_size=8
35951    RenderThread-9436  ( 9105) [006] d..4 82315.670269: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
35952<...>-9090 ( 9090) [000] d..2 82315.670276: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
35953    RenderThread-9436  ( 9105) [006] d..5 82315.670276: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
35954    RenderThread-9436  ( 9105) [006] d..2 82315.670281: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
35955          <idle>-0     (-----) [005] .n.1 82315.670282: cpu_idle: state=4294967295 cpu_id=5
35956          <idle>-0     (-----) [005] d..2 82315.670286: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
35957<...>-13083 ( 8858) [005] .... 82315.670288: binder_transaction_received: transaction=1568933
35958          <idle>-0     (-----) [000] d..1 82315.670298: cpu_idle: state=0 cpu_id=0
35959<...>-16709 ( 9871) [003] d..2 82315.670306: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
35960 [email protected]   (  619) [002] ...1 82315.670337: tracing_mark_write: B|619|HWDeviceDRM::Commit::
35961<...>-9005 ( 8943) [006] d..1 82315.670339: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
35962 [email protected]   (  619) [002] ...1 82315.670345: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
35963<...>-13083 ( 8858) [005] .... 82315.670350: binder_transaction: transaction=1568934 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
35964<...>-13083 ( 8858) [005] .... 82315.670351: binder_transaction_alloc_buf: transaction=1568934 data_size=68 offsets_size=0
35965<...>-13083 ( 8858) [005] d..2 82315.670352: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
35966<...>-13083 ( 8858) [005] d..3 82315.670357: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
35967<...>-9005 ( 8943) [006] d.h3 82315.670378: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
35968          <idle>-0     (-----) [000] dnh2 82315.670381: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
35969<...>-13083 ( 8858) [005] d..2 82315.670386: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
35970          <idle>-0     (-----) [000] .n.1 82315.670386: cpu_idle: state=4294967295 cpu_id=0
35971          <idle>-0     (-----) [005] d..1 82315.670389: cpu_idle: state=0 cpu_id=5
35972<...>-24462 ( 9871) [003] dnh1 82315.670390: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
35973          <idle>-0     (-----) [000] d..2 82315.670394: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
35974<...>-24462 ( 9871) [003] d..2 82315.670398: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
35975<...>-9005 ( 8943) [006] d..2 82315.670408: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
35976    RenderThread-9436  ( 9105) [006] .... 82315.670412: binder_transaction_received: transaction=1568934
35977         sugov:0-576   (  576) [003] .... 82315.670417: clk_set_rate: pwrcl_clk 1766400000
35978         sugov:0-576   (  576) [003] .... 82315.670426: clk_set_rate: cpu3_pwrcl_clk 1324800000
35979         sugov:0-576   (  576) [003] .... 82315.670433: clk_set_rate: cpu2_pwrcl_clk 1324800000
35980         sugov:0-576   (  576) [003] .... 82315.670439: clk_set_rate: cpu1_pwrcl_clk 1324800000
35981         sugov:0-576   (  576) [003] .... 82315.670445: clk_set_rate: cpu0_pwrcl_clk 1766400000
35982         sugov:0-576   (  576) [003] .... 82315.670452: cpu_frequency: state=1766400 cpu_id=0
35983    RenderThread-9436  ( 9105) [006] d..2 82315.670453: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
35984          <idle>-0     (-----) [006] d..1 82315.670462: cpu_idle: state=0 cpu_id=6
35985         sugov:0-576   (  576) [003] .... 82315.670464: cpu_frequency: state=1766400 cpu_id=1
35986         sugov:0-576   (  576) [003] .... 82315.670467: cpu_frequency: state=1766400 cpu_id=2
35987         sugov:0-576   (  576) [003] .... 82315.670469: cpu_frequency: state=1766400 cpu_id=3
35988         sugov:0-576   (  576) [003] d..2 82315.670481: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
35989<...>-9062 ( 8943) [000] d..2 82315.670651: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=118 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
35990          <idle>-0     (-----) [000] d..1 82315.670662: cpu_idle: state=0 cpu_id=0
35991          <idle>-0     (-----) [006] ...1 82315.670663: cpu_idle: state=4294967295 cpu_id=6
35992          <idle>-0     (-----) [006] d..1 82315.670664: cpu_idle: state=0 cpu_id=6
35993<...>-15374 ( 8943) [001] d..1 82315.670729: sched_waking: comm=Binder:8943_4 pid=9062 prio=118 target_cpu=000
35994<...>-15374 ( 8943) [001] d..2 82315.670739: sched_blocked_reason: pid=9062 iowait=0 caller=do_page_fault+0x4e0/0x594
35995<...>-15374 ( 8943) [001] d..2 82315.670745: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=118 target_cpu=000
35996          <idle>-0     (-----) [000] .n.1 82315.670751: cpu_idle: state=4294967295 cpu_id=0
35997          <idle>-0     (-----) [000] d..2 82315.670758: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=118
35998 [email protected]   (  619) [002] d..2 82315.670888: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
35999 [email protected]   (  619) [002] d..3 82315.670922: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
36000<...>-24462 ( 9871) [003] d..2 82315.670935: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
36001           <...>-27555 (-----) [004] d..2 82315.670939: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
36002          <idle>-0     (-----) [004] d..1 82315.670948: cpu_idle: state=0 cpu_id=4
36003 [email protected]   (  619) [002] ...1 82315.670995: tracing_mark_write: E|619
36004 [email protected]   (  619) [002] ...1 82315.670999: tracing_mark_write: E|619
36005 [email protected]   (  619) [002] ...1 82315.671050: tracing_mark_write: E|619
36006 [email protected]   (  619) [002] ...1 82315.671097: tracing_mark_write: E|619
36007 [email protected]   (  619) [002] .... 82315.671113: binder_transaction: transaction=1568935 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
36008 [email protected]   (  619) [002] .... 82315.671116: binder_transaction_alloc_buf: transaction=1568935 data_size=656 offsets_size=128
36009 [email protected]   (  619) [002] d..2 82315.671132: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
36010 [email protected]   (  619) [002] d..3 82315.671142: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
36011 [email protected]   (  619) [002] .... 82315.671147: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
36012<...>-9062 ( 8943) [000] d..2 82315.671153: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=118 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
36013  surfaceflinger-8858  ( 8858) [000] .... 82315.671162: binder_transaction_received: transaction=1568935
36014 [email protected]   (  619) [002] d..2 82315.671216: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
36015  kworker/u16:15-1311  ( 1311) [002] .... 82315.671394: clk_set_rate: l3_cluster0_vote_clk 1036800000
36016  kworker/u16:15-1311  ( 1311) [002] d..2 82315.671421: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
36017          <idle>-0     (-----) [002] d..1 82315.671441: cpu_idle: state=0 cpu_id=2
36018  surfaceflinger-8858  ( 8858) [000] d..2 82315.671624: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=118
36019<...>-9062 ( 8943) [000] d..1 82315.671670: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
36020          <idle>-0     (-----) [004] dnh2 82315.671690: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
36021          <idle>-0     (-----) [004] .n.1 82315.671693: cpu_idle: state=4294967295 cpu_id=4
36022          <idle>-0     (-----) [004] d..2 82315.671697: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
36023<...>-9062 ( 8943) [000] d.s2 82315.671806: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
36024<...>-15374 ( 8943) [001] d.s2 82315.671823: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
36025<...>-9062 ( 8943) [000] d.s3 82315.671830: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
36026          <idle>-0     (-----) [002] .n.1 82315.671836: cpu_idle: state=4294967295 cpu_id=2
36027          <idle>-0     (-----) [002] d..2 82315.671844: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
36028<...>-15374 ( 8943) [001] d.s3 82315.671853: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
36029<...>-9062 ( 8943) [000] d..2 82315.671883: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36030          <idle>-0     (-----) [000] d..1 82315.671894: cpu_idle: state=0 cpu_id=0
36031<...>-8969 ( 8943) [004] d..3 82315.671905: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=000
36032          <idle>-0     (-----) [000] dnh2 82315.671927: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=000
36033          <idle>-0     (-----) [000] .n.1 82315.671931: cpu_idle: state=4294967295 cpu_id=0
36034          <idle>-0     (-----) [000] d..2 82315.671937: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=8960 next_prio=120
36035<...>-8969 ( 8943) [004] d..2 82315.672009: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
36036  kworker/u16:15-1311  ( 1311) [002] d..2 82315.672011: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
36037     rcu_preempt-7     (    7) [002] d..2 82315.672022: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=007
36038<...>-15374 ( 8943) [001] d.s3 82315.672038: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
36039<...>-15374 ( 8943) [001] d.s4 82315.672047: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
36040<...>-15374 ( 8943) [001] d.s4 82315.672050: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
36041     rcu_preempt-7     (    7) [002] d..3 82315.672063: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
36042     rcu_preempt-7     (    7) [002] d.h2 82315.672070: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
36043     rcu_preempt-7     (    7) [002] d..2 82315.672096: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=007
36044           <...>-27550 (-----) [007] dnh1 82315.672123: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=007
36045     rcu_preempt-7     (    7) [002] d..2 82315.672128: 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
36046           <...>-27550 (-----) [007] d..2 82315.672128: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
36047         rcuop/0-10    (   10) [007] d..2 82315.672132: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=005
36048         rcuop/2-29    (   29) [002] d..2 82315.672133: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=007
36049         rcuop/0-10    (   10) [007] d.h2 82315.672171: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=007
36050<...>-8960 ( 8943) [000] d.h2 82315.672172: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
36051         rcuop/2-29    (   29) [002] d..2 82315.672173: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
36052<...>-8969 ( 8943) [004] d..2 82315.672181: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
36053  kworker/u16:15-1311  ( 1311) [002] d..2 82315.672184: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
36054         rcuop/0-10    (   10) [007] d..2 82315.672189: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36055         rcuop/3-37    (   37) [004] d..2 82315.672193: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
36056          <idle>-0     (-----) [004] d..1 82315.672198: cpu_idle: state=0 cpu_id=4
36057<...>-581 ( 571) [002] d..2 82315.672321: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
36058          <idle>-0     (-----) [002] d..1 82315.672330: cpu_idle: state=0 cpu_id=2
36059 crtc_commit:111-321   (  321) [003] .... 82315.673491: clk_set_rate: disp_cc_mdss_mdp_clk_src 150000000
36060 crtc_commit:111-321   (  321) [003] .... 82315.673523: clk_set_rate: disp_cc_mdss_mdp_lut_clk 0
36061 crtc_commit:111-321   (  321) [003] .... 82315.673525: clk_set_rate: disp_cc_mdss_mdp_clk 150000000
36062 crtc_commit:111-321   (  321) [003] d..2 82315.673560: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
36063<...>-8960 ( 8943) [000] d..2 82315.673773: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
36064<...>-8960 ( 8943) [000] d..3 82315.673786: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
36065          <idle>-0     (-----) [002] .n.1 82315.673791: cpu_idle: state=4294967295 cpu_id=2
36066          <idle>-0     (-----) [002] d..2 82315.673798: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
36067<...>-8960 ( 8943) [000] d..2 82315.673830: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
36068<...>-581 ( 571) [002] d..2 82315.673841: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
36069          <idle>-0     (-----) [002] d..1 82315.673847: cpu_idle: state=0 cpu_id=2
36070<...>-8960 ( 8943) [000] d..3 82315.673858: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=002
36071          <idle>-0     (-----) [002] .n.1 82315.673862: cpu_idle: state=4294967295 cpu_id=2
36072          <idle>-0     (-----) [002] d..2 82315.673869: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=statsd.writer next_pid=1044 next_prio=120
36073   statsd.writer-1044  (  901) [002] d..2 82315.674058: 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
36074<...>-8960 ( 8943) [000] d..2 82315.674060: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
36075          <idle>-0     (-----) [002] d..1 82315.674066: cpu_idle: state=0 cpu_id=2
36076         rcuop/1-21    (   21) [000] d..2 82315.674081: 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
36077          <idle>-0     (-----) [000] d..1 82315.674095: cpu_idle: state=0 cpu_id=0
36078<...>-24462 ( 9871) [003] .... 82315.674871: binder_transaction: transaction=1568936 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x24
36079<...>-24462 ( 9871) [003] .... 82315.674875: binder_transaction_alloc_buf: transaction=1568936 data_size=292 offsets_size=8
36080<...>-24462 ( 9871) [003] d..4 82315.674888: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
36081<...>-24462 ( 9871) [003] dn.5 82315.674903: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=003
36082<...>-24462 ( 9871) [003] d..2 82315.674909: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
36083<...>-9062 ( 8943) [003] .... 82315.674916: binder_transaction_received: transaction=1568936
36084<...>-9062 ( 8943) [003] d.s1 82315.675135: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
36085<...>-9062 ( 8943) [003] d.s2 82315.675165: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
36086          <idle>-0     (-----) [000] .n.1 82315.675170: cpu_idle: state=4294967295 cpu_id=0
36087          <idle>-0     (-----) [000] d..2 82315.675179: 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
36088<...>-8 ( 8) [000] d..2 82315.675190: sched_waking: comm=rcuos/6 pid=62 prio=120 target_cpu=004
36089<...>-8 ( 8) [000] d..3 82315.675228: sched_wakeup: comm=rcuos/6 pid=62 prio=120 target_cpu=000
36090<...>-8 ( 8) [000] d..2 82315.675271: 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
36091<...>-62 ( 62) [000] d..2 82315.675276: sched_waking: comm=rcuos/7 pid=70 prio=120 target_cpu=000
36092<...>-62 ( 62) [000] d..3 82315.675287: sched_wakeup: comm=rcuos/7 pid=70 prio=120 target_cpu=000
36093<...>-62 ( 62) [000] d..2 82315.675293: 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
36094<...>-70 ( 70) [000] d..2 82315.675336: sched_switch: prev_comm=rcuos/7 prev_pid=70 prev_prio=120 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
36095<...>-24462 ( 9871) [000] d..2 82315.675353: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36096          <idle>-0     (-----) [000] d..1 82315.675361: cpu_idle: state=0 cpu_id=0
36097<...>-9062 ( 8943) [003] .... 82315.675361: binder_transaction: transaction=1568937 dest_node=0 dest_proc=9871 dest_thread=24462 reply=1 flags=0x0 code=0x0
36098<...>-9062 ( 8943) [003] .... 82315.675364: binder_transaction_alloc_buf: transaction=1568937 data_size=8 offsets_size=0
36099<...>-9062 ( 8943) [003] d..2 82315.675367: sched_waking: comm=lowpool[10] pid=24462 prio=130 target_cpu=000
36100<...>-9062 ( 8943) [003] d..3 82315.675379: sched_wakeup: comm=lowpool[10] pid=24462 prio=130 target_cpu=003
36101<...>-9062 ( 8943) [003] d..2 82315.675407: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
36102<...>-24462 ( 9871) [003] .... 82315.675412: binder_transaction_received: transaction=1568937
36103<...>-24462 ( 9871) [003] d..2 82315.675668: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36104          <idle>-0     (-----) [003] d..1 82315.675686: cpu_idle: state=0 cpu_id=3
36105          <idle>-0     (-----) [003] d.h2 82315.675736: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
36106          <idle>-0     (-----) [003] dnh3 82315.675746: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
36107          <idle>-0     (-----) [003] .n.1 82315.675754: cpu_idle: state=4294967295 cpu_id=3
36108          <idle>-0     (-----) [003] d..2 82315.675760: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
36109           <...>-27550 (-----) [007] ...1 82315.675904: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksMemory_createFromFd
36110           <...>-27550 (-----) [007] ...1 82315.675919: tracing_mark_write: E|27550
36111 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.675921: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
36112          <idle>-0     (-----) [003] d..1 82315.675927: cpu_idle: state=0 cpu_id=3
36113<...>-15374 ( 8943) [001] d.s2 82315.675938: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
36114<...>-15374 ( 8943) [001] d.s3 82315.675949: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
36115          <idle>-0     (-----) [003] .n.1 82315.675953: cpu_idle: state=4294967295 cpu_id=3
36116          <idle>-0     (-----) [003] d..2 82315.675959: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
36117 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.675980: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36118          <idle>-0     (-----) [003] d..1 82315.675985: cpu_idle: state=0 cpu_id=3
36119           <...>-27550 (-----) [007] ...1 82315.676212: tracing_mark_write: B|27550|[NN_LA_PWU]runBenchmarkLoop
36120<...>-15374 ( 8943) [001] d..3 82315.678074: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
36121<...>-15374 ( 8943) [001] d..4 82315.678093: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
36122          <idle>-0     (-----) [003] .n.1 82315.678097: cpu_idle: state=4294967295 cpu_id=3
36123          <idle>-0     (-----) [003] d..2 82315.678103: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
36124 kgsl_worker_thr-258   (  258) [003] d..2 82315.678119: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36125          <idle>-0     (-----) [003] d..1 82315.678123: cpu_idle: state=0 cpu_id=3
36126          <idle>-0     (-----) [002] d.s2 82315.678463: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
36127<...>-15374 ( 8943) [001] d.s2 82315.678466: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
36128          <idle>-0     (-----) [002] dns3 82315.678475: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
36129           <...>-27550 (-----) [007] ...1 82315.678475: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
36130          <idle>-0     (-----) [002] .n.1 82315.678492: cpu_idle: state=4294967295 cpu_id=2
36131<...>-15374 ( 8943) [001] d.s3 82315.678496: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
36132          <idle>-0     (-----) [002] d..2 82315.678499: 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
36133          <idle>-0     (-----) [000] .n.1 82315.678501: cpu_idle: state=4294967295 cpu_id=0
36134          <idle>-0     (-----) [000] d..2 82315.678510: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
36135     rcu_preempt-7     (    7) [002] d..2 82315.678521: 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
36136          <idle>-0     (-----) [002] d..1 82315.678527: cpu_idle: state=0 cpu_id=2
36137  kworker/u16:15-1311  ( 1311) [000] .... 82315.678577: clk_set_rate: l3_cluster0_vote_clk 1401600000
36138           <...>-27550 (-----) [007] ...1 82315.678586: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_create
36139           <...>-27550 (-----) [007] ...1 82315.678615: tracing_mark_write: E|27550
36140           <...>-27550 (-----) [007] ...1 82315.678634: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36141           <...>-27550 (-----) [007] ...1 82315.678640: tracing_mark_write: E|27550
36142           <...>-27550 (-----) [007] ...1 82315.678642: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36143           <...>-27550 (-----) [007] ...1 82315.678644: tracing_mark_write: E|27550
36144           <...>-27550 (-----) [007] ...1 82315.678645: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36145           <...>-27550 (-----) [007] ...1 82315.678647: tracing_mark_write: E|27550
36146           <...>-27550 (-----) [007] ...1 82315.678658: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36147           <...>-27550 (-----) [007] ...1 82315.678668: tracing_mark_write: E|27550
36148           <...>-27550 (-----) [007] ...1 82315.678669: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36149           <...>-27550 (-----) [007] ...1 82315.678670: tracing_mark_write: E|27550
36150           <...>-27550 (-----) [007] ...1 82315.678671: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36151           <...>-27550 (-----) [007] ...1 82315.678673: tracing_mark_write: E|27550
36152           <...>-27550 (-----) [007] ...1 82315.678675: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36153           <...>-27550 (-----) [007] ...1 82315.678676: tracing_mark_write: E|27550
36154           <...>-27550 (-----) [007] ...1 82315.678677: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36155           <...>-27550 (-----) [007] ...1 82315.678679: tracing_mark_write: E|27550
36156           <...>-27550 (-----) [007] ...1 82315.678680: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36157           <...>-27550 (-----) [007] ...1 82315.678681: tracing_mark_write: E|27550
36158           <...>-27550 (-----) [007] ...1 82315.678682: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36159           <...>-27550 (-----) [007] ...1 82315.678683: tracing_mark_write: E|27550
36160           <...>-27550 (-----) [007] ...1 82315.678684: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36161           <...>-27550 (-----) [007] ...1 82315.678686: tracing_mark_write: E|27550
36162           <...>-27550 (-----) [007] ...1 82315.678687: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36163           <...>-27550 (-----) [007] ...1 82315.678688: tracing_mark_write: E|27550
36164           <...>-27550 (-----) [007] ...1 82315.678689: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36165           <...>-27550 (-----) [007] ...1 82315.678692: tracing_mark_write: E|27550
36166           <...>-27550 (-----) [007] ...1 82315.678693: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36167           <...>-27550 (-----) [007] ...1 82315.678694: tracing_mark_write: E|27550
36168           <...>-27550 (-----) [007] ...1 82315.678695: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36169           <...>-27550 (-----) [007] ...1 82315.678696: tracing_mark_write: E|27550
36170           <...>-27550 (-----) [007] ...1 82315.678698: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36171           <...>-27550 (-----) [007] ...1 82315.678699: tracing_mark_write: E|27550
36172           <...>-27550 (-----) [007] ...1 82315.678701: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36173           <...>-27550 (-----) [007] ...1 82315.678702: tracing_mark_write: E|27550
36174           <...>-27550 (-----) [007] ...1 82315.678703: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36175           <...>-27550 (-----) [007] ...1 82315.678704: tracing_mark_write: E|27550
36176           <...>-27550 (-----) [007] ...1 82315.678705: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36177           <...>-27550 (-----) [007] ...1 82315.678706: tracing_mark_write: E|27550
36178           <...>-27550 (-----) [007] ...1 82315.678708: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36179           <...>-27550 (-----) [007] ...1 82315.678709: tracing_mark_write: E|27550
36180           <...>-27550 (-----) [007] ...1 82315.678710: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36181           <...>-27550 (-----) [007] ...1 82315.678711: tracing_mark_write: E|27550
36182           <...>-27550 (-----) [007] ...1 82315.678712: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36183           <...>-27550 (-----) [007] ...1 82315.678713: tracing_mark_write: E|27550
36184           <...>-27550 (-----) [007] ...1 82315.678715: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36185           <...>-27550 (-----) [007] ...1 82315.678716: tracing_mark_write: E|27550
36186           <...>-27550 (-----) [007] ...1 82315.678717: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36187           <...>-27550 (-----) [007] ...1 82315.678718: tracing_mark_write: E|27550
36188           <...>-27550 (-----) [007] ...1 82315.678719: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36189           <...>-27550 (-----) [007] ...1 82315.678721: tracing_mark_write: E|27550
36190           <...>-27550 (-----) [007] ...1 82315.678722: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36191           <...>-27550 (-----) [007] ...1 82315.678724: tracing_mark_write: E|27550
36192           <...>-27550 (-----) [007] ...1 82315.678725: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36193           <...>-27550 (-----) [007] ...1 82315.678726: tracing_mark_write: E|27550
36194           <...>-27550 (-----) [007] ...1 82315.678728: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36195           <...>-27550 (-----) [007] ...1 82315.678728: tracing_mark_write: E|27550
36196           <...>-27550 (-----) [007] ...1 82315.678730: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36197           <...>-27550 (-----) [007] ...1 82315.678731: tracing_mark_write: E|27550
36198           <...>-27550 (-----) [007] ...1 82315.678732: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36199           <...>-27550 (-----) [007] ...1 82315.678733: tracing_mark_write: E|27550
36200           <...>-27550 (-----) [007] ...1 82315.678734: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36201           <...>-27550 (-----) [007] ...1 82315.678735: tracing_mark_write: E|27550
36202           <...>-27550 (-----) [007] ...1 82315.678736: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36203           <...>-27550 (-----) [007] ...1 82315.678737: tracing_mark_write: E|27550
36204           <...>-27550 (-----) [007] ...1 82315.678738: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36205           <...>-27550 (-----) [007] ...1 82315.678739: tracing_mark_write: E|27550
36206           <...>-27550 (-----) [007] ...1 82315.678740: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36207           <...>-27550 (-----) [007] ...1 82315.678742: tracing_mark_write: E|27550
36208           <...>-27550 (-----) [007] ...1 82315.678743: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36209           <...>-27550 (-----) [007] ...1 82315.678744: tracing_mark_write: E|27550
36210           <...>-27550 (-----) [007] ...1 82315.678745: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36211           <...>-27550 (-----) [007] ...1 82315.678746: tracing_mark_write: E|27550
36212           <...>-27550 (-----) [007] ...1 82315.678747: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36213           <...>-27550 (-----) [007] ...1 82315.678748: tracing_mark_write: E|27550
36214           <...>-27550 (-----) [007] ...1 82315.678749: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36215           <...>-27550 (-----) [007] ...1 82315.678750: tracing_mark_write: E|27550
36216           <...>-27550 (-----) [007] ...1 82315.678751: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36217           <...>-27550 (-----) [007] ...1 82315.678752: tracing_mark_write: E|27550
36218           <...>-27550 (-----) [007] ...1 82315.678753: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36219           <...>-27550 (-----) [007] ...1 82315.678754: tracing_mark_write: E|27550
36220           <...>-27550 (-----) [007] ...1 82315.678755: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36221           <...>-27550 (-----) [007] ...1 82315.678756: tracing_mark_write: E|27550
36222           <...>-27550 (-----) [007] ...1 82315.678757: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36223           <...>-27550 (-----) [007] ...1 82315.678758: tracing_mark_write: E|27550
36224           <...>-27550 (-----) [007] ...1 82315.678759: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36225           <...>-27550 (-----) [007] ...1 82315.678760: tracing_mark_write: E|27550
36226           <...>-27550 (-----) [007] ...1 82315.678762: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36227           <...>-27550 (-----) [007] ...1 82315.678763: tracing_mark_write: E|27550
36228           <...>-27550 (-----) [007] ...1 82315.678764: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36229           <...>-27550 (-----) [007] ...1 82315.678765: tracing_mark_write: E|27550
36230           <...>-27550 (-----) [007] ...1 82315.678766: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36231           <...>-27550 (-----) [007] ...1 82315.678767: tracing_mark_write: E|27550
36232           <...>-27550 (-----) [007] ...1 82315.678768: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36233           <...>-27550 (-----) [007] ...1 82315.678769: tracing_mark_write: E|27550
36234           <...>-27550 (-----) [007] ...1 82315.678770: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36235           <...>-27550 (-----) [007] ...1 82315.678771: tracing_mark_write: E|27550
36236           <...>-27550 (-----) [007] ...1 82315.678773: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36237           <...>-27550 (-----) [007] ...1 82315.678774: tracing_mark_write: E|27550
36238           <...>-27550 (-----) [007] ...1 82315.678775: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36239           <...>-27550 (-----) [007] ...1 82315.678776: tracing_mark_write: E|27550
36240           <...>-27550 (-----) [007] ...1 82315.678777: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36241           <...>-27550 (-----) [007] ...1 82315.678778: tracing_mark_write: E|27550
36242  kworker/u16:15-1311  ( 1311) [000] d..2 82315.678778: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
36243           <...>-27550 (-----) [007] ...1 82315.678779: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36244           <...>-27550 (-----) [007] ...1 82315.678780: tracing_mark_write: E|27550
36245           <...>-27550 (-----) [007] ...1 82315.678782: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36246          <idle>-0     (-----) [000] d..1 82315.678784: cpu_idle: state=0 cpu_id=0
36247           <...>-27550 (-----) [007] ...1 82315.678784: tracing_mark_write: E|27550
36248           <...>-27550 (-----) [007] ...1 82315.678785: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36249           <...>-27550 (-----) [007] ...1 82315.678786: tracing_mark_write: E|27550
36250           <...>-27550 (-----) [007] ...1 82315.678787: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36251           <...>-27550 (-----) [007] ...1 82315.678788: tracing_mark_write: E|27550
36252           <...>-27550 (-----) [007] ...1 82315.678789: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36253           <...>-27550 (-----) [007] ...1 82315.678791: tracing_mark_write: E|27550
36254           <...>-27550 (-----) [007] ...1 82315.678792: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36255           <...>-27550 (-----) [007] ...1 82315.678793: tracing_mark_write: E|27550
36256           <...>-27550 (-----) [007] ...1 82315.678794: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36257           <...>-27550 (-----) [007] ...1 82315.678795: tracing_mark_write: E|27550
36258           <...>-27550 (-----) [007] ...1 82315.678796: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36259           <...>-27550 (-----) [007] ...1 82315.678798: tracing_mark_write: E|27550
36260           <...>-27550 (-----) [007] ...1 82315.678798: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36261           <...>-27550 (-----) [007] ...1 82315.678800: tracing_mark_write: E|27550
36262           <...>-27550 (-----) [007] ...1 82315.678801: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36263           <...>-27550 (-----) [007] ...1 82315.678802: tracing_mark_write: E|27550
36264           <...>-27550 (-----) [007] ...1 82315.678803: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36265<...>-15374 ( 8943) [001] d.s2 82315.678804: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
36266           <...>-27550 (-----) [007] ...1 82315.678804: tracing_mark_write: E|27550
36267           <...>-27550 (-----) [007] ...1 82315.678805: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36268           <...>-27550 (-----) [007] ...1 82315.678807: tracing_mark_write: E|27550
36269           <...>-27550 (-----) [007] ...1 82315.678808: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValueFromMemory
36270           <...>-27550 (-----) [007] ...1 82315.678809: tracing_mark_write: E|27550
36271           <...>-27550 (-----) [007] ...1 82315.678810: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36272           <...>-27550 (-----) [007] ...1 82315.678811: tracing_mark_write: E|27550
36273<...>-15374 ( 8943) [001] d.s3 82315.678813: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
36274           <...>-27550 (-----) [007] ...1 82315.678814: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36275           <...>-27550 (-----) [007] ...1 82315.678816: tracing_mark_write: E|27550
36276<...>-15374 ( 8943) [001] d.s3 82315.678819: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
36277           <...>-27550 (-----) [007] ...1 82315.678823: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36278          <idle>-0     (-----) [000] .n.1 82315.678824: cpu_idle: state=4294967295 cpu_id=0
36279           <...>-27550 (-----) [007] ...1 82315.678826: tracing_mark_write: E|27550
36280           <...>-27550 (-----) [007] ...1 82315.678827: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36281           <...>-27550 (-----) [007] ...1 82315.678828: tracing_mark_write: E|27550
36282          <idle>-0     (-----) [000] d..2 82315.678830: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
36283           <...>-27550 (-----) [007] ...1 82315.678830: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36284           <...>-27550 (-----) [007] ...1 82315.678832: tracing_mark_write: E|27550
36285           <...>-27550 (-----) [007] ...1 82315.678833: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36286           <...>-27550 (-----) [007] ...1 82315.678834: tracing_mark_write: E|27550
36287           <...>-27550 (-----) [007] ...1 82315.678835: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36288           <...>-27550 (-----) [007] ...1 82315.678836: tracing_mark_write: E|27550
36289           <...>-27550 (-----) [007] ...1 82315.678837: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36290           <...>-27550 (-----) [007] ...1 82315.678838: tracing_mark_write: E|27550
36291           <...>-27550 (-----) [007] ...1 82315.678839: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36292           <...>-27550 (-----) [007] ...1 82315.678840: tracing_mark_write: E|27550
36293           <...>-27550 (-----) [007] ...1 82315.678846: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36294           <...>-27550 (-----) [007] ...1 82315.678863: tracing_mark_write: E|27550
36295           <...>-27550 (-----) [007] ...1 82315.678865: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36296           <...>-27550 (-----) [007] ...1 82315.678866: tracing_mark_write: E|27550
36297           <...>-27550 (-----) [007] ...1 82315.678867: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36298           <...>-27550 (-----) [007] ...1 82315.678868: tracing_mark_write: E|27550
36299           <...>-27550 (-----) [007] ...1 82315.678869: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36300           <...>-27550 (-----) [007] ...1 82315.678871: tracing_mark_write: E|27550
36301           <...>-27550 (-----) [007] ...1 82315.678872: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36302           <...>-27550 (-----) [007] ...1 82315.678873: tracing_mark_write: E|27550
36303           <...>-27550 (-----) [007] ...1 82315.678873: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36304           <...>-27550 (-----) [007] ...1 82315.678874: tracing_mark_write: E|27550
36305           <...>-27550 (-----) [007] ...1 82315.678875: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36306           <...>-27550 (-----) [007] ...1 82315.678876: tracing_mark_write: E|27550
36307  kworker/u16:15-1311  ( 1311) [000] d..2 82315.678877: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36308           <...>-27550 (-----) [007] ...1 82315.678877: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36309           <...>-27550 (-----) [007] ...1 82315.678878: tracing_mark_write: E|27550
36310           <...>-27550 (-----) [007] ...1 82315.678879: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36311           <...>-27550 (-----) [007] ...1 82315.678880: tracing_mark_write: E|27550
36312          <idle>-0     (-----) [000] d..1 82315.678881: cpu_idle: state=0 cpu_id=0
36313           <...>-27550 (-----) [007] ...1 82315.678882: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36314           <...>-27550 (-----) [007] ...1 82315.678883: tracing_mark_write: E|27550
36315           <...>-27550 (-----) [007] ...1 82315.678885: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36316           <...>-27550 (-----) [007] ...1 82315.678886: tracing_mark_write: E|27550
36317           <...>-27550 (-----) [007] ...1 82315.678887: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36318           <...>-27550 (-----) [007] ...1 82315.678888: tracing_mark_write: E|27550
36319           <...>-27550 (-----) [007] ...1 82315.678889: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36320           <...>-27550 (-----) [007] ...1 82315.678890: tracing_mark_write: E|27550
36321           <...>-27550 (-----) [007] ...1 82315.678891: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36322           <...>-27550 (-----) [007] ...1 82315.678892: tracing_mark_write: E|27550
36323           <...>-27550 (-----) [007] ...1 82315.678893: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36324           <...>-27550 (-----) [007] ...1 82315.678894: tracing_mark_write: E|27550
36325           <...>-27550 (-----) [007] ...1 82315.678895: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36326           <...>-27550 (-----) [007] ...1 82315.678897: tracing_mark_write: E|27550
36327           <...>-27550 (-----) [007] ...1 82315.678898: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36328           <...>-27550 (-----) [007] ...1 82315.678899: tracing_mark_write: E|27550
36329           <...>-27550 (-----) [007] ...1 82315.678900: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36330           <...>-27550 (-----) [007] ...1 82315.678901: tracing_mark_write: E|27550
36331           <...>-27550 (-----) [007] ...1 82315.678902: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36332           <...>-27550 (-----) [007] ...1 82315.678905: tracing_mark_write: E|27550
36333           <...>-27550 (-----) [007] ...1 82315.678906: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36334           <...>-27550 (-----) [007] ...1 82315.678907: tracing_mark_write: E|27550
36335           <...>-27550 (-----) [007] ...1 82315.678908: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36336           <...>-27550 (-----) [007] ...1 82315.678909: tracing_mark_write: E|27550
36337           <...>-27550 (-----) [007] ...1 82315.678910: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36338           <...>-27550 (-----) [007] ...1 82315.678912: tracing_mark_write: E|27550
36339           <...>-27550 (-----) [007] ...1 82315.678913: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36340           <...>-27550 (-----) [007] ...1 82315.678914: tracing_mark_write: E|27550
36341           <...>-27550 (-----) [007] ...1 82315.678915: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36342           <...>-27550 (-----) [007] ...1 82315.678916: tracing_mark_write: E|27550
36343           <...>-27550 (-----) [007] ...1 82315.678917: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36344           <...>-27550 (-----) [007] ...1 82315.678918: tracing_mark_write: E|27550
36345           <...>-27550 (-----) [007] ...1 82315.678919: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36346           <...>-27550 (-----) [007] ...1 82315.678921: tracing_mark_write: E|27550
36347           <...>-27550 (-----) [007] ...1 82315.678922: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36348           <...>-27550 (-----) [007] ...1 82315.678923: tracing_mark_write: E|27550
36349           <...>-27550 (-----) [007] ...1 82315.678924: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36350           <...>-27550 (-----) [007] ...1 82315.678925: tracing_mark_write: E|27550
36351           <...>-27550 (-----) [007] ...1 82315.678926: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36352           <...>-27550 (-----) [007] ...1 82315.678927: tracing_mark_write: E|27550
36353           <...>-27550 (-----) [007] ...1 82315.678928: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36354           <...>-27550 (-----) [007] ...1 82315.678930: tracing_mark_write: E|27550
36355           <...>-27550 (-----) [007] ...1 82315.678931: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36356           <...>-27550 (-----) [007] ...1 82315.678932: tracing_mark_write: E|27550
36357           <...>-27550 (-----) [007] ...1 82315.678933: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36358           <...>-27550 (-----) [007] ...1 82315.678934: tracing_mark_write: E|27550
36359           <...>-27550 (-----) [007] ...1 82315.678935: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36360           <...>-27550 (-----) [007] ...1 82315.678936: tracing_mark_write: E|27550
36361           <...>-27550 (-----) [007] ...1 82315.678937: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36362           <...>-27550 (-----) [007] ...1 82315.678938: tracing_mark_write: E|27550
36363           <...>-27550 (-----) [007] ...1 82315.678939: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36364           <...>-27550 (-----) [007] ...1 82315.678940: tracing_mark_write: E|27550
36365           <...>-27550 (-----) [007] ...1 82315.678941: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36366           <...>-27550 (-----) [007] ...1 82315.678942: tracing_mark_write: E|27550
36367           <...>-27550 (-----) [007] ...1 82315.678943: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36368           <...>-27550 (-----) [007] ...1 82315.678946: tracing_mark_write: E|27550
36369           <...>-27550 (-----) [007] ...1 82315.678947: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36370           <...>-27550 (-----) [007] ...1 82315.678948: tracing_mark_write: E|27550
36371           <...>-27550 (-----) [007] ...1 82315.678949: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36372           <...>-27550 (-----) [007] ...1 82315.678950: tracing_mark_write: E|27550
36373           <...>-27550 (-----) [007] ...1 82315.678951: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36374           <...>-27550 (-----) [007] ...1 82315.678953: tracing_mark_write: E|27550
36375           <...>-27550 (-----) [007] ...1 82315.678954: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36376           <...>-27550 (-----) [007] ...1 82315.678955: tracing_mark_write: E|27550
36377           <...>-27550 (-----) [007] ...1 82315.678956: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36378           <...>-27550 (-----) [007] ...1 82315.678957: tracing_mark_write: E|27550
36379           <...>-27550 (-----) [007] ...1 82315.678958: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36380           <...>-27550 (-----) [007] ...1 82315.678959: tracing_mark_write: E|27550
36381           <...>-27550 (-----) [007] ...1 82315.678960: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36382           <...>-27550 (-----) [007] ...1 82315.678962: tracing_mark_write: E|27550
36383           <...>-27550 (-----) [007] ...1 82315.678963: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36384           <...>-27550 (-----) [007] ...1 82315.678964: tracing_mark_write: E|27550
36385           <...>-27550 (-----) [007] ...1 82315.678965: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36386           <...>-27550 (-----) [007] ...1 82315.678966: tracing_mark_write: E|27550
36387           <...>-27550 (-----) [007] ...1 82315.678968: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36388           <...>-27550 (-----) [007] ...1 82315.678970: tracing_mark_write: E|27550
36389           <...>-27550 (-----) [007] ...1 82315.678971: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36390           <...>-27550 (-----) [007] ...1 82315.678972: tracing_mark_write: E|27550
36391           <...>-27550 (-----) [007] ...1 82315.678973: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36392           <...>-27550 (-----) [007] ...1 82315.678975: tracing_mark_write: E|27550
36393           <...>-27550 (-----) [007] ...1 82315.678976: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36394           <...>-27550 (-----) [007] ...1 82315.678980: tracing_mark_write: E|27550
36395           <...>-27550 (-----) [007] ...1 82315.678981: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36396          <idle>-0     (-----) [000] d.h5 82315.678982: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
36397           <...>-27550 (-----) [007] ...1 82315.678982: tracing_mark_write: E|27550
36398           <...>-27550 (-----) [007] ...1 82315.678983: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36399           <...>-27550 (-----) [007] ...1 82315.678984: tracing_mark_write: E|27550
36400           <...>-27550 (-----) [007] ...1 82315.678985: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36401           <...>-27550 (-----) [007] ...1 82315.678986: tracing_mark_write: E|27550
36402           <...>-27550 (-----) [007] ...1 82315.678987: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36403           <...>-27550 (-----) [007] ...1 82315.678988: tracing_mark_write: E|27550
36404           <...>-27550 (-----) [007] ...1 82315.678990: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36405           <...>-27550 (-----) [007] ...1 82315.678990: tracing_mark_write: E|27550
36406           <...>-27550 (-----) [007] ...1 82315.678991: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36407           <...>-27550 (-----) [007] ...1 82315.678992: tracing_mark_write: E|27550
36408           <...>-27550 (-----) [007] ...1 82315.678993: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36409           <...>-27550 (-----) [007] ...1 82315.678994: tracing_mark_write: E|27550
36410           <...>-27550 (-----) [007] ...1 82315.678996: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36411          <idle>-0     (-----) [000] d.h6 82315.678996: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
36412           <...>-27550 (-----) [007] ...1 82315.678997: tracing_mark_write: E|27550
36413           <...>-27550 (-----) [007] ...1 82315.678998: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36414          <idle>-0     (-----) [000] d.h5 82315.678999: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
36415           <...>-27550 (-----) [007] ...1 82315.679000: tracing_mark_write: E|27550
36416          <idle>-0     (-----) [003] .n.1 82315.679000: cpu_idle: state=4294967295 cpu_id=3
36417           <...>-27550 (-----) [007] ...1 82315.679001: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36418           <...>-27550 (-----) [007] ...1 82315.679002: tracing_mark_write: E|27550
36419           <...>-27550 (-----) [007] ...1 82315.679003: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36420           <...>-27550 (-----) [007] ...1 82315.679004: tracing_mark_write: E|27550
36421           <...>-27550 (-----) [007] ...1 82315.679005: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36422           <...>-27550 (-----) [007] ...1 82315.679006: tracing_mark_write: E|27550
36423          <idle>-0     (-----) [003] d..2 82315.679006: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
36424           <...>-27550 (-----) [007] ...1 82315.679007: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36425           <...>-27550 (-----) [007] ...1 82315.679008: tracing_mark_write: E|27550
36426           <...>-27550 (-----) [007] ...1 82315.679009: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36427           <...>-27550 (-----) [007] ...1 82315.679010: tracing_mark_write: E|27550
36428           <...>-27550 (-----) [007] ...1 82315.679011: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36429           <...>-27550 (-----) [007] ...1 82315.679012: tracing_mark_write: E|27550
36430           <...>-27550 (-----) [007] ...1 82315.679013: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36431          <idle>-0     (-----) [000] dnh6 82315.679015: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
36432           <...>-27550 (-----) [007] ...1 82315.679015: tracing_mark_write: E|27550
36433           <...>-27550 (-----) [007] ...1 82315.679016: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36434           <...>-27550 (-----) [007] ...1 82315.679019: tracing_mark_write: E|27550
36435           <...>-27550 (-----) [007] ...1 82315.679020: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36436           <...>-27550 (-----) [007] ...1 82315.679021: tracing_mark_write: E|27550
36437           <...>-27550 (-----) [007] ...1 82315.679022: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36438           <...>-27550 (-----) [007] ...1 82315.679023: tracing_mark_write: E|27550
36439          <idle>-0     (-----) [000] .n.1 82315.679024: cpu_idle: state=4294967295 cpu_id=0
36440           <...>-27550 (-----) [007] ...1 82315.679024: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36441           <...>-27550 (-----) [007] ...1 82315.679026: tracing_mark_write: E|27550
36442           <...>-27550 (-----) [007] ...1 82315.679027: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36443           <...>-27550 (-----) [007] ...1 82315.679028: tracing_mark_write: E|27550
36444          <idle>-0     (-----) [000] d..2 82315.679028: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
36445           <...>-27550 (-----) [007] ...1 82315.679029: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36446           <...>-27550 (-----) [007] ...1 82315.679030: tracing_mark_write: E|27550
36447  crtc_event:111-322   (  322) [003] d..2 82315.679030: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36448           <...>-27550 (-----) [007] ...1 82315.679031: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36449           <...>-27550 (-----) [007] ...1 82315.679032: tracing_mark_write: E|27550
36450           <...>-27550 (-----) [007] ...1 82315.679034: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36451          <idle>-0     (-----) [003] d..1 82315.679035: cpu_idle: state=0 cpu_id=3
36452           <...>-27550 (-----) [007] ...1 82315.679036: tracing_mark_write: E|27550
36453           <...>-27550 (-----) [007] ...1 82315.679037: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36454           <...>-27550 (-----) [007] ...1 82315.679038: tracing_mark_write: E|27550
36455           <...>-27550 (-----) [007] ...1 82315.679039: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36456           <...>-27550 (-----) [007] ...1 82315.679040: tracing_mark_write: E|27550
36457           <...>-27550 (-----) [007] ...1 82315.679042: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36458           <...>-27550 (-----) [007] ...1 82315.679043: tracing_mark_write: E|27550
36459           <...>-27550 (-----) [007] ...1 82315.679045: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36460           <...>-27550 (-----) [007] ...1 82315.679046: tracing_mark_write: E|27550
36461           <...>-27550 (-----) [007] ...1 82315.679047: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36462           <...>-27550 (-----) [007] ...1 82315.679048: tracing_mark_write: E|27550
36463           <...>-27550 (-----) [007] ...1 82315.679049: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36464           <...>-27550 (-----) [007] ...1 82315.679050: tracing_mark_write: E|27550
36465           <...>-27550 (-----) [007] ...1 82315.679051: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36466           <...>-27550 (-----) [007] ...1 82315.679052: tracing_mark_write: E|27550
36467           <...>-27550 (-----) [007] ...1 82315.679053: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36468           <...>-27550 (-----) [007] ...1 82315.679055: tracing_mark_write: E|27550
36469           <...>-27550 (-----) [007] ...1 82315.679056: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36470           <...>-27550 (-----) [007] ...1 82315.679057: tracing_mark_write: E|27550
36471           <...>-27550 (-----) [007] ...1 82315.679058: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperand
36472           <...>-27550 (-----) [007] ...1 82315.679059: tracing_mark_write: E|27550
36473           <...>-27550 (-----) [007] ...1 82315.679060: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_setOperandValue
36474           <...>-27550 (-----) [007] ...1 82315.679061: tracing_mark_write: E|27550
36475           <...>-27550 (-----) [007] ...1 82315.679062: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_addOperation
36476           <...>-27550 (-----) [007] ...1 82315.679064: tracing_mark_write: E|27550
36477           <...>-27550 (-----) [007] ...2 82315.679071: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_identifyInputsAndOutputs
36478           <...>-27550 (-----) [007] ...1 82315.679076: tracing_mark_write: E|27550
36479           <...>-27550 (-----) [007] ...1 82315.679081: tracing_mark_write: B|27550|[NN_LR_PP]ANeuralNetworksModel_finish
36480           <...>-27550 (-----) [007] ...1 82315.679103: tracing_mark_write: B|27550|[NN_LU_PU]validateModelVersioned
36481 crtc_commit:111-321   (  321) [000] d..2 82315.679161: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
36482          <idle>-0     (-----) [000] d..1 82315.679166: cpu_idle: state=0 cpu_id=0
36483           <...>-27550 (-----) [007] ...1 82315.679202: tracing_mark_write: E|27550
36484           <...>-27550 (-----) [007] ...1 82315.679226: tracing_mark_write: E|27550
36485           <...>-27550 (-----) [007] ...1 82315.679235: tracing_mark_write: B|27550|[NN_LR_PC]ANeuralNetworksCompilation_create
36486           <...>-27550 (-----) [007] ...1 82315.679255: tracing_mark_write: B|27550|HIDL::IServiceManager::listByInterface::client
36487           <...>-27550 (-----) [007] ...1 82315.679256: tracing_mark_write: E|27550
36488           <...>-27550 (-----) [007] .... 82315.679282: binder_transaction: transaction=1568938 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x5
36489           <...>-27550 (-----) [007] .... 82315.679285: binder_transaction_alloc_buf: transaction=1568938 data_size=124 offsets_size=16
36490           <...>-27550 (-----) [007] ...2 82315.679289: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
36491           <...>-27550 (-----) [007] d..4 82315.679291: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=002
36492          <idle>-0     (-----) [000] dnh2 82315.679316: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=000
36493          <idle>-0     (-----) [000] .n.1 82315.679319: cpu_idle: state=4294967295 cpu_id=0
36494           <...>-27550 (-----) [007] d..2 82315.679323: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
36495          <idle>-0     (-----) [000] d..2 82315.679324: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=586 next_prio=110
36496<...>-586 ( 586) [000] .... 82315.679331: binder_transaction_received: transaction=1568938
36497          <idle>-0     (-----) [007] d..1 82315.679334: cpu_idle: state=0 cpu_id=7
36498          <idle>-0     (-----) [007] ...1 82315.679537: cpu_idle: state=4294967295 cpu_id=7
36499          <idle>-0     (-----) [007] d..1 82315.679538: cpu_idle: state=0 cpu_id=7
36500<...>-586 ( 586) [000] .... 82315.679650: binder_transaction: transaction=1568939 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36501<...>-586 ( 586) [000] .... 82315.679653: binder_transaction_alloc_buf: transaction=1568939 data_size=164 offsets_size=32
36502<...>-586 ( 586) [000] d..2 82315.679657: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36503<...>-586 ( 586) [000] .... 82315.679668: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
36504          <idle>-0     (-----) [007] dnh2 82315.679671: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36505          <idle>-0     (-----) [007] .n.1 82315.679673: cpu_idle: state=4294967295 cpu_id=7
36506          <idle>-0     (-----) [007] d..2 82315.679677: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36507           <...>-27550 (-----) [007] .... 82315.679679: binder_transaction_received: transaction=1568939
36508           <...>-27550 (-----) [007] ...1 82315.679695: tracing_mark_write: B|27550|HIDL::IServiceManager::getTransport::client
36509           <...>-27550 (-----) [007] ...1 82315.679697: tracing_mark_write: E|27550
36510           <...>-27550 (-----) [007] .... 82315.679703: binder_transaction: transaction=1568940 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x3
36511           <...>-27550 (-----) [007] .... 82315.679704: binder_transaction_alloc_buf: transaction=1568940 data_size=204 offsets_size=32
36512           <...>-27550 (-----) [007] ...2 82315.679705: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
36513<...>-586 ( 586) [000] d..2 82315.679708: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36514           <...>-27550 (-----) [007] d..4 82315.679710: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=000
36515          <idle>-0     (-----) [000] d..1 82315.679714: cpu_idle: state=0 cpu_id=0
36516           <...>-27550 (-----) [007] d..2 82315.679722: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
36517          <idle>-0     (-----) [000] dnh2 82315.679723: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=000
36518          <idle>-0     (-----) [007] d..1 82315.679726: cpu_idle: state=0 cpu_id=7
36519          <idle>-0     (-----) [000] .n.1 82315.679727: cpu_idle: state=4294967295 cpu_id=0
36520          <idle>-0     (-----) [000] d..2 82315.679732: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=586 next_prio=110
36521<...>-586 ( 586) [000] .... 82315.679735: binder_transaction_received: transaction=1568940
36522          <idle>-0     (-----) [007] ...1 82315.679927: cpu_idle: state=4294967295 cpu_id=7
36523          <idle>-0     (-----) [007] d..1 82315.679929: cpu_idle: state=0 cpu_id=7
36524<...>-586 ( 586) [000] .... 82315.679947: binder_transaction: transaction=1568941 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36525<...>-586 ( 586) [000] .... 82315.679949: binder_transaction_alloc_buf: transaction=1568941 data_size=8 offsets_size=0
36526<...>-586 ( 586) [000] d..2 82315.679951: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36527<...>-586 ( 586) [000] .... 82315.679962: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
36528          <idle>-0     (-----) [007] dnh2 82315.679966: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36529          <idle>-0     (-----) [007] .n.1 82315.679968: cpu_idle: state=4294967295 cpu_id=7
36530          <idle>-0     (-----) [007] d..2 82315.679971: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36531           <...>-27550 (-----) [007] .... 82315.679973: binder_transaction_received: transaction=1568941
36532           <...>-27550 (-----) [007] ...1 82315.679982: tracing_mark_write: B|27550|HIDL::IServiceManager::get::client
36533           <...>-27550 (-----) [007] ...1 82315.679984: tracing_mark_write: E|27550
36534           <...>-27550 (-----) [007] .... 82315.679988: binder_transaction: transaction=1568942 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x1
36535           <...>-27550 (-----) [007] .... 82315.679989: binder_transaction_alloc_buf: transaction=1568942 data_size=204 offsets_size=32
36536           <...>-27550 (-----) [007] ...2 82315.679990: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
36537<...>-586 ( 586) [000] d..2 82315.679992: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36538           <...>-27550 (-----) [007] d..4 82315.679994: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=000
36539          <idle>-0     (-----) [000] d..1 82315.679998: cpu_idle: state=0 cpu_id=0
36540           <...>-27550 (-----) [007] d..2 82315.680004: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
36541          <idle>-0     (-----) [007] d..1 82315.680007: cpu_idle: state=0 cpu_id=7
36542          <idle>-0     (-----) [000] dnh2 82315.680007: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=000
36543          <idle>-0     (-----) [000] .n.1 82315.680011: cpu_idle: state=4294967295 cpu_id=0
36544          <idle>-0     (-----) [000] d..2 82315.680015: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=586 next_prio=110
36545<...>-586 ( 586) [000] .... 82315.680019: binder_transaction_received: transaction=1568942
36546<...>-15374 ( 8943) [001] d..2 82315.680040: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
36547<...>-15374 ( 8943) [001] d..3 82315.680053: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
36548<...>-586 ( 586) [000] .... 82315.680153: binder_transaction: transaction=1568943 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36549<...>-586 ( 586) [000] .... 82315.680155: binder_transaction_alloc_buf: transaction=1568943 data_size=28 offsets_size=8
36550<...>-586 ( 586) [000] d..2 82315.680170: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36551<...>-586 ( 586) [000] .... 82315.680180: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
36552          <idle>-0     (-----) [007] dnh2 82315.680184: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36553          <idle>-0     (-----) [007] .n.1 82315.680186: cpu_idle: state=4294967295 cpu_id=7
36554          <idle>-0     (-----) [007] d..2 82315.680189: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36555           <...>-27550 (-----) [007] .... 82315.680191: binder_transaction_received: transaction=1568943
36556<...>-586 ( 586) [000] d..2 82315.680210: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
36557           <...>-27550 (-----) [007] ...1 82315.680223: tracing_mark_write: B|27550|HIDL::IBase::interfaceChain::client
36558           <...>-27550 (-----) [007] ...1 82315.680224: tracing_mark_write: E|27550
36559           <...>-27550 (-----) [007] .... 82315.680254: binder_transaction: transaction=1568945 dest_node=855 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
36560           <...>-27550 (-----) [007] .... 82315.680256: binder_transaction_alloc_buf: transaction=1568945 data_size=32 offsets_size=0
36561           <...>-27550 (-----) [007] ...2 82315.680258: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
36562           <...>-27550 (-----) [007] d..4 82315.680260: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=002
36563           <...>-27550 (-----) [007] dn.5 82315.680271: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
36564           <...>-27550 (-----) [007] d..2 82315.680295: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
36565<...>-5340 ( 788) [007] .... 82315.680305: binder_transaction_received: transaction=1568945
36566<...>-5340 ( 788) [007] ...1 82315.680337: tracing_mark_write: B|788|HIDL::IBase::interfaceChain::server
36567<...>-5340 ( 788) [007] ...1 82315.680358: tracing_mark_write: E|788
36568<...>-5340 ( 788) [007] .... 82315.680378: binder_transaction: transaction=1568946 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36569<...>-5340 ( 788) [007] .... 82315.680379: binder_transaction_alloc_buf: transaction=1568946 data_size=204 offsets_size=40
36570<...>-5340 ( 788) [007] .... 82315.680381: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
36571<...>-5340 ( 788) [007] d..2 82315.680399: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36572           <...>-27550 (-----) [007] .... 82315.680403: binder_transaction_received: transaction=1568946
36573           <...>-27550 (-----) [007] ...1 82315.680438: tracing_mark_write: B|27550|HIDL::IBase::interfaceChain::client
36574           <...>-27550 (-----) [007] ...1 82315.680440: tracing_mark_write: E|27550
36575           <...>-27550 (-----) [007] .... 82315.680446: binder_transaction: transaction=1568947 dest_node=855 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
36576           <...>-27550 (-----) [007] .... 82315.680447: binder_transaction_alloc_buf: transaction=1568947 data_size=32 offsets_size=0
36577           <...>-27550 (-----) [007] ...2 82315.680448: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
36578           <...>-27550 (-----) [007] d..4 82315.680449: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
36579           <...>-27550 (-----) [007] dn.5 82315.680452: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
36580           <...>-27550 (-----) [007] d..2 82315.680455: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
36581<...>-5340 ( 788) [007] .... 82315.680458: binder_transaction_received: transaction=1568947
36582<...>-5340 ( 788) [007] ...1 82315.680465: tracing_mark_write: B|788|HIDL::IBase::interfaceChain::server
36583<...>-5340 ( 788) [007] ...1 82315.680470: tracing_mark_write: E|788
36584<...>-5340 ( 788) [007] .... 82315.680473: binder_transaction: transaction=1568948 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36585<...>-5340 ( 788) [007] .... 82315.680474: binder_transaction_alloc_buf: transaction=1568948 data_size=204 offsets_size=40
36586<...>-5340 ( 788) [007] .... 82315.680475: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
36587<...>-5340 ( 788) [007] d..2 82315.680487: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36588           <...>-27550 (-----) [007] .... 82315.680490: binder_transaction_received: transaction=1568948
36589  kworker/u16:15-1311  ( 1311) [000] d..2 82315.680491: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36590          <idle>-0     (-----) [000] d..1 82315.680500: cpu_idle: state=0 cpu_id=0
36591           <...>-27550 (-----) [007] ...1 82315.680512: tracing_mark_write: B|27550|[NN_LI_PI]getCapabilities_1_1
36592           <...>-27550 (-----) [007] ...1 82315.680517: tracing_mark_write: B|27550|HIDL::IDevice::getCapabilities_1_1::client
36593           <...>-27550 (-----) [007] ...1 82315.680518: tracing_mark_write: E|27550
36594           <...>-27550 (-----) [007] .... 82315.680524: binder_transaction: transaction=1568949 dest_node=855 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x5
36595           <...>-27550 (-----) [007] .... 82315.680525: binder_transaction_alloc_buf: transaction=1568949 data_size=48 offsets_size=0
36596           <...>-27550 (-----) [007] ...2 82315.680526: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
36597           <...>-27550 (-----) [007] d..4 82315.680527: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
36598           <...>-27550 (-----) [007] dn.5 82315.680531: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
36599           <...>-27550 (-----) [007] d..2 82315.680534: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
36600<...>-5340 ( 788) [007] .... 82315.680536: binder_transaction_received: transaction=1568949
36601<...>-5340 ( 788) [007] ...1 82315.680544: tracing_mark_write: B|788|HIDL::IDevice::getCapabilities_1_1::server
36602<...>-5340 ( 788) [007] d..2 82315.680593: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
36603<...>-5340 ( 788) [007] d..2 82315.680616: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36604          <idle>-0     (-----) [000] dnh2 82315.680620: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
36605          <idle>-0     (-----) [000] .n.1 82315.680624: cpu_idle: state=4294967295 cpu_id=0
36606           <...>-27550 (-----) [007] d..2 82315.680624: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
36607          <idle>-0     (-----) [000] d..2 82315.680629: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
36608          <idle>-0     (-----) [007] d..1 82315.680630: cpu_idle: state=0 cpu_id=7
36609<...>-87 ( 87) [000] d..2 82315.680664: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36610          <idle>-0     (-----) [000] d..1 82315.680668: cpu_idle: state=0 cpu_id=0
36611<...>-15374 ( 8943) [001] d..2 82315.680676: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
36612          <idle>-0     (-----) [001] d..1 82315.680693: cpu_idle: state=0 cpu_id=1
36613          <idle>-0     (-----) [007] ...1 82315.680873: cpu_idle: state=4294967295 cpu_id=7
36614          <idle>-0     (-----) [007] d..1 82315.680874: cpu_idle: state=0 cpu_id=7
36615          <idle>-0     (-----) [002] d.h4 82315.681116: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
36616          <idle>-0     (-----) [002] dnh5 82315.681137: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
36617          <idle>-0     (-----) [002] .n.1 82315.681143: cpu_idle: state=4294967295 cpu_id=2
36618          <idle>-0     (-----) [002] d..2 82315.681150: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
36619<...>-86 ( 86) [002] d..2 82315.681179: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
36620          <idle>-0     (-----) [002] d..1 82315.681185: cpu_idle: state=0 cpu_id=2
36621          <idle>-0     (-----) [000] d.h5 82315.681318: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
36622          <idle>-0     (-----) [000] dnh6 82315.681326: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
36623          <idle>-0     (-----) [000] .n.1 82315.681334: cpu_idle: state=4294967295 cpu_id=0
36624          <idle>-0     (-----) [000] d..2 82315.681338: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
36625          <idle>-0     (-----) [002] d.h4 82315.681355: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
36626          <idle>-0     (-----) [007] dnh2 82315.681367: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
36627          <idle>-0     (-----) [007] .n.1 82315.681369: cpu_idle: state=4294967295 cpu_id=7
36628          <idle>-0     (-----) [007] d..2 82315.681373: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
36629          <idle>-0     (-----) [002] ...1 82315.681382: cpu_idle: state=4294967295 cpu_id=2
36630          <idle>-0     (-----) [002] d..1 82315.681385: cpu_idle: state=0 cpu_id=2
36631<...>-5340 ( 788) [007] ...1 82315.681386: tracing_mark_write: E|788
36632<...>-5340 ( 788) [007] .... 82315.681389: binder_transaction: transaction=1568950 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36633<...>-5340 ( 788) [007] .... 82315.681390: binder_transaction_alloc_buf: transaction=1568950 data_size=48 offsets_size=8
36634<...>-5340 ( 788) [007] d..2 82315.681391: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36635<...>-5340 ( 788) [007] d..3 82315.681395: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36636<...>-5340 ( 788) [007] .... 82315.681395: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
36637<...>-5340 ( 788) [007] d..2 82315.681408: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36638           <...>-27550 (-----) [007] .... 82315.681411: binder_transaction_received: transaction=1568950
36639 crtc_commit:111-321   (  321) [000] d..2 82315.681415: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36640           <...>-27550 (-----) [007] ...1 82315.681419: tracing_mark_write: E|27550
36641          <idle>-0     (-----) [000] d..1 82315.681420: cpu_idle: state=0 cpu_id=0
36642           <...>-27550 (-----) [007] ...1 82315.681425: tracing_mark_write: B|27550|HIDL::IServiceManager::getTransport::client
36643           <...>-27550 (-----) [007] ...1 82315.681426: tracing_mark_write: E|27550
36644           <...>-27550 (-----) [007] .... 82315.681433: binder_transaction: transaction=1568951 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x3
36645           <...>-27550 (-----) [007] .... 82315.681434: binder_transaction_alloc_buf: transaction=1568951 data_size=204 offsets_size=32
36646           <...>-27550 (-----) [007] ...2 82315.681435: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
36647           <...>-27550 (-----) [007] d..4 82315.681436: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=000
36648           <...>-27550 (-----) [007] d..2 82315.681448: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
36649          <idle>-0     (-----) [000] dnh2 82315.681451: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=000
36650          <idle>-0     (-----) [007] d..1 82315.681452: cpu_idle: state=0 cpu_id=7
36651          <idle>-0     (-----) [000] .n.1 82315.681455: cpu_idle: state=4294967295 cpu_id=0
36652          <idle>-0     (-----) [000] d..2 82315.681459: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=586 next_prio=110
36653<...>-586 ( 586) [000] .... 82315.681463: binder_transaction_received: transaction=1568951
36654<...>-586 ( 586) [000] d.h4 82315.681603: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
36655<...>-586 ( 586) [000] d.h5 82315.681614: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
36656          <idle>-0     (-----) [003] .n.1 82315.681619: cpu_idle: state=4294967295 cpu_id=3
36657<...>-586 ( 586) [000] d.h6 82315.681621: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
36658          <idle>-0     (-----) [003] d..2 82315.681623: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
36659<...>-586 ( 586) [000] d.h7 82315.681631: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
36660  crtc_event:111-322   (  322) [003] d..2 82315.681639: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36661<...>-586 ( 586) [000] d.h8 82315.681642: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
36662          <idle>-0     (-----) [003] d..1 82315.681643: cpu_idle: state=0 cpu_id=3
36663<...>-586 ( 586) [000] d.h9 82315.681657: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
36664<...>-586 ( 586) [000] d.h6 82315.681660: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
36665          <idle>-0     (-----) [002] .n.1 82315.681661: cpu_idle: state=4294967295 cpu_id=2
36666          <idle>-0     (-----) [002] d..2 82315.681667: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
36667<...>-586 ( 586) [000] d.h7 82315.681685: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=001
36668          <idle>-0     (-----) [001] .n.1 82315.681692: cpu_idle: state=4294967295 cpu_id=1
36669          <idle>-0     (-----) [001] d..2 82315.681700: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
36670 crtc_commit:111-321   (  321) [002] d..2 82315.681703: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
36671          <idle>-0     (-----) [002] d..1 82315.681708: cpu_idle: state=0 cpu_id=2
36672 SDM_EventThread-644   (  619) [001] ...1 82315.681745: tracing_mark_write: B|619|HWCCallbacks::Vsync::
36673 SDM_EventThread-644   (  619) [001] ...1 82315.681755: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
36674 SDM_EventThread-644   (  619) [001] ...1 82315.681758: tracing_mark_write: E|619
36675<...>-586 ( 586) [000] d.s2 82315.681796: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
36676 SDM_EventThread-644   (  619) [001] .... 82315.681805: binder_transaction: transaction=1568952 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
36677<...>-586 ( 586) [000] d.s3 82315.681806: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
36678<...>-586 ( 586) [000] d.s1 82315.681808: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
36679 SDM_EventThread-644   (  619) [001] .... 82315.681809: binder_transaction_alloc_buf: transaction=1568952 data_size=76 offsets_size=0
36680          <idle>-0     (-----) [003] .n.1 82315.681811: cpu_idle: state=4294967295 cpu_id=3
36681 SDM_EventThread-644   (  619) [001] d..4 82315.681814: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
36682          <idle>-0     (-----) [003] d..2 82315.681816: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
36683 SDM_EventThread-644   (  619) [001] d..5 82315.681828: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
36684<...>-586 ( 586) [000] d.s2 82315.681830: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
36685          <idle>-0     (-----) [002] .n.1 82315.681832: cpu_idle: state=4294967295 cpu_id=2
36686  crtc_event:111-322   (  322) [003] d..2 82315.681838: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
36687          <idle>-0     (-----) [002] d..2 82315.681840: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
36688 SDM_EventThread-644   (  619) [001] ...1 82315.681845: tracing_mark_write: E|619
36689<...>-8890 ( 8858) [002] .... 82315.681847: binder_transaction_received: transaction=1568952
36690<...>-8 ( 8) [003] d..2 82315.681857: 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
36691 SDM_EventThread-644   (  619) [001] d..4 82315.681858: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
36692          <idle>-0     (-----) [003] d..1 82315.681861: cpu_idle: state=0 cpu_id=3
36693<...>-586 ( 586) [000] .... 82315.681873: binder_transaction: transaction=1568953 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36694 SDM_EventThread-644   (  619) [001] d..5 82315.681873: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
36695<...>-586 ( 586) [000] .... 82315.681875: binder_transaction_alloc_buf: transaction=1568953 data_size=8 offsets_size=0
36696          <idle>-0     (-----) [003] .n.1 82315.681877: cpu_idle: state=4294967295 cpu_id=3
36697<...>-586 ( 586) [000] d..2 82315.681877: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36698<...>-8890 ( 8858) [002] ...1 82315.681879: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
36699          <idle>-0     (-----) [003] d..2 82315.681882: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
36700<...>-586 ( 586) [000] .... 82315.681885: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
36701          <idle>-0     (-----) [007] dnh2 82315.681890: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36702          <idle>-0     (-----) [007] .n.1 82315.681892: cpu_idle: state=4294967295 cpu_id=7
36703<...>-586 ( 586) [000] d..2 82315.681896: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
36704 SDM_EventThread-644   (  619) [001] d..2 82315.681896: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
36705 crtc_commit:111-321   (  321) [003] d..2 82315.681897: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36706          <idle>-0     (-----) [007] d..2 82315.681897: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36707           <...>-27550 (-----) [007] .... 82315.681898: binder_transaction_received: transaction=1568953
36708          <idle>-0     (-----) [003] d..1 82315.681901: cpu_idle: state=0 cpu_id=3
36709<...>-8890 ( 8858) [002] d..1 82315.681901: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
36710          <idle>-0     (-----) [001] d..1 82315.681905: cpu_idle: state=0 cpu_id=1
36711           <...>-27550 (-----) [007] ...1 82315.681905: tracing_mark_write: B|27550|HIDL::IServiceManager::get::client
36712           <...>-27550 (-----) [007] ...1 82315.681906: tracing_mark_write: E|27550
36713     kworker/0:1-25262 (25262) [000] d..2 82315.681908: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=hwservicemanage next_pid=586 next_prio=120
36714           <...>-27550 (-----) [007] .... 82315.681910: binder_transaction: transaction=1568954 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x1
36715           <...>-27550 (-----) [007] .... 82315.681911: binder_transaction_alloc_buf: transaction=1568954 data_size=204 offsets_size=32
36716<...>-8890 ( 8858) [002] d..2 82315.681915: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
36717           <...>-27550 (-----) [007] d..2 82315.681918: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
36718          <idle>-0     (-----) [003] .n.1 82315.681919: cpu_idle: state=4294967295 cpu_id=3
36719          <idle>-0     (-----) [007] d..1 82315.681921: cpu_idle: state=0 cpu_id=7
36720<...>-8890 ( 8858) [002] d..1 82315.681921: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
36721<...>-586 ( 586) [000] .... 82315.681923: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
36722          <idle>-0     (-----) [003] d..2 82315.681924: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
36723<...>-586 ( 586) [000] .... 82315.681930: binder_transaction_received: transaction=1568954
36724<...>-8890 ( 8858) [002] d..2 82315.681935: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
36725          <idle>-0     (-----) [001] .n.1 82315.681940: cpu_idle: state=4294967295 cpu_id=1
36726<...>-8890 ( 8858) [002] ...1 82315.681940: tracing_mark_write: E|8858
36727        DispSync-8879  ( 8858) [003] d..1 82315.681946: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
36728          <idle>-0     (-----) [001] d..2 82315.681947: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
36729<...>-8894 ( 8858) [001] ...1 82315.681965: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
36730        DispSync-8879  ( 8858) [003] d..2 82315.681967: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
36731<...>-8894 ( 8858) [001] ...1 82315.681969: tracing_mark_write: E|8858
36732        DispSync-8879  ( 8858) [003] d..1 82315.681972: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
36733<...>-8890 ( 8858) [002] d..2 82315.681975: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=8882 next_prio=97
36734        DispSync-8879  ( 8858) [003] d..2 82315.681985: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
36735<...>-8894 ( 8858) [001] d..2 82315.681992: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
36736        DispSync-8879  ( 8858) [003] d..2 82315.682015: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36737   sfEventThread-8882  ( 8858) [002] d..3 82315.682020: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
36738          <idle>-0     (-----) [003] d..1 82315.682022: cpu_idle: state=0 cpu_id=3
36739          <idle>-0     (-----) [004] dnh2 82315.682038: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
36740  appEventThread-8881  ( 8858) [001] d..3 82315.682040: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
36741          <idle>-0     (-----) [004] .n.1 82315.682040: cpu_idle: state=4294967295 cpu_id=4
36742   sfEventThread-8882  ( 8858) [002] d..3 82315.682043: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
36743          <idle>-0     (-----) [004] d..2 82315.682045: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
36744<...>-586 ( 586) [000] .... 82315.682050: binder_transaction: transaction=1568956 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36745<...>-586 ( 586) [000] .... 82315.682052: binder_transaction_alloc_buf: transaction=1568956 data_size=28 offsets_size=8
36746  appEventThread-8881  ( 8858) [001] d..4 82315.682056: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
36747<...>-586 ( 586) [000] d..2 82315.682059: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36748          <idle>-0     (-----) [003] .n.1 82315.682061: cpu_idle: state=4294967295 cpu_id=3
36749   sfEventThread-8882  ( 8858) [002] d..4 82315.682063: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
36750<...>-586 ( 586) [000] .... 82315.682067: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
36751          <idle>-0     (-----) [003] d..2 82315.682067: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
36752          <idle>-0     (-----) [007] dnh2 82315.682071: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
36753          <idle>-0     (-----) [007] .n.1 82315.682074: cpu_idle: state=4294967295 cpu_id=7
36754  appEventThread-8881  ( 8858) [001] d..2 82315.682075: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
36755          <idle>-0     (-----) [007] d..2 82315.682076: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36756           <...>-27550 (-----) [007] .... 82315.682078: binder_transaction_received: transaction=1568956
36757<...>-8894 ( 8858) [001] .... 82315.682079: binder_transaction: transaction=1568955 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
36758   sfEventThread-8882  ( 8858) [002] d..3 82315.682080: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=006
36759<...>-8894 ( 8858) [001] .... 82315.682081: binder_transaction_alloc_buf: transaction=1568955 data_size=68 offsets_size=0
36760<...>-8894 ( 8858) [001] ...2 82315.682086: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
36761           <...>-27550 (-----) [007] ...1 82315.682091: tracing_mark_write: B|27550|HIDL::IBase::interfaceChain::client
36762           <...>-27550 (-----) [007] ...1 82315.682093: tracing_mark_write: E|27550
36763<...>-8894 ( 8858) [001] d..4 82315.682095: sched_waking: [email protected] pid=619 prio=112 target_cpu=002
36764          <idle>-0     (-----) [005] dnh2 82315.682099: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
36765          <idle>-0     (-----) [005] .n.1 82315.682101: cpu_idle: state=4294967295 cpu_id=5
36766          <idle>-0     (-----) [005] d..2 82315.682106: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
36767<...>-586 ( 586) [000] d..2 82315.682108: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
36768           <...>-27550 (-----) [007] .... 82315.682109: binder_transaction: transaction=1568958 dest_node=820 dest_proc=773 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
36769<...>-8894 ( 8858) [001] d..5 82315.682110: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=001
36770           <...>-27550 (-----) [007] .... 82315.682111: binder_transaction_alloc_buf: transaction=1568958 data_size=32 offsets_size=0
36771           <...>-27550 (-----) [007] ...2 82315.682113: binder_set_priority: proc=773 thread=13091 old=120 => new=110 desired=110
36772   sfEventThread-8882  ( 8858) [002] d..2 82315.682115: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
36773<...>-8894 ( 8858) [001] d..2 82315.682117: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
36774           <...>-27550 (-----) [007] d..4 82315.682121: sched_waking: comm=HwBinder:773_1 pid=13091 prio=110 target_cpu=001
36775          <idle>-0     (-----) [002] d..1 82315.682121: cpu_idle: state=0 cpu_id=2
36776 [email protected]   (  619) [001] .... 82315.682123: binder_transaction_received: transaction=1568955
36777           <...>-27550 (-----) [007] dn.5 82315.682132: sched_wakeup: comm=HwBinder:773_1 pid=13091 prio=110 target_cpu=007
36778 [email protected]   (  619) [001] ...1 82315.682147: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
36779           <...>-27550 (-----) [007] d..2 82315.682154: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:773_1 next_pid=13091 next_prio=110
36780 [email protected]   (  619) [001] ...1 82315.682157: tracing_mark_write: C|619|SetVsyncState |0
36781<...>-13091 ( 773) [007] d.h4 82315.682160: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
36782  surfaceflinger-8858  ( 8858) [003] d..2 82315.682161: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
36783          <idle>-0     (-----) [003] d..1 82315.682168: cpu_idle: state=0 cpu_id=3
36784 [email protected]   (  619) [001] ...1 82315.682171: tracing_mark_write: E|619
36785<...>-13091 ( 773) [007] d.h5 82315.682172: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=006
36786<...>-13091 ( 773) [007] .... 82315.682176: binder_transaction_received: transaction=1568958
36787          <idle>-0     (-----) [006] .n.1 82315.682176: cpu_idle: state=4294967295 cpu_id=6
36788 [email protected]   (  619) [001] .... 82315.682177: binder_transaction: transaction=1568959 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
36789 [email protected]   (  619) [001] .... 82315.682179: binder_transaction_alloc_buf: transaction=1568959 data_size=8 offsets_size=0
36790 [email protected]   (  619) [001] d..2 82315.682181: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
36791          <idle>-0     (-----) [006] d..2 82315.682181: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
36792 [email protected]   (  619) [001] dn.3 82315.682188: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
36793<...>-9005 ( 8943) [005] .... 82315.682191: binder_transaction: transaction=1568960 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
36794 [email protected]   (  619) [001] d..2 82315.682192: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
36795<...>-9005 ( 8943) [005] .... 82315.682193: binder_transaction_alloc_buf: transaction=1568960 data_size=80 offsets_size=0
36796<...>-9005 ( 8943) [005] d..4 82315.682195: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
36797<...>-13091 ( 773) [007] ...1 82315.682196: tracing_mark_write: B|773|HIDL::IBase::interfaceChain::server
36798<...>-8894 ( 8858) [001] .... 82315.682196: binder_transaction_received: transaction=1568959
36799         sugov:4-577   (  577) [006] .... 82315.682202: clk_set_rate: perfcl_clk 2649600000
36800         sugov:4-577   (  577) [006] .... 82315.682204: clk_set_rate: cpu7_perfcl_clk 2553600000
36801         sugov:4-577   (  577) [006] .... 82315.682209: clk_set_rate: cpu6_perfcl_clk 2553600000
36802<...>-8894 ( 8858) [001] d..1 82315.682210: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
36803<...>-13091 ( 773) [007] ...1 82315.682211: tracing_mark_write: E|773
36804         sugov:4-577   (  577) [006] .... 82315.682213: clk_set_rate: cpu5_perfcl_clk 2553600000
36805<...>-13091 ( 773) [007] .... 82315.682215: binder_transaction: transaction=1568961 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36806<...>-13091 ( 773) [007] .... 82315.682216: binder_transaction_alloc_buf: transaction=1568961 data_size=164 offsets_size=32
36807<...>-13091 ( 773) [007] .... 82315.682218: binder_set_priority: proc=773 thread=13091 old=110 => new=120 desired=120
36808         sugov:4-577   (  577) [006] .... 82315.682218: clk_set_rate: cpu4_perfcl_clk 2649600000
36809         sugov:4-577   (  577) [006] .... 82315.682223: cpu_frequency: state=2649600 cpu_id=4
36810<...>-9006 ( 8943) [004] .... 82315.682231: binder_transaction: transaction=1568962 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
36811<...>-9006 ( 8943) [004] .... 82315.682232: binder_transaction_alloc_buf: transaction=1568962 data_size=80 offsets_size=0
36812          <idle>-0     (-----) [002] dnh2 82315.682233: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
36813         sugov:4-577   (  577) [006] .... 82315.682233: cpu_frequency: state=2649600 cpu_id=5
36814<...>-8894 ( 8858) [001] d..2 82315.682233: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
36815         sugov:4-577   (  577) [006] .... 82315.682234: cpu_frequency: state=2649600 cpu_id=6
36816<...>-9006 ( 8943) [004] d..4 82315.682234: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
36817         sugov:4-577   (  577) [006] .... 82315.682235: cpu_frequency: state=2649600 cpu_id=7
36818          <idle>-0     (-----) [002] .n.1 82315.682236: cpu_idle: state=4294967295 cpu_id=2
36819          <idle>-0     (-----) [003] .n.1 82315.682238: cpu_idle: state=4294967295 cpu_id=3
36820<...>-8894 ( 8858) [001] d..2 82315.682241: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
36821          <idle>-0     (-----) [002] d..2 82315.682242: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
36822<...>-13091 ( 773) [007] d..2 82315.682243: sched_switch: prev_comm=HwBinder:773_1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36823<...>-9006 ( 8943) [004] d..5 82315.682243: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
36824 [email protected]   (  619) [001] .... 82315.682244: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
36825          <idle>-0     (-----) [003] d..2 82315.682244: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
36826           <...>-27550 (-----) [007] .... 82315.682246: binder_transaction_received: transaction=1568961
36827         sugov:4-577   (  577) [006] d..2 82315.682246: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
36828<...>-8951 ( 8858) [006] .... 82315.682252: binder_transaction_received: transaction=1568962
36829<...>-13083 ( 8858) [002] .... 82315.682253: binder_transaction_received: transaction=1568960
36830           <...>-27550 (-----) [007] ...1 82315.682263: tracing_mark_write: B|27550|HIDL::IBase::interfaceChain::client
36831           <...>-27550 (-----) [007] ...1 82315.682265: tracing_mark_write: E|27550
36832           <...>-27550 (-----) [007] .... 82315.682270: binder_transaction: transaction=1568963 dest_node=820 dest_proc=773 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
36833           <...>-27550 (-----) [007] .... 82315.682271: binder_transaction_alloc_buf: transaction=1568963 data_size=32 offsets_size=0
36834           <...>-27550 (-----) [007] ...2 82315.682272: binder_set_priority: proc=773 thread=13091 old=120 => new=110 desired=110
36835<...>-13083 ( 8858) [002] d..1 82315.682272: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
36836           <...>-27550 (-----) [007] d..4 82315.682272: sched_waking: comm=HwBinder:773_1 pid=13091 prio=110 target_cpu=007
36837 [email protected]   (  619) [001] d..2 82315.682275: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
36838           <...>-27550 (-----) [007] dn.5 82315.682277: sched_wakeup: comm=HwBinder:773_1 pid=13091 prio=110 target_cpu=007
36839<...>-8951 ( 8858) [006] d..2 82315.682277: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
36840           <...>-27550 (-----) [007] d..2 82315.682280: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:773_1 next_pid=13091 next_prio=110
36841          <idle>-0     (-----) [006] d..1 82315.682281: cpu_idle: state=0 cpu_id=6
36842<...>-13091 ( 773) [007] .... 82315.682283: binder_transaction_received: transaction=1568963
36843<...>-13083 ( 8858) [002] d..2 82315.682287: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
36844<...>-13091 ( 773) [007] ...1 82315.682288: tracing_mark_write: B|773|HIDL::IBase::interfaceChain::server
36845          <idle>-0     (-----) [001] d..2 82315.682291: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
36846<...>-13091 ( 773) [007] ...1 82315.682292: tracing_mark_write: E|773
36847<...>-13083 ( 8858) [002] d..1 82315.682294: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
36848<...>-13091 ( 773) [007] .... 82315.682294: binder_transaction: transaction=1568964 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36849<...>-13091 ( 773) [007] .... 82315.682295: binder_transaction_alloc_buf: transaction=1568964 data_size=164 offsets_size=32
36850<...>-13091 ( 773) [007] .... 82315.682296: binder_set_priority: proc=773 thread=13091 old=110 => new=120 desired=120
36851          <idle>-0     (-----) [006] dnh2 82315.682307: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
36852<...>-13091 ( 773) [007] d..2 82315.682308: sched_switch: prev_comm=HwBinder:773_1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36853          <idle>-0     (-----) [006] .n.1 82315.682309: cpu_idle: state=4294967295 cpu_id=6
36854           <...>-27550 (-----) [007] .... 82315.682311: binder_transaction_received: transaction=1568964
36855          <idle>-0     (-----) [006] d..2 82315.682312: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
36856<...>-8951 ( 8858) [006] d..1 82315.682314: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
36857<...>-9105 ( 9105) [000] .... 82315.682316: binder_transaction: transaction=1568965 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
36858<...>-9105 ( 9105) [000] .... 82315.682319: binder_transaction_alloc_buf: transaction=1568965 data_size=80 offsets_size=0
36859           <...>-27550 (-----) [007] ...1 82315.682319: tracing_mark_write: B|27550|[NN_LI_PI]getCapabilities
36860<...>-13083 ( 8858) [002] d..2 82315.682320: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
36861   sfEventThread-8882  ( 8858) [001] d..2 82315.682321: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
36862<...>-9105 ( 9105) [000] d..4 82315.682321: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
36863           <...>-27550 (-----) [007] ...1 82315.682322: tracing_mark_write: B|27550|HIDL::IDevice::getCapabilities::client
36864           <...>-27550 (-----) [007] ...1 82315.682323: tracing_mark_write: E|27550
36865          <idle>-0     (-----) [002] d..1 82315.682324: cpu_idle: state=0 cpu_id=2
36866          <idle>-0     (-----) [001] d..1 82315.682326: cpu_idle: state=0 cpu_id=1
36867           <...>-27550 (-----) [007] .... 82315.682327: binder_transaction: transaction=1568966 dest_node=820 dest_proc=773 dest_thread=0 reply=0 flags=0x10 code=0x1
36868           <...>-27550 (-----) [007] .... 82315.682328: binder_transaction_alloc_buf: transaction=1568966 data_size=48 offsets_size=0
36869           <...>-27550 (-----) [007] ...2 82315.682329: binder_set_priority: proc=773 thread=13091 old=120 => new=110 desired=110
36870           <...>-27550 (-----) [007] d..4 82315.682329: sched_waking: comm=HwBinder:773_1 pid=13091 prio=110 target_cpu=007
36871           <...>-27550 (-----) [007] dn.5 82315.682333: sched_wakeup: comm=HwBinder:773_1 pid=13091 prio=110 target_cpu=007
36872<...>-9105 ( 9105) [000] d..5 82315.682333: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
36873          <idle>-0     (-----) [001] dnh2 82315.682334: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
36874           <...>-27550 (-----) [007] d..2 82315.682335: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:773_1 next_pid=13091 next_prio=110
36875          <idle>-0     (-----) [002] .n.1 82315.682338: cpu_idle: state=4294967295 cpu_id=2
36876<...>-13091 ( 773) [007] .... 82315.682338: binder_transaction_received: transaction=1568966
36877          <idle>-0     (-----) [001] .n.1 82315.682338: cpu_idle: state=4294967295 cpu_id=1
36878<...>-8951 ( 8858) [006] d..2 82315.682342: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
36879          <idle>-0     (-----) [002] d..2 82315.682343: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
36880          <idle>-0     (-----) [001] d..2 82315.682344: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
36881<...>-13091 ( 773) [007] ...1 82315.682344: tracing_mark_write: B|773|HIDL::IDevice::getCapabilities::server
36882          <idle>-0     (-----) [006] d..1 82315.682345: cpu_idle: state=0 cpu_id=6
36883<...>-13083 ( 8858) [002] .... 82315.682346: binder_transaction_received: transaction=1568965
36884<...>-13091 ( 773) [007] ...1 82315.682347: tracing_mark_write: B|773|getCapabilities
36885<...>-13091 ( 773) [007] ...1 82315.682355: tracing_mark_write: E|773
36886<...>-9105 ( 9105) [000] d..3 82315.682355: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
36887<...>-13083 ( 8858) [002] d..1 82315.682356: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
36888<...>-13091 ( 773) [007] .... 82315.682357: binder_transaction: transaction=1568967 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
36889<...>-13091 ( 773) [007] .... 82315.682358: binder_transaction_alloc_buf: transaction=1568967 data_size=48 offsets_size=8
36890<...>-13091 ( 773) [007] .... 82315.682359: binder_set_priority: proc=773 thread=13091 old=110 => new=120 desired=120
36891   sfEventThread-8882  ( 8858) [001] d..2 82315.682362: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
36892<...>-13091 ( 773) [007] ...1 82315.682365: tracing_mark_write: E|773
36893<...>-13083 ( 8858) [002] d..2 82315.682368: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
36894          <idle>-0     (-----) [006] dnh2 82315.682370: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
36895          <idle>-0     (-----) [001] d..2 82315.682371: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
36896<...>-13091 ( 773) [007] d..2 82315.682371: sched_switch: prev_comm=HwBinder:773_1 prev_pid=13091 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36897          <idle>-0     (-----) [006] .n.1 82315.682373: cpu_idle: state=4294967295 cpu_id=6
36898           <...>-27550 (-----) [007] .... 82315.682374: binder_transaction_received: transaction=1568967
36899          <idle>-0     (-----) [006] d..2 82315.682375: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
36900           <...>-27550 (-----) [007] ...1 82315.682383: tracing_mark_write: E|27550
36901<...>-13083 ( 8858) [002] d..2 82315.682389: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
36902    RenderThread-9436  ( 9105) [006] d..2 82315.682391: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
36903          <idle>-0     (-----) [002] d..1 82315.682393: cpu_idle: state=0 cpu_id=2
36904          <idle>-0     (-----) [006] d..1 82315.682394: cpu_idle: state=0 cpu_id=6
36905  appEventThread-8881  ( 8858) [001] d..2 82315.682395: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
36906<...>-9006 ( 8943) [004] .... 82315.682402: binder_transaction: transaction=1568968 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
36907          <idle>-0     (-----) [001] d..1 82315.682403: cpu_idle: state=0 cpu_id=1
36908<...>-9006 ( 8943) [004] .... 82315.682404: binder_transaction_alloc_buf: transaction=1568968 data_size=988 offsets_size=48
36909           <...>-27550 (-----) [007] ...1 82315.682404: tracing_mark_write: E|27550
36910<...>-9006 ( 8943) [004] ...2 82315.682414: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
36911<...>-9006 ( 8943) [004] d..4 82315.682415: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=002
36912<...>-9006 ( 8943) [004] d..5 82315.682426: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
36913           <...>-27550 (-----) [007] ...1 82315.682431: tracing_mark_write: B|27550|[NN_LR_PC]ANeuralNetworksCompilation_finish
36914<...>-9006 ( 8943) [004] d..2 82315.682446: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
36915<...>-13083 ( 8858) [004] .... 82315.682451: binder_transaction_received: transaction=1568968
36916           <...>-27550 (-----) [007] ...1 82315.682451: tracing_mark_write: B|27550|[NN_LI_PC]getSupportedOperations_1_1
36917           <...>-27550 (-----) [007] ...1 82315.682453: tracing_mark_write: B|27550|HIDL::IDevice::getSupportedOperations_1_1::client
36918           <...>-27550 (-----) [007] ...1 82315.682455: tracing_mark_write: E|27550
36919<...>-9105 ( 9105) [000] d..3 82315.682479: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
36920          <idle>-0     (-----) [006] dnh2 82315.682492: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
36921<...>-13083 ( 8858) [004] d..1 82315.682494: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
36922          <idle>-0     (-----) [006] .n.1 82315.682494: cpu_idle: state=4294967295 cpu_id=6
36923<...>-9005 ( 8943) [005] .... 82315.682495: binder_transaction: transaction=1568969 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
36924<...>-9005 ( 8943) [005] .... 82315.682496: binder_transaction_alloc_buf: transaction=1568969 data_size=988 offsets_size=48
36925          <idle>-0     (-----) [006] d..2 82315.682498: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
36926           <...>-27550 (-----) [007] .... 82315.682498: binder_transaction: transaction=1568970 dest_node=855 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x6
36927           <...>-27550 (-----) [007] .... 82315.682500: binder_transaction_alloc_buf: transaction=1568970 data_size=4768 offsets_size=624
36928<...>-9105 ( 9105) [000] d..2 82315.682504: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36929<...>-9005 ( 8943) [005] ...2 82315.682504: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
36930<...>-9005 ( 8943) [005] d..4 82315.682505: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
36931          <idle>-0     (-----) [001] dnh2 82315.682506: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
36932          <idle>-0     (-----) [001] .n.1 82315.682510: cpu_idle: state=4294967295 cpu_id=1
36933<...>-9005 ( 8943) [005] dn.5 82315.682513: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
36934          <idle>-0     (-----) [000] d..1 82315.682515: cpu_idle: state=0 cpu_id=0
36935          <idle>-0     (-----) [001] d..2 82315.682515: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
36936<...>-13083 ( 8858) [004] .... 82315.682516: binder_transaction: transaction=1568971 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
36937<...>-9005 ( 8943) [005] d..2 82315.682517: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
36938<...>-13083 ( 8858) [004] .... 82315.682517: binder_transaction_alloc_buf: transaction=1568971 data_size=0 offsets_size=0
36939<...>-13083 ( 8858) [004] d..2 82315.682518: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
36940<...>-8951 ( 8858) [005] .... 82315.682521: binder_transaction_received: transaction=1568969
36941<...>-13083 ( 8858) [004] dn.3 82315.682522: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
36942<...>-13083 ( 8858) [004] d..2 82315.682524: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
36943<...>-9006 ( 8943) [004] .... 82315.682527: binder_transaction_received: transaction=1568971
36944   sfEventThread-8882  ( 8858) [001] d..2 82315.682534: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
36945          <idle>-0     (-----) [001] d..1 82315.682540: cpu_idle: state=0 cpu_id=1
36946           <...>-27550 (-----) [007] ...2 82315.682540: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
36947           <...>-27550 (-----) [007] d..4 82315.682541: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
36948           <...>-27550 (-----) [007] dn.5 82315.682546: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
36949           <...>-27550 (-----) [007] d..2 82315.682549: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
36950<...>-8951 ( 8858) [005] .... 82315.682551: binder_transaction: transaction=1568972 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
36951<...>-5340 ( 788) [007] .... 82315.682552: binder_transaction_received: transaction=1568970
36952    RenderThread-9436  ( 9105) [006] d..1 82315.682553: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
36953<...>-8951 ( 8858) [005] .... 82315.682553: binder_transaction_alloc_buf: transaction=1568972 data_size=0 offsets_size=0
36954<...>-8951 ( 8858) [005] .... 82315.682554: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
36955<...>-9006 ( 8943) [004] d..2 82315.682560: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
36956<...>-13083 ( 8858) [004] .... 82315.682563: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
36957          <idle>-0     (-----) [000] dnh2 82315.682567: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
36958<...>-5340 ( 788) [007] ...1 82315.682569: tracing_mark_write: B|788|HIDL::IDevice::getSupportedOperations_1_1::server
36959<...>-8951 ( 8858) [005] d..2 82315.682571: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
36960          <idle>-0     (-----) [000] .n.1 82315.682572: cpu_idle: state=4294967295 cpu_id=0
36961<...>-9005 ( 8943) [005] .... 82315.682575: binder_transaction_received: transaction=1568972
36962          <idle>-0     (-----) [000] d..2 82315.682578: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
36963    RenderThread-9436  ( 9105) [006] .... 82315.682583: binder_transaction: transaction=1568973 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
36964    RenderThread-9436  ( 9105) [006] .... 82315.682584: binder_transaction_alloc_buf: transaction=1568973 data_size=104 offsets_size=0
36965<...>-13083 ( 8858) [004] d..2 82315.682585: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
36966    RenderThread-9436  ( 9105) [006] d..4 82315.682586: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
36967          <idle>-0     (-----) [004] d..1 82315.682591: cpu_idle: state=0 cpu_id=4
36968    RenderThread-9436  ( 9105) [006] d..5 82315.682593: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
36969    RenderThread-9436  ( 9105) [006] d..2 82315.682597: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
36970<...>-13083 ( 8858) [006] .... 82315.682600: binder_transaction_received: transaction=1568973
36971<...>-9005 ( 8943) [005] d..2 82315.682618: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
36972<...>-9105 ( 9105) [000] d..2 82315.682620: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36973          <idle>-0     (-----) [005] d..1 82315.682624: cpu_idle: state=0 cpu_id=5
36974<...>-13083 ( 8858) [006] .... 82315.682624: binder_transaction: transaction=1568974 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
36975<...>-13083 ( 8858) [006] .... 82315.682625: binder_transaction_alloc_buf: transaction=1568974 data_size=52 offsets_size=8
36976          <idle>-0     (-----) [000] d..1 82315.682627: cpu_idle: state=0 cpu_id=0
36977<...>-13083 ( 8858) [006] d..2 82315.682628: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
36978<...>-13083 ( 8858) [006] d..3 82315.682632: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
36979<...>-13083 ( 8858) [006] d..2 82315.682640: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
36980    RenderThread-9436  ( 9105) [006] .... 82315.682643: binder_transaction_received: transaction=1568974
36981<...>-5340 ( 788) [007] d..2 82315.682683: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
36982<...>-5340 ( 788) [007] d..2 82315.682695: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
36983          <idle>-0     (-----) [000] dnh2 82315.682700: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
36984          <idle>-0     (-----) [000] .n.1 82315.682704: cpu_idle: state=4294967295 cpu_id=0
36985           <...>-27550 (-----) [007] d..2 82315.682704: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
36986          <idle>-0     (-----) [000] d..2 82315.682710: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
36987          <idle>-0     (-----) [007] d..1 82315.682710: cpu_idle: state=0 cpu_id=7
36988<...>-87 ( 87) [000] d..2 82315.682735: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
36989          <idle>-0     (-----) [000] d..1 82315.682741: cpu_idle: state=0 cpu_id=0
36990          <idle>-0     (-----) [002] d.h4 82315.683136: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
36991          <idle>-0     (-----) [002] dnh5 82315.683143: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
36992          <idle>-0     (-----) [002] .n.1 82315.683149: cpu_idle: state=4294967295 cpu_id=2
36993          <idle>-0     (-----) [002] d..2 82315.683153: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
36994<...>-86 ( 86) [002] d..2 82315.683175: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
36995          <idle>-0     (-----) [002] d..1 82315.683179: cpu_idle: state=0 cpu_id=2
36996    RenderThread-9436  ( 9105) [006] d..2 82315.683345: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
36997          <idle>-0     (-----) [006] d..1 82315.683350: cpu_idle: state=0 cpu_id=6
36998          <idle>-0     (-----) [002] d.h4 82315.683355: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
36999          <idle>-0     (-----) [007] dnh2 82315.683368: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37000          <idle>-0     (-----) [007] .n.1 82315.683370: cpu_idle: state=4294967295 cpu_id=7
37001          <idle>-0     (-----) [007] d..2 82315.683374: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37002          <idle>-0     (-----) [002] ...1 82315.683379: cpu_idle: state=4294967295 cpu_id=2
37003          <idle>-0     (-----) [002] d..1 82315.683381: cpu_idle: state=0 cpu_id=2
37004<...>-5340 ( 788) [007] ...1 82315.683439: tracing_mark_write: E|788
37005<...>-5340 ( 788) [007] .... 82315.683442: binder_transaction: transaction=1568975 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
37006<...>-5340 ( 788) [007] .... 82315.683443: binder_transaction_alloc_buf: transaction=1568975 data_size=88 offsets_size=16
37007          <idle>-0     (-----) [006] d.h2 82315.683444: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
37008<...>-5340 ( 788) [007] d..2 82315.683445: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
37009          <idle>-0     (-----) [006] d.h3 82315.683448: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
37010<...>-5340 ( 788) [007] d..3 82315.683450: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
37011          <idle>-0     (-----) [006] dnh3 82315.683450: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
37012<...>-5340 ( 788) [007] .... 82315.683450: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
37013          <idle>-0     (-----) [006] .n.1 82315.683453: cpu_idle: state=4294967295 cpu_id=6
37014          <idle>-0     (-----) [006] d..2 82315.683457: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
37015  surfaceflinger-8858  ( 8858) [003] ...1 82315.683457: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
37016<...>-5340 ( 788) [007] d..1 82315.683460: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
37017  surfaceflinger-8858  ( 8858) [003] ...1 82315.683461: tracing_mark_write: E|8858
37018          <idle>-0     (-----) [000] dnh2 82315.683480: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
37019          <idle>-0     (-----) [000] .n.1 82315.683484: cpu_idle: state=4294967295 cpu_id=0
37020          <idle>-0     (-----) [000] d..2 82315.683489: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
37021  surfaceflinger-8858  ( 8858) [003] .... 82315.683492: binder_transaction: transaction=1568976 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
37022  surfaceflinger-8858  ( 8858) [003] .... 82315.683495: binder_transaction_alloc_buf: transaction=1568976 data_size=620 offsets_size=112
37023<...>-5340 ( 788) [007] d..2 82315.683503: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
37024           <...>-27550 (-----) [007] .... 82315.683507: binder_transaction_received: transaction=1568975
37025  surfaceflinger-8858  ( 8858) [003] ...2 82315.683512: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
37026  surfaceflinger-8858  ( 8858) [003] d..4 82315.683515: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
37027           <...>-27550 (-----) [007] ...1 82315.683518: tracing_mark_write: E|27550
37028 neuralnetworks@-13088 (  788) [000] d..2 82315.683520: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37029  surfaceflinger-8858  ( 8858) [003] d..5 82315.683526: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
37030          <idle>-0     (-----) [000] d..1 82315.683527: cpu_idle: state=0 cpu_id=0
37031          <idle>-0     (-----) [001] .n.1 82315.683530: cpu_idle: state=4294967295 cpu_id=1
37032    RenderThread-9436  ( 9105) [006] .... 82315.683535: binder_transaction: transaction=1568977 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
37033          <idle>-0     (-----) [001] d..2 82315.683536: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
37034    RenderThread-9436  ( 9105) [006] .... 82315.683536: binder_transaction_alloc_buf: transaction=1568977 data_size=192 offsets_size=8
37035    RenderThread-9436  ( 9105) [006] d..4 82315.683539: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
37036 [email protected]   (  619) [001] .... 82315.683540: binder_transaction_received: transaction=1568976
37037    RenderThread-9436  ( 9105) [006] d..5 82315.683542: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
37038  surfaceflinger-8858  ( 8858) [003] d..2 82315.683542: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37039    RenderThread-9436  ( 9105) [006] d..2 82315.683546: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
37040          <idle>-0     (-----) [000] d.h3 82315.683549: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
37041<...>-13083 ( 8858) [006] .... 82315.683550: binder_transaction_received: transaction=1568977
37042          <idle>-0     (-----) [003] d..1 82315.683551: cpu_idle: state=0 cpu_id=3
37043           <...>-27550 (-----) [007] ...1 82315.683553: tracing_mark_write: B|27550|[NN_LI_PC]getSupportedOperations_1_0
37044           <...>-27550 (-----) [007] ...1 82315.683556: tracing_mark_write: B|27550|HIDL::IDevice::getSupportedOperations::client
37045           <...>-27550 (-----) [007] ...1 82315.683557: tracing_mark_write: E|27550
37046 [email protected]   (  619) [001] ...1 82315.683560: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
37047          <idle>-0     (-----) [000] d.h4 82315.683561: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
37048          <idle>-0     (-----) [003] .n.1 82315.683566: cpu_idle: state=4294967295 cpu_id=3
37049          <idle>-0     (-----) [000] ...1 82315.683571: cpu_idle: state=4294967295 cpu_id=0
37050          <idle>-0     (-----) [003] d..2 82315.683572: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
37051           <...>-27550 (-----) [007] .... 82315.683572: binder_transaction: transaction=1568978 dest_node=820 dest_proc=773 dest_thread=0 reply=0 flags=0x10 code=0x2
37052          <idle>-0     (-----) [000] d..1 82315.683573: cpu_idle: state=0 cpu_id=0
37053           <...>-27550 (-----) [007] .... 82315.683573: binder_transaction_alloc_buf: transaction=1568978 data_size=4768 offsets_size=624
37054<...>-13083 ( 8858) [006] .... 82315.683591: binder_transaction: transaction=1568979 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
37055<...>-13083 ( 8858) [006] .... 82315.683592: binder_transaction_alloc_buf: transaction=1568979 data_size=68 offsets_size=0
37056<...>-13083 ( 8858) [006] d..2 82315.683593: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
37057<...>-13083 ( 8858) [006] d..3 82315.683597: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
37058<...>-13083 ( 8858) [006] d..2 82315.683606: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
37059    RenderThread-9436  ( 9105) [006] .... 82315.683608: binder_transaction_received: transaction=1568979
37060 kgsl_worker_thr-258   (  258) [003] d..2 82315.683614: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
37061           <...>-27550 (-----) [007] d..2 82315.683622: sched_waking: comm=kauditd pid=583 prio=120 target_cpu=006
37062    RenderThread-9436  ( 9105) [006] d..2 82315.683633: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
37063          <idle>-0     (-----) [006] d..1 82315.683638: cpu_idle: state=0 cpu_id=6
37064 kgsl_worker_thr-258   (  258) [003] d..3 82315.683638: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
37065 kgsl_worker_thr-258   (  258) [003] d.h2 82315.683666: sched_wakeup: comm=kauditd pid=583 prio=120 target_cpu=003
37066 [email protected]   (  619) [001] ...1 82315.683669: tracing_mark_write: B|619|HWCSession::PresentDisplay::
37067 kgsl_worker_thr-258   (  258) [003] d..2 82315.683676: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kauditd next_pid=583 next_prio=120
37068<...>-583 ( 583) [003] d..2 82315.683695: sched_waking: comm=logd.auditd pid=590 prio=130 target_cpu=001
37069<...>-583 ( 583) [003] d..3 82315.683718: sched_wakeup: comm=logd.auditd pid=590 prio=130 target_cpu=000
37070          <idle>-0     (-----) [000] .n.1 82315.683723: cpu_idle: state=4294967295 cpu_id=0
37071<...>-583 ( 583) [003] d..2 82315.683728: sched_switch: prev_comm=kauditd prev_pid=583 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
37072          <idle>-0     (-----) [000] d..2 82315.683729: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.auditd next_pid=590 next_prio=130
37073           <...>-27550 (-----) [007] d..2 82315.683747: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
37074<...>-590 ( 571) [000] d.h1 82315.683767: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
37075           <...>-27550 (-----) [007] ...1 82315.683771: tracing_mark_write: E|27550
37076           <...>-27550 (-----) [007] ...1 82315.683813: tracing_mark_write: B|27550|[NN_LI_PC]prepareModel
37077           <...>-27550 (-----) [007] ...1 82315.683817: tracing_mark_write: B|27550|HIDL::IDevice::prepareModel_1_1::client
37078           <...>-27550 (-----) [007] ...1 82315.683818: tracing_mark_write: E|27550
37079          <idle>-0     (-----) [006] ...1 82315.683829: cpu_idle: state=4294967295 cpu_id=6
37080          <idle>-0     (-----) [006] d..1 82315.683830: cpu_idle: state=0 cpu_id=6
37081<...>-590 ( 571) [000] d..1 82315.683844: sched_waking: comm=logd.daemon pid=579 prio=130 target_cpu=000
37082<...>-590 ( 571) [000] d..2 82315.683856: sched_wakeup: comm=logd.daemon pid=579 prio=130 target_cpu=000
37083<...>-590 ( 571) [000] d..2 82315.683864: sched_switch: prev_comm=logd.auditd prev_pid=590 prev_prio=130 prev_state=S ==> next_comm=logd.daemon next_pid=579 next_prio=130
37084          <idle>-0     (-----) [004] .n.1 82315.683928: cpu_idle: state=4294967295 cpu_id=4
37085           <...>-27550 (-----) [007] .... 82315.683930: binder_transaction: transaction=1568980 dest_node=855 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x7
37086           <...>-27550 (-----) [007] .... 82315.683931: binder_transaction_alloc_buf: transaction=1568980 data_size=4796 offsets_size=632
37087          <idle>-0     (-----) [004] d..2 82315.683932: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27571 next_prio=110
37088           <...>-27550 (-----) [007] ...2 82315.683941: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
37089           <...>-27550 (-----) [007] d..4 82315.683942: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37090           <...>-27550 (-----) [007] dn.5 82315.683946: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37091           <...>-27550 (-----) [007] d..2 82315.683949: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37092<...>-5340 ( 788) [007] .... 82315.683953: binder_transaction_received: transaction=1568980
37093<...>-5340 ( 788) [007] ...1 82315.683985: tracing_mark_write: B|788|HIDL::IDevice::prepareModel_1_1::server
37094  kworker/u16:15-1311  ( 1311) [003] d..2 82315.684013: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
37095          <idle>-0     (-----) [003] d..1 82315.684021: cpu_idle: state=0 cpu_id=3
37096 [email protected]   (  619) [001] d.s1 82315.684037: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
37097 [email protected]   (  619) [001] d.s2 82315.684048: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
37098<...>-5340 ( 788) [007] d..2 82315.684122: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
37099<...>-5340 ( 788) [007] d..2 82315.684134: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
37100<...>-579 ( 571) [000] dnh1 82315.684138: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
37101           <...>-27550 (-----) [007] d..2 82315.684142: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37102<...>-579 ( 571) [000] d..2 82315.684145: sched_switch: prev_comm=logd.daemon prev_pid=579 prev_prio=130 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37103          <idle>-0     (-----) [007] d..1 82315.684147: cpu_idle: state=0 cpu_id=7
37104<...>-87 ( 87) [000] d..2 82315.684164: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=logd.daemon next_pid=579 next_prio=130
37105           <...>-27571 (-----) [004] .... 82315.684183: binder_set_priority: proc=27550 thread=27571 old=120 => new=110 desired=110
37106           <...>-27571 (-----) [004] d..2 82315.684197: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
37107          <idle>-0     (-----) [004] d..1 82315.684203: cpu_idle: state=0 cpu_id=4
37108 [email protected]   (  619) [001] ...1 82315.684227: tracing_mark_write: B|619|HWDeviceDRM::Validate::
37109<...>-579 ( 571) [000] d..1 82315.684497: sched_waking: comm=logd.auditd pid=590 prio=130 target_cpu=000
37110<...>-579 ( 571) [000] d..2 82315.684506: sched_wakeup: comm=logd.auditd pid=590 prio=130 target_cpu=000
37111<...>-579 ( 571) [000] d..2 82315.684513: sched_switch: prev_comm=logd.daemon prev_pid=579 prev_prio=130 prev_state=S ==> next_comm=logd.auditd next_pid=590 next_prio=130
37112          <idle>-0     (-----) [002] d.h4 82315.684559: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37113          <idle>-0     (-----) [002] dnh5 82315.684565: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37114          <idle>-0     (-----) [002] .n.1 82315.684569: cpu_idle: state=4294967295 cpu_id=2
37115          <idle>-0     (-----) [002] d..2 82315.684574: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37116<...>-86 ( 86) [002] d..2 82315.684602: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
37117<...>-590 ( 571) [000] d..2 82315.684630: sched_switch: prev_comm=logd.auditd prev_pid=590 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37118          <idle>-0     (-----) [000] d..1 82315.684636: cpu_idle: state=0 cpu_id=0
37119 [email protected]   (  619) [001] ...1 82315.684664: tracing_mark_write: E|619
37120<...>-581 ( 571) [002] d..2 82315.684682: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37121          <idle>-0     (-----) [002] d..1 82315.684688: cpu_idle: state=0 cpu_id=2
37122 [email protected]   (  619) [001] ...1 82315.684767: tracing_mark_write: B|619|HWDeviceDRM::Commit::
37123 [email protected]   (  619) [001] ...1 82315.684773: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
37124 [email protected]   (  619) [001] d..2 82315.685080: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
37125 [email protected]   (  619) [001] d..3 82315.685094: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
37126          <idle>-0     (-----) [003] .n.1 82315.685099: cpu_idle: state=4294967295 cpu_id=3
37127          <idle>-0     (-----) [003] d..2 82315.685105: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
37128          <idle>-0     (-----) [000] d.h3 82315.685115: sched_waking: comm=logd.klogd pid=589 prio=130 target_cpu=001
37129          <idle>-0     (-----) [002] d.s2 82315.685128: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
37130          <idle>-0     (-----) [000] dnh4 82315.685131: sched_wakeup: comm=logd.klogd pid=589 prio=130 target_cpu=000
37131          <idle>-0     (-----) [002] dns3 82315.685139: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
37132          <idle>-0     (-----) [007] ...1 82315.685144: cpu_idle: state=4294967295 cpu_id=7
37133          <idle>-0     (-----) [007] d..1 82315.685146: cpu_idle: state=0 cpu_id=7
37134          <idle>-0     (-----) [002] .n.1 82315.685147: cpu_idle: state=4294967295 cpu_id=2
37135          <idle>-0     (-----) [000] .n.1 82315.685149: cpu_idle: state=4294967295 cpu_id=0
37136          <idle>-0     (-----) [002] d..2 82315.685153: 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
37137          <idle>-0     (-----) [000] d..2 82315.685154: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.klogd next_pid=589 next_prio=130
37138     rcu_preempt-7     (    7) [002] d..2 82315.685160: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=007
37139 [email protected]   (  619) [001] ...1 82315.685189: tracing_mark_write: E|619
37140 [email protected]   (  619) [001] ...1 82315.685192: tracing_mark_write: E|619
37141     rcu_preempt-7     (    7) [002] d..3 82315.685192: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
37142     rcu_preempt-7     (    7) [002] d..2 82315.685220: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=007
37143 [email protected]   (  619) [001] ...1 82315.685227: tracing_mark_write: E|619
37144     rcu_preempt-7     (    7) [002] d..3 82315.685244: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
37145 [email protected]   (  619) [001] ...1 82315.685258: tracing_mark_write: E|619
37146 [email protected]   (  619) [001] .... 82315.685266: binder_transaction: transaction=1568983 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
37147 [email protected]   (  619) [001] .... 82315.685269: binder_transaction_alloc_buf: transaction=1568983 data_size=736 offsets_size=144
37148<...>-589 ( 571) [000] d..2 82315.685271: sched_switch: prev_comm=logd.klogd prev_pid=589 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37149     rcu_preempt-7     (    7) [002] d..2 82315.685274: 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
37150         rcuop/4-45    (   45) [002] d..2 82315.685279: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=006
37151          <idle>-0     (-----) [000] d..1 82315.685279: cpu_idle: state=0 cpu_id=0
37152 [email protected]   (  619) [001] d..2 82315.685281: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
37153 [email protected]   (  619) [001] d..3 82315.685297: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
37154 [email protected]   (  619) [001] .... 82315.685299: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
37155          <idle>-0     (-----) [000] .n.1 82315.685302: cpu_idle: state=4294967295 cpu_id=0
37156          <idle>-0     (-----) [000] d..2 82315.685307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
37157         rcuop/4-45    (   45) [002] d..3 82315.685307: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=002
37158  surfaceflinger-8858  ( 8858) [000] .... 82315.685313: binder_transaction_received: transaction=1568983
37159         rcuop/4-45    (   45) [002] d.h4 82315.685322: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37160          <idle>-0     (-----) [007] dnh2 82315.685334: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37161          <idle>-0     (-----) [007] .n.1 82315.685336: cpu_idle: state=4294967295 cpu_id=7
37162          <idle>-0     (-----) [007] d..2 82315.685339: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37163 [email protected]   (  619) [001] d..2 82315.685342: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
37164<...>-5340 ( 788) [007] d..2 82315.685354: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
37165     ksoftirqd/1-18    (   18) [001] d.s2 82315.685354: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
37166<...>-5340 ( 788) [007] d..2 82315.685380: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37167     ksoftirqd/1-18    (   18) [001] d.s3 82315.685383: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
37168          <idle>-0     (-----) [007] d..1 82315.685384: cpu_idle: state=0 cpu_id=7
37169     ksoftirqd/1-18    (   18) [001] d.s3 82315.685387: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
37170     ksoftirqd/1-18    (   18) [001] d.H2 82315.685392: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37171     ksoftirqd/1-18    (   18) [001] d..2 82315.685400: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37172<...>-87 ( 87) [001] d..2 82315.685417: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
37173  kworker/u16:15-1311  ( 1311) [001] d..2 82315.685439: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37174          <idle>-0     (-----) [001] d..1 82315.685448: cpu_idle: state=0 cpu_id=1
37175  surfaceflinger-8858  ( 8858) [000] d..2 82315.685633: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37176          <idle>-0     (-----) [000] d..1 82315.685643: cpu_idle: state=0 cpu_id=0
37177         rcuop/4-45    (   45) [002] d..2 82315.686119: 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
37178         rcuop/6-61    (   61) [002] d..2 82315.686124: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=006
37179         rcuop/6-61    (   61) [002] d..3 82315.686156: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
37180         rcuop/6-61    (   61) [002] d..2 82315.686200: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
37181         rcuop/5-53    (   53) [002] d..2 82315.686215: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
37182<...>-69 ( 69) [002] d.h3 82315.686257: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37183<...>-69 ( 69) [002] d.h4 82315.686266: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37184<...>-69 ( 69) [002] d..2 82315.686284: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37185<...>-86 ( 86) [002] d..2 82315.686304: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37186          <idle>-0     (-----) [002] d..1 82315.686314: cpu_idle: state=0 cpu_id=2
37187          <idle>-0     (-----) [002] d.h4 82315.686478: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37188          <idle>-0     (-----) [007] dnh2 82315.686491: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37189          <idle>-0     (-----) [007] .n.1 82315.686493: cpu_idle: state=4294967295 cpu_id=7
37190          <idle>-0     (-----) [007] d..2 82315.686496: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37191          <idle>-0     (-----) [002] ...1 82315.686501: cpu_idle: state=4294967295 cpu_id=2
37192          <idle>-0     (-----) [002] d..1 82315.686503: cpu_idle: state=0 cpu_id=2
37193<...>-5340 ( 788) [007] d..2 82315.686508: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37194<...>-5340 ( 788) [007] d..2 82315.686518: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37195          <idle>-0     (-----) [007] d..1 82315.686520: cpu_idle: state=0 cpu_id=7
37196          <idle>-0     (-----) [001] dnh2 82315.686522: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37197          <idle>-0     (-----) [001] .n.1 82315.686526: cpu_idle: state=4294967295 cpu_id=1
37198          <idle>-0     (-----) [001] d..2 82315.686533: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37199<...>-87 ( 87) [001] d..2 82315.686553: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37200          <idle>-0     (-----) [001] d..1 82315.686560: cpu_idle: state=0 cpu_id=1
37201          <idle>-0     (-----) [002] d.h4 82315.686581: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37202          <idle>-0     (-----) [002] dnh5 82315.686586: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37203          <idle>-0     (-----) [002] .n.1 82315.686591: cpu_idle: state=4294967295 cpu_id=2
37204          <idle>-0     (-----) [002] d..2 82315.686597: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37205<...>-86 ( 86) [002] d..2 82315.686614: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37206          <idle>-0     (-----) [002] d..1 82315.686620: cpu_idle: state=0 cpu_id=2
37207          <idle>-0     (-----) [002] d.h4 82315.686771: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37208          <idle>-0     (-----) [007] dnh2 82315.686782: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37209          <idle>-0     (-----) [007] .n.1 82315.686784: cpu_idle: state=4294967295 cpu_id=7
37210          <idle>-0     (-----) [007] d..2 82315.686787: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37211          <idle>-0     (-----) [002] ...1 82315.686792: cpu_idle: state=4294967295 cpu_id=2
37212          <idle>-0     (-----) [002] d..1 82315.686794: cpu_idle: state=0 cpu_id=2
37213<...>-5340 ( 788) [007] d..2 82315.686802: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37214<...>-5340 ( 788) [007] d..2 82315.686811: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37215          <idle>-0     (-----) [007] d..1 82315.686814: cpu_idle: state=0 cpu_id=7
37216          <idle>-0     (-----) [001] dnh2 82315.686815: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37217          <idle>-0     (-----) [001] .n.1 82315.686818: cpu_idle: state=4294967295 cpu_id=1
37218          <idle>-0     (-----) [001] d..2 82315.686824: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37219<...>-87 ( 87) [001] d..2 82315.686843: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37220          <idle>-0     (-----) [001] d..1 82315.686849: cpu_idle: state=0 cpu_id=1
37221          <idle>-0     (-----) [002] d.h4 82315.686870: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37222          <idle>-0     (-----) [002] dnh5 82315.686875: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37223          <idle>-0     (-----) [002] .n.1 82315.686879: cpu_idle: state=4294967295 cpu_id=2
37224          <idle>-0     (-----) [002] d..2 82315.686885: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37225<...>-86 ( 86) [002] d..2 82315.686902: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37226          <idle>-0     (-----) [002] d..1 82315.686907: cpu_idle: state=0 cpu_id=2
37227          <idle>-0     (-----) [000] ...1 82315.686925: cpu_idle: state=4294967295 cpu_id=0
37228          <idle>-0     (-----) [000] d..1 82315.686928: cpu_idle: state=0 cpu_id=0
37229 crtc_commit:111-321   (  321) [003] d..2 82315.686937: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
37230          <idle>-0     (-----) [003] d..1 82315.686943: cpu_idle: state=0 cpu_id=3
37231          <idle>-0     (-----) [002] d.h4 82315.687059: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37232          <idle>-0     (-----) [007] dnh2 82315.687071: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37233          <idle>-0     (-----) [007] .n.1 82315.687073: cpu_idle: state=4294967295 cpu_id=7
37234          <idle>-0     (-----) [007] d..2 82315.687075: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37235          <idle>-0     (-----) [002] ...1 82315.687081: cpu_idle: state=4294967295 cpu_id=2
37236          <idle>-0     (-----) [002] d..1 82315.687083: cpu_idle: state=0 cpu_id=2
37237<...>-5340 ( 788) [007] d..2 82315.687085: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37238<...>-5340 ( 788) [007] d..2 82315.687094: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37239          <idle>-0     (-----) [007] d..1 82315.687096: cpu_idle: state=0 cpu_id=7
37240          <idle>-0     (-----) [001] dnh2 82315.687097: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37241          <idle>-0     (-----) [001] .n.1 82315.687101: cpu_idle: state=4294967295 cpu_id=1
37242          <idle>-0     (-----) [001] d..2 82315.687106: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37243<...>-87 ( 87) [001] d..2 82315.687126: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37244          <idle>-0     (-----) [001] d..1 82315.687132: cpu_idle: state=0 cpu_id=1
37245          <idle>-0     (-----) [002] d.h4 82315.687156: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37246          <idle>-0     (-----) [002] dnh5 82315.687161: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37247          <idle>-0     (-----) [002] .n.1 82315.687165: cpu_idle: state=4294967295 cpu_id=2
37248          <idle>-0     (-----) [002] d..2 82315.687172: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37249<...>-86 ( 86) [002] d..2 82315.687189: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37250          <idle>-0     (-----) [002] d..1 82315.687195: cpu_idle: state=0 cpu_id=2
37251          <idle>-0     (-----) [002] d.h4 82315.687403: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37252          <idle>-0     (-----) [007] dnh2 82315.687414: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37253          <idle>-0     (-----) [007] .n.1 82315.687416: cpu_idle: state=4294967295 cpu_id=7
37254          <idle>-0     (-----) [007] d..2 82315.687419: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37255          <idle>-0     (-----) [002] ...1 82315.687425: cpu_idle: state=4294967295 cpu_id=2
37256<...>-5340 ( 788) [007] d..2 82315.687426: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37257          <idle>-0     (-----) [002] d..1 82315.687427: cpu_idle: state=0 cpu_id=2
37258<...>-5340 ( 788) [007] d..2 82315.687434: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37259          <idle>-0     (-----) [007] d..1 82315.687437: cpu_idle: state=0 cpu_id=7
37260          <idle>-0     (-----) [001] dnh2 82315.687438: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37261          <idle>-0     (-----) [001] .n.1 82315.687442: cpu_idle: state=4294967295 cpu_id=1
37262          <idle>-0     (-----) [001] d..2 82315.687447: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37263<...>-87 ( 87) [001] d..2 82315.687467: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37264          <idle>-0     (-----) [001] d..1 82315.687472: cpu_idle: state=0 cpu_id=1
37265          <idle>-0     (-----) [002] d.h4 82315.687494: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37266          <idle>-0     (-----) [002] dnh5 82315.687499: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37267          <idle>-0     (-----) [002] .n.1 82315.687503: cpu_idle: state=4294967295 cpu_id=2
37268          <idle>-0     (-----) [002] d..2 82315.687509: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37269<...>-86 ( 86) [002] d..2 82315.687526: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37270          <idle>-0     (-----) [002] d..1 82315.687532: cpu_idle: state=0 cpu_id=2
37271          <idle>-0     (-----) [002] d.h4 82315.687694: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37272          <idle>-0     (-----) [007] dnh2 82315.687705: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37273          <idle>-0     (-----) [007] .n.1 82315.687708: cpu_idle: state=4294967295 cpu_id=7
37274          <idle>-0     (-----) [007] d..2 82315.687710: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37275          <idle>-0     (-----) [002] ...1 82315.687715: cpu_idle: state=4294967295 cpu_id=2
37276<...>-5340 ( 788) [007] d..2 82315.687716: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37277          <idle>-0     (-----) [002] d..1 82315.687718: cpu_idle: state=0 cpu_id=2
37278<...>-5340 ( 788) [007] d..2 82315.687724: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37279          <idle>-0     (-----) [007] d..1 82315.687727: cpu_idle: state=0 cpu_id=7
37280          <idle>-0     (-----) [001] dnh2 82315.687728: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37281          <idle>-0     (-----) [001] .n.1 82315.687732: cpu_idle: state=4294967295 cpu_id=1
37282          <idle>-0     (-----) [001] d..2 82315.687737: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37283<...>-87 ( 87) [001] d..2 82315.687757: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37284          <idle>-0     (-----) [001] d..1 82315.687763: cpu_idle: state=0 cpu_id=1
37285          <idle>-0     (-----) [002] d.h4 82315.687785: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37286          <idle>-0     (-----) [002] dnh5 82315.687791: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37287          <idle>-0     (-----) [002] .n.1 82315.687795: cpu_idle: state=4294967295 cpu_id=2
37288          <idle>-0     (-----) [002] d..2 82315.687801: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37289<...>-86 ( 86) [002] d..2 82315.687819: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37290          <idle>-0     (-----) [002] d..1 82315.687824: cpu_idle: state=0 cpu_id=2
37291          <idle>-0     (-----) [002] d.h4 82315.688023: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37292          <idle>-0     (-----) [007] dnh2 82315.688035: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37293          <idle>-0     (-----) [007] .n.1 82315.688037: cpu_idle: state=4294967295 cpu_id=7
37294          <idle>-0     (-----) [007] d..2 82315.688039: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37295<...>-5340 ( 788) [007] d..2 82315.688045: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37296          <idle>-0     (-----) [002] ...1 82315.688045: cpu_idle: state=4294967295 cpu_id=2
37297          <idle>-0     (-----) [002] d..1 82315.688047: cpu_idle: state=0 cpu_id=2
37298<...>-5340 ( 788) [007] d..2 82315.688053: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37299          <idle>-0     (-----) [007] d..1 82315.688055: cpu_idle: state=0 cpu_id=7
37300          <idle>-0     (-----) [001] dnh2 82315.688057: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37301          <idle>-0     (-----) [001] .n.1 82315.688060: cpu_idle: state=4294967295 cpu_id=1
37302          <idle>-0     (-----) [001] d..2 82315.688066: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37303<...>-87 ( 87) [001] d..2 82315.688085: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37304          <idle>-0     (-----) [001] d..1 82315.688091: cpu_idle: state=0 cpu_id=1
37305          <idle>-0     (-----) [002] d.h4 82315.688113: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37306          <idle>-0     (-----) [002] dnh5 82315.688118: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37307          <idle>-0     (-----) [002] .n.1 82315.688123: cpu_idle: state=4294967295 cpu_id=2
37308          <idle>-0     (-----) [002] d..2 82315.688129: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37309<...>-86 ( 86) [002] d..2 82315.688146: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37310          <idle>-0     (-----) [002] d..1 82315.688151: cpu_idle: state=0 cpu_id=2
37311          <idle>-0     (-----) [002] d.h4 82315.688355: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37312          <idle>-0     (-----) [007] dnh2 82315.688366: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37313          <idle>-0     (-----) [007] .n.1 82315.688368: cpu_idle: state=4294967295 cpu_id=7
37314          <idle>-0     (-----) [007] d..2 82315.688371: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37315<...>-5340 ( 788) [007] d..2 82315.688376: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37316          <idle>-0     (-----) [002] ...1 82315.688377: cpu_idle: state=4294967295 cpu_id=2
37317          <idle>-0     (-----) [002] d..1 82315.688379: cpu_idle: state=0 cpu_id=2
37318<...>-5340 ( 788) [007] d..2 82315.688384: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37319          <idle>-0     (-----) [007] d..1 82315.688386: cpu_idle: state=0 cpu_id=7
37320          <idle>-0     (-----) [001] dnh2 82315.688388: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37321          <idle>-0     (-----) [001] .n.1 82315.688392: cpu_idle: state=4294967295 cpu_id=1
37322          <idle>-0     (-----) [001] d..2 82315.688397: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37323<...>-87 ( 87) [001] d..2 82315.688416: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37324          <idle>-0     (-----) [001] d..1 82315.688422: cpu_idle: state=0 cpu_id=1
37325          <idle>-0     (-----) [002] d.h4 82315.688446: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37326          <idle>-0     (-----) [002] dnh5 82315.688451: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37327          <idle>-0     (-----) [003] d.s2 82315.688455: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
37328          <idle>-0     (-----) [002] .n.1 82315.688455: cpu_idle: state=4294967295 cpu_id=2
37329          <idle>-0     (-----) [002] d..2 82315.688462: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37330          <idle>-0     (-----) [003] dns3 82315.688465: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
37331          <idle>-0     (-----) [003] dns3 82315.688470: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
37332<...>-86 ( 86) [002] d..2 82315.688482: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37333          <idle>-0     (-----) [002] d..1 82315.688486: cpu_idle: state=0 cpu_id=2
37334          <idle>-0     (-----) [003] dns4 82315.688492: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
37335          <idle>-0     (-----) [002] .n.1 82315.688496: cpu_idle: state=4294967295 cpu_id=2
37336          <idle>-0     (-----) [002] d..2 82315.688501: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
37337          <idle>-0     (-----) [003] .n.1 82315.688504: cpu_idle: state=4294967295 cpu_id=3
37338          <idle>-0     (-----) [003] d..2 82315.688510: 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
37339<...>-8 ( 8) [003] d..2 82315.688514: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
37340<...>-8 ( 8) [003] d..3 82315.688533: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=003
37341  kworker/u16:15-1311  ( 1311) [002] .... 82315.688534: clk_set_rate: l3_cluster1_vote_clk 576000000
37342  kworker/u16:15-1311  ( 1311) [002] .... 82315.688539: clk_set_rate: l3_clk 1401600000
37343<...>-8 ( 8) [003] d..2 82315.688540: 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
37344         rcuos/0-11    (   11) [003] d..2 82315.688546: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
37345         rcuos/0-11    (   11) [003] d..3 82315.688554: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
37346         rcuos/0-11    (   11) [003] d..2 82315.688559: 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
37347<...>-8 ( 8) [003] d..2 82315.688571: 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
37348          <idle>-0     (-----) [003] d..1 82315.688579: cpu_idle: state=0 cpu_id=3
37349  kworker/u16:15-1311  ( 1311) [002] d.h3 82315.688671: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37350          <idle>-0     (-----) [007] dnh2 82315.688682: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37351          <idle>-0     (-----) [007] .n.1 82315.688685: cpu_idle: state=4294967295 cpu_id=7
37352          <idle>-0     (-----) [007] d..2 82315.688687: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37353<...>-5340 ( 788) [007] d..2 82315.688693: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37354<...>-5340 ( 788) [007] d..2 82315.688701: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37355          <idle>-0     (-----) [007] d..1 82315.688703: cpu_idle: state=0 cpu_id=7
37356          <idle>-0     (-----) [001] dnh2 82315.688705: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37357          <idle>-0     (-----) [001] .n.1 82315.688709: cpu_idle: state=4294967295 cpu_id=1
37358          <idle>-0     (-----) [001] d..2 82315.688715: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37359<...>-87 ( 87) [001] d..2 82315.688741: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37360          <idle>-0     (-----) [001] d..1 82315.688746: cpu_idle: state=0 cpu_id=1
37361  kworker/u16:15-1311  ( 1311) [002] d.h3 82315.688765: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37362  kworker/u16:15-1311  ( 1311) [002] dnh4 82315.688776: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37363  kworker/u16:15-1311  ( 1311) [002] d..2 82315.688784: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37364<...>-86 ( 86) [002] d..2 82315.688797: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
37365  kworker/u16:15-1311  ( 1311) [002] d..2 82315.688873: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
37366          <idle>-0     (-----) [002] d..1 82315.688879: cpu_idle: state=0 cpu_id=2
37367          <idle>-0     (-----) [001] d.s3 82315.688905: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
37368          <idle>-0     (-----) [001] d.s4 82315.688911: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
37369          <idle>-0     (-----) [001] d.s4 82315.688916: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
37370          <idle>-0     (-----) [002] .n.1 82315.688921: cpu_idle: state=4294967295 cpu_id=2
37371          <idle>-0     (-----) [001] ...1 82315.688922: cpu_idle: state=4294967295 cpu_id=1
37372          <idle>-0     (-----) [001] d..1 82315.688924: cpu_idle: state=0 cpu_id=1
37373          <idle>-0     (-----) [002] d..2 82315.688926: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
37374  kworker/u16:15-1311  ( 1311) [002] d.h4 82315.689030: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37375          <idle>-0     (-----) [007] dnh2 82315.689042: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37376          <idle>-0     (-----) [007] .n.1 82315.689044: cpu_idle: state=4294967295 cpu_id=7
37377          <idle>-0     (-----) [007] d..2 82315.689046: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37378<...>-5340 ( 788) [007] d..2 82315.689052: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37379<...>-5340 ( 788) [007] d..2 82315.689060: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37380          <idle>-0     (-----) [007] d..1 82315.689062: cpu_idle: state=0 cpu_id=7
37381  kworker/u16:15-1311  ( 1311) [002] d..2 82315.689063: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
37382          <idle>-0     (-----) [001] dnH2 82315.689064: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37383          <idle>-0     (-----) [002] d..1 82315.689068: cpu_idle: state=0 cpu_id=2
37384          <idle>-0     (-----) [001] dns3 82315.689069: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
37385          <idle>-0     (-----) [001] dns4 82315.689074: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
37386          <idle>-0     (-----) [001] dns4 82315.689078: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
37387          <idle>-0     (-----) [001] .n.1 82315.689082: cpu_idle: state=4294967295 cpu_id=1
37388          <idle>-0     (-----) [002] .n.1 82315.689084: cpu_idle: state=4294967295 cpu_id=2
37389          <idle>-0     (-----) [001] d..2 82315.689088: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37390          <idle>-0     (-----) [002] d..2 82315.689089: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
37391<...>-87 ( 87) [001] d..2 82315.689109: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37392          <idle>-0     (-----) [001] d..1 82315.689129: cpu_idle: state=0 cpu_id=1
37393          <idle>-0     (-----) [001] ...1 82315.689138: cpu_idle: state=4294967295 cpu_id=1
37394          <idle>-0     (-----) [001] d..1 82315.689140: cpu_idle: state=0 cpu_id=1
37395  kworker/u16:15-1311  ( 1311) [002] .... 82315.689145: clk_set_rate: l3_cluster0_vote_clk 652800000
37396  kworker/u16:15-1311  ( 1311) [002] .... 82315.689148: clk_set_rate: l3_clk 652800000
37397  kworker/u16:15-1311  ( 1311) [002] d..2 82315.689173: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37398          <idle>-0     (-----) [002] d..1 82315.689179: cpu_idle: state=0 cpu_id=2
37399          <idle>-0     (-----) [007] ...1 82315.689471: cpu_idle: state=4294967295 cpu_id=7
37400          <idle>-0     (-----) [007] d..1 82315.689472: cpu_idle: state=0 cpu_id=7
37401          <idle>-0     (-----) [002] d.h4 82315.689904: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37402          <idle>-0     (-----) [002] dnh5 82315.689912: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37403          <idle>-0     (-----) [002] .n.1 82315.689917: cpu_idle: state=4294967295 cpu_id=2
37404          <idle>-0     (-----) [002] d..2 82315.689923: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37405<...>-86 ( 86) [002] d..2 82315.689942: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37406          <idle>-0     (-----) [002] d..1 82315.689947: cpu_idle: state=0 cpu_id=2
37407          <idle>-0     (-----) [002] d.h4 82315.690214: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37408          <idle>-0     (-----) [007] dnh2 82315.690227: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37409          <idle>-0     (-----) [007] .n.1 82315.690229: cpu_idle: state=4294967295 cpu_id=7
37410          <idle>-0     (-----) [007] d..2 82315.690231: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37411<...>-5340 ( 788) [007] d..2 82315.690238: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37412          <idle>-0     (-----) [002] ...1 82315.690238: cpu_idle: state=4294967295 cpu_id=2
37413          <idle>-0     (-----) [002] d..1 82315.690241: cpu_idle: state=0 cpu_id=2
37414<...>-5340 ( 788) [007] d..2 82315.690247: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37415          <idle>-0     (-----) [007] d..1 82315.690249: cpu_idle: state=0 cpu_id=7
37416          <idle>-0     (-----) [001] dnh2 82315.690252: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37417          <idle>-0     (-----) [001] .n.1 82315.690255: cpu_idle: state=4294967295 cpu_id=1
37418          <idle>-0     (-----) [001] d..2 82315.690261: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37419<...>-87 ( 87) [001] d..2 82315.690284: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37420          <idle>-0     (-----) [001] d..1 82315.690291: cpu_idle: state=0 cpu_id=1
37421          <idle>-0     (-----) [002] d.h4 82315.690311: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37422          <idle>-0     (-----) [002] dnh5 82315.690317: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37423          <idle>-0     (-----) [002] .n.1 82315.690321: cpu_idle: state=4294967295 cpu_id=2
37424          <idle>-0     (-----) [002] d..2 82315.690326: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37425<...>-86 ( 86) [002] d..2 82315.690346: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37426          <idle>-0     (-----) [002] d..1 82315.690351: cpu_idle: state=0 cpu_id=2
37427          <idle>-0     (-----) [002] d.h4 82315.690544: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37428          <idle>-0     (-----) [007] dnh2 82315.690557: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37429          <idle>-0     (-----) [007] .n.1 82315.690559: cpu_idle: state=4294967295 cpu_id=7
37430          <idle>-0     (-----) [007] d..2 82315.690562: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37431          <idle>-0     (-----) [002] ...1 82315.690567: cpu_idle: state=4294967295 cpu_id=2
37432          <idle>-0     (-----) [002] d..1 82315.690569: cpu_idle: state=0 cpu_id=2
37433<...>-5340 ( 788) [007] d..2 82315.690569: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37434<...>-5340 ( 788) [007] d..2 82315.690578: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37435          <idle>-0     (-----) [007] d..1 82315.690581: cpu_idle: state=0 cpu_id=7
37436          <idle>-0     (-----) [001] dnh2 82315.690583: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37437          <idle>-0     (-----) [001] .n.1 82315.690587: cpu_idle: state=4294967295 cpu_id=1
37438          <idle>-0     (-----) [001] d..2 82315.690593: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37439<...>-87 ( 87) [001] d..2 82315.690615: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37440          <idle>-0     (-----) [001] d..1 82315.690621: cpu_idle: state=0 cpu_id=1
37441          <idle>-0     (-----) [002] d.h4 82315.690641: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37442          <idle>-0     (-----) [002] dnh5 82315.690647: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37443          <idle>-0     (-----) [002] .n.1 82315.690651: cpu_idle: state=4294967295 cpu_id=2
37444          <idle>-0     (-----) [002] d..2 82315.690656: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37445<...>-86 ( 86) [002] d..2 82315.690676: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37446          <idle>-0     (-----) [002] d..1 82315.690680: cpu_idle: state=0 cpu_id=2
37447          <idle>-0     (-----) [002] d.h4 82315.690875: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37448          <idle>-0     (-----) [007] dnh2 82315.690887: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37449          <idle>-0     (-----) [007] .n.1 82315.690889: cpu_idle: state=4294967295 cpu_id=7
37450          <idle>-0     (-----) [007] d..2 82315.690891: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37451<...>-5340 ( 788) [007] d..2 82315.690898: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37452          <idle>-0     (-----) [002] ...1 82315.690898: cpu_idle: state=4294967295 cpu_id=2
37453          <idle>-0     (-----) [002] d..1 82315.690901: cpu_idle: state=0 cpu_id=2
37454<...>-5340 ( 788) [007] d..2 82315.690906: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37455          <idle>-0     (-----) [007] d..1 82315.690908: cpu_idle: state=0 cpu_id=7
37456          <idle>-0     (-----) [001] dnh2 82315.690910: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37457          <idle>-0     (-----) [001] .n.1 82315.690914: cpu_idle: state=4294967295 cpu_id=1
37458          <idle>-0     (-----) [001] d..2 82315.690920: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37459<...>-87 ( 87) [001] d..2 82315.690943: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37460          <idle>-0     (-----) [001] d..1 82315.690949: cpu_idle: state=0 cpu_id=1
37461          <idle>-0     (-----) [002] d.h4 82315.690969: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37462          <idle>-0     (-----) [002] dnh5 82315.690975: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37463          <idle>-0     (-----) [002] .n.1 82315.690979: cpu_idle: state=4294967295 cpu_id=2
37464          <idle>-0     (-----) [002] d..2 82315.690984: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37465<...>-86 ( 86) [002] d..2 82315.691004: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37466          <idle>-0     (-----) [002] d..1 82315.691008: cpu_idle: state=0 cpu_id=2
37467          <idle>-0     (-----) [002] d.h4 82315.691214: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37468          <idle>-0     (-----) [007] dnh2 82315.691226: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37469          <idle>-0     (-----) [007] .n.1 82315.691228: cpu_idle: state=4294967295 cpu_id=7
37470          <idle>-0     (-----) [007] d..2 82315.691231: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37471          <idle>-0     (-----) [002] ...1 82315.691237: cpu_idle: state=4294967295 cpu_id=2
37472<...>-5340 ( 788) [007] d..2 82315.691239: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37473          <idle>-0     (-----) [002] d..1 82315.691240: cpu_idle: state=0 cpu_id=2
37474<...>-5340 ( 788) [007] d..2 82315.691248: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37475          <idle>-0     (-----) [007] d..1 82315.691250: cpu_idle: state=0 cpu_id=7
37476          <idle>-0     (-----) [001] dnh2 82315.691252: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37477          <idle>-0     (-----) [001] .n.1 82315.691256: cpu_idle: state=4294967295 cpu_id=1
37478          <idle>-0     (-----) [001] d..2 82315.691262: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37479<...>-87 ( 87) [001] d..2 82315.691284: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37480          <idle>-0     (-----) [001] d..1 82315.691290: cpu_idle: state=0 cpu_id=1
37481          <idle>-0     (-----) [002] d.h4 82315.691311: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37482          <idle>-0     (-----) [002] dnh5 82315.691317: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37483          <idle>-0     (-----) [002] .n.1 82315.691322: cpu_idle: state=4294967295 cpu_id=2
37484          <idle>-0     (-----) [002] d..2 82315.691327: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37485<...>-86 ( 86) [002] d..2 82315.691346: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37486          <idle>-0     (-----) [002] d..1 82315.691352: cpu_idle: state=0 cpu_id=2
37487          <idle>-0     (-----) [002] d.h4 82315.691548: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37488          <idle>-0     (-----) [007] dnh2 82315.691560: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37489          <idle>-0     (-----) [007] .n.1 82315.691562: cpu_idle: state=4294967295 cpu_id=7
37490          <idle>-0     (-----) [007] d..2 82315.691565: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37491          <idle>-0     (-----) [002] ...1 82315.691571: cpu_idle: state=4294967295 cpu_id=2
37492<...>-5340 ( 788) [007] d..2 82315.691572: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37493          <idle>-0     (-----) [002] d..1 82315.691574: cpu_idle: state=0 cpu_id=2
37494<...>-5340 ( 788) [007] d..2 82315.691580: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37495          <idle>-0     (-----) [007] d..1 82315.691583: cpu_idle: state=0 cpu_id=7
37496          <idle>-0     (-----) [001] dnh2 82315.691584: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37497          <idle>-0     (-----) [001] .n.1 82315.691588: cpu_idle: state=4294967295 cpu_id=1
37498          <idle>-0     (-----) [001] d..2 82315.691594: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37499<...>-87 ( 87) [001] d..2 82315.691617: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37500          <idle>-0     (-----) [001] d..1 82315.691623: cpu_idle: state=0 cpu_id=1
37501          <idle>-0     (-----) [002] d.h4 82315.691643: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37502          <idle>-0     (-----) [002] dnh5 82315.691649: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37503          <idle>-0     (-----) [002] .n.1 82315.691654: cpu_idle: state=4294967295 cpu_id=2
37504          <idle>-0     (-----) [002] d..2 82315.691659: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37505<...>-86 ( 86) [002] d..2 82315.691678: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37506          <idle>-0     (-----) [002] d..1 82315.691683: cpu_idle: state=0 cpu_id=2
37507          <idle>-0     (-----) [002] d.H3 82315.691843: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
37508          <idle>-0     (-----) [002] d.H4 82315.691856: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
37509          <idle>-0     (-----) [003] .n.1 82315.691861: cpu_idle: state=4294967295 cpu_id=3
37510          <idle>-0     (-----) [003] d..2 82315.691869: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
37511          <idle>-0     (-----) [002] d.H4 82315.691873: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37512          <idle>-0     (-----) [007] dnh2 82315.691885: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37513          <idle>-0     (-----) [007] .n.1 82315.691888: cpu_idle: state=4294967295 cpu_id=7
37514          <idle>-0     (-----) [007] d..2 82315.691891: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37515         sugov:0-576   (  576) [003] .... 82315.691895: clk_set_rate: pwrcl_clk 1516800000
37516          <idle>-0     (-----) [002] d.s2 82315.691897: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
37517<...>-5340 ( 788) [007] d..2 82315.691898: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37518          <idle>-0     (-----) [002] dns3 82315.691907: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
37519<...>-5340 ( 788) [007] d..2 82315.691908: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37520          <idle>-0     (-----) [007] d..1 82315.691911: cpu_idle: state=0 cpu_id=7
37521          <idle>-0     (-----) [001] dnh2 82315.691912: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37522          <idle>-0     (-----) [001] .n.1 82315.691916: cpu_idle: state=4294967295 cpu_id=1
37523          <idle>-0     (-----) [002] .n.1 82315.691918: cpu_idle: state=4294967295 cpu_id=2
37524          <idle>-0     (-----) [001] d..2 82315.691923: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37525          <idle>-0     (-----) [002] d..2 82315.691925: 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
37526     rcu_preempt-7     (    7) [002] d..2 82315.691944: 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
37527<...>-87 ( 87) [001] d..2 82315.691946: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37528         sugov:0-576   (  576) [003] .... 82315.691948: clk_set_rate: cpu3_pwrcl_clk 1766400000
37529          <idle>-0     (-----) [002] d..1 82315.691952: cpu_idle: state=0 cpu_id=2
37530         sugov:0-576   (  576) [003] .... 82315.691958: clk_set_rate: cpu2_pwrcl_clk 1766400000
37531         sugov:0-576   (  576) [003] .... 82315.691964: clk_set_rate: cpu1_pwrcl_clk 1766400000
37532         sugov:0-576   (  576) [003] .... 82315.691971: clk_set_rate: cpu0_pwrcl_clk 1516800000
37533          <idle>-0     (-----) [002] d.h4 82315.691975: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37534          <idle>-0     (-----) [001] d..1 82315.691977: cpu_idle: state=0 cpu_id=1
37535          <idle>-0     (-----) [002] dnh5 82315.691985: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37536          <idle>-0     (-----) [002] .n.1 82315.691992: cpu_idle: state=4294967295 cpu_id=2
37537          <idle>-0     (-----) [002] d..2 82315.692001: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37538<...>-86 ( 86) [002] d..2 82315.692040: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37539          <idle>-0     (-----) [002] d..1 82315.692052: cpu_idle: state=0 cpu_id=2
37540         sugov:0-576   (  576) [003] .... 82315.692083: cpu_frequency: state=1516800 cpu_id=0
37541         sugov:0-576   (  576) [003] .... 82315.692101: cpu_frequency: state=1516800 cpu_id=1
37542         sugov:0-576   (  576) [003] .... 82315.692104: cpu_frequency: state=1516800 cpu_id=2
37543         sugov:0-576   (  576) [003] .... 82315.692106: cpu_frequency: state=1516800 cpu_id=3
37544         sugov:0-576   (  576) [003] d..2 82315.692127: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37545          <idle>-0     (-----) [003] d..1 82315.692133: cpu_idle: state=0 cpu_id=3
37546          <idle>-0     (-----) [002] d.h4 82315.692191: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37547          <idle>-0     (-----) [007] dnh2 82315.692203: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37548          <idle>-0     (-----) [007] .n.1 82315.692206: cpu_idle: state=4294967295 cpu_id=7
37549          <idle>-0     (-----) [007] d..2 82315.692208: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37550<...>-5340 ( 788) [007] d..2 82315.692215: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37551          <idle>-0     (-----) [002] ...1 82315.692216: cpu_idle: state=4294967295 cpu_id=2
37552          <idle>-0     (-----) [002] d..1 82315.692220: cpu_idle: state=0 cpu_id=2
37553<...>-5340 ( 788) [007] d..2 82315.692224: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37554          <idle>-0     (-----) [007] d..1 82315.692227: cpu_idle: state=0 cpu_id=7
37555          <idle>-0     (-----) [001] dnh2 82315.692230: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37556          <idle>-0     (-----) [001] .n.1 82315.692234: cpu_idle: state=4294967295 cpu_id=1
37557          <idle>-0     (-----) [001] d..2 82315.692241: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37558<...>-87 ( 87) [001] d..2 82315.692266: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37559          <idle>-0     (-----) [001] d..1 82315.692273: cpu_idle: state=0 cpu_id=1
37560          <idle>-0     (-----) [002] d.h4 82315.692292: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37561          <idle>-0     (-----) [002] dnh5 82315.692299: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37562          <idle>-0     (-----) [002] .n.1 82315.692304: cpu_idle: state=4294967295 cpu_id=2
37563          <idle>-0     (-----) [002] d..2 82315.692312: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37564<...>-86 ( 86) [002] d..2 82315.692333: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37565          <idle>-0     (-----) [002] d..1 82315.692341: cpu_idle: state=0 cpu_id=2
37566          <idle>-0     (-----) [002] d.h4 82315.692508: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37567          <idle>-0     (-----) [007] dnh2 82315.692521: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37568          <idle>-0     (-----) [007] .n.1 82315.692523: cpu_idle: state=4294967295 cpu_id=7
37569          <idle>-0     (-----) [007] d..2 82315.692526: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37570          <idle>-0     (-----) [002] ...1 82315.692533: cpu_idle: state=4294967295 cpu_id=2
37571          <idle>-0     (-----) [002] d..1 82315.692536: cpu_idle: state=0 cpu_id=2
37572<...>-5340 ( 788) [007] d..2 82315.692539: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37573<...>-5340 ( 788) [007] d..2 82315.692548: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37574          <idle>-0     (-----) [007] d..1 82315.692550: cpu_idle: state=0 cpu_id=7
37575          <idle>-0     (-----) [001] dnh2 82315.692553: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37576          <idle>-0     (-----) [001] .n.1 82315.692557: cpu_idle: state=4294967295 cpu_id=1
37577          <idle>-0     (-----) [001] d..2 82315.692564: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37578<...>-87 ( 87) [001] d..2 82315.692588: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37579          <idle>-0     (-----) [001] d..1 82315.692595: cpu_idle: state=0 cpu_id=1
37580          <idle>-0     (-----) [002] d.h4 82315.692614: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37581          <idle>-0     (-----) [002] dnh5 82315.692620: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37582          <idle>-0     (-----) [002] .n.1 82315.692625: cpu_idle: state=4294967295 cpu_id=2
37583          <idle>-0     (-----) [002] d..2 82315.692633: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37584<...>-86 ( 86) [002] d..2 82315.692655: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37585          <idle>-0     (-----) [002] d..1 82315.692661: cpu_idle: state=0 cpu_id=2
37586          <idle>-0     (-----) [002] d.h4 82315.692878: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37587          <idle>-0     (-----) [007] dnh2 82315.692891: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37588          <idle>-0     (-----) [007] .n.1 82315.692893: cpu_idle: state=4294967295 cpu_id=7
37589          <idle>-0     (-----) [007] d..2 82315.692895: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37590<...>-5340 ( 788) [007] d..2 82315.692903: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37591          <idle>-0     (-----) [002] ...1 82315.692903: cpu_idle: state=4294967295 cpu_id=2
37592          <idle>-0     (-----) [002] d..1 82315.692906: cpu_idle: state=0 cpu_id=2
37593<...>-5340 ( 788) [007] d..2 82315.692911: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37594          <idle>-0     (-----) [007] d..1 82315.692914: cpu_idle: state=0 cpu_id=7
37595          <idle>-0     (-----) [001] dnh2 82315.692916: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37596          <idle>-0     (-----) [001] .n.1 82315.692920: cpu_idle: state=4294967295 cpu_id=1
37597          <idle>-0     (-----) [001] d..2 82315.692928: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37598<...>-87 ( 87) [001] d..2 82315.692952: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37599          <idle>-0     (-----) [001] d..1 82315.692959: cpu_idle: state=0 cpu_id=1
37600          <idle>-0     (-----) [002] d.h4 82315.692977: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37601          <idle>-0     (-----) [002] dnh5 82315.692984: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37602          <idle>-0     (-----) [002] .n.1 82315.692989: cpu_idle: state=4294967295 cpu_id=2
37603          <idle>-0     (-----) [002] d..2 82315.692997: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37604<...>-86 ( 86) [002] d..2 82315.693018: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37605          <idle>-0     (-----) [002] d..1 82315.693025: cpu_idle: state=0 cpu_id=2
37606          <idle>-0     (-----) [002] d.h4 82315.693217: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37607          <idle>-0     (-----) [007] dnh2 82315.693229: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37608          <idle>-0     (-----) [007] .n.1 82315.693232: cpu_idle: state=4294967295 cpu_id=7
37609          <idle>-0     (-----) [007] d..2 82315.693234: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37610<...>-5340 ( 788) [007] d..2 82315.693241: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37611          <idle>-0     (-----) [002] ...1 82315.693242: cpu_idle: state=4294967295 cpu_id=2
37612          <idle>-0     (-----) [002] d..1 82315.693245: cpu_idle: state=0 cpu_id=2
37613<...>-5340 ( 788) [007] d..2 82315.693249: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37614          <idle>-0     (-----) [007] d..1 82315.693251: cpu_idle: state=0 cpu_id=7
37615          <idle>-0     (-----) [001] dnh2 82315.693254: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37616          <idle>-0     (-----) [001] .n.1 82315.693258: cpu_idle: state=4294967295 cpu_id=1
37617          <idle>-0     (-----) [001] d..2 82315.693265: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37618<...>-87 ( 87) [001] d..2 82315.693289: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37619          <idle>-0     (-----) [001] d..1 82315.693296: cpu_idle: state=0 cpu_id=1
37620          <idle>-0     (-----) [002] d.h4 82315.693316: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37621          <idle>-0     (-----) [002] dnh5 82315.693323: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37622          <idle>-0     (-----) [002] .n.1 82315.693328: cpu_idle: state=4294967295 cpu_id=2
37623          <idle>-0     (-----) [002] d..2 82315.693335: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37624<...>-86 ( 86) [002] d..2 82315.693357: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37625          <idle>-0     (-----) [002] d..1 82315.693363: cpu_idle: state=0 cpu_id=2
37626          <idle>-0     (-----) [002] d.h4 82315.693556: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37627          <idle>-0     (-----) [007] dnh2 82315.693569: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37628          <idle>-0     (-----) [007] .n.1 82315.693571: cpu_idle: state=4294967295 cpu_id=7
37629          <idle>-0     (-----) [007] d..2 82315.693573: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37630<...>-5340 ( 788) [007] d..2 82315.693579: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37631          <idle>-0     (-----) [002] ...1 82315.693581: cpu_idle: state=4294967295 cpu_id=2
37632          <idle>-0     (-----) [002] d..1 82315.693584: cpu_idle: state=0 cpu_id=2
37633<...>-5340 ( 788) [007] d..2 82315.693588: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37634          <idle>-0     (-----) [007] d..1 82315.693590: cpu_idle: state=0 cpu_id=7
37635          <idle>-0     (-----) [001] dnh2 82315.693592: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37636          <idle>-0     (-----) [001] .n.1 82315.693597: cpu_idle: state=4294967295 cpu_id=1
37637          <idle>-0     (-----) [001] d..2 82315.693603: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37638<...>-87 ( 87) [001] d..2 82315.693627: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37639          <idle>-0     (-----) [001] d..1 82315.693634: cpu_idle: state=0 cpu_id=1
37640          <idle>-0     (-----) [002] d.h4 82315.693656: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37641          <idle>-0     (-----) [002] dnh5 82315.693662: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37642          <idle>-0     (-----) [002] .n.1 82315.693667: cpu_idle: state=4294967295 cpu_id=2
37643          <idle>-0     (-----) [002] d..2 82315.693675: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37644<...>-86 ( 86) [002] d..2 82315.693697: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37645          <idle>-0     (-----) [002] d..1 82315.693703: cpu_idle: state=0 cpu_id=2
37646          <idle>-0     (-----) [002] d.h4 82315.693899: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37647          <idle>-0     (-----) [007] dnh2 82315.693912: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37648          <idle>-0     (-----) [007] .n.1 82315.693914: cpu_idle: state=4294967295 cpu_id=7
37649          <idle>-0     (-----) [007] d..2 82315.693917: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37650<...>-5340 ( 788) [007] d..2 82315.693923: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37651          <idle>-0     (-----) [002] ...1 82315.693924: cpu_idle: state=4294967295 cpu_id=2
37652          <idle>-0     (-----) [002] d..1 82315.693927: cpu_idle: state=0 cpu_id=2
37653<...>-5340 ( 788) [007] d..2 82315.693931: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37654          <idle>-0     (-----) [007] d..1 82315.693934: cpu_idle: state=0 cpu_id=7
37655          <idle>-0     (-----) [001] dnh2 82315.693937: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37656          <idle>-0     (-----) [001] .n.1 82315.693941: cpu_idle: state=4294967295 cpu_id=1
37657          <idle>-0     (-----) [001] d..2 82315.693947: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37658<...>-87 ( 87) [001] d..2 82315.693971: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37659          <idle>-0     (-----) [001] d..1 82315.693978: cpu_idle: state=0 cpu_id=1
37660          <idle>-0     (-----) [002] d.h4 82315.693997: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37661          <idle>-0     (-----) [002] dnh5 82315.694003: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37662          <idle>-0     (-----) [002] .n.1 82315.694008: cpu_idle: state=4294967295 cpu_id=2
37663          <idle>-0     (-----) [002] d..2 82315.694016: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37664<...>-86 ( 86) [002] d..2 82315.694037: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37665          <idle>-0     (-----) [002] d..1 82315.694044: cpu_idle: state=0 cpu_id=2
37666          <idle>-0     (-----) [002] d.h4 82315.694237: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37667          <idle>-0     (-----) [007] dnh2 82315.694250: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37668          <idle>-0     (-----) [007] .n.1 82315.694252: cpu_idle: state=4294967295 cpu_id=7
37669          <idle>-0     (-----) [007] d..2 82315.694255: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37670<...>-5340 ( 788) [007] d..2 82315.694261: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37671          <idle>-0     (-----) [002] ...1 82315.694262: cpu_idle: state=4294967295 cpu_id=2
37672          <idle>-0     (-----) [002] d..1 82315.694265: cpu_idle: state=0 cpu_id=2
37673<...>-5340 ( 788) [007] d..2 82315.694269: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37674          <idle>-0     (-----) [007] d..1 82315.694271: cpu_idle: state=0 cpu_id=7
37675          <idle>-0     (-----) [001] dnh2 82315.694273: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37676          <idle>-0     (-----) [001] .n.1 82315.694278: cpu_idle: state=4294967295 cpu_id=1
37677          <idle>-0     (-----) [001] d..2 82315.694284: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37678<...>-87 ( 87) [001] d..2 82315.694308: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37679          <idle>-0     (-----) [001] d..1 82315.694315: cpu_idle: state=0 cpu_id=1
37680          <idle>-0     (-----) [002] d.h4 82315.694334: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37681          <idle>-0     (-----) [002] dnh5 82315.694341: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37682          <idle>-0     (-----) [002] .n.1 82315.694346: cpu_idle: state=4294967295 cpu_id=2
37683          <idle>-0     (-----) [002] d..2 82315.694354: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37684<...>-86 ( 86) [002] d..2 82315.694375: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37685          <idle>-0     (-----) [002] d..1 82315.694382: cpu_idle: state=0 cpu_id=2
37686          <idle>-0     (-----) [002] d.h4 82315.694577: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37687          <idle>-0     (-----) [007] dnh2 82315.694589: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37688          <idle>-0     (-----) [007] .n.1 82315.694591: cpu_idle: state=4294967295 cpu_id=7
37689          <idle>-0     (-----) [007] d..2 82315.694594: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37690<...>-5340 ( 788) [007] d..2 82315.694600: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37691          <idle>-0     (-----) [002] ...1 82315.694602: cpu_idle: state=4294967295 cpu_id=2
37692          <idle>-0     (-----) [002] d..1 82315.694605: cpu_idle: state=0 cpu_id=2
37693<...>-5340 ( 788) [007] d..2 82315.694609: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37694          <idle>-0     (-----) [007] d..1 82315.694611: cpu_idle: state=0 cpu_id=7
37695          <idle>-0     (-----) [001] dnh2 82315.694613: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37696          <idle>-0     (-----) [001] .n.1 82315.694618: cpu_idle: state=4294967295 cpu_id=1
37697          <idle>-0     (-----) [001] d..2 82315.694624: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37698<...>-87 ( 87) [001] d..2 82315.694648: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37699          <idle>-0     (-----) [001] d..1 82315.694655: cpu_idle: state=0 cpu_id=1
37700          <idle>-0     (-----) [002] d.h4 82315.694676: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37701          <idle>-0     (-----) [002] dnh5 82315.694682: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37702          <idle>-0     (-----) [002] .n.1 82315.694688: cpu_idle: state=4294967295 cpu_id=2
37703          <idle>-0     (-----) [002] d..2 82315.694695: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37704<...>-86 ( 86) [002] d..2 82315.694717: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37705          <idle>-0     (-----) [002] d..1 82315.694723: cpu_idle: state=0 cpu_id=2
37706          <idle>-0     (-----) [002] d.h4 82315.694922: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37707          <idle>-0     (-----) [007] dnh2 82315.694934: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37708          <idle>-0     (-----) [007] .n.1 82315.694936: cpu_idle: state=4294967295 cpu_id=7
37709          <idle>-0     (-----) [007] d..2 82315.694938: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37710<...>-5340 ( 788) [007] d..2 82315.694945: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37711          <idle>-0     (-----) [002] ...1 82315.694946: cpu_idle: state=4294967295 cpu_id=2
37712          <idle>-0     (-----) [002] d..1 82315.694949: cpu_idle: state=0 cpu_id=2
37713<...>-5340 ( 788) [007] d..2 82315.694953: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37714          <idle>-0     (-----) [007] d..1 82315.694955: cpu_idle: state=0 cpu_id=7
37715          <idle>-0     (-----) [001] dnh2 82315.694958: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37716          <idle>-0     (-----) [001] .n.1 82315.694963: cpu_idle: state=4294967295 cpu_id=1
37717          <idle>-0     (-----) [001] d..2 82315.694969: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37718<...>-87 ( 87) [001] d..2 82315.694993: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37719          <idle>-0     (-----) [001] d..1 82315.695000: cpu_idle: state=0 cpu_id=1
37720          <idle>-0     (-----) [002] d.h4 82315.695019: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37721          <idle>-0     (-----) [002] dnh5 82315.695026: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37722          <idle>-0     (-----) [002] .n.1 82315.695031: cpu_idle: state=4294967295 cpu_id=2
37723          <idle>-0     (-----) [002] d..2 82315.695038: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37724<...>-86 ( 86) [002] d..2 82315.695061: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37725          <idle>-0     (-----) [002] d..1 82315.695067: cpu_idle: state=0 cpu_id=2
37726          <idle>-0     (-----) [003] d.s2 82315.695125: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
37727          <idle>-0     (-----) [003] dns3 82315.695137: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
37728          <idle>-0     (-----) [003] dns3 82315.695141: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
37729          <idle>-0     (-----) [003] dns4 82315.695162: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
37730          <idle>-0     (-----) [003] .n.1 82315.695168: cpu_idle: state=4294967295 cpu_id=3
37731          <idle>-0     (-----) [003] d..2 82315.695175: 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
37732<...>-8 ( 8) [003] d..2 82315.695182: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=003
37733<...>-8 ( 8) [003] d..3 82315.695191: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=003
37734<...>-8 ( 8) [003] d..2 82315.695198: 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
37735         rcuos/0-11    (   11) [003] d..2 82315.695201: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=002
37736         rcuos/0-11    (   11) [003] d..3 82315.695224: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=003
37737         rcuos/0-11    (   11) [003] d..2 82315.695233: 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
37738         rcuos/1-22    (   22) [003] d..2 82315.695254: sched_switch: prev_comm=rcuos/1 prev_pid=22 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
37739          <idle>-0     (-----) [002] d.h4 82315.695269: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37740          <idle>-0     (-----) [007] dnh2 82315.695282: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37741          <idle>-0     (-----) [007] .n.1 82315.695284: cpu_idle: state=4294967295 cpu_id=7
37742          <idle>-0     (-----) [007] d..2 82315.695287: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37743<...>-5340 ( 788) [007] d..2 82315.695294: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37744          <idle>-0     (-----) [002] ...1 82315.695294: cpu_idle: state=4294967295 cpu_id=2
37745          <idle>-0     (-----) [002] d..1 82315.695297: cpu_idle: state=0 cpu_id=2
37746<...>-5340 ( 788) [007] d..2 82315.695303: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37747          <idle>-0     (-----) [007] d..1 82315.695306: cpu_idle: state=0 cpu_id=7
37748          <idle>-0     (-----) [001] dnh2 82315.695307: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37749          <idle>-0     (-----) [001] .n.1 82315.695311: cpu_idle: state=4294967295 cpu_id=1
37750  kworker/u16:15-1311  ( 1311) [003] d..2 82315.695312: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37751          <idle>-0     (-----) [001] d..2 82315.695318: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37752          <idle>-0     (-----) [003] d..1 82315.695321: cpu_idle: state=0 cpu_id=3
37753<...>-87 ( 87) [001] d..2 82315.695344: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37754          <idle>-0     (-----) [001] d..1 82315.695351: cpu_idle: state=0 cpu_id=1
37755          <idle>-0     (-----) [002] d.h4 82315.695370: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37756          <idle>-0     (-----) [002] dnh5 82315.695377: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37757          <idle>-0     (-----) [002] .n.1 82315.695382: cpu_idle: state=4294967295 cpu_id=2
37758          <idle>-0     (-----) [002] d..2 82315.695391: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37759<...>-86 ( 86) [002] d..2 82315.695413: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37760          <idle>-0     (-----) [002] d..1 82315.695418: cpu_idle: state=0 cpu_id=2
37761          <idle>-0     (-----) [000] d.h5 82315.695443: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
37762          <idle>-0     (-----) [000] d.h6 82315.695459: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
37763          <idle>-0     (-----) [000] d.h5 82315.695463: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
37764          <idle>-0     (-----) [003] .n.1 82315.695465: cpu_idle: state=4294967295 cpu_id=3
37765          <idle>-0     (-----) [003] d..2 82315.695472: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
37766          <idle>-0     (-----) [000] dnh6 82315.695481: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
37767          <idle>-0     (-----) [000] .n.1 82315.695492: cpu_idle: state=4294967295 cpu_id=0
37768  crtc_event:111-322   (  322) [003] d..2 82315.695499: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37769          <idle>-0     (-----) [000] d..2 82315.695501: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
37770          <idle>-0     (-----) [003] d..1 82315.695504: cpu_idle: state=0 cpu_id=3
37771          <idle>-0     (-----) [002] d.h4 82315.695608: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37772          <idle>-0     (-----) [007] dnh2 82315.695620: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37773          <idle>-0     (-----) [007] .n.1 82315.695622: cpu_idle: state=4294967295 cpu_id=7
37774          <idle>-0     (-----) [007] d..2 82315.695625: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37775 crtc_commit:111-321   (  321) [000] d..2 82315.695630: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
37776<...>-5340 ( 788) [007] d..2 82315.695632: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37777          <idle>-0     (-----) [002] ...1 82315.695633: cpu_idle: state=4294967295 cpu_id=2
37778          <idle>-0     (-----) [002] d..1 82315.695636: cpu_idle: state=0 cpu_id=2
37779          <idle>-0     (-----) [000] d..1 82315.695637: cpu_idle: state=0 cpu_id=0
37780<...>-5340 ( 788) [007] d..2 82315.695641: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37781          <idle>-0     (-----) [007] d..1 82315.695643: cpu_idle: state=0 cpu_id=7
37782          <idle>-0     (-----) [001] dnh2 82315.695646: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37783          <idle>-0     (-----) [001] .n.1 82315.695650: cpu_idle: state=4294967295 cpu_id=1
37784          <idle>-0     (-----) [001] d..2 82315.695657: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37785<...>-87 ( 87) [001] d..2 82315.695682: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37786          <idle>-0     (-----) [001] d..1 82315.695688: cpu_idle: state=0 cpu_id=1
37787          <idle>-0     (-----) [002] d.h4 82315.695710: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37788          <idle>-0     (-----) [002] dnh5 82315.695717: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37789          <idle>-0     (-----) [002] .n.1 82315.695730: cpu_idle: state=4294967295 cpu_id=2
37790          <idle>-0     (-----) [002] d..2 82315.695735: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37791<...>-86 ( 86) [002] d..2 82315.695756: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37792          <idle>-0     (-----) [002] d..1 82315.695762: cpu_idle: state=0 cpu_id=2
37793          <idle>-0     (-----) [002] d.h4 82315.695982: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37794          <idle>-0     (-----) [007] dnh2 82315.695995: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37795          <idle>-0     (-----) [007] .n.1 82315.695997: cpu_idle: state=4294967295 cpu_id=7
37796          <idle>-0     (-----) [007] d..2 82315.696000: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37797<...>-5340 ( 788) [007] d..2 82315.696006: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37798          <idle>-0     (-----) [002] ...1 82315.696008: cpu_idle: state=4294967295 cpu_id=2
37799          <idle>-0     (-----) [002] d..1 82315.696011: cpu_idle: state=0 cpu_id=2
37800<...>-5340 ( 788) [007] d..2 82315.696015: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37801          <idle>-0     (-----) [007] d..1 82315.696017: cpu_idle: state=0 cpu_id=7
37802          <idle>-0     (-----) [001] dnh2 82315.696020: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37803          <idle>-0     (-----) [001] .n.1 82315.696024: cpu_idle: state=4294967295 cpu_id=1
37804          <idle>-0     (-----) [001] d..2 82315.696030: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37805<...>-87 ( 87) [001] d..2 82315.696054: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37806          <idle>-0     (-----) [001] d..1 82315.696061: cpu_idle: state=0 cpu_id=1
37807          <idle>-0     (-----) [002] d.h4 82315.696082: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37808          <idle>-0     (-----) [002] dnh5 82315.696088: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37809          <idle>-0     (-----) [002] .n.1 82315.696093: cpu_idle: state=4294967295 cpu_id=2
37810          <idle>-0     (-----) [002] d..2 82315.696099: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37811<...>-86 ( 86) [002] d..2 82315.696120: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37812          <idle>-0     (-----) [002] d..1 82315.696125: cpu_idle: state=0 cpu_id=2
37813          <idle>-0     (-----) [002] d.h4 82315.696348: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37814          <idle>-0     (-----) [007] dnh2 82315.696360: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37815          <idle>-0     (-----) [007] .n.1 82315.696363: cpu_idle: state=4294967295 cpu_id=7
37816          <idle>-0     (-----) [007] d..2 82315.696365: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37817<...>-5340 ( 788) [007] d..2 82315.696372: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37818          <idle>-0     (-----) [002] ...1 82315.696373: cpu_idle: state=4294967295 cpu_id=2
37819          <idle>-0     (-----) [002] d..1 82315.696376: cpu_idle: state=0 cpu_id=2
37820<...>-5340 ( 788) [007] d..2 82315.696380: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37821          <idle>-0     (-----) [007] d..1 82315.696382: cpu_idle: state=0 cpu_id=7
37822          <idle>-0     (-----) [001] dnh2 82315.696385: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37823          <idle>-0     (-----) [001] .n.1 82315.696389: cpu_idle: state=4294967295 cpu_id=1
37824          <idle>-0     (-----) [001] d..2 82315.696396: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37825<...>-87 ( 87) [001] d..2 82315.696420: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37826          <idle>-0     (-----) [001] d..1 82315.696427: cpu_idle: state=0 cpu_id=1
37827          <idle>-0     (-----) [002] d.h4 82315.696445: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37828          <idle>-0     (-----) [002] dnh5 82315.696451: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37829          <idle>-0     (-----) [002] .n.1 82315.696457: cpu_idle: state=4294967295 cpu_id=2
37830          <idle>-0     (-----) [002] d..2 82315.696463: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37831<...>-86 ( 86) [002] d..2 82315.696484: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37832          <idle>-0     (-----) [002] d..1 82315.696489: cpu_idle: state=0 cpu_id=2
37833          <idle>-0     (-----) [002] d.h4 82315.696693: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37834          <idle>-0     (-----) [007] dnh2 82315.696706: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37835          <idle>-0     (-----) [007] .n.1 82315.696708: cpu_idle: state=4294967295 cpu_id=7
37836          <idle>-0     (-----) [007] d..2 82315.696710: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37837<...>-5340 ( 788) [007] d..2 82315.696716: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37838          <idle>-0     (-----) [002] ...1 82315.696719: cpu_idle: state=4294967295 cpu_id=2
37839          <idle>-0     (-----) [002] d..1 82315.696722: cpu_idle: state=0 cpu_id=2
37840<...>-5340 ( 788) [007] d..2 82315.696725: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37841          <idle>-0     (-----) [007] d..1 82315.696727: cpu_idle: state=0 cpu_id=7
37842          <idle>-0     (-----) [001] dnh2 82315.696730: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37843          <idle>-0     (-----) [001] .n.1 82315.696735: cpu_idle: state=4294967295 cpu_id=1
37844          <idle>-0     (-----) [001] d..2 82315.696741: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37845<...>-87 ( 87) [001] d..2 82315.696765: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37846          <idle>-0     (-----) [001] d..1 82315.696772: cpu_idle: state=0 cpu_id=1
37847          <idle>-0     (-----) [002] d.h4 82315.696791: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37848          <idle>-0     (-----) [002] dnh5 82315.696798: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37849          <idle>-0     (-----) [002] .n.1 82315.696803: cpu_idle: state=4294967295 cpu_id=2
37850          <idle>-0     (-----) [002] d..2 82315.696808: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37851<...>-86 ( 86) [002] d..2 82315.696829: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37852          <idle>-0     (-----) [002] d..1 82315.696834: cpu_idle: state=0 cpu_id=2
37853          <idle>-0     (-----) [002] d.h4 82315.697044: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37854          <idle>-0     (-----) [007] dnh2 82315.697057: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37855          <idle>-0     (-----) [007] .n.1 82315.697059: cpu_idle: state=4294967295 cpu_id=7
37856          <idle>-0     (-----) [007] d..2 82315.697062: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37857          <idle>-0     (-----) [002] ...1 82315.697070: cpu_idle: state=4294967295 cpu_id=2
37858          <idle>-0     (-----) [002] d..1 82315.697072: cpu_idle: state=0 cpu_id=2
37859<...>-5340 ( 788) [007] d..2 82315.697079: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37860<...>-5340 ( 788) [007] d..2 82315.697088: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37861          <idle>-0     (-----) [007] d..1 82315.697091: cpu_idle: state=0 cpu_id=7
37862          <idle>-0     (-----) [001] dnh2 82315.697093: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37863          <idle>-0     (-----) [001] .n.1 82315.697097: cpu_idle: state=4294967295 cpu_id=1
37864          <idle>-0     (-----) [001] d..2 82315.697104: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37865<...>-87 ( 87) [001] d..2 82315.697128: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37866          <idle>-0     (-----) [001] d..1 82315.697135: cpu_idle: state=0 cpu_id=1
37867          <idle>-0     (-----) [002] d.h4 82315.697155: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37868          <idle>-0     (-----) [002] dnh5 82315.697161: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37869          <idle>-0     (-----) [002] .n.1 82315.697167: cpu_idle: state=4294967295 cpu_id=2
37870          <idle>-0     (-----) [002] d..2 82315.697173: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37871<...>-86 ( 86) [002] d..2 82315.697193: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37872          <idle>-0     (-----) [002] d..1 82315.697198: cpu_idle: state=0 cpu_id=2
37873          <idle>-0     (-----) [002] d.h4 82315.697454: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37874          <idle>-0     (-----) [007] dnh2 82315.697467: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37875          <idle>-0     (-----) [007] .n.1 82315.697470: cpu_idle: state=4294967295 cpu_id=7
37876          <idle>-0     (-----) [007] d..2 82315.697472: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37877<...>-5340 ( 788) [007] d..2 82315.697479: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37878          <idle>-0     (-----) [002] ...1 82315.697480: cpu_idle: state=4294967295 cpu_id=2
37879          <idle>-0     (-----) [002] d..1 82315.697483: cpu_idle: state=0 cpu_id=2
37880<...>-5340 ( 788) [007] d..2 82315.697488: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37881          <idle>-0     (-----) [007] d..1 82315.697490: cpu_idle: state=0 cpu_id=7
37882          <idle>-0     (-----) [001] dnh2 82315.697493: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37883          <idle>-0     (-----) [001] .n.1 82315.697497: cpu_idle: state=4294967295 cpu_id=1
37884          <idle>-0     (-----) [001] d..2 82315.697503: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37885<...>-87 ( 87) [001] d..2 82315.697527: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37886          <idle>-0     (-----) [001] d..1 82315.697535: cpu_idle: state=0 cpu_id=1
37887          <idle>-0     (-----) [002] d.h4 82315.697553: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37888          <idle>-0     (-----) [002] dnh5 82315.697559: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37889          <idle>-0     (-----) [002] .n.1 82315.697564: cpu_idle: state=4294967295 cpu_id=2
37890          <idle>-0     (-----) [002] d..2 82315.697570: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37891<...>-86 ( 86) [002] d..2 82315.697590: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37892          <idle>-0     (-----) [002] d..1 82315.697596: cpu_idle: state=0 cpu_id=2
37893          <idle>-0     (-----) [000] d.h5 82315.697782: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
37894          <idle>-0     (-----) [000] dnh6 82315.697789: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
37895          <idle>-0     (-----) [000] .n.1 82315.697797: cpu_idle: state=4294967295 cpu_id=0
37896          <idle>-0     (-----) [000] d..2 82315.697802: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
37897          <idle>-0     (-----) [002] d.h4 82315.697841: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37898 crtc_commit:111-321   (  321) [000] d..2 82315.697849: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37899          <idle>-0     (-----) [007] dnh2 82315.697854: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37900          <idle>-0     (-----) [000] d..1 82315.697855: cpu_idle: state=0 cpu_id=0
37901          <idle>-0     (-----) [007] .n.1 82315.697856: cpu_idle: state=4294967295 cpu_id=7
37902          <idle>-0     (-----) [007] d..2 82315.697858: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37903<...>-5340 ( 788) [007] d..2 82315.697865: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37904          <idle>-0     (-----) [002] ...1 82315.697866: cpu_idle: state=4294967295 cpu_id=2
37905          <idle>-0     (-----) [002] d..1 82315.697869: cpu_idle: state=0 cpu_id=2
37906<...>-5340 ( 788) [007] d..2 82315.697874: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37907          <idle>-0     (-----) [007] d..1 82315.697876: cpu_idle: state=0 cpu_id=7
37908          <idle>-0     (-----) [001] dnh2 82315.697878: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37909          <idle>-0     (-----) [001] .n.1 82315.697882: cpu_idle: state=4294967295 cpu_id=1
37910          <idle>-0     (-----) [001] d..2 82315.697888: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37911<...>-87 ( 87) [001] d..2 82315.697914: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37912          <idle>-0     (-----) [001] d..1 82315.697920: cpu_idle: state=0 cpu_id=1
37913          <idle>-0     (-----) [002] d.h4 82315.697943: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37914          <idle>-0     (-----) [002] dnh5 82315.697950: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37915          <idle>-0     (-----) [002] .n.1 82315.697956: cpu_idle: state=4294967295 cpu_id=2
37916          <idle>-0     (-----) [002] d..2 82315.697961: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37917<...>-86 ( 86) [002] d..2 82315.697982: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37918          <idle>-0     (-----) [002] d..1 82315.697987: cpu_idle: state=0 cpu_id=2
37919          <idle>-0     (-----) [000] d.h5 82315.698068: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
37920          <idle>-0     (-----) [000] d.h6 82315.698080: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
37921          <idle>-0     (-----) [003] .n.1 82315.698084: cpu_idle: state=4294967295 cpu_id=3
37922          <idle>-0     (-----) [000] d.h7 82315.698086: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
37923          <idle>-0     (-----) [003] d..2 82315.698092: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
37924          <idle>-0     (-----) [000] dnh8 82315.698097: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
37925  crtc_event:111-322   (  322) [003] d..2 82315.698107: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37926          <idle>-0     (-----) [000] dnh9 82315.698107: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
37927          <idle>-0     (-----) [003] d..1 82315.698112: cpu_idle: state=0 cpu_id=3
37928          <idle>-0     (-----) [000] dnha 82315.698121: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
37929          <idle>-0     (-----) [000] dnh7 82315.698126: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=001
37930          <idle>-0     (-----) [003] .n.1 82315.698126: cpu_idle: state=4294967295 cpu_id=3
37931          <idle>-0     (-----) [003] d..2 82315.698132: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
37932          <idle>-0     (-----) [000] dnh8 82315.698150: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
37933          <idle>-0     (-----) [000] .n.1 82315.698162: cpu_idle: state=4294967295 cpu_id=0
37934 crtc_commit:111-321   (  321) [003] d..2 82315.698167: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
37935          <idle>-0     (-----) [000] d..2 82315.698169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
37936          <idle>-0     (-----) [003] d..1 82315.698172: cpu_idle: state=0 cpu_id=3
37937          <idle>-0     (-----) [002] d.h4 82315.698188: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37938          <idle>-0     (-----) [007] dnh2 82315.698201: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37939          <idle>-0     (-----) [007] .n.1 82315.698203: cpu_idle: state=4294967295 cpu_id=7
37940 SDM_EventThread-644   (  619) [000] d..2 82315.698203: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
37941          <idle>-0     (-----) [007] d..2 82315.698205: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37942<...>-5340 ( 788) [007] d..2 82315.698211: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37943          <idle>-0     (-----) [002] ...1 82315.698212: cpu_idle: state=4294967295 cpu_id=2
37944          <idle>-0     (-----) [002] d..1 82315.698215: cpu_idle: state=0 cpu_id=2
37945<...>-5340 ( 788) [007] d..2 82315.698220: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37946          <idle>-0     (-----) [007] d..1 82315.698222: cpu_idle: state=0 cpu_id=7
37947          <idle>-0     (-----) [001] dnh2 82315.698225: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37948     kworker/0:1-25262 (25262) [000] d..2 82315.698226: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37949          <idle>-0     (-----) [001] .n.1 82315.698229: cpu_idle: state=4294967295 cpu_id=1
37950          <idle>-0     (-----) [000] d..1 82315.698233: cpu_idle: state=0 cpu_id=0
37951          <idle>-0     (-----) [001] d..2 82315.698235: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
37952<...>-87 ( 87) [001] d..2 82315.698259: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
37953          <idle>-0     (-----) [001] d..1 82315.698266: cpu_idle: state=0 cpu_id=1
37954          <idle>-0     (-----) [002] d.h4 82315.698285: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37955          <idle>-0     (-----) [002] dnh5 82315.698292: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
37956          <idle>-0     (-----) [002] .n.1 82315.698297: cpu_idle: state=4294967295 cpu_id=2
37957          <idle>-0     (-----) [002] d..2 82315.698303: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
37958<...>-86 ( 86) [002] d..2 82315.698323: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
37959          <idle>-0     (-----) [002] d..1 82315.698328: cpu_idle: state=0 cpu_id=2
37960          <idle>-0     (-----) [003] d.h2 82315.698455: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
37961          <idle>-0     (-----) [002] d.s2 82315.698460: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
37962          <idle>-0     (-----) [000] d.s3 82315.698463: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
37963          <idle>-0     (-----) [003] dnh3 82315.698469: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
37964          <idle>-0     (-----) [002] dns3 82315.698469: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
37965          <idle>-0     (-----) [002] dns3 82315.698472: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
37966          <idle>-0     (-----) [003] .n.1 82315.698478: cpu_idle: state=4294967295 cpu_id=3
37967          <idle>-0     (-----) [000] dns4 82315.698478: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
37968          <idle>-0     (-----) [003] d..2 82315.698485: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
37969          <idle>-0     (-----) [002] dns4 82315.698490: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
37970          <idle>-0     (-----) [000] .n.1 82315.698491: cpu_idle: state=4294967295 cpu_id=0
37971          <idle>-0     (-----) [000] d..2 82315.698497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
37972          <idle>-0     (-----) [002] .n.1 82315.698501: cpu_idle: state=4294967295 cpu_id=2
37973        DispSync-8879  ( 8858) [003] d..1 82315.698505: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
37974          <idle>-0     (-----) [002] d..2 82315.698507: 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
37975     rcu_preempt-7     (    7) [002] d..2 82315.698512: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=007
37976        DispSync-8879  ( 8858) [003] d..2 82315.698517: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
37977        DispSync-8879  ( 8858) [003] d..1 82315.698521: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
37978          <idle>-0     (-----) [001] .n.1 82315.698522: cpu_idle: state=4294967295 cpu_id=1
37979  crtc_event:111-322   (  322) [000] d..2 82315.698523: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
37980          <idle>-0     (-----) [001] d..2 82315.698529: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
37981          <idle>-0     (-----) [000] d..1 82315.698531: cpu_idle: state=0 cpu_id=0
37982        DispSync-8879  ( 8858) [003] d..2 82315.698550: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
37983     rcu_preempt-7     (    7) [002] d..3 82315.698555: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
37984          <idle>-0     (-----) [000] .n.1 82315.698555: cpu_idle: state=4294967295 cpu_id=0
37985          <idle>-0     (-----) [000] d..2 82315.698562: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
37986   sfEventThread-8882  ( 8858) [001] d..3 82315.698570: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
37987     rcu_preempt-7     (    7) [002] d.h4 82315.698570: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37988        DispSync-8879  ( 8858) [003] d..2 82315.698572: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
37989          <idle>-0     (-----) [007] dnh2 82315.698582: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
37990          <idle>-0     (-----) [007] .n.1 82315.698584: cpu_idle: state=4294967295 cpu_id=7
37991          <idle>-0     (-----) [007] d..2 82315.698587: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
37992          <idle>-0     (-----) [004] dnh2 82315.698591: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
37993<...>-5340 ( 788) [007] d..2 82315.698593: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
37994          <idle>-0     (-----) [004] .n.1 82315.698594: cpu_idle: state=4294967295 cpu_id=4
37995   sfEventThread-8882  ( 8858) [001] d..3 82315.698596: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
37996     rcu_preempt-7     (    7) [002] d..2 82315.698622: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
37997          <idle>-0     (-----) [004] d..2 82315.698623: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
37998<...>-5340 ( 788) [007] d..2 82315.698630: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
37999          <idle>-0     (-----) [007] d..1 82315.698632: cpu_idle: state=0 cpu_id=7
38000   sfEventThread-8882  ( 8858) [001] d..4 82315.698639: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
38001  appEventThread-8881  ( 8858) [000] d..3 82315.698647: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
38002          <idle>-0     (-----) [006] d.h2 82315.698647: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=006
38003     rcu_preempt-7     (    7) [002] dn.3 82315.698649: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
38004          <idle>-0     (-----) [006] dnh3 82315.698655: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=006
38005          <idle>-0     (-----) [006] dnh2 82315.698657: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=006
38006   sfEventThread-8882  ( 8858) [001] d.h2 82315.698658: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
38007     rcu_preempt-7     (    7) [002] d..2 82315.698659: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
38008          <idle>-0     (-----) [007] dnh2 82315.698676: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
38009   sfEventThread-8882  ( 8858) [001] d..3 82315.698676: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
38010          <idle>-0     (-----) [006] .n.1 82315.698676: cpu_idle: state=4294967295 cpu_id=6
38011          <idle>-0     (-----) [007] .n.1 82315.698678: cpu_idle: state=4294967295 cpu_id=7
38012          <idle>-0     (-----) [007] d..2 82315.698709: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
38013          <idle>-0     (-----) [006] d..2 82315.698711: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
38014  appEventThread-8881  ( 8858) [000] d.h2 82315.698715: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
38015  kworker/u16:15-1311  ( 1311) [003] .... 82315.698725: clk_set_rate: l3_cluster0_vote_clk 480000000
38016          <idle>-0     (-----) [005] dnh2 82315.698725: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
38017          <idle>-0     (-----) [005] .n.1 82315.698728: cpu_idle: state=4294967295 cpu_id=5
38018  kworker/u16:15-1311  ( 1311) [003] .... 82315.698728: clk_set_rate: l3_clk 576000000
38019          <idle>-0     (-----) [005] d..2 82315.698734: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
38020   sfEventThread-8882  ( 8858) [001] d..2 82315.698738: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
38021  appEventThread-8881  ( 8858) [000] d..2 82315.698741: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
38022         rcuop/2-29    (   29) [001] d..2 82315.698749: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=004
38023         rcuop/0-10    (   10) [000] d..2 82315.698751: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
38024         rcuop/0-10    (   10) [000] d..3 82315.698787: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
38025         rcuop/2-29    (   29) [001] d..3 82315.698802: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
38026<...>-9006 ( 8943) [004] .... 82315.698833: binder_transaction: transaction=1568984 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
38027<...>-9006 ( 8943) [004] .... 82315.698836: binder_transaction_alloc_buf: transaction=1568984 data_size=80 offsets_size=0
38028<...>-9006 ( 8943) [004] d..4 82315.698840: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
38029         rcuop/0-10    (   10) [000] d..2 82315.698841: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
38030<...>-9005 ( 8943) [005] d..2 82315.698843: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
38031          <idle>-0     (-----) [005] d..1 82315.698849: cpu_idle: state=0 cpu_id=5
38032         rcuop/2-29    (   29) [001] d..2 82315.698854: 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
38033<...>-9006 ( 8943) [004] d..5 82315.698858: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
38034          <idle>-0     (-----) [005] .n.1 82315.698862: cpu_idle: state=4294967295 cpu_id=5
38035<...>-8961 ( 8943) [006] .... 82315.698864: binder_transaction: transaction=1568985 dest_node=401308 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x1
38036          <idle>-0     (-----) [005] d..2 82315.698867: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
38037<...>-8961 ( 8943) [006] .... 82315.698867: binder_transaction_alloc_buf: transaction=1568985 data_size=72 offsets_size=0
38038         rcuop/1-21    (   21) [001] d..2 82315.698869: 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
38039<...>-8961 ( 8943) [006] d..4 82315.698871: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
38040<...>-13083 ( 8858) [005] .... 82315.698872: binder_transaction_received: transaction=1568984
38041         rcuop/3-37    (   37) [001] d..2 82315.698880: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38042<...>-8961 ( 8943) [006] d..5 82315.698890: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
38043<...>-13083 ( 8858) [005] d..1 82315.698892: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
38044<...>-9105 ( 9105) [007] .... 82315.698903: binder_transaction: transaction=1568986 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
38045<...>-9105 ( 9105) [007] .... 82315.698906: binder_transaction_alloc_buf: transaction=1568986 data_size=80 offsets_size=0
38046<...>-9105 ( 9105) [007] d..4 82315.698909: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
38047<...>-8961 ( 8943) [006] .... 82315.698921: binder_transaction: transaction=1568987 dest_node=424459 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x1
38048<...>-8961 ( 8943) [006] .... 82315.698922: binder_transaction_alloc_buf: transaction=1568987 data_size=72 offsets_size=0
38049<...>-8961 ( 8943) [006] d..4 82315.698925: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
38050<...>-9105 ( 9105) [007] d..5 82315.698928: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
38051<...>-87 ( 87) [001] d..2 82315.698933: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
38052<...>-13083 ( 8858) [005] d..2 82315.698939: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
38053 TaskSnapshotPer-9077  ( 8943) [000] d..2 82315.698940: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38054          <idle>-0     (-----) [005] d..1 82315.698944: cpu_idle: state=0 cpu_id=5
38055<...>-8961 ( 8943) [006] d..5 82315.698944: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
38056<...>-9131 ( 9105) [001] dnh3 82315.698945: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
38057          <idle>-0     (-----) [000] d..1 82315.698955: cpu_idle: state=0 cpu_id=0
38058<...>-9006 ( 8943) [004] .... 82315.698963: binder_transaction: transaction=1568988 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
38059<...>-9006 ( 8943) [004] .... 82315.698964: binder_transaction_alloc_buf: transaction=1568988 data_size=988 offsets_size=48
38060<...>-9105 ( 9105) [007] d..3 82315.698965: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
38061<...>-9006 ( 8943) [004] ...2 82315.698976: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
38062<...>-9006 ( 8943) [004] d..4 82315.698980: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
38063<...>-9131 ( 9105) [001] d..2 82315.698987: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
38064<...>-9006 ( 8943) [004] d..5 82315.698989: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
38065          <idle>-0     (-----) [005] .n.1 82315.698993: cpu_idle: state=4294967295 cpu_id=5
38066<...>-9006 ( 8943) [004] d..2 82315.698995: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
38067          <idle>-0     (-----) [005] d..2 82315.698997: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
38068<...>-8961 ( 8943) [006] .... 82315.698997: binder_transaction: transaction=1568989 dest_node=1159303 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x1
38069<...>-13083 ( 8858) [005] .... 82315.699000: binder_transaction_received: transaction=1568988
38070<...>-8961 ( 8943) [006] .... 82315.699000: binder_transaction_alloc_buf: transaction=1568989 data_size=72 offsets_size=0
38071<...>-8951 ( 8858) [004] .... 82315.699001: binder_transaction_received: transaction=1568986
38072<...>-8961 ( 8943) [006] d..4 82315.699003: sched_waking: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=007
38073<...>-8951 ( 8858) [004] d..1 82315.699016: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
38074   sfEventThread-8882  ( 8858) [001] d.s3 82315.699019: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
38075  kworker/u16:15-1311  ( 1311) [003] d..2 82315.699024: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
38076          <idle>-0     (-----) [000] dnh2 82315.699028: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
38077   sfEventThread-8882  ( 8858) [001] d.s4 82315.699029: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
38078          <idle>-0     (-----) [003] d..1 82315.699036: cpu_idle: state=0 cpu_id=3
38079<...>-13083 ( 8858) [005] d..1 82315.699049: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
38080          <idle>-0     (-----) [000] dnh2 82315.699062: sched_wakeup: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=000
38081   sfEventThread-8882  ( 8858) [001] d..2 82315.699065: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
38082<...>-8951 ( 8858) [004] d..2 82315.699065: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
38083          <idle>-0     (-----) [000] dnh2 82315.699065: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
38084          <idle>-0     (-----) [000] .n.1 82315.699070: cpu_idle: state=4294967295 cpu_id=0
38085          <idle>-0     (-----) [004] d..1 82315.699073: cpu_idle: state=0 cpu_id=4
38086     ksoftirqd/1-18    (   18) [001] d.s2 82315.699075: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
38087          <idle>-0     (-----) [000] d..2 82315.699078: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
38088<...>-13083 ( 8858) [005] .... 82315.699087: binder_transaction: transaction=1568990 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
38089<...>-13083 ( 8858) [005] .... 82315.699088: binder_transaction_alloc_buf: transaction=1568990 data_size=0 offsets_size=0
38090     ksoftirqd/1-18    (   18) [001] d.s3 82315.699088: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
38091<...>-13083 ( 8858) [005] d..2 82315.699089: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
38092<...>-8961 ( 8943) [006] d..2 82315.699090: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
38093     ksoftirqd/1-18    (   18) [001] d.s3 82315.699094: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
38094          <idle>-0     (-----) [006] d..1 82315.699097: cpu_idle: state=0 cpu_id=6
38095<...>-13083 ( 8858) [005] dn.3 82315.699098: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=005
38096          <idle>-0     (-----) [003] dnh2 82315.699099: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
38097<...>-13083 ( 8858) [005] d..2 82315.699101: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
38098<...>-9006 ( 8943) [005] .... 82315.699105: binder_transaction_received: transaction=1568990
38099          <idle>-0     (-----) [003] .n.1 82315.699106: cpu_idle: state=4294967295 cpu_id=3
38100     ksoftirqd/1-18    (   18) [001] d..2 82315.699108: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
38101  appEventThread-8881  ( 8858) [000] d..2 82315.699110: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:10023_3 next_pid=10531 next_prio=120
38102          <idle>-0     (-----) [003] d..2 82315.699113: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
38103<...>-9131 ( 9105) [001] .... 82315.699113: binder_transaction_received: transaction=1568985
38104<...>-9105 ( 9105) [007] d..2 82315.699116: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
38105  Binder:10023_3-10531 (10023) [000] .... 82315.699119: binder_transaction_received: transaction=1568989
38106<...>-9132 ( 9105) [007] .... 82315.699120: binder_transaction_received: transaction=1568987
38107   sfEventThread-8882  ( 8858) [003] d..2 82315.699139: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
38108<...>-9006 ( 8943) [005] d..2 82315.699156: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
38109<...>-13083 ( 8858) [005] .... 82315.699160: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
38110<...>-9131 ( 9105) [001] d..1 82315.699177: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
38111<...>-9132 ( 9105) [007] d..2 82315.699180: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38112          <idle>-0     (-----) [007] d..1 82315.699187: cpu_idle: state=0 cpu_id=7
38113<...>-13083 ( 8858) [005] d..2 82315.699188: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
38114          <idle>-0     (-----) [005] d..1 82315.699194: cpu_idle: state=0 cpu_id=5
38115          <idle>-0     (-----) [007] dnh2 82315.699197: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
38116          <idle>-0     (-----) [007] .n.1 82315.699200: cpu_idle: state=4294967295 cpu_id=7
38117          <idle>-0     (-----) [007] d..2 82315.699204: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
38118<...>-9132 ( 9105) [007] d..1 82315.699207: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=001
38119<...>-9131 ( 9105) [001] d..2 82315.699221: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38120          <idle>-0     (-----) [001] dnh3 82315.699237: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=001
38121          <idle>-0     (-----) [001] d..2 82315.699244: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
38122          <idle>-0     (-----) [006] ...1 82315.699289: cpu_idle: state=4294967295 cpu_id=6
38123          <idle>-0     (-----) [006] d..1 82315.699291: cpu_idle: state=0 cpu_id=6
38124<...>-9132 ( 9105) [007] d..2 82315.699321: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38125          <idle>-0     (-----) [007] d..1 82315.699326: cpu_idle: state=0 cpu_id=7
38126  kworker/u16:15-1311  ( 1311) [003] d..2 82315.699360: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
38127          <idle>-0     (-----) [003] d..1 82315.699371: cpu_idle: state=0 cpu_id=3
38128<...>-9131 ( 9105) [001] d.s2 82315.699389: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
38129<...>-9131 ( 9105) [001] d.s3 82315.699399: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
38130<...>-9131 ( 9105) [001] d.s3 82315.699406: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
38131          <idle>-0     (-----) [003] .n.1 82315.699412: cpu_idle: state=4294967295 cpu_id=3
38132          <idle>-0     (-----) [003] d..2 82315.699419: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
38133  surfaceflinger-8858  ( 8858) [002] d.h3 82315.699430: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
38134  kworker/u16:15-1311  ( 1311) [003] d..2 82315.699454: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38135          <idle>-0     (-----) [003] d..1 82315.699462: cpu_idle: state=0 cpu_id=3
38136  surfaceflinger-8858  ( 8858) [002] d.h4 82315.699463: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38137<...>-9131 ( 9105) [001] .... 82315.699481: binder_transaction: transaction=1568991 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x5c
38138<...>-9131 ( 9105) [001] .... 82315.699485: binder_transaction_alloc_buf: transaction=1568991 data_size=84 offsets_size=0
38139<...>-9131 ( 9105) [001] d..4 82315.699490: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=003
38140<...>-9131 ( 9105) [001] d..5 82315.699509: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=003
38141          <idle>-0     (-----) [003] .n.1 82315.699515: cpu_idle: state=4294967295 cpu_id=3
38142  Binder:10023_3-10531 (10023) [000] .... 82315.699516: binder_transaction: transaction=1568992 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x10
38143  Binder:10023_3-10531 (10023) [000] .... 82315.699520: binder_transaction_alloc_buf: transaction=1568992 data_size=80 offsets_size=0
38144<...>-9131 ( 9105) [001] d..2 82315.699523: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38145          <idle>-0     (-----) [003] d..2 82315.699523: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
38146  Binder:10023_3-10531 (10023) [000] d..4 82315.699525: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
38147<...>-86 ( 86) [001] d..2 82315.699552: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38148          <idle>-0     (-----) [006] dnh2 82315.699558: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
38149          <idle>-0     (-----) [001] d..1 82315.699566: cpu_idle: state=0 cpu_id=1
38150          <idle>-0     (-----) [006] .n.1 82315.699587: cpu_idle: state=4294967295 cpu_id=6
38151          <idle>-0     (-----) [006] d..2 82315.699591: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
38152<...>-9062 ( 8943) [003] .... 82315.699592: binder_transaction_received: transaction=1568991
38153<...>-25493 ( 8943) [006] .... 82315.699596: binder_transaction_received: transaction=1568992
38154  Binder:10023_3-10531 (10023) [000] d..2 82315.699601: sched_switch: prev_comm=Binder:10023_3 prev_pid=10531 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
38155<...>-25493 ( 8943) [006] d..1 82315.699659: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=003
38156<...>-9062 ( 8943) [003] d..2 82315.699677: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38157          <idle>-0     (-----) [003] d..1 82315.699688: cpu_idle: state=0 cpu_id=3
38158          <idle>-0     (-----) [003] dnh2 82315.699701: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=003
38159          <idle>-0     (-----) [003] .n.1 82315.699706: cpu_idle: state=4294967295 cpu_id=3
38160          <idle>-0     (-----) [003] d..2 82315.699713: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
38161  surfaceflinger-8858  ( 8858) [002] d.h3 82315.699722: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38162    RenderThread-9436  ( 9105) [000] d..1 82315.699725: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
38163          <idle>-0     (-----) [007] dnh2 82315.699746: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38164          <idle>-0     (-----) [007] .n.1 82315.699748: cpu_idle: state=4294967295 cpu_id=7
38165    RenderThread-9436  ( 9105) [000] d..2 82315.699751: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
38166          <idle>-0     (-----) [007] d..2 82315.699752: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38167          <idle>-0     (-----) [001] .n.1 82315.699757: cpu_idle: state=4294967295 cpu_id=1
38168<...>-5340 ( 788) [007] d..2 82315.699783: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
38169          <idle>-0     (-----) [001] d..2 82315.699787: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
38170<...>-5340 ( 788) [007] d..2 82315.699811: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38171  surfaceflinger-8858  ( 8858) [002] d.h1 82315.699813: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
38172          <idle>-0     (-----) [007] d..1 82315.699816: cpu_idle: state=0 cpu_id=7
38173    RenderThread-9436  ( 9105) [000] .... 82315.699838: binder_transaction: transaction=1568993 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
38174    RenderThread-9436  ( 9105) [000] .... 82315.699842: binder_transaction_alloc_buf: transaction=1568993 data_size=104 offsets_size=0
38175    RenderThread-9436  ( 9105) [000] d..4 82315.699846: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
38176    RenderThread-9436  ( 9105) [000] d..5 82315.699864: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
38177    RenderThread-9436  ( 9105) [000] d.h5 82315.699898: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
38178<...>-25493 ( 8943) [006] .... 82315.699909: binder_transaction: transaction=1568994 dest_node=0 dest_proc=10023 dest_thread=10531 reply=1 flags=0x0 code=0x0
38179<...>-25493 ( 8943) [006] .... 82315.699911: binder_transaction_alloc_buf: transaction=1568994 data_size=752 offsets_size=0
38180<...>-25493 ( 8943) [006] d..2 82315.699913: sched_waking: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=000
38181    RenderThread-9436  ( 9105) [000] d.h6 82315.699914: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
38182<...>-9105 ( 9105) [001] d..2 82315.699925: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=576 next_prio=49
38183<...>-25493 ( 8943) [006] d..3 82315.699927: sched_wakeup: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=006
38184         sugov:0-576   (  576) [001] .... 82315.699951: clk_set_rate: pwrcl_clk 1612800000
38185    RenderThread-9436  ( 9105) [000] d..2 82315.699955: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
38186         sugov:0-576   (  576) [001] .... 82315.699958: clk_set_rate: cpu3_pwrcl_clk 1516800000
38187<...>-13083 ( 8858) [000] .... 82315.699961: binder_transaction_received: transaction=1568993
38188<...>-25493 ( 8943) [006] d..2 82315.699962: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=Binder:10023_3 next_pid=10531 next_prio=120
38189         sugov:0-576   (  576) [001] .... 82315.699967: clk_set_rate: cpu2_pwrcl_clk 1516800000
38190  Binder:10023_3-10531 (10023) [006] .... 82315.699968: binder_transaction_received: transaction=1568994
38191         sugov:0-576   (  576) [001] .... 82315.699974: clk_set_rate: cpu1_pwrcl_clk 1516800000
38192         sugov:0-576   (  576) [001] .... 82315.699980: clk_set_rate: cpu0_pwrcl_clk 1612800000
38193<...>-9062 ( 8943) [003] .... 82315.699985: binder_transaction: transaction=1568995 dest_node=0 dest_proc=9105 dest_thread=9131 reply=1 flags=0x0 code=0x0
38194         sugov:0-576   (  576) [001] .... 82315.699987: cpu_frequency: state=1612800 cpu_id=0
38195<...>-9062 ( 8943) [003] .... 82315.699989: binder_transaction_alloc_buf: transaction=1568995 data_size=8 offsets_size=0
38196<...>-9062 ( 8943) [003] d..2 82315.699993: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=001
38197         sugov:0-576   (  576) [001] .... 82315.700002: cpu_frequency: state=1612800 cpu_id=1
38198         sugov:0-576   (  576) [001] .... 82315.700004: cpu_frequency: state=1612800 cpu_id=2
38199         sugov:0-576   (  576) [001] .... 82315.700007: cpu_frequency: state=1612800 cpu_id=3
38200<...>-9062 ( 8943) [003] d..3 82315.700012: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
38201<...>-13083 ( 8858) [000] .... 82315.700019: binder_transaction: transaction=1568996 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
38202         sugov:0-576   (  576) [001] d..2 82315.700021: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
38203<...>-13083 ( 8858) [000] .... 82315.700023: binder_transaction_alloc_buf: transaction=1568996 data_size=52 offsets_size=8
38204<...>-13083 ( 8858) [000] d..2 82315.700031: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
38205<...>-9105 ( 9105) [001] .... 82315.700033: binder_transaction: transaction=1568997 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xf
38206<...>-9105 ( 9105) [001] .... 82315.700036: binder_transaction_alloc_buf: transaction=1568997 data_size=72 offsets_size=0
38207<...>-9105 ( 9105) [001] d..4 82315.700039: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=003
38208<...>-13083 ( 8858) [000] d..3 82315.700041: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
38209<...>-9062 ( 8943) [003] d..2 82315.700042: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
38210<...>-9131 ( 9105) [003] .... 82315.700048: binder_transaction_received: transaction=1568995
38211<...>-9105 ( 9105) [001] d..5 82315.700058: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
38212<...>-13083 ( 8858) [000] d..2 82315.700068: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
38213<...>-9105 ( 9105) [001] d..2 82315.700070: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
38214    RenderThread-9436  ( 9105) [000] .... 82315.700074: binder_transaction_received: transaction=1568996
38215<...>-9062 ( 8943) [001] .... 82315.700075: binder_transaction_received: transaction=1568997
38216<...>-9131 ( 9105) [003] d..2 82315.700151: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38217          <idle>-0     (-----) [003] d..1 82315.700165: cpu_idle: state=0 cpu_id=3
38218  surfaceflinger-8858  ( 8858) [002] ...1 82315.700210: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
38219  surfaceflinger-8858  ( 8858) [002] ...1 82315.700215: tracing_mark_write: E|8858
38220  Binder:10023_3-10531 (10023) [006] .... 82315.700237: binder_transaction: transaction=1568998 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x2e
38221  Binder:10023_3-10531 (10023) [006] .... 82315.700239: binder_transaction_alloc_buf: transaction=1568998 data_size=80 offsets_size=0
38222  Binder:10023_3-10531 (10023) [006] d..4 82315.700240: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
38223  Binder:10023_3-10531 (10023) [006] d..5 82315.700246: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
38224  Binder:10023_3-10531 (10023) [006] d..2 82315.700252: sched_switch: prev_comm=Binder:10023_3 prev_pid=10531 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
38225<...>-25493 ( 8943) [006] .... 82315.700257: binder_transaction_received: transaction=1568998
38226  surfaceflinger-8858  ( 8858) [002] .... 82315.700261: binder_transaction: transaction=1568999 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
38227  surfaceflinger-8858  ( 8858) [002] .... 82315.700264: binder_transaction_alloc_buf: transaction=1568999 data_size=620 offsets_size=112
38228  surfaceflinger-8858  ( 8858) [002] ...2 82315.700282: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
38229  surfaceflinger-8858  ( 8858) [002] d..4 82315.700288: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
38230  surfaceflinger-8858  ( 8858) [002] d..5 82315.700310: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
38231          <idle>-0     (-----) [003] .n.1 82315.700315: cpu_idle: state=4294967295 cpu_id=3
38232          <idle>-0     (-----) [003] d..2 82315.700323: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
38233  surfaceflinger-8858  ( 8858) [002] d..2 82315.700325: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
38234 [email protected]   (  619) [003] .... 82315.700331: binder_transaction_received: transaction=1568999
38235     rcu_preempt-7     (    7) [002] d..2 82315.700338: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38236<...>-87 ( 87) [002] d..2 82315.700369: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
38237 [email protected]   (  619) [003] ...1 82315.700369: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
38238          <idle>-0     (-----) [002] d..1 82315.700380: cpu_idle: state=0 cpu_id=2
38239<...>-9062 ( 8943) [001] .... 82315.700406: binder_transaction: transaction=1569000 dest_node=0 dest_proc=9105 dest_thread=9105 reply=1 flags=0x0 code=0x0
38240<...>-9062 ( 8943) [001] .... 82315.700411: binder_transaction_alloc_buf: transaction=1569000 data_size=752 offsets_size=0
38241<...>-9062 ( 8943) [001] d..2 82315.700414: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
38242<...>-9062 ( 8943) [001] d..3 82315.700426: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
38243<...>-9062 ( 8943) [001] d..2 82315.700454: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
38244<...>-9105 ( 9105) [001] .... 82315.700460: binder_transaction_received: transaction=1569000
38245 [email protected]   (  619) [003] ...1 82315.700482: tracing_mark_write: B|619|HWCSession::PresentDisplay::
38246<...>-25493 ( 8943) [006] .... 82315.700563: binder_transaction: transaction=1569001 dest_node=0 dest_proc=10023 dest_thread=10531 reply=1 flags=0x0 code=0x0
38247<...>-25493 ( 8943) [006] .... 82315.700567: binder_transaction_alloc_buf: transaction=1569001 data_size=3172 offsets_size=0
38248<...>-25493 ( 8943) [006] d..2 82315.700569: sched_waking: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=006
38249<...>-25493 ( 8943) [006] d..3 82315.700577: sched_wakeup: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=006
38250<...>-25493 ( 8943) [006] d..2 82315.700593: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=Binder:10023_3 next_pid=10531 next_prio=120
38251  Binder:10023_3-10531 (10023) [006] .... 82315.700598: binder_transaction_received: transaction=1569001
38252<...>-9105 ( 9105) [001] d..1 82315.700740: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=006
38253          <idle>-0     (-----) [002] d.h4 82315.700759: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38254<...>-9105 ( 9105) [001] d..2 82315.700772: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=002
38255          <idle>-0     (-----) [002] dnh5 82315.700811: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
38256          <idle>-0     (-----) [002] .n.1 82315.700821: cpu_idle: state=4294967295 cpu_id=2
38257          <idle>-0     (-----) [002] d..2 82315.700831: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
38258<...>-9105 ( 9105) [001] d..2 82315.700871: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38259          <idle>-0     (-----) [001] d..1 82315.700886: cpu_idle: state=0 cpu_id=1
38260  Binder:10023_3-10531 (10023) [006] .... 82315.700917: binder_transaction: transaction=1569002 dest_node=397475 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x8
38261  Binder:10023_3-10531 (10023) [006] .... 82315.700918: binder_transaction_alloc_buf: transaction=1569002 data_size=76 offsets_size=0
38262  Binder:10023_3-10531 (10023) [006] d..4 82315.700920: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
38263  Binder:10023_3-10531 (10023) [006] d..5 82315.700927: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
38264  Binder:10023_3-10531 (10023) [006] d..2 82315.700933: sched_switch: prev_comm=Binder:10023_3 prev_pid=10531 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
38265<...>-25493 ( 8943) [006] .... 82315.700938: binder_transaction_received: transaction=1569002
38266<...>-9321 ( 9105) [002] .... 82315.700979: binder_transaction: transaction=1569003 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x37
38267<...>-9321 ( 9105) [002] .... 82315.700983: binder_transaction_alloc_buf: transaction=1569003 data_size=76 offsets_size=0
38268<...>-9321 ( 9105) [002] d..4 82315.700987: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
38269<...>-9321 ( 9105) [002] d..5 82315.701002: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
38270          <idle>-0     (-----) [001] .n.1 82315.701009: cpu_idle: state=4294967295 cpu_id=1
38271<...>-9321 ( 9105) [002] d..2 82315.701014: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38272          <idle>-0     (-----) [001] d..2 82315.701018: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
38273<...>-9062 ( 8943) [001] .... 82315.701025: binder_transaction_received: transaction=1569003
38274 [email protected]   (  619) [003] ...1 82315.701031: tracing_mark_write: B|619|HWDeviceDRM::Validate::
38275<...>-86 ( 86) [002] d..2 82315.701046: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
38276          <idle>-0     (-----) [002] d.h5 82315.701065: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38277          <idle>-0     (-----) [007] dnh2 82315.701080: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38278          <idle>-0     (-----) [007] .n.1 82315.701083: cpu_idle: state=4294967295 cpu_id=7
38279<...>-25493 ( 8943) [006] d..2 82315.701085: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
38280          <idle>-0     (-----) [007] d..2 82315.701087: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38281<...>-9062 ( 8943) [001] d..1 82315.701093: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
38282          <idle>-0     (-----) [006] d..1 82315.701095: cpu_idle: state=0 cpu_id=6
38283<...>-5340 ( 788) [007] d..2 82315.701098: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
38284          <idle>-0     (-----) [002] d..1 82315.701101: cpu_idle: state=0 cpu_id=2
38285<...>-5340 ( 788) [007] d..2 82315.701108: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38286          <idle>-0     (-----) [007] d..1 82315.701110: cpu_idle: state=0 cpu_id=7
38287          <idle>-0     (-----) [006] dnh2 82315.701112: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
38288          <idle>-0     (-----) [002] dnh2 82315.701114: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
38289          <idle>-0     (-----) [006] .n.1 82315.701115: cpu_idle: state=4294967295 cpu_id=6
38290          <idle>-0     (-----) [002] .n.1 82315.701118: cpu_idle: state=4294967295 cpu_id=2
38291          <idle>-0     (-----) [006] d..2 82315.701119: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
38292          <idle>-0     (-----) [002] d..2 82315.701126: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38293<...>-25493 ( 8943) [006] .... 82315.701148: binder_transaction: transaction=1569004 dest_node=0 dest_proc=10023 dest_thread=10531 reply=1 flags=0x0 code=0x0
38294<...>-25493 ( 8943) [006] .... 82315.701150: binder_transaction_alloc_buf: transaction=1569004 data_size=8 offsets_size=0
38295<...>-25493 ( 8943) [006] d..2 82315.701151: sched_waking: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=006
38296<...>-87 ( 87) [002] d..2 82315.701151: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
38297<...>-25493 ( 8943) [006] d..3 82315.701156: sched_wakeup: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=006
38298          <idle>-0     (-----) [002] d..1 82315.701158: cpu_idle: state=0 cpu_id=2
38299<...>-25493 ( 8943) [006] d..2 82315.701169: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=Binder:10023_3 next_pid=10531 next_prio=120
38300  Binder:10023_3-10531 (10023) [006] .... 82315.701174: binder_transaction_received: transaction=1569004
38301    RenderThread-9436  ( 9105) [000] d..2 82315.701361: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
38302          <idle>-0     (-----) [000] d..1 82315.701376: cpu_idle: state=0 cpu_id=0
38303          <idle>-0     (-----) [000] d.h2 82315.701448: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
38304          <idle>-0     (-----) [000] d.h3 82315.701455: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
38305  Binder:10023_3-10531 (10023) [006] d..3 82315.701456: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
38306          <idle>-0     (-----) [000] dnh3 82315.701459: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
38307          <idle>-0     (-----) [000] .n.1 82315.701469: cpu_idle: state=4294967295 cpu_id=0
38308 [email protected]   (  619) [003] ...1 82315.701474: tracing_mark_write: E|619
38309          <idle>-0     (-----) [000] d..2 82315.701478: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
38310          <idle>-0     (-----) [002] dnh2 82315.701484: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=002
38311          <idle>-0     (-----) [002] .n.1 82315.701488: cpu_idle: state=4294967295 cpu_id=2
38312          <idle>-0     (-----) [002] d..2 82315.701495: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
38313  Binder:10023_3-10531 (10023) [006] d..2 82315.701518: sched_switch: prev_comm=Binder:10023_3 prev_pid=10531 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
38314<...>-9062 ( 8943) [001] .... 82315.701519: binder_transaction: transaction=1569005 dest_node=0 dest_proc=9105 dest_thread=9321 reply=1 flags=0x0 code=0x0
38315<...>-9062 ( 8943) [001] .... 82315.701523: binder_transaction_alloc_buf: transaction=1569005 data_size=784 offsets_size=0
38316          <idle>-0     (-----) [006] d..1 82315.701527: cpu_idle: state=0 cpu_id=6
38317<...>-9062 ( 8943) [001] d..2 82315.701528: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=002
38318    RenderThread-9436  ( 9105) [000] d.h2 82315.701540: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
38319<...>-9062 ( 8943) [001] d..3 82315.701545: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=001
38320    RenderThread-9436  ( 9105) [000] d.h3 82315.701565: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
38321<...>-9062 ( 8943) [001] d..2 82315.701576: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
38322 s.nexuslauncher-10023 (10023) [002] d..2 82315.701578: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
38323<...>-9321 ( 9105) [001] .... 82315.701582: binder_transaction_received: transaction=1569005
38324 kgsl_worker_thr-258   (  258) [002] d..2 82315.701631: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
38325 [email protected]   (  619) [003] ...1 82315.701654: tracing_mark_write: B|619|HWDeviceDRM::Commit::
38326 kgsl_worker_thr-258   (  258) [002] d..3 82315.701660: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
38327 [email protected]   (  619) [003] ...1 82315.701663: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
38328 kgsl_worker_thr-258   (  258) [002] d..2 82315.701674: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
38329 s.nexuslauncher-10023 (10023) [002] d..2 82315.701699: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
38330          <idle>-0     (-----) [002] d..1 82315.701709: cpu_idle: state=0 cpu_id=2
38331    RenderThread-9436  ( 9105) [000] .... 82315.701720: binder_transaction: transaction=1569006 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
38332    RenderThread-9436  ( 9105) [000] .... 82315.701724: binder_transaction_alloc_buf: transaction=1569006 data_size=192 offsets_size=8
38333    RenderThread-9436  ( 9105) [000] d..4 82315.701732: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
38334    RenderThread-9436  ( 9105) [000] dn.5 82315.701744: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
38335    RenderThread-9436  ( 9105) [000] d..2 82315.701750: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
38336<...>-13083 ( 8858) [000] .... 82315.701756: binder_transaction_received: transaction=1569006
38337<...>-9321 ( 9105) [001] .... 82315.701871: binder_transaction: transaction=1569007 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xd
38338<...>-9321 ( 9105) [001] .... 82315.701874: binder_transaction_alloc_buf: transaction=1569007 data_size=160 offsets_size=0
38339<...>-9321 ( 9105) [001] d..4 82315.701878: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
38340<...>-9321 ( 9105) [001] d..5 82315.701899: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
38341          <idle>-0     (-----) [002] .n.1 82315.701905: cpu_idle: state=4294967295 cpu_id=2
38342<...>-9321 ( 9105) [001] d..2 82315.701911: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
38343          <idle>-0     (-----) [002] d..2 82315.701915: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
38344<...>-13083 ( 8858) [000] .... 82315.701915: binder_transaction: transaction=1569008 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
38345<...>-13083 ( 8858) [000] .... 82315.701919: binder_transaction_alloc_buf: transaction=1569008 data_size=68 offsets_size=0
38346<...>-9062 ( 8943) [002] .... 82315.701922: binder_transaction_received: transaction=1569007
38347<...>-9062 ( 8943) [002] d.h5 82315.701922: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
38348<...>-9062 ( 8943) [002] d.h6 82315.701922: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38349<...>-13083 ( 8858) [000] d..2 82315.701947: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
38350    RenderThread-9436  ( 9105) [000] .... 82315.701954: binder_transaction_received: transaction=1569008
38351  kworker/u16:15-1311  ( 1311) [001] d..2 82315.701963: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38352          <idle>-0     (-----) [001] d..2 82315.701981: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38353<...>-86 ( 86) [001] d..2 82315.702008: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38354          <idle>-0     (-----) [001] d..1 82315.702019: cpu_idle: state=0 cpu_id=1
38355    RenderThread-9436  ( 9105) [000] d..2 82315.702024: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38356          <idle>-0     (-----) [000] d..1 82315.702039: cpu_idle: state=0 cpu_id=0
38357 [email protected]   (  619) [003] d..2 82315.702086: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
38358 [email protected]   (  619) [003] d..3 82315.702110: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
38359          <idle>-0     (-----) [000] .n.1 82315.702117: cpu_idle: state=4294967295 cpu_id=0
38360          <idle>-0     (-----) [000] d..2 82315.702125: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
38361 [email protected]   (  619) [003] ...1 82315.702187: tracing_mark_write: E|619
38362 [email protected]   (  619) [003] ...1 82315.702191: tracing_mark_write: E|619
38363 [email protected]   (  619) [003] ...1 82315.702236: tracing_mark_write: E|619
38364<...>-9062 ( 8943) [002] d.h3 82315.702241: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38365          <idle>-0     (-----) [007] dnh2 82315.702258: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38366          <idle>-0     (-----) [007] .n.1 82315.702260: cpu_idle: state=4294967295 cpu_id=7
38367          <idle>-0     (-----) [007] d..2 82315.702263: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38368<...>-5340 ( 788) [007] d..2 82315.702273: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
38369 [email protected]   (  619) [003] ...1 82315.702280: tracing_mark_write: E|619
38370<...>-5340 ( 788) [007] d..2 82315.702291: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38371          <idle>-0     (-----) [007] d..1 82315.702293: cpu_idle: state=0 cpu_id=7
38372 [email protected]   (  619) [003] d.h1 82315.702297: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38373 [email protected]   (  619) [003] .... 82315.702305: binder_transaction: transaction=1569009 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
38374 [email protected]   (  619) [003] .... 82315.702308: binder_transaction_alloc_buf: transaction=1569009 data_size=736 offsets_size=144
38375 [email protected]   (  619) [003] d..2 82315.702324: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
38376 [email protected]   (  619) [003] d..3 82315.702344: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
38377 [email protected]   (  619) [003] .... 82315.702348: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
38378          <idle>-0     (-----) [001] .n.1 82315.702350: cpu_idle: state=4294967295 cpu_id=1
38379          <idle>-0     (-----) [001] d..2 82315.702356: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
38380  surfaceflinger-8858  ( 8858) [001] .... 82315.702365: binder_transaction_received: transaction=1569009
38381 [email protected]   (  619) [003] d..2 82315.702412: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38382<...>-87 ( 87) [003] d..2 82315.702445: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38383<...>-9062 ( 8943) [002] .... 82315.702463: binder_transaction: transaction=1569010 dest_node=0 dest_proc=9105 dest_thread=9321 reply=1 flags=0x0 code=0x0
38384          <idle>-0     (-----) [003] d..1 82315.702464: cpu_idle: state=0 cpu_id=3
38385<...>-9062 ( 8943) [002] .... 82315.702467: binder_transaction_alloc_buf: transaction=1569010 data_size=2112 offsets_size=0
38386<...>-9062 ( 8943) [002] d..2 82315.702470: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=001
38387<...>-9062 ( 8943) [002] d..3 82315.702487: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=002
38388<...>-9062 ( 8943) [002] d..2 82315.702516: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
38389<...>-9321 ( 9105) [002] .... 82315.702522: binder_transaction_received: transaction=1569010
38390<...>-9321 ( 9105) [002] d..2 82315.702702: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
38391          <idle>-0     (-----) [002] d..1 82315.702712: cpu_idle: state=0 cpu_id=2
38392  surfaceflinger-8858  ( 8858) [001] d..2 82315.702785: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38393          <idle>-0     (-----) [001] d..1 82315.702799: cpu_idle: state=0 cpu_id=1
38394          <idle>-0     (-----) [002] d.h4 82315.703126: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38395          <idle>-0     (-----) [002] d.h5 82315.703139: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38396          <idle>-0     (-----) [001] .n.1 82315.703145: cpu_idle: state=4294967295 cpu_id=1
38397          <idle>-0     (-----) [002] ...1 82315.703146: cpu_idle: state=4294967295 cpu_id=2
38398          <idle>-0     (-----) [002] d..1 82315.703149: cpu_idle: state=0 cpu_id=2
38399          <idle>-0     (-----) [001] d..2 82315.703154: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38400<...>-86 ( 86) [001] d..2 82315.703182: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38401          <idle>-0     (-----) [001] d..1 82315.703190: cpu_idle: state=0 cpu_id=1
38402          <idle>-0     (-----) [002] d.h4 82315.703418: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38403          <idle>-0     (-----) [007] dnh2 82315.703431: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38404          <idle>-0     (-----) [007] .n.1 82315.703433: cpu_idle: state=4294967295 cpu_id=7
38405          <idle>-0     (-----) [007] d..2 82315.703436: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38406          <idle>-0     (-----) [002] ...1 82315.703443: cpu_idle: state=4294967295 cpu_id=2
38407<...>-5340 ( 788) [007] d..2 82315.703444: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38408          <idle>-0     (-----) [002] d..1 82315.703446: cpu_idle: state=0 cpu_id=2
38409<...>-5340 ( 788) [007] d..2 82315.703453: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38410          <idle>-0     (-----) [007] d..1 82315.703456: cpu_idle: state=0 cpu_id=7
38411          <idle>-0     (-----) [003] dnh2 82315.703461: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38412          <idle>-0     (-----) [003] .n.1 82315.703466: cpu_idle: state=4294967295 cpu_id=3
38413          <idle>-0     (-----) [003] d..2 82315.703473: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38414<...>-87 ( 87) [003] d..2 82315.703498: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38415          <idle>-0     (-----) [003] d..1 82315.703505: cpu_idle: state=0 cpu_id=3
38416          <idle>-0     (-----) [002] d.h4 82315.703524: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38417          <idle>-0     (-----) [002] d.h5 82315.703534: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38418          <idle>-0     (-----) [001] .n.1 82315.703539: cpu_idle: state=4294967295 cpu_id=1
38419          <idle>-0     (-----) [002] ...1 82315.703540: cpu_idle: state=4294967295 cpu_id=2
38420          <idle>-0     (-----) [002] d..1 82315.703542: cpu_idle: state=0 cpu_id=2
38421          <idle>-0     (-----) [001] d..2 82315.703547: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38422<...>-86 ( 86) [001] d..2 82315.703568: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38423          <idle>-0     (-----) [001] d..1 82315.703575: cpu_idle: state=0 cpu_id=1
38424 crtc_commit:111-321   (  321) [000] .... 82315.703721: clk_set_rate: disp_cc_mdss_mdp_clk_src 171428571
38425          <idle>-0     (-----) [002] d.h4 82315.703750: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38426 crtc_commit:111-321   (  321) [000] .... 82315.703757: clk_set_rate: disp_cc_mdss_mdp_lut_clk 0
38427 crtc_commit:111-321   (  321) [000] .... 82315.703758: clk_set_rate: disp_cc_mdss_mdp_clk 171428571
38428          <idle>-0     (-----) [007] dnh2 82315.703761: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38429          <idle>-0     (-----) [007] .n.1 82315.703763: cpu_idle: state=4294967295 cpu_id=7
38430          <idle>-0     (-----) [007] d..2 82315.703766: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38431          <idle>-0     (-----) [002] ...1 82315.703773: cpu_idle: state=4294967295 cpu_id=2
38432          <idle>-0     (-----) [002] d..1 82315.703775: cpu_idle: state=0 cpu_id=2
38433<...>-5340 ( 788) [007] d..2 82315.703777: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38434<...>-5340 ( 788) [007] d..2 82315.703786: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38435          <idle>-0     (-----) [007] d..1 82315.703789: cpu_idle: state=0 cpu_id=7
38436          <idle>-0     (-----) [003] dnh2 82315.703791: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38437          <idle>-0     (-----) [003] .n.1 82315.703796: cpu_idle: state=4294967295 cpu_id=3
38438 crtc_commit:111-321   (  321) [000] d..2 82315.703801: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
38439          <idle>-0     (-----) [003] d..2 82315.703802: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38440          <idle>-0     (-----) [000] d..1 82315.703813: cpu_idle: state=0 cpu_id=0
38441<...>-87 ( 87) [003] d..2 82315.703826: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38442          <idle>-0     (-----) [003] d..1 82315.703832: cpu_idle: state=0 cpu_id=3
38443          <idle>-0     (-----) [002] d.h4 82315.703852: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38444          <idle>-0     (-----) [002] d.h5 82315.703861: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38445          <idle>-0     (-----) [001] .n.1 82315.703866: cpu_idle: state=4294967295 cpu_id=1
38446          <idle>-0     (-----) [002] ...1 82315.703867: cpu_idle: state=4294967295 cpu_id=2
38447          <idle>-0     (-----) [002] d..1 82315.703870: cpu_idle: state=0 cpu_id=2
38448          <idle>-0     (-----) [001] d..2 82315.703873: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38449<...>-86 ( 86) [001] d..2 82315.703894: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38450          <idle>-0     (-----) [001] d..1 82315.703901: cpu_idle: state=0 cpu_id=1
38451          <idle>-0     (-----) [002] d.h4 82315.704115: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38452          <idle>-0     (-----) [007] dnh2 82315.704127: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38453          <idle>-0     (-----) [007] .n.1 82315.704129: cpu_idle: state=4294967295 cpu_id=7
38454          <idle>-0     (-----) [007] d..2 82315.704132: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38455          <idle>-0     (-----) [002] ...1 82315.704138: cpu_idle: state=4294967295 cpu_id=2
38456<...>-5340 ( 788) [007] d..2 82315.704139: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38457          <idle>-0     (-----) [002] d..1 82315.704140: cpu_idle: state=0 cpu_id=2
38458<...>-5340 ( 788) [007] d..2 82315.704148: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38459          <idle>-0     (-----) [007] d..1 82315.704150: cpu_idle: state=0 cpu_id=7
38460          <idle>-0     (-----) [003] dnh2 82315.704153: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38461          <idle>-0     (-----) [003] .n.1 82315.704157: cpu_idle: state=4294967295 cpu_id=3
38462          <idle>-0     (-----) [003] d..2 82315.704163: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38463<...>-87 ( 87) [003] d..2 82315.704187: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38464          <idle>-0     (-----) [003] d..1 82315.704193: cpu_idle: state=0 cpu_id=3
38465          <idle>-0     (-----) [002] d.h4 82315.704214: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38466          <idle>-0     (-----) [002] d.h5 82315.704223: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38467          <idle>-0     (-----) [001] .n.1 82315.704228: cpu_idle: state=4294967295 cpu_id=1
38468          <idle>-0     (-----) [002] ...1 82315.704229: cpu_idle: state=4294967295 cpu_id=2
38469          <idle>-0     (-----) [002] d..1 82315.704232: cpu_idle: state=0 cpu_id=2
38470          <idle>-0     (-----) [001] d..2 82315.704236: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38471<...>-86 ( 86) [001] d..2 82315.704257: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38472          <idle>-0     (-----) [001] d..1 82315.704264: cpu_idle: state=0 cpu_id=1
38473          <idle>-0     (-----) [002] d.h4 82315.704459: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38474          <idle>-0     (-----) [007] dnh2 82315.704471: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38475          <idle>-0     (-----) [007] .n.1 82315.704473: cpu_idle: state=4294967295 cpu_id=7
38476          <idle>-0     (-----) [007] d..2 82315.704475: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38477          <idle>-0     (-----) [002] ...1 82315.704482: cpu_idle: state=4294967295 cpu_id=2
38478<...>-5340 ( 788) [007] d..2 82315.704483: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38479          <idle>-0     (-----) [002] d..1 82315.704484: cpu_idle: state=0 cpu_id=2
38480<...>-5340 ( 788) [007] d..2 82315.704492: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38481          <idle>-0     (-----) [007] d..1 82315.704494: cpu_idle: state=0 cpu_id=7
38482          <idle>-0     (-----) [003] dnh2 82315.704496: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38483          <idle>-0     (-----) [003] .n.1 82315.704500: cpu_idle: state=4294967295 cpu_id=3
38484          <idle>-0     (-----) [003] d..2 82315.704506: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38485<...>-87 ( 87) [003] d..2 82315.704529: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38486          <idle>-0     (-----) [003] d..1 82315.704535: cpu_idle: state=0 cpu_id=3
38487          <idle>-0     (-----) [002] d.h4 82315.704554: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38488          <idle>-0     (-----) [002] d.h5 82315.704564: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38489          <idle>-0     (-----) [001] .n.1 82315.704569: cpu_idle: state=4294967295 cpu_id=1
38490          <idle>-0     (-----) [002] ...1 82315.704569: cpu_idle: state=4294967295 cpu_id=2
38491          <idle>-0     (-----) [002] d..1 82315.704572: cpu_idle: state=0 cpu_id=2
38492          <idle>-0     (-----) [001] d..2 82315.704576: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38493<...>-86 ( 86) [001] d..2 82315.704597: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38494          <idle>-0     (-----) [001] d..1 82315.704603: cpu_idle: state=0 cpu_id=1
38495          <idle>-0     (-----) [002] d.h4 82315.704791: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38496          <idle>-0     (-----) [007] dnh2 82315.704802: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38497          <idle>-0     (-----) [007] .n.1 82315.704804: cpu_idle: state=4294967295 cpu_id=7
38498          <idle>-0     (-----) [007] d..2 82315.704807: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38499          <idle>-0     (-----) [002] ...1 82315.704813: cpu_idle: state=4294967295 cpu_id=2
38500<...>-5340 ( 788) [007] d..2 82315.704814: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38501          <idle>-0     (-----) [002] d..1 82315.704816: cpu_idle: state=0 cpu_id=2
38502<...>-5340 ( 788) [007] d..2 82315.704823: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38503          <idle>-0     (-----) [007] d..1 82315.704825: cpu_idle: state=0 cpu_id=7
38504          <idle>-0     (-----) [003] dnh2 82315.704827: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38505          <idle>-0     (-----) [003] .n.1 82315.704831: cpu_idle: state=4294967295 cpu_id=3
38506          <idle>-0     (-----) [003] d..2 82315.704839: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38507<...>-87 ( 87) [003] d..2 82315.704862: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38508          <idle>-0     (-----) [003] d..1 82315.704868: cpu_idle: state=0 cpu_id=3
38509          <idle>-0     (-----) [002] d.h4 82315.704888: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38510          <idle>-0     (-----) [002] d.h5 82315.704898: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38511          <idle>-0     (-----) [001] .n.1 82315.704903: cpu_idle: state=4294967295 cpu_id=1
38512          <idle>-0     (-----) [002] ...1 82315.704903: cpu_idle: state=4294967295 cpu_id=2
38513          <idle>-0     (-----) [002] d..1 82315.704906: cpu_idle: state=0 cpu_id=2
38514          <idle>-0     (-----) [001] d..2 82315.704910: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38515          <idle>-0     (-----) [000] ...1 82315.704927: cpu_idle: state=4294967295 cpu_id=0
38516          <idle>-0     (-----) [000] d..1 82315.704930: cpu_idle: state=0 cpu_id=0
38517<...>-86 ( 86) [001] d..2 82315.704931: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38518          <idle>-0     (-----) [001] d..1 82315.704937: cpu_idle: state=0 cpu_id=1
38519          <idle>-0     (-----) [002] d.H4 82315.705143: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38520          <idle>-0     (-----) [007] dnh2 82315.705155: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38521          <idle>-0     (-----) [007] .n.1 82315.705158: cpu_idle: state=4294967295 cpu_id=7
38522          <idle>-0     (-----) [007] d..2 82315.705161: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38523          <idle>-0     (-----) [002] d.s2 82315.705168: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
38524          <idle>-0     (-----) [002] dns3 82315.705179: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
38525          <idle>-0     (-----) [002] .n.1 82315.705193: cpu_idle: state=4294967295 cpu_id=2
38526          <idle>-0     (-----) [002] d..2 82315.705200: 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
38527     rcu_preempt-7     (    7) [002] d..2 82315.705226: 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
38528<...>-5340 ( 788) [007] d..2 82315.705230: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38529          <idle>-0     (-----) [002] d..1 82315.705235: cpu_idle: state=0 cpu_id=2
38530<...>-5340 ( 788) [007] d..2 82315.705242: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38531          <idle>-0     (-----) [003] dnh2 82315.705245: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38532          <idle>-0     (-----) [007] d..1 82315.705245: cpu_idle: state=0 cpu_id=7
38533          <idle>-0     (-----) [003] .n.1 82315.705249: cpu_idle: state=4294967295 cpu_id=3
38534          <idle>-0     (-----) [003] d..2 82315.705255: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38535<...>-87 ( 87) [003] d..2 82315.705281: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38536          <idle>-0     (-----) [003] d..1 82315.705288: cpu_idle: state=0 cpu_id=3
38537          <idle>-0     (-----) [007] ...1 82315.705670: cpu_idle: state=4294967295 cpu_id=7
38538          <idle>-0     (-----) [007] d..1 82315.705672: cpu_idle: state=0 cpu_id=7
38539          <idle>-0     (-----) [002] d.h4 82315.706049: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38540          <idle>-0     (-----) [002] d.h5 82315.706060: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38541          <idle>-0     (-----) [001] .n.1 82315.706066: cpu_idle: state=4294967295 cpu_id=1
38542          <idle>-0     (-----) [002] ...1 82315.706067: cpu_idle: state=4294967295 cpu_id=2
38543          <idle>-0     (-----) [002] d..1 82315.706070: cpu_idle: state=0 cpu_id=2
38544          <idle>-0     (-----) [001] d..2 82315.706074: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38545<...>-86 ( 86) [001] d..2 82315.706097: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38546          <idle>-0     (-----) [001] d..1 82315.706104: cpu_idle: state=0 cpu_id=1
38547          <idle>-0     (-----) [002] d.h4 82315.706421: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38548          <idle>-0     (-----) [007] dnh2 82315.706434: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38549          <idle>-0     (-----) [007] .n.1 82315.706436: cpu_idle: state=4294967295 cpu_id=7
38550          <idle>-0     (-----) [007] d..2 82315.706439: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38551          <idle>-0     (-----) [002] ...1 82315.706445: cpu_idle: state=4294967295 cpu_id=2
38552          <idle>-0     (-----) [002] d..1 82315.706448: cpu_idle: state=0 cpu_id=2
38553<...>-5340 ( 788) [007] d..2 82315.706450: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38554<...>-5340 ( 788) [007] d..2 82315.706460: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38555          <idle>-0     (-----) [007] d..1 82315.706463: cpu_idle: state=0 cpu_id=7
38556          <idle>-0     (-----) [003] dnh2 82315.706465: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38557          <idle>-0     (-----) [003] .n.1 82315.706469: cpu_idle: state=4294967295 cpu_id=3
38558          <idle>-0     (-----) [003] d..2 82315.706475: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38559<...>-87 ( 87) [003] d..2 82315.706499: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38560          <idle>-0     (-----) [003] d..1 82315.706505: cpu_idle: state=0 cpu_id=3
38561          <idle>-0     (-----) [002] d.h4 82315.706525: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38562          <idle>-0     (-----) [002] d.h5 82315.706534: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38563          <idle>-0     (-----) [001] .n.1 82315.706540: cpu_idle: state=4294967295 cpu_id=1
38564          <idle>-0     (-----) [002] ...1 82315.706540: cpu_idle: state=4294967295 cpu_id=2
38565          <idle>-0     (-----) [002] d..1 82315.706543: cpu_idle: state=0 cpu_id=2
38566          <idle>-0     (-----) [001] d..2 82315.706547: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38567<...>-86 ( 86) [001] d..2 82315.706569: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38568          <idle>-0     (-----) [001] d..1 82315.706575: cpu_idle: state=0 cpu_id=1
38569          <idle>-0     (-----) [002] d.h4 82315.706732: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38570          <idle>-0     (-----) [007] dnh2 82315.706744: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38571          <idle>-0     (-----) [007] .n.1 82315.706747: cpu_idle: state=4294967295 cpu_id=7
38572          <idle>-0     (-----) [007] d..2 82315.706750: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38573          <idle>-0     (-----) [002] ...1 82315.706756: cpu_idle: state=4294967295 cpu_id=2
38574<...>-5340 ( 788) [007] d..2 82315.706758: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38575          <idle>-0     (-----) [002] d..1 82315.706758: cpu_idle: state=0 cpu_id=2
38576<...>-5340 ( 788) [007] d..2 82315.706767: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38577          <idle>-0     (-----) [007] d..1 82315.706769: cpu_idle: state=0 cpu_id=7
38578          <idle>-0     (-----) [003] dnh2 82315.706771: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38579          <idle>-0     (-----) [003] .n.1 82315.706775: cpu_idle: state=4294967295 cpu_id=3
38580          <idle>-0     (-----) [003] d..2 82315.706781: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38581<...>-87 ( 87) [003] d..2 82315.706805: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38582          <idle>-0     (-----) [003] d..1 82315.706812: cpu_idle: state=0 cpu_id=3
38583          <idle>-0     (-----) [002] d.h4 82315.706833: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38584          <idle>-0     (-----) [002] d.h5 82315.706843: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38585          <idle>-0     (-----) [001] .n.1 82315.706848: cpu_idle: state=4294967295 cpu_id=1
38586          <idle>-0     (-----) [002] ...1 82315.706848: cpu_idle: state=4294967295 cpu_id=2
38587          <idle>-0     (-----) [002] d..1 82315.706851: cpu_idle: state=0 cpu_id=2
38588          <idle>-0     (-----) [001] d..2 82315.706855: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38589<...>-86 ( 86) [001] d..2 82315.706877: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38590          <idle>-0     (-----) [001] d..1 82315.706883: cpu_idle: state=0 cpu_id=1
38591          <idle>-0     (-----) [002] d.h4 82315.707079: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38592          <idle>-0     (-----) [007] dnh2 82315.707091: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38593          <idle>-0     (-----) [007] .n.1 82315.707093: cpu_idle: state=4294967295 cpu_id=7
38594          <idle>-0     (-----) [007] d..2 82315.707096: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38595          <idle>-0     (-----) [002] ...1 82315.707102: cpu_idle: state=4294967295 cpu_id=2
38596<...>-5340 ( 788) [007] d..2 82315.707103: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38597          <idle>-0     (-----) [002] d..1 82315.707104: cpu_idle: state=0 cpu_id=2
38598<...>-5340 ( 788) [007] d..2 82315.707111: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38599          <idle>-0     (-----) [007] d..1 82315.707114: cpu_idle: state=0 cpu_id=7
38600          <idle>-0     (-----) [003] dnh2 82315.707116: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38601          <idle>-0     (-----) [003] .n.1 82315.707120: cpu_idle: state=4294967295 cpu_id=3
38602          <idle>-0     (-----) [003] d..2 82315.707126: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38603<...>-87 ( 87) [003] d..2 82315.707150: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38604          <idle>-0     (-----) [003] d..1 82315.707156: cpu_idle: state=0 cpu_id=3
38605          <idle>-0     (-----) [002] d.h4 82315.707175: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38606          <idle>-0     (-----) [002] d.h5 82315.707184: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38607          <idle>-0     (-----) [001] .n.1 82315.707189: cpu_idle: state=4294967295 cpu_id=1
38608          <idle>-0     (-----) [002] ...1 82315.707190: cpu_idle: state=4294967295 cpu_id=2
38609          <idle>-0     (-----) [002] d..1 82315.707192: cpu_idle: state=0 cpu_id=2
38610          <idle>-0     (-----) [001] d..2 82315.707196: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38611<...>-86 ( 86) [001] d..2 82315.707218: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38612          <idle>-0     (-----) [001] d..1 82315.707225: cpu_idle: state=0 cpu_id=1
38613          <idle>-0     (-----) [002] d.h4 82315.707408: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38614          <idle>-0     (-----) [007] dnh2 82315.707420: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38615          <idle>-0     (-----) [007] .n.1 82315.707423: cpu_idle: state=4294967295 cpu_id=7
38616          <idle>-0     (-----) [007] d..2 82315.707425: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38617          <idle>-0     (-----) [002] ...1 82315.707431: cpu_idle: state=4294967295 cpu_id=2
38618<...>-5340 ( 788) [007] d..2 82315.707431: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38619          <idle>-0     (-----) [002] d..1 82315.707434: cpu_idle: state=0 cpu_id=2
38620<...>-5340 ( 788) [007] d..2 82315.707440: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38621          <idle>-0     (-----) [007] d..1 82315.707442: cpu_idle: state=0 cpu_id=7
38622          <idle>-0     (-----) [003] dnh2 82315.707444: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38623          <idle>-0     (-----) [003] .n.1 82315.707449: cpu_idle: state=4294967295 cpu_id=3
38624          <idle>-0     (-----) [003] d..2 82315.707455: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38625<...>-87 ( 87) [003] d..2 82315.707478: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38626          <idle>-0     (-----) [003] d..1 82315.707484: cpu_idle: state=0 cpu_id=3
38627          <idle>-0     (-----) [002] d.h4 82315.707503: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38628          <idle>-0     (-----) [002] d.h5 82315.707513: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38629          <idle>-0     (-----) [001] .n.1 82315.707518: cpu_idle: state=4294967295 cpu_id=1
38630          <idle>-0     (-----) [002] ...1 82315.707519: cpu_idle: state=4294967295 cpu_id=2
38631          <idle>-0     (-----) [002] d..1 82315.707522: cpu_idle: state=0 cpu_id=2
38632          <idle>-0     (-----) [001] d..2 82315.707525: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38633<...>-86 ( 86) [001] d..2 82315.707547: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38634          <idle>-0     (-----) [001] d..1 82315.707553: cpu_idle: state=0 cpu_id=1
38635          <idle>-0     (-----) [002] d.h4 82315.707738: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38636          <idle>-0     (-----) [007] dnh2 82315.707749: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38637          <idle>-0     (-----) [007] .n.1 82315.707752: cpu_idle: state=4294967295 cpu_id=7
38638          <idle>-0     (-----) [007] d..2 82315.707754: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38639          <idle>-0     (-----) [002] ...1 82315.707760: cpu_idle: state=4294967295 cpu_id=2
38640<...>-5340 ( 788) [007] d..2 82315.707760: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38641          <idle>-0     (-----) [002] d..1 82315.707763: cpu_idle: state=0 cpu_id=2
38642<...>-5340 ( 788) [007] d..2 82315.707769: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38643          <idle>-0     (-----) [007] d..1 82315.707771: cpu_idle: state=0 cpu_id=7
38644          <idle>-0     (-----) [003] dnh2 82315.707774: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38645          <idle>-0     (-----) [003] .n.1 82315.707778: cpu_idle: state=4294967295 cpu_id=3
38646          <idle>-0     (-----) [003] d..2 82315.707783: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38647<...>-87 ( 87) [003] d..2 82315.707807: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38648          <idle>-0     (-----) [003] d..1 82315.707813: cpu_idle: state=0 cpu_id=3
38649          <idle>-0     (-----) [002] d.h4 82315.707834: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38650          <idle>-0     (-----) [002] d.h5 82315.707843: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38651          <idle>-0     (-----) [001] .n.1 82315.707848: cpu_idle: state=4294967295 cpu_id=1
38652          <idle>-0     (-----) [002] ...1 82315.707849: cpu_idle: state=4294967295 cpu_id=2
38653          <idle>-0     (-----) [002] d..1 82315.707851: cpu_idle: state=0 cpu_id=2
38654          <idle>-0     (-----) [001] d..2 82315.707855: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38655<...>-86 ( 86) [001] d..2 82315.707877: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38656          <idle>-0     (-----) [001] d..1 82315.707883: cpu_idle: state=0 cpu_id=1
38657          <idle>-0     (-----) [002] d.h4 82315.708068: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38658          <idle>-0     (-----) [007] dnh2 82315.708079: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38659          <idle>-0     (-----) [007] .n.1 82315.708081: cpu_idle: state=4294967295 cpu_id=7
38660          <idle>-0     (-----) [007] d..2 82315.708084: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38661<...>-5340 ( 788) [007] d..2 82315.708090: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38662          <idle>-0     (-----) [002] ...1 82315.708090: cpu_idle: state=4294967295 cpu_id=2
38663          <idle>-0     (-----) [002] d..1 82315.708093: cpu_idle: state=0 cpu_id=2
38664<...>-5340 ( 788) [007] d..2 82315.708099: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38665          <idle>-0     (-----) [007] d..1 82315.708101: cpu_idle: state=0 cpu_id=7
38666          <idle>-0     (-----) [003] dnh2 82315.708103: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38667          <idle>-0     (-----) [003] .n.1 82315.708107: cpu_idle: state=4294967295 cpu_id=3
38668          <idle>-0     (-----) [003] d..2 82315.708113: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38669<...>-87 ( 87) [003] d..2 82315.708137: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38670          <idle>-0     (-----) [003] d..1 82315.708143: cpu_idle: state=0 cpu_id=3
38671          <idle>-0     (-----) [002] d.h4 82315.708165: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38672          <idle>-0     (-----) [002] d.h5 82315.708175: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38673          <idle>-0     (-----) [001] .n.1 82315.708180: cpu_idle: state=4294967295 cpu_id=1
38674          <idle>-0     (-----) [002] ...1 82315.708180: cpu_idle: state=4294967295 cpu_id=2
38675          <idle>-0     (-----) [002] d..1 82315.708183: cpu_idle: state=0 cpu_id=2
38676          <idle>-0     (-----) [001] d..2 82315.708187: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38677<...>-86 ( 86) [001] d..2 82315.708209: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38678          <idle>-0     (-----) [001] d..1 82315.708215: cpu_idle: state=0 cpu_id=1
38679          <idle>-0     (-----) [002] d.h4 82315.708399: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38680          <idle>-0     (-----) [007] dnh2 82315.708411: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38681          <idle>-0     (-----) [007] .n.1 82315.708414: cpu_idle: state=4294967295 cpu_id=7
38682          <idle>-0     (-----) [007] d..2 82315.708416: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38683          <idle>-0     (-----) [002] ...1 82315.708422: cpu_idle: state=4294967295 cpu_id=2
38684<...>-5340 ( 788) [007] d..2 82315.708423: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38685          <idle>-0     (-----) [002] d..1 82315.708425: cpu_idle: state=0 cpu_id=2
38686<...>-5340 ( 788) [007] d..2 82315.708431: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38687          <idle>-0     (-----) [007] d..1 82315.708434: cpu_idle: state=0 cpu_id=7
38688          <idle>-0     (-----) [003] dnh2 82315.708436: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38689          <idle>-0     (-----) [003] .n.1 82315.708440: cpu_idle: state=4294967295 cpu_id=3
38690          <idle>-0     (-----) [003] d..2 82315.708450: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38691<...>-87 ( 87) [003] d..2 82315.708478: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38692          <idle>-0     (-----) [003] d..2 82315.708481: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
38693          <idle>-0     (-----) [003] dn.3 82315.708489: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
38694          <idle>-0     (-----) [003] d..2 82315.708495: 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
38695          <idle>-0     (-----) [002] d.h4 82315.708502: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38696     ksoftirqd/3-34    (   34) [003] d.s2 82315.708504: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
38697          <idle>-0     (-----) [002] d.h5 82315.708513: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38698          <idle>-0     (-----) [001] .n.1 82315.708518: cpu_idle: state=4294967295 cpu_id=1
38699          <idle>-0     (-----) [002] ...1 82315.708519: cpu_idle: state=4294967295 cpu_id=2
38700          <idle>-0     (-----) [002] d..1 82315.708521: cpu_idle: state=0 cpu_id=2
38701     ksoftirqd/3-34    (   34) [003] d.s3 82315.708528: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
38702          <idle>-0     (-----) [001] d..2 82315.708529: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38703     ksoftirqd/3-34    (   34) [003] d..2 82315.708540: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
38704<...>-86 ( 86) [001] d..2 82315.708552: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38705          <idle>-0     (-----) [001] d..1 82315.708559: cpu_idle: state=0 cpu_id=1
38706  kworker/u16:15-1311  ( 1311) [003] d..2 82315.708720: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
38707          <idle>-0     (-----) [002] d.h4 82315.708723: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38708          <idle>-0     (-----) [003] d..1 82315.708730: cpu_idle: state=0 cpu_id=3
38709          <idle>-0     (-----) [007] dnh2 82315.708736: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38710          <idle>-0     (-----) [007] .n.1 82315.708738: cpu_idle: state=4294967295 cpu_id=7
38711          <idle>-0     (-----) [007] d..2 82315.708741: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38712          <idle>-0     (-----) [002] ...1 82315.708746: cpu_idle: state=4294967295 cpu_id=2
38713<...>-5340 ( 788) [007] d..2 82315.708747: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38714          <idle>-0     (-----) [002] d..1 82315.708749: cpu_idle: state=0 cpu_id=2
38715          <idle>-0     (-----) [001] d.s3 82315.708754: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
38716<...>-5340 ( 788) [007] d..2 82315.708756: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38717          <idle>-0     (-----) [007] d..1 82315.708758: cpu_idle: state=0 cpu_id=7
38718          <idle>-0     (-----) [003] dnh2 82315.708763: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38719          <idle>-0     (-----) [001] d.s4 82315.708767: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
38720          <idle>-0     (-----) [001] d.s4 82315.708772: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
38721          <idle>-0     (-----) [003] .n.1 82315.708776: cpu_idle: state=4294967295 cpu_id=3
38722          <idle>-0     (-----) [001] ...1 82315.708782: cpu_idle: state=4294967295 cpu_id=1
38723          <idle>-0     (-----) [003] d..2 82315.708784: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38724          <idle>-0     (-----) [001] d..1 82315.708785: cpu_idle: state=0 cpu_id=1
38725<...>-87 ( 87) [003] d..2 82315.708805: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
38726          <idle>-0     (-----) [002] d.h4 82315.708835: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38727          <idle>-0     (-----) [002] d.h5 82315.708845: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38728          <idle>-0     (-----) [001] .n.1 82315.708850: cpu_idle: state=4294967295 cpu_id=1
38729          <idle>-0     (-----) [002] ...1 82315.708851: cpu_idle: state=4294967295 cpu_id=2
38730          <idle>-0     (-----) [002] d..1 82315.708853: cpu_idle: state=0 cpu_id=2
38731          <idle>-0     (-----) [001] d..2 82315.708858: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38732<...>-86 ( 86) [001] d..2 82315.708883: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38733          <idle>-0     (-----) [001] d..1 82315.708890: cpu_idle: state=0 cpu_id=1
38734  kworker/u16:15-1311  ( 1311) [003] d..2 82315.708925: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
38735          <idle>-0     (-----) [003] d..1 82315.708934: cpu_idle: state=0 cpu_id=3
38736          <idle>-0     (-----) [001] d.s3 82315.708954: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
38737          <idle>-0     (-----) [001] d.s4 82315.708961: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
38738          <idle>-0     (-----) [001] d.s4 82315.708967: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
38739          <idle>-0     (-----) [003] .n.1 82315.708972: cpu_idle: state=4294967295 cpu_id=3
38740          <idle>-0     (-----) [001] ...1 82315.708974: cpu_idle: state=4294967295 cpu_id=1
38741          <idle>-0     (-----) [001] d..1 82315.708977: cpu_idle: state=0 cpu_id=1
38742          <idle>-0     (-----) [003] d..2 82315.708980: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
38743  kworker/u16:15-1311  ( 1311) [003] .... 82315.709004: clk_set_rate: l3_cluster0_vote_clk 652800000
38744  kworker/u16:15-1311  ( 1311) [003] .... 82315.709009: clk_set_rate: l3_clk 652800000
38745  kworker/u16:15-1311  ( 1311) [003] d..2 82315.709042: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38746          <idle>-0     (-----) [003] d..1 82315.709050: cpu_idle: state=0 cpu_id=3
38747          <idle>-0     (-----) [002] d.h4 82315.709075: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38748          <idle>-0     (-----) [007] dnh2 82315.709087: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38749          <idle>-0     (-----) [007] .n.1 82315.709089: cpu_idle: state=4294967295 cpu_id=7
38750          <idle>-0     (-----) [007] d..2 82315.709092: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38751          <idle>-0     (-----) [002] ...1 82315.709098: cpu_idle: state=4294967295 cpu_id=2
38752<...>-5340 ( 788) [007] d..2 82315.709099: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38753          <idle>-0     (-----) [002] d..1 82315.709101: cpu_idle: state=0 cpu_id=2
38754<...>-5340 ( 788) [007] d..2 82315.709109: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38755          <idle>-0     (-----) [007] d..1 82315.709111: cpu_idle: state=0 cpu_id=7
38756          <idle>-0     (-----) [003] dnh2 82315.709115: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38757          <idle>-0     (-----) [003] .n.1 82315.709119: cpu_idle: state=4294967295 cpu_id=3
38758          <idle>-0     (-----) [003] d..2 82315.709126: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38759<...>-87 ( 87) [003] d..2 82315.709152: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38760          <idle>-0     (-----) [003] d..1 82315.709158: cpu_idle: state=0 cpu_id=3
38761          <idle>-0     (-----) [002] d.h4 82315.709176: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38762          <idle>-0     (-----) [002] d.h5 82315.709186: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38763          <idle>-0     (-----) [001] .n.1 82315.709191: cpu_idle: state=4294967295 cpu_id=1
38764          <idle>-0     (-----) [002] ...1 82315.709191: cpu_idle: state=4294967295 cpu_id=2
38765          <idle>-0     (-----) [002] d..1 82315.709194: cpu_idle: state=0 cpu_id=2
38766          <idle>-0     (-----) [001] d..2 82315.709199: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38767<...>-86 ( 86) [001] d..2 82315.709222: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38768          <idle>-0     (-----) [001] d..1 82315.709229: cpu_idle: state=0 cpu_id=1
38769          <idle>-0     (-----) [002] d.h4 82315.709438: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38770          <idle>-0     (-----) [007] dnh2 82315.709450: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38771          <idle>-0     (-----) [007] .n.1 82315.709452: cpu_idle: state=4294967295 cpu_id=7
38772          <idle>-0     (-----) [007] d..2 82315.709455: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38773          <idle>-0     (-----) [002] ...1 82315.709461: cpu_idle: state=4294967295 cpu_id=2
38774<...>-5340 ( 788) [007] d..2 82315.709462: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38775          <idle>-0     (-----) [002] d..1 82315.709464: cpu_idle: state=0 cpu_id=2
38776<...>-5340 ( 788) [007] d..2 82315.709471: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38777          <idle>-0     (-----) [007] d..1 82315.709473: cpu_idle: state=0 cpu_id=7
38778          <idle>-0     (-----) [003] dnh2 82315.709476: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38779          <idle>-0     (-----) [003] .n.1 82315.709479: cpu_idle: state=4294967295 cpu_id=3
38780          <idle>-0     (-----) [003] d..2 82315.709486: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38781<...>-87 ( 87) [003] d..2 82315.709509: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38782          <idle>-0     (-----) [003] d..1 82315.709515: cpu_idle: state=0 cpu_id=3
38783          <idle>-0     (-----) [002] d.h4 82315.709535: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38784          <idle>-0     (-----) [002] d.h5 82315.709544: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38785          <idle>-0     (-----) [001] .n.1 82315.709550: cpu_idle: state=4294967295 cpu_id=1
38786          <idle>-0     (-----) [002] ...1 82315.709550: cpu_idle: state=4294967295 cpu_id=2
38787          <idle>-0     (-----) [002] d..1 82315.709552: cpu_idle: state=0 cpu_id=2
38788          <idle>-0     (-----) [001] d..2 82315.709557: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38789<...>-86 ( 86) [001] d..2 82315.709578: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38790          <idle>-0     (-----) [001] d..1 82315.709584: cpu_idle: state=0 cpu_id=1
38791          <idle>-0     (-----) [002] d.h4 82315.709787: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38792          <idle>-0     (-----) [007] dnh2 82315.709799: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38793          <idle>-0     (-----) [007] .n.1 82315.709801: cpu_idle: state=4294967295 cpu_id=7
38794          <idle>-0     (-----) [007] d..2 82315.709803: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38795          <idle>-0     (-----) [002] ...1 82315.709809: cpu_idle: state=4294967295 cpu_id=2
38796<...>-5340 ( 788) [007] d..2 82315.709810: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38797          <idle>-0     (-----) [002] d..1 82315.709812: cpu_idle: state=0 cpu_id=2
38798<...>-5340 ( 788) [007] d..2 82315.709819: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38799          <idle>-0     (-----) [007] d..1 82315.709821: cpu_idle: state=0 cpu_id=7
38800          <idle>-0     (-----) [003] dnh2 82315.709823: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38801          <idle>-0     (-----) [003] .n.1 82315.709827: cpu_idle: state=4294967295 cpu_id=3
38802          <idle>-0     (-----) [003] d..2 82315.709833: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38803<...>-87 ( 87) [003] d..2 82315.709856: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38804          <idle>-0     (-----) [003] d..1 82315.709862: cpu_idle: state=0 cpu_id=3
38805          <idle>-0     (-----) [002] d.h4 82315.709883: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38806          <idle>-0     (-----) [002] d.h5 82315.709892: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38807          <idle>-0     (-----) [001] .n.1 82315.709898: cpu_idle: state=4294967295 cpu_id=1
38808          <idle>-0     (-----) [002] ...1 82315.709898: cpu_idle: state=4294967295 cpu_id=2
38809          <idle>-0     (-----) [002] d..1 82315.709901: cpu_idle: state=0 cpu_id=2
38810          <idle>-0     (-----) [001] d..2 82315.709904: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38811<...>-86 ( 86) [001] d..2 82315.709926: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38812          <idle>-0     (-----) [001] d..1 82315.709932: cpu_idle: state=0 cpu_id=1
38813          <idle>-0     (-----) [002] d.h4 82315.710132: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38814          <idle>-0     (-----) [007] dnh2 82315.710144: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38815          <idle>-0     (-----) [007] .n.1 82315.710146: cpu_idle: state=4294967295 cpu_id=7
38816          <idle>-0     (-----) [007] d..2 82315.710149: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38817          <idle>-0     (-----) [002] ...1 82315.710155: cpu_idle: state=4294967295 cpu_id=2
38818<...>-5340 ( 788) [007] d..2 82315.710155: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38819          <idle>-0     (-----) [002] d..1 82315.710157: cpu_idle: state=0 cpu_id=2
38820<...>-5340 ( 788) [007] d..2 82315.710164: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38821          <idle>-0     (-----) [007] d..1 82315.710166: cpu_idle: state=0 cpu_id=7
38822          <idle>-0     (-----) [003] dnh2 82315.710169: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38823          <idle>-0     (-----) [003] .n.1 82315.710172: cpu_idle: state=4294967295 cpu_id=3
38824          <idle>-0     (-----) [003] d..2 82315.710178: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38825<...>-87 ( 87) [003] d..2 82315.710202: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38826          <idle>-0     (-----) [003] d..1 82315.710207: cpu_idle: state=0 cpu_id=3
38827          <idle>-0     (-----) [002] d.h4 82315.710228: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38828          <idle>-0     (-----) [002] d.h5 82315.710237: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38829          <idle>-0     (-----) [001] .n.1 82315.710242: cpu_idle: state=4294967295 cpu_id=1
38830          <idle>-0     (-----) [002] ...1 82315.710243: cpu_idle: state=4294967295 cpu_id=2
38831          <idle>-0     (-----) [002] d..1 82315.710245: cpu_idle: state=0 cpu_id=2
38832          <idle>-0     (-----) [001] d..2 82315.710249: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38833<...>-86 ( 86) [001] d..2 82315.710270: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38834          <idle>-0     (-----) [001] d..1 82315.710277: cpu_idle: state=0 cpu_id=1
38835          <idle>-0     (-----) [002] d.h4 82315.710468: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38836          <idle>-0     (-----) [007] dnh2 82315.710480: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38837          <idle>-0     (-----) [007] .n.1 82315.710482: cpu_idle: state=4294967295 cpu_id=7
38838          <idle>-0     (-----) [007] d..2 82315.710485: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38839          <idle>-0     (-----) [002] ...1 82315.710491: cpu_idle: state=4294967295 cpu_id=2
38840          <idle>-0     (-----) [002] d..1 82315.710493: cpu_idle: state=0 cpu_id=2
38841<...>-5340 ( 788) [007] d..2 82315.710594: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38842<...>-5340 ( 788) [007] d..2 82315.710606: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38843          <idle>-0     (-----) [003] dnh2 82315.710609: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38844          <idle>-0     (-----) [007] d..1 82315.710610: cpu_idle: state=0 cpu_id=7
38845          <idle>-0     (-----) [003] .n.1 82315.710612: cpu_idle: state=4294967295 cpu_id=3
38846          <idle>-0     (-----) [003] d..2 82315.710618: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38847<...>-87 ( 87) [003] d..2 82315.710642: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38848          <idle>-0     (-----) [003] d..1 82315.710647: cpu_idle: state=0 cpu_id=3
38849          <idle>-0     (-----) [007] ...1 82315.711040: cpu_idle: state=4294967295 cpu_id=7
38850          <idle>-0     (-----) [007] d..1 82315.711041: cpu_idle: state=0 cpu_id=7
38851          <idle>-0     (-----) [002] d.h4 82315.711390: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38852          <idle>-0     (-----) [002] d.h5 82315.711399: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38853          <idle>-0     (-----) [001] .n.1 82315.711404: cpu_idle: state=4294967295 cpu_id=1
38854          <idle>-0     (-----) [002] ...1 82315.711405: cpu_idle: state=4294967295 cpu_id=2
38855          <idle>-0     (-----) [002] d..1 82315.711407: cpu_idle: state=0 cpu_id=2
38856          <idle>-0     (-----) [001] d..2 82315.711411: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38857<...>-86 ( 86) [001] d..2 82315.711432: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38858          <idle>-0     (-----) [001] d..1 82315.711438: cpu_idle: state=0 cpu_id=1
38859          <idle>-0     (-----) [002] d.H3 82315.711851: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=006
38860          <idle>-0     (-----) [006] dnh2 82315.711870: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=006
38861          <idle>-0     (-----) [006] .n.1 82315.711873: cpu_idle: state=4294967295 cpu_id=6
38862          <idle>-0     (-----) [006] d..2 82315.711877: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
38863          <idle>-0     (-----) [002] d.H4 82315.711879: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38864          <idle>-0     (-----) [007] dnh2 82315.711893: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38865          <idle>-0     (-----) [007] .n.1 82315.711895: cpu_idle: state=4294967295 cpu_id=7
38866         sugov:4-577   (  577) [006] .... 82315.711897: clk_set_rate: perfcl_clk 1612800000
38867         sugov:4-577   (  577) [006] .... 82315.711898: clk_set_rate: cpu7_perfcl_clk 2649600000
38868          <idle>-0     (-----) [007] d..2 82315.711898: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38869          <idle>-0     (-----) [002] d.s2 82315.711903: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
38870         sugov:4-577   (  577) [006] .... 82315.711903: clk_set_rate: cpu6_perfcl_clk 2649600000
38871          <idle>-0     (-----) [000] d.h5 82315.711906: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
38872         sugov:4-577   (  577) [006] .... 82315.711908: clk_set_rate: cpu5_perfcl_clk 2649600000
38873<...>-5340 ( 788) [007] d..2 82315.711912: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38874         sugov:4-577   (  577) [006] .... 82315.711912: clk_set_rate: cpu4_perfcl_clk 1612800000
38875          <idle>-0     (-----) [002] dns3 82315.711913: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
38876         sugov:4-577   (  577) [006] .... 82315.711917: cpu_frequency: state=1612800 cpu_id=4
38877          <idle>-0     (-----) [000] dnh6 82315.711918: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
38878          <idle>-0     (-----) [002] .n.1 82315.711919: cpu_idle: state=4294967295 cpu_id=2
38879          <idle>-0     (-----) [000] dnh5 82315.711921: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
38880<...>-5340 ( 788) [007] d..2 82315.711923: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38881          <idle>-0     (-----) [007] d..1 82315.711926: cpu_idle: state=0 cpu_id=7
38882          <idle>-0     (-----) [003] dnh2 82315.711927: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38883          <idle>-0     (-----) [002] d..2 82315.711928: 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
38884          <idle>-0     (-----) [003] .n.1 82315.711930: cpu_idle: state=4294967295 cpu_id=3
38885     rcu_preempt-7     (    7) [002] d..2 82315.711935: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
38886          <idle>-0     (-----) [003] d..2 82315.711936: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38887          <idle>-0     (-----) [000] dnh6 82315.711938: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
38888          <idle>-0     (-----) [001] .n.1 82315.711944: cpu_idle: state=4294967295 cpu_id=1
38889          <idle>-0     (-----) [000] .n.1 82315.711951: cpu_idle: state=4294967295 cpu_id=0
38890          <idle>-0     (-----) [001] d..2 82315.711953: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
38891<...>-87 ( 87) [003] d..2 82315.711963: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38892          <idle>-0     (-----) [000] d..2 82315.711964: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
38893          <idle>-0     (-----) [003] d..1 82315.711968: cpu_idle: state=0 cpu_id=3
38894     rcu_preempt-7     (    7) [002] d..3 82315.711977: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
38895  crtc_event:111-322   (  322) [000] d..2 82315.711985: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
38896         rcuop/2-29    (   29) [000] d..2 82315.711990: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
38897     rcu_preempt-7     (    7) [002] d.h4 82315.711999: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
38898         rcuop/2-29    (   29) [000] d..3 82315.712023: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
38899     rcu_preempt-7     (    7) [002] d.h5 82315.712027: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
38900     rcu_preempt-7     (    7) [002] d..2 82315.712032: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
38901         rcuop/2-29    (   29) [000] d..2 82315.712037: 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
38902         rcuop/3-37    (   37) [000] d..2 82315.712049: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38903         sugov:4-577   (  577) [006] d..2 82315.712052: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
38904     rcu_preempt-7     (    7) [002] d..3 82315.712054: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
38905     rcu_preempt-7     (    7) [002] d..2 82315.712056: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
38906          <idle>-0     (-----) [006] d..1 82315.712060: cpu_idle: state=0 cpu_id=6
38907     rcu_preempt-7     (    7) [002] d..3 82315.712066: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
38908     rcu_preempt-7     (    7) [002] d..2 82315.712067: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
38909 crtc_commit:111-321   (  321) [001] d.s1 82315.712069: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
38910<...>-86 ( 86) [000] d..2 82315.712070: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
38911 crtc_commit:111-321   (  321) [001] d.s2 82315.712080: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
38912     rcu_preempt-7     (    7) [002] d..3 82315.712089: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
38913         rcuop/0-10    (   10) [000] d..2 82315.712093: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
38914     rcu_preempt-7     (    7) [002] d..2 82315.712100: 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
38915         rcuop/6-61    (   61) [002] d..2 82315.712105: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
38916 crtc_commit:111-321   (  321) [001] d..2 82315.712107: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
38917     ksoftirqd/1-18    (   18) [001] d.s2 82315.712116: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=006
38918         rcuop/0-10    (   10) [000] d..3 82315.712119: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
38919         rcuop/6-61    (   61) [002] d..3 82315.712130: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=001
38920          <idle>-0     (-----) [006] dnh2 82315.712133: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=006
38921          <idle>-0     (-----) [006] .n.1 82315.712135: cpu_idle: state=4294967295 cpu_id=6
38922     ksoftirqd/1-18    (   18) [001] d..2 82315.712138: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
38923          <idle>-0     (-----) [006] d..2 82315.712139: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
38924         sugov:4-577   (  577) [006] .... 82315.712142: cpu_frequency: state=1612800 cpu_id=5
38925         sugov:4-577   (  577) [006] .... 82315.712145: cpu_frequency: state=1612800 cpu_id=6
38926         sugov:4-577   (  577) [006] .... 82315.712146: cpu_frequency: state=1612800 cpu_id=7
38927         sugov:4-577   (  577) [006] d..2 82315.712154: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
38928         rcuop/6-61    (   61) [002] d..2 82315.712154: 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
38929          <idle>-0     (-----) [006] d..1 82315.712157: cpu_idle: state=0 cpu_id=6
38930<...>-69 ( 69) [001] d..2 82315.712170: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
38931          <idle>-0     (-----) [001] d..1 82315.712177: cpu_idle: state=0 cpu_id=1
38932         rcuop/0-10    (   10) [000] d..2 82315.712178: 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
38933         rcuop/4-45    (   45) [000] d..2 82315.712183: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=002
38934         rcuop/1-21    (   21) [002] d..2 82315.712192: 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
38935         rcuop/4-45    (   45) [000] d..3 82315.712200: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=002
38936          <idle>-0     (-----) [002] d..2 82315.712205: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
38937         rcuop/4-45    (   45) [000] d..2 82315.712223: 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
38938          <idle>-0     (-----) [000] d..1 82315.712234: cpu_idle: state=0 cpu_id=0
38939         rcuop/5-53    (   53) [002] d..2 82315.712263: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
38940          <idle>-0     (-----) [002] d.h5 82315.712280: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38941          <idle>-0     (-----) [007] dnh2 82315.712295: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38942          <idle>-0     (-----) [007] .n.1 82315.712298: cpu_idle: state=4294967295 cpu_id=7
38943          <idle>-0     (-----) [007] d..2 82315.712301: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38944<...>-5340 ( 788) [007] d..2 82315.712312: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38945          <idle>-0     (-----) [002] d..1 82315.712312: cpu_idle: state=0 cpu_id=2
38946<...>-5340 ( 788) [007] d..2 82315.712323: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38947          <idle>-0     (-----) [003] dnh2 82315.712326: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38948          <idle>-0     (-----) [007] d..1 82315.712326: cpu_idle: state=0 cpu_id=7
38949          <idle>-0     (-----) [003] .n.1 82315.712329: cpu_idle: state=4294967295 cpu_id=3
38950          <idle>-0     (-----) [003] d..2 82315.712335: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38951<...>-87 ( 87) [003] d..2 82315.712358: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38952          <idle>-0     (-----) [003] d..1 82315.712363: cpu_idle: state=0 cpu_id=3
38953          <idle>-0     (-----) [002] d.h4 82315.712387: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
38954          <idle>-0     (-----) [002] d.h5 82315.712398: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
38955          <idle>-0     (-----) [000] .n.1 82315.712404: cpu_idle: state=4294967295 cpu_id=0
38956          <idle>-0     (-----) [002] ...1 82315.712410: cpu_idle: state=4294967295 cpu_id=2
38957          <idle>-0     (-----) [000] d..2 82315.712413: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38958          <idle>-0     (-----) [002] d..1 82315.712414: cpu_idle: state=0 cpu_id=2
38959<...>-86 ( 86) [000] d..2 82315.712437: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38960          <idle>-0     (-----) [000] d..1 82315.712444: cpu_idle: state=0 cpu_id=0
38961          <idle>-0     (-----) [002] d.h4 82315.712652: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38962          <idle>-0     (-----) [007] dnh2 82315.712665: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38963          <idle>-0     (-----) [007] .n.1 82315.712667: cpu_idle: state=4294967295 cpu_id=7
38964          <idle>-0     (-----) [007] d..2 82315.712671: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38965          <idle>-0     (-----) [002] ...1 82315.712676: cpu_idle: state=4294967295 cpu_id=2
38966          <idle>-0     (-----) [002] d..1 82315.712679: cpu_idle: state=0 cpu_id=2
38967<...>-5340 ( 788) [007] d..2 82315.712680: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38968<...>-5340 ( 788) [007] d..2 82315.712690: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38969          <idle>-0     (-----) [003] dnh2 82315.712693: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38970          <idle>-0     (-----) [007] d..1 82315.712694: cpu_idle: state=0 cpu_id=7
38971          <idle>-0     (-----) [003] .n.1 82315.712697: cpu_idle: state=4294967295 cpu_id=3
38972          <idle>-0     (-----) [003] d..2 82315.712703: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38973<...>-87 ( 87) [003] d..2 82315.712726: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38974          <idle>-0     (-----) [003] d..1 82315.712731: cpu_idle: state=0 cpu_id=3
38975          <idle>-0     (-----) [002] d.h4 82315.712754: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
38976          <idle>-0     (-----) [002] d.h5 82315.712763: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
38977          <idle>-0     (-----) [000] .n.1 82315.712768: cpu_idle: state=4294967295 cpu_id=0
38978          <idle>-0     (-----) [002] ...1 82315.712769: cpu_idle: state=4294967295 cpu_id=2
38979          <idle>-0     (-----) [002] d..1 82315.712772: cpu_idle: state=0 cpu_id=2
38980          <idle>-0     (-----) [000] d..2 82315.712775: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
38981<...>-86 ( 86) [000] d..2 82315.712796: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
38982          <idle>-0     (-----) [000] d..1 82315.712803: cpu_idle: state=0 cpu_id=0
38983          <idle>-0     (-----) [002] d.h4 82315.713028: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38984          <idle>-0     (-----) [007] dnh2 82315.713041: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
38985          <idle>-0     (-----) [007] .n.1 82315.713044: cpu_idle: state=4294967295 cpu_id=7
38986          <idle>-0     (-----) [007] d..2 82315.713047: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
38987          <idle>-0     (-----) [002] ...1 82315.713053: cpu_idle: state=4294967295 cpu_id=2
38988          <idle>-0     (-----) [002] d..1 82315.713055: cpu_idle: state=0 cpu_id=2
38989<...>-5340 ( 788) [007] d..2 82315.713056: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38990<...>-5340 ( 788) [007] d..2 82315.713066: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
38991          <idle>-0     (-----) [007] d..1 82315.713070: cpu_idle: state=0 cpu_id=7
38992          <idle>-0     (-----) [003] dnh2 82315.713070: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
38993          <idle>-0     (-----) [003] .n.1 82315.713073: cpu_idle: state=4294967295 cpu_id=3
38994          <idle>-0     (-----) [003] d..2 82315.713079: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
38995<...>-87 ( 87) [003] d..2 82315.713103: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
38996          <idle>-0     (-----) [003] d..1 82315.713108: cpu_idle: state=0 cpu_id=3
38997          <idle>-0     (-----) [002] d.h4 82315.713132: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
38998          <idle>-0     (-----) [002] d.h5 82315.713142: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
38999          <idle>-0     (-----) [000] .n.1 82315.713147: cpu_idle: state=4294967295 cpu_id=0
39000          <idle>-0     (-----) [002] ...1 82315.713148: cpu_idle: state=4294967295 cpu_id=2
39001          <idle>-0     (-----) [002] d..1 82315.713150: cpu_idle: state=0 cpu_id=2
39002          <idle>-0     (-----) [000] d..2 82315.713154: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39003<...>-86 ( 86) [000] d..2 82315.713174: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39004          <idle>-0     (-----) [000] d..1 82315.713181: cpu_idle: state=0 cpu_id=0
39005          <idle>-0     (-----) [002] d.h4 82315.713401: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39006          <idle>-0     (-----) [007] dnh2 82315.713414: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39007          <idle>-0     (-----) [007] .n.1 82315.713417: cpu_idle: state=4294967295 cpu_id=7
39008          <idle>-0     (-----) [007] d..2 82315.713420: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39009          <idle>-0     (-----) [002] ...1 82315.713425: cpu_idle: state=4294967295 cpu_id=2
39010          <idle>-0     (-----) [002] d..1 82315.713427: cpu_idle: state=0 cpu_id=2
39011<...>-5340 ( 788) [007] d..2 82315.713429: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39012<...>-5340 ( 788) [007] d..2 82315.713439: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
39013          <idle>-0     (-----) [007] d..1 82315.713442: cpu_idle: state=0 cpu_id=7
39014          <idle>-0     (-----) [003] dnh2 82315.713443: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39015          <idle>-0     (-----) [003] .n.1 82315.713446: cpu_idle: state=4294967295 cpu_id=3
39016          <idle>-0     (-----) [003] d..2 82315.713452: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39017<...>-87 ( 87) [003] d..2 82315.713475: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39018          <idle>-0     (-----) [003] d..1 82315.713480: cpu_idle: state=0 cpu_id=3
39019          <idle>-0     (-----) [002] d.h4 82315.713503: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39020          <idle>-0     (-----) [002] d.h5 82315.713512: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39021          <idle>-0     (-----) [000] .n.1 82315.713518: cpu_idle: state=4294967295 cpu_id=0
39022          <idle>-0     (-----) [002] ...1 82315.713519: cpu_idle: state=4294967295 cpu_id=2
39023          <idle>-0     (-----) [002] d..1 82315.713521: cpu_idle: state=0 cpu_id=2
39024          <idle>-0     (-----) [000] d..2 82315.713524: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39025<...>-86 ( 86) [000] d..2 82315.713544: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39026          <idle>-0     (-----) [000] d..1 82315.713552: cpu_idle: state=0 cpu_id=0
39027          <idle>-0     (-----) [002] d.h4 82315.713760: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39028          <idle>-0     (-----) [007] dnh2 82315.713773: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39029          <idle>-0     (-----) [007] .n.1 82315.713776: cpu_idle: state=4294967295 cpu_id=7
39030          <idle>-0     (-----) [007] d..2 82315.713779: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39031          <idle>-0     (-----) [002] ...1 82315.713783: cpu_idle: state=4294967295 cpu_id=2
39032          <idle>-0     (-----) [002] d..1 82315.713786: cpu_idle: state=0 cpu_id=2
39033<...>-5340 ( 788) [007] d..2 82315.713787: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39034<...>-5340 ( 788) [007] d..2 82315.713797: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
39035          <idle>-0     (-----) [007] d..1 82315.713801: cpu_idle: state=0 cpu_id=7
39036          <idle>-0     (-----) [003] dnh2 82315.713801: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39037          <idle>-0     (-----) [003] .n.1 82315.713805: cpu_idle: state=4294967295 cpu_id=3
39038          <idle>-0     (-----) [003] d..2 82315.713810: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39039<...>-87 ( 87) [003] d..2 82315.713834: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39040          <idle>-0     (-----) [003] d..1 82315.713838: cpu_idle: state=0 cpu_id=3
39041          <idle>-0     (-----) [002] d.h4 82315.713863: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39042          <idle>-0     (-----) [002] d.h5 82315.713872: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39043          <idle>-0     (-----) [000] .n.1 82315.713878: cpu_idle: state=4294967295 cpu_id=0
39044          <idle>-0     (-----) [002] ...1 82315.713878: cpu_idle: state=4294967295 cpu_id=2
39045          <idle>-0     (-----) [002] d..1 82315.713881: cpu_idle: state=0 cpu_id=2
39046          <idle>-0     (-----) [000] d..2 82315.713884: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39047<...>-86 ( 86) [000] d..2 82315.713905: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39048          <idle>-0     (-----) [000] d..1 82315.713912: cpu_idle: state=0 cpu_id=0
39049          <idle>-0     (-----) [002] d.h4 82315.714132: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39050          <idle>-0     (-----) [007] dnh2 82315.714145: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39051          <idle>-0     (-----) [007] .n.1 82315.714147: cpu_idle: state=4294967295 cpu_id=7
39052          <idle>-0     (-----) [007] d..2 82315.714151: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39053          <idle>-0     (-----) [002] ...1 82315.714156: cpu_idle: state=4294967295 cpu_id=2
39054          <idle>-0     (-----) [002] d..1 82315.714158: cpu_idle: state=0 cpu_id=2
39055<...>-5340 ( 788) [007] d..2 82315.714160: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39056<...>-5340 ( 788) [007] d..2 82315.714170: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
39057          <idle>-0     (-----) [007] d..1 82315.714174: cpu_idle: state=0 cpu_id=7
39058          <idle>-0     (-----) [003] dnh2 82315.714177: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39059          <idle>-0     (-----) [003] .n.1 82315.714181: cpu_idle: state=4294967295 cpu_id=3
39060          <idle>-0     (-----) [003] d..2 82315.714186: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39061<...>-87 ( 87) [003] d..2 82315.714208: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39062          <idle>-0     (-----) [003] d..1 82315.714213: cpu_idle: state=0 cpu_id=3
39063          <idle>-0     (-----) [002] d.h4 82315.714236: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39064          <idle>-0     (-----) [000] d.h5 82315.714239: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
39065          <idle>-0     (-----) [002] d.h5 82315.714245: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39066          <idle>-0     (-----) [002] ...1 82315.714251: cpu_idle: state=4294967295 cpu_id=2
39067          <idle>-0     (-----) [000] dnh6 82315.714252: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
39068          <idle>-0     (-----) [002] d..1 82315.714254: cpu_idle: state=0 cpu_id=2
39069          <idle>-0     (-----) [001] .n.1 82315.714257: cpu_idle: state=4294967295 cpu_id=1
39070          <idle>-0     (-----) [001] d..2 82315.714262: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
39071          <idle>-0     (-----) [000] .n.1 82315.714265: cpu_idle: state=4294967295 cpu_id=0
39072          <idle>-0     (-----) [000] d..2 82315.714272: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39073<...>-86 ( 86) [000] d..2 82315.714293: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39074          <idle>-0     (-----) [000] d..1 82315.714301: cpu_idle: state=0 cpu_id=0
39075 crtc_commit:111-321   (  321) [001] d..2 82315.714313: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39076          <idle>-0     (-----) [001] d..1 82315.714318: cpu_idle: state=0 cpu_id=1
39077          <idle>-0     (-----) [002] d.h4 82315.714486: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39078          <idle>-0     (-----) [007] dnh2 82315.714498: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39079          <idle>-0     (-----) [007] .n.1 82315.714501: cpu_idle: state=4294967295 cpu_id=7
39080          <idle>-0     (-----) [007] d..2 82315.714504: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39081          <idle>-0     (-----) [002] ...1 82315.714509: cpu_idle: state=4294967295 cpu_id=2
39082          <idle>-0     (-----) [002] d..1 82315.714511: cpu_idle: state=0 cpu_id=2
39083<...>-5340 ( 788) [007] d..2 82315.714512: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39084<...>-5340 ( 788) [007] d..2 82315.714523: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
39085          <idle>-0     (-----) [007] d..1 82315.714526: cpu_idle: state=0 cpu_id=7
39086          <idle>-0     (-----) [003] dnh2 82315.714526: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39087          <idle>-0     (-----) [000] d.h5 82315.714529: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
39088          <idle>-0     (-----) [003] .n.1 82315.714529: cpu_idle: state=4294967295 cpu_id=3
39089          <idle>-0     (-----) [003] d..2 82315.714535: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39090          <idle>-0     (-----) [000] dnh6 82315.714537: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
39091          <idle>-0     (-----) [000] .n.1 82315.714548: cpu_idle: state=4294967295 cpu_id=0
39092          <idle>-0     (-----) [000] d..2 82315.714554: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
39093<...>-87 ( 87) [003] d..2 82315.714558: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39094          <idle>-0     (-----) [003] d..1 82315.714563: cpu_idle: state=0 cpu_id=3
39095  crtc_event:111-322   (  322) [000] d..2 82315.714569: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39096          <idle>-0     (-----) [000] d..1 82315.714575: cpu_idle: state=0 cpu_id=0
39097          <idle>-0     (-----) [002] d.h4 82315.714588: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39098          <idle>-0     (-----) [002] d.h5 82315.714597: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39099          <idle>-0     (-----) [000] .n.1 82315.714602: cpu_idle: state=4294967295 cpu_id=0
39100          <idle>-0     (-----) [002] ...1 82315.714602: cpu_idle: state=4294967295 cpu_id=2
39101          <idle>-0     (-----) [002] d..1 82315.714605: cpu_idle: state=0 cpu_id=2
39102          <idle>-0     (-----) [000] d..2 82315.714608: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39103<...>-86 ( 86) [000] d..2 82315.714630: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39104          <idle>-0     (-----) [000] d..1 82315.714637: cpu_idle: state=0 cpu_id=0
39105          <idle>-0     (-----) [002] d.h4 82315.714835: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39106          <idle>-0     (-----) [007] dnh2 82315.714848: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39107          <idle>-0     (-----) [007] .n.1 82315.714850: cpu_idle: state=4294967295 cpu_id=7
39108          <idle>-0     (-----) [007] d..2 82315.714853: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39109          <idle>-0     (-----) [002] ...1 82315.714858: cpu_idle: state=4294967295 cpu_id=2
39110          <idle>-0     (-----) [002] d..1 82315.714860: cpu_idle: state=0 cpu_id=2
39111<...>-5340 ( 788) [007] d..2 82315.714864: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39112<...>-5340 ( 788) [007] d..2 82315.714874: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
39113          <idle>-0     (-----) [003] dnh2 82315.714878: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39114          <idle>-0     (-----) [007] d..1 82315.714878: cpu_idle: state=0 cpu_id=7
39115          <idle>-0     (-----) [003] .n.1 82315.714881: cpu_idle: state=4294967295 cpu_id=3
39116          <idle>-0     (-----) [003] d..2 82315.714887: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39117<...>-87 ( 87) [003] d..2 82315.714910: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39118          <idle>-0     (-----) [003] d.h3 82315.714917: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
39119          <idle>-0     (-----) [003] dnh4 82315.714928: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
39120          <idle>-0     (-----) [003] d..2 82315.714936: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
39121          <idle>-0     (-----) [002] d.h4 82315.714937: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39122          <idle>-0     (-----) [002] d.h5 82315.714947: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39123          <idle>-0     (-----) [002] ...1 82315.714952: cpu_idle: state=4294967295 cpu_id=2
39124          <idle>-0     (-----) [000] .n.1 82315.714952: cpu_idle: state=4294967295 cpu_id=0
39125          <idle>-0     (-----) [002] d..1 82315.714955: cpu_idle: state=0 cpu_id=2
39126        DispSync-8879  ( 8858) [003] d..1 82315.714959: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
39127          <idle>-0     (-----) [000] d..2 82315.714959: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39128        DispSync-8879  ( 8858) [003] d..2 82315.714977: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
39129<...>-86 ( 86) [000] d..2 82315.714980: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39130          <idle>-0     (-----) [002] .n.1 82315.714981: cpu_idle: state=4294967295 cpu_id=2
39131        DispSync-8879  ( 8858) [003] d..1 82315.714982: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
39132          <idle>-0     (-----) [000] d..1 82315.714986: cpu_idle: state=0 cpu_id=0
39133          <idle>-0     (-----) [002] d..2 82315.714989: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
39134        DispSync-8879  ( 8858) [003] d..2 82315.714992: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
39135          <idle>-0     (-----) [000] .n.1 82315.714997: cpu_idle: state=4294967295 cpu_id=0
39136          <idle>-0     (-----) [000] d..2 82315.715003: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
39137        DispSync-8879  ( 8858) [003] d..2 82315.715016: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39138          <idle>-0     (-----) [003] d..1 82315.715026: cpu_idle: state=0 cpu_id=3
39139   sfEventThread-8882  ( 8858) [002] d..3 82315.715038: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=005
39140  appEventThread-8881  ( 8858) [000] d..3 82315.715050: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
39141          <idle>-0     (-----) [004] dnh2 82315.715064: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
39142  appEventThread-8881  ( 8858) [000] d..4 82315.715066: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
39143   sfEventThread-8882  ( 8858) [002] d..3 82315.715067: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
39144          <idle>-0     (-----) [004] .n.1 82315.715067: cpu_idle: state=4294967295 cpu_id=4
39145          <idle>-0     (-----) [001] .n.1 82315.715071: cpu_idle: state=4294967295 cpu_id=1
39146          <idle>-0     (-----) [004] d..2 82315.715073: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
39147          <idle>-0     (-----) [001] d..2 82315.715077: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
39148   sfEventThread-8882  ( 8858) [002] d..4 82315.715091: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
39149  appEventThread-8881  ( 8858) [000] d..2 82315.715093: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39150          <idle>-0     (-----) [003] .n.1 82315.715097: cpu_idle: state=4294967295 cpu_id=3
39151          <idle>-0     (-----) [000] d..1 82315.715103: cpu_idle: state=0 cpu_id=0
39152          <idle>-0     (-----) [003] d..2 82315.715103: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
39153   sfEventThread-8882  ( 8858) [002] d..2 82315.715120: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
39154<...>-9105 ( 9105) [001] d.s2 82315.715131: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
39155<...>-9105 ( 9105) [001] d.s3 82315.715145: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
39156          <idle>-0     (-----) [000] .n.1 82315.715150: cpu_idle: state=4294967295 cpu_id=0
39157          <idle>-0     (-----) [002] d..1 82315.715155: cpu_idle: state=0 cpu_id=2
39158          <idle>-0     (-----) [000] d..2 82315.715157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
39159  crtc_event:111-322   (  322) [000] d..2 82315.715177: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39160          <idle>-0     (-----) [000] d..1 82315.715183: cpu_idle: state=0 cpu_id=0
39161          <idle>-0     (-----) [002] d.h4 82315.715207: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39162          <idle>-0     (-----) [007] dnh2 82315.715221: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39163          <idle>-0     (-----) [007] .n.1 82315.715224: cpu_idle: state=4294967295 cpu_id=7
39164          <idle>-0     (-----) [007] d..2 82315.715227: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39165          <idle>-0     (-----) [002] ...1 82315.715233: cpu_idle: state=4294967295 cpu_id=2
39166<...>-5340 ( 788) [007] d..2 82315.715235: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39167          <idle>-0     (-----) [002] d..1 82315.715236: cpu_idle: state=0 cpu_id=2
39168<...>-5340 ( 788) [007] d..2 82315.715248: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
39169          <idle>-0     (-----) [007] d..1 82315.715251: cpu_idle: state=0 cpu_id=7
39170  surfaceflinger-8858  ( 8858) [003] d.h1 82315.715252: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39171<...>-9006 ( 8943) [004] .... 82315.715260: binder_transaction: transaction=1569011 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
39172<...>-9006 ( 8943) [004] .... 82315.715264: binder_transaction_alloc_buf: transaction=1569011 data_size=80 offsets_size=0
39173<...>-9006 ( 8943) [004] d..4 82315.715266: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
39174          <idle>-0     (-----) [000] dnh2 82315.715286: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
39175          <idle>-0     (-----) [000] .n.1 82315.715290: cpu_idle: state=4294967295 cpu_id=0
39176          <idle>-0     (-----) [000] d..2 82315.715296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
39177<...>-13083 ( 8858) [000] .... 82315.715301: binder_transaction_received: transaction=1569011
39178<...>-13083 ( 8858) [000] d..1 82315.715323: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
39179<...>-9105 ( 9105) [001] .... 82315.715328: binder_transaction: transaction=1569012 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
39180<...>-9105 ( 9105) [001] .... 82315.715332: binder_transaction_alloc_buf: transaction=1569012 data_size=80 offsets_size=0
39181<...>-13083 ( 8858) [000] d..2 82315.715335: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
39182<...>-9105 ( 9105) [001] d..4 82315.715336: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
39183          <idle>-0     (-----) [002] .n.1 82315.715339: cpu_idle: state=4294967295 cpu_id=2
39184          <idle>-0     (-----) [002] d..2 82315.715344: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
39185<...>-9006 ( 8943) [004] .... 82315.715362: binder_transaction: transaction=1569013 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
39186<...>-9006 ( 8943) [004] .... 82315.715364: binder_transaction_alloc_buf: transaction=1569013 data_size=988 offsets_size=48
39187          <idle>-0     (-----) [005] dnh2 82315.715365: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
39188          <idle>-0     (-----) [005] .n.1 82315.715368: cpu_idle: state=4294967295 cpu_id=5
39189<...>-9006 ( 8943) [004] ...2 82315.715374: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
39190          <idle>-0     (-----) [005] d..2 82315.715375: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
39191   sfEventThread-8882  ( 8858) [002] d..2 82315.715375: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
39192<...>-13083 ( 8858) [000] d..2 82315.715377: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39193<...>-9006 ( 8943) [004] d..4 82315.715379: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=000
39194          <idle>-0     (-----) [002] d..1 82315.715380: cpu_idle: state=0 cpu_id=2
39195<...>-9105 ( 9105) [001] d..3 82315.715380: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
39196          <idle>-0     (-----) [000] d..1 82315.715387: cpu_idle: state=0 cpu_id=0
39197<...>-9006 ( 8943) [004] d..5 82315.715397: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
39198<...>-9105 ( 9105) [001] d..4 82315.715400: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
39199          <idle>-0     (-----) [000] .n.1 82315.715406: cpu_idle: state=4294967295 cpu_id=0
39200<...>-8951 ( 8858) [005] .... 82315.715424: binder_transaction_received: transaction=1569012
39201          <idle>-0     (-----) [000] d..2 82315.715426: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
39202<...>-9006 ( 8943) [004] d..2 82315.715428: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
39203<...>-8951 ( 8858) [005] d..1 82315.715435: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
39204<...>-13083 ( 8858) [004] .... 82315.715437: binder_transaction_received: transaction=1569013
39205          <idle>-0     (-----) [002] dnh2 82315.715455: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
39206          <idle>-0     (-----) [002] .n.1 82315.715459: cpu_idle: state=4294967295 cpu_id=2
39207    RenderThread-9436  ( 9105) [000] d..2 82315.715461: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39208<...>-8951 ( 8858) [005] d..2 82315.715462: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
39209          <idle>-0     (-----) [002] d..2 82315.715464: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
39210          <idle>-0     (-----) [005] d..1 82315.715467: cpu_idle: state=0 cpu_id=5
39211          <idle>-0     (-----) [000] d..1 82315.715469: cpu_idle: state=0 cpu_id=0
39212<...>-13083 ( 8858) [004] d..1 82315.715492: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
39213  appEventThread-8881  ( 8858) [002] d..2 82315.715494: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
39214          <idle>-0     (-----) [002] d..1 82315.715499: cpu_idle: state=0 cpu_id=2
39215          <idle>-0     (-----) [002] dnh2 82315.715510: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
39216<...>-13083 ( 8858) [004] .... 82315.715512: binder_transaction: transaction=1569014 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
39217          <idle>-0     (-----) [002] .n.1 82315.715514: cpu_idle: state=4294967295 cpu_id=2
39218<...>-13083 ( 8858) [004] .... 82315.715514: binder_transaction_alloc_buf: transaction=1569014 data_size=0 offsets_size=0
39219<...>-13083 ( 8858) [004] d..2 82315.715515: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
39220          <idle>-0     (-----) [002] d..2 82315.715518: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
39221<...>-13083 ( 8858) [004] dn.3 82315.715521: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
39222<...>-13083 ( 8858) [004] d..2 82315.715525: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
39223<...>-9006 ( 8943) [004] .... 82315.715529: binder_transaction_received: transaction=1569014
39224   sfEventThread-8882  ( 8858) [002] d..2 82315.715538: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
39225<...>-9105 ( 9105) [001] d..3 82315.715540: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
39226          <idle>-0     (-----) [002] d..1 82315.715542: cpu_idle: state=0 cpu_id=2
39227<...>-9105 ( 9105) [001] d..4 82315.715553: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
39228          <idle>-0     (-----) [000] .n.1 82315.715558: cpu_idle: state=4294967295 cpu_id=0
39229          <idle>-0     (-----) [000] d..2 82315.715566: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
39230<...>-9105 ( 9105) [001] d..2 82315.715576: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39231<...>-9006 ( 8943) [004] d..2 82315.715577: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
39232<...>-13083 ( 8858) [004] .... 82315.715582: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
39233          <idle>-0     (-----) [001] d..1 82315.715589: cpu_idle: state=0 cpu_id=1
39234<...>-13083 ( 8858) [004] d..2 82315.715612: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39235          <idle>-0     (-----) [004] d..1 82315.715621: cpu_idle: state=0 cpu_id=4
39236    RenderThread-9436  ( 9105) [000] d..1 82315.715666: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
39237    RenderThread-9436  ( 9105) [000] d..2 82315.715680: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
39238          <idle>-0     (-----) [001] .n.1 82315.715685: cpu_idle: state=4294967295 cpu_id=1
39239          <idle>-0     (-----) [007] ...1 82315.715687: cpu_idle: state=4294967295 cpu_id=7
39240          <idle>-0     (-----) [007] d..1 82315.715688: cpu_idle: state=0 cpu_id=7
39241          <idle>-0     (-----) [001] d..2 82315.715694: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
39242    RenderThread-9436  ( 9105) [000] .... 82315.715723: binder_transaction: transaction=1569015 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
39243    RenderThread-9436  ( 9105) [000] .... 82315.715726: binder_transaction_alloc_buf: transaction=1569015 data_size=104 offsets_size=0
39244    RenderThread-9436  ( 9105) [000] d..4 82315.715730: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
39245<...>-9105 ( 9105) [001] d..2 82315.715745: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39246    RenderThread-9436  ( 9105) [000] dn.5 82315.715748: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
39247          <idle>-0     (-----) [001] d..1 82315.715754: cpu_idle: state=0 cpu_id=1
39248    RenderThread-9436  ( 9105) [000] d..2 82315.715785: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
39249<...>-13083 ( 8858) [000] .... 82315.715791: binder_transaction_received: transaction=1569015
39250<...>-13083 ( 8858) [000] .... 82315.715837: binder_transaction: transaction=1569016 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
39251<...>-13083 ( 8858) [000] .... 82315.715841: binder_transaction_alloc_buf: transaction=1569016 data_size=52 offsets_size=8
39252<...>-13083 ( 8858) [000] d..2 82315.715873: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
39253    RenderThread-9436  ( 9105) [000] .... 82315.715879: binder_transaction_received: transaction=1569016
39254  surfaceflinger-8858  ( 8858) [003] ...1 82315.716416: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
39255  surfaceflinger-8858  ( 8858) [003] ...1 82315.716421: tracing_mark_write: E|8858
39256  surfaceflinger-8858  ( 8858) [003] .... 82315.716462: binder_transaction: transaction=1569017 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
39257  surfaceflinger-8858  ( 8858) [003] .... 82315.716465: binder_transaction_alloc_buf: transaction=1569017 data_size=620 offsets_size=112
39258  surfaceflinger-8858  ( 8858) [003] ...2 82315.716481: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
39259  surfaceflinger-8858  ( 8858) [003] d..4 82315.716486: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
39260  surfaceflinger-8858  ( 8858) [003] d..5 82315.716507: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
39261          <idle>-0     (-----) [002] .n.1 82315.716511: cpu_idle: state=4294967295 cpu_id=2
39262          <idle>-0     (-----) [002] d..2 82315.716516: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
39263  surfaceflinger-8858  ( 8858) [003] d..2 82315.716520: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39264 [email protected]   (  619) [002] .... 82315.716524: binder_transaction_received: transaction=1569017
39265<...>-87 ( 87) [003] d..2 82315.716550: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39266 [email protected]   (  619) [002] ...1 82315.716560: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
39267          <idle>-0     (-----) [003] d..1 82315.716563: cpu_idle: state=0 cpu_id=3
39268 [email protected]   (  619) [002] ...1 82315.716664: tracing_mark_write: B|619|HWCSession::PresentDisplay::
39269    RenderThread-9436  ( 9105) [000] d..2 82315.716900: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
39270          <idle>-0     (-----) [000] d..1 82315.716911: cpu_idle: state=0 cpu_id=0
39271 [email protected]   (  619) [002] d.h3 82315.716935: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39272 [email protected]   (  619) [002] d.h4 82315.716951: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39273          <idle>-0     (-----) [000] .n.1 82315.716956: cpu_idle: state=4294967295 cpu_id=0
39274          <idle>-0     (-----) [000] d..2 82315.716965: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39275<...>-86 ( 86) [000] d.h2 82315.716985: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
39276<...>-86 ( 86) [000] d.h3 82315.716999: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
39277<...>-86 ( 86) [000] d.h3 82315.717006: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
39278          <idle>-0     (-----) [001] .n.1 82315.717011: cpu_idle: state=4294967295 cpu_id=1
39279          <idle>-0     (-----) [001] d..2 82315.717019: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
39280<...>-86 ( 86) [000] d..2 82315.717021: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39281          <idle>-0     (-----) [000] d..1 82315.717030: cpu_idle: state=0 cpu_id=0
39282          <idle>-0     (-----) [000] d.h3 82315.717080: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
39283          <idle>-0     (-----) [000] dnh4 82315.717094: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
39284          <idle>-0     (-----) [000] .n.1 82315.717104: cpu_idle: state=4294967295 cpu_id=0
39285          <idle>-0     (-----) [000] d..2 82315.717110: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
39286 kgsl_worker_thr-258   (  258) [000] d..2 82315.717150: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
39287    RenderThread-9436  ( 9105) [001] .... 82315.717173: binder_transaction: transaction=1569018 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
39288 kgsl_worker_thr-258   (  258) [000] d..3 82315.717174: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
39289    RenderThread-9436  ( 9105) [001] .... 82315.717176: binder_transaction_alloc_buf: transaction=1569018 data_size=192 offsets_size=8
39290    RenderThread-9436  ( 9105) [001] d..4 82315.717183: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
39291 kgsl_worker_thr-258   (  258) [000] d..2 82315.717185: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
39292    RenderThread-9436  ( 9105) [001] dn.5 82315.717202: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
39293    RenderThread-9436  ( 9105) [001] d..2 82315.717209: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
39294 [email protected]   (  619) [002] ...1 82315.717213: tracing_mark_write: B|619|HWDeviceDRM::Validate::
39295<...>-13083 ( 8858) [001] .... 82315.717214: binder_transaction_received: transaction=1569018
39296  kworker/u16:15-1311  ( 1311) [000] d..2 82315.717224: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39297          <idle>-0     (-----) [000] d..1 82315.717233: cpu_idle: state=0 cpu_id=0
39298 [email protected]   (  619) [002] d.h3 82315.717255: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
39299 [email protected]   (  619) [002] d.h4 82315.717280: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
39300          <idle>-0     (-----) [000] .n.1 82315.717287: cpu_idle: state=4294967295 cpu_id=0
39301          <idle>-0     (-----) [000] d..2 82315.717294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39302<...>-13083 ( 8858) [001] .... 82315.717300: binder_transaction: transaction=1569019 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
39303<...>-13083 ( 8858) [001] .... 82315.717303: binder_transaction_alloc_buf: transaction=1569019 data_size=68 offsets_size=0
39304<...>-13083 ( 8858) [001] d..2 82315.717336: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
39305    RenderThread-9436  ( 9105) [001] .... 82315.717342: binder_transaction_received: transaction=1569019
39306<...>-5340 ( 788) [000] d..2 82315.717346: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39307<...>-5340 ( 788) [000] d..3 82315.717359: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39308          <idle>-0     (-----) [003] .n.1 82315.717365: cpu_idle: state=4294967295 cpu_id=3
39309          <idle>-0     (-----) [003] d..2 82315.717373: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39310<...>-5340 ( 788) [000] d..2 82315.717376: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39311          <idle>-0     (-----) [000] d..1 82315.717386: cpu_idle: state=0 cpu_id=0
39312<...>-87 ( 87) [003] d..2 82315.717396: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39313          <idle>-0     (-----) [003] d..1 82315.717403: cpu_idle: state=0 cpu_id=3
39314    RenderThread-9436  ( 9105) [001] d..2 82315.717409: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
39315          <idle>-0     (-----) [001] d..1 82315.717422: cpu_idle: state=0 cpu_id=1
39316 [email protected]   (  619) [002] ...1 82315.717714: tracing_mark_write: E|619
39317 [email protected]   (  619) [002] ...1 82315.717835: tracing_mark_write: B|619|HWDeviceDRM::Commit::
39318 [email protected]   (  619) [002] ...1 82315.717842: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
39319 [email protected]   (  619) [002] d.h3 82315.718145: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39320 [email protected]   (  619) [002] d.h4 82315.718160: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39321          <idle>-0     (-----) [000] .n.1 82315.718165: cpu_idle: state=4294967295 cpu_id=0
39322          <idle>-0     (-----) [000] d..2 82315.718173: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39323<...>-86 ( 86) [000] d..2 82315.718196: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39324          <idle>-0     (-----) [000] d..1 82315.718203: cpu_idle: state=0 cpu_id=0
39325 [email protected]   (  619) [002] d..2 82315.718213: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
39326 [email protected]   (  619) [002] d..3 82315.718227: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
39327          <idle>-0     (-----) [001] .n.1 82315.718233: cpu_idle: state=4294967295 cpu_id=1
39328          <idle>-0     (-----) [001] d..2 82315.718240: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
39329 [email protected]   (  619) [002] ...1 82315.718293: tracing_mark_write: E|619
39330 [email protected]   (  619) [002] ...1 82315.718297: tracing_mark_write: E|619
39331 [email protected]   (  619) [002] ...1 82315.718335: tracing_mark_write: E|619
39332 [email protected]   (  619) [002] ...1 82315.718371: tracing_mark_write: E|619
39333 [email protected]   (  619) [002] .... 82315.718382: binder_transaction: transaction=1569020 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
39334 [email protected]   (  619) [002] .... 82315.718386: binder_transaction_alloc_buf: transaction=1569020 data_size=736 offsets_size=144
39335 [email protected]   (  619) [002] d..2 82315.718400: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
39336 [email protected]   (  619) [002] d..3 82315.718412: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
39337 [email protected]   (  619) [002] .... 82315.718415: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
39338          <idle>-0     (-----) [003] .n.1 82315.718416: cpu_idle: state=4294967295 cpu_id=3
39339          <idle>-0     (-----) [003] d..2 82315.718422: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
39340  surfaceflinger-8858  ( 8858) [003] .... 82315.718428: binder_transaction_received: transaction=1569020
39341  surfaceflinger-8858  ( 8858) [003] d.s2 82315.718466: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
39342 [email protected]   (  619) [002] d.H3 82315.718477: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
39343  surfaceflinger-8858  ( 8858) [003] d.s3 82315.718479: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
39344          <idle>-0     (-----) [000] .n.1 82315.718483: cpu_idle: state=4294967295 cpu_id=0
39345          <idle>-0     (-----) [000] d..2 82315.718492: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
39346          <idle>-0     (-----) [004] dnh2 82315.718514: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39347          <idle>-0     (-----) [004] .n.1 82315.718517: cpu_idle: state=4294967295 cpu_id=4
39348          <idle>-0     (-----) [004] d..2 82315.718522: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39349<...>-5340 ( 788) [004] d..2 82315.718553: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39350 [email protected]   (  619) [002] d.s1 82315.718557: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
39351  surfaceflinger-8858  ( 8858) [003] d.h1 82315.718570: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39352<...>-5340 ( 788) [004] d..2 82315.718573: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39353 [email protected]   (  619) [002] d.s2 82315.718576: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
39354          <idle>-0     (-----) [004] d..1 82315.718579: cpu_idle: state=0 cpu_id=4
39355  kworker/u16:15-1311  ( 1311) [000] .... 82315.718622: clk_set_rate: l3_cluster0_vote_clk 576000000
39356  kworker/u16:15-1311  ( 1311) [000] .... 82315.718626: clk_set_rate: l3_clk 576000000
39357 [email protected]   (  619) [002] d..2 82315.718628: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
39358     rcu_preempt-7     (    7) [002] d..2 82315.718665: 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
39359          <idle>-0     (-----) [002] d..1 82315.718681: cpu_idle: state=0 cpu_id=2
39360  kworker/u16:15-1311  ( 1311) [000] d..2 82315.718796: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
39361          <idle>-0     (-----) [000] d..1 82315.718806: cpu_idle: state=0 cpu_id=0
39362 crtc_commit:111-321   (  321) [001] d.s1 82315.718818: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
39363 crtc_commit:111-321   (  321) [001] d.s2 82315.718828: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
39364  surfaceflinger-8858  ( 8858) [003] d..2 82315.718840: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39365<...>-87 ( 87) [003] d..2 82315.718877: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39366          <idle>-0     (-----) [003] d..1 82315.718889: cpu_idle: state=0 cpu_id=3
39367          <idle>-0     (-----) [002] d.h4 82315.719362: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39368          <idle>-0     (-----) [002] d.h5 82315.719374: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39369          <idle>-0     (-----) [000] .n.1 82315.719379: cpu_idle: state=4294967295 cpu_id=0
39370          <idle>-0     (-----) [002] ...1 82315.719382: cpu_idle: state=4294967295 cpu_id=2
39371          <idle>-0     (-----) [002] d..1 82315.719384: cpu_idle: state=0 cpu_id=2
39372          <idle>-0     (-----) [000] d..2 82315.719388: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39373<...>-86 ( 86) [000] d..2 82315.719416: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39374          <idle>-0     (-----) [000] d..1 82315.719423: cpu_idle: state=0 cpu_id=0
39375 crtc_commit:111-321   (  321) [001] d..3 82315.719472: sched_pi_setprio: comm=kworker/u16:15 pid=1311 oldprio=120 newprio=83
39376 crtc_commit:111-321   (  321) [001] d..2 82315.719489: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
39377     ksoftirqd/1-18    (   18) [001] d.s2 82315.719500: sched_waking: comm=kworker/u16:15 pid=1311 prio=83 target_cpu=000
39378     ksoftirqd/1-18    (   18) [001] d.s3 82315.719513: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=83 target_cpu=000
39379          <idle>-0     (-----) [000] .n.1 82315.719519: cpu_idle: state=4294967295 cpu_id=0
39380          <idle>-0     (-----) [000] d..2 82315.719525: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=83
39381     ksoftirqd/1-18    (   18) [001] d..2 82315.719531: 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
39382  kworker/u16:15-1311  ( 1311) [000] d..1 82315.719533: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
39383          <idle>-0     (-----) [001] dn.1 82315.719542: cpu_idle: state=0 cpu_id=1
39384  kworker/u16:15-1311  ( 1311) [000] d..2 82315.719546: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
39385          <idle>-0     (-----) [001] .n.1 82315.719546: cpu_idle: state=4294967295 cpu_id=1
39386  kworker/u16:15-1311  ( 1311) [000] d..2 82315.719548: sched_pi_setprio: comm=kworker/u16:15 pid=1311 oldprio=83 newprio=120
39387          <idle>-0     (-----) [001] d..2 82315.719556: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
39388          <idle>-0     (-----) [002] d.h4 82315.719667: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39389          <idle>-0     (-----) [004] dnh2 82315.719681: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39390          <idle>-0     (-----) [004] .n.1 82315.719685: cpu_idle: state=4294967295 cpu_id=4
39391          <idle>-0     (-----) [004] d..2 82315.719690: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39392          <idle>-0     (-----) [002] ...1 82315.719693: cpu_idle: state=4294967295 cpu_id=2
39393          <idle>-0     (-----) [002] d..1 82315.719696: cpu_idle: state=0 cpu_id=2
39394  kworker/u16:15-1311  ( 1311) [000] d..2 82315.719711: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
39395          <idle>-0     (-----) [000] d..1 82315.719722: cpu_idle: state=0 cpu_id=0
39396 crtc_commit:111-321   (  321) [001] d.s1 82315.719731: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
39397 crtc_commit:111-321   (  321) [001] d.s2 82315.719739: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
39398 crtc_commit:111-321   (  321) [001] d..3 82315.719765: sched_pi_setprio: comm=kworker/u16:15 pid=1311 oldprio=120 newprio=83
39399 crtc_commit:111-321   (  321) [001] d..2 82315.719774: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
39400     ksoftirqd/1-18    (   18) [001] d.s2 82315.719781: sched_waking: comm=kworker/u16:15 pid=1311 prio=83 target_cpu=000
39401     ksoftirqd/1-18    (   18) [001] d.s3 82315.719792: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=83 target_cpu=000
39402          <idle>-0     (-----) [000] .n.1 82315.719798: cpu_idle: state=4294967295 cpu_id=0
39403          <idle>-0     (-----) [000] d..2 82315.719805: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=83
39404     ksoftirqd/1-18    (   18) [001] d..2 82315.719807: 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
39405  kworker/u16:15-1311  ( 1311) [000] d..1 82315.719811: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
39406          <idle>-0     (-----) [001] d..1 82315.719817: cpu_idle: state=0 cpu_id=1
39407  kworker/u16:15-1311  ( 1311) [000] d..2 82315.719823: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
39408  kworker/u16:15-1311  ( 1311) [000] d..2 82315.719825: sched_pi_setprio: comm=kworker/u16:15 pid=1311 oldprio=83 newprio=120
39409          <idle>-0     (-----) [001] .n.1 82315.719829: cpu_idle: state=4294967295 cpu_id=1
39410<...>-5340 ( 788) [004] d..2 82315.719833: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39411          <idle>-0     (-----) [001] d..2 82315.719837: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
39412<...>-5340 ( 788) [004] d..2 82315.719849: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39413          <idle>-0     (-----) [003] dnh2 82315.719852: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39414          <idle>-0     (-----) [003] .n.1 82315.719857: cpu_idle: state=4294967295 cpu_id=3
39415          <idle>-0     (-----) [004] d..1 82315.719862: cpu_idle: state=0 cpu_id=4
39416          <idle>-0     (-----) [003] d..2 82315.719864: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39417          <idle>-0     (-----) [004] ...1 82315.719870: cpu_idle: state=4294967295 cpu_id=4
39418          <idle>-0     (-----) [004] d..1 82315.719872: cpu_idle: state=0 cpu_id=4
39419  kworker/u16:15-1311  ( 1311) [000] .... 82315.719881: clk_set_rate: l3_cluster1_vote_clk 300000000
39420<...>-87 ( 87) [003] d..2 82315.719890: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39421  kworker/u16:15-1311  ( 1311) [000] d..2 82315.719897: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39422          <idle>-0     (-----) [003] d..1 82315.719897: cpu_idle: state=0 cpu_id=3
39423          <idle>-0     (-----) [000] d..1 82315.719906: cpu_idle: state=0 cpu_id=0
39424 crtc_commit:111-321   (  321) [001] d..2 82315.720154: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
39425          <idle>-0     (-----) [001] d..1 82315.720164: cpu_idle: state=0 cpu_id=1
39426          <idle>-0     (-----) [002] d.h4 82315.720535: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39427          <idle>-0     (-----) [002] d.h5 82315.720545: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39428          <idle>-0     (-----) [002] ...1 82315.720551: cpu_idle: state=4294967295 cpu_id=2
39429          <idle>-0     (-----) [000] .n.1 82315.720551: cpu_idle: state=4294967295 cpu_id=0
39430          <idle>-0     (-----) [002] d..1 82315.720554: cpu_idle: state=0 cpu_id=2
39431          <idle>-0     (-----) [000] d..2 82315.720559: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39432<...>-86 ( 86) [000] d..2 82315.720585: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39433          <idle>-0     (-----) [000] d..1 82315.720592: cpu_idle: state=0 cpu_id=0
39434          <idle>-0     (-----) [002] d.h4 82315.720942: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39435          <idle>-0     (-----) [004] dnh2 82315.720955: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39436          <idle>-0     (-----) [004] .n.1 82315.720958: cpu_idle: state=4294967295 cpu_id=4
39437          <idle>-0     (-----) [004] d..2 82315.720962: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39438          <idle>-0     (-----) [002] ...1 82315.720965: cpu_idle: state=4294967295 cpu_id=2
39439          <idle>-0     (-----) [002] d..1 82315.720968: cpu_idle: state=0 cpu_id=2
39440<...>-5340 ( 788) [004] d..2 82315.720977: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39441<...>-5340 ( 788) [004] d..2 82315.720990: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39442          <idle>-0     (-----) [003] dnh2 82315.720992: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39443          <idle>-0     (-----) [004] d..1 82315.720994: cpu_idle: state=0 cpu_id=4
39444          <idle>-0     (-----) [003] .n.1 82315.720996: cpu_idle: state=4294967295 cpu_id=3
39445          <idle>-0     (-----) [003] d..2 82315.721002: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39446<...>-87 ( 87) [003] d..2 82315.721026: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39447          <idle>-0     (-----) [003] d..1 82315.721033: cpu_idle: state=0 cpu_id=3
39448          <idle>-0     (-----) [002] d.h4 82315.721052: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39449          <idle>-0     (-----) [002] d.h5 82315.721062: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39450          <idle>-0     (-----) [000] .n.1 82315.721066: cpu_idle: state=4294967295 cpu_id=0
39451          <idle>-0     (-----) [002] ...1 82315.721067: cpu_idle: state=4294967295 cpu_id=2
39452          <idle>-0     (-----) [002] d..1 82315.721070: cpu_idle: state=0 cpu_id=2
39453          <idle>-0     (-----) [000] d..2 82315.721073: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39454<...>-86 ( 86) [000] d..2 82315.721094: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39455          <idle>-0     (-----) [000] d..1 82315.721101: cpu_idle: state=0 cpu_id=0
39456          <idle>-0     (-----) [002] d.h4 82315.721360: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39457          <idle>-0     (-----) [004] dnh2 82315.721372: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39458          <idle>-0     (-----) [004] .n.1 82315.721375: cpu_idle: state=4294967295 cpu_id=4
39459          <idle>-0     (-----) [004] d..2 82315.721379: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39460          <idle>-0     (-----) [002] ...1 82315.721383: cpu_idle: state=4294967295 cpu_id=2
39461          <idle>-0     (-----) [002] d..1 82315.721385: cpu_idle: state=0 cpu_id=2
39462<...>-5340 ( 788) [004] d..2 82315.721390: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39463          <idle>-0     (-----) [001] ...1 82315.721401: cpu_idle: state=4294967295 cpu_id=1
39464<...>-5340 ( 788) [004] d..2 82315.721402: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39465          <idle>-0     (-----) [001] d..1 82315.721404: cpu_idle: state=0 cpu_id=1
39466          <idle>-0     (-----) [003] dnh2 82315.721405: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39467          <idle>-0     (-----) [004] d..1 82315.721405: cpu_idle: state=0 cpu_id=4
39468          <idle>-0     (-----) [003] .n.1 82315.721409: cpu_idle: state=4294967295 cpu_id=3
39469          <idle>-0     (-----) [003] d..2 82315.721415: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39470<...>-87 ( 87) [003] d..2 82315.721439: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39471          <idle>-0     (-----) [003] d..1 82315.721446: cpu_idle: state=0 cpu_id=3
39472          <idle>-0     (-----) [002] d.h4 82315.721466: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39473          <idle>-0     (-----) [002] d.h5 82315.721476: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39474          <idle>-0     (-----) [002] ...1 82315.721481: cpu_idle: state=4294967295 cpu_id=2
39475          <idle>-0     (-----) [000] .n.1 82315.721481: cpu_idle: state=4294967295 cpu_id=0
39476          <idle>-0     (-----) [002] d..1 82315.721484: cpu_idle: state=0 cpu_id=2
39477          <idle>-0     (-----) [000] d..2 82315.721489: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39478<...>-86 ( 86) [000] d..2 82315.721511: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39479          <idle>-0     (-----) [000] d..1 82315.721518: cpu_idle: state=0 cpu_id=0
39480          <idle>-0     (-----) [002] d.h4 82315.721706: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39481          <idle>-0     (-----) [004] dnh2 82315.721719: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39482          <idle>-0     (-----) [004] .n.1 82315.721721: cpu_idle: state=4294967295 cpu_id=4
39483          <idle>-0     (-----) [004] d..2 82315.721724: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39484          <idle>-0     (-----) [002] ...1 82315.721729: cpu_idle: state=4294967295 cpu_id=2
39485          <idle>-0     (-----) [002] d..1 82315.721732: cpu_idle: state=0 cpu_id=2
39486<...>-5340 ( 788) [004] d..2 82315.721734: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39487<...>-5340 ( 788) [004] d..2 82315.721745: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39488          <idle>-0     (-----) [004] d..1 82315.721748: cpu_idle: state=0 cpu_id=4
39489          <idle>-0     (-----) [003] dnh2 82315.721749: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39490          <idle>-0     (-----) [003] .n.1 82315.721754: cpu_idle: state=4294967295 cpu_id=3
39491          <idle>-0     (-----) [003] d..2 82315.721760: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39492          <idle>-0     (-----) [002] d.h4 82315.721810: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39493<...>-87 ( 87) [003] d..2 82315.721817: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39494          <idle>-0     (-----) [002] d.h5 82315.721819: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39495          <idle>-0     (-----) [000] .n.1 82315.721825: cpu_idle: state=4294967295 cpu_id=0
39496          <idle>-0     (-----) [003] d..1 82315.721825: cpu_idle: state=0 cpu_id=3
39497          <idle>-0     (-----) [002] ...1 82315.721825: cpu_idle: state=4294967295 cpu_id=2
39498          <idle>-0     (-----) [002] d..1 82315.721828: cpu_idle: state=0 cpu_id=2
39499          <idle>-0     (-----) [000] d..2 82315.721833: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39500<...>-86 ( 86) [000] d..2 82315.721856: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39501          <idle>-0     (-----) [000] d..1 82315.721863: cpu_idle: state=0 cpu_id=0
39502          <idle>-0     (-----) [002] d.h4 82315.722044: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39503          <idle>-0     (-----) [004] dnh2 82315.722057: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39504          <idle>-0     (-----) [004] .n.1 82315.722060: cpu_idle: state=4294967295 cpu_id=4
39505          <idle>-0     (-----) [004] d..2 82315.722064: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39506          <idle>-0     (-----) [002] ...1 82315.722067: cpu_idle: state=4294967295 cpu_id=2
39507          <idle>-0     (-----) [002] d..1 82315.722070: cpu_idle: state=0 cpu_id=2
39508<...>-5340 ( 788) [004] d..2 82315.722073: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39509<...>-5340 ( 788) [004] d..2 82315.722084: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39510          <idle>-0     (-----) [003] dnh2 82315.722088: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39511          <idle>-0     (-----) [004] d..1 82315.722088: cpu_idle: state=0 cpu_id=4
39512          <idle>-0     (-----) [003] .n.1 82315.722092: cpu_idle: state=4294967295 cpu_id=3
39513          <idle>-0     (-----) [003] d..2 82315.722099: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39514<...>-87 ( 87) [003] d..2 82315.722124: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39515          <idle>-0     (-----) [003] d..1 82315.722130: cpu_idle: state=0 cpu_id=3
39516          <idle>-0     (-----) [002] d.h4 82315.722151: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39517          <idle>-0     (-----) [002] d.h5 82315.722161: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39518          <idle>-0     (-----) [000] .n.1 82315.722166: cpu_idle: state=4294967295 cpu_id=0
39519          <idle>-0     (-----) [002] ...1 82315.722167: cpu_idle: state=4294967295 cpu_id=2
39520          <idle>-0     (-----) [002] d..1 82315.722169: cpu_idle: state=0 cpu_id=2
39521          <idle>-0     (-----) [000] d..2 82315.722173: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39522<...>-86 ( 86) [000] d..2 82315.722195: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39523          <idle>-0     (-----) [000] d..1 82315.722202: cpu_idle: state=0 cpu_id=0
39524          <idle>-0     (-----) [002] d.h4 82315.722379: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39525          <idle>-0     (-----) [004] dnh2 82315.722391: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39526          <idle>-0     (-----) [004] .n.1 82315.722394: cpu_idle: state=4294967295 cpu_id=4
39527          <idle>-0     (-----) [004] d..2 82315.722397: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39528          <idle>-0     (-----) [002] ...1 82315.722402: cpu_idle: state=4294967295 cpu_id=2
39529          <idle>-0     (-----) [002] d..1 82315.722404: cpu_idle: state=0 cpu_id=2
39530<...>-5340 ( 788) [004] d..2 82315.722406: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39531<...>-5340 ( 788) [004] d..2 82315.722417: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39532          <idle>-0     (-----) [003] dnh2 82315.722420: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39533          <idle>-0     (-----) [004] d..1 82315.722421: cpu_idle: state=0 cpu_id=4
39534          <idle>-0     (-----) [003] .n.1 82315.722424: cpu_idle: state=4294967295 cpu_id=3
39535          <idle>-0     (-----) [003] d..2 82315.722430: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39536<...>-87 ( 87) [003] d..2 82315.722455: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39537          <idle>-0     (-----) [003] d..1 82315.722461: cpu_idle: state=0 cpu_id=3
39538          <idle>-0     (-----) [002] d.h4 82315.722481: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39539          <idle>-0     (-----) [002] d.h5 82315.722490: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39540          <idle>-0     (-----) [000] .n.1 82315.722495: cpu_idle: state=4294967295 cpu_id=0
39541          <idle>-0     (-----) [002] ...1 82315.722496: cpu_idle: state=4294967295 cpu_id=2
39542          <idle>-0     (-----) [002] d..1 82315.722498: cpu_idle: state=0 cpu_id=2
39543          <idle>-0     (-----) [000] d..2 82315.722502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39544<...>-86 ( 86) [000] d..2 82315.722523: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39545          <idle>-0     (-----) [000] d..1 82315.722530: cpu_idle: state=0 cpu_id=0
39546          <idle>-0     (-----) [002] d.h4 82315.722710: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39547          <idle>-0     (-----) [004] dnh2 82315.722722: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39548          <idle>-0     (-----) [004] .n.1 82315.722725: cpu_idle: state=4294967295 cpu_id=4
39549          <idle>-0     (-----) [004] d..2 82315.722729: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39550          <idle>-0     (-----) [002] ...1 82315.722734: cpu_idle: state=4294967295 cpu_id=2
39551          <idle>-0     (-----) [002] d..1 82315.722736: cpu_idle: state=0 cpu_id=2
39552<...>-5340 ( 788) [004] d..2 82315.722738: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39553<...>-5340 ( 788) [004] d..2 82315.722749: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39554          <idle>-0     (-----) [003] dnh2 82315.722752: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39555          <idle>-0     (-----) [004] d..1 82315.722753: cpu_idle: state=0 cpu_id=4
39556          <idle>-0     (-----) [003] .n.1 82315.722756: cpu_idle: state=4294967295 cpu_id=3
39557          <idle>-0     (-----) [003] d..2 82315.722762: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39558<...>-87 ( 87) [003] d..2 82315.722786: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39559          <idle>-0     (-----) [003] d..1 82315.722793: cpu_idle: state=0 cpu_id=3
39560          <idle>-0     (-----) [002] d.h4 82315.722813: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39561          <idle>-0     (-----) [002] d.h5 82315.722822: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39562          <idle>-0     (-----) [000] .n.1 82315.722828: cpu_idle: state=4294967295 cpu_id=0
39563          <idle>-0     (-----) [002] ...1 82315.722828: cpu_idle: state=4294967295 cpu_id=2
39564          <idle>-0     (-----) [002] d..1 82315.722830: cpu_idle: state=0 cpu_id=2
39565          <idle>-0     (-----) [000] d..2 82315.722835: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39566<...>-86 ( 86) [000] d..2 82315.722857: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39567          <idle>-0     (-----) [000] d..1 82315.722863: cpu_idle: state=0 cpu_id=0
39568          <idle>-0     (-----) [002] d.h4 82315.723050: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39569          <idle>-0     (-----) [004] dnh2 82315.723063: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39570          <idle>-0     (-----) [004] .n.1 82315.723065: cpu_idle: state=4294967295 cpu_id=4
39571          <idle>-0     (-----) [004] d..2 82315.723069: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39572          <idle>-0     (-----) [002] ...1 82315.723074: cpu_idle: state=4294967295 cpu_id=2
39573          <idle>-0     (-----) [002] d..1 82315.723077: cpu_idle: state=0 cpu_id=2
39574<...>-5340 ( 788) [004] d..2 82315.723078: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39575<...>-5340 ( 788) [004] d..2 82315.723089: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39576          <idle>-0     (-----) [003] dnh2 82315.723092: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39577          <idle>-0     (-----) [004] d..1 82315.723093: cpu_idle: state=0 cpu_id=4
39578          <idle>-0     (-----) [003] .n.1 82315.723097: cpu_idle: state=4294967295 cpu_id=3
39579          <idle>-0     (-----) [003] d..2 82315.723103: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39580<...>-87 ( 87) [003] d..2 82315.723127: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39581          <idle>-0     (-----) [003] d..1 82315.723133: cpu_idle: state=0 cpu_id=3
39582          <idle>-0     (-----) [002] d.h4 82315.723154: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39583          <idle>-0     (-----) [002] d.h5 82315.723163: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39584          <idle>-0     (-----) [000] .n.1 82315.723169: cpu_idle: state=4294967295 cpu_id=0
39585          <idle>-0     (-----) [002] ...1 82315.723169: cpu_idle: state=4294967295 cpu_id=2
39586          <idle>-0     (-----) [002] d..1 82315.723171: cpu_idle: state=0 cpu_id=2
39587          <idle>-0     (-----) [000] d..2 82315.723176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39588<...>-86 ( 86) [000] d..2 82315.723197: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39589          <idle>-0     (-----) [000] d..1 82315.723204: cpu_idle: state=0 cpu_id=0
39590          <idle>-0     (-----) [002] d.h4 82315.723384: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39591          <idle>-0     (-----) [004] dnh2 82315.723397: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39592          <idle>-0     (-----) [004] .n.1 82315.723399: cpu_idle: state=4294967295 cpu_id=4
39593          <idle>-0     (-----) [004] d..2 82315.723403: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39594          <idle>-0     (-----) [002] ...1 82315.723407: cpu_idle: state=4294967295 cpu_id=2
39595          <idle>-0     (-----) [002] d..1 82315.723410: cpu_idle: state=0 cpu_id=2
39596<...>-5340 ( 788) [004] d..2 82315.723412: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39597<...>-5340 ( 788) [004] d..2 82315.723423: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39598          <idle>-0     (-----) [004] d..1 82315.723426: cpu_idle: state=0 cpu_id=4
39599          <idle>-0     (-----) [003] dnh2 82315.723426: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39600          <idle>-0     (-----) [003] .n.1 82315.723430: cpu_idle: state=4294967295 cpu_id=3
39601          <idle>-0     (-----) [003] d..2 82315.723436: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39602<...>-87 ( 87) [003] d..2 82315.723460: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39603          <idle>-0     (-----) [003] d..1 82315.723467: cpu_idle: state=0 cpu_id=3
39604          <idle>-0     (-----) [002] d.h4 82315.723487: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39605          <idle>-0     (-----) [002] d.h5 82315.723497: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39606          <idle>-0     (-----) [000] .n.1 82315.723502: cpu_idle: state=4294967295 cpu_id=0
39607          <idle>-0     (-----) [002] ...1 82315.723502: cpu_idle: state=4294967295 cpu_id=2
39608          <idle>-0     (-----) [002] d..1 82315.723505: cpu_idle: state=0 cpu_id=2
39609          <idle>-0     (-----) [000] d..2 82315.723509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39610<...>-86 ( 86) [000] d..2 82315.723530: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39611          <idle>-0     (-----) [000] d..1 82315.723536: cpu_idle: state=0 cpu_id=0
39612          <idle>-0     (-----) [002] d.h4 82315.723716: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39613          <idle>-0     (-----) [004] dnh2 82315.723729: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39614          <idle>-0     (-----) [004] .n.1 82315.723732: cpu_idle: state=4294967295 cpu_id=4
39615          <idle>-0     (-----) [004] d..2 82315.723735: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39616          <idle>-0     (-----) [002] ...1 82315.723739: cpu_idle: state=4294967295 cpu_id=2
39617          <idle>-0     (-----) [002] d..1 82315.723741: cpu_idle: state=0 cpu_id=2
39618<...>-5340 ( 788) [004] d..2 82315.723746: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39619<...>-5340 ( 788) [004] d..2 82315.723757: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39620          <idle>-0     (-----) [003] dnh2 82315.723760: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39621          <idle>-0     (-----) [004] d..1 82315.723760: cpu_idle: state=0 cpu_id=4
39622          <idle>-0     (-----) [003] .n.1 82315.723765: cpu_idle: state=4294967295 cpu_id=3
39623          <idle>-0     (-----) [003] d..2 82315.723770: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39624<...>-87 ( 87) [003] d..2 82315.723795: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39625          <idle>-0     (-----) [003] d..1 82315.723801: cpu_idle: state=0 cpu_id=3
39626          <idle>-0     (-----) [002] d.h4 82315.723821: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39627          <idle>-0     (-----) [002] d.h5 82315.723831: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39628          <idle>-0     (-----) [000] .n.1 82315.723836: cpu_idle: state=4294967295 cpu_id=0
39629          <idle>-0     (-----) [002] ...1 82315.723836: cpu_idle: state=4294967295 cpu_id=2
39630          <idle>-0     (-----) [002] d..1 82315.723839: cpu_idle: state=0 cpu_id=2
39631          <idle>-0     (-----) [000] d..2 82315.723843: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39632<...>-86 ( 86) [000] d..2 82315.723865: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39633          <idle>-0     (-----) [000] d..1 82315.723872: cpu_idle: state=0 cpu_id=0
39634          <idle>-0     (-----) [002] d.h4 82315.724116: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39635          <idle>-0     (-----) [004] dnh2 82315.724128: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39636          <idle>-0     (-----) [004] .n.1 82315.724131: cpu_idle: state=4294967295 cpu_id=4
39637          <idle>-0     (-----) [004] d..2 82315.724134: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39638          <idle>-0     (-----) [002] ...1 82315.724138: cpu_idle: state=4294967295 cpu_id=2
39639          <idle>-0     (-----) [002] d..1 82315.724141: cpu_idle: state=0 cpu_id=2
39640<...>-5340 ( 788) [004] d..2 82315.724144: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39641<...>-5340 ( 788) [004] d..2 82315.724155: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39642          <idle>-0     (-----) [003] dnh2 82315.724158: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39643          <idle>-0     (-----) [004] d..1 82315.724158: cpu_idle: state=0 cpu_id=4
39644          <idle>-0     (-----) [003] .n.1 82315.724162: cpu_idle: state=4294967295 cpu_id=3
39645          <idle>-0     (-----) [003] d..2 82315.724168: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39646<...>-87 ( 87) [003] d..2 82315.724192: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39647          <idle>-0     (-----) [003] d..1 82315.724198: cpu_idle: state=0 cpu_id=3
39648          <idle>-0     (-----) [002] d.h4 82315.724217: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39649          <idle>-0     (-----) [002] d.h5 82315.724227: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39650          <idle>-0     (-----) [000] .n.1 82315.724232: cpu_idle: state=4294967295 cpu_id=0
39651          <idle>-0     (-----) [002] ...1 82315.724232: cpu_idle: state=4294967295 cpu_id=2
39652          <idle>-0     (-----) [002] d..1 82315.724235: cpu_idle: state=0 cpu_id=2
39653          <idle>-0     (-----) [000] d..2 82315.724240: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39654<...>-86 ( 86) [000] d..2 82315.724261: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39655          <idle>-0     (-----) [000] d..1 82315.724268: cpu_idle: state=0 cpu_id=0
39656          <idle>-0     (-----) [002] d.h4 82315.724485: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39657          <idle>-0     (-----) [004] dnh2 82315.724498: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39658          <idle>-0     (-----) [004] .n.1 82315.724500: cpu_idle: state=4294967295 cpu_id=4
39659          <idle>-0     (-----) [004] d..2 82315.724504: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39660          <idle>-0     (-----) [002] ...1 82315.724507: cpu_idle: state=4294967295 cpu_id=2
39661          <idle>-0     (-----) [002] d..1 82315.724510: cpu_idle: state=0 cpu_id=2
39662<...>-5340 ( 788) [004] d..2 82315.724513: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39663<...>-5340 ( 788) [004] d..2 82315.724524: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39664          <idle>-0     (-----) [004] d..1 82315.724527: cpu_idle: state=0 cpu_id=4
39665          <idle>-0     (-----) [003] dnh2 82315.724527: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39666          <idle>-0     (-----) [003] .n.1 82315.724531: cpu_idle: state=4294967295 cpu_id=3
39667          <idle>-0     (-----) [003] d..2 82315.724537: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39668<...>-87 ( 87) [003] d..2 82315.724561: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39669          <idle>-0     (-----) [003] d..1 82315.724567: cpu_idle: state=0 cpu_id=3
39670          <idle>-0     (-----) [002] d.h4 82315.724587: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39671          <idle>-0     (-----) [002] d.h5 82315.724596: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39672          <idle>-0     (-----) [000] .n.1 82315.724602: cpu_idle: state=4294967295 cpu_id=0
39673          <idle>-0     (-----) [002] ...1 82315.724602: cpu_idle: state=4294967295 cpu_id=2
39674          <idle>-0     (-----) [002] d..1 82315.724604: cpu_idle: state=0 cpu_id=2
39675          <idle>-0     (-----) [000] d..2 82315.724608: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39676<...>-86 ( 86) [000] d..2 82315.724629: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39677          <idle>-0     (-----) [000] d..1 82315.724636: cpu_idle: state=0 cpu_id=0
39678          <idle>-0     (-----) [002] d.h4 82315.724856: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39679          <idle>-0     (-----) [004] dnh2 82315.724869: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39680          <idle>-0     (-----) [004] .n.1 82315.724871: cpu_idle: state=4294967295 cpu_id=4
39681          <idle>-0     (-----) [004] d..2 82315.724875: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39682          <idle>-0     (-----) [002] ...1 82315.724880: cpu_idle: state=4294967295 cpu_id=2
39683          <idle>-0     (-----) [002] d..1 82315.724882: cpu_idle: state=0 cpu_id=2
39684<...>-5340 ( 788) [004] d..2 82315.724996: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39685<...>-5340 ( 788) [004] d..2 82315.725009: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39686          <idle>-0     (-----) [003] dnh2 82315.725010: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39687          <idle>-0     (-----) [004] d..1 82315.725013: cpu_idle: state=0 cpu_id=4
39688          <idle>-0     (-----) [003] .n.1 82315.725014: cpu_idle: state=4294967295 cpu_id=3
39689          <idle>-0     (-----) [003] d..2 82315.725020: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39690<...>-87 ( 87) [003] d..2 82315.725044: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39691          <idle>-0     (-----) [003] d..1 82315.725050: cpu_idle: state=0 cpu_id=3
39692          <idle>-0     (-----) [002] d.s2 82315.725127: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
39693          <idle>-0     (-----) [002] dns3 82315.725137: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
39694          <idle>-0     (-----) [002] dns3 82315.725141: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
39695          <idle>-0     (-----) [002] dns4 82315.725162: sched_blocked_reason: pid=1311 iowait=0 caller=worker_thread+0x578/0x788
39696          <idle>-0     (-----) [002] dns4 82315.725164: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
39697          <idle>-0     (-----) [002] .n.1 82315.725176: cpu_idle: state=4294967295 cpu_id=2
39698          <idle>-0     (-----) [002] d..2 82315.725185: 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
39699     rcu_preempt-7     (    7) [002] d..2 82315.725191: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
39700     rcu_preempt-7     (    7) [002] d..3 82315.725211: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
39701     rcu_preempt-7     (    7) [002] d..2 82315.725222: 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
39702         rcuop/2-29    (   29) [002] d..2 82315.725235: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
39703  kworker/u16:15-1311  ( 1311) [002] d..2 82315.725298: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
39704          <idle>-0     (-----) [002] d..1 82315.725307: cpu_idle: state=0 cpu_id=2
39705          <idle>-0     (-----) [004] ...1 82315.725449: cpu_idle: state=4294967295 cpu_id=4
39706          <idle>-0     (-----) [004] d..1 82315.725450: cpu_idle: state=0 cpu_id=4
39707          <idle>-0     (-----) [002] d.h4 82315.725735: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39708          <idle>-0     (-----) [002] d.h5 82315.725746: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39709          <idle>-0     (-----) [000] .n.1 82315.725751: cpu_idle: state=4294967295 cpu_id=0
39710          <idle>-0     (-----) [002] ...1 82315.725753: cpu_idle: state=4294967295 cpu_id=2
39711          <idle>-0     (-----) [002] d..1 82315.725756: cpu_idle: state=0 cpu_id=2
39712          <idle>-0     (-----) [000] d..2 82315.725759: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39713<...>-86 ( 86) [000] d..2 82315.725782: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39714          <idle>-0     (-----) [000] d..1 82315.725789: cpu_idle: state=0 cpu_id=0
39715          <idle>-0     (-----) [002] d.h4 82315.726162: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39716          <idle>-0     (-----) [004] dnh2 82315.726175: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39717          <idle>-0     (-----) [004] .n.1 82315.726178: cpu_idle: state=4294967295 cpu_id=4
39718          <idle>-0     (-----) [004] d..2 82315.726182: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39719          <idle>-0     (-----) [002] ...1 82315.726187: cpu_idle: state=4294967295 cpu_id=2
39720          <idle>-0     (-----) [002] d..1 82315.726190: cpu_idle: state=0 cpu_id=2
39721<...>-5340 ( 788) [004] d..2 82315.726197: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39722<...>-5340 ( 788) [004] d..2 82315.726210: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39723          <idle>-0     (-----) [003] dnh2 82315.726211: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39724          <idle>-0     (-----) [004] d..1 82315.726215: cpu_idle: state=0 cpu_id=4
39725          <idle>-0     (-----) [003] .n.1 82315.726215: cpu_idle: state=4294967295 cpu_id=3
39726          <idle>-0     (-----) [003] d..2 82315.726221: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39727<...>-87 ( 87) [003] d..2 82315.726246: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39728          <idle>-0     (-----) [003] d..1 82315.726251: cpu_idle: state=0 cpu_id=3
39729          <idle>-0     (-----) [002] d.h4 82315.726272: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39730          <idle>-0     (-----) [002] d.h5 82315.726282: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39731          <idle>-0     (-----) [000] .n.1 82315.726287: cpu_idle: state=4294967295 cpu_id=0
39732          <idle>-0     (-----) [002] ...1 82315.726287: cpu_idle: state=4294967295 cpu_id=2
39733          <idle>-0     (-----) [002] d..1 82315.726290: cpu_idle: state=0 cpu_id=2
39734          <idle>-0     (-----) [000] d..2 82315.726294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39735<...>-86 ( 86) [000] d..2 82315.726316: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39736          <idle>-0     (-----) [000] d..1 82315.726322: cpu_idle: state=0 cpu_id=0
39737          <idle>-0     (-----) [002] d.h4 82315.726562: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39738          <idle>-0     (-----) [004] dnh2 82315.726575: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39739          <idle>-0     (-----) [004] .n.1 82315.726578: cpu_idle: state=4294967295 cpu_id=4
39740          <idle>-0     (-----) [004] d..2 82315.726581: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39741          <idle>-0     (-----) [002] ...1 82315.726585: cpu_idle: state=4294967295 cpu_id=2
39742          <idle>-0     (-----) [002] d..1 82315.726587: cpu_idle: state=0 cpu_id=2
39743<...>-5340 ( 788) [004] d..2 82315.726591: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39744<...>-5340 ( 788) [004] d..2 82315.726603: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39745          <idle>-0     (-----) [003] dnh2 82315.726605: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39746          <idle>-0     (-----) [004] d..1 82315.726607: cpu_idle: state=0 cpu_id=4
39747          <idle>-0     (-----) [003] .n.1 82315.726609: cpu_idle: state=4294967295 cpu_id=3
39748          <idle>-0     (-----) [003] d..2 82315.726615: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39749<...>-87 ( 87) [003] d..2 82315.726638: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39750          <idle>-0     (-----) [003] d..1 82315.726644: cpu_idle: state=0 cpu_id=3
39751          <idle>-0     (-----) [002] d.h4 82315.726665: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39752          <idle>-0     (-----) [002] d.h5 82315.726675: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39753          <idle>-0     (-----) [000] .n.1 82315.726680: cpu_idle: state=4294967295 cpu_id=0
39754          <idle>-0     (-----) [002] ...1 82315.726681: cpu_idle: state=4294967295 cpu_id=2
39755          <idle>-0     (-----) [002] d..1 82315.726683: cpu_idle: state=0 cpu_id=2
39756          <idle>-0     (-----) [000] d..2 82315.726688: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39757<...>-86 ( 86) [000] d..2 82315.726710: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39758          <idle>-0     (-----) [000] d..1 82315.726716: cpu_idle: state=0 cpu_id=0
39759          <idle>-0     (-----) [002] d.h4 82315.726901: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39760          <idle>-0     (-----) [004] dnh2 82315.726914: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39761          <idle>-0     (-----) [004] .n.1 82315.726917: cpu_idle: state=4294967295 cpu_id=4
39762          <idle>-0     (-----) [004] d..2 82315.726920: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39763          <idle>-0     (-----) [002] ...1 82315.726924: cpu_idle: state=4294967295 cpu_id=2
39764          <idle>-0     (-----) [002] d..1 82315.726927: cpu_idle: state=0 cpu_id=2
39765<...>-5340 ( 788) [004] d..2 82315.726929: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39766<...>-5340 ( 788) [004] d..2 82315.726941: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39767          <idle>-0     (-----) [003] dnh2 82315.726943: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39768          <idle>-0     (-----) [004] d..1 82315.726944: cpu_idle: state=0 cpu_id=4
39769          <idle>-0     (-----) [003] .n.1 82315.726947: cpu_idle: state=4294967295 cpu_id=3
39770          <idle>-0     (-----) [003] d..2 82315.726953: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39771<...>-87 ( 87) [003] d..2 82315.726977: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39772          <idle>-0     (-----) [003] d..1 82315.726982: cpu_idle: state=0 cpu_id=3
39773          <idle>-0     (-----) [002] d.h4 82315.727003: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39774          <idle>-0     (-----) [002] d.h5 82315.727013: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39775          <idle>-0     (-----) [000] .n.1 82315.727018: cpu_idle: state=4294967295 cpu_id=0
39776          <idle>-0     (-----) [002] ...1 82315.727018: cpu_idle: state=4294967295 cpu_id=2
39777          <idle>-0     (-----) [002] d..1 82315.727021: cpu_idle: state=0 cpu_id=2
39778          <idle>-0     (-----) [000] d..2 82315.727025: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39779<...>-86 ( 86) [000] d..2 82315.727048: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39780          <idle>-0     (-----) [000] d..1 82315.727055: cpu_idle: state=0 cpu_id=0
39781          <idle>-0     (-----) [002] d.h4 82315.727236: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39782          <idle>-0     (-----) [004] dnh2 82315.727249: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39783          <idle>-0     (-----) [004] .n.1 82315.727252: cpu_idle: state=4294967295 cpu_id=4
39784          <idle>-0     (-----) [004] d..2 82315.727255: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39785          <idle>-0     (-----) [002] ...1 82315.727260: cpu_idle: state=4294967295 cpu_id=2
39786          <idle>-0     (-----) [002] d..1 82315.727263: cpu_idle: state=0 cpu_id=2
39787<...>-5340 ( 788) [004] d..2 82315.727264: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39788<...>-5340 ( 788) [004] d..2 82315.727275: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39789          <idle>-0     (-----) [003] dnh2 82315.727279: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39790          <idle>-0     (-----) [004] d..1 82315.727279: cpu_idle: state=0 cpu_id=4
39791          <idle>-0     (-----) [003] .n.1 82315.727282: cpu_idle: state=4294967295 cpu_id=3
39792          <idle>-0     (-----) [003] d..2 82315.727288: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39793<...>-87 ( 87) [003] d..2 82315.727312: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39794          <idle>-0     (-----) [003] d..1 82315.727318: cpu_idle: state=0 cpu_id=3
39795          <idle>-0     (-----) [002] d.h4 82315.727339: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39796          <idle>-0     (-----) [002] d.h5 82315.727348: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39797          <idle>-0     (-----) [000] .n.1 82315.727354: cpu_idle: state=4294967295 cpu_id=0
39798          <idle>-0     (-----) [002] ...1 82315.727354: cpu_idle: state=4294967295 cpu_id=2
39799          <idle>-0     (-----) [002] d..1 82315.727357: cpu_idle: state=0 cpu_id=2
39800          <idle>-0     (-----) [000] d..2 82315.727360: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39801<...>-86 ( 86) [000] d..2 82315.727381: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39802          <idle>-0     (-----) [000] d..1 82315.727388: cpu_idle: state=0 cpu_id=0
39803          <idle>-0     (-----) [002] d.h4 82315.727579: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39804          <idle>-0     (-----) [004] dnh2 82315.727592: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39805          <idle>-0     (-----) [004] .n.1 82315.727595: cpu_idle: state=4294967295 cpu_id=4
39806          <idle>-0     (-----) [004] d..2 82315.727598: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39807          <idle>-0     (-----) [002] ...1 82315.727602: cpu_idle: state=4294967295 cpu_id=2
39808          <idle>-0     (-----) [002] d..1 82315.727604: cpu_idle: state=0 cpu_id=2
39809<...>-5340 ( 788) [004] d..2 82315.727607: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39810<...>-5340 ( 788) [004] d..2 82315.727618: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39811          <idle>-0     (-----) [003] dnh2 82315.727621: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39812          <idle>-0     (-----) [004] d..1 82315.727621: cpu_idle: state=0 cpu_id=4
39813          <idle>-0     (-----) [003] .n.1 82315.727625: cpu_idle: state=4294967295 cpu_id=3
39814          <idle>-0     (-----) [003] d..2 82315.727631: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39815<...>-87 ( 87) [003] d..2 82315.727655: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39816          <idle>-0     (-----) [003] d..1 82315.727660: cpu_idle: state=0 cpu_id=3
39817          <idle>-0     (-----) [002] d.h4 82315.727682: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39818          <idle>-0     (-----) [002] d.h5 82315.727691: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39819          <idle>-0     (-----) [000] .n.1 82315.727696: cpu_idle: state=4294967295 cpu_id=0
39820          <idle>-0     (-----) [002] ...1 82315.727696: cpu_idle: state=4294967295 cpu_id=2
39821          <idle>-0     (-----) [002] d..1 82315.727700: cpu_idle: state=0 cpu_id=2
39822          <idle>-0     (-----) [000] d..2 82315.727703: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39823<...>-86 ( 86) [000] d..2 82315.727725: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39824          <idle>-0     (-----) [000] d..1 82315.727732: cpu_idle: state=0 cpu_id=0
39825          <idle>-0     (-----) [002] d.h4 82315.727927: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39826          <idle>-0     (-----) [004] dnh2 82315.727940: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39827          <idle>-0     (-----) [004] .n.1 82315.727942: cpu_idle: state=4294967295 cpu_id=4
39828          <idle>-0     (-----) [004] d..2 82315.727946: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39829          <idle>-0     (-----) [002] ...1 82315.727950: cpu_idle: state=4294967295 cpu_id=2
39830          <idle>-0     (-----) [002] d..1 82315.727953: cpu_idle: state=0 cpu_id=2
39831<...>-5340 ( 788) [004] d..2 82315.727954: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39832<...>-5340 ( 788) [004] d..2 82315.727965: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39833          <idle>-0     (-----) [003] dnh2 82315.727968: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39834          <idle>-0     (-----) [004] d..1 82315.727968: cpu_idle: state=0 cpu_id=4
39835          <idle>-0     (-----) [003] .n.1 82315.727971: cpu_idle: state=4294967295 cpu_id=3
39836          <idle>-0     (-----) [003] d..2 82315.727977: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39837<...>-87 ( 87) [003] d..2 82315.728001: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39838          <idle>-0     (-----) [003] d..1 82315.728007: cpu_idle: state=0 cpu_id=3
39839          <idle>-0     (-----) [002] d.h4 82315.728029: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39840          <idle>-0     (-----) [002] d.h5 82315.728039: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39841          <idle>-0     (-----) [000] .n.1 82315.728044: cpu_idle: state=4294967295 cpu_id=0
39842          <idle>-0     (-----) [002] ...1 82315.728044: cpu_idle: state=4294967295 cpu_id=2
39843          <idle>-0     (-----) [002] d..1 82315.728047: cpu_idle: state=0 cpu_id=2
39844          <idle>-0     (-----) [000] d..2 82315.728051: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39845<...>-86 ( 86) [000] d..2 82315.728073: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39846          <idle>-0     (-----) [000] d..1 82315.728080: cpu_idle: state=0 cpu_id=0
39847          <idle>-0     (-----) [002] d.h4 82315.728297: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39848          <idle>-0     (-----) [004] dnh2 82315.728310: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39849          <idle>-0     (-----) [004] .n.1 82315.728312: cpu_idle: state=4294967295 cpu_id=4
39850          <idle>-0     (-----) [004] d..2 82315.728315: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39851          <idle>-0     (-----) [002] ...1 82315.728320: cpu_idle: state=4294967295 cpu_id=2
39852          <idle>-0     (-----) [002] d..1 82315.728323: cpu_idle: state=0 cpu_id=2
39853<...>-5340 ( 788) [004] d..2 82315.728324: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39854<...>-5340 ( 788) [004] d..2 82315.728334: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39855          <idle>-0     (-----) [004] d..1 82315.728338: cpu_idle: state=0 cpu_id=4
39856          <idle>-0     (-----) [003] dnh2 82315.728338: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39857          <idle>-0     (-----) [003] .n.1 82315.728342: cpu_idle: state=4294967295 cpu_id=3
39858          <idle>-0     (-----) [003] d..2 82315.728348: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39859          <idle>-0     (-----) [000] d.h5 82315.728360: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
39860          <idle>-0     (-----) [000] dnh6 82315.728370: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
39861<...>-87 ( 87) [003] d..2 82315.728372: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39862          <idle>-0     (-----) [000] dnh5 82315.728374: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
39863          <idle>-0     (-----) [003] d..1 82315.728377: cpu_idle: state=0 cpu_id=3
39864          <idle>-0     (-----) [000] dnh6 82315.728383: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
39865          <idle>-0     (-----) [001] .n.1 82315.728387: cpu_idle: state=4294967295 cpu_id=1
39866          <idle>-0     (-----) [000] .n.1 82315.728394: cpu_idle: state=4294967295 cpu_id=0
39867          <idle>-0     (-----) [001] d..2 82315.728395: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
39868          <idle>-0     (-----) [002] d.h4 82315.728397: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39869          <idle>-0     (-----) [000] d..2 82315.728403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
39870          <idle>-0     (-----) [002] dnh5 82315.728413: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
39871          <idle>-0     (-----) [002] .n.1 82315.728418: cpu_idle: state=4294967295 cpu_id=2
39872  crtc_event:111-322   (  322) [000] d..2 82315.728424: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39873          <idle>-0     (-----) [002] d..2 82315.728426: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39874          <idle>-0     (-----) [000] d..1 82315.728432: cpu_idle: state=0 cpu_id=0
39875 crtc_commit:111-321   (  321) [001] d.s2 82315.728459: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
39876 crtc_commit:111-321   (  321) [001] d.s3 82315.728473: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
39877<...>-86 ( 86) [002] d..2 82315.728479: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
39878 crtc_commit:111-321   (  321) [001] d.s2 82315.728484: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=005
39879 crtc_commit:111-321   (  321) [001] d.s3 82315.728526: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
39880  kworker/u16:15-1311  ( 1311) [002] d..2 82315.728539: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
39881 crtc_commit:111-321   (  321) [001] d.H3 82315.728573: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
39882<...>-1054 ( 1054) [002] d..2 82315.728575: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
39883 crtc_commit:111-321   (  321) [001] d.H4 82315.728592: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
39884          <idle>-0     (-----) [000] .n.1 82315.728597: cpu_idle: state=4294967295 cpu_id=0
39885          <idle>-0     (-----) [000] d..2 82315.728604: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
39886         sugov:0-576   (  576) [000] .... 82315.728629: clk_set_rate: pwrcl_clk 1132800000
39887  kworker/u16:15-1311  ( 1311) [002] d.h3 82315.728637: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39888         sugov:0-576   (  576) [000] .... 82315.728637: clk_set_rate: cpu3_pwrcl_clk 1612800000
39889         sugov:0-576   (  576) [000] .... 82315.728645: clk_set_rate: cpu2_pwrcl_clk 1612800000
39890          <idle>-0     (-----) [004] dnh2 82315.728651: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39891         sugov:0-576   (  576) [000] .... 82315.728652: clk_set_rate: cpu1_pwrcl_clk 1612800000
39892          <idle>-0     (-----) [004] .n.1 82315.728654: cpu_idle: state=4294967295 cpu_id=4
39893          <idle>-0     (-----) [004] d..2 82315.728658: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39894         sugov:0-576   (  576) [000] .... 82315.728659: clk_set_rate: cpu0_pwrcl_clk 1132800000
39895<...>-5340 ( 788) [004] d..2 82315.728667: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39896<...>-5340 ( 788) [004] d..2 82315.728679: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39897          <idle>-0     (-----) [004] d..1 82315.728683: cpu_idle: state=0 cpu_id=4
39898          <idle>-0     (-----) [003] dnh2 82315.728684: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39899          <idle>-0     (-----) [003] .n.1 82315.728690: cpu_idle: state=4294967295 cpu_id=3
39900 crtc_commit:111-321   (  321) [001] d..2 82315.728695: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
39901          <idle>-0     (-----) [003] d..2 82315.728703: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39902          <idle>-0     (-----) [001] d..1 82315.728713: cpu_idle: state=0 cpu_id=1
39903<...>-87 ( 87) [003] d..2 82315.728755: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39904          <idle>-0     (-----) [003] d..1 82315.728762: cpu_idle: state=0 cpu_id=3
39905         sugov:0-576   (  576) [000] .... 82315.728769: cpu_frequency: state=1132800 cpu_id=0
39906         sugov:0-576   (  576) [000] .... 82315.728784: cpu_frequency: state=1132800 cpu_id=1
39907         sugov:0-576   (  576) [000] .... 82315.728788: cpu_frequency: state=1132800 cpu_id=2
39908         sugov:0-576   (  576) [000] .... 82315.728791: cpu_frequency: state=1132800 cpu_id=3
39909  kworker/u16:15-1311  ( 1311) [002] d.h4 82315.728792: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
39910         sugov:0-576   (  576) [000] d..2 82315.728813: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39911          <idle>-0     (-----) [000] d..1 82315.728824: cpu_idle: state=0 cpu_id=0
39912          <idle>-0     (-----) [000] .n.1 82315.728828: cpu_idle: state=4294967295 cpu_id=0
39913  kworker/u16:15-1311  ( 1311) [002] d.h5 82315.728829: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39914          <idle>-0     (-----) [001] ...1 82315.728837: cpu_idle: state=4294967295 cpu_id=1
39915          <idle>-0     (-----) [001] d..1 82315.728840: cpu_idle: state=0 cpu_id=1
39916          <idle>-0     (-----) [000] d..2 82315.728841: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39917<...>-86 ( 86) [000] d..2 82315.728871: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39918          <idle>-0     (-----) [000] d..1 82315.728900: cpu_idle: state=0 cpu_id=0
39919          <idle>-0     (-----) [000] ...1 82315.728913: cpu_idle: state=4294967295 cpu_id=0
39920          <idle>-0     (-----) [000] d..1 82315.728916: cpu_idle: state=0 cpu_id=0
39921  kworker/u16:15-1311  ( 1311) [002] .... 82315.728922: clk_set_rate: l3_cluster0_vote_clk 403200000
39922  kworker/u16:15-1311  ( 1311) [002] .... 82315.728926: clk_set_rate: l3_clk 403200000
39923  kworker/u16:15-1311  ( 1311) [002] d..2 82315.728974: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
39924          <idle>-0     (-----) [002] d..1 82315.728985: cpu_idle: state=0 cpu_id=2
39925          <idle>-0     (-----) [002] d.h4 82315.729019: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39926          <idle>-0     (-----) [004] dnh2 82315.729035: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39927          <idle>-0     (-----) [004] .n.1 82315.729037: cpu_idle: state=4294967295 cpu_id=4
39928          <idle>-0     (-----) [004] d..2 82315.729041: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39929<...>-5340 ( 788) [004] d..2 82315.729052: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39930          <idle>-0     (-----) [002] ...1 82315.729053: cpu_idle: state=4294967295 cpu_id=2
39931          <idle>-0     (-----) [002] d..1 82315.729057: cpu_idle: state=0 cpu_id=2
39932<...>-5340 ( 788) [004] d..2 82315.729064: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39933          <idle>-0     (-----) [004] d..1 82315.729068: cpu_idle: state=0 cpu_id=4
39934          <idle>-0     (-----) [003] dnh2 82315.729069: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39935          <idle>-0     (-----) [003] .n.1 82315.729073: cpu_idle: state=4294967295 cpu_id=3
39936          <idle>-0     (-----) [003] d..2 82315.729083: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39937<...>-87 ( 87) [003] d..2 82315.729114: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39938          <idle>-0     (-----) [003] d..1 82315.729123: cpu_idle: state=0 cpu_id=3
39939          <idle>-0     (-----) [002] d.h4 82315.729140: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39940          <idle>-0     (-----) [002] d.h5 82315.729154: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39941          <idle>-0     (-----) [000] .n.1 82315.729158: cpu_idle: state=4294967295 cpu_id=0
39942          <idle>-0     (-----) [002] ...1 82315.729167: cpu_idle: state=4294967295 cpu_id=2
39943          <idle>-0     (-----) [000] d..2 82315.729168: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39944          <idle>-0     (-----) [002] d..1 82315.729170: cpu_idle: state=0 cpu_id=2
39945<...>-86 ( 86) [000] d..2 82315.729198: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39946          <idle>-0     (-----) [000] d..1 82315.729208: cpu_idle: state=0 cpu_id=0
39947          <idle>-0     (-----) [002] d.h4 82315.729463: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39948          <idle>-0     (-----) [004] dnh2 82315.729478: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39949          <idle>-0     (-----) [004] .n.1 82315.729481: cpu_idle: state=4294967295 cpu_id=4
39950          <idle>-0     (-----) [004] d..2 82315.729485: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39951          <idle>-0     (-----) [002] ...1 82315.729493: cpu_idle: state=4294967295 cpu_id=2
39952<...>-5340 ( 788) [004] d..2 82315.729494: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39953          <idle>-0     (-----) [002] d..1 82315.729497: cpu_idle: state=0 cpu_id=2
39954<...>-5340 ( 788) [004] d..2 82315.729506: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39955          <idle>-0     (-----) [004] d..1 82315.729509: cpu_idle: state=0 cpu_id=4
39956          <idle>-0     (-----) [003] dnh2 82315.729511: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39957          <idle>-0     (-----) [003] .n.1 82315.729516: cpu_idle: state=4294967295 cpu_id=3
39958          <idle>-0     (-----) [003] d..2 82315.729523: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39959<...>-87 ( 87) [003] d..2 82315.729554: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39960          <idle>-0     (-----) [003] d..1 82315.729561: cpu_idle: state=0 cpu_id=3
39961          <idle>-0     (-----) [002] d.h4 82315.729581: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39962          <idle>-0     (-----) [002] d.h5 82315.729593: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39963          <idle>-0     (-----) [000] .n.1 82315.729599: cpu_idle: state=4294967295 cpu_id=0
39964          <idle>-0     (-----) [002] ...1 82315.729601: cpu_idle: state=4294967295 cpu_id=2
39965          <idle>-0     (-----) [002] d..1 82315.729604: cpu_idle: state=0 cpu_id=2
39966          <idle>-0     (-----) [000] d..2 82315.729609: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39967<...>-86 ( 86) [000] d..2 82315.729638: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39968          <idle>-0     (-----) [000] d..1 82315.729648: cpu_idle: state=0 cpu_id=0
39969          <idle>-0     (-----) [002] d.h4 82315.729895: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39970          <idle>-0     (-----) [004] dnh2 82315.729909: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39971          <idle>-0     (-----) [004] .n.1 82315.729913: cpu_idle: state=4294967295 cpu_id=4
39972          <idle>-0     (-----) [004] d..2 82315.729916: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39973          <idle>-0     (-----) [002] ...1 82315.729925: cpu_idle: state=4294967295 cpu_id=2
39974<...>-5340 ( 788) [004] d..2 82315.729926: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39975          <idle>-0     (-----) [002] d..1 82315.729928: cpu_idle: state=0 cpu_id=2
39976<...>-5340 ( 788) [004] d..2 82315.729937: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39977          <idle>-0     (-----) [004] d..1 82315.729940: cpu_idle: state=0 cpu_id=4
39978          <idle>-0     (-----) [003] dnh2 82315.729943: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39979          <idle>-0     (-----) [003] .n.1 82315.729947: cpu_idle: state=4294967295 cpu_id=3
39980          <idle>-0     (-----) [003] d..2 82315.729955: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
39981<...>-87 ( 87) [003] d..2 82315.729986: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
39982          <idle>-0     (-----) [003] d..1 82315.729993: cpu_idle: state=0 cpu_id=3
39983          <idle>-0     (-----) [002] d.h4 82315.730010: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39984          <idle>-0     (-----) [002] d.h5 82315.730023: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
39985          <idle>-0     (-----) [000] .n.1 82315.730029: cpu_idle: state=4294967295 cpu_id=0
39986          <idle>-0     (-----) [002] ...1 82315.730031: cpu_idle: state=4294967295 cpu_id=2
39987          <idle>-0     (-----) [002] d..1 82315.730034: cpu_idle: state=0 cpu_id=2
39988          <idle>-0     (-----) [000] d..2 82315.730038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
39989<...>-86 ( 86) [000] d..2 82315.730066: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
39990          <idle>-0     (-----) [000] d..1 82315.730075: cpu_idle: state=0 cpu_id=0
39991          <idle>-0     (-----) [002] d.h4 82315.730338: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39992          <idle>-0     (-----) [004] dnh2 82315.730352: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
39993          <idle>-0     (-----) [004] .n.1 82315.730355: cpu_idle: state=4294967295 cpu_id=4
39994          <idle>-0     (-----) [004] d..2 82315.730359: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
39995          <idle>-0     (-----) [002] ...1 82315.730367: cpu_idle: state=4294967295 cpu_id=2
39996<...>-5340 ( 788) [004] d..2 82315.730369: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
39997          <idle>-0     (-----) [002] d..1 82315.730371: cpu_idle: state=0 cpu_id=2
39998<...>-5340 ( 788) [004] d..2 82315.730380: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
39999          <idle>-0     (-----) [004] d..1 82315.730383: cpu_idle: state=0 cpu_id=4
40000          <idle>-0     (-----) [003] dnh2 82315.730384: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40001          <idle>-0     (-----) [003] .n.1 82315.730389: cpu_idle: state=4294967295 cpu_id=3
40002          <idle>-0     (-----) [003] d..2 82315.730396: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40003<...>-87 ( 87) [003] d..2 82315.730428: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40004          <idle>-0     (-----) [003] d..1 82315.730436: cpu_idle: state=0 cpu_id=3
40005          <idle>-0     (-----) [002] d.h4 82315.730453: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40006          <idle>-0     (-----) [002] d.h5 82315.730465: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40007          <idle>-0     (-----) [000] .n.1 82315.730472: cpu_idle: state=4294967295 cpu_id=0
40008          <idle>-0     (-----) [002] ...1 82315.730473: cpu_idle: state=4294967295 cpu_id=2
40009          <idle>-0     (-----) [002] d..1 82315.730476: cpu_idle: state=0 cpu_id=2
40010          <idle>-0     (-----) [000] d..2 82315.730481: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40011<...>-86 ( 86) [000] d..2 82315.730509: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40012          <idle>-0     (-----) [000] d..1 82315.730518: cpu_idle: state=0 cpu_id=0
40013          <idle>-0     (-----) [000] d.h5 82315.730699: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
40014          <idle>-0     (-----) [000] d.h6 82315.730715: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
40015          <idle>-0     (-----) [001] .n.1 82315.730720: cpu_idle: state=4294967295 cpu_id=1
40016          <idle>-0     (-----) [001] d..2 82315.730728: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
40017          <idle>-0     (-----) [000] ...1 82315.730730: cpu_idle: state=4294967295 cpu_id=0
40018          <idle>-0     (-----) [000] d..1 82315.730734: cpu_idle: state=0 cpu_id=0
40019          <idle>-0     (-----) [002] d.h4 82315.730744: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
40020          <idle>-0     (-----) [004] dnh2 82315.730758: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
40021          <idle>-0     (-----) [004] .n.1 82315.730760: cpu_idle: state=4294967295 cpu_id=4
40022          <idle>-0     (-----) [004] d..2 82315.730764: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40023          <idle>-0     (-----) [002] ...1 82315.730772: cpu_idle: state=4294967295 cpu_id=2
40024          <idle>-0     (-----) [002] d..1 82315.730775: cpu_idle: state=0 cpu_id=2
40025 crtc_commit:111-321   (  321) [001] d..2 82315.730794: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40026          <idle>-0     (-----) [001] d..1 82315.730802: cpu_idle: state=0 cpu_id=1
40027<...>-5340 ( 788) [004] d..2 82315.730908: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40028<...>-5340 ( 788) [004] d..2 82315.730922: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
40029          <idle>-0     (-----) [003] dnh2 82315.730926: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40030          <idle>-0     (-----) [004] d..1 82315.730927: cpu_idle: state=0 cpu_id=4
40031          <idle>-0     (-----) [003] .n.1 82315.730931: cpu_idle: state=4294967295 cpu_id=3
40032          <idle>-0     (-----) [003] d..2 82315.730938: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40033<...>-87 ( 87) [003] d..2 82315.730970: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40034          <idle>-0     (-----) [003] d..1 82315.730977: cpu_idle: state=0 cpu_id=3
40035          <idle>-0     (-----) [000] d.h5 82315.730997: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
40036          <idle>-0     (-----) [000] dnh6 82315.731006: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
40037          <idle>-0     (-----) [000] .n.1 82315.731018: cpu_idle: state=4294967295 cpu_id=0
40038          <idle>-0     (-----) [000] d..2 82315.731027: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
40039  crtc_event:111-322   (  322) [000] d..2 82315.731047: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40040          <idle>-0     (-----) [000] d..1 82315.731057: cpu_idle: state=0 cpu_id=0
40041          <idle>-0     (-----) [003] d.h2 82315.731368: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
40042          <idle>-0     (-----) [003] dnh3 82315.731381: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
40043          <idle>-0     (-----) [003] .n.1 82315.731388: cpu_idle: state=4294967295 cpu_id=3
40044          <idle>-0     (-----) [003] d..2 82315.731395: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
40045        DispSync-8879  ( 8858) [003] d..1 82315.731415: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
40046          <idle>-0     (-----) [004] ...1 82315.731420: cpu_idle: state=4294967295 cpu_id=4
40047          <idle>-0     (-----) [004] d..1 82315.731422: cpu_idle: state=0 cpu_id=4
40048        DispSync-8879  ( 8858) [003] d..2 82315.731428: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
40049          <idle>-0     (-----) [002] .n.1 82315.731432: cpu_idle: state=4294967295 cpu_id=2
40050        DispSync-8879  ( 8858) [003] d..1 82315.731433: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
40051          <idle>-0     (-----) [002] d..2 82315.731442: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
40052        DispSync-8879  ( 8858) [003] d..2 82315.731458: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
40053          <idle>-0     (-----) [000] .n.1 82315.731464: cpu_idle: state=4294967295 cpu_id=0
40054          <idle>-0     (-----) [000] d..2 82315.731472: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
40055        DispSync-8879  ( 8858) [003] d..2 82315.731488: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40056   sfEventThread-8882  ( 8858) [002] d..3 82315.731495: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
40057          <idle>-0     (-----) [003] d..1 82315.731500: cpu_idle: state=0 cpu_id=3
40058          <idle>-0     (-----) [004] dnh2 82315.731514: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
40059          <idle>-0     (-----) [004] .n.1 82315.731516: cpu_idle: state=4294967295 cpu_id=4
40060   sfEventThread-8882  ( 8858) [002] d..3 82315.731518: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
40061          <idle>-0     (-----) [004] d..2 82315.731520: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
40062  appEventThread-8881  ( 8858) [000] d..3 82315.731530: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
40063   sfEventThread-8882  ( 8858) [002] d..4 82315.731535: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
40064          <idle>-0     (-----) [003] .n.1 82315.731541: cpu_idle: state=4294967295 cpu_id=3
40065          <idle>-0     (-----) [003] d..2 82315.731549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
40066  appEventThread-8881  ( 8858) [000] d..4 82315.731552: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
40067          <idle>-0     (-----) [001] .n.1 82315.731557: cpu_idle: state=4294967295 cpu_id=1
40068          <idle>-0     (-----) [001] d..2 82315.731567: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
40069   sfEventThread-8882  ( 8858) [002] d..2 82315.731571: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40070          <idle>-0     (-----) [002] d..1 82315.731581: cpu_idle: state=0 cpu_id=2
40071  appEventThread-8881  ( 8858) [000] d..2 82315.731592: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40072          <idle>-0     (-----) [000] d..1 82315.731606: cpu_idle: state=0 cpu_id=0
40073          <idle>-0     (-----) [002] d.h4 82315.731661: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40074          <idle>-0     (-----) [002] d.h5 82315.731676: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40075          <idle>-0     (-----) [000] .n.1 82315.731684: cpu_idle: state=4294967295 cpu_id=0
40076          <idle>-0     (-----) [002] ...1 82315.731686: cpu_idle: state=4294967295 cpu_id=2
40077          <idle>-0     (-----) [002] d..1 82315.731690: cpu_idle: state=0 cpu_id=2
40078          <idle>-0     (-----) [000] d..2 82315.731695: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40079<...>-9006 ( 8943) [004] .... 82315.731726: binder_transaction: transaction=1569021 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
40080<...>-9006 ( 8943) [004] .... 82315.731730: binder_transaction_alloc_buf: transaction=1569021 data_size=80 offsets_size=0
40081<...>-9006 ( 8943) [004] d..4 82315.731733: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
40082<...>-86 ( 86) [000] d..2 82315.731734: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40083          <idle>-0     (-----) [000] d..1 82315.731745: cpu_idle: state=0 cpu_id=0
40084          <idle>-0     (-----) [000] dnh2 82315.731762: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
40085          <idle>-0     (-----) [000] .n.1 82315.731769: cpu_idle: state=4294967295 cpu_id=0
40086          <idle>-0     (-----) [000] d..2 82315.731790: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
40087          <idle>-0     (-----) [002] d.s2 82315.731797: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
40088<...>-9105 ( 9105) [001] d.s2 82315.731841: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
40089          <idle>-0     (-----) [002] dns3 82315.731852: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
40090<...>-13083 ( 8858) [000] d.h4 82315.731858: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=006
40091<...>-9105 ( 9105) [001] d.s3 82315.731867: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
40092          <idle>-0     (-----) [002] .n.1 82315.731873: cpu_idle: state=4294967295 cpu_id=2
40093          <idle>-0     (-----) [006] dnh2 82315.731876: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=006
40094<...>-13083 ( 8858) [000] .... 82315.731877: binder_transaction_received: transaction=1569021
40095          <idle>-0     (-----) [006] .n.1 82315.731879: cpu_idle: state=4294967295 cpu_id=6
40096          <idle>-0     (-----) [002] d..2 82315.731881: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
40097          <idle>-0     (-----) [006] d..2 82315.731883: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
40098<...>-9006 ( 8943) [004] .... 82315.731893: binder_transaction: transaction=1569022 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
40099         sugov:4-577   (  577) [006] .... 82315.731895: clk_set_rate: perfcl_clk 825600000
40100         sugov:4-577   (  577) [006] .... 82315.731896: clk_set_rate: cpu7_perfcl_clk 1612800000
40101<...>-9006 ( 8943) [004] .... 82315.731896: binder_transaction_alloc_buf: transaction=1569022 data_size=988 offsets_size=48
40102  crtc_event:111-322   (  322) [002] d..2 82315.731899: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
40103         sugov:4-577   (  577) [006] .... 82315.731901: clk_set_rate: cpu6_perfcl_clk 1612800000
40104         sugov:4-577   (  577) [006] .... 82315.731906: clk_set_rate: cpu5_perfcl_clk 1612800000
40105<...>-13083 ( 8858) [000] d..1 82315.731908: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
40106<...>-9006 ( 8943) [004] ...2 82315.731909: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
40107         sugov:4-577   (  577) [006] .... 82315.731911: clk_set_rate: cpu4_perfcl_clk 825600000
40108<...>-9006 ( 8943) [004] d..4 82315.731912: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
40109         sugov:4-577   (  577) [006] .... 82315.731916: cpu_frequency: state=825600 cpu_id=4
40110         sugov:4-577   (  577) [006] .... 82315.731920: cpu_frequency: state=825600 cpu_id=5
40111         sugov:4-577   (  577) [006] .... 82315.731922: cpu_frequency: state=825600 cpu_id=6
40112         sugov:4-577   (  577) [006] .... 82315.731925: cpu_frequency: state=825600 cpu_id=7
40113<...>-13083 ( 8858) [000] d..2 82315.731928: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
40114<...>-9006 ( 8943) [004] d..5 82315.731929: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
40115     rcu_preempt-7     (    7) [002] d..2 82315.731935: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=8882 next_prio=97
40116<...>-9105 ( 9105) [001] .... 82315.731937: binder_transaction: transaction=1569023 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
40117<...>-9006 ( 8943) [004] d..2 82315.731943: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
40118<...>-9105 ( 9105) [001] .... 82315.731944: binder_transaction_alloc_buf: transaction=1569023 data_size=80 offsets_size=0
40119         sugov:4-577   (  577) [006] d..2 82315.731946: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
40120<...>-9105 ( 9105) [001] d..4 82315.731950: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
40121          <idle>-0     (-----) [006] d..1 82315.731955: cpu_idle: state=0 cpu_id=6
40122   sfEventThread-8882  ( 8858) [002] d..2 82315.731976: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40123<...>-8951 ( 8858) [004] .... 82315.731983: binder_transaction_received: transaction=1569022
40124          <idle>-0     (-----) [002] d..1 82315.731989: cpu_idle: state=0 cpu_id=2
40125          <idle>-0     (-----) [005] dnh2 82315.731990: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
40126          <idle>-0     (-----) [005] .n.1 82315.731996: cpu_idle: state=4294967295 cpu_id=5
40127<...>-13083 ( 8858) [000] d..2 82315.732003: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40128          <idle>-0     (-----) [005] d..2 82315.732006: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
40129<...>-8874 ( 8858) [005] .... 82315.732011: binder_transaction_received: transaction=1569023
40130<...>-9105 ( 9105) [001] d..3 82315.732011: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
40131          <idle>-0     (-----) [000] d..1 82315.732019: cpu_idle: state=0 cpu_id=0
40132<...>-8874 ( 8858) [005] d..1 82315.732028: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
40133<...>-9105 ( 9105) [001] d..4 82315.732036: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
40134          <idle>-0     (-----) [000] .n.1 82315.732042: cpu_idle: state=4294967295 cpu_id=0
40135          <idle>-0     (-----) [000] d..2 82315.732053: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
40136          <idle>-0     (-----) [002] d.h4 82315.732065: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
40137<...>-8874 ( 8858) [005] d..2 82315.732069: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40138<...>-8951 ( 8858) [004] d..1 82315.732077: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
40139          <idle>-0     (-----) [005] d..1 82315.732078: cpu_idle: state=0 cpu_id=5
40140          <idle>-0     (-----) [005] dnh2 82315.732098: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40141          <idle>-0     (-----) [005] .n.1 82315.732102: cpu_idle: state=4294967295 cpu_id=5
40142<...>-8951 ( 8858) [004] .... 82315.732103: binder_transaction: transaction=1569024 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
40143    RenderThread-9436  ( 9105) [000] d..2 82315.732106: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40144<...>-8951 ( 8858) [004] .... 82315.732107: binder_transaction_alloc_buf: transaction=1569024 data_size=0 offsets_size=0
40145          <idle>-0     (-----) [005] d..2 82315.732108: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40146<...>-8951 ( 8858) [004] d..2 82315.732109: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
40147<...>-8951 ( 8858) [004] dn.3 82315.732118: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
40148          <idle>-0     (-----) [000] d..1 82315.732119: cpu_idle: state=0 cpu_id=0
40149          <idle>-0     (-----) [002] dnh2 82315.732120: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
40150          <idle>-0     (-----) [002] dnh2 82315.732124: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
40151<...>-8951 ( 8858) [004] d..2 82315.732126: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
40152          <idle>-0     (-----) [002] .n.1 82315.732129: cpu_idle: state=4294967295 cpu_id=2
40153<...>-9006 ( 8943) [004] .... 82315.732134: binder_transaction_received: transaction=1569024
40154          <idle>-0     (-----) [002] d..2 82315.732139: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
40155<...>-5340 ( 788) [005] d..2 82315.732162: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40156          <idle>-0     (-----) [000] .n.1 82315.732168: cpu_idle: state=4294967295 cpu_id=0
40157<...>-9105 ( 9105) [001] d..3 82315.732171: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
40158          <idle>-0     (-----) [000] d..2 82315.732177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
40159   sfEventThread-8882  ( 8858) [002] d..2 82315.732193: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40160          <idle>-0     (-----) [002] d..1 82315.732204: cpu_idle: state=0 cpu_id=2
40161  appEventThread-8881  ( 8858) [000] d.h1 82315.732210: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40162          <idle>-0     (-----) [006] dnh2 82315.732216: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
40163<...>-5340 ( 788) [005] d..2 82315.732220: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40164          <idle>-0     (-----) [006] .n.1 82315.732221: cpu_idle: state=4294967295 cpu_id=6
40165<...>-9006 ( 8943) [004] d..2 82315.732223: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
40166          <idle>-0     (-----) [006] d..2 82315.732227: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
40167<...>-8951 ( 8858) [004] .... 82315.732231: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
40168          <idle>-0     (-----) [005] d..1 82315.732232: cpu_idle: state=0 cpu_id=5
40169  appEventThread-8881  ( 8858) [000] d..2 82315.732292: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40170<...>-9105 ( 9105) [001] d..2 82315.732301: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40171          <idle>-0     (-----) [001] d..1 82315.732319: cpu_idle: state=0 cpu_id=1
40172    RenderThread-9436  ( 9105) [006] d..1 82315.732321: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
40173<...>-8951 ( 8858) [004] d..2 82315.732323: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
40174<...>-87 ( 87) [000] d..2 82315.732331: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40175          <idle>-0     (-----) [004] d..1 82315.732339: cpu_idle: state=0 cpu_id=4
40176          <idle>-0     (-----) [000] d..1 82315.732344: cpu_idle: state=0 cpu_id=0
40177          <idle>-0     (-----) [001] dnh2 82315.732347: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
40178          <idle>-0     (-----) [001] .n.1 82315.732352: cpu_idle: state=4294967295 cpu_id=1
40179          <idle>-0     (-----) [001] d..2 82315.732362: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
40180    RenderThread-9436  ( 9105) [006] .... 82315.732385: binder_transaction: transaction=1569025 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
40181    RenderThread-9436  ( 9105) [006] .... 82315.732389: binder_transaction_alloc_buf: transaction=1569025 data_size=104 offsets_size=0
40182    RenderThread-9436  ( 9105) [006] d..4 82315.732393: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
40183    RenderThread-9436  ( 9105) [006] dn.5 82315.732409: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
40184    RenderThread-9436  ( 9105) [006] d..2 82315.732416: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
40185<...>-8951 ( 8858) [006] .... 82315.732426: binder_transaction_received: transaction=1569025
40186<...>-9105 ( 9105) [001] d..2 82315.732441: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40187          <idle>-0     (-----) [001] d..1 82315.732455: cpu_idle: state=0 cpu_id=1
40188<...>-8951 ( 8858) [006] .... 82315.732485: binder_transaction: transaction=1569026 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
40189<...>-8951 ( 8858) [006] .... 82315.732489: binder_transaction_alloc_buf: transaction=1569026 data_size=52 offsets_size=8
40190<...>-8951 ( 8858) [006] d..2 82315.732525: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
40191    RenderThread-9436  ( 9105) [006] .... 82315.732535: binder_transaction_received: transaction=1569026
40192          <idle>-0     (-----) [004] ...1 82315.732882: cpu_idle: state=4294967295 cpu_id=4
40193          <idle>-0     (-----) [004] d..1 82315.732886: cpu_idle: state=0 cpu_id=4
40194          <idle>-0     (-----) [002] d.h4 82315.733038: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40195          <idle>-0     (-----) [002] d.h5 82315.733054: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40196          <idle>-0     (-----) [000] .n.1 82315.733060: cpu_idle: state=4294967295 cpu_id=0
40197          <idle>-0     (-----) [002] ...1 82315.733064: cpu_idle: state=4294967295 cpu_id=2
40198          <idle>-0     (-----) [002] d..1 82315.733068: cpu_idle: state=0 cpu_id=2
40199          <idle>-0     (-----) [000] d..2 82315.733071: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40200<...>-86 ( 86) [000] d..2 82315.733104: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40201          <idle>-0     (-----) [000] d..1 82315.733114: cpu_idle: state=0 cpu_id=0
40202  surfaceflinger-8858  ( 8858) [003] ...1 82315.733282: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
40203  surfaceflinger-8858  ( 8858) [003] ...1 82315.733289: tracing_mark_write: E|8858
40204          <idle>-0     (-----) [002] d.h4 82315.733333: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40205  surfaceflinger-8858  ( 8858) [003] .... 82315.733340: binder_transaction: transaction=1569027 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
40206  surfaceflinger-8858  ( 8858) [003] .... 82315.733345: binder_transaction_alloc_buf: transaction=1569027 data_size=620 offsets_size=112
40207          <idle>-0     (-----) [005] dnh2 82315.733354: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40208          <idle>-0     (-----) [005] .n.1 82315.733359: cpu_idle: state=4294967295 cpu_id=5
40209          <idle>-0     (-----) [002] ...1 82315.733365: cpu_idle: state=4294967295 cpu_id=2
40210  surfaceflinger-8858  ( 8858) [003] ...2 82315.733366: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
40211          <idle>-0     (-----) [005] d..2 82315.733367: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40212          <idle>-0     (-----) [002] d..1 82315.733368: cpu_idle: state=0 cpu_id=2
40213  surfaceflinger-8858  ( 8858) [003] d..4 82315.733373: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
40214<...>-5340 ( 788) [005] d..2 82315.733392: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40215  surfaceflinger-8858  ( 8858) [003] d..5 82315.733393: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
40216          <idle>-0     (-----) [002] .n.1 82315.733398: cpu_idle: state=4294967295 cpu_id=2
40217          <idle>-0     (-----) [002] d..2 82315.733410: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
40218<...>-5340 ( 788) [005] d..2 82315.733411: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40219          <idle>-0     (-----) [000] dnh2 82315.733412: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40220    RenderThread-9436  ( 9105) [006] d..2 82315.733415: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
40221          <idle>-0     (-----) [000] .n.1 82315.733418: cpu_idle: state=4294967295 cpu_id=0
40222          <idle>-0     (-----) [005] d..1 82315.733419: cpu_idle: state=0 cpu_id=5
40223 [email protected]   (  619) [002] .... 82315.733421: binder_transaction_received: transaction=1569027
40224  surfaceflinger-8858  ( 8858) [003] d..2 82315.733424: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40225          <idle>-0     (-----) [000] d..2 82315.733427: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40226          <idle>-0     (-----) [006] d..1 82315.733430: cpu_idle: state=0 cpu_id=6
40227          <idle>-0     (-----) [003] d..1 82315.733444: cpu_idle: state=0 cpu_id=3
40228<...>-87 ( 87) [000] d..2 82315.733459: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40229 [email protected]   (  619) [002] ...1 82315.733466: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
40230          <idle>-0     (-----) [000] d..1 82315.733468: cpu_idle: state=0 cpu_id=0
40231          <idle>-0     (-----) [006] d.h2 82315.733500: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
40232          <idle>-0     (-----) [006] d.h3 82315.733508: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
40233          <idle>-0     (-----) [006] dnh3 82315.733511: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
40234          <idle>-0     (-----) [006] .n.1 82315.733517: cpu_idle: state=4294967295 cpu_id=6
40235          <idle>-0     (-----) [006] d..2 82315.733526: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
40236          <idle>-0     (-----) [000] d.h3 82315.733593: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
40237 [email protected]   (  619) [002] ...1 82315.733594: tracing_mark_write: B|619|HWCSession::PresentDisplay::
40238          <idle>-0     (-----) [000] dnh4 82315.733607: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
40239          <idle>-0     (-----) [000] .n.1 82315.733619: cpu_idle: state=4294967295 cpu_id=0
40240          <idle>-0     (-----) [000] d..2 82315.733628: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
40241    RenderThread-9436  ( 9105) [006] .... 82315.733668: binder_transaction: transaction=1569028 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
40242    RenderThread-9436  ( 9105) [006] .... 82315.733673: binder_transaction_alloc_buf: transaction=1569028 data_size=192 offsets_size=8
40243 kgsl_worker_thr-258   (  258) [000] d..2 82315.733679: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
40244    RenderThread-9436  ( 9105) [006] d..4 82315.733680: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
40245    RenderThread-9436  ( 9105) [006] dn.5 82315.733689: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
40246    RenderThread-9436  ( 9105) [006] d..2 82315.733695: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
40247<...>-8951 ( 8858) [006] .... 82315.733706: binder_transaction_received: transaction=1569028
40248 kgsl_worker_thr-258   (  258) [000] d..3 82315.733716: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40249 kgsl_worker_thr-258   (  258) [000] d..2 82315.733732: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
40250  kworker/u16:15-1311  ( 1311) [000] d..2 82315.733773: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40251          <idle>-0     (-----) [000] d..1 82315.733786: cpu_idle: state=0 cpu_id=0
40252<...>-8951 ( 8858) [006] .... 82315.733811: binder_transaction: transaction=1569029 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
40253<...>-8951 ( 8858) [006] .... 82315.733815: binder_transaction_alloc_buf: transaction=1569029 data_size=68 offsets_size=0
40254<...>-8951 ( 8858) [006] d..2 82315.733843: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
40255    RenderThread-9436  ( 9105) [006] .... 82315.733854: binder_transaction_received: transaction=1569029
40256    RenderThread-9436  ( 9105) [006] d..2 82315.733923: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
40257          <idle>-0     (-----) [006] d..1 82315.733938: cpu_idle: state=0 cpu_id=6
40258 [email protected]   (  619) [002] d.h3 82315.734221: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40259 [email protected]   (  619) [002] d.h4 82315.734242: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40260          <idle>-0     (-----) [000] .n.1 82315.734248: cpu_idle: state=4294967295 cpu_id=0
40261          <idle>-0     (-----) [000] d..2 82315.734258: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40262<...>-86 ( 86) [000] d..2 82315.734291: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40263 [email protected]   (  619) [002] ...1 82315.734296: tracing_mark_write: B|619|HWDeviceDRM::Validate::
40264          <idle>-0     (-----) [000] d..1 82315.734301: cpu_idle: state=0 cpu_id=0
40265 [email protected]   (  619) [002] d.h3 82315.734523: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40266          <idle>-0     (-----) [005] dnh2 82315.734545: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40267          <idle>-0     (-----) [005] .n.1 82315.734549: cpu_idle: state=4294967295 cpu_id=5
40268          <idle>-0     (-----) [005] d..2 82315.734555: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40269<...>-5340 ( 788) [005] d..2 82315.734575: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40270<...>-5340 ( 788) [005] d..2 82315.734592: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40271          <idle>-0     (-----) [000] dnh2 82315.734595: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40272          <idle>-0     (-----) [005] d..1 82315.734599: cpu_idle: state=0 cpu_id=5
40273          <idle>-0     (-----) [000] .n.1 82315.734601: cpu_idle: state=4294967295 cpu_id=0
40274          <idle>-0     (-----) [000] d..2 82315.734610: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40275<...>-87 ( 87) [000] d..2 82315.734643: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40276          <idle>-0     (-----) [000] d..1 82315.734653: cpu_idle: state=0 cpu_id=0
40277          <idle>-0     (-----) [003] ...1 82315.734790: cpu_idle: state=4294967295 cpu_id=3
40278          <idle>-0     (-----) [003] d..1 82315.734794: cpu_idle: state=0 cpu_id=3
40279 [email protected]   (  619) [002] ...1 82315.734894: tracing_mark_write: E|619
40280 [email protected]   (  619) [002] ...1 82315.735059: tracing_mark_write: B|619|HWDeviceDRM::Commit::
40281 [email protected]   (  619) [002] ...1 82315.735070: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
40282 [email protected]   (  619) [002] d.h3 82315.735414: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40283 [email protected]   (  619) [002] d.h4 82315.735434: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40284          <idle>-0     (-----) [000] .n.1 82315.735439: cpu_idle: state=4294967295 cpu_id=0
40285          <idle>-0     (-----) [000] d..2 82315.735450: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40286<...>-86 ( 86) [000] d..2 82315.735485: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40287          <idle>-0     (-----) [000] d..1 82315.735494: cpu_idle: state=0 cpu_id=0
40288 [email protected]   (  619) [002] d..2 82315.735652: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
40289 [email protected]   (  619) [002] d..3 82315.735676: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
40290          <idle>-0     (-----) [001] .n.1 82315.735681: cpu_idle: state=4294967295 cpu_id=1
40291          <idle>-0     (-----) [001] d..2 82315.735693: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
40292 [email protected]   (  619) [002] d.h3 82315.735711: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40293          <idle>-0     (-----) [005] dnh2 82315.735730: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40294          <idle>-0     (-----) [005] .n.1 82315.735733: cpu_idle: state=4294967295 cpu_id=5
40295          <idle>-0     (-----) [005] d..2 82315.735740: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40296<...>-5340 ( 788) [005] d..2 82315.735758: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40297<...>-5340 ( 788) [005] d..2 82315.735775: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40298          <idle>-0     (-----) [000] dnh2 82315.735776: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40299          <idle>-0     (-----) [000] .n.1 82315.735782: cpu_idle: state=4294967295 cpu_id=0
40300          <idle>-0     (-----) [005] d..1 82315.735782: cpu_idle: state=0 cpu_id=5
40301          <idle>-0     (-----) [000] d..2 82315.735791: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40302 [email protected]   (  619) [002] ...1 82315.735823: tracing_mark_write: E|619
40303<...>-87 ( 87) [000] d..2 82315.735824: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40304 [email protected]   (  619) [002] ...1 82315.735829: tracing_mark_write: E|619
40305          <idle>-0     (-----) [000] d..1 82315.735833: cpu_idle: state=0 cpu_id=0
40306 [email protected]   (  619) [002] ...1 82315.735880: tracing_mark_write: E|619
40307 [email protected]   (  619) [002] ...1 82315.735924: tracing_mark_write: E|619
40308 [email protected]   (  619) [002] .... 82315.735939: binder_transaction: transaction=1569030 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
40309 [email protected]   (  619) [002] .... 82315.735944: binder_transaction_alloc_buf: transaction=1569030 data_size=736 offsets_size=144
40310 [email protected]   (  619) [002] d..2 82315.735964: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
40311 [email protected]   (  619) [002] d..3 82315.735982: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
40312          <idle>-0     (-----) [003] .n.1 82315.735986: cpu_idle: state=4294967295 cpu_id=3
40313 [email protected]   (  619) [002] .... 82315.735987: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
40314          <idle>-0     (-----) [003] d..2 82315.735996: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
40315  surfaceflinger-8858  ( 8858) [003] .... 82315.736004: binder_transaction_received: transaction=1569030
40316 [email protected]   (  619) [002] d..2 82315.736074: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40317          <idle>-0     (-----) [002] d..1 82315.736088: cpu_idle: state=0 cpu_id=2
40318  surfaceflinger-8858  ( 8858) [003] d..2 82315.736439: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40319          <idle>-0     (-----) [003] d..1 82315.736457: cpu_idle: state=0 cpu_id=3
40320          <idle>-0     (-----) [002] d.h4 82315.736596: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40321          <idle>-0     (-----) [002] d.h5 82315.736613: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40322          <idle>-0     (-----) [000] .n.1 82315.736619: cpu_idle: state=4294967295 cpu_id=0
40323          <idle>-0     (-----) [002] ...1 82315.736623: cpu_idle: state=4294967295 cpu_id=2
40324          <idle>-0     (-----) [002] d..1 82315.736628: cpu_idle: state=0 cpu_id=2
40325          <idle>-0     (-----) [000] d..2 82315.736628: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40326<...>-86 ( 86) [000] d..2 82315.736658: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40327          <idle>-0     (-----) [000] d..1 82315.736667: cpu_idle: state=0 cpu_id=0
40328          <idle>-0     (-----) [002] d.h4 82315.736897: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40329          <idle>-0     (-----) [005] dnh2 82315.736914: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40330          <idle>-0     (-----) [005] .n.1 82315.736917: cpu_idle: state=4294967295 cpu_id=5
40331          <idle>-0     (-----) [005] d..2 82315.736923: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40332          <idle>-0     (-----) [002] ...1 82315.736928: cpu_idle: state=4294967295 cpu_id=2
40333          <idle>-0     (-----) [002] d..1 82315.736932: cpu_idle: state=0 cpu_id=2
40334<...>-5340 ( 788) [005] d..2 82315.736940: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40335<...>-5340 ( 788) [005] d..2 82315.736957: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40336          <idle>-0     (-----) [000] dnh2 82315.736958: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40337          <idle>-0     (-----) [005] d..1 82315.736963: cpu_idle: state=0 cpu_id=5
40338          <idle>-0     (-----) [000] .n.1 82315.736964: cpu_idle: state=4294967295 cpu_id=0
40339          <idle>-0     (-----) [000] d..2 82315.736973: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40340<...>-87 ( 87) [000] d..2 82315.737006: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40341          <idle>-0     (-----) [000] d..1 82315.737015: cpu_idle: state=0 cpu_id=0
40342 crtc_commit:111-321   (  321) [001] d..2 82315.737450: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
40343          <idle>-0     (-----) [001] d..1 82315.737467: cpu_idle: state=0 cpu_id=1
40344          <idle>-0     (-----) [002] d.h4 82315.737787: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40345          <idle>-0     (-----) [003] ...1 82315.737792: cpu_idle: state=4294967295 cpu_id=3
40346          <idle>-0     (-----) [003] d..1 82315.737795: cpu_idle: state=0 cpu_id=3
40347          <idle>-0     (-----) [002] d.h5 82315.737799: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40348          <idle>-0     (-----) [000] .n.1 82315.737805: cpu_idle: state=4294967295 cpu_id=0
40349          <idle>-0     (-----) [002] ...1 82315.737807: cpu_idle: state=4294967295 cpu_id=2
40350          <idle>-0     (-----) [002] d..1 82315.737811: cpu_idle: state=0 cpu_id=2
40351          <idle>-0     (-----) [000] d..2 82315.737814: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40352<...>-86 ( 86) [000] d..2 82315.737845: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40353          <idle>-0     (-----) [000] d..1 82315.737855: cpu_idle: state=0 cpu_id=0
40354          <idle>-0     (-----) [002] d.h4 82315.738098: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40355          <idle>-0     (-----) [005] dnh2 82315.738114: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40356          <idle>-0     (-----) [005] .n.1 82315.738117: cpu_idle: state=4294967295 cpu_id=5
40357          <idle>-0     (-----) [005] d..2 82315.738123: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40358          <idle>-0     (-----) [002] ...1 82315.738127: cpu_idle: state=4294967295 cpu_id=2
40359          <idle>-0     (-----) [002] d..1 82315.738131: cpu_idle: state=0 cpu_id=2
40360<...>-5340 ( 788) [005] d..2 82315.738141: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40361<...>-5340 ( 788) [005] d..2 82315.738158: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40362          <idle>-0     (-----) [000] dnh2 82315.738159: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40363          <idle>-0     (-----) [000] .n.1 82315.738165: cpu_idle: state=4294967295 cpu_id=0
40364          <idle>-0     (-----) [005] d..1 82315.738166: cpu_idle: state=0 cpu_id=5
40365          <idle>-0     (-----) [000] d..2 82315.738174: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40366<...>-87 ( 87) [000] d..2 82315.738206: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40367          <idle>-0     (-----) [000] d..1 82315.738215: cpu_idle: state=0 cpu_id=0
40368          <idle>-0     (-----) [002] d.s2 82315.738467: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
40369          <idle>-0     (-----) [002] dns3 82315.738482: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
40370          <idle>-0     (-----) [002] dns3 82315.738488: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40371          <idle>-0     (-----) [002] dns4 82315.738515: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
40372          <idle>-0     (-----) [002] .n.1 82315.738533: cpu_idle: state=4294967295 cpu_id=2
40373          <idle>-0     (-----) [002] d..2 82315.738543: 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
40374     rcu_preempt-7     (    7) [002] d..2 82315.738554: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
40375     rcu_preempt-7     (    7) [002] d..3 82315.738584: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
40376     rcu_preempt-7     (    7) [002] d..2 82315.738600: 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
40377         rcuop/0-10    (   10) [002] d..2 82315.738607: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
40378         rcuop/0-10    (   10) [002] d..3 82315.738620: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
40379         rcuop/0-10    (   10) [002] d..2 82315.738628: 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
40380         rcuop/1-21    (   21) [002] d..2 82315.738643: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
40381  kworker/u16:15-1311  ( 1311) [002] .... 82315.738680: clk_set_rate: l3_cluster0_vote_clk 480000000
40382  kworker/u16:15-1311  ( 1311) [002] .... 82315.738685: clk_set_rate: l3_clk 480000000
40383  kworker/u16:15-1311  ( 1311) [002] d..2 82315.738893: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
40384          <idle>-0     (-----) [002] d..1 82315.738909: cpu_idle: state=0 cpu_id=2
40385          <idle>-0     (-----) [001] d.s3 82315.738922: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
40386          <idle>-0     (-----) [001] d.s4 82315.738934: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
40387          <idle>-0     (-----) [001] d.s4 82315.738942: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
40388          <idle>-0     (-----) [002] .n.1 82315.738948: cpu_idle: state=4294967295 cpu_id=2
40389          <idle>-0     (-----) [001] ...1 82315.738950: cpu_idle: state=4294967295 cpu_id=1
40390          <idle>-0     (-----) [001] d..1 82315.738956: cpu_idle: state=0 cpu_id=1
40391          <idle>-0     (-----) [002] d..2 82315.738959: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
40392  kworker/u16:15-1311  ( 1311) [002] d.h3 82315.738987: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40393  kworker/u16:15-1311  ( 1311) [002] d.h4 82315.739001: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40394          <idle>-0     (-----) [000] .n.1 82315.739007: cpu_idle: state=4294967295 cpu_id=0
40395          <idle>-0     (-----) [000] d..2 82315.739017: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40396  kworker/u16:15-1311  ( 1311) [002] d..2 82315.739043: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40397<...>-86 ( 86) [000] d..2 82315.739048: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40398          <idle>-0     (-----) [002] d..1 82315.739056: cpu_idle: state=0 cpu_id=2
40399          <idle>-0     (-----) [000] d..1 82315.739057: cpu_idle: state=0 cpu_id=0
40400          <idle>-0     (-----) [005] ...1 82315.739178: cpu_idle: state=4294967295 cpu_id=5
40401          <idle>-0     (-----) [005] d..1 82315.739182: cpu_idle: state=0 cpu_id=5
40402          <idle>-0     (-----) [002] d.h4 82315.739290: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40403          <idle>-0     (-----) [005] dnh2 82315.739308: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40404          <idle>-0     (-----) [005] .n.1 82315.739311: cpu_idle: state=4294967295 cpu_id=5
40405          <idle>-0     (-----) [005] d..2 82315.739318: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40406          <idle>-0     (-----) [002] ...1 82315.739324: cpu_idle: state=4294967295 cpu_id=2
40407          <idle>-0     (-----) [002] d..1 82315.739328: cpu_idle: state=0 cpu_id=2
40408<...>-5340 ( 788) [005] d..2 82315.739336: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40409<...>-5340 ( 788) [005] d..2 82315.739354: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40410          <idle>-0     (-----) [000] dnh2 82315.739354: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40411          <idle>-0     (-----) [000] .n.1 82315.739360: cpu_idle: state=4294967295 cpu_id=0
40412          <idle>-0     (-----) [005] d..1 82315.739361: cpu_idle: state=0 cpu_id=5
40413          <idle>-0     (-----) [000] d..2 82315.739368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40414<...>-87 ( 87) [000] d..2 82315.739401: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40415          <idle>-0     (-----) [000] d..1 82315.739410: cpu_idle: state=0 cpu_id=0
40416          <idle>-0     (-----) [002] d.h4 82315.740181: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40417          <idle>-0     (-----) [002] d.h5 82315.740195: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40418          <idle>-0     (-----) [000] .n.1 82315.740201: cpu_idle: state=4294967295 cpu_id=0
40419          <idle>-0     (-----) [002] ...1 82315.740203: cpu_idle: state=4294967295 cpu_id=2
40420          <idle>-0     (-----) [002] d..1 82315.740206: cpu_idle: state=0 cpu_id=2
40421          <idle>-0     (-----) [000] d..2 82315.740210: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40422<...>-86 ( 86) [000] d..2 82315.740238: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40423          <idle>-0     (-----) [000] d..1 82315.740247: cpu_idle: state=0 cpu_id=0
40424          <idle>-0     (-----) [005] ...1 82315.740373: cpu_idle: state=4294967295 cpu_id=5
40425          <idle>-0     (-----) [005] d..1 82315.740375: cpu_idle: state=0 cpu_id=5
40426          <idle>-0     (-----) [002] d.h4 82315.740487: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40427          <idle>-0     (-----) [005] dnh2 82315.740503: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40428          <idle>-0     (-----) [005] .n.1 82315.740507: cpu_idle: state=4294967295 cpu_id=5
40429          <idle>-0     (-----) [005] d..2 82315.740512: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40430          <idle>-0     (-----) [002] ...1 82315.740518: cpu_idle: state=4294967295 cpu_id=2
40431          <idle>-0     (-----) [002] d..1 82315.740522: cpu_idle: state=0 cpu_id=2
40432<...>-5340 ( 788) [005] d..2 82315.740550: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40433<...>-5340 ( 788) [005] d..2 82315.740567: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40434          <idle>-0     (-----) [000] dnh2 82315.740569: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40435          <idle>-0     (-----) [000] .n.1 82315.740574: cpu_idle: state=4294967295 cpu_id=0
40436          <idle>-0     (-----) [005] d..1 82315.740578: cpu_idle: state=0 cpu_id=5
40437          <idle>-0     (-----) [000] d..2 82315.740583: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40438<...>-87 ( 87) [000] d..2 82315.740615: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40439          <idle>-0     (-----) [000] d..1 82315.740625: cpu_idle: state=0 cpu_id=0
40440          <idle>-0     (-----) [002] d.h4 82315.741383: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40441          <idle>-0     (-----) [002] d.h5 82315.741395: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40442          <idle>-0     (-----) [000] .n.1 82315.741402: cpu_idle: state=4294967295 cpu_id=0
40443          <idle>-0     (-----) [002] ...1 82315.741403: cpu_idle: state=4294967295 cpu_id=2
40444          <idle>-0     (-----) [002] d..1 82315.741407: cpu_idle: state=0 cpu_id=2
40445          <idle>-0     (-----) [000] d..2 82315.741411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40446<...>-86 ( 86) [000] d..2 82315.741438: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40447          <idle>-0     (-----) [000] d..1 82315.741447: cpu_idle: state=0 cpu_id=0
40448          <idle>-0     (-----) [005] ...1 82315.741590: cpu_idle: state=4294967295 cpu_id=5
40449          <idle>-0     (-----) [005] d..1 82315.741593: cpu_idle: state=0 cpu_id=5
40450          <idle>-0     (-----) [002] d.h4 82315.741684: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40451          <idle>-0     (-----) [005] dnh2 82315.741701: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40452          <idle>-0     (-----) [005] .n.1 82315.741705: cpu_idle: state=4294967295 cpu_id=5
40453          <idle>-0     (-----) [005] d..2 82315.741710: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40454          <idle>-0     (-----) [002] ...1 82315.741713: cpu_idle: state=4294967295 cpu_id=2
40455          <idle>-0     (-----) [002] d..1 82315.741717: cpu_idle: state=0 cpu_id=2
40456<...>-5340 ( 788) [005] d..2 82315.741731: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40457<...>-5340 ( 788) [005] d..2 82315.741748: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40458          <idle>-0     (-----) [000] dnh2 82315.741750: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40459          <idle>-0     (-----) [005] d..1 82315.741755: cpu_idle: state=0 cpu_id=5
40460          <idle>-0     (-----) [000] .n.1 82315.741755: cpu_idle: state=4294967295 cpu_id=0
40461          <idle>-0     (-----) [000] d..2 82315.741764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40462          <idle>-0     (-----) [002] d.h4 82315.741819: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40463          <idle>-0     (-----) [002] dnh5 82315.741839: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
40464<...>-87 ( 87) [000] d..2 82315.741839: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40465          <idle>-0     (-----) [002] .n.1 82315.741846: cpu_idle: state=4294967295 cpu_id=2
40466          <idle>-0     (-----) [000] d..1 82315.741851: cpu_idle: state=0 cpu_id=0
40467          <idle>-0     (-----) [002] d..2 82315.741857: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40468<...>-86 ( 86) [002] d..2 82315.741893: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40469          <idle>-0     (-----) [002] d..1 82315.741900: cpu_idle: state=0 cpu_id=2
40470          <idle>-0     (-----) [002] d.h4 82315.742133: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40471          <idle>-0     (-----) [005] dnh2 82315.742150: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40472          <idle>-0     (-----) [005] .n.1 82315.742155: cpu_idle: state=4294967295 cpu_id=5
40473          <idle>-0     (-----) [005] d..2 82315.742161: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40474          <idle>-0     (-----) [002] ...1 82315.742164: cpu_idle: state=4294967295 cpu_id=2
40475          <idle>-0     (-----) [002] d..1 82315.742168: cpu_idle: state=0 cpu_id=2
40476<...>-5340 ( 788) [005] d..2 82315.742178: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40477<...>-5340 ( 788) [005] d..2 82315.742195: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40478          <idle>-0     (-----) [000] dnh2 82315.742197: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40479          <idle>-0     (-----) [005] d..1 82315.742201: cpu_idle: state=0 cpu_id=5
40480          <idle>-0     (-----) [000] .n.1 82315.742203: cpu_idle: state=4294967295 cpu_id=0
40481          <idle>-0     (-----) [000] d..2 82315.742212: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40482<...>-87 ( 87) [000] d..2 82315.742246: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40483          <idle>-0     (-----) [000] d..1 82315.742255: cpu_idle: state=0 cpu_id=0
40484          <idle>-0     (-----) [002] d.h4 82315.743038: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
40485          <idle>-0     (-----) [002] dnh5 82315.743047: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
40486          <idle>-0     (-----) [002] .n.1 82315.743053: cpu_idle: state=4294967295 cpu_id=2
40487          <idle>-0     (-----) [002] d..2 82315.743061: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40488<...>-86 ( 86) [002] d..2 82315.743090: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40489          <idle>-0     (-----) [002] d..1 82315.743097: cpu_idle: state=0 cpu_id=2
40490          <idle>-0     (-----) [002] d.h4 82315.743418: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40491          <idle>-0     (-----) [005] dnh2 82315.743436: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40492          <idle>-0     (-----) [005] .n.1 82315.743440: cpu_idle: state=4294967295 cpu_id=5
40493          <idle>-0     (-----) [005] d..2 82315.743445: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40494          <idle>-0     (-----) [002] ...1 82315.743450: cpu_idle: state=4294967295 cpu_id=2
40495          <idle>-0     (-----) [002] d..1 82315.743453: cpu_idle: state=0 cpu_id=2
40496<...>-5340 ( 788) [005] d..2 82315.743462: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40497<...>-5340 ( 788) [005] d..2 82315.743479: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40498          <idle>-0     (-----) [000] dnh2 82315.743481: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40499          <idle>-0     (-----) [005] d..1 82315.743485: cpu_idle: state=0 cpu_id=5
40500          <idle>-0     (-----) [000] .n.1 82315.743486: cpu_idle: state=4294967295 cpu_id=0
40501          <idle>-0     (-----) [000] d..2 82315.743496: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40502<...>-87 ( 87) [000] d..2 82315.743528: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40503          <idle>-0     (-----) [000] d..1 82315.743537: cpu_idle: state=0 cpu_id=0
40504          <idle>-0     (-----) [002] d.h4 82315.744325: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
40505          <idle>-0     (-----) [002] dnh5 82315.744333: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
40506          <idle>-0     (-----) [002] .n.1 82315.744340: cpu_idle: state=4294967295 cpu_id=2
40507          <idle>-0     (-----) [002] d..2 82315.744347: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40508<...>-86 ( 86) [002] d..2 82315.744376: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40509          <idle>-0     (-----) [002] d..1 82315.744382: cpu_idle: state=0 cpu_id=2
40510          <idle>-0     (-----) [002] d.h4 82315.744721: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40511          <idle>-0     (-----) [005] dnh2 82315.744738: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40512          <idle>-0     (-----) [005] .n.1 82315.744742: cpu_idle: state=4294967295 cpu_id=5
40513          <idle>-0     (-----) [005] d..2 82315.744747: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40514          <idle>-0     (-----) [002] ...1 82315.744752: cpu_idle: state=4294967295 cpu_id=2
40515          <idle>-0     (-----) [002] d..1 82315.744756: cpu_idle: state=0 cpu_id=2
40516<...>-5340 ( 788) [005] d..2 82315.744763: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40517<...>-5340 ( 788) [005] d..2 82315.744779: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40518          <idle>-0     (-----) [005] d..1 82315.744785: cpu_idle: state=0 cpu_id=5
40519          <idle>-0     (-----) [000] d.h5 82315.744827: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
40520          <idle>-0     (-----) [000] d.h6 82315.744843: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
40521          <idle>-0     (-----) [000] d.h5 82315.744847: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
40522          <idle>-0     (-----) [002] .n.1 82315.744848: cpu_idle: state=4294967295 cpu_id=2
40523          <idle>-0     (-----) [002] d..2 82315.744856: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
40524          <idle>-0     (-----) [000] d.h6 82315.744858: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
40525          <idle>-0     (-----) [001] .n.1 82315.744863: cpu_idle: state=4294967295 cpu_id=1
40526          <idle>-0     (-----) [001] d..2 82315.744877: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
40527          <idle>-0     (-----) [000] dnh2 82315.744877: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40528          <idle>-0     (-----) [000] .n.1 82315.744883: cpu_idle: state=4294967295 cpu_id=0
40529  crtc_event:111-322   (  322) [002] d..2 82315.744887: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40530          <idle>-0     (-----) [000] d..2 82315.744893: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40531          <idle>-0     (-----) [002] d..1 82315.744893: cpu_idle: state=0 cpu_id=2
40532<...>-87 ( 87) [000] d..2 82315.744927: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40533          <idle>-0     (-----) [000] d..1 82315.744938: cpu_idle: state=0 cpu_id=0
40534 crtc_commit:111-321   (  321) [001] d..2 82315.745009: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
40535          <idle>-0     (-----) [001] d..1 82315.745017: cpu_idle: state=0 cpu_id=1
40536          <idle>-0     (-----) [002] d.s2 82315.745128: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
40537          <idle>-0     (-----) [001] d.s3 82315.745133: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
40538          <idle>-0     (-----) [002] dns3 82315.745142: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
40539          <idle>-0     (-----) [001] dns4 82315.745153: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
40540          <idle>-0     (-----) [002] .n.1 82315.745156: cpu_idle: state=4294967295 cpu_id=2
40541          <idle>-0     (-----) [001] dns3 82315.745160: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
40542          <idle>-0     (-----) [002] d..2 82315.745163: 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
40543     rcu_preempt-7     (    7) [002] d..2 82315.745194: 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
40544          <idle>-0     (-----) [001] dns4 82315.745195: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
40545          <idle>-0     (-----) [002] d..1 82315.745204: cpu_idle: state=0 cpu_id=2
40546          <idle>-0     (-----) [001] .n.1 82315.745211: cpu_idle: state=4294967295 cpu_id=1
40547          <idle>-0     (-----) [001] d..2 82315.745217: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
40548  crtc_event:111-322   (  322) [001] d..2 82315.745233: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
40549  kworker/u16:15-1311  ( 1311) [001] d..2 82315.745388: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
40550          <idle>-0     (-----) [001] d.s4 82315.745419: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
40551          <idle>-0     (-----) [001] d.s5 82315.745426: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
40552          <idle>-0     (-----) [001] dns5 82315.745430: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
40553          <idle>-0     (-----) [001] d..2 82315.745440: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
40554  kworker/u16:15-1311  ( 1311) [001] d..2 82315.745463: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40555          <idle>-0     (-----) [001] d..1 82315.745476: cpu_idle: state=0 cpu_id=1
40556          <idle>-0     (-----) [002] d.h4 82315.745657: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
40557          <idle>-0     (-----) [002] dnh5 82315.745666: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
40558          <idle>-0     (-----) [002] .n.1 82315.745673: cpu_idle: state=4294967295 cpu_id=2
40559          <idle>-0     (-----) [002] d..2 82315.745683: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40560<...>-86 ( 86) [002] d..2 82315.745716: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40561          <idle>-0     (-----) [002] d..1 82315.745725: cpu_idle: state=0 cpu_id=2
40562          <idle>-0     (-----) [002] d.h4 82315.746177: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40563          <idle>-0     (-----) [005] dnh2 82315.746195: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40564          <idle>-0     (-----) [005] .n.1 82315.746199: cpu_idle: state=4294967295 cpu_id=5
40565          <idle>-0     (-----) [005] d..2 82315.746205: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40566          <idle>-0     (-----) [002] ...1 82315.746211: cpu_idle: state=4294967295 cpu_id=2
40567          <idle>-0     (-----) [002] d..1 82315.746216: cpu_idle: state=0 cpu_id=2
40568          <idle>-0     (-----) [000] ...1 82315.746716: cpu_idle: state=4294967295 cpu_id=0
40569          <idle>-0     (-----) [000] d..1 82315.746720: cpu_idle: state=0 cpu_id=0
40570          <idle>-0     (-----) [000] d.h5 82315.747158: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
40571          <idle>-0     (-----) [000] d.h6 82315.747173: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
40572          <idle>-0     (-----) [001] .n.1 82315.747179: cpu_idle: state=4294967295 cpu_id=1
40573          <idle>-0     (-----) [000] ...1 82315.747185: cpu_idle: state=4294967295 cpu_id=0
40574          <idle>-0     (-----) [001] d..2 82315.747188: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
40575          <idle>-0     (-----) [000] d..1 82315.747191: cpu_idle: state=0 cpu_id=0
40576 crtc_commit:111-321   (  321) [001] d..2 82315.747251: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40577          <idle>-0     (-----) [001] d..1 82315.747263: cpu_idle: state=0 cpu_id=1
40578          <idle>-0     (-----) [000] d.h5 82315.747459: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
40579          <idle>-0     (-----) [000] d.h6 82315.747471: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
40580          <idle>-0     (-----) [001] .n.1 82315.747477: cpu_idle: state=4294967295 cpu_id=1
40581          <idle>-0     (-----) [001] d..2 82315.747486: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
40582          <idle>-0     (-----) [000] ...1 82315.747488: cpu_idle: state=4294967295 cpu_id=0
40583          <idle>-0     (-----) [000] d..1 82315.747492: cpu_idle: state=0 cpu_id=0
40584  crtc_event:111-322   (  322) [001] d..2 82315.747507: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40585          <idle>-0     (-----) [001] d..1 82315.747515: cpu_idle: state=0 cpu_id=1
40586          <idle>-0     (-----) [003] d.h2 82315.747838: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
40587          <idle>-0     (-----) [003] dnh3 82315.747854: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
40588          <idle>-0     (-----) [003] .n.1 82315.747861: cpu_idle: state=4294967295 cpu_id=3
40589          <idle>-0     (-----) [003] d..2 82315.747870: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
40590        DispSync-8879  ( 8858) [003] d..1 82315.747889: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
40591        DispSync-8879  ( 8858) [003] d..2 82315.747901: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
40592          <idle>-0     (-----) [002] .n.1 82315.747906: cpu_idle: state=4294967295 cpu_id=2
40593        DispSync-8879  ( 8858) [003] d..1 82315.747906: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
40594          <idle>-0     (-----) [002] d..2 82315.747915: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
40595        DispSync-8879  ( 8858) [003] d..2 82315.747916: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
40596          <idle>-0     (-----) [000] .n.1 82315.747921: cpu_idle: state=4294967295 cpu_id=0
40597          <idle>-0     (-----) [000] d..2 82315.747931: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
40598        DispSync-8879  ( 8858) [003] d..2 82315.747946: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40599          <idle>-0     (-----) [003] d..1 82315.747957: cpu_idle: state=0 cpu_id=3
40600   sfEventThread-8882  ( 8858) [002] d..3 82315.747970: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
40601  appEventThread-8881  ( 8858) [000] d..3 82315.747978: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
40602          <idle>-0     (-----) [004] dnh2 82315.747993: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
40603  appEventThread-8881  ( 8858) [000] d..4 82315.747996: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
40604   sfEventThread-8882  ( 8858) [002] d..3 82315.747997: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
40605          <idle>-0     (-----) [004] .n.1 82315.747998: cpu_idle: state=4294967295 cpu_id=4
40606          <idle>-0     (-----) [001] .n.1 82315.748000: cpu_idle: state=4294967295 cpu_id=1
40607          <idle>-0     (-----) [004] d..2 82315.748007: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
40608          <idle>-0     (-----) [001] d..2 82315.748010: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
40609   sfEventThread-8882  ( 8858) [002] d..4 82315.748013: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
40610          <idle>-0     (-----) [003] .n.1 82315.748019: cpu_idle: state=4294967295 cpu_id=3
40611          <idle>-0     (-----) [003] d..2 82315.748027: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
40612  appEventThread-8881  ( 8858) [000] d..2 82315.748032: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40613   sfEventThread-8882  ( 8858) [002] d..2 82315.748046: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40614          <idle>-0     (-----) [000] d..1 82315.748046: cpu_idle: state=0 cpu_id=0
40615          <idle>-0     (-----) [002] d..1 82315.748058: cpu_idle: state=0 cpu_id=2
40616<...>-9105 ( 9105) [001] .... 82315.748259: binder_transaction: transaction=1569031 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
40617<...>-9105 ( 9105) [001] .... 82315.748265: binder_transaction_alloc_buf: transaction=1569031 data_size=80 offsets_size=0
40618<...>-9105 ( 9105) [001] d..4 82315.748271: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
40619<...>-9105 ( 9105) [001] d..5 82315.748304: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
40620          <idle>-0     (-----) [000] .n.1 82315.748310: cpu_idle: state=4294967295 cpu_id=0
40621          <idle>-0     (-----) [000] d..2 82315.748354: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
40622<...>-9006 ( 8943) [004] .... 82315.748355: binder_transaction: transaction=1569032 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
40623<...>-9006 ( 8943) [004] .... 82315.748360: binder_transaction_alloc_buf: transaction=1569032 data_size=80 offsets_size=0
40624<...>-8951 ( 8858) [000] .... 82315.748361: binder_transaction_received: transaction=1569031
40625<...>-9006 ( 8943) [004] d..4 82315.748364: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
40626<...>-9105 ( 9105) [001] d..3 82315.748394: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
40627          <idle>-0     (-----) [002] dnh2 82315.748426: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
40628          <idle>-0     (-----) [002] .n.1 82315.748432: cpu_idle: state=4294967295 cpu_id=2
40629          <idle>-0     (-----) [002] d..2 82315.748442: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
40630          <idle>-0     (-----) [006] dnh2 82315.748446: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
40631          <idle>-0     (-----) [006] .n.1 82315.748452: cpu_idle: state=4294967295 cpu_id=6
40632          <idle>-0     (-----) [006] d..2 82315.748464: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
40633<...>-9006 ( 8943) [004] d.s1 82315.748477: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=004
40634<...>-8951 ( 8858) [000] d.s2 82315.748478: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
40635<...>-9105 ( 9105) [001] d.s2 82315.748482: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
40636<...>-8874 ( 8858) [002] .... 82315.748487: binder_transaction_received: transaction=1569032
40637    RenderThread-9436  ( 9105) [006] d..2 82315.748493: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
40638          <idle>-0     (-----) [006] d..1 82315.748500: cpu_idle: state=0 cpu_id=6
40639<...>-8951 ( 8858) [000] d.s3 82315.748518: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40640<...>-9006 ( 8943) [004] d.s2 82315.748518: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=006
40641<...>-8874 ( 8858) [002] d..1 82315.748520: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
40642          <idle>-0     (-----) [006] .n.1 82315.748523: cpu_idle: state=4294967295 cpu_id=6
40643<...>-9105 ( 9105) [001] d.s3 82315.748528: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
40644          <idle>-0     (-----) [006] d..2 82315.748530: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kswapd0 next_pid=142 next_prio=120
40645<...>-8874 ( 8858) [002] d..2 82315.748544: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
40646<...>-8951 ( 8858) [000] d..1 82315.748549: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
40647<...>-142 ( 142) [006] d..2 82315.748550: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
40648          <idle>-0     (-----) [006] d..1 82315.748556: cpu_idle: state=0 cpu_id=6
40649<...>-9105 ( 9105) [001] d..2 82315.748557: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
40650<...>-8951 ( 8858) [000] dn.2 82315.748562: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
40651<...>-8951 ( 8858) [000] d..2 82315.748570: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
40652<...>-8874 ( 8858) [002] d..2 82315.748588: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40653  appEventThread-8881  ( 8858) [000] d..2 82315.748592: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
40654          <idle>-0     (-----) [002] d..1 82315.748598: cpu_idle: state=0 cpu_id=2
40655     rcu_preempt-7     (    7) [000] d..2 82315.748598: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
40656   sfEventThread-8882  ( 8858) [001] d..2 82315.748600: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
40657     rcu_preempt-7     (    7) [000] d..3 82315.748637: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
40658     rcu_preempt-7     (    7) [000] d..2 82315.748648: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
40659  surfaceflinger-8858  ( 8858) [003] d..1 82315.748650: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
40660<...>-9105 ( 9105) [001] d..2 82315.748651: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
40661<...>-8951 ( 8858) [000] d..1 82315.748653: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
40662         rcuop/2-29    (   29) [001] d..2 82315.748659: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
40663<...>-8951 ( 8858) [000] d..2 82315.748678: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
40664          <idle>-0     (-----) [002] .n.1 82315.748683: cpu_idle: state=4294967295 cpu_id=2
40665<...>-9006 ( 8943) [004] .... 82315.748684: binder_transaction: transaction=1569033 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
40666  surfaceflinger-8858  ( 8858) [003] d..2 82315.748684: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
40667<...>-9006 ( 8943) [004] .... 82315.748688: binder_transaction_alloc_buf: transaction=1569033 data_size=988 offsets_size=48
40668          <idle>-0     (-----) [002] d..2 82315.748691: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
40669<...>-9006 ( 8943) [004] ...2 82315.748710: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
40670         rcuop/2-29    (   29) [001] d..3 82315.748710: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
40671<...>-8951 ( 8858) [000] d..2 82315.748714: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
40672<...>-9006 ( 8943) [004] d..4 82315.748719: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
40673<...>-9006 ( 8943) [004] d..5 82315.748739: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
40674         rcuop/2-29    (   29) [001] d..2 82315.748740: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
40675<...>-9006 ( 8943) [004] d.h5 82315.748776: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
40676  appEventThread-8881  ( 8858) [002] d..2 82315.748782: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
40677   sfEventThread-8882  ( 8858) [001] d..2 82315.748783: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
40678         rcuop/2-29    (   29) [001] d..2 82315.748788: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
40679         rcuop/3-37    (   37) [002] dnh1 82315.748803: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
40680<...>-9006 ( 8943) [004] d..2 82315.748808: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
40681         rcuop/3-37    (   37) [002] d..2 82315.748814: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=576 next_prio=49
40682<...>-8951 ( 8858) [004] .... 82315.748827: binder_transaction_received: transaction=1569033
40683         rcuop/2-29    (   29) [001] d..3 82315.748827: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
40684         rcuop/2-29    (   29) [001] d..2 82315.748837: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
40685         sugov:0-576   (  576) [002] .... 82315.748850: clk_set_rate: pwrcl_clk 902400000
40686         sugov:0-576   (  576) [002] .... 82315.748863: clk_set_rate: cpu3_pwrcl_clk 1132800000
40687         sugov:0-576   (  576) [002] .... 82315.748873: clk_set_rate: cpu2_pwrcl_clk 1132800000
40688         sugov:0-576   (  576) [002] .... 82315.748880: clk_set_rate: cpu1_pwrcl_clk 1132800000
40689         sugov:0-576   (  576) [002] .... 82315.748887: clk_set_rate: cpu0_pwrcl_clk 902400000
40690<...>-8951 ( 8858) [004] .... 82315.748929: binder_transaction: transaction=1569034 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
40691<...>-8951 ( 8858) [004] .... 82315.748932: binder_transaction_alloc_buf: transaction=1569034 data_size=0 offsets_size=0
40692<...>-8951 ( 8858) [004] d..2 82315.748935: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
40693<...>-8951 ( 8858) [004] d..3 82315.748946: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
40694<...>-8951 ( 8858) [004] .... 82315.748948: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
40695<...>-8951 ( 8858) [004] d..2 82315.748958: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
40696<...>-9006 ( 8943) [004] .... 82315.748967: binder_transaction_received: transaction=1569034
40697<...>-9105 ( 9105) [001] d..3 82315.748971: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
40698          <idle>-0     (-----) [006] dnh2 82315.748993: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
40699          <idle>-0     (-----) [006] .n.1 82315.748996: cpu_idle: state=4294967295 cpu_id=6
40700         sugov:0-576   (  576) [002] .... 82315.749001: cpu_frequency: state=902400 cpu_id=0
40701          <idle>-0     (-----) [006] d..2 82315.749002: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
40702<...>-9105 ( 9105) [001] d..2 82315.749017: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40703         sugov:0-576   (  576) [002] .... 82315.749024: cpu_frequency: state=902400 cpu_id=1
40704         sugov:0-576   (  576) [002] .... 82315.749029: cpu_frequency: state=902400 cpu_id=2
40705         sugov:0-576   (  576) [002] .... 82315.749033: cpu_frequency: state=902400 cpu_id=3
40706         sugov:0-576   (  576) [002] d..2 82315.749050: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
40707<...>-9006 ( 8943) [004] d..2 82315.749057: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
40708         rcuop/3-37    (   37) [002] d..2 82315.749062: 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
40709          <idle>-0     (-----) [001] d..1 82315.749068: cpu_idle: state=0 cpu_id=1
40710    RenderThread-9436  ( 9105) [006] d..1 82315.749083: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
40711     rcu_preempt-7     (    7) [002] d..2 82315.749101: 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
40712          <idle>-0     (-----) [001] dnh2 82315.749107: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
40713<...>-8951 ( 8858) [004] d..2 82315.749112: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
40714          <idle>-0     (-----) [001] .n.1 82315.749113: cpu_idle: state=4294967295 cpu_id=1
40715          <idle>-0     (-----) [001] d..2 82315.749126: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
40716          <idle>-0     (-----) [002] d..1 82315.749126: cpu_idle: state=0 cpu_id=2
40717          <idle>-0     (-----) [004] d..1 82315.749129: cpu_idle: state=0 cpu_id=4
40718    RenderThread-9436  ( 9105) [006] .... 82315.749137: binder_transaction: transaction=1569035 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
40719    RenderThread-9436  ( 9105) [006] .... 82315.749141: binder_transaction_alloc_buf: transaction=1569035 data_size=104 offsets_size=0
40720    RenderThread-9436  ( 9105) [006] d..4 82315.749145: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
40721    RenderThread-9436  ( 9105) [006] dn.5 82315.749159: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
40722    RenderThread-9436  ( 9105) [006] d..2 82315.749166: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
40723<...>-8951 ( 8858) [006] .... 82315.749178: binder_transaction_received: transaction=1569035
40724<...>-9105 ( 9105) [001] d..2 82315.749217: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40725<...>-8951 ( 8858) [006] .... 82315.749232: binder_transaction: transaction=1569036 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
40726          <idle>-0     (-----) [001] d..1 82315.749234: cpu_idle: state=0 cpu_id=1
40727<...>-8951 ( 8858) [006] .... 82315.749236: binder_transaction_alloc_buf: transaction=1569036 data_size=52 offsets_size=8
40728<...>-8951 ( 8858) [006] d..2 82315.749269: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
40729    RenderThread-9436  ( 9105) [006] .... 82315.749279: binder_transaction_received: transaction=1569036
40730  kworker/u16:15-1311  ( 1311) [000] d..2 82315.749295: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
40731          <idle>-0     (-----) [000] d..1 82315.749315: cpu_idle: state=0 cpu_id=0
40732          <idle>-0     (-----) [001] d.s3 82315.749329: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40733<...>-5340 ( 788) [005] d..2 82315.749331: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
40734          <idle>-0     (-----) [001] d.s4 82315.749342: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
40735          <idle>-0     (-----) [001] d.s4 82315.749350: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40736          <idle>-0     (-----) [000] .n.1 82315.749358: cpu_idle: state=4294967295 cpu_id=0
40737          <idle>-0     (-----) [001] ...1 82315.749368: cpu_idle: state=4294967295 cpu_id=1
40738          <idle>-0     (-----) [000] d..2 82315.749370: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
40739          <idle>-0     (-----) [001] d..1 82315.749373: cpu_idle: state=0 cpu_id=1
40740  surfaceflinger-8858  ( 8858) [003] d.h1 82315.749373: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40741<...>-5340 ( 788) [005] d..2 82315.749377: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
40742          <idle>-0     (-----) [005] d..1 82315.749393: cpu_idle: state=0 cpu_id=5
40743  kworker/u16:15-1311  ( 1311) [000] .... 82315.749472: clk_set_rate: l3_cluster0_vote_clk 300000000
40744  kworker/u16:15-1311  ( 1311) [000] .... 82315.749477: clk_set_rate: l3_clk 300000000
40745  kworker/u16:15-1311  ( 1311) [000] d..2 82315.749542: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40746          <idle>-0     (-----) [000] d..1 82315.749559: cpu_idle: state=0 cpu_id=0
40747          <idle>-0     (-----) [004] ...1 82315.749679: cpu_idle: state=4294967295 cpu_id=4
40748          <idle>-0     (-----) [004] d..1 82315.749683: cpu_idle: state=0 cpu_id=4
40749  surfaceflinger-8858  ( 8858) [003] ...1 82315.750109: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
40750  surfaceflinger-8858  ( 8858) [003] ...1 82315.750119: tracing_mark_write: E|8858
40751  surfaceflinger-8858  ( 8858) [003] .... 82315.750190: binder_transaction: transaction=1569037 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
40752  surfaceflinger-8858  ( 8858) [003] .... 82315.750196: binder_transaction_alloc_buf: transaction=1569037 data_size=620 offsets_size=112
40753  surfaceflinger-8858  ( 8858) [003] ...2 82315.750225: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
40754  surfaceflinger-8858  ( 8858) [003] d..4 82315.750234: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
40755  surfaceflinger-8858  ( 8858) [003] d..5 82315.750257: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
40756          <idle>-0     (-----) [002] .n.1 82315.750263: cpu_idle: state=4294967295 cpu_id=2
40757          <idle>-0     (-----) [002] d..2 82315.750274: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
40758  surfaceflinger-8858  ( 8858) [003] d..2 82315.750283: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40759 [email protected]   (  619) [002] .... 82315.750287: binder_transaction_received: transaction=1569037
40760<...>-87 ( 87) [003] d..2 82315.750341: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40761 [email protected]   (  619) [002] ...1 82315.750348: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
40762          <idle>-0     (-----) [003] d..1 82315.750363: cpu_idle: state=0 cpu_id=3
40763    RenderThread-9436  ( 9105) [006] d..2 82315.750468: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
40764          <idle>-0     (-----) [006] d..1 82315.750484: cpu_idle: state=0 cpu_id=6
40765 [email protected]   (  619) [002] ...1 82315.750521: tracing_mark_write: B|619|HWCSession::PresentDisplay::
40766          <idle>-0     (-----) [006] d.h2 82315.750551: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
40767          <idle>-0     (-----) [006] d.h3 82315.750559: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
40768          <idle>-0     (-----) [006] dnh3 82315.750562: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
40769          <idle>-0     (-----) [006] .n.1 82315.750569: cpu_idle: state=4294967295 cpu_id=6
40770          <idle>-0     (-----) [006] d..2 82315.750577: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
40771          <idle>-0     (-----) [000] d.h3 82315.750656: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
40772          <idle>-0     (-----) [000] dnh4 82315.750673: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
40773          <idle>-0     (-----) [000] .n.1 82315.750689: cpu_idle: state=4294967295 cpu_id=0
40774          <idle>-0     (-----) [000] d..2 82315.750701: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
40775    RenderThread-9436  ( 9105) [006] .... 82315.750769: binder_transaction: transaction=1569038 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
40776 kgsl_worker_thr-258   (  258) [000] d..2 82315.750772: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40777    RenderThread-9436  ( 9105) [006] .... 82315.750775: binder_transaction_alloc_buf: transaction=1569038 data_size=192 offsets_size=8
40778    RenderThread-9436  ( 9105) [006] d..4 82315.750784: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
40779 kgsl_worker_thr-258   (  258) [000] d..3 82315.750794: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40780    RenderThread-9436  ( 9105) [006] dn.5 82315.750795: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
40781    RenderThread-9436  ( 9105) [006] d..2 82315.750803: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
40782 kgsl_worker_thr-258   (  258) [000] d..2 82315.750813: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
40783<...>-8951 ( 8858) [006] .... 82315.750816: binder_transaction_received: transaction=1569038
40784 [email protected]   (  619) [002] d.h3 82315.750819: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
40785 [email protected]   (  619) [002] d.h4 82315.750881: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
40786          <idle>-0     (-----) [001] .n.1 82315.750886: cpu_idle: state=4294967295 cpu_id=1
40787          <idle>-0     (-----) [001] d..2 82315.750901: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40788<...>-8951 ( 8858) [006] .... 82315.750938: binder_transaction: transaction=1569039 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
40789<...>-8951 ( 8858) [006] .... 82315.750942: binder_transaction_alloc_buf: transaction=1569039 data_size=68 offsets_size=0
40790<...>-86 ( 86) [001] d..2 82315.750955: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40791          <idle>-0     (-----) [001] d..1 82315.750969: cpu_idle: state=0 cpu_id=1
40792<...>-8951 ( 8858) [006] d..2 82315.750973: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
40793    RenderThread-9436  ( 9105) [006] .... 82315.750984: binder_transaction_received: transaction=1569039
40794    RenderThread-9436  ( 9105) [006] d..2 82315.751065: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
40795  kworker/u16:15-1311  ( 1311) [000] d..2 82315.751069: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40796          <idle>-0     (-----) [006] d..1 82315.751082: cpu_idle: state=0 cpu_id=6
40797          <idle>-0     (-----) [000] d..1 82315.751088: cpu_idle: state=0 cpu_id=0
40798 [email protected]   (  619) [002] ...1 82315.751536: tracing_mark_write: B|619|HWDeviceDRM::Validate::
40799 [email protected]   (  619) [002] d.H3 82315.751939: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
40800 [email protected]   (  619) [002] d.H4 82315.751979: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
40801          <idle>-0     (-----) [000] .n.1 82315.751985: cpu_idle: state=4294967295 cpu_id=0
40802          <idle>-0     (-----) [000] d..2 82315.752002: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40803 [email protected]   (  619) [002] d.H2 82315.752048: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
40804 [email protected]   (  619) [002] d.H3 82315.752072: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
40805          <idle>-0     (-----) [003] .n.1 82315.752079: cpu_idle: state=4294967295 cpu_id=3
40806          <idle>-0     (-----) [003] d..2 82315.752094: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
40807         sugov:0-576   (  576) [003] .... 82315.752161: clk_set_rate: pwrcl_clk 1056000000
40808         sugov:0-576   (  576) [003] .... 82315.752174: clk_set_rate: cpu3_pwrcl_clk 902400000
40809          <idle>-0     (-----) [001] ...1 82315.752180: cpu_idle: state=4294967295 cpu_id=1
40810         sugov:0-576   (  576) [003] .... 82315.752184: clk_set_rate: cpu2_pwrcl_clk 902400000
40811          <idle>-0     (-----) [001] d..1 82315.752185: cpu_idle: state=0 cpu_id=1
40812         sugov:0-576   (  576) [003] .... 82315.752192: clk_set_rate: cpu1_pwrcl_clk 902400000
40813         sugov:0-576   (  576) [003] .... 82315.752200: clk_set_rate: cpu0_pwrcl_clk 1056000000
40814         sugov:0-576   (  576) [003] .... 82315.752209: cpu_frequency: state=1056000 cpu_id=0
40815         sugov:0-576   (  576) [003] .... 82315.752233: cpu_frequency: state=1056000 cpu_id=1
40816         sugov:0-576   (  576) [003] .... 82315.752237: cpu_frequency: state=1056000 cpu_id=2
40817         sugov:0-576   (  576) [003] .... 82315.752243: cpu_frequency: state=1056000 cpu_id=3
40818         sugov:0-576   (  576) [003] d..2 82315.752280: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40819          <idle>-0     (-----) [003] d..1 82315.752294: cpu_idle: state=0 cpu_id=3
40820<...>-5340 ( 788) [000] d..2 82315.752298: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40821<...>-5340 ( 788) [000] d..3 82315.752323: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40822          <idle>-0     (-----) [003] .n.1 82315.752328: cpu_idle: state=4294967295 cpu_id=3
40823          <idle>-0     (-----) [003] d..2 82315.752342: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40824<...>-5340 ( 788) [000] d..2 82315.752358: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40825          <idle>-0     (-----) [000] d..1 82315.752382: cpu_idle: state=0 cpu_id=0
40826<...>-87 ( 87) [003] d..2 82315.752386: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40827          <idle>-0     (-----) [003] d..1 82315.752396: cpu_idle: state=0 cpu_id=3
40828 [email protected]   (  619) [002] ...1 82315.752609: tracing_mark_write: E|619
40829 [email protected]   (  619) [002] ...1 82315.752803: tracing_mark_write: B|619|HWDeviceDRM::Commit::
40830 [email protected]   (  619) [002] ...1 82315.752816: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
40831 [email protected]   (  619) [002] d.h3 82315.753067: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
40832 [email protected]   (  619) [002] d.h4 82315.753119: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40833          <idle>-0     (-----) [000] .n.1 82315.753126: cpu_idle: state=4294967295 cpu_id=0
40834          <idle>-0     (-----) [000] d..2 82315.753140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40835<...>-86 ( 86) [000] d..2 82315.753186: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40836          <idle>-0     (-----) [000] d..1 82315.753198: cpu_idle: state=0 cpu_id=0
40837 [email protected]   (  619) [002] d..2 82315.753456: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
40838 [email protected]   (  619) [002] d..3 82315.753482: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
40839          <idle>-0     (-----) [001] .n.1 82315.753486: cpu_idle: state=4294967295 cpu_id=1
40840          <idle>-0     (-----) [001] d..2 82315.753498: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
40841 [email protected]   (  619) [002] d.h4 82315.753511: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
40842 [email protected]   (  619) [002] d.h5 82315.753529: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
40843          <idle>-0     (-----) [000] .n.1 82315.753535: cpu_idle: state=4294967295 cpu_id=0
40844          <idle>-0     (-----) [000] d..2 82315.753546: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40845<...>-5340 ( 788) [000] d..2 82315.753596: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40846<...>-5340 ( 788) [000] d..3 82315.753615: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40847          <idle>-0     (-----) [003] .n.1 82315.753619: cpu_idle: state=4294967295 cpu_id=3
40848          <idle>-0     (-----) [003] d..2 82315.753633: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40849<...>-5340 ( 788) [000] d..2 82315.753639: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40850          <idle>-0     (-----) [000] d..1 82315.753654: cpu_idle: state=0 cpu_id=0
40851 [email protected]   (  619) [002] ...1 82315.753669: tracing_mark_write: E|619
40852<...>-87 ( 87) [003] d..2 82315.753670: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40853 [email protected]   (  619) [002] ...1 82315.753675: tracing_mark_write: E|619
40854          <idle>-0     (-----) [003] d..1 82315.753680: cpu_idle: state=0 cpu_id=3
40855 [email protected]   (  619) [002] ...1 82315.753740: tracing_mark_write: E|619
40856 [email protected]   (  619) [002] ...1 82315.753801: tracing_mark_write: E|619
40857 [email protected]   (  619) [002] .... 82315.753820: binder_transaction: transaction=1569040 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
40858 [email protected]   (  619) [002] .... 82315.753826: binder_transaction_alloc_buf: transaction=1569040 data_size=736 offsets_size=144
40859 [email protected]   (  619) [002] d..2 82315.753850: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
40860 [email protected]   (  619) [002] d..3 82315.753872: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
40861          <idle>-0     (-----) [003] .n.1 82315.753876: cpu_idle: state=4294967295 cpu_id=3
40862 [email protected]   (  619) [002] .... 82315.753878: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
40863          <idle>-0     (-----) [003] d..2 82315.753886: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
40864  surfaceflinger-8858  ( 8858) [003] .... 82315.753897: binder_transaction_received: transaction=1569040
40865 [email protected]   (  619) [002] d..2 82315.753986: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
40866          <idle>-0     (-----) [002] d..1 82315.754003: cpu_idle: state=0 cpu_id=2
40867  surfaceflinger-8858  ( 8858) [003] d..2 82315.754478: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40868          <idle>-0     (-----) [003] d..1 82315.754500: cpu_idle: state=0 cpu_id=3
40869          <idle>-0     (-----) [002] d.h4 82315.754513: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40870          <idle>-0     (-----) [002] d.h5 82315.754532: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40871          <idle>-0     (-----) [000] .n.1 82315.754539: cpu_idle: state=4294967295 cpu_id=0
40872          <idle>-0     (-----) [002] ...1 82315.754544: cpu_idle: state=4294967295 cpu_id=2
40873          <idle>-0     (-----) [002] d..1 82315.754549: cpu_idle: state=0 cpu_id=2
40874          <idle>-0     (-----) [000] d..2 82315.754551: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40875<...>-86 ( 86) [000] d..2 82315.754588: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40876          <idle>-0     (-----) [000] d..1 82315.754600: cpu_idle: state=0 cpu_id=0
40877          <idle>-0     (-----) [002] d.h4 82315.754895: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
40878          <idle>-0     (-----) [002] d.h5 82315.754909: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
40879          <idle>-0     (-----) [000] .n.1 82315.754916: cpu_idle: state=4294967295 cpu_id=0
40880          <idle>-0     (-----) [000] d..2 82315.754926: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40881          <idle>-0     (-----) [002] ...1 82315.754938: cpu_idle: state=4294967295 cpu_id=2
40882          <idle>-0     (-----) [002] d..1 82315.754943: cpu_idle: state=0 cpu_id=2
40883<...>-5340 ( 788) [000] d..2 82315.754968: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40884<...>-5340 ( 788) [000] d..3 82315.754986: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40885          <idle>-0     (-----) [003] .n.1 82315.754994: cpu_idle: state=4294967295 cpu_id=3
40886          <idle>-0     (-----) [003] d..2 82315.755007: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40887<...>-5340 ( 788) [000] d..2 82315.755008: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40888          <idle>-0     (-----) [000] d..1 82315.755024: cpu_idle: state=0 cpu_id=0
40889<...>-87 ( 87) [003] d..2 82315.755054: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40890          <idle>-0     (-----) [003] d..1 82315.755066: cpu_idle: state=0 cpu_id=3
40891          <idle>-0     (-----) [002] d.s2 82315.755139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
40892          <idle>-0     (-----) [002] dns3 82315.755159: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
40893          <idle>-0     (-----) [002] .n.1 82315.755178: cpu_idle: state=4294967295 cpu_id=2
40894          <idle>-0     (-----) [002] d..2 82315.755189: 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
40895     rcu_preempt-7     (    7) [002] d..2 82315.755227: 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
40896          <idle>-0     (-----) [002] d..1 82315.755241: cpu_idle: state=0 cpu_id=2
40897 crtc_commit:111-321   (  321) [001] d..2 82315.755480: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
40898          <idle>-0     (-----) [001] d..1 82315.755501: cpu_idle: state=0 cpu_id=1
40899          <idle>-0     (-----) [002] d.h4 82315.755920: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40900          <idle>-0     (-----) [002] d.h5 82315.755936: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40901          <idle>-0     (-----) [000] .n.1 82315.755944: cpu_idle: state=4294967295 cpu_id=0
40902          <idle>-0     (-----) [002] ...1 82315.755946: cpu_idle: state=4294967295 cpu_id=2
40903          <idle>-0     (-----) [002] d..1 82315.755951: cpu_idle: state=0 cpu_id=2
40904          <idle>-0     (-----) [000] d..2 82315.755958: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40905<...>-86 ( 86) [000] d..2 82315.755998: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40906          <idle>-0     (-----) [000] d..1 82315.756010: cpu_idle: state=0 cpu_id=0
40907          <idle>-0     (-----) [002] d.h4 82315.756306: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
40908          <idle>-0     (-----) [002] d.h5 82315.756320: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
40909          <idle>-0     (-----) [000] .n.1 82315.756327: cpu_idle: state=4294967295 cpu_id=0
40910          <idle>-0     (-----) [000] d..2 82315.756337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40911          <idle>-0     (-----) [002] ...1 82315.756348: cpu_idle: state=4294967295 cpu_id=2
40912          <idle>-0     (-----) [002] d..1 82315.756353: cpu_idle: state=0 cpu_id=2
40913<...>-5340 ( 788) [000] d..2 82315.756378: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40914<...>-5340 ( 788) [000] d..3 82315.756399: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40915          <idle>-0     (-----) [003] .n.1 82315.756402: cpu_idle: state=4294967295 cpu_id=3
40916          <idle>-0     (-----) [003] d..2 82315.756414: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40917<...>-5340 ( 788) [000] d..2 82315.756422: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40918          <idle>-0     (-----) [000] d..1 82315.756437: cpu_idle: state=0 cpu_id=0
40919<...>-87 ( 87) [003] d..2 82315.756452: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40920          <idle>-0     (-----) [003] d..1 82315.756463: cpu_idle: state=0 cpu_id=3
40921          <idle>-0     (-----) [002] d.h4 82315.757320: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40922          <idle>-0     (-----) [002] d.h5 82315.757334: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40923          <idle>-0     (-----) [000] .n.1 82315.757341: cpu_idle: state=4294967295 cpu_id=0
40924          <idle>-0     (-----) [002] ...1 82315.757342: cpu_idle: state=4294967295 cpu_id=2
40925          <idle>-0     (-----) [002] d..1 82315.757346: cpu_idle: state=0 cpu_id=2
40926          <idle>-0     (-----) [000] d..2 82315.757353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40927<...>-86 ( 86) [000] d..2 82315.757392: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40928          <idle>-0     (-----) [000] d..1 82315.757403: cpu_idle: state=0 cpu_id=0
40929          <idle>-0     (-----) [002] d.h4 82315.757710: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
40930          <idle>-0     (-----) [002] d.h5 82315.757723: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
40931          <idle>-0     (-----) [000] .n.1 82315.757730: cpu_idle: state=4294967295 cpu_id=0
40932          <idle>-0     (-----) [000] d..2 82315.757740: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40933          <idle>-0     (-----) [002] ...1 82315.757749: cpu_idle: state=4294967295 cpu_id=2
40934          <idle>-0     (-----) [002] d..1 82315.757753: cpu_idle: state=0 cpu_id=2
40935<...>-5340 ( 788) [000] d..2 82315.757782: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40936<...>-5340 ( 788) [000] d..3 82315.757801: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40937          <idle>-0     (-----) [003] .n.1 82315.757807: cpu_idle: state=4294967295 cpu_id=3
40938          <idle>-0     (-----) [003] d..2 82315.757817: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40939<...>-5340 ( 788) [000] d..2 82315.757824: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40940          <idle>-0     (-----) [000] d..1 82315.757839: cpu_idle: state=0 cpu_id=0
40941<...>-87 ( 87) [003] d..2 82315.757855: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40942          <idle>-0     (-----) [003] d..1 82315.757864: cpu_idle: state=0 cpu_id=3
40943          <idle>-0     (-----) [002] d.h4 82315.758733: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40944          <idle>-0     (-----) [002] d.h5 82315.758747: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40945          <idle>-0     (-----) [000] .n.1 82315.758754: cpu_idle: state=4294967295 cpu_id=0
40946          <idle>-0     (-----) [002] d..2 82315.758756: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
40947          <idle>-0     (-----) [000] d..2 82315.758768: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40948          <idle>-0     (-----) [002] dn.3 82315.758769: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
40949          <idle>-0     (-----) [002] .n.1 82315.758773: cpu_idle: state=4294967295 cpu_id=2
40950          <idle>-0     (-----) [002] d..2 82315.758788: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
40951     ksoftirqd/2-26    (   26) [002] d.s2 82315.758803: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40952<...>-86 ( 86) [000] d..2 82315.758815: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40953     ksoftirqd/2-26    (   26) [002] d.s3 82315.758825: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40954          <idle>-0     (-----) [000] d..2 82315.758834: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
40955     ksoftirqd/2-26    (   26) [002] d..2 82315.758863: 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
40956          <idle>-0     (-----) [002] d..1 82315.758893: cpu_idle: state=0 cpu_id=2
40957          <idle>-0     (-----) [002] ...1 82315.758906: cpu_idle: state=4294967295 cpu_id=2
40958          <idle>-0     (-----) [002] d..1 82315.758910: cpu_idle: state=0 cpu_id=2
40959  kworker/u16:15-1311  ( 1311) [000] .... 82315.758917: clk_set_rate: l3_cluster0_vote_clk 403200000
40960  kworker/u16:15-1311  ( 1311) [000] .... 82315.758922: clk_set_rate: l3_clk 403200000
40961          <idle>-0     (-----) [002] d.h4 82315.759131: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
40962  kworker/u16:15-1311  ( 1311) [000] d..2 82315.759154: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
40963          <idle>-0     (-----) [002] d.h5 82315.759157: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
40964          <idle>-0     (-----) [000] d..1 82315.759170: cpu_idle: state=0 cpu_id=0
40965          <idle>-0     (-----) [002] ...1 82315.759185: cpu_idle: state=4294967295 cpu_id=2
40966          <idle>-0     (-----) [001] dns3 82315.759190: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40967          <idle>-0     (-----) [002] d..1 82315.759190: cpu_idle: state=0 cpu_id=2
40968          <idle>-0     (-----) [001] dns4 82315.759202: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
40969          <idle>-0     (-----) [001] dns4 82315.759211: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
40970          <idle>-0     (-----) [000] .n.1 82315.759218: cpu_idle: state=4294967295 cpu_id=0
40971          <idle>-0     (-----) [001] .n.1 82315.759219: cpu_idle: state=4294967295 cpu_id=1
40972          <idle>-0     (-----) [000] d..2 82315.759229: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
40973          <idle>-0     (-----) [001] d..2 82315.759233: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40974  kworker/u16:15-1311  ( 1311) [000] d..2 82315.759278: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40975          <idle>-0     (-----) [000] d..1 82315.759290: cpu_idle: state=0 cpu_id=0
40976<...>-5340 ( 788) [001] d..2 82315.759294: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40977<...>-5340 ( 788) [001] d..3 82315.759313: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40978          <idle>-0     (-----) [003] .n.1 82315.759318: cpu_idle: state=4294967295 cpu_id=3
40979          <idle>-0     (-----) [003] d..2 82315.759328: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
40980<...>-5340 ( 788) [001] d..2 82315.759342: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
40981          <idle>-0     (-----) [001] d..1 82315.759358: cpu_idle: state=0 cpu_id=1
40982<...>-87 ( 87) [003] d..2 82315.759363: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
40983          <idle>-0     (-----) [003] d..1 82315.759372: cpu_idle: state=0 cpu_id=3
40984          <idle>-0     (-----) [002] d.h4 82315.760147: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40985          <idle>-0     (-----) [002] d.h5 82315.760161: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
40986          <idle>-0     (-----) [000] .n.1 82315.760167: cpu_idle: state=4294967295 cpu_id=0
40987          <idle>-0     (-----) [002] ...1 82315.760169: cpu_idle: state=4294967295 cpu_id=2
40988          <idle>-0     (-----) [002] d..1 82315.760173: cpu_idle: state=0 cpu_id=2
40989          <idle>-0     (-----) [000] d..2 82315.760178: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
40990<...>-86 ( 86) [000] d..2 82315.760216: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
40991          <idle>-0     (-----) [000] d..1 82315.760227: cpu_idle: state=0 cpu_id=0
40992          <idle>-0     (-----) [002] d.h4 82315.760539: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
40993          <idle>-0     (-----) [002] d.h5 82315.760552: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
40994          <idle>-0     (-----) [001] .n.1 82315.760559: cpu_idle: state=4294967295 cpu_id=1
40995          <idle>-0     (-----) [001] d..2 82315.760571: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
40996          <idle>-0     (-----) [002] ...1 82315.760577: cpu_idle: state=4294967295 cpu_id=2
40997          <idle>-0     (-----) [002] d..1 82315.760581: cpu_idle: state=0 cpu_id=2
40998<...>-5340 ( 788) [001] d..2 82315.760608: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
40999<...>-5340 ( 788) [001] d..3 82315.760624: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41000          <idle>-0     (-----) [003] .n.1 82315.760629: cpu_idle: state=4294967295 cpu_id=3
41001          <idle>-0     (-----) [003] d..2 82315.760639: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41002<...>-5340 ( 788) [001] d..2 82315.760647: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41003          <idle>-0     (-----) [001] d..1 82315.760660: cpu_idle: state=0 cpu_id=1
41004<...>-87 ( 87) [003] d..2 82315.760673: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41005          <idle>-0     (-----) [003] d..1 82315.760681: cpu_idle: state=0 cpu_id=3
41006          <idle>-0     (-----) [000] d.h5 82315.761303: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41007          <idle>-0     (-----) [000] d.h6 82315.761323: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41008          <idle>-0     (-----) [000] d.h5 82315.761328: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
41009          <idle>-0     (-----) [001] .n.1 82315.761329: cpu_idle: state=4294967295 cpu_id=1
41010          <idle>-0     (-----) [001] d..2 82315.761339: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
41011          <idle>-0     (-----) [000] dnh6 82315.761351: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41012          <idle>-0     (-----) [000] .n.1 82315.761365: cpu_idle: state=4294967295 cpu_id=0
41013          <idle>-0     (-----) [000] d..2 82315.761375: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
41014  crtc_event:111-322   (  322) [001] d..2 82315.761377: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41015          <idle>-0     (-----) [001] d..1 82315.761386: cpu_idle: state=0 cpu_id=1
41016 crtc_commit:111-321   (  321) [000] d..2 82315.761535: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
41017          <idle>-0     (-----) [000] d..1 82315.761544: cpu_idle: state=0 cpu_id=0
41018          <idle>-0     (-----) [002] d.h4 82315.761584: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
41019          <idle>-0     (-----) [002] d.h5 82315.761597: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
41020          <idle>-0     (-----) [000] .n.1 82315.761604: cpu_idle: state=4294967295 cpu_id=0
41021          <idle>-0     (-----) [002] ...1 82315.761605: cpu_idle: state=4294967295 cpu_id=2
41022          <idle>-0     (-----) [002] d..1 82315.761609: cpu_idle: state=0 cpu_id=2
41023          <idle>-0     (-----) [000] d..2 82315.761613: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41024<...>-86 ( 86) [000] d..2 82315.761649: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41025          <idle>-0     (-----) [000] d..1 82315.761657: cpu_idle: state=0 cpu_id=0
41026          <idle>-0     (-----) [002] d.s2 82315.761798: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
41027          <idle>-0     (-----) [000] d.s3 82315.761805: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41028          <idle>-0     (-----) [002] dns3 82315.761812: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
41029          <idle>-0     (-----) [000] d.s4 82315.761820: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41030          <idle>-0     (-----) [002] .n.1 82315.761820: cpu_idle: state=4294967295 cpu_id=2
41031          <idle>-0     (-----) [001] .n.1 82315.761825: cpu_idle: state=4294967295 cpu_id=1
41032          <idle>-0     (-----) [002] d..2 82315.761829: 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
41033          <idle>-0     (-----) [001] d..2 82315.761836: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
41034     rcu_preempt-7     (    7) [002] d..2 82315.761839: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
41035          <idle>-0     (-----) [000] ...1 82315.761847: cpu_idle: state=4294967295 cpu_id=0
41036          <idle>-0     (-----) [000] d..1 82315.761853: cpu_idle: state=0 cpu_id=0
41037     rcu_preempt-7     (    7) [002] d..3 82315.761865: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
41038  crtc_event:111-322   (  322) [001] d..2 82315.761865: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41039          <idle>-0     (-----) [000] .n.1 82315.761870: cpu_idle: state=4294967295 cpu_id=0
41040          <idle>-0     (-----) [001] d..1 82315.761874: cpu_idle: state=0 cpu_id=1
41041          <idle>-0     (-----) [000] d..2 82315.761882: 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
41042     rcu_preempt-7     (    7) [002] d..2 82315.761889: 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
41043         rcuop/2-29    (   29) [000] d..2 82315.761891: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
41044          <idle>-0     (-----) [002] d..1 82315.761903: cpu_idle: state=0 cpu_id=2
41045         rcuop/2-29    (   29) [000] d..3 82315.761931: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
41046         rcuop/2-29    (   29) [000] d..2 82315.761935: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
41047         rcuop/2-29    (   29) [000] d..3 82315.761947: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
41048          <idle>-0     (-----) [002] .n.1 82315.761953: cpu_idle: state=4294967295 cpu_id=2
41049         rcuop/2-29    (   29) [000] d..2 82315.761957: 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
41050          <idle>-0     (-----) [002] d..2 82315.761964: 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
41051     rcu_preempt-7     (    7) [002] d..2 82315.761985: 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
41052         rcuop/3-37    (   37) [000] d..2 82315.761988: 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
41053          <idle>-0     (-----) [002] d..1 82315.761993: cpu_idle: state=0 cpu_id=2
41054          <idle>-0     (-----) [000] d..1 82315.762000: cpu_idle: state=0 cpu_id=0
41055          <idle>-0     (-----) [002] d.h4 82315.762022: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41056          <idle>-0     (-----) [002] d.h5 82315.762037: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41057          <idle>-0     (-----) [001] .n.1 82315.762044: cpu_idle: state=4294967295 cpu_id=1
41058          <idle>-0     (-----) [001] d..2 82315.762054: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41059          <idle>-0     (-----) [002] ...1 82315.762064: cpu_idle: state=4294967295 cpu_id=2
41060          <idle>-0     (-----) [002] d..1 82315.762071: cpu_idle: state=0 cpu_id=2
41061<...>-5340 ( 788) [001] d..2 82315.762102: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41062<...>-5340 ( 788) [001] d..3 82315.762120: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41063          <idle>-0     (-----) [003] .n.1 82315.762124: cpu_idle: state=4294967295 cpu_id=3
41064          <idle>-0     (-----) [003] d..2 82315.762134: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41065<...>-5340 ( 788) [001] d..2 82315.762143: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41066          <idle>-0     (-----) [001] d..1 82315.762157: cpu_idle: state=0 cpu_id=1
41067<...>-87 ( 87) [003] d..2 82315.762171: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41068          <idle>-0     (-----) [003] d..1 82315.762179: cpu_idle: state=0 cpu_id=3
41069          <idle>-0     (-----) [002] d.h4 82315.763120: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
41070          <idle>-0     (-----) [002] d.h5 82315.763133: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
41071          <idle>-0     (-----) [000] .n.1 82315.763140: cpu_idle: state=4294967295 cpu_id=0
41072          <idle>-0     (-----) [002] ...1 82315.763142: cpu_idle: state=4294967295 cpu_id=2
41073          <idle>-0     (-----) [002] d..1 82315.763147: cpu_idle: state=0 cpu_id=2
41074          <idle>-0     (-----) [000] d..2 82315.763151: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41075<...>-86 ( 86) [000] d..2 82315.763189: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41076          <idle>-0     (-----) [000] d..1 82315.763199: cpu_idle: state=0 cpu_id=0
41077          <idle>-0     (-----) [000] d.h5 82315.763628: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41078          <idle>-0     (-----) [000] dnh6 82315.763639: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41079          <idle>-0     (-----) [000] .n.1 82315.763652: cpu_idle: state=4294967295 cpu_id=0
41080          <idle>-0     (-----) [000] d..2 82315.763662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
41081          <idle>-0     (-----) [002] d.h4 82315.763674: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41082          <idle>-0     (-----) [002] d.h5 82315.763687: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41083          <idle>-0     (-----) [001] .n.1 82315.763693: cpu_idle: state=4294967295 cpu_id=1
41084          <idle>-0     (-----) [001] d..2 82315.763704: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41085          <idle>-0     (-----) [002] ...1 82315.763712: cpu_idle: state=4294967295 cpu_id=2
41086          <idle>-0     (-----) [002] d..1 82315.763716: cpu_idle: state=0 cpu_id=2
41087 crtc_commit:111-321   (  321) [000] d..2 82315.763728: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41088<...>-5340 ( 788) [001] d..2 82315.763741: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41089          <idle>-0     (-----) [000] d..1 82315.763742: cpu_idle: state=0 cpu_id=0
41090<...>-5340 ( 788) [001] d..3 82315.763757: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41091          <idle>-0     (-----) [003] .n.1 82315.763762: cpu_idle: state=4294967295 cpu_id=3
41092          <idle>-0     (-----) [003] d..2 82315.763772: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41093<...>-5340 ( 788) [001] d..2 82315.763780: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41094          <idle>-0     (-----) [001] d..1 82315.763793: cpu_idle: state=0 cpu_id=1
41095<...>-87 ( 87) [003] d..2 82315.763808: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41096          <idle>-0     (-----) [003] d..1 82315.763815: cpu_idle: state=0 cpu_id=3
41097          <idle>-0     (-----) [000] d.h5 82315.763931: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41098          <idle>-0     (-----) [000] d.h6 82315.763946: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41099          <idle>-0     (-----) [001] .n.1 82315.763953: cpu_idle: state=4294967295 cpu_id=1
41100          <idle>-0     (-----) [001] d..2 82315.763963: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
41101          <idle>-0     (-----) [000] ...1 82315.763965: cpu_idle: state=4294967295 cpu_id=0
41102          <idle>-0     (-----) [000] d..1 82315.763970: cpu_idle: state=0 cpu_id=0
41103  crtc_event:111-322   (  322) [001] d..2 82315.763989: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41104          <idle>-0     (-----) [001] d..1 82315.763999: cpu_idle: state=0 cpu_id=1
41105          <idle>-0     (-----) [003] d.h2 82315.764289: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
41106          <idle>-0     (-----) [003] dnh3 82315.764307: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
41107          <idle>-0     (-----) [003] .n.1 82315.764316: cpu_idle: state=4294967295 cpu_id=3
41108          <idle>-0     (-----) [003] d..2 82315.764324: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
41109        DispSync-8879  ( 8858) [003] d..1 82315.764348: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41110        DispSync-8879  ( 8858) [003] d..2 82315.764363: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41111          <idle>-0     (-----) [001] .n.1 82315.764368: cpu_idle: state=4294967295 cpu_id=1
41112        DispSync-8879  ( 8858) [003] d..1 82315.764368: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
41113          <idle>-0     (-----) [001] d..2 82315.764377: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
41114        DispSync-8879  ( 8858) [003] d..2 82315.764380: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
41115          <idle>-0     (-----) [002] .n.1 82315.764385: cpu_idle: state=4294967295 cpu_id=2
41116          <idle>-0     (-----) [002] d..2 82315.764396: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
41117        DispSync-8879  ( 8858) [003] d..2 82315.764413: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41118          <idle>-0     (-----) [003] d..1 82315.764423: cpu_idle: state=0 cpu_id=3
41119   sfEventThread-8882  ( 8858) [001] d..3 82315.764438: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
41120  appEventThread-8881  ( 8858) [002] d..3 82315.764459: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
41121          <idle>-0     (-----) [004] dnh2 82315.764466: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
41122          <idle>-0     (-----) [004] .n.1 82315.764470: cpu_idle: state=4294967295 cpu_id=4
41123   sfEventThread-8882  ( 8858) [001] d..3 82315.764470: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
41124          <idle>-0     (-----) [004] d..2 82315.764480: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
41125   sfEventThread-8882  ( 8858) [001] d..4 82315.764487: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
41126  appEventThread-8881  ( 8858) [002] d..4 82315.764489: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
41127          <idle>-0     (-----) [003] .n.1 82315.764492: cpu_idle: state=4294967295 cpu_id=3
41128          <idle>-0     (-----) [000] .n.1 82315.764493: cpu_idle: state=4294967295 cpu_id=0
41129          <idle>-0     (-----) [003] d..2 82315.764502: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
41130          <idle>-0     (-----) [000] d..2 82315.764505: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
41131   sfEventThread-8882  ( 8858) [001] d..2 82315.764524: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41132  appEventThread-8881  ( 8858) [002] d..2 82315.764532: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41133          <idle>-0     (-----) [001] d..1 82315.764540: cpu_idle: state=0 cpu_id=1
41134          <idle>-0     (-----) [002] d..1 82315.764546: cpu_idle: state=0 cpu_id=2
41135          <idle>-0     (-----) [002] d.h4 82315.764710: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
41136          <idle>-0     (-----) [002] dnh5 82315.764731: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41137          <idle>-0     (-----) [002] .n.1 82315.764739: cpu_idle: state=4294967295 cpu_id=2
41138          <idle>-0     (-----) [002] d..2 82315.764751: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41139<...>-9006 ( 8943) [004] .... 82315.764778: binder_transaction: transaction=1569041 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
41140<...>-9006 ( 8943) [004] .... 82315.764783: binder_transaction_alloc_buf: transaction=1569041 data_size=80 offsets_size=0
41141<...>-86 ( 86) [002] d..2 82315.764784: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41142<...>-9006 ( 8943) [004] d..4 82315.764788: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
41143          <idle>-0     (-----) [002] d..1 82315.764794: cpu_idle: state=0 cpu_id=2
41144          <idle>-0     (-----) [001] dnh2 82315.764850: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
41145<...>-9105 ( 9105) [000] .... 82315.764851: binder_transaction: transaction=1569042 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
41146          <idle>-0     (-----) [001] .n.1 82315.764857: cpu_idle: state=4294967295 cpu_id=1
41147<...>-9105 ( 9105) [000] .... 82315.764858: binder_transaction_alloc_buf: transaction=1569042 data_size=80 offsets_size=0
41148<...>-9105 ( 9105) [000] d..4 82315.764865: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
41149          <idle>-0     (-----) [001] d..2 82315.764867: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
41150<...>-9105 ( 9105) [000] d..5 82315.764892: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
41151          <idle>-0     (-----) [002] .n.1 82315.764897: cpu_idle: state=4294967295 cpu_id=2
41152<...>-8951 ( 8858) [001] .... 82315.764900: binder_transaction_received: transaction=1569041
41153          <idle>-0     (-----) [002] d..2 82315.764908: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
41154<...>-8874 ( 8858) [002] .... 82315.764916: binder_transaction_received: transaction=1569042
41155<...>-9105 ( 9105) [000] d..3 82315.764934: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
41156<...>-8951 ( 8858) [001] d..1 82315.764935: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41157<...>-8951 ( 8858) [001] dn.2 82315.764947: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41158<...>-8874 ( 8858) [002] d..1 82315.764951: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
41159<...>-8951 ( 8858) [001] d..2 82315.764954: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
41160          <idle>-0     (-----) [006] dnh2 82315.764963: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
41161          <idle>-0     (-----) [006] .n.1 82315.764968: cpu_idle: state=4294967295 cpu_id=6
41162   sfEventThread-8882  ( 8858) [001] d..2 82315.764973: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
41163<...>-8874 ( 8858) [002] d..2 82315.764974: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
41164<...>-8951 ( 8858) [001] d..1 82315.764978: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41165          <idle>-0     (-----) [006] d..2 82315.764978: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
41166<...>-8951 ( 8858) [001] dn.2 82315.764985: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41167<...>-8951 ( 8858) [001] d..2 82315.764991: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
41168<...>-9105 ( 9105) [000] d..2 82315.764991: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
41169<...>-9006 ( 8943) [004] .... 82315.764999: binder_transaction: transaction=1569043 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
41170<...>-9006 ( 8943) [004] .... 82315.765003: binder_transaction_alloc_buf: transaction=1569043 data_size=988 offsets_size=48
41171    RenderThread-9436  ( 9105) [006] d..2 82315.765007: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
41172          <idle>-0     (-----) [006] d..1 82315.765014: cpu_idle: state=0 cpu_id=6
41173<...>-8874 ( 8858) [002] d..2 82315.765017: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41174   sfEventThread-8882  ( 8858) [001] d..2 82315.765019: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
41175<...>-9006 ( 8943) [004] ...2 82315.765023: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
41176<...>-9006 ( 8943) [004] d..4 82315.765026: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
41177          <idle>-0     (-----) [002] d..1 82315.765030: cpu_idle: state=0 cpu_id=2
41178  appEventThread-8881  ( 8858) [000] d..2 82315.765046: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
41179<...>-9006 ( 8943) [004] d..5 82315.765047: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
41180<...>-9006 ( 8943) [004] d..2 82315.765086: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
41181<...>-8874 ( 8858) [004] .... 82315.765099: binder_transaction_received: transaction=1569043
41182<...>-8951 ( 8858) [001] d..2 82315.765105: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41183          <idle>-0     (-----) [001] d..1 82315.765163: cpu_idle: state=0 cpu_id=1
41184  surfaceflinger-8858  ( 8858) [003] d..1 82315.765188: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41185  surfaceflinger-8858  ( 8858) [003] d..2 82315.765208: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41186          <idle>-0     (-----) [002] d.h4 82315.765208: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41187          <idle>-0     (-----) [001] .n.1 82315.765214: cpu_idle: state=4294967295 cpu_id=1
41188          <idle>-0     (-----) [001] d..2 82315.765229: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
41189          <idle>-0     (-----) [002] dnh5 82315.765230: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=002
41190<...>-8874 ( 8858) [004] .... 82315.765243: binder_transaction: transaction=1569044 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
41191<...>-8874 ( 8858) [004] .... 82315.765247: binder_transaction_alloc_buf: transaction=1569044 data_size=0 offsets_size=0
41192<...>-9105 ( 9105) [000] d..3 82315.765248: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
41193<...>-8874 ( 8858) [004] d..2 82315.765249: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
41194          <idle>-0     (-----) [002] .n.1 82315.765257: cpu_idle: state=4294967295 cpu_id=2
41195<...>-8874 ( 8858) [004] d..3 82315.765258: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
41196<...>-8874 ( 8858) [004] .... 82315.765261: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
41197          <idle>-0     (-----) [006] dnh2 82315.765271: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
41198          <idle>-0     (-----) [002] d..2 82315.765271: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41199   sfEventThread-8882  ( 8858) [001] d..2 82315.765273: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41200          <idle>-0     (-----) [006] .n.1 82315.765275: cpu_idle: state=4294967295 cpu_id=6
41201          <idle>-0     (-----) [006] d..2 82315.765281: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
41202          <idle>-0     (-----) [001] d..1 82315.765284: cpu_idle: state=0 cpu_id=1
41203<...>-9105 ( 9105) [000] d..2 82315.765296: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41204<...>-8874 ( 8858) [004] d..2 82315.765299: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
41205<...>-9006 ( 8943) [004] .... 82315.765308: binder_transaction_received: transaction=1569044
41206          <idle>-0     (-----) [000] d..1 82315.765315: cpu_idle: state=0 cpu_id=0
41207<...>-5340 ( 788) [002] d..2 82315.765327: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41208<...>-5340 ( 788) [002] d..3 82315.765349: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41209    RenderThread-9436  ( 9105) [006] d..1 82315.765365: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
41210<...>-5340 ( 788) [002] d..2 82315.765374: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41211          <idle>-0     (-----) [002] d..1 82315.765385: cpu_idle: state=0 cpu_id=2
41212          <idle>-0     (-----) [000] dnh2 82315.765391: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
41213          <idle>-0     (-----) [000] .n.1 82315.765398: cpu_idle: state=4294967295 cpu_id=0
41214<...>-9006 ( 8943) [004] d..2 82315.765407: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
41215          <idle>-0     (-----) [000] d..2 82315.765409: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
41216    RenderThread-9436  ( 9105) [006] .... 82315.765420: binder_transaction: transaction=1569045 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
41217          <idle>-0     (-----) [004] d..1 82315.765423: cpu_idle: state=0 cpu_id=4
41218    RenderThread-9436  ( 9105) [006] .... 82315.765424: binder_transaction_alloc_buf: transaction=1569045 data_size=104 offsets_size=0
41219    RenderThread-9436  ( 9105) [006] d..4 82315.765428: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
41220    RenderThread-9436  ( 9105) [006] dn.5 82315.765443: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
41221    RenderThread-9436  ( 9105) [006] d..2 82315.765449: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
41222<...>-8874 ( 8858) [006] .... 82315.765461: binder_transaction_received: transaction=1569045
41223<...>-9105 ( 9105) [000] d..2 82315.765498: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41224          <idle>-0     (-----) [000] d..1 82315.765512: cpu_idle: state=0 cpu_id=0
41225<...>-8874 ( 8858) [006] .... 82315.765518: binder_transaction: transaction=1569046 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
41226<...>-8874 ( 8858) [006] .... 82315.765521: binder_transaction_alloc_buf: transaction=1569046 data_size=52 offsets_size=8
41227<...>-8874 ( 8858) [006] d..2 82315.765554: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
41228    RenderThread-9436  ( 9105) [006] .... 82315.765564: binder_transaction_received: transaction=1569046
41229  surfaceflinger-8858  ( 8858) [003] ...1 82315.766428: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
41230  surfaceflinger-8858  ( 8858) [003] ...1 82315.766436: tracing_mark_write: E|8858
41231  surfaceflinger-8858  ( 8858) [003] .... 82315.766492: binder_transaction: transaction=1569047 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
41232  surfaceflinger-8858  ( 8858) [003] .... 82315.766497: binder_transaction_alloc_buf: transaction=1569047 data_size=620 offsets_size=112
41233          <idle>-0     (-----) [001] ...1 82315.766505: cpu_idle: state=4294967295 cpu_id=1
41234          <idle>-0     (-----) [001] d..1 82315.766509: cpu_idle: state=0 cpu_id=1
41235  surfaceflinger-8858  ( 8858) [003] ...2 82315.766519: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
41236  surfaceflinger-8858  ( 8858) [003] d..4 82315.766526: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
41237  surfaceflinger-8858  ( 8858) [003] d..5 82315.766546: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
41238          <idle>-0     (-----) [002] .n.1 82315.766552: cpu_idle: state=4294967295 cpu_id=2
41239          <idle>-0     (-----) [002] d..2 82315.766560: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
41240    RenderThread-9436  ( 9105) [006] d..2 82315.766560: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
41241  surfaceflinger-8858  ( 8858) [003] d..2 82315.766567: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41242 [email protected]   (  619) [002] .... 82315.766569: binder_transaction_received: transaction=1569047
41243          <idle>-0     (-----) [006] d..1 82315.766575: cpu_idle: state=0 cpu_id=6
41244<...>-87 ( 87) [003] d..2 82315.766614: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41245 [email protected]   (  619) [002] ...1 82315.766617: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
41246          <idle>-0     (-----) [003] d..1 82315.766632: cpu_idle: state=0 cpu_id=3
41247          <idle>-0     (-----) [006] d.h2 82315.766646: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
41248          <idle>-0     (-----) [006] d.h3 82315.766653: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
41249          <idle>-0     (-----) [006] dnh3 82315.766656: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
41250          <idle>-0     (-----) [006] .n.1 82315.766662: cpu_idle: state=4294967295 cpu_id=6
41251          <idle>-0     (-----) [006] d..2 82315.766670: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
41252          <idle>-0     (-----) [000] d.h3 82315.766748: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
41253 [email protected]   (  619) [002] ...1 82315.766759: tracing_mark_write: B|619|HWCSession::PresentDisplay::
41254          <idle>-0     (-----) [000] dnh4 82315.766766: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
41255          <idle>-0     (-----) [000] .n.1 82315.766779: cpu_idle: state=4294967295 cpu_id=0
41256          <idle>-0     (-----) [000] d..2 82315.766789: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
41257    RenderThread-9436  ( 9105) [006] .... 82315.766820: binder_transaction: transaction=1569048 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
41258    RenderThread-9436  ( 9105) [006] .... 82315.766825: binder_transaction_alloc_buf: transaction=1569048 data_size=192 offsets_size=8
41259    RenderThread-9436  ( 9105) [006] d..4 82315.766832: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
41260    RenderThread-9436  ( 9105) [006] dn.5 82315.766842: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
41261    RenderThread-9436  ( 9105) [006] d..2 82315.766849: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
41262 kgsl_worker_thr-258   (  258) [000] d..2 82315.766849: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41263<...>-8874 ( 8858) [006] .... 82315.766860: binder_transaction_received: transaction=1569048
41264 kgsl_worker_thr-258   (  258) [000] d..3 82315.766868: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41265 kgsl_worker_thr-258   (  258) [000] d..2 82315.766885: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
41266  kworker/u16:15-1311  ( 1311) [000] d..2 82315.766930: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41267          <idle>-0     (-----) [000] d..1 82315.766944: cpu_idle: state=0 cpu_id=0
41268<...>-8874 ( 8858) [006] .... 82315.766962: binder_transaction: transaction=1569049 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
41269<...>-8874 ( 8858) [006] .... 82315.766966: binder_transaction_alloc_buf: transaction=1569049 data_size=68 offsets_size=0
41270<...>-8874 ( 8858) [006] d..2 82315.766995: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
41271    RenderThread-9436  ( 9105) [006] .... 82315.767006: binder_transaction_received: transaction=1569049
41272    RenderThread-9436  ( 9105) [006] d..2 82315.767072: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
41273          <idle>-0     (-----) [006] d..1 82315.767086: cpu_idle: state=0 cpu_id=6
41274 [email protected]   (  619) [002] d.h3 82315.767108: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41275 [email protected]   (  619) [002] d.h4 82315.767135: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41276 [email protected]   (  619) [002] ...1 82315.767527: tracing_mark_write: B|619|HWDeviceDRM::Validate::
41277 [email protected]   (  619) [002] d.h3 82315.767585: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=002
41278 [email protected]   (  619) [002] d.h4 82315.767616: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
41279          <idle>-0     (-----) [000] .n.1 82315.767621: cpu_idle: state=4294967295 cpu_id=0
41280          <idle>-0     (-----) [000] d..2 82315.767632: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41281<...>-5340 ( 788) [000] d..2 82315.767692: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41282<...>-5340 ( 788) [000] d..3 82315.767711: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41283          <idle>-0     (-----) [003] .n.1 82315.767718: cpu_idle: state=4294967295 cpu_id=3
41284          <idle>-0     (-----) [003] d..2 82315.767730: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41285<...>-5340 ( 788) [000] d..2 82315.767737: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41286          <idle>-0     (-----) [000] d..1 82315.767753: cpu_idle: state=0 cpu_id=0
41287<...>-87 ( 87) [003] d..2 82315.767766: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41288          <idle>-0     (-----) [003] d..1 82315.767775: cpu_idle: state=0 cpu_id=3
41289 [email protected]   (  619) [002] ...1 82315.768182: tracing_mark_write: E|619
41290 [email protected]   (  619) [002] ...1 82315.768354: tracing_mark_write: B|619|HWDeviceDRM::Commit::
41291 [email protected]   (  619) [002] ...1 82315.768366: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
41292 [email protected]   (  619) [002] d.s1 82315.768481: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
41293 [email protected]   (  619) [002] d.s2 82315.768503: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
41294 [email protected]   (  619) [002] d.s2 82315.768509: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41295 [email protected]   (  619) [002] d.s3 82315.768523: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41296          <idle>-0     (-----) [000] .n.1 82315.768530: cpu_idle: state=4294967295 cpu_id=0
41297          <idle>-0     (-----) [000] d..2 82315.768545: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
41298  kworker/u16:15-1311  ( 1311) [000] d..2 82315.768721: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41299          <idle>-0     (-----) [000] d..1 82315.768734: cpu_idle: state=0 cpu_id=0
41300 [email protected]   (  619) [002] d..2 82315.769033: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41301 [email protected]   (  619) [002] d..3 82315.769056: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41302          <idle>-0     (-----) [000] .n.1 82315.769062: cpu_idle: state=4294967295 cpu_id=0
41303          <idle>-0     (-----) [000] d..2 82315.769072: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
41304 [email protected]   (  619) [002] d.h3 82315.769083: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
41305 [email protected]   (  619) [002] d.h4 82315.769110: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41306          <idle>-0     (-----) [001] .n.1 82315.769115: cpu_idle: state=4294967295 cpu_id=1
41307          <idle>-0     (-----) [001] d..2 82315.769128: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41308 [email protected]   (  619) [002] ...1 82315.769229: tracing_mark_write: E|619
41309 [email protected]   (  619) [002] ...1 82315.769235: tracing_mark_write: E|619
41310 [email protected]   (  619) [002] ...1 82315.769289: tracing_mark_write: E|619
41311 [email protected]   (  619) [002] ...1 82315.769339: tracing_mark_write: E|619
41312 [email protected]   (  619) [002] .... 82315.769363: binder_transaction: transaction=1569050 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
41313 [email protected]   (  619) [002] .... 82315.769368: binder_transaction_alloc_buf: transaction=1569050 data_size=736 offsets_size=144
41314 [email protected]   (  619) [002] d..2 82315.769390: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
41315 [email protected]   (  619) [002] d..3 82315.769408: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
41316          <idle>-0     (-----) [003] .n.1 82315.769412: cpu_idle: state=4294967295 cpu_id=3
41317 [email protected]   (  619) [002] .... 82315.769412: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
41318          <idle>-0     (-----) [003] d..2 82315.769423: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
41319  surfaceflinger-8858  ( 8858) [003] .... 82315.769432: binder_transaction_received: transaction=1569050
41320<...>-5340 ( 788) [001] d..2 82315.769463: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41321<...>-5340 ( 788) [001] d..3 82315.769487: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41322 [email protected]   (  619) [002] d..2 82315.769494: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
41323<...>-5340 ( 788) [001] d..2 82315.769514: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41324     rcu_preempt-7     (    7) [002] d..2 82315.769518: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41325          <idle>-0     (-----) [001] d..1 82315.769532: cpu_idle: state=0 cpu_id=1
41326<...>-86 ( 86) [002] d..2 82315.769581: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41327          <idle>-0     (-----) [002] d..1 82315.769598: cpu_idle: state=0 cpu_id=2
41328  surfaceflinger-8858  ( 8858) [003] d..2 82315.769894: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41329<...>-87 ( 87) [003] d..2 82315.769943: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41330          <idle>-0     (-----) [003] d..1 82315.769960: cpu_idle: state=0 cpu_id=3
41331          <idle>-0     (-----) [002] d.h4 82315.770431: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41332          <idle>-0     (-----) [002] dnh5 82315.770443: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41333          <idle>-0     (-----) [002] .n.1 82315.770452: cpu_idle: state=4294967295 cpu_id=2
41334          <idle>-0     (-----) [002] d..2 82315.770464: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41335<...>-86 ( 86) [002] d..2 82315.770498: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41336          <idle>-0     (-----) [002] d..1 82315.770508: cpu_idle: state=0 cpu_id=2
41337          <idle>-0     (-----) [001] ...1 82315.770756: cpu_idle: state=4294967295 cpu_id=1
41338          <idle>-0     (-----) [001] d..1 82315.770760: cpu_idle: state=0 cpu_id=1
41339 crtc_commit:111-321   (  321) [000] d..2 82315.770882: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
41340          <idle>-0     (-----) [000] d..1 82315.770900: cpu_idle: state=0 cpu_id=0
41341          <idle>-0     (-----) [002] d.h4 82315.770916: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41342          <idle>-0     (-----) [002] d.h5 82315.770932: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41343          <idle>-0     (-----) [001] .n.1 82315.770936: cpu_idle: state=4294967295 cpu_id=1
41344          <idle>-0     (-----) [001] d..2 82315.770949: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41345          <idle>-0     (-----) [002] ...1 82315.770960: cpu_idle: state=4294967295 cpu_id=2
41346          <idle>-0     (-----) [002] d..1 82315.770965: cpu_idle: state=0 cpu_id=2
41347<...>-5340 ( 788) [001] d..2 82315.770996: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41348<...>-5340 ( 788) [001] d..3 82315.771013: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41349          <idle>-0     (-----) [003] .n.1 82315.771019: cpu_idle: state=4294967295 cpu_id=3
41350          <idle>-0     (-----) [003] d..2 82315.771031: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41351<...>-5340 ( 788) [001] d..2 82315.771038: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41352          <idle>-0     (-----) [001] d..1 82315.771051: cpu_idle: state=0 cpu_id=1
41353<...>-87 ( 87) [003] d..2 82315.771068: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41354          <idle>-0     (-----) [003] d..1 82315.771079: cpu_idle: state=0 cpu_id=3
41355          <idle>-0     (-----) [002] d.h4 82315.771093: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41356          <idle>-0     (-----) [002] dnh5 82315.771101: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41357          <idle>-0     (-----) [002] .n.1 82315.771108: cpu_idle: state=4294967295 cpu_id=2
41358          <idle>-0     (-----) [002] d..2 82315.771119: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41359<...>-86 ( 86) [002] d..2 82315.771153: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41360          <idle>-0     (-----) [002] d..1 82315.771163: cpu_idle: state=0 cpu_id=2
41361          <idle>-0     (-----) [002] d.h4 82315.771375: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41362          <idle>-0     (-----) [002] d.h5 82315.771389: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41363          <idle>-0     (-----) [001] .n.1 82315.771394: cpu_idle: state=4294967295 cpu_id=1
41364          <idle>-0     (-----) [001] d..2 82315.771406: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41365          <idle>-0     (-----) [002] ...1 82315.771415: cpu_idle: state=4294967295 cpu_id=2
41366          <idle>-0     (-----) [002] d..1 82315.771420: cpu_idle: state=0 cpu_id=2
41367<...>-5340 ( 788) [001] d..2 82315.771445: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41368<...>-5340 ( 788) [001] d..3 82315.771462: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41369          <idle>-0     (-----) [003] .n.1 82315.771467: cpu_idle: state=4294967295 cpu_id=3
41370          <idle>-0     (-----) [003] d..2 82315.771477: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41371<...>-5340 ( 788) [001] d..2 82315.771484: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41372          <idle>-0     (-----) [001] d..1 82315.771497: cpu_idle: state=0 cpu_id=1
41373<...>-87 ( 87) [003] d..2 82315.771512: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41374          <idle>-0     (-----) [003] d..1 82315.771522: cpu_idle: state=0 cpu_id=3
41375          <idle>-0     (-----) [002] d.h4 82315.772413: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41376          <idle>-0     (-----) [002] dnh5 82315.772428: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41377          <idle>-0     (-----) [002] dnh3 82315.772512: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
41378          <idle>-0     (-----) [000] d.h2 82315.772517: sched_waking: comm=queued-work-loo pid=9203 prio=118 target_cpu=000
41379          <idle>-0     (-----) [002] dnh4 82315.772529: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
41380          <idle>-0     (-----) [003] .n.1 82315.772534: cpu_idle: state=4294967295 cpu_id=3
41381          <idle>-0     (-----) [002] .n.1 82315.772535: cpu_idle: state=4294967295 cpu_id=2
41382          <idle>-0     (-----) [000] dnh3 82315.772541: sched_wakeup: comm=queued-work-loo pid=9203 prio=118 target_cpu=000
41383          <idle>-0     (-----) [003] d..2 82315.772545: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
41384          <idle>-0     (-----) [002] d..2 82315.772550: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41385          <idle>-0     (-----) [000] .n.1 82315.772552: cpu_idle: state=4294967295 cpu_id=0
41386          <idle>-0     (-----) [000] d..2 82315.772564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=9203 next_prio=118
41387         sugov:0-576   (  576) [003] .... 82315.772581: clk_set_rate: pwrcl_clk 902400000
41388<...>-86 ( 86) [002] d..2 82315.772587: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41389          <idle>-0     (-----) [002] d..2 82315.772591: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
41390         sugov:0-576   (  576) [003] .... 82315.772598: clk_set_rate: cpu3_pwrcl_clk 1056000000
41391          <idle>-0     (-----) [002] dn.3 82315.772600: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
41392         sugov:0-576   (  576) [003] .... 82315.772608: clk_set_rate: cpu2_pwrcl_clk 1056000000
41393          <idle>-0     (-----) [002] d..2 82315.772608: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
41394         sugov:0-576   (  576) [003] .... 82315.772615: clk_set_rate: cpu1_pwrcl_clk 1056000000
41395         sugov:0-576   (  576) [003] .... 82315.772623: clk_set_rate: cpu0_pwrcl_clk 902400000
41396     ksoftirqd/2-26    (   26) [002] d..2 82315.772630: 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
41397          <idle>-0     (-----) [002] d..1 82315.772642: cpu_idle: state=0 cpu_id=2
41398         sugov:0-576   (  576) [003] .... 82315.772737: cpu_frequency: state=902400 cpu_id=0
41399         sugov:0-576   (  576) [003] .... 82315.772760: cpu_frequency: state=902400 cpu_id=1
41400         sugov:0-576   (  576) [003] .... 82315.772764: cpu_frequency: state=902400 cpu_id=2
41401         sugov:0-576   (  576) [003] .... 82315.772768: cpu_frequency: state=902400 cpu_id=3
41402         sugov:0-576   (  576) [003] d..2 82315.772799: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41403          <idle>-0     (-----) [002] d.h4 82315.772804: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41404          <idle>-0     (-----) [003] d..1 82315.772813: cpu_idle: state=0 cpu_id=3
41405          <idle>-0     (-----) [002] d.h5 82315.772822: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41406          <idle>-0     (-----) [001] .n.1 82315.772829: cpu_idle: state=4294967295 cpu_id=1
41407          <idle>-0     (-----) [001] d..2 82315.772843: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41408          <idle>-0     (-----) [002] ...1 82315.772852: cpu_idle: state=4294967295 cpu_id=2
41409          <idle>-0     (-----) [002] d..1 82315.772857: cpu_idle: state=0 cpu_id=2
41410<...>-5340 ( 788) [001] d..2 82315.772881: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41411<...>-5340 ( 788) [001] d..3 82315.772901: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41412          <idle>-0     (-----) [003] .n.1 82315.772907: cpu_idle: state=4294967295 cpu_id=3
41413          <idle>-0     (-----) [003] d..2 82315.772919: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41414<...>-5340 ( 788) [001] d..2 82315.772926: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41415          <idle>-0     (-----) [001] d..1 82315.772940: cpu_idle: state=0 cpu_id=1
41416<...>-87 ( 87) [003] d..2 82315.772962: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41417<...>-9203 ( 9090) [000] d..2 82315.772964: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
41418          <idle>-0     (-----) [003] d..1 82315.772975: cpu_idle: state=0 cpu_id=3
41419<...>-9203 ( 9090) [000] d..3 82315.773022: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
41420<...>-9203 ( 9090) [000] d..2 82315.773167: sched_switch: prev_comm=queued-work-loo prev_pid=9203 prev_prio=118 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
41421         rcuop/0-10    (   10) [000] d..2 82315.773201: 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
41422          <idle>-0     (-----) [000] d..1 82315.773220: cpu_idle: state=0 cpu_id=0
41423          <idle>-0     (-----) [002] d.h4 82315.773818: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41424          <idle>-0     (-----) [002] dnh5 82315.773828: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41425          <idle>-0     (-----) [002] .n.1 82315.773846: cpu_idle: state=4294967295 cpu_id=2
41426          <idle>-0     (-----) [002] d..2 82315.773855: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41427<...>-86 ( 86) [002] d..2 82315.773892: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41428          <idle>-0     (-----) [002] d..1 82315.773900: cpu_idle: state=0 cpu_id=2
41429          <idle>-0     (-----) [002] d.h4 82315.774202: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41430          <idle>-0     (-----) [002] d.h5 82315.774218: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41431          <idle>-0     (-----) [001] .n.1 82315.774224: cpu_idle: state=4294967295 cpu_id=1
41432          <idle>-0     (-----) [001] d..2 82315.774236: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41433          <idle>-0     (-----) [002] ...1 82315.774247: cpu_idle: state=4294967295 cpu_id=2
41434          <idle>-0     (-----) [002] d..1 82315.774252: cpu_idle: state=0 cpu_id=2
41435<...>-5340 ( 788) [001] d..2 82315.774275: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41436<...>-5340 ( 788) [001] d..3 82315.774293: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41437          <idle>-0     (-----) [003] .n.1 82315.774298: cpu_idle: state=4294967295 cpu_id=3
41438          <idle>-0     (-----) [003] d..2 82315.774309: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41439<...>-5340 ( 788) [001] d..2 82315.774317: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41440          <idle>-0     (-----) [001] d..1 82315.774334: cpu_idle: state=0 cpu_id=1
41441<...>-87 ( 87) [003] d..2 82315.774348: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41442          <idle>-0     (-----) [003] d..1 82315.774357: cpu_idle: state=0 cpu_id=3
41443          <idle>-0     (-----) [002] d.s2 82315.775136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
41444          <idle>-0     (-----) [002] dns3 82315.775154: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
41445          <idle>-0     (-----) [002] dns3 82315.775160: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41446          <idle>-0     (-----) [002] dns4 82315.775192: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
41447          <idle>-0     (-----) [002] dnH4 82315.775219: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41448          <idle>-0     (-----) [002] dnH5 82315.775231: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41449          <idle>-0     (-----) [002] .n.1 82315.775249: cpu_idle: state=4294967295 cpu_id=2
41450          <idle>-0     (-----) [002] d..2 82315.775259: 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
41451     rcu_preempt-7     (    7) [002] d..2 82315.775271: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
41452     rcu_preempt-7     (    7) [002] d..3 82315.775305: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
41453     rcu_preempt-7     (    7) [002] d..2 82315.775324: 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
41454         rcuop/2-29    (   29) [002] d..2 82315.775331: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
41455         rcuop/2-29    (   29) [002] d..3 82315.775362: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
41456         rcuop/2-29    (   29) [002] d..2 82315.775373: 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
41457         rcuop/3-37    (   37) [002] d..2 82315.775392: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41458<...>-86 ( 86) [002] d..2 82315.775419: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
41459  kworker/u16:15-1311  ( 1311) [002] d.h4 82315.775622: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41460  kworker/u16:15-1311  ( 1311) [002] d.h5 82315.775639: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41461          <idle>-0     (-----) [001] .n.1 82315.775665: cpu_idle: state=4294967295 cpu_id=1
41462          <idle>-0     (-----) [001] d..2 82315.775678: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41463  kworker/u16:15-1311  ( 1311) [002] d..2 82315.775709: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41464<...>-5340 ( 788) [001] d..2 82315.775718: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41465          <idle>-0     (-----) [002] d..1 82315.775727: cpu_idle: state=0 cpu_id=2
41466<...>-5340 ( 788) [001] d..3 82315.775736: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41467          <idle>-0     (-----) [003] .n.1 82315.775741: cpu_idle: state=4294967295 cpu_id=3
41468          <idle>-0     (-----) [003] d..2 82315.775754: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41469<...>-5340 ( 788) [001] d..2 82315.775765: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41470          <idle>-0     (-----) [001] d..1 82315.775780: cpu_idle: state=0 cpu_id=1
41471<...>-87 ( 87) [003] d..2 82315.775794: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41472          <idle>-0     (-----) [003] d..1 82315.775803: cpu_idle: state=0 cpu_id=3
41473          <idle>-0     (-----) [002] d.h4 82315.776989: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41474          <idle>-0     (-----) [002] dnh5 82315.777001: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41475          <idle>-0     (-----) [002] .n.1 82315.777011: cpu_idle: state=4294967295 cpu_id=2
41476          <idle>-0     (-----) [002] d..2 82315.777024: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41477<...>-86 ( 86) [002] d..2 82315.777064: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41478          <idle>-0     (-----) [002] d..1 82315.777075: cpu_idle: state=0 cpu_id=2
41479          <idle>-0     (-----) [002] d.h4 82315.777501: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41480          <idle>-0     (-----) [002] d.h5 82315.777517: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41481          <idle>-0     (-----) [001] .n.1 82315.777524: cpu_idle: state=4294967295 cpu_id=1
41482          <idle>-0     (-----) [001] d..2 82315.777536: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41483          <idle>-0     (-----) [002] ...1 82315.777549: cpu_idle: state=4294967295 cpu_id=2
41484          <idle>-0     (-----) [002] d..1 82315.777554: cpu_idle: state=0 cpu_id=2
41485<...>-5340 ( 788) [001] d..2 82315.777580: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41486<...>-5340 ( 788) [001] d..3 82315.777599: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41487          <idle>-0     (-----) [003] .n.1 82315.777604: cpu_idle: state=4294967295 cpu_id=3
41488          <idle>-0     (-----) [003] d..2 82315.777615: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41489<...>-5340 ( 788) [001] d..2 82315.777625: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41490          <idle>-0     (-----) [001] d..1 82315.777641: cpu_idle: state=0 cpu_id=1
41491<...>-87 ( 87) [003] d..2 82315.777658: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41492          <idle>-0     (-----) [003] d..1 82315.777667: cpu_idle: state=0 cpu_id=3
41493          <idle>-0     (-----) [000] d.h5 82315.777781: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41494          <idle>-0     (-----) [000] d.h6 82315.777806: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41495          <idle>-0     (-----) [000] d.h5 82315.777811: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41496          <idle>-0     (-----) [001] .n.1 82315.777813: cpu_idle: state=4294967295 cpu_id=1
41497          <idle>-0     (-----) [000] dnh6 82315.777820: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41498          <idle>-0     (-----) [001] d..2 82315.777824: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
41499          <idle>-0     (-----) [000] .n.1 82315.777836: cpu_idle: state=4294967295 cpu_id=0
41500          <idle>-0     (-----) [000] d..2 82315.777850: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
41501  crtc_event:111-322   (  322) [001] d..2 82315.777864: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41502          <idle>-0     (-----) [001] d..1 82315.777876: cpu_idle: state=0 cpu_id=1
41503 crtc_commit:111-321   (  321) [000] d..2 82315.778024: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
41504          <idle>-0     (-----) [000] d..1 82315.778036: cpu_idle: state=0 cpu_id=0
41505          <idle>-0     (-----) [000] d.s3 82315.778473: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41506          <idle>-0     (-----) [000] d.s4 82315.778489: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41507          <idle>-0     (-----) [001] .n.1 82315.778496: cpu_idle: state=4294967295 cpu_id=1
41508          <idle>-0     (-----) [000] d.s3 82315.778497: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
41509          <idle>-0     (-----) [001] d..2 82315.778507: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
41510          <idle>-0     (-----) [000] dns4 82315.778532: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41511  crtc_event:111-322   (  322) [001] d..2 82315.778544: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41512          <idle>-0     (-----) [000] .n.1 82315.778554: cpu_idle: state=4294967295 cpu_id=0
41513          <idle>-0     (-----) [001] d..1 82315.778555: cpu_idle: state=0 cpu_id=1
41514          <idle>-0     (-----) [000] d..2 82315.778565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
41515  kworker/u16:15-1311  ( 1311) [000] d..2 82315.778678: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41516          <idle>-0     (-----) [000] d..1 82315.778695: cpu_idle: state=0 cpu_id=0
41517          <idle>-0     (-----) [002] d.h4 82315.778900: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41518          <idle>-0     (-----) [002] dnh5 82315.778910: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41519          <idle>-0     (-----) [002] .n.1 82315.778917: cpu_idle: state=4294967295 cpu_id=2
41520          <idle>-0     (-----) [002] d..2 82315.778931: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41521<...>-86 ( 86) [002] d..2 82315.778970: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41522          <idle>-0     (-----) [002] d..1 82315.778979: cpu_idle: state=0 cpu_id=2
41523          <idle>-0     (-----) [002] d.h4 82315.779475: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41524          <idle>-0     (-----) [002] d.h5 82315.779491: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41525          <idle>-0     (-----) [001] .n.1 82315.779497: cpu_idle: state=4294967295 cpu_id=1
41526          <idle>-0     (-----) [001] d..2 82315.779509: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41527          <idle>-0     (-----) [002] ...1 82315.779522: cpu_idle: state=4294967295 cpu_id=2
41528          <idle>-0     (-----) [002] d..1 82315.779527: cpu_idle: state=0 cpu_id=2
41529<...>-5340 ( 788) [001] d..2 82315.779552: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41530<...>-5340 ( 788) [001] d..3 82315.779570: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41531          <idle>-0     (-----) [003] .n.1 82315.779576: cpu_idle: state=4294967295 cpu_id=3
41532          <idle>-0     (-----) [003] d..2 82315.779589: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41533<...>-5340 ( 788) [001] d..2 82315.779596: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41534          <idle>-0     (-----) [001] d..1 82315.779613: cpu_idle: state=0 cpu_id=1
41535<...>-87 ( 87) [003] d..2 82315.779630: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41536          <idle>-0     (-----) [003] d..1 82315.779639: cpu_idle: state=0 cpu_id=3
41537          <idle>-0     (-----) [000] d.h5 82315.780102: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41538          <idle>-0     (-----) [000] dnh6 82315.780115: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41539          <idle>-0     (-----) [000] .n.1 82315.780129: cpu_idle: state=4294967295 cpu_id=0
41540          <idle>-0     (-----) [000] d..2 82315.780140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
41541 crtc_commit:111-321   (  321) [000] d..2 82315.780219: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41542          <idle>-0     (-----) [000] d..1 82315.780234: cpu_idle: state=0 cpu_id=0
41543          <idle>-0     (-----) [000] d.h5 82315.780402: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41544          <idle>-0     (-----) [000] d.h6 82315.780419: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41545          <idle>-0     (-----) [001] .n.1 82315.780426: cpu_idle: state=4294967295 cpu_id=1
41546          <idle>-0     (-----) [001] d..2 82315.780436: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
41547          <idle>-0     (-----) [000] ...1 82315.780438: cpu_idle: state=4294967295 cpu_id=0
41548          <idle>-0     (-----) [000] d..1 82315.780443: cpu_idle: state=0 cpu_id=0
41549  crtc_event:111-322   (  322) [001] d..2 82315.780465: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41550          <idle>-0     (-----) [001] d..1 82315.780476: cpu_idle: state=0 cpu_id=1
41551          <idle>-0     (-----) [003] d.h2 82315.780761: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
41552          <idle>-0     (-----) [003] dnh3 82315.780781: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
41553          <idle>-0     (-----) [002] d.h4 82315.780784: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41554          <idle>-0     (-----) [003] .n.1 82315.780791: cpu_idle: state=4294967295 cpu_id=3
41555          <idle>-0     (-----) [002] dnh5 82315.780794: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41556          <idle>-0     (-----) [003] d..2 82315.780800: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
41557          <idle>-0     (-----) [002] .n.1 82315.780802: cpu_idle: state=4294967295 cpu_id=2
41558          <idle>-0     (-----) [002] d..2 82315.780811: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41559        DispSync-8879  ( 8858) [003] d..1 82315.780826: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41560        DispSync-8879  ( 8858) [003] d..2 82315.780842: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41561          <idle>-0     (-----) [001] .n.1 82315.780847: cpu_idle: state=4294967295 cpu_id=1
41562<...>-86 ( 86) [002] d..2 82315.780848: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41563        DispSync-8879  ( 8858) [003] d..1 82315.780849: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
41564          <idle>-0     (-----) [002] d..1 82315.780857: cpu_idle: state=0 cpu_id=2
41565          <idle>-0     (-----) [001] d..2 82315.780857: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
41566        DispSync-8879  ( 8858) [003] d..2 82315.780864: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
41567          <idle>-0     (-----) [000] .n.1 82315.780868: cpu_idle: state=4294967295 cpu_id=0
41568          <idle>-0     (-----) [000] d..2 82315.780880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
41569        DispSync-8879  ( 8858) [003] d..2 82315.780901: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41570          <idle>-0     (-----) [003] d..1 82315.780915: cpu_idle: state=0 cpu_id=3
41571   sfEventThread-8882  ( 8858) [001] d..3 82315.780917: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
41572          <idle>-0     (-----) [004] dnh2 82315.780948: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
41573   sfEventThread-8882  ( 8858) [001] d..3 82315.780950: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
41574          <idle>-0     (-----) [004] .n.1 82315.780953: cpu_idle: state=4294967295 cpu_id=4
41575  appEventThread-8881  ( 8858) [000] d..3 82315.780954: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
41576          <idle>-0     (-----) [004] d..2 82315.780963: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
41577   sfEventThread-8882  ( 8858) [001] d..4 82315.780969: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
41578          <idle>-0     (-----) [003] .n.1 82315.780975: cpu_idle: state=4294967295 cpu_id=3
41579          <idle>-0     (-----) [003] d..2 82315.780985: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
41580  appEventThread-8881  ( 8858) [000] d..4 82315.780987: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
41581          <idle>-0     (-----) [002] .n.1 82315.780991: cpu_idle: state=4294967295 cpu_id=2
41582          <idle>-0     (-----) [002] d..2 82315.781001: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
41583   sfEventThread-8882  ( 8858) [001] d..2 82315.781007: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41584          <idle>-0     (-----) [001] d..1 82315.781024: cpu_idle: state=0 cpu_id=1
41585  appEventThread-8881  ( 8858) [000] d..2 82315.781033: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41586          <idle>-0     (-----) [000] d..1 82315.781051: cpu_idle: state=0 cpu_id=0
41587<...>-9006 ( 8943) [004] .... 82315.781226: binder_transaction: transaction=1569051 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
41588<...>-9006 ( 8943) [004] .... 82315.781232: binder_transaction_alloc_buf: transaction=1569051 data_size=80 offsets_size=0
41589<...>-9006 ( 8943) [004] d..4 82315.781237: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
41590<...>-9105 ( 9105) [002] d.h3 82315.781275: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41591<...>-9006 ( 8943) [004] d.h5 82315.781299: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
41592          <idle>-0     (-----) [000] dnh2 82315.781303: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
41593          <idle>-0     (-----) [000] .n.1 82315.781311: cpu_idle: state=4294967295 cpu_id=0
41594<...>-9105 ( 9105) [002] d.h4 82315.781316: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41595          <idle>-0     (-----) [001] .n.1 82315.781322: cpu_idle: state=4294967295 cpu_id=1
41596          <idle>-0     (-----) [000] d..2 82315.781323: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
41597          <idle>-0     (-----) [001] dn.2 82315.781332: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
41598<...>-8874 ( 8858) [000] .... 82315.781341: binder_transaction_received: transaction=1569051
41599          <idle>-0     (-----) [001] d..2 82315.781343: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
41600         sugov:0-576   (  576) [001] .... 82315.781373: clk_set_rate: pwrcl_clk 979200000
41601<...>-8874 ( 8858) [000] d..1 82315.781381: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41602         sugov:0-576   (  576) [001] .... 82315.781385: clk_set_rate: cpu3_pwrcl_clk 902400000
41603         sugov:0-576   (  576) [001] .... 82315.781394: clk_set_rate: cpu2_pwrcl_clk 902400000
41604         sugov:0-576   (  576) [001] .... 82315.781403: clk_set_rate: cpu1_pwrcl_clk 902400000
41605<...>-8874 ( 8858) [000] d..2 82315.781409: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
41606         sugov:0-576   (  576) [001] .... 82315.781411: clk_set_rate: cpu0_pwrcl_clk 979200000
41607         sugov:0-576   (  576) [001] .... 82315.781420: cpu_frequency: state=979200 cpu_id=0
41608<...>-9105 ( 9105) [002] d..2 82315.781425: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
41609         sugov:0-576   (  576) [001] .... 82315.781438: cpu_frequency: state=979200 cpu_id=1
41610         sugov:0-576   (  576) [001] .... 82315.781442: cpu_frequency: state=979200 cpu_id=2
41611         sugov:0-576   (  576) [001] .... 82315.781446: cpu_frequency: state=979200 cpu_id=3
41612         sugov:0-576   (  576) [001] d..2 82315.781469: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41613   sfEventThread-8882  ( 8858) [002] d..2 82315.781481: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
41614<...>-8874 ( 8858) [000] d..2 82315.781483: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41615          <idle>-0     (-----) [000] d..1 82315.781500: cpu_idle: state=0 cpu_id=0
41616<...>-9006 ( 8943) [004] .... 82315.781506: binder_transaction: transaction=1569052 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
41617<...>-9006 ( 8943) [004] .... 82315.781510: binder_transaction_alloc_buf: transaction=1569052 data_size=988 offsets_size=48
41618<...>-5340 ( 788) [001] d..2 82315.781526: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41619<...>-9006 ( 8943) [004] ...2 82315.781530: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
41620<...>-9105 ( 9105) [002] .... 82315.781531: binder_transaction: transaction=1569053 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
41621<...>-9006 ( 8943) [004] d..4 82315.781534: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=000
41622<...>-9105 ( 9105) [002] .... 82315.781535: binder_transaction_alloc_buf: transaction=1569053 data_size=80 offsets_size=0
41623<...>-9006 ( 8943) [004] d..5 82315.781556: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
41624<...>-9105 ( 9105) [002] d..4 82315.781590: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
41625<...>-5340 ( 788) [001] d..3 82315.781595: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
41626<...>-9105 ( 9105) [002] d..5 82315.781622: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
41627          <idle>-0     (-----) [000] .n.1 82315.781628: cpu_idle: state=4294967295 cpu_id=0
41628<...>-5340 ( 788) [001] d..2 82315.781630: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41629<...>-9006 ( 8943) [004] d..2 82315.781634: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
41630          <idle>-0     (-----) [000] d..2 82315.781640: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
41631          <idle>-0     (-----) [001] d..1 82315.781647: cpu_idle: state=0 cpu_id=1
41632<...>-8951 ( 8858) [000] .... 82315.781649: binder_transaction_received: transaction=1569053
41633<...>-8874 ( 8858) [004] .... 82315.781650: binder_transaction_received: transaction=1569052
41634<...>-9105 ( 9105) [002] d..3 82315.781672: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
41635<...>-8951 ( 8858) [000] d..1 82315.781686: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
41636  surfaceflinger-8858  ( 8858) [003] d..1 82315.781687: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
41637<...>-9105 ( 9105) [002] d..4 82315.781712: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
41638          <idle>-0     (-----) [001] .n.1 82315.781719: cpu_idle: state=4294967295 cpu_id=1
41639<...>-8951 ( 8858) [000] d..2 82315.781725: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
41640  surfaceflinger-8858  ( 8858) [003] d..2 82315.781734: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
41641          <idle>-0     (-----) [001] d..2 82315.781742: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
41642<...>-8874 ( 8858) [004] d..2 82315.781799: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
41643<...>-9105 ( 9105) [002] d.s2 82315.781830: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
41644<...>-8951 ( 8858) [000] d..2 82315.781831: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=8882 next_prio=97
41645  surfaceflinger-8858  ( 8858) [003] d..1 82315.781844: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
41646          <idle>-0     (-----) [004] d..1 82315.781848: cpu_idle: state=0 cpu_id=4
41647          <idle>-0     (-----) [004] dnh2 82315.781868: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
41648<...>-9105 ( 9105) [002] d.s3 82315.781869: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
41649          <idle>-0     (-----) [004] .n.1 82315.781872: cpu_idle: state=4294967295 cpu_id=4
41650          <idle>-0     (-----) [004] d..2 82315.781881: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
41651  appEventThread-8881  ( 8858) [001] d..2 82315.781897: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
41652<...>-8874 ( 8858) [004] .... 82315.781904: binder_transaction: transaction=1569054 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
41653<...>-8874 ( 8858) [004] .... 82315.781907: binder_transaction_alloc_buf: transaction=1569054 data_size=0 offsets_size=0
41654<...>-8874 ( 8858) [004] d..2 82315.781909: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
41655<...>-8874 ( 8858) [004] d..3 82315.781916: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
41656   sfEventThread-8882  ( 8858) [000] d..2 82315.781918: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
41657<...>-8874 ( 8858) [004] .... 82315.781919: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
41658     rcu_preempt-7     (    7) [000] d..2 82315.781952: 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
41659<...>-8874 ( 8858) [004] d..2 82315.781957: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
41660    RenderThread-9436  ( 9105) [001] d..2 82315.781959: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41661<...>-9006 ( 8943) [004] .... 82315.781967: binder_transaction_received: transaction=1569054
41662          <idle>-0     (-----) [000] d..1 82315.781967: cpu_idle: state=0 cpu_id=0
41663          <idle>-0     (-----) [001] d..1 82315.781979: cpu_idle: state=0 cpu_id=1
41664<...>-9006 ( 8943) [004] d..2 82315.782063: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
41665          <idle>-0     (-----) [004] d..1 82315.782077: cpu_idle: state=0 cpu_id=4
41666<...>-9105 ( 9105) [002] d..3 82315.782235: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
41667<...>-9105 ( 9105) [002] d..4 82315.782257: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
41668          <idle>-0     (-----) [001] .n.1 82315.782264: cpu_idle: state=4294967295 cpu_id=1
41669          <idle>-0     (-----) [001] d..2 82315.782276: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
41670<...>-9105 ( 9105) [002] d..2 82315.782280: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41671<...>-87 ( 87) [002] d..2 82315.782328: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41672          <idle>-0     (-----) [002] d..1 82315.782348: cpu_idle: state=0 cpu_id=2
41673    RenderThread-9436  ( 9105) [001] d..1 82315.782425: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
41674    RenderThread-9436  ( 9105) [001] d..2 82315.782445: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
41675          <idle>-0     (-----) [002] .n.1 82315.782453: cpu_idle: state=4294967295 cpu_id=2
41676          <idle>-0     (-----) [002] d..2 82315.782465: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
41677    RenderThread-9436  ( 9105) [001] .... 82315.782519: binder_transaction: transaction=1569055 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
41678    RenderThread-9436  ( 9105) [001] .... 82315.782524: binder_transaction_alloc_buf: transaction=1569055 data_size=104 offsets_size=0
41679    RenderThread-9436  ( 9105) [001] d..4 82315.782530: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
41680<...>-9105 ( 9105) [002] d..2 82315.782550: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41681    RenderThread-9436  ( 9105) [001] dn.5 82315.782555: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
41682          <idle>-0     (-----) [002] d..1 82315.782566: cpu_idle: state=0 cpu_id=2
41683    RenderThread-9436  ( 9105) [001] d..2 82315.782608: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
41684<...>-8874 ( 8858) [001] .... 82315.782617: binder_transaction_received: transaction=1569055
41685<...>-8874 ( 8858) [001] .... 82315.782695: binder_transaction: transaction=1569056 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
41686<...>-8874 ( 8858) [001] .... 82315.782699: binder_transaction_alloc_buf: transaction=1569056 data_size=52 offsets_size=8
41687<...>-8874 ( 8858) [001] d..2 82315.782750: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
41688    RenderThread-9436  ( 9105) [001] .... 82315.782759: binder_transaction_received: transaction=1569056
41689          <idle>-0     (-----) [002] d.h4 82315.783049: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41690          <idle>-0     (-----) [002] dnh5 82315.783066: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41691          <idle>-0     (-----) [002] .n.1 82315.783077: cpu_idle: state=4294967295 cpu_id=2
41692          <idle>-0     (-----) [002] d..2 82315.783089: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41693<...>-86 ( 86) [002] d..2 82315.783125: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41694          <idle>-0     (-----) [002] d..1 82315.783137: cpu_idle: state=0 cpu_id=2
41695  surfaceflinger-8858  ( 8858) [003] ...1 82315.783179: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
41696  surfaceflinger-8858  ( 8858) [003] ...1 82315.783187: tracing_mark_write: E|8858
41697  surfaceflinger-8858  ( 8858) [003] .... 82315.783249: binder_transaction: transaction=1569057 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
41698  surfaceflinger-8858  ( 8858) [003] .... 82315.783253: binder_transaction_alloc_buf: transaction=1569057 data_size=620 offsets_size=112
41699  surfaceflinger-8858  ( 8858) [003] ...2 82315.783277: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
41700  surfaceflinger-8858  ( 8858) [003] d..4 82315.783285: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
41701  surfaceflinger-8858  ( 8858) [003] d..5 82315.783307: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
41702          <idle>-0     (-----) [002] .n.1 82315.783312: cpu_idle: state=4294967295 cpu_id=2
41703          <idle>-0     (-----) [002] d..2 82315.783322: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
41704 [email protected]   (  619) [002] .... 82315.783334: binder_transaction_received: transaction=1569057
41705  surfaceflinger-8858  ( 8858) [003] d..2 82315.783340: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41706          <idle>-0     (-----) [003] d..1 82315.783359: cpu_idle: state=0 cpu_id=3
41707 [email protected]   (  619) [002] ...1 82315.783390: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
41708 [email protected]   (  619) [002] ...1 82315.783550: tracing_mark_write: B|619|HWCSession::PresentDisplay::
41709 [email protected]   (  619) [002] d.h3 82315.783672: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41710 [email protected]   (  619) [002] d.h4 82315.783704: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
41711          <idle>-0     (-----) [000] .n.1 82315.783710: cpu_idle: state=4294967295 cpu_id=0
41712          <idle>-0     (-----) [000] d..2 82315.783722: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41713<...>-5340 ( 788) [000] d..2 82315.783782: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
41714<...>-5340 ( 788) [000] d..3 82315.783829: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41715          <idle>-0     (-----) [003] .n.1 82315.783835: cpu_idle: state=4294967295 cpu_id=3
41716          <idle>-0     (-----) [003] d..2 82315.783849: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41717<...>-5340 ( 788) [000] d..2 82315.783854: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41718          <idle>-0     (-----) [000] d..1 82315.783870: cpu_idle: state=0 cpu_id=0
41719<...>-87 ( 87) [003] d..2 82315.783896: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41720          <idle>-0     (-----) [003] d..1 82315.783907: cpu_idle: state=0 cpu_id=3
41721    RenderThread-9436  ( 9105) [001] d..2 82315.784396: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
41722          <idle>-0     (-----) [001] d..1 82315.784414: cpu_idle: state=0 cpu_id=1
41723 [email protected]   (  619) [002] ...1 82315.784433: tracing_mark_write: B|619|HWDeviceDRM::Validate::
41724          <idle>-0     (-----) [001] d.h2 82315.784472: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
41725          <idle>-0     (-----) [001] d.h3 82315.784485: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
41726          <idle>-0     (-----) [001] dnh3 82315.784490: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
41727          <idle>-0     (-----) [001] .n.1 82315.784499: cpu_idle: state=4294967295 cpu_id=1
41728          <idle>-0     (-----) [001] d..2 82315.784511: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
41729          <idle>-0     (-----) [000] d.h3 82315.784597: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
41730          <idle>-0     (-----) [000] dnh4 82315.784615: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
41731          <idle>-0     (-----) [000] .n.1 82315.784628: cpu_idle: state=4294967295 cpu_id=0
41732          <idle>-0     (-----) [000] d..2 82315.784639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
41733 kgsl_worker_thr-258   (  258) [000] d..2 82315.784711: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41734 kgsl_worker_thr-258   (  258) [000] d..3 82315.784729: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41735 kgsl_worker_thr-258   (  258) [000] d..2 82315.784745: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
41736    RenderThread-9436  ( 9105) [001] .... 82315.784748: binder_transaction: transaction=1569058 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
41737    RenderThread-9436  ( 9105) [001] .... 82315.784754: binder_transaction_alloc_buf: transaction=1569058 data_size=192 offsets_size=8
41738    RenderThread-9436  ( 9105) [001] d..4 82315.784765: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
41739    RenderThread-9436  ( 9105) [001] dn.5 82315.784783: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
41740    RenderThread-9436  ( 9105) [001] d..2 82315.784792: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
41741  kworker/u16:15-1311  ( 1311) [000] d..2 82315.784797: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41742<...>-8874 ( 8858) [001] .... 82315.784802: binder_transaction_received: transaction=1569058
41743          <idle>-0     (-----) [000] d..1 82315.784810: cpu_idle: state=0 cpu_id=0
41744<...>-8874 ( 8858) [001] .... 82315.784940: binder_transaction: transaction=1569059 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
41745<...>-8874 ( 8858) [001] .... 82315.784945: binder_transaction_alloc_buf: transaction=1569059 data_size=68 offsets_size=0
41746 [email protected]   (  619) [002] d.h3 82315.784961: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41747 [email protected]   (  619) [002] d.h4 82315.784988: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41748<...>-8874 ( 8858) [001] d..2 82315.784988: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
41749    RenderThread-9436  ( 9105) [001] .... 82315.784998: binder_transaction_received: transaction=1569059
41750    RenderThread-9436  ( 9105) [001] d..2 82315.785103: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41751          <idle>-0     (-----) [001] d..1 82315.785169: cpu_idle: state=0 cpu_id=1
41752 [email protected]   (  619) [002] ...1 82315.785184: tracing_mark_write: E|619
41753 [email protected]   (  619) [002] ...1 82315.785386: tracing_mark_write: B|619|HWDeviceDRM::Commit::
41754 [email protected]   (  619) [002] ...1 82315.785398: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
41755 [email protected]   (  619) [002] d.h3 82315.785593: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
41756 [email protected]   (  619) [002] d.h4 82315.785616: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
41757          <idle>-0     (-----) [000] .n.1 82315.785621: cpu_idle: state=4294967295 cpu_id=0
41758          <idle>-0     (-----) [000] d..2 82315.785634: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41759<...>-5340 ( 788) [000] d..2 82315.785686: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41760<...>-5340 ( 788) [000] d..3 82315.785705: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41761          <idle>-0     (-----) [003] .n.1 82315.785710: cpu_idle: state=4294967295 cpu_id=3
41762          <idle>-0     (-----) [003] d..2 82315.785724: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41763<...>-5340 ( 788) [000] d..2 82315.785731: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41764          <idle>-0     (-----) [000] d..1 82315.785742: cpu_idle: state=0 cpu_id=0
41765<...>-87 ( 87) [003] d..2 82315.785770: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41766          <idle>-0     (-----) [003] d..1 82315.785780: cpu_idle: state=0 cpu_id=3
41767 [email protected]   (  619) [002] d..2 82315.786050: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41768 [email protected]   (  619) [002] d..3 82315.786074: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41769          <idle>-0     (-----) [000] .n.1 82315.786080: cpu_idle: state=4294967295 cpu_id=0
41770          <idle>-0     (-----) [000] d..2 82315.786089: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
41771 [email protected]   (  619) [002] ...1 82315.786187: tracing_mark_write: E|619
41772 [email protected]   (  619) [002] ...1 82315.786193: tracing_mark_write: E|619
41773 [email protected]   (  619) [002] ...1 82315.786256: tracing_mark_write: E|619
41774 [email protected]   (  619) [002] ...1 82315.786318: tracing_mark_write: E|619
41775 [email protected]   (  619) [002] .... 82315.786335: binder_transaction: transaction=1569060 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
41776 [email protected]   (  619) [002] .... 82315.786340: binder_transaction_alloc_buf: transaction=1569060 data_size=736 offsets_size=144
41777 [email protected]   (  619) [002] d..2 82315.786363: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
41778 [email protected]   (  619) [002] d..3 82315.786382: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
41779          <idle>-0     (-----) [003] .n.1 82315.786387: cpu_idle: state=4294967295 cpu_id=3
41780 [email protected]   (  619) [002] .... 82315.786387: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
41781          <idle>-0     (-----) [001] ...1 82315.786389: cpu_idle: state=4294967295 cpu_id=1
41782          <idle>-0     (-----) [001] d..1 82315.786394: cpu_idle: state=0 cpu_id=1
41783          <idle>-0     (-----) [003] d..2 82315.786396: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
41784  surfaceflinger-8858  ( 8858) [003] .... 82315.786405: binder_transaction_received: transaction=1569060
41785 [email protected]   (  619) [002] d..2 82315.786475: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41786<...>-86 ( 86) [002] d..2 82315.786525: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41787          <idle>-0     (-----) [002] d..1 82315.786546: cpu_idle: state=0 cpu_id=2
41788          <idle>-0     (-----) [002] d.h4 82315.786904: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41789          <idle>-0     (-----) [002] dnh5 82315.786916: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41790          <idle>-0     (-----) [002] .n.1 82315.786928: cpu_idle: state=4294967295 cpu_id=2
41791          <idle>-0     (-----) [002] d..2 82315.786938: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41792  surfaceflinger-8858  ( 8858) [003] d..2 82315.786954: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41793          <idle>-0     (-----) [003] d..1 82315.786973: cpu_idle: state=0 cpu_id=3
41794<...>-86 ( 86) [002] d..2 82315.786975: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41795          <idle>-0     (-----) [002] d..1 82315.786987: cpu_idle: state=0 cpu_id=2
41796          <idle>-0     (-----) [002] d.h4 82315.787521: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
41797          <idle>-0     (-----) [002] d.h5 82315.787546: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41798          <idle>-0     (-----) [001] .n.1 82315.787552: cpu_idle: state=4294967295 cpu_id=1
41799          <idle>-0     (-----) [001] d..2 82315.787565: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41800          <idle>-0     (-----) [002] ...1 82315.787581: cpu_idle: state=4294967295 cpu_id=2
41801          <idle>-0     (-----) [002] d..1 82315.787586: cpu_idle: state=0 cpu_id=2
41802<...>-5340 ( 788) [001] d..2 82315.787626: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41803<...>-5340 ( 788) [001] d..3 82315.787647: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41804          <idle>-0     (-----) [003] .n.1 82315.787655: cpu_idle: state=4294967295 cpu_id=3
41805          <idle>-0     (-----) [003] d..2 82315.787668: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41806<...>-5340 ( 788) [001] d..2 82315.787677: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41807          <idle>-0     (-----) [001] d..1 82315.787694: cpu_idle: state=0 cpu_id=1
41808<...>-87 ( 87) [003] d..2 82315.787715: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41809          <idle>-0     (-----) [003] d..1 82315.787726: cpu_idle: state=0 cpu_id=3
41810 crtc_commit:111-321   (  321) [000] d..2 82315.788063: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
41811          <idle>-0     (-----) [000] d..1 82315.788075: cpu_idle: state=0 cpu_id=0
41812          <idle>-0     (-----) [000] d.s2 82315.788477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
41813          <idle>-0     (-----) [000] dns3 82315.788496: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
41814          <idle>-0     (-----) [000] dns3 82315.788503: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41815          <idle>-0     (-----) [000] dns4 82315.788514: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41816          <idle>-0     (-----) [000] dns3 82315.788526: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
41817          <idle>-0     (-----) [000] dns4 82315.788543: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
41818          <idle>-0     (-----) [000] .n.1 82315.788551: cpu_idle: state=4294967295 cpu_id=0
41819          <idle>-0     (-----) [000] d..2 82315.788561: 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
41820     rcu_preempt-7     (    7) [000] d..2 82315.788573: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
41821     rcu_preempt-7     (    7) [000] d..3 82315.788588: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
41822     rcu_preempt-7     (    7) [000] d..2 82315.788606: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
41823     kworker/0:1-25262 (25262) [000] d..2 82315.788643: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
41824         rcuop/0-10    (   10) [000] d..2 82315.788669: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
41825  kworker/u16:15-1311  ( 1311) [000] .... 82315.788776: clk_set_rate: l3_cluster0_vote_clk 480000000
41826  kworker/u16:15-1311  ( 1311) [000] .... 82315.788785: clk_set_rate: l3_clk 480000000
41827          <idle>-0     (-----) [002] d.h4 82315.788841: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41828  kworker/u16:15-1311  ( 1311) [000] d..2 82315.788841: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41829          <idle>-0     (-----) [002] dnh5 82315.788851: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41830          <idle>-0     (-----) [000] d..1 82315.788857: cpu_idle: state=0 cpu_id=0
41831          <idle>-0     (-----) [002] .n.1 82315.788859: cpu_idle: state=4294967295 cpu_id=2
41832          <idle>-0     (-----) [002] d..2 82315.788872: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41833          <idle>-0     (-----) [001] ...1 82315.788878: cpu_idle: state=4294967295 cpu_id=1
41834          <idle>-0     (-----) [001] d..1 82315.788884: cpu_idle: state=0 cpu_id=1
41835<...>-86 ( 86) [002] d..2 82315.788911: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41836          <idle>-0     (-----) [002] d..1 82315.788923: cpu_idle: state=0 cpu_id=2
41837          <idle>-0     (-----) [003] ...1 82315.789193: cpu_idle: state=4294967295 cpu_id=3
41838          <idle>-0     (-----) [003] d..1 82315.789197: cpu_idle: state=0 cpu_id=3
41839          <idle>-0     (-----) [002] d.h4 82315.789454: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41840          <idle>-0     (-----) [002] d.h5 82315.789468: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41841          <idle>-0     (-----) [001] .n.1 82315.789473: cpu_idle: state=4294967295 cpu_id=1
41842          <idle>-0     (-----) [001] d..2 82315.789487: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41843          <idle>-0     (-----) [002] ...1 82315.789501: cpu_idle: state=4294967295 cpu_id=2
41844          <idle>-0     (-----) [002] d..1 82315.789505: cpu_idle: state=0 cpu_id=2
41845<...>-5340 ( 788) [001] d..2 82315.789660: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41846<...>-5340 ( 788) [001] d..3 82315.789680: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41847          <idle>-0     (-----) [003] .n.1 82315.789685: cpu_idle: state=4294967295 cpu_id=3
41848          <idle>-0     (-----) [003] d..2 82315.789698: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41849<...>-5340 ( 788) [001] d..2 82315.789707: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41850          <idle>-0     (-----) [001] d..1 82315.789723: cpu_idle: state=0 cpu_id=1
41851<...>-87 ( 87) [003] d..2 82315.789738: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41852          <idle>-0     (-----) [003] d..1 82315.789748: cpu_idle: state=0 cpu_id=3
41853          <idle>-0     (-----) [002] d.h4 82315.790777: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41854          <idle>-0     (-----) [002] dnh5 82315.790787: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41855          <idle>-0     (-----) [002] .n.1 82315.790794: cpu_idle: state=4294967295 cpu_id=2
41856          <idle>-0     (-----) [002] d..2 82315.790805: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41857<...>-86 ( 86) [002] d..2 82315.790839: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41858          <idle>-0     (-----) [002] d..1 82315.790850: cpu_idle: state=0 cpu_id=2
41859          <idle>-0     (-----) [002] d.h4 82315.791354: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41860          <idle>-0     (-----) [002] d.h5 82315.791368: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41861          <idle>-0     (-----) [001] .n.1 82315.791374: cpu_idle: state=4294967295 cpu_id=1
41862          <idle>-0     (-----) [001] d..2 82315.791387: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41863          <idle>-0     (-----) [002] ...1 82315.791399: cpu_idle: state=4294967295 cpu_id=2
41864          <idle>-0     (-----) [002] d..1 82315.791404: cpu_idle: state=0 cpu_id=2
41865<...>-5340 ( 788) [001] d..2 82315.791428: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41866<...>-5340 ( 788) [001] d..3 82315.791446: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41867          <idle>-0     (-----) [003] .n.1 82315.791451: cpu_idle: state=4294967295 cpu_id=3
41868          <idle>-0     (-----) [003] d..2 82315.791461: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41869<...>-5340 ( 788) [001] d..2 82315.791470: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41870          <idle>-0     (-----) [001] d..1 82315.791483: cpu_idle: state=0 cpu_id=1
41871<...>-87 ( 87) [003] d..2 82315.791498: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41872          <idle>-0     (-----) [003] d..1 82315.791507: cpu_idle: state=0 cpu_id=3
41873          <idle>-0     (-----) [002] d.h4 82315.791523: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41874          <idle>-0     (-----) [002] dnh5 82315.791533: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41875          <idle>-0     (-----) [002] .n.1 82315.791541: cpu_idle: state=4294967295 cpu_id=2
41876          <idle>-0     (-----) [002] d..2 82315.791551: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41877<...>-86 ( 86) [002] d..2 82315.791585: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41878          <idle>-0     (-----) [002] d..1 82315.791597: cpu_idle: state=0 cpu_id=2
41879          <idle>-0     (-----) [002] d.h4 82315.791889: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41880          <idle>-0     (-----) [002] d.h5 82315.791910: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41881          <idle>-0     (-----) [001] .n.1 82315.791916: cpu_idle: state=4294967295 cpu_id=1
41882          <idle>-0     (-----) [001] d..2 82315.791932: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41883          <idle>-0     (-----) [002] d..2 82315.791939: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
41884          <idle>-0     (-----) [002] dn.3 82315.791949: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
41885<...>-5340 ( 788) [001] d..2 82315.791970: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41886<...>-5340 ( 788) [001] d..3 82315.792019: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41887          <idle>-0     (-----) [003] .n.1 82315.792024: cpu_idle: state=4294967295 cpu_id=3
41888          <idle>-0     (-----) [002] .n.1 82315.792034: cpu_idle: state=4294967295 cpu_id=2
41889          <idle>-0     (-----) [003] d..2 82315.792036: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41890          <idle>-0     (-----) [002] d..2 82315.792048: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
41891<...>-5340 ( 788) [001] d..2 82315.792050: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41892          <idle>-0     (-----) [001] d..1 82315.792063: cpu_idle: state=0 cpu_id=1
41893<...>-87 ( 87) [003] d..2 82315.792076: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41894     ksoftirqd/2-26    (   26) [002] d..2 82315.792078: 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
41895          <idle>-0     (-----) [003] d..1 82315.792084: cpu_idle: state=0 cpu_id=3
41896          <idle>-0     (-----) [002] d..1 82315.792090: cpu_idle: state=0 cpu_id=2
41897          <idle>-0     (-----) [002] d.h4 82315.793228: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41898          <idle>-0     (-----) [002] dnh5 82315.793240: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41899          <idle>-0     (-----) [002] .n.1 82315.793249: cpu_idle: state=4294967295 cpu_id=2
41900          <idle>-0     (-----) [002] d..2 82315.793260: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41901<...>-86 ( 86) [002] d..2 82315.793294: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41902          <idle>-0     (-----) [002] d..1 82315.793305: cpu_idle: state=0 cpu_id=2
41903          <idle>-0     (-----) [002] d.h4 82315.793716: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41904          <idle>-0     (-----) [002] d.h5 82315.793730: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41905          <idle>-0     (-----) [001] .n.1 82315.793737: cpu_idle: state=4294967295 cpu_id=1
41906          <idle>-0     (-----) [001] d..2 82315.793748: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41907          <idle>-0     (-----) [002] ...1 82315.793762: cpu_idle: state=4294967295 cpu_id=2
41908          <idle>-0     (-----) [002] d..1 82315.793767: cpu_idle: state=0 cpu_id=2
41909<...>-5340 ( 788) [001] d..2 82315.793785: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41910<...>-5340 ( 788) [001] d..3 82315.793801: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41911          <idle>-0     (-----) [003] .n.1 82315.793806: cpu_idle: state=4294967295 cpu_id=3
41912          <idle>-0     (-----) [003] d..2 82315.793816: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41913<...>-5340 ( 788) [001] d..2 82315.793825: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41914          <idle>-0     (-----) [001] d..1 82315.793838: cpu_idle: state=0 cpu_id=1
41915<...>-87 ( 87) [003] d..2 82315.793854: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41916          <idle>-0     (-----) [003] d..1 82315.793863: cpu_idle: state=0 cpu_id=3
41917          <idle>-0     (-----) [000] d.h5 82315.794237: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41918          <idle>-0     (-----) [000] d.h6 82315.794256: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41919          <idle>-0     (-----) [001] .n.1 82315.794262: cpu_idle: state=4294967295 cpu_id=1
41920          <idle>-0     (-----) [000] d.h5 82315.794263: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41921          <idle>-0     (-----) [000] dnh6 82315.794272: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41922          <idle>-0     (-----) [001] d..2 82315.794273: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
41923          <idle>-0     (-----) [000] .n.1 82315.794286: cpu_idle: state=4294967295 cpu_id=0
41924          <idle>-0     (-----) [000] d..2 82315.794298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
41925  crtc_event:111-322   (  322) [001] d..2 82315.794308: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41926          <idle>-0     (-----) [001] d..1 82315.794318: cpu_idle: state=0 cpu_id=1
41927 crtc_commit:111-321   (  321) [000] d..2 82315.794457: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
41928          <idle>-0     (-----) [000] d..1 82315.794467: cpu_idle: state=0 cpu_id=0
41929          <idle>-0     (-----) [000] d.s3 82315.795134: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41930          <idle>-0     (-----) [002] d.h4 82315.795147: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41931          <idle>-0     (-----) [000] d.s4 82315.795149: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41932          <idle>-0     (-----) [000] d.s2 82315.795153: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
41933          <idle>-0     (-----) [001] .n.1 82315.795154: cpu_idle: state=4294967295 cpu_id=1
41934          <idle>-0     (-----) [002] dnh5 82315.795157: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41935          <idle>-0     (-----) [001] d..2 82315.795165: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
41936          <idle>-0     (-----) [002] .n.1 82315.795167: cpu_idle: state=4294967295 cpu_id=2
41937          <idle>-0     (-----) [000] dns3 82315.795170: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
41938          <idle>-0     (-----) [000] dns3 82315.795175: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
41939          <idle>-0     (-----) [002] d..2 82315.795179: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41940  crtc_event:111-322   (  322) [001] d..2 82315.795195: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41941          <idle>-0     (-----) [001] d..1 82315.795205: cpu_idle: state=0 cpu_id=1
41942          <idle>-0     (-----) [000] dns4 82315.795210: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
41943<...>-86 ( 86) [002] d..2 82315.795216: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41944          <idle>-0     (-----) [001] .n.1 82315.795217: cpu_idle: state=4294967295 cpu_id=1
41945          <idle>-0     (-----) [002] d..1 82315.795227: cpu_idle: state=0 cpu_id=2
41946          <idle>-0     (-----) [000] .n.1 82315.795228: cpu_idle: state=4294967295 cpu_id=0
41947          <idle>-0     (-----) [001] d..2 82315.795228: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
41948          <idle>-0     (-----) [000] d..2 82315.795238: 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
41949     rcu_preempt-7     (    7) [000] d..2 82315.795264: 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
41950          <idle>-0     (-----) [000] d..1 82315.795277: cpu_idle: state=0 cpu_id=0
41951  kworker/u16:15-1311  ( 1311) [001] d..2 82315.795448: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
41952          <idle>-0     (-----) [001] d.s4 82315.795492: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
41953          <idle>-0     (-----) [001] d.s5 82315.795501: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
41954          <idle>-0     (-----) [001] dns5 82315.795506: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
41955          <idle>-0     (-----) [001] d..2 82315.795518: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
41956  kworker/u16:15-1311  ( 1311) [001] d..2 82315.795546: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41957          <idle>-0     (-----) [001] d..1 82315.795561: cpu_idle: state=0 cpu_id=1
41958          <idle>-0     (-----) [002] d.h4 82315.795670: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41959          <idle>-0     (-----) [002] d.h5 82315.795685: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
41960          <idle>-0     (-----) [001] .n.1 82315.795691: cpu_idle: state=4294967295 cpu_id=1
41961          <idle>-0     (-----) [001] d..2 82315.795702: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
41962          <idle>-0     (-----) [002] ...1 82315.795715: cpu_idle: state=4294967295 cpu_id=2
41963          <idle>-0     (-----) [002] d..1 82315.795720: cpu_idle: state=0 cpu_id=2
41964<...>-5340 ( 788) [001] d..2 82315.795744: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41965<...>-5340 ( 788) [001] d..3 82315.795762: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
41966          <idle>-0     (-----) [003] .n.1 82315.795767: cpu_idle: state=4294967295 cpu_id=3
41967          <idle>-0     (-----) [003] d..2 82315.795779: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
41968<...>-5340 ( 788) [001] d..2 82315.795784: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41969          <idle>-0     (-----) [001] d..1 82315.795800: cpu_idle: state=0 cpu_id=1
41970<...>-87 ( 87) [003] d..2 82315.795817: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
41971          <idle>-0     (-----) [003] d..1 82315.795826: cpu_idle: state=0 cpu_id=3
41972          <idle>-0     (-----) [000] d.h5 82315.796564: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41973          <idle>-0     (-----) [000] dnh6 82315.796576: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
41974          <idle>-0     (-----) [000] .n.1 82315.796587: cpu_idle: state=4294967295 cpu_id=0
41975          <idle>-0     (-----) [000] d..2 82315.796597: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
41976 crtc_commit:111-321   (  321) [000] d..2 82315.796663: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
41977          <idle>-0     (-----) [000] d..1 82315.796675: cpu_idle: state=0 cpu_id=0
41978          <idle>-0     (-----) [000] d.h5 82315.796864: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41979          <idle>-0     (-----) [000] d.h6 82315.796879: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
41980          <idle>-0     (-----) [001] .n.1 82315.796885: cpu_idle: state=4294967295 cpu_id=1
41981          <idle>-0     (-----) [000] ...1 82315.796895: cpu_idle: state=4294967295 cpu_id=0
41982          <idle>-0     (-----) [001] d..2 82315.796895: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
41983          <idle>-0     (-----) [000] d..1 82315.796899: cpu_idle: state=0 cpu_id=0
41984  crtc_event:111-322   (  322) [001] d..2 82315.796921: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
41985          <idle>-0     (-----) [001] d..1 82315.796932: cpu_idle: state=0 cpu_id=1
41986          <idle>-0     (-----) [002] d.h4 82315.797075: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41987          <idle>-0     (-----) [002] dnh5 82315.797085: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
41988          <idle>-0     (-----) [002] .n.1 82315.797092: cpu_idle: state=4294967295 cpu_id=2
41989          <idle>-0     (-----) [002] d..2 82315.797104: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
41990<...>-86 ( 86) [002] d..2 82315.797138: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
41991          <idle>-0     (-----) [002] d..1 82315.797149: cpu_idle: state=0 cpu_id=2
41992          <idle>-0     (-----) [003] d.h2 82315.797232: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
41993          <idle>-0     (-----) [003] dnh3 82315.797250: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
41994          <idle>-0     (-----) [003] .n.1 82315.797258: cpu_idle: state=4294967295 cpu_id=3
41995          <idle>-0     (-----) [003] d..2 82315.797267: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
41996        DispSync-8879  ( 8858) [003] d..1 82315.797289: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
41997        DispSync-8879  ( 8858) [003] d..2 82315.797305: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
41998          <idle>-0     (-----) [000] .n.1 82315.797310: cpu_idle: state=4294967295 cpu_id=0
41999        DispSync-8879  ( 8858) [003] d..1 82315.797311: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
42000          <idle>-0     (-----) [000] d..2 82315.797321: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
42001        DispSync-8879  ( 8858) [003] d..2 82315.797323: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
42002          <idle>-0     (-----) [001] .n.1 82315.797329: cpu_idle: state=4294967295 cpu_id=1
42003          <idle>-0     (-----) [001] d..2 82315.797338: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
42004        DispSync-8879  ( 8858) [003] d..2 82315.797356: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42005          <idle>-0     (-----) [003] d..1 82315.797369: cpu_idle: state=0 cpu_id=3
42006   sfEventThread-8882  ( 8858) [000] d..3 82315.797376: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
42007  appEventThread-8881  ( 8858) [001] d..3 82315.797403: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
42008          <idle>-0     (-----) [004] dnh2 82315.797405: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
42009   sfEventThread-8882  ( 8858) [000] d..3 82315.797407: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42010          <idle>-0     (-----) [004] .n.1 82315.797410: cpu_idle: state=4294967295 cpu_id=4
42011          <idle>-0     (-----) [004] d..2 82315.797419: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
42012   sfEventThread-8882  ( 8858) [000] d..4 82315.797424: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42013  appEventThread-8881  ( 8858) [001] d..4 82315.797427: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
42014          <idle>-0     (-----) [003] .n.1 82315.797429: cpu_idle: state=4294967295 cpu_id=3
42015          <idle>-0     (-----) [002] .n.1 82315.797432: cpu_idle: state=4294967295 cpu_id=2
42016          <idle>-0     (-----) [003] d..2 82315.797439: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
42017          <idle>-0     (-----) [002] d..2 82315.797443: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
42018   sfEventThread-8882  ( 8858) [000] d..2 82315.797459: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42019  appEventThread-8881  ( 8858) [001] d..2 82315.797468: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42020          <idle>-0     (-----) [000] d..1 82315.797473: cpu_idle: state=0 cpu_id=0
42021          <idle>-0     (-----) [001] d..1 82315.797483: cpu_idle: state=0 cpu_id=1
42022<...>-9105 ( 9105) [002] d.h3 82315.797552: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42023<...>-9105 ( 9105) [002] d.h4 82315.797571: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42024          <idle>-0     (-----) [001] .n.1 82315.797577: cpu_idle: state=4294967295 cpu_id=1
42025          <idle>-0     (-----) [001] d..2 82315.797589: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42026<...>-5340 ( 788) [001] d..2 82315.797634: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
42027<...>-5340 ( 788) [001] d..3 82315.797674: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
42028<...>-9006 ( 8943) [004] .... 82315.797681: binder_transaction: transaction=1569061 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
42029<...>-9006 ( 8943) [004] .... 82315.797686: binder_transaction_alloc_buf: transaction=1569061 data_size=80 offsets_size=0
42030<...>-9006 ( 8943) [004] d..4 82315.797690: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
42031<...>-5340 ( 788) [001] d..2 82315.797701: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42032          <idle>-0     (-----) [001] d..1 82315.797717: cpu_idle: state=0 cpu_id=1
42033          <idle>-0     (-----) [000] dnh2 82315.797727: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
42034          <idle>-0     (-----) [000] .n.1 82315.797733: cpu_idle: state=4294967295 cpu_id=0
42035          <idle>-0     (-----) [000] d..2 82315.797743: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
42036<...>-8874 ( 8858) [000] .... 82315.797751: binder_transaction_received: transaction=1569061
42037<...>-9105 ( 9105) [002] d..2 82315.797770: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42038<...>-8874 ( 8858) [000] d..1 82315.797781: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
42039<...>-8874 ( 8858) [000] d..2 82315.797803: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
42040          <idle>-0     (-----) [001] .n.1 82315.797810: cpu_idle: state=4294967295 cpu_id=1
42041<...>-87 ( 87) [002] d..2 82315.797818: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42042          <idle>-0     (-----) [001] d..2 82315.797820: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
42043          <idle>-0     (-----) [002] d..1 82315.797835: cpu_idle: state=0 cpu_id=2
42044<...>-8874 ( 8858) [000] d..2 82315.797845: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42045<...>-9006 ( 8943) [004] .... 82315.797857: binder_transaction: transaction=1569062 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
42046          <idle>-0     (-----) [000] d..1 82315.797858: cpu_idle: state=0 cpu_id=0
42047<...>-9006 ( 8943) [004] .... 82315.797861: binder_transaction_alloc_buf: transaction=1569062 data_size=988 offsets_size=48
42048   sfEventThread-8882  ( 8858) [001] d..2 82315.797866: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42049          <idle>-0     (-----) [001] d..1 82315.797879: cpu_idle: state=0 cpu_id=1
42050<...>-9006 ( 8943) [004] ...2 82315.797880: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
42051<...>-9006 ( 8943) [004] d..4 82315.797883: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=000
42052<...>-9006 ( 8943) [004] dn.5 82315.797904: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
42053<...>-9006 ( 8943) [004] d..2 82315.797943: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
42054<...>-8874 ( 8858) [004] .... 82315.797956: binder_transaction_received: transaction=1569062
42055<...>-8874 ( 8858) [004] d..1 82315.798042: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
42056          <idle>-0     (-----) [001] dnh2 82315.798066: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
42057<...>-8874 ( 8858) [004] .... 82315.798068: binder_transaction: transaction=1569063 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
42058<...>-8874 ( 8858) [004] .... 82315.798071: binder_transaction_alloc_buf: transaction=1569063 data_size=0 offsets_size=0
42059          <idle>-0     (-----) [001] .n.1 82315.798073: cpu_idle: state=4294967295 cpu_id=1
42060<...>-8874 ( 8858) [004] .... 82315.798074: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
42061          <idle>-0     (-----) [001] d..2 82315.798081: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
42062   sfEventThread-8882  ( 8858) [001] d..2 82315.798112: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42063<...>-8874 ( 8858) [004] d..2 82315.798114: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
42064          <idle>-0     (-----) [001] d..1 82315.798123: cpu_idle: state=0 cpu_id=1
42065<...>-9006 ( 8943) [004] .... 82315.798125: binder_transaction_received: transaction=1569063
42066<...>-9006 ( 8943) [004] d..2 82315.798213: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
42067          <idle>-0     (-----) [004] d..1 82315.798228: cpu_idle: state=0 cpu_id=4
42068  surfaceflinger-8858  ( 8858) [003] d.s2 82315.798480: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
42069  surfaceflinger-8858  ( 8858) [003] d.s3 82315.798524: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
42070          <idle>-0     (-----) [000] .n.1 82315.798529: cpu_idle: state=4294967295 cpu_id=0
42071          <idle>-0     (-----) [000] d..2 82315.798543: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42072  kworker/u16:15-1311  ( 1311) [000] .... 82315.798606: clk_set_rate: l3_cluster0_vote_clk 300000000
42073  kworker/u16:15-1311  ( 1311) [000] .... 82315.798614: clk_set_rate: l3_clk 300000000
42074          <idle>-0     (-----) [002] d.h4 82315.798869: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42075          <idle>-0     (-----) [002] dnh5 82315.798885: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42076          <idle>-0     (-----) [002] .n.1 82315.798899: cpu_idle: state=4294967295 cpu_id=2
42077  kworker/u16:15-1311  ( 1311) [000] d..2 82315.798912: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
42078          <idle>-0     (-----) [002] d..2 82315.798915: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42079          <idle>-0     (-----) [000] d..1 82315.798925: cpu_idle: state=0 cpu_id=0
42080          <idle>-0     (-----) [001] d.s3 82315.798939: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
42081          <idle>-0     (-----) [001] d.s4 82315.798953: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
42082<...>-86 ( 86) [002] d..2 82315.798961: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42083          <idle>-0     (-----) [001] d.s4 82315.798962: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
42084          <idle>-0     (-----) [000] .n.1 82315.798970: cpu_idle: state=4294967295 cpu_id=0
42085          <idle>-0     (-----) [001] ...1 82315.798976: cpu_idle: state=4294967295 cpu_id=1
42086          <idle>-0     (-----) [002] d..1 82315.798976: cpu_idle: state=0 cpu_id=2
42087          <idle>-0     (-----) [000] d..2 82315.798982: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42088          <idle>-0     (-----) [001] d..1 82315.798982: cpu_idle: state=0 cpu_id=1
42089  kworker/u16:15-1311  ( 1311) [000] d..2 82315.799039: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42090          <idle>-0     (-----) [000] d..1 82315.799048: cpu_idle: state=0 cpu_id=0
42091          <idle>-0     (-----) [002] d.h4 82315.799400: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42092          <idle>-0     (-----) [002] d.h5 82315.799418: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42093          <idle>-0     (-----) [001] .n.1 82315.799424: cpu_idle: state=4294967295 cpu_id=1
42094          <idle>-0     (-----) [001] d..2 82315.799438: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42095          <idle>-0     (-----) [002] ...1 82315.799454: cpu_idle: state=4294967295 cpu_id=2
42096          <idle>-0     (-----) [002] d..1 82315.799460: cpu_idle: state=0 cpu_id=2
42097<...>-5340 ( 788) [001] d..2 82315.799497: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
42098<...>-5340 ( 788) [001] d..3 82315.799518: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
42099          <idle>-0     (-----) [002] .n.1 82315.799523: cpu_idle: state=4294967295 cpu_id=2
42100          <idle>-0     (-----) [002] d..2 82315.799538: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42101<...>-5340 ( 788) [001] d..2 82315.799548: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42102          <idle>-0     (-----) [001] d..1 82315.799566: cpu_idle: state=0 cpu_id=1
42103<...>-87 ( 87) [002] d..2 82315.799584: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42104          <idle>-0     (-----) [002] d..1 82315.799596: cpu_idle: state=0 cpu_id=2
42105  surfaceflinger-8858  ( 8858) [003] ...1 82315.799646: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
42106  surfaceflinger-8858  ( 8858) [003] ...1 82315.799655: tracing_mark_write: E|8858
42107  surfaceflinger-8858  ( 8858) [003] .... 82315.799722: binder_transaction: transaction=1569064 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
42108  surfaceflinger-8858  ( 8858) [003] .... 82315.799727: binder_transaction_alloc_buf: transaction=1569064 data_size=620 offsets_size=112
42109  surfaceflinger-8858  ( 8858) [003] ...2 82315.799754: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
42110  surfaceflinger-8858  ( 8858) [003] d..4 82315.799762: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
42111  surfaceflinger-8858  ( 8858) [003] d..5 82315.799787: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
42112          <idle>-0     (-----) [002] .n.1 82315.799793: cpu_idle: state=4294967295 cpu_id=2
42113          <idle>-0     (-----) [002] d..2 82315.799803: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
42114 [email protected]   (  619) [002] .... 82315.799815: binder_transaction_received: transaction=1569064
42115  surfaceflinger-8858  ( 8858) [003] d..2 82315.799824: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42116          <idle>-0     (-----) [003] d..1 82315.799847: cpu_idle: state=0 cpu_id=3
42117 [email protected]   (  619) [002] ...1 82315.799874: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
42118 [email protected]   (  619) [002] ...1 82315.800065: tracing_mark_write: B|619|HWCSession::PresentDisplay::
42119 [email protected]   (  619) [002] d.h3 82315.800827: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42120 [email protected]   (  619) [002] d.h4 82315.800858: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42121          <idle>-0     (-----) [001] ...1 82315.800893: cpu_idle: state=4294967295 cpu_id=1
42122          <idle>-0     (-----) [001] d..1 82315.800897: cpu_idle: state=0 cpu_id=1
42123 [email protected]   (  619) [002] ...1 82315.800961: tracing_mark_write: B|619|HWDeviceDRM::Validate::
42124 [email protected]   (  619) [002] d.h3 82315.801387: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42125 [email protected]   (  619) [002] d.h4 82315.801414: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42126          <idle>-0     (-----) [001] .n.1 82315.801418: cpu_idle: state=4294967295 cpu_id=1
42127          <idle>-0     (-----) [001] d..2 82315.801431: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42128<...>-5340 ( 788) [001] d..2 82315.801477: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
42129<...>-5340 ( 788) [001] d..3 82315.801521: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42130<...>-5340 ( 788) [001] d..2 82315.801535: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42131<...>-87 ( 87) [001] d..2 82315.801582: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42132          <idle>-0     (-----) [001] d..1 82315.801599: cpu_idle: state=0 cpu_id=1
42133 [email protected]   (  619) [002] ...1 82315.801692: tracing_mark_write: E|619
42134          <idle>-0     (-----) [000] d.s2 82315.801809: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42135          <idle>-0     (-----) [000] dns3 82315.801830: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42136          <idle>-0     (-----) [000] .n.1 82315.801839: cpu_idle: state=4294967295 cpu_id=0
42137          <idle>-0     (-----) [000] d..2 82315.801849: 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
42138     rcu_preempt-7     (    7) [000] d..2 82315.801860: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
42139     rcu_preempt-7     (    7) [000] d..3 82315.801905: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42140     rcu_preempt-7     (    7) [000] d..2 82315.801917: 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
42141         rcuop/2-29    (   29) [000] d..2 82315.801929: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
42142 [email protected]   (  619) [002] ...1 82315.801966: tracing_mark_write: B|619|HWDeviceDRM::Commit::
42143         rcuop/2-29    (   29) [000] d..3 82315.801967: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
42144         rcuop/2-29    (   29) [000] d..2 82315.801973: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42145 [email protected]   (  619) [002] ...1 82315.801980: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
42146         rcuop/2-29    (   29) [000] d..3 82315.801984: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42147         rcuop/2-29    (   29) [000] d..2 82315.801994: 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
42148         rcuop/3-37    (   37) [000] d..2 82315.802021: 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
42149     rcu_preempt-7     (    7) [000] d..2 82315.802059: 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
42150          <idle>-0     (-----) [000] d..1 82315.802076: cpu_idle: state=0 cpu_id=0
42151 [email protected]   (  619) [002] d..2 82315.802567: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42152 [email protected]   (  619) [002] d..3 82315.802595: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42153          <idle>-0     (-----) [000] .n.1 82315.802601: cpu_idle: state=4294967295 cpu_id=0
42154          <idle>-0     (-----) [000] d..2 82315.802614: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
42155 [email protected]   (  619) [002] ...1 82315.802711: tracing_mark_write: E|619
42156 [email protected]   (  619) [002] ...1 82315.802718: tracing_mark_write: E|619
42157 [email protected]   (  619) [002] ...1 82315.802809: tracing_mark_write: E|619
42158 [email protected]   (  619) [002] ...1 82315.802863: tracing_mark_write: E|619
42159 [email protected]   (  619) [002] .... 82315.802881: binder_transaction: transaction=1569065 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
42160 [email protected]   (  619) [002] .... 82315.802887: binder_transaction_alloc_buf: transaction=1569065 data_size=736 offsets_size=144
42161 [email protected]   (  619) [002] d..2 82315.802913: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42162 [email protected]   (  619) [002] d..3 82315.802935: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42163 [email protected]   (  619) [002] .... 82315.802941: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
42164          <idle>-0     (-----) [003] .n.1 82315.802942: cpu_idle: state=4294967295 cpu_id=3
42165          <idle>-0     (-----) [003] d..2 82315.802956: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
42166  surfaceflinger-8858  ( 8858) [003] .... 82315.802966: binder_transaction_received: transaction=1569065
42167          <idle>-0     (-----) [001] ...1 82315.802980: cpu_idle: state=4294967295 cpu_id=1
42168          <idle>-0     (-----) [001] d..1 82315.802984: cpu_idle: state=0 cpu_id=1
42169 [email protected]   (  619) [002] d..2 82315.803036: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42170<...>-86 ( 86) [002] d..2 82315.803101: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42171          <idle>-0     (-----) [002] d..1 82315.803125: cpu_idle: state=0 cpu_id=2
42172          <idle>-0     (-----) [002] d.h4 82315.803358: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42173          <idle>-0     (-----) [002] d.h5 82315.803378: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42174          <idle>-0     (-----) [001] .n.1 82315.803383: cpu_idle: state=4294967295 cpu_id=1
42175          <idle>-0     (-----) [001] d..2 82315.803399: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42176          <idle>-0     (-----) [002] ...1 82315.803417: cpu_idle: state=4294967295 cpu_id=2
42177          <idle>-0     (-----) [002] d..1 82315.803423: cpu_idle: state=0 cpu_id=2
42178<...>-5340 ( 788) [001] d..2 82315.803454: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42179<...>-5340 ( 788) [001] d..3 82315.803498: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
42180          <idle>-0     (-----) [002] .n.1 82315.803504: cpu_idle: state=4294967295 cpu_id=2
42181  surfaceflinger-8858  ( 8858) [003] d..2 82315.803508: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42182          <idle>-0     (-----) [002] d..2 82315.803518: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42183<...>-5340 ( 788) [001] d..2 82315.803527: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42184          <idle>-0     (-----) [003] d..1 82315.803531: cpu_idle: state=0 cpu_id=3
42185          <idle>-0     (-----) [001] d..1 82315.803544: cpu_idle: state=0 cpu_id=1
42186<...>-87 ( 87) [002] d..2 82315.803568: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42187          <idle>-0     (-----) [002] d..1 82315.803580: cpu_idle: state=0 cpu_id=2
42188 crtc_commit:111-321   (  321) [000] d..2 82315.804622: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
42189          <idle>-0     (-----) [000] d..1 82315.804642: cpu_idle: state=0 cpu_id=0
42190          <idle>-0     (-----) [002] d.h4 82315.804779: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42191          <idle>-0     (-----) [002] dnh5 82315.804791: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42192          <idle>-0     (-----) [002] .n.1 82315.804814: cpu_idle: state=4294967295 cpu_id=2
42193          <idle>-0     (-----) [002] d..2 82315.804825: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42194<...>-86 ( 86) [002] d..2 82315.804864: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42195          <idle>-0     (-----) [002] d..1 82315.804876: cpu_idle: state=0 cpu_id=2
42196          <idle>-0     (-----) [002] d.h4 82315.805496: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42197          <idle>-0     (-----) [002] d.h5 82315.805515: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42198          <idle>-0     (-----) [001] .n.1 82315.805521: cpu_idle: state=4294967295 cpu_id=1
42199          <idle>-0     (-----) [001] d..2 82315.805537: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42200          <idle>-0     (-----) [002] d..2 82315.805547: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
42201          <idle>-0     (-----) [002] dn.3 82315.805556: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
42202          <idle>-0     (-----) [002] .n.1 82315.805560: cpu_idle: state=4294967295 cpu_id=2
42203          <idle>-0     (-----) [002] d..2 82315.805575: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
42204<...>-5340 ( 788) [001] d..2 82315.805581: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
42205<...>-5340 ( 788) [001] d..3 82315.805607: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
42206     ksoftirqd/2-26    (   26) [002] d..2 82315.805617: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42207<...>-5340 ( 788) [001] d..2 82315.805634: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42208          <idle>-0     (-----) [001] d..1 82315.805650: cpu_idle: state=0 cpu_id=1
42209<...>-87 ( 87) [002] d..2 82315.805661: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42210          <idle>-0     (-----) [002] d..1 82315.805676: cpu_idle: state=0 cpu_id=2
42211          <idle>-0     (-----) [002] ...1 82315.806824: cpu_idle: state=4294967295 cpu_id=2
42212          <idle>-0     (-----) [002] d..1 82315.806828: cpu_idle: state=0 cpu_id=2
42213          <idle>-0     (-----) [002] d.h4 82315.806918: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42214          <idle>-0     (-----) [002] dnh5 82315.806935: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42215          <idle>-0     (-----) [002] .n.1 82315.806945: cpu_idle: state=4294967295 cpu_id=2
42216          <idle>-0     (-----) [002] d..2 82315.806956: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42217<...>-86 ( 86) [002] d..2 82315.806994: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42218          <idle>-0     (-----) [002] d..1 82315.807007: cpu_idle: state=0 cpu_id=2
42219          <idle>-0     (-----) [002] d.h4 82315.807682: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42220          <idle>-0     (-----) [002] d.h5 82315.807709: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42221          <idle>-0     (-----) [000] .n.1 82315.807716: cpu_idle: state=4294967295 cpu_id=0
42222          <idle>-0     (-----) [000] d..2 82315.807733: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42223          <idle>-0     (-----) [002] ...1 82315.807746: cpu_idle: state=4294967295 cpu_id=2
42224          <idle>-0     (-----) [002] d..1 82315.807752: cpu_idle: state=0 cpu_id=2
42225<...>-5340 ( 788) [000] d..2 82315.807803: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
42226<...>-5340 ( 788) [000] d..3 82315.807854: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42227          <idle>-0     (-----) [001] .n.1 82315.807860: cpu_idle: state=4294967295 cpu_id=1
42228          <idle>-0     (-----) [001] d..2 82315.807876: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42229<...>-5340 ( 788) [000] d..2 82315.807886: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42230          <idle>-0     (-----) [000] d..1 82315.807900: cpu_idle: state=0 cpu_id=0
42231<...>-87 ( 87) [001] d..2 82315.807925: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42232          <idle>-0     (-----) [001] d..1 82315.807937: cpu_idle: state=0 cpu_id=1
42233          <idle>-0     (-----) [000] d.s2 82315.808475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42234          <idle>-0     (-----) [000] dns3 82315.808492: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42235          <idle>-0     (-----) [000] dns3 82315.808498: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
42236          <idle>-0     (-----) [000] dns4 82315.808510: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
42237          <idle>-0     (-----) [000] .n.1 82315.808522: cpu_idle: state=4294967295 cpu_id=0
42238          <idle>-0     (-----) [000] d..2 82315.808533: 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
42239     rcu_preempt-7     (    7) [000] d..2 82315.808545: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42240     rcu_preempt-7     (    7) [000] d..3 82315.808561: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42241     rcu_preempt-7     (    7) [000] d..2 82315.808571: 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
42242         rcuop/2-29    (   29) [000] d..2 82315.808577: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
42243         rcuop/2-29    (   29) [000] d..3 82315.808588: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
42244         rcuop/2-29    (   29) [000] d..2 82315.808592: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42245         rcuop/2-29    (   29) [000] d..3 82315.808603: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42246         rcuop/2-29    (   29) [000] d..2 82315.808611: 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
42247         rcuop/3-37    (   37) [000] d..2 82315.808632: 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
42248     rcu_preempt-7     (    7) [000] d..2 82315.808644: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42249  kworker/u16:15-1311  ( 1311) [000] d..2 82315.808874: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
42250          <idle>-0     (-----) [000] d..1 82315.808894: cpu_idle: state=0 cpu_id=0
42251          <idle>-0     (-----) [002] d.h4 82315.809125: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42252          <idle>-0     (-----) [002] dnh5 82315.809141: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42253          <idle>-0     (-----) [002] .n.1 82315.809150: cpu_idle: state=4294967295 cpu_id=2
42254          <idle>-0     (-----) [002] d..2 82315.809164: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42255<...>-86 ( 86) [002] d..2 82315.809206: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42256          <idle>-0     (-----) [002] d..1 82315.809220: cpu_idle: state=0 cpu_id=2
42257          <idle>-0     (-----) [001] d.s3 82315.809359: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
42258          <idle>-0     (-----) [001] d.s4 82315.809373: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
42259          <idle>-0     (-----) [001] d.s4 82315.809382: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
42260          <idle>-0     (-----) [000] .n.1 82315.809389: cpu_idle: state=4294967295 cpu_id=0
42261          <idle>-0     (-----) [001] ...1 82315.809393: cpu_idle: state=4294967295 cpu_id=1
42262          <idle>-0     (-----) [001] d..1 82315.809401: cpu_idle: state=0 cpu_id=1
42263          <idle>-0     (-----) [000] d..2 82315.809403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42264  kworker/u16:15-1311  ( 1311) [000] .... 82315.809460: clk_set_rate: l3_cluster0_vote_clk 403200000
42265  kworker/u16:15-1311  ( 1311) [000] .... 82315.809468: clk_set_rate: l3_clk 403200000
42266  kworker/u16:15-1311  ( 1311) [000] d..2 82315.809522: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42267          <idle>-0     (-----) [000] d..1 82315.809537: cpu_idle: state=0 cpu_id=0
42268          <idle>-0     (-----) [002] d.h4 82315.809780: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42269          <idle>-0     (-----) [002] d.h5 82315.809795: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42270          <idle>-0     (-----) [000] .n.1 82315.809801: cpu_idle: state=4294967295 cpu_id=0
42271          <idle>-0     (-----) [000] d..2 82315.809813: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42272          <idle>-0     (-----) [002] ...1 82315.809825: cpu_idle: state=4294967295 cpu_id=2
42273          <idle>-0     (-----) [002] d..1 82315.809833: cpu_idle: state=0 cpu_id=2
42274<...>-5340 ( 788) [000] d..2 82315.809876: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42275<...>-5340 ( 788) [000] d..3 82315.809895: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42276          <idle>-0     (-----) [001] .n.1 82315.809901: cpu_idle: state=4294967295 cpu_id=1
42277          <idle>-0     (-----) [001] d..2 82315.809913: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42278<...>-5340 ( 788) [000] d..2 82315.809919: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42279          <idle>-0     (-----) [000] d..1 82315.809932: cpu_idle: state=0 cpu_id=0
42280<...>-87 ( 87) [001] d..2 82315.809956: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42281          <idle>-0     (-----) [001] d..1 82315.809967: cpu_idle: state=0 cpu_id=1
42282          <idle>-0     (-----) [000] d.h5 82315.810697: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
42283          <idle>-0     (-----) [000] d.h6 82315.810713: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
42284          <idle>-0     (-----) [000] d.h5 82315.810717: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42285          <idle>-0     (-----) [001] .n.1 82315.810719: cpu_idle: state=4294967295 cpu_id=1
42286          <idle>-0     (-----) [000] dnh6 82315.810725: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42287          <idle>-0     (-----) [001] d..2 82315.810729: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
42288          <idle>-0     (-----) [000] .n.1 82315.810738: cpu_idle: state=4294967295 cpu_id=0
42289          <idle>-0     (-----) [000] d..2 82315.810750: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
42290  crtc_event:111-322   (  322) [001] d..2 82315.810761: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42291          <idle>-0     (-----) [001] d..1 82315.810770: cpu_idle: state=0 cpu_id=1
42292 crtc_commit:111-321   (  321) [000] d..2 82315.810892: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
42293          <idle>-0     (-----) [000] d..1 82315.810902: cpu_idle: state=0 cpu_id=0
42294          <idle>-0     (-----) [002] d.h4 82315.811149: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42295          <idle>-0     (-----) [002] dnh5 82315.811159: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42296          <idle>-0     (-----) [002] .n.1 82315.811168: cpu_idle: state=4294967295 cpu_id=2
42297          <idle>-0     (-----) [002] d..2 82315.811179: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42298<...>-86 ( 86) [002] d..2 82315.811214: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42299          <idle>-0     (-----) [002] d..1 82315.811226: cpu_idle: state=0 cpu_id=2
42300          <idle>-0     (-----) [002] d.h4 82315.811680: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42301          <idle>-0     (-----) [002] d.h5 82315.811695: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42302          <idle>-0     (-----) [000] .n.1 82315.811700: cpu_idle: state=4294967295 cpu_id=0
42303          <idle>-0     (-----) [000] d..2 82315.811710: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42304          <idle>-0     (-----) [002] ...1 82315.811726: cpu_idle: state=4294967295 cpu_id=2
42305          <idle>-0     (-----) [002] d..1 82315.811731: cpu_idle: state=0 cpu_id=2
42306<...>-5340 ( 788) [000] d.H2 82315.811895: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
42307<...>-5340 ( 788) [000] d.H3 82315.811916: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
42308          <idle>-0     (-----) [001] .n.1 82315.811921: cpu_idle: state=4294967295 cpu_id=1
42309<...>-5340 ( 788) [000] d.s2 82315.811923: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
42310          <idle>-0     (-----) [001] d..2 82315.811935: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
42311<...>-5340 ( 788) [000] d.s3 82315.811953: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42312          <idle>-0     (-----) [003] .n.1 82315.811960: cpu_idle: state=4294967295 cpu_id=3
42313<...>-5340 ( 788) [000] d..2 82315.811969: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42314          <idle>-0     (-----) [003] d..2 82315.811973: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
42315         sugov:0-576   (  576) [001] .... 82315.811978: clk_set_rate: pwrcl_clk 825600000
42316         sugov:0-576   (  576) [001] .... 82315.811989: clk_set_rate: cpu3_pwrcl_clk 979200000
42317         sugov:0-576   (  576) [001] .... 82315.812002: clk_set_rate: cpu2_pwrcl_clk 979200000
42318<...>-5340 ( 788) [000] d..3 82315.812007: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
42319         sugov:0-576   (  576) [001] .... 82315.812010: clk_set_rate: cpu1_pwrcl_clk 979200000
42320  crtc_event:111-322   (  322) [003] d..2 82315.812017: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42321         sugov:0-576   (  576) [001] .... 82315.812019: clk_set_rate: cpu0_pwrcl_clk 825600000
42322<...>-5340 ( 788) [000] d..2 82315.812055: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42323          <idle>-0     (-----) [000] d..1 82315.812074: cpu_idle: state=0 cpu_id=0
42324<...>-87 ( 87) [003] d..2 82315.812084: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42325          <idle>-0     (-----) [003] d..1 82315.812096: cpu_idle: state=0 cpu_id=3
42326         sugov:0-576   (  576) [001] .... 82315.812136: cpu_frequency: state=825600 cpu_id=0
42327         sugov:0-576   (  576) [001] .... 82315.812163: cpu_frequency: state=825600 cpu_id=1
42328         sugov:0-576   (  576) [001] .... 82315.812168: cpu_frequency: state=825600 cpu_id=2
42329         sugov:0-576   (  576) [001] .... 82315.812172: cpu_frequency: state=825600 cpu_id=3
42330         sugov:0-576   (  576) [001] d..2 82315.812207: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42331          <idle>-0     (-----) [001] d..1 82315.812223: cpu_idle: state=0 cpu_id=1
42332          <idle>-0     (-----) [000] d.h5 82315.813029: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42333          <idle>-0     (-----) [000] dnh6 82315.813044: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42334          <idle>-0     (-----) [000] .n.1 82315.813058: cpu_idle: state=4294967295 cpu_id=0
42335          <idle>-0     (-----) [000] d..2 82315.813066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
42336          <idle>-0     (-----) [002] d.h4 82315.813119: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42337          <idle>-0     (-----) [002] dnh5 82315.813133: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42338          <idle>-0     (-----) [002] .n.1 82315.813143: cpu_idle: state=4294967295 cpu_id=2
42339 crtc_commit:111-321   (  321) [000] d..2 82315.813146: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42340          <idle>-0     (-----) [000] d..1 82315.813156: cpu_idle: state=0 cpu_id=0
42341          <idle>-0     (-----) [002] d..2 82315.813157: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42342<...>-86 ( 86) [002] d..2 82315.813197: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42343          <idle>-0     (-----) [002] d..1 82315.813210: cpu_idle: state=0 cpu_id=2
42344          <idle>-0     (-----) [000] d.h5 82315.813330: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42345          <idle>-0     (-----) [000] d.h6 82315.813349: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42346          <idle>-0     (-----) [003] .n.1 82315.813355: cpu_idle: state=4294967295 cpu_id=3
42347          <idle>-0     (-----) [003] d..2 82315.813366: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
42348          <idle>-0     (-----) [000] ...1 82315.813366: cpu_idle: state=4294967295 cpu_id=0
42349          <idle>-0     (-----) [000] d..1 82315.813371: cpu_idle: state=0 cpu_id=0
42350  crtc_event:111-322   (  322) [003] d..2 82315.813393: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42351          <idle>-0     (-----) [003] d..1 82315.813402: cpu_idle: state=0 cpu_id=3
42352          <idle>-0     (-----) [003] d.h2 82315.813690: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
42353          <idle>-0     (-----) [003] dnh3 82315.813708: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
42354          <idle>-0     (-----) [003] .n.1 82315.813717: cpu_idle: state=4294967295 cpu_id=3
42355          <idle>-0     (-----) [003] d..2 82315.813727: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
42356        DispSync-8879  ( 8858) [003] d..1 82315.813749: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
42357          <idle>-0     (-----) [002] d.h4 82315.813753: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42358        DispSync-8879  ( 8858) [003] d..2 82315.813766: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
42359          <idle>-0     (-----) [002] d.h5 82315.813770: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42360        DispSync-8879  ( 8858) [003] d..1 82315.813773: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
42361          <idle>-0     (-----) [001] .n.1 82315.813773: cpu_idle: state=4294967295 cpu_id=1
42362          <idle>-0     (-----) [000] .n.1 82315.813775: cpu_idle: state=4294967295 cpu_id=0
42363          <idle>-0     (-----) [001] d..2 82315.813784: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
42364          <idle>-0     (-----) [000] d..2 82315.813787: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42365        DispSync-8879  ( 8858) [003] d..2 82315.813802: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
42366          <idle>-0     (-----) [002] .n.1 82315.813814: cpu_idle: state=4294967295 cpu_id=2
42367          <idle>-0     (-----) [002] d..2 82315.813825: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
42368   sfEventThread-8882  ( 8858) [001] d..3 82315.813834: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
42369        DispSync-8879  ( 8858) [003] d..2 82315.813841: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42370<...>-5340 ( 788) [000] d..2 82315.813848: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
42371          <idle>-0     (-----) [003] d..1 82315.813856: cpu_idle: state=0 cpu_id=3
42372          <idle>-0     (-----) [004] dnh2 82315.813865: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
42373   sfEventThread-8882  ( 8858) [001] d..3 82315.813866: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42374<...>-5340 ( 788) [000] d..3 82315.813867: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
42375          <idle>-0     (-----) [004] .n.1 82315.813870: cpu_idle: state=4294967295 cpu_id=4
42376          <idle>-0     (-----) [003] .n.1 82315.813873: cpu_idle: state=4294967295 cpu_id=3
42377  appEventThread-8881  ( 8858) [002] d..1 82315.813877: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
42378          <idle>-0     (-----) [004] d..2 82315.813879: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
42379   sfEventThread-8882  ( 8858) [001] d..4 82315.813884: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42380          <idle>-0     (-----) [003] d..2 82315.813892: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
42381<...>-5340 ( 788) [000] d..2 82315.813920: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42382  appEventThread-8881  ( 8858) [002] d..2 82315.813932: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
42383          <idle>-0     (-----) [000] d..2 82315.813939: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
42384   sfEventThread-8882  ( 8858) [001] d..2 82315.813958: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42385  appEventThread-8881  ( 8858) [002] d..2 82315.813984: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42386        DispSync-8879  ( 8858) [000] d..2 82315.813990: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42387          <idle>-0     (-----) [002] d..1 82315.814001: cpu_idle: state=0 cpu_id=2
42388          <idle>-0     (-----) [000] d..1 82315.814002: cpu_idle: state=0 cpu_id=0
42389<...>-87 ( 87) [001] d..2 82315.814007: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42390          <idle>-0     (-----) [001] d..1 82315.814025: cpu_idle: state=0 cpu_id=1
42391<...>-9006 ( 8943) [004] .... 82315.814097: binder_transaction: transaction=1569066 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
42392<...>-9006 ( 8943) [004] .... 82315.814102: binder_transaction_alloc_buf: transaction=1569066 data_size=80 offsets_size=0
42393<...>-9006 ( 8943) [004] d..4 82315.814107: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
42394<...>-9006 ( 8943) [004] d.h5 82315.814166: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
42395          <idle>-0     (-----) [000] dnh2 82315.814170: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
42396          <idle>-0     (-----) [000] .n.1 82315.814178: cpu_idle: state=4294967295 cpu_id=0
42397          <idle>-0     (-----) [000] d..2 82315.814188: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
42398          <idle>-0     (-----) [001] dnh2 82315.814190: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
42399<...>-8874 ( 8858) [000] .... 82315.814196: binder_transaction_received: transaction=1569066
42400          <idle>-0     (-----) [001] .n.1 82315.814199: cpu_idle: state=4294967295 cpu_id=1
42401          <idle>-0     (-----) [001] d..2 82315.814209: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
42402<...>-8874 ( 8858) [000] d..1 82315.814232: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
42403         sugov:0-576   (  576) [001] .... 82315.814234: clk_set_rate: pwrcl_clk 902400000
42404         sugov:0-576   (  576) [001] .... 82315.814243: clk_set_rate: cpu3_pwrcl_clk 825600000
42405         sugov:0-576   (  576) [001] .... 82315.814253: clk_set_rate: cpu2_pwrcl_clk 825600000
42406<...>-8874 ( 8858) [000] d..2 82315.814259: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
42407         sugov:0-576   (  576) [001] .... 82315.814262: clk_set_rate: cpu1_pwrcl_clk 825600000
42408          <idle>-0     (-----) [002] .n.1 82315.814267: cpu_idle: state=4294967295 cpu_id=2
42409         sugov:0-576   (  576) [001] .... 82315.814270: clk_set_rate: cpu0_pwrcl_clk 902400000
42410          <idle>-0     (-----) [002] d..2 82315.814278: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
42411         sugov:0-576   (  576) [001] .... 82315.814279: cpu_frequency: state=902400 cpu_id=0
42412         sugov:0-576   (  576) [001] .... 82315.814296: cpu_frequency: state=902400 cpu_id=1
42413         sugov:0-576   (  576) [001] .... 82315.814301: cpu_frequency: state=902400 cpu_id=2
42414         sugov:0-576   (  576) [001] .... 82315.814305: cpu_frequency: state=902400 cpu_id=3
42415<...>-8874 ( 8858) [000] d..2 82315.814311: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42416          <idle>-0     (-----) [000] d..1 82315.814322: cpu_idle: state=0 cpu_id=0
42417<...>-9006 ( 8943) [004] .... 82315.814323: binder_transaction: transaction=1569067 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
42418<...>-9006 ( 8943) [004] .... 82315.814327: binder_transaction_alloc_buf: transaction=1569067 data_size=988 offsets_size=48
42419   sfEventThread-8882  ( 8858) [002] d..2 82315.814329: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42420         sugov:0-576   (  576) [001] d..2 82315.814333: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42421  surfaceflinger-8858  ( 8858) [003] d..1 82315.814337: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
42422          <idle>-0     (-----) [002] d..1 82315.814341: cpu_idle: state=0 cpu_id=2
42423<...>-9006 ( 8943) [004] ...2 82315.814344: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
42424          <idle>-0     (-----) [001] d..1 82315.814347: cpu_idle: state=0 cpu_id=1
42425<...>-9006 ( 8943) [004] d..4 82315.814347: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=000
42426  surfaceflinger-8858  ( 8858) [003] d..2 82315.814358: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
42427          <idle>-0     (-----) [002] .n.1 82315.814364: cpu_idle: state=4294967295 cpu_id=2
42428<...>-9006 ( 8943) [004] dn.5 82315.814368: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
42429          <idle>-0     (-----) [002] d..2 82315.814373: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
42430<...>-9006 ( 8943) [004] d..2 82315.814406: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
42431   sfEventThread-8882  ( 8858) [002] d..2 82315.814418: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42432<...>-8874 ( 8858) [004] .... 82315.814419: binder_transaction_received: transaction=1569067
42433          <idle>-0     (-----) [002] d..1 82315.814429: cpu_idle: state=0 cpu_id=2
42434<...>-8874 ( 8858) [004] .... 82315.814522: binder_transaction: transaction=1569068 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
42435<...>-8874 ( 8858) [004] .... 82315.814525: binder_transaction_alloc_buf: transaction=1569068 data_size=0 offsets_size=0
42436<...>-8874 ( 8858) [004] .... 82315.814528: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
42437<...>-8874 ( 8858) [004] d..2 82315.814569: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
42438<...>-9006 ( 8943) [004] .... 82315.814580: binder_transaction_received: transaction=1569068
42439<...>-9006 ( 8943) [004] d..2 82315.814677: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
42440          <idle>-0     (-----) [004] d..1 82315.814692: cpu_idle: state=0 cpu_id=4
42441          <idle>-0     (-----) [002] d.h4 82315.815092: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42442          <idle>-0     (-----) [002] dnh5 82315.815106: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42443          <idle>-0     (-----) [002] .n.1 82315.815119: cpu_idle: state=4294967295 cpu_id=2
42444          <idle>-0     (-----) [002] d..2 82315.815133: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42445          <idle>-0     (-----) [000] d.s2 82315.815140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42446          <idle>-0     (-----) [000] dns3 82315.815160: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42447<...>-86 ( 86) [002] d..2 82315.815176: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42448          <idle>-0     (-----) [000] .n.1 82315.815178: cpu_idle: state=4294967295 cpu_id=0
42449          <idle>-0     (-----) [000] d..2 82315.815188: 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
42450          <idle>-0     (-----) [002] d..1 82315.815189: cpu_idle: state=0 cpu_id=2
42451     rcu_preempt-7     (    7) [000] d..2 82315.815220: 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
42452          <idle>-0     (-----) [000] d..1 82315.815234: cpu_idle: state=0 cpu_id=0
42453          <idle>-0     (-----) [002] d.h4 82315.815588: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42454          <idle>-0     (-----) [002] d.h5 82315.815605: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42455          <idle>-0     (-----) [000] .n.1 82315.815610: cpu_idle: state=4294967295 cpu_id=0
42456          <idle>-0     (-----) [000] d..2 82315.815623: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42457          <idle>-0     (-----) [002] ...1 82315.815639: cpu_idle: state=4294967295 cpu_id=2
42458          <idle>-0     (-----) [002] d..1 82315.815644: cpu_idle: state=0 cpu_id=2
42459<...>-5340 ( 788) [000] d..2 82315.815677: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42460<...>-5340 ( 788) [000] d..3 82315.815696: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42461          <idle>-0     (-----) [001] .n.1 82315.815703: cpu_idle: state=4294967295 cpu_id=1
42462          <idle>-0     (-----) [001] d..2 82315.815716: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42463<...>-5340 ( 788) [000] d..2 82315.815721: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42464          <idle>-0     (-----) [000] d..1 82315.815736: cpu_idle: state=0 cpu_id=0
42465<...>-87 ( 87) [001] d..2 82315.815764: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42466          <idle>-0     (-----) [001] d..1 82315.815776: cpu_idle: state=0 cpu_id=1
42467  surfaceflinger-8858  ( 8858) [003] ...1 82315.815833: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
42468  surfaceflinger-8858  ( 8858) [003] ...1 82315.815843: tracing_mark_write: E|8858
42469  surfaceflinger-8858  ( 8858) [003] .... 82315.815903: binder_transaction: transaction=1569069 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
42470  surfaceflinger-8858  ( 8858) [003] .... 82315.815909: binder_transaction_alloc_buf: transaction=1569069 data_size=620 offsets_size=112
42471  surfaceflinger-8858  ( 8858) [003] ...2 82315.815936: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
42472  surfaceflinger-8858  ( 8858) [003] d..4 82315.815942: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
42473  surfaceflinger-8858  ( 8858) [003] d..5 82315.815966: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
42474          <idle>-0     (-----) [002] .n.1 82315.815971: cpu_idle: state=4294967295 cpu_id=2
42475          <idle>-0     (-----) [002] d..2 82315.815983: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
42476 [email protected]   (  619) [002] .... 82315.815995: binder_transaction_received: transaction=1569069
42477  surfaceflinger-8858  ( 8858) [003] d..2 82315.816000: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42478          <idle>-0     (-----) [003] d..1 82315.816019: cpu_idle: state=0 cpu_id=3
42479 [email protected]   (  619) [002] ...1 82315.816041: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
42480 [email protected]   (  619) [002] ...1 82315.816201: tracing_mark_write: B|619|HWCSession::PresentDisplay::
42481 [email protected]   (  619) [002] d.h3 82315.816905: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42482 [email protected]   (  619) [002] d.h4 82315.816933: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42483 [email protected]   (  619) [002] ...1 82315.817002: tracing_mark_write: B|619|HWDeviceDRM::Validate::
42484 [email protected]   (  619) [002] d.h3 82315.817387: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42485 [email protected]   (  619) [002] d.h4 82315.817410: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42486          <idle>-0     (-----) [000] .n.1 82315.817416: cpu_idle: state=4294967295 cpu_id=0
42487          <idle>-0     (-----) [000] d..2 82315.817430: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42488<...>-5340 ( 788) [000] d..2 82315.817476: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42489<...>-5340 ( 788) [000] d..3 82315.817494: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42490          <idle>-0     (-----) [001] .n.1 82315.817501: cpu_idle: state=4294967295 cpu_id=1
42491          <idle>-0     (-----) [001] d..2 82315.817513: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42492<...>-5340 ( 788) [000] d..2 82315.817524: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42493          <idle>-0     (-----) [000] d..1 82315.817537: cpu_idle: state=0 cpu_id=0
42494<...>-87 ( 87) [001] d..2 82315.817559: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42495          <idle>-0     (-----) [001] d..1 82315.817570: cpu_idle: state=0 cpu_id=1
42496 [email protected]   (  619) [002] ...1 82315.817695: tracing_mark_write: E|619
42497 [email protected]   (  619) [002] ...1 82315.817894: tracing_mark_write: B|619|HWDeviceDRM::Commit::
42498 [email protected]   (  619) [002] ...1 82315.817907: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
42499 [email protected]   (  619) [002] d.s2 82315.818488: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
42500 [email protected]   (  619) [002] d.s3 82315.818533: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
42501 [email protected]   (  619) [002] d..2 82315.818592: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42502 [email protected]   (  619) [002] d..3 82315.818612: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42503          <idle>-0     (-----) [000] .n.1 82315.818618: cpu_idle: state=4294967295 cpu_id=0
42504          <idle>-0     (-----) [000] d..2 82315.818632: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
42505 [email protected]   (  619) [002] ...1 82315.818743: tracing_mark_write: E|619
42506 [email protected]   (  619) [002] ...1 82315.818750: tracing_mark_write: E|619
42507 [email protected]   (  619) [002] ...1 82315.818806: tracing_mark_write: E|619
42508 [email protected]   (  619) [002] ...1 82315.818856: tracing_mark_write: E|619
42509 [email protected]   (  619) [002] .... 82315.818874: binder_transaction: transaction=1569070 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
42510 [email protected]   (  619) [002] .... 82315.818879: binder_transaction_alloc_buf: transaction=1569070 data_size=736 offsets_size=144
42511 [email protected]   (  619) [002] d..2 82315.818904: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42512 [email protected]   (  619) [002] d..3 82315.818923: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42513 [email protected]   (  619) [002] .... 82315.818928: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
42514          <idle>-0     (-----) [003] .n.1 82315.818930: cpu_idle: state=4294967295 cpu_id=3
42515          <idle>-0     (-----) [003] d..2 82315.818943: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
42516  surfaceflinger-8858  ( 8858) [003] .... 82315.818953: binder_transaction_received: transaction=1569070
42517 [email protected]   (  619) [002] d..2 82315.819013: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42518<...>-86 ( 86) [002] d..2 82315.819056: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42519  kworker/u16:15-1311  ( 1311) [002] d..2 82315.819274: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42520          <idle>-0     (-----) [002] d..1 82315.819294: cpu_idle: state=0 cpu_id=2
42521          <idle>-0     (-----) [002] d.h4 82315.819328: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42522          <idle>-0     (-----) [002] d.h5 82315.819356: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42523          <idle>-0     (-----) [001] .n.1 82315.819361: cpu_idle: state=4294967295 cpu_id=1
42524          <idle>-0     (-----) [001] d..2 82315.819373: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42525          <idle>-0     (-----) [002] ...1 82315.819393: cpu_idle: state=4294967295 cpu_id=2
42526          <idle>-0     (-----) [002] d..1 82315.819399: cpu_idle: state=0 cpu_id=2
42527  surfaceflinger-8858  ( 8858) [003] d..2 82315.819405: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42528          <idle>-0     (-----) [003] d..1 82315.819425: cpu_idle: state=0 cpu_id=3
42529<...>-5340 ( 788) [001] d..2 82315.819428: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42530<...>-5340 ( 788) [001] d..3 82315.819470: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42531<...>-5340 ( 788) [001] d..2 82315.819499: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42532          <idle>-0     (-----) [001] d..1 82315.819516: cpu_idle: state=0 cpu_id=1
42533 crtc_commit:111-321   (  321) [000] d..2 82315.820587: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42534<...>-87 ( 87) [000] d..2 82315.820639: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42535          <idle>-0     (-----) [000] d..1 82315.820651: cpu_idle: state=0 cpu_id=0
42536          <idle>-0     (-----) [002] d.h4 82315.821518: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42537          <idle>-0     (-----) [002] dnh5 82315.821534: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42538          <idle>-0     (-----) [002] .n.1 82315.821543: cpu_idle: state=4294967295 cpu_id=2
42539          <idle>-0     (-----) [002] d..2 82315.821555: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42540<...>-86 ( 86) [002] d..2 82315.821594: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42541          <idle>-0     (-----) [002] d..1 82315.821608: cpu_idle: state=0 cpu_id=2
42542          <idle>-0     (-----) [000] d.s2 82315.821807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42543          <idle>-0     (-----) [000] dns3 82315.821826: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42544          <idle>-0     (-----) [000] .n.1 82315.821835: cpu_idle: state=4294967295 cpu_id=0
42545          <idle>-0     (-----) [000] d..2 82315.821844: 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
42546     rcu_preempt-7     (    7) [000] d..2 82315.821853: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42547     rcu_preempt-7     (    7) [000] d..3 82315.821871: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42548     rcu_preempt-7     (    7) [000] d..2 82315.821883: 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
42549         rcuop/2-29    (   29) [000] d..2 82315.821888: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
42550         rcuop/2-29    (   29) [000] d..3 82315.821902: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
42551         rcuop/2-29    (   29) [000] d..2 82315.821906: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42552         rcuop/2-29    (   29) [000] d..3 82315.821916: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42553         rcuop/2-29    (   29) [000] d..2 82315.821925: 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
42554         rcuop/3-37    (   37) [000] d..2 82315.821941: 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
42555     rcu_preempt-7     (    7) [000] d..2 82315.821970: 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
42556          <idle>-0     (-----) [000] d..1 82315.821985: cpu_idle: state=0 cpu_id=0
42557          <idle>-0     (-----) [002] d.h4 82315.822150: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42558          <idle>-0     (-----) [002] d.h5 82315.822177: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42559          <idle>-0     (-----) [000] .n.1 82315.822183: cpu_idle: state=4294967295 cpu_id=0
42560          <idle>-0     (-----) [000] d..2 82315.822195: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42561          <idle>-0     (-----) [002] ...1 82315.822212: cpu_idle: state=4294967295 cpu_id=2
42562          <idle>-0     (-----) [002] d..1 82315.822217: cpu_idle: state=0 cpu_id=2
42563<...>-5340 ( 788) [000] d..2 82315.822251: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42564<...>-5340 ( 788) [000] d..3 82315.822273: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42565<...>-5340 ( 788) [000] d..2 82315.822285: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42566<...>-87 ( 87) [000] d..2 82315.822327: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42567          <idle>-0     (-----) [000] d..1 82315.822342: cpu_idle: state=0 cpu_id=0
42568          <idle>-0     (-----) [002] d.h4 82315.823457: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42569          <idle>-0     (-----) [002] dnh5 82315.823468: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42570          <idle>-0     (-----) [002] .n.1 82315.823476: cpu_idle: state=4294967295 cpu_id=2
42571          <idle>-0     (-----) [002] d..2 82315.823489: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42572<...>-86 ( 86) [002] d..2 82315.823528: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42573          <idle>-0     (-----) [002] d..1 82315.823541: cpu_idle: state=0 cpu_id=2
42574          <idle>-0     (-----) [002] d.h4 82315.824071: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42575          <idle>-0     (-----) [002] d.h5 82315.824086: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42576          <idle>-0     (-----) [000] .n.1 82315.824092: cpu_idle: state=4294967295 cpu_id=0
42577          <idle>-0     (-----) [000] d..2 82315.824105: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42578          <idle>-0     (-----) [002] ...1 82315.824120: cpu_idle: state=4294967295 cpu_id=2
42579          <idle>-0     (-----) [002] d..1 82315.824125: cpu_idle: state=0 cpu_id=2
42580<...>-5340 ( 788) [000] d..2 82315.824201: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42581<...>-5340 ( 788) [000] d..3 82315.824224: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42582<...>-5340 ( 788) [000] d..2 82315.824238: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42583<...>-87 ( 87) [000] d..2 82315.824279: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42584          <idle>-0     (-----) [000] d..1 82315.824295: cpu_idle: state=0 cpu_id=0
42585          <idle>-0     (-----) [002] d.h4 82315.825397: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42586          <idle>-0     (-----) [002] dnh5 82315.825407: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42587          <idle>-0     (-----) [002] .n.1 82315.825415: cpu_idle: state=4294967295 cpu_id=2
42588          <idle>-0     (-----) [002] d..2 82315.825429: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42589<...>-86 ( 86) [002] d..2 82315.825471: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42590          <idle>-0     (-----) [002] d..2 82315.825476: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
42591          <idle>-0     (-----) [002] dn.3 82315.825487: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
42592          <idle>-0     (-----) [002] d..2 82315.825496: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
42593     ksoftirqd/2-26    (   26) [002] d.s2 82315.825506: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
42594     ksoftirqd/2-26    (   26) [002] d.s3 82315.825521: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
42595     ksoftirqd/2-26    (   26) [002] d..2 82315.825533: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42596  kworker/u16:15-1311  ( 1311) [002] d..2 82315.825736: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
42597          <idle>-0     (-----) [002] d..1 82315.825754: cpu_idle: state=0 cpu_id=2
42598          <idle>-0     (-----) [001] d.s3 82315.825764: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
42599          <idle>-0     (-----) [001] d.s4 82315.825777: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
42600          <idle>-0     (-----) [001] d.s4 82315.825786: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
42601          <idle>-0     (-----) [002] .n.1 82315.825794: cpu_idle: state=4294967295 cpu_id=2
42602          <idle>-0     (-----) [001] ...1 82315.825796: cpu_idle: state=4294967295 cpu_id=1
42603          <idle>-0     (-----) [001] d..1 82315.825802: cpu_idle: state=0 cpu_id=1
42604          <idle>-0     (-----) [002] d..2 82315.825806: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42605  kworker/u16:15-1311  ( 1311) [002] d..2 82315.825838: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42606          <idle>-0     (-----) [002] d..1 82315.825849: cpu_idle: state=0 cpu_id=2
42607          <idle>-0     (-----) [002] d.h4 82315.825951: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42608          <idle>-0     (-----) [002] d.h5 82315.825969: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42609          <idle>-0     (-----) [000] .n.1 82315.825975: cpu_idle: state=4294967295 cpu_id=0
42610          <idle>-0     (-----) [000] d..2 82315.825990: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42611          <idle>-0     (-----) [002] ...1 82315.826007: cpu_idle: state=4294967295 cpu_id=2
42612          <idle>-0     (-----) [002] d..1 82315.826012: cpu_idle: state=0 cpu_id=2
42613<...>-5340 ( 788) [000] d..2 82315.826038: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42614<...>-5340 ( 788) [000] d..3 82315.826061: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42615<...>-5340 ( 788) [000] d..2 82315.826073: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42616<...>-87 ( 87) [000] d..2 82315.826118: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42617          <idle>-0     (-----) [000] d..1 82315.826129: cpu_idle: state=0 cpu_id=0
42618          <idle>-0     (-----) [000] d.h5 82315.827170: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42619          <idle>-0     (-----) [000] d.h6 82315.827188: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42620          <idle>-0     (-----) [000] d.h5 82315.827193: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42621          <idle>-0     (-----) [003] .n.1 82315.827195: cpu_idle: state=4294967295 cpu_id=3
42622          <idle>-0     (-----) [000] dnh6 82315.827201: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42623          <idle>-0     (-----) [003] d..2 82315.827208: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
42624          <idle>-0     (-----) [000] .n.1 82315.827225: cpu_idle: state=4294967295 cpu_id=0
42625          <idle>-0     (-----) [000] d..2 82315.827233: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
42626  crtc_event:111-322   (  322) [003] d..2 82315.827245: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42627          <idle>-0     (-----) [003] d..1 82315.827256: cpu_idle: state=0 cpu_id=3
42628 crtc_commit:111-321   (  321) [000] d..2 82315.827391: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
42629          <idle>-0     (-----) [000] d..1 82315.827402: cpu_idle: state=0 cpu_id=0
42630          <idle>-0     (-----) [002] d.h4 82315.827445: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42631          <idle>-0     (-----) [002] dnh5 82315.827456: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42632          <idle>-0     (-----) [002] .n.1 82315.827464: cpu_idle: state=4294967295 cpu_id=2
42633          <idle>-0     (-----) [002] d..2 82315.827476: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42634<...>-86 ( 86) [002] d..2 82315.827515: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42635          <idle>-0     (-----) [002] d..1 82315.827528: cpu_idle: state=0 cpu_id=2
42636          <idle>-0     (-----) [002] d.h4 82315.828117: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42637          <idle>-0     (-----) [002] d.h5 82315.828136: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42638          <idle>-0     (-----) [000] .n.1 82315.828142: cpu_idle: state=4294967295 cpu_id=0
42639          <idle>-0     (-----) [000] d..2 82315.828153: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42640          <idle>-0     (-----) [002] ...1 82315.828174: cpu_idle: state=4294967295 cpu_id=2
42641          <idle>-0     (-----) [002] d..1 82315.828179: cpu_idle: state=0 cpu_id=2
42642<...>-5340 ( 788) [000] d..2 82315.828202: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42643<...>-5340 ( 788) [000] d..3 82315.828226: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42644<...>-5340 ( 788) [000] d..2 82315.828240: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42645<...>-87 ( 87) [000] d..2 82315.828285: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42646          <idle>-0     (-----) [000] d..1 82315.828296: cpu_idle: state=0 cpu_id=0
42647          <idle>-0     (-----) [000] d.s3 82315.828474: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42648          <idle>-0     (-----) [000] d.s4 82315.828492: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42649          <idle>-0     (-----) [000] d.s2 82315.828495: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42650          <idle>-0     (-----) [003] .n.1 82315.828498: cpu_idle: state=4294967295 cpu_id=3
42651          <idle>-0     (-----) [003] d..2 82315.828509: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
42652          <idle>-0     (-----) [000] dns3 82315.828511: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42653          <idle>-0     (-----) [000] dns3 82315.828517: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
42654  crtc_event:111-322   (  322) [003] d..2 82315.828543: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42655          <idle>-0     (-----) [003] d..1 82315.828553: cpu_idle: state=0 cpu_id=3
42656          <idle>-0     (-----) [000] dns4 82315.828560: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
42657          <idle>-0     (-----) [003] .n.1 82315.828566: cpu_idle: state=4294967295 cpu_id=3
42658          <idle>-0     (-----) [000] .n.1 82315.828573: cpu_idle: state=4294967295 cpu_id=0
42659          <idle>-0     (-----) [003] d..2 82315.828578: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42660          <idle>-0     (-----) [000] d..2 82315.828584: 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
42661     rcu_preempt-7     (    7) [000] d..2 82315.828614: 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
42662          <idle>-0     (-----) [000] d..1 82315.828660: cpu_idle: state=0 cpu_id=0
42663  kworker/u16:15-1311  ( 1311) [003] d..2 82315.828852: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
42664          <idle>-0     (-----) [003] d..1 82315.828868: cpu_idle: state=0 cpu_id=3
42665          <idle>-0     (-----) [001] d.s3 82315.828881: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
42666          <idle>-0     (-----) [001] d.s4 82315.828891: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
42667          <idle>-0     (-----) [001] d.s4 82315.828900: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
42668          <idle>-0     (-----) [003] .n.1 82315.828906: cpu_idle: state=4294967295 cpu_id=3
42669          <idle>-0     (-----) [001] ...1 82315.828909: cpu_idle: state=4294967295 cpu_id=1
42670          <idle>-0     (-----) [001] d..1 82315.828915: cpu_idle: state=0 cpu_id=1
42671          <idle>-0     (-----) [003] d..2 82315.828919: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42672  kworker/u16:15-1311  ( 1311) [003] .... 82315.828972: clk_set_rate: l3_cluster0_vote_clk 300000000
42673  kworker/u16:15-1311  ( 1311) [003] .... 82315.828982: clk_set_rate: l3_clk 300000000
42674  kworker/u16:15-1311  ( 1311) [003] d..2 82315.829039: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42675          <idle>-0     (-----) [003] d..1 82315.829054: cpu_idle: state=0 cpu_id=3
42676          <idle>-0     (-----) [000] d.h5 82315.829503: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42677          <idle>-0     (-----) [000] dnh6 82315.829516: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42678          <idle>-0     (-----) [000] .n.1 82315.829529: cpu_idle: state=4294967295 cpu_id=0
42679          <idle>-0     (-----) [000] d..2 82315.829540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
42680 crtc_commit:111-321   (  321) [000] d..2 82315.829621: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42681          <idle>-0     (-----) [000] d..1 82315.829636: cpu_idle: state=0 cpu_id=0
42682          <idle>-0     (-----) [002] d.h4 82315.829777: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42683          <idle>-0     (-----) [002] dnh5 82315.829794: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42684          <idle>-0     (-----) [000] d.h5 82315.829803: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42685          <idle>-0     (-----) [002] .n.1 82315.829804: cpu_idle: state=4294967295 cpu_id=2
42686          <idle>-0     (-----) [002] d..2 82315.829817: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42687          <idle>-0     (-----) [000] d.h6 82315.829821: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42688          <idle>-0     (-----) [003] .n.1 82315.829827: cpu_idle: state=4294967295 cpu_id=3
42689          <idle>-0     (-----) [003] d..2 82315.829840: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
42690          <idle>-0     (-----) [000] ...1 82315.829843: cpu_idle: state=4294967295 cpu_id=0
42691          <idle>-0     (-----) [000] d..1 82315.829848: cpu_idle: state=0 cpu_id=0
42692<...>-86 ( 86) [002] d..2 82315.829858: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42693          <idle>-0     (-----) [002] d..1 82315.829871: cpu_idle: state=0 cpu_id=2
42694  crtc_event:111-322   (  322) [003] d..2 82315.829873: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42695          <idle>-0     (-----) [003] d..1 82315.829883: cpu_idle: state=0 cpu_id=3
42696          <idle>-0     (-----) [000] d.h2 82315.830106: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
42697          <idle>-0     (-----) [000] dnh3 82315.830119: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
42698          <idle>-0     (-----) [000] .n.1 82315.830127: cpu_idle: state=4294967295 cpu_id=0
42699          <idle>-0     (-----) [000] d..2 82315.830138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
42700        DispSync-8879  ( 8858) [000] d..1 82315.830165: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
42701        DispSync-8879  ( 8858) [000] d..2 82315.830182: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
42702          <idle>-0     (-----) [002] .n.1 82315.830188: cpu_idle: state=4294967295 cpu_id=2
42703          <idle>-0     (-----) [002] d..2 82315.830200: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
42704        DispSync-8879  ( 8858) [000] d..2 82315.830222: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42705          <idle>-0     (-----) [000] d..1 82315.830237: cpu_idle: state=0 cpu_id=0
42706   sfEventThread-8882  ( 8858) [002] d..3 82315.830262: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
42707          <idle>-0     (-----) [004] dnh2 82315.830296: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
42708          <idle>-0     (-----) [004] .n.1 82315.830301: cpu_idle: state=4294967295 cpu_id=4
42709   sfEventThread-8882  ( 8858) [002] d..3 82315.830306: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42710          <idle>-0     (-----) [004] d..2 82315.830311: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
42711   sfEventThread-8882  ( 8858) [002] d..4 82315.830328: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42712          <idle>-0     (-----) [003] .n.1 82315.830333: cpu_idle: state=4294967295 cpu_id=3
42713          <idle>-0     (-----) [003] d..2 82315.830345: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
42714   sfEventThread-8882  ( 8858) [002] d.h4 82315.830376: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42715   sfEventThread-8882  ( 8858) [002] d.h5 82315.830396: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42716          <idle>-0     (-----) [000] .n.1 82315.830402: cpu_idle: state=4294967295 cpu_id=0
42717          <idle>-0     (-----) [000] d..2 82315.830417: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42718   sfEventThread-8882  ( 8858) [002] d..2 82315.830460: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42719<...>-5340 ( 788) [000] d..2 82315.830475: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42720          <idle>-0     (-----) [002] d..1 82315.830479: cpu_idle: state=0 cpu_id=2
42721<...>-5340 ( 788) [000] d..3 82315.830501: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42722<...>-5340 ( 788) [000] d..2 82315.830516: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42723<...>-9006 ( 8943) [004] .... 82315.830563: binder_transaction: transaction=1569071 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
42724<...>-87 ( 87) [000] d..2 82315.830566: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42725<...>-9006 ( 8943) [004] .... 82315.830569: binder_transaction_alloc_buf: transaction=1569071 data_size=80 offsets_size=0
42726<...>-9006 ( 8943) [004] d..4 82315.830574: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
42727          <idle>-0     (-----) [000] d..1 82315.830582: cpu_idle: state=0 cpu_id=0
42728          <idle>-0     (-----) [000] dnh2 82315.830645: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
42729          <idle>-0     (-----) [000] .n.1 82315.830652: cpu_idle: state=4294967295 cpu_id=0
42730          <idle>-0     (-----) [000] d..2 82315.830664: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
42731<...>-8874 ( 8858) [000] .... 82315.830674: binder_transaction_received: transaction=1569071
42732<...>-8874 ( 8858) [000] d..1 82315.830715: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
42733<...>-8874 ( 8858) [000] d..2 82315.830735: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
42734          <idle>-0     (-----) [002] .n.1 82315.830742: cpu_idle: state=4294967295 cpu_id=2
42735          <idle>-0     (-----) [002] d..2 82315.830755: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
42736<...>-8874 ( 8858) [000] d..2 82315.830787: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42737<...>-9006 ( 8943) [004] .... 82315.830799: binder_transaction: transaction=1569072 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
42738   sfEventThread-8882  ( 8858) [002] d..2 82315.830803: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42739<...>-9006 ( 8943) [004] .... 82315.830804: binder_transaction_alloc_buf: transaction=1569072 data_size=988 offsets_size=48
42740          <idle>-0     (-----) [000] d..1 82315.830805: cpu_idle: state=0 cpu_id=0
42741          <idle>-0     (-----) [002] d..1 82315.830815: cpu_idle: state=0 cpu_id=2
42742<...>-9006 ( 8943) [004] ...2 82315.830822: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
42743<...>-9006 ( 8943) [004] d..4 82315.830826: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=000
42744  surfaceflinger-8858  ( 8858) [003] d..1 82315.830834: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
42745<...>-9006 ( 8943) [004] d..5 82315.830850: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
42746  surfaceflinger-8858  ( 8858) [003] d..2 82315.830859: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
42747          <idle>-0     (-----) [002] .n.1 82315.830865: cpu_idle: state=4294967295 cpu_id=2
42748          <idle>-0     (-----) [002] d..2 82315.830893: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
42749<...>-9006 ( 8943) [004] d..2 82315.830898: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
42750<...>-8874 ( 8858) [004] .... 82315.830913: binder_transaction_received: transaction=1569072
42751   sfEventThread-8882  ( 8858) [002] d..2 82315.830929: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42752          <idle>-0     (-----) [002] d..1 82315.830940: cpu_idle: state=0 cpu_id=2
42753<...>-8874 ( 8858) [004] .... 82315.831029: binder_transaction: transaction=1569073 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
42754<...>-8874 ( 8858) [004] .... 82315.831034: binder_transaction_alloc_buf: transaction=1569073 data_size=0 offsets_size=0
42755<...>-8874 ( 8858) [004] d..2 82315.831036: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
42756<...>-8874 ( 8858) [004] d..3 82315.831049: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
42757<...>-8874 ( 8858) [004] .... 82315.831052: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
42758<...>-8874 ( 8858) [004] d..2 82315.831092: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
42759<...>-9006 ( 8943) [004] .... 82315.831101: binder_transaction_received: transaction=1569073
42760<...>-9006 ( 8943) [004] d..2 82315.831204: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
42761          <idle>-0     (-----) [004] d..1 82315.831221: cpu_idle: state=0 cpu_id=4
42762          <idle>-0     (-----) [002] d.h4 82315.831901: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42763          <idle>-0     (-----) [002] dnh5 82315.831924: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42764          <idle>-0     (-----) [002] .n.1 82315.831937: cpu_idle: state=4294967295 cpu_id=2
42765          <idle>-0     (-----) [002] d..2 82315.831951: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42766<...>-86 ( 86) [002] d..2 82315.831998: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42767          <idle>-0     (-----) [002] d..1 82315.832013: cpu_idle: state=0 cpu_id=2
42768          <idle>-0     (-----) [002] d.h4 82315.832481: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42769          <idle>-0     (-----) [002] d.h5 82315.832500: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42770          <idle>-0     (-----) [000] .n.1 82315.832507: cpu_idle: state=4294967295 cpu_id=0
42771          <idle>-0     (-----) [000] d..2 82315.832523: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42772          <idle>-0     (-----) [002] ...1 82315.832541: cpu_idle: state=4294967295 cpu_id=2
42773          <idle>-0     (-----) [002] d..1 82315.832547: cpu_idle: state=0 cpu_id=2
42774<...>-5340 ( 788) [000] d..2 82315.832578: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42775  surfaceflinger-8858  ( 8858) [003] ...1 82315.832595: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
42776  surfaceflinger-8858  ( 8858) [003] ...1 82315.832605: tracing_mark_write: E|8858
42777<...>-5340 ( 788) [000] d..3 82315.832607: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42778<...>-5340 ( 788) [000] d..2 82315.832622: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42779  surfaceflinger-8858  ( 8858) [003] .... 82315.832666: binder_transaction: transaction=1569074 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
42780  surfaceflinger-8858  ( 8858) [003] .... 82315.832672: binder_transaction_alloc_buf: transaction=1569074 data_size=620 offsets_size=112
42781<...>-87 ( 87) [000] d..2 82315.832672: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42782          <idle>-0     (-----) [000] d..1 82315.832685: cpu_idle: state=0 cpu_id=0
42783  surfaceflinger-8858  ( 8858) [003] ...2 82315.832699: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
42784  surfaceflinger-8858  ( 8858) [003] d..4 82315.832706: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
42785  surfaceflinger-8858  ( 8858) [003] d..5 82315.832732: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
42786          <idle>-0     (-----) [002] .n.1 82315.832739: cpu_idle: state=4294967295 cpu_id=2
42787          <idle>-0     (-----) [002] d..2 82315.832752: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
42788 [email protected]   (  619) [002] .... 82315.832765: binder_transaction_received: transaction=1569074
42789  surfaceflinger-8858  ( 8858) [003] d..2 82315.832772: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42790          <idle>-0     (-----) [003] d..1 82315.832795: cpu_idle: state=0 cpu_id=3
42791 [email protected]   (  619) [002] ...1 82315.832821: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
42792 [email protected]   (  619) [002] ...1 82315.833019: tracing_mark_write: B|619|HWCSession::PresentDisplay::
42793 [email protected]   (  619) [002] ...1 82315.833893: tracing_mark_write: B|619|HWDeviceDRM::Validate::
42794 [email protected]   (  619) [002] d.h3 82315.833986: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42795 [email protected]   (  619) [002] d.h4 82315.834017: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42796          <idle>-0     (-----) [003] ...1 82315.834313: cpu_idle: state=4294967295 cpu_id=3
42797          <idle>-0     (-----) [003] d..1 82315.834317: cpu_idle: state=0 cpu_id=3
42798 [email protected]   (  619) [002] d.h3 82315.834485: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42799 [email protected]   (  619) [002] d.h4 82315.834511: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42800          <idle>-0     (-----) [000] .n.1 82315.834517: cpu_idle: state=4294967295 cpu_id=0
42801          <idle>-0     (-----) [000] d..2 82315.834528: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42802<...>-5340 ( 788) [000] d..2 82315.834574: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42803<...>-5340 ( 788) [000] d..3 82315.834596: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42804<...>-5340 ( 788) [000] d..2 82315.834610: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42805<...>-87 ( 87) [000] d..2 82315.834662: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42806          <idle>-0     (-----) [000] d..1 82315.834673: cpu_idle: state=0 cpu_id=0
42807 [email protected]   (  619) [002] ...1 82315.834745: tracing_mark_write: E|619
42808 [email protected]   (  619) [002] ...1 82315.834969: tracing_mark_write: B|619|HWDeviceDRM::Commit::
42809 [email protected]   (  619) [002] ...1 82315.834984: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
42810          <idle>-0     (-----) [000] d.s2 82315.835145: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42811          <idle>-0     (-----) [000] dns3 82315.835166: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42812          <idle>-0     (-----) [000] .n.1 82315.835185: cpu_idle: state=4294967295 cpu_id=0
42813          <idle>-0     (-----) [000] d..2 82315.835195: 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
42814     rcu_preempt-7     (    7) [000] d..2 82315.835206: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42815     rcu_preempt-7     (    7) [000] d..3 82315.835225: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42816     rcu_preempt-7     (    7) [000] d..2 82315.835237: 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
42817         rcuop/2-29    (   29) [000] d..2 82315.835244: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
42818         rcuop/2-29    (   29) [000] d..3 82315.835259: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
42819         rcuop/2-29    (   29) [000] d..2 82315.835269: 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
42820         rcuop/3-37    (   37) [000] d..2 82315.835305: 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
42821          <idle>-0     (-----) [000] d..1 82315.835321: cpu_idle: state=0 cpu_id=0
42822 [email protected]   (  619) [002] d..2 82315.835663: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42823 [email protected]   (  619) [002] d..3 82315.835695: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42824          <idle>-0     (-----) [000] .n.1 82315.835701: cpu_idle: state=4294967295 cpu_id=0
42825          <idle>-0     (-----) [000] d..2 82315.835717: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
42826 [email protected]   (  619) [002] ...1 82315.835825: tracing_mark_write: E|619
42827 [email protected]   (  619) [002] ...1 82315.835832: tracing_mark_write: E|619
42828 [email protected]   (  619) [002] ...1 82315.835896: tracing_mark_write: E|619
42829 [email protected]   (  619) [002] ...1 82315.835989: tracing_mark_write: E|619
42830 [email protected]   (  619) [002] .... 82315.836010: binder_transaction: transaction=1569075 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
42831 [email protected]   (  619) [002] .... 82315.836016: binder_transaction_alloc_buf: transaction=1569075 data_size=736 offsets_size=144
42832 [email protected]   (  619) [002] d..2 82315.836043: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42833 [email protected]   (  619) [002] d..3 82315.836064: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
42834          <idle>-0     (-----) [003] .n.1 82315.836069: cpu_idle: state=4294967295 cpu_id=3
42835 [email protected]   (  619) [002] .... 82315.836070: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
42836          <idle>-0     (-----) [003] d..2 82315.836082: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
42837  surfaceflinger-8858  ( 8858) [003] .... 82315.836092: binder_transaction_received: transaction=1569075
42838 [email protected]   (  619) [002] d..2 82315.836169: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42839<...>-86 ( 86) [002] d..2 82315.836235: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42840          <idle>-0     (-----) [002] d..1 82315.836258: cpu_idle: state=0 cpu_id=2
42841  surfaceflinger-8858  ( 8858) [003] d..2 82315.836412: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42842  surfaceflinger-8858  ( 8858) [003] d..3 82315.836441: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42843          <idle>-0     (-----) [002] d.h4 82315.836569: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42844          <idle>-0     (-----) [002] d.h5 82315.836601: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42845          <idle>-0     (-----) [001] .n.1 82315.836607: cpu_idle: state=4294967295 cpu_id=1
42846  surfaceflinger-8858  ( 8858) [003] d..2 82315.836617: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42847          <idle>-0     (-----) [001] d..2 82315.836624: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42848          <idle>-0     (-----) [003] d..1 82315.836640: cpu_idle: state=0 cpu_id=3
42849          <idle>-0     (-----) [002] ...1 82315.836644: cpu_idle: state=4294967295 cpu_id=2
42850          <idle>-0     (-----) [002] d..1 82315.836651: cpu_idle: state=0 cpu_id=2
42851<...>-5340 ( 788) [001] d..2 82315.836678: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42852<...>-5340 ( 788) [001] d..3 82315.836724: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42853<...>-5340 ( 788) [001] d..2 82315.836737: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42854<...>-87 ( 87) [001] d..2 82315.836790: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42855          <idle>-0     (-----) [001] d..1 82315.836807: cpu_idle: state=0 cpu_id=1
42856 crtc_commit:111-321   (  321) [000] .... 82315.837840: clk_set_rate: disp_cc_mdss_mdp_clk_src 200000000
42857 crtc_commit:111-321   (  321) [000] .... 82315.837965: clk_set_rate: disp_cc_mdss_mdp_lut_clk 0
42858 crtc_commit:111-321   (  321) [000] .... 82315.837969: clk_set_rate: disp_cc_mdss_mdp_clk 200000000
42859          <idle>-0     (-----) [003] ...1 82315.837971: cpu_idle: state=4294967295 cpu_id=3
42860          <idle>-0     (-----) [003] d..1 82315.837979: cpu_idle: state=0 cpu_id=3
42861 crtc_commit:111-321   (  321) [000] d..2 82315.838022: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
42862         rcuop/2-29    (   29) [000] d..2 82315.838029: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42863          <idle>-0     (-----) [002] d.h4 82315.838046: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42864         rcuop/2-29    (   29) [000] d..3 82315.838052: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42865          <idle>-0     (-----) [002] dnh5 82315.838058: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42866         rcuop/2-29    (   29) [000] d..2 82315.838065: 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
42867          <idle>-0     (-----) [002] .n.1 82315.838068: cpu_idle: state=4294967295 cpu_id=2
42868          <idle>-0     (-----) [002] d..2 82315.838082: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42869     rcu_preempt-7     (    7) [000] d..2 82315.838097: 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
42870          <idle>-0     (-----) [000] d..1 82315.838116: cpu_idle: state=0 cpu_id=0
42871<...>-86 ( 86) [002] d..2 82315.838127: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42872          <idle>-0     (-----) [002] d..1 82315.838141: cpu_idle: state=0 cpu_id=2
42873          <idle>-0     (-----) [002] d.h4 82315.838674: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42874          <idle>-0     (-----) [002] d.h5 82315.838692: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42875          <idle>-0     (-----) [001] .n.1 82315.838699: cpu_idle: state=4294967295 cpu_id=1
42876          <idle>-0     (-----) [001] d..2 82315.838715: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42877          <idle>-0     (-----) [002] d..2 82315.838728: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
42878          <idle>-0     (-----) [002] dn.3 82315.838740: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
42879          <idle>-0     (-----) [002] .n.1 82315.838745: cpu_idle: state=4294967295 cpu_id=2
42880          <idle>-0     (-----) [002] d..2 82315.838761: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
42881<...>-5340 ( 788) [001] d..2 82315.838767: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
42882     ksoftirqd/2-26    (   26) [002] d.s2 82315.838774: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
42883<...>-5340 ( 788) [001] d..3 82315.838811: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
42884     ksoftirqd/2-26    (   26) [002] d.s3 82315.838830: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
42885     ksoftirqd/2-26    (   26) [002] d..2 82315.838848: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42886<...>-5340 ( 788) [001] d..2 82315.838876: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42887<...>-87 ( 87) [002] d..2 82315.838904: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42888          <idle>-0     (-----) [002] d..1 82315.838946: cpu_idle: state=0 cpu_id=2
42889          <idle>-0     (-----) [002] ...1 82315.838963: cpu_idle: state=4294967295 cpu_id=2
42890          <idle>-0     (-----) [002] d..1 82315.838967: cpu_idle: state=0 cpu_id=2
42891  kworker/u16:15-1311  ( 1311) [001] .... 82315.838975: clk_set_rate: l3_cluster0_vote_clk 403200000
42892  kworker/u16:15-1311  ( 1311) [001] .... 82315.838982: clk_set_rate: l3_clk 403200000
42893  kworker/u16:15-1311  ( 1311) [001] d..2 82315.839249: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
42894          <idle>-0     (-----) [001] d..1 82315.839266: cpu_idle: state=0 cpu_id=1
42895          <idle>-0     (-----) [001] d.s3 82315.839788: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
42896          <idle>-0     (-----) [001] d.s4 82315.839799: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
42897          <idle>-0     (-----) [001] dns4 82315.839804: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
42898          <idle>-0     (-----) [001] .n.1 82315.839812: cpu_idle: state=4294967295 cpu_id=1
42899          <idle>-0     (-----) [001] d..2 82315.839825: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42900  kworker/u16:15-1311  ( 1311) [001] d..2 82315.839879: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
42901          <idle>-0     (-----) [001] d..1 82315.839893: cpu_idle: state=0 cpu_id=1
42902          <idle>-0     (-----) [002] d.h4 82315.840362: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42903          <idle>-0     (-----) [002] dnh5 82315.840380: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42904          <idle>-0     (-----) [002] .n.1 82315.840390: cpu_idle: state=4294967295 cpu_id=2
42905          <idle>-0     (-----) [002] d..2 82315.840401: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42906<...>-86 ( 86) [002] d..2 82315.840438: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42907          <idle>-0     (-----) [002] d..1 82315.840451: cpu_idle: state=0 cpu_id=2
42908          <idle>-0     (-----) [002] d.h4 82315.840895: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
42909          <idle>-0     (-----) [002] d.h5 82315.840920: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42910          <idle>-0     (-----) [000] .n.1 82315.840927: cpu_idle: state=4294967295 cpu_id=0
42911          <idle>-0     (-----) [000] d..2 82315.840941: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42912          <idle>-0     (-----) [002] ...1 82315.840956: cpu_idle: state=4294967295 cpu_id=2
42913          <idle>-0     (-----) [002] d..1 82315.840964: cpu_idle: state=0 cpu_id=2
42914<...>-5340 ( 788) [000] d..2 82315.840995: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
42915<...>-5340 ( 788) [000] d..3 82315.841038: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42916<...>-5340 ( 788) [000] d..2 82315.841051: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42917<...>-87 ( 87) [000] d..2 82315.841098: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42918          <idle>-0     (-----) [000] d..1 82315.841110: cpu_idle: state=0 cpu_id=0
42919          <idle>-0     (-----) [000] d.s2 82315.841805: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42920          <idle>-0     (-----) [000] dns3 82315.841822: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
42921          <idle>-0     (-----) [000] .n.1 82315.841833: cpu_idle: state=4294967295 cpu_id=0
42922          <idle>-0     (-----) [000] d..2 82315.841842: 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
42923     rcu_preempt-7     (    7) [000] d..2 82315.841853: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42924     rcu_preempt-7     (    7) [000] d..3 82315.841867: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
42925     rcu_preempt-7     (    7) [000] d..2 82315.841878: 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
42926         rcuop/2-29    (   29) [000] d..2 82315.841883: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
42927         rcuop/2-29    (   29) [000] d..3 82315.841895: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
42928         rcuop/2-29    (   29) [000] d..2 82315.841904: 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
42929         rcuop/3-37    (   37) [000] d..2 82315.841933: 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
42930          <idle>-0     (-----) [000] d..1 82315.841946: cpu_idle: state=0 cpu_id=0
42931          <idle>-0     (-----) [002] d.h4 82315.842236: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42932          <idle>-0     (-----) [002] dnh5 82315.842247: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42933          <idle>-0     (-----) [002] .n.1 82315.842256: cpu_idle: state=4294967295 cpu_id=2
42934          <idle>-0     (-----) [002] d..2 82315.842268: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42935<...>-86 ( 86) [002] d..2 82315.842309: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42936          <idle>-0     (-----) [002] d..1 82315.842322: cpu_idle: state=0 cpu_id=2
42937          <idle>-0     (-----) [002] d.h4 82315.842765: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42938          <idle>-0     (-----) [002] d.h5 82315.842780: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42939          <idle>-0     (-----) [000] .n.1 82315.842787: cpu_idle: state=4294967295 cpu_id=0
42940          <idle>-0     (-----) [000] d..2 82315.842800: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42941          <idle>-0     (-----) [002] ...1 82315.842816: cpu_idle: state=4294967295 cpu_id=2
42942          <idle>-0     (-----) [002] d..1 82315.842820: cpu_idle: state=0 cpu_id=2
42943<...>-5340 ( 788) [000] d..2 82315.842854: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42944<...>-5340 ( 788) [000] d..3 82315.842874: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42945<...>-5340 ( 788) [000] d..2 82315.842887: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42946<...>-87 ( 87) [000] d..2 82315.842933: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42947          <idle>-0     (-----) [000] d..1 82315.842948: cpu_idle: state=0 cpu_id=0
42948          <idle>-0     (-----) [000] d.h5 82315.843631: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42949          <idle>-0     (-----) [000] d.h6 82315.843651: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42950          <idle>-0     (-----) [000] d.h5 82315.843655: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42951          <idle>-0     (-----) [003] .n.1 82315.843656: cpu_idle: state=4294967295 cpu_id=3
42952          <idle>-0     (-----) [000] dnh6 82315.843663: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42953          <idle>-0     (-----) [003] d..2 82315.843668: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
42954          <idle>-0     (-----) [000] .n.1 82315.843678: cpu_idle: state=4294967295 cpu_id=0
42955          <idle>-0     (-----) [000] d..2 82315.843689: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
42956  crtc_event:111-322   (  322) [003] d..2 82315.843706: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42957          <idle>-0     (-----) [003] d..1 82315.843717: cpu_idle: state=0 cpu_id=3
42958 crtc_commit:111-321   (  321) [000] d..2 82315.843846: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
42959          <idle>-0     (-----) [000] d..1 82315.843856: cpu_idle: state=0 cpu_id=0
42960          <idle>-0     (-----) [002] d.h4 82315.844131: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42961          <idle>-0     (-----) [002] dnh5 82315.844141: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
42962          <idle>-0     (-----) [002] .n.1 82315.844150: cpu_idle: state=4294967295 cpu_id=2
42963          <idle>-0     (-----) [002] d..2 82315.844162: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
42964<...>-86 ( 86) [002] d..2 82315.844199: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
42965          <idle>-0     (-----) [002] d..1 82315.844212: cpu_idle: state=0 cpu_id=2
42966          <idle>-0     (-----) [002] d.h4 82315.844982: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42967          <idle>-0     (-----) [002] d.h5 82315.844999: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
42968          <idle>-0     (-----) [000] .n.1 82315.845006: cpu_idle: state=4294967295 cpu_id=0
42969          <idle>-0     (-----) [000] d..2 82315.845016: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
42970          <idle>-0     (-----) [002] ...1 82315.845034: cpu_idle: state=4294967295 cpu_id=2
42971          <idle>-0     (-----) [002] d..1 82315.845039: cpu_idle: state=0 cpu_id=2
42972<...>-5340 ( 788) [000] d..2 82315.845063: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42973<...>-5340 ( 788) [000] d..3 82315.845086: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
42974<...>-5340 ( 788) [000] d..2 82315.845098: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
42975<...>-87 ( 87) [000] d.s2 82315.845136: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42976<...>-87 ( 87) [000] d.s3 82315.845154: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42977          <idle>-0     (-----) [003] .n.1 82315.845160: cpu_idle: state=4294967295 cpu_id=3
42978<...>-87 ( 87) [000] d.s2 82315.845161: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
42979          <idle>-0     (-----) [003] d..2 82315.845172: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
42980<...>-87 ( 87) [000] d.s3 82315.845200: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
42981  crtc_event:111-322   (  322) [003] d..2 82315.845213: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
42982<...>-87 ( 87) [000] d..2 82315.845251: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42983          <idle>-0     (-----) [000] d..1 82315.845266: cpu_idle: state=0 cpu_id=0
42984  kworker/u16:15-1311  ( 1311) [003] d..2 82315.845296: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42985          <idle>-0     (-----) [003] d..1 82315.845308: cpu_idle: state=0 cpu_id=3
42986          <idle>-0     (-----) [000] d.h5 82315.845966: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42987          <idle>-0     (-----) [000] dnh6 82315.845978: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
42988          <idle>-0     (-----) [000] .n.1 82315.845992: cpu_idle: state=4294967295 cpu_id=0
42989          <idle>-0     (-----) [000] d..2 82315.846003: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
42990 crtc_commit:111-321   (  321) [000] d..2 82315.846087: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
42991          <idle>-0     (-----) [000] d..1 82315.846100: cpu_idle: state=0 cpu_id=0
42992          <idle>-0     (-----) [000] d.h5 82315.846266: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42993          <idle>-0     (-----) [000] d.h6 82315.846283: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
42994          <idle>-0     (-----) [003] .n.1 82315.846289: cpu_idle: state=4294967295 cpu_id=3
42995          <idle>-0     (-----) [003] d..2 82315.846300: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
42996          <idle>-0     (-----) [000] ...1 82315.846302: cpu_idle: state=4294967295 cpu_id=0
42997          <idle>-0     (-----) [000] d..1 82315.846306: cpu_idle: state=0 cpu_id=0
42998  crtc_event:111-322   (  322) [003] d..2 82315.846326: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
42999          <idle>-0     (-----) [003] d..1 82315.846336: cpu_idle: state=0 cpu_id=3
43000          <idle>-0     (-----) [002] d.h4 82315.846415: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43001          <idle>-0     (-----) [002] dnh5 82315.846430: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43002          <idle>-0     (-----) [002] .n.1 82315.846439: cpu_idle: state=4294967295 cpu_id=2
43003          <idle>-0     (-----) [002] d..2 82315.846452: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
43004<...>-86 ( 86) [002] d..2 82315.846491: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43005          <idle>-0     (-----) [002] d..1 82315.846503: cpu_idle: state=0 cpu_id=2
43006          <idle>-0     (-----) [000] d.h2 82315.846604: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
43007          <idle>-0     (-----) [000] dnh3 82315.846617: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
43008          <idle>-0     (-----) [000] .n.1 82315.846625: cpu_idle: state=4294967295 cpu_id=0
43009          <idle>-0     (-----) [000] d..2 82315.846636: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
43010        DispSync-8879  ( 8858) [000] d..1 82315.846659: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43011        DispSync-8879  ( 8858) [000] d..2 82315.846676: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43012          <idle>-0     (-----) [002] .n.1 82315.846683: cpu_idle: state=4294967295 cpu_id=2
43013          <idle>-0     (-----) [002] d..2 82315.846693: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
43014        DispSync-8879  ( 8858) [000] d..2 82315.846714: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43015          <idle>-0     (-----) [000] d..1 82315.846729: cpu_idle: state=0 cpu_id=0
43016   sfEventThread-8882  ( 8858) [002] d..3 82315.846748: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
43017          <idle>-0     (-----) [004] dnh2 82315.846779: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
43018   sfEventThread-8882  ( 8858) [002] d..3 82315.846782: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
43019          <idle>-0     (-----) [004] .n.1 82315.846784: cpu_idle: state=4294967295 cpu_id=4
43020          <idle>-0     (-----) [004] d..2 82315.846794: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
43021   sfEventThread-8882  ( 8858) [002] d..4 82315.846802: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
43022          <idle>-0     (-----) [003] .n.1 82315.846807: cpu_idle: state=4294967295 cpu_id=3
43023          <idle>-0     (-----) [003] d..2 82315.846817: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
43024   sfEventThread-8882  ( 8858) [002] d..2 82315.846840: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43025          <idle>-0     (-----) [002] d..1 82315.846857: cpu_idle: state=0 cpu_id=2
43026<...>-9006 ( 8943) [004] .... 82315.847016: binder_transaction: transaction=1569076 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
43027<...>-9006 ( 8943) [004] .... 82315.847020: binder_transaction_alloc_buf: transaction=1569076 data_size=80 offsets_size=0
43028<...>-9006 ( 8943) [004] d..4 82315.847025: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
43029          <idle>-0     (-----) [000] dnh2 82315.847095: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
43030          <idle>-0     (-----) [000] .n.1 82315.847103: cpu_idle: state=4294967295 cpu_id=0
43031          <idle>-0     (-----) [000] d..2 82315.847115: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
43032<...>-8874 ( 8858) [000] .... 82315.847123: binder_transaction_received: transaction=1569076
43033<...>-8874 ( 8858) [000] d..1 82315.847158: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43034<...>-8874 ( 8858) [000] d..2 82315.847174: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43035          <idle>-0     (-----) [002] dnh4 82315.847176: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
43036          <idle>-0     (-----) [002] dnh5 82315.847203: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
43037          <idle>-0     (-----) [001] .n.1 82315.847210: cpu_idle: state=4294967295 cpu_id=1
43038<...>-8874 ( 8858) [000] d..2 82315.847224: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43039          <idle>-0     (-----) [001] d..2 82315.847227: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
43040          <idle>-0     (-----) [000] d..1 82315.847241: cpu_idle: state=0 cpu_id=0
43041          <idle>-0     (-----) [002] .n.1 82315.847243: cpu_idle: state=4294967295 cpu_id=2
43042          <idle>-0     (-----) [002] d..2 82315.847255: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
43043<...>-5340 ( 788) [001] d..2 82315.847280: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
43044<...>-9006 ( 8943) [004] d..3 82315.847291: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
43045   sfEventThread-8882  ( 8858) [002] d..2 82315.847302: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43046<...>-9006 ( 8943) [004] d..4 82315.847313: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
43047          <idle>-0     (-----) [002] d..1 82315.847316: cpu_idle: state=0 cpu_id=2
43048          <idle>-0     (-----) [005] .n.1 82315.847320: cpu_idle: state=4294967295 cpu_id=5
43049<...>-5340 ( 788) [001] d..3 82315.847326: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
43050          <idle>-0     (-----) [002] .n.1 82315.847332: cpu_idle: state=4294967295 cpu_id=2
43051          <idle>-0     (-----) [005] d..2 82315.847333: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
43052          <idle>-0     (-----) [002] d..2 82315.847344: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
43053<...>-5340 ( 788) [001] d..2 82315.847352: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43054          <idle>-0     (-----) [001] d..1 82315.847367: cpu_idle: state=0 cpu_id=1
43055<...>-87 ( 87) [002] d..2 82315.847390: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43056          <idle>-0     (-----) [002] d..1 82315.847402: cpu_idle: state=0 cpu_id=2
43057<...>-9006 ( 8943) [004] .... 82315.847410: binder_transaction: transaction=1569077 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
43058<...>-9006 ( 8943) [004] .... 82315.847415: binder_transaction_alloc_buf: transaction=1569077 data_size=988 offsets_size=48
43059<...>-9006 ( 8943) [004] ...2 82315.847432: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
43060<...>-9006 ( 8943) [004] d..4 82315.847435: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=000
43061<...>-9006 ( 8943) [004] d..5 82315.847456: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
43062<...>-9006 ( 8943) [004] d.h5 82315.847494: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
43063<...>-9006 ( 8943) [004] d..2 82315.847517: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
43064          <idle>-0     (-----) [001] dnh2 82315.847521: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
43065          <idle>-0     (-----) [001] .n.1 82315.847528: cpu_idle: state=4294967295 cpu_id=1
43066<...>-8874 ( 8858) [004] .... 82315.847529: binder_transaction_received: transaction=1569077
43067          <idle>-0     (-----) [001] d..2 82315.847538: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
43068         sugov:0-576   (  576) [001] .... 82315.847573: clk_set_rate: pwrcl_clk 825600000
43069         sugov:0-576   (  576) [001] .... 82315.847585: clk_set_rate: cpu3_pwrcl_clk 902400000
43070         sugov:0-576   (  576) [001] .... 82315.847597: clk_set_rate: cpu2_pwrcl_clk 902400000
43071         sugov:0-576   (  576) [001] .... 82315.847606: clk_set_rate: cpu1_pwrcl_clk 902400000
43072         sugov:0-576   (  576) [001] .... 82315.847615: clk_set_rate: cpu0_pwrcl_clk 825600000
43073<...>-8874 ( 8858) [004] .... 82315.847628: binder_transaction: transaction=1569078 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
43074<...>-8874 ( 8858) [004] .... 82315.847633: binder_transaction_alloc_buf: transaction=1569078 data_size=0 offsets_size=0
43075<...>-8874 ( 8858) [004] d..2 82315.847635: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
43076<...>-8874 ( 8858) [004] d..3 82315.847647: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
43077<...>-8874 ( 8858) [004] .... 82315.847650: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
43078<...>-8874 ( 8858) [004] d..2 82315.847687: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
43079<...>-9006 ( 8943) [004] .... 82315.847696: binder_transaction_received: transaction=1569078
43080         sugov:0-576   (  576) [001] .... 82315.847731: cpu_frequency: state=825600 cpu_id=0
43081         sugov:0-576   (  576) [001] .... 82315.847755: cpu_frequency: state=825600 cpu_id=1
43082         sugov:0-576   (  576) [001] .... 82315.847759: cpu_frequency: state=825600 cpu_id=2
43083         sugov:0-576   (  576) [001] .... 82315.847763: cpu_frequency: state=825600 cpu_id=3
43084<...>-9005 ( 8943) [005] .... 82315.847778: binder_transaction: transaction=1569079 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
43085<...>-9005 ( 8943) [005] .... 82315.847784: binder_transaction_alloc_buf: transaction=1569079 data_size=80 offsets_size=0
43086<...>-9005 ( 8943) [005] d..4 82315.847790: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
43087         sugov:0-576   (  576) [001] d..2 82315.847795: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43088<...>-9006 ( 8943) [004] d..2 82315.847795: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43089          <idle>-0     (-----) [001] d..1 82315.847809: cpu_idle: state=0 cpu_id=1
43090<...>-9005 ( 8943) [005] d..5 82315.847813: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
43091          <idle>-0     (-----) [004] d..2 82315.847820: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
43092<...>-8874 ( 8858) [004] .... 82315.847835: binder_transaction_received: transaction=1569079
43093<...>-8874 ( 8858) [004] d..1 82315.847856: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43094          <idle>-0     (-----) [002] dnh2 82315.847884: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43095          <idle>-0     (-----) [002] .n.1 82315.847892: cpu_idle: state=4294967295 cpu_id=2
43096<...>-8874 ( 8858) [004] d..2 82315.847899: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43097          <idle>-0     (-----) [002] d..2 82315.847901: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
43098          <idle>-0     (-----) [004] d..1 82315.847910: cpu_idle: state=0 cpu_id=4
43099   sfEventThread-8882  ( 8858) [002] d..2 82315.847940: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43100          <idle>-0     (-----) [002] d..1 82315.847953: cpu_idle: state=0 cpu_id=2
43101<...>-9005 ( 8943) [005] .... 82315.847971: binder_transaction: transaction=1569080 dest_node=617843 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
43102<...>-9005 ( 8943) [005] .... 82315.847976: binder_transaction_alloc_buf: transaction=1569080 data_size=100 offsets_size=8
43103<...>-9005 ( 8943) [005] ...2 82315.847988: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
43104<...>-9005 ( 8943) [005] d..4 82315.847991: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
43105<...>-9005 ( 8943) [005] dn.5 82315.848010: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
43106<...>-9005 ( 8943) [005] d..2 82315.848018: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
43107<...>-8874 ( 8858) [005] .... 82315.848031: binder_transaction_received: transaction=1569080
43108<...>-8874 ( 8858) [005] .... 82315.848095: binder_transaction: transaction=1569081 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
43109<...>-8874 ( 8858) [005] .... 82315.848099: binder_transaction_alloc_buf: transaction=1569081 data_size=4 offsets_size=0
43110<...>-8874 ( 8858) [005] .... 82315.848102: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
43111<...>-8874 ( 8858) [005] d..2 82315.848142: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
43112<...>-9005 ( 8943) [005] .... 82315.848152: binder_transaction_received: transaction=1569081
43113  surfaceflinger-8858  ( 8858) [003] d.s2 82315.848491: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43114  surfaceflinger-8858  ( 8858) [003] d.s3 82315.848516: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43115          <idle>-0     (-----) [002] d.h4 82315.848561: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43116          <idle>-0     (-----) [002] dnh5 82315.848580: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43117          <idle>-0     (-----) [002] .n.1 82315.848591: cpu_idle: state=4294967295 cpu_id=2
43118          <idle>-0     (-----) [002] d..2 82315.848605: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
43119<...>-86 ( 86) [002] d..2 82315.848651: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43120          <idle>-0     (-----) [002] d..1 82315.848665: cpu_idle: state=0 cpu_id=2
43121          <idle>-0     (-----) [000] ...1 82315.848747: cpu_idle: state=4294967295 cpu_id=0
43122          <idle>-0     (-----) [000] d..1 82315.848753: cpu_idle: state=0 cpu_id=0
43123  surfaceflinger-8858  ( 8858) [003] ...1 82315.848890: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
43124  surfaceflinger-8858  ( 8858) [003] ...1 82315.848899: tracing_mark_write: E|8858
43125  surfaceflinger-8858  ( 8858) [003] .... 82315.848963: binder_transaction: transaction=1569082 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
43126  surfaceflinger-8858  ( 8858) [003] .... 82315.848968: binder_transaction_alloc_buf: transaction=1569082 data_size=620 offsets_size=112
43127  surfaceflinger-8858  ( 8858) [003] ...2 82315.848993: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
43128  surfaceflinger-8858  ( 8858) [003] d..4 82315.849000: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
43129  surfaceflinger-8858  ( 8858) [003] d..5 82315.849025: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
43130          <idle>-0     (-----) [002] .n.1 82315.849031: cpu_idle: state=4294967295 cpu_id=2
43131          <idle>-0     (-----) [002] d..2 82315.849042: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
43132  surfaceflinger-8858  ( 8858) [003] d..2 82315.849047: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43133 [email protected]   (  619) [002] .... 82315.849053: binder_transaction_received: transaction=1569082
43134 [email protected]   (  619) [002] ...1 82315.849108: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
43135<...>-9005 ( 8943) [005] d..3 82315.849132: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
43136<...>-9005 ( 8943) [005] d..4 82315.849158: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
43137          <idle>-0     (-----) [004] .n.1 82315.849164: cpu_idle: state=4294967295 cpu_id=4
43138          <idle>-0     (-----) [004] d..2 82315.849176: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
43139<...>-8969 ( 8943) [004] d..2 82315.849262: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43140          <idle>-0     (-----) [004] d..1 82315.849273: cpu_idle: state=0 cpu_id=4
43141 [email protected]   (  619) [002] d.h3 82315.849280: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
43142 [email protected]   (  619) [002] d.h4 82315.849303: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
43143          <idle>-0     (-----) [001] .n.1 82315.849308: cpu_idle: state=4294967295 cpu_id=1
43144          <idle>-0     (-----) [001] d..2 82315.849324: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
43145  kworker/u16:15-1311  ( 1311) [003] d..2 82315.849355: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
43146          <idle>-0     (-----) [003] d..1 82315.849375: cpu_idle: state=0 cpu_id=3
43147<...>-5340 ( 788) [001] d.s2 82315.849382: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43148 [email protected]   (  619) [002] ...1 82315.849388: tracing_mark_write: B|619|HWCSession::PresentDisplay::
43149<...>-5340 ( 788) [001] d.s3 82315.849396: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
43150<...>-5340 ( 788) [001] d.s3 82315.849406: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43151          <idle>-0     (-----) [003] .n.1 82315.849413: cpu_idle: state=4294967295 cpu_id=3
43152          <idle>-0     (-----) [003] d..2 82315.849429: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43153<...>-9005 ( 8943) [005] .... 82315.849450: binder_transaction: transaction=1569083 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
43154<...>-5340 ( 788) [001] d..2 82315.849460: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
43155<...>-9005 ( 8943) [005] .... 82315.849465: binder_transaction_alloc_buf: transaction=1569083 data_size=96 offsets_size=0
43156<...>-9005 ( 8943) [005] d..4 82315.849479: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
43157<...>-5340 ( 788) [001] d..3 82315.849513: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
43158          <idle>-0     (-----) [000] dnh2 82315.849525: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=000
43159          <idle>-0     (-----) [000] .n.1 82315.849531: cpu_idle: state=4294967295 cpu_id=0
43160          <idle>-0     (-----) [000] d..2 82315.849546: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
43161<...>-5340 ( 788) [001] d..2 82315.849554: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
43162<...>-9131 ( 9105) [000] .... 82315.849565: binder_transaction_received: transaction=1569083
43163<...>-87 ( 87) [001] d..2 82315.849622: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43164          <idle>-0     (-----) [001] d..1 82315.849640: cpu_idle: state=0 cpu_id=1
43165  kworker/u16:15-1311  ( 1311) [003] .... 82315.849647: clk_set_rate: l3_cluster0_vote_clk 300000000
43166  kworker/u16:15-1311  ( 1311) [003] .... 82315.849654: clk_set_rate: l3_clk 300000000
43167<...>-9005 ( 8943) [005] d..3 82315.849675: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=003
43168<...>-9005 ( 8943) [005] d..4 82315.849715: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
43169          <idle>-0     (-----) [006] .n.1 82315.849724: cpu_idle: state=4294967295 cpu_id=6
43170  kworker/u16:15-1311  ( 1311) [003] d..2 82315.849727: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43171          <idle>-0     (-----) [006] d..2 82315.849737: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
43172          <idle>-0     (-----) [003] d..1 82315.849746: cpu_idle: state=0 cpu_id=3
43173<...>-9131 ( 9105) [000] d..3 82315.849906: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
43174<...>-8962 ( 8943) [006] d..3 82315.849941: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=003
43175<...>-9131 ( 9105) [000] d..4 82315.849955: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
43176          <idle>-0     (-----) [001] .n.1 82315.849961: cpu_idle: state=4294967295 cpu_id=1
43177          <idle>-0     (-----) [001] d..2 82315.849977: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
43178          <idle>-0     (-----) [003] dnh2 82315.849986: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=003
43179          <idle>-0     (-----) [003] .n.1 82315.849994: cpu_idle: state=4294967295 cpu_id=3
43180          <idle>-0     (-----) [003] d..2 82315.850008: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
43181<...>-8962 ( 8943) [006] d..2 82315.850028: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
43182          <idle>-0     (-----) [006] d..1 82315.850044: cpu_idle: state=0 cpu_id=6
43183<...>-9131 ( 9105) [000] d..2 82315.850127: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43184          <idle>-0     (-----) [000] d..1 82315.850155: cpu_idle: state=0 cpu_id=0
43185   system_server-8943  ( 8943) [003] .... 82315.850244: binder_transaction: transaction=1569084 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
43186   system_server-8943  ( 8943) [003] .... 82315.850254: binder_transaction_alloc_buf: transaction=1569084 data_size=96 offsets_size=0
43187<...>-9105 ( 9105) [001] d..2 82315.850259: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43188   system_server-8943  ( 8943) [003] d..4 82315.850262: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=000
43189          <idle>-0     (-----) [001] d..1 82315.850280: cpu_idle: state=0 cpu_id=1
43190   system_server-8943  ( 8943) [003] d..5 82315.850288: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=000
43191          <idle>-0     (-----) [000] .n.1 82315.850296: cpu_idle: state=4294967295 cpu_id=0
43192          <idle>-0     (-----) [000] d..2 82315.850314: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
43193<...>-9131 ( 9105) [000] .... 82315.850323: binder_transaction_received: transaction=1569084
43194   system_server-8943  ( 8943) [003] d..2 82315.850411: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43195          <idle>-0     (-----) [003] d..1 82315.850436: cpu_idle: state=0 cpu_id=3
43196 [email protected]   (  619) [002] ...1 82315.850436: tracing_mark_write: B|619|HWDeviceDRM::Validate::
43197<...>-9005 ( 8943) [005] .... 82315.850438: binder_transaction: transaction=1569085 dest_node=1568477 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0xa
43198<...>-9005 ( 8943) [005] .... 82315.850445: binder_transaction_alloc_buf: transaction=1569085 data_size=88 offsets_size=0
43199<...>-9005 ( 8943) [005] ...2 82315.850449: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
43200<...>-9005 ( 8943) [005] d..4 82315.850453: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
43201<...>-9131 ( 9105) [000] d..3 82315.850458: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
43202<...>-9005 ( 8943) [005] dn.5 82315.850469: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
43203<...>-9005 ( 8943) [005] d..2 82315.850479: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
43204<...>-9131 ( 9105) [000] d..4 82315.850483: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
43205          <idle>-0     (-----) [001] .n.1 82315.850490: cpu_idle: state=4294967295 cpu_id=1
43206<...>-8874 ( 8858) [005] .... 82315.850494: binder_transaction_received: transaction=1569085
43207          <idle>-0     (-----) [001] d..2 82315.850506: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
43208<...>-9131 ( 9105) [000] d..2 82315.850577: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43209          <idle>-0     (-----) [000] d..1 82315.850600: cpu_idle: state=0 cpu_id=0
43210<...>-9105 ( 9105) [001] d..2 82315.850627: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43211          <idle>-0     (-----) [001] d..1 82315.850645: cpu_idle: state=0 cpu_id=1
43212<...>-8874 ( 8858) [005] .... 82315.850663: binder_transaction: transaction=1569086 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
43213<...>-8874 ( 8858) [005] .... 82315.850667: binder_transaction_alloc_buf: transaction=1569086 data_size=4 offsets_size=0
43214<...>-8874 ( 8858) [005] .... 82315.850672: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
43215<...>-8874 ( 8858) [005] d..2 82315.850709: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
43216<...>-9005 ( 8943) [005] .... 82315.850720: binder_transaction_received: transaction=1569086
43217 [email protected]   (  619) [002] d.h3 82315.850793: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43218<...>-9005 ( 8943) [005] ...1 82315.850802: tracing_mark_write: B|8943|HIDL::IMapper::freeBuffer::passthrough
43219 [email protected]   (  619) [002] d.h4 82315.850827: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43220<...>-9005 ( 8943) [005] ...2 82315.850846: tracing_mark_write: B|8943|FreeBuffer
43221<...>-9005 ( 8943) [005] ...1 82315.850852: tracing_mark_write: B|8943|UnmapBuffer
43222<...>-9005 ( 8943) [005] d..2 82315.851053: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
43223<...>-9005 ( 8943) [005] ...1 82315.851109: tracing_mark_write: E|8943
43224          <idle>-0     (-----) [000] dnh2 82315.851115: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
43225          <idle>-0     (-----) [000] .n.1 82315.851124: cpu_idle: state=4294967295 cpu_id=0
43226          <idle>-0     (-----) [000] d..2 82315.851139: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
43227<...>-9005 ( 8943) [005] ...1 82315.851141: tracing_mark_write: E|8943
43228<...>-9005 ( 8943) [005] ...2 82315.851145: tracing_mark_write: B|8943|FreeBuffer
43229<...>-9005 ( 8943) [005] ...1 82315.851154: tracing_mark_write: E|8943
43230<...>-46 ( 46) [000] d..2 82315.851158: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
43231<...>-9005 ( 8943) [005] ...1 82315.851167: tracing_mark_write: E|8943
43232<...>-46 ( 46) [000] d..3 82315.851218: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
43233<...>-46 ( 46) [000] d..2 82315.851234: 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
43234<...>-8 ( 8) [000] d..2 82315.851273: 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
43235          <idle>-0     (-----) [000] d..1 82315.851286: cpu_idle: state=0 cpu_id=0
43236 [email protected]   (  619) [002] ...1 82315.851317: tracing_mark_write: E|619
43237<...>-9005 ( 8943) [005] d..5 82315.851390: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
43238<...>-9005 ( 8943) [005] d.h6 82315.851458: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
43239          <idle>-0     (-----) [000] dnh2 82315.851462: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
43240          <idle>-0     (-----) [000] .n.1 82315.851470: cpu_idle: state=4294967295 cpu_id=0
43241          <idle>-0     (-----) [000] d..2 82315.851483: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
43242<...>-9005 ( 8943) [005] .... 82315.851489: binder_transaction: transaction=1569087 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
43243          <idle>-0     (-----) [001] dnh2 82315.851489: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
43244<...>-9005 ( 8943) [005] .... 82315.851493: binder_transaction_alloc_buf: transaction=1569087 data_size=1900 offsets_size=104
43245          <idle>-0     (-----) [001] .n.1 82315.851498: cpu_idle: state=4294967295 cpu_id=1
43246          <idle>-0     (-----) [001] d..2 82315.851509: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
43247<...>-9005 ( 8943) [005] ...2 82315.851531: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
43248<...>-9005 ( 8943) [005] d..4 82315.851536: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
43249         sugov:0-576   (  576) [001] .... 82315.851550: clk_set_rate: pwrcl_clk 902400000
43250<...>-9005 ( 8943) [005] dn.5 82315.851561: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
43251         sugov:0-576   (  576) [001] .... 82315.851563: clk_set_rate: cpu3_pwrcl_clk 825600000
43252         sugov:0-576   (  576) [001] .... 82315.851575: clk_set_rate: cpu2_pwrcl_clk 825600000
43253         sugov:0-576   (  576) [001] .... 82315.851585: clk_set_rate: cpu1_pwrcl_clk 825600000
43254 [email protected]   (  619) [002] d.h3 82315.851589: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
43255         sugov:0-576   (  576) [001] .... 82315.851595: clk_set_rate: cpu0_pwrcl_clk 902400000
43256<...>-9005 ( 8943) [005] d..2 82315.851597: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
43257         sugov:0-576   (  576) [001] .... 82315.851607: cpu_frequency: state=902400 cpu_id=0
43258<...>-8951 ( 8858) [005] .... 82315.851616: binder_transaction_received: transaction=1569087
43259<...>-8874 ( 8858) [000] d..2 82315.851625: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43260 [email protected]   (  619) [002] d.h4 82315.851636: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=003
43261         sugov:0-576   (  576) [001] .... 82315.851637: cpu_frequency: state=902400 cpu_id=1
43262          <idle>-0     (-----) [000] d..1 82315.851640: cpu_idle: state=0 cpu_id=0
43263         sugov:0-576   (  576) [001] .... 82315.851641: cpu_frequency: state=902400 cpu_id=2
43264          <idle>-0     (-----) [003] .n.1 82315.851646: cpu_idle: state=4294967295 cpu_id=3
43265         sugov:0-576   (  576) [001] .... 82315.851646: cpu_frequency: state=902400 cpu_id=3
43266          <idle>-0     (-----) [003] d..2 82315.851663: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
43267         sugov:0-576   (  576) [001] d..2 82315.851681: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43268 [email protected]   (  619) [002] ...1 82315.851687: tracing_mark_write: B|619|HWDeviceDRM::Commit::
43269          <idle>-0     (-----) [001] d..1 82315.851698: cpu_idle: state=0 cpu_id=1
43270 [email protected]   (  619) [002] ...1 82315.851703: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
43271<...>-5340 ( 788) [003] d..2 82315.851748: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
43272<...>-5340 ( 788) [003] d..3 82315.851811: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
43273<...>-5340 ( 788) [003] d..2 82315.851954: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
43274<...>-87 ( 87) [003] d..2 82315.852018: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43275          <idle>-0     (-----) [003] d..1 82315.852039: cpu_idle: state=0 cpu_id=3
43276<...>-8951 ( 8858) [005] d..2 82315.852194: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
43277 [email protected]   (  619) [002] d.h1 82315.852238: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
43278<...>-8951 ( 8858) [005] .... 82315.852348: binder_transaction: transaction=1569088 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
43279<...>-8951 ( 8858) [005] .... 82315.852352: binder_transaction_alloc_buf: transaction=1569088 data_size=0 offsets_size=0
43280<...>-8951 ( 8858) [005] .... 82315.852355: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
43281<...>-8951 ( 8858) [005] d..2 82315.852419: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
43282<...>-9005 ( 8943) [005] .... 82315.852433: binder_transaction_received: transaction=1569088
43283 [email protected]   (  619) [002] d..2 82315.852445: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
43284          <idle>-0     (-----) [003] d.h2 82315.852450: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
43285          <idle>-0     (-----) [003] dnh3 82315.852469: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
43286 [email protected]   (  619) [002] d..3 82315.852475: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
43287          <idle>-0     (-----) [000] .n.1 82315.852481: cpu_idle: state=4294967295 cpu_id=0
43288          <idle>-0     (-----) [003] .n.1 82315.852482: cpu_idle: state=4294967295 cpu_id=3
43289          <idle>-0     (-----) [003] d..2 82315.852495: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
43290          <idle>-0     (-----) [000] d..2 82315.852496: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
43291 [email protected]   (  619) [002] ...1 82315.852630: tracing_mark_write: E|619
43292 [email protected]   (  619) [002] ...1 82315.852638: tracing_mark_write: E|619
43293 [email protected]   (  619) [002] ...1 82315.852714: tracing_mark_write: E|619
43294 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.852755: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
43295          <idle>-0     (-----) [001] d.s3 82315.852761: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
43296          <idle>-0     (-----) [001] d.s4 82315.852779: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
43297 [email protected]   (  619) [002] ...1 82315.852789: tracing_mark_write: E|619
43298          <idle>-0     (-----) [001] ...1 82315.852792: cpu_idle: state=4294967295 cpu_id=1
43299          <idle>-0     (-----) [001] d..1 82315.852797: cpu_idle: state=0 cpu_id=1
43300<...>-581 ( 571) [003] d..2 82315.852799: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
43301 [email protected]   (  619) [002] .... 82315.852811: binder_transaction: transaction=1569089 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
43302 [email protected]   (  619) [002] .... 82315.852818: binder_transaction_alloc_buf: transaction=1569089 data_size=736 offsets_size=144
43303 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.852837: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
43304 [email protected]   (  619) [002] d..2 82315.852845: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
43305 [email protected]   (  619) [002] d..3 82315.852881: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
43306          <idle>-0     (-----) [001] .n.1 82315.852887: cpu_idle: state=4294967295 cpu_id=1
43307 [email protected]   (  619) [002] .... 82315.852888: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
43308          <idle>-0     (-----) [001] d..2 82315.852901: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
43309  surfaceflinger-8858  ( 8858) [001] .... 82315.852916: binder_transaction_received: transaction=1569089
43310 [email protected]   (  619) [002] d..2 82315.853000: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
43311<...>-86 ( 86) [002] d..2 82315.853063: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43312          <idle>-0     (-----) [002] d.h5 82315.853096: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43313          <idle>-0     (-----) [002] dnh6 82315.853110: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43314          <idle>-0     (-----) [002] d..2 82315.853131: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
43315<...>-86 ( 86) [002] d..2 82315.853168: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43316<...>-581 ( 571) [003] d..2 82315.853184: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43317          <idle>-0     (-----) [002] d..1 82315.853191: cpu_idle: state=0 cpu_id=2
43318          <idle>-0     (-----) [003] d..1 82315.853208: cpu_idle: state=0 cpu_id=3
43319  surfaceflinger-8858  ( 8858) [001] d..2 82315.853364: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
43320  surfaceflinger-8858  ( 8858) [001] d..3 82315.853404: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
43321<...>-9005 ( 8943) [005] d..3 82315.853558: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
43322          <idle>-0     (-----) [002] dnh2 82315.853636: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
43323          <idle>-0     (-----) [002] .n.1 82315.853644: cpu_idle: state=4294967295 cpu_id=2
43324          <idle>-0     (-----) [002] d..2 82315.853655: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
43325  surfaceflinger-8858  ( 8858) [001] d..2 82315.853678: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43326          <idle>-0     (-----) [001] d..1 82315.853704: cpu_idle: state=0 cpu_id=1
43327<...>-9039 ( 8943) [002] d.h4 82315.853728: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=003
43328<...>-9039 ( 8943) [002] d.h5 82315.853748: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=003
43329          <idle>-0     (-----) [003] .n.1 82315.853755: cpu_idle: state=4294967295 cpu_id=3
43330          <idle>-0     (-----) [003] d..2 82315.853770: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
43331<...>-5340 ( 788) [003] d..2 82315.853835: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
43332<...>-9039 ( 8943) [002] d..2 82315.853862: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43333<...>-5340 ( 788) [003] d..3 82315.853887: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
43334          <idle>-0     (-----) [002] d..2 82315.853899: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
43335<...>-5340 ( 788) [003] d..2 82315.853916: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43336          <idle>-0     (-----) [003] d..1 82315.853935: cpu_idle: state=0 cpu_id=3
43337<...>-87 ( 87) [002] d..2 82315.853949: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43338          <idle>-0     (-----) [002] d..1 82315.853960: cpu_idle: state=0 cpu_id=2
43339<...>-9005 ( 8943) [005] d..3 82315.854429: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
43340          <idle>-0     (-----) [002] dnh2 82315.854458: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
43341          <idle>-0     (-----) [002] .n.1 82315.854466: cpu_idle: state=4294967295 cpu_id=2
43342          <idle>-0     (-----) [002] d..2 82315.854477: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
43343<...>-9039 ( 8943) [002] d..2 82315.854523: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43344          <idle>-0     (-----) [002] d..1 82315.854537: cpu_idle: state=0 cpu_id=2
43345<...>-9005 ( 8943) [005] d..1 82315.854551: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
43346<...>-9005 ( 8943) [005] d..2 82315.854570: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
43347          <idle>-0     (-----) [004] .n.1 82315.854577: cpu_idle: state=4294967295 cpu_id=4
43348          <idle>-0     (-----) [004] d..2 82315.854590: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
43349<...>-9005 ( 8943) [005] d..5 82315.854633: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
43350          <idle>-0     (-----) [001] dnh2 82315.854702: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
43351          <idle>-0     (-----) [001] .n.1 82315.854710: cpu_idle: state=4294967295 cpu_id=1
43352          <idle>-0     (-----) [001] d..2 82315.854724: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
43353<...>-9005 ( 8943) [005] d..2 82315.854727: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
43354 crtc_commit:111-321   (  321) [000] d..2 82315.854753: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
43355          <idle>-0     (-----) [005] d..1 82315.854755: cpu_idle: state=0 cpu_id=5
43356         rcuop/0-10    (   10) [000] d..2 82315.854768: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
43357         rcuop/0-10    (   10) [000] d..3 82315.854796: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
43358<...>-8951 ( 8858) [001] d..2 82315.854807: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43359         rcuop/0-10    (   10) [000] d..2 82315.854811: 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
43360          <idle>-0     (-----) [001] d..1 82315.854824: cpu_idle: state=0 cpu_id=1
43361     rcu_preempt-7     (    7) [000] d..2 82315.854845: 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
43362<...>-8969 ( 8943) [004] d..2 82315.854850: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43363          <idle>-0     (-----) [000] d..1 82315.854859: cpu_idle: state=0 cpu_id=0
43364          <idle>-0     (-----) [004] d..1 82315.854863: cpu_idle: state=0 cpu_id=4
43365          <idle>-0     (-----) [000] d.s2 82315.855152: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
43366          <idle>-0     (-----) [000] dns3 82315.855173: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
43367          <idle>-0     (-----) [000] .n.1 82315.855197: cpu_idle: state=4294967295 cpu_id=0
43368          <idle>-0     (-----) [000] d..2 82315.855208: 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
43369          <idle>-0     (-----) [002] d.h4 82315.855234: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43370<...>-8 ( 8) [000] d..2 82315.855251: 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
43371          <idle>-0     (-----) [002] dnh5 82315.855254: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43372          <idle>-0     (-----) [000] d..1 82315.855261: cpu_idle: state=0 cpu_id=0
43373          <idle>-0     (-----) [002] .n.1 82315.855267: cpu_idle: state=4294967295 cpu_id=2
43374          <idle>-0     (-----) [002] d..2 82315.855280: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
43375<...>-86 ( 86) [002] d..2 82315.855326: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43376          <idle>-0     (-----) [002] d..1 82315.855339: cpu_idle: state=0 cpu_id=2
43377          <idle>-0     (-----) [003] ...1 82315.855425: cpu_idle: state=4294967295 cpu_id=3
43378          <idle>-0     (-----) [003] d..1 82315.855430: cpu_idle: state=0 cpu_id=3
43379          <idle>-0     (-----) [002] d.h4 82315.855828: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=003
43380          <idle>-0     (-----) [002] d.h5 82315.855846: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=003
43381          <idle>-0     (-----) [003] .n.1 82315.855851: cpu_idle: state=4294967295 cpu_id=3
43382          <idle>-0     (-----) [003] d..2 82315.855866: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
43383          <idle>-0     (-----) [002] ...1 82315.855888: cpu_idle: state=4294967295 cpu_id=2
43384          <idle>-0     (-----) [002] d..1 82315.855894: cpu_idle: state=0 cpu_id=2
43385<...>-5340 ( 788) [003] d..2 82315.855924: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
43386<...>-5340 ( 788) [003] d..3 82315.855946: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
43387          <idle>-0     (-----) [002] .n.1 82315.855951: cpu_idle: state=4294967295 cpu_id=2
43388          <idle>-0     (-----) [002] d..2 82315.855965: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
43389<...>-5340 ( 788) [003] d..2 82315.855975: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43390          <idle>-0     (-----) [003] d..1 82315.855992: cpu_idle: state=0 cpu_id=3
43391<...>-87 ( 87) [002] d..2 82315.856016: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43392          <idle>-0     (-----) [002] d..1 82315.856028: cpu_idle: state=0 cpu_id=2
43393          <idle>-0     (-----) [001] ...1 82315.856459: cpu_idle: state=4294967295 cpu_id=1
43394          <idle>-0     (-----) [001] d..1 82315.856464: cpu_idle: state=0 cpu_id=1
43395          <idle>-0     (-----) [002] d.h4 82315.857334: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43396          <idle>-0     (-----) [002] dnh5 82315.857351: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43397          <idle>-0     (-----) [002] .n.1 82315.857363: cpu_idle: state=4294967295 cpu_id=2
43398          <idle>-0     (-----) [002] d..2 82315.857375: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
43399<...>-86 ( 86) [002] d..2 82315.857414: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43400          <idle>-0     (-----) [002] d..1 82315.857427: cpu_idle: state=0 cpu_id=2
43401          <idle>-0     (-----) [003] ...1 82315.857587: cpu_idle: state=4294967295 cpu_id=3
43402          <idle>-0     (-----) [003] d..1 82315.857592: cpu_idle: state=0 cpu_id=3
43403          <idle>-0     (-----) [002] d.h4 82315.858137: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=003
43404          <idle>-0     (-----) [002] d.h5 82315.858166: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
43405          <idle>-0     (-----) [000] .n.1 82315.858172: cpu_idle: state=4294967295 cpu_id=0
43406          <idle>-0     (-----) [000] d..2 82315.858183: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
43407          <idle>-0     (-----) [002] ...1 82315.858206: cpu_idle: state=4294967295 cpu_id=2
43408          <idle>-0     (-----) [002] d..1 82315.858212: cpu_idle: state=0 cpu_id=2
43409<...>-5340 ( 788) [000] d..2 82315.858264: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
43410<...>-5340 ( 788) [000] d..3 82315.858314: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
43411<...>-5340 ( 788) [000] d..2 82315.858332: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
43412<...>-87 ( 87) [000] d..2 82315.858385: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43413          <idle>-0     (-----) [000] d..1 82315.858399: cpu_idle: state=0 cpu_id=0
43414          <idle>-0     (-----) [000] d.s2 82315.858477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
43415          <idle>-0     (-----) [000] dns3 82315.858495: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
43416          <idle>-0     (-----) [000] dns3 82315.858505: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43417          <idle>-0     (-----) [000] dns4 82315.858544: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
43418          <idle>-0     (-----) [000] .n.1 82315.858557: cpu_idle: state=4294967295 cpu_id=0
43419          <idle>-0     (-----) [000] d..2 82315.858568: 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
43420     rcu_preempt-7     (    7) [000] d..2 82315.858585: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
43421     rcu_preempt-7     (    7) [000] d..3 82315.858600: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
43422     rcu_preempt-7     (    7) [000] d..2 82315.858613: 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
43423         rcuop/0-10    (   10) [000] d..2 82315.858619: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
43424         rcuop/0-10    (   10) [000] d..3 82315.858660: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
43425         rcuop/0-10    (   10) [000] d..2 82315.858672: 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
43426         rcuop/1-21    (   21) [000] d..2 82315.858700: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43427  kworker/u16:15-1311  ( 1311) [000] .... 82315.858751: clk_set_rate: l3_cluster0_vote_clk 403200000
43428  kworker/u16:15-1311  ( 1311) [000] .... 82315.858760: clk_set_rate: l3_clk 403200000
43429  kworker/u16:15-1311  ( 1311) [000] d..2 82315.859019: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
43430          <idle>-0     (-----) [000] d..1 82315.859032: cpu_idle: state=0 cpu_id=0
43431          <idle>-0     (-----) [001] d.s3 82315.859560: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
43432          <idle>-0     (-----) [001] d.s4 82315.859574: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
43433          <idle>-0     (-----) [001] d.s4 82315.859584: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
43434          <idle>-0     (-----) [000] .n.1 82315.859591: cpu_idle: state=4294967295 cpu_id=0
43435          <idle>-0     (-----) [001] ...1 82315.859594: cpu_idle: state=4294967295 cpu_id=1
43436          <idle>-0     (-----) [000] d..2 82315.859601: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43437          <idle>-0     (-----) [001] d..1 82315.859602: cpu_idle: state=0 cpu_id=1
43438          <idle>-0     (-----) [002] d.h4 82315.859615: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43439          <idle>-0     (-----) [002] dnh5 82315.859630: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43440          <idle>-0     (-----) [002] .n.1 82315.859639: cpu_idle: state=4294967295 cpu_id=2
43441          <idle>-0     (-----) [002] d..2 82315.859651: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
43442<...>-86 ( 86) [002] d..2 82315.859692: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43443          <idle>-0     (-----) [002] d..1 82315.859706: cpu_idle: state=0 cpu_id=2
43444  kworker/u16:15-1311  ( 1311) [000] d..2 82315.859793: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
43445          <idle>-0     (-----) [000] d..1 82315.859803: cpu_idle: state=0 cpu_id=0
43446          <idle>-0     (-----) [001] d.s3 82315.859822: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
43447          <idle>-0     (-----) [001] d.s4 82315.859832: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
43448          <idle>-0     (-----) [001] d.s4 82315.859840: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
43449          <idle>-0     (-----) [000] .n.1 82315.859846: cpu_idle: state=4294967295 cpu_id=0
43450          <idle>-0     (-----) [001] ...1 82315.859851: cpu_idle: state=4294967295 cpu_id=1
43451          <idle>-0     (-----) [000] d..2 82315.859856: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43452          <idle>-0     (-----) [001] d..1 82315.859856: cpu_idle: state=0 cpu_id=1
43453  kworker/u16:15-1311  ( 1311) [000] .... 82315.859892: clk_set_rate: l3_cluster1_vote_clk 576000000
43454  kworker/u16:15-1311  ( 1311) [000] .... 82315.859900: clk_set_rate: l3_clk 576000000
43455  kworker/u16:15-1311  ( 1311) [000] d..2 82315.859945: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43456          <idle>-0     (-----) [000] d..1 82315.859954: cpu_idle: state=0 cpu_id=0
43457          <idle>-0     (-----) [000] d.h5 82315.860104: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
43458          <idle>-0     (-----) [000] d.h6 82315.860126: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
43459          <idle>-0     (-----) [000] d.h5 82315.860131: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
43460          <idle>-0     (-----) [003] .n.1 82315.860131: cpu_idle: state=4294967295 cpu_id=3
43461          <idle>-0     (-----) [000] dnh6 82315.860140: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
43462          <idle>-0     (-----) [003] d..2 82315.860142: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
43463          <idle>-0     (-----) [000] .n.1 82315.860155: cpu_idle: state=4294967295 cpu_id=0
43464          <idle>-0     (-----) [000] d..2 82315.860162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
43465  crtc_event:111-322   (  322) [003] d..2 82315.860183: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43466          <idle>-0     (-----) [003] d..1 82315.860193: cpu_idle: state=0 cpu_id=3
43467 crtc_commit:111-321   (  321) [000] d..2 82315.860333: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
43468          <idle>-0     (-----) [000] d..1 82315.860343: cpu_idle: state=0 cpu_id=0
43469          <idle>-0     (-----) [002] d.h4 82315.860360: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
43470          <idle>-0     (-----) [002] d.h5 82315.860376: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
43471          <idle>-0     (-----) [000] .n.1 82315.860383: cpu_idle: state=4294967295 cpu_id=0
43472          <idle>-0     (-----) [000] d..2 82315.860393: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
43473          <idle>-0     (-----) [002] ...1 82315.860411: cpu_idle: state=4294967295 cpu_id=2
43474          <idle>-0     (-----) [002] d..1 82315.860416: cpu_idle: state=0 cpu_id=2
43475<...>-5340 ( 788) [000] d..1 82315.860425: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
43476<...>-5340 ( 788) [000] d..2 82315.860455: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
43477<...>-5340 ( 788) [000] d..2 82315.860494: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
43478<...>-5340 ( 788) [000] d..3 82315.860512: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
43479<...>-5340 ( 788) [000] d..2 82315.860524: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
43480 neuralnetworks@-13088 (  788) [000] d..2 82315.860595: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
43481<...>-87 ( 87) [000] d..2 82315.860639: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43482          <idle>-0     (-----) [000] d..1 82315.860651: cpu_idle: state=0 cpu_id=0
43483          <idle>-0     (-----) [000] d.s3 82315.861807: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
43484          <idle>-0     (-----) [000] d.s4 82315.861824: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
43485          <idle>-0     (-----) [000] d.s2 82315.861827: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
43486          <idle>-0     (-----) [003] .n.1 82315.861830: cpu_idle: state=4294967295 cpu_id=3
43487          <idle>-0     (-----) [003] d..2 82315.861841: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
43488          <idle>-0     (-----) [000] dns3 82315.861842: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
43489          <idle>-0     (-----) [000] dns3 82315.861850: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
43490  crtc_event:111-322   (  322) [003] d..2 82315.861873: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43491          <idle>-0     (-----) [003] d..1 82315.861883: cpu_idle: state=0 cpu_id=3
43492          <idle>-0     (-----) [000] dns4 82315.861888: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43493          <idle>-0     (-----) [002] d.h4 82315.861893: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43494          <idle>-0     (-----) [003] .n.1 82315.861894: cpu_idle: state=4294967295 cpu_id=3
43495          <idle>-0     (-----) [000] .n.1 82315.861897: cpu_idle: state=4294967295 cpu_id=0
43496          <idle>-0     (-----) [003] d..2 82315.861905: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43497          <idle>-0     (-----) [000] d..2 82315.861906: 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
43498          <idle>-0     (-----) [002] dnh5 82315.861907: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
43499<...>-8 ( 8) [000] d..2 82315.861914: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
43500          <idle>-0     (-----) [002] .n.1 82315.861915: cpu_idle: state=4294967295 cpu_id=2
43501          <idle>-0     (-----) [002] d..2 82315.861928: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
43502<...>-8 ( 8) [000] d..3 82315.861930: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
43503<...>-8 ( 8) [000] d..2 82315.861941: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
43504<...>-46 ( 46) [000] d..2 82315.861948: sched_waking: comm=rcuos/5 pid=54 prio=120 target_cpu=000
43505<...>-86 ( 86) [002] d..2 82315.861964: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43506          <idle>-0     (-----) [002] d..1 82315.861976: cpu_idle: state=0 cpu_id=2
43507<...>-46 ( 46) [000] d..3 82315.861990: sched_wakeup: comm=rcuos/5 pid=54 prio=120 target_cpu=002
43508          <idle>-0     (-----) [002] .n.1 82315.861996: cpu_idle: state=4294967295 cpu_id=2
43509  kworker/u16:15-1311  ( 1311) [003] d..2 82315.861997: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
43510          <idle>-0     (-----) [003] d..1 82315.862006: cpu_idle: state=0 cpu_id=3
43511          <idle>-0     (-----) [002] d..2 82315.862008: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/5 next_pid=54 next_prio=120
43512<...>-46 ( 46) [000] d..2 82315.862012: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43513          <idle>-0     (-----) [000] d..1 82315.862025: cpu_idle: state=0 cpu_id=0
43514<...>-54 ( 54) [002] d..2 82315.862049: sched_switch: prev_comm=rcuos/5 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43515          <idle>-0     (-----) [002] d..1 82315.862061: cpu_idle: state=0 cpu_id=2
43516          <idle>-0     (-----) [003] d.h2 82315.862091: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43517          <idle>-0     (-----) [003] d.h3 82315.862100: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
43518          <idle>-0     (-----) [003] dnh3 82315.862105: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43519          <idle>-0     (-----) [003] .n.1 82315.862113: cpu_idle: state=4294967295 cpu_id=3
43520          <idle>-0     (-----) [003] d..2 82315.862123: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43521  kworker/u16:15-1311  ( 1311) [003] d..2 82315.862226: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
43522          <idle>-0     (-----) [003] d..1 82315.862235: cpu_idle: state=0 cpu_id=3
43523          <idle>-0     (-----) [003] d.h2 82315.862319: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43524          <idle>-0     (-----) [003] d.h3 82315.862328: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
43525          <idle>-0     (-----) [003] dnh3 82315.862332: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43526          <idle>-0     (-----) [003] .n.1 82315.862340: cpu_idle: state=4294967295 cpu_id=3
43527          <idle>-0     (-----) [003] d..2 82315.862350: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43528          <idle>-0     (-----) [000] d.h5 82315.862436: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
43529          <idle>-0     (-----) [000] dnh6 82315.862448: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
43530          <idle>-0     (-----) [000] .n.1 82315.862460: cpu_idle: state=4294967295 cpu_id=0
43531  kworker/u16:15-1311  ( 1311) [003] d..2 82315.862461: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
43532          <idle>-0     (-----) [000] d..2 82315.862470: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
43533          <idle>-0     (-----) [003] d..1 82315.862470: cpu_idle: state=0 cpu_id=3
43534 crtc_commit:111-321   (  321) [000] d..2 82315.862551: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43535          <idle>-0     (-----) [003] d.h2 82315.862552: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43536          <idle>-0     (-----) [003] d.h3 82315.862561: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
43537          <idle>-0     (-----) [000] d..1 82315.862563: cpu_idle: state=0 cpu_id=0
43538          <idle>-0     (-----) [003] dnh3 82315.862565: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43539          <idle>-0     (-----) [003] .n.1 82315.862573: cpu_idle: state=4294967295 cpu_id=3
43540          <idle>-0     (-----) [003] d..2 82315.862583: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43541  kworker/u16:15-1311  ( 1311) [003] d..2 82315.862609: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
43542          <idle>-0     (-----) [003] d..1 82315.862618: cpu_idle: state=0 cpu_id=3
43543          <idle>-0     (-----) [003] d.h2 82315.862700: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43544          <idle>-0     (-----) [003] d.h3 82315.862708: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
43545          <idle>-0     (-----) [003] dnh3 82315.862712: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43546          <idle>-0     (-----) [003] .n.1 82315.862719: cpu_idle: state=4294967295 cpu_id=3
43547          <idle>-0     (-----) [000] d.h5 82315.862726: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
43548          <idle>-0     (-----) [003] d..2 82315.862728: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43549          <idle>-0     (-----) [000] dnh6 82315.862751: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
43550  kworker/u16:15-1311  ( 1311) [003] d..2 82315.862759: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
43551          <idle>-0     (-----) [003] d..1 82315.862767: cpu_idle: state=0 cpu_id=3
43552          <idle>-0     (-----) [000] .n.1 82315.862768: cpu_idle: state=4294967295 cpu_id=0
43553          <idle>-0     (-----) [000] d..2 82315.862778: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
43554  crtc_event:111-322   (  322) [000] d..2 82315.862804: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43555          <idle>-0     (-----) [000] d..1 82315.862813: cpu_idle: state=0 cpu_id=0
43556          <idle>-0     (-----) [003] d.h2 82315.862849: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43557          <idle>-0     (-----) [003] d.h3 82315.862857: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
43558          <idle>-0     (-----) [003] dnh3 82315.862860: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43559          <idle>-0     (-----) [003] .n.1 82315.862868: cpu_idle: state=4294967295 cpu_id=3
43560          <idle>-0     (-----) [003] d..2 82315.862877: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43561          <idle>-0     (-----) [000] d.h2 82315.863061: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
43562          <idle>-0     (-----) [000] dnh3 82315.863075: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
43563  kworker/u16:15-1311  ( 1311) [003] d..2 82315.863081: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
43564          <idle>-0     (-----) [000] .n.1 82315.863084: cpu_idle: state=4294967295 cpu_id=0
43565          <idle>-0     (-----) [000] d..2 82315.863094: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
43566          <idle>-0     (-----) [003] d..1 82315.863095: cpu_idle: state=0 cpu_id=3
43567          <idle>-0     (-----) [001] d.s3 82315.863110: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43568          <idle>-0     (-----) [001] d.s4 82315.863119: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
43569        DispSync-8879  ( 8858) [000] d..1 82315.863122: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43570          <idle>-0     (-----) [001] d.s4 82315.863126: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43571          <idle>-0     (-----) [003] .n.1 82315.863133: cpu_idle: state=4294967295 cpu_id=3
43572          <idle>-0     (-----) [001] ...1 82315.863135: cpu_idle: state=4294967295 cpu_id=1
43573        DispSync-8879  ( 8858) [000] d..2 82315.863139: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43574          <idle>-0     (-----) [001] d..1 82315.863140: cpu_idle: state=0 cpu_id=1
43575          <idle>-0     (-----) [003] d..2 82315.863144: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43576          <idle>-0     (-----) [002] .n.1 82315.863146: cpu_idle: state=4294967295 cpu_id=2
43577          <idle>-0     (-----) [002] d..2 82315.863155: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
43578        DispSync-8879  ( 8858) [000] d..2 82315.863174: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43579          <idle>-0     (-----) [000] d..1 82315.863188: cpu_idle: state=0 cpu_id=0
43580  kworker/u16:15-1311  ( 1311) [003] d..2 82315.863207: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
43581          <idle>-0     (-----) [003] d..1 82315.863216: cpu_idle: state=0 cpu_id=3
43582   sfEventThread-8882  ( 8858) [002] d..3 82315.863222: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
43583          <idle>-0     (-----) [004] dnh2 82315.863250: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
43584   sfEventThread-8882  ( 8858) [002] d..3 82315.863255: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
43585          <idle>-0     (-----) [004] .n.1 82315.863255: cpu_idle: state=4294967295 cpu_id=4
43586          <idle>-0     (-----) [004] d..2 82315.863264: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
43587   sfEventThread-8882  ( 8858) [002] d..4 82315.863273: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
43588          <idle>-0     (-----) [001] .n.1 82315.863277: cpu_idle: state=4294967295 cpu_id=1
43589          <idle>-0     (-----) [001] d..2 82315.863291: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
43590   sfEventThread-8882  ( 8858) [002] d..3 82315.863295: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
43591          <idle>-0     (-----) [003] d.h2 82315.863298: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43592          <idle>-0     (-----) [003] d.h3 82315.863307: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
43593          <idle>-0     (-----) [003] dnh3 82315.863311: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43594          <idle>-0     (-----) [005] dnh2 82315.863319: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
43595          <idle>-0     (-----) [003] .n.1 82315.863320: cpu_idle: state=4294967295 cpu_id=3
43596          <idle>-0     (-----) [005] .n.1 82315.863323: cpu_idle: state=4294967295 cpu_id=5
43597          <idle>-0     (-----) [003] d..2 82315.863330: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43598          <idle>-0     (-----) [005] d..2 82315.863333: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
43599   sfEventThread-8882  ( 8858) [002] d..2 82315.863341: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43600          <idle>-0     (-----) [002] d..1 82315.863357: cpu_idle: state=0 cpu_id=2
43601  kworker/u16:15-1311  ( 1311) [003] d..2 82315.863417: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
43602          <idle>-0     (-----) [003] d..1 82315.863425: cpu_idle: state=0 cpu_id=3
43603<...>-9005 ( 8943) [005] .... 82315.863482: binder_transaction: transaction=1569090 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
43604<...>-9005 ( 8943) [005] .... 82315.863487: binder_transaction_alloc_buf: transaction=1569090 data_size=80 offsets_size=0
43605<...>-9005 ( 8943) [005] d..4 82315.863490: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
43606          <idle>-0     (-----) [003] d.h2 82315.863508: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43607          <idle>-0     (-----) [003] d.h3 82315.863516: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_rpmh_gpu_pwrctrl+0x13d4/0x3168
43608          <idle>-0     (-----) [003] dnh3 82315.863520: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
43609          <idle>-0     (-----) [000] dnh2 82315.863523: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
43610          <idle>-0     (-----) [003] .n.1 82315.863527: cpu_idle: state=4294967295 cpu_id=3
43611          <idle>-0     (-----) [000] .n.1 82315.863531: cpu_idle: state=4294967295 cpu_id=0
43612          <idle>-0     (-----) [003] d..2 82315.863537: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43613          <idle>-0     (-----) [000] d..2 82315.863542: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
43614<...>-8951 ( 8858) [000] .... 82315.863549: binder_transaction_received: transaction=1569090
43615  kworker/u16:15-1311  ( 1311) [003] d..1 82315.863555: clk_disable: gpu_cc_cx_gmu_clk
43616<...>-9006 ( 8943) [004] .... 82315.863564: binder_transaction: transaction=1569091 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
43617<...>-9006 ( 8943) [004] .... 82315.863568: binder_transaction_alloc_buf: transaction=1569091 data_size=80 offsets_size=0
43618<...>-9006 ( 8943) [004] d..4 82315.863572: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
43619<...>-8951 ( 8858) [000] d..1 82315.863580: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43620  kworker/u16:15-1311  ( 1311) [003] d..1 82315.863581: clk_disable: gpu_cc_gmu_clk_src
43621<...>-8951 ( 8858) [000] d..2 82315.863597: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43622          <idle>-0     (-----) [002] dnh2 82315.863609: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
43623  kworker/u16:15-1311  ( 1311) [003] d..1 82315.863615: clk_disable: gcc_gpu_gpll0_div_clk_src
43624          <idle>-0     (-----) [002] .n.1 82315.863616: cpu_idle: state=4294967295 cpu_id=2
43625          <idle>-0     (-----) [002] d..2 82315.863625: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
43626<...>-8951 ( 8858) [000] d..2 82315.863645: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43627   sfEventThread-8882  ( 8858) [002] d..2 82315.863659: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
43628          <idle>-0     (-----) [000] d..1 82315.863660: cpu_idle: state=0 cpu_id=0
43629<...>-8874 ( 8858) [002] .... 82315.863666: binder_transaction_received: transaction=1569091
43630<...>-8874 ( 8858) [002] d..1 82315.863694: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
43631<...>-9006 ( 8943) [004] .... 82315.863718: binder_transaction: transaction=1569092 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
43632<...>-8874 ( 8858) [002] d..2 82315.863719: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
43633<...>-9006 ( 8943) [004] .... 82315.863721: binder_transaction_alloc_buf: transaction=1569092 data_size=684 offsets_size=32
43634          <idle>-0     (-----) [000] .n.1 82315.863726: cpu_idle: state=4294967295 cpu_id=0
43635          <idle>-0     (-----) [000] d..2 82315.863736: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
43636<...>-9006 ( 8943) [004] ...2 82315.863737: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
43637<...>-9006 ( 8943) [004] d..4 82315.863740: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
43638<...>-9006 ( 8943) [004] dn.5 82315.863760: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
43639   sfEventThread-8882  ( 8858) [000] d..2 82315.863799: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43640<...>-9006 ( 8943) [004] d..2 82315.863801: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
43641          <idle>-0     (-----) [000] d..1 82315.863810: cpu_idle: state=0 cpu_id=0
43642<...>-8951 ( 8858) [004] .... 82315.863814: binder_transaction_received: transaction=1569092
43643<...>-8874 ( 8858) [002] d..2 82315.863817: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43644  surfaceflinger-8858  ( 8858) [001] ...1 82315.863821: tracing_mark_write: B|8858|HIDL::IComposerClient::destroyLayer::client
43645  surfaceflinger-8858  ( 8858) [001] ...1 82315.863829: tracing_mark_write: E|8858
43646          <idle>-0     (-----) [002] d..1 82315.863832: cpu_idle: state=0 cpu_id=2
43647  surfaceflinger-8858  ( 8858) [001] .... 82315.863875: binder_transaction: transaction=1569093 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x6
43648  surfaceflinger-8858  ( 8858) [001] .... 82315.863880: binder_transaction_alloc_buf: transaction=1569093 data_size=72 offsets_size=0
43649<...>-8951 ( 8858) [004] d..2 82315.863883: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=S ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
43650  surfaceflinger-8858  ( 8858) [001] ...2 82315.863886: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
43651  surfaceflinger-8858  ( 8858) [001] d..4 82315.863893: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
43652<...>-9006 ( 8943) [004] d..2 82315.863907: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43653  surfaceflinger-8858  ( 8858) [001] d..5 82315.863912: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
43654          <idle>-0     (-----) [002] .n.1 82315.863918: cpu_idle: state=4294967295 cpu_id=2
43655          <idle>-0     (-----) [004] d..1 82315.863920: cpu_idle: state=0 cpu_id=4
43656          <idle>-0     (-----) [002] d..2 82315.863928: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
43657 [email protected]   (  619) [002] .... 82315.863939: binder_transaction_received: transaction=1569093
43658  surfaceflinger-8858  ( 8858) [001] d..2 82315.863944: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43659          <idle>-0     (-----) [001] d..1 82315.863961: cpu_idle: state=0 cpu_id=1
43660 [email protected]   (  619) [002] ...1 82315.863991: tracing_mark_write: B|619|HIDL::IComposerClient::destroyLayer::server
43661 [email protected]   (  619) [002] ...1 82315.864042: tracing_mark_write: B|619|HIDL::IMapper::freeBuffer::passthrough
43662 [email protected]   (  619) [002] ...1 82315.864062: tracing_mark_write: B|619|FreeBuffer
43663<...>-9005 ( 8943) [005] .... 82315.864064: binder_transaction: transaction=1569094 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
43664<...>-9005 ( 8943) [005] .... 82315.864068: binder_transaction_alloc_buf: transaction=1569094 data_size=1900 offsets_size=96
43665 [email protected]   (  619) [002] ...1 82315.864090: tracing_mark_write: E|619
43666 [email protected]   (  619) [002] ...1 82315.864095: tracing_mark_write: B|619|FreeBuffer
43667<...>-9005 ( 8943) [005] ...2 82315.864096: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
43668<...>-9005 ( 8943) [005] d..4 82315.864100: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
43669 [email protected]   (  619) [002] ...1 82315.864101: tracing_mark_write: B|619|UnmapBuffer
43670<...>-9005 ( 8943) [005] dn.5 82315.864123: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
43671  kworker/u16:15-1311  ( 1311) [003] d..1 82315.864131: clk_disable: gpll0_out_even
43672 [email protected]   (  619) [002] ...1 82315.864144: tracing_mark_write: E|619
43673 [email protected]   (  619) [002] ...1 82315.864155: tracing_mark_write: E|619
43674 [email protected]   (  619) [002] ...1 82315.864165: tracing_mark_write: E|619
43675<...>-9005 ( 8943) [005] d..2 82315.864167: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
43676  kworker/u16:15-1311  ( 1311) [003] d..1 82315.864177: clk_disable: gpu_cc_cxo_clk
43677<...>-8874 ( 8858) [005] .... 82315.864179: binder_transaction_received: transaction=1569094
43678 [email protected]   (  619) [002] ...1 82315.864183: tracing_mark_write: E|619
43679  kworker/u16:15-1311  ( 1311) [003] d..1 82315.864191: clk_disable: gcc_ddrss_gpu_axi_clk
43680 [email protected]   (  619) [002] .... 82315.864198: binder_transaction: transaction=1569095 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
43681 [email protected]   (  619) [002] .... 82315.864204: binder_transaction_alloc_buf: transaction=1569095 data_size=8 offsets_size=0
43682 [email protected]   (  619) [002] d..2 82315.864208: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
43683  kworker/u16:15-1311  ( 1311) [003] d..1 82315.864213: clk_disable: gcc_gpu_memnoc_gfx_clk
43684 [email protected]   (  619) [002] d..3 82315.864228: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
43685 [email protected]   (  619) [002] .... 82315.864232: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
43686          <idle>-0     (-----) [001] .n.1 82315.864234: cpu_idle: state=4294967295 cpu_id=1
43687          <idle>-0     (-----) [001] d..2 82315.864245: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
43688  surfaceflinger-8858  ( 8858) [001] .... 82315.864253: binder_transaction_received: transaction=1569095
43689<...>-8874 ( 8858) [005] d..2 82315.864278: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
43690 [email protected]   (  619) [002] d..2 82315.864297: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43691<...>-9005 ( 8943) [005] d..2 82315.864300: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
43692          <idle>-0     (-----) [002] d..1 82315.864314: cpu_idle: state=0 cpu_id=2
43693          <idle>-0     (-----) [005] d..1 82315.864316: cpu_idle: state=0 cpu_id=5
43694  kworker/u16:15-1311  ( 1311) [003] d..2 82315.864374: sched_waking: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=002
43695  kworker/u16:15-1311  ( 1311) [003] dn.3 82315.864422: sched_wakeup: comm=kworker/u16:9 pid=1054 prio=120 target_cpu=003
43696  kworker/u16:15-1311  ( 1311) [003] d..2 82315.864435: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:9 next_pid=1054 next_prio=120
43697  surfaceflinger-8858  ( 8858) [001] d..1 82315.864671: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
43698          <idle>-0     (-----) [004] dnh2 82315.864695: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
43699          <idle>-0     (-----) [004] .n.1 82315.864700: cpu_idle: state=4294967295 cpu_id=4
43700          <idle>-0     (-----) [004] d..2 82315.864708: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
43701<...>-8951 ( 8858) [004] d..1 82315.864744: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
43702<...>-8951 ( 8858) [004] d..1 82315.864758: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
43703          <idle>-0     (-----) [000] dnh2 82315.864766: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
43704<...>-8951 ( 8858) [004] d..2 82315.864769: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
43705          <idle>-0     (-----) [000] .n.1 82315.864773: cpu_idle: state=4294967295 cpu_id=0
43706          <idle>-0     (-----) [005] .n.1 82315.864776: cpu_idle: state=4294967295 cpu_id=5
43707          <idle>-0     (-----) [000] d..2 82315.864782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
43708<...>-8951 ( 8858) [004] .... 82315.864786: binder_transaction: transaction=1569096 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
43709          <idle>-0     (-----) [005] d..2 82315.864786: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
43710<...>-8951 ( 8858) [004] .... 82315.864789: binder_transaction_alloc_buf: transaction=1569096 data_size=0 offsets_size=0
43711<...>-8951 ( 8858) [004] d..2 82315.864791: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
43712<...>-8951 ( 8858) [004] d..3 82315.864799: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
43713<...>-8951 ( 8858) [004] .... 82315.864801: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
43714   sfEventThread-8882  ( 8858) [000] d..2 82315.864813: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43715          <idle>-0     (-----) [000] d..1 82315.864824: cpu_idle: state=0 cpu_id=0
43716<...>-8951 ( 8858) [004] d..2 82315.864837: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
43717<...>-9006 ( 8943) [004] .... 82315.864846: binder_transaction_received: transaction=1569096
43718<...>-8874 ( 8858) [005] .... 82315.864846: binder_transaction: transaction=1569097 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
43719<...>-8874 ( 8858) [005] .... 82315.864850: binder_transaction_alloc_buf: transaction=1569097 data_size=0 offsets_size=0
43720<...>-8874 ( 8858) [005] d..2 82315.864852: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
43721<...>-8874 ( 8858) [005] d..3 82315.864862: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
43722<...>-8874 ( 8858) [005] .... 82315.864865: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
43723<...>-8874 ( 8858) [005] d..2 82315.864914: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
43724<...>-9005 ( 8943) [005] .... 82315.864923: binder_transaction_received: transaction=1569097
43725<...>-9006 ( 8943) [004] d..2 82315.864934: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43726          <idle>-0     (-----) [004] d..1 82315.864946: cpu_idle: state=0 cpu_id=4
43727<...>-1054 ( 1054) [003] d..2 82315.864957: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
43728<...>-1054 ( 1054) [003] d..3 82315.865002: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
43729<...>-1054 ( 1054) [003] d..2 82315.865025: sched_switch: prev_comm=kworker/u16:9 prev_pid=1054 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
43730          <idle>-0     (-----) [002] ...1 82315.865071: cpu_idle: state=4294967295 cpu_id=2
43731          <idle>-0     (-----) [004] ...1 82315.865072: cpu_idle: state=4294967295 cpu_id=4
43732          <idle>-0     (-----) [002] d..1 82315.865076: cpu_idle: state=0 cpu_id=2
43733          <idle>-0     (-----) [004] d..1 82315.865077: cpu_idle: state=2 cpu_id=4
43734          <idle>-0     (-----) [006] ...1 82315.865077: cpu_idle: state=4294967295 cpu_id=6
43735          <idle>-0     (-----) [007] ...1 82315.865078: cpu_idle: state=4294967295 cpu_id=7
43736          <idle>-0     (-----) [006] d..1 82315.865083: cpu_idle: state=2 cpu_id=6
43737          <idle>-0     (-----) [007] d..1 82315.865084: cpu_idle: state=0 cpu_id=7
43738  kworker/u16:15-1311  ( 1311) [003] d..2 82315.865097: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43739          <idle>-0     (-----) [003] d..1 82315.865114: cpu_idle: state=0 cpu_id=3
43740<...>-9005 ( 8943) [005] d..3 82315.865361: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
43741<...>-9005 ( 8943) [005] d..4 82315.865379: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
43742          <idle>-0     (-----) [007] ...1 82315.865523: cpu_idle: state=4294967295 cpu_id=7
43743          <idle>-0     (-----) [007] d..1 82315.865526: cpu_idle: state=2 cpu_id=7
43744<...>-9005 ( 8943) [005] .... 82315.865561: binder_transaction: transaction=1569098 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
43745<...>-9005 ( 8943) [005] .... 82315.865567: binder_transaction_alloc_buf: transaction=1569098 data_size=96 offsets_size=0
43746<...>-9005 ( 8943) [005] d..4 82315.865571: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=000
43747          <idle>-0     (-----) [000] dnh2 82315.865606: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=000
43748          <idle>-0     (-----) [000] .n.1 82315.865612: cpu_idle: state=4294967295 cpu_id=0
43749          <idle>-0     (-----) [000] d..2 82315.865623: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
43750<...>-9131 ( 9105) [000] .... 82315.865635: binder_transaction_received: transaction=1569098
43751<...>-9005 ( 8943) [005] d..3 82315.865668: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
43752<...>-9005 ( 8943) [005] d..4 82315.865685: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
43753<...>-9131 ( 9105) [000] d..3 82315.865813: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
43754<...>-9131 ( 9105) [000] d..4 82315.865846: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
43755          <idle>-0     (-----) [002] .n.1 82315.865851: cpu_idle: state=4294967295 cpu_id=2
43756          <idle>-0     (-----) [002] d..2 82315.865865: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
43757<...>-9131 ( 9105) [000] d..2 82315.865946: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43758<...>-9005 ( 8943) [005] .... 82315.865949: binder_transaction: transaction=1569099 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
43759<...>-9005 ( 8943) [005] .... 82315.865954: binder_transaction_alloc_buf: transaction=1569099 data_size=76 offsets_size=0
43760<...>-9005 ( 8943) [005] ...2 82315.865957: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
43761<...>-9005 ( 8943) [005] d..4 82315.865960: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
43762  surfaceflinger-8858  ( 8858) [001] ...1 82315.865965: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
43763          <idle>-0     (-----) [000] d..1 82315.865966: cpu_idle: state=0 cpu_id=0
43764<...>-9005 ( 8943) [005] dn.5 82315.865970: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
43765<...>-9005 ( 8943) [005] d..2 82315.865978: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
43766<...>-8874 ( 8858) [005] .... 82315.865989: binder_transaction_received: transaction=1569099
43767  surfaceflinger-8858  ( 8858) [001] ...1 82315.866000: tracing_mark_write: B|8858|FreeBuffer
43768<...>-8874 ( 8858) [005] .... 82315.866020: binder_transaction: transaction=1569100 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
43769<...>-8874 ( 8858) [005] .... 82315.866023: binder_transaction_alloc_buf: transaction=1569100 data_size=0 offsets_size=0
43770<...>-8874 ( 8858) [005] .... 82315.866025: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
43771  surfaceflinger-8858  ( 8858) [001] ...1 82315.866030: tracing_mark_write: E|8858
43772<...>-9105 ( 9105) [002] d..2 82315.866033: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43773  surfaceflinger-8858  ( 8858) [001] ...1 82315.866035: tracing_mark_write: B|8858|FreeBuffer
43774          <idle>-0     (-----) [002] d..1 82315.866049: cpu_idle: state=0 cpu_id=2
43775<...>-8874 ( 8858) [005] d..2 82315.866054: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
43776<...>-9005 ( 8943) [005] .... 82315.866063: binder_transaction_received: transaction=1569100
43777  surfaceflinger-8858  ( 8858) [001] d..2 82315.866066: sched_waking: comm=system pid=104 prio=120 target_cpu=004
43778  surfaceflinger-8858  ( 8858) [001] d..3 82315.866145: sched_wakeup: comm=system pid=104 prio=120 target_cpu=000
43779          <idle>-0     (-----) [000] .n.1 82315.866152: cpu_idle: state=4294967295 cpu_id=0
43780          <idle>-0     (-----) [000] d..2 82315.866197: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system next_pid=104 next_prio=120
43781  surfaceflinger-8858  ( 8858) [001] d..2 82315.866214: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
43782          <idle>-0     (-----) [003] ...1 82315.866232: cpu_idle: state=4294967295 cpu_id=3
43783          <idle>-0     (-----) [003] d..1 82315.866238: cpu_idle: state=2 cpu_id=3
43784  surfaceflinger-8858  ( 8858) [001] d..3 82315.866250: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
43785          <idle>-0     (-----) [002] .n.1 82315.866257: cpu_idle: state=4294967295 cpu_id=2
43786          <idle>-0     (-----) [002] d..2 82315.866270: 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
43787  surfaceflinger-8858  ( 8858) [001] ...1 82315.866272: tracing_mark_write: E|8858
43788         rcuop/0-10    (   10) [002] d..2 82315.866278: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
43789  surfaceflinger-8858  ( 8858) [001] ...1 82315.866284: tracing_mark_write: E|8858
43790          system-104   (  104) [000] d..2 82315.866305: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43791          <idle>-0     (-----) [000] d..1 82315.866317: cpu_idle: state=0 cpu_id=0
43792         rcuop/0-10    (   10) [002] d..3 82315.866321: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
43793         rcuop/0-10    (   10) [002] d..2 82315.866333: 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
43794          <idle>-0     (-----) [004] .n.1 82315.866354: cpu_idle: state=4294967295 cpu_id=4
43795     rcu_preempt-7     (    7) [002] d..2 82315.866358: 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
43796          <idle>-0     (-----) [002] d..1 82315.866369: cpu_idle: state=0 cpu_id=2
43797          <idle>-0     (-----) [004] d..2 82315.866371: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
43798          <idle>-0     (-----) [006] .n.1 82315.866410: cpu_idle: state=4294967295 cpu_id=6
43799          <idle>-0     (-----) [006] d..2 82315.866429: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
43800<...>-8969 ( 8943) [004] d..2 82315.866440: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43801          <idle>-0     (-----) [004] d..1 82315.866452: cpu_idle: state=2 cpu_id=4
43802<...>-8962 ( 8943) [006] d..3 82315.866515: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=003
43803          <idle>-0     (-----) [000] dnh2 82315.866552: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
43804          <idle>-0     (-----) [000] .n.1 82315.866559: cpu_idle: state=4294967295 cpu_id=0
43805          <idle>-0     (-----) [000] d..2 82315.866569: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
43806<...>-8962 ( 8943) [006] d..2 82315.866583: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
43807          <idle>-0     (-----) [006] d..1 82315.866595: cpu_idle: state=2 cpu_id=6
43808  surfaceflinger-8858  ( 8858) [001] ...1 82315.866695: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
43809  surfaceflinger-8858  ( 8858) [001] ...1 82315.866701: tracing_mark_write: E|8858
43810   system_server-8943  ( 8943) [000] .... 82315.866711: binder_transaction: transaction=1569101 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
43811   system_server-8943  ( 8943) [000] .... 82315.866716: binder_transaction_alloc_buf: transaction=1569101 data_size=96 offsets_size=0
43812   system_server-8943  ( 8943) [000] d..4 82315.866722: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=000
43813   system_server-8943  ( 8943) [000] d..5 82315.866751: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=002
43814  surfaceflinger-8858  ( 8858) [001] .... 82315.866757: binder_transaction: transaction=1569102 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
43815          <idle>-0     (-----) [002] .n.1 82315.866757: cpu_idle: state=4294967295 cpu_id=2
43816  surfaceflinger-8858  ( 8858) [001] .... 82315.866762: binder_transaction_alloc_buf: transaction=1569102 data_size=620 offsets_size=112
43817          <idle>-0     (-----) [002] d..2 82315.866769: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
43818<...>-9131 ( 9105) [002] .... 82315.866777: binder_transaction_received: transaction=1569101
43819<...>-9005 ( 8943) [005] d..3 82315.866791: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
43820  surfaceflinger-8858  ( 8858) [001] ...2 82315.866793: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
43821  surfaceflinger-8858  ( 8858) [001] d..4 82315.866802: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
43822  surfaceflinger-8858  ( 8858) [001] d..5 82315.866832: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
43823   system_server-8943  ( 8943) [000] d..2 82315.866840: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43824  surfaceflinger-8858  ( 8858) [001] d..2 82315.866855: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
43825          <idle>-0     (-----) [000] d..1 82315.866858: cpu_idle: state=0 cpu_id=0
43826  kworker/u16:13-1147  ( 1147) [001] d..2 82315.866888: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43827<...>-9005 ( 8943) [005] d..1 82315.866905: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
43828<...>-9131 ( 9105) [002] d..3 82315.866907: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
43829          <idle>-0     (-----) [001] d..1 82315.866908: cpu_idle: state=0 cpu_id=1
43830<...>-9005 ( 8943) [005] d..2 82315.866918: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
43831<...>-9131 ( 9105) [002] d..4 82315.866938: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
43832          <idle>-0     (-----) [000] .n.1 82315.866945: cpu_idle: state=4294967295 cpu_id=0
43833          <idle>-0     (-----) [000] d..2 82315.866958: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
43834<...>-9005 ( 8943) [005] d..2 82315.866978: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
43835          <idle>-0     (-----) [005] d..1 82315.866995: cpu_idle: state=2 cpu_id=5
43836<...>-9131 ( 9105) [002] d..2 82315.867025: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43837          <idle>-0     (-----) [002] d..1 82315.867042: cpu_idle: state=0 cpu_id=2
43838<...>-9105 ( 9105) [000] d..2 82315.867075: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43839          <idle>-0     (-----) [003] dnh2 82315.867092: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=003
43840          <idle>-0     (-----) [000] d..1 82315.867093: cpu_idle: state=0 cpu_id=0
43841          <idle>-0     (-----) [003] .n.1 82315.867102: cpu_idle: state=4294967295 cpu_id=3
43842          <idle>-0     (-----) [003] d..2 82315.867116: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
43843 [email protected]   (  619) [003] .... 82315.867128: binder_transaction_received: transaction=1569102
43844 [email protected]   (  619) [003] ...1 82315.867183: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
43845 [email protected]   (  619) [003] ...1 82315.867378: tracing_mark_write: B|619|HWCSession::PresentDisplay::
43846          <idle>-0     (-----) [004] .n.1 82315.867507: cpu_idle: state=4294967295 cpu_id=4
43847          <idle>-0     (-----) [004] d..2 82315.867522: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
43848<...>-8969 ( 8943) [004] d..2 82315.867711: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
43849          <idle>-0     (-----) [004] d..1 82315.867723: cpu_idle: state=2 cpu_id=4
43850 [email protected]   (  619) [003] ...1 82315.868318: tracing_mark_write: B|619|HWDeviceDRM::Validate::
43851 [email protected]   (  619) [003] d.s2 82315.868491: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
43852 [email protected]   (  619) [003] d.s3 82315.868512: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
43853          <idle>-0     (-----) [001] .n.1 82315.868519: cpu_idle: state=4294967295 cpu_id=1
43854          <idle>-0     (-----) [001] d..2 82315.868534: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
43855          <idle>-0     (-----) [000] ...1 82315.868548: cpu_idle: state=4294967295 cpu_id=0
43856          <idle>-0     (-----) [000] d..1 82315.868553: cpu_idle: state=0 cpu_id=0
43857  kworker/u16:13-1147  ( 1147) [001] d..2 82315.868915: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
43858<...>-9039 ( 8943) [001] d.s4 82315.868964: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
43859<...>-9039 ( 8943) [001] d.s5 82315.868986: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
43860<...>-9039 ( 8943) [001] d.s5 82315.868992: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
43861<...>-9039 ( 8943) [001] d..2 82315.869050: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
43862  kworker/u16:13-1147  ( 1147) [001] d..2 82315.869144: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43863          <idle>-0     (-----) [001] d..1 82315.869161: cpu_idle: state=0 cpu_id=1
43864 [email protected]   (  619) [003] ...1 82315.869227: tracing_mark_write: E|619
43865 [email protected]   (  619) [003] ...1 82315.869439: tracing_mark_write: B|619|HWDeviceDRM::Commit::
43866 [email protected]   (  619) [003] ...1 82315.869452: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
43867 [email protected]   (  619) [003] d..2 82315.870054: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
43868 [email protected]   (  619) [003] d..3 82315.870079: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
43869          <idle>-0     (-----) [000] .n.1 82315.870084: cpu_idle: state=4294967295 cpu_id=0
43870          <idle>-0     (-----) [000] d..2 82315.870095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
43871 [email protected]   (  619) [003] ...1 82315.870201: tracing_mark_write: E|619
43872 [email protected]   (  619) [003] ...1 82315.870207: tracing_mark_write: E|619
43873 [email protected]   (  619) [003] ...1 82315.870273: tracing_mark_write: E|619
43874 [email protected]   (  619) [003] ...1 82315.870338: tracing_mark_write: E|619
43875 [email protected]   (  619) [003] .... 82315.870355: binder_transaction: transaction=1569103 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
43876 [email protected]   (  619) [003] .... 82315.870361: binder_transaction_alloc_buf: transaction=1569103 data_size=656 offsets_size=128
43877 [email protected]   (  619) [003] d..2 82315.870386: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
43878 [email protected]   (  619) [003] d..3 82315.870403: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
43879 [email protected]   (  619) [003] .... 82315.870408: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
43880          <idle>-0     (-----) [001] .n.1 82315.870409: cpu_idle: state=4294967295 cpu_id=1
43881          <idle>-0     (-----) [001] d..2 82315.870421: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
43882  surfaceflinger-8858  ( 8858) [001] .... 82315.870431: binder_transaction_received: transaction=1569103
43883 [email protected]   (  619) [003] d..2 82315.870503: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
43884          <idle>-0     (-----) [003] d..1 82315.870522: cpu_idle: state=0 cpu_id=3
43885  surfaceflinger-8858  ( 8858) [001] d..2 82315.870996: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43886          <idle>-0     (-----) [001] d..1 82315.871015: cpu_idle: state=0 cpu_id=1
43887          <idle>-0     (-----) [003] ...1 82315.871641: cpu_idle: state=4294967295 cpu_id=3
43888          <idle>-0     (-----) [003] d..1 82315.871647: cpu_idle: state=2 cpu_id=3
43889          <idle>-0     (-----) [002] d.H3 82315.871898: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
43890          <idle>-0     (-----) [002] d.H4 82315.871918: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
43891          <idle>-0     (-----) [001] .n.1 82315.871926: cpu_idle: state=4294967295 cpu_id=1
43892          <idle>-0     (-----) [002] d.s2 82315.871928: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
43893          <idle>-0     (-----) [001] d..2 82315.871940: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
43894          <idle>-0     (-----) [002] dns3 82315.871945: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
43895          <idle>-0     (-----) [002] .n.1 82315.871969: cpu_idle: state=4294967295 cpu_id=2
43896          <idle>-0     (-----) [002] d..2 82315.871984: 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
43897         sugov:0-576   (  576) [001] .... 82315.871986: clk_set_rate: pwrcl_clk 979200000
43898         sugov:0-576   (  576) [001] .... 82315.872010: clk_set_rate: cpu3_pwrcl_clk 902400000
43899     rcu_preempt-7     (    7) [002] d..2 82315.872019: 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
43900         sugov:0-576   (  576) [001] .... 82315.872022: clk_set_rate: cpu2_pwrcl_clk 902400000
43901         sugov:0-576   (  576) [001] .... 82315.872031: clk_set_rate: cpu1_pwrcl_clk 902400000
43902          <idle>-0     (-----) [002] d..1 82315.872032: cpu_idle: state=0 cpu_id=2
43903         sugov:0-576   (  576) [001] .... 82315.872040: clk_set_rate: cpu0_pwrcl_clk 979200000
43904         sugov:0-576   (  576) [001] .... 82315.872051: cpu_frequency: state=979200 cpu_id=0
43905         sugov:0-576   (  576) [001] .... 82315.872080: cpu_frequency: state=979200 cpu_id=1
43906         sugov:0-576   (  576) [001] .... 82315.872084: cpu_frequency: state=979200 cpu_id=2
43907         sugov:0-576   (  576) [001] .... 82315.872088: cpu_frequency: state=979200 cpu_id=3
43908         sugov:0-576   (  576) [001] d..2 82315.872119: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43909          <idle>-0     (-----) [001] d..1 82315.872133: cpu_idle: state=0 cpu_id=1
43910 crtc_commit:111-321   (  321) [000] d..2 82315.873691: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
43911          <idle>-0     (-----) [000] d..1 82315.873706: cpu_idle: state=0 cpu_id=0
43912          <idle>-0     (-----) [001] ...1 82315.873786: cpu_idle: state=4294967295 cpu_id=1
43913          <idle>-0     (-----) [001] d..1 82315.873790: cpu_idle: state=0 cpu_id=1
43914          <idle>-0     (-----) [000] d.h5 82315.876570: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
43915          <idle>-0     (-----) [000] dnh6 82315.876587: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
43916          <idle>-0     (-----) [000] dnh5 82315.876592: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
43917          <idle>-0     (-----) [000] dnh6 82315.876612: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
43918          <idle>-0     (-----) [002] .n.1 82315.876619: cpu_idle: state=4294967295 cpu_id=2
43919          <idle>-0     (-----) [000] .n.1 82315.876627: cpu_idle: state=4294967295 cpu_id=0
43920          <idle>-0     (-----) [002] d..2 82315.876630: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
43921          <idle>-0     (-----) [000] d..2 82315.876639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
43922  crtc_event:111-322   (  322) [000] d..2 82315.876677: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43923          <idle>-0     (-----) [000] d..2 82315.876681: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
43924          <idle>-0     (-----) [000] dn.3 82315.876698: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
43925          <idle>-0     (-----) [000] d..2 82315.876707: 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
43926     ksoftirqd/0-3     (    3) [000] d..2 82315.876737: 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
43927          <idle>-0     (-----) [000] d..1 82315.876747: cpu_idle: state=0 cpu_id=0
43928 crtc_commit:111-321   (  321) [002] d..2 82315.876806: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
43929          <idle>-0     (-----) [002] d..1 82315.876814: cpu_idle: state=0 cpu_id=2
43930          <idle>-0     (-----) [002] d.s3 82315.878468: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
43931          <idle>-0     (-----) [002] d.s4 82315.878484: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
43932          <idle>-0     (-----) [002] d.s2 82315.878487: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
43933          <idle>-0     (-----) [000] .n.1 82315.878490: cpu_idle: state=4294967295 cpu_id=0
43934          <idle>-0     (-----) [000] d..2 82315.878500: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
43935          <idle>-0     (-----) [002] dns3 82315.878502: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
43936          <idle>-0     (-----) [002] dns3 82315.878507: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
43937  crtc_event:111-322   (  322) [000] d..2 82315.878531: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43938          <idle>-0     (-----) [000] d..1 82315.878539: cpu_idle: state=0 cpu_id=0
43939          <idle>-0     (-----) [002] dns4 82315.878547: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
43940          <idle>-0     (-----) [000] .n.1 82315.878552: cpu_idle: state=4294967295 cpu_id=0
43941          <idle>-0     (-----) [002] .n.1 82315.878558: cpu_idle: state=4294967295 cpu_id=2
43942          <idle>-0     (-----) [000] d..2 82315.878562: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
43943          <idle>-0     (-----) [002] d..2 82315.878568: 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
43944     rcu_preempt-7     (    7) [002] d..2 82315.878577: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
43945     rcu_preempt-7     (    7) [002] d..3 82315.878593: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
43946     rcu_preempt-7     (    7) [002] d..2 82315.878611: 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
43947         rcuop/0-10    (   10) [002] d..2 82315.878626: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
43948         rcuop/0-10    (   10) [002] d..3 82315.878662: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
43949         rcuop/0-10    (   10) [002] d..2 82315.878672: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
43950         rcuop/0-10    (   10) [002] d..3 82315.878682: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
43951         rcuop/0-10    (   10) [002] d..2 82315.878692: 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
43952         rcuop/1-21    (   21) [002] d..2 82315.878711: 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
43953     rcu_preempt-7     (    7) [002] d..2 82315.878744: 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
43954          <idle>-0     (-----) [002] d..1 82315.878768: cpu_idle: state=2 cpu_id=2
43955  kworker/u16:13-1147  ( 1147) [000] .... 82315.878776: clk_set_rate: l3_cluster1_vote_clk 300000000
43956  kworker/u16:13-1147  ( 1147) [000] .... 82315.878784: clk_set_rate: l3_clk 403200000
43957  kworker/u16:13-1147  ( 1147) [000] d.h4 82315.878903: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
43958  kworker/u16:13-1147  ( 1147) [000] d.h5 82315.878921: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
43959  kworker/u16:13-1147  ( 1147) [000] d..2 82315.878957: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43960          <idle>-0     (-----) [000] d..1 82315.878970: cpu_idle: state=0 cpu_id=0
43961          <idle>-0     (-----) [000] d.h5 82315.879186: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
43962          <idle>-0     (-----) [000] dnh6 82315.879196: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
43963          <idle>-0     (-----) [000] .n.1 82315.879212: cpu_idle: state=4294967295 cpu_id=0
43964          <idle>-0     (-----) [000] d..2 82315.879222: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
43965  crtc_event:111-322   (  322) [000] d..2 82315.879244: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43966          <idle>-0     (-----) [000] d..1 82315.879253: cpu_idle: state=0 cpu_id=0
43967          <idle>-0     (-----) [002] .n.1 82315.879267: cpu_idle: state=4294967295 cpu_id=2
43968          <idle>-0     (-----) [002] d..2 82315.879288: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
43969 crtc_commit:111-321   (  321) [002] .... 82315.879331: clk_set_rate: disp_cc_mdss_mdp_clk_src 100000000
43970 crtc_commit:111-321   (  321) [002] .... 82315.879406: clk_set_rate: disp_cc_mdss_mdp_lut_clk 0
43971 crtc_commit:111-321   (  321) [002] .... 82315.879409: clk_set_rate: disp_cc_mdss_mdp_clk 100000000
43972          <idle>-0     (-----) [000] d.h2 82315.879530: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
43973          <idle>-0     (-----) [000] dnh3 82315.879543: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
43974          <idle>-0     (-----) [000] .n.1 82315.879552: cpu_idle: state=4294967295 cpu_id=0
43975 crtc_commit:111-321   (  321) [002] d..2 82315.879560: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
43976          <idle>-0     (-----) [000] d..2 82315.879562: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
43977          <idle>-0     (-----) [002] d..1 82315.879573: cpu_idle: state=0 cpu_id=2
43978        DispSync-8879  ( 8858) [000] d..1 82315.879596: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
43979        DispSync-8879  ( 8858) [000] d..2 82315.879625: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
43980          <idle>-0     (-----) [001] .n.1 82315.879629: cpu_idle: state=4294967295 cpu_id=1
43981          <idle>-0     (-----) [001] d..2 82315.879642: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
43982        DispSync-8879  ( 8858) [000] d..2 82315.879663: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
43983          <idle>-0     (-----) [000] d..1 82315.879677: cpu_idle: state=0 cpu_id=0
43984   sfEventThread-8882  ( 8858) [001] d..3 82315.879719: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
43985   sfEventThread-8882  ( 8858) [001] d..3 82315.879757: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
43986   sfEventThread-8882  ( 8858) [001] d..4 82315.879788: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
43987          <idle>-0     (-----) [000] .n.1 82315.879793: cpu_idle: state=4294967295 cpu_id=0
43988          <idle>-0     (-----) [000] d..2 82315.879804: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
43989   sfEventThread-8882  ( 8858) [001] d..3 82315.879804: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
43990   sfEventThread-8882  ( 8858) [001] d..2 82315.879853: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43991          <idle>-0     (-----) [001] d..1 82315.879870: cpu_idle: state=0 cpu_id=1
43992  surfaceflinger-8858  ( 8858) [000] d..1 82315.880356: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
43993  surfaceflinger-8858  ( 8858) [000] d..2 82315.880377: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
43994          <idle>-0     (-----) [001] .n.1 82315.880383: cpu_idle: state=4294967295 cpu_id=1
43995          <idle>-0     (-----) [001] d..2 82315.880393: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
43996   sfEventThread-8882  ( 8858) [001] d..2 82315.880433: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
43997          <idle>-0     (-----) [001] d..1 82315.880445: cpu_idle: state=0 cpu_id=1
43998          <idle>-0     (-----) [004] dnh2 82315.880773: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
43999          <idle>-0     (-----) [004] .n.1 82315.880782: cpu_idle: state=4294967295 cpu_id=4
44000          <idle>-0     (-----) [004] d..2 82315.880796: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
44001          <idle>-0     (-----) [005] dnh2 82315.880850: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
44002          <idle>-0     (-----) [005] .n.1 82315.880859: cpu_idle: state=4294967295 cpu_id=5
44003          <idle>-0     (-----) [005] d..2 82315.880874: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
44004<...>-9005 ( 8943) [005] .... 82315.881081: binder_transaction: transaction=1569104 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
44005<...>-9005 ( 8943) [005] .... 82315.881088: binder_transaction_alloc_buf: transaction=1569104 data_size=80 offsets_size=0
44006<...>-9005 ( 8943) [005] d..4 82315.881093: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
44007<...>-9006 ( 8943) [004] .... 82315.881161: binder_transaction: transaction=1569105 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
44008          <idle>-0     (-----) [001] dnh2 82315.881164: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
44009<...>-9006 ( 8943) [004] .... 82315.881166: binder_transaction_alloc_buf: transaction=1569105 data_size=80 offsets_size=0
44010          <idle>-0     (-----) [001] .n.1 82315.881171: cpu_idle: state=4294967295 cpu_id=1
44011<...>-9006 ( 8943) [004] d..4 82315.881172: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
44012          <idle>-0     (-----) [001] d..2 82315.881182: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
44013<...>-8874 ( 8858) [001] .... 82315.881243: binder_transaction_received: transaction=1569104
44014          <idle>-0     (-----) [002] dnh2 82315.881247: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
44015          <idle>-0     (-----) [002] .n.1 82315.881253: cpu_idle: state=4294967295 cpu_id=2
44016          <idle>-0     (-----) [002] d..2 82315.881262: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
44017<...>-8951 ( 8858) [002] .... 82315.881274: binder_transaction_received: transaction=1569105
44018<...>-8874 ( 8858) [001] d..1 82315.881283: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
44019<...>-8874 ( 8858) [001] d..2 82315.881307: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44020<...>-8874 ( 8858) [001] d..2 82315.881351: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44021          <idle>-0     (-----) [001] d..1 82315.881367: cpu_idle: state=0 cpu_id=1
44022<...>-8951 ( 8858) [002] d..2 82315.881369: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44023          <idle>-0     (-----) [002] d..1 82315.881382: cpu_idle: state=0 cpu_id=2
44024<...>-9006 ( 8943) [004] .... 82315.881385: binder_transaction: transaction=1569106 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
44025<...>-9006 ( 8943) [004] .... 82315.881389: binder_transaction_alloc_buf: transaction=1569106 data_size=684 offsets_size=32
44026<...>-9006 ( 8943) [004] ...2 82315.881408: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
44027<...>-9006 ( 8943) [004] d..4 82315.881411: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=002
44028<...>-9006 ( 8943) [004] dn.5 82315.881433: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
44029<...>-9006 ( 8943) [004] d..2 82315.881471: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
44030<...>-8951 ( 8858) [004] .... 82315.881484: binder_transaction_received: transaction=1569106
44031          <idle>-0     (-----) [003] .n.1 82315.881567: cpu_idle: state=4294967295 cpu_id=3
44032  surfaceflinger-8858  ( 8858) [000] ...1 82315.881569: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
44033  surfaceflinger-8858  ( 8858) [000] ...1 82315.881577: tracing_mark_write: E|8858
44034<...>-8951 ( 8858) [004] .... 82315.881580: binder_transaction: transaction=1569107 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
44035<...>-8951 ( 8858) [004] .... 82315.881584: binder_transaction_alloc_buf: transaction=1569107 data_size=0 offsets_size=0
44036<...>-8951 ( 8858) [004] .... 82315.881587: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
44037          <idle>-0     (-----) [003] d..2 82315.881589: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
44038<...>-8951 ( 8858) [004] d..2 82315.881628: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
44039  surfaceflinger-8858  ( 8858) [000] .... 82315.881637: binder_transaction: transaction=1569108 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
44040<...>-9006 ( 8943) [004] .... 82315.881638: binder_transaction_received: transaction=1569107
44041  surfaceflinger-8858  ( 8858) [000] .... 82315.881643: binder_transaction_alloc_buf: transaction=1569108 data_size=620 offsets_size=112
44042   sfEventThread-8882  ( 8858) [003] d..2 82315.881654: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44043  surfaceflinger-8858  ( 8858) [000] ...2 82315.881669: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
44044          <idle>-0     (-----) [003] d..1 82315.881674: cpu_idle: state=0 cpu_id=3
44045  surfaceflinger-8858  ( 8858) [000] d..4 82315.881675: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
44046<...>-9005 ( 8943) [005] .... 82315.881681: binder_transaction: transaction=1569109 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
44047<...>-9005 ( 8943) [005] .... 82315.881686: binder_transaction_alloc_buf: transaction=1569109 data_size=988 offsets_size=48
44048  surfaceflinger-8858  ( 8858) [000] d..5 82315.881698: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
44049          <idle>-0     (-----) [003] .n.1 82315.881705: cpu_idle: state=4294967295 cpu_id=3
44050<...>-9005 ( 8943) [005] ...2 82315.881705: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
44051<...>-9005 ( 8943) [005] d..4 82315.881709: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
44052          <idle>-0     (-----) [003] d..2 82315.881715: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
44053 [email protected]   (  619) [003] .... 82315.881726: binder_transaction_received: transaction=1569108
44054<...>-9005 ( 8943) [005] dn.5 82315.881729: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
44055  surfaceflinger-8858  ( 8858) [000] d..2 82315.881732: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44056<...>-9005 ( 8943) [005] d..2 82315.881738: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
44057<...>-8951 ( 8858) [005] .... 82315.881751: binder_transaction_received: transaction=1569109
44058          <idle>-0     (-----) [000] d..1 82315.881752: cpu_idle: state=0 cpu_id=0
44059<...>-9006 ( 8943) [004] d..2 82315.881761: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
44060          <idle>-0     (-----) [004] d..1 82315.881778: cpu_idle: state=2 cpu_id=4
44061          <idle>-0     (-----) [002] d.s3 82315.881809: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
44062          <idle>-0     (-----) [002] dns4 82315.881829: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
44063 [email protected]   (  619) [003] ...1 82315.881832: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
44064          <idle>-0     (-----) [002] .n.1 82315.881841: cpu_idle: state=4294967295 cpu_id=2
44065          <idle>-0     (-----) [002] d..2 82315.881851: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
44066<...>-8951 ( 8858) [005] .... 82315.881895: binder_transaction: transaction=1569110 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
44067<...>-8951 ( 8858) [005] .... 82315.881899: binder_transaction_alloc_buf: transaction=1569110 data_size=0 offsets_size=0
44068<...>-8951 ( 8858) [005] .... 82315.881901: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
44069<...>-8951 ( 8858) [005] d..2 82315.881944: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
44070<...>-9005 ( 8943) [005] .... 82315.881955: binder_transaction_received: transaction=1569110
44071 [email protected]   (  619) [003] ...1 82315.881983: tracing_mark_write: B|619|HWCSession::PresentDisplay::
44072<...>-9005 ( 8943) [005] d..2 82315.882078: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
44073          <idle>-0     (-----) [005] d..1 82315.882096: cpu_idle: state=2 cpu_id=5
44074     kworker/2:1-25259 (25259) [002] d..2 82315.882099: sched_waking: comm=system pid=104 prio=120 target_cpu=000
44075     kworker/2:1-25259 (25259) [002] d..3 82315.882145: sched_wakeup: comm=system pid=104 prio=120 target_cpu=002
44076     kworker/2:1-25259 (25259) [002] d..2 82315.882161: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
44077     kworker/2:1-25259 (25259) [002] d..3 82315.882194: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
44078     kworker/2:1-25259 (25259) [002] d..2 82315.882217: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
44079         rcuop/2-29    (   29) [002] d..2 82315.882236: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
44080 [email protected]   (  619) [003] ...1 82315.882685: tracing_mark_write: B|619|HWDeviceDRM::Validate::
44081          <idle>-0     (-----) [000] ...1 82315.882899: cpu_idle: state=4294967295 cpu_id=0
44082          <idle>-0     (-----) [000] d..1 82315.882906: cpu_idle: state=0 cpu_id=0
44083          system-104   (  104) [002] d.h3 82315.883212: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44084          <idle>-0     (-----) [001] ...1 82315.883218: cpu_idle: state=4294967295 cpu_id=1
44085          <idle>-0     (-----) [001] d..1 82315.883223: cpu_idle: state=0 cpu_id=1
44086          system-104   (  104) [002] d.h4 82315.883241: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44087          <idle>-0     (-----) [000] .n.1 82315.883244: cpu_idle: state=4294967295 cpu_id=0
44088          <idle>-0     (-----) [000] d..2 82315.883259: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
44089<...>-5340 ( 788) [000] d..1 82315.883326: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
44090 [email protected]   (  619) [003] ...1 82315.883355: tracing_mark_write: E|619
44091<...>-5340 ( 788) [000] d..2 82315.883363: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
44092<...>-5340 ( 788) [000] d..2 82315.883397: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
44093 neuralnetworks@-13088 (  788) [000] d..2 82315.883544: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
44094 [email protected]   (  619) [003] ...1 82315.883556: tracing_mark_write: B|619|HWDeviceDRM::Commit::
44095 neuralnetworks@-13088 (  788) [000] d..3 82315.883571: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
44096 [email protected]   (  619) [003] ...1 82315.883571: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
44097 neuralnetworks@-13088 (  788) [000] d..2 82315.883588: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
44098<...>-87 ( 87) [000] d..2 82315.883663: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44099          <idle>-0     (-----) [000] d..1 82315.883681: cpu_idle: state=0 cpu_id=0
44100 [email protected]   (  619) [003] d..2 82315.884126: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
44101 [email protected]   (  619) [003] d..3 82315.884172: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
44102          <idle>-0     (-----) [001] .n.1 82315.884177: cpu_idle: state=4294967295 cpu_id=1
44103          <idle>-0     (-----) [001] d..2 82315.884191: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
44104 [email protected]   (  619) [003] ...1 82315.884339: tracing_mark_write: E|619
44105 [email protected]   (  619) [003] ...1 82315.884345: tracing_mark_write: E|619
44106 [email protected]   (  619) [003] ...1 82315.884435: tracing_mark_write: E|619
44107 [email protected]   (  619) [003] ...1 82315.884536: tracing_mark_write: E|619
44108 [email protected]   (  619) [003] .... 82315.884567: binder_transaction: transaction=1569111 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
44109 [email protected]   (  619) [003] .... 82315.884576: binder_transaction_alloc_buf: transaction=1569111 data_size=656 offsets_size=128
44110 [email protected]   (  619) [003] d..2 82315.884602: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
44111 [email protected]   (  619) [003] d..3 82315.884621: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
44112 [email protected]   (  619) [003] .... 82315.884627: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
44113          <idle>-0     (-----) [000] .n.1 82315.884628: cpu_idle: state=4294967295 cpu_id=0
44114          <idle>-0     (-----) [000] d..2 82315.884639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
44115  surfaceflinger-8858  ( 8858) [000] .... 82315.884652: binder_transaction_received: transaction=1569111
44116 [email protected]   (  619) [003] d..2 82315.884764: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44117          <idle>-0     (-----) [003] d..1 82315.884796: cpu_idle: state=0 cpu_id=3
44118          system-104   (  104) [002] d.h1 82315.884808: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
44119          system-104   (  104) [002] dnh2 82315.884824: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
44120          system-104   (  104) [002] dnh3 82315.884847: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
44121          system-104   (  104) [002] dnh4 82315.884898: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
44122          <idle>-0     (-----) [003] .n.1 82315.884907: cpu_idle: state=4294967295 cpu_id=3
44123          system-104   (  104) [002] d..2 82315.884917: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
44124          <idle>-0     (-----) [003] d..2 82315.884921: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
44125<...>-86 ( 86) [003] d..2 82315.884993: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44126          <idle>-0     (-----) [003] d..1 82315.885005: cpu_idle: state=0 cpu_id=3
44127 irq/81-114a000.-9677  ( 9677) [002] d.s2 82315.885196: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
44128 irq/81-114a000.-9677  ( 9677) [002] d.s3 82315.885240: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44129          <idle>-0     (-----) [003] .n.1 82315.885245: cpu_idle: state=4294967295 cpu_id=3
44130          <idle>-0     (-----) [003] d..2 82315.885259: 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
44131     rcu_preempt-7     (    7) [003] d..2 82315.885303: 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
44132          <idle>-0     (-----) [003] d..1 82315.885313: cpu_idle: state=0 cpu_id=3
44133 irq/81-114a000.-9677  ( 9677) [002] d..2 82315.885350: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=D ==> next_comm=system next_pid=104 next_prio=120
44134          <idle>-0     (-----) [003] d.h2 82315.885423: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
44135          <idle>-0     (-----) [003] dnh3 82315.885439: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
44136          <idle>-0     (-----) [003] .n.1 82315.885449: cpu_idle: state=4294967295 cpu_id=3
44137  surfaceflinger-8858  ( 8858) [000] d..2 82315.885456: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44138          <idle>-0     (-----) [003] d..2 82315.885459: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
44139          <idle>-0     (-----) [000] d..1 82315.885478: cpu_idle: state=0 cpu_id=0
44140 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.885536: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
44141          <idle>-0     (-----) [003] d..1 82315.885548: cpu_idle: state=0 cpu_id=3
44142 crtc_commit:111-321   (  321) [001] d..2 82315.885845: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
44143          <idle>-0     (-----) [001] d..1 82315.885863: cpu_idle: state=0 cpu_id=1
44144          system-104   (  104) [002] d..2 82315.886802: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44145          <idle>-0     (-----) [001] d.s3 82315.886814: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
44146          <idle>-0     (-----) [002] d..1 82315.886822: cpu_idle: state=0 cpu_id=2
44147          <idle>-0     (-----) [001] d.s4 82315.886828: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
44148          <idle>-0     (-----) [002] .n.1 82315.886828: cpu_idle: state=4294967295 cpu_id=2
44149          <idle>-0     (-----) [001] ...1 82315.886837: cpu_idle: state=4294967295 cpu_id=1
44150          <idle>-0     (-----) [001] d..1 82315.886842: cpu_idle: state=0 cpu_id=1
44151          <idle>-0     (-----) [002] d..2 82315.886842: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
44152          <idle>-0     (-----) [000] ...1 82315.886856: cpu_idle: state=4294967295 cpu_id=0
44153          <idle>-0     (-----) [000] d..1 82315.886861: cpu_idle: state=0 cpu_id=0
44154 irq/81-114a000.-9677  ( 9677) [002] d.h4 82315.886879: sched_waking: comm=cdsprpcd pid=909 prio=120 target_cpu=000
44155 irq/81-114a000.-9677  ( 9677) [002] d.h5 82315.886921: sched_wakeup: comm=cdsprpcd pid=909 prio=120 target_cpu=002
44156 irq/81-114a000.-9677  ( 9677) [002] d.h4 82315.886952: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
44157 irq/81-114a000.-9677  ( 9677) [002] d.h5 82315.886980: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
44158 irq/81-114a000.-9677  ( 9677) [002] d..1 82315.887002: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
44159 irq/81-114a000.-9677  ( 9677) [002] d..2 82315.887015: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
44160          <idle>-0     (-----) [003] .n.1 82315.887021: cpu_idle: state=4294967295 cpu_id=3
44161          <idle>-0     (-----) [003] d..2 82315.887031: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
44162 irq/81-114a000.-9677  ( 9677) [002] d..2 82315.887050: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=S ==> next_comm=cdsprpcd next_pid=909 next_prio=120
44163 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.887188: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
44164          <idle>-0     (-----) [001] d.s3 82315.887206: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
44165          <idle>-0     (-----) [001] d.s4 82315.887218: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
44166 neuralnetworks@-13088 (  788) [003] d..2 82315.887230: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
44167          <idle>-0     (-----) [001] ...1 82315.887238: cpu_idle: state=4294967295 cpu_id=1
44168 irq/80-1436400.-9674  ( 9674) [003] d..1 82315.887243: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
44169          <idle>-0     (-----) [001] d..1 82315.887245: cpu_idle: state=0 cpu_id=1
44170 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.887263: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
44171          <idle>-0     (-----) [001] .n.1 82315.887269: cpu_idle: state=4294967295 cpu_id=1
44172          <idle>-0     (-----) [001] d..2 82315.887280: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
44173 irq/80-1436400.-9674  ( 9674) [003] d..2 82315.887287: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
44174 neuralnetworks@-13088 (  788) [003] d..1 82315.887304: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44175 neuralnetworks@-13088 (  788) [003] d..2 82315.887323: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44176          <idle>-0     (-----) [000] .n.1 82315.887327: cpu_idle: state=4294967295 cpu_id=0
44177          <idle>-0     (-----) [000] d..2 82315.887341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
44178 neuralnetworks@-13088 (  788) [003] d..2 82315.887354: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44179<...>-5340 ( 788) [000] d..1 82315.887359: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
44180          <idle>-0     (-----) [003] d..1 82315.887369: cpu_idle: state=0 cpu_id=3
44181<...>-909 ( 875) [002] d..2 82315.887379: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
44182<...>-5340 ( 788) [000] d..2 82315.887379: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
44183          <idle>-0     (-----) [003] .n.1 82315.887385: cpu_idle: state=4294967295 cpu_id=3
44184          <idle>-0     (-----) [003] d..2 82315.887397: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
44185<...>-909 ( 875) [002] d..3 82315.887418: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
44186 neuralnetworks@-13088 (  788) [003] d..2 82315.887427: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44187          <idle>-0     (-----) [003] d..1 82315.887436: cpu_idle: state=0 cpu_id=3
44188<...>-5340 ( 788) [000] ...1 82315.887472: tracing_mark_write: B|788|HIDL::IPreparedModelCallback::notify::client
44189<...>-5340 ( 788) [000] ...1 82315.887479: tracing_mark_write: E|788
44190<...>-909 ( 875) [002] d..2 82315.887505: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
44191<...>-909 ( 875) [002] d..3 82315.887529: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
44192<...>-909 ( 875) [002] d..2 82315.887544: sched_switch: prev_comm=cdsprpcd prev_pid=909 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
44193<...>-5340 ( 788) [000] .... 82315.887620: binder_transaction: transaction=1569112 dest_node=1568981 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
44194<...>-5340 ( 788) [000] .... 82315.887625: binder_transaction_alloc_buf: transaction=1569112 data_size=88 offsets_size=8
44195<...>-5340 ( 788) [000] d..4 82315.887646: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
44196<...>-581 ( 571) [002] d..2 82315.887697: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44197<...>-5340 ( 788) [000] ...1 82315.887712: tracing_mark_write: E|788
44198          <idle>-0     (-----) [002] d..1 82315.887719: cpu_idle: state=0 cpu_id=2
44199<...>-5340 ( 788) [000] .... 82315.887728: binder_transaction: transaction=1569115 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
44200<...>-5340 ( 788) [000] .... 82315.887732: binder_transaction_alloc_buf: transaction=1569115 data_size=8 offsets_size=0
44201<...>-5340 ( 788) [000] d..2 82315.887736: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=007
44202<...>-5340 ( 788) [000] .... 82315.887762: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
44203<...>-5340 ( 788) [000] d..2 82315.887784: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
44204<...>-87 ( 87) [000] d..2 82315.887817: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=120
44205          <idle>-0     (-----) [002] d.h4 82315.887835: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
44206 crtc_commit:111-321   (  321) [001] d..2 82315.887851: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
44207          <idle>-0     (-----) [001] d..1 82315.887867: cpu_idle: state=0 cpu_id=1
44208          <idle>-0     (-----) [002] dnh5 82315.887870: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
44209          <idle>-0     (-----) [002] .n.1 82315.887881: cpu_idle: state=4294967295 cpu_id=2
44210          <idle>-0     (-----) [002] d..2 82315.887893: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
44211<...>-5340 ( 788) [000] d..2 82315.887912: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44212<...>-86 ( 86) [002] d..2 82315.887928: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44213          <idle>-0     (-----) [000] d..1 82315.887932: cpu_idle: state=0 cpu_id=0
44214          <idle>-0     (-----) [002] d..1 82315.887941: cpu_idle: state=0 cpu_id=2
44215          <idle>-0     (-----) [004] dnh2 82315.888443: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
44216          <idle>-0     (-----) [004] .n.1 82315.888452: cpu_idle: state=4294967295 cpu_id=4
44217          <idle>-0     (-----) [004] d..2 82315.888468: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
44218          <idle>-0     (-----) [005] dnh2 82315.888480: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
44219           <...>-27571 (-----) [004] .... 82315.888483: binder_transaction_received: transaction=1569112
44220          <idle>-0     (-----) [005] .n.1 82315.888488: cpu_idle: state=4294967295 cpu_id=5
44221          <idle>-0     (-----) [005] d..2 82315.888502: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
44222           <...>-27550 (-----) [005] .... 82315.888520: binder_transaction_received: transaction=1569115
44223           <...>-27550 (-----) [005] d..2 82315.888596: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
44224          <idle>-0     (-----) [005] d..2 82315.888600: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
44225          <idle>-0     (-----) [005] dn.3 82315.888608: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
44226          <idle>-0     (-----) [005] d..2 82315.888615: 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
44227     ksoftirqd/5-50    (   50) [005] d.s2 82315.888623: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
44228           <...>-27571 (-----) [004] ...1 82315.888630: tracing_mark_write: B|27550|HIDL::IPreparedModelCallback::notify::server
44229           <...>-27571 (-----) [004] d..1 82315.888638: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
44230          <idle>-0     (-----) [000] dnh2 82315.888653: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
44231     ksoftirqd/5-50    (   50) [005] d..2 82315.888659: 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
44232          <idle>-0     (-----) [000] .n.1 82315.888661: cpu_idle: state=4294967295 cpu_id=0
44233           <...>-27571 (-----) [004] d..2 82315.888662: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
44234           <...>-27571 (-----) [004] ...1 82315.888670: tracing_mark_write: E|27550
44235          <idle>-0     (-----) [005] d..1 82315.888672: cpu_idle: state=2 cpu_id=5
44236          <idle>-0     (-----) [000] d..2 82315.888673: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
44237           <...>-27571 (-----) [004] d..2 82315.888728: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
44238          <idle>-0     (-----) [004] d..1 82315.888751: cpu_idle: state=2 cpu_id=4
44239  kworker/u16:13-1147  ( 1147) [000] .... 82315.888831: clk_set_rate: l3_cluster0_vote_clk 480000000
44240  kworker/u16:13-1147  ( 1147) [000] .... 82315.888838: clk_set_rate: l3_clk 480000000
44241  kworker/u16:13-1147  ( 1147) [000] d..2 82315.888891: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44242          <idle>-0     (-----) [000] d..1 82315.888905: cpu_idle: state=0 cpu_id=0
44243          <idle>-0     (-----) [006] .n.1 82315.889127: cpu_idle: state=4294967295 cpu_id=6
44244          <idle>-0     (-----) [006] d..2 82315.889148: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
44245           <...>-27550 (-----) [006] ...1 82315.889176: tracing_mark_write: E|27550
44246          <idle>-0     (-----) [002] ...1 82315.889200: cpu_idle: state=4294967295 cpu_id=2
44247          <idle>-0     (-----) [002] d..1 82315.889205: cpu_idle: state=2 cpu_id=2
44248           <...>-27550 (-----) [006] ...1 82315.889214: tracing_mark_write: E|27550
44249           <...>-27550 (-----) [006] ...1 82315.889305: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
44250           <...>-27550 (-----) [006] ...1 82315.889312: tracing_mark_write: E|27550
44251           <...>-27550 (-----) [006] ...1 82315.889331: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
44252           <...>-27550 (-----) [006] ...1 82315.889339: tracing_mark_write: E|27550
44253           <...>-27550 (-----) [006] ...1 82315.889354: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
44254          <idle>-0     (-----) [001] ...1 82315.889365: cpu_idle: state=4294967295 cpu_id=1
44255          <idle>-0     (-----) [001] d..1 82315.889369: cpu_idle: state=0 cpu_id=1
44256           <...>-27550 (-----) [006] ...1 82315.889370: tracing_mark_write: E|27550
44257           <...>-27550 (-----) [006] ...1 82315.889386: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
44258           <...>-27550 (-----) [006] ...1 82315.889544: tracing_mark_write: E|27550
44259           <...>-27550 (-----) [006] ...1 82315.889567: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
44260           <...>-27550 (-----) [006] d..2 82315.889589: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
44261          <idle>-0     (-----) [006] d..1 82315.889608: cpu_idle: state=2 cpu_id=6
44262          <idle>-0     (-----) [004] .n.1 82315.889767: cpu_idle: state=4294967295 cpu_id=4
44263          <idle>-0     (-----) [004] d..2 82315.889783: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44264           <...>-27572 (-----) [004] ...1 82315.889874: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
44265           <...>-27572 (-----) [004] ...1 82315.889927: tracing_mark_write: B|27550|HIDL::IServiceManager::getTransport::client
44266           <...>-27572 (-----) [004] ...1 82315.889931: tracing_mark_write: E|27550
44267           <...>-27572 (-----) [004] .... 82315.889975: binder_transaction: transaction=1569116 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x3
44268           <...>-27572 (-----) [004] .... 82315.889980: binder_transaction_alloc_buf: transaction=1569116 data_size=204 offsets_size=32
44269           <...>-27572 (-----) [004] ...2 82315.889986: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
44270           <...>-27572 (-----) [004] d..4 82315.889990: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=000
44271          <idle>-0     (-----) [000] dnh2 82315.890020: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=000
44272          <idle>-0     (-----) [000] .n.1 82315.890027: cpu_idle: state=4294967295 cpu_id=0
44273           <...>-27572 (-----) [004] d..2 82315.890032: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
44274          <idle>-0     (-----) [000] d..2 82315.890038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwservicemanage next_pid=586 next_prio=110
44275          <idle>-0     (-----) [004] d..1 82315.890045: cpu_idle: state=2 cpu_id=4
44276<...>-586 ( 586) [000] .... 82315.890051: binder_transaction_received: transaction=1569116
44277<...>-586 ( 586) [000] .... 82315.890725: binder_transaction: transaction=1569117 dest_node=0 dest_proc=27550 dest_thread=27572 reply=1 flags=0x0 code=0x0
44278<...>-586 ( 586) [000] .... 82315.890731: binder_transaction_alloc_buf: transaction=1569117 data_size=8 offsets_size=0
44279<...>-586 ( 586) [000] d..2 82315.890735: sched_waking: comm=id.nn.benchmark pid=27572 prio=110 target_cpu=004
44280<...>-586 ( 586) [000] d..3 82315.890763: sched_wakeup: comm=id.nn.benchmark pid=27572 prio=110 target_cpu=000
44281<...>-586 ( 586) [000] .... 82315.890813: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
44282<...>-586 ( 586) [000] d..2 82315.890863: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44283           <...>-27572 (-----) [000] .... 82315.890871: binder_transaction_received: transaction=1569117
44284           <...>-27572 (-----) [000] ...1 82315.890912: tracing_mark_write: B|27550|HIDL::IServiceManager::get::client
44285           <...>-27572 (-----) [000] ...1 82315.890920: tracing_mark_write: E|27550
44286           <...>-27572 (-----) [000] .... 82315.890944: binder_transaction: transaction=1569118 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x1
44287           <...>-27572 (-----) [000] .... 82315.890948: binder_transaction_alloc_buf: transaction=1569118 data_size=204 offsets_size=32
44288           <...>-27572 (-----) [000] ...2 82315.890954: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
44289           <...>-27572 (-----) [000] d..4 82315.890957: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=000
44290           <...>-27572 (-----) [000] dn.5 82315.890972: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=000
44291           <...>-27572 (-----) [000] d..2 82315.890981: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=R+ ==> next_comm=hwservicemanage next_pid=586 next_prio=110
44292<...>-586 ( 586) [000] .... 82315.890988: binder_transaction_received: transaction=1569118
44293<...>-586 ( 586) [000] .... 82315.891231: binder_transaction: transaction=1569119 dest_node=0 dest_proc=27550 dest_thread=27572 reply=1 flags=0x0 code=0x0
44294<...>-586 ( 586) [000] .... 82315.891236: binder_transaction_alloc_buf: transaction=1569119 data_size=28 offsets_size=8
44295<...>-586 ( 586) [000] .... 82315.891250: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
44296<...>-586 ( 586) [000] d..2 82315.891302: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44297           <...>-27572 (-----) [000] .... 82315.891311: binder_transaction_received: transaction=1569119
44298           <...>-27572 (-----) [000] ...1 82315.891379: tracing_mark_write: B|27550|HIDL::IBase::interfaceChain::client
44299           <...>-27572 (-----) [000] ...1 82315.891386: tracing_mark_write: E|27550
44300           <...>-27572 (-----) [000] .... 82315.891455: binder_transaction: transaction=1569121 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0xf43484e
44301           <...>-27572 (-----) [000] .... 82315.891460: binder_transaction_alloc_buf: transaction=1569121 data_size=32 offsets_size=0
44302           <...>-27572 (-----) [000] ...2 82315.891466: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
44303           <...>-27572 (-----) [000] d..4 82315.891470: sched_waking: [email protected] pid=770 prio=110 target_cpu=000
44304           <...>-27572 (-----) [000] dn.5 82315.891490: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=000
44305           <...>-27572 (-----) [000] d..2 82315.891500: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
44306<...>-770 ( 770) [000] .... 82315.891510: binder_transaction_received: transaction=1569121
44307<...>-770 ( 770) [000] ...1 82315.891560: tracing_mark_write: B|770|HIDL::IBase::interfaceChain::server
44308<...>-770 ( 770) [000] ...1 82315.891599: tracing_mark_write: E|770
44309<...>-770 ( 770) [000] .... 82315.891612: binder_transaction: transaction=1569122 dest_node=0 dest_proc=27550 dest_thread=27572 reply=1 flags=0x0 code=0x0
44310<...>-770 ( 770) [000] .... 82315.891616: binder_transaction_alloc_buf: transaction=1569122 data_size=164 offsets_size=32
44311<...>-770 ( 770) [000] .... 82315.891621: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
44312<...>-770 ( 770) [000] d..2 82315.891673: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44313           <...>-27572 (-----) [000] .... 82315.891681: binder_transaction_received: transaction=1569122
44314           <...>-27572 (-----) [000] ...1 82315.891863: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
44315           <...>-27572 (-----) [000] ...1 82315.891872: tracing_mark_write: E|27550
44316          <idle>-0     (-----) [003] d.H3 82315.891873: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
44317          <idle>-0     (-----) [003] d.H4 82315.891891: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
44318          <idle>-0     (-----) [001] .n.1 82315.891896: cpu_idle: state=4294967295 cpu_id=1
44319           <...>-27572 (-----) [000] .... 82315.891898: binder_transaction: transaction=1569123 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
44320          <idle>-0     (-----) [003] d.s2 82315.891899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44321           <...>-27572 (-----) [000] .... 82315.891902: binder_transaction_alloc_buf: transaction=1569123 data_size=48 offsets_size=0
44322           <...>-27572 (-----) [000] ...2 82315.891906: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
44323          <idle>-0     (-----) [001] d..2 82315.891908: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
44324           <...>-27572 (-----) [000] d..4 82315.891909: sched_waking: [email protected] pid=770 prio=110 target_cpu=000
44325          <idle>-0     (-----) [003] dns3 82315.891915: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44326           <...>-27572 (-----) [000] dn.5 82315.891926: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=000
44327          <idle>-0     (-----) [003] .n.1 82315.891935: cpu_idle: state=4294967295 cpu_id=3
44328           <...>-27572 (-----) [000] d..2 82315.891936: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
44329         sugov:0-576   (  576) [001] .... 82315.891941: clk_set_rate: pwrcl_clk 1132800000
44330<...>-770 ( 770) [000] .... 82315.891943: binder_transaction_received: transaction=1569123
44331          <idle>-0     (-----) [003] d..2 82315.891949: 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
44332         sugov:0-576   (  576) [001] .... 82315.891952: clk_set_rate: cpu3_pwrcl_clk 979200000
44333     rcu_preempt-7     (    7) [003] d..2 82315.891958: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
44334         sugov:0-576   (  576) [001] .... 82315.891961: clk_set_rate: cpu2_pwrcl_clk 979200000
44335<...>-770 ( 770) [000] ...1 82315.891967: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
44336         sugov:0-576   (  576) [001] .... 82315.891969: clk_set_rate: cpu1_pwrcl_clk 979200000
44337         sugov:0-576   (  576) [001] .... 82315.891976: clk_set_rate: cpu0_pwrcl_clk 1132800000
44338         sugov:0-576   (  576) [001] .... 82315.891985: cpu_frequency: state=1132800 cpu_id=0
44339     rcu_preempt-7     (    7) [003] d..3 82315.891995: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
44340         sugov:0-576   (  576) [001] .... 82315.892008: cpu_frequency: state=1132800 cpu_id=1
44341     rcu_preempt-7     (    7) [003] d..2 82315.892012: 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
44342         sugov:0-576   (  576) [001] .... 82315.892012: cpu_frequency: state=1132800 cpu_id=2
44343         sugov:0-576   (  576) [001] .... 82315.892015: cpu_frequency: state=1132800 cpu_id=3
44344         rcuop/0-10    (   10) [003] d..2 82315.892017: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
44345         rcuop/0-10    (   10) [003] d..3 82315.892049: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
44346         sugov:0-576   (  576) [001] d..2 82315.892059: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
44347         rcuop/0-10    (   10) [003] d..2 82315.892084: 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
44348         rcuop/1-21    (   21) [001] d..2 82315.892088: 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
44349          <idle>-0     (-----) [003] d..1 82315.892097: cpu_idle: state=2 cpu_id=3
44350          <idle>-0     (-----) [001] d..1 82315.892101: cpu_idle: state=0 cpu_id=1
44351<...>-770 ( 770) [000] d..2 82315.892227: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
44352<...>-770 ( 770) [000] d..3 82315.892271: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
44353          <idle>-0     (-----) [001] .n.1 82315.892276: cpu_idle: state=4294967295 cpu_id=1
44354          <idle>-0     (-----) [001] d..2 82315.892287: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
44355<...>-770 ( 770) [000] ...1 82315.892319: tracing_mark_write: E|770
44356<...>-770 ( 770) [000] .... 82315.892331: binder_transaction: transaction=1569124 dest_node=0 dest_proc=27550 dest_thread=27572 reply=1 flags=0x0 code=0x0
44357<...>-770 ( 770) [000] .... 82315.892335: binder_transaction_alloc_buf: transaction=1569124 data_size=168 offsets_size=32
44358<...>-770 ( 770) [000] .... 82315.892376: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
44359<...>-581 ( 571) [001] d..2 82315.892400: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44360          <idle>-0     (-----) [001] d..1 82315.892416: cpu_idle: state=0 cpu_id=1
44361<...>-770 ( 770) [000] d..2 82315.892431: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44362           <...>-27572 (-----) [000] .... 82315.892440: binder_transaction_received: transaction=1569124
44363           <...>-27572 (-----) [000] ...1 82315.892535: tracing_mark_write: B|27550|HIDL::IServiceManager::getTransport::client
44364           <...>-27572 (-----) [000] ...1 82315.892542: tracing_mark_write: E|27550
44365           <...>-27572 (-----) [000] .... 82315.892565: binder_transaction: transaction=1569125 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x3
44366           <...>-27572 (-----) [000] .... 82315.892569: binder_transaction_alloc_buf: transaction=1569125 data_size=204 offsets_size=32
44367           <...>-27572 (-----) [000] ...2 82315.892575: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
44368           <...>-27572 (-----) [000] d..4 82315.892578: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=000
44369           <...>-27572 (-----) [000] dn.5 82315.892593: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=000
44370           <...>-27572 (-----) [000] d..2 82315.892601: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=R+ ==> next_comm=hwservicemanage next_pid=586 next_prio=110
44371<...>-586 ( 586) [000] .... 82315.892608: binder_transaction_received: transaction=1569125
44372<...>-586 ( 586) [000] d.h4 82315.893012: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
44373<...>-586 ( 586) [000] d.h5 82315.893043: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44374<...>-586 ( 586) [000] d.h4 82315.893048: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
44375          <idle>-0     (-----) [001] .n.1 82315.893050: cpu_idle: state=4294967295 cpu_id=1
44376          <idle>-0     (-----) [001] d..2 82315.893063: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
44377<...>-586 ( 586) [000] d.h5 82315.893064: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
44378  crtc_event:111-322   (  322) [001] d..2 82315.893097: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44379          <idle>-0     (-----) [001] d..1 82315.893107: cpu_idle: state=0 cpu_id=1
44380<...>-586 ( 586) [000] .... 82315.893146: binder_transaction: transaction=1569126 dest_node=0 dest_proc=27550 dest_thread=27572 reply=1 flags=0x0 code=0x0
44381<...>-586 ( 586) [000] .... 82315.893150: binder_transaction_alloc_buf: transaction=1569126 data_size=8 offsets_size=0
44382<...>-586 ( 586) [000] .... 82315.893154: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
44383          <idle>-0     (-----) [002] .n.1 82315.893197: cpu_idle: state=4294967295 cpu_id=2
44384<...>-586 ( 586) [000] d..2 82315.893201: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44385           <...>-27572 (-----) [000] .... 82315.893209: binder_transaction_received: transaction=1569126
44386          <idle>-0     (-----) [002] d..2 82315.893216: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
44387 crtc_commit:111-321   (  321) [002] d..2 82315.893371: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
44388          <idle>-0     (-----) [002] d..1 82315.893383: cpu_idle: state=0 cpu_id=2
44389          <idle>-0     (-----) [001] ...1 82315.894410: cpu_idle: state=4294967295 cpu_id=1
44390          <idle>-0     (-----) [001] d..1 82315.894414: cpu_idle: state=0 cpu_id=1
44391          <idle>-0     (-----) [002] d.s3 82315.895132: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44392          <idle>-0     (-----) [002] d.s4 82315.895148: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44393          <idle>-0     (-----) [001] .n.1 82315.895153: cpu_idle: state=4294967295 cpu_id=1
44394          <idle>-0     (-----) [001] d..2 82315.895163: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
44395          <idle>-0     (-----) [002] ...1 82315.895172: cpu_idle: state=4294967295 cpu_id=2
44396          <idle>-0     (-----) [002] d..1 82315.895178: cpu_idle: state=2 cpu_id=2
44397  crtc_event:111-322   (  322) [001] d..2 82315.895191: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44398          <idle>-0     (-----) [001] d..1 82315.895199: cpu_idle: state=0 cpu_id=1
44399           <...>-27572 (-----) [000] d.h4 82315.895355: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
44400           <...>-27572 (-----) [000] d.h5 82315.895375: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
44401          <idle>-0     (-----) [002] .n.1 82315.895498: cpu_idle: state=4294967295 cpu_id=2
44402          <idle>-0     (-----) [002] d..2 82315.895514: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
44403 crtc_commit:111-321   (  321) [002] d..2 82315.895594: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44404          <idle>-0     (-----) [002] d..1 82315.895608: cpu_idle: state=0 cpu_id=2
44405           <...>-27572 (-----) [000] d.h4 82315.895636: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44406           <...>-27572 (-----) [000] d.h5 82315.895651: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44407          <idle>-0     (-----) [001] .n.1 82315.895656: cpu_idle: state=4294967295 cpu_id=1
44408          <idle>-0     (-----) [001] d..2 82315.895664: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
44409  crtc_event:111-322   (  322) [001] d..2 82315.895684: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44410          <idle>-0     (-----) [001] d..1 82315.895692: cpu_idle: state=0 cpu_id=1
44411           <...>-27572 (-----) [000] d.h1 82315.896003: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
44412           <...>-27572 (-----) [000] d.h2 82315.896033: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
44413          <idle>-0     (-----) [001] .n.1 82315.896038: cpu_idle: state=4294967295 cpu_id=1
44414          <idle>-0     (-----) [001] d..2 82315.896045: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
44415        DispSync-8879  ( 8858) [001] d..1 82315.896073: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44416        DispSync-8879  ( 8858) [001] d..2 82315.896092: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44417        DispSync-8879  ( 8858) [001] d..2 82315.896121: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44418          <idle>-0     (-----) [001] d..1 82315.896133: cpu_idle: state=0 cpu_id=1
44419          <idle>-0     (-----) [003] .n.1 82315.896225: cpu_idle: state=4294967295 cpu_id=3
44420          <idle>-0     (-----) [003] d..2 82315.896242: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
44421   sfEventThread-8882  ( 8858) [003] d..3 82315.896367: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
44422   sfEventThread-8882  ( 8858) [003] d..3 82315.896399: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
44423   sfEventThread-8882  ( 8858) [003] d..4 82315.896425: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
44424          <idle>-0     (-----) [001] .n.1 82315.896431: cpu_idle: state=4294967295 cpu_id=1
44425          <idle>-0     (-----) [001] d..2 82315.896439: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
44426   sfEventThread-8882  ( 8858) [003] d..3 82315.896440: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
44427   sfEventThread-8882  ( 8858) [003] d..2 82315.896485: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44428          <idle>-0     (-----) [003] d..1 82315.896497: cpu_idle: state=0 cpu_id=3
44429  surfaceflinger-8858  ( 8858) [001] d..1 82315.896860: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44430  surfaceflinger-8858  ( 8858) [001] d..2 82315.896879: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44431          <idle>-0     (-----) [003] .n.1 82315.896885: cpu_idle: state=4294967295 cpu_id=3
44432          <idle>-0     (-----) [003] d..2 82315.896892: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
44433   sfEventThread-8882  ( 8858) [003] d..2 82315.896925: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44434          <idle>-0     (-----) [003] d..1 82315.896931: cpu_idle: state=0 cpu_id=3
44435          <idle>-0     (-----) [005] dnh2 82315.897126: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
44436          <idle>-0     (-----) [005] .n.1 82315.897134: cpu_idle: state=4294967295 cpu_id=5
44437          <idle>-0     (-----) [005] d..2 82315.897148: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
44438          <idle>-0     (-----) [004] dnh2 82315.897167: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
44439          <idle>-0     (-----) [004] .n.1 82315.897176: cpu_idle: state=4294967295 cpu_id=4
44440          <idle>-0     (-----) [004] d..2 82315.897189: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
44441<...>-9005 ( 8943) [005] d..2 82315.897375: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
44442          <idle>-0     (-----) [005] d..1 82315.897391: cpu_idle: state=2 cpu_id=5
44443<...>-9006 ( 8943) [004] .... 82315.897502: binder_transaction: transaction=1569127 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
44444<...>-9006 ( 8943) [004] .... 82315.897507: binder_transaction_alloc_buf: transaction=1569127 data_size=80 offsets_size=0
44445<...>-9006 ( 8943) [004] d..4 82315.897512: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
44446           <...>-27572 (-----) [000] ...1 82315.897518: tracing_mark_write: B|27550|HIDL::IServiceManager::registerPassthroughClient::client
44447           <...>-27572 (-----) [000] ...1 82315.897526: tracing_mark_write: E|27550
44448           <...>-27572 (-----) [000] .... 82315.897556: binder_transaction: transaction=1569128 dest_node=1 dest_proc=586 dest_thread=0 reply=0 flags=0x10 code=0x8
44449           <...>-27572 (-----) [000] .... 82315.897562: binder_transaction_alloc_buf: transaction=1569128 data_size=204 offsets_size=32
44450           <...>-27572 (-----) [000] ...2 82315.897569: binder_set_priority: proc=586 thread=586 old=120 => new=110 desired=110
44451           <...>-27572 (-----) [000] d..4 82315.897573: sched_waking: comm=hwservicemanage pid=586 prio=110 target_cpu=000
44452          <idle>-0     (-----) [002] dnh2 82315.897577: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
44453          <idle>-0     (-----) [002] .n.1 82315.897584: cpu_idle: state=4294967295 cpu_id=2
44454           <...>-27572 (-----) [000] dn.5 82315.897590: sched_wakeup: comm=hwservicemanage pid=586 prio=110 target_cpu=000
44455          <idle>-0     (-----) [002] d..2 82315.897593: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
44456           <...>-27572 (-----) [000] d..2 82315.897600: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=R+ ==> next_comm=hwservicemanage next_pid=586 next_prio=110
44457<...>-8951 ( 8858) [002] .... 82315.897603: binder_transaction_received: transaction=1569127
44458<...>-586 ( 586) [000] .... 82315.897607: binder_transaction_received: transaction=1569128
44459<...>-8951 ( 8858) [002] d..1 82315.897644: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44460<...>-8951 ( 8858) [002] d..2 82315.897661: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44461          <idle>-0     (-----) [003] .n.1 82315.897666: cpu_idle: state=4294967295 cpu_id=3
44462          <idle>-0     (-----) [003] d..2 82315.897673: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
44463<...>-9006 ( 8943) [004] .... 82315.897693: binder_transaction: transaction=1569129 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
44464<...>-9006 ( 8943) [004] .... 82315.897698: binder_transaction_alloc_buf: transaction=1569129 data_size=684 offsets_size=32
44465   sfEventThread-8882  ( 8858) [003] d..2 82315.897703: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44466<...>-8951 ( 8858) [002] d..2 82315.897707: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44467          <idle>-0     (-----) [003] d..1 82315.897709: cpu_idle: state=0 cpu_id=3
44468<...>-9006 ( 8943) [004] ...2 82315.897712: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
44469<...>-9006 ( 8943) [004] d..4 82315.897714: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=002
44470          <idle>-0     (-----) [002] d..1 82315.897722: cpu_idle: state=0 cpu_id=2
44471<...>-9006 ( 8943) [004] d..5 82315.897734: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
44472<...>-9006 ( 8943) [004] d..2 82315.897772: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
44473<...>-8951 ( 8858) [004] .... 82315.897783: binder_transaction_received: transaction=1569129
44474<...>-586 ( 586) [000] .... 82315.897826: binder_transaction: transaction=1569130 dest_node=0 dest_proc=27550 dest_thread=27572 reply=1 flags=0x0 code=0x0
44475<...>-586 ( 586) [000] .... 82315.897830: binder_transaction_alloc_buf: transaction=1569130 data_size=4 offsets_size=0
44476<...>-586 ( 586) [000] .... 82315.897835: binder_set_priority: proc=586 thread=586 old=110 => new=120 desired=120
44477<...>-8951 ( 8858) [004] .... 82315.897869: binder_transaction: transaction=1569131 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
44478<...>-8951 ( 8858) [004] .... 82315.897873: binder_transaction_alloc_buf: transaction=1569131 data_size=0 offsets_size=0
44479<...>-8951 ( 8858) [004] d..2 82315.897875: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
44480<...>-586 ( 586) [000] d..2 82315.897884: sched_switch: prev_comm=hwservicemanage prev_pid=586 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44481<...>-8951 ( 8858) [004] dn.3 82315.897885: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
44482<...>-8951 ( 8858) [004] d..2 82315.897891: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
44483           <...>-27572 (-----) [000] .... 82315.897893: binder_transaction_received: transaction=1569130
44484  surfaceflinger-8858  ( 8858) [001] ...1 82315.897896: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
44485<...>-9006 ( 8943) [004] .... 82315.897900: binder_transaction_received: transaction=1569131
44486  surfaceflinger-8858  ( 8858) [001] ...1 82315.897902: tracing_mark_write: E|8858
44487  surfaceflinger-8858  ( 8858) [001] .... 82315.897949: binder_transaction: transaction=1569132 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
44488  surfaceflinger-8858  ( 8858) [001] .... 82315.897954: binder_transaction_alloc_buf: transaction=1569132 data_size=620 offsets_size=112
44489  surfaceflinger-8858  ( 8858) [001] ...2 82315.897976: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
44490<...>-9006 ( 8943) [004] d..2 82315.897980: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
44491  surfaceflinger-8858  ( 8858) [001] d..4 82315.897983: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
44492<...>-8951 ( 8858) [004] .... 82315.897988: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
44493  surfaceflinger-8858  ( 8858) [001] d..5 82315.898002: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
44494          <idle>-0     (-----) [003] .n.1 82315.898006: cpu_idle: state=4294967295 cpu_id=3
44495          <idle>-0     (-----) [003] d..2 82315.898012: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
44496 [email protected]   (  619) [003] .... 82315.898023: binder_transaction_received: transaction=1569132
44497  surfaceflinger-8858  ( 8858) [001] d..2 82315.898030: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44498<...>-8951 ( 8858) [004] d..2 82315.898038: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
44499           <...>-27572 (-----) [000] ...1 82315.898042: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
44500          <idle>-0     (-----) [001] d..1 82315.898048: cpu_idle: state=0 cpu_id=1
44501           <...>-27572 (-----) [000] ...1 82315.898049: tracing_mark_write: E|27550
44502          <idle>-0     (-----) [004] d..1 82315.898053: cpu_idle: state=2 cpu_id=4
44503           <...>-27572 (-----) [000] .... 82315.898068: binder_transaction: transaction=1569133 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
44504 [email protected]   (  619) [003] ...1 82315.898071: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
44505           <...>-27572 (-----) [000] .... 82315.898072: binder_transaction_alloc_buf: transaction=1569133 data_size=48 offsets_size=0
44506           <...>-27572 (-----) [000] ...2 82315.898076: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
44507           <...>-27572 (-----) [000] d..4 82315.898079: sched_waking: [email protected] pid=770 prio=110 target_cpu=000
44508           <...>-27572 (-----) [000] dn.5 82315.898094: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=000
44509           <...>-27572 (-----) [000] d..2 82315.898103: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
44510<...>-770 ( 770) [000] .... 82315.898112: binder_transaction_received: transaction=1569133
44511<...>-770 ( 770) [000] ...1 82315.898139: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
44512 [email protected]   (  619) [003] ...1 82315.898203: tracing_mark_write: B|619|HWCSession::PresentDisplay::
44513<...>-770 ( 770) [000] d..2 82315.898238: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
44514<...>-770 ( 770) [000] d..3 82315.898278: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
44515<...>-770 ( 770) [000] ...1 82315.898320: tracing_mark_write: E|770
44516<...>-770 ( 770) [000] .... 82315.898331: binder_transaction: transaction=1569134 dest_node=0 dest_proc=27550 dest_thread=27572 reply=1 flags=0x0 code=0x0
44517<...>-770 ( 770) [000] .... 82315.898335: binder_transaction_alloc_buf: transaction=1569134 data_size=168 offsets_size=32
44518<...>-770 ( 770) [000] .... 82315.898345: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
44519<...>-770 ( 770) [000] d..2 82315.898396: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44520           <...>-27572 (-----) [000] .... 82315.898404: binder_transaction_received: transaction=1569134
44521           <...>-27572 (-----) [000] d.s2 82315.898482: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
44522 [email protected]   (  619) [003] d.s1 82315.898502: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44523           <...>-27572 (-----) [000] d.s3 82315.898521: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
44524 [email protected]   (  619) [003] d.s2 82315.898530: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44525           <...>-27572 (-----) [000] ...1 82315.898938: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
44526 [email protected]   (  619) [003] ...1 82315.898950: tracing_mark_write: B|619|HWDeviceDRM::Validate::
44527           <...>-27572 (-----) [000] ...1 82315.898958: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
44528           <...>-27572 (-----) [000] ...1 82315.898963: tracing_mark_write: E|27550
44529           <...>-27572 (-----) [000] .... 82315.899073: binder_transaction: transaction=1569135 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
44530           <...>-27572 (-----) [000] .... 82315.899077: binder_transaction_alloc_buf: transaction=1569135 data_size=556 offsets_size=104
44531           <...>-27572 (-----) [000] ...2 82315.899155: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
44532           <...>-27572 (-----) [000] d..4 82315.899160: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44533           <...>-27572 (-----) [000] dn.5 82315.899177: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44534           <...>-27572 (-----) [000] d..2 82315.899186: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
44535<...>-5340 ( 788) [000] .... 82315.899195: binder_transaction_received: transaction=1569135
44536<...>-5340 ( 788) [000] ...1 82315.899282: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
44537<...>-5340 ( 788) [000] d..2 82315.899368: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
44538<...>-5340 ( 788) [000] d..3 82315.899410: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
44539<...>-5340 ( 788) [000] d..2 82315.899424: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44540           <...>-27572 (-----) [000] d..2 82315.899454: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44541          <idle>-0     (-----) [000] d..1 82315.899479: cpu_idle: state=0 cpu_id=0
44542          <idle>-0     (-----) [001] ...1 82315.899493: cpu_idle: state=4294967295 cpu_id=1
44543 [email protected]   (  619) [003] ...1 82315.899497: tracing_mark_write: E|619
44544          <idle>-0     (-----) [001] d..1 82315.899497: cpu_idle: state=0 cpu_id=1
44545 [email protected]   (  619) [003] ...1 82315.899654: tracing_mark_write: B|619|HWDeviceDRM::Commit::
44546 [email protected]   (  619) [003] ...1 82315.899665: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
44547 [email protected]   (  619) [003] d..2 82315.900115: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
44548 [email protected]   (  619) [003] d..3 82315.900139: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
44549          <idle>-0     (-----) [002] .n.1 82315.900146: cpu_idle: state=4294967295 cpu_id=2
44550          <idle>-0     (-----) [002] d..2 82315.900156: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
44551 [email protected]   (  619) [003] ...1 82315.900232: tracing_mark_write: E|619
44552 [email protected]   (  619) [003] ...1 82315.900237: tracing_mark_write: E|619
44553 [email protected]   (  619) [003] ...1 82315.900289: tracing_mark_write: E|619
44554 [email protected]   (  619) [003] ...1 82315.900334: tracing_mark_write: E|619
44555 [email protected]   (  619) [003] .... 82315.900348: binder_transaction: transaction=1569138 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
44556 [email protected]   (  619) [003] .... 82315.900354: binder_transaction_alloc_buf: transaction=1569138 data_size=656 offsets_size=128
44557 [email protected]   (  619) [003] d..2 82315.900374: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
44558 [email protected]   (  619) [003] d..3 82315.900390: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
44559          <idle>-0     (-----) [001] .n.1 82315.900394: cpu_idle: state=4294967295 cpu_id=1
44560 [email protected]   (  619) [003] .... 82315.900394: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
44561          <idle>-0     (-----) [001] d..2 82315.900404: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
44562  surfaceflinger-8858  ( 8858) [001] .... 82315.900412: binder_transaction_received: transaction=1569138
44563 [email protected]   (  619) [003] d..2 82315.900470: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
44564<...>-87 ( 87) [003] d..2 82315.900509: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
44565 crtc_commit:111-321   (  321) [002] d.h3 82315.900518: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
44566     rcu_preempt-7     (    7) [003] d..2 82315.900532: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
44567 crtc_commit:111-321   (  321) [002] d.h4 82315.900561: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
44568 crtc_commit:111-321   (  321) [002] d.h3 82315.900581: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44569 crtc_commit:111-321   (  321) [002] d.h4 82315.900595: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44570          <idle>-0     (-----) [000] .n.1 82315.900603: cpu_idle: state=4294967295 cpu_id=0
44571          <idle>-0     (-----) [000] d..2 82315.900614: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
44572  kworker/u16:13-1147  ( 1147) [003] .... 82315.900664: clk_set_rate: l3_cluster0_vote_clk 652800000
44573  kworker/u16:13-1147  ( 1147) [003] .... 82315.900670: clk_set_rate: l3_clk 652800000
44574<...>-5340 ( 788) [000] d..1 82315.900714: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
44575<...>-5340 ( 788) [000] d..2 82315.900751: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
44576  surfaceflinger-8858  ( 8858) [001] d..2 82315.900841: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
44577 neuralnetworks@-13088 (  788) [001] d..2 82315.900892: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44578          <idle>-0     (-----) [001] d..1 82315.900906: cpu_idle: state=0 cpu_id=1
44579<...>-5340 ( 788) [000] d..2 82315.900954: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
44580  kworker/u16:13-1147  ( 1147) [003] d..2 82315.900983: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=smem_native_cds next_pid=86 next_prio=120
44581<...>-5340 ( 788) [000] d..3 82315.900999: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
44582<...>-5340 ( 788) [000] d..2 82315.901011: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
44583<...>-86 ( 86) [003] d..2 82315.901013: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
44584          <idle>-0     (-----) [001] d.s3 82315.901026: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
44585 crtc_commit:111-321   (  321) [002] d.h3 82315.901041: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
44586<...>-87 ( 87) [000] d..2 82315.901046: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44587          <idle>-0     (-----) [001] d.s4 82315.901057: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
44588          <idle>-0     (-----) [001] dns4 82315.901063: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
44589          <idle>-0     (-----) [000] dn.1 82315.901063: cpu_idle: state=0 cpu_id=0
44590 crtc_commit:111-321   (  321) [002] d.h4 82315.901066: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
44591          <idle>-0     (-----) [001] .n.1 82315.901070: cpu_idle: state=4294967295 cpu_id=1
44592          <idle>-0     (-----) [000] .n.1 82315.901071: cpu_idle: state=4294967295 cpu_id=0
44593          <idle>-0     (-----) [001] d..2 82315.901080: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
44594          <idle>-0     (-----) [000] d..2 82315.901082: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
44595<...>-86 ( 86) [000] d..2 82315.901112: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44596<...>-581 ( 571) [003] d..2 82315.901118: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44597          <idle>-0     (-----) [000] d..1 82315.901121: cpu_idle: state=0 cpu_id=0
44598  kworker/u16:13-1147  ( 1147) [001] d..2 82315.901133: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44599          <idle>-0     (-----) [003] d..1 82315.901137: cpu_idle: state=0 cpu_id=3
44600          <idle>-0     (-----) [001] d..1 82315.901145: cpu_idle: state=0 cpu_id=1
44601 crtc_commit:111-321   (  321) [002] d..2 82315.902108: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
44602          <idle>-0     (-----) [002] d..1 82315.902123: cpu_idle: state=0 cpu_id=2
44603          <idle>-0     (-----) [001] ...1 82315.902449: cpu_idle: state=4294967295 cpu_id=1
44604          <idle>-0     (-----) [001] d..1 82315.902453: cpu_idle: state=0 cpu_id=1
44605          <idle>-0     (-----) [000] ...1 82315.902867: cpu_idle: state=4294967295 cpu_id=0
44606          <idle>-0     (-----) [000] d..1 82315.902871: cpu_idle: state=0 cpu_id=0
44607          <idle>-0     (-----) [002] d.h4 82315.902908: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44608          <idle>-0     (-----) [002] d.h5 82315.902923: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44609          <idle>-0     (-----) [000] .n.1 82315.902928: cpu_idle: state=4294967295 cpu_id=0
44610          <idle>-0     (-----) [000] d..2 82315.902938: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
44611          <idle>-0     (-----) [002] ...1 82315.902949: cpu_idle: state=4294967295 cpu_id=2
44612          <idle>-0     (-----) [002] d..1 82315.902954: cpu_idle: state=0 cpu_id=2
44613<...>-5340 ( 788) [000] d..1 82315.903015: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
44614<...>-5340 ( 788) [000] d..2 82315.903037: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
44615          <idle>-0     (-----) [001] .n.1 82315.903042: cpu_idle: state=4294967295 cpu_id=1
44616          <idle>-0     (-----) [001] d..2 82315.903053: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
44617 neuralnetworks@-13088 (  788) [001] d..2 82315.903084: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44618          <idle>-0     (-----) [001] d..1 82315.903098: cpu_idle: state=0 cpu_id=1
44619<...>-5340 ( 788) [000] ...1 82315.903135: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
44620<...>-5340 ( 788) [000] ...1 82315.903140: tracing_mark_write: E|788
44621<...>-5340 ( 788) [000] .... 82315.903164: binder_transaction: transaction=1569139 dest_node=1569136 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
44622<...>-5340 ( 788) [000] .... 82315.903168: binder_transaction_alloc_buf: transaction=1569139 data_size=60 offsets_size=0
44623<...>-5340 ( 788) [000] d..4 82315.903174: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
44624<...>-5340 ( 788) [000] ...1 82315.903222: tracing_mark_write: E|788
44625<...>-5340 ( 788) [000] .... 82315.903232: binder_transaction: transaction=1569140 dest_node=0 dest_proc=27550 dest_thread=27572 reply=1 flags=0x0 code=0x0
44626<...>-5340 ( 788) [000] .... 82315.903235: binder_transaction_alloc_buf: transaction=1569140 data_size=8 offsets_size=0
44627<...>-5340 ( 788) [000] d..2 82315.903237: sched_waking: comm=id.nn.benchmark pid=27572 prio=110 target_cpu=000
44628<...>-5340 ( 788) [000] d..3 82315.903250: sched_wakeup: comm=id.nn.benchmark pid=27572 prio=110 target_cpu=000
44629<...>-5340 ( 788) [000] .... 82315.903253: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
44630<...>-5340 ( 788) [000] d..2 82315.903317: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44631           <...>-27572 (-----) [000] .... 82315.903325: binder_transaction_received: transaction=1569140
44632           <...>-27572 (-----) [000] d..2 82315.903374: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44633          <idle>-0     (-----) [000] d..1 82315.903393: cpu_idle: state=0 cpu_id=0
44634          <idle>-0     (-----) [004] dnh2 82315.903980: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
44635          <idle>-0     (-----) [004] .n.1 82315.903989: cpu_idle: state=4294967295 cpu_id=4
44636          <idle>-0     (-----) [004] d..2 82315.904001: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
44637           <...>-27571 (-----) [004] .... 82315.904014: binder_transaction_received: transaction=1569139
44638           <...>-27571 (-----) [004] ...1 82315.904058: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
44639           <...>-27571 (-----) [004] d..1 82315.904065: sched_waking: comm=id.nn.benchmark pid=27572 prio=110 target_cpu=000
44640           <...>-27571 (-----) [004] ...1 82315.904080: tracing_mark_write: E|27550
44641          <idle>-0     (-----) [000] dnh2 82315.904088: sched_wakeup: comm=id.nn.benchmark pid=27572 prio=110 target_cpu=000
44642          <idle>-0     (-----) [000] .n.1 82315.904095: cpu_idle: state=4294967295 cpu_id=0
44643          <idle>-0     (-----) [000] d..2 82315.904104: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27572 next_prio=110
44644           <...>-27572 (-----) [000] ...1 82315.904123: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
44645           <...>-27572 (-----) [000] ...1 82315.904131: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
44646           <...>-27571 (-----) [004] d..2 82315.904140: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
44647          <idle>-0     (-----) [004] d..1 82315.904152: cpu_idle: state=2 cpu_id=4
44648           <...>-27572 (-----) [000] ...1 82315.904195: tracing_mark_write: E|27550
44649           <...>-27572 (-----) [000] ...1 82315.904200: tracing_mark_write: E|27550
44650           <...>-27572 (-----) [000] ...1 82315.904205: tracing_mark_write: E|27550
44651           <...>-27572 (-----) [000] ...1 82315.904459: tracing_mark_write: E|27550
44652           <...>-27572 (-----) [000] d..1 82315.904476: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=006
44653           <...>-27572 (-----) [000] d..4 82315.904575: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
44654           <...>-27572 (-----) [000] d..2 82315.904729: sched_switch: prev_comm=id.nn.benchmark prev_pid=27572 prev_prio=110 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
44655          <idle>-0     (-----) [000] d..1 82315.904753: cpu_idle: state=0 cpu_id=0
44656          <idle>-0     (-----) [003] d.s2 82315.905133: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44657          <idle>-0     (-----) [003] dns3 82315.905149: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44658          <idle>-0     (-----) [003] .n.1 82315.905164: cpu_idle: state=4294967295 cpu_id=3
44659          <idle>-0     (-----) [003] d..2 82315.905174: 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
44660     rcu_preempt-7     (    7) [003] d..2 82315.905183: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
44661     rcu_preempt-7     (    7) [003] d..3 82315.905215: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
44662     rcu_preempt-7     (    7) [003] d..2 82315.905228: 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
44663          <idle>-0     (-----) [004] dnh2 82315.905231: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
44664          <idle>-0     (-----) [004] .n.1 82315.905238: cpu_idle: state=4294967295 cpu_id=4
44665          <idle>-0     (-----) [004] d..2 82315.905249: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
44666         rcuop/2-29    (   29) [003] d..2 82315.905257: 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
44667          <idle>-0     (-----) [003] d..1 82315.905269: cpu_idle: state=2 cpu_id=3
44668          <idle>-0     (-----) [005] dnh2 82315.905273: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=005
44669          <idle>-0     (-----) [005] .n.1 82315.905282: cpu_idle: state=4294967295 cpu_id=5
44670           <...>-27550 (-----) [004] d..2 82315.905291: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
44671          <idle>-0     (-----) [005] d..2 82315.905296: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
44672          <idle>-0     (-----) [000] dnh2 82315.905319: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
44673           <...>-27550 (-----) [004] ...1 82315.905323: tracing_mark_write: E|27550
44674          <idle>-0     (-----) [000] .n.1 82315.905325: cpu_idle: state=4294967295 cpu_id=0
44675          <idle>-0     (-----) [000] d..2 82315.905336: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
44676<...>-46 ( 46) [000] d..2 82315.905343: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
44677<...>-46 ( 46) [000] d..3 82315.905362: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
44678<...>-46 ( 46) [000] d..2 82315.905371: 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
44679           <...>-27571 (-----) [005] d..2 82315.905377: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
44680           <...>-27550 (-----) [004] ...1 82315.905389: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
44681          <idle>-0     (-----) [005] d..1 82315.905390: cpu_idle: state=2 cpu_id=5
44682<...>-8 ( 8) [000] d..2 82315.905393: 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
44683           <...>-27550 (-----) [004] ...1 82315.905398: tracing_mark_write: E|27550
44684          <idle>-0     (-----) [000] d..1 82315.905403: cpu_idle: state=0 cpu_id=0
44685           <...>-27550 (-----) [004] ...1 82315.905414: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
44686           <...>-27550 (-----) [004] ...1 82315.905420: tracing_mark_write: E|27550
44687           <...>-27550 (-----) [004] ...1 82315.905427: tracing_mark_write: E|27550
44688           <...>-27550 (-----) [004] ...1 82315.905544: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
44689           <...>-27550 (-----) [004] ...1 82315.905605: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
44690           <...>-27550 (-----) [004] ...1 82315.905610: tracing_mark_write: E|27550
44691           <...>-27550 (-----) [004] ...1 82315.905614: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
44692           <...>-27550 (-----) [004] ...1 82315.905621: tracing_mark_write: E|27550
44693           <...>-27550 (-----) [004] ...1 82315.905625: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
44694           <...>-27550 (-----) [004] ...1 82315.905629: tracing_mark_write: E|27550
44695           <...>-27550 (-----) [004] ...1 82315.905634: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
44696           <...>-27550 (-----) [004] ...1 82315.905745: tracing_mark_write: E|27550
44697           <...>-27550 (-----) [004] ...1 82315.905750: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
44698           <...>-27550 (-----) [004] d..2 82315.905769: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
44699          <idle>-0     (-----) [004] d..1 82315.905785: cpu_idle: state=2 cpu_id=4
44700          <idle>-0     (-----) [005] .n.1 82315.905960: cpu_idle: state=4294967295 cpu_id=5
44701          <idle>-0     (-----) [005] d..2 82315.905975: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27573 next_prio=110
44702           <...>-27573 (-----) [005] ...1 82315.906043: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
44703           <...>-27573 (-----) [005] ...1 82315.906058: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
44704           <...>-27573 (-----) [005] ...1 82315.906061: tracing_mark_write: E|27550
44705           <...>-27573 (-----) [005] .... 82315.906089: binder_transaction: transaction=1569141 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
44706           <...>-27573 (-----) [005] .... 82315.906092: binder_transaction_alloc_buf: transaction=1569141 data_size=48 offsets_size=0
44707           <...>-27573 (-----) [005] ...2 82315.906095: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
44708           <...>-27573 (-----) [005] d..4 82315.906098: sched_waking: [email protected] pid=770 prio=110 target_cpu=000
44709           <...>-27573 (-----) [005] dn.5 82315.906118: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
44710           <...>-27573 (-----) [005] d..2 82315.906158: sched_switch: prev_comm=id.nn.benchmark prev_pid=27573 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
44711<...>-770 ( 770) [005] .... 82315.906168: binder_transaction_received: transaction=1569141
44712<...>-770 ( 770) [005] ...1 82315.906194: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
44713<...>-770 ( 770) [005] d..2 82315.906294: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
44714          <idle>-0     (-----) [000] dnh2 82315.906330: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
44715          <idle>-0     (-----) [000] .n.1 82315.906335: cpu_idle: state=4294967295 cpu_id=0
44716          <idle>-0     (-----) [000] d..2 82315.906343: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
44717<...>-770 ( 770) [005] ...1 82315.906350: tracing_mark_write: E|770
44718<...>-770 ( 770) [005] .... 82315.906359: binder_transaction: transaction=1569142 dest_node=0 dest_proc=27550 dest_thread=27573 reply=1 flags=0x0 code=0x0
44719<...>-770 ( 770) [005] .... 82315.906361: binder_transaction_alloc_buf: transaction=1569142 data_size=168 offsets_size=32
44720<...>-770 ( 770) [005] .... 82315.906368: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
44721<...>-770 ( 770) [005] d..2 82315.906404: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27573 next_prio=110
44722           <...>-27573 (-----) [005] .... 82315.906415: binder_transaction_received: transaction=1569142
44723<...>-581 ( 571) [000] d..2 82315.906421: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44724          <idle>-0     (-----) [000] d..1 82315.906432: cpu_idle: state=0 cpu_id=0
44725           <...>-27573 (-----) [005] ...1 82315.906494: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
44726           <...>-27573 (-----) [005] ...1 82315.906500: tracing_mark_write: E|27550
44727           <...>-27573 (-----) [005] .... 82315.906514: binder_transaction: transaction=1569143 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
44728           <...>-27573 (-----) [005] .... 82315.906516: binder_transaction_alloc_buf: transaction=1569143 data_size=48 offsets_size=0
44729           <...>-27573 (-----) [005] ...2 82315.906519: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
44730           <...>-27573 (-----) [005] d..4 82315.906521: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
44731           <...>-27573 (-----) [005] dn.5 82315.906530: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
44732           <...>-27573 (-----) [005] d..2 82315.906537: sched_switch: prev_comm=id.nn.benchmark prev_pid=27573 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
44733<...>-770 ( 770) [005] .... 82315.906544: binder_transaction_received: transaction=1569143
44734<...>-770 ( 770) [005] ...1 82315.906560: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
44735<...>-770 ( 770) [005] d..2 82315.906616: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
44736          <idle>-0     (-----) [000] dnh2 82315.906638: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
44737          <idle>-0     (-----) [000] .n.1 82315.906643: cpu_idle: state=4294967295 cpu_id=0
44738<...>-770 ( 770) [005] ...1 82315.906650: tracing_mark_write: E|770
44739          <idle>-0     (-----) [000] d..2 82315.906652: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
44740<...>-770 ( 770) [005] .... 82315.906657: binder_transaction: transaction=1569144 dest_node=0 dest_proc=27550 dest_thread=27573 reply=1 flags=0x0 code=0x0
44741<...>-770 ( 770) [005] .... 82315.906659: binder_transaction_alloc_buf: transaction=1569144 data_size=168 offsets_size=32
44742<...>-770 ( 770) [005] .... 82315.906665: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
44743<...>-770 ( 770) [005] d..2 82315.906699: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27573 next_prio=110
44744<...>-581 ( 571) [000] d..2 82315.906701: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44745           <...>-27573 (-----) [005] .... 82315.906710: binder_transaction_received: transaction=1569144
44746          <idle>-0     (-----) [000] d..1 82315.906711: cpu_idle: state=0 cpu_id=0
44747           <...>-27573 (-----) [005] ...1 82315.907014: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
44748           <...>-27573 (-----) [005] ...1 82315.907024: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
44749           <...>-27573 (-----) [005] ...1 82315.907028: tracing_mark_write: E|27550
44750           <...>-27573 (-----) [005] .... 82315.907092: binder_transaction: transaction=1569145 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
44751           <...>-27573 (-----) [005] .... 82315.907095: binder_transaction_alloc_buf: transaction=1569145 data_size=556 offsets_size=104
44752           <...>-27573 (-----) [005] ...2 82315.907109: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
44753           <...>-27573 (-----) [005] d..4 82315.907112: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
44754           <...>-27573 (-----) [005] dn.5 82315.907132: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
44755           <...>-27573 (-----) [005] d..2 82315.907169: sched_switch: prev_comm=id.nn.benchmark prev_pid=27573 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
44756<...>-5340 ( 788) [005] .... 82315.907178: binder_transaction_received: transaction=1569145
44757<...>-5340 ( 788) [005] ...1 82315.907228: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
44758<...>-5340 ( 788) [005] d..2 82315.907277: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
44759<...>-5340 ( 788) [005] d..2 82315.907301: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27573 next_prio=110
44760          <idle>-0     (-----) [000] dnh2 82315.907302: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
44761          <idle>-0     (-----) [000] .n.1 82315.907307: cpu_idle: state=4294967295 cpu_id=0
44762          <idle>-0     (-----) [000] d..2 82315.907316: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
44763           <...>-27573 (-----) [005] d..2 82315.907323: sched_switch: prev_comm=id.nn.benchmark prev_pid=27573 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
44764          <idle>-0     (-----) [005] d..1 82315.907341: cpu_idle: state=2 cpu_id=5
44765<...>-87 ( 87) [000] d..2 82315.907351: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44766          <idle>-0     (-----) [000] d..1 82315.907359: cpu_idle: state=0 cpu_id=0
44767          <idle>-0     (-----) [002] d.h4 82315.907360: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
44768          <idle>-0     (-----) [002] dnh5 82315.907387: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
44769          <idle>-0     (-----) [002] .n.1 82315.907395: cpu_idle: state=4294967295 cpu_id=2
44770          <idle>-0     (-----) [002] d..2 82315.907405: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
44771<...>-86 ( 86) [002] d..3 82315.907430: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
44772<...>-86 ( 86) [002] d..2 82315.907478: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44773          <idle>-0     (-----) [002] d..1 82315.907490: cpu_idle: state=0 cpu_id=2
44774          <idle>-0     (-----) [005] dnh2 82315.908265: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
44775          <idle>-0     (-----) [005] .n.1 82315.908272: cpu_idle: state=4294967295 cpu_id=5
44776          <idle>-0     (-----) [005] d..2 82315.908283: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
44777<...>-5340 ( 788) [005] d..1 82315.908351: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
44778          <idle>-0     (-----) [000] dnh2 82315.908388: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
44779          <idle>-0     (-----) [000] .n.1 82315.908393: cpu_idle: state=4294967295 cpu_id=0
44780          <idle>-0     (-----) [000] d..2 82315.908401: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
44781 neuralnetworks@-13088 (  788) [000] d..2 82315.908445: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44782<...>-5340 ( 788) [005] d.s2 82315.908471: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
44783          <idle>-0     (-----) [000] d..1 82315.908491: cpu_idle: state=0 cpu_id=0
44784          <idle>-0     (-----) [000] dnh2 82315.908504: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
44785          <idle>-0     (-----) [000] .n.1 82315.908508: cpu_idle: state=4294967295 cpu_id=0
44786          <idle>-0     (-----) [000] d..2 82315.908516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
44787<...>-5340 ( 788) [005] d..2 82315.908594: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
44788  kworker/u16:13-1147  ( 1147) [000] d.h1 82315.908614: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
44789<...>-5340 ( 788) [005] d..2 82315.908623: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
44790          <idle>-0     (-----) [005] d..1 82315.908636: cpu_idle: state=2 cpu_id=5
44791  kworker/u16:13-1147  ( 1147) [000] d..2 82315.908727: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
44792<...>-87 ( 87) [000] d..2 82315.908759: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44793          <idle>-0     (-----) [002] d.h4 82315.908761: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
44794          <idle>-0     (-----) [000] d..1 82315.908768: cpu_idle: state=0 cpu_id=0
44795          <idle>-0     (-----) [001] d.s3 82315.908768: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
44796          <idle>-0     (-----) [002] dnh5 82315.908770: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
44797          <idle>-0     (-----) [002] .n.1 82315.908778: cpu_idle: state=4294967295 cpu_id=2
44798          <idle>-0     (-----) [001] d.s4 82315.908778: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
44799          <idle>-0     (-----) [001] d.s4 82315.908786: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
44800          <idle>-0     (-----) [002] d..2 82315.908787: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
44801          <idle>-0     (-----) [000] .n.1 82315.908792: cpu_idle: state=4294967295 cpu_id=0
44802          <idle>-0     (-----) [001] ...1 82315.908795: cpu_idle: state=4294967295 cpu_id=1
44803          <idle>-0     (-----) [001] d..1 82315.908799: cpu_idle: state=0 cpu_id=1
44804          <idle>-0     (-----) [000] d..2 82315.908800: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
44805<...>-86 ( 86) [002] d..2 82315.908814: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44806          <idle>-0     (-----) [002] d..1 82315.908824: cpu_idle: state=2 cpu_id=2
44807  kworker/u16:13-1147  ( 1147) [000] .... 82315.908842: clk_set_rate: l3_cluster0_vote_clk 403200000
44808  kworker/u16:13-1147  ( 1147) [000] .... 82315.908846: clk_set_rate: l3_clk 403200000
44809  kworker/u16:13-1147  ( 1147) [000] d..2 82315.908898: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44810          <idle>-0     (-----) [000] d..1 82315.908906: cpu_idle: state=0 cpu_id=0
44811          <idle>-0     (-----) [000] d.h5 82315.909480: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44812          <idle>-0     (-----) [000] d.h6 82315.909500: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44813          <idle>-0     (-----) [000] d.h5 82315.909504: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
44814          <idle>-0     (-----) [001] .n.1 82315.909505: cpu_idle: state=4294967295 cpu_id=1
44815          <idle>-0     (-----) [000] d.h6 82315.909515: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
44816          <idle>-0     (-----) [001] d..2 82315.909517: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
44817          <idle>-0     (-----) [000] ...1 82315.909529: cpu_idle: state=4294967295 cpu_id=0
44818          <idle>-0     (-----) [000] d..1 82315.909534: cpu_idle: state=0 cpu_id=0
44819  crtc_event:111-322   (  322) [001] d..2 82315.909554: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44820          <idle>-0     (-----) [001] d..1 82315.909562: cpu_idle: state=0 cpu_id=1
44821          <idle>-0     (-----) [002] .n.1 82315.909648: cpu_idle: state=4294967295 cpu_id=2
44822          <idle>-0     (-----) [002] d..2 82315.909667: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
44823 crtc_commit:111-321   (  321) [002] d..2 82315.909824: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
44824          <idle>-0     (-----) [002] d..1 82315.909834: cpu_idle: state=0 cpu_id=2
44825          <idle>-0     (-----) [002] d.h4 82315.910498: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
44826          <idle>-0     (-----) [002] ...1 82315.910535: cpu_idle: state=4294967295 cpu_id=2
44827          <idle>-0     (-----) [002] d..1 82315.910539: cpu_idle: state=0 cpu_id=2
44828          <idle>-0     (-----) [005] dnh2 82315.911271: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
44829          <idle>-0     (-----) [005] .n.1 82315.911279: cpu_idle: state=4294967295 cpu_id=5
44830          <idle>-0     (-----) [005] d..2 82315.911291: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
44831<...>-5340 ( 788) [005] d..1 82315.911376: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
44832          <idle>-0     (-----) [000] dnh2 82315.911403: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
44833          <idle>-0     (-----) [000] .n.1 82315.911410: cpu_idle: state=4294967295 cpu_id=0
44834          <idle>-0     (-----) [000] d..2 82315.911419: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
44835 neuralnetworks@-13088 (  788) [000] d..2 82315.911473: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44836          <idle>-0     (-----) [000] d..1 82315.911481: cpu_idle: state=0 cpu_id=0
44837<...>-5340 ( 788) [005] ...1 82315.911482: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
44838<...>-5340 ( 788) [005] ...1 82315.911487: tracing_mark_write: E|788
44839<...>-5340 ( 788) [005] .... 82315.911508: binder_transaction: transaction=1569148 dest_node=1569146 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
44840<...>-5340 ( 788) [005] .... 82315.911511: binder_transaction_alloc_buf: transaction=1569148 data_size=60 offsets_size=0
44841<...>-5340 ( 788) [005] d..4 82315.911515: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=005
44842<...>-5340 ( 788) [005] d..5 82315.911534: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
44843<...>-5340 ( 788) [005] ...1 82315.911560: tracing_mark_write: E|788
44844<...>-5340 ( 788) [005] .... 82315.911566: binder_transaction: transaction=1569149 dest_node=0 dest_proc=27550 dest_thread=27573 reply=1 flags=0x0 code=0x0
44845<...>-5340 ( 788) [005] .... 82315.911568: binder_transaction_alloc_buf: transaction=1569149 data_size=8 offsets_size=0
44846<...>-5340 ( 788) [005] d..2 82315.911570: sched_waking: comm=id.nn.benchmark pid=27573 prio=110 target_cpu=005
44847<...>-5340 ( 788) [005] d..3 82315.911577: sched_wakeup: comm=id.nn.benchmark pid=27573 prio=110 target_cpu=005
44848<...>-5340 ( 788) [005] .... 82315.911579: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
44849<...>-5340 ( 788) [005] d..2 82315.911624: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27573 next_prio=110
44850           <...>-27573 (-----) [005] .... 82315.911635: binder_transaction_received: transaction=1569149
44851           <...>-27573 (-----) [005] d..2 82315.911679: sched_switch: prev_comm=id.nn.benchmark prev_pid=27573 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
44852          <idle>-0     (-----) [005] d..1 82315.911698: cpu_idle: state=2 cpu_id=5
44853          <idle>-0     (-----) [004] .n.1 82315.911750: cpu_idle: state=4294967295 cpu_id=4
44854          <idle>-0     (-----) [004] d..2 82315.911770: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
44855           <...>-27571 (-----) [004] d.s4 82315.911809: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
44856          <idle>-0     (-----) [000] d.h5 82315.911815: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
44857           <...>-27571 (-----) [004] dns5 82315.911853: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
44858          <idle>-0     (-----) [000] d.h6 82315.911859: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
44859           <...>-27571 (-----) [004] d..2 82315.911864: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=R ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
44860          <idle>-0     (-----) [002] dns3 82315.911877: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44861     kworker/4:1-25432 (25432) [004] d..2 82315.911890: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
44862          <idle>-0     (-----) [000] d.s2 82315.911893: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
44863           <...>-27571 (-----) [004] .... 82315.911895: binder_transaction_received: transaction=1569148
44864          <idle>-0     (-----) [002] dns4 82315.911896: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44865          <idle>-0     (-----) [001] .n.1 82315.911902: cpu_idle: state=4294967295 cpu_id=1
44866          <idle>-0     (-----) [000] dns3 82315.911911: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
44867          <idle>-0     (-----) [001] d..2 82315.911911: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
44868          <idle>-0     (-----) [002] .n.1 82315.911917: cpu_idle: state=4294967295 cpu_id=2
44869          <idle>-0     (-----) [000] .n.1 82315.911920: cpu_idle: state=4294967295 cpu_id=0
44870          <idle>-0     (-----) [002] d..2 82315.911925: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
44871           <...>-27571 (-----) [004] ...1 82315.911927: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
44872          <idle>-0     (-----) [000] d..2 82315.911928: 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
44873           <...>-27571 (-----) [004] d..1 82315.911933: sched_waking: comm=id.nn.benchmark pid=27573 prio=110 target_cpu=005
44874  crtc_event:111-322   (  322) [001] d..2 82315.911939: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44875           <...>-27571 (-----) [004] d..2 82315.911944: sched_wakeup: comm=id.nn.benchmark pid=27573 prio=110 target_cpu=005
44876          <idle>-0     (-----) [001] d..1 82315.911946: cpu_idle: state=0 cpu_id=1
44877           <...>-27571 (-----) [004] ...1 82315.911950: tracing_mark_write: E|27550
44878<...>-8 ( 8) [000] d..2 82315.911956: 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
44879          <idle>-0     (-----) [000] d..1 82315.911968: cpu_idle: state=0 cpu_id=0
44880           <...>-27571 (-----) [004] d..2 82315.911981: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
44881          <idle>-0     (-----) [004] d..1 82315.911993: cpu_idle: state=2 cpu_id=4
44882 crtc_commit:111-321   (  321) [002] d..2 82315.912011: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44883          <idle>-0     (-----) [002] d..1 82315.912027: cpu_idle: state=0 cpu_id=2
44884          <idle>-0     (-----) [003] d.s2 82315.912041: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44885          <idle>-0     (-----) [003] dns3 82315.912065: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
44886          <idle>-0     (-----) [003] .n.1 82315.912079: cpu_idle: state=4294967295 cpu_id=3
44887          <idle>-0     (-----) [003] d..2 82315.912093: 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
44888     rcu_preempt-7     (    7) [003] d..2 82315.912105: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
44889          <idle>-0     (-----) [000] d.h5 82315.912106: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44890     rcu_preempt-7     (    7) [003] d..3 82315.912122: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
44891          <idle>-0     (-----) [000] d.h6 82315.912123: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
44892          <idle>-0     (-----) [001] .n.1 82315.912128: cpu_idle: state=4294967295 cpu_id=1
44893          <idle>-0     (-----) [001] d..2 82315.912136: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
44894     rcu_preempt-7     (    7) [003] d..2 82315.912137: 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
44895          <idle>-0     (-----) [000] ...1 82315.912140: cpu_idle: state=4294967295 cpu_id=0
44896          <idle>-0     (-----) [000] d..1 82315.912144: cpu_idle: state=0 cpu_id=0
44897  crtc_event:111-322   (  322) [001] d..2 82315.912155: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44898          <idle>-0     (-----) [001] d..1 82315.912162: cpu_idle: state=0 cpu_id=1
44899         rcuop/0-10    (   10) [003] d..2 82315.912168: 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
44900          <idle>-0     (-----) [003] d..1 82315.912182: cpu_idle: state=2 cpu_id=3
44901          <idle>-0     (-----) [005] .n.1 82315.912185: cpu_idle: state=4294967295 cpu_id=5
44902          <idle>-0     (-----) [005] d..2 82315.912205: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27573 next_prio=110
44903           <...>-27573 (-----) [005] ...1 82315.912227: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
44904           <...>-27573 (-----) [005] ...1 82315.912234: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
44905           <...>-27573 (-----) [005] ...1 82315.912263: tracing_mark_write: E|27550
44906           <...>-27573 (-----) [005] ...1 82315.912266: tracing_mark_write: E|27550
44907           <...>-27573 (-----) [005] ...1 82315.912270: tracing_mark_write: E|27550
44908           <...>-27573 (-----) [005] d..2 82315.912312: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
44909          <idle>-0     (-----) [000] dnh2 82315.912341: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
44910          <idle>-0     (-----) [000] .n.1 82315.912346: cpu_idle: state=4294967295 cpu_id=0
44911          <idle>-0     (-----) [000] d..2 82315.912356: 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
44912         rcuop/4-45    (   45) [000] d..2 82315.912377: 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
44913          <idle>-0     (-----) [000] d..1 82315.912386: cpu_idle: state=0 cpu_id=0
44914          <idle>-0     (-----) [001] d.h2 82315.912456: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
44915          <idle>-0     (-----) [001] dnh3 82315.912471: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
44916          <idle>-0     (-----) [001] .n.1 82315.912478: cpu_idle: state=4294967295 cpu_id=1
44917          <idle>-0     (-----) [001] d..2 82315.912487: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
44918           <...>-27573 (-----) [005] ...1 82315.912490: tracing_mark_write: E|27550
44919           <...>-27573 (-----) [005] d..1 82315.912503: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
44920           <...>-27573 (-----) [005] d..2 82315.912517: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
44921        DispSync-8879  ( 8858) [001] d..1 82315.912518: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44922        DispSync-8879  ( 8858) [001] d..2 82315.912533: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44923        DispSync-8879  ( 8858) [001] d..2 82315.912563: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
44924           <...>-27573 (-----) [005] d..4 82315.912565: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
44925          <idle>-0     (-----) [001] d..1 82315.912574: cpu_idle: state=0 cpu_id=1
44926           <...>-27573 (-----) [005] d..5 82315.912585: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=006
44927          <idle>-0     (-----) [003] .n.1 82315.912661: cpu_idle: state=4294967295 cpu_id=3
44928          <idle>-0     (-----) [003] d..2 82315.912679: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
44929           <...>-27573 (-----) [005] d..2 82315.912681: sched_switch: prev_comm=id.nn.benchmark prev_pid=27573 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
44930          <idle>-0     (-----) [005] d..1 82315.912705: cpu_idle: state=0 cpu_id=5
44931          <idle>-0     (-----) [004] .n.1 82315.912715: cpu_idle: state=4294967295 cpu_id=4
44932          <idle>-0     (-----) [004] d..2 82315.912733: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
44933   sfEventThread-8882  ( 8858) [003] d..3 82315.912737: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=004
44934          <idle>-0     (-----) [005] dnh2 82315.912778: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=005
44935   sfEventThread-8882  ( 8858) [003] d..3 82315.912780: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
44936          <idle>-0     (-----) [005] .n.1 82315.912784: cpu_idle: state=4294967295 cpu_id=5
44937          <idle>-0     (-----) [006] .n.1 82315.912791: cpu_idle: state=4294967295 cpu_id=6
44938          <idle>-0     (-----) [005] d..2 82315.912792: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
44939           <...>-27550 (-----) [004] ...1 82315.912793: tracing_mark_write: E|27550
44940   sfEventThread-8882  ( 8858) [003] d..4 82315.912799: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
44941           <...>-27550 (-----) [004] ...1 82315.912799: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
44942          <idle>-0     (-----) [001] .n.1 82315.912805: cpu_idle: state=4294967295 cpu_id=1
44943           <...>-27550 (-----) [004] ...1 82315.912808: tracing_mark_write: E|27550
44944           <...>-27550 (-----) [004] ...1 82315.912812: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
44945          <idle>-0     (-----) [006] d..2 82315.912812: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
44946          <idle>-0     (-----) [001] d..2 82315.912814: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
44947           <...>-27550 (-----) [004] ...1 82315.912816: tracing_mark_write: E|27550
44948           <...>-27550 (-----) [004] ...1 82315.912822: tracing_mark_write: E|27550
44949   sfEventThread-8882  ( 8858) [003] d..2 82315.912835: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44950          <idle>-0     (-----) [003] d..1 82315.912850: cpu_idle: state=0 cpu_id=3
44951           <...>-27571 (-----) [006] d..2 82315.912881: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
44952          <idle>-0     (-----) [006] d..1 82315.912895: cpu_idle: state=2 cpu_id=6
44953           <...>-27550 (-----) [004] ...1 82315.912937: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
44954           <...>-27550 (-----) [004] ...1 82315.913009: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
44955           <...>-27550 (-----) [004] ...1 82315.913015: tracing_mark_write: E|27550
44956           <...>-27550 (-----) [004] ...1 82315.913019: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
44957           <...>-27550 (-----) [004] ...1 82315.913025: tracing_mark_write: E|27550
44958           <...>-27550 (-----) [004] ...1 82315.913029: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
44959           <...>-27550 (-----) [004] ...1 82315.913033: tracing_mark_write: E|27550
44960           <...>-27550 (-----) [004] ...1 82315.913037: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
44961<...>-9006 ( 8943) [005] .... 82315.913140: binder_transaction: transaction=1569150 dest_node=396332 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
44962           <...>-27550 (-----) [004] ...1 82315.913143: tracing_mark_write: E|27550
44963<...>-9006 ( 8943) [005] .... 82315.913146: binder_transaction_alloc_buf: transaction=1569150 data_size=80 offsets_size=0
44964           <...>-27550 (-----) [004] ...1 82315.913148: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
44965<...>-9006 ( 8943) [005] d..4 82315.913150: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
44966           <...>-27550 (-----) [004] d..2 82315.913178: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
44967          <idle>-0     (-----) [004] d..1 82315.913196: cpu_idle: state=2 cpu_id=4
44968<...>-9006 ( 8943) [005] d.h5 82315.913216: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
44969          <idle>-0     (-----) [000] dnh2 82315.913218: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
44970          <idle>-0     (-----) [000] .n.1 82315.913223: cpu_idle: state=4294967295 cpu_id=0
44971          <idle>-0     (-----) [000] d..2 82315.913232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
44972<...>-8951 ( 8858) [000] .... 82315.913244: binder_transaction_received: transaction=1569150
44973          <idle>-0     (-----) [002] dnh2 82315.913244: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
44974          <idle>-0     (-----) [002] .n.1 82315.913251: cpu_idle: state=4294967295 cpu_id=2
44975  surfaceflinger-8858  ( 8858) [001] d..1 82315.913255: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44976          <idle>-0     (-----) [002] d..2 82315.913259: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
44977  surfaceflinger-8858  ( 8858) [001] d..2 82315.913274: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
44978          <idle>-0     (-----) [003] .n.1 82315.913280: cpu_idle: state=4294967295 cpu_id=3
44979          <idle>-0     (-----) [003] d..2 82315.913290: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
44980         sugov:0-576   (  576) [002] .... 82315.913293: clk_set_rate: pwrcl_clk 1228800000
44981         sugov:0-576   (  576) [002] .... 82315.913305: clk_set_rate: cpu3_pwrcl_clk 1132800000
44982         sugov:0-576   (  576) [002] .... 82315.913314: clk_set_rate: cpu2_pwrcl_clk 1132800000
44983         sugov:0-576   (  576) [002] .... 82315.913321: clk_set_rate: cpu1_pwrcl_clk 1132800000
44984<...>-9006 ( 8943) [005] d..3 82315.913325: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
44985         sugov:0-576   (  576) [002] .... 82315.913329: clk_set_rate: cpu0_pwrcl_clk 1228800000
44986   sfEventThread-8882  ( 8858) [003] d..2 82315.913329: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
44987          <idle>-0     (-----) [006] .n.1 82315.913337: cpu_idle: state=4294967295 cpu_id=6
44988<...>-8951 ( 8858) [000] d..2 82315.913337: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
44989         sugov:0-576   (  576) [002] .... 82315.913338: cpu_frequency: state=1228800 cpu_id=0
44990          <idle>-0     (-----) [003] d..1 82315.913338: cpu_idle: state=0 cpu_id=3
44991<...>-9006 ( 8943) [005] d..4 82315.913350: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
44992          <idle>-0     (-----) [000] d..1 82315.913353: cpu_idle: state=0 cpu_id=0
44993          <idle>-0     (-----) [006] d..2 82315.913358: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27574 next_prio=110
44994         sugov:0-576   (  576) [002] .... 82315.913363: cpu_frequency: state=1228800 cpu_id=1
44995         sugov:0-576   (  576) [002] .... 82315.913366: cpu_frequency: state=1228800 cpu_id=2
44996         sugov:0-576   (  576) [002] .... 82315.913370: cpu_frequency: state=1228800 cpu_id=3
44997         sugov:0-576   (  576) [002] d..2 82315.913395: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
44998          <idle>-0     (-----) [002] d..1 82315.913405: cpu_idle: state=0 cpu_id=2
44999           <...>-27574 (-----) [006] ...1 82315.913432: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
45000           <...>-27574 (-----) [006] ...1 82315.913445: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
45001           <...>-27574 (-----) [006] ...1 82315.913449: tracing_mark_write: E|27550
45002           <...>-27574 (-----) [006] .... 82315.913478: binder_transaction: transaction=1569151 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
45003           <...>-27574 (-----) [006] .... 82315.913482: binder_transaction_alloc_buf: transaction=1569151 data_size=48 offsets_size=0
45004           <...>-27574 (-----) [006] ...2 82315.913486: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
45005           <...>-27574 (-----) [006] d..4 82315.913489: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
45006           <...>-27574 (-----) [006] dn.5 82315.913507: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=006
45007           <...>-27574 (-----) [006] d..2 82315.913515: sched_switch: prev_comm=id.nn.benchmark prev_pid=27574 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
45008<...>-9006 ( 8943) [005] .... 82315.913515: binder_transaction: transaction=1569152 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
45009<...>-9006 ( 8943) [005] .... 82315.913520: binder_transaction_alloc_buf: transaction=1569152 data_size=684 offsets_size=32
45010<...>-770 ( 770) [006] .... 82315.913526: binder_transaction_received: transaction=1569151
45011<...>-9006 ( 8943) [005] ...2 82315.913537: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
45012<...>-9006 ( 8943) [005] d..4 82315.913540: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
45013<...>-770 ( 770) [006] ...1 82315.913552: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
45014<...>-9006 ( 8943) [005] d..5 82315.913563: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
45015          <idle>-0     (-----) [004] .n.1 82315.913601: cpu_idle: state=4294967295 cpu_id=4
45016<...>-9006 ( 8943) [005] d..2 82315.913601: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
45017<...>-8951 ( 8858) [005] .... 82315.913614: binder_transaction_received: transaction=1569152
45018          <idle>-0     (-----) [004] d..2 82315.913618: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
45019<...>-770 ( 770) [006] d..2 82315.913646: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
45020  surfaceflinger-8858  ( 8858) [001] d.h1 82315.913692: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
45021<...>-770 ( 770) [006] ...1 82315.913710: tracing_mark_write: E|770
45022<...>-8951 ( 8858) [005] .... 82315.913711: binder_transaction: transaction=1569153 dest_node=0 dest_proc=8943 dest_thread=9006 reply=1 flags=0x0 code=0x0
45023<...>-8951 ( 8858) [005] .... 82315.913715: binder_transaction_alloc_buf: transaction=1569153 data_size=0 offsets_size=0
45024<...>-8951 ( 8858) [005] d..2 82315.913717: sched_waking: comm=android.anim.lf pid=9006 prio=110 target_cpu=005
45025<...>-770 ( 770) [006] .... 82315.913720: binder_transaction: transaction=1569154 dest_node=0 dest_proc=27550 dest_thread=27574 reply=1 flags=0x0 code=0x0
45026<...>-770 ( 770) [006] .... 82315.913724: binder_transaction_alloc_buf: transaction=1569154 data_size=168 offsets_size=32
45027<...>-8951 ( 8858) [005] dn.3 82315.913727: sched_wakeup: comm=android.anim.lf pid=9006 prio=110 target_cpu=005
45028<...>-770 ( 770) [006] .... 82315.913732: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
45029<...>-8951 ( 8858) [005] d..2 82315.913734: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=R+ ==> next_comm=android.anim.lf next_pid=9006 next_prio=110
45030<...>-9006 ( 8943) [005] .... 82315.913742: binder_transaction_received: transaction=1569153
45031<...>-770 ( 770) [006] d..2 82315.913773: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27574 next_prio=110
45032           <...>-27574 (-----) [006] .... 82315.913785: binder_transaction_received: transaction=1569154
45033<...>-9006 ( 8943) [005] d..2 82315.913834: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
45034<...>-8951 ( 8858) [005] .... 82315.913843: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
45035           <...>-27574 (-----) [006] ...1 82315.913871: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
45036  surfaceflinger-8858  ( 8858) [001] ...1 82315.913874: tracing_mark_write: B|8858|HIDL::IComposerClient::destroyLayer::client
45037           <...>-27574 (-----) [006] ...1 82315.913876: tracing_mark_write: E|27550
45038  surfaceflinger-8858  ( 8858) [001] ...1 82315.913880: tracing_mark_write: E|8858
45039           <...>-27574 (-----) [006] .... 82315.913893: binder_transaction: transaction=1569156 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
45040<...>-8951 ( 8858) [005] d..2 82315.913896: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
45041           <...>-27574 (-----) [006] .... 82315.913896: binder_transaction_alloc_buf: transaction=1569156 data_size=48 offsets_size=0
45042<...>-9005 ( 8943) [004] .... 82315.913897: binder_transaction: transaction=1569155 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
45043           <...>-27574 (-----) [006] ...2 82315.913899: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
45044           <...>-27574 (-----) [006] d..4 82315.913902: sched_waking: [email protected] pid=770 prio=110 target_cpu=006
45045<...>-9005 ( 8943) [004] .... 82315.913903: binder_transaction_alloc_buf: transaction=1569155 data_size=80 offsets_size=0
45046<...>-9005 ( 8943) [004] d..4 82315.913908: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
45047          <idle>-0     (-----) [005] d..1 82315.913913: cpu_idle: state=0 cpu_id=5
45048           <...>-27574 (-----) [006] dn.5 82315.913913: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=006
45049  surfaceflinger-8858  ( 8858) [001] .... 82315.913919: binder_transaction: transaction=1569157 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x6
45050           <...>-27574 (-----) [006] d..2 82315.913921: sched_switch: prev_comm=id.nn.benchmark prev_pid=27574 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
45051  surfaceflinger-8858  ( 8858) [001] .... 82315.913924: binder_transaction_alloc_buf: transaction=1569157 data_size=72 offsets_size=0
45052<...>-9005 ( 8943) [004] d..5 82315.913925: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
45053  surfaceflinger-8858  ( 8858) [001] ...2 82315.913929: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
45054<...>-770 ( 770) [006] .... 82315.913930: binder_transaction_received: transaction=1569156
45055          <idle>-0     (-----) [005] .n.1 82315.913931: cpu_idle: state=4294967295 cpu_id=5
45056  surfaceflinger-8858  ( 8858) [001] d..4 82315.913937: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
45057          <idle>-0     (-----) [005] d..2 82315.913941: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
45058<...>-8951 ( 8858) [005] .... 82315.913945: binder_transaction_received: transaction=1569155
45059<...>-770 ( 770) [006] ...1 82315.913949: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
45060  surfaceflinger-8858  ( 8858) [001] d..5 82315.913956: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
45061          <idle>-0     (-----) [003] .n.1 82315.913961: cpu_idle: state=4294967295 cpu_id=3
45062<...>-8951 ( 8858) [005] d..1 82315.913963: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
45063          <idle>-0     (-----) [003] d..2 82315.913972: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
45064  surfaceflinger-8858  ( 8858) [001] d..2 82315.913975: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
45065 [email protected]   (  619) [003] .... 82315.913984: binder_transaction_received: transaction=1569157
45066<...>-9005 ( 8943) [004] d..3 82315.913991: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
45067          <idle>-0     (-----) [000] dnh2 82315.913999: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
45068          <idle>-0     (-----) [000] .n.1 82315.914005: cpu_idle: state=4294967295 cpu_id=0
45069<...>-8951 ( 8858) [005] d..2 82315.914012: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
45070          <idle>-0     (-----) [000] d..2 82315.914013: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
45071<...>-9005 ( 8943) [004] d..4 82315.914016: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=007
45072          <idle>-0     (-----) [005] d..1 82315.914021: cpu_idle: state=2 cpu_id=5
45073 [email protected]   (  619) [003] ...1 82315.914029: tracing_mark_write: B|619|HIDL::IComposerClient::destroyLayer::server
45074<...>-770 ( 770) [006] ...1 82315.914040: tracing_mark_write: E|770
45075<...>-770 ( 770) [006] .... 82315.914048: binder_transaction: transaction=1569158 dest_node=0 dest_proc=27550 dest_thread=27574 reply=1 flags=0x0 code=0x0
45076<...>-770 ( 770) [006] .... 82315.914052: binder_transaction_alloc_buf: transaction=1569158 data_size=168 offsets_size=32
45077   sfEventThread-8882  ( 8858) [000] d..2 82315.914053: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45078<...>-770 ( 770) [006] .... 82315.914058: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
45079          <idle>-0     (-----) [000] d..1 82315.914062: cpu_idle: state=0 cpu_id=0
45080 [email protected]   (  619) [003] ...1 82315.914067: tracing_mark_write: B|619|HIDL::IMapper::freeBuffer::passthrough
45081<...>-9005 ( 8943) [004] d..3 82315.914069: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=006
45082 [email protected]   (  619) [003] ...1 82315.914081: tracing_mark_write: B|619|FreeBuffer
45083<...>-581 ( 571) [001] d..2 82315.914090: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45084<...>-770 ( 770) [006] d..2 82315.914099: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27574 next_prio=110
45085 [email protected]   (  619) [003] ...1 82315.914102: tracing_mark_write: E|619
45086 [email protected]   (  619) [003] ...1 82315.914106: tracing_mark_write: B|619|FreeBuffer
45087          <idle>-0     (-----) [001] d..1 82315.914109: cpu_idle: state=0 cpu_id=1
45088 [email protected]   (  619) [003] ...1 82315.914110: tracing_mark_write: B|619|UnmapBuffer
45089           <...>-27574 (-----) [006] .... 82315.914110: binder_transaction_received: transaction=1569158
45090 [email protected]   (  619) [003] ...1 82315.914134: tracing_mark_write: E|619
45091          <idle>-0     (-----) [000] dnh2 82315.914139: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
45092 [email protected]   (  619) [003] ...1 82315.914141: tracing_mark_write: E|619
45093          <idle>-0     (-----) [000] .n.1 82315.914144: cpu_idle: state=4294967295 cpu_id=0
45094 [email protected]   (  619) [003] ...1 82315.914151: tracing_mark_write: E|619
45095          <idle>-0     (-----) [000] d..2 82315.914153: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
45096 [email protected]   (  619) [003] ...1 82315.914155: tracing_mark_write: B|619|HIDL::IMapper::freeBuffer::passthrough
45097<...>-9005 ( 8943) [004] d..3 82315.914155: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
45098 [email protected]   (  619) [003] ...1 82315.914161: tracing_mark_write: B|619|FreeBuffer
45099 [email protected]   (  619) [003] ...1 82315.914169: tracing_mark_write: E|619
45100 [email protected]   (  619) [003] ...1 82315.914172: tracing_mark_write: B|619|FreeBuffer
45101 [email protected]   (  619) [003] ...1 82315.914175: tracing_mark_write: B|619|UnmapBuffer
45102          <idle>-0     (-----) [001] dnh2 82315.914191: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=001
45103 [email protected]   (  619) [003] ...1 82315.914197: tracing_mark_write: E|619
45104          <idle>-0     (-----) [001] .n.1 82315.914198: cpu_idle: state=4294967295 cpu_id=1
45105 [email protected]   (  619) [003] ...1 82315.914204: tracing_mark_write: E|619
45106 [email protected]   (  619) [003] ...1 82315.914208: tracing_mark_write: E|619
45107          <idle>-0     (-----) [001] d..2 82315.914210: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
45108 [email protected]   (  619) [003] ...1 82315.914211: tracing_mark_write: B|619|HIDL::IMapper::freeBuffer::passthrough
45109 [email protected]   (  619) [003] ...1 82315.914216: tracing_mark_write: B|619|FreeBuffer
45110 [email protected]   (  619) [003] ...1 82315.914224: tracing_mark_write: E|619
45111 [email protected]   (  619) [003] ...1 82315.914227: tracing_mark_write: B|619|FreeBuffer
45112 [email protected]   (  619) [003] ...1 82315.914230: tracing_mark_write: B|619|UnmapBuffer
45113 [email protected]   (  619) [003] ...1 82315.914242: tracing_mark_write: E|619
45114 [email protected]   (  619) [003] ...1 82315.914250: tracing_mark_write: E|619
45115 [email protected]   (  619) [003] ...1 82315.914257: tracing_mark_write: E|619
45116 [email protected]   (  619) [003] ...1 82315.914272: tracing_mark_write: E|619
45117 [email protected]   (  619) [003] .... 82315.914284: binder_transaction: transaction=1569159 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
45118 [email protected]   (  619) [003] .... 82315.914288: binder_transaction_alloc_buf: transaction=1569159 data_size=8 offsets_size=0
45119 [email protected]   (  619) [003] d..2 82315.914292: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
45120          <idle>-0     (-----) [007] .n.1 82315.914313: cpu_idle: state=4294967295 cpu_id=7
45121 [email protected]   (  619) [003] d..3 82315.914320: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
45122 [email protected]   (  619) [003] .... 82315.914324: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
45123          <idle>-0     (-----) [002] .n.1 82315.914326: cpu_idle: state=4294967295 cpu_id=2
45124          <idle>-0     (-----) [002] d..2 82315.914335: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
45125          <idle>-0     (-----) [007] d..2 82315.914335: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
45126  surfaceflinger-8858  ( 8858) [002] .... 82315.914346: binder_transaction_received: transaction=1569159
45127 [email protected]   (  619) [003] d..2 82315.914390: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
45128<...>-9005 ( 8943) [004] .... 82315.914391: binder_transaction: transaction=1569162 dest_node=1160192 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x4
45129<...>-9005 ( 8943) [004] .... 82315.914399: binder_transaction_alloc_buf: transaction=1569162 data_size=56 offsets_size=0
45130<...>-9005 ( 8943) [004] d..4 82315.914405: sched_waking: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=006
45131          <idle>-0     (-----) [003] d..1 82315.914408: cpu_idle: state=0 cpu_id=3
45132   system_server-8943  ( 8943) [001] .... 82315.914419: binder_transaction: transaction=1569161 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x19
45133<...>-8961 ( 8943) [000] .... 82315.914420: binder_transaction: transaction=1569160 dest_node=1568298 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x2a
45134<...>-8961 ( 8943) [000] .... 82315.914426: binder_transaction_alloc_buf: transaction=1569160 data_size=96 offsets_size=8
45135<...>-8969 ( 8943) [007] d..2 82315.914427: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
45136   system_server-8943  ( 8943) [001] .... 82315.914427: binder_transaction_alloc_buf: transaction=1569161 data_size=92 offsets_size=0
45137   system_server-8943  ( 8943) [001] d..4 82315.914440: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=002
45138          <idle>-0     (-----) [007] d..1 82315.914443: cpu_idle: state=2 cpu_id=7
45139<...>-8961 ( 8943) [000] d..4 82315.914444: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=007
45140           <...>-27574 (-----) [006] ...1 82315.914460: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
45141           <...>-27574 (-----) [006] ...1 82315.914472: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
45142          <idle>-0     (-----) [003] dnh2 82315.914472: sched_wakeup: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=003
45143           <...>-27574 (-----) [006] ...1 82315.914475: tracing_mark_write: E|27550
45144          <idle>-0     (-----) [003] .n.1 82315.914479: cpu_idle: state=4294967295 cpu_id=3
45145          <idle>-0     (-----) [003] d..2 82315.914490: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_3 next_pid=10531 next_prio=120
45146  Binder:10023_3-10531 (10023) [003] .... 82315.914503: binder_transaction_received: transaction=1569162
45147<...>-8961 ( 8943) [000] d..1 82315.914522: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=007
45148           <...>-27574 (-----) [006] .... 82315.914550: binder_transaction: transaction=1569163 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
45149           <...>-27574 (-----) [006] .... 82315.914554: binder_transaction_alloc_buf: transaction=1569163 data_size=556 offsets_size=104
45150           <...>-27574 (-----) [006] ...2 82315.914571: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
45151           <...>-27574 (-----) [006] d..4 82315.914574: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
45152<...>-9005 ( 8943) [004] dnh1 82315.914591: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
45153           <...>-27574 (-----) [006] dn.5 82315.914597: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45154<...>-9005 ( 8943) [004] d..2 82315.914603: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
45155           <...>-27574 (-----) [006] d..2 82315.914606: sched_switch: prev_comm=id.nn.benchmark prev_pid=27574 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
45156<...>-5340 ( 788) [006] .... 82315.914618: binder_transaction_received: transaction=1569163
45157<...>-8961 ( 8943) [000] d..2 82315.914641: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45158          <idle>-0     (-----) [000] d..1 82315.914657: cpu_idle: state=0 cpu_id=0
45159   system_server-8943  ( 8943) [001] .... 82315.914662: binder_transaction: transaction=1569166 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x19
45160   system_server-8943  ( 8943) [001] .... 82315.914668: binder_transaction_alloc_buf: transaction=1569166 data_size=92 offsets_size=0
45161<...>-8969 ( 8943) [004] d..3 82315.914672: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
45162<...>-5340 ( 788) [006] ...1 82315.914679: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
45163          <idle>-0     (-----) [000] dnh2 82315.914698: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
45164          <idle>-0     (-----) [000] .n.1 82315.914704: cpu_idle: state=4294967295 cpu_id=0
45165          <idle>-0     (-----) [000] d..2 82315.914714: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
45166  Binder:10023_3-10531 (10023) [003] d..3 82315.914720: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=002
45167<...>-8969 ( 8943) [004] d..2 82315.914735: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
45168   system_server-8943  ( 8943) [001] d..2 82315.914736: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45169<...>-5340 ( 788) [006] d..2 82315.914737: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
45170  Binder:10023_3-10531 (10023) [003] d..4 82315.914757: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=001
45171          <idle>-0     (-----) [001] d..2 82315.914772: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
45172          <idle>-0     (-----) [005] dnh2 82315.914780: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=005
45173<...>-5340 ( 788) [006] d..2 82315.914788: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27574 next_prio=110
45174          <idle>-0     (-----) [005] .n.1 82315.914788: cpu_idle: state=4294967295 cpu_id=5
45175 s.nexuslauncher-10023 (10023) [001] d.h3 82315.914790: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
45176          <idle>-0     (-----) [005] d..2 82315.914801: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
45177  surfaceflinger-8858  ( 8858) [002] ...1 82315.914802: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
45178  surfaceflinger-8858  ( 8858) [002] ...1 82315.914808: tracing_mark_write: E|8858
45179           <...>-27574 (-----) [006] d..2 82315.914814: sched_switch: prev_comm=id.nn.benchmark prev_pid=27574 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
45180           <...>-27564 (-----) [005] .... 82315.914815: binder_transaction_received: transaction=1569160
45181          <idle>-0     (-----) [007] dnh2 82315.914831: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
45182          <idle>-0     (-----) [006] d..1 82315.914837: cpu_idle: state=2 cpu_id=6
45183          <idle>-0     (-----) [007] .n.1 82315.914840: cpu_idle: state=4294967295 cpu_id=7
45184  Binder:10023_3-10531 (10023) [003] d..2 82315.914849: sched_switch: prev_comm=Binder:10023_3 prev_pid=10531 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
45185  surfaceflinger-8858  ( 8858) [002] .... 82315.914850: binder_transaction: transaction=1569167 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
45186          <idle>-0     (-----) [007] d..2 82315.914853: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
45187  surfaceflinger-8858  ( 8858) [002] .... 82315.914854: binder_transaction_alloc_buf: transaction=1569167 data_size=540 offsets_size=96
45188<...>-9131 ( 9105) [007] .... 82315.914867: binder_transaction_received: transaction=1569161
45189          <idle>-0     (-----) [003] d..1 82315.914867: cpu_idle: state=0 cpu_id=3
45190  surfaceflinger-8858  ( 8858) [002] ...2 82315.914876: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
45191<...>-8961 ( 8943) [000] d..2 82315.914877: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
45192  surfaceflinger-8858  ( 8858) [002] d..4 82315.914881: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
45193  surfaceflinger-8858  ( 8858) [002] d..5 82315.914901: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
45194          <idle>-0     (-----) [003] .n.1 82315.914907: cpu_idle: state=4294967295 cpu_id=3
45195          <idle>-0     (-----) [003] d..2 82315.914918: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
45196<...>-87 ( 87) [000] d..2 82315.914922: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45197 [email protected]   (  619) [003] .... 82315.914926: binder_transaction_received: transaction=1569167
45198  surfaceflinger-8858  ( 8858) [002] d..2 82315.914932: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45199          <idle>-0     (-----) [000] d..1 82315.914937: cpu_idle: state=0 cpu_id=0
45200          <idle>-0     (-----) [002] d.h5 82315.914957: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
45201 s.nexuslauncher-10023 (10023) [001] .... 82315.914959: binder_transaction: transaction=1569168 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
45202 [email protected]   (  619) [003] ...1 82315.914962: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
45203 s.nexuslauncher-10023 (10023) [001] .... 82315.914964: binder_transaction_alloc_buf: transaction=1569168 data_size=80 offsets_size=0
45204 s.nexuslauncher-10023 (10023) [001] d..4 82315.914971: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
45205          <idle>-0     (-----) [002] dnh6 82315.914977: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
45206 s.nexuslauncher-10023 (10023) [001] d..5 82315.915005: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
45207          <idle>-0     (-----) [002] dnh5 82315.915006: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45208          <idle>-0     (-----) [000] .n.1 82315.915011: cpu_idle: state=4294967295 cpu_id=0
45209<...>-9005 ( 8943) [004] .... 82315.915019: binder_transaction: transaction=1569169 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
45210<...>-9005 ( 8943) [004] .... 82315.915025: binder_transaction_alloc_buf: transaction=1569169 data_size=96 offsets_size=0
45211<...>-9131 ( 9105) [007] d..3 82315.915050: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
45212          <idle>-0     (-----) [000] d..2 82315.915054: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
45213<...>-8951 ( 8858) [000] .... 82315.915063: binder_transaction_received: transaction=1569168
45214          <idle>-0     (-----) [002] d..2 82315.915076: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
45215 [email protected]   (  619) [003] ...1 82315.915088: tracing_mark_write: B|619|HWCSession::PresentDisplay::
45216 s.nexuslauncher-10023 (10023) [001] d..3 82315.915095: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=004
45217<...>-8951 ( 8858) [000] d.h1 82315.915101: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
45218<...>-86 ( 86) [002] d..2 82315.915111: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45219 s.nexuslauncher-10023 (10023) [001] d..4 82315.915138: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=000
45220          <idle>-0     (-----) [002] d..1 82315.915167: cpu_idle: state=0 cpu_id=2
45221<...>-9005 ( 8943) [004] d..3 82315.915174: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
45222<...>-8951 ( 8858) [000] d..1 82315.915174: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
45223<...>-9131 ( 9105) [007] d..4 82315.915205: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
45224          <idle>-0     (-----) [006] dnh2 82315.915240: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45225<...>-8951 ( 8858) [000] d..2 82315.915241: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
45226          <idle>-0     (-----) [006] .n.1 82315.915249: cpu_idle: state=4294967295 cpu_id=6
45227          <idle>-0     (-----) [002] dnh2 82315.915259: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
45228           <...>-27564 (-----) [005] d..2 82315.915260: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
45229<...>-9131 ( 9105) [007] .... 82315.915261: binder_transaction_received: transaction=1569166
45230          <idle>-0     (-----) [002] dnh2 82315.915264: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=002
45231          <idle>-0     (-----) [006] d..2 82315.915264: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
45232          <idle>-0     (-----) [005] d..1 82315.915279: cpu_idle: state=2 cpu_id=5
45233          <idle>-0     (-----) [002] .n.1 82315.915306: cpu_idle: state=4294967295 cpu_id=2
45234<...>-8951 ( 8858) [000] d..2 82315.915308: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=120
45235          <idle>-0     (-----) [002] d..2 82315.915317: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
45236 s.nexuslauncher-10023 (10023) [001] d..2 82315.915321: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45237          <idle>-0     (-----) [001] d..1 82315.915337: cpu_idle: state=0 cpu_id=1
45238<...>-5340 ( 788) [006] d..1 82315.915346: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
45239<...>-9131 ( 9105) [007] d..4 82315.915363: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=006
45240  appEventThread-8881  ( 8858) [002] d..1 82315.915366: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
45241    RenderThread-16607 (10023) [000] d..2 82315.915371: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
45242  appEventThread-8881  ( 8858) [002] d..2 82315.915383: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
45243          <idle>-0     (-----) [001] .n.1 82315.915392: cpu_idle: state=4294967295 cpu_id=1
45244          <idle>-0     (-----) [001] dnh2 82315.915409: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=001
45245          <idle>-0     (-----) [001] dnh2 82315.915413: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
45246  appEventThread-8881  ( 8858) [002] d..2 82315.915425: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
45247<...>-9131 ( 9105) [007] .... 82315.915466: binder_transaction_received: transaction=1569169
45248          <idle>-0     (-----) [001] d..2 82315.915468: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
45249        DispSync-8879  ( 8858) [001] d..2 82315.915506: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
45250<...>-9380 ( 9105) [001] d..2 82315.915523: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
45251<...>-8962 ( 8943) [002] d..3 82315.915542: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=001
45252 neuralnetworks@-13088 (  788) [001] d..2 82315.915577: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45253<...>-9131 ( 9105) [007] d..2 82315.915583: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
45254<...>-5340 ( 788) [006] d..2 82315.915588: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
45255          <idle>-0     (-----) [001] d..1 82315.915590: cpu_idle: state=0 cpu_id=1
45256          <idle>-0     (-----) [007] d..1 82315.915602: cpu_idle: state=2 cpu_id=7
45257<...>-9105 ( 9105) [000] dnh1 82315.915652: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
45258<...>-5340 ( 788) [006] d..2 82315.915655: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
45259<...>-9105 ( 9105) [000] d..2 82315.915667: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
45260          <idle>-0     (-----) [006] d..1 82315.915675: cpu_idle: state=2 cpu_id=6
45261<...>-8962 ( 8943) [002] d..2 82315.915697: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
45262<...>-87 ( 87) [000] d..2 82315.915701: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
45263<...>-9132 ( 9105) [002] d.h5 82315.915722: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
45264<...>-9005 ( 8943) [004] .... 82315.915724: binder_transaction: transaction=1569170 dest_node=411275 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x1
45265<...>-9005 ( 8943) [004] .... 82315.915731: binder_transaction_alloc_buf: transaction=1569170 data_size=100 offsets_size=0
45266<...>-9005 ( 8943) [004] d..4 82315.915735: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=007
45267<...>-9132 ( 9105) [002] d.h6 82315.915763: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
45268          <idle>-0     (-----) [001] dnh2 82315.915797: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=001
45269<...>-9105 ( 9105) [000] d..2 82315.915801: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
45270          <idle>-0     (-----) [001] .n.1 82315.915804: cpu_idle: state=4294967295 cpu_id=1
45271          <idle>-0     (-----) [001] d..2 82315.915814: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
45272<...>-9131 ( 9105) [001] .... 82315.915823: binder_transaction_received: transaction=1569170
45273<...>-9132 ( 9105) [002] d..2 82315.915834: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
45274<...>-86 ( 86) [000] d..2 82315.915851: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45275<...>-9005 ( 8943) [004] .... 82315.915853: binder_transaction: transaction=1569171 dest_node=406733 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x1
45276<...>-9005 ( 8943) [004] .... 82315.915856: binder_transaction_alloc_buf: transaction=1569171 data_size=100 offsets_size=0
45277<...>-9005 ( 8943) [004] d..4 82315.915860: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
45278          <idle>-0     (-----) [000] d..1 82315.915866: cpu_idle: state=0 cpu_id=0
45279 [email protected]   (  619) [003] ...1 82315.915876: tracing_mark_write: B|619|HWDeviceDRM::Validate::
45280          <idle>-0     (-----) [000] dnh2 82315.915890: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
45281          <idle>-0     (-----) [000] .n.1 82315.915896: cpu_idle: state=4294967295 cpu_id=0
45282          <idle>-0     (-----) [000] d..2 82315.915903: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
45283<...>-9132 ( 9105) [000] .... 82315.915911: binder_transaction_received: transaction=1569171
45284<...>-9105 ( 9105) [002] d..2 82315.915945: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45285          <idle>-0     (-----) [002] d..1 82315.915965: cpu_idle: state=0 cpu_id=2
45286<...>-9131 ( 9105) [001] d..3 82315.915994: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
45287<...>-9131 ( 9105) [001] d..4 82315.916015: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
45288          <idle>-0     (-----) [002] .n.1 82315.916021: cpu_idle: state=4294967295 cpu_id=2
45289<...>-9005 ( 8943) [004] .... 82315.916023: binder_transaction: transaction=1569172 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
45290<...>-9005 ( 8943) [004] .... 82315.916028: binder_transaction_alloc_buf: transaction=1569172 data_size=1596 offsets_size=96
45291          <idle>-0     (-----) [002] d..2 82315.916033: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
45292<...>-9005 ( 8943) [004] ...2 82315.916055: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
45293<...>-9005 ( 8943) [004] d..4 82315.916058: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
45294          <idle>-0     (-----) [007] dnh2 82315.916060: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
45295          <idle>-0     (-----) [007] .n.1 82315.916069: cpu_idle: state=4294967295 cpu_id=7
45296<...>-9005 ( 8943) [004] dn.5 82315.916079: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
45297          <idle>-0     (-----) [007] d..2 82315.916082: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
45298<...>-9131 ( 9105) [001] d..2 82315.916121: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45299<...>-9005 ( 8943) [004] d..2 82315.916121: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
45300<...>-8951 ( 8858) [004] .... 82315.916135: binder_transaction_received: transaction=1569172
45301<...>-9132 ( 9105) [000] d..2 82315.916140: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45302          <idle>-0     (-----) [001] d..1 82315.916141: cpu_idle: state=0 cpu_id=1
45303          <idle>-0     (-----) [000] d..1 82315.916155: cpu_idle: state=0 cpu_id=0
45304   system_server-8943  ( 8943) [007] .... 82315.916196: binder_transaction: transaction=1569173 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
45305   system_server-8943  ( 8943) [007] .... 82315.916201: binder_transaction_alloc_buf: transaction=1569173 data_size=96 offsets_size=0
45306   system_server-8943  ( 8943) [007] d..4 82315.916206: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
45307<...>-9105 ( 9105) [002] .... 82315.916222: binder_transaction: transaction=1569174 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
45308<...>-9105 ( 9105) [002] .... 82315.916227: binder_transaction_alloc_buf: transaction=1569174 data_size=80 offsets_size=0
45309          <idle>-0     (-----) [000] dnh2 82315.916231: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
45310<...>-9105 ( 9105) [002] d..4 82315.916234: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
45311          <idle>-0     (-----) [000] .n.1 82315.916237: cpu_idle: state=4294967295 cpu_id=0
45312          <idle>-0     (-----) [000] d..2 82315.916244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
45313<...>-9132 ( 9105) [000] .... 82315.916250: binder_transaction_received: transaction=1569173
45314<...>-9105 ( 9105) [002] d..5 82315.916260: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
45315          <idle>-0     (-----) [001] .n.1 82315.916268: cpu_idle: state=4294967295 cpu_id=1
45316          <idle>-0     (-----) [001] d..2 82315.916280: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
45317<...>-8874 ( 8858) [001] .... 82315.916290: binder_transaction_received: transaction=1569174
45318   system_server-8943  ( 8943) [007] d..2 82315.916293: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
45319<...>-8951 ( 8858) [004] .... 82315.916301: binder_transaction: transaction=1569175 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
45320<...>-8951 ( 8858) [004] .... 82315.916305: binder_transaction_alloc_buf: transaction=1569175 data_size=0 offsets_size=0
45321<...>-8951 ( 8858) [004] d..2 82315.916308: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=007
45322<...>-9005 ( 8943) [007] d..2 82315.916311: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
45323          <idle>-0     (-----) [007] d..1 82315.916325: cpu_idle: state=2 cpu_id=7
45324<...>-8874 ( 8858) [001] d..1 82315.916331: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
45325<...>-8951 ( 8858) [004] d..3 82315.916331: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
45326<...>-8951 ( 8858) [004] .... 82315.916334: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
45327<...>-8874 ( 8858) [001] d..2 82315.916349: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
45328<...>-9105 ( 9105) [002] d..2 82315.916367: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
45329<...>-8951 ( 8858) [004] d..2 82315.916384: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
45330<...>-9132 ( 9105) [000] d..2 82315.916391: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45331<...>-9005 ( 8943) [004] .... 82315.916394: binder_transaction_received: transaction=1569175
45332<...>-8874 ( 8858) [001] d..2 82315.916395: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45333          <idle>-0     (-----) [000] d..1 82315.916404: cpu_idle: state=0 cpu_id=0
45334          <idle>-0     (-----) [001] d..1 82315.916412: cpu_idle: state=0 cpu_id=1
45335  appEventThread-8881  ( 8858) [002] d..2 82315.916423: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
45336 [email protected]   (  619) [003] ...1 82315.916451: tracing_mark_write: E|619
45337<...>-9105 ( 9105) [002] d..3 82315.916530: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
45338<...>-9105 ( 9105) [002] d..4 82315.916560: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
45339          <idle>-0     (-----) [000] .n.1 82315.916566: cpu_idle: state=4294967295 cpu_id=0
45340          <idle>-0     (-----) [000] d..2 82315.916576: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
45341 [email protected]   (  619) [003] ...1 82315.916591: tracing_mark_write: B|619|HWDeviceDRM::Commit::
45342 [email protected]   (  619) [003] ...1 82315.916601: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
45343    RenderThread-9436  ( 9105) [000] d..2 82315.916625: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45344          <idle>-0     (-----) [000] d..1 82315.916632: cpu_idle: state=0 cpu_id=0
45345<...>-9105 ( 9105) [002] .... 82315.916746: binder_transaction: transaction=1569176 dest_node=396473 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
45346<...>-9105 ( 9105) [002] .... 82315.916751: binder_transaction_alloc_buf: transaction=1569176 data_size=152 offsets_size=0
45347<...>-9105 ( 9105) [002] d..4 82315.916758: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
45348<...>-9105 ( 9105) [002] dn.5 82315.916777: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
45349<...>-9105 ( 9105) [002] d..2 82315.916786: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
45350<...>-9062 ( 8943) [002] .... 82315.916796: binder_transaction_received: transaction=1569176
45351 [email protected]   (  619) [003] d..2 82315.917025: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
45352 [email protected]   (  619) [003] d..3 82315.917056: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
45353          <idle>-0     (-----) [001] .n.1 82315.917063: cpu_idle: state=4294967295 cpu_id=1
45354          <idle>-0     (-----) [001] d..2 82315.917073: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
45355<...>-9062 ( 8943) [002] .... 82315.917145: binder_transaction: transaction=1569177 dest_node=0 dest_proc=9105 dest_thread=9105 reply=1 flags=0x0 code=0x0
45356<...>-9062 ( 8943) [002] .... 82315.917151: binder_transaction_alloc_buf: transaction=1569177 data_size=264 offsets_size=0
45357 [email protected]   (  619) [003] ...1 82315.917156: tracing_mark_write: E|619
45358 [email protected]   (  619) [003] ...1 82315.917161: tracing_mark_write: E|619
45359<...>-9062 ( 8943) [002] d..2 82315.917192: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
45360<...>-9105 ( 9105) [002] .... 82315.917201: binder_transaction_received: transaction=1569177
45361 [email protected]   (  619) [003] ...1 82315.917215: tracing_mark_write: E|619
45362 [email protected]   (  619) [003] ...1 82315.917264: tracing_mark_write: E|619
45363 [email protected]   (  619) [003] .... 82315.917280: binder_transaction: transaction=1569178 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
45364 [email protected]   (  619) [003] .... 82315.917284: binder_transaction_alloc_buf: transaction=1569178 data_size=576 offsets_size=112
45365<...>-9005 ( 8943) [004] d..3 82315.917286: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
45366 [email protected]   (  619) [003] d..2 82315.917304: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
45367          <idle>-0     (-----) [000] dnh2 82315.917329: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
45368<...>-9105 ( 9105) [002] d.h3 82315.917333: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45369<...>-9005 ( 8943) [004] d..3 82315.917334: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
45370 [email protected]   (  619) [003] d..3 82315.917336: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
45371          <idle>-0     (-----) [000] .n.1 82315.917341: cpu_idle: state=4294967295 cpu_id=0
45372 [email protected]   (  619) [003] .... 82315.917343: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
45373          <idle>-0     (-----) [000] d..2 82315.917348: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
45374<...>-9005 ( 8943) [004] d..4 82315.917353: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
45375  surfaceflinger-8858  ( 8858) [000] .... 82315.917359: binder_transaction_received: transaction=1569178
45376<...>-9105 ( 9105) [002] d..3 82315.917430: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
45377 [email protected]   (  619) [003] d..2 82315.917441: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
45378<...>-9039 ( 8943) [003] d..2 82315.917518: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
45379          <idle>-0     (-----) [003] d..1 82315.917535: cpu_idle: state=0 cpu_id=3
45380          <idle>-0     (-----) [006] dnh2 82315.917559: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45381          <idle>-0     (-----) [006] .n.1 82315.917568: cpu_idle: state=4294967295 cpu_id=6
45382          <idle>-0     (-----) [006] d..2 82315.917581: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
45383          <idle>-0     (-----) [005] .n.1 82315.917589: cpu_idle: state=4294967295 cpu_id=5
45384          <idle>-0     (-----) [005] d..2 82315.917608: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
45385<...>-9105 ( 9105) [002] d..2 82315.917620: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45386          <idle>-0     (-----) [002] d..1 82315.917641: cpu_idle: state=2 cpu_id=2
45387<...>-5340 ( 788) [006] d..1 82315.917662: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
45388          <idle>-0     (-----) [007] dnh2 82315.917670: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
45389          <idle>-0     (-----) [007] .n.1 82315.917678: cpu_idle: state=4294967295 cpu_id=7
45390 crtc_commit:111-321   (  321) [001] d.h1 82315.917690: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
45391          <idle>-0     (-----) [007] d..2 82315.917690: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
45392<...>-8969 ( 8943) [005] d..2 82315.917744: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
45393    RenderThread-9436  ( 9105) [007] d..2 82315.917775: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
45394          <idle>-0     (-----) [005] d..1 82315.917776: cpu_idle: state=2 cpu_id=5
45395<...>-5340 ( 788) [006] ...1 82315.917784: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
45396          <idle>-0     (-----) [007] d..1 82315.917788: cpu_idle: state=2 cpu_id=7
45397<...>-5340 ( 788) [006] ...1 82315.917788: tracing_mark_write: E|788
45398  surfaceflinger-8858  ( 8858) [000] d..2 82315.917798: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45399          <idle>-0     (-----) [000] d..1 82315.917811: cpu_idle: state=0 cpu_id=0
45400<...>-5340 ( 788) [006] .... 82315.917814: binder_transaction: transaction=1569179 dest_node=1569164 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
45401<...>-5340 ( 788) [006] .... 82315.917818: binder_transaction_alloc_buf: transaction=1569179 data_size=60 offsets_size=0
45402<...>-5340 ( 788) [006] d..4 82315.917823: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=006
45403<...>-9005 ( 8943) [004] .... 82315.917830: binder_transaction: transaction=1569180 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
45404<...>-9005 ( 8943) [004] .... 82315.917835: binder_transaction_alloc_buf: transaction=1569180 data_size=96 offsets_size=0
45405<...>-9005 ( 8943) [004] d..4 82315.917840: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
45406<...>-5340 ( 788) [006] d..5 82315.917843: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=005
45407          <idle>-0     (-----) [000] dnh2 82315.917868: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
45408          <idle>-0     (-----) [000] .n.1 82315.917874: cpu_idle: state=4294967295 cpu_id=0
45409<...>-5340 ( 788) [006] ...1 82315.917874: tracing_mark_write: E|788
45410<...>-5340 ( 788) [006] .... 82315.917881: binder_transaction: transaction=1569181 dest_node=0 dest_proc=27550 dest_thread=27574 reply=1 flags=0x0 code=0x0
45411          <idle>-0     (-----) [000] d..2 82315.917881: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
45412<...>-5340 ( 788) [006] .... 82315.917884: binder_transaction_alloc_buf: transaction=1569181 data_size=8 offsets_size=0
45413<...>-5340 ( 788) [006] d..2 82315.917887: sched_waking: comm=id.nn.benchmark pid=27574 prio=110 target_cpu=006
45414<...>-9132 ( 9105) [000] .... 82315.917890: binder_transaction_received: transaction=1569180
45415<...>-5340 ( 788) [006] d..3 82315.917895: sched_wakeup: comm=id.nn.benchmark pid=27574 prio=110 target_cpu=006
45416<...>-5340 ( 788) [006] .... 82315.917897: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
45417<...>-9005 ( 8943) [004] d..3 82315.917936: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=002
45418<...>-5340 ( 788) [006] d..2 82315.917950: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27574 next_prio=110
45419<...>-9005 ( 8943) [004] d..4 82315.917963: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
45420           <...>-27574 (-----) [006] .... 82315.917964: binder_transaction_received: transaction=1569181
45421           <...>-27574 (-----) [006] d..2 82315.918021: sched_switch: prev_comm=id.nn.benchmark prev_pid=27574 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
45422          <idle>-0     (-----) [006] d..1 82315.918041: cpu_idle: state=2 cpu_id=6
45423<...>-9132 ( 9105) [000] d..2 82315.918078: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45424          <idle>-0     (-----) [000] d..1 82315.918091: cpu_idle: state=0 cpu_id=0
45425<...>-9005 ( 8943) [004] .... 82315.918241: binder_transaction: transaction=1569182 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
45426<...>-9005 ( 8943) [004] .... 82315.918247: binder_transaction_alloc_buf: transaction=1569182 data_size=76 offsets_size=0
45427<...>-9005 ( 8943) [004] ...2 82315.918251: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
45428<...>-9005 ( 8943) [004] d..4 82315.918254: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=004
45429<...>-9005 ( 8943) [004] dn.5 82315.918266: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=004
45430<...>-9005 ( 8943) [004] d..2 82315.918274: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
45431<...>-8951 ( 8858) [004] .... 82315.918285: binder_transaction_received: transaction=1569182
45432          <idle>-0     (-----) [005] .n.1 82315.918323: cpu_idle: state=4294967295 cpu_id=5
45433<...>-8951 ( 8858) [004] .... 82315.918323: binder_transaction: transaction=1569183 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
45434<...>-8951 ( 8858) [004] .... 82315.918325: binder_transaction_alloc_buf: transaction=1569183 data_size=0 offsets_size=0
45435<...>-8951 ( 8858) [004] .... 82315.918328: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
45436          <idle>-0     (-----) [005] d..2 82315.918340: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
45437           <...>-27571 (-----) [005] .... 82315.918354: binder_transaction_received: transaction=1569179
45438<...>-8951 ( 8858) [004] d..2 82315.918359: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
45439          <idle>-0     (-----) [007] .n.1 82315.918364: cpu_idle: state=4294967295 cpu_id=7
45440<...>-9005 ( 8943) [004] .... 82315.918369: binder_transaction_received: transaction=1569183
45441          <idle>-0     (-----) [007] d..2 82315.918381: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
45442           <...>-27571 (-----) [005] ...1 82315.918395: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
45443           <...>-27571 (-----) [005] d..1 82315.918401: sched_waking: comm=id.nn.benchmark pid=27574 prio=110 target_cpu=006
45444           <...>-27571 (-----) [005] d..2 82315.918416: sched_wakeup: comm=id.nn.benchmark pid=27574 prio=110 target_cpu=006
45445           <...>-27571 (-----) [005] ...1 82315.918423: tracing_mark_write: E|27550
45446          <idle>-0     (-----) [000] d.s2 82315.918480: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
45447           <...>-27571 (-----) [005] d..2 82315.918499: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
45448          <idle>-0     (-----) [000] dns3 82315.918500: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
45449          <idle>-0     (-----) [000] dns3 82315.918509: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
45450<...>-8962 ( 8943) [007] d..3 82315.918512: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
45451          <idle>-0     (-----) [005] d..1 82315.918512: cpu_idle: state=2 cpu_id=5
45452          <idle>-0     (-----) [003] ...1 82315.918517: cpu_idle: state=4294967295 cpu_id=3
45453          <idle>-0     (-----) [003] d..1 82315.918522: cpu_idle: state=0 cpu_id=3
45454          <idle>-0     (-----) [000] dns4 82315.918535: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
45455          <idle>-0     (-----) [003] .n.1 82315.918541: cpu_idle: state=4294967295 cpu_id=3
45456          <idle>-0     (-----) [003] d..2 82315.918573: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
45457          <idle>-0     (-----) [000] .n.1 82315.918580: cpu_idle: state=4294967295 cpu_id=0
45458          <idle>-0     (-----) [000] d..2 82315.918589: 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
45459<...>-8 ( 8) [000] d..2 82315.918611: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
45460<...>-8962 ( 8943) [007] d..2 82315.918612: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
45461          <idle>-0     (-----) [006] .n.1 82315.918615: cpu_idle: state=4294967295 cpu_id=6
45462          <idle>-0     (-----) [007] d..1 82315.918629: cpu_idle: state=0 cpu_id=7
45463          <idle>-0     (-----) [006] d..2 82315.918633: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27574 next_prio=110
45464<...>-8 ( 8) [000] d..3 82315.918646: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
45465           <...>-27574 (-----) [006] ...1 82315.918656: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
45466           <...>-27574 (-----) [006] ...1 82315.918663: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
45467<...>-8 ( 8) [000] d..2 82315.918669: 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
45468          <idle>-0     (-----) [000] d..1 82315.918683: cpu_idle: state=0 cpu_id=0
45469           <...>-27574 (-----) [006] ...1 82315.918695: tracing_mark_write: E|27550
45470           <...>-27574 (-----) [006] ...1 82315.918698: tracing_mark_write: E|27550
45471           <...>-27574 (-----) [006] ...1 82315.918702: tracing_mark_write: E|27550
45472  kworker/u16:13-1147  ( 1147) [003] .... 82315.918710: clk_set_rate: l3_cluster0_vote_clk 480000000
45473  kworker/u16:13-1147  ( 1147) [003] .... 82315.918717: clk_set_rate: l3_clk 480000000
45474           <...>-27574 (-----) [006] d..2 82315.918751: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
45475          <idle>-0     (-----) [002] dnh2 82315.918782: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
45476          <idle>-0     (-----) [002] dnh2 82315.918787: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
45477          <idle>-0     (-----) [002] .n.1 82315.918794: cpu_idle: state=4294967295 cpu_id=2
45478          <idle>-0     (-----) [002] d..2 82315.918807: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
45479<...>-46 ( 46) [002] d..2 82315.918822: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
45480<...>-46 ( 46) [002] d..3 82315.918836: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
45481          <idle>-0     (-----) [000] .n.1 82315.918843: cpu_idle: state=4294967295 cpu_id=0
45482<...>-46 ( 46) [002] d..2 82315.918846: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
45483          <idle>-0     (-----) [000] d..2 82315.918852: 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
45484         rcuop/6-61    (   61) [002] d..2 82315.918866: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
45485<...>-8 ( 8) [000] d..2 82315.918888: 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
45486          <idle>-0     (-----) [000] d..1 82315.918896: cpu_idle: state=0 cpu_id=0
45487           <...>-27574 (-----) [006] ...1 82315.918955: tracing_mark_write: E|27550
45488           <...>-27574 (-----) [006] d..1 82315.918970: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
45489   system_server-8943  ( 8943) [002] .... 82315.918990: binder_transaction: transaction=1569184 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
45490           <...>-27574 (-----) [006] d..2 82315.918991: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
45491   system_server-8943  ( 8943) [002] .... 82315.918995: binder_transaction_alloc_buf: transaction=1569184 data_size=96 offsets_size=0
45492   system_server-8943  ( 8943) [002] d..4 82315.919000: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
45493  kworker/u16:13-1147  ( 1147) [003] d..2 82315.919011: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
45494   system_server-8943  ( 8943) [002] d..5 82315.919016: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
45495          <idle>-0     (-----) [003] d..1 82315.919020: cpu_idle: state=0 cpu_id=3
45496          <idle>-0     (-----) [000] .n.1 82315.919020: cpu_idle: state=4294967295 cpu_id=0
45497          <idle>-0     (-----) [000] d..2 82315.919029: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
45498 crtc_commit:111-321   (  321) [001] d.s1 82315.919032: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
45499<...>-9132 ( 9105) [000] .... 82315.919035: binder_transaction_received: transaction=1569184
45500           <...>-27574 (-----) [006] d..4 82315.919044: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=005
45501 crtc_commit:111-321   (  321) [001] d.s2 82315.919047: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
45502           <...>-27574 (-----) [006] d..5 82315.919062: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=007
45503          <idle>-0     (-----) [007] .n.1 82315.919070: cpu_idle: state=4294967295 cpu_id=7
45504          <idle>-0     (-----) [007] d..2 82315.919080: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
45505   system_server-8943  ( 8943) [002] d..2 82315.919102: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
45506 crtc_commit:111-321   (  321) [001] d..3 82315.919121: sched_pi_setprio: comm=kworker/u16:13 pid=1147 oldprio=120 newprio=83
45507 crtc_commit:111-321   (  321) [001] d..2 82315.919140: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
45508 neuralnetworks@-13088 (  788) [002] d..2 82315.919147: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45509           <...>-27571 (-----) [007] d..2 82315.919152: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
45510     ksoftirqd/1-18    (   18) [001] d.s2 82315.919156: sched_waking: comm=kworker/u16:13 pid=1147 prio=83 target_cpu=003
45511          <idle>-0     (-----) [002] d..1 82315.919163: cpu_idle: state=0 cpu_id=2
45512          <idle>-0     (-----) [007] d..1 82315.919166: cpu_idle: state=0 cpu_id=7
45513<...>-9005 ( 8943) [004] d..3 82315.919169: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=003
45514<...>-9132 ( 9105) [000] d..2 82315.919171: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45515     ksoftirqd/1-18    (   18) [001] d.s3 82315.919173: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=83 target_cpu=003
45516           <...>-27574 (-----) [006] d..2 82315.919173: sched_switch: prev_comm=id.nn.benchmark prev_pid=27574 prev_prio=110 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
45517          <idle>-0     (-----) [003] .n.1 82315.919178: cpu_idle: state=4294967295 cpu_id=3
45518          <idle>-0     (-----) [005] .n.1 82315.919179: cpu_idle: state=4294967295 cpu_id=5
45519          <idle>-0     (-----) [000] d..1 82315.919186: cpu_idle: state=0 cpu_id=0
45520          <idle>-0     (-----) [003] d..2 82315.919186: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=83
45521          <idle>-0     (-----) [005] d..2 82315.919196: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
45522  kworker/u16:13-1147  ( 1147) [003] d..1 82315.919197: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
45523     ksoftirqd/1-18    (   18) [001] d..2 82315.919199: 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
45524          <idle>-0     (-----) [006] d..1 82315.919199: cpu_idle: state=0 cpu_id=6
45525          <idle>-0     (-----) [000] dnh2 82315.919211: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
45526          <idle>-0     (-----) [001] dn.1 82315.919213: cpu_idle: state=0 cpu_id=1
45527          <idle>-0     (-----) [000] .n.1 82315.919216: cpu_idle: state=4294967295 cpu_id=0
45528  kworker/u16:13-1147  ( 1147) [003] d..2 82315.919217: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
45529  kworker/u16:13-1147  ( 1147) [003] d..2 82315.919220: sched_pi_setprio: comm=kworker/u16:13 pid=1147 oldprio=83 newprio=120
45530          <idle>-0     (-----) [001] .n.1 82315.919221: cpu_idle: state=4294967295 cpu_id=1
45531          <idle>-0     (-----) [000] d..2 82315.919226: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
45532          <idle>-0     (-----) [001] d..2 82315.919231: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
45533           <...>-27550 (-----) [005] ...1 82315.919257: tracing_mark_write: E|27550
45534<...>-9005 ( 8943) [004] d..1 82315.919264: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
45535           <...>-27550 (-----) [005] ...1 82315.919264: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
45536           <...>-27550 (-----) [005] ...1 82315.919272: tracing_mark_write: E|27550
45537           <...>-27550 (-----) [005] ...1 82315.919276: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
45538           <...>-27550 (-----) [005] ...1 82315.919281: tracing_mark_write: E|27550
45539           <...>-27550 (-----) [005] ...1 82315.919288: tracing_mark_write: E|27550
45540          <idle>-0     (-----) [002] dnh2 82315.919294: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=002
45541<...>-9039 ( 8943) [000] d..2 82315.919297: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45542          <idle>-0     (-----) [002] .n.1 82315.919300: cpu_idle: state=4294967295 cpu_id=2
45543          <idle>-0     (-----) [000] d..1 82315.919309: cpu_idle: state=0 cpu_id=0
45544          <idle>-0     (-----) [002] d..2 82315.919309: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
45545<...>-9005 ( 8943) [004] d..2 82315.919341: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45546          <idle>-0     (-----) [004] d..1 82315.919376: cpu_idle: state=2 cpu_id=4
45547<...>-8961 ( 8943) [002] d..1 82315.919400: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
45548           <...>-27550 (-----) [005] ...1 82315.919406: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
45549           <...>-27550 (-----) [005] ...1 82315.919478: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
45550           <...>-27550 (-----) [005] ...1 82315.919484: tracing_mark_write: E|27550
45551           <...>-27550 (-----) [005] ...1 82315.919488: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
45552           <...>-27550 (-----) [005] ...1 82315.919495: tracing_mark_write: E|27550
45553           <...>-27550 (-----) [005] ...1 82315.919499: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
45554           <...>-27550 (-----) [005] ...1 82315.919503: tracing_mark_write: E|27550
45555           <...>-27550 (-----) [005] ...1 82315.919507: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
45556          <idle>-0     (-----) [006] .n.1 82315.919633: cpu_idle: state=4294967295 cpu_id=6
45557           <...>-27550 (-----) [005] ...1 82315.919636: tracing_mark_write: E|27550
45558           <...>-27550 (-----) [005] ...1 82315.919641: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
45559          <idle>-0     (-----) [006] d..2 82315.919642: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27575 next_prio=110
45560           <...>-27550 (-----) [005] d..2 82315.919662: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
45561          <idle>-0     (-----) [005] d..1 82315.919682: cpu_idle: state=0 cpu_id=5
45562           <...>-27575 (-----) [006] ...1 82315.919711: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
45563           <...>-27575 (-----) [006] ...1 82315.919726: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
45564           <...>-27575 (-----) [006] ...1 82315.919730: tracing_mark_write: E|27550
45565          <idle>-0     (-----) [007] ...1 82315.919733: cpu_idle: state=4294967295 cpu_id=7
45566          <idle>-0     (-----) [007] d..1 82315.919737: cpu_idle: state=2 cpu_id=7
45567          <idle>-0     (-----) [004] dnh2 82315.919761: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
45568           <...>-27575 (-----) [006] .... 82315.919763: binder_transaction: transaction=1569185 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
45569          <idle>-0     (-----) [004] .n.1 82315.919767: cpu_idle: state=4294967295 cpu_id=4
45570           <...>-27575 (-----) [006] .... 82315.919772: binder_transaction_alloc_buf: transaction=1569185 data_size=48 offsets_size=0
45571 crtc_commit:111-321   (  321) [001] d..2 82315.919776: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
45572          <idle>-0     (-----) [004] d..2 82315.919779: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
45573           <...>-27575 (-----) [006] ...2 82315.919780: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
45574           <...>-27575 (-----) [006] d..4 82315.919783: sched_waking: [email protected] pid=770 prio=110 target_cpu=006
45575  kworker/u16:13-1147  ( 1147) [003] .... 82315.919789: clk_set_rate: l3_cluster1_vote_clk 576000000
45576          <idle>-0     (-----) [001] d..1 82315.919789: cpu_idle: state=0 cpu_id=1
45577  kworker/u16:13-1147  ( 1147) [003] .... 82315.919793: clk_set_rate: l3_clk 576000000
45578           <...>-27575 (-----) [006] dn.5 82315.919793: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=006
45579           <...>-27575 (-----) [006] d..2 82315.919800: sched_switch: prev_comm=id.nn.benchmark prev_pid=27575 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
45580<...>-8961 ( 8943) [002] d..1 82315.919806: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
45581<...>-770 ( 770) [006] .... 82315.919813: binder_transaction_received: transaction=1569185
45582<...>-8969 ( 8943) [004] d..2 82315.919818: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45583  kworker/u16:13-1147  ( 1147) [003] d..2 82315.919830: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
45584          <idle>-0     (-----) [004] d..1 82315.919830: cpu_idle: state=0 cpu_id=4
45585          <idle>-0     (-----) [003] d..1 82315.919838: cpu_idle: state=0 cpu_id=3
45586          <idle>-0     (-----) [004] dnh2 82315.919840: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
45587          <idle>-0     (-----) [004] .n.1 82315.919844: cpu_idle: state=4294967295 cpu_id=4
45588<...>-770 ( 770) [006] ...1 82315.919848: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
45589          <idle>-0     (-----) [004] d..2 82315.919850: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
45590<...>-8961 ( 8943) [002] d..2 82315.919888: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45591          <idle>-0     (-----) [002] d..1 82315.919904: cpu_idle: state=0 cpu_id=2
45592<...>-8969 ( 8943) [004] d..1 82315.919920: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=002
45593          <idle>-0     (-----) [002] dnh2 82315.919943: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=002
45594          <idle>-0     (-----) [002] .n.1 82315.919949: cpu_idle: state=4294967295 cpu_id=2
45595          <idle>-0     (-----) [002] d..2 82315.919958: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
45596<...>-770 ( 770) [006] d..2 82315.919973: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
45597          <idle>-0     (-----) [000] dnh2 82315.920015: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
45598<...>-8969 ( 8943) [004] d..2 82315.920020: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45599          <idle>-0     (-----) [000] .n.1 82315.920020: cpu_idle: state=4294967295 cpu_id=0
45600          <idle>-0     (-----) [000] d..2 82315.920029: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
45601          <idle>-0     (-----) [004] d..1 82315.920033: cpu_idle: state=0 cpu_id=4
45602<...>-770 ( 770) [006] ...1 82315.920039: tracing_mark_write: E|770
45603<...>-770 ( 770) [006] .... 82315.920048: binder_transaction: transaction=1569186 dest_node=0 dest_proc=27550 dest_thread=27575 reply=1 flags=0x0 code=0x0
45604<...>-770 ( 770) [006] .... 82315.920051: binder_transaction_alloc_buf: transaction=1569186 data_size=168 offsets_size=32
45605<...>-770 ( 770) [006] .... 82315.920059: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
45606<...>-770 ( 770) [006] d..2 82315.920098: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27575 next_prio=110
45607           <...>-27575 (-----) [006] .... 82315.920108: binder_transaction_received: transaction=1569186
45608<...>-581 ( 571) [000] d..2 82315.920140: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45609          <idle>-0     (-----) [000] d..1 82315.920151: cpu_idle: state=0 cpu_id=0
45610           <...>-27575 (-----) [006] ...1 82315.920196: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
45611           <...>-27575 (-----) [006] ...1 82315.920202: tracing_mark_write: E|27550
45612           <...>-27575 (-----) [006] .... 82315.920216: binder_transaction: transaction=1569187 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
45613           <...>-27575 (-----) [006] .... 82315.920219: binder_transaction_alloc_buf: transaction=1569187 data_size=48 offsets_size=0
45614           <...>-27575 (-----) [006] ...2 82315.920221: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
45615           <...>-27575 (-----) [006] d..4 82315.920224: sched_waking: [email protected] pid=770 prio=110 target_cpu=006
45616<...>-8961 ( 8943) [002] .... 82315.920224: binder_transaction: transaction=1569188 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
45617<...>-8961 ( 8943) [002] .... 82315.920230: binder_transaction_alloc_buf: transaction=1569188 data_size=380 offsets_size=16
45618           <...>-27575 (-----) [006] dn.5 82315.920234: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=006
45619           <...>-27575 (-----) [006] d..2 82315.920240: sched_switch: prev_comm=id.nn.benchmark prev_pid=27575 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
45620<...>-8961 ( 8943) [002] ...2 82315.920245: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
45621<...>-770 ( 770) [006] .... 82315.920248: binder_transaction_received: transaction=1569187
45622<...>-8961 ( 8943) [002] d..4 82315.920248: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=004
45623<...>-770 ( 770) [006] ...1 82315.920266: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
45624<...>-8961 ( 8943) [002] d..5 82315.920271: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=002
45625<...>-8961 ( 8943) [002] d..2 82315.920320: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=116 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
45626<...>-770 ( 770) [006] d..2 82315.920325: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
45627<...>-8951 ( 8858) [002] .... 82315.920329: binder_transaction_received: transaction=1569188
45628          <idle>-0     (-----) [000] dnh2 82315.920346: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
45629          <idle>-0     (-----) [000] .n.1 82315.920350: cpu_idle: state=4294967295 cpu_id=0
45630<...>-770 ( 770) [006] ...1 82315.920357: tracing_mark_write: E|770
45631          <idle>-0     (-----) [000] d..2 82315.920359: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
45632<...>-770 ( 770) [006] .... 82315.920364: binder_transaction: transaction=1569189 dest_node=0 dest_proc=27550 dest_thread=27575 reply=1 flags=0x0 code=0x0
45633<...>-770 ( 770) [006] .... 82315.920367: binder_transaction_alloc_buf: transaction=1569189 data_size=168 offsets_size=32
45634<...>-770 ( 770) [006] .... 82315.920373: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
45635<...>-8951 ( 8858) [002] .... 82315.920402: binder_transaction: transaction=1569190 dest_node=0 dest_proc=8943 dest_thread=8961 reply=1 flags=0x0 code=0x0
45636<...>-581 ( 571) [000] d..2 82315.920406: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45637<...>-8951 ( 8858) [002] .... 82315.920406: binder_transaction_alloc_buf: transaction=1569190 data_size=0 offsets_size=0
45638<...>-770 ( 770) [006] d..2 82315.920408: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27575 next_prio=110
45639<...>-8951 ( 8858) [002] d..2 82315.920409: sched_waking: comm=ActivityManager pid=8961 prio=116 target_cpu=002
45640          <idle>-0     (-----) [000] d..1 82315.920415: cpu_idle: state=0 cpu_id=0
45641           <...>-27575 (-----) [006] .... 82315.920419: binder_transaction_received: transaction=1569189
45642<...>-8951 ( 8858) [002] d..3 82315.920420: sched_wakeup: comm=ActivityManager pid=8961 prio=116 target_cpu=002
45643<...>-8951 ( 8858) [002] .... 82315.920424: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
45644<...>-8951 ( 8858) [002] d..2 82315.920435: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=ActivityManager next_pid=8961 next_prio=116
45645<...>-8961 ( 8943) [002] .... 82315.920442: binder_transaction_received: transaction=1569190
45646<...>-8961 ( 8943) [002] d..2 82315.920640: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
45647<...>-8961 ( 8943) [002] d..3 82315.920656: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
45648          <idle>-0     (-----) [000] .n.1 82315.920660: cpu_idle: state=4294967295 cpu_id=0
45649          <idle>-0     (-----) [000] d..2 82315.920669: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
45650          <idle>-0     (-----) [005] ...1 82315.920696: cpu_idle: state=4294967295 cpu_id=5
45651          <idle>-0     (-----) [005] d..1 82315.920700: cpu_idle: state=2 cpu_id=5
45652           <...>-27575 (-----) [006] ...1 82315.920707: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
45653           <...>-27575 (-----) [006] ...1 82315.920717: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
45654           <...>-27575 (-----) [006] ...1 82315.920721: tracing_mark_write: E|27550
45655<...>-581 ( 571) [000] d..2 82315.920735: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45656          <idle>-0     (-----) [000] d..1 82315.920745: cpu_idle: state=0 cpu_id=0
45657           <...>-27575 (-----) [006] .... 82315.920792: binder_transaction: transaction=1569191 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
45658           <...>-27575 (-----) [006] .... 82315.920796: binder_transaction_alloc_buf: transaction=1569191 data_size=556 offsets_size=104
45659<...>-8961 ( 8943) [002] .... 82315.920807: binder_transaction: transaction=1569192 dest_node=418757 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x33
45660           <...>-27575 (-----) [006] ...2 82315.920811: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
45661<...>-8961 ( 8943) [002] .... 82315.920813: binder_transaction_alloc_buf: transaction=1569192 data_size=244 offsets_size=16
45662           <...>-27575 (-----) [006] d..4 82315.920814: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45663           <...>-27575 (-----) [006] dn.5 82315.920826: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45664<...>-8961 ( 8943) [002] d..4 82315.920830: sched_waking: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=003
45665           <...>-27575 (-----) [006] d..2 82315.920833: sched_switch: prev_comm=id.nn.benchmark prev_pid=27575 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
45666<...>-5340 ( 788) [006] .... 82315.920844: binder_transaction_received: transaction=1569191
45667<...>-8961 ( 8943) [002] d..5 82315.920855: sched_wakeup: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=000
45668          <idle>-0     (-----) [000] .n.1 82315.920862: cpu_idle: state=4294967295 cpu_id=0
45669          <idle>-0     (-----) [000] d..2 82315.920871: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_3 next_pid=10531 next_prio=120
45670  Binder:10023_3-10531 (10023) [000] .... 82315.920881: binder_transaction_received: transaction=1569192
45671<...>-5340 ( 788) [006] ...1 82315.920906: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
45672<...>-5340 ( 788) [006] d..2 82315.920967: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
45673          <idle>-0     (-----) [001] ...1 82315.920999: cpu_idle: state=4294967295 cpu_id=1
45674          <idle>-0     (-----) [001] dnh4 82315.920999: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
45675<...>-5340 ( 788) [006] d..2 82315.921009: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27575 next_prio=110
45676          <idle>-0     (-----) [001] d..2 82315.921021: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
45677           <...>-27575 (-----) [006] d..2 82315.921031: sched_switch: prev_comm=id.nn.benchmark prev_pid=27575 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
45678          <idle>-0     (-----) [004] ...1 82315.921047: cpu_idle: state=4294967295 cpu_id=4
45679          <idle>-0     (-----) [006] d..1 82315.921049: cpu_idle: state=0 cpu_id=6
45680          <idle>-0     (-----) [004] d..1 82315.921050: cpu_idle: state=2 cpu_id=4
45681<...>-8961 ( 8943) [002] d.h3 82315.921073: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
45682<...>-87 ( 87) [001] d..2 82315.921074: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
45683<...>-8961 ( 8943) [002] d.h4 82315.921114: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
45684<...>-8951 ( 8858) [001] d..2 82315.921125: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
45685<...>-8961 ( 8943) [002] d.h3 82315.921152: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45686          <idle>-0     (-----) [006] dnh2 82315.921174: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45687          <idle>-0     (-----) [006] .n.1 82315.921180: cpu_idle: state=4294967295 cpu_id=6
45688          <idle>-0     (-----) [006] d..2 82315.921188: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
45689  Binder:10023_3-10531 (10023) [000] d..2 82315.921195: sched_switch: prev_comm=Binder:10023_3 prev_pid=10531 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45690<...>-86 ( 86) [001] d..2 82315.921197: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45691          <idle>-0     (-----) [001] d..1 82315.921209: cpu_idle: state=0 cpu_id=1
45692          <idle>-0     (-----) [000] d..1 82315.921210: cpu_idle: state=0 cpu_id=0
45693<...>-5340 ( 788) [006] d..1 82315.921252: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
45694<...>-8961 ( 8943) [002] dnh1 82315.921279: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
45695<...>-8961 ( 8943) [002] d..2 82315.921290: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
45696 neuralnetworks@-13088 (  788) [002] d..2 82315.921331: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
45697<...>-5340 ( 788) [006] d..2 82315.921407: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
45698          <idle>-0     (-----) [001] dnh2 82315.921426: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
45699          <idle>-0     (-----) [001] .n.1 82315.921431: cpu_idle: state=4294967295 cpu_id=1
45700<...>-5340 ( 788) [006] d..2 82315.921432: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
45701          <idle>-0     (-----) [001] d..2 82315.921440: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
45702          <idle>-0     (-----) [006] d..1 82315.921445: cpu_idle: state=2 cpu_id=6
45703<...>-87 ( 87) [001] d..2 82315.921469: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45704<...>-8961 ( 8943) [002] d.h3 82315.921475: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
45705          <idle>-0     (-----) [001] d..1 82315.921478: cpu_idle: state=0 cpu_id=1
45706<...>-8961 ( 8943) [002] d.h4 82315.921491: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
45707          <idle>-0     (-----) [001] .n.1 82315.921497: cpu_idle: state=4294967295 cpu_id=1
45708          <idle>-0     (-----) [001] d..2 82315.921506: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
45709<...>-8961 ( 8943) [002] .... 82315.921511: binder_transaction: transaction=1569195 dest_node=418757 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x27
45710<...>-8961 ( 8943) [002] .... 82315.921515: binder_transaction_alloc_buf: transaction=1569195 data_size=76 offsets_size=0
45711<...>-8961 ( 8943) [002] d..4 82315.921520: sched_waking: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=000
45712<...>-86 ( 86) [001] d..2 82315.921531: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45713<...>-8961 ( 8943) [002] d..5 82315.921533: sched_wakeup: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=000
45714          <idle>-0     (-----) [000] .n.1 82315.921539: cpu_idle: state=4294967295 cpu_id=0
45715          <idle>-0     (-----) [001] d..1 82315.921539: cpu_idle: state=0 cpu_id=1
45716          <idle>-0     (-----) [000] d..2 82315.921550: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_3 next_pid=10531 next_prio=120
45717  Binder:10023_3-10531 (10023) [000] .... 82315.921555: binder_transaction_received: transaction=1569195
45718<...>-8961 ( 8943) [002] d..3 82315.921659: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
45719  Binder:10023_3-10531 (10023) [000] d..2 82315.921669: sched_switch: prev_comm=Binder:10023_3 prev_pid=10531 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45720          <idle>-0     (-----) [000] d..1 82315.921681: cpu_idle: state=0 cpu_id=0
45721<...>-8961 ( 8943) [002] d..2 82315.921734: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=002
45722<...>-8961 ( 8943) [002] d..3 82315.921750: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=002
45723          <idle>-0     (-----) [003] d.s2 82315.921802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
45724          <idle>-0     (-----) [003] dns3 82315.921819: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
45725          <idle>-0     (-----) [003] .n.1 82315.921828: cpu_idle: state=4294967295 cpu_id=3
45726          <idle>-0     (-----) [003] d..2 82315.921835: 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
45727     rcu_preempt-7     (    7) [003] d..2 82315.921846: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
45728     rcu_preempt-7     (    7) [003] d..3 82315.921861: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
45729     rcu_preempt-7     (    7) [003] d..2 82315.921874: 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
45730         rcuop/2-29    (   29) [003] d..2 82315.921927: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
45731<...>-8961 ( 8943) [002] d..2 82315.921946: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45732          <idle>-0     (-----) [002] d..1 82315.921963: cpu_idle: state=0 cpu_id=2
45733   statsd.writer-1044  (  901) [003] d..2 82315.922109: 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
45734          <idle>-0     (-----) [003] d..1 82315.922124: cpu_idle: state=0 cpu_id=3
45735          <idle>-0     (-----) [006] dnh2 82315.922420: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
45736          <idle>-0     (-----) [006] .n.1 82315.922427: cpu_idle: state=4294967295 cpu_id=6
45737          <idle>-0     (-----) [006] d..2 82315.922439: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
45738<...>-8962 ( 8943) [006] d..3 82315.922533: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=006
45739          <idle>-0     (-----) [000] dnh2 82315.922596: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=000
45740          <idle>-0     (-----) [000] .n.1 82315.922602: cpu_idle: state=4294967295 cpu_id=0
45741          <idle>-0     (-----) [000] d..2 82315.922612: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=8967 next_prio=120
45742<...>-8962 ( 8943) [006] .... 82315.922658: binder_transaction: transaction=1569196 dest_node=402011 dest_proc=9083 dest_thread=0 reply=0 flags=0x11 code=0x4
45743<...>-8962 ( 8943) [006] .... 82315.922663: binder_transaction_alloc_buf: transaction=1569196 data_size=76 offsets_size=0
45744<...>-8962 ( 8943) [006] d..4 82315.922668: sched_waking: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=003
45745          <idle>-0     (-----) [001] dnh2 82315.922705: sched_wakeup: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=001
45746<...>-8967 ( 8943) [000] d..2 82315.922705: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45747          <idle>-0     (-----) [001] .n.1 82315.922710: cpu_idle: state=4294967295 cpu_id=1
45748          <idle>-0     (-----) [000] d..1 82315.922714: cpu_idle: state=0 cpu_id=0
45749          <idle>-0     (-----) [001] d..2 82315.922719: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9083_6 next_pid=9638 next_prio=120
45750<...>-9638 ( 9083) [001] .... 82315.922730: binder_transaction_received: transaction=1569196
45751<...>-8962 ( 8943) [006] d..3 82315.922730: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
45752          <idle>-0     (-----) [000] dnh2 82315.922783: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=000
45753          <idle>-0     (-----) [000] .n.1 82315.922788: cpu_idle: state=4294967295 cpu_id=0
45754          <idle>-0     (-----) [000] d..2 82315.922795: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
45755<...>-8962 ( 8943) [006] d..3 82315.922801: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=000
45756<...>-9638 ( 9083) [001] d.h1 82315.922836: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=001
45757<...>-8962 ( 8943) [006] d..3 82315.922845: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
45758          <idle>-0     (-----) [002] dnh2 82315.922869: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
45759          <idle>-0     (-----) [002] .n.1 82315.922875: cpu_idle: state=4294967295 cpu_id=2
45760          <idle>-0     (-----) [002] d..2 82315.922884: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
45761<...>-9047 ( 8943) [000] d..2 82315.922925: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45762          <idle>-0     (-----) [000] d..1 82315.922934: cpu_idle: state=0 cpu_id=0
45763<...>-8962 ( 8943) [006] d..2 82315.922939: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
45764          <idle>-0     (-----) [006] d..1 82315.922954: cpu_idle: state=2 cpu_id=6
45765<...>-9638 ( 9083) [001] d..2 82315.923004: sched_switch: prev_comm=Binder:9083_6 prev_pid=9638 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=8960 next_prio=120
45766   system_server-8943  ( 8943) [002] d..2 82315.923014: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45767          <idle>-0     (-----) [002] d..1 82315.923027: cpu_idle: state=0 cpu_id=2
45768          <idle>-0     (-----) [002] d.h4 82315.923083: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45769          <idle>-0     (-----) [002] ...1 82315.923117: cpu_idle: state=4294967295 cpu_id=2
45770          <idle>-0     (-----) [002] d..1 82315.923121: cpu_idle: state=0 cpu_id=2
45771          <idle>-0     (-----) [006] dnh2 82315.923881: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45772          <idle>-0     (-----) [006] .n.1 82315.923888: cpu_idle: state=4294967295 cpu_id=6
45773          <idle>-0     (-----) [006] d..2 82315.923899: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
45774<...>-5340 ( 788) [006] d..1 82315.923973: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
45775          <idle>-0     (-----) [000] dnh2 82315.924014: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
45776          <idle>-0     (-----) [000] .n.1 82315.924020: cpu_idle: state=4294967295 cpu_id=0
45777          <idle>-0     (-----) [000] d..2 82315.924028: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
45778 neuralnetworks@-13088 (  788) [000] d..2 82315.924086: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45779          <idle>-0     (-----) [000] d..1 82315.924094: cpu_idle: state=0 cpu_id=0
45780<...>-5340 ( 788) [006] ...1 82315.924094: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
45781<...>-5340 ( 788) [006] ...1 82315.924098: tracing_mark_write: E|788
45782<...>-5340 ( 788) [006] .... 82315.924121: binder_transaction: transaction=1569197 dest_node=1569193 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
45783<...>-5340 ( 788) [006] .... 82315.924124: binder_transaction_alloc_buf: transaction=1569197 data_size=60 offsets_size=0
45784<...>-5340 ( 788) [006] d..4 82315.924128: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=007
45785<...>-5340 ( 788) [006] d..5 82315.924146: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
45786<...>-5340 ( 788) [006] ...1 82315.924173: tracing_mark_write: E|788
45787<...>-5340 ( 788) [006] .... 82315.924180: binder_transaction: transaction=1569198 dest_node=0 dest_proc=27550 dest_thread=27575 reply=1 flags=0x0 code=0x0
45788<...>-5340 ( 788) [006] .... 82315.924183: binder_transaction_alloc_buf: transaction=1569198 data_size=8 offsets_size=0
45789<...>-5340 ( 788) [006] d..2 82315.924185: sched_waking: comm=id.nn.benchmark pid=27575 prio=110 target_cpu=006
45790<...>-5340 ( 788) [006] d..3 82315.924192: sched_wakeup: comm=id.nn.benchmark pid=27575 prio=110 target_cpu=006
45791<...>-5340 ( 788) [006] .... 82315.924194: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
45792<...>-5340 ( 788) [006] d..2 82315.924241: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27575 next_prio=110
45793           <...>-27575 (-----) [006] .... 82315.924253: binder_transaction_received: transaction=1569198
45794           <...>-27575 (-----) [006] d..2 82315.924300: sched_switch: prev_comm=id.nn.benchmark prev_pid=27575 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
45795          <idle>-0     (-----) [006] d..1 82315.924318: cpu_idle: state=0 cpu_id=6
45796          <idle>-0     (-----) [004] .n.1 82315.924334: cpu_idle: state=4294967295 cpu_id=4
45797          <idle>-0     (-----) [004] d..2 82315.924351: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
45798           <...>-27571 (-----) [004] .... 82315.924365: binder_transaction_received: transaction=1569197
45799           <...>-27571 (-----) [004] ...1 82315.924403: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
45800           <...>-27571 (-----) [004] d..1 82315.924410: sched_waking: comm=id.nn.benchmark pid=27575 prio=110 target_cpu=006
45801           <...>-27571 (-----) [004] d..2 82315.924425: sched_wakeup: comm=id.nn.benchmark pid=27575 prio=110 target_cpu=006
45802           <...>-27571 (-----) [004] ...1 82315.924431: tracing_mark_write: E|27550
45803          <idle>-0     (-----) [006] .n.1 82315.924432: cpu_idle: state=4294967295 cpu_id=6
45804          <idle>-0     (-----) [006] d..2 82315.924441: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27575 next_prio=110
45805           <...>-27575 (-----) [006] ...1 82315.924456: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
45806           <...>-27575 (-----) [006] ...1 82315.924462: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
45807           <...>-27571 (-----) [004] d..2 82315.924466: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45808          <idle>-0     (-----) [004] d..1 82315.924480: cpu_idle: state=0 cpu_id=4
45809           <...>-27575 (-----) [006] ...1 82315.924490: tracing_mark_write: E|27550
45810           <...>-27575 (-----) [006] ...1 82315.924494: tracing_mark_write: E|27550
45811           <...>-27575 (-----) [006] ...1 82315.924498: tracing_mark_write: E|27550
45812           <...>-27575 (-----) [006] ...1 82315.924697: tracing_mark_write: E|27550
45813           <...>-27575 (-----) [006] d..1 82315.924710: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
45814           <...>-27575 (-----) [006] d..2 82315.924730: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
45815          <idle>-0     (-----) [004] .n.1 82315.924736: cpu_idle: state=4294967295 cpu_id=4
45816          <idle>-0     (-----) [004] d..2 82315.924745: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
45817           <...>-27550 (-----) [004] d..2 82315.924764: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45818          <idle>-0     (-----) [004] d..1 82315.924771: cpu_idle: state=2 cpu_id=4
45819           <...>-27575 (-----) [006] d..4 82315.924782: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
45820           <...>-27575 (-----) [006] d..5 82315.924791: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
45821           <...>-27575 (-----) [006] d..1 82315.924850: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
45822<...>-8960 ( 8943) [001] d..2 82315.924853: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45823           <...>-27575 (-----) [006] d..2 82315.924864: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
45824          <idle>-0     (-----) [001] d..1 82315.924868: cpu_idle: state=0 cpu_id=1
45825           <...>-27575 (-----) [006] d..2 82315.924906: sched_switch: prev_comm=id.nn.benchmark prev_pid=27575 prev_prio=110 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
45826          <idle>-0     (-----) [006] d..1 82315.924925: cpu_idle: state=2 cpu_id=6
45827          <idle>-0     (-----) [000] d.s2 82315.925138: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
45828          <idle>-0     (-----) [000] dns3 82315.925153: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
45829          <idle>-0     (-----) [000] .n.1 82315.925167: cpu_idle: state=4294967295 cpu_id=0
45830          <idle>-0     (-----) [000] d..2 82315.925175: 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
45831<...>-8 ( 8) [000] d..2 82315.925187: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
45832<...>-8 ( 8) [000] d..3 82315.925216: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
45833          <idle>-0     (-----) [001] .n.1 82315.925223: cpu_idle: state=4294967295 cpu_id=1
45834          <idle>-0     (-----) [001] d..2 82315.925237: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
45835<...>-8 ( 8) [000] d..2 82315.925238: 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
45836<...>-46 ( 46) [001] d..2 82315.925248: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
45837          <idle>-0     (-----) [005] .n.1 82315.925249: cpu_idle: state=4294967295 cpu_id=5
45838          <idle>-0     (-----) [000] d..1 82315.925250: cpu_idle: state=0 cpu_id=0
45839<...>-46 ( 46) [001] d..3 82315.925263: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
45840          <idle>-0     (-----) [005] d..2 82315.925267: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
45841          <idle>-0     (-----) [000] .n.1 82315.925269: cpu_idle: state=4294967295 cpu_id=0
45842          <idle>-0     (-----) [000] d..2 82315.925278: 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
45843          <idle>-0     (-----) [004] .n.1 82315.925281: cpu_idle: state=4294967295 cpu_id=4
45844<...>-46 ( 46) [001] d..2 82315.925281: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45845          <idle>-0     (-----) [001] d..1 82315.925290: cpu_idle: state=0 cpu_id=1
45846<...>-8 ( 8) [000] d..2 82315.925299: 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
45847          <idle>-0     (-----) [004] d..2 82315.925301: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
45848          <idle>-0     (-----) [000] d..1 82315.925307: cpu_idle: state=0 cpu_id=0
45849           <...>-27550 (-----) [005] ...1 82315.925314: tracing_mark_write: E|27550
45850           <...>-27550 (-----) [005] ...1 82315.925320: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
45851           <...>-27550 (-----) [005] ...1 82315.925328: tracing_mark_write: E|27550
45852           <...>-27550 (-----) [005] ...1 82315.925333: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
45853           <...>-27550 (-----) [005] ...1 82315.925338: tracing_mark_write: E|27550
45854           <...>-27550 (-----) [005] ...1 82315.925345: tracing_mark_write: E|27550
45855           <...>-27571 (-----) [004] d..2 82315.925363: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45856          <idle>-0     (-----) [004] d..1 82315.925374: cpu_idle: state=2 cpu_id=4
45857           <...>-27550 (-----) [005] ...1 82315.925459: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
45858           <...>-27550 (-----) [005] ...1 82315.925519: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
45859           <...>-27550 (-----) [005] ...1 82315.925526: tracing_mark_write: E|27550
45860           <...>-27550 (-----) [005] ...1 82315.925530: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
45861           <...>-27550 (-----) [005] ...1 82315.925536: tracing_mark_write: E|27550
45862           <...>-27550 (-----) [005] ...1 82315.925540: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
45863           <...>-27550 (-----) [005] ...1 82315.925544: tracing_mark_write: E|27550
45864           <...>-27550 (-----) [005] ...1 82315.925548: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
45865           <...>-27550 (-----) [005] ...1 82315.925672: tracing_mark_write: E|27550
45866           <...>-27550 (-----) [005] ...1 82315.925676: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
45867           <...>-27550 (-----) [005] d..2 82315.925697: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
45868          <idle>-0     (-----) [005] d..1 82315.925716: cpu_idle: state=0 cpu_id=5
45869          <idle>-0     (-----) [004] .n.1 82315.925857: cpu_idle: state=4294967295 cpu_id=4
45870          <idle>-0     (-----) [004] d..2 82315.925873: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27576 next_prio=110
45871          <idle>-0     (-----) [000] d.h5 82315.925950: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
45872           <...>-27576 (-----) [004] ...1 82315.925954: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
45873           <...>-27576 (-----) [004] ...1 82315.925970: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
45874          <idle>-0     (-----) [000] d.h6 82315.925971: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
45875           <...>-27576 (-----) [004] ...1 82315.925973: tracing_mark_write: E|27550
45876          <idle>-0     (-----) [000] d.h5 82315.925975: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
45877          <idle>-0     (-----) [001] .n.1 82315.925976: cpu_idle: state=4294967295 cpu_id=1
45878          <idle>-0     (-----) [000] dnh6 82315.925987: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
45879          <idle>-0     (-----) [001] d..2 82315.925989: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
45880          <idle>-0     (-----) [000] .n.1 82315.926000: cpu_idle: state=4294967295 cpu_id=0
45881           <...>-27576 (-----) [004] .... 82315.926002: binder_transaction: transaction=1569199 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
45882           <...>-27576 (-----) [004] .... 82315.926006: binder_transaction_alloc_buf: transaction=1569199 data_size=48 offsets_size=0
45883          <idle>-0     (-----) [000] d..2 82315.926008: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
45884           <...>-27576 (-----) [004] ...2 82315.926009: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
45885           <...>-27576 (-----) [004] d..4 82315.926013: sched_waking: [email protected] pid=770 prio=110 target_cpu=006
45886  crtc_event:111-322   (  322) [001] d..2 82315.926029: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45887           <...>-27576 (-----) [004] dn.5 82315.926029: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=004
45888           <...>-27576 (-----) [004] d..2 82315.926035: sched_switch: prev_comm=id.nn.benchmark prev_pid=27576 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
45889          <idle>-0     (-----) [001] d..1 82315.926035: cpu_idle: state=0 cpu_id=1
45890<...>-770 ( 770) [004] .... 82315.926046: binder_transaction_received: transaction=1569199
45891<...>-770 ( 770) [004] ...1 82315.926074: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
45892 crtc_commit:111-321   (  321) [000] d..2 82315.926154: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
45893          <idle>-0     (-----) [000] d..1 82315.926162: cpu_idle: state=0 cpu_id=0
45894<...>-770 ( 770) [004] d..2 82315.926181: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
45895          <idle>-0     (-----) [000] dnh2 82315.926208: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
45896          <idle>-0     (-----) [000] .n.1 82315.926213: cpu_idle: state=4294967295 cpu_id=0
45897          <idle>-0     (-----) [000] d..2 82315.926219: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
45898<...>-770 ( 770) [004] ...1 82315.926231: tracing_mark_write: E|770
45899<...>-770 ( 770) [004] .... 82315.926240: binder_transaction: transaction=1569200 dest_node=0 dest_proc=27550 dest_thread=27576 reply=1 flags=0x0 code=0x0
45900<...>-770 ( 770) [004] .... 82315.926243: binder_transaction_alloc_buf: transaction=1569200 data_size=168 offsets_size=32
45901<...>-770 ( 770) [004] .... 82315.926251: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
45902<...>-770 ( 770) [004] d..2 82315.926289: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27576 next_prio=110
45903           <...>-27576 (-----) [004] .... 82315.926299: binder_transaction_received: transaction=1569200
45904<...>-581 ( 571) [000] d..2 82315.926327: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45905          <idle>-0     (-----) [000] d..1 82315.926335: cpu_idle: state=0 cpu_id=0
45906           <...>-27576 (-----) [004] ...1 82315.926387: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
45907           <...>-27576 (-----) [004] ...1 82315.926392: tracing_mark_write: E|27550
45908           <...>-27576 (-----) [004] .... 82315.926407: binder_transaction: transaction=1569201 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
45909           <...>-27576 (-----) [004] .... 82315.926410: binder_transaction_alloc_buf: transaction=1569201 data_size=48 offsets_size=0
45910           <...>-27576 (-----) [004] ...2 82315.926412: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
45911           <...>-27576 (-----) [004] d..4 82315.926414: sched_waking: [email protected] pid=770 prio=110 target_cpu=004
45912           <...>-27576 (-----) [004] dn.5 82315.926425: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=004
45913           <...>-27576 (-----) [004] d..2 82315.926432: sched_switch: prev_comm=id.nn.benchmark prev_pid=27576 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
45914<...>-770 ( 770) [004] .... 82315.926440: binder_transaction_received: transaction=1569201
45915<...>-770 ( 770) [004] ...1 82315.926457: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
45916<...>-770 ( 770) [004] d..2 82315.926515: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
45917          <idle>-0     (-----) [000] dnh2 82315.926536: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
45918          <idle>-0     (-----) [000] .n.1 82315.926542: cpu_idle: state=4294967295 cpu_id=0
45919<...>-770 ( 770) [004] ...1 82315.926548: tracing_mark_write: E|770
45920          <idle>-0     (-----) [000] d..2 82315.926548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
45921<...>-770 ( 770) [004] .... 82315.926555: binder_transaction: transaction=1569202 dest_node=0 dest_proc=27550 dest_thread=27576 reply=1 flags=0x0 code=0x0
45922<...>-770 ( 770) [004] .... 82315.926557: binder_transaction_alloc_buf: transaction=1569202 data_size=168 offsets_size=32
45923<...>-770 ( 770) [004] .... 82315.926564: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
45924<...>-581 ( 571) [000] d..2 82315.926591: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45925          <idle>-0     (-----) [000] d..1 82315.926598: cpu_idle: state=0 cpu_id=0
45926<...>-770 ( 770) [004] d..2 82315.926599: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27576 next_prio=110
45927           <...>-27576 (-----) [004] .... 82315.926609: binder_transaction_received: transaction=1569202
45928          <idle>-0     (-----) [005] ...1 82315.926731: cpu_idle: state=4294967295 cpu_id=5
45929          <idle>-0     (-----) [005] d..1 82315.926734: cpu_idle: state=2 cpu_id=5
45930           <...>-27576 (-----) [004] ...1 82315.926900: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
45931           <...>-27576 (-----) [004] ...1 82315.926910: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
45932           <...>-27576 (-----) [004] ...1 82315.926914: tracing_mark_write: E|27550
45933           <...>-27576 (-----) [004] .... 82315.926986: binder_transaction: transaction=1569203 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
45934           <...>-27576 (-----) [004] .... 82315.926989: binder_transaction_alloc_buf: transaction=1569203 data_size=556 offsets_size=104
45935           <...>-27576 (-----) [004] ...2 82315.927005: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
45936           <...>-27576 (-----) [004] d..4 82315.927008: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
45937           <...>-27576 (-----) [004] dn.5 82315.927026: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
45938           <...>-27576 (-----) [004] d..2 82315.927033: sched_switch: prev_comm=id.nn.benchmark prev_pid=27576 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
45939<...>-5340 ( 788) [004] .... 82315.927043: binder_transaction_received: transaction=1569203
45940<...>-5340 ( 788) [004] ...1 82315.927104: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
45941<...>-5340 ( 788) [004] d..2 82315.927161: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
45942<...>-5340 ( 788) [004] d..2 82315.927198: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27576 next_prio=110
45943          <idle>-0     (-----) [000] dnh2 82315.927198: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
45944          <idle>-0     (-----) [000] .n.1 82315.927203: cpu_idle: state=4294967295 cpu_id=0
45945          <idle>-0     (-----) [000] d..2 82315.927209: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
45946           <...>-27576 (-----) [004] d..2 82315.927221: sched_switch: prev_comm=id.nn.benchmark prev_pid=27576 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45947          <idle>-0     (-----) [004] d..1 82315.927238: cpu_idle: state=2 cpu_id=4
45948<...>-87 ( 87) [000] d..2 82315.927245: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45949          <idle>-0     (-----) [000] d..1 82315.927251: cpu_idle: state=0 cpu_id=0
45950          <idle>-0     (-----) [002] d.h4 82315.927256: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
45951          <idle>-0     (-----) [002] dnh5 82315.927285: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
45952          <idle>-0     (-----) [002] .n.1 82315.927292: cpu_idle: state=4294967295 cpu_id=2
45953          <idle>-0     (-----) [002] d..2 82315.927303: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
45954<...>-86 ( 86) [002] d.h4 82315.927335: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
45955<...>-86 ( 86) [002] d..2 82315.927376: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45956          <idle>-0     (-----) [002] d..1 82315.927387: cpu_idle: state=0 cpu_id=2
45957          <idle>-0     (-----) [004] dnh2 82315.928176: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
45958          <idle>-0     (-----) [004] .n.1 82315.928183: cpu_idle: state=4294967295 cpu_id=4
45959          <idle>-0     (-----) [004] d..2 82315.928194: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
45960<...>-5340 ( 788) [004] d..1 82315.928283: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
45961          <idle>-0     (-----) [000] d.h5 82315.928285: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
45962          <idle>-0     (-----) [000] dnh6 82315.928301: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
45963          <idle>-0     (-----) [000] dnh2 82315.928319: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
45964          <idle>-0     (-----) [000] .n.1 82315.928323: cpu_idle: state=4294967295 cpu_id=0
45965          <idle>-0     (-----) [000] d..2 82315.928329: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
45966          <idle>-0     (-----) [003] d.s2 82315.928469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
45967 crtc_commit:111-321   (  321) [000] d.s2 82315.928470: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
45968<...>-5340 ( 788) [004] d..2 82315.928475: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
45969 crtc_commit:111-321   (  321) [000] d.s3 82315.928484: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
45970          <idle>-0     (-----) [003] dns3 82315.928485: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
45971          <idle>-0     (-----) [001] .n.1 82315.928488: cpu_idle: state=4294967295 cpu_id=1
45972 crtc_commit:111-321   (  321) [000] d.s2 82315.928492: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
45973          <idle>-0     (-----) [001] d..2 82315.928499: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
45974          <idle>-0     (-----) [003] .n.1 82315.928503: cpu_idle: state=4294967295 cpu_id=3
45975          <idle>-0     (-----) [003] d..2 82315.928513: 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
45976 crtc_commit:111-321   (  321) [000] d.s3 82315.928528: sched_blocked_reason: pid=1147 iowait=0 caller=worker_thread+0x578/0x788
45977<...>-5340 ( 788) [004] d..2 82315.928528: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
45978 crtc_commit:111-321   (  321) [000] d.s3 82315.928533: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
45979  crtc_event:111-322   (  322) [001] d..2 82315.928540: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
45980          <idle>-0     (-----) [004] d..1 82315.928542: cpu_idle: state=0 cpu_id=4
45981  kworker/u16:13-1147  ( 1147) [001] dnh3 82315.928551: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
45982     rcu_preempt-7     (    7) [003] d..2 82315.928552: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
45983  kworker/u16:13-1147  ( 1147) [001] d..2 82315.928558: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
45984<...>-87 ( 87) [001] d..2 82315.928584: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
45985          <idle>-0     (-----) [002] d.h4 82315.928593: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
45986 neuralnetworks@-13088 (  788) [003] d..2 82315.928599: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
45987          <idle>-0     (-----) [002] dnh5 82315.928601: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
45988          <idle>-0     (-----) [002] .n.1 82315.928608: cpu_idle: state=4294967295 cpu_id=2
45989 crtc_commit:111-321   (  321) [000] d.H5 82315.928609: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
45990          <idle>-0     (-----) [003] d..1 82315.928613: cpu_idle: state=2 cpu_id=3
45991          <idle>-0     (-----) [002] d..2 82315.928618: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
45992  kworker/u16:13-1147  ( 1147) [001] .... 82315.928621: clk_set_rate: l3_cluster1_vote_clk 300000000
45993  kworker/u16:13-1147  ( 1147) [001] .... 82315.928626: clk_set_rate: l3_clk 480000000
45994 crtc_commit:111-321   (  321) [000] d.H6 82315.928627: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
45995<...>-86 ( 86) [002] d..2 82315.928648: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
45996          <idle>-0     (-----) [002] d..1 82315.928661: cpu_idle: state=2 cpu_id=2
45997  kworker/u16:13-1147  ( 1147) [001] d..2 82315.928778: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
45998 crtc_commit:111-321   (  321) [000] d..2 82315.928781: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
45999          <idle>-0     (-----) [001] d..1 82315.928788: cpu_idle: state=0 cpu_id=1
46000          <idle>-0     (-----) [000] d..1 82315.928791: cpu_idle: state=0 cpu_id=0
46001          <idle>-0     (-----) [003] .n.1 82315.928841: cpu_idle: state=4294967295 cpu_id=3
46002          <idle>-0     (-----) [003] d..2 82315.928857: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
46003          <idle>-0     (-----) [001] d.h2 82315.928883: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
46004  crtc_event:111-322   (  322) [003] d..2 82315.928889: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
46005          <idle>-0     (-----) [001] dnh3 82315.928896: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
46006          <idle>-0     (-----) [003] d..1 82315.928901: cpu_idle: state=0 cpu_id=3
46007          <idle>-0     (-----) [001] .n.1 82315.928904: cpu_idle: state=4294967295 cpu_id=1
46008          <idle>-0     (-----) [001] d..2 82315.928912: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
46009        DispSync-8879  ( 8858) [001] d..1 82315.928948: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
46010        DispSync-8879  ( 8858) [001] d..2 82315.928964: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
46011        DispSync-8879  ( 8858) [001] d..1 82315.928969: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
46012          <idle>-0     (-----) [000] .n.1 82315.928970: cpu_idle: state=4294967295 cpu_id=0
46013          <idle>-0     (-----) [000] d..2 82315.928978: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
46014        DispSync-8879  ( 8858) [001] d..2 82315.928980: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
46015        DispSync-8879  ( 8858) [001] d..2 82315.929012: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46016          <idle>-0     (-----) [001] d..1 82315.929024: cpu_idle: state=0 cpu_id=1
46017   sfEventThread-8882  ( 8858) [000] d..3 82315.929038: sched_waking: comm=android.anim.lf pid=9006 prio=116 target_cpu=005
46018          <idle>-0     (-----) [004] dnh2 82315.929071: sched_wakeup: comm=android.anim.lf pid=9006 prio=116 target_cpu=004
46019   sfEventThread-8882  ( 8858) [000] d..3 82315.929073: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
46020          <idle>-0     (-----) [004] .n.1 82315.929076: cpu_idle: state=4294967295 cpu_id=4
46021          <idle>-0     (-----) [004] d..2 82315.929085: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim.lf next_pid=9006 next_prio=116
46022   sfEventThread-8882  ( 8858) [000] d..4 82315.929095: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
46023          <idle>-0     (-----) [003] .n.1 82315.929100: cpu_idle: state=4294967295 cpu_id=3
46024          <idle>-0     (-----) [003] d..2 82315.929108: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
46025   sfEventThread-8882  ( 8858) [000] d..3 82315.929109: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
46026          <idle>-0     (-----) [002] .n.1 82315.929110: cpu_idle: state=4294967295 cpu_id=2
46027          <idle>-0     (-----) [002] d..2 82315.929126: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
46028   sfEventThread-8882  ( 8858) [000] d..2 82315.929158: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46029          <idle>-0     (-----) [000] d..1 82315.929168: cpu_idle: state=0 cpu_id=0
46030  appEventThread-8881  ( 8858) [002] d..3 82315.929197: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
46031  appEventThread-8881  ( 8858) [002] d..4 82315.929226: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
46032          <idle>-0     (-----) [000] .n.1 82315.929232: cpu_idle: state=4294967295 cpu_id=0
46033          <idle>-0     (-----) [000] d..2 82315.929241: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
46034  appEventThread-8881  ( 8858) [002] d..3 82315.929243: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=001
46035  appEventThread-8881  ( 8858) [002] d..4 82315.929259: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=001
46036          <idle>-0     (-----) [001] .n.1 82315.929265: cpu_idle: state=4294967295 cpu_id=1
46037          <idle>-0     (-----) [001] d..2 82315.929276: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
46038<...>-9006 ( 8943) [004] d..2 82315.929290: sched_switch: prev_comm=android.anim.lf prev_pid=9006 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46039  appEventThread-8881  ( 8858) [002] d..2 82315.929298: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
46040          <idle>-0     (-----) [004] d..1 82315.929305: cpu_idle: state=0 cpu_id=4
46041          <idle>-0     (-----) [002] d..1 82315.929314: cpu_idle: state=0 cpu_id=2
46042          <idle>-0     (-----) [005] dnh2 82315.929328: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=005
46043          <idle>-0     (-----) [005] .n.1 82315.929336: cpu_idle: state=4294967295 cpu_id=5
46044          <idle>-0     (-----) [005] d..2 82315.929349: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
46045<...>-9005 ( 8943) [005] .... 82315.929533: binder_transaction: transaction=1569206 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
46046<...>-9005 ( 8943) [005] .... 82315.929539: binder_transaction_alloc_buf: transaction=1569206 data_size=80 offsets_size=0
46047<...>-9005 ( 8943) [005] d..4 82315.929543: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
46048<...>-9105 ( 9105) [000] .... 82315.929572: binder_transaction: transaction=1569207 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
46049          <idle>-0     (-----) [002] dnh2 82315.929576: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
46050<...>-9105 ( 9105) [000] .... 82315.929579: binder_transaction_alloc_buf: transaction=1569207 data_size=80 offsets_size=0
46051          <idle>-0     (-----) [002] .n.1 82315.929582: cpu_idle: state=4294967295 cpu_id=2
46052<...>-9105 ( 9105) [000] d..4 82315.929585: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
46053          <idle>-0     (-----) [002] d..2 82315.929592: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
46054          <idle>-0     (-----) [004] dnh2 82315.929668: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
46055<...>-8951 ( 8858) [002] .... 82315.929673: binder_transaction_received: transaction=1569206
46056          <idle>-0     (-----) [004] .n.1 82315.929674: cpu_idle: state=4294967295 cpu_id=4
46057          <idle>-0     (-----) [004] d..2 82315.929682: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
46058<...>-8874 ( 8858) [004] .... 82315.929693: binder_transaction_received: transaction=1569207
46059<...>-8951 ( 8858) [002] d..1 82315.929710: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
46060<...>-8951 ( 8858) [002] d..2 82315.929724: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
46061<...>-8874 ( 8858) [004] d..1 82315.929725: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
46062<...>-9105 ( 9105) [000] d..2 82315.929742: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
46063<...>-8951 ( 8858) [002] dnh1 82315.929743: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
46064<...>-8951 ( 8858) [002] d..2 82315.929753: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
46065<...>-8874 ( 8858) [004] d..2 82315.929768: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46066          <idle>-0     (-----) [004] d..1 82315.929780: cpu_idle: state=0 cpu_id=4
46067   sfEventThread-8882  ( 8858) [000] d..2 82315.929783: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
46068  appEventThread-8881  ( 8858) [002] d..2 82315.929785: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
46069<...>-8951 ( 8858) [002] d..2 82315.929815: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
46070          <idle>-0     (-----) [002] d..1 82315.929830: cpu_idle: state=0 cpu_id=2
46071<...>-9105 ( 9105) [000] d..3 82315.929878: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
46072<...>-9105 ( 9105) [000] d..4 82315.929909: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
46073          <idle>-0     (-----) [002] .n.1 82315.929915: cpu_idle: state=4294967295 cpu_id=2
46074  surfaceflinger-8858  ( 8858) [003] d..1 82315.929916: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
46075          <idle>-0     (-----) [002] d..2 82315.929951: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
46076  surfaceflinger-8858  ( 8858) [003] d..2 82315.929963: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
46077<...>-9105 ( 9105) [000] d..2 82315.929973: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=8882 next_prio=97
46078   sfEventThread-8882  ( 8858) [000] d..2 82315.930014: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46079          <idle>-0     (-----) [000] d..1 82315.930025: cpu_idle: state=0 cpu_id=0
46080<...>-9005 ( 8943) [005] .... 82315.930038: binder_transaction: transaction=1569208 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
46081<...>-9005 ( 8943) [005] .... 82315.930043: binder_transaction_alloc_buf: transaction=1569208 data_size=988 offsets_size=48
46082<...>-9005 ( 8943) [005] ...2 82315.930061: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
46083<...>-9005 ( 8943) [005] d..4 82315.930064: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=002
46084<...>-9005 ( 8943) [005] dn.5 82315.930087: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=005
46085    RenderThread-9436  ( 9105) [002] d..1 82315.930098: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
46086<...>-9005 ( 8943) [005] d..2 82315.930127: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
46087    RenderThread-9436  ( 9105) [002] d..2 82315.930136: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
46088<...>-8951 ( 8858) [005] .... 82315.930139: binder_transaction_received: transaction=1569208
46089          <idle>-0     (-----) [000] .n.1 82315.930142: cpu_idle: state=4294967295 cpu_id=0
46090          <idle>-0     (-----) [000] d..2 82315.930151: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
46091    RenderThread-9436  ( 9105) [002] d.h3 82315.930213: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
46092          <idle>-0     (-----) [004] dnh2 82315.930234: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
46093<...>-8951 ( 8858) [005] .... 82315.930235: binder_transaction: transaction=1569209 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
46094<...>-8951 ( 8858) [005] .... 82315.930239: binder_transaction_alloc_buf: transaction=1569209 data_size=0 offsets_size=0
46095          <idle>-0     (-----) [004] .n.1 82315.930239: cpu_idle: state=4294967295 cpu_id=4
46096<...>-8951 ( 8858) [005] .... 82315.930241: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
46097          <idle>-0     (-----) [004] d..2 82315.930247: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
46098    RenderThread-9436  ( 9105) [002] .... 82315.930270: binder_transaction: transaction=1569210 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
46099    RenderThread-9436  ( 9105) [002] .... 82315.930274: binder_transaction_alloc_buf: transaction=1569210 data_size=104 offsets_size=0
46100    RenderThread-9436  ( 9105) [002] d..4 82315.930280: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
46101<...>-8951 ( 8858) [005] d..2 82315.930284: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
46102    RenderThread-9436  ( 9105) [002] d..5 82315.930314: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
46103<...>-5340 ( 788) [004] d..1 82315.930320: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
46104<...>-9005 ( 8943) [005] .... 82315.930362: binder_transaction_received: transaction=1569209
46105    RenderThread-9436  ( 9105) [002] d..2 82315.930370: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
46106<...>-8951 ( 8858) [002] .... 82315.930379: binder_transaction_received: transaction=1569210
46107<...>-9105 ( 9105) [000] dnh1 82315.930396: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
46108 s.nexuslauncher-10023 (10023) [001] .... 82315.930408: binder_transaction: transaction=1569211 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
46109<...>-9105 ( 9105) [000] d..2 82315.930410: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
46110 s.nexuslauncher-10023 (10023) [001] .... 82315.930414: binder_transaction_alloc_buf: transaction=1569211 data_size=80 offsets_size=0
46111 s.nexuslauncher-10023 (10023) [001] d..4 82315.930419: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
46112<...>-9005 ( 8943) [005] d..1 82315.930459: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
46113 neuralnetworks@-13088 (  788) [000] d..2 82315.930461: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
46114<...>-8951 ( 8858) [002] .... 82315.930474: binder_transaction: transaction=1569212 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
46115<...>-5340 ( 788) [004] ...1 82315.930477: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
46116<...>-8951 ( 8858) [002] .... 82315.930478: binder_transaction_alloc_buf: transaction=1569212 data_size=52 offsets_size=8
46117<...>-5340 ( 788) [004] ...1 82315.930482: tracing_mark_write: E|788
46118<...>-8951 ( 8858) [002] d..2 82315.930489: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
46119<...>-8951 ( 8858) [002] d..3 82315.930501: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
46120<...>-5340 ( 788) [004] .... 82315.930505: binder_transaction: transaction=1569213 dest_node=1569204 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
46121<...>-5340 ( 788) [004] .... 82315.930508: binder_transaction_alloc_buf: transaction=1569213 data_size=60 offsets_size=0
46122<...>-8951 ( 8858) [002] d.h2 82315.930511: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=002
46123<...>-5340 ( 788) [004] d..4 82315.930512: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
46124<...>-5340 ( 788) [004] d..5 82315.930532: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=007
46125<...>-8951 ( 8858) [002] d..2 82315.930547: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
46126<...>-5340 ( 788) [004] ...1 82315.930560: tracing_mark_write: E|788
46127<...>-5340 ( 788) [004] .... 82315.930567: binder_transaction: transaction=1569214 dest_node=0 dest_proc=27550 dest_thread=27576 reply=1 flags=0x0 code=0x0
46128<...>-5340 ( 788) [004] .... 82315.930570: binder_transaction_alloc_buf: transaction=1569214 data_size=8 offsets_size=0
46129<...>-5340 ( 788) [004] d..2 82315.930572: sched_waking: comm=id.nn.benchmark pid=27576 prio=110 target_cpu=004
46130<...>-5340 ( 788) [004] d..3 82315.930579: sched_wakeup: comm=id.nn.benchmark pid=27576 prio=110 target_cpu=004
46131<...>-5340 ( 788) [004] .... 82315.930581: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
46132<...>-9105 ( 9105) [000] d..2 82315.930613: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46133          <idle>-0     (-----) [000] d..1 82315.930625: cpu_idle: state=0 cpu_id=0
46134<...>-5340 ( 788) [004] d..2 82315.930630: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27576 next_prio=110
46135 TaskSnapshotPer-9077  ( 8943) [002] d..2 82315.930633: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
46136    RenderThread-9436  ( 9105) [002] .... 82315.930641: binder_transaction_received: transaction=1569212
46137           <...>-27576 (-----) [004] .... 82315.930642: binder_transaction_received: transaction=1569214
46138          <idle>-0     (-----) [006] dnh2 82315.930670: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
46139          <idle>-0     (-----) [006] .n.1 82315.930679: cpu_idle: state=4294967295 cpu_id=6
46140           <...>-27576 (-----) [004] d..2 82315.930693: sched_switch: prev_comm=id.nn.benchmark prev_pid=27576 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46141          <idle>-0     (-----) [006] d..2 82315.930693: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
46142<...>-8874 ( 8858) [006] .... 82315.930706: binder_transaction_received: transaction=1569211
46143          <idle>-0     (-----) [004] d..1 82315.930713: cpu_idle: state=0 cpu_id=4
46144 s.nexuslauncher-10023 (10023) [001] .... 82315.930721: binder_transaction: transaction=1569215 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xa
46145 s.nexuslauncher-10023 (10023) [001] .... 82315.930726: binder_transaction_alloc_buf: transaction=1569215 data_size=92 offsets_size=8
46146<...>-8874 ( 8858) [006] d..1 82315.930734: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
46147          <idle>-0     (-----) [007] .n.1 82315.930737: cpu_idle: state=4294967295 cpu_id=7
46148 s.nexuslauncher-10023 (10023) [001] d..4 82315.930743: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
46149          <idle>-0     (-----) [007] d..2 82315.930757: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
46150           <...>-27571 (-----) [007] .... 82315.930764: binder_transaction_received: transaction=1569213
46151          <idle>-0     (-----) [000] dnh2 82315.930765: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
46152 s.nexuslauncher-10023 (10023) [001] d..5 82315.930770: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
46153          <idle>-0     (-----) [000] .n.1 82315.930772: cpu_idle: state=4294967295 cpu_id=0
46154<...>-9005 ( 8943) [005] .... 82315.930775: binder_transaction: transaction=1569216 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
46155          <idle>-0     (-----) [000] d..2 82315.930778: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
46156<...>-9005 ( 8943) [005] .... 82315.930781: binder_transaction_alloc_buf: transaction=1569216 data_size=96 offsets_size=0
46157<...>-8874 ( 8858) [006] d..2 82315.930783: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
46158 s.nexuslauncher-10023 (10023) [001] d..2 82315.930785: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
46159<...>-9005 ( 8943) [005] d..4 82315.930786: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
46160<...>-9062 ( 8943) [001] .... 82315.930794: binder_transaction_received: transaction=1569215
46161          <idle>-0     (-----) [006] d..1 82315.930797: cpu_idle: state=2 cpu_id=6
46162           <...>-27571 (-----) [007] ...1 82315.930804: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
46163           <...>-27571 (-----) [007] d..1 82315.930812: sched_waking: comm=id.nn.benchmark pid=27576 prio=110 target_cpu=004
46164<...>-9005 ( 8943) [005] d..5 82315.930814: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
46165           <...>-27571 (-----) [007] d..2 82315.930826: sched_wakeup: comm=id.nn.benchmark pid=27576 prio=110 target_cpu=004
46166          <idle>-0     (-----) [004] .n.1 82315.930833: cpu_idle: state=4294967295 cpu_id=4
46167  surfaceflinger-8858  ( 8858) [003] ...1 82315.930834: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
46168  surfaceflinger-8858  ( 8858) [003] ...1 82315.930840: tracing_mark_write: E|8858
46169           <...>-27571 (-----) [007] ...1 82315.930858: tracing_mark_write: E|27550
46170  appEventThread-8881  ( 8858) [000] d..2 82315.930858: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46171          <idle>-0     (-----) [004] d..2 82315.930858: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27576 next_prio=110
46172          <idle>-0     (-----) [000] d..1 82315.930867: cpu_idle: state=0 cpu_id=0
46173           <...>-27576 (-----) [004] ...1 82315.930874: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
46174           <...>-27576 (-----) [004] ...1 82315.930880: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
46175           <...>-27571 (-----) [007] d..2 82315.930895: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46176  surfaceflinger-8858  ( 8858) [003] .... 82315.930896: binder_transaction: transaction=1569217 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
46177  surfaceflinger-8858  ( 8858) [003] .... 82315.930901: binder_transaction_alloc_buf: transaction=1569217 data_size=540 offsets_size=96
46178          <idle>-0     (-----) [007] d..1 82315.930908: cpu_idle: state=2 cpu_id=7
46179           <...>-27576 (-----) [004] ...1 82315.930910: tracing_mark_write: E|27550
46180           <...>-27576 (-----) [004] ...1 82315.930914: tracing_mark_write: E|27550
46181           <...>-27576 (-----) [004] ...1 82315.930917: tracing_mark_write: E|27550
46182  surfaceflinger-8858  ( 8858) [003] ...2 82315.930927: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
46183  surfaceflinger-8858  ( 8858) [003] d..4 82315.930939: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
46184<...>-9005 ( 8943) [005] d..3 82315.930940: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
46185<...>-9005 ( 8943) [005] d..4 82315.930960: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
46186  surfaceflinger-8858  ( 8858) [003] d..5 82315.930965: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
46187          <idle>-0     (-----) [000] .n.1 82315.930971: cpu_idle: state=4294967295 cpu_id=0
46188          <idle>-0     (-----) [000] d..2 82315.930978: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
46189 [email protected]   (  619) [000] .... 82315.930989: binder_transaction_received: transaction=1569217
46190  surfaceflinger-8858  ( 8858) [003] d..2 82315.930994: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
46191          <idle>-0     (-----) [003] d..1 82315.931011: cpu_idle: state=0 cpu_id=3
46192 [email protected]   (  619) [000] ...1 82315.931055: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
46193           <...>-27576 (-----) [004] ...1 82315.931126: tracing_mark_write: E|27550
46194           <...>-27576 (-----) [004] d..1 82315.931141: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
46195 [email protected]   (  619) [000] ...1 82315.931188: tracing_mark_write: B|619|HWCSession::PresentDisplay::
46196          <idle>-0     (-----) [003] dnh2 82315.931204: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=003
46197          <idle>-0     (-----) [003] .n.1 82315.931210: cpu_idle: state=4294967295 cpu_id=3
46198          <idle>-0     (-----) [003] d..2 82315.931219: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
46199           <...>-27576 (-----) [004] d..4 82315.931247: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=007
46200<...>-9005 ( 8943) [005] .... 82315.931248: binder_transaction: transaction=1569218 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
46201<...>-9005 ( 8943) [005] .... 82315.931253: binder_transaction_alloc_buf: transaction=1569218 data_size=76 offsets_size=0
46202<...>-9005 ( 8943) [005] ...2 82315.931257: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
46203           <...>-27550 (-----) [003] d..2 82315.931260: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
46204<...>-9005 ( 8943) [005] d..4 82315.931260: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=006
46205          <idle>-0     (-----) [006] .n.1 82315.931269: cpu_idle: state=4294967295 cpu_id=6
46206          <idle>-0     (-----) [003] d..1 82315.931270: cpu_idle: state=0 cpu_id=3
46207<...>-9062 ( 8943) [001] .... 82315.931271: binder_transaction: transaction=1569219 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
46208<...>-9062 ( 8943) [001] .... 82315.931278: binder_transaction_alloc_buf: transaction=1569219 data_size=4 offsets_size=0
46209           <...>-27576 (-----) [004] d..5 82315.931282: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=005
46210<...>-9062 ( 8943) [001] d..2 82315.931282: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=001
46211          <idle>-0     (-----) [006] d..2 82315.931287: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
46212<...>-9005 ( 8943) [005] dn.5 82315.931289: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=005
46213<...>-9062 ( 8943) [001] d..3 82315.931296: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=001
46214<...>-9132 ( 9105) [006] .... 82315.931299: binder_transaction_received: transaction=1569216
46215<...>-9005 ( 8943) [005] d..2 82315.931303: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
46216<...>-8874 ( 8858) [005] .... 82315.931316: binder_transaction_received: transaction=1569218
46217          <idle>-0     (-----) [007] .n.1 82315.931321: cpu_idle: state=4294967295 cpu_id=7
46218          <idle>-0     (-----) [007] d..2 82315.931338: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
46219<...>-9062 ( 8943) [001] d..2 82315.931342: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
46220 s.nexuslauncher-10023 (10023) [001] .... 82315.931349: binder_transaction_received: transaction=1569219
46221           <...>-27576 (-----) [004] d..1 82315.931352: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=003
46222 [email protected]   (  619) [000] ...1 82315.931352: tracing_mark_write: B|619|HWDeviceDRM::Commit::
46223<...>-8874 ( 8858) [005] .... 82315.931352: binder_transaction: transaction=1569220 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
46224<...>-8874 ( 8858) [005] .... 82315.931355: binder_transaction_alloc_buf: transaction=1569220 data_size=0 offsets_size=0
46225<...>-8874 ( 8858) [005] .... 82315.931357: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
46226 [email protected]   (  619) [000] ...1 82315.931363: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
46227          <idle>-0     (-----) [003] dnh2 82315.931370: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=003
46228          <idle>-0     (-----) [003] .n.1 82315.931375: cpu_idle: state=4294967295 cpu_id=3
46229          <idle>-0     (-----) [003] d..2 82315.931383: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
46230<...>-8874 ( 8858) [005] d..2 82315.931388: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
46231           <...>-27576 (-----) [004] d..2 82315.931407: sched_switch: prev_comm=id.nn.benchmark prev_pid=27576 prev_prio=110 prev_state=x ==> next_comm=swapper/4 next_pid=0 next_prio=120
46232           <...>-27550 (-----) [003] d..2 82315.931425: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=000
46233          <idle>-0     (-----) [004] d..1 82315.931432: cpu_idle: state=2 cpu_id=4
46234<...>-8962 ( 8943) [007] d..3 82315.931438: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
46235           <...>-27571 (-----) [005] d..2 82315.931452: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
46236<...>-9005 ( 8943) [005] .... 82315.931462: binder_transaction_received: transaction=1569220
46237           <...>-27550 (-----) [003] d..3 82315.931470: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=001
46238<...>-8962 ( 8943) [007] d..4 82315.931481: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
46239<...>-9132 ( 9105) [006] d..2 82315.931482: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
46240 s.nexuslauncher-10023 (10023) [001] d..2 82315.931487: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=R ==> next_comm=rcuos/2 next_pid=30 next_prio=120
46241           <...>-27550 (-----) [003] ...1 82315.931496: tracing_mark_write: E|27550
46242          <idle>-0     (-----) [006] d..1 82315.931498: cpu_idle: state=0 cpu_id=6
46243           <...>-27550 (-----) [003] ...1 82315.931504: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
46244           <...>-27550 (-----) [003] ...1 82315.931514: tracing_mark_write: E|27550
46245           <...>-27550 (-----) [003] ...1 82315.931519: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
46246           <...>-27550 (-----) [003] ...1 82315.931525: tracing_mark_write: E|27550
46247<...>-30 ( 30) [001] d..2 82315.931526: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
46248           <...>-27550 (-----) [003] ...1 82315.931532: tracing_mark_write: E|27550
46249<...>-8962 ( 8943) [007] d..2 82315.931559: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
46250 s.nexuslauncher-10023 (10023) [001] d..3 82315.931647: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=000
46251   system_server-8943  ( 8943) [007] .... 82315.931649: binder_transaction: transaction=1569221 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
46252   system_server-8943  ( 8943) [007] .... 82315.931654: binder_transaction_alloc_buf: transaction=1569221 data_size=96 offsets_size=0
46253   system_server-8943  ( 8943) [007] d..4 82315.931659: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
46254   system_server-8943  ( 8943) [007] d..5 82315.931680: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
46255          <idle>-0     (-----) [006] dnh2 82315.931690: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=006
46256          <idle>-0     (-----) [006] .n.1 82315.931730: cpu_idle: state=4294967295 cpu_id=6
46257          <idle>-0     (-----) [006] d..2 82315.931738: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
46258   system_server-8943  ( 8943) [007] d..2 82315.931742: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46259          <idle>-0     (-----) [007] d..1 82315.931758: cpu_idle: state=2 cpu_id=7
46260 s.nexuslauncher-10023 (10023) [001] d..2 82315.931759: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46261          <idle>-0     (-----) [001] d..1 82315.931781: cpu_idle: state=0 cpu_id=1
46262 [email protected]   (  619) [000] d.s1 82315.931848: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
46263 [email protected]   (  619) [000] d.s2 82315.931894: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
46264    RenderThread-9436  ( 9105) [002] d..2 82315.931909: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
46265<...>-8 ( 8) [002] d..2 82315.931933: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
46266           <...>-27550 (-----) [003] ...1 82315.931986: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
46267    RenderThread-9436  ( 9105) [002] d..2 82315.931987: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46268    RenderThread-9436  ( 9105) [002] d..3 82315.932013: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
46269          <idle>-0     (-----) [001] .n.1 82315.932021: cpu_idle: state=4294967295 cpu_id=1
46270 [email protected]   (  619) [000] d..2 82315.932029: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
46271          <idle>-0     (-----) [001] d..2 82315.932033: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46272    RenderThread-16607 (10023) [006] d..1 82315.932047: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=001
46273 [email protected]   (  619) [000] d..3 82315.932057: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
46274    RenderThread-9436  ( 9105) [002] d..2 82315.932071: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
46275           <...>-27550 (-----) [003] ...1 82315.932075: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
46276    RenderThread-16607 (10023) [006] d..2 82315.932077: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
46277           <...>-27550 (-----) [003] ...1 82315.932084: tracing_mark_write: E|27550
46278           <...>-27550 (-----) [003] ...1 82315.932090: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
46279           <...>-27550 (-----) [003] ...1 82315.932098: tracing_mark_write: E|27550
46280           <...>-27550 (-----) [003] ...1 82315.932105: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
46281           <...>-27550 (-----) [003] ...1 82315.932110: tracing_mark_write: E|27550
46282           <...>-27550 (-----) [003] ...1 82315.932115: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
46283    RenderThread-16607 (10023) [006] d..2 82315.932125: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
46284 kgsl_worker_thr-258   (  258) [001] d..2 82315.932126: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46285<...>-9132 ( 9105) [006] .... 82315.932135: binder_transaction_received: transaction=1569221
46286          <idle>-0     (-----) [001] d..1 82315.932136: cpu_idle: state=0 cpu_id=1
46287 [email protected]   (  619) [000] ...1 82315.932163: tracing_mark_write: E|619
46288 [email protected]   (  619) [000] ...1 82315.932168: tracing_mark_write: E|619
46289 [email protected]   (  619) [000] ...1 82315.932245: tracing_mark_write: E|619
46290          <idle>-0     (-----) [007] .n.1 82315.932272: cpu_idle: state=4294967295 cpu_id=7
46291<...>-9132 ( 9105) [006] d..2 82315.932273: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
46292          <idle>-0     (-----) [006] d..1 82315.932288: cpu_idle: state=2 cpu_id=6
46293          <idle>-0     (-----) [007] d..2 82315.932291: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
46294           <...>-27550 (-----) [003] ...1 82315.932292: tracing_mark_write: E|27550
46295 [email protected]   (  619) [000] ...1 82315.932296: tracing_mark_write: E|619
46296           <...>-27550 (-----) [003] ...1 82315.932299: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
46297<...>-9005 ( 8943) [005] d..3 82315.932313: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
46298 [email protected]   (  619) [000] .... 82315.932314: binder_transaction: transaction=1569222 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
46299 [email protected]   (  619) [000] .... 82315.932318: binder_transaction_alloc_buf: transaction=1569222 data_size=576 offsets_size=112
46300           <...>-27550 (-----) [003] d..2 82315.932327: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
46301 s.nexuslauncher-10023 (10023) [007] d..3 82315.932334: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=006
46302 [email protected]   (  619) [000] d..2 82315.932337: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
46303          <idle>-0     (-----) [003] d..1 82315.932344: cpu_idle: state=0 cpu_id=3
46304          <idle>-0     (-----) [001] dnh2 82315.932349: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
46305 s.nexuslauncher-10023 (10023) [007] d..4 82315.932349: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=006
46306          <idle>-0     (-----) [001] .n.1 82315.932355: cpu_idle: state=4294967295 cpu_id=1
46307 [email protected]   (  619) [000] d..3 82315.932356: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
46308 [email protected]   (  619) [000] .... 82315.932360: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
46309<...>-9005 ( 8943) [005] d..3 82315.932361: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
46310          <idle>-0     (-----) [003] .n.1 82315.932362: cpu_idle: state=4294967295 cpu_id=3
46311          <idle>-0     (-----) [001] d..2 82315.932364: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
46312          <idle>-0     (-----) [003] d..2 82315.932369: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
46313 s.nexuslauncher-10023 (10023) [007] d..2 82315.932378: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46314  surfaceflinger-8858  ( 8858) [003] .... 82315.932379: binder_transaction_received: transaction=1569222
46315<...>-9005 ( 8943) [005] d..4 82315.932390: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=006
46316          <idle>-0     (-----) [007] d..1 82315.932391: cpu_idle: state=0 cpu_id=7
46317<...>-9039 ( 8943) [001] d..2 82315.932425: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46318          <idle>-0     (-----) [001] d..1 82315.932438: cpu_idle: state=0 cpu_id=1
46319 [email protected]   (  619) [000] d..2 82315.932443: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46320          <idle>-0     (-----) [000] d..1 82315.932462: cpu_idle: state=0 cpu_id=0
46321          <idle>-0     (-----) [004] .n.1 82315.932574: cpu_idle: state=4294967295 cpu_id=4
46322          <idle>-0     (-----) [004] d..2 82315.932591: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27577 next_prio=110
46323  surfaceflinger-8858  ( 8858) [003] d..2 82315.932621: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
46324  surfaceflinger-8858  ( 8858) [003] d..3 82315.932644: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
46325          <idle>-0     (-----) [006] .n.1 82315.932655: cpu_idle: state=4294967295 cpu_id=6
46326           <...>-27577 (-----) [004] ...1 82315.932667: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
46327          <idle>-0     (-----) [006] d..2 82315.932671: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
46328           <...>-27577 (-----) [004] ...1 82315.932682: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
46329           <...>-27577 (-----) [004] ...1 82315.932686: tracing_mark_write: E|27550
46330           <...>-27577 (-----) [004] .... 82315.932718: binder_transaction: transaction=1569223 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
46331           <...>-27577 (-----) [004] .... 82315.932721: binder_transaction_alloc_buf: transaction=1569223 data_size=48 offsets_size=0
46332           <...>-27577 (-----) [004] ...2 82315.932725: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
46333           <...>-27577 (-----) [004] d..4 82315.932729: sched_waking: [email protected] pid=770 prio=110 target_cpu=004
46334           <...>-27577 (-----) [004] dn.5 82315.932741: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=004
46335           <...>-27577 (-----) [004] d..2 82315.932748: sched_switch: prev_comm=id.nn.benchmark prev_pid=27577 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
46336<...>-770 ( 770) [004] .... 82315.932760: binder_transaction_received: transaction=1569223
46337 crtc_commit:111-321   (  321) [002] d..2 82315.932765: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=RenderThread next_pid=9436 next_prio=120
46338  surfaceflinger-8858  ( 8858) [003] d..1 82315.932766: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
46339  surfaceflinger-8858  ( 8858) [003] d..2 82315.932786: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
46340<...>-8969 ( 8943) [006] d..2 82315.932790: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=120
46341          <idle>-0     (-----) [001] .n.1 82315.932792: cpu_idle: state=4294967295 cpu_id=1
46342<...>-770 ( 770) [004] ...1 82315.932796: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
46343          <idle>-0     (-----) [001] d..2 82315.932801: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
46344  surfaceflinger-8858  ( 8858) [003] d..2 82315.932817: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
46345        DispSync-8879  ( 8858) [001] d..2 82315.932840: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46346         rcuop/2-29    (   29) [003] d..2 82315.932842: 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
46347<...>-9005 ( 8943) [005] .... 82315.932848: binder_transaction: transaction=1569224 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
46348          <idle>-0     (-----) [001] d..1 82315.932849: cpu_idle: state=0 cpu_id=1
46349<...>-9005 ( 8943) [005] .... 82315.932854: binder_transaction_alloc_buf: transaction=1569224 data_size=96 offsets_size=0
46350          <idle>-0     (-----) [003] d..1 82315.932854: cpu_idle: state=0 cpu_id=3
46351<...>-9005 ( 8943) [005] d..4 82315.932858: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
46352    RenderThread-9436  ( 9105) [002] d..2 82315.932875: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
46353    RenderThread-9436  ( 9105) [002] d..3 82315.932918: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
46354          <idle>-0     (-----) [000] dnh2 82315.932918: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
46355          <idle>-0     (-----) [001] .n.1 82315.932923: cpu_idle: state=4294967295 cpu_id=1
46356          <idle>-0     (-----) [000] .n.1 82315.932926: cpu_idle: state=4294967295 cpu_id=0
46357<...>-770 ( 770) [004] d..2 82315.932927: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
46358          <idle>-0     (-----) [001] d..2 82315.932931: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46359          <idle>-0     (-----) [000] d..2 82315.932940: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
46360<...>-9132 ( 9105) [000] .... 82315.932949: binder_transaction_received: transaction=1569224
46361 kgsl_worker_thr-258   (  258) [001] d.h1 82315.932981: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
46362          <idle>-0     (-----) [003] ...1 82315.933024: cpu_idle: state=4294967295 cpu_id=3
46363          <idle>-0     (-----) [003] d..1 82315.933032: cpu_idle: state=0 cpu_id=3
46364          <idle>-0     (-----) [007] ...1 82315.933093: cpu_idle: state=4294967295 cpu_id=7
46365          <idle>-0     (-----) [007] d..1 82315.933097: cpu_idle: state=0 cpu_id=7
46366<...>-770 ( 770) [004] ...1 82315.933098: tracing_mark_write: E|770
46367 kgsl_worker_thr-258   (  258) [001] d..1 82315.933105: clk_enable: gpll0_out_even
46368 kgsl_worker_thr-258   (  258) [001] d..1 82315.933107: clk_enable: gcc_gpu_gpll0_div_clk_src
46369<...>-9005 ( 8943) [005] d..3 82315.933108: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
46370<...>-770 ( 770) [004] .... 82315.933109: binder_transaction: transaction=1569225 dest_node=0 dest_proc=27550 dest_thread=27577 reply=1 flags=0x0 code=0x0
46371<...>-770 ( 770) [004] .... 82315.933113: binder_transaction_alloc_buf: transaction=1569225 data_size=168 offsets_size=32
46372<...>-770 ( 770) [004] .... 82315.933121: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
46373<...>-9005 ( 8943) [005] d..4 82315.933124: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
46374          <idle>-0     (-----) [007] .n.1 82315.933129: cpu_idle: state=4294967295 cpu_id=7
46375          <idle>-0     (-----) [007] d..2 82315.933138: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
46376<...>-770 ( 770) [004] d..2 82315.933162: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27577 next_prio=110
46377    RenderThread-9436  ( 9105) [002] .... 82315.933165: binder_transaction: transaction=1569226 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
46378    RenderThread-9436  ( 9105) [002] .... 82315.933171: binder_transaction_alloc_buf: transaction=1569226 data_size=192 offsets_size=8
46379           <...>-27577 (-----) [004] .... 82315.933173: binder_transaction_received: transaction=1569225
46380<...>-9132 ( 9105) [000] d..2 82315.933178: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46381    RenderThread-9436  ( 9105) [002] d..4 82315.933181: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
46382          <idle>-0     (-----) [000] d..1 82315.933196: cpu_idle: state=0 cpu_id=0
46383    RenderThread-9436  ( 9105) [002] dn.5 82315.933209: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
46384<...>-8962 ( 8943) [007] d..3 82315.933220: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
46385    RenderThread-9436  ( 9105) [002] dnh5 82315.933256: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
46386           <...>-27577 (-----) [004] ...1 82315.933273: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
46387           <...>-27577 (-----) [004] ...1 82315.933278: tracing_mark_write: E|27550
46388    RenderThread-9436  ( 9105) [002] dnh6 82315.933280: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
46389           <...>-27577 (-----) [004] .... 82315.933294: binder_transaction: transaction=1569227 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
46390           <...>-27577 (-----) [004] .... 82315.933297: binder_transaction_alloc_buf: transaction=1569227 data_size=48 offsets_size=0
46391           <...>-27577 (-----) [004] ...2 82315.933300: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
46392           <...>-27577 (-----) [004] d..4 82315.933308: sched_waking: [email protected] pid=770 prio=110 target_cpu=004
46393          <idle>-0     (-----) [000] dnh2 82315.933315: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
46394    RenderThread-9436  ( 9105) [002] d..2 82315.933319: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
46395           <...>-27577 (-----) [004] dn.5 82315.933319: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=004
46396          <idle>-0     (-----) [000] .n.1 82315.933324: cpu_idle: state=4294967295 cpu_id=0
46397           <...>-27577 (-----) [004] d..2 82315.933326: sched_switch: prev_comm=id.nn.benchmark prev_pid=27577 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
46398<...>-8874 ( 8858) [002] .... 82315.933328: binder_transaction_received: transaction=1569226
46399          <idle>-0     (-----) [000] d..2 82315.933333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
46400<...>-770 ( 770) [004] .... 82315.933334: binder_transaction_received: transaction=1569227
46401<...>-770 ( 770) [004] ...1 82315.933353: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
46402<...>-8962 ( 8943) [007] d..2 82315.933354: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46403<...>-9005 ( 8943) [005] .... 82315.933366: binder_transaction: transaction=1569228 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
46404          <idle>-0     (-----) [007] d..1 82315.933367: cpu_idle: state=0 cpu_id=7
46405         sugov:0-576   (  576) [000] .... 82315.933371: clk_set_rate: pwrcl_clk 1132800000
46406<...>-9005 ( 8943) [005] .... 82315.933371: binder_transaction_alloc_buf: transaction=1569228 data_size=76 offsets_size=0
46407<...>-9005 ( 8943) [005] ...2 82315.933375: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
46408<...>-9005 ( 8943) [005] d..4 82315.933378: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=002
46409         sugov:0-576   (  576) [000] .... 82315.933383: clk_set_rate: cpu3_pwrcl_clk 1228800000
46410         sugov:0-576   (  576) [000] .... 82315.933393: clk_set_rate: cpu2_pwrcl_clk 1228800000
46411<...>-9005 ( 8943) [005] dn.5 82315.933400: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=005
46412         sugov:0-576   (  576) [000] .... 82315.933400: clk_set_rate: cpu1_pwrcl_clk 1228800000
46413         sugov:0-576   (  576) [000] .... 82315.933407: clk_set_rate: cpu0_pwrcl_clk 1132800000
46414<...>-9005 ( 8943) [005] d..2 82315.933440: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
46415<...>-770 ( 770) [004] ...1 82315.933443: tracing_mark_write: E|770
46416<...>-8951 ( 8858) [005] .... 82315.933451: binder_transaction_received: transaction=1569228
46417<...>-770 ( 770) [004] .... 82315.933452: binder_transaction: transaction=1569229 dest_node=0 dest_proc=27550 dest_thread=27577 reply=1 flags=0x0 code=0x0
46418<...>-770 ( 770) [004] .... 82315.933455: binder_transaction_alloc_buf: transaction=1569229 data_size=168 offsets_size=32
46419<...>-770 ( 770) [004] .... 82315.933461: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
46420<...>-8874 ( 8858) [002] .... 82315.933482: binder_transaction: transaction=1569230 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
46421<...>-8874 ( 8858) [002] .... 82315.933487: binder_transaction_alloc_buf: transaction=1569230 data_size=68 offsets_size=0
46422<...>-8951 ( 8858) [005] .... 82315.933493: binder_transaction: transaction=1569231 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
46423<...>-8951 ( 8858) [005] .... 82315.933496: binder_transaction_alloc_buf: transaction=1569231 data_size=0 offsets_size=0
46424<...>-770 ( 770) [004] d..2 82315.933498: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27577 next_prio=110
46425<...>-8951 ( 8858) [005] .... 82315.933499: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
46426           <...>-27577 (-----) [004] .... 82315.933510: binder_transaction_received: transaction=1569229
46427         sugov:0-576   (  576) [000] .... 82315.933519: cpu_frequency: state=1132800 cpu_id=0
46428<...>-8874 ( 8858) [002] d..2 82315.933530: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
46429<...>-8951 ( 8858) [005] d..2 82315.933533: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
46430    RenderThread-9436  ( 9105) [002] .... 82315.933539: binder_transaction_received: transaction=1569230
46431         sugov:0-576   (  576) [000] .... 82315.933542: cpu_frequency: state=1132800 cpu_id=1
46432<...>-9005 ( 8943) [005] .... 82315.933543: binder_transaction_received: transaction=1569231
46433         sugov:0-576   (  576) [000] .... 82315.933546: cpu_frequency: state=1132800 cpu_id=2
46434         sugov:0-576   (  576) [000] .... 82315.933549: cpu_frequency: state=1132800 cpu_id=3
46435         sugov:0-576   (  576) [000] d..2 82315.933566: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
46436 kgsl_worker_thr-258   (  258) [001] d..1 82315.933618: clk_enable: gpu_cc_gmu_clk_src
46437 kgsl_worker_thr-258   (  258) [001] d..1 82315.933645: clk_enable: gpu_cc_cx_gmu_clk
46438    RenderThread-16607 (10023) [006] d..2 82315.933657: clk_enable: gcc_gpu_memnoc_gfx_clk
46439 kgsl_worker_thr-258   (  258) [001] d..1 82315.933672: clk_enable: gpu_cc_cxo_clk
46440 kgsl_worker_thr-258   (  258) [001] d..1 82315.933682: clk_enable: gcc_ddrss_gpu_axi_clk
46441   system_server-8943  ( 8943) [000] .... 82315.933685: binder_transaction: transaction=1569232 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
46442   system_server-8943  ( 8943) [000] .... 82315.933691: binder_transaction_alloc_buf: transaction=1569232 data_size=96 offsets_size=0
46443    RenderThread-16607 (10023) [006] d..2 82315.933691: clk_disable: gcc_gpu_memnoc_gfx_clk
46444   system_server-8943  ( 8943) [000] d..4 82315.933696: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
46445 kgsl_worker_thr-258   (  258) [001] d..1 82315.933708: clk_enable: gcc_gpu_memnoc_gfx_clk
46446   system_server-8943  ( 8943) [000] d..5 82315.933724: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=003
46447          <idle>-0     (-----) [003] .n.1 82315.933728: cpu_idle: state=4294967295 cpu_id=3
46448          <idle>-0     (-----) [003] d..2 82315.933739: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
46449<...>-9132 ( 9105) [003] .... 82315.933750: binder_transaction_received: transaction=1569232
46450 kgsl_worker_thr-258   (  258) [001] d..2 82315.933771: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
46451   system_server-8943  ( 8943) [000] d..2 82315.933814: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46452          <idle>-0     (-----) [000] d..1 82315.933836: cpu_idle: state=0 cpu_id=0
46453           <...>-27577 (-----) [004] ...1 82315.933838: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
46454           <...>-27577 (-----) [004] ...1 82315.933851: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
46455           <...>-27577 (-----) [004] ...1 82315.933855: tracing_mark_write: E|27550
46456<...>-581 ( 571) [001] d.h1 82315.933866: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
46457<...>-581 ( 571) [001] d.h2 82315.933892: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46458          <idle>-0     (-----) [000] .n.1 82315.933899: cpu_idle: state=4294967295 cpu_id=0
46459          <idle>-0     (-----) [000] d..2 82315.933910: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46460    RenderThread-9436  ( 9105) [002] d..1 82315.933915: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
46461<...>-9132 ( 9105) [003] d..2 82315.933941: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
46462 kgsl_worker_thr-258   (  258) [000] d..2 82315.933943: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46463           <...>-27577 (-----) [004] .... 82315.933948: binder_transaction: transaction=1569233 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
46464          <idle>-0     (-----) [000] d..1 82315.933951: cpu_idle: state=0 cpu_id=0
46465           <...>-27577 (-----) [004] .... 82315.933951: binder_transaction_alloc_buf: transaction=1569233 data_size=556 offsets_size=104
46466          <idle>-0     (-----) [003] d..1 82315.933955: cpu_idle: state=0 cpu_id=3
46467           <...>-27577 (-----) [004] ...2 82315.933971: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
46468           <...>-27577 (-----) [004] d..4 82315.934002: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
46469          <idle>-0     (-----) [007] dnh2 82315.934011: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
46470           <...>-27577 (-----) [004] dn.5 82315.934017: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
46471          <idle>-0     (-----) [007] .n.1 82315.934017: cpu_idle: state=4294967295 cpu_id=7
46472<...>-581 ( 571) [001] d..2 82315.934019: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46473           <...>-27577 (-----) [004] d..2 82315.934026: sched_switch: prev_comm=id.nn.benchmark prev_pid=27577 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
46474          <idle>-0     (-----) [007] d..2 82315.934027: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
46475          <idle>-0     (-----) [000] d.h2 82315.934028: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46476          <idle>-0     (-----) [001] d..1 82315.934035: cpu_idle: state=0 cpu_id=1
46477<...>-5340 ( 788) [004] .... 82315.934037: binder_transaction_received: transaction=1569233
46478          <idle>-0     (-----) [000] dnh3 82315.934040: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46479          <idle>-0     (-----) [000] .n.1 82315.934047: cpu_idle: state=4294967295 cpu_id=0
46480          <idle>-0     (-----) [000] d..2 82315.934055: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46481    RenderThread-9436  ( 9105) [002] .... 82315.934060: binder_transaction: transaction=1569236 dest_node=410793 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
46482    RenderThread-9436  ( 9105) [002] .... 82315.934065: binder_transaction_alloc_buf: transaction=1569236 data_size=104 offsets_size=0
46483    RenderThread-9436  ( 9105) [002] d..4 82315.934071: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
46484    RenderThread-9436  ( 9105) [002] dn.5 82315.934094: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
46485<...>-5340 ( 788) [004] ...1 82315.934112: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
46486    RenderThread-9436  ( 9105) [002] d..2 82315.934139: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
46487<...>-8951 ( 8858) [002] .... 82315.934147: binder_transaction_received: transaction=1569236
46488<...>-9105 ( 9105) [007] d..2 82315.934151: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46489 kgsl_worker_thr-258   (  258) [000] d..2 82315.934154: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46490          <idle>-0     (-----) [000] d..1 82315.934162: cpu_idle: state=0 cpu_id=0
46491          <idle>-0     (-----) [007] d..1 82315.934162: cpu_idle: state=0 cpu_id=7
46492<...>-5340 ( 788) [004] d..2 82315.934185: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
46493<...>-8951 ( 8858) [002] .... 82315.934216: binder_transaction: transaction=1569237 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
46494          <idle>-0     (-----) [000] d.h2 82315.934219: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46495<...>-8951 ( 8858) [002] .... 82315.934220: binder_transaction_alloc_buf: transaction=1569237 data_size=52 offsets_size=8
46496          <idle>-0     (-----) [000] dnh3 82315.934227: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46497<...>-5340 ( 788) [004] d..2 82315.934229: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27577 next_prio=110
46498          <idle>-0     (-----) [000] dnh2 82315.934241: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
46499          <idle>-0     (-----) [000] .n.1 82315.934246: cpu_idle: state=4294967295 cpu_id=0
46500           <...>-27577 (-----) [004] d..2 82315.934253: sched_switch: prev_comm=id.nn.benchmark prev_pid=27577 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46501          <idle>-0     (-----) [000] d..2 82315.934254: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46502<...>-9005 ( 8943) [005] d..3 82315.934255: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
46503<...>-8951 ( 8858) [002] d..2 82315.934262: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
46504    RenderThread-9436  ( 9105) [002] .... 82315.934270: binder_transaction_received: transaction=1569237
46505          <idle>-0     (-----) [004] d..1 82315.934273: cpu_idle: state=0 cpu_id=4
46506 kgsl_worker_thr-258   (  258) [000] d..2 82315.934281: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
46507          <idle>-0     (-----) [001] dnh2 82315.934283: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
46508          <idle>-0     (-----) [001] .n.1 82315.934290: cpu_idle: state=4294967295 cpu_id=1
46509          <idle>-0     (-----) [001] d..2 82315.934299: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
46510<...>-87 ( 87) [000] d..2 82315.934331: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46511<...>-9005 ( 8943) [005] d..1 82315.934335: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=006
46512          <idle>-0     (-----) [000] d..1 82315.934339: cpu_idle: state=0 cpu_id=0
46513    RenderThread-9436  ( 9105) [002] d.h3 82315.934342: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
46514<...>-9039 ( 8943) [001] d..2 82315.934352: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46515<...>-9005 ( 8943) [005] d..2 82315.934358: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
46516          <idle>-0     (-----) [004] .n.1 82315.934365: cpu_idle: state=4294967295 cpu_id=4
46517          <idle>-0     (-----) [001] d..1 82315.934365: cpu_idle: state=0 cpu_id=1
46518          <idle>-0     (-----) [004] d..2 82315.934374: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
46519    RenderThread-9436  ( 9105) [002] d.h4 82315.934375: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
46520    RenderThread-16607 (10023) [006] ...1 82315.934378: tracing_mark_write: B|10023|HIDL::IMapper::freeBuffer::passthrough
46521          <idle>-0     (-----) [001] .n.1 82315.934380: cpu_idle: state=4294967295 cpu_id=1
46522          <idle>-0     (-----) [000] d.h2 82315.934381: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46523          <idle>-0     (-----) [000] dnh3 82315.934390: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46524          <idle>-0     (-----) [001] d..2 82315.934390: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
46525    RenderThread-16607 (10023) [006] ...1 82315.934395: tracing_mark_write: B|10023|FreeBuffer
46526          <idle>-0     (-----) [000] .n.1 82315.934396: cpu_idle: state=4294967295 cpu_id=0
46527          <idle>-0     (-----) [000] d..2 82315.934404: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46528 kgsl_worker_thr-258   (  258) [000] d..2 82315.934423: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46529    RenderThread-9436  ( 9105) [002] d.h3 82315.934424: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
46530    RenderThread-16607 (10023) [006] ...1 82315.934424: tracing_mark_write: E|10023
46531<...>-9005 ( 8943) [005] d..2 82315.934425: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
46532    RenderThread-16607 (10023) [006] ...1 82315.934428: tracing_mark_write: B|10023|FreeBuffer
46533          <idle>-0     (-----) [000] d..1 82315.934430: cpu_idle: state=0 cpu_id=0
46534    RenderThread-16607 (10023) [006] ...1 82315.934431: tracing_mark_write: B|10023|UnmapBuffer
46535          <idle>-0     (-----) [005] d..1 82315.934447: cpu_idle: state=0 cpu_id=5
46536    RenderThread-16607 (10023) [006] ...1 82315.934450: tracing_mark_write: E|10023
46537    RenderThread-9436  ( 9105) [002] d.h4 82315.934451: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
46538          <idle>-0     (-----) [000] .n.1 82315.934456: cpu_idle: state=4294967295 cpu_id=0
46539    RenderThread-16607 (10023) [006] ...1 82315.934459: tracing_mark_write: E|10023
46540    RenderThread-16607 (10023) [006] ...1 82315.934465: tracing_mark_write: E|10023
46541          <idle>-0     (-----) [000] d..2 82315.934465: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
46542    RenderThread-16607 (10023) [006] ...1 82315.934474: tracing_mark_write: B|10023|HIDL::IMapper::freeBuffer::passthrough
46543    RenderThread-16607 (10023) [006] ...1 82315.934480: tracing_mark_write: B|10023|FreeBuffer
46544    RenderThread-16607 (10023) [006] ...1 82315.934490: tracing_mark_write: E|10023
46545    RenderThread-16607 (10023) [006] ...1 82315.934493: tracing_mark_write: B|10023|FreeBuffer
46546    RenderThread-16607 (10023) [006] ...1 82315.934496: tracing_mark_write: B|10023|UnmapBuffer
46547    RenderThread-16607 (10023) [006] ...1 82315.934509: tracing_mark_write: E|10023
46548<...>-5340 ( 788) [000] d.h1 82315.934517: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46549    RenderThread-16607 (10023) [006] ...1 82315.934517: tracing_mark_write: E|10023
46550    RenderThread-9436  ( 9105) [002] d.h2 82315.934521: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
46551    RenderThread-16607 (10023) [006] ...1 82315.934522: tracing_mark_write: E|10023
46552<...>-86 ( 86) [001] d..2 82315.934529: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46553    RenderThread-16607 (10023) [006] ...1 82315.934530: tracing_mark_write: B|10023|HIDL::IMapper::freeBuffer::passthrough
46554    RenderThread-16607 (10023) [006] ...1 82315.934534: tracing_mark_write: B|10023|FreeBuffer
46555          <idle>-0     (-----) [001] d..1 82315.934539: cpu_idle: state=0 cpu_id=1
46556    RenderThread-16607 (10023) [006] ...1 82315.934543: tracing_mark_write: E|10023
46557    RenderThread-16607 (10023) [006] ...1 82315.934546: tracing_mark_write: B|10023|FreeBuffer
46558    RenderThread-16607 (10023) [006] ...1 82315.934549: tracing_mark_write: B|10023|UnmapBuffer
46559<...>-5340 ( 788) [000] d.h2 82315.934549: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
46560          <idle>-0     (-----) [001] .n.1 82315.934555: cpu_idle: state=4294967295 cpu_id=1
46561    RenderThread-9436  ( 9105) [002] d.h3 82315.934558: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
46562    RenderThread-16607 (10023) [006] ...1 82315.934562: tracing_mark_write: E|10023
46563          <idle>-0     (-----) [001] d..2 82315.934565: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
46564    RenderThread-16607 (10023) [006] ...1 82315.934569: tracing_mark_write: E|10023
46565    RenderThread-16607 (10023) [006] ...1 82315.934574: tracing_mark_write: E|10023
46566          <idle>-0     (-----) [003] .n.1 82315.934598: cpu_idle: state=4294967295 cpu_id=3
46567<...>-8969 ( 8943) [004] d..2 82315.934599: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46568          <idle>-0     (-----) [003] d..2 82315.934606: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46569    RenderThread-16607 (10023) [006] .... 82315.934607: binder_transaction: transaction=1569238 dest_node=1561443 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0xa
46570          <idle>-0     (-----) [004] d..1 82315.934612: cpu_idle: state=0 cpu_id=4
46571    RenderThread-16607 (10023) [006] .... 82315.934612: binder_transaction_alloc_buf: transaction=1569238 data_size=88 offsets_size=0
46572         sugov:0-576   (  576) [001] .... 82315.934616: clk_set_rate: pwrcl_clk 1324800000
46573    RenderThread-16607 (10023) [006] d..4 82315.934616: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
46574         sugov:0-576   (  576) [001] .... 82315.934627: clk_set_rate: cpu3_pwrcl_clk 1132800000
46575<...>-5340 ( 788) [000] d..1 82315.934631: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
46576 kgsl_worker_thr-258   (  258) [003] d..2 82315.934633: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
46577         sugov:0-576   (  576) [001] .... 82315.934636: clk_set_rate: cpu2_pwrcl_clk 1132800000
46578          <idle>-0     (-----) [003] d..1 82315.934639: cpu_idle: state=0 cpu_id=3
46579    RenderThread-16607 (10023) [006] d..5 82315.934639: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
46580         sugov:0-576   (  576) [001] .... 82315.934643: clk_set_rate: cpu1_pwrcl_clk 1132800000
46581         sugov:0-576   (  576) [001] .... 82315.934651: clk_set_rate: cpu0_pwrcl_clk 1324800000
46582         sugov:0-576   (  576) [001] .... 82315.934659: cpu_frequency: state=1324800 cpu_id=0
46583         sugov:0-576   (  576) [001] .... 82315.934676: cpu_frequency: state=1324800 cpu_id=1
46584         sugov:0-576   (  576) [001] .... 82315.934680: cpu_frequency: state=1324800 cpu_id=2
46585         sugov:0-576   (  576) [001] .... 82315.934683: cpu_frequency: state=1324800 cpu_id=3
46586    RenderThread-16607 (10023) [006] d..2 82315.934683: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
46587<...>-5340 ( 788) [000] d..2 82315.934685: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
46588<...>-8951 ( 8858) [006] .... 82315.934694: binder_transaction_received: transaction=1569238
46589         sugov:0-576   (  576) [001] d..2 82315.934701: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
46590          <idle>-0     (-----) [003] d.h2 82315.934723: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
46591          <idle>-0     (-----) [003] dnh3 82315.934734: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
46592          <idle>-0     (-----) [003] .n.1 82315.934742: cpu_idle: state=4294967295 cpu_id=3
46593          <idle>-0     (-----) [003] d..2 82315.934746: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46594 neuralnetworks@-13088 (  788) [001] d..2 82315.934761: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46595 kgsl_worker_thr-258   (  258) [003] d..2 82315.934764: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
46596          <idle>-0     (-----) [003] d..1 82315.934770: cpu_idle: state=0 cpu_id=3
46597          <idle>-0     (-----) [001] d..1 82315.934773: cpu_idle: state=0 cpu_id=1
46598<...>-8951 ( 8858) [006] ...1 82315.934818: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
46599<...>-8951 ( 8858) [006] ...1 82315.934835: tracing_mark_write: B|8858|FreeBuffer
46600          <idle>-0     (-----) [003] d.h2 82315.934859: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
46601          <idle>-0     (-----) [003] dnh3 82315.934866: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
46602          <idle>-0     (-----) [003] .n.1 82315.934871: cpu_idle: state=4294967295 cpu_id=3
46603          <idle>-0     (-----) [003] d..2 82315.934876: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46604<...>-5340 ( 788) [000] d..2 82315.934882: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
46605 kgsl_worker_thr-258   (  258) [003] d..2 82315.934891: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
46606          <idle>-0     (-----) [003] d..1 82315.934896: cpu_idle: state=0 cpu_id=3
46607<...>-8951 ( 8858) [006] d..2 82315.934902: sched_waking: comm=system pid=104 prio=120 target_cpu=002
46608<...>-5340 ( 788) [000] d..3 82315.934917: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
46609          <idle>-0     (-----) [003] .n.1 82315.934921: cpu_idle: state=4294967295 cpu_id=3
46610          <idle>-0     (-----) [003] d..2 82315.934928: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
46611<...>-5340 ( 788) [000] d..2 82315.934940: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46612<...>-8951 ( 8858) [006] ...1 82315.934948: tracing_mark_write: E|8858
46613<...>-8951 ( 8858) [006] ...1 82315.934952: tracing_mark_write: B|8858|FreeBuffer
46614          <idle>-0     (-----) [000] d..1 82315.934956: cpu_idle: state=0 cpu_id=0
46615<...>-87 ( 87) [003] d.h2 82315.934957: sched_wakeup: comm=system pid=104 prio=120 target_cpu=003
46616<...>-8951 ( 8858) [006] ...1 82315.934964: tracing_mark_write: E|8858
46617<...>-87 ( 87) [003] d..2 82315.934968: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
46618    RenderThread-9436  ( 9105) [002] d.h3 82315.934968: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
46619<...>-8951 ( 8858) [006] ...1 82315.934971: tracing_mark_write: E|8858
46620          system-104   (  104) [003] d.h2 82315.934985: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
46621    RenderThread-9436  ( 9105) [002] d.h4 82315.934986: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
46622<...>-8951 ( 8858) [006] ...1 82315.934988: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
46623          <idle>-0     (-----) [001] .n.1 82315.934992: cpu_idle: state=4294967295 cpu_id=1
46624<...>-8951 ( 8858) [006] ...1 82315.934994: tracing_mark_write: B|8858|FreeBuffer
46625          <idle>-0     (-----) [001] d..2 82315.935003: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
46626          system-104   (  104) [003] d.h3 82315.935004: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46627          <idle>-0     (-----) [000] .n.1 82315.935011: cpu_idle: state=4294967295 cpu_id=0
46628          <idle>-0     (-----) [000] d..2 82315.935019: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46629<...>-86 ( 86) [001] d..2 82315.935034: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46630 kgsl_worker_thr-258   (  258) [000] d..2 82315.935041: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46631          <idle>-0     (-----) [001] d..1 82315.935043: cpu_idle: state=0 cpu_id=1
46632          <idle>-0     (-----) [000] d..1 82315.935048: cpu_idle: state=0 cpu_id=0
46633<...>-8951 ( 8858) [006] ...1 82315.935050: tracing_mark_write: E|8858
46634<...>-8951 ( 8858) [006] ...1 82315.935054: tracing_mark_write: B|8858|FreeBuffer
46635<...>-8951 ( 8858) [006] ...1 82315.935065: tracing_mark_write: E|8858
46636<...>-8951 ( 8858) [006] ...1 82315.935072: tracing_mark_write: E|8858
46637          <idle>-0     (-----) [000] d.h2 82315.935136: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46638          <idle>-0     (-----) [000] dnh3 82315.935146: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46639<...>-8951 ( 8858) [006] d..5 82315.935150: sched_waking: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=000
46640          <idle>-0     (-----) [000] .n.1 82315.935152: cpu_idle: state=4294967295 cpu_id=0
46641          system-104   (  104) [003] d.s2 82315.935154: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
46642          <idle>-0     (-----) [000] d..2 82315.935162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46643<...>-8951 ( 8858) [006] .... 82315.935178: binder_transaction: transaction=1569239 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
46644<...>-8951 ( 8858) [006] .... 82315.935181: binder_transaction_alloc_buf: transaction=1569239 data_size=4 offsets_size=0
46645<...>-8951 ( 8858) [006] d..2 82315.935184: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=006
46646          <idle>-0     (-----) [001] dnh2 82315.935186: sched_wakeup: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=001
46647<...>-8951 ( 8858) [006] d..3 82315.935191: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=006
46648          <idle>-0     (-----) [001] .n.1 82315.935191: cpu_idle: state=4294967295 cpu_id=1
46649          system-104   (  104) [003] d.s3 82315.935193: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
46650          <idle>-0     (-----) [001] d..2 82315.935201: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_3 next_pid=10531 next_prio=120
46651          system-104   (  104) [003] d.s3 82315.935203: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
46652 kgsl_worker_thr-258   (  258) [000] d..2 82315.935205: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
46653<...>-8951 ( 8858) [006] d..5 82315.935217: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=007
46654     rcu_preempt-7     (    7) [000] d..2 82315.935219: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
46655          system-104   (  104) [003] d.s4 82315.935231: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
46656<...>-8951 ( 8858) [006] d..6 82315.935231: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=007
46657          <idle>-0     (-----) [007] .n.1 82315.935237: cpu_idle: state=4294967295 cpu_id=7
46658<...>-8951 ( 8858) [006] d..2 82315.935245: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=120
46659          <idle>-0     (-----) [007] d..2 82315.935247: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
46660     rcu_preempt-7     (    7) [000] d..3 82315.935254: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
46661    RenderThread-16607 (10023) [006] .... 82315.935256: binder_transaction_received: transaction=1569239
46662  Binder:10023_3-10531 (10023) [001] d..2 82315.935266: sched_switch: prev_comm=Binder:10023_3 prev_pid=10531 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
46663     rcu_preempt-7     (    7) [000] d..2 82315.935270: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
46664  Binder:10023_2-10088 (10023) [007] d..2 82315.935272: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46665          <idle>-0     (-----) [007] d..1 82315.935282: cpu_idle: state=0 cpu_id=7
46666     rcu_preempt-7     (    7) [000] d..3 82315.935295: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
46667     rcu_preempt-7     (    7) [000] d.h2 82315.935302: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46668    RenderThread-16607 (10023) [006] d..1 82315.935313: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
46669         rcuop/6-61    (   61) [001] d..2 82315.935320: 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
46670         rcuop/4-45    (   45) [001] dn.2 82315.935327: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=002
46671     rcu_preempt-7     (    7) [000] d.h3 82315.935329: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
46672    RenderThread-16607 (10023) [006] d..2 82315.935329: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
46673     rcu_preempt-7     (    7) [000] d..2 82315.935333: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
46674          <idle>-0     (-----) [007] .n.1 82315.935335: cpu_idle: state=4294967295 cpu_id=7
46675          <idle>-0     (-----) [007] d..2 82315.935343: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
46676    RenderThread-16607 (10023) [006] d..2 82315.935361: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
46677         rcuop/4-45    (   45) [001] dn.3 82315.935365: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
46678     rcu_preempt-7     (    7) [000] d..3 82315.935372: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
46679          <idle>-0     (-----) [006] d..1 82315.935378: cpu_idle: state=0 cpu_id=6
46680         rcuop/4-45    (   45) [001] d..2 82315.935384: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46681     rcu_preempt-7     (    7) [000] d..2 82315.935391: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
46682 kgsl_worker_thr-258   (  258) [001] d..2 82315.935409: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=rcuop/5 next_pid=53 next_prio=120
46683         rcuop/5-53    (   53) [001] d..2 82315.935426: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
46684         rcuop/0-10    (   10) [001] d..2 82315.935432: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
46685          system-104   (  104) [003] d.s3 82315.935437: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
46686 s.nexuslauncher-10023 (10023) [007] d..3 82315.935444: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=006
46687         rcuop/0-10    (   10) [001] d..3 82315.935448: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
46688          system-104   (  104) [003] d.s4 82315.935457: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
46689 s.nexuslauncher-10023 (10023) [007] d..4 82315.935458: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=006
46690          <idle>-0     (-----) [006] .n.1 82315.935465: cpu_idle: state=4294967295 cpu_id=6
46691         rcuop/0-10    (   10) [001] d..2 82315.935467: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46692          <idle>-0     (-----) [006] d..2 82315.935474: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
46693 s.nexuslauncher-10023 (10023) [007] d..2 82315.935481: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46694 kgsl_worker_thr-258   (  258) [001] d..2 82315.935482: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=rcuop/1 next_pid=21 next_prio=120
46695    RenderThread-16607 (10023) [006] d..1 82315.935490: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
46696          <idle>-0     (-----) [007] d..1 82315.935493: cpu_idle: state=0 cpu_id=7
46697         rcuop/1-21    (   21) [001] d..2 82315.935494: 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
46698          system-104   (  104) [003] d.s4 82315.935494: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
46699    RenderThread-16607 (10023) [006] d..2 82315.935499: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
46700  kworker/u16:13-1147  ( 1147) [000] d..2 82315.935505: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46701          <idle>-0     (-----) [007] .n.1 82315.935506: cpu_idle: state=4294967295 cpu_id=7
46702          <idle>-0     (-----) [007] d..2 82315.935514: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
46703    RenderThread-16607 (10023) [006] d..2 82315.935517: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
46704          system-104   (  104) [003] d.s5 82315.935518: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46705          <idle>-0     (-----) [000] d..2 82315.935524: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46706          <idle>-0     (-----) [006] d..1 82315.935524: cpu_idle: state=0 cpu_id=6
46707         rcuop/0-10    (   10) [001] d..2 82315.935547: 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
46708 kgsl_worker_thr-258   (  258) [000] d..2 82315.935555: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46709          <idle>-0     (-----) [000] d..1 82315.935563: cpu_idle: state=0 cpu_id=0
46710         rcuop/4-45    (   45) [001] d..2 82315.935565: 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
46711          system-104   (  104) [003] d.s4 82315.935572: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46712          <idle>-0     (-----) [001] d..1 82315.935579: cpu_idle: state=0 cpu_id=1
46713          system-104   (  104) [003] d.s5 82315.935584: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46714          <idle>-0     (-----) [000] .n.1 82315.935589: cpu_idle: state=4294967295 cpu_id=0
46715          <idle>-0     (-----) [000] d..2 82315.935597: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46716 kgsl_worker_thr-258   (  258) [000] d..2 82315.935620: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46717          <idle>-0     (-----) [000] d..1 82315.935627: cpu_idle: state=0 cpu_id=0
46718 s.nexuslauncher-10023 (10023) [007] .... 82315.935633: binder_transaction: transaction=1569240 dest_node=1160153 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x6
46719 s.nexuslauncher-10023 (10023) [007] .... 82315.935636: binder_transaction_alloc_buf: transaction=1569240 data_size=120 offsets_size=8
46720 s.nexuslauncher-10023 (10023) [007] d..4 82315.935648: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
46721 s.nexuslauncher-10023 (10023) [007] dn.5 82315.935670: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
46722          system-104   (  104) [003] d.s4 82315.935703: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46723 s.nexuslauncher-10023 (10023) [007] d..2 82315.935707: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
46724          system-104   (  104) [003] d.s5 82315.935715: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46725<...>-9062 ( 8943) [007] .... 82315.935718: binder_transaction_received: transaction=1569240
46726          <idle>-0     (-----) [000] .n.1 82315.935720: cpu_idle: state=4294967295 cpu_id=0
46727          <idle>-0     (-----) [000] d..2 82315.935727: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46728 kgsl_worker_thr-258   (  258) [000] d..2 82315.935747: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46729          system-104   (  104) [003] d.s3 82315.935752: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46730          <idle>-0     (-----) [000] d..1 82315.935753: cpu_idle: state=0 cpu_id=0
46731          system-104   (  104) [003] d.s4 82315.935763: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46732          <idle>-0     (-----) [000] .n.1 82315.935768: cpu_idle: state=4294967295 cpu_id=0
46733          <idle>-0     (-----) [000] d..2 82315.935775: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46734 kgsl_worker_thr-258   (  258) [000] d..2 82315.935800: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46735          <idle>-0     (-----) [000] d..1 82315.935805: cpu_idle: state=0 cpu_id=0
46736          <idle>-0     (-----) [000] d.h2 82315.935902: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46737          <idle>-0     (-----) [000] dnh3 82315.935910: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46738          <idle>-0     (-----) [000] .n.1 82315.935916: cpu_idle: state=4294967295 cpu_id=0
46739          <idle>-0     (-----) [000] d..2 82315.935922: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46740 kgsl_worker_thr-258   (  258) [000] d..2 82315.936115: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46741          <idle>-0     (-----) [000] d..1 82315.936125: cpu_idle: state=0 cpu_id=0
46742          <idle>-0     (-----) [001] d.s3 82315.936165: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46743          <idle>-0     (-----) [001] d.s4 82315.936182: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46744          <idle>-0     (-----) [000] .n.1 82315.936187: cpu_idle: state=4294967295 cpu_id=0
46745          <idle>-0     (-----) [001] ...1 82315.936192: cpu_idle: state=4294967295 cpu_id=1
46746          <idle>-0     (-----) [000] d..2 82315.936195: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46747          <idle>-0     (-----) [001] d..1 82315.936196: cpu_idle: state=0 cpu_id=1
46748<...>-9062 ( 8943) [007] .... 82315.936248: binder_transaction: transaction=1569241 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
46749<...>-9062 ( 8943) [007] .... 82315.936254: binder_transaction_alloc_buf: transaction=1569241 data_size=380 offsets_size=16
46750 kgsl_worker_thr-258   (  258) [000] d..2 82315.936260: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46751          <idle>-0     (-----) [000] d..1 82315.936266: cpu_idle: state=0 cpu_id=0
46752<...>-9062 ( 8943) [007] ...2 82315.936271: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
46753<...>-9062 ( 8943) [007] d..4 82315.936275: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=006
46754<...>-9062 ( 8943) [007] d..5 82315.936288: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=006
46755          <idle>-0     (-----) [006] .n.1 82315.936292: cpu_idle: state=4294967295 cpu_id=6
46756<...>-9062 ( 8943) [007] d..2 82315.936299: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
46757          <idle>-0     (-----) [006] d..2 82315.936299: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
46758<...>-8951 ( 8858) [006] .... 82315.936310: binder_transaction_received: transaction=1569241
46759 s.nexuslauncher-10023 (10023) [007] d..2 82315.936329: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46760          <idle>-0     (-----) [007] d..1 82315.936344: cpu_idle: state=0 cpu_id=7
46761          <idle>-0     (-----) [000] d.h2 82315.936362: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46762          <idle>-0     (-----) [000] dnh3 82315.936371: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46763          <idle>-0     (-----) [000] .n.1 82315.936377: cpu_idle: state=4294967295 cpu_id=0
46764          <idle>-0     (-----) [000] d..2 82315.936385: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46765<...>-8951 ( 8858) [006] .... 82315.936388: binder_transaction: transaction=1569242 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
46766<...>-8951 ( 8858) [006] .... 82315.936393: binder_transaction_alloc_buf: transaction=1569242 data_size=0 offsets_size=0
46767<...>-8951 ( 8858) [006] d..2 82315.936396: sched_waking: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=007
46768<...>-8951 ( 8858) [006] dn.3 82315.936413: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=006
46769<...>-8951 ( 8858) [006] d..2 82315.936419: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
46770<...>-9062 ( 8943) [006] .... 82315.936429: binder_transaction_received: transaction=1569242
46771    RenderThread-9436  ( 9105) [002] d.h3 82315.936621: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
46772    RenderThread-9436  ( 9105) [002] d.h4 82315.936654: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
46773          <idle>-0     (-----) [001] .n.1 82315.936658: cpu_idle: state=4294967295 cpu_id=1
46774          <idle>-0     (-----) [001] d..2 82315.936668: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
46775<...>-5340 ( 788) [001] d..1 82315.936813: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
46776<...>-9062 ( 8943) [006] d..3 82315.936816: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
46777<...>-9062 ( 8943) [006] d..4 82315.936838: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
46778          <idle>-0     (-----) [004] .n.1 82315.936845: cpu_idle: state=4294967295 cpu_id=4
46779<...>-5340 ( 788) [001] d..2 82315.936851: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
46780          <idle>-0     (-----) [004] d..2 82315.936855: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
46781<...>-8969 ( 8943) [004] d..2 82315.936906: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46782          <idle>-0     (-----) [004] d..1 82315.936917: cpu_idle: state=0 cpu_id=4
46783<...>-5340 ( 788) [001] ...1 82315.936996: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
46784<...>-5340 ( 788) [001] ...1 82315.937002: tracing_mark_write: E|788
46785<...>-5340 ( 788) [001] .... 82315.937045: binder_transaction: transaction=1569243 dest_node=1569234 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
46786<...>-5340 ( 788) [001] .... 82315.937050: binder_transaction_alloc_buf: transaction=1569243 data_size=60 offsets_size=0
46787<...>-5340 ( 788) [001] d..4 82315.937057: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=005
46788          <idle>-0     (-----) [004] ...1 82315.937076: cpu_idle: state=4294967295 cpu_id=4
46789          <idle>-0     (-----) [004] d..1 82315.937080: cpu_idle: state=0 cpu_id=4
46790          <idle>-0     (-----) [005] ...1 82315.937082: cpu_idle: state=4294967295 cpu_id=5
46791          <idle>-0     (-----) [007] ...1 82315.937084: cpu_idle: state=4294967295 cpu_id=7
46792          <idle>-0     (-----) [005] d..1 82315.937087: cpu_idle: state=0 cpu_id=5
46793          <idle>-0     (-----) [007] d..1 82315.937088: cpu_idle: state=0 cpu_id=7
46794          <idle>-0     (-----) [004] dnh2 82315.937095: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
46795          <idle>-0     (-----) [004] .n.1 82315.937099: cpu_idle: state=4294967295 cpu_id=4
46796<...>-9062 ( 8943) [006] .... 82315.937100: binder_transaction: transaction=1569244 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
46797 kgsl_worker_thr-258   (  258) [000] d..2 82315.937101: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
46798          <idle>-0     (-----) [004] d..2 82315.937107: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
46799<...>-9062 ( 8943) [006] .... 82315.937107: binder_transaction_alloc_buf: transaction=1569244 data_size=96 offsets_size=0
46800<...>-9062 ( 8943) [006] d..4 82315.937114: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=003
46801           <...>-27571 (-----) [004] .... 82315.937121: binder_transaction_received: transaction=1569243
46802 kgsl_worker_thr-258   (  258) [000] d..3 82315.937125: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
46803<...>-5340 ( 788) [001] ...1 82315.937139: tracing_mark_write: E|788
46804<...>-9062 ( 8943) [006] d..5 82315.937148: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
46805<...>-5340 ( 788) [001] .... 82315.937151: binder_transaction: transaction=1569245 dest_node=0 dest_proc=27550 dest_thread=27577 reply=1 flags=0x0 code=0x0
46806          <idle>-0     (-----) [007] .n.1 82315.937153: cpu_idle: state=4294967295 cpu_id=7
46807<...>-5340 ( 788) [001] .... 82315.937155: binder_transaction_alloc_buf: transaction=1569245 data_size=8 offsets_size=0
46808<...>-5340 ( 788) [001] d..2 82315.937158: sched_waking: comm=id.nn.benchmark pid=27577 prio=110 target_cpu=004
46809           <...>-27571 (-----) [004] ...1 82315.937173: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
46810           <...>-27571 (-----) [004] ...1 82315.937185: tracing_mark_write: E|27550
46811          <idle>-0     (-----) [007] d..2 82315.937191: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
46812<...>-9132 ( 9105) [007] .... 82315.937202: binder_transaction_received: transaction=1569244
46813<...>-5340 ( 788) [001] d..3 82315.937212: sched_wakeup: comm=id.nn.benchmark pid=27577 prio=110 target_cpu=001
46814<...>-5340 ( 788) [001] .... 82315.937266: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
46815           <...>-27571 (-----) [004] d..2 82315.937283: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46816 kgsl_worker_thr-258   (  258) [000] d..2 82315.937287: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
46817          <idle>-0     (-----) [004] d..1 82315.937295: cpu_idle: state=0 cpu_id=4
46818 neuralnetworks@-13088 (  788) [000] d..2 82315.937332: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
46819<...>-9062 ( 8943) [006] d..3 82315.937332: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
46820  kworker/u16:13-1147  ( 1147) [000] d..2 82315.937348: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
46821<...>-9062 ( 8943) [006] d..4 82315.937350: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
46822<...>-5340 ( 788) [001] d..2 82315.937359: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27577 next_prio=110
46823           <...>-27577 (-----) [001] .... 82315.937368: binder_transaction_received: transaction=1569245
46824  kworker/u16:13-1147  ( 1147) [000] d..3 82315.937381: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
46825  kworker/u16:13-1147  ( 1147) [000] d.h1 82315.937390: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46826<...>-9132 ( 9105) [007] d..2 82315.937405: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
46827  kworker/u16:13-1147  ( 1147) [000] d.h2 82315.937410: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
46828    RenderThread-9436  ( 9105) [002] d..2 82315.937425: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46829           <...>-27577 (-----) [001] ...1 82315.937441: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
46830           <...>-27577 (-----) [001] ...1 82315.937448: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
46831  kworker/u16:13-1147  ( 1147) [000] d..2 82315.937464: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
46832  kworker/u16:15-1311  ( 1311) [000] d..2 82315.937475: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46833          <idle>-0     (-----) [000] d..1 82315.937489: cpu_idle: state=0 cpu_id=0
46834           <...>-27577 (-----) [001] ...1 82315.937493: tracing_mark_write: E|27550
46835 kgsl_worker_thr-258   (  258) [002] d..2 82315.937496: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=RenderThread next_pid=9436 next_prio=120
46836<...>-8962 ( 8943) [007] d..3 82315.937497: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
46837           <...>-27577 (-----) [001] ...1 82315.937498: tracing_mark_write: E|27550
46838           <...>-27577 (-----) [001] ...1 82315.937502: tracing_mark_write: E|27550
46839          <idle>-0     (-----) [000] dnh2 82315.937522: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
46840          <idle>-0     (-----) [000] .n.1 82315.937529: cpu_idle: state=4294967295 cpu_id=0
46841          <idle>-0     (-----) [000] d..2 82315.937538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
46842<...>-8962 ( 8943) [007] d..2 82315.937561: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
46843          <idle>-0     (-----) [007] d..1 82315.937576: cpu_idle: state=0 cpu_id=7
46844    RenderThread-9436  ( 9105) [002] d.h1 82315.937589: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
46845    RenderThread-9436  ( 9105) [002] d.h2 82315.937612: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46846   system_server-8943  ( 8943) [000] d..2 82315.937626: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46847<...>-9062 ( 8943) [006] .... 82315.937688: binder_transaction: transaction=1569246 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
46848<...>-9062 ( 8943) [006] .... 82315.937693: binder_transaction_alloc_buf: transaction=1569246 data_size=76 offsets_size=0
46849<...>-9062 ( 8943) [006] ...2 82315.937697: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
46850<...>-9062 ( 8943) [006] d..4 82315.937700: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=002
46851 kgsl_worker_thr-258   (  258) [000] d..2 82315.937712: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=system_server next_pid=8943 next_prio=118
46852<...>-9062 ( 8943) [006] d..5 82315.937728: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=004
46853          <idle>-0     (-----) [004] .n.1 82315.937733: cpu_idle: state=4294967295 cpu_id=4
46854          <idle>-0     (-----) [004] d..2 82315.937765: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
46855    RenderThread-9436  ( 9105) [002] .... 82315.937766: binder_transaction: transaction=1569247 dest_node=410793 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
46856    RenderThread-9436  ( 9105) [002] .... 82315.937770: binder_transaction_alloc_buf: transaction=1569247 data_size=192 offsets_size=8
46857<...>-9062 ( 8943) [006] d..2 82315.937773: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
46858           <...>-27577 (-----) [001] ...1 82315.937776: tracing_mark_write: E|27550
46859<...>-8874 ( 8858) [004] .... 82315.937777: binder_transaction_received: transaction=1569246
46860    RenderThread-9436  ( 9105) [002] d..4 82315.937783: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
46861<...>-8951 ( 8858) [006] .... 82315.937783: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
46862   system_server-8943  ( 8943) [000] .... 82315.937797: binder_transaction: transaction=1569248 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
46863           <...>-27577 (-----) [001] d..1 82315.937800: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=003
46864    RenderThread-9436  ( 9105) [002] dn.5 82315.937806: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
46865   system_server-8943  ( 8943) [000] d.h2 82315.937807: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46866    RenderThread-9436  ( 9105) [002] d..2 82315.937814: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
46867   system_server-8943  ( 8943) [000] dnh3 82315.937822: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
46868<...>-13083 ( 8858) [002] .... 82315.937825: binder_transaction_received: transaction=1569247
46869   system_server-8943  ( 8943) [000] .n.. 82315.937827: binder_transaction_alloc_buf: transaction=1569248 data_size=96 offsets_size=0
46870   system_server-8943  ( 8943) [000] d..2 82315.937835: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
46871          <idle>-0     (-----) [005] dnh2 82315.937841: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
46872<...>-8874 ( 8858) [004] .... 82315.937856: binder_transaction: transaction=1569249 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
46873<...>-8874 ( 8858) [004] .... 82315.937859: binder_transaction_alloc_buf: transaction=1569249 data_size=0 offsets_size=0
46874<...>-8874 ( 8858) [004] d..2 82315.937862: sched_waking: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=006
46875          <idle>-0     (-----) [005] .n.1 82315.937884: cpu_idle: state=4294967295 cpu_id=5
46876<...>-8951 ( 8858) [006] d..2 82315.937895: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
46877          <idle>-0     (-----) [005] d..2 82315.937896: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
46878<...>-8874 ( 8858) [004] d..3 82315.937911: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=007
46879          <idle>-0     (-----) [006] d..1 82315.937914: cpu_idle: state=0 cpu_id=6
46880<...>-8874 ( 8858) [004] .... 82315.937915: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
46881          <idle>-0     (-----) [007] .n.1 82315.937919: cpu_idle: state=4294967295 cpu_id=7
46882          <idle>-0     (-----) [007] d..2 82315.937928: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
46883<...>-9062 ( 8943) [007] .... 82315.937936: binder_transaction_received: transaction=1569249
46884           <...>-27550 (-----) [005] d..2 82315.937938: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
46885          <idle>-0     (-----) [005] d..1 82315.937949: cpu_idle: state=0 cpu_id=5
46886<...>-8874 ( 8858) [004] d..2 82315.937954: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
46887          <idle>-0     (-----) [004] d..1 82315.937966: cpu_idle: state=0 cpu_id=4
46888<...>-13083 ( 8858) [002] .... 82315.937990: binder_transaction: transaction=1569250 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
46889<...>-13083 ( 8858) [002] .... 82315.937995: binder_transaction_alloc_buf: transaction=1569250 data_size=68 offsets_size=0
46890<...>-13083 ( 8858) [002] d..2 82315.938035: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
46891    RenderThread-9436  ( 9105) [002] .... 82315.938044: binder_transaction_received: transaction=1569250
46892           <...>-27577 (-----) [001] d..1 82315.938046: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
46893          <idle>-0     (-----) [005] dnh2 82315.938067: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
46894          <idle>-0     (-----) [005] .n.1 82315.938071: cpu_idle: state=4294967295 cpu_id=5
46895 kgsl_worker_thr-258   (  258) [000] d..2 82315.938079: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
46896          <idle>-0     (-----) [005] d..2 82315.938079: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
46897   system_server-8943  ( 8943) [000] d..4 82315.938085: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
46898          <idle>-0     (-----) [006] dnh2 82315.938121: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
46899           <...>-27577 (-----) [001] d..2 82315.938124: sched_switch: prev_comm=id.nn.benchmark prev_pid=27577 prev_prio=110 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
46900          <idle>-0     (-----) [006] .n.1 82315.938126: cpu_idle: state=4294967295 cpu_id=6
46901           <...>-27550 (-----) [005] ...1 82315.938129: tracing_mark_write: E|27550
46902          <idle>-0     (-----) [006] d..2 82315.938134: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
46903           <...>-27550 (-----) [005] ...1 82315.938136: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
46904<...>-9132 ( 9105) [006] .... 82315.938143: binder_transaction_received: transaction=1569248
46905           <...>-27550 (-----) [005] ...1 82315.938144: tracing_mark_write: E|27550
46906           <...>-27550 (-----) [005] ...1 82315.938148: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
46907          <idle>-0     (-----) [001] d..1 82315.938153: cpu_idle: state=0 cpu_id=1
46908           <...>-27550 (-----) [005] ...1 82315.938154: tracing_mark_write: E|27550
46909    RenderThread-9436  ( 9105) [002] d..2 82315.938157: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
46910           <...>-27550 (-----) [005] ...1 82315.938162: tracing_mark_write: E|27550
46911   system_server-8943  ( 8943) [000] d..2 82315.938178: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46912          <idle>-0     (-----) [002] d..1 82315.938181: cpu_idle: state=0 cpu_id=2
46913          <idle>-0     (-----) [000] d..1 82315.938192: cpu_idle: state=0 cpu_id=0
46914           <...>-27550 (-----) [005] ...1 82315.938278: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
46915<...>-9132 ( 9105) [006] d..2 82315.938298: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
46916          <idle>-0     (-----) [006] d..1 82315.938314: cpu_idle: state=0 cpu_id=6
46917           <...>-27550 (-----) [005] ...1 82315.938352: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
46918           <...>-27550 (-----) [005] ...1 82315.938359: tracing_mark_write: E|27550
46919           <...>-27550 (-----) [005] ...1 82315.938363: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
46920           <...>-27550 (-----) [005] ...1 82315.938371: tracing_mark_write: E|27550
46921           <...>-27550 (-----) [005] ...1 82315.938375: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
46922           <...>-27550 (-----) [005] ...1 82315.938380: tracing_mark_write: E|27550
46923           <...>-27550 (-----) [005] ...1 82315.938384: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
46924          <idle>-0     (-----) [002] d.s2 82315.938472: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
46925          system-104   (  104) [003] d.s2 82315.938486: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
46926          <idle>-0     (-----) [002] dns3 82315.938489: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
46927          system-104   (  104) [003] d.s3 82315.938501: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
46928          <idle>-0     (-----) [002] .n.1 82315.938505: cpu_idle: state=4294967295 cpu_id=2
46929          <idle>-0     (-----) [000] .n.1 82315.938508: cpu_idle: state=4294967295 cpu_id=0
46930          <idle>-0     (-----) [002] d..2 82315.938513: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
46931          <idle>-0     (-----) [000] d..2 82315.938520: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
46932<...>-8 ( 8) [002] d..2 82315.938525: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
46933          <idle>-0     (-----) [004] .n.1 82315.938550: cpu_idle: state=4294967295 cpu_id=4
46934           <...>-27550 (-----) [005] ...1 82315.938554: tracing_mark_write: E|27550
46935<...>-8 ( 8) [002] d..3 82315.938556: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
46936           <...>-27550 (-----) [005] ...1 82315.938560: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
46937          <idle>-0     (-----) [004] d..2 82315.938560: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27578 next_prio=110
46938           <...>-27550 (-----) [005] d..2 82315.938581: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
46939<...>-8 ( 8) [002] d..2 82315.938583: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
46940<...>-46 ( 46) [002] d..2 82315.938592: sched_waking: comm=rcuos/5 pid=54 prio=120 target_cpu=002
46941          <idle>-0     (-----) [005] d..1 82315.938598: cpu_idle: state=0 cpu_id=5
46942<...>-46 ( 46) [002] d..3 82315.938607: sched_wakeup: comm=rcuos/5 pid=54 prio=120 target_cpu=002
46943<...>-46 ( 46) [002] d..2 82315.938615: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuos/5 next_pid=54 next_prio=120
46944          <idle>-0     (-----) [006] ...1 82315.938632: cpu_idle: state=4294967295 cpu_id=6
46945          <idle>-0     (-----) [006] d..1 82315.938635: cpu_idle: state=0 cpu_id=6
46946<...>-54 ( 54) [002] d..2 82315.938637: sched_switch: prev_comm=rcuos/5 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
46947  kworker/u16:15-1311  ( 1311) [000] .... 82315.938639: clk_set_rate: l3_cluster0_vote_clk 844800000
46948           <...>-27578 (-----) [004] ...1 82315.938643: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
46949  kworker/u16:15-1311  ( 1311) [000] .... 82315.938646: clk_set_rate: l3_clk 844800000
46950          <idle>-0     (-----) [002] d..1 82315.938649: cpu_idle: state=0 cpu_id=2
46951           <...>-27578 (-----) [004] ...1 82315.938663: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
46952           <...>-27578 (-----) [004] ...1 82315.938668: tracing_mark_write: E|27550
46953           <...>-27578 (-----) [004] .... 82315.938717: binder_transaction: transaction=1569251 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
46954           <...>-27578 (-----) [004] .... 82315.938720: binder_transaction_alloc_buf: transaction=1569251 data_size=48 offsets_size=0
46955           <...>-27578 (-----) [004] ...2 82315.938724: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
46956           <...>-27578 (-----) [004] d..4 82315.938727: sched_waking: [email protected] pid=770 prio=110 target_cpu=004
46957           <...>-27578 (-----) [004] dn.5 82315.938738: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=004
46958           <...>-27578 (-----) [004] d..2 82315.938745: sched_switch: prev_comm=id.nn.benchmark prev_pid=27578 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
46959<...>-770 ( 770) [004] .... 82315.938755: binder_transaction_received: transaction=1569251
46960<...>-9062 ( 8943) [007] d..3 82315.938773: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
46961<...>-770 ( 770) [004] ...1 82315.938788: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
46962          <idle>-0     (-----) [001] dnh2 82315.938797: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
46963          <idle>-0     (-----) [001] .n.1 82315.938803: cpu_idle: state=4294967295 cpu_id=1
46964          <idle>-0     (-----) [001] d..2 82315.938812: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
46965<...>-9039 ( 8943) [001] d..2 82315.938861: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46966          <idle>-0     (-----) [001] d..1 82315.938871: cpu_idle: state=0 cpu_id=1
46967<...>-770 ( 770) [004] d..2 82315.938915: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
46968  kworker/u16:15-1311  ( 1311) [000] d..2 82315.938930: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
46969          <idle>-0     (-----) [000] d..1 82315.938938: cpu_idle: state=0 cpu_id=0
46970          <idle>-0     (-----) [000] dnh2 82315.938953: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
46971          <idle>-0     (-----) [000] .n.1 82315.938958: cpu_idle: state=4294967295 cpu_id=0
46972          <idle>-0     (-----) [000] d..2 82315.938964: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
46973          <idle>-0     (-----) [001] d.s3 82315.938965: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
46974<...>-770 ( 770) [004] ...1 82315.938978: tracing_mark_write: E|770
46975          <idle>-0     (-----) [001] d.s4 82315.938985: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
46976<...>-770 ( 770) [004] .... 82315.938987: binder_transaction: transaction=1569252 dest_node=0 dest_proc=27550 dest_thread=27578 reply=1 flags=0x0 code=0x0
46977          <idle>-0     (-----) [001] dns4 82315.938989: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
46978<...>-770 ( 770) [004] .... 82315.938990: binder_transaction_alloc_buf: transaction=1569252 data_size=168 offsets_size=32
46979          <idle>-0     (-----) [001] .n.1 82315.938996: cpu_idle: state=4294967295 cpu_id=1
46980<...>-770 ( 770) [004] .... 82315.938998: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
46981          <idle>-0     (-----) [001] d..2 82315.939004: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
46982<...>-770 ( 770) [004] d..2 82315.939044: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27578 next_prio=110
46983           <...>-27578 (-----) [004] .... 82315.939059: binder_transaction_received: transaction=1569252
46984<...>-581 ( 571) [000] d..2 82315.939080: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
46985          <idle>-0     (-----) [000] d..1 82315.939087: cpu_idle: state=0 cpu_id=0
46986  kworker/u16:15-1311  ( 1311) [001] .... 82315.939093: clk_set_rate: l3_cluster1_vote_clk 576000000
46987  kworker/u16:15-1311  ( 1311) [001] d..2 82315.939111: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
46988          <idle>-0     (-----) [001] d..1 82315.939121: cpu_idle: state=0 cpu_id=1
46989           <...>-27578 (-----) [004] ...1 82315.939148: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
46990           <...>-27578 (-----) [004] ...1 82315.939153: tracing_mark_write: E|27550
46991           <...>-27578 (-----) [004] .... 82315.939167: binder_transaction: transaction=1569253 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
46992           <...>-27578 (-----) [004] .... 82315.939169: binder_transaction_alloc_buf: transaction=1569253 data_size=48 offsets_size=0
46993           <...>-27578 (-----) [004] ...2 82315.939172: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
46994           <...>-27578 (-----) [004] d..4 82315.939174: sched_waking: [email protected] pid=770 prio=110 target_cpu=004
46995           <...>-27578 (-----) [004] dn.5 82315.939184: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=004
46996           <...>-27578 (-----) [004] d..2 82315.939190: sched_switch: prev_comm=id.nn.benchmark prev_pid=27578 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
46997<...>-770 ( 770) [004] .... 82315.939199: binder_transaction_received: transaction=1569253
46998<...>-770 ( 770) [004] ...1 82315.939215: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
46999<...>-770 ( 770) [004] d..2 82315.939270: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
47000          <idle>-0     (-----) [000] dnh2 82315.939289: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
47001          <idle>-0     (-----) [000] .n.1 82315.939294: cpu_idle: state=4294967295 cpu_id=0
47002          <idle>-0     (-----) [000] d..2 82315.939300: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
47003<...>-770 ( 770) [004] ...1 82315.939301: tracing_mark_write: E|770
47004<...>-770 ( 770) [004] .... 82315.939308: binder_transaction: transaction=1569254 dest_node=0 dest_proc=27550 dest_thread=27578 reply=1 flags=0x0 code=0x0
47005<...>-770 ( 770) [004] .... 82315.939311: binder_transaction_alloc_buf: transaction=1569254 data_size=168 offsets_size=32
47006<...>-770 ( 770) [004] .... 82315.939316: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
47007<...>-581 ( 571) [000] d..2 82315.939337: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47008          <idle>-0     (-----) [000] d..1 82315.939344: cpu_idle: state=0 cpu_id=0
47009<...>-770 ( 770) [004] d..2 82315.939349: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27578 next_prio=110
47010           <...>-27578 (-----) [004] .... 82315.939359: binder_transaction_received: transaction=1569254
47011<...>-9062 ( 8943) [007] d..3 82315.939610: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
47012<...>-9062 ( 8943) [007] d..1 82315.939631: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
47013          <idle>-0     (-----) [001] dnh2 82315.939631: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
47014          <idle>-0     (-----) [001] .n.1 82315.939637: cpu_idle: state=4294967295 cpu_id=1
47015          <idle>-0     (-----) [001] d..2 82315.939644: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
47016<...>-9062 ( 8943) [007] d..2 82315.939652: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
47017           <...>-27578 (-----) [004] ...1 82315.939654: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
47018          <idle>-0     (-----) [005] .n.1 82315.939657: cpu_idle: state=4294967295 cpu_id=5
47019           <...>-27578 (-----) [004] ...1 82315.939666: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
47020          <idle>-0     (-----) [005] d..2 82315.939666: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
47021           <...>-27578 (-----) [004] ...1 82315.939670: tracing_mark_write: E|27550
47022<...>-9039 ( 8943) [001] d..2 82315.939677: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47023          <idle>-0     (-----) [001] d..1 82315.939686: cpu_idle: state=0 cpu_id=1
47024           <...>-27578 (-----) [004] .... 82315.939747: binder_transaction: transaction=1569255 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
47025           <...>-27578 (-----) [004] .... 82315.939751: binder_transaction_alloc_buf: transaction=1569255 data_size=556 offsets_size=104
47026           <...>-27578 (-----) [004] ...2 82315.939769: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
47027           <...>-27578 (-----) [004] d..4 82315.939772: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=001
47028           <...>-27578 (-----) [004] dn.5 82315.939793: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47029           <...>-27578 (-----) [004] dnh5 82315.939832: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=006
47030<...>-8969 ( 8943) [005] d..2 82315.939846: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
47031           <...>-27578 (-----) [004] dnh6 82315.939846: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=006
47032          <idle>-0     (-----) [006] .n.1 82315.939851: cpu_idle: state=4294967295 cpu_id=6
47033           <...>-27578 (-----) [004] d..2 82315.939854: sched_switch: prev_comm=id.nn.benchmark prev_pid=27578 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
47034          <idle>-0     (-----) [005] d..1 82315.939858: cpu_idle: state=0 cpu_id=5
47035          <idle>-0     (-----) [006] d..2 82315.939859: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
47036<...>-5340 ( 788) [004] .... 82315.939865: binder_transaction_received: transaction=1569255
47037         sugov:4-577   (  577) [006] .... 82315.939886: clk_set_rate: perfcl_clk 902400000
47038         sugov:4-577   (  577) [006] .... 82315.939888: clk_set_rate: cpu7_perfcl_clk 825600000
47039         sugov:4-577   (  577) [006] .... 82315.939894: clk_set_rate: cpu6_perfcl_clk 825600000
47040         sugov:4-577   (  577) [006] .... 82315.939899: clk_set_rate: cpu5_perfcl_clk 825600000
47041         sugov:4-577   (  577) [006] .... 82315.939904: clk_set_rate: cpu4_perfcl_clk 902400000
47042         sugov:4-577   (  577) [006] .... 82315.939911: cpu_frequency: state=902400 cpu_id=4
47043         sugov:4-577   (  577) [006] .... 82315.939926: cpu_frequency: state=902400 cpu_id=5
47044         sugov:4-577   (  577) [006] .... 82315.939930: cpu_frequency: state=902400 cpu_id=6
47045         sugov:4-577   (  577) [006] .... 82315.939933: cpu_frequency: state=902400 cpu_id=7
47046<...>-5340 ( 788) [004] ...1 82315.939944: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
47047         sugov:4-577   (  577) [006] d..2 82315.939957: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
47048          <idle>-0     (-----) [006] d..1 82315.939964: cpu_idle: state=0 cpu_id=6
47049<...>-5340 ( 788) [004] d..2 82315.940016: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
47050<...>-5340 ( 788) [004] d..2 82315.940040: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27578 next_prio=110
47051          system-104   (  104) [003] dnh1 82315.940042: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
47052          system-104   (  104) [003] d..2 82315.940052: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
47053           <...>-27578 (-----) [004] d..2 82315.940061: sched_switch: prev_comm=id.nn.benchmark prev_pid=27578 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47054          <idle>-0     (-----) [004] d..1 82315.940078: cpu_idle: state=0 cpu_id=4
47055<...>-87 ( 87) [003] d..2 82315.940088: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
47056<...>-9062 ( 8943) [007] .... 82315.940090: binder_transaction: transaction=1569258 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
47057<...>-9062 ( 8943) [007] .... 82315.940097: binder_transaction_alloc_buf: transaction=1569258 data_size=1520 offsets_size=0
47058<...>-9062 ( 8943) [007] d..2 82315.940101: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
47059          <idle>-0     (-----) [002] d.h4 82315.940110: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
47060<...>-9062 ( 8943) [007] d..3 82315.940112: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
47061          <idle>-0     (-----) [002] dnh5 82315.940135: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
47062          <idle>-0     (-----) [002] .n.1 82315.940143: cpu_idle: state=4294967295 cpu_id=2
47063<...>-9062 ( 8943) [007] d..2 82315.940144: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
47064          <idle>-0     (-----) [002] d..2 82315.940152: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
47065 s.nexuslauncher-10023 (10023) [007] .... 82315.940156: binder_transaction_received: transaction=1569258
47066<...>-86 ( 86) [002] d.h4 82315.940196: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47067          <idle>-0     (-----) [004] dnh2 82315.940216: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47068          <idle>-0     (-----) [004] .n.1 82315.940220: cpu_idle: state=4294967295 cpu_id=4
47069          <idle>-0     (-----) [004] d..2 82315.940227: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
47070<...>-86 ( 86) [002] d..2 82315.940249: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47071          <idle>-0     (-----) [002] d..1 82315.940257: cpu_idle: state=0 cpu_id=2
47072<...>-5340 ( 788) [004] d..1 82315.940302: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
47073          system-104   (  104) [003] dnh1 82315.940336: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
47074          system-104   (  104) [003] d..2 82315.940342: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
47075 neuralnetworks@-13088 (  788) [003] d..2 82315.940386: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
47076<...>-5340 ( 788) [004] d..2 82315.940477: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
47077          system-104   (  104) [003] dnh1 82315.940494: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
47078          system-104   (  104) [003] d..2 82315.940500: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
47079<...>-5340 ( 788) [004] d..2 82315.940502: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47080          <idle>-0     (-----) [004] d..1 82315.940514: cpu_idle: state=0 cpu_id=4
47081<...>-87 ( 87) [003] d..2 82315.940521: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
47082          <idle>-0     (-----) [002] d.h4 82315.940531: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
47083          <idle>-0     (-----) [002] dnh5 82315.940539: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
47084          <idle>-0     (-----) [002] .n.1 82315.940545: cpu_idle: state=4294967295 cpu_id=2
47085          <idle>-0     (-----) [002] d..2 82315.940553: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
47086<...>-86 ( 86) [002] d..2 82315.940575: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47087          <idle>-0     (-----) [002] d..1 82315.940582: cpu_idle: state=0 cpu_id=2
47088 s.nexuslauncher-10023 (10023) [007] d..3 82315.940796: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=006
47089          <idle>-0     (-----) [000] dnh2 82315.940853: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=000
47090          <idle>-0     (-----) [000] .n.1 82315.940858: cpu_idle: state=4294967295 cpu_id=0
47091          <idle>-0     (-----) [000] d..2 82315.940864: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
47092 s.nexuslauncher-10023 (10023) [007] d..2 82315.940870: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
47093          <idle>-0     (-----) [007] d..1 82315.940886: cpu_idle: state=0 cpu_id=7
47094    RenderThread-16607 (10023) [000] d..1 82315.940897: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
47095          <idle>-0     (-----) [007] dnh2 82315.940918: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
47096          <idle>-0     (-----) [007] .n.1 82315.940922: cpu_idle: state=4294967295 cpu_id=7
47097          <idle>-0     (-----) [007] d..2 82315.940930: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
47098    RenderThread-16607 (10023) [000] d..2 82315.940935: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47099          <idle>-0     (-----) [000] d..1 82315.940943: cpu_idle: state=0 cpu_id=0
47100 s.nexuslauncher-10023 (10023) [007] d..3 82315.940989: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=000
47101          <idle>-0     (-----) [000] dnh2 82315.941008: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=000
47102          <idle>-0     (-----) [000] .n.1 82315.941013: cpu_idle: state=4294967295 cpu_id=0
47103 s.nexuslauncher-10023 (10023) [007] d..2 82315.941015: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
47104          <idle>-0     (-----) [000] d..2 82315.941018: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
47105          <idle>-0     (-----) [007] d..1 82315.941024: cpu_idle: state=0 cpu_id=7
47106    RenderThread-16607 (10023) [000] d..1 82315.941072: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
47107          <idle>-0     (-----) [007] dnh2 82315.941091: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
47108          <idle>-0     (-----) [007] .n.1 82315.941095: cpu_idle: state=4294967295 cpu_id=7
47109    RenderThread-16607 (10023) [000] d..2 82315.941099: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47110          <idle>-0     (-----) [007] d..2 82315.941101: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
47111          <idle>-0     (-----) [000] d..1 82315.941106: cpu_idle: state=0 cpu_id=0
47112          system-104   (  104) [003] d..2 82315.941422: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47113          <idle>-0     (-----) [003] d..1 82315.941441: cpu_idle: state=0 cpu_id=3
47114 s.nexuslauncher-10023 (10023) [007] d..3 82315.941503: sched_waking: comm=UiThreadHelper pid=16586 prio=118 target_cpu=006
47115          <idle>-0     (-----) [000] dnh2 82315.941555: sched_wakeup: comm=UiThreadHelper pid=16586 prio=118 target_cpu=000
47116          <idle>-0     (-----) [000] .n.1 82315.941559: cpu_idle: state=4294967295 cpu_id=0
47117          <idle>-0     (-----) [000] d..2 82315.941565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=16586 next_prio=118
47118 s.nexuslauncher-10023 (10023) [007] .... 82315.941671: binder_transaction: transaction=1569259 dest_node=397489 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x2
47119 s.nexuslauncher-10023 (10023) [007] .... 82315.941674: binder_transaction_alloc_buf: transaction=1569259 data_size=192 offsets_size=0
47120 s.nexuslauncher-10023 (10023) [007] d..4 82315.941677: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
47121 s.nexuslauncher-10023 (10023) [007] d..5 82315.941686: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
47122 s.nexuslauncher-10023 (10023) [007] d..2 82315.941696: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
47123<...>-9062 ( 8943) [007] .... 82315.941704: binder_transaction_received: transaction=1569259
47124<...>-16586 ( 10023) [000] d.s1 82315.941807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
47125<...>-16586 ( 10023) [000] d.s2 82315.941823: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
47126<...>-9062 ( 8943) [007] .... 82315.942039: binder_transaction: transaction=1569260 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
47127<...>-9062 ( 8943) [007] .... 82315.942043: binder_transaction_alloc_buf: transaction=1569260 data_size=4 offsets_size=0
47128<...>-9062 ( 8943) [007] d..2 82315.942046: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
47129<...>-9062 ( 8943) [007] d..3 82315.942055: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
47130<...>-9062 ( 8943) [007] d..2 82315.942079: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
47131 s.nexuslauncher-10023 (10023) [007] .... 82315.942088: binder_transaction_received: transaction=1569260
47132          <idle>-0     (-----) [002] d.h4 82315.942170: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47133          <idle>-0     (-----) [004] dnh2 82315.942189: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47134          <idle>-0     (-----) [004] .n.1 82315.942193: cpu_idle: state=4294967295 cpu_id=4
47135          <idle>-0     (-----) [002] ...1 82315.942198: cpu_idle: state=4294967295 cpu_id=2
47136          <idle>-0     (-----) [002] d..1 82315.942201: cpu_idle: state=0 cpu_id=2
47137          <idle>-0     (-----) [004] d..2 82315.942201: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
47138<...>-5340 ( 788) [004] d..1 82315.942251: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
47139 s.nexuslauncher-10023 (10023) [007] d..1 82315.942266: sched_waking: comm=Recents-HighRes pid=16594 prio=131 target_cpu=005
47140          <idle>-0     (-----) [003] dnh2 82315.942270: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
47141          <idle>-0     (-----) [003] .n.1 82315.942275: cpu_idle: state=4294967295 cpu_id=3
47142          <idle>-0     (-----) [003] d..2 82315.942288: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
47143          <idle>-0     (-----) [001] dnh2 82315.942342: sched_wakeup: comm=Recents-HighRes pid=16594 prio=131 target_cpu=001
47144<...>-5340 ( 788) [004] ...1 82315.942343: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
47145          <idle>-0     (-----) [001] .n.1 82315.942347: cpu_idle: state=4294967295 cpu_id=1
47146<...>-5340 ( 788) [004] ...1 82315.942347: tracing_mark_write: E|788
47147          <idle>-0     (-----) [001] d..2 82315.942355: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Recents-HighRes next_pid=16594 next_prio=131
47148 neuralnetworks@-13088 (  788) [003] d..2 82315.942367: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
47149<...>-5340 ( 788) [004] .... 82315.942367: binder_transaction: transaction=1569261 dest_node=1569256 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
47150<...>-5340 ( 788) [004] .... 82315.942370: binder_transaction_alloc_buf: transaction=1569261 data_size=60 offsets_size=0
47151<...>-5340 ( 788) [004] d..4 82315.942374: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
47152<...>-5340 ( 788) [004] d..5 82315.942391: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=005
47153          <idle>-0     (-----) [005] .n.1 82315.942397: cpu_idle: state=4294967295 cpu_id=5
47154     rcu_preempt-7     (    7) [003] d..2 82315.942398: 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
47155          <idle>-0     (-----) [005] d..2 82315.942406: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
47156          <idle>-0     (-----) [003] d..1 82315.942407: cpu_idle: state=0 cpu_id=3
47157<...>-16586 ( 10023) [000] d.h4 82315.942412: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
47158           <...>-27571 (-----) [005] .... 82315.942415: binder_transaction_received: transaction=1569261
47159<...>-5340 ( 788) [004] ...1 82315.942415: tracing_mark_write: E|788
47160<...>-5340 ( 788) [004] .... 82315.942422: binder_transaction: transaction=1569262 dest_node=0 dest_proc=27550 dest_thread=27578 reply=1 flags=0x0 code=0x0
47161<...>-5340 ( 788) [004] .... 82315.942423: binder_transaction_alloc_buf: transaction=1569262 data_size=8 offsets_size=0
47162<...>-5340 ( 788) [004] d..2 82315.942425: sched_waking: comm=id.nn.benchmark pid=27578 prio=110 target_cpu=004
47163<...>-5340 ( 788) [004] d..3 82315.942431: sched_wakeup: comm=id.nn.benchmark pid=27578 prio=110 target_cpu=004
47164<...>-16586 ( 10023) [000] d.h5 82315.942433: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
47165<...>-5340 ( 788) [004] .... 82315.942433: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
47166<...>-16586 ( 10023) [000] d.h4 82315.942437: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
47167          <idle>-0     (-----) [003] .n.1 82315.942438: cpu_idle: state=4294967295 cpu_id=3
47168<...>-16594 ( 10023) [001] d..2 82315.942443: sched_switch: prev_comm=Recents-HighRes prev_pid=16594 prev_prio=131 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47169          <idle>-0     (-----) [003] d..2 82315.942446: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
47170           <...>-27571 (-----) [005] ...1 82315.942446: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
47171<...>-16586 ( 10023) [000] d.h5 82315.942451: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
47172          <idle>-0     (-----) [001] d..1 82315.942453: cpu_idle: state=0 cpu_id=1
47173           <...>-27571 (-----) [005] ...1 82315.942455: tracing_mark_write: E|27550
47174          <idle>-0     (-----) [002] .n.1 82315.942456: cpu_idle: state=4294967295 cpu_id=2
47175          <idle>-0     (-----) [002] d..2 82315.942464: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
47176  crtc_event:111-322   (  322) [003] d..2 82315.942476: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47177<...>-5340 ( 788) [004] d..2 82315.942477: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27578 next_prio=110
47178          <idle>-0     (-----) [003] d..1 82315.942483: cpu_idle: state=0 cpu_id=3
47179           <...>-27578 (-----) [004] .... 82315.942486: binder_transaction_received: transaction=1569262
47180           <...>-27571 (-----) [005] d..2 82315.942489: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
47181          <idle>-0     (-----) [005] d..1 82315.942499: cpu_idle: state=0 cpu_id=5
47182           <...>-27578 (-----) [004] ...1 82315.942522: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
47183           <...>-27578 (-----) [004] ...1 82315.942528: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
47184 s.nexuslauncher-10023 (10023) [007] d..2 82315.942538: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
47185           <...>-27578 (-----) [004] ...1 82315.942551: tracing_mark_write: E|27550
47186           <...>-27578 (-----) [004] ...1 82315.942554: tracing_mark_write: E|27550
47187           <...>-27578 (-----) [004] ...1 82315.942558: tracing_mark_write: E|27550
47188<...>-16586 ( 10023) [000] d.h1 82315.942562: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
47189 crtc_commit:111-321   (  321) [002] d..2 82315.942618: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
47190<...>-16586 ( 10023) [000] d..3 82315.942625: sched_waking: comm=GoogleApiHandle pid=10177 prio=129 target_cpu=005
47191<...>-16586 ( 10023) [000] d..4 82315.942653: sched_wakeup: comm=GoogleApiHandle pid=10177 prio=129 target_cpu=001
47192          <idle>-0     (-----) [001] .n.1 82315.942664: cpu_idle: state=4294967295 cpu_id=1
47193          <idle>-0     (-----) [001] d..2 82315.942703: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=10177 next_prio=129
47194<...>-581 ( 571) [002] d..2 82315.942720: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47195          <idle>-0     (-----) [002] d..1 82315.942728: cpu_idle: state=0 cpu_id=2
47196           <...>-27578 (-----) [004] ...1 82315.942742: tracing_mark_write: E|27550
47197<...>-16586 ( 10023) [000] d..2 82315.942749: sched_switch: prev_comm=UiThreadHelper prev_pid=16586 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47198           <...>-27578 (-----) [004] d..1 82315.942755: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
47199          <idle>-0     (-----) [000] d..1 82315.942764: cpu_idle: state=0 cpu_id=0
47200           <...>-27578 (-----) [004] d..2 82315.942770: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
47201          <idle>-0     (-----) [005] .n.1 82315.942775: cpu_idle: state=4294967295 cpu_id=5
47202          <idle>-0     (-----) [005] d..2 82315.942783: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
47203           <...>-27550 (-----) [005] d..2 82315.942800: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
47204          <idle>-0     (-----) [005] d..1 82315.942807: cpu_idle: state=0 cpu_id=5
47205           <...>-27578 (-----) [004] d..1 82315.942866: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
47206           <...>-27578 (-----) [004] d..2 82315.942875: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
47207          <idle>-0     (-----) [005] .n.1 82315.942879: cpu_idle: state=4294967295 cpu_id=5
47208          <idle>-0     (-----) [005] d..2 82315.942886: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
47209           <...>-27578 (-----) [004] d..2 82315.942918: sched_switch: prev_comm=id.nn.benchmark prev_pid=27578 prev_prio=110 prev_state=x ==> next_comm=swapper/4 next_pid=0 next_prio=120
47210           <...>-27550 (-----) [005] ...1 82315.942918: tracing_mark_write: E|27550
47211           <...>-27550 (-----) [005] ...1 82315.942924: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
47212           <...>-27550 (-----) [005] ...1 82315.942930: tracing_mark_write: E|27550
47213           <...>-27550 (-----) [005] ...1 82315.942933: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
47214          <idle>-0     (-----) [004] d..1 82315.942937: cpu_idle: state=0 cpu_id=4
47215           <...>-27550 (-----) [005] ...1 82315.942937: tracing_mark_write: E|27550
47216           <...>-27550 (-----) [005] ...1 82315.942943: tracing_mark_write: E|27550
47217           <...>-27550 (-----) [005] ...1 82315.943048: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
47218           <...>-27550 (-----) [005] ...1 82315.943102: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
47219           <...>-27550 (-----) [005] ...1 82315.943109: tracing_mark_write: E|27550
47220           <...>-27550 (-----) [005] ...1 82315.943113: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
47221           <...>-27550 (-----) [005] ...1 82315.943119: tracing_mark_write: E|27550
47222           <...>-27550 (-----) [005] ...1 82315.943123: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
47223           <...>-27550 (-----) [005] ...1 82315.943127: tracing_mark_write: E|27550
47224           <...>-27550 (-----) [005] ...1 82315.943131: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
47225          <idle>-0     (-----) [004] .n.1 82315.943231: cpu_idle: state=4294967295 cpu_id=4
47226           <...>-27550 (-----) [005] ...1 82315.943233: tracing_mark_write: E|27550
47227           <...>-27550 (-----) [005] ...1 82315.943237: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
47228          <idle>-0     (-----) [004] d..2 82315.943239: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27579 next_prio=110
47229           <...>-27550 (-----) [005] d..2 82315.943255: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
47230          <idle>-0     (-----) [005] d..1 82315.943270: cpu_idle: state=0 cpu_id=5
47231           <...>-27579 (-----) [004] ...1 82315.943296: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
47232           <...>-27579 (-----) [004] ...1 82315.943310: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
47233           <...>-27579 (-----) [004] ...1 82315.943313: tracing_mark_write: E|27550
47234           <...>-27579 (-----) [004] .... 82315.943336: binder_transaction: transaction=1569263 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
47235           <...>-27579 (-----) [004] .... 82315.943339: binder_transaction_alloc_buf: transaction=1569263 data_size=48 offsets_size=0
47236 s.nexuslauncher-10023 (10023) [007] d..3 82315.943340: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=000
47237           <...>-27579 (-----) [004] ...2 82315.943342: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
47238           <...>-27579 (-----) [004] d..4 82315.943345: sched_waking: [email protected] pid=770 prio=110 target_cpu=004
47239           <...>-27579 (-----) [004] dn.5 82315.943354: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=004
47240           <...>-27579 (-----) [004] d..2 82315.943360: sched_switch: prev_comm=id.nn.benchmark prev_pid=27579 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
47241          <idle>-0     (-----) [000] dnh2 82315.943364: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=000
47242          <idle>-0     (-----) [000] .n.1 82315.943370: cpu_idle: state=4294967295 cpu_id=0
47243<...>-770 ( 770) [004] .... 82315.943370: binder_transaction_received: transaction=1569263
47244          <idle>-0     (-----) [000] d..2 82315.943379: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
47245<...>-770 ( 770) [004] ...1 82315.943395: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
47246    RenderThread-16607 (10023) [000] d..2 82315.943419: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47247          <idle>-0     (-----) [000] d..1 82315.943428: cpu_idle: state=0 cpu_id=0
47248<...>-770 ( 770) [004] d..2 82315.943486: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
47249 s.nexuslauncher-10023 (10023) [007] d..2 82315.943496: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
47250          <idle>-0     (-----) [002] dnh2 82315.943507: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
47251          <idle>-0     (-----) [007] d..1 82315.943509: cpu_idle: state=0 cpu_id=7
47252          <idle>-0     (-----) [002] .n.1 82315.943512: cpu_idle: state=4294967295 cpu_id=2
47253          <idle>-0     (-----) [002] d..2 82315.943518: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
47254<...>-770 ( 770) [004] ...1 82315.943523: tracing_mark_write: E|770
47255<...>-770 ( 770) [004] .... 82315.943530: binder_transaction: transaction=1569264 dest_node=0 dest_proc=27550 dest_thread=27579 reply=1 flags=0x0 code=0x0
47256<...>-770 ( 770) [004] .... 82315.943533: binder_transaction_alloc_buf: transaction=1569264 data_size=168 offsets_size=32
47257<...>-770 ( 770) [004] .... 82315.943539: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
47258<...>-581 ( 571) [002] d..2 82315.943569: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47259<...>-770 ( 770) [004] d..2 82315.943573: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27579 next_prio=110
47260          <idle>-0     (-----) [002] d..1 82315.943575: cpu_idle: state=0 cpu_id=2
47261           <...>-27579 (-----) [004] .... 82315.943582: binder_transaction_received: transaction=1569264
47262<...>-10177 ( 10023) [001] .... 82315.943612: binder_transaction: transaction=1569265 dest_node=1532915 dest_proc=9871 dest_thread=0 reply=0 flags=0x11 code=0x1
47263<...>-10177 ( 10023) [001] .... 82315.943619: binder_transaction_alloc_buf: transaction=1569265 data_size=432 offsets_size=8
47264           <...>-27579 (-----) [004] ...1 82315.943654: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
47265           <...>-27579 (-----) [004] ...1 82315.943659: tracing_mark_write: E|27550
47266           <...>-27579 (-----) [004] .... 82315.943672: binder_transaction: transaction=1569268 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
47267           <...>-27579 (-----) [004] .... 82315.943674: binder_transaction_alloc_buf: transaction=1569268 data_size=48 offsets_size=0
47268           <...>-27579 (-----) [004] ...2 82315.943676: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
47269           <...>-27579 (-----) [004] d..4 82315.943679: sched_waking: [email protected] pid=770 prio=110 target_cpu=004
47270           <...>-27579 (-----) [004] dn.5 82315.943687: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=004
47271           <...>-27579 (-----) [004] d..2 82315.943693: sched_switch: prev_comm=id.nn.benchmark prev_pid=27579 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
47272<...>-770 ( 770) [004] .... 82315.943700: binder_transaction_received: transaction=1569268
47273<...>-770 ( 770) [004] ...1 82315.943716: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
47274<...>-10177 ( 10023) [001] d..4 82315.943727: sched_waking: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=000
47275<...>-10177 ( 10023) [001] dn.5 82315.943763: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=001
47276<...>-770 ( 770) [004] d..2 82315.943765: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
47277<...>-10177 ( 10023) [001] d..2 82315.943771: sched_switch: prev_comm=GoogleApiHandle prev_pid=10177 prev_prio=129 prev_state=R+ ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=120
47278   Binder:9871_1-9893  ( 9871) [001] .... 82315.943780: binder_transaction_received: transaction=1569265
47279          <idle>-0     (-----) [002] dnh2 82315.943784: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
47280          <idle>-0     (-----) [002] .n.1 82315.943789: cpu_idle: state=4294967295 cpu_id=2
47281          <idle>-0     (-----) [002] d..2 82315.943795: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
47282<...>-770 ( 770) [004] ...1 82315.943795: tracing_mark_write: E|770
47283<...>-770 ( 770) [004] .... 82315.943802: binder_transaction: transaction=1569269 dest_node=0 dest_proc=27550 dest_thread=27579 reply=1 flags=0x0 code=0x0
47284<...>-770 ( 770) [004] .... 82315.943804: binder_transaction_alloc_buf: transaction=1569269 data_size=168 offsets_size=32
47285<...>-770 ( 770) [004] .... 82315.943810: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
47286<...>-581 ( 571) [002] d..2 82315.943833: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47287          <idle>-0     (-----) [002] d..1 82315.943839: cpu_idle: state=0 cpu_id=2
47288<...>-770 ( 770) [004] d..2 82315.943841: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27579 next_prio=110
47289           <...>-27579 (-----) [004] .... 82315.943850: binder_transaction_received: transaction=1569269
47290           <...>-27579 (-----) [004] ...1 82315.944096: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
47291           <...>-27579 (-----) [004] ...1 82315.944105: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
47292           <...>-27579 (-----) [004] ...1 82315.944108: tracing_mark_write: E|27550
47293           <...>-27579 (-----) [004] .... 82315.944174: binder_transaction: transaction=1569270 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
47294           <...>-27579 (-----) [004] .... 82315.944177: binder_transaction_alloc_buf: transaction=1569270 data_size=556 offsets_size=104
47295           <...>-27579 (-----) [004] ...2 82315.944191: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
47296           <...>-27579 (-----) [004] d..4 82315.944193: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47297           <...>-27579 (-----) [004] dn.5 82315.944202: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47298           <...>-27579 (-----) [004] d..2 82315.944209: sched_switch: prev_comm=id.nn.benchmark prev_pid=27579 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
47299<...>-5340 ( 788) [004] .... 82315.944218: binder_transaction_received: transaction=1569270
47300<...>-5340 ( 788) [004] ...1 82315.944268: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
47301<...>-5340 ( 788) [004] d..2 82315.944314: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
47302<...>-5340 ( 788) [004] d..2 82315.944349: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27579 next_prio=110
47303          <idle>-0     (-----) [000] dnh2 82315.944351: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
47304          <idle>-0     (-----) [000] .n.1 82315.944356: cpu_idle: state=4294967295 cpu_id=0
47305          <idle>-0     (-----) [000] d..2 82315.944364: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
47306           <...>-27579 (-----) [004] d..2 82315.944370: sched_switch: prev_comm=id.nn.benchmark prev_pid=27579 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47307          <idle>-0     (-----) [004] d..1 82315.944386: cpu_idle: state=0 cpu_id=4
47308<...>-87 ( 87) [000] d..2 82315.944398: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47309          <idle>-0     (-----) [000] d..1 82315.944406: cpu_idle: state=0 cpu_id=0
47310          <idle>-0     (-----) [002] d.h4 82315.944411: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
47311          <idle>-0     (-----) [002] dnh5 82315.944424: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
47312          <idle>-0     (-----) [002] .n.1 82315.944431: cpu_idle: state=4294967295 cpu_id=2
47313          <idle>-0     (-----) [002] d..2 82315.944437: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
47314<...>-86 ( 86) [002] d..2 82315.944464: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47315          <idle>-0     (-----) [002] d..1 82315.944470: cpu_idle: state=0 cpu_id=2
47316          <idle>-0     (-----) [002] d.h4 82315.944489: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47317          <idle>-0     (-----) [004] dnh2 82315.944508: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47318          <idle>-0     (-----) [004] .n.1 82315.944513: cpu_idle: state=4294967295 cpu_id=4
47319          <idle>-0     (-----) [002] ...1 82315.944520: cpu_idle: state=4294967295 cpu_id=2
47320          <idle>-0     (-----) [004] d..2 82315.944520: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
47321          <idle>-0     (-----) [002] d..1 82315.944523: cpu_idle: state=0 cpu_id=2
47322   Binder:9871_1-9893  ( 9871) [001] d..1 82315.944544: sched_waking: comm=lowpool[10] pid=24462 prio=130 target_cpu=003
47323<...>-5340 ( 788) [004] d..1 82315.944571: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
47324   Binder:9871_1-9893  ( 9871) [001] d..2 82315.944581: sched_wakeup: comm=lowpool[10] pid=24462 prio=130 target_cpu=000
47325          <idle>-0     (-----) [000] .n.1 82315.944586: cpu_idle: state=4294967295 cpu_id=0
47326          <idle>-0     (-----) [000] d..2 82315.944594: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
47327          <idle>-0     (-----) [002] dnh2 82315.944604: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
47328          <idle>-0     (-----) [002] .n.1 82315.944608: cpu_idle: state=4294967295 cpu_id=2
47329          <idle>-0     (-----) [002] d..2 82315.944613: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
47330 neuralnetworks@-13088 (  788) [002] d..2 82315.944655: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47331          <idle>-0     (-----) [002] d..1 82315.944661: cpu_idle: state=0 cpu_id=2
47332   Binder:9871_1-9893  ( 9871) [001] d..2 82315.944697: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=10177 next_prio=129
47333<...>-5340 ( 788) [004] d..2 82315.944741: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
47334<...>-24462 ( 9871) [000] d.h4 82315.944757: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
47335<...>-10177 ( 10023) [001] dnh1 82315.944774: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
47336<...>-24462 ( 9871) [000] d.h5 82315.944775: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
47337<...>-5340 ( 788) [004] d..2 82315.944777: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47338          <idle>-0     (-----) [002] .n.1 82315.944780: cpu_idle: state=4294967295 cpu_id=2
47339<...>-10177 ( 10023) [001] d..2 82315.944783: sched_switch: prev_comm=GoogleApiHandle prev_pid=10177 prev_prio=129 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
47340          <idle>-0     (-----) [002] d..2 82315.944785: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
47341          <idle>-0     (-----) [004] d..1 82315.944789: cpu_idle: state=0 cpu_id=4
47342<...>-87 ( 87) [001] d..2 82315.944808: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=10177 next_prio=129
47343 crtc_commit:111-321   (  321) [002] d.h3 82315.944814: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
47344 crtc_commit:111-321   (  321) [002] d.h4 82315.944847: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
47345<...>-10177 ( 10023) [001] d..2 82315.944854: sched_switch: prev_comm=GoogleApiHandle prev_pid=10177 prev_prio=129 prev_state=R+ ==> next_comm=smem_native_cds next_pid=86 next_prio=120
47346<...>-86 ( 86) [001] d..2 82315.944878: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=GoogleApiHandle next_pid=10177 next_prio=129
47347<...>-10177 ( 10023) [001] d..2 82315.944895: sched_switch: prev_comm=GoogleApiHandle prev_pid=10177 prev_prio=129 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47348          <idle>-0     (-----) [001] d..1 82315.944908: cpu_idle: state=0 cpu_id=1
47349 crtc_commit:111-321   (  321) [002] d..2 82315.944927: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47350          <idle>-0     (-----) [002] d..1 82315.944934: cpu_idle: state=0 cpu_id=2
47351<...>-24462 ( 9871) [000] d.h4 82315.945033: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
47352<...>-24462 ( 9871) [000] d.h5 82315.945048: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
47353          <idle>-0     (-----) [003] .n.1 82315.945053: cpu_idle: state=4294967295 cpu_id=3
47354          <idle>-0     (-----) [003] d..2 82315.945060: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
47355  crtc_event:111-322   (  322) [003] d..2 82315.945077: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47356          <idle>-0     (-----) [003] d..1 82315.945083: cpu_idle: state=0 cpu_id=3
47357          <idle>-0     (-----) [002] d.s3 82315.945130: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
47358          <idle>-0     (-----) [002] d.s4 82315.945143: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
47359          <idle>-0     (-----) [002] d.s2 82315.945146: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
47360          <idle>-0     (-----) [003] .n.1 82315.945149: cpu_idle: state=4294967295 cpu_id=3
47361          <idle>-0     (-----) [002] dns3 82315.945157: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
47362          <idle>-0     (-----) [003] d..2 82315.945157: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
47363          <idle>-0     (-----) [002] .n.1 82315.945166: cpu_idle: state=4294967295 cpu_id=2
47364          <idle>-0     (-----) [002] d..2 82315.945173: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
47365  crtc_event:111-322   (  322) [003] d..2 82315.945178: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47366          <idle>-0     (-----) [003] d..1 82315.945183: cpu_idle: state=0 cpu_id=3
47367<...>-8 ( 8) [002] d..2 82315.945197: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47368          <idle>-0     (-----) [002] d..1 82315.945206: cpu_idle: state=0 cpu_id=2
47369<...>-24462 ( 9871) [000] .... 82315.945240: binder_transaction: transaction=1569273 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x17
47370<...>-24462 ( 9871) [000] .... 82315.945244: binder_transaction_alloc_buf: transaction=1569273 data_size=396 offsets_size=8
47371<...>-24462 ( 9871) [000] d..4 82315.945258: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
47372<...>-24462 ( 9871) [000] dn.5 82315.945279: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
47373<...>-24462 ( 9871) [000] d..2 82315.945323: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
47374<...>-9062 ( 8943) [000] .... 82315.945330: binder_transaction_received: transaction=1569273
47375<...>-9062 ( 8943) [000] d..3 82315.945917: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
47376<...>-9062 ( 8943) [000] d..4 82315.945935: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
47377          <idle>-0     (-----) [002] .n.1 82315.945940: cpu_idle: state=4294967295 cpu_id=2
47378          <idle>-0     (-----) [002] d..2 82315.945948: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
47379<...>-9062 ( 8943) [000] .... 82315.946074: binder_transaction: transaction=1569274 dest_node=417398 dest_proc=9871 dest_thread=0 reply=0 flags=0x11 code=0x7
47380<...>-9062 ( 8943) [000] .... 82315.946079: binder_transaction_alloc_buf: transaction=1569274 data_size=424 offsets_size=8
47381<...>-9062 ( 8943) [000] d..4 82315.946090: sched_waking: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=001
47382<...>-9062 ( 8943) [000] d..5 82315.946104: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=001
47383          <idle>-0     (-----) [001] .n.1 82315.946109: cpu_idle: state=4294967295 cpu_id=1
47384          <idle>-0     (-----) [001] d..2 82315.946119: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=120
47385   Binder:9871_1-9893  ( 9871) [001] .... 82315.946124: binder_transaction_received: transaction=1569274
47386<...>-9062 ( 8943) [000] .... 82315.946246: binder_transaction: transaction=1569275 dest_node=0 dest_proc=9871 dest_thread=24462 reply=1 flags=0x0 code=0x0
47387<...>-9062 ( 8943) [000] .... 82315.946250: binder_transaction_alloc_buf: transaction=1569275 data_size=200 offsets_size=0
47388   Binder:9871_1-9893  ( 9871) [001] d..3 82315.946269: sched_waking: comm=.gms.persistent pid=9871 prio=120 target_cpu=006
47389<...>-9062 ( 8943) [000] d..2 82315.946282: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
47390<...>-24462 ( 9871) [000] .... 82315.946290: binder_transaction_received: transaction=1569275
47391   Binder:9871_1-9893  ( 9871) [001] d..4 82315.946316: sched_wakeup: comm=.gms.persistent pid=9871 prio=120 target_cpu=002
47392   Binder:9871_1-9893  ( 9871) [001] d..2 82315.946405: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47393          <idle>-0     (-----) [001] d..1 82315.946416: cpu_idle: state=0 cpu_id=1
47394<...>-821 ( 821) [002] d.h4 82315.946425: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47395          <idle>-0     (-----) [004] dnh2 82315.946446: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47396          <idle>-0     (-----) [004] .n.1 82315.946451: cpu_idle: state=4294967295 cpu_id=4
47397          <idle>-0     (-----) [004] d..2 82315.946458: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
47398<...>-5340 ( 788) [004] d..1 82315.946509: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
47399<...>-821 ( 821) [002] d..2 82315.946533: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=.gms.persistent next_pid=9871 next_prio=120
47400<...>-9871 ( 9871) [002] d.h3 82315.946548: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
47401<...>-5340 ( 788) [004] ...1 82315.946597: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
47402<...>-5340 ( 788) [004] ...1 82315.946601: tracing_mark_write: E|788
47403<...>-5340 ( 788) [004] .... 82315.946616: binder_transaction: transaction=1569276 dest_node=1569271 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
47404<...>-5340 ( 788) [004] .... 82315.946619: binder_transaction_alloc_buf: transaction=1569276 data_size=60 offsets_size=0
47405<...>-5340 ( 788) [004] d..4 82315.946622: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=005
47406<...>-5340 ( 788) [004] d..5 82315.946634: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=005
47407          <idle>-0     (-----) [005] .n.1 82315.946639: cpu_idle: state=4294967295 cpu_id=5
47408          <idle>-0     (-----) [005] d..2 82315.946648: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
47409           <...>-27571 (-----) [005] .... 82315.946653: binder_transaction_received: transaction=1569276
47410<...>-5340 ( 788) [004] ...1 82315.946656: tracing_mark_write: E|788
47411<...>-5340 ( 788) [004] .... 82315.946662: binder_transaction: transaction=1569277 dest_node=0 dest_proc=27550 dest_thread=27579 reply=1 flags=0x0 code=0x0
47412<...>-5340 ( 788) [004] .... 82315.946665: binder_transaction_alloc_buf: transaction=1569277 data_size=8 offsets_size=0
47413<...>-5340 ( 788) [004] d..2 82315.946667: sched_waking: comm=id.nn.benchmark pid=27579 prio=110 target_cpu=004
47414           <...>-27571 (-----) [005] ...1 82315.946672: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
47415<...>-5340 ( 788) [004] d..3 82315.946673: sched_wakeup: comm=id.nn.benchmark pid=27579 prio=110 target_cpu=004
47416<...>-5340 ( 788) [004] .... 82315.946675: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
47417           <...>-27571 (-----) [005] ...1 82315.946678: tracing_mark_write: E|27550
47418           <...>-27571 (-----) [005] d..2 82315.946704: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
47419          <idle>-0     (-----) [005] d..1 82315.946711: cpu_idle: state=0 cpu_id=5
47420<...>-5340 ( 788) [004] d..2 82315.946716: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27579 next_prio=110
47421           <...>-27579 (-----) [004] .... 82315.946726: binder_transaction_received: transaction=1569277
47422           <...>-27579 (-----) [004] ...1 82315.946762: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
47423           <...>-27579 (-----) [004] ...1 82315.946768: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
47424<...>-9871 ( 9871) [002] .... 82315.946788: binder_transaction: transaction=1569278 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x2f
47425           <...>-27579 (-----) [004] ...1 82315.946791: tracing_mark_write: E|27550
47426<...>-9871 ( 9871) [002] .... 82315.946792: binder_transaction_alloc_buf: transaction=1569278 data_size=104 offsets_size=8
47427           <...>-27579 (-----) [004] ...1 82315.946794: tracing_mark_write: E|27550
47428           <...>-27579 (-----) [004] ...1 82315.946797: tracing_mark_write: E|27550
47429<...>-9871 ( 9871) [002] d..4 82315.946801: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
47430<...>-9871 ( 9871) [002] d..5 82315.946825: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
47431          <idle>-0     (-----) [001] .n.1 82315.946830: cpu_idle: state=4294967295 cpu_id=1
47432          <idle>-0     (-----) [001] d..2 82315.946839: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
47433<...>-9062 ( 8943) [001] d.h3 82315.946848: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
47434<...>-9062 ( 8943) [001] d.h4 82315.946870: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
47435          <idle>-0     (-----) [003] .n.1 82315.946875: cpu_idle: state=4294967295 cpu_id=3
47436<...>-9062 ( 8943) [001] .... 82315.946878: binder_transaction_received: transaction=1569278
47437<...>-9871 ( 9871) [002] d..2 82315.946879: sched_switch: prev_comm=.gms.persistent prev_pid=9871 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
47438          <idle>-0     (-----) [003] d..2 82315.946880: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
47439        DispSync-8879  ( 8858) [003] d..1 82315.946923: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
47440 neuralnetworks@-13088 (  788) [002] d..2 82315.946928: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47441          <idle>-0     (-----) [002] d..1 82315.946940: cpu_idle: state=0 cpu_id=2
47442        DispSync-8879  ( 8858) [003] d..2 82315.946945: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
47443          <idle>-0     (-----) [002] .n.1 82315.946950: cpu_idle: state=4294967295 cpu_id=2
47444          <idle>-0     (-----) [002] d..2 82315.946958: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
47445           <...>-27579 (-----) [004] ...1 82315.946973: tracing_mark_write: E|27550
47446        DispSync-8879  ( 8858) [003] d..2 82315.946974: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47447          <idle>-0     (-----) [003] d..1 82315.946980: cpu_idle: state=0 cpu_id=3
47448           <...>-27579 (-----) [004] d..1 82315.946986: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
47449           <...>-27579 (-----) [004] d..2 82315.947000: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
47450          <idle>-0     (-----) [005] .n.1 82315.947005: cpu_idle: state=4294967295 cpu_id=5
47451          <idle>-0     (-----) [005] d..2 82315.947011: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
47452  appEventThread-8881  ( 8858) [002] d..3 82315.947024: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
47453           <...>-27550 (-----) [005] d..2 82315.947027: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
47454          <idle>-0     (-----) [005] d..1 82315.947033: cpu_idle: state=0 cpu_id=5
47455  appEventThread-8881  ( 8858) [002] d..4 82315.947052: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
47456          <idle>-0     (-----) [003] .n.1 82315.947057: cpu_idle: state=4294967295 cpu_id=3
47457          <idle>-0     (-----) [003] d..2 82315.947090: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
47458           <...>-27579 (-----) [004] d..1 82315.947097: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
47459  appEventThread-8881  ( 8858) [002] d..3 82315.947102: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=007
47460           <...>-27579 (-----) [004] d..2 82315.947106: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
47461          <idle>-0     (-----) [005] .n.1 82315.947110: cpu_idle: state=4294967295 cpu_id=5
47462          <idle>-0     (-----) [005] d..2 82315.947116: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
47463          <idle>-0     (-----) [006] dnh2 82315.947127: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
47464          <idle>-0     (-----) [006] .n.1 82315.947131: cpu_idle: state=4294967295 cpu_id=6
47465          <idle>-0     (-----) [006] d..2 82315.947138: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
47466           <...>-27579 (-----) [004] d..2 82315.947145: sched_switch: prev_comm=id.nn.benchmark prev_pid=27579 prev_prio=110 prev_state=x ==> next_comm=swapper/4 next_pid=0 next_prio=120
47467           <...>-27550 (-----) [005] ...1 82315.947145: tracing_mark_write: E|27550
47468           <...>-27550 (-----) [005] ...1 82315.947149: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
47469  appEventThread-8881  ( 8858) [002] d..2 82315.947149: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47470           <...>-27550 (-----) [005] ...1 82315.947156: tracing_mark_write: E|27550
47471          <idle>-0     (-----) [002] d..1 82315.947160: cpu_idle: state=0 cpu_id=2
47472           <...>-27550 (-----) [005] ...1 82315.947160: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
47473          <idle>-0     (-----) [004] d..1 82315.947163: cpu_idle: state=0 cpu_id=4
47474           <...>-27550 (-----) [005] ...1 82315.947164: tracing_mark_write: E|27550
47475           <...>-27550 (-----) [005] ...1 82315.947168: tracing_mark_write: E|27550
47476<...>-9062 ( 8943) [001] d..3 82315.947169: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
47477<...>-9062 ( 8943) [001] d..4 82315.947184: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
47478          <idle>-0     (-----) [002] .n.1 82315.947189: cpu_idle: state=4294967295 cpu_id=2
47479          <idle>-0     (-----) [002] d..2 82315.947197: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
47480           <...>-27550 (-----) [005] ...1 82315.947272: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
47481<...>-9062 ( 8943) [001] d..2 82315.947309: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47482          <idle>-0     (-----) [001] d..1 82315.947324: cpu_idle: state=0 cpu_id=1
47483           <...>-27550 (-----) [005] ...1 82315.947324: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
47484           <...>-27550 (-----) [005] ...1 82315.947329: tracing_mark_write: E|27550
47485           <...>-27550 (-----) [005] ...1 82315.947332: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
47486           <...>-27550 (-----) [005] ...1 82315.947338: tracing_mark_write: E|27550
47487           <...>-27550 (-----) [005] ...1 82315.947341: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
47488 s.nexuslauncher-10023 (10023) [006] .... 82315.947345: binder_transaction: transaction=1569279 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
47489           <...>-27550 (-----) [005] ...1 82315.947346: tracing_mark_write: E|27550
47490           <...>-27550 (-----) [005] ...1 82315.947349: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
47491<...>-24462 ( 9871) [000] d..2 82315.947350: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=003
47492 s.nexuslauncher-10023 (10023) [006] .... 82315.947350: binder_transaction_alloc_buf: transaction=1569279 data_size=80 offsets_size=0
47493<...>-9105 ( 9105) [003] .... 82315.947353: binder_transaction: transaction=1569280 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
47494 s.nexuslauncher-10023 (10023) [006] d..4 82315.947355: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
47495<...>-9105 ( 9105) [003] .... 82315.947357: binder_transaction_alloc_buf: transaction=1569280 data_size=80 offsets_size=0
47496<...>-9105 ( 9105) [003] d..4 82315.947377: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
47497          <idle>-0     (-----) [001] dnh2 82315.947385: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
47498<...>-24462 ( 9871) [000] d..3 82315.947389: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=002
47499          <idle>-0     (-----) [001] .n.1 82315.947391: cpu_idle: state=4294967295 cpu_id=1
47500          <idle>-0     (-----) [001] d..2 82315.947399: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
47501          <idle>-0     (-----) [004] dnh2 82315.947401: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
47502          <idle>-0     (-----) [004] .n.1 82315.947406: cpu_idle: state=4294967295 cpu_id=4
47503<...>-13083 ( 8858) [001] .... 82315.947407: binder_transaction_received: transaction=1569279
47504          <idle>-0     (-----) [004] d..2 82315.947413: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
47505<...>-9105 ( 9105) [003] d..3 82315.947422: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
47506<...>-8874 ( 8858) [004] .... 82315.947423: binder_transaction_received: transaction=1569280
47507          <idle>-0     (-----) [007] .n.1 82315.947438: cpu_idle: state=4294967295 cpu_id=7
47508           <...>-27550 (-----) [005] ...1 82315.947439: tracing_mark_write: E|27550
47509           <...>-27550 (-----) [005] ...1 82315.947443: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
47510<...>-13083 ( 8858) [001] d..1 82315.947444: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
47511          <idle>-0     (-----) [007] d..2 82315.947449: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27580 next_prio=110
47512<...>-9105 ( 9105) [003] d..4 82315.947454: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
47513           <...>-27550 (-----) [005] d..2 82315.947460: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
47514<...>-13083 ( 8858) [001] dn.2 82315.947464: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
47515<...>-8874 ( 8858) [004] d..2 82315.947466: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47516<...>-13083 ( 8858) [001] d..2 82315.947472: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
47517          <idle>-0     (-----) [005] d..1 82315.947474: cpu_idle: state=0 cpu_id=5
47518          <idle>-0     (-----) [004] d..1 82315.947476: cpu_idle: state=0 cpu_id=4
47519  appEventThread-8881  ( 8858) [001] d..2 82315.947487: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
47520<...>-13083 ( 8858) [001] d..1 82315.947490: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
47521<...>-13083 ( 8858) [001] dn.2 82315.947496: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
47522<...>-13083 ( 8858) [001] d..2 82315.947501: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
47523           <...>-27580 (-----) [007] ...1 82315.947521: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
47524  appEventThread-8881  ( 8858) [001] d..1 82315.947527: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
47525           <...>-27580 (-----) [007] ...1 82315.947535: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
47526           <...>-27580 (-----) [007] ...1 82315.947538: tracing_mark_write: E|27550
47527<...>-821 ( 821) [002] d..2 82315.947539: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=rcuos/0 next_pid=11 next_prio=120
47528          <idle>-0     (-----) [004] dnh2 82315.947545: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
47529  appEventThread-8881  ( 8858) [001] d..2 82315.947548: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
47530          <idle>-0     (-----) [004] .n.1 82315.947549: cpu_idle: state=4294967295 cpu_id=4
47531         rcuos/0-11    (   11) [002] d..2 82315.947553: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
47532          <idle>-0     (-----) [004] d..2 82315.947556: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
47533<...>-8874 ( 8858) [004] d..1 82315.947561: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
47534           <...>-27580 (-----) [007] .... 82315.947563: binder_transaction: transaction=1569281 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
47535           <...>-27580 (-----) [007] .... 82315.947566: binder_transaction_alloc_buf: transaction=1569281 data_size=48 offsets_size=0
47536           <...>-27580 (-----) [007] ...2 82315.947569: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
47537           <...>-27580 (-----) [007] d..4 82315.947572: sched_waking: [email protected] pid=770 prio=110 target_cpu=004
47538<...>-13083 ( 8858) [001] d..2 82315.947580: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47539           <...>-27580 (-----) [007] dn.5 82315.947587: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=007
47540          <idle>-0     (-----) [001] dnh3 82315.947589: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
47541           <...>-27580 (-----) [007] d..2 82315.947594: sched_switch: prev_comm=id.nn.benchmark prev_pid=27580 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
47542          <idle>-0     (-----) [001] d..2 82315.947596: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
47543<...>-770 ( 770) [007] .... 82315.947602: binder_transaction_received: transaction=1569281
47544<...>-9105 ( 9105) [003] d..2 82315.947604: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47545<...>-8874 ( 8858) [004] d..2 82315.947607: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47546          <idle>-0     (-----) [003] d..1 82315.947614: cpu_idle: state=0 cpu_id=3
47547          <idle>-0     (-----) [004] d..1 82315.947615: cpu_idle: state=0 cpu_id=4
47548  appEventThread-8881  ( 8858) [001] d..2 82315.947623: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47549<...>-770 ( 770) [007] ...1 82315.947627: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
47550          <idle>-0     (-----) [001] d..1 82315.947635: cpu_idle: state=0 cpu_id=1
47551<...>-770 ( 770) [007] d..2 82315.947710: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
47552    RenderThread-9436  ( 9105) [002] d.h2 82315.947743: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
47553<...>-770 ( 770) [007] ...1 82315.947753: tracing_mark_write: E|770
47554<...>-770 ( 770) [007] .... 82315.947761: binder_transaction: transaction=1569282 dest_node=0 dest_proc=27550 dest_thread=27580 reply=1 flags=0x0 code=0x0
47555<...>-770 ( 770) [007] .... 82315.947763: binder_transaction_alloc_buf: transaction=1569282 data_size=168 offsets_size=32
47556<...>-770 ( 770) [007] .... 82315.947770: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
47557<...>-770 ( 770) [007] d..2 82315.947804: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27580 next_prio=110
47558           <...>-27580 (-----) [007] .... 82315.947814: binder_transaction_received: transaction=1569282
47559           <...>-27580 (-----) [007] ...1 82315.947890: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
47560           <...>-27580 (-----) [007] ...1 82315.947894: tracing_mark_write: E|27550
47561          <idle>-0     (-----) [004] ...1 82315.947900: cpu_idle: state=4294967295 cpu_id=4
47562          <idle>-0     (-----) [004] d..1 82315.947903: cpu_idle: state=0 cpu_id=4
47563           <...>-27580 (-----) [007] .... 82315.947907: binder_transaction: transaction=1569283 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
47564           <...>-27580 (-----) [007] .... 82315.947910: binder_transaction_alloc_buf: transaction=1569283 data_size=48 offsets_size=0
47565           <...>-27580 (-----) [007] ...2 82315.947912: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
47566           <...>-27580 (-----) [007] d..4 82315.947914: sched_waking: [email protected] pid=770 prio=110 target_cpu=007
47567           <...>-27580 (-----) [007] dn.5 82315.947922: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=007
47568           <...>-27580 (-----) [007] d..2 82315.947928: sched_switch: prev_comm=id.nn.benchmark prev_pid=27580 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
47569<...>-770 ( 770) [007] .... 82315.947935: binder_transaction_received: transaction=1569283
47570<...>-770 ( 770) [007] ...1 82315.947950: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
47571    RenderThread-9436  ( 9105) [002] d..1 82315.948002: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
47572    RenderThread-9436  ( 9105) [002] d..2 82315.948018: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
47573          <idle>-0     (-----) [003] .n.1 82315.948024: cpu_idle: state=4294967295 cpu_id=3
47574<...>-770 ( 770) [007] ...1 82315.948025: tracing_mark_write: E|770
47575<...>-770 ( 770) [007] .... 82315.948031: binder_transaction: transaction=1569284 dest_node=0 dest_proc=27550 dest_thread=27580 reply=1 flags=0x0 code=0x0
47576          <idle>-0     (-----) [003] d..2 82315.948032: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
47577<...>-770 ( 770) [007] .... 82315.948033: binder_transaction_alloc_buf: transaction=1569284 data_size=168 offsets_size=32
47578<...>-770 ( 770) [007] .... 82315.948039: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
47579<...>-770 ( 770) [007] d..2 82315.948070: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27580 next_prio=110
47580    RenderThread-9436  ( 9105) [002] .... 82315.948071: binder_transaction: transaction=1569285 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
47581    RenderThread-9436  ( 9105) [002] .... 82315.948075: binder_transaction_alloc_buf: transaction=1569285 data_size=104 offsets_size=0
47582           <...>-27580 (-----) [007] .... 82315.948079: binder_transaction_received: transaction=1569284
47583    RenderThread-9436  ( 9105) [002] d..4 82315.948080: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
47584          <idle>-0     (-----) [004] dnh2 82315.948097: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
47585          <idle>-0     (-----) [004] .n.1 82315.948100: cpu_idle: state=4294967295 cpu_id=4
47586    RenderThread-9436  ( 9105) [002] d..2 82315.948101: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
47587          <idle>-0     (-----) [004] d..2 82315.948106: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
47588<...>-8874 ( 8858) [004] .... 82315.948110: binder_transaction_received: transaction=1569285
47589<...>-8874 ( 8858) [004] .... 82315.948157: binder_transaction: transaction=1569286 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
47590<...>-9105 ( 9105) [003] d..2 82315.948159: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47591<...>-8874 ( 8858) [004] .... 82315.948161: binder_transaction_alloc_buf: transaction=1569286 data_size=52 offsets_size=8
47592<...>-8874 ( 8858) [004] d..2 82315.948167: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
47593          <idle>-0     (-----) [003] d..1 82315.948168: cpu_idle: state=0 cpu_id=3
47594          <idle>-0     (-----) [001] dnh2 82315.948193: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
47595          <idle>-0     (-----) [001] .n.1 82315.948198: cpu_idle: state=4294967295 cpu_id=1
47596<...>-581 ( 571) [002] d..2 82315.948200: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47597          <idle>-0     (-----) [001] d..2 82315.948206: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
47598<...>-8874 ( 8858) [004] d..2 82315.948207: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47599          <idle>-0     (-----) [002] d..1 82315.948212: cpu_idle: state=0 cpu_id=2
47600    RenderThread-9436  ( 9105) [001] .... 82315.948214: binder_transaction_received: transaction=1569286
47601          <idle>-0     (-----) [004] d..1 82315.948215: cpu_idle: state=0 cpu_id=4
47602 s.nexuslauncher-10023 (10023) [006] .... 82315.948238: binder_transaction: transaction=1569287 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x13
47603 s.nexuslauncher-10023 (10023) [006] .... 82315.948243: binder_transaction_alloc_buf: transaction=1569287 data_size=3796 offsets_size=8
47604 s.nexuslauncher-10023 (10023) [006] d..4 82315.948252: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
47605          <idle>-0     (-----) [002] dnh2 82315.948282: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
47606          <idle>-0     (-----) [002] .n.1 82315.948287: cpu_idle: state=4294967295 cpu_id=2
47607          <idle>-0     (-----) [002] d..2 82315.948296: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
47608<...>-9062 ( 8943) [002] .... 82315.948302: binder_transaction_received: transaction=1569287
47609 s.nexuslauncher-10023 (10023) [006] d..2 82315.948330: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
47610          <idle>-0     (-----) [006] d..1 82315.948343: cpu_idle: state=0 cpu_id=6
47611           <...>-27580 (-----) [007] ...1 82315.948357: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
47612           <...>-27580 (-----) [007] ...1 82315.948368: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
47613           <...>-27580 (-----) [007] ...1 82315.948371: tracing_mark_write: E|27550
47614          <idle>-0     (-----) [003] d.s2 82315.948467: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
47615          <idle>-0     (-----) [003] dns3 82315.948481: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
47616<...>-24462 ( 9871) [000] d.s2 82315.948482: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
47617           <...>-27580 (-----) [007] .... 82315.948483: binder_transaction: transaction=1569288 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
47618           <...>-27580 (-----) [007] .... 82315.948486: binder_transaction_alloc_buf: transaction=1569288 data_size=556 offsets_size=104
47619          <idle>-0     (-----) [003] .n.1 82315.948495: cpu_idle: state=4294967295 cpu_id=3
47620           <...>-27580 (-----) [007] ...2 82315.948501: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
47621          <idle>-0     (-----) [003] d..2 82315.948502: 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
47622           <...>-27580 (-----) [007] d..4 82315.948505: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=004
47623     rcu_preempt-7     (    7) [003] d..2 82315.948512: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
47624<...>-24462 ( 9871) [000] d.s3 82315.948515: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
47625           <...>-27580 (-----) [007] dn.5 82315.948518: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
47626           <...>-27580 (-----) [007] d..2 82315.948524: sched_switch: prev_comm=id.nn.benchmark prev_pid=27580 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
47627     rcu_preempt-7     (    7) [003] d..3 82315.948530: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
47628     rcu_preempt-7     (    7) [003] d..2 82315.948532: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
47629<...>-5340 ( 788) [007] .... 82315.948533: binder_transaction_received: transaction=1569288
47630    RenderThread-9436  ( 9105) [001] d..2 82315.948541: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
47631     rcu_preempt-7     (    7) [003] d..3 82315.948544: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
47632     rcu_preempt-7     (    7) [003] d..2 82315.948558: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
47633         rcuop/6-61    (   61) [001] d..2 82315.948590: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
47634<...>-5340 ( 788) [007] ...1 82315.948604: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
47635<...>-9062 ( 8943) [002] .... 82315.948615: binder_transaction: transaction=1569291 dest_node=1160196 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
47636<...>-9062 ( 8943) [002] .... 82315.948619: binder_transaction_alloc_buf: transaction=1569291 data_size=100 offsets_size=8
47637<...>-9062 ( 8943) [002] ...2 82315.948629: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
47638<...>-9062 ( 8943) [002] d..4 82315.948632: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=004
47639<...>-9062 ( 8943) [002] dn.5 82315.948651: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=002
47640<...>-5340 ( 788) [007] d..2 82315.948663: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
47641<...>-9062 ( 8943) [002] d..2 82315.948698: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
47642<...>-8874 ( 8858) [002] .... 82315.948705: binder_transaction_received: transaction=1569291
47643<...>-5340 ( 788) [007] d..2 82315.948712: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27580 next_prio=110
47644    RenderThread-9436  ( 9105) [001] dnh1 82315.948714: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
47645    RenderThread-9436  ( 9105) [001] d..2 82315.948722: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
47646           <...>-27580 (-----) [007] d..2 82315.948735: sched_switch: prev_comm=id.nn.benchmark prev_pid=27580 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
47647          <idle>-0     (-----) [007] d..1 82315.948751: cpu_idle: state=0 cpu_id=7
47648<...>-87 ( 87) [001] d..2 82315.948752: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
47649<...>-8874 ( 8858) [002] d.h3 82315.948770: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
47650<...>-8874 ( 8858) [002] d.h4 82315.948789: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
47651    RenderThread-9436  ( 9105) [001] d..2 82315.948799: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
47652<...>-86 ( 86) [001] d..2 82315.948826: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
47653<...>-8874 ( 8858) [002] .... 82315.948829: binder_transaction: transaction=1569292 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
47654<...>-8874 ( 8858) [002] d.h4 82315.948850: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
47655          <idle>-0     (-----) [007] dnh2 82315.948869: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
47656          <idle>-0     (-----) [007] .n.1 82315.948874: cpu_idle: state=4294967295 cpu_id=7
47657<...>-8874 ( 8858) [002] .... 82315.948879: binder_transaction_alloc_buf: transaction=1569292 data_size=4 offsets_size=0
47658          <idle>-0     (-----) [007] d..2 82315.948882: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
47659<...>-8874 ( 8858) [002] .... 82315.948883: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
47660  kworker/u16:15-1311  ( 1311) [003] d..2 82315.948906: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
47661         rcuop/2-29    (   29) [003] d..2 82315.948912: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
47662<...>-8874 ( 8858) [002] d..2 82315.948923: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
47663<...>-9062 ( 8943) [002] .... 82315.948930: binder_transaction_received: transaction=1569292
47664         rcuop/2-29    (   29) [003] d..3 82315.948940: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
47665<...>-5340 ( 788) [007] d..1 82315.948940: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
47666    RenderThread-9436  ( 9105) [001] d.s2 82315.948944: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
47667         rcuop/2-29    (   29) [003] d..2 82315.948948: 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
47668<...>-9062 ( 8943) [002] d..5 82315.948961: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
47669    RenderThread-9436  ( 9105) [001] d.s3 82315.948967: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
47670    RenderThread-9436  ( 9105) [001] d.s3 82315.948973: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
47671         rcuop/3-37    (   37) [003] d..2 82315.948979: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
47672  kworker/u16:15-1311  ( 1311) [003] dnh3 82315.948987: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
47673          <idle>-0     (-----) [004] dnh2 82315.948991: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
47674          <idle>-0     (-----) [004] .n.1 82315.949022: cpu_idle: state=4294967295 cpu_id=4
47675  kworker/u16:15-1311  ( 1311) [003] d..2 82315.949024: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
47676          <idle>-0     (-----) [004] d..2 82315.949028: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
47677<...>-8874 ( 8858) [004] d..2 82315.949057: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47678 neuralnetworks@-13088 (  788) [003] d..2 82315.949059: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
47679          <idle>-0     (-----) [004] d..1 82315.949063: cpu_idle: state=0 cpu_id=4
47680<...>-5340 ( 788) [007] d..2 82315.949107: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
47681  kworker/u16:15-1311  ( 1311) [003] d.h3 82315.949135: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
47682<...>-5340 ( 788) [007] d..2 82315.949143: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
47683          <idle>-0     (-----) [007] d..1 82315.949155: cpu_idle: state=0 cpu_id=7
47684  kworker/u16:15-1311  ( 1311) [003] .... 82315.949167: clk_set_rate: l3_cluster0_vote_clk 652800000
47685  kworker/u16:15-1311  ( 1311) [003] .... 82315.949173: clk_set_rate: l3_clk 652800000
47686  kworker/u16:15-1311  ( 1311) [003] d..2 82315.949210: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
47687<...>-87 ( 87) [003] d..2 82315.949245: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47688<...>-9062 ( 8943) [002] d.h3 82315.949246: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
47689          <idle>-0     (-----) [003] d..1 82315.949255: cpu_idle: state=0 cpu_id=3
47690<...>-9062 ( 8943) [002] d.h4 82315.949267: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
47691    RenderThread-9436  ( 9105) [001] d..2 82315.949281: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
47692<...>-86 ( 86) [001] d..2 82315.949306: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
47693<...>-9062 ( 8943) [002] d..3 82315.949681: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
47694          <idle>-0     (-----) [006] dnh2 82315.949715: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
47695          <idle>-0     (-----) [006] .n.1 82315.949720: cpu_idle: state=4294967295 cpu_id=6
47696          <idle>-0     (-----) [006] d..2 82315.949729: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
47697<...>-9062 ( 8943) [002] d..1 82315.949788: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
47698<...>-8962 ( 8943) [006] d..2 82315.949794: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
47699          <idle>-0     (-----) [006] d..1 82315.949805: cpu_idle: state=0 cpu_id=6
47700          <idle>-0     (-----) [006] dnh2 82315.949815: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
47701          <idle>-0     (-----) [006] .n.1 82315.949819: cpu_idle: state=4294967295 cpu_id=6
47702          <idle>-0     (-----) [006] d..2 82315.949826: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
47703<...>-9062 ( 8943) [002] d..5 82315.949917: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
47704          <idle>-0     (-----) [004] dnh2 82315.949935: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
47705<...>-8962 ( 8943) [006] .... 82315.949936: binder_transaction: transaction=1569293 dest_node=417419 dest_proc=9748 dest_thread=0 reply=0 flags=0x11 code=0x1
47706          <idle>-0     (-----) [004] .n.1 82315.949938: cpu_idle: state=4294967295 cpu_id=4
47707<...>-8962 ( 8943) [006] .... 82315.949940: binder_transaction_alloc_buf: transaction=1569293 data_size=80 offsets_size=0
47708          <idle>-0     (-----) [004] d..2 82315.949943: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
47709<...>-8962 ( 8943) [006] d..4 82315.949945: sched_waking: comm=Binder:9748_4 pid=10178 prio=120 target_cpu=006
47710<...>-8874 ( 8858) [004] d..2 82315.949961: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47711<...>-9062 ( 8943) [002] d..2 82315.949964: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47712          <idle>-0     (-----) [004] d..1 82315.949966: cpu_idle: state=0 cpu_id=4
47713          <idle>-0     (-----) [002] d..1 82315.949975: cpu_idle: state=0 cpu_id=2
47714          <idle>-0     (-----) [002] dnh2 82315.950016: sched_wakeup: comm=Binder:9748_4 pid=10178 prio=120 target_cpu=002
47715          <idle>-0     (-----) [002] .n.1 82315.950021: cpu_idle: state=4294967295 cpu_id=2
47716          <idle>-0     (-----) [002] d..2 82315.950028: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9748_4 next_pid=10178 next_prio=120
47717    RenderThread-9436  ( 9105) [001] d..2 82315.950032: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
47718<...>-10178 ( 9748) [002] .... 82315.950038: binder_transaction_received: transaction=1569293
47719          <idle>-0     (-----) [001] d..1 82315.950045: cpu_idle: state=0 cpu_id=1
47720<...>-8962 ( 8943) [006] d..2 82315.950083: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
47721          <idle>-0     (-----) [006] d..1 82315.950095: cpu_idle: state=0 cpu_id=6
47722          <idle>-0     (-----) [001] d.h2 82315.950106: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
47723          <idle>-0     (-----) [001] d.h3 82315.950114: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
47724          <idle>-0     (-----) [001] dnh3 82315.950117: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
47725          <idle>-0     (-----) [001] .n.1 82315.950124: cpu_idle: state=4294967295 cpu_id=1
47726          <idle>-0     (-----) [001] d..2 82315.950133: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
47727<...>-24462 ( 9871) [000] d.h2 82315.950206: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
47728<...>-24462 ( 9871) [000] d.h3 82315.950234: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
47729          <idle>-0     (-----) [003] .n.1 82315.950239: cpu_idle: state=4294967295 cpu_id=3
47730          <idle>-0     (-----) [003] d..2 82315.950248: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
47731 kgsl_worker_thr-258   (  258) [003] d..2 82315.950302: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
47732 kgsl_worker_thr-258   (  258) [003] d..3 82315.950316: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
47733<...>-10178 ( 9748) [002] d..2 82315.950328: sched_switch: prev_comm=Binder:9748_4 prev_pid=10178 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47734 kgsl_worker_thr-258   (  258) [003] d..2 82315.950331: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
47735          <idle>-0     (-----) [002] d..1 82315.950339: cpu_idle: state=0 cpu_id=2
47736  kworker/u16:15-1311  ( 1311) [003] d..2 82315.950368: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47737          <idle>-0     (-----) [003] d..1 82315.950376: cpu_idle: state=0 cpu_id=3
47738    RenderThread-9436  ( 9105) [001] .... 82315.950420: binder_transaction: transaction=1569294 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
47739    RenderThread-9436  ( 9105) [001] .... 82315.950424: binder_transaction_alloc_buf: transaction=1569294 data_size=192 offsets_size=8
47740    RenderThread-9436  ( 9105) [001] d..4 82315.950434: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
47741    RenderThread-9436  ( 9105) [001] dn.5 82315.950458: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
47742    RenderThread-9436  ( 9105) [001] d..2 82315.950502: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
47743<...>-8874 ( 8858) [001] .... 82315.950510: binder_transaction_received: transaction=1569294
47744<...>-8874 ( 8858) [001] .... 82315.950658: binder_transaction: transaction=1569295 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
47745<...>-8874 ( 8858) [001] .... 82315.950662: binder_transaction_alloc_buf: transaction=1569295 data_size=68 offsets_size=0
47746<...>-8874 ( 8858) [001] d..2 82315.950694: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
47747    RenderThread-9436  ( 9105) [001] .... 82315.950701: binder_transaction_received: transaction=1569295
47748    RenderThread-9436  ( 9105) [001] d..2 82315.950779: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
47749          <idle>-0     (-----) [001] d..1 82315.950793: cpu_idle: state=0 cpu_id=1
47750          <idle>-0     (-----) [002] d.h4 82315.950862: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
47751          <idle>-0     (-----) [007] dnh2 82315.950883: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
47752          <idle>-0     (-----) [007] .n.1 82315.950887: cpu_idle: state=4294967295 cpu_id=7
47753          <idle>-0     (-----) [002] ...1 82315.950895: cpu_idle: state=4294967295 cpu_id=2
47754          <idle>-0     (-----) [007] d..2 82315.950895: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
47755          <idle>-0     (-----) [003] d.h2 82315.950896: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
47756          <idle>-0     (-----) [002] d..1 82315.950898: cpu_idle: state=0 cpu_id=2
47757          <idle>-0     (-----) [003] dnh3 82315.950907: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
47758          <idle>-0     (-----) [003] .n.1 82315.950914: cpu_idle: state=4294967295 cpu_id=3
47759          <idle>-0     (-----) [003] d..2 82315.950921: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
47760<...>-5340 ( 788) [007] d..1 82315.950943: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
47761        DispSync-8879  ( 8858) [003] d..1 82315.950945: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
47762        DispSync-8879  ( 8858) [003] d..2 82315.950965: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
47763          <idle>-0     (-----) [002] .n.1 82315.950972: cpu_idle: state=4294967295 cpu_id=2
47764        DispSync-8879  ( 8858) [003] d.h2 82315.950977: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
47765          <idle>-0     (-----) [002] d..2 82315.950979: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
47766        DispSync-8879  ( 8858) [003] d..2 82315.951010: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
47767<...>-5340 ( 788) [007] ...1 82315.951040: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
47768   sfEventThread-8882  ( 8858) [002] d..3 82315.951042: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
47769<...>-5340 ( 788) [007] ...1 82315.951044: tracing_mark_write: E|788
47770 neuralnetworks@-13088 (  788) [003] d..2 82315.951046: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
47771          <idle>-0     (-----) [003] d..1 82315.951056: cpu_idle: state=0 cpu_id=3
47772   sfEventThread-8882  ( 8858) [002] d..4 82315.951063: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
47773<...>-5340 ( 788) [007] .... 82315.951064: binder_transaction: transaction=1569296 dest_node=1569289 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
47774<...>-5340 ( 788) [007] .... 82315.951067: binder_transaction_alloc_buf: transaction=1569296 data_size=60 offsets_size=0
47775          <idle>-0     (-----) [003] .n.1 82315.951067: cpu_idle: state=4294967295 cpu_id=3
47776<...>-5340 ( 788) [007] d..4 82315.951070: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=005
47777          <idle>-0     (-----) [003] d..2 82315.951075: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
47778   sfEventThread-8882  ( 8858) [002] d..3 82315.951078: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=005
47779<...>-5340 ( 788) [007] d..5 82315.951087: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
47780          <idle>-0     (-----) [004] .n.1 82315.951092: cpu_idle: state=4294967295 cpu_id=4
47781          <idle>-0     (-----) [004] d..2 82315.951098: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
47782          <idle>-0     (-----) [005] dnh2 82315.951104: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=005
47783           <...>-27571 (-----) [004] .... 82315.951108: binder_transaction_received: transaction=1569296
47784          <idle>-0     (-----) [005] .n.1 82315.951108: cpu_idle: state=4294967295 cpu_id=5
47785<...>-5340 ( 788) [007] ...1 82315.951114: tracing_mark_write: E|788
47786          <idle>-0     (-----) [005] d..2 82315.951117: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
47787   sfEventThread-8882  ( 8858) [002] d..2 82315.951119: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
47788<...>-5340 ( 788) [007] .... 82315.951120: binder_transaction: transaction=1569298 dest_node=0 dest_proc=27550 dest_thread=27580 reply=1 flags=0x0 code=0x0
47789<...>-5340 ( 788) [007] .... 82315.951122: binder_transaction_alloc_buf: transaction=1569298 data_size=8 offsets_size=0
47790<...>-5340 ( 788) [007] d..2 82315.951123: sched_waking: comm=id.nn.benchmark pid=27580 prio=110 target_cpu=007
47791<...>-24462 ( 9871) [000] .... 82315.951127: binder_transaction: transaction=1569297 dest_node=1569266 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x1
47792          <idle>-0     (-----) [002] d..1 82315.951127: cpu_idle: state=0 cpu_id=2
47793<...>-5340 ( 788) [007] d..3 82315.951130: sched_wakeup: comm=id.nn.benchmark pid=27580 prio=110 target_cpu=007
47794<...>-24462 ( 9871) [000] .... 82315.951132: binder_transaction_alloc_buf: transaction=1569297 data_size=168 offsets_size=0
47795<...>-5340 ( 788) [007] .... 82315.951132: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
47796<...>-24462 ( 9871) [000] d..4 82315.951138: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=007
47797           <...>-27571 (-----) [004] ...1 82315.951139: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
47798           <...>-27571 (-----) [004] ...1 82315.951148: tracing_mark_write: E|27550
47799<...>-24462 ( 9871) [000] d..5 82315.951168: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=001
47800          <idle>-0     (-----) [001] .n.1 82315.951174: cpu_idle: state=4294967295 cpu_id=1
47801<...>-5340 ( 788) [007] d..2 82315.951178: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27580 next_prio=110
47802           <...>-27580 (-----) [007] .... 82315.951187: binder_transaction_received: transaction=1569298
47803           <...>-27571 (-----) [004] d..2 82315.951218: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47804          <idle>-0     (-----) [001] d..2 82315.951220: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
47805          <idle>-0     (-----) [004] d..1 82315.951228: cpu_idle: state=0 cpu_id=4
47806  Binder:10023_2-10088 (10023) [001] .... 82315.951229: binder_transaction_received: transaction=1569297
47807           <...>-27580 (-----) [007] ...1 82315.951230: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
47808           <...>-27580 (-----) [007] ...1 82315.951235: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
47809           <...>-27580 (-----) [007] ...1 82315.951262: tracing_mark_write: E|27550
47810           <...>-27580 (-----) [007] ...1 82315.951265: tracing_mark_write: E|27550
47811           <...>-27580 (-----) [007] ...1 82315.951268: tracing_mark_write: E|27550
47812<...>-9005 ( 8943) [005] .... 82315.951286: binder_transaction: transaction=1569299 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
47813<...>-9005 ( 8943) [005] .... 82315.951291: binder_transaction_alloc_buf: transaction=1569299 data_size=80 offsets_size=0
47814<...>-9005 ( 8943) [005] d..4 82315.951296: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
47815           <...>-27580 (-----) [007] d..2 82315.951303: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
47816          <idle>-0     (-----) [002] dnh2 82315.951328: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
47817  Binder:10023_2-10088 (10023) [001] d.h1 82315.951330: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
47818          <idle>-0     (-----) [002] .n.1 82315.951333: cpu_idle: state=4294967295 cpu_id=2
47819          <idle>-0     (-----) [002] d..2 82315.951339: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
47820<...>-8874 ( 8858) [002] .... 82315.951344: binder_transaction_received: transaction=1569299
47821<...>-8874 ( 8858) [002] d..1 82315.951365: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
47822<...>-8874 ( 8858) [002] dn.2 82315.951378: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
47823<...>-8874 ( 8858) [002] d..2 82315.951392: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
47824   sfEventThread-8882  ( 8858) [002] d..2 82315.951409: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
47825<...>-8874 ( 8858) [002] d..1 82315.951412: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
47826<...>-24462 ( 9871) [000] d..1 82315.951414: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=003
47827<...>-8874 ( 8858) [002] dn.2 82315.951418: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
47828<...>-8874 ( 8858) [002] d..2 82315.951423: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
47829   sfEventThread-8882  ( 8858) [002] d..2 82315.951449: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
47830<...>-24462 ( 9871) [000] d..2 82315.951459: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=002
47831           <...>-27580 (-----) [007] ...1 82315.951464: tracing_mark_write: E|27550
47832           <...>-27580 (-----) [007] d..1 82315.951478: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
47833<...>-8874 ( 8858) [002] d..2 82315.951483: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
47834           <...>-27580 (-----) [007] d..2 82315.951497: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
47835          <idle>-0     (-----) [004] .n.1 82315.951502: cpu_idle: state=4294967295 cpu_id=4
47836          <idle>-0     (-----) [004] d..2 82315.951510: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
47837           <...>-27550 (-----) [004] d..2 82315.951528: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47838          <idle>-0     (-----) [004] d..1 82315.951534: cpu_idle: state=0 cpu_id=4
47839  surfaceflinger-8858  ( 8858) [003] ...1 82315.951553: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
47840  surfaceflinger-8858  ( 8858) [003] ...1 82315.951572: tracing_mark_write: B|8858|FreeBuffer
47841           <...>-27580 (-----) [007] d..1 82315.951594: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
47842           <...>-27580 (-----) [007] d..2 82315.951603: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
47843          <idle>-0     (-----) [004] .n.1 82315.951608: cpu_idle: state=4294967295 cpu_id=4
47844          <idle>-0     (-----) [004] d..2 82315.951614: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
47845           <...>-27580 (-----) [007] d..2 82315.951645: sched_switch: prev_comm=id.nn.benchmark prev_pid=27580 prev_prio=110 prev_state=x ==> next_comm=swapper/7 next_pid=0 next_prio=120
47846           <...>-27550 (-----) [004] ...1 82315.951649: tracing_mark_write: E|27550
47847           <...>-27550 (-----) [004] ...1 82315.951655: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
47848  surfaceflinger-8858  ( 8858) [003] d..2 82315.951656: sched_waking: comm=system pid=104 prio=120 target_cpu=003
47849  Binder:10023_2-10088 (10023) [001] d..2 82315.951660: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=rcuop/6 next_pid=61 next_prio=120
47850           <...>-27550 (-----) [004] ...1 82315.951661: tracing_mark_write: E|27550
47851           <...>-27550 (-----) [004] ...1 82315.951665: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
47852          <idle>-0     (-----) [007] d..1 82315.951666: cpu_idle: state=0 cpu_id=7
47853           <...>-27550 (-----) [004] ...1 82315.951669: tracing_mark_write: E|27550
47854           <...>-27550 (-----) [004] ...1 82315.951676: tracing_mark_write: E|27550
47855         rcuop/6-61    (   61) [001] d..2 82315.951688: 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
47856  surfaceflinger-8858  ( 8858) [003] d..3 82315.951699: sched_wakeup: comm=system pid=104 prio=120 target_cpu=001
47857<...>-24462 ( 9871) [000] d..2 82315.951705: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47858          <idle>-0     (-----) [001] d..2 82315.951706: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system next_pid=104 next_prio=120
47859  surfaceflinger-8858  ( 8858) [003] ...1 82315.951724: tracing_mark_write: E|8858
47860  surfaceflinger-8858  ( 8858) [003] ...1 82315.951729: tracing_mark_write: B|8858|FreeBuffer
47861          <idle>-0     (-----) [000] d..1 82315.951731: cpu_idle: state=0 cpu_id=0
47862  surfaceflinger-8858  ( 8858) [003] ...1 82315.951748: tracing_mark_write: E|8858
47863  surfaceflinger-8858  ( 8858) [003] ...1 82315.951755: tracing_mark_write: E|8858
47864<...>-16709 ( 9871) [002] d.s1 82315.951808: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
47865           <...>-27550 (-----) [004] d.H2 82315.951851: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
47866<...>-16709 ( 9871) [002] d.s2 82315.951867: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
47867<...>-9005 ( 8943) [005] .... 82315.951875: binder_transaction: transaction=1569300 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
47868<...>-9005 ( 8943) [005] .... 82315.951879: binder_transaction_alloc_buf: transaction=1569300 data_size=2508 offsets_size=128
47869          <idle>-0     (-----) [000] dnh2 82315.951880: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
47870          <idle>-0     (-----) [000] .n.1 82315.951886: cpu_idle: state=4294967295 cpu_id=0
47871           <...>-27550 (-----) [004] ...1 82315.951889: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
47872          <idle>-0     (-----) [000] d..2 82315.951895: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
47873<...>-9005 ( 8943) [005] ...2 82315.951907: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
47874<...>-9005 ( 8943) [005] d..4 82315.951910: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=002
47875<...>-9005 ( 8943) [005] dn.5 82315.951928: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=005
47876         sugov:0-576   (  576) [000] .... 82315.951929: clk_set_rate: pwrcl_clk 1766400000
47877           <...>-27550 (-----) [004] ...1 82315.951949: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
47878           <...>-27550 (-----) [004] ...1 82315.951955: tracing_mark_write: E|27550
47879           <...>-27550 (-----) [004] ...1 82315.951959: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
47880<...>-9005 ( 8943) [005] d..2 82315.951961: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
47881           <...>-27550 (-----) [004] ...1 82315.951965: tracing_mark_write: E|27550
47882           <...>-27550 (-----) [004] ...1 82315.951968: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
47883           <...>-27550 (-----) [004] ...1 82315.951972: tracing_mark_write: E|27550
47884<...>-8874 ( 8858) [005] .... 82315.951972: binder_transaction_received: transaction=1569300
47885           <...>-27550 (-----) [004] ...1 82315.951975: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
47886         sugov:0-576   (  576) [000] d..2 82315.952020: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
47887          system-104   (  104) [001] d.s2 82315.952029: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
47888          <idle>-0     (-----) [000] d..1 82315.952030: cpu_idle: state=0 cpu_id=0
47889          system-104   (  104) [001] d.s3 82315.952045: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
47890          <idle>-0     (-----) [000] .n.1 82315.952050: cpu_idle: state=4294967295 cpu_id=0
47891          <idle>-0     (-----) [000] d..2 82315.952057: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
47892         sugov:0-576   (  576) [000] .... 82315.952070: clk_set_rate: cpu3_pwrcl_clk 1324800000
47893<...>-8874 ( 8858) [005] d..2 82315.952074: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=116 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
47894         sugov:0-576   (  576) [000] .... 82315.952080: clk_set_rate: cpu2_pwrcl_clk 1324800000
47895          <idle>-0     (-----) [006] .n.1 82315.952082: cpu_idle: state=4294967295 cpu_id=6
47896           <...>-27550 (-----) [004] ...1 82315.952085: tracing_mark_write: E|27550
47897         sugov:0-576   (  576) [000] .... 82315.952086: clk_set_rate: cpu1_pwrcl_clk 1324800000
47898           <...>-27550 (-----) [004] ...1 82315.952090: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
47899          <idle>-0     (-----) [006] d..2 82315.952092: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27581 next_prio=110
47900         sugov:0-576   (  576) [000] .... 82315.952093: clk_set_rate: cpu0_pwrcl_clk 1766400000
47901<...>-9005 ( 8943) [005] d..2 82315.952096: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
47902         sugov:0-576   (  576) [000] .... 82315.952102: cpu_frequency: state=1766400 cpu_id=0
47903          <idle>-0     (-----) [005] d..1 82315.952113: cpu_idle: state=0 cpu_id=5
47904           <...>-27550 (-----) [004] d..2 82315.952113: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47905          <idle>-0     (-----) [004] d..1 82315.952130: cpu_idle: state=0 cpu_id=4
47906           <...>-27581 (-----) [006] ...1 82315.952178: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
47907           <...>-27581 (-----) [006] ...1 82315.952193: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
47908           <...>-27581 (-----) [006] ...1 82315.952196: tracing_mark_write: E|27550
47909  surfaceflinger-8858  ( 8858) [003] d..1 82315.952198: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=005
47910          <idle>-0     (-----) [005] dnh2 82315.952219: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=005
47911          <idle>-0     (-----) [005] .n.1 82315.952223: cpu_idle: state=4294967295 cpu_id=5
47912           <...>-27581 (-----) [006] .... 82315.952229: binder_transaction: transaction=1569301 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
47913          <idle>-0     (-----) [005] d..2 82315.952231: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
47914           <...>-27581 (-----) [006] .... 82315.952232: binder_transaction_alloc_buf: transaction=1569301 data_size=48 offsets_size=0
47915           <...>-27581 (-----) [006] ...2 82315.952236: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
47916           <...>-27581 (-----) [006] d..4 82315.952240: sched_waking: [email protected] pid=770 prio=110 target_cpu=007
47917           <...>-27581 (-----) [006] dn.5 82315.952258: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=006
47918           <...>-27581 (-----) [006] d..2 82315.952265: sched_switch: prev_comm=id.nn.benchmark prev_pid=27581 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
47919<...>-770 ( 770) [006] .... 82315.952275: binder_transaction_received: transaction=1569301
47920         sugov:0-576   (  576) [000] d..2 82315.952278: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
47921          <idle>-0     (-----) [000] d..1 82315.952286: cpu_idle: state=0 cpu_id=0
47922<...>-8874 ( 8858) [005] d..1 82315.952289: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
47923          system-104   (  104) [001] d.s2 82315.952297: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
47924<...>-770 ( 770) [006] ...1 82315.952309: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
47925          system-104   (  104) [001] d.s3 82315.952309: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
47926          <idle>-0     (-----) [000] dnh2 82315.952320: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
47927          <idle>-0     (-----) [000] .n.1 82315.952324: cpu_idle: state=4294967295 cpu_id=0
47928          <idle>-0     (-----) [000] d..2 82315.952330: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
47929<...>-8874 ( 8858) [005] .... 82315.952331: binder_transaction: transaction=1569302 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
47930<...>-8874 ( 8858) [005] .... 82315.952334: binder_transaction_alloc_buf: transaction=1569302 data_size=0 offsets_size=0
47931<...>-8874 ( 8858) [005] d..2 82315.952336: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=005
47932<...>-8874 ( 8858) [005] d..3 82315.952343: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=005
47933<...>-8874 ( 8858) [005] .... 82315.952345: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
47934         sugov:0-576   (  576) [000] .... 82315.952357: cpu_frequency: state=1766400 cpu_id=1
47935         sugov:0-576   (  576) [000] .... 82315.952361: cpu_frequency: state=1766400 cpu_id=2
47936         sugov:0-576   (  576) [000] .... 82315.952363: cpu_frequency: state=1766400 cpu_id=3
47937<...>-16709 ( 9871) [002] d..2 82315.952366: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
47938         sugov:0-576   (  576) [000] d..2 82315.952378: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
47939          <idle>-0     (-----) [000] d..1 82315.952385: cpu_idle: state=0 cpu_id=0
47940<...>-8874 ( 8858) [005] d..2 82315.952391: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
47941<...>-9005 ( 8943) [005] .... 82315.952399: binder_transaction_received: transaction=1569302
47942   sfEventThread-8882  ( 8858) [002] d..2 82315.952407: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
47943<...>-770 ( 770) [006] d..2 82315.952447: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
47944  surfaceflinger-8858  ( 8858) [003] d.h1 82315.952489: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
47945<...>-770 ( 770) [006] ...1 82315.952520: tracing_mark_write: E|770
47946<...>-770 ( 770) [006] .... 82315.952530: binder_transaction: transaction=1569303 dest_node=0 dest_proc=27550 dest_thread=27581 reply=1 flags=0x0 code=0x0
47947<...>-770 ( 770) [006] .... 82315.952533: binder_transaction_alloc_buf: transaction=1569303 data_size=168 offsets_size=32
47948<...>-770 ( 770) [006] .... 82315.952543: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
47949<...>-770 ( 770) [006] d..2 82315.952581: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27581 next_prio=110
47950           <...>-27581 (-----) [006] .... 82315.952591: binder_transaction_received: transaction=1569303
47951           <...>-27581 (-----) [006] ...1 82315.952695: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
47952           <...>-27581 (-----) [006] ...1 82315.952699: tracing_mark_write: E|27550
47953           <...>-27581 (-----) [006] .... 82315.952713: binder_transaction: transaction=1569304 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
47954           <...>-27581 (-----) [006] .... 82315.952716: binder_transaction_alloc_buf: transaction=1569304 data_size=48 offsets_size=0
47955           <...>-27581 (-----) [006] ...2 82315.952718: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
47956           <...>-27581 (-----) [006] d..4 82315.952720: sched_waking: [email protected] pid=770 prio=110 target_cpu=006
47957           <...>-27581 (-----) [006] dn.5 82315.952730: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=006
47958           <...>-27581 (-----) [006] d..2 82315.952736: sched_switch: prev_comm=id.nn.benchmark prev_pid=27581 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
47959<...>-770 ( 770) [006] .... 82315.952743: binder_transaction_received: transaction=1569304
47960<...>-770 ( 770) [006] ...1 82315.952759: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
47961<...>-770 ( 770) [006] ...1 82315.952833: tracing_mark_write: E|770
47962<...>-770 ( 770) [006] .... 82315.952841: binder_transaction: transaction=1569305 dest_node=0 dest_proc=27550 dest_thread=27581 reply=1 flags=0x0 code=0x0
47963<...>-770 ( 770) [006] .... 82315.952843: binder_transaction_alloc_buf: transaction=1569305 data_size=168 offsets_size=32
47964<...>-770 ( 770) [006] .... 82315.952848: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
47965<...>-9005 ( 8943) [005] d..3 82315.952859: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
47966<...>-770 ( 770) [006] d..2 82315.952881: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27581 next_prio=110
47967<...>-9005 ( 8943) [005] d..4 82315.952883: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
47968          <idle>-0     (-----) [004] .n.1 82315.952890: cpu_idle: state=4294967295 cpu_id=4
47969           <...>-27581 (-----) [006] .... 82315.952891: binder_transaction_received: transaction=1569305
47970          <idle>-0     (-----) [004] d..2 82315.952899: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
47971<...>-8969 ( 8943) [004] d..2 82315.952973: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
47972          <idle>-0     (-----) [004] d..1 82315.952984: cpu_idle: state=0 cpu_id=4
47973<...>-9005 ( 8943) [005] .... 82315.953058: binder_transaction: transaction=1569306 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
47974<...>-9005 ( 8943) [005] .... 82315.953064: binder_transaction_alloc_buf: transaction=1569306 data_size=96 offsets_size=0
47975<...>-9005 ( 8943) [005] d..4 82315.953069: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
47976          <idle>-0     (-----) [000] dnh2 82315.953127: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
47977          <idle>-0     (-----) [000] .n.1 82315.953131: cpu_idle: state=4294967295 cpu_id=0
47978          <idle>-0     (-----) [000] d..2 82315.953138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
47979<...>-9132 ( 9105) [000] .... 82315.953148: binder_transaction_received: transaction=1569306
47980           <...>-27581 (-----) [006] ...1 82315.953186: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
47981           <...>-27581 (-----) [006] ...1 82315.953198: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
47982           <...>-27581 (-----) [006] ...1 82315.953201: tracing_mark_write: E|27550
47983<...>-9005 ( 8943) [005] d..3 82315.953211: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
47984<...>-9005 ( 8943) [005] d..4 82315.953232: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
47985          <idle>-0     (-----) [007] .n.1 82315.953238: cpu_idle: state=4294967295 cpu_id=7
47986          <idle>-0     (-----) [007] d..2 82315.953248: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
47987           <...>-27581 (-----) [006] .... 82315.953278: binder_transaction: transaction=1569307 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
47988           <...>-27581 (-----) [006] .... 82315.953281: binder_transaction_alloc_buf: transaction=1569307 data_size=556 offsets_size=104
47989<...>-9132 ( 9105) [000] d..3 82315.953299: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
47990           <...>-27581 (-----) [006] ...2 82315.953300: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
47991           <...>-27581 (-----) [006] d..4 82315.953303: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=007
47992  surfaceflinger-8858  ( 8858) [003] ...1 82315.953307: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
47993  surfaceflinger-8858  ( 8858) [003] ...1 82315.953312: tracing_mark_write: E|8858
47994           <...>-27581 (-----) [006] dn.5 82315.953321: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
47995           <...>-27581 (-----) [006] d..2 82315.953328: sched_switch: prev_comm=id.nn.benchmark prev_pid=27581 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
47996<...>-9132 ( 9105) [000] d..4 82315.953334: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
47997<...>-8962 ( 8943) [007] d..3 82315.953337: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
47998<...>-5340 ( 788) [006] .... 82315.953339: binder_transaction_received: transaction=1569307
47999  surfaceflinger-8858  ( 8858) [003] .... 82315.953359: binder_transaction: transaction=1569310 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
48000  surfaceflinger-8858  ( 8858) [003] .... 82315.953364: binder_transaction_alloc_buf: transaction=1569310 data_size=540 offsets_size=96
48001<...>-9132 ( 9105) [000] d.h1 82315.953374: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
48002  surfaceflinger-8858  ( 8858) [003] ...2 82315.953385: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
48003  surfaceflinger-8858  ( 8858) [003] d..4 82315.953394: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
48004<...>-8962 ( 8943) [007] d..2 82315.953410: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
48005  surfaceflinger-8858  ( 8858) [003] d..5 82315.953411: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
48006<...>-5340 ( 788) [006] ...1 82315.953417: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
48007<...>-9132 ( 9105) [000] d..2 82315.953419: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=98
48008          <idle>-0     (-----) [007] d..1 82315.953422: cpu_idle: state=0 cpu_id=7
48009 [email protected]   (  619) [000] .... 82315.953432: binder_transaction_received: transaction=1569310
48010  surfaceflinger-8858  ( 8858) [003] d..2 82315.953437: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
48011<...>-8 ( 8) [003] d..2 82315.953446: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=001
48012<...>-8 ( 8) [003] d..3 82315.953473: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=003
48013 [email protected]   (  619) [000] ...1 82315.953478: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
48014<...>-9005 ( 8943) [005] .... 82315.953482: binder_transaction: transaction=1569311 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
48015<...>-5340 ( 788) [006] d..2 82315.953485: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
48016<...>-8 ( 8) [003] d..2 82315.953487: 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
48017<...>-9005 ( 8943) [005] .... 82315.953487: binder_transaction_alloc_buf: transaction=1569311 data_size=76 offsets_size=0
48018<...>-9005 ( 8943) [005] ...2 82315.953490: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
48019<...>-30 ( 30) [003] d..2 82315.953492: sched_waking: comm=rcuos/3 pid=38 prio=120 target_cpu=001
48020<...>-9005 ( 8943) [005] d..4 82315.953493: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=005
48021<...>-16709 ( 9871) [002] .... 82315.953501: binder_transaction: transaction=1569312 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x24
48022<...>-9005 ( 8943) [005] dn.5 82315.953503: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=005
48023<...>-16709 ( 9871) [002] .... 82315.953504: binder_transaction_alloc_buf: transaction=1569312 data_size=292 offsets_size=8
48024<...>-9005 ( 8943) [005] d..2 82315.953510: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
48025<...>-5340 ( 788) [006] d..2 82315.953513: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27581 next_prio=110
48026<...>-30 ( 30) [003] d..3 82315.953513: sched_wakeup: comm=rcuos/3 pid=38 prio=120 target_cpu=003
48027<...>-16709 ( 9871) [002] d..4 82315.953515: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
48028<...>-8874 ( 8858) [005] .... 82315.953519: binder_transaction_received: transaction=1569311
48029<...>-30 ( 30) [003] d.h2 82315.953522: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
48030<...>-30 ( 30) [003] d..2 82315.953529: 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
48031<...>-16709 ( 9871) [002] dn.5 82315.953529: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
48032           <...>-27581 (-----) [006] d..2 82315.953536: sched_switch: prev_comm=id.nn.benchmark prev_pid=27581 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
48033<...>-16709 ( 9871) [002] d..2 82315.953537: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
48034<...>-38 ( 38) [003] d..2 82315.953542: sched_switch: prev_comm=rcuos/3 prev_pid=38 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
48035<...>-9062 ( 8943) [002] .... 82315.953545: binder_transaction_received: transaction=1569312
48036          <idle>-0     (-----) [006] d..1 82315.953554: cpu_idle: state=0 cpu_id=6
48037<...>-8874 ( 8858) [005] .... 82315.953563: binder_transaction: transaction=1569313 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
48038<...>-8874 ( 8858) [005] .... 82315.953566: binder_transaction_alloc_buf: transaction=1569313 data_size=0 offsets_size=0
48039<...>-8874 ( 8858) [005] .... 82315.953568: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
48040<...>-87 ( 87) [003] d..2 82315.953575: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
48041 [email protected]   (  619) [000] ...1 82315.953591: tracing_mark_write: B|619|HWCSession::PresentDisplay::
48042<...>-9062 ( 8943) [002] d.h3 82315.953594: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
48043<...>-8874 ( 8858) [005] d..2 82315.953595: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
48044<...>-9005 ( 8943) [005] .... 82315.953604: binder_transaction_received: transaction=1569313
48045<...>-9062 ( 8943) [002] d.h4 82315.953628: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
48046<...>-581 ( 571) [003] d..2 82315.953636: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=smem_native_cds next_pid=86 next_prio=120
48047<...>-9062 ( 8943) [002] d.h3 82315.953671: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
48048          <idle>-0     (-----) [006] dnh2 82315.953691: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
48049          <idle>-0     (-----) [006] .n.1 82315.953696: cpu_idle: state=4294967295 cpu_id=6
48050          <idle>-0     (-----) [006] d..2 82315.953704: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48051<...>-86 ( 86) [003] d..2 82315.953705: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
48052<...>-5340 ( 788) [006] d..1 82315.953770: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
48053<...>-581 ( 571) [003] d..2 82315.953784: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
48054<...>-9105 ( 9105) [003] dnh3 82315.953797: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
48055<...>-9105 ( 9105) [003] d..2 82315.953804: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
48056 neuralnetworks@-13088 (  788) [003] d..2 82315.953845: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
48057<...>-5340 ( 788) [006] d..2 82315.953930: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
48058<...>-9105 ( 9105) [003] dnh1 82315.953949: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
48059<...>-5340 ( 788) [006] d..2 82315.953956: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
48060<...>-9105 ( 9105) [003] d..2 82315.953957: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
48061          <idle>-0     (-----) [006] d..1 82315.953968: cpu_idle: state=0 cpu_id=6
48062<...>-87 ( 87) [003] d..2 82315.953979: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
48063<...>-9062 ( 8943) [002] d.h3 82315.953989: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
48064<...>-9062 ( 8943) [002] d.h4 82315.954008: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
48065<...>-9105 ( 9105) [003] d..2 82315.954014: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
48066<...>-86 ( 86) [003] d..2 82315.954045: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
48067          <idle>-0     (-----) [003] d..1 82315.954059: cpu_idle: state=0 cpu_id=3
48068 [email protected]   (  619) [000] ...1 82315.954063: tracing_mark_write: B|619|HWDeviceDRM::Validate::
48069<...>-9062 ( 8943) [002] .... 82315.954090: binder_transaction: transaction=1569314 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
48070<...>-9062 ( 8943) [002] .... 82315.954095: binder_transaction_alloc_buf: transaction=1569314 data_size=8 offsets_size=0
48071<...>-9062 ( 8943) [002] d..2 82315.954130: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
48072<...>-16709 ( 9871) [002] .... 82315.954137: binder_transaction_received: transaction=1569314
48073<...>-9005 ( 8943) [005] d..3 82315.954305: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
48074          <idle>-0     (-----) [003] dnh2 82315.954337: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=003
48075          <idle>-0     (-----) [003] .n.1 82315.954342: cpu_idle: state=4294967295 cpu_id=3
48076          <idle>-0     (-----) [003] d..2 82315.954347: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
48077<...>-16709 ( 9871) [002] d..2 82315.954373: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48078          <idle>-0     (-----) [002] d..1 82315.954394: cpu_idle: state=0 cpu_id=2
48079<...>-9039 ( 8943) [003] d..2 82315.954395: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
48080          <idle>-0     (-----) [003] d..1 82315.954401: cpu_idle: state=0 cpu_id=3
48081<...>-9005 ( 8943) [005] d..1 82315.954407: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
48082<...>-9005 ( 8943) [005] d..2 82315.954421: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
48083          <idle>-0     (-----) [004] .n.1 82315.954426: cpu_idle: state=4294967295 cpu_id=4
48084          <idle>-0     (-----) [004] d..2 82315.954433: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
48085<...>-9005 ( 8943) [005] d..2 82315.954476: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
48086          <idle>-0     (-----) [005] d..1 82315.954492: cpu_idle: state=0 cpu_id=5
48087 [email protected]   (  619) [000] ...1 82315.954519: tracing_mark_write: E|619
48088<...>-8969 ( 8943) [004] d..2 82315.954574: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48089          <idle>-0     (-----) [004] d..1 82315.954585: cpu_idle: state=0 cpu_id=4
48090 [email protected]   (  619) [000] ...1 82315.954618: tracing_mark_write: B|619|HWDeviceDRM::Commit::
48091 [email protected]   (  619) [000] ...1 82315.954625: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
48092 [email protected]   (  619) [000] d..2 82315.954898: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
48093 [email protected]   (  619) [000] d..3 82315.954919: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
48094          <idle>-0     (-----) [002] .n.1 82315.954925: cpu_idle: state=4294967295 cpu_id=2
48095          <idle>-0     (-----) [002] d..2 82315.954933: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
48096 [email protected]   (  619) [000] ...1 82315.954992: tracing_mark_write: E|619
48097 [email protected]   (  619) [000] ...1 82315.954996: tracing_mark_write: E|619
48098          system-104   (  104) [001] d..2 82315.955014: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48099 [email protected]   (  619) [000] ...1 82315.955033: tracing_mark_write: E|619
48100          <idle>-0     (-----) [001] d..1 82315.955037: cpu_idle: state=0 cpu_id=1
48101 [email protected]   (  619) [000] ...1 82315.955072: tracing_mark_write: E|619
48102 [email protected]   (  619) [000] .... 82315.955085: binder_transaction: transaction=1569315 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
48103 [email protected]   (  619) [000] .... 82315.955089: binder_transaction_alloc_buf: transaction=1569315 data_size=576 offsets_size=112
48104 [email protected]   (  619) [000] d..2 82315.955102: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
48105 [email protected]   (  619) [000] d..3 82315.955116: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
48106          <idle>-0     (-----) [003] dns2 82315.955146: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
48107 [email protected]   (  619) [000] .... 82315.955152: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
48108          <idle>-0     (-----) [003] dns3 82315.955160: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
48109          <idle>-0     (-----) [003] .n.1 82315.955167: cpu_idle: state=4294967295 cpu_id=3
48110          <idle>-0     (-----) [003] d..2 82315.955172: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
48111  surfaceflinger-8858  ( 8858) [003] .... 82315.955180: binder_transaction_received: transaction=1569315
48112 [email protected]   (  619) [000] d..2 82315.955210: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
48113   system_server-8943  ( 8943) [000] .... 82315.955306: binder_transaction: transaction=1569316 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
48114   system_server-8943  ( 8943) [000] .... 82315.955310: binder_transaction_alloc_buf: transaction=1569316 data_size=96 offsets_size=0
48115   system_server-8943  ( 8943) [000] d..4 82315.955314: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
48116   system_server-8943  ( 8943) [000] d..5 82315.955335: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
48117          <idle>-0     (-----) [001] .n.1 82315.955341: cpu_idle: state=4294967295 cpu_id=1
48118          <idle>-0     (-----) [001] d..2 82315.955352: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
48119<...>-9132 ( 9105) [001] .... 82315.955359: binder_transaction_received: transaction=1569316
48120   system_server-8943  ( 8943) [000] d..2 82315.955394: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48121          <idle>-0     (-----) [000] d..1 82315.955409: cpu_idle: state=0 cpu_id=0
48122<...>-9132 ( 9105) [001] d..3 82315.955454: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
48123<...>-9132 ( 9105) [001] d..4 82315.955476: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
48124          <idle>-0     (-----) [000] .n.1 82315.955482: cpu_idle: state=4294967295 cpu_id=0
48125          <idle>-0     (-----) [000] d..2 82315.955490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
48126<...>-9132 ( 9105) [001] d..2 82315.955536: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48127          <idle>-0     (-----) [001] d..1 82315.955548: cpu_idle: state=0 cpu_id=1
48128<...>-9105 ( 9105) [000] d..2 82315.955570: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48129  surfaceflinger-8858  ( 8858) [003] d..2 82315.955577: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
48130          <idle>-0     (-----) [000] d..1 82315.955581: cpu_idle: state=0 cpu_id=0
48131 crtc_commit:111-321   (  321) [002] d.h3 82315.955588: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
48132     rcu_preempt-7     (    7) [003] d..2 82315.955592: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
48133          <idle>-0     (-----) [006] dnh2 82315.955609: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
48134          <idle>-0     (-----) [006] .n.1 82315.955613: cpu_idle: state=4294967295 cpu_id=6
48135          <idle>-0     (-----) [006] d..2 82315.955622: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48136     rcu_preempt-7     (    7) [003] d..3 82315.955622: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
48137     rcu_preempt-7     (    7) [003] d..2 82315.955624: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
48138     rcu_preempt-7     (    7) [003] d..3 82315.955643: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
48139     rcu_preempt-7     (    7) [003] d..2 82315.955655: 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
48140         rcuop/4-45    (   45) [003] d..2 82315.955660: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
48141 crtc_commit:111-321   (  321) [002] d..2 82315.955671: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
48142<...>-5340 ( 788) [006] d..1 82315.955678: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
48143         rcuop/4-45    (   45) [003] d..3 82315.955684: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=002
48144          <idle>-0     (-----) [002] d..2 82315.955690: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
48145         rcuop/5-53    (   53) [002] d.h1 82315.955709: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
48146         rcuop/4-45    (   45) [003] d..2 82315.955722: 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
48147         rcuop/0-10    (   10) [003] d..2 82315.955727: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
48148         rcuop/5-53    (   53) [002] d..2 82315.955729: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
48149         rcuop/0-10    (   10) [003] d..3 82315.955754: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
48150          <idle>-0     (-----) [000] .n.1 82315.955760: cpu_idle: state=4294967295 cpu_id=0
48151          <idle>-0     (-----) [000] d..2 82315.955772: 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
48152 neuralnetworks@-13088 (  788) [002] d..2 82315.955774: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48153         rcuop/0-10    (   10) [003] d..2 82315.955776: 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
48154          <idle>-0     (-----) [002] d..1 82315.955780: cpu_idle: state=0 cpu_id=2
48155          <idle>-0     (-----) [003] d..1 82315.955785: cpu_idle: state=0 cpu_id=3
48156<...>-5340 ( 788) [006] ...1 82315.955788: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
48157<...>-5340 ( 788) [006] ...1 82315.955792: tracing_mark_write: E|788
48158         rcuop/1-21    (   21) [000] d..2 82315.955795: 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
48159          <idle>-0     (-----) [000] d..1 82315.955801: cpu_idle: state=0 cpu_id=0
48160<...>-5340 ( 788) [006] .... 82315.955811: binder_transaction: transaction=1569317 dest_node=1569308 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
48161<...>-5340 ( 788) [006] .... 82315.955814: binder_transaction_alloc_buf: transaction=1569317 data_size=60 offsets_size=0
48162<...>-5340 ( 788) [006] d..4 82315.955818: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
48163<...>-5340 ( 788) [006] d..5 82315.955831: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
48164          <idle>-0     (-----) [004] .n.1 82315.955837: cpu_idle: state=4294967295 cpu_id=4
48165          <idle>-0     (-----) [004] d..2 82315.955846: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
48166           <...>-27571 (-----) [004] .... 82315.955857: binder_transaction_received: transaction=1569317
48167<...>-5340 ( 788) [006] ...1 82315.955857: tracing_mark_write: E|788
48168<...>-5340 ( 788) [006] .... 82315.955863: binder_transaction: transaction=1569318 dest_node=0 dest_proc=27550 dest_thread=27581 reply=1 flags=0x0 code=0x0
48169<...>-5340 ( 788) [006] .... 82315.955865: binder_transaction_alloc_buf: transaction=1569318 data_size=8 offsets_size=0
48170<...>-5340 ( 788) [006] d..2 82315.955867: sched_waking: comm=id.nn.benchmark pid=27581 prio=110 target_cpu=006
48171<...>-5340 ( 788) [006] d..3 82315.955873: sched_wakeup: comm=id.nn.benchmark pid=27581 prio=110 target_cpu=006
48172<...>-5340 ( 788) [006] .... 82315.955875: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
48173           <...>-27571 (-----) [004] ...1 82315.955891: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
48174           <...>-27571 (-----) [004] ...1 82315.955900: tracing_mark_write: E|27550
48175<...>-5340 ( 788) [006] d..2 82315.955920: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27581 next_prio=110
48176           <...>-27581 (-----) [006] .... 82315.955931: binder_transaction_received: transaction=1569318
48177           <...>-27571 (-----) [004] d..2 82315.955935: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48178          <idle>-0     (-----) [004] d..1 82315.955945: cpu_idle: state=0 cpu_id=4
48179           <...>-27581 (-----) [006] ...1 82315.955975: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
48180           <...>-27581 (-----) [006] ...1 82315.955981: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
48181           <...>-27581 (-----) [006] ...1 82315.956008: tracing_mark_write: E|27550
48182           <...>-27581 (-----) [006] ...1 82315.956011: tracing_mark_write: E|27550
48183           <...>-27581 (-----) [006] ...1 82315.956015: tracing_mark_write: E|27550
48184           <...>-27581 (-----) [006] ...1 82315.956215: tracing_mark_write: E|27550
48185           <...>-27581 (-----) [006] d..1 82315.956230: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48186           <...>-27581 (-----) [006] d..2 82315.956246: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48187          <idle>-0     (-----) [004] .n.1 82315.956251: cpu_idle: state=4294967295 cpu_id=4
48188          <idle>-0     (-----) [004] d..2 82315.956259: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
48189           <...>-27550 (-----) [004] d..2 82315.956276: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48190          <idle>-0     (-----) [004] d..1 82315.956283: cpu_idle: state=0 cpu_id=4
48191           <...>-27581 (-----) [006] d..1 82315.956347: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48192           <...>-27581 (-----) [006] d..2 82315.956356: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48193          <idle>-0     (-----) [004] .n.1 82315.956360: cpu_idle: state=4294967295 cpu_id=4
48194          <idle>-0     (-----) [004] d..2 82315.956366: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
48195           <...>-27581 (-----) [006] d..2 82315.956396: sched_switch: prev_comm=id.nn.benchmark prev_pid=27581 prev_prio=110 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
48196           <...>-27550 (-----) [004] ...1 82315.956401: tracing_mark_write: E|27550
48197           <...>-27550 (-----) [004] ...1 82315.956406: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
48198           <...>-27550 (-----) [004] ...1 82315.956412: tracing_mark_write: E|27550
48199          <idle>-0     (-----) [006] d..1 82315.956415: cpu_idle: state=0 cpu_id=6
48200           <...>-27550 (-----) [004] ...1 82315.956416: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
48201           <...>-27550 (-----) [004] ...1 82315.956420: tracing_mark_write: E|27550
48202           <...>-27550 (-----) [004] ...1 82315.956427: tracing_mark_write: E|27550
48203           <...>-27550 (-----) [004] ...1 82315.956535: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
48204           <...>-27550 (-----) [004] ...1 82315.956591: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
48205           <...>-27550 (-----) [004] ...1 82315.956597: tracing_mark_write: E|27550
48206           <...>-27550 (-----) [004] ...1 82315.956602: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
48207           <...>-27550 (-----) [004] ...1 82315.956608: tracing_mark_write: E|27550
48208           <...>-27550 (-----) [004] ...1 82315.956612: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
48209           <...>-27550 (-----) [004] ...1 82315.956616: tracing_mark_write: E|27550
48210           <...>-27550 (-----) [004] ...1 82315.956620: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
48211          <idle>-0     (-----) [005] .n.1 82315.956728: cpu_idle: state=4294967295 cpu_id=5
48212           <...>-27550 (-----) [004] ...1 82315.956730: tracing_mark_write: E|27550
48213           <...>-27550 (-----) [004] ...1 82315.956734: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
48214          <idle>-0     (-----) [005] d..2 82315.956739: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27582 next_prio=110
48215           <...>-27550 (-----) [004] d..2 82315.956752: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48216          <idle>-0     (-----) [004] d..1 82315.956768: cpu_idle: state=0 cpu_id=4
48217           <...>-27582 (-----) [005] ...1 82315.956816: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
48218          <idle>-0     (-----) [001] ...1 82315.956826: cpu_idle: state=4294967295 cpu_id=1
48219          <idle>-0     (-----) [001] d..1 82315.956829: cpu_idle: state=0 cpu_id=1
48220           <...>-27582 (-----) [005] ...1 82315.956831: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
48221           <...>-27582 (-----) [005] ...1 82315.956834: tracing_mark_write: E|27550
48222           <...>-27582 (-----) [005] .... 82315.956860: binder_transaction: transaction=1569319 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
48223           <...>-27582 (-----) [005] .... 82315.956865: binder_transaction_alloc_buf: transaction=1569319 data_size=48 offsets_size=0
48224           <...>-27582 (-----) [005] ...2 82315.956868: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
48225           <...>-27582 (-----) [005] d..4 82315.956871: sched_waking: [email protected] pid=770 prio=110 target_cpu=006
48226           <...>-27582 (-----) [005] dn.5 82315.956888: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
48227           <...>-27582 (-----) [005] d..2 82315.956895: sched_switch: prev_comm=id.nn.benchmark prev_pid=27582 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
48228<...>-770 ( 770) [005] .... 82315.956904: binder_transaction_received: transaction=1569319
48229<...>-770 ( 770) [005] ...1 82315.956933: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
48230          <idle>-0     (-----) [002] ...1 82315.956953: cpu_idle: state=4294967295 cpu_id=2
48231          <idle>-0     (-----) [002] d..1 82315.956956: cpu_idle: state=0 cpu_id=2
48232          <idle>-0     (-----) [000] ...1 82315.957008: cpu_idle: state=4294967295 cpu_id=0
48233          <idle>-0     (-----) [000] d..1 82315.957011: cpu_idle: state=0 cpu_id=0
48234<...>-770 ( 770) [005] d..2 82315.957048: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
48235          <idle>-0     (-----) [000] dnh2 82315.957081: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
48236          <idle>-0     (-----) [000] .n.1 82315.957085: cpu_idle: state=4294967295 cpu_id=0
48237          <idle>-0     (-----) [000] d..2 82315.957091: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
48238<...>-770 ( 770) [005] ...1 82315.957103: tracing_mark_write: E|770
48239<...>-770 ( 770) [005] .... 82315.957112: binder_transaction: transaction=1569320 dest_node=0 dest_proc=27550 dest_thread=27582 reply=1 flags=0x0 code=0x0
48240<...>-770 ( 770) [005] .... 82315.957114: binder_transaction_alloc_buf: transaction=1569320 data_size=168 offsets_size=32
48241<...>-770 ( 770) [005] .... 82315.957121: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
48242<...>-770 ( 770) [005] d..2 82315.957156: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27582 next_prio=110
48243           <...>-27582 (-----) [005] .... 82315.957166: binder_transaction_received: transaction=1569320
48244<...>-581 ( 571) [000] d..2 82315.957171: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48245          <idle>-0     (-----) [000] d..1 82315.957180: cpu_idle: state=0 cpu_id=0
48246           <...>-27582 (-----) [005] ...1 82315.957249: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
48247           <...>-27582 (-----) [005] ...1 82315.957253: tracing_mark_write: E|27550
48248           <...>-27582 (-----) [005] .... 82315.957266: binder_transaction: transaction=1569321 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
48249           <...>-27582 (-----) [005] .... 82315.957269: binder_transaction_alloc_buf: transaction=1569321 data_size=48 offsets_size=0
48250           <...>-27582 (-----) [005] ...2 82315.957271: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
48251           <...>-27582 (-----) [005] d..4 82315.957273: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
48252           <...>-27582 (-----) [005] dn.5 82315.957282: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
48253           <...>-27582 (-----) [005] d..2 82315.957288: sched_switch: prev_comm=id.nn.benchmark prev_pid=27582 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
48254<...>-770 ( 770) [005] .... 82315.957296: binder_transaction_received: transaction=1569321
48255<...>-770 ( 770) [005] ...1 82315.957311: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
48256<...>-770 ( 770) [005] d..2 82315.957364: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
48257          <idle>-0     (-----) [000] dnh2 82315.957383: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
48258          <idle>-0     (-----) [000] .n.1 82315.957387: cpu_idle: state=4294967295 cpu_id=0
48259          <idle>-0     (-----) [000] d..2 82315.957393: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
48260<...>-770 ( 770) [005] ...1 82315.957394: tracing_mark_write: E|770
48261<...>-770 ( 770) [005] .... 82315.957400: binder_transaction: transaction=1569322 dest_node=0 dest_proc=27550 dest_thread=27582 reply=1 flags=0x0 code=0x0
48262<...>-770 ( 770) [005] .... 82315.957402: binder_transaction_alloc_buf: transaction=1569322 data_size=168 offsets_size=32
48263<...>-770 ( 770) [005] .... 82315.957407: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
48264<...>-581 ( 571) [000] d..2 82315.957429: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48265          <idle>-0     (-----) [000] d..1 82315.957437: cpu_idle: state=0 cpu_id=0
48266<...>-770 ( 770) [005] d..2 82315.957438: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27582 next_prio=110
48267           <...>-27582 (-----) [005] .... 82315.957447: binder_transaction_received: transaction=1569322
48268           <...>-27582 (-----) [005] ...1 82315.957728: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
48269           <...>-27582 (-----) [005] ...1 82315.957739: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
48270           <...>-27582 (-----) [005] ...1 82315.957742: tracing_mark_write: E|27550
48271           <...>-27582 (-----) [005] .... 82315.957810: binder_transaction: transaction=1569323 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
48272           <...>-27582 (-----) [005] .... 82315.957813: binder_transaction_alloc_buf: transaction=1569323 data_size=556 offsets_size=104
48273           <...>-27582 (-----) [005] ...2 82315.957828: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
48274           <...>-27582 (-----) [005] d..4 82315.957830: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=006
48275           <...>-27582 (-----) [005] dn.5 82315.957845: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48276           <...>-27582 (-----) [005] d..2 82315.957851: sched_switch: prev_comm=id.nn.benchmark prev_pid=27582 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48277<...>-5340 ( 788) [005] .... 82315.957861: binder_transaction_received: transaction=1569323
48278<...>-5340 ( 788) [005] ...1 82315.957913: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
48279<...>-5340 ( 788) [005] d..2 82315.957962: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
48280          <idle>-0     (-----) [000] dnh2 82315.957996: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48281<...>-5340 ( 788) [005] d..2 82315.957996: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27582 next_prio=110
48282          <idle>-0     (-----) [000] .n.1 82315.958000: cpu_idle: state=4294967295 cpu_id=0
48283          <idle>-0     (-----) [000] d..2 82315.958006: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
48284           <...>-27582 (-----) [005] d..2 82315.958016: sched_switch: prev_comm=id.nn.benchmark prev_pid=27582 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
48285          <idle>-0     (-----) [005] d..1 82315.958034: cpu_idle: state=0 cpu_id=5
48286<...>-87 ( 87) [000] d..2 82315.958036: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48287          <idle>-0     (-----) [000] d..1 82315.958042: cpu_idle: state=0 cpu_id=0
48288          <idle>-0     (-----) [002] d.h4 82315.958051: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
48289          <idle>-0     (-----) [002] dnh5 82315.958072: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48290          <idle>-0     (-----) [002] .n.1 82315.958078: cpu_idle: state=4294967295 cpu_id=2
48291          <idle>-0     (-----) [002] d..2 82315.958086: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
48292<...>-86 ( 86) [002] d..2 82315.958111: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48293          <idle>-0     (-----) [002] d..1 82315.958118: cpu_idle: state=0 cpu_id=2
48294          <idle>-0     (-----) [002] d.h4 82315.958136: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48295          <idle>-0     (-----) [005] dnh2 82315.958156: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48296          <idle>-0     (-----) [005] .n.1 82315.958160: cpu_idle: state=4294967295 cpu_id=5
48297          <idle>-0     (-----) [002] ...1 82315.958164: cpu_idle: state=4294967295 cpu_id=2
48298          <idle>-0     (-----) [002] d..1 82315.958167: cpu_idle: state=0 cpu_id=2
48299          <idle>-0     (-----) [005] d..2 82315.958168: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48300<...>-5340 ( 788) [005] d..1 82315.958221: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
48301          <idle>-0     (-----) [000] dnh2 82315.958252: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48302          <idle>-0     (-----) [000] .n.1 82315.958256: cpu_idle: state=4294967295 cpu_id=0
48303          <idle>-0     (-----) [000] d..2 82315.958262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
48304 neuralnetworks@-13088 (  788) [000] d..2 82315.958299: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48305          <idle>-0     (-----) [000] d..1 82315.958307: cpu_idle: state=0 cpu_id=0
48306<...>-5340 ( 788) [005] d..2 82315.958370: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48307          <idle>-0     (-----) [000] dnh2 82315.958387: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48308          <idle>-0     (-----) [000] .n.1 82315.958391: cpu_idle: state=4294967295 cpu_id=0
48309<...>-5340 ( 788) [005] d..2 82315.958393: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
48310          <idle>-0     (-----) [000] d..2 82315.958397: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
48311          <idle>-0     (-----) [005] d..1 82315.958406: cpu_idle: state=0 cpu_id=5
48312<...>-87 ( 87) [000] d..2 82315.958423: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48313          <idle>-0     (-----) [002] d.h4 82315.958427: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48314          <idle>-0     (-----) [000] d..1 82315.958429: cpu_idle: state=0 cpu_id=0
48315          <idle>-0     (-----) [002] dnh5 82315.958433: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48316          <idle>-0     (-----) [002] .n.1 82315.958438: cpu_idle: state=4294967295 cpu_id=2
48317          <idle>-0     (-----) [002] d..2 82315.958452: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
48318          <idle>-0     (-----) [003] d.s2 82315.958463: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
48319          <idle>-0     (-----) [003] dns3 82315.958473: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
48320<...>-86 ( 86) [002] d..2 82315.958478: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48321          <idle>-0     (-----) [003] dns3 82315.958481: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
48322          <idle>-0     (-----) [002] d..1 82315.958485: cpu_idle: state=0 cpu_id=2
48323          <idle>-0     (-----) [003] dns4 82315.958493: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
48324          <idle>-0     (-----) [003] .n.1 82315.958506: cpu_idle: state=4294967295 cpu_id=3
48325          <idle>-0     (-----) [003] d..2 82315.958512: 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
48326<...>-8 ( 8) [003] d..2 82315.958522: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=002
48327<...>-8 ( 8) [003] d..3 82315.958545: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=003
48328<...>-8 ( 8) [003] d..2 82315.958547: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
48329<...>-8 ( 8) [003] d..3 82315.958567: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
48330<...>-8 ( 8) [003] d..2 82315.958574: 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
48331         rcuos/0-11    (   11) [003] d..2 82315.958582: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
48332         rcuos/0-11    (   11) [003] d..3 82315.958589: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
48333         rcuos/0-11    (   11) [003] d..2 82315.958594: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
48334<...>-46 ( 46) [003] d..2 82315.958598: sched_waking: comm=rcuos/5 pid=54 prio=120 target_cpu=002
48335<...>-46 ( 46) [003] d..3 82315.958621: sched_wakeup: comm=rcuos/5 pid=54 prio=120 target_cpu=000
48336          <idle>-0     (-----) [000] .n.1 82315.958625: cpu_idle: state=4294967295 cpu_id=0
48337<...>-46 ( 46) [003] d..2 82315.958628: 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
48338          <idle>-0     (-----) [000] d..2 82315.958633: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/5 next_pid=54 next_prio=120
48339<...>-8 ( 8) [003] d..2 82315.958636: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
48340<...>-54 ( 54) [000] d..2 82315.958652: sched_switch: prev_comm=rcuos/5 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48341          <idle>-0     (-----) [000] d..1 82315.958667: cpu_idle: state=0 cpu_id=0
48342          <idle>-0     (-----) [000] ...1 82315.958678: cpu_idle: state=4294967295 cpu_id=0
48343          <idle>-0     (-----) [000] d..1 82315.958680: cpu_idle: state=0 cpu_id=0
48344  kworker/u16:15-1311  ( 1311) [003] .... 82315.958709: clk_set_rate: l3_cluster0_vote_clk 748800000
48345  kworker/u16:15-1311  ( 1311) [003] .... 82315.958715: clk_set_rate: l3_clk 748800000
48346          <idle>-0     (-----) [000] d.h5 82315.958868: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
48347          <idle>-0     (-----) [000] dnh6 82315.958886: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
48348          <idle>-0     (-----) [000] dnh5 82315.958889: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
48349          <idle>-0     (-----) [000] dnh6 82315.958897: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
48350          <idle>-0     (-----) [002] .n.1 82315.958902: cpu_idle: state=4294967295 cpu_id=2
48351          <idle>-0     (-----) [000] .n.1 82315.958907: cpu_idle: state=4294967295 cpu_id=0
48352          <idle>-0     (-----) [002] d..2 82315.958908: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
48353          <idle>-0     (-----) [000] d..2 82315.958914: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
48354  kworker/u16:15-1311  ( 1311) [003] d..2 82315.958920: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
48355          <idle>-0     (-----) [003] d..1 82315.958927: cpu_idle: state=0 cpu_id=3
48356  crtc_event:111-322   (  322) [000] d..2 82315.958937: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48357          <idle>-0     (-----) [000] d..1 82315.958944: cpu_idle: state=0 cpu_id=0
48358          <idle>-0     (-----) [001] d.s3 82315.958950: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
48359          <idle>-0     (-----) [001] d.s4 82315.958959: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
48360          <idle>-0     (-----) [001] d.s4 82315.958966: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
48361          <idle>-0     (-----) [003] .n.1 82315.958971: cpu_idle: state=4294967295 cpu_id=3
48362          <idle>-0     (-----) [001] ...1 82315.958972: cpu_idle: state=4294967295 cpu_id=1
48363          <idle>-0     (-----) [001] d..1 82315.958976: cpu_idle: state=0 cpu_id=1
48364          <idle>-0     (-----) [003] d..2 82315.958977: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
48365 crtc_commit:111-321   (  321) [002] d..2 82315.959046: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
48366          <idle>-0     (-----) [002] d..1 82315.959051: cpu_idle: state=0 cpu_id=2
48367  kworker/u16:15-1311  ( 1311) [003] d..2 82315.959054: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
48368          <idle>-0     (-----) [003] d..1 82315.959059: cpu_idle: state=0 cpu_id=3
48369          <idle>-0     (-----) [000] ...1 82315.960068: cpu_idle: state=4294967295 cpu_id=0
48370          <idle>-0     (-----) [000] d..1 82315.960071: cpu_idle: state=0 cpu_id=0
48371          <idle>-0     (-----) [002] d.h4 82315.960156: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48372          <idle>-0     (-----) [005] dnh2 82315.960175: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48373          <idle>-0     (-----) [005] .n.1 82315.960179: cpu_idle: state=4294967295 cpu_id=5
48374          <idle>-0     (-----) [002] ...1 82315.960181: cpu_idle: state=4294967295 cpu_id=2
48375          <idle>-0     (-----) [002] d..1 82315.960184: cpu_idle: state=0 cpu_id=2
48376          <idle>-0     (-----) [005] d..2 82315.960187: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48377<...>-5340 ( 788) [005] d..1 82315.960235: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48378          <idle>-0     (-----) [000] dnh2 82315.960251: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48379          <idle>-0     (-----) [000] .n.1 82315.960255: cpu_idle: state=4294967295 cpu_id=0
48380          <idle>-0     (-----) [000] d..2 82315.960262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
48381 neuralnetworks@-13088 (  788) [000] d..2 82315.960285: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48382          <idle>-0     (-----) [000] d..1 82315.960295: cpu_idle: state=0 cpu_id=0
48383          <idle>-0     (-----) [001] ...1 82315.960306: cpu_idle: state=4294967295 cpu_id=1
48384          <idle>-0     (-----) [001] d..1 82315.960308: cpu_idle: state=0 cpu_id=1
48385<...>-5340 ( 788) [005] ...1 82315.960318: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
48386<...>-5340 ( 788) [005] ...1 82315.960322: tracing_mark_write: E|788
48387<...>-5340 ( 788) [005] .... 82315.960337: binder_transaction: transaction=1569326 dest_node=1569324 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
48388<...>-5340 ( 788) [005] .... 82315.960339: binder_transaction_alloc_buf: transaction=1569326 data_size=60 offsets_size=0
48389<...>-5340 ( 788) [005] d..4 82315.960342: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
48390<...>-5340 ( 788) [005] d..5 82315.960355: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
48391          <idle>-0     (-----) [004] .n.1 82315.960360: cpu_idle: state=4294967295 cpu_id=4
48392          <idle>-0     (-----) [004] d..2 82315.960368: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
48393           <...>-27571 (-----) [004] .... 82315.960373: binder_transaction_received: transaction=1569326
48394<...>-5340 ( 788) [005] ...1 82315.960375: tracing_mark_write: E|788
48395<...>-5340 ( 788) [005] .... 82315.960380: binder_transaction: transaction=1569327 dest_node=0 dest_proc=27550 dest_thread=27582 reply=1 flags=0x0 code=0x0
48396<...>-5340 ( 788) [005] .... 82315.960382: binder_transaction_alloc_buf: transaction=1569327 data_size=8 offsets_size=0
48397<...>-5340 ( 788) [005] d..2 82315.960384: sched_waking: comm=id.nn.benchmark pid=27582 prio=110 target_cpu=005
48398           <...>-27571 (-----) [004] ...1 82315.960390: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
48399<...>-5340 ( 788) [005] d..3 82315.960390: sched_wakeup: comm=id.nn.benchmark pid=27582 prio=110 target_cpu=005
48400<...>-5340 ( 788) [005] .... 82315.960392: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
48401           <...>-27571 (-----) [004] ...1 82315.960396: tracing_mark_write: E|27550
48402           <...>-27571 (-----) [004] d..2 82315.960423: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48403<...>-5340 ( 788) [005] d..2 82315.960431: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27582 next_prio=110
48404          <idle>-0     (-----) [004] d..1 82315.960431: cpu_idle: state=0 cpu_id=4
48405           <...>-27582 (-----) [005] .... 82315.960440: binder_transaction_received: transaction=1569327
48406           <...>-27582 (-----) [005] ...1 82315.960472: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
48407           <...>-27582 (-----) [005] ...1 82315.960478: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
48408           <...>-27582 (-----) [005] ...1 82315.960501: tracing_mark_write: E|27550
48409           <...>-27582 (-----) [005] ...1 82315.960504: tracing_mark_write: E|27550
48410           <...>-27582 (-----) [005] ...1 82315.960507: tracing_mark_write: E|27550
48411           <...>-27582 (-----) [005] ...1 82315.960680: tracing_mark_write: E|27550
48412           <...>-27582 (-----) [005] d..1 82315.960691: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48413           <...>-27582 (-----) [005] d..2 82315.960705: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48414          <idle>-0     (-----) [004] .n.1 82315.960711: cpu_idle: state=4294967295 cpu_id=4
48415          <idle>-0     (-----) [004] d..2 82315.960717: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
48416           <...>-27550 (-----) [004] d..2 82315.960735: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48417          <idle>-0     (-----) [004] d..1 82315.960743: cpu_idle: state=0 cpu_id=4
48418           <...>-27582 (-----) [005] d..1 82315.960785: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48419           <...>-27582 (-----) [005] d..2 82315.960794: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48420          <idle>-0     (-----) [004] .n.1 82315.960799: cpu_idle: state=4294967295 cpu_id=4
48421          <idle>-0     (-----) [004] d..2 82315.960806: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
48422           <...>-27582 (-----) [005] d..2 82315.960829: sched_switch: prev_comm=id.nn.benchmark prev_pid=27582 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
48423           <...>-27550 (-----) [004] ...1 82315.960834: tracing_mark_write: E|27550
48424           <...>-27550 (-----) [004] ...1 82315.960839: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
48425           <...>-27550 (-----) [004] ...1 82315.960845: tracing_mark_write: E|27550
48426          <idle>-0     (-----) [005] d..1 82315.960848: cpu_idle: state=0 cpu_id=5
48427           <...>-27550 (-----) [004] ...1 82315.960850: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
48428           <...>-27550 (-----) [004] ...1 82315.960858: tracing_mark_write: E|27550
48429           <...>-27550 (-----) [004] ...1 82315.960862: tracing_mark_write: E|27550
48430           <...>-27550 (-----) [004] ...1 82315.960967: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
48431           <...>-27550 (-----) [004] ...1 82315.961019: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
48432           <...>-27550 (-----) [004] ...1 82315.961023: tracing_mark_write: E|27550
48433           <...>-27550 (-----) [004] ...1 82315.961027: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
48434           <...>-27550 (-----) [004] ...1 82315.961033: tracing_mark_write: E|27550
48435           <...>-27550 (-----) [004] ...1 82315.961037: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
48436           <...>-27550 (-----) [004] ...1 82315.961041: tracing_mark_write: E|27550
48437           <...>-27550 (-----) [004] ...1 82315.961045: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
48438          <idle>-0     (-----) [005] .n.1 82315.961131: cpu_idle: state=4294967295 cpu_id=5
48439           <...>-27550 (-----) [004] ...1 82315.961131: tracing_mark_write: E|27550
48440           <...>-27550 (-----) [004] ...1 82315.961135: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
48441          <idle>-0     (-----) [005] d..2 82315.961142: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27583 next_prio=110
48442           <...>-27550 (-----) [004] d..2 82315.961168: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48443          <idle>-0     (-----) [004] d..1 82315.961182: cpu_idle: state=0 cpu_id=4
48444           <...>-27583 (-----) [005] ...1 82315.961207: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
48445          <idle>-0     (-----) [000] d.h5 82315.961213: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
48446           <...>-27583 (-----) [005] ...1 82315.961220: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
48447           <...>-27583 (-----) [005] ...1 82315.961224: tracing_mark_write: E|27550
48448          <idle>-0     (-----) [000] d.h6 82315.961224: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
48449          <idle>-0     (-----) [002] .n.1 82315.961228: cpu_idle: state=4294967295 cpu_id=2
48450          <idle>-0     (-----) [002] d..2 82315.961234: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
48451          <idle>-0     (-----) [000] ...1 82315.961235: cpu_idle: state=4294967295 cpu_id=0
48452          <idle>-0     (-----) [000] d..1 82315.961237: cpu_idle: state=0 cpu_id=0
48453           <...>-27583 (-----) [005] .... 82315.961242: binder_transaction: transaction=1569328 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
48454           <...>-27583 (-----) [005] .... 82315.961245: binder_transaction_alloc_buf: transaction=1569328 data_size=48 offsets_size=0
48455           <...>-27583 (-----) [005] ...2 82315.961247: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
48456           <...>-27583 (-----) [005] d..4 82315.961249: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
48457           <...>-27583 (-----) [005] dn.5 82315.961259: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
48458           <...>-27583 (-----) [005] d..2 82315.961265: sched_switch: prev_comm=id.nn.benchmark prev_pid=27583 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
48459<...>-770 ( 770) [005] .... 82315.961274: binder_transaction_received: transaction=1569328
48460 crtc_commit:111-321   (  321) [002] d..2 82315.961293: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48461<...>-770 ( 770) [005] ...1 82315.961294: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
48462          <idle>-0     (-----) [002] d..1 82315.961298: cpu_idle: state=0 cpu_id=2
48463<...>-770 ( 770) [005] d..2 82315.961359: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
48464          <idle>-0     (-----) [000] dnh2 82315.961380: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
48465          <idle>-0     (-----) [000] .n.1 82315.961383: cpu_idle: state=4294967295 cpu_id=0
48466          <idle>-0     (-----) [000] d..2 82315.961390: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
48467<...>-770 ( 770) [005] ...1 82315.961396: tracing_mark_write: E|770
48468<...>-770 ( 770) [005] .... 82315.961403: binder_transaction: transaction=1569329 dest_node=0 dest_proc=27550 dest_thread=27583 reply=1 flags=0x0 code=0x0
48469<...>-770 ( 770) [005] .... 82315.961405: binder_transaction_alloc_buf: transaction=1569329 data_size=168 offsets_size=32
48470<...>-770 ( 770) [005] .... 82315.961411: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
48471<...>-581 ( 571) [000] d..2 82315.961442: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48472<...>-770 ( 770) [005] d..2 82315.961443: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27583 next_prio=110
48473           <...>-27583 (-----) [005] .... 82315.961453: binder_transaction_received: transaction=1569329
48474          <idle>-0     (-----) [000] d.h6 82315.961504: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
48475          <idle>-0     (-----) [000] dnh7 82315.961512: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
48476           <...>-27583 (-----) [005] ...1 82315.961514: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
48477           <...>-27583 (-----) [005] ...1 82315.961519: tracing_mark_write: E|27550
48478          <idle>-0     (-----) [000] d..2 82315.961525: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
48479           <...>-27583 (-----) [005] .... 82315.961532: binder_transaction: transaction=1569330 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
48480           <...>-27583 (-----) [005] .... 82315.961534: binder_transaction_alloc_buf: transaction=1569330 data_size=48 offsets_size=0
48481           <...>-27583 (-----) [005] ...2 82315.961536: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
48482           <...>-27583 (-----) [005] d..4 82315.961538: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
48483  crtc_event:111-322   (  322) [000] d..2 82315.961539: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48484           <...>-27583 (-----) [005] dn.5 82315.961547: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
48485          <idle>-0     (-----) [000] d..1 82315.961548: cpu_idle: state=0 cpu_id=0
48486           <...>-27583 (-----) [005] d..2 82315.961553: sched_switch: prev_comm=id.nn.benchmark prev_pid=27583 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
48487<...>-770 ( 770) [005] .... 82315.961560: binder_transaction_received: transaction=1569330
48488<...>-770 ( 770) [005] ...1 82315.961575: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
48489<...>-770 ( 770) [005] d..2 82315.961626: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
48490          <idle>-0     (-----) [000] dnh2 82315.961644: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
48491          <idle>-0     (-----) [000] .n.1 82315.961649: cpu_idle: state=4294967295 cpu_id=0
48492          <idle>-0     (-----) [000] d..2 82315.961655: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
48493<...>-770 ( 770) [005] ...1 82315.961657: tracing_mark_write: E|770
48494<...>-770 ( 770) [005] .... 82315.961663: binder_transaction: transaction=1569331 dest_node=0 dest_proc=27550 dest_thread=27583 reply=1 flags=0x0 code=0x0
48495<...>-770 ( 770) [005] .... 82315.961665: binder_transaction_alloc_buf: transaction=1569331 data_size=168 offsets_size=32
48496<...>-770 ( 770) [005] .... 82315.961671: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
48497<...>-581 ( 571) [000] d..2 82315.961692: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48498          <idle>-0     (-----) [000] d..1 82315.961700: cpu_idle: state=0 cpu_id=0
48499<...>-770 ( 770) [005] d..2 82315.961701: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27583 next_prio=110
48500           <...>-27583 (-----) [005] .... 82315.961710: binder_transaction_received: transaction=1569331
48501          <idle>-0     (-----) [002] d.s3 82315.961793: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
48502          <idle>-0     (-----) [003] d.s2 82315.961795: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
48503          <idle>-0     (-----) [002] d.s4 82315.961805: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
48504          <idle>-0     (-----) [003] dns3 82315.961805: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
48505          <idle>-0     (-----) [000] .n.1 82315.961811: cpu_idle: state=4294967295 cpu_id=0
48506          <idle>-0     (-----) [003] .n.1 82315.961812: cpu_idle: state=4294967295 cpu_id=3
48507          <idle>-0     (-----) [003] d..2 82315.961817: 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
48508          <idle>-0     (-----) [000] d..2 82315.961818: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
48509          <idle>-0     (-----) [002] ...1 82315.961819: cpu_idle: state=4294967295 cpu_id=2
48510          <idle>-0     (-----) [002] d..1 82315.961823: cpu_idle: state=0 cpu_id=2
48511     rcu_preempt-7     (    7) [003] d..2 82315.961836: 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
48512  crtc_event:111-322   (  322) [000] d..2 82315.961837: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48513          <idle>-0     (-----) [003] d..1 82315.961841: cpu_idle: state=0 cpu_id=3
48514          <idle>-0     (-----) [000] d..1 82315.961843: cpu_idle: state=0 cpu_id=0
48515           <...>-27583 (-----) [005] ...1 82315.961987: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
48516           <...>-27583 (-----) [005] ...1 82315.961996: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
48517           <...>-27583 (-----) [005] ...1 82315.961999: tracing_mark_write: E|27550
48518           <...>-27583 (-----) [005] .... 82315.962051: binder_transaction: transaction=1569332 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
48519           <...>-27583 (-----) [005] .... 82315.962055: binder_transaction_alloc_buf: transaction=1569332 data_size=556 offsets_size=104
48520           <...>-27583 (-----) [005] ...2 82315.962067: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
48521           <...>-27583 (-----) [005] d..4 82315.962070: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48522           <...>-27583 (-----) [005] dn.5 82315.962078: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48523           <...>-27583 (-----) [005] d..2 82315.962085: sched_switch: prev_comm=id.nn.benchmark prev_pid=27583 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48524<...>-5340 ( 788) [005] .... 82315.962093: binder_transaction_received: transaction=1569332
48525<...>-5340 ( 788) [005] ...1 82315.962133: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
48526<...>-5340 ( 788) [005] d..2 82315.962172: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48527          <idle>-0     (-----) [000] dnh2 82315.962193: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48528<...>-5340 ( 788) [005] d..2 82315.962193: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27583 next_prio=110
48529          <idle>-0     (-----) [000] .n.1 82315.962197: cpu_idle: state=4294967295 cpu_id=0
48530          <idle>-0     (-----) [000] d..2 82315.962203: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
48531           <...>-27583 (-----) [005] d..2 82315.962214: sched_switch: prev_comm=id.nn.benchmark prev_pid=27583 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
48532<...>-87 ( 87) [000] d..2 82315.962227: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48533          <idle>-0     (-----) [005] d..1 82315.962230: cpu_idle: state=0 cpu_id=5
48534          <idle>-0     (-----) [000] d..1 82315.962233: cpu_idle: state=0 cpu_id=0
48535          <idle>-0     (-----) [002] d.h4 82315.962243: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48536          <idle>-0     (-----) [002] dnh5 82315.962253: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48537          <idle>-0     (-----) [002] .n.1 82315.962259: cpu_idle: state=4294967295 cpu_id=2
48538          <idle>-0     (-----) [002] d..2 82315.962266: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
48539<...>-86 ( 86) [002] d..2 82315.962288: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48540          <idle>-0     (-----) [002] d..1 82315.962294: cpu_idle: state=0 cpu_id=2
48541          <idle>-0     (-----) [002] d.h4 82315.962329: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48542          <idle>-0     (-----) [005] dnh2 82315.962348: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48543          <idle>-0     (-----) [005] .n.1 82315.962352: cpu_idle: state=4294967295 cpu_id=5
48544          <idle>-0     (-----) [002] ...1 82315.962355: cpu_idle: state=4294967295 cpu_id=2
48545          <idle>-0     (-----) [002] d..1 82315.962357: cpu_idle: state=0 cpu_id=2
48546          <idle>-0     (-----) [005] d..2 82315.962360: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48547<...>-5340 ( 788) [005] d..1 82315.962406: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48548          <idle>-0     (-----) [000] dnh2 82315.962426: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48549          <idle>-0     (-----) [000] .n.1 82315.962430: cpu_idle: state=4294967295 cpu_id=0
48550          <idle>-0     (-----) [000] d..2 82315.962436: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
48551 neuralnetworks@-13088 (  788) [000] d..2 82315.962463: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48552          <idle>-0     (-----) [000] d..1 82315.962470: cpu_idle: state=0 cpu_id=0
48553<...>-5340 ( 788) [005] d..2 82315.962539: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48554          <idle>-0     (-----) [000] dnh2 82315.962554: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48555          <idle>-0     (-----) [000] .n.1 82315.962559: cpu_idle: state=4294967295 cpu_id=0
48556<...>-5340 ( 788) [005] d..2 82315.962561: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
48557          <idle>-0     (-----) [000] d..2 82315.962565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
48558          <idle>-0     (-----) [005] d..1 82315.962573: cpu_idle: state=0 cpu_id=5
48559<...>-87 ( 87) [000] d..2 82315.962587: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48560          <idle>-0     (-----) [002] d.h4 82315.962593: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48561          <idle>-0     (-----) [000] d..1 82315.962594: cpu_idle: state=0 cpu_id=0
48562          <idle>-0     (-----) [002] dnh5 82315.962599: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48563          <idle>-0     (-----) [002] .n.1 82315.962604: cpu_idle: state=4294967295 cpu_id=2
48564          <idle>-0     (-----) [002] d..2 82315.962610: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
48565<...>-86 ( 86) [002] d..2 82315.962630: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48566          <idle>-0     (-----) [002] d..1 82315.962636: cpu_idle: state=0 cpu_id=2
48567          <idle>-0     (-----) [003] d.h2 82315.963359: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
48568          <idle>-0     (-----) [003] dnh3 82315.963370: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
48569          <idle>-0     (-----) [003] .n.1 82315.963374: cpu_idle: state=4294967295 cpu_id=3
48570          <idle>-0     (-----) [003] d..2 82315.963378: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
48571        DispSync-8879  ( 8858) [003] d..1 82315.963401: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
48572        DispSync-8879  ( 8858) [003] d..2 82315.963412: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
48573          <idle>-0     (-----) [001] .n.1 82315.963417: cpu_idle: state=4294967295 cpu_id=1
48574          <idle>-0     (-----) [001] d..2 82315.963424: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
48575        DispSync-8879  ( 8858) [003] d..2 82315.963432: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
48576          <idle>-0     (-----) [003] d..1 82315.963437: cpu_idle: state=0 cpu_id=3
48577  appEventThread-8881  ( 8858) [001] d..3 82315.963488: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
48578  appEventThread-8881  ( 8858) [001] d..4 82315.963502: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
48579          <idle>-0     (-----) [000] .n.1 82315.963507: cpu_idle: state=4294967295 cpu_id=0
48580          <idle>-0     (-----) [000] d..2 82315.963513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
48581  appEventThread-8881  ( 8858) [001] d..3 82315.963515: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
48582  appEventThread-8881  ( 8858) [001] d..4 82315.963540: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=002
48583          <idle>-0     (-----) [002] .n.1 82315.963544: cpu_idle: state=4294967295 cpu_id=2
48584  appEventThread-8881  ( 8858) [001] d.h3 82315.963583: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=006
48585          <idle>-0     (-----) [002] d..2 82315.963583: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
48586          <idle>-0     (-----) [006] dnh2 82315.963604: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=006
48587          <idle>-0     (-----) [006] .n.1 82315.963609: cpu_idle: state=4294967295 cpu_id=6
48588          <idle>-0     (-----) [006] d..2 82315.963616: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
48589  appEventThread-8881  ( 8858) [001] d..2 82315.963621: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48590          <idle>-0     (-----) [001] d..1 82315.963631: cpu_idle: state=0 cpu_id=1
48591         sugov:4-577   (  577) [006] .... 82315.963640: clk_set_rate: perfcl_clk 825600000
48592         sugov:4-577   (  577) [006] .... 82315.963642: clk_set_rate: cpu7_perfcl_clk 902400000
48593         sugov:4-577   (  577) [006] .... 82315.963648: clk_set_rate: cpu6_perfcl_clk 902400000
48594         sugov:4-577   (  577) [006] .... 82315.963653: clk_set_rate: cpu5_perfcl_clk 902400000
48595         sugov:4-577   (  577) [006] .... 82315.963658: clk_set_rate: cpu4_perfcl_clk 825600000
48596         sugov:4-577   (  577) [006] .... 82315.963664: cpu_frequency: state=825600 cpu_id=4
48597         sugov:4-577   (  577) [006] .... 82315.963679: cpu_frequency: state=825600 cpu_id=5
48598         sugov:4-577   (  577) [006] .... 82315.963684: cpu_frequency: state=825600 cpu_id=6
48599         sugov:4-577   (  577) [006] .... 82315.963687: cpu_frequency: state=825600 cpu_id=7
48600         sugov:4-577   (  577) [006] d..2 82315.963706: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
48601          <idle>-0     (-----) [006] d..1 82315.963713: cpu_idle: state=0 cpu_id=6
48602<...>-9105 ( 9105) [000] .... 82315.963775: binder_transaction: transaction=1569335 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
48603<...>-9105 ( 9105) [000] .... 82315.963780: binder_transaction_alloc_buf: transaction=1569335 data_size=80 offsets_size=0
48604<...>-9105 ( 9105) [000] d..4 82315.963784: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
48605<...>-9105 ( 9105) [000] d..5 82315.963809: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
48606          <idle>-0     (-----) [001] .n.1 82315.963814: cpu_idle: state=4294967295 cpu_id=1
48607          <idle>-0     (-----) [001] d..2 82315.963842: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
48608 s.nexuslauncher-10023 (10023) [002] .... 82315.963844: binder_transaction: transaction=1569336 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
48609 s.nexuslauncher-10023 (10023) [002] .... 82315.963847: binder_transaction_alloc_buf: transaction=1569336 data_size=80 offsets_size=0
48610<...>-8874 ( 8858) [001] .... 82315.963847: binder_transaction_received: transaction=1569335
48611 s.nexuslauncher-10023 (10023) [002] d..4 82315.963852: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
48612<...>-9105 ( 9105) [000] d..3 82315.963870: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
48613 s.nexuslauncher-10023 (10023) [002] d..5 82315.963875: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
48614          <idle>-0     (-----) [003] .n.1 82315.963880: cpu_idle: state=4294967295 cpu_id=3
48615          <idle>-0     (-----) [003] d..2 82315.963887: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
48616<...>-13083 ( 8858) [003] .... 82315.963893: binder_transaction_received: transaction=1569336
48617<...>-8874 ( 8858) [001] d..1 82315.963902: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
48618 s.nexuslauncher-10023 (10023) [002] d..3 82315.963904: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=000
48619          <idle>-0     (-----) [006] dnh2 82315.963916: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
48620          <idle>-0     (-----) [006] .n.1 82315.963920: cpu_idle: state=4294967295 cpu_id=6
48621          <idle>-0     (-----) [006] d..2 82315.963927: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
48622<...>-8874 ( 8858) [001] d..2 82315.963929: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
48623<...>-8874 ( 8858) [001] d..1 82315.963932: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
48624<...>-13083 ( 8858) [003] d..2 82315.963937: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
48625          <idle>-0     (-----) [007] dnh2 82315.963968: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=007
48626          <idle>-0     (-----) [007] .n.1 82315.963972: cpu_idle: state=4294967295 cpu_id=7
48627    RenderThread-9436  ( 9105) [006] d..2 82315.963979: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
48628          <idle>-0     (-----) [007] d..2 82315.963981: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
48629  appEventThread-8881  ( 8858) [003] d..2 82315.963982: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
48630          <idle>-0     (-----) [003] d..1 82315.963988: cpu_idle: state=0 cpu_id=3
48631          <idle>-0     (-----) [006] d..1 82315.963990: cpu_idle: state=0 cpu_id=6
48632          <idle>-0     (-----) [004] dnh2 82315.964015: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
48633          <idle>-0     (-----) [004] .n.1 82315.964019: cpu_idle: state=4294967295 cpu_id=4
48634          <idle>-0     (-----) [004] d..2 82315.964027: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
48635<...>-9105 ( 9105) [000] d..3 82315.964028: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
48636    RenderThread-16607 (10023) [007] d..2 82315.964030: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
48637<...>-8874 ( 8858) [001] d..2 82315.964036: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
48638          <idle>-0     (-----) [007] d..1 82315.964040: cpu_idle: state=0 cpu_id=7
48639<...>-13083 ( 8858) [004] d..1 82315.964043: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
48640          <idle>-0     (-----) [001] d..1 82315.964045: cpu_idle: state=0 cpu_id=1
48641          <idle>-0     (-----) [006] dnh2 82315.964047: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
48642          <idle>-0     (-----) [006] .n.1 82315.964051: cpu_idle: state=4294967295 cpu_id=6
48643<...>-9105 ( 9105) [000] d..2 82315.964058: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48644          <idle>-0     (-----) [006] d..2 82315.964059: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
48645          <idle>-0     (-----) [003] dnh2 82315.964063: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
48646          <idle>-0     (-----) [003] .n.1 82315.964067: cpu_idle: state=4294967295 cpu_id=3
48647          <idle>-0     (-----) [000] d..1 82315.964069: cpu_idle: state=0 cpu_id=0
48648          <idle>-0     (-----) [003] d..2 82315.964070: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
48649<...>-13083 ( 8858) [004] d..2 82315.964090: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48650  appEventThread-8881  ( 8858) [003] d..2 82315.964092: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
48651          <idle>-0     (-----) [003] d..1 82315.964096: cpu_idle: state=0 cpu_id=3
48652          <idle>-0     (-----) [004] d..1 82315.964101: cpu_idle: state=0 cpu_id=4
48653    RenderThread-9436  ( 9105) [006] d..1 82315.964133: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
48654          <idle>-0     (-----) [000] dnh2 82315.964151: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
48655          <idle>-0     (-----) [000] .n.1 82315.964156: cpu_idle: state=4294967295 cpu_id=0
48656 s.nexuslauncher-10023 (10023) [002] d..2 82315.964160: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48657          <idle>-0     (-----) [000] d..2 82315.964163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
48658          <idle>-0     (-----) [002] d..1 82315.964171: cpu_idle: state=0 cpu_id=2
48659    RenderThread-9436  ( 9105) [006] .... 82315.964201: binder_transaction: transaction=1569337 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
48660    RenderThread-9436  ( 9105) [006] .... 82315.964204: binder_transaction_alloc_buf: transaction=1569337 data_size=104 offsets_size=0
48661    RenderThread-9436  ( 9105) [006] d..4 82315.964207: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
48662<...>-9105 ( 9105) [000] d..2 82315.964210: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48663          <idle>-0     (-----) [000] d..1 82315.964219: cpu_idle: state=0 cpu_id=0
48664    RenderThread-9436  ( 9105) [006] d..5 82315.964220: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
48665          <idle>-0     (-----) [002] d.h4 82315.964220: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48666    RenderThread-9436  ( 9105) [006] d..2 82315.964229: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
48667<...>-13083 ( 8858) [006] .... 82315.964238: binder_transaction_received: transaction=1569337
48668          <idle>-0     (-----) [005] dnh2 82315.964240: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48669          <idle>-0     (-----) [005] .n.1 82315.964245: cpu_idle: state=4294967295 cpu_id=5
48670          <idle>-0     (-----) [002] ...1 82315.964247: cpu_idle: state=4294967295 cpu_id=2
48671          <idle>-0     (-----) [002] d..1 82315.964250: cpu_idle: state=0 cpu_id=2
48672          <idle>-0     (-----) [005] d..2 82315.964252: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48673<...>-13083 ( 8858) [006] .... 82315.964300: binder_transaction: transaction=1569338 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
48674<...>-13083 ( 8858) [006] .... 82315.964303: binder_transaction_alloc_buf: transaction=1569338 data_size=52 offsets_size=8
48675<...>-5340 ( 788) [005] d..1 82315.964303: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48676<...>-13083 ( 8858) [006] d..2 82315.964309: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
48677<...>-13083 ( 8858) [006] d..3 82315.964318: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
48678          <idle>-0     (-----) [000] dnh2 82315.964321: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48679          <idle>-0     (-----) [000] .n.1 82315.964326: cpu_idle: state=4294967295 cpu_id=0
48680          <idle>-0     (-----) [000] d..2 82315.964333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
48681<...>-13083 ( 8858) [006] d..2 82315.964346: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
48682 neuralnetworks@-13088 (  788) [000] d..2 82315.964363: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48683          <idle>-0     (-----) [000] d..1 82315.964375: cpu_idle: state=0 cpu_id=0
48684    RenderThread-9436  ( 9105) [006] .... 82315.964383: binder_transaction_received: transaction=1569338
48685<...>-5340 ( 788) [005] ...1 82315.964393: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
48686<...>-5340 ( 788) [005] ...1 82315.964397: tracing_mark_write: E|788
48687<...>-5340 ( 788) [005] .... 82315.964413: binder_transaction: transaction=1569339 dest_node=1569333 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
48688<...>-5340 ( 788) [005] .... 82315.964416: binder_transaction_alloc_buf: transaction=1569339 data_size=60 offsets_size=0
48689<...>-5340 ( 788) [005] d..4 82315.964420: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
48690<...>-5340 ( 788) [005] d..5 82315.964432: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
48691          <idle>-0     (-----) [004] .n.1 82315.964438: cpu_idle: state=4294967295 cpu_id=4
48692          <idle>-0     (-----) [004] d..2 82315.964446: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
48693<...>-5340 ( 788) [005] ...1 82315.964455: tracing_mark_write: E|788
48694           <...>-27571 (-----) [004] .... 82315.964455: binder_transaction_received: transaction=1569339
48695<...>-5340 ( 788) [005] .... 82315.964461: binder_transaction: transaction=1569340 dest_node=0 dest_proc=27550 dest_thread=27583 reply=1 flags=0x0 code=0x0
48696<...>-5340 ( 788) [005] .... 82315.964463: binder_transaction_alloc_buf: transaction=1569340 data_size=8 offsets_size=0
48697<...>-5340 ( 788) [005] d..2 82315.964465: sched_waking: comm=id.nn.benchmark pid=27583 prio=110 target_cpu=005
48698<...>-5340 ( 788) [005] d..3 82315.964472: sched_wakeup: comm=id.nn.benchmark pid=27583 prio=110 target_cpu=005
48699<...>-5340 ( 788) [005] .... 82315.964474: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
48700           <...>-27571 (-----) [004] ...1 82315.964479: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
48701           <...>-27571 (-----) [004] ...1 82315.964487: tracing_mark_write: E|27550
48702<...>-5340 ( 788) [005] d..2 82315.964514: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27583 next_prio=110
48703           <...>-27583 (-----) [005] .... 82315.964524: binder_transaction_received: transaction=1569340
48704           <...>-27571 (-----) [004] d..2 82315.964528: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48705          <idle>-0     (-----) [004] d..1 82315.964539: cpu_idle: state=0 cpu_id=4
48706           <...>-27583 (-----) [005] ...1 82315.964558: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
48707           <...>-27583 (-----) [005] ...1 82315.964564: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
48708           <...>-27583 (-----) [005] ...1 82315.964588: tracing_mark_write: E|27550
48709           <...>-27583 (-----) [005] ...1 82315.964592: tracing_mark_write: E|27550
48710           <...>-27583 (-----) [005] ...1 82315.964595: tracing_mark_write: E|27550
48711           <...>-27583 (-----) [005] ...1 82315.964782: tracing_mark_write: E|27550
48712           <...>-27583 (-----) [005] d..1 82315.964794: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48713           <...>-27583 (-----) [005] d..2 82315.964809: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48714          <idle>-0     (-----) [004] .n.1 82315.964815: cpu_idle: state=4294967295 cpu_id=4
48715          <idle>-0     (-----) [004] d..2 82315.964823: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
48716           <...>-27550 (-----) [004] d..2 82315.964841: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48717          <idle>-0     (-----) [004] d..1 82315.964848: cpu_idle: state=0 cpu_id=4
48718           <...>-27583 (-----) [005] d..1 82315.964897: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48719           <...>-27583 (-----) [005] d..2 82315.964907: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
48720          <idle>-0     (-----) [004] .n.1 82315.964911: cpu_idle: state=4294967295 cpu_id=4
48721          <idle>-0     (-----) [004] d..2 82315.964918: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
48722           <...>-27583 (-----) [005] d..2 82315.964945: sched_switch: prev_comm=id.nn.benchmark prev_pid=27583 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
48723           <...>-27550 (-----) [004] ...1 82315.964950: tracing_mark_write: E|27550
48724           <...>-27550 (-----) [004] ...1 82315.964956: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
48725           <...>-27550 (-----) [004] ...1 82315.964962: tracing_mark_write: E|27550
48726          <idle>-0     (-----) [005] d..1 82315.964965: cpu_idle: state=0 cpu_id=5
48727           <...>-27550 (-----) [004] ...1 82315.964966: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
48728           <...>-27550 (-----) [004] ...1 82315.964970: tracing_mark_write: E|27550
48729           <...>-27550 (-----) [004] ...1 82315.964974: tracing_mark_write: E|27550
48730           <...>-27550 (-----) [004] ...1 82315.965088: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
48731          <idle>-0     (-----) [003] d.s2 82315.965130: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
48732          <idle>-0     (-----) [003] dns3 82315.965142: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
48733          <idle>-0     (-----) [003] .n.1 82315.965151: cpu_idle: state=4294967295 cpu_id=3
48734          <idle>-0     (-----) [003] d..2 82315.965157: 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
48735<...>-8 ( 8) [003] d..2 82315.965178: 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
48736           <...>-27550 (-----) [004] ...1 82315.965178: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
48737          <idle>-0     (-----) [003] d..1 82315.965183: cpu_idle: state=0 cpu_id=3
48738           <...>-27550 (-----) [004] ...1 82315.965185: tracing_mark_write: E|27550
48739           <...>-27550 (-----) [004] ...1 82315.965189: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
48740           <...>-27550 (-----) [004] ...1 82315.965194: tracing_mark_write: E|27550
48741           <...>-27550 (-----) [004] ...1 82315.965198: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
48742           <...>-27550 (-----) [004] ...1 82315.965202: tracing_mark_write: E|27550
48743           <...>-27550 (-----) [004] ...1 82315.965205: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
48744          <idle>-0     (-----) [005] .n.1 82315.965299: cpu_idle: state=4294967295 cpu_id=5
48745           <...>-27550 (-----) [004] ...1 82315.965301: tracing_mark_write: E|27550
48746           <...>-27550 (-----) [004] ...1 82315.965306: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
48747          <idle>-0     (-----) [005] d..2 82315.965309: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27584 next_prio=110
48748           <...>-27550 (-----) [004] d..2 82315.965324: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48749          <idle>-0     (-----) [004] d..1 82315.965339: cpu_idle: state=0 cpu_id=4
48750           <...>-27584 (-----) [005] ...1 82315.965366: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
48751           <...>-27584 (-----) [005] ...1 82315.965380: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
48752           <...>-27584 (-----) [005] ...1 82315.965384: tracing_mark_write: E|27550
48753           <...>-27584 (-----) [005] .... 82315.965406: binder_transaction: transaction=1569341 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
48754           <...>-27584 (-----) [005] .... 82315.965410: binder_transaction_alloc_buf: transaction=1569341 data_size=48 offsets_size=0
48755           <...>-27584 (-----) [005] ...2 82315.965413: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
48756           <...>-27584 (-----) [005] d..4 82315.965416: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
48757           <...>-27584 (-----) [005] dn.5 82315.965425: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
48758           <...>-27584 (-----) [005] d..2 82315.965432: sched_switch: prev_comm=id.nn.benchmark prev_pid=27584 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
48759<...>-770 ( 770) [005] .... 82315.965442: binder_transaction_received: transaction=1569341
48760    RenderThread-9436  ( 9105) [006] d..2 82315.965453: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
48761          <idle>-0     (-----) [006] d..1 82315.965465: cpu_idle: state=0 cpu_id=6
48762<...>-770 ( 770) [005] ...1 82315.965466: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
48763          <idle>-0     (-----) [006] d.h2 82315.965541: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
48764          <idle>-0     (-----) [006] d.h3 82315.965548: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
48765          <idle>-0     (-----) [006] dnh3 82315.965551: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
48766<...>-770 ( 770) [005] d..2 82315.965551: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
48767          <idle>-0     (-----) [006] .n.1 82315.965556: cpu_idle: state=4294967295 cpu_id=6
48768          <idle>-0     (-----) [006] d..2 82315.965564: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
48769          <idle>-0     (-----) [000] dnh2 82315.965574: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
48770          <idle>-0     (-----) [000] .n.1 82315.965578: cpu_idle: state=4294967295 cpu_id=0
48771          <idle>-0     (-----) [000] d..2 82315.965585: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
48772<...>-770 ( 770) [005] ...1 82315.965591: tracing_mark_write: E|770
48773<...>-770 ( 770) [005] .... 82315.965599: binder_transaction: transaction=1569342 dest_node=0 dest_proc=27550 dest_thread=27584 reply=1 flags=0x0 code=0x0
48774<...>-770 ( 770) [005] .... 82315.965602: binder_transaction_alloc_buf: transaction=1569342 data_size=168 offsets_size=32
48775<...>-770 ( 770) [005] .... 82315.965608: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
48776<...>-581 ( 571) [000] d.h2 82315.965640: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
48777<...>-770 ( 770) [005] d..2 82315.965644: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27584 next_prio=110
48778           <...>-27584 (-----) [005] .... 82315.965655: binder_transaction_received: transaction=1569342
48779<...>-581 ( 571) [000] d.h3 82315.965656: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
48780          <idle>-0     (-----) [003] .n.1 82315.965661: cpu_idle: state=4294967295 cpu_id=3
48781          <idle>-0     (-----) [003] d..2 82315.965666: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
48782<...>-581 ( 571) [000] d..2 82315.965698: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48783          <idle>-0     (-----) [000] d..1 82315.965707: cpu_idle: state=0 cpu_id=0
48784 kgsl_worker_thr-258   (  258) [003] d..2 82315.965714: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
48785 kgsl_worker_thr-258   (  258) [003] d..3 82315.965725: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
48786           <...>-27584 (-----) [005] ...1 82315.965728: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
48787           <...>-27584 (-----) [005] ...1 82315.965733: tracing_mark_write: E|27550
48788 kgsl_worker_thr-258   (  258) [003] d..2 82315.965736: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
48789           <...>-27584 (-----) [005] .... 82315.965747: binder_transaction: transaction=1569343 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
48790           <...>-27584 (-----) [005] .... 82315.965750: binder_transaction_alloc_buf: transaction=1569343 data_size=48 offsets_size=0
48791           <...>-27584 (-----) [005] ...2 82315.965752: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
48792           <...>-27584 (-----) [005] d..4 82315.965754: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
48793           <...>-27584 (-----) [005] dn.5 82315.965764: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
48794           <...>-27584 (-----) [005] d..2 82315.965770: sched_switch: prev_comm=id.nn.benchmark prev_pid=27584 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
48795<...>-770 ( 770) [005] .... 82315.965778: binder_transaction_received: transaction=1569343
48796    RenderThread-9436  ( 9105) [006] .... 82315.965782: binder_transaction: transaction=1569344 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
48797    RenderThread-9436  ( 9105) [006] .... 82315.965787: binder_transaction_alloc_buf: transaction=1569344 data_size=192 offsets_size=8
48798    RenderThread-9436  ( 9105) [006] d..4 82315.965793: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
48799<...>-770 ( 770) [005] ...1 82315.965794: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
48800    RenderThread-9436  ( 9105) [006] d..5 82315.965803: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
48801    RenderThread-9436  ( 9105) [006] d..2 82315.965814: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
48802<...>-13083 ( 8858) [006] .... 82315.965824: binder_transaction_received: transaction=1569344
48803<...>-770 ( 770) [005] d..2 82315.965850: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
48804          <idle>-0     (-----) [000] dnh2 82315.965869: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
48805          <idle>-0     (-----) [000] .n.1 82315.965873: cpu_idle: state=4294967295 cpu_id=0
48806          <idle>-0     (-----) [000] d..2 82315.965879: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
48807<...>-770 ( 770) [005] ...1 82315.965881: tracing_mark_write: E|770
48808<...>-770 ( 770) [005] .... 82315.965888: binder_transaction: transaction=1569345 dest_node=0 dest_proc=27550 dest_thread=27584 reply=1 flags=0x0 code=0x0
48809<...>-770 ( 770) [005] .... 82315.965891: binder_transaction_alloc_buf: transaction=1569345 data_size=168 offsets_size=32
48810<...>-770 ( 770) [005] .... 82315.965897: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
48811  kworker/u16:15-1311  ( 1311) [003] d..2 82315.965916: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
48812<...>-581 ( 571) [000] d..2 82315.965916: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48813          <idle>-0     (-----) [003] d..1 82315.965922: cpu_idle: state=0 cpu_id=3
48814          <idle>-0     (-----) [000] d..1 82315.965924: cpu_idle: state=0 cpu_id=0
48815<...>-770 ( 770) [005] d..2 82315.965931: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27584 next_prio=110
48816           <...>-27584 (-----) [005] .... 82315.965941: binder_transaction_received: transaction=1569345
48817<...>-13083 ( 8858) [006] .... 82315.965948: binder_transaction: transaction=1569346 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
48818<...>-13083 ( 8858) [006] .... 82315.965952: binder_transaction_alloc_buf: transaction=1569346 data_size=68 offsets_size=0
48819<...>-13083 ( 8858) [006] d..2 82315.965955: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
48820<...>-13083 ( 8858) [006] d..3 82315.965964: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
48821<...>-13083 ( 8858) [006] d..2 82315.965989: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
48822    RenderThread-9436  ( 9105) [006] .... 82315.965997: binder_transaction_received: transaction=1569346
48823    RenderThread-9436  ( 9105) [006] d..2 82315.966064: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
48824          <idle>-0     (-----) [006] d..1 82315.966077: cpu_idle: state=0 cpu_id=6
48825           <...>-27584 (-----) [005] ...1 82315.966215: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
48826           <...>-27584 (-----) [005] ...1 82315.966225: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
48827           <...>-27584 (-----) [005] ...1 82315.966229: tracing_mark_write: E|27550
48828           <...>-27584 (-----) [005] .... 82315.966292: binder_transaction: transaction=1569347 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
48829           <...>-27584 (-----) [005] .... 82315.966295: binder_transaction_alloc_buf: transaction=1569347 data_size=556 offsets_size=104
48830           <...>-27584 (-----) [005] ...2 82315.966310: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
48831           <...>-27584 (-----) [005] d..4 82315.966312: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48832           <...>-27584 (-----) [005] dn.5 82315.966324: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48833           <...>-27584 (-----) [005] d..2 82315.966330: sched_switch: prev_comm=id.nn.benchmark prev_pid=27584 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48834<...>-5340 ( 788) [005] .... 82315.966340: binder_transaction_received: transaction=1569347
48835<...>-5340 ( 788) [005] ...1 82315.966389: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
48836<...>-5340 ( 788) [005] d..2 82315.966437: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48837<...>-5340 ( 788) [005] d..2 82315.966461: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27584 next_prio=110
48838          <idle>-0     (-----) [000] dnh2 82315.966461: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48839          <idle>-0     (-----) [000] .n.1 82315.966465: cpu_idle: state=4294967295 cpu_id=0
48840          <idle>-0     (-----) [000] d..2 82315.966471: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
48841           <...>-27584 (-----) [005] d..2 82315.966482: sched_switch: prev_comm=id.nn.benchmark prev_pid=27584 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
48842<...>-87 ( 87) [000] d..2 82315.966499: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48843          <idle>-0     (-----) [005] d..1 82315.966499: cpu_idle: state=0 cpu_id=5
48844          <idle>-0     (-----) [000] d..1 82315.966506: cpu_idle: state=0 cpu_id=0
48845          <idle>-0     (-----) [002] d.h4 82315.966512: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48846          <idle>-0     (-----) [002] dnh5 82315.966524: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48847          <idle>-0     (-----) [002] .n.1 82315.966529: cpu_idle: state=4294967295 cpu_id=2
48848          <idle>-0     (-----) [002] d..2 82315.966537: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
48849<...>-86 ( 86) [002] d..2 82315.966563: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48850          <idle>-0     (-----) [002] d..1 82315.966571: cpu_idle: state=0 cpu_id=2
48851          <idle>-0     (-----) [002] d.h4 82315.966596: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48852          <idle>-0     (-----) [005] dnh2 82315.966615: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48853          <idle>-0     (-----) [005] .n.1 82315.966620: cpu_idle: state=4294967295 cpu_id=5
48854          <idle>-0     (-----) [002] ...1 82315.966622: cpu_idle: state=4294967295 cpu_id=2
48855          <idle>-0     (-----) [002] d..1 82315.966624: cpu_idle: state=0 cpu_id=2
48856          <idle>-0     (-----) [005] d..2 82315.966628: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48857<...>-5340 ( 788) [005] d..1 82315.966684: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48858          <idle>-0     (-----) [000] dnh2 82315.966706: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48859          <idle>-0     (-----) [000] .n.1 82315.966710: cpu_idle: state=4294967295 cpu_id=0
48860          <idle>-0     (-----) [000] d..2 82315.966716: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
48861 neuralnetworks@-13088 (  788) [000] d..2 82315.966743: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48862          <idle>-0     (-----) [000] d..1 82315.966750: cpu_idle: state=0 cpu_id=0
48863<...>-5340 ( 788) [005] d..2 82315.966829: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48864          <idle>-0     (-----) [000] dnh2 82315.966848: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
48865          <idle>-0     (-----) [000] .n.1 82315.966852: cpu_idle: state=4294967295 cpu_id=0
48866<...>-5340 ( 788) [005] d..2 82315.966853: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
48867          <idle>-0     (-----) [000] d..2 82315.966858: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
48868          <idle>-0     (-----) [005] d..1 82315.966867: cpu_idle: state=0 cpu_id=5
48869<...>-87 ( 87) [000] d..2 82315.966881: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
48870          <idle>-0     (-----) [002] d.h4 82315.966887: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48871          <idle>-0     (-----) [000] d..1 82315.966888: cpu_idle: state=0 cpu_id=0
48872          <idle>-0     (-----) [002] dnh5 82315.966893: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
48873          <idle>-0     (-----) [002] .n.1 82315.966898: cpu_idle: state=4294967295 cpu_id=2
48874          <idle>-0     (-----) [002] d..2 82315.966905: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
48875<...>-86 ( 86) [002] d..2 82315.966924: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48876          <idle>-0     (-----) [002] d..1 82315.966931: cpu_idle: state=0 cpu_id=2
48877          <idle>-0     (-----) [005] ...1 82315.967185: cpu_idle: state=4294967295 cpu_id=5
48878          <idle>-0     (-----) [005] d..1 82315.967189: cpu_idle: state=0 cpu_id=5
48879          <idle>-0     (-----) [003] d.h2 82315.967337: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
48880          <idle>-0     (-----) [003] dnh3 82315.967346: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
48881          <idle>-0     (-----) [003] .n.1 82315.967351: cpu_idle: state=4294967295 cpu_id=3
48882          <idle>-0     (-----) [003] d..2 82315.967356: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
48883        DispSync-8879  ( 8858) [003] d..1 82315.967370: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
48884        DispSync-8879  ( 8858) [003] d..2 82315.967380: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
48885          <idle>-0     (-----) [002] .n.1 82315.967386: cpu_idle: state=4294967295 cpu_id=2
48886          <idle>-0     (-----) [002] d..2 82315.967391: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
48887        DispSync-8879  ( 8858) [003] d..2 82315.967399: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
48888          <idle>-0     (-----) [003] d..1 82315.967404: cpu_idle: state=0 cpu_id=3
48889   sfEventThread-8882  ( 8858) [002] d..3 82315.967429: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
48890   sfEventThread-8882  ( 8858) [002] d..4 82315.967444: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
48891          <idle>-0     (-----) [003] .n.1 82315.967449: cpu_idle: state=4294967295 cpu_id=3
48892          <idle>-0     (-----) [003] d..2 82315.967453: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
48893   sfEventThread-8882  ( 8858) [002] d..3 82315.967456: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=005
48894          <idle>-0     (-----) [004] dnh2 82315.967484: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
48895          <idle>-0     (-----) [004] .n.1 82315.967488: cpu_idle: state=4294967295 cpu_id=4
48896   sfEventThread-8882  ( 8858) [002] d..2 82315.967493: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48897          <idle>-0     (-----) [004] d..2 82315.967495: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
48898          <idle>-0     (-----) [002] d..1 82315.967502: cpu_idle: state=0 cpu_id=2
48899<...>-9005 ( 8943) [004] .... 82315.967688: binder_transaction: transaction=1569350 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
48900<...>-9005 ( 8943) [004] .... 82315.967694: binder_transaction_alloc_buf: transaction=1569350 data_size=80 offsets_size=0
48901<...>-9005 ( 8943) [004] d..4 82315.967698: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
48902<...>-9005 ( 8943) [004] d..5 82315.967712: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
48903          <idle>-0     (-----) [006] .n.1 82315.967717: cpu_idle: state=4294967295 cpu_id=6
48904          <idle>-0     (-----) [006] d..2 82315.967726: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
48905<...>-13083 ( 8858) [006] .... 82315.967734: binder_transaction_received: transaction=1569350
48906<...>-13083 ( 8858) [006] d..1 82315.967754: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
48907          <idle>-0     (-----) [002] dnh2 82315.967772: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
48908          <idle>-0     (-----) [002] .n.1 82315.967777: cpu_idle: state=4294967295 cpu_id=2
48909          <idle>-0     (-----) [002] d..2 82315.967782: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
48910<...>-13083 ( 8858) [006] d..2 82315.967791: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
48911          <idle>-0     (-----) [006] d..1 82315.967802: cpu_idle: state=0 cpu_id=6
48912   sfEventThread-8882  ( 8858) [002] d..2 82315.967804: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48913          <idle>-0     (-----) [002] d..1 82315.967810: cpu_idle: state=0 cpu_id=2
48914  surfaceflinger-8858  ( 8858) [003] d..1 82315.967898: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
48915  surfaceflinger-8858  ( 8858) [003] d..2 82315.967912: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
48916          <idle>-0     (-----) [002] .n.1 82315.967917: cpu_idle: state=4294967295 cpu_id=2
48917          <idle>-0     (-----) [002] d..2 82315.967922: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
48918   sfEventThread-8882  ( 8858) [002] d..2 82315.967938: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
48919          <idle>-0     (-----) [002] d..1 82315.967944: cpu_idle: state=0 cpu_id=2
48920<...>-9005 ( 8943) [004] .... 82315.968155: binder_transaction: transaction=1569351 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
48921<...>-9005 ( 8943) [004] .... 82315.968161: binder_transaction_alloc_buf: transaction=1569351 data_size=988 offsets_size=48
48922<...>-9005 ( 8943) [004] ...2 82315.968179: binder_set_priority: proc=8858 thread=13083 old=120 => new=116 desired=116
48923<...>-9005 ( 8943) [004] d..4 82315.968182: sched_waking: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=006
48924<...>-9005 ( 8943) [004] dn.5 82315.968198: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=004
48925<...>-9005 ( 8943) [004] d..2 82315.968205: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=116
48926<...>-13083 ( 8858) [004] .... 82315.968215: binder_transaction_received: transaction=1569351
48927<...>-13083 ( 8858) [004] .... 82315.968302: binder_transaction: transaction=1569352 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
48928<...>-13083 ( 8858) [004] .... 82315.968306: binder_transaction_alloc_buf: transaction=1569352 data_size=0 offsets_size=0
48929<...>-13083 ( 8858) [004] .... 82315.968308: binder_set_priority: proc=8858 thread=13083 old=116 => new=120 desired=120
48930          <idle>-0     (-----) [000] ...1 82315.968328: cpu_idle: state=4294967295 cpu_id=0
48931          <idle>-0     (-----) [000] d..1 82315.968330: cpu_idle: state=0 cpu_id=0
48932<...>-13083 ( 8858) [004] d..2 82315.968348: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
48933<...>-9005 ( 8943) [004] .... 82315.968357: binder_transaction_received: transaction=1569352
48934  surfaceflinger-8858  ( 8858) [003] d.s1 82315.968470: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
48935  surfaceflinger-8858  ( 8858) [003] d.s2 82315.968483: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
48936  surfaceflinger-8858  ( 8858) [003] d.s2 82315.968487: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
48937<...>-9005 ( 8943) [004] d..2 82315.968496: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48938  surfaceflinger-8858  ( 8858) [003] d.s3 82315.968496: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
48939          <idle>-0     (-----) [004] d..1 82315.968509: cpu_idle: state=0 cpu_id=4
48940          <idle>-0     (-----) [002] d.h4 82315.968531: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48941          <idle>-0     (-----) [005] dnh2 82315.968549: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
48942          <idle>-0     (-----) [005] .n.1 82315.968553: cpu_idle: state=4294967295 cpu_id=5
48943          <idle>-0     (-----) [002] ...1 82315.968558: cpu_idle: state=4294967295 cpu_id=2
48944          <idle>-0     (-----) [005] d..2 82315.968561: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
48945          <idle>-0     (-----) [002] d..1 82315.968561: cpu_idle: state=0 cpu_id=2
48946<...>-5340 ( 788) [005] d..1 82315.968612: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48947          <idle>-0     (-----) [000] dnh2 82315.968629: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
48948          <idle>-0     (-----) [000] .n.1 82315.968632: cpu_idle: state=4294967295 cpu_id=0
48949  surfaceflinger-8858  ( 8858) [003] ...1 82315.968633: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
48950  surfaceflinger-8858  ( 8858) [003] ...1 82315.968638: tracing_mark_write: E|8858
48951          <idle>-0     (-----) [000] d..2 82315.968640: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
48952 neuralnetworks@-13088 (  788) [000] d..2 82315.968676: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
48953  surfaceflinger-8858  ( 8858) [003] .... 82315.968686: binder_transaction: transaction=1569353 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
48954     rcu_preempt-7     (    7) [000] d..2 82315.968687: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
48955  surfaceflinger-8858  ( 8858) [003] .... 82315.968691: binder_transaction_alloc_buf: transaction=1569353 data_size=540 offsets_size=96
48956<...>-5340 ( 788) [005] ...1 82315.968704: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
48957<...>-5340 ( 788) [005] ...1 82315.968708: tracing_mark_write: E|788
48958  surfaceflinger-8858  ( 8858) [003] ...2 82315.968708: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
48959  surfaceflinger-8858  ( 8858) [003] d..4 82315.968716: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
48960     rcu_preempt-7     (    7) [000] d..3 82315.968717: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
48961     rcu_preempt-7     (    7) [000] d..2 82315.968723: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
48962<...>-5340 ( 788) [005] .... 82315.968725: binder_transaction: transaction=1569354 dest_node=1569348 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
48963<...>-5340 ( 788) [005] .... 82315.968728: binder_transaction_alloc_buf: transaction=1569354 data_size=60 offsets_size=0
48964<...>-5340 ( 788) [005] d..4 82315.968731: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
48965  surfaceflinger-8858  ( 8858) [003] d..5 82315.968737: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
48966          <idle>-0     (-----) [001] .n.1 82315.968742: cpu_idle: state=4294967295 cpu_id=1
48967     rcu_preempt-7     (    7) [000] d..3 82315.968743: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
48968<...>-5340 ( 788) [005] d..5 82315.968744: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
48969          <idle>-0     (-----) [004] .n.1 82315.968749: cpu_idle: state=4294967295 cpu_id=4
48970          <idle>-0     (-----) [001] d..2 82315.968749: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
48971  surfaceflinger-8858  ( 8858) [003] d..2 82315.968751: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
48972     rcu_preempt-7     (    7) [000] d..2 82315.968753: 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
48973 [email protected]   (  619) [001] .... 82315.968758: binder_transaction_received: transaction=1569353
48974          <idle>-0     (-----) [004] d..2 82315.968758: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
48975         rcuop/6-61    (   61) [000] d..2 82315.968759: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=001
48976<...>-5340 ( 788) [005] ...1 82315.968767: tracing_mark_write: E|788
48977<...>-5340 ( 788) [005] .... 82315.968773: binder_transaction: transaction=1569355 dest_node=0 dest_proc=27550 dest_thread=27584 reply=1 flags=0x0 code=0x0
48978<...>-5340 ( 788) [005] .... 82315.968775: binder_transaction_alloc_buf: transaction=1569355 data_size=8 offsets_size=0
48979           <...>-27571 (-----) [004] .... 82315.968777: binder_transaction_received: transaction=1569354
48980<...>-5340 ( 788) [005] d..2 82315.968777: sched_waking: comm=id.nn.benchmark pid=27584 prio=110 target_cpu=005
48981         rcuop/6-61    (   61) [000] d..3 82315.968780: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=000
48982<...>-5340 ( 788) [005] d..3 82315.968783: sched_wakeup: comm=id.nn.benchmark pid=27584 prio=110 target_cpu=005
48983<...>-5340 ( 788) [005] .... 82315.968785: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
48984         rcuop/6-61    (   61) [000] d..2 82315.968787: 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
48985 [email protected]   (  619) [001] ...1 82315.968799: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
48986         rcuop/2-29    (   29) [000] d..2 82315.968802: 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
48987           <...>-27571 (-----) [004] ...1 82315.968809: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
48988           <...>-27571 (-----) [004] ...1 82315.968818: tracing_mark_write: E|27550
48989<...>-69 ( 69) [000] d..2 82315.968832: 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
48990<...>-5340 ( 788) [005] d..2 82315.968841: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27584 next_prio=110
48991          <idle>-0     (-----) [000] d..1 82315.968849: cpu_idle: state=0 cpu_id=0
48992           <...>-27584 (-----) [005] .... 82315.968850: binder_transaction_received: transaction=1569355
48993           <...>-27571 (-----) [004] d..2 82315.968851: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
48994          <idle>-0     (-----) [000] ...1 82315.968859: cpu_idle: state=4294967295 cpu_id=0
48995          <idle>-0     (-----) [000] d..1 82315.968861: cpu_idle: state=0 cpu_id=0
48996          <idle>-0     (-----) [004] d..1 82315.968862: cpu_idle: state=0 cpu_id=4
48997           <...>-27584 (-----) [005] ...1 82315.968887: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
48998           <...>-27584 (-----) [005] ...1 82315.968893: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
48999           <...>-27584 (-----) [005] ...1 82315.968917: tracing_mark_write: E|27550
49000 [email protected]   (  619) [001] ...1 82315.968918: tracing_mark_write: B|619|HWCSession::PresentDisplay::
49001           <...>-27584 (-----) [005] ...1 82315.968921: tracing_mark_write: E|27550
49002           <...>-27584 (-----) [005] ...1 82315.968924: tracing_mark_write: E|27550
49003  kworker/u16:15-1311  ( 1311) [003] d..2 82315.969037: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
49004          <idle>-0     (-----) [003] d..1 82315.969047: cpu_idle: state=0 cpu_id=3
49005 [email protected]   (  619) [001] d.s1 82315.969057: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
49006 [email protected]   (  619) [001] d.s2 82315.969070: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
49007           <...>-27584 (-----) [005] ...1 82315.969112: tracing_mark_write: E|27550
49008           <...>-27584 (-----) [005] d..1 82315.969124: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49009           <...>-27584 (-----) [005] d..2 82315.969139: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49010          <idle>-0     (-----) [004] .n.1 82315.969145: cpu_idle: state=4294967295 cpu_id=4
49011          <idle>-0     (-----) [004] d..2 82315.969153: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
49012           <...>-27550 (-----) [004] d..2 82315.969172: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49013          <idle>-0     (-----) [004] d..1 82315.969180: cpu_idle: state=0 cpu_id=4
49014           <...>-27584 (-----) [005] d..1 82315.969228: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49015           <...>-27584 (-----) [005] d..2 82315.969237: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49016          <idle>-0     (-----) [004] .n.1 82315.969242: cpu_idle: state=4294967295 cpu_id=4
49017          <idle>-0     (-----) [004] d..2 82315.969249: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
49018           <...>-27584 (-----) [005] d..2 82315.969276: sched_switch: prev_comm=id.nn.benchmark prev_pid=27584 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
49019           <...>-27550 (-----) [004] ...1 82315.969284: tracing_mark_write: E|27550
49020           <...>-27550 (-----) [004] ...1 82315.969290: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
49021          <idle>-0     (-----) [005] d..1 82315.969297: cpu_idle: state=0 cpu_id=5
49022           <...>-27550 (-----) [004] ...1 82315.969298: tracing_mark_write: E|27550
49023           <...>-27550 (-----) [004] ...1 82315.969302: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
49024           <...>-27550 (-----) [004] ...1 82315.969306: tracing_mark_write: E|27550
49025           <...>-27550 (-----) [004] ...1 82315.969312: tracing_mark_write: E|27550
49026 [email protected]   (  619) [001] ...1 82315.969397: tracing_mark_write: B|619|HWDeviceDRM::Validate::
49027           <...>-27550 (-----) [004] ...1 82315.969428: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
49028           <...>-27550 (-----) [004] ...1 82315.969487: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
49029           <...>-27550 (-----) [004] ...1 82315.969493: tracing_mark_write: E|27550
49030           <...>-27550 (-----) [004] ...1 82315.969497: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
49031           <...>-27550 (-----) [004] ...1 82315.969503: tracing_mark_write: E|27550
49032           <...>-27550 (-----) [004] ...1 82315.969507: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
49033           <...>-27550 (-----) [004] ...1 82315.969511: tracing_mark_write: E|27550
49034           <...>-27550 (-----) [004] ...1 82315.969514: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
49035          <idle>-0     (-----) [005] .n.1 82315.969614: cpu_idle: state=4294967295 cpu_id=5
49036           <...>-27550 (-----) [004] ...1 82315.969615: tracing_mark_write: E|27550
49037           <...>-27550 (-----) [004] ...1 82315.969619: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
49038          <idle>-0     (-----) [005] d..2 82315.969622: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27585 next_prio=110
49039           <...>-27550 (-----) [004] d..2 82315.969638: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49040          <idle>-0     (-----) [004] d..1 82315.969655: cpu_idle: state=0 cpu_id=4
49041           <...>-27585 (-----) [005] ...1 82315.969681: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
49042           <...>-27585 (-----) [005] ...1 82315.969695: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
49043           <...>-27585 (-----) [005] ...1 82315.969698: tracing_mark_write: E|27550
49044           <...>-27585 (-----) [005] .... 82315.969719: binder_transaction: transaction=1569356 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
49045           <...>-27585 (-----) [005] .... 82315.969722: binder_transaction_alloc_buf: transaction=1569356 data_size=48 offsets_size=0
49046           <...>-27585 (-----) [005] ...2 82315.969725: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
49047           <...>-27585 (-----) [005] d..4 82315.969728: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
49048           <...>-27585 (-----) [005] dn.5 82315.969738: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
49049           <...>-27585 (-----) [005] d..2 82315.969744: sched_switch: prev_comm=id.nn.benchmark prev_pid=27585 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
49050<...>-770 ( 770) [005] .... 82315.969754: binder_transaction_received: transaction=1569356
49051<...>-770 ( 770) [005] ...1 82315.969778: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
49052 [email protected]   (  619) [001] ...1 82315.969800: tracing_mark_write: E|619
49053<...>-770 ( 770) [005] d..2 82315.969862: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
49054 [email protected]   (  619) [001] d.h1 82315.969902: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
49055 [email protected]   (  619) [001] ...1 82315.969911: tracing_mark_write: B|619|HWDeviceDRM::Commit::
49056 [email protected]   (  619) [001] ...1 82315.969917: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
49057<...>-770 ( 770) [005] ...1 82315.969920: tracing_mark_write: E|770
49058          <idle>-0     (-----) [004] ...1 82315.969925: cpu_idle: state=4294967295 cpu_id=4
49059<...>-770 ( 770) [005] .... 82315.969928: binder_transaction: transaction=1569357 dest_node=0 dest_proc=27550 dest_thread=27585 reply=1 flags=0x0 code=0x0
49060          <idle>-0     (-----) [004] d..1 82315.969929: cpu_idle: state=0 cpu_id=4
49061<...>-770 ( 770) [005] .... 82315.969930: binder_transaction_alloc_buf: transaction=1569357 data_size=168 offsets_size=32
49062<...>-770 ( 770) [005] .... 82315.969937: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
49063<...>-770 ( 770) [005] d..2 82315.969973: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27585 next_prio=110
49064           <...>-27585 (-----) [005] .... 82315.969983: binder_transaction_received: transaction=1569357
49065           <...>-27585 (-----) [005] ...1 82315.970059: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
49066           <...>-27585 (-----) [005] ...1 82315.970064: tracing_mark_write: E|27550
49067           <...>-27585 (-----) [005] .... 82315.970078: binder_transaction: transaction=1569358 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
49068           <...>-27585 (-----) [005] .... 82315.970080: binder_transaction_alloc_buf: transaction=1569358 data_size=48 offsets_size=0
49069           <...>-27585 (-----) [005] ...2 82315.970083: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
49070           <...>-27585 (-----) [005] d..4 82315.970085: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
49071           <...>-27585 (-----) [005] dn.5 82315.970094: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
49072           <...>-27585 (-----) [005] d..2 82315.970100: sched_switch: prev_comm=id.nn.benchmark prev_pid=27585 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
49073<...>-770 ( 770) [005] .... 82315.970108: binder_transaction_received: transaction=1569358
49074<...>-770 ( 770) [005] ...1 82315.970123: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
49075 [email protected]   (  619) [001] d..2 82315.970188: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
49076<...>-770 ( 770) [005] ...1 82315.970199: tracing_mark_write: E|770
49077 [email protected]   (  619) [001] d..3 82315.970205: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
49078<...>-770 ( 770) [005] .... 82315.970206: binder_transaction: transaction=1569359 dest_node=0 dest_proc=27550 dest_thread=27585 reply=1 flags=0x0 code=0x0
49079<...>-770 ( 770) [005] .... 82315.970208: binder_transaction_alloc_buf: transaction=1569359 data_size=168 offsets_size=32
49080          <idle>-0     (-----) [002] .n.1 82315.970210: cpu_idle: state=4294967295 cpu_id=2
49081<...>-770 ( 770) [005] .... 82315.970214: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
49082          <idle>-0     (-----) [002] d..2 82315.970217: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
49083<...>-770 ( 770) [005] d..2 82315.970247: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27585 next_prio=110
49084           <...>-27585 (-----) [005] .... 82315.970257: binder_transaction_received: transaction=1569359
49085 [email protected]   (  619) [001] ...1 82315.970272: tracing_mark_write: E|619
49086 [email protected]   (  619) [001] ...1 82315.970276: tracing_mark_write: E|619
49087 [email protected]   (  619) [001] ...1 82315.970312: tracing_mark_write: E|619
49088 [email protected]   (  619) [001] ...1 82315.970349: tracing_mark_write: E|619
49089 [email protected]   (  619) [001] .... 82315.970360: binder_transaction: transaction=1569360 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
49090 [email protected]   (  619) [001] .... 82315.970362: binder_transaction_alloc_buf: transaction=1569360 data_size=576 offsets_size=112
49091 [email protected]   (  619) [001] d..2 82315.970375: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
49092 [email protected]   (  619) [001] d..3 82315.970387: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
49093 [email protected]   (  619) [001] .... 82315.970390: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
49094          <idle>-0     (-----) [003] .n.1 82315.970392: cpu_idle: state=4294967295 cpu_id=3
49095          <idle>-0     (-----) [003] d..2 82315.970397: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
49096  surfaceflinger-8858  ( 8858) [003] .... 82315.970404: binder_transaction_received: transaction=1569360
49097 [email protected]   (  619) [001] d..2 82315.970441: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
49098     ksoftirqd/1-18    (   18) [001] d.s2 82315.970455: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
49099     ksoftirqd/1-18    (   18) [001] d.s3 82315.970467: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
49100     ksoftirqd/1-18    (   18) [001] d.s3 82315.970470: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
49101     ksoftirqd/1-18    (   18) [001] d..2 82315.970479: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
49102           <...>-27585 (-----) [005] ...1 82315.970525: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
49103           <...>-27585 (-----) [005] ...1 82315.970535: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
49104           <...>-27585 (-----) [005] ...1 82315.970539: tracing_mark_write: E|27550
49105<...>-581 ( 571) [001] d..2 82315.970570: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49106          <idle>-0     (-----) [001] d..1 82315.970584: cpu_idle: state=0 cpu_id=1
49107           <...>-27585 (-----) [005] .... 82315.970602: binder_transaction: transaction=1569361 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
49108           <...>-27585 (-----) [005] .... 82315.970606: binder_transaction_alloc_buf: transaction=1569361 data_size=556 offsets_size=104
49109           <...>-27585 (-----) [005] ...2 82315.970621: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
49110           <...>-27585 (-----) [005] d..4 82315.970623: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49111           <...>-27585 (-----) [005] dn.5 82315.970634: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49112           <...>-27585 (-----) [005] d..2 82315.970641: sched_switch: prev_comm=id.nn.benchmark prev_pid=27585 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49113<...>-5340 ( 788) [005] .... 82315.970650: binder_transaction_received: transaction=1569361
49114<...>-5340 ( 788) [005] ...1 82315.970699: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
49115  surfaceflinger-8858  ( 8858) [003] d..2 82315.970705: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
49116<...>-5340 ( 788) [005] d..2 82315.970759: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
49117  kworker/u16:15-1311  ( 1311) [003] d.h3 82315.970794: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
49118<...>-5340 ( 788) [005] d..2 82315.970795: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27585 next_prio=110
49119  kworker/u16:15-1311  ( 1311) [003] .... 82315.970812: clk_set_rate: l3_cluster0_vote_clk 403200000
49120  kworker/u16:15-1311  ( 1311) [003] .... 82315.970817: clk_set_rate: l3_clk 576000000
49121           <...>-27585 (-----) [005] d..2 82315.970817: sched_switch: prev_comm=id.nn.benchmark prev_pid=27585 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
49122          <idle>-0     (-----) [005] d..1 82315.970839: cpu_idle: state=0 cpu_id=5
49123  kworker/u16:15-1311  ( 1311) [003] d..2 82315.970861: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
49124 crtc_commit:111-321   (  321) [002] d..2 82315.970876: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
49125          <idle>-0     (-----) [002] d..1 82315.970886: cpu_idle: state=0 cpu_id=2
49126<...>-87 ( 87) [003] d..2 82315.970898: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49127          <idle>-0     (-----) [003] d..1 82315.970906: cpu_idle: state=0 cpu_id=3
49128          <idle>-0     (-----) [002] d.h4 82315.970910: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49129          <idle>-0     (-----) [002] dnh5 82315.970923: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49130          <idle>-0     (-----) [002] .n.1 82315.970931: cpu_idle: state=4294967295 cpu_id=2
49131          <idle>-0     (-----) [002] d..2 82315.970938: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
49132<...>-86 ( 86) [002] d..2 82315.970965: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49133          <idle>-0     (-----) [002] d..1 82315.970973: cpu_idle: state=0 cpu_id=2
49134          <idle>-0     (-----) [002] d.h4 82315.970992: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49135          <idle>-0     (-----) [005] dnh2 82315.971011: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49136          <idle>-0     (-----) [005] .n.1 82315.971016: cpu_idle: state=4294967295 cpu_id=5
49137          <idle>-0     (-----) [002] ...1 82315.971021: cpu_idle: state=4294967295 cpu_id=2
49138          <idle>-0     (-----) [002] d..1 82315.971023: cpu_idle: state=0 cpu_id=2
49139          <idle>-0     (-----) [005] d..2 82315.971024: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49140<...>-5340 ( 788) [005] d..1 82315.971083: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49141          <idle>-0     (-----) [000] dnh2 82315.971105: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49142          <idle>-0     (-----) [000] .n.1 82315.971108: cpu_idle: state=4294967295 cpu_id=0
49143          <idle>-0     (-----) [000] d..2 82315.971115: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
49144 neuralnetworks@-13088 (  788) [000] d..2 82315.971144: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49145          <idle>-0     (-----) [000] d..1 82315.971151: cpu_idle: state=0 cpu_id=0
49146<...>-5340 ( 788) [005] d..2 82315.971242: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
49147          <idle>-0     (-----) [003] dnh2 82315.971260: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
49148          <idle>-0     (-----) [003] .n.1 82315.971265: cpu_idle: state=4294967295 cpu_id=3
49149<...>-5340 ( 788) [005] d..2 82315.971266: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
49150          <idle>-0     (-----) [003] d..2 82315.971270: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
49151          <idle>-0     (-----) [005] d..1 82315.971282: cpu_idle: state=0 cpu_id=5
49152<...>-87 ( 87) [003] d..2 82315.971294: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49153          <idle>-0     (-----) [002] d.h4 82315.971298: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49154          <idle>-0     (-----) [003] d..1 82315.971298: cpu_idle: state=0 cpu_id=3
49155          <idle>-0     (-----) [002] dnh5 82315.971305: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49156          <idle>-0     (-----) [002] .n.1 82315.971310: cpu_idle: state=4294967295 cpu_id=2
49157          <idle>-0     (-----) [002] d..2 82315.971316: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
49158<...>-86 ( 86) [002] d..2 82315.971337: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49159          <idle>-0     (-----) [002] d..1 82315.971344: cpu_idle: state=0 cpu_id=2
49160          <idle>-0     (-----) [005] ...1 82315.971621: cpu_idle: state=4294967295 cpu_id=5
49161          <idle>-0     (-----) [005] d..1 82315.971625: cpu_idle: state=0 cpu_id=5
49162          <idle>-0     (-----) [003] d.H3 82315.971867: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
49163          <idle>-0     (-----) [003] d.H4 82315.971881: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
49164          <idle>-0     (-----) [000] .n.1 82315.971886: cpu_idle: state=4294967295 cpu_id=0
49165          <idle>-0     (-----) [003] d.s2 82315.971888: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
49166          <idle>-0     (-----) [000] d..2 82315.971894: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
49167          <idle>-0     (-----) [003] dns3 82315.971900: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
49168          <idle>-0     (-----) [003] .n.1 82315.971908: cpu_idle: state=4294967295 cpu_id=3
49169          <idle>-0     (-----) [003] d..2 82315.971914: 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
49170<...>-8 ( 8) [003] d..2 82315.971922: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
49171         sugov:0-576   (  576) [000] .... 82315.971923: clk_set_rate: pwrcl_clk 1056000000
49172<...>-8 ( 8) [003] d..3 82315.971946: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
49173<...>-8 ( 8) [003] d..2 82315.971948: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=003
49174<...>-8 ( 8) [003] d..3 82315.971968: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
49175         sugov:0-576   (  576) [000] .... 82315.971981: clk_set_rate: cpu3_pwrcl_clk 1766400000
49176<...>-8 ( 8) [003] d..2 82315.971985: 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
49177         sugov:0-576   (  576) [000] .... 82315.971989: clk_set_rate: cpu2_pwrcl_clk 1766400000
49178          <idle>-0     (-----) [003] d..1 82315.971995: cpu_idle: state=0 cpu_id=3
49179         sugov:0-576   (  576) [000] .... 82315.971996: clk_set_rate: cpu1_pwrcl_clk 1766400000
49180         sugov:0-576   (  576) [000] .... 82315.972002: clk_set_rate: cpu0_pwrcl_clk 1056000000
49181          <idle>-0     (-----) [001] ...1 82315.972022: cpu_idle: state=4294967295 cpu_id=1
49182          <idle>-0     (-----) [001] d..1 82315.972029: cpu_idle: state=0 cpu_id=1
49183         sugov:0-576   (  576) [000] .... 82315.972116: cpu_frequency: state=1056000 cpu_id=0
49184         sugov:0-576   (  576) [000] d..2 82315.972276: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=rcuos/0 next_pid=11 next_prio=120
49185         rcuos/0-11    (   11) [000] d..2 82315.972296: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
49186<...>-46 ( 46) [000] d..2 82315.972301: sched_waking: comm=rcuos/5 pid=54 prio=120 target_cpu=000
49187          <idle>-0     (-----) [001] d.s3 82315.972304: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
49188<...>-46 ( 46) [000] d..3 82315.972321: sched_wakeup: comm=rcuos/5 pid=54 prio=120 target_cpu=000
49189<...>-46 ( 46) [000] d..2 82315.972334: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
49190          <idle>-0     (-----) [001] d.s4 82315.972338: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
49191          <idle>-0     (-----) [002] .n.1 82315.972344: cpu_idle: state=4294967295 cpu_id=2
49192          <idle>-0     (-----) [001] ...1 82315.972345: cpu_idle: state=4294967295 cpu_id=1
49193<...>-46 ( 46) [000] d..3 82315.972346: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
49194          <idle>-0     (-----) [001] d..1 82315.972350: cpu_idle: state=0 cpu_id=1
49195          <idle>-0     (-----) [003] .n.1 82315.972353: cpu_idle: state=4294967295 cpu_id=3
49196          <idle>-0     (-----) [002] d..2 82315.972354: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
49197<...>-46 ( 46) [000] d..2 82315.972355: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuos/5 next_pid=54 next_prio=120
49198          <idle>-0     (-----) [003] d..2 82315.972363: 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
49199         sugov:0-576   (  576) [002] .... 82315.972367: cpu_frequency: state=1056000 cpu_id=1
49200         sugov:0-576   (  576) [002] .... 82315.972374: cpu_frequency: state=1056000 cpu_id=2
49201         sugov:0-576   (  576) [002] .... 82315.972378: cpu_frequency: state=1056000 cpu_id=3
49202<...>-54 ( 54) [000] d..2 82315.972380: sched_switch: prev_comm=rcuos/5 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49203<...>-8 ( 8) [003] d..2 82315.972383: 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
49204          <idle>-0     (-----) [000] d..1 82315.972389: cpu_idle: state=0 cpu_id=0
49205          <idle>-0     (-----) [003] d..1 82315.972392: cpu_idle: state=0 cpu_id=3
49206         sugov:0-576   (  576) [002] d..2 82315.972400: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49207          <idle>-0     (-----) [002] d..1 82315.972410: cpu_idle: state=0 cpu_id=2
49208          <idle>-0     (-----) [002] d.h4 82315.972984: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49209          <idle>-0     (-----) [005] dnh2 82315.973005: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49210          <idle>-0     (-----) [005] .n.1 82315.973008: cpu_idle: state=4294967295 cpu_id=5
49211          <idle>-0     (-----) [005] d..2 82315.973017: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49212          <idle>-0     (-----) [002] ...1 82315.973021: cpu_idle: state=4294967295 cpu_id=2
49213          <idle>-0     (-----) [002] d..1 82315.973025: cpu_idle: state=0 cpu_id=2
49214<...>-5340 ( 788) [005] d..1 82315.973072: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49215          <idle>-0     (-----) [000] dnh2 82315.973094: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49216          <idle>-0     (-----) [000] .n.1 82315.973102: cpu_idle: state=4294967295 cpu_id=0
49217          <idle>-0     (-----) [000] d..2 82315.973109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
49218 neuralnetworks@-13088 (  788) [000] d..2 82315.973160: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49219<...>-5340 ( 788) [005] ...1 82315.973166: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
49220          <idle>-0     (-----) [000] d..1 82315.973167: cpu_idle: state=0 cpu_id=0
49221<...>-5340 ( 788) [005] ...1 82315.973170: tracing_mark_write: E|788
49222<...>-5340 ( 788) [005] .... 82315.973187: binder_transaction: transaction=1569364 dest_node=1569362 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
49223<...>-5340 ( 788) [005] .... 82315.973190: binder_transaction_alloc_buf: transaction=1569364 data_size=60 offsets_size=0
49224<...>-5340 ( 788) [005] d..4 82315.973193: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
49225<...>-5340 ( 788) [005] d..5 82315.973207: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
49226          <idle>-0     (-----) [004] .n.1 82315.973212: cpu_idle: state=4294967295 cpu_id=4
49227          <idle>-0     (-----) [004] d..2 82315.973221: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
49228           <...>-27571 (-----) [004] .... 82315.973226: binder_transaction_received: transaction=1569364
49229<...>-5340 ( 788) [005] ...1 82315.973230: tracing_mark_write: E|788
49230<...>-5340 ( 788) [005] .... 82315.973237: binder_transaction: transaction=1569365 dest_node=0 dest_proc=27550 dest_thread=27585 reply=1 flags=0x0 code=0x0
49231<...>-5340 ( 788) [005] .... 82315.973239: binder_transaction_alloc_buf: transaction=1569365 data_size=8 offsets_size=0
49232<...>-5340 ( 788) [005] d..2 82315.973241: sched_waking: comm=id.nn.benchmark pid=27585 prio=110 target_cpu=005
49233           <...>-27571 (-----) [004] ...1 82315.973248: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
49234<...>-5340 ( 788) [005] d..3 82315.973248: sched_wakeup: comm=id.nn.benchmark pid=27585 prio=110 target_cpu=005
49235<...>-5340 ( 788) [005] .... 82315.973250: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
49236           <...>-27571 (-----) [004] ...1 82315.973255: tracing_mark_write: E|27550
49237           <...>-27571 (-----) [004] d..2 82315.973285: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49238<...>-5340 ( 788) [005] d..2 82315.973293: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27585 next_prio=110
49239          <idle>-0     (-----) [004] d..1 82315.973294: cpu_idle: state=0 cpu_id=4
49240           <...>-27585 (-----) [005] .... 82315.973303: binder_transaction_received: transaction=1569365
49241           <...>-27585 (-----) [005] ...1 82315.973341: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
49242           <...>-27585 (-----) [005] ...1 82315.973348: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
49243           <...>-27585 (-----) [005] ...1 82315.973374: tracing_mark_write: E|27550
49244           <...>-27585 (-----) [005] ...1 82315.973377: tracing_mark_write: E|27550
49245           <...>-27585 (-----) [005] ...1 82315.973382: tracing_mark_write: E|27550
49246           <...>-27585 (-----) [005] ...1 82315.973575: tracing_mark_write: E|27550
49247           <...>-27585 (-----) [005] d..1 82315.973589: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49248           <...>-27585 (-----) [005] d..2 82315.973606: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49249          <idle>-0     (-----) [004] .n.1 82315.973612: cpu_idle: state=4294967295 cpu_id=4
49250          <idle>-0     (-----) [004] d..2 82315.973619: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
49251           <...>-27550 (-----) [004] d..2 82315.973635: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49252          <idle>-0     (-----) [004] d..1 82315.973642: cpu_idle: state=0 cpu_id=4
49253           <...>-27585 (-----) [005] d..1 82315.973699: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49254           <...>-27585 (-----) [005] d..2 82315.973709: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49255          <idle>-0     (-----) [004] .n.1 82315.973714: cpu_idle: state=4294967295 cpu_id=4
49256          <idle>-0     (-----) [004] d..2 82315.973720: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
49257           <...>-27585 (-----) [005] d..2 82315.973749: sched_switch: prev_comm=id.nn.benchmark prev_pid=27585 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
49258           <...>-27550 (-----) [004] ...1 82315.973754: tracing_mark_write: E|27550
49259           <...>-27550 (-----) [004] ...1 82315.973760: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
49260           <...>-27550 (-----) [004] ...1 82315.973767: tracing_mark_write: E|27550
49261          <idle>-0     (-----) [005] d..1 82315.973769: cpu_idle: state=0 cpu_id=5
49262           <...>-27550 (-----) [004] ...1 82315.973771: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
49263           <...>-27550 (-----) [004] ...1 82315.973775: tracing_mark_write: E|27550
49264           <...>-27550 (-----) [004] ...1 82315.973780: tracing_mark_write: E|27550
49265           <...>-27550 (-----) [004] ...1 82315.973895: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
49266           <...>-27550 (-----) [004] ...1 82315.973953: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
49267           <...>-27550 (-----) [004] ...1 82315.973958: tracing_mark_write: E|27550
49268           <...>-27550 (-----) [004] ...1 82315.973962: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
49269           <...>-27550 (-----) [004] ...1 82315.973968: tracing_mark_write: E|27550
49270           <...>-27550 (-----) [004] ...1 82315.973971: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
49271           <...>-27550 (-----) [004] ...1 82315.973975: tracing_mark_write: E|27550
49272           <...>-27550 (-----) [004] ...1 82315.973979: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
49273          <idle>-0     (-----) [005] .n.1 82315.974075: cpu_idle: state=4294967295 cpu_id=5
49274           <...>-27550 (-----) [004] ...1 82315.974077: tracing_mark_write: E|27550
49275           <...>-27550 (-----) [004] ...1 82315.974082: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
49276          <idle>-0     (-----) [005] d..2 82315.974084: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27586 next_prio=110
49277           <...>-27550 (-----) [004] d..2 82315.974100: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49278          <idle>-0     (-----) [004] d..1 82315.974117: cpu_idle: state=0 cpu_id=4
49279           <...>-27586 (-----) [005] ...1 82315.974147: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
49280           <...>-27586 (-----) [005] ...1 82315.974163: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
49281           <...>-27586 (-----) [005] ...1 82315.974166: tracing_mark_write: E|27550
49282           <...>-27586 (-----) [005] .... 82315.974189: binder_transaction: transaction=1569366 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
49283           <...>-27586 (-----) [005] .... 82315.974192: binder_transaction_alloc_buf: transaction=1569366 data_size=48 offsets_size=0
49284           <...>-27586 (-----) [005] ...2 82315.974195: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
49285           <...>-27586 (-----) [005] d..4 82315.974198: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
49286           <...>-27586 (-----) [005] dn.5 82315.974209: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
49287           <...>-27586 (-----) [005] d..2 82315.974216: sched_switch: prev_comm=id.nn.benchmark prev_pid=27586 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
49288<...>-770 ( 770) [005] .... 82315.974226: binder_transaction_received: transaction=1569366
49289<...>-770 ( 770) [005] ...1 82315.974251: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
49290<...>-770 ( 770) [005] d..2 82315.974336: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
49291          <idle>-0     (-----) [000] dnh2 82315.974373: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
49292          <idle>-0     (-----) [000] .n.1 82315.974379: cpu_idle: state=4294967295 cpu_id=0
49293          <idle>-0     (-----) [000] d..2 82315.974385: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
49294<...>-770 ( 770) [005] ...1 82315.974392: tracing_mark_write: E|770
49295<...>-770 ( 770) [005] .... 82315.974400: binder_transaction: transaction=1569367 dest_node=0 dest_proc=27550 dest_thread=27586 reply=1 flags=0x0 code=0x0
49296<...>-770 ( 770) [005] .... 82315.974403: binder_transaction_alloc_buf: transaction=1569367 data_size=168 offsets_size=32
49297<...>-770 ( 770) [005] .... 82315.974410: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
49298<...>-770 ( 770) [005] d..2 82315.974446: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27586 next_prio=110
49299           <...>-27586 (-----) [005] .... 82315.974457: binder_transaction_received: transaction=1569367
49300<...>-581 ( 571) [000] d..2 82315.974459: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49301          <idle>-0     (-----) [000] d..1 82315.974468: cpu_idle: state=0 cpu_id=0
49302           <...>-27586 (-----) [005] ...1 82315.974532: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
49303           <...>-27586 (-----) [005] ...1 82315.974537: tracing_mark_write: E|27550
49304           <...>-27586 (-----) [005] .... 82315.974551: binder_transaction: transaction=1569368 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
49305           <...>-27586 (-----) [005] .... 82315.974554: binder_transaction_alloc_buf: transaction=1569368 data_size=48 offsets_size=0
49306           <...>-27586 (-----) [005] ...2 82315.974556: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
49307           <...>-27586 (-----) [005] d..4 82315.974559: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
49308           <...>-27586 (-----) [005] dn.5 82315.974568: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
49309           <...>-27586 (-----) [005] d..2 82315.974576: sched_switch: prev_comm=id.nn.benchmark prev_pid=27586 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
49310<...>-770 ( 770) [005] .... 82315.974584: binder_transaction_received: transaction=1569368
49311<...>-770 ( 770) [005] ...1 82315.974601: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
49312<...>-770 ( 770) [005] d..2 82315.974658: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
49313          <idle>-0     (-----) [000] dnh2 82315.974680: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
49314          <idle>-0     (-----) [000] .n.1 82315.974686: cpu_idle: state=4294967295 cpu_id=0
49315<...>-770 ( 770) [005] ...1 82315.974691: tracing_mark_write: E|770
49316          <idle>-0     (-----) [000] d..2 82315.974693: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
49317<...>-770 ( 770) [005] .... 82315.974698: binder_transaction: transaction=1569369 dest_node=0 dest_proc=27550 dest_thread=27586 reply=1 flags=0x0 code=0x0
49318<...>-770 ( 770) [005] .... 82315.974701: binder_transaction_alloc_buf: transaction=1569369 data_size=168 offsets_size=32
49319<...>-770 ( 770) [005] .... 82315.974707: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
49320<...>-581 ( 571) [000] d..2 82315.974741: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49321<...>-770 ( 770) [005] d..2 82315.974741: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27586 next_prio=110
49322          <idle>-0     (-----) [000] d..1 82315.974749: cpu_idle: state=0 cpu_id=0
49323           <...>-27586 (-----) [005] .... 82315.974752: binder_transaction_received: transaction=1569369
49324           <...>-27586 (-----) [005] ...1 82315.975031: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
49325           <...>-27586 (-----) [005] ...1 82315.975041: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
49326           <...>-27586 (-----) [005] ...1 82315.975046: tracing_mark_write: E|27550
49327          <idle>-0     (-----) [000] d.s2 82315.975134: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
49328           <...>-27586 (-----) [005] .... 82315.975150: binder_transaction: transaction=1569370 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
49329          <idle>-0     (-----) [000] dns3 82315.975150: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
49330           <...>-27586 (-----) [005] .... 82315.975153: binder_transaction_alloc_buf: transaction=1569370 data_size=556 offsets_size=104
49331           <...>-27586 (-----) [005] ...2 82315.975168: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
49332          <idle>-0     (-----) [000] .n.1 82315.975169: cpu_idle: state=4294967295 cpu_id=0
49333           <...>-27586 (-----) [005] d..4 82315.975170: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49334          <idle>-0     (-----) [000] d..2 82315.975177: 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
49335           <...>-27586 (-----) [005] dn.5 82315.975178: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49336           <...>-27586 (-----) [005] d..2 82315.975185: sched_switch: prev_comm=id.nn.benchmark prev_pid=27586 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49337<...>-5340 ( 788) [005] .... 82315.975195: binder_transaction_received: transaction=1569370
49338     rcu_preempt-7     (    7) [000] d..2 82315.975207: 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
49339          <idle>-0     (-----) [000] d..1 82315.975218: cpu_idle: state=0 cpu_id=0
49340<...>-5340 ( 788) [005] ...1 82315.975242: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
49341<...>-5340 ( 788) [005] d..2 82315.975285: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
49342<...>-5340 ( 788) [005] d..2 82315.975322: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27586 next_prio=110
49343          <idle>-0     (-----) [000] d.h5 82315.975336: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
49344           <...>-27586 (-----) [005] d..2 82315.975346: sched_switch: prev_comm=id.nn.benchmark prev_pid=27586 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
49345          <idle>-0     (-----) [000] dnh6 82315.975352: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
49346          <idle>-0     (-----) [000] dnh5 82315.975356: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
49347          <idle>-0     (-----) [005] d..1 82315.975363: cpu_idle: state=0 cpu_id=5
49348          <idle>-0     (-----) [000] dnh6 82315.975368: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
49349          <idle>-0     (-----) [002] .n.1 82315.975374: cpu_idle: state=4294967295 cpu_id=2
49350          <idle>-0     (-----) [002] d..2 82315.975384: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
49351          <idle>-0     (-----) [000] dnh2 82315.975389: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
49352          <idle>-0     (-----) [000] .n.1 82315.975393: cpu_idle: state=4294967295 cpu_id=0
49353          <idle>-0     (-----) [000] d..2 82315.975403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
49354  crtc_event:111-322   (  322) [000] d..2 82315.975424: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
49355<...>-87 ( 87) [000] d..2 82315.975461: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49356 crtc_commit:111-321   (  321) [002] d.h3 82315.975467: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49357          <idle>-0     (-----) [000] d..1 82315.975472: cpu_idle: state=0 cpu_id=0
49358 crtc_commit:111-321   (  321) [002] d.h4 82315.975485: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49359 crtc_commit:111-321   (  321) [002] d.h4 82315.975554: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49360          <idle>-0     (-----) [005] dnh2 82315.975575: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49361          <idle>-0     (-----) [005] .n.1 82315.975579: cpu_idle: state=4294967295 cpu_id=5
49362          <idle>-0     (-----) [005] d..2 82315.975587: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49363 crtc_commit:111-321   (  321) [002] d..2 82315.975603: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=smem_native_cds next_pid=86 next_prio=120
49364<...>-86 ( 86) [002] d..2 82315.975634: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49365<...>-5340 ( 788) [005] d..1 82315.975640: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49366          <idle>-0     (-----) [002] d..1 82315.975643: cpu_idle: state=0 cpu_id=2
49367          <idle>-0     (-----) [000] dnh2 82315.975665: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49368          <idle>-0     (-----) [000] .n.1 82315.975670: cpu_idle: state=4294967295 cpu_id=0
49369          <idle>-0     (-----) [000] d..2 82315.975679: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
49370 neuralnetworks@-13088 (  788) [000] d..2 82315.975718: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49371          <idle>-0     (-----) [000] d..1 82315.975729: cpu_idle: state=0 cpu_id=0
49372<...>-5340 ( 788) [005] d..2 82315.975788: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
49373          <idle>-0     (-----) [000] dnh2 82315.975809: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
49374          <idle>-0     (-----) [000] .n.1 82315.975814: cpu_idle: state=4294967295 cpu_id=0
49375<...>-5340 ( 788) [005] d..2 82315.975815: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
49376          <idle>-0     (-----) [000] d..2 82315.975823: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
49377          <idle>-0     (-----) [005] d..1 82315.975829: cpu_idle: state=0 cpu_id=5
49378<...>-87 ( 87) [000] d..2 82315.975856: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49379          <idle>-0     (-----) [002] d.h4 82315.975859: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49380          <idle>-0     (-----) [000] d..1 82315.975865: cpu_idle: state=0 cpu_id=0
49381          <idle>-0     (-----) [002] dnh5 82315.975868: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49382          <idle>-0     (-----) [002] .n.1 82315.975875: cpu_idle: state=4294967295 cpu_id=2
49383          <idle>-0     (-----) [002] d..2 82315.975883: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
49384<...>-86 ( 86) [002] d..2 82315.975911: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49385          <idle>-0     (-----) [002] d..1 82315.975917: cpu_idle: state=0 cpu_id=2
49386          <idle>-0     (-----) [005] ...1 82315.976186: cpu_idle: state=4294967295 cpu_id=5
49387          <idle>-0     (-----) [005] d..1 82315.976190: cpu_idle: state=0 cpu_id=5
49388          <idle>-0     (-----) [002] d.h4 82315.977657: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49389          <idle>-0     (-----) [000] d.h5 82315.977665: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
49390          <idle>-0     (-----) [005] dnh2 82315.977676: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49391          <idle>-0     (-----) [000] d.h6 82315.977680: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
49392          <idle>-0     (-----) [005] .n.1 82315.977681: cpu_idle: state=4294967295 cpu_id=5
49393          <idle>-0     (-----) [005] d..2 82315.977689: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49394          <idle>-0     (-----) [002] .n.1 82315.977691: cpu_idle: state=4294967295 cpu_id=2
49395          <idle>-0     (-----) [000] ...1 82315.977692: cpu_idle: state=4294967295 cpu_id=0
49396          <idle>-0     (-----) [000] d..1 82315.977696: cpu_idle: state=0 cpu_id=0
49397          <idle>-0     (-----) [002] d..2 82315.977697: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
49398<...>-5340 ( 788) [005] d..1 82315.977739: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49399 crtc_commit:111-321   (  321) [002] d..2 82315.977768: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49400          <idle>-0     (-----) [002] dnh3 82315.977780: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
49401          <idle>-0     (-----) [002] d..2 82315.977791: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
49402<...>-5340 ( 788) [005] ...1 82315.977851: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
49403 neuralnetworks@-13088 (  788) [002] d..2 82315.977852: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49404<...>-5340 ( 788) [005] ...1 82315.977856: tracing_mark_write: E|788
49405          <idle>-0     (-----) [002] d..1 82315.977862: cpu_idle: state=0 cpu_id=2
49406<...>-5340 ( 788) [005] .... 82315.977872: binder_transaction: transaction=1569373 dest_node=1569371 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
49407<...>-5340 ( 788) [005] .... 82315.977874: binder_transaction_alloc_buf: transaction=1569373 data_size=60 offsets_size=0
49408<...>-5340 ( 788) [005] d..4 82315.977878: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
49409<...>-5340 ( 788) [005] d..5 82315.977891: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
49410          <idle>-0     (-----) [004] .n.1 82315.977897: cpu_idle: state=4294967295 cpu_id=4
49411          <idle>-0     (-----) [004] d..2 82315.977907: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
49412           <...>-27571 (-----) [004] .... 82315.977911: binder_transaction_received: transaction=1569373
49413<...>-5340 ( 788) [005] ...1 82315.977912: tracing_mark_write: E|788
49414<...>-5340 ( 788) [005] .... 82315.977918: binder_transaction: transaction=1569374 dest_node=0 dest_proc=27550 dest_thread=27586 reply=1 flags=0x0 code=0x0
49415<...>-5340 ( 788) [005] .... 82315.977920: binder_transaction_alloc_buf: transaction=1569374 data_size=8 offsets_size=0
49416<...>-5340 ( 788) [005] d..2 82315.977922: sched_waking: comm=id.nn.benchmark pid=27586 prio=110 target_cpu=005
49417<...>-5340 ( 788) [005] d..3 82315.977930: sched_wakeup: comm=id.nn.benchmark pid=27586 prio=110 target_cpu=005
49418           <...>-27571 (-----) [004] ...1 82315.977930: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
49419<...>-5340 ( 788) [005] .... 82315.977931: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
49420           <...>-27571 (-----) [004] ...1 82315.977937: tracing_mark_write: E|27550
49421          <idle>-0     (-----) [000] d.h5 82315.977959: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
49422           <...>-27571 (-----) [004] d..2 82315.977966: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49423          <idle>-0     (-----) [000] dnh6 82315.977969: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
49424<...>-5340 ( 788) [005] d..2 82315.977972: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27586 next_prio=110
49425          <idle>-0     (-----) [004] d..1 82315.977974: cpu_idle: state=0 cpu_id=4
49426          <idle>-0     (-----) [000] .n.1 82315.977981: cpu_idle: state=4294967295 cpu_id=0
49427           <...>-27586 (-----) [005] .... 82315.977982: binder_transaction_received: transaction=1569374
49428          <idle>-0     (-----) [000] d..2 82315.977990: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
49429  crtc_event:111-322   (  322) [000] d..2 82315.978011: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49430           <...>-27586 (-----) [005] ...1 82315.978017: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
49431          <idle>-0     (-----) [000] d..1 82315.978020: cpu_idle: state=0 cpu_id=0
49432           <...>-27586 (-----) [005] ...1 82315.978023: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
49433           <...>-27586 (-----) [005] ...1 82315.978049: tracing_mark_write: E|27550
49434           <...>-27586 (-----) [005] ...1 82315.978053: tracing_mark_write: E|27550
49435           <...>-27586 (-----) [005] ...1 82315.978056: tracing_mark_write: E|27550
49436           <...>-27586 (-----) [005] ...1 82315.978243: tracing_mark_write: E|27550
49437           <...>-27586 (-----) [005] d..1 82315.978256: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49438           <...>-27586 (-----) [005] d..2 82315.978272: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49439          <idle>-0     (-----) [004] .n.1 82315.978277: cpu_idle: state=4294967295 cpu_id=4
49440          <idle>-0     (-----) [004] d..2 82315.978287: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
49441           <...>-27550 (-----) [004] d..2 82315.978307: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49442          <idle>-0     (-----) [004] d..1 82315.978316: cpu_idle: state=0 cpu_id=4
49443           <...>-27586 (-----) [005] d..1 82315.978359: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49444           <...>-27586 (-----) [005] d..2 82315.978368: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49445          <idle>-0     (-----) [004] .n.1 82315.978373: cpu_idle: state=4294967295 cpu_id=4
49446          <idle>-0     (-----) [004] d..2 82315.978379: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
49447           <...>-27586 (-----) [005] d..2 82315.978406: sched_switch: prev_comm=id.nn.benchmark prev_pid=27586 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
49448           <...>-27550 (-----) [004] ...1 82315.978411: tracing_mark_write: E|27550
49449           <...>-27550 (-----) [004] ...1 82315.978416: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
49450           <...>-27550 (-----) [004] ...1 82315.978422: tracing_mark_write: E|27550
49451           <...>-27550 (-----) [004] ...1 82315.978426: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
49452          <idle>-0     (-----) [005] d..1 82315.978426: cpu_idle: state=0 cpu_id=5
49453           <...>-27550 (-----) [004] ...1 82315.978430: tracing_mark_write: E|27550
49454           <...>-27550 (-----) [004] ...1 82315.978435: tracing_mark_write: E|27550
49455           <...>-27550 (-----) [004] d.s2 82315.978464: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
49456          <idle>-0     (-----) [003] d.s2 82315.978465: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
49457          <idle>-0     (-----) [002] d.s3 82315.978468: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
49458          <idle>-0     (-----) [003] dns3 82315.978483: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
49459          <idle>-0     (-----) [002] d.s4 82315.978484: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
49460          <idle>-0     (-----) [000] .n.1 82315.978490: cpu_idle: state=4294967295 cpu_id=0
49461          <idle>-0     (-----) [003] .n.1 82315.978494: cpu_idle: state=4294967295 cpu_id=3
49462          <idle>-0     (-----) [003] d..2 82315.978503: 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
49463          <idle>-0     (-----) [000] dnh2 82315.978505: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
49464          <idle>-0     (-----) [002] ...1 82315.978510: cpu_idle: state=4294967295 cpu_id=2
49465          <idle>-0     (-----) [000] d..2 82315.978513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
49466          <idle>-0     (-----) [002] d..1 82315.978516: cpu_idle: state=0 cpu_id=2
49467<...>-8 ( 8) [003] d..2 82315.978546: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
49468  crtc_event:111-322   (  322) [000] d..2 82315.978553: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49469          <idle>-0     (-----) [000] d..1 82315.978559: cpu_idle: state=0 cpu_id=0
49470          <idle>-0     (-----) [000] ...1 82315.978572: cpu_idle: state=4294967295 cpu_id=0
49471          <idle>-0     (-----) [000] d..1 82315.978576: cpu_idle: state=0 cpu_id=0
49472  kworker/u16:15-1311  ( 1311) [003] .... 82315.978591: clk_set_rate: l3_cluster0_vote_clk 300000000
49473           <...>-27550 (-----) [004] ...1 82315.978629: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
49474           <...>-27550 (-----) [004] ...1 82315.978701: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
49475           <...>-27550 (-----) [004] ...1 82315.978706: tracing_mark_write: E|27550
49476  kworker/u16:15-1311  ( 1311) [003] d..2 82315.978709: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49477           <...>-27550 (-----) [004] ...1 82315.978710: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
49478           <...>-27550 (-----) [004] ...1 82315.978715: tracing_mark_write: E|27550
49479           <...>-27550 (-----) [004] ...1 82315.978718: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
49480          <idle>-0     (-----) [003] d..1 82315.978719: cpu_idle: state=0 cpu_id=3
49481           <...>-27550 (-----) [004] ...1 82315.978722: tracing_mark_write: E|27550
49482           <...>-27550 (-----) [004] ...1 82315.978725: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
49483          <idle>-0     (-----) [005] .n.1 82315.978819: cpu_idle: state=4294967295 cpu_id=5
49484           <...>-27550 (-----) [004] ...1 82315.978820: tracing_mark_write: E|27550
49485           <...>-27550 (-----) [004] ...1 82315.978825: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
49486          <idle>-0     (-----) [005] d..2 82315.978830: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27587 next_prio=110
49487           <...>-27550 (-----) [004] d..2 82315.978843: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49488          <idle>-0     (-----) [004] d..1 82315.978859: cpu_idle: state=0 cpu_id=4
49489           <...>-27587 (-----) [005] ...1 82315.978891: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
49490           <...>-27587 (-----) [005] ...1 82315.978905: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
49491           <...>-27587 (-----) [005] ...1 82315.978909: tracing_mark_write: E|27550
49492           <...>-27587 (-----) [005] .... 82315.978929: binder_transaction: transaction=1569375 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
49493           <...>-27587 (-----) [005] .... 82315.978932: binder_transaction_alloc_buf: transaction=1569375 data_size=48 offsets_size=0
49494           <...>-27587 (-----) [005] ...2 82315.978935: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
49495           <...>-27587 (-----) [005] d..4 82315.978938: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
49496           <...>-27587 (-----) [005] dn.5 82315.978949: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
49497           <...>-27587 (-----) [005] d..2 82315.978955: sched_switch: prev_comm=id.nn.benchmark prev_pid=27587 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
49498<...>-770 ( 770) [005] .... 82315.978965: binder_transaction_received: transaction=1569375
49499<...>-770 ( 770) [005] ...1 82315.978987: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
49500<...>-770 ( 770) [005] d..2 82315.979060: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
49501          <idle>-0     (-----) [000] dnh2 82315.979084: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
49502          <idle>-0     (-----) [000] .n.1 82315.979089: cpu_idle: state=4294967295 cpu_id=0
49503          <idle>-0     (-----) [000] d..2 82315.979096: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
49504<...>-770 ( 770) [005] ...1 82315.979100: tracing_mark_write: E|770
49505<...>-770 ( 770) [005] .... 82315.979108: binder_transaction: transaction=1569376 dest_node=0 dest_proc=27550 dest_thread=27587 reply=1 flags=0x0 code=0x0
49506<...>-770 ( 770) [005] .... 82315.979110: binder_transaction_alloc_buf: transaction=1569376 data_size=168 offsets_size=32
49507<...>-770 ( 770) [005] .... 82315.979117: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
49508<...>-770 ( 770) [005] d..2 82315.979153: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27587 next_prio=110
49509<...>-581 ( 571) [000] d..2 82315.979161: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49510           <...>-27587 (-----) [005] .... 82315.979164: binder_transaction_received: transaction=1569376
49511          <idle>-0     (-----) [000] d..1 82315.979170: cpu_idle: state=0 cpu_id=0
49512           <...>-27587 (-----) [005] ...1 82315.979233: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
49513           <...>-27587 (-----) [005] ...1 82315.979238: tracing_mark_write: E|27550
49514           <...>-27587 (-----) [005] .... 82315.979253: binder_transaction: transaction=1569377 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
49515           <...>-27587 (-----) [005] .... 82315.979256: binder_transaction_alloc_buf: transaction=1569377 data_size=48 offsets_size=0
49516           <...>-27587 (-----) [005] ...2 82315.979258: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
49517           <...>-27587 (-----) [005] d..4 82315.979261: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
49518           <...>-27587 (-----) [005] dn.5 82315.979271: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
49519           <...>-27587 (-----) [005] d..2 82315.979278: sched_switch: prev_comm=id.nn.benchmark prev_pid=27587 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
49520<...>-770 ( 770) [005] .... 82315.979286: binder_transaction_received: transaction=1569377
49521<...>-770 ( 770) [005] ...1 82315.979302: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
49522<...>-770 ( 770) [005] d..2 82315.979359: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
49523          <idle>-0     (-----) [000] dnh2 82315.979381: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
49524          <idle>-0     (-----) [000] .n.1 82315.979386: cpu_idle: state=4294967295 cpu_id=0
49525          <idle>-0     (-----) [000] d..2 82315.979393: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
49526<...>-770 ( 770) [005] ...1 82315.979394: tracing_mark_write: E|770
49527<...>-770 ( 770) [005] .... 82315.979401: binder_transaction: transaction=1569378 dest_node=0 dest_proc=27550 dest_thread=27587 reply=1 flags=0x0 code=0x0
49528<...>-770 ( 770) [005] .... 82315.979404: binder_transaction_alloc_buf: transaction=1569378 data_size=168 offsets_size=32
49529<...>-770 ( 770) [005] .... 82315.979410: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
49530<...>-581 ( 571) [000] d..2 82315.979442: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49531<...>-770 ( 770) [005] d..2 82315.979444: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27587 next_prio=110
49532          <idle>-0     (-----) [000] d..1 82315.979450: cpu_idle: state=0 cpu_id=0
49533           <...>-27587 (-----) [005] .... 82315.979455: binder_transaction_received: transaction=1569378
49534           <...>-27587 (-----) [005] ...1 82315.979730: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
49535           <...>-27587 (-----) [005] ...1 82315.979740: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
49536           <...>-27587 (-----) [005] ...1 82315.979744: tracing_mark_write: E|27550
49537          <idle>-0     (-----) [003] d.h2 82315.979796: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
49538           <...>-27587 (-----) [005] .... 82315.979806: binder_transaction: transaction=1569379 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
49539           <...>-27587 (-----) [005] .... 82315.979809: binder_transaction_alloc_buf: transaction=1569379 data_size=556 offsets_size=104
49540          <idle>-0     (-----) [003] dnh3 82315.979810: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
49541          <idle>-0     (-----) [003] .n.1 82315.979818: cpu_idle: state=4294967295 cpu_id=3
49542           <...>-27587 (-----) [005] ...2 82315.979822: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
49543           <...>-27587 (-----) [005] d..4 82315.979825: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49544          <idle>-0     (-----) [003] d..2 82315.979827: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
49545           <...>-27587 (-----) [005] dn.5 82315.979836: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49546           <...>-27587 (-----) [005] d..2 82315.979843: sched_switch: prev_comm=id.nn.benchmark prev_pid=27587 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49547        DispSync-8879  ( 8858) [003] d..1 82315.979848: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
49548<...>-5340 ( 788) [005] .... 82315.979852: binder_transaction_received: transaction=1569379
49549        DispSync-8879  ( 8858) [003] d..2 82315.979870: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
49550          <idle>-0     (-----) [001] .n.1 82315.979873: cpu_idle: state=4294967295 cpu_id=1
49551          <idle>-0     (-----) [001] d..2 82315.979885: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
49552<...>-5340 ( 788) [005] ...1 82315.979896: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
49553        DispSync-8879  ( 8858) [003] d..2 82315.979899: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49554          <idle>-0     (-----) [003] d..1 82315.979909: cpu_idle: state=0 cpu_id=3
49555<...>-5340 ( 788) [005] d..2 82315.979937: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
49556  appEventThread-8881  ( 8858) [001] d..3 82315.979953: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
49557  appEventThread-8881  ( 8858) [001] d..4 82315.979975: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
49558<...>-5340 ( 788) [005] d..2 82315.979979: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27587 next_prio=110
49559          <idle>-0     (-----) [000] .n.1 82315.979981: cpu_idle: state=4294967295 cpu_id=0
49560  appEventThread-8881  ( 8858) [001] d.h2 82315.979986: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
49561          <idle>-0     (-----) [000] d..2 82315.979989: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
49562           <...>-27587 (-----) [005] d..2 82315.980001: sched_switch: prev_comm=id.nn.benchmark prev_pid=27587 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
49563  appEventThread-8881  ( 8858) [001] d..3 82315.980006: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=002
49564          <idle>-0     (-----) [005] d..1 82315.980019: cpu_idle: state=0 cpu_id=5
49565  appEventThread-8881  ( 8858) [001] d..4 82315.980023: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=002
49566          <idle>-0     (-----) [002] .n.1 82315.980028: cpu_idle: state=4294967295 cpu_id=2
49567          <idle>-0     (-----) [002] d..2 82315.980039: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
49568  appEventThread-8881  ( 8858) [001] d..2 82315.980052: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
49569<...>-87 ( 87) [001] d..2 82315.980093: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49570 s.nexuslauncher-10023 (10023) [002] d.h3 82315.980099: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49571          <idle>-0     (-----) [001] d..1 82315.980107: cpu_idle: state=0 cpu_id=1
49572 s.nexuslauncher-10023 (10023) [002] d.h4 82315.980141: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
49573<...>-9105 ( 9105) [000] d..2 82315.980156: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
49574 s.nexuslauncher-10023 (10023) [002] d.h3 82315.980185: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49575          <idle>-0     (-----) [005] dnh2 82315.980205: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49576          <idle>-0     (-----) [005] .n.1 82315.980210: cpu_idle: state=4294967295 cpu_id=5
49577          <idle>-0     (-----) [005] d..2 82315.980218: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49578<...>-86 ( 86) [000] d..2 82315.980223: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
49579<...>-5340 ( 788) [005] d..1 82315.980269: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
49580<...>-9105 ( 9105) [000] dnh1 82315.980308: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49581<...>-9105 ( 9105) [000] d..2 82315.980318: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
49582 neuralnetworks@-13088 (  788) [000] d..2 82315.980351: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
49583<...>-5340 ( 788) [005] d..2 82315.980428: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
49584          <idle>-0     (-----) [001] dnh2 82315.980449: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
49585 s.nexuslauncher-10023 (10023) [002] .... 82315.980451: binder_transaction: transaction=1569382 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
49586<...>-5340 ( 788) [005] d..2 82315.980454: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
49587          <idle>-0     (-----) [001] .n.1 82315.980454: cpu_idle: state=4294967295 cpu_id=1
49588<...>-9105 ( 9105) [000] .... 82315.980457: binder_transaction: transaction=1569383 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
49589 s.nexuslauncher-10023 (10023) [002] .... 82315.980457: binder_transaction_alloc_buf: transaction=1569382 data_size=80 offsets_size=0
49590<...>-9105 ( 9105) [000] .... 82315.980461: binder_transaction_alloc_buf: transaction=1569383 data_size=80 offsets_size=0
49591 s.nexuslauncher-10023 (10023) [002] d..4 82315.980463: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
49592          <idle>-0     (-----) [001] d..2 82315.980465: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
49593          <idle>-0     (-----) [005] d..1 82315.980469: cpu_idle: state=0 cpu_id=5
49594<...>-87 ( 87) [001] d..2 82315.980496: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49595 s.nexuslauncher-10023 (10023) [002] d..5 82315.980498: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
49596          <idle>-0     (-----) [003] .n.1 82315.980503: cpu_idle: state=4294967295 cpu_id=3
49597          <idle>-0     (-----) [001] d..1 82315.980505: cpu_idle: state=0 cpu_id=1
49598          <idle>-0     (-----) [003] d..2 82315.980514: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
49599 s.nexuslauncher-10023 (10023) [002] d.h6 82315.980515: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
49600 s.nexuslauncher-10023 (10023) [002] d.h7 82315.980547: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
49601<...>-9105 ( 9105) [000] d..4 82315.980594: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
49602<...>-9105 ( 9105) [000] d..5 82315.980616: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
49603          <idle>-0     (-----) [001] .n.1 82315.980621: cpu_idle: state=4294967295 cpu_id=1
49604<...>-13083 ( 8858) [003] .... 82315.980623: binder_transaction_received: transaction=1569382
49605          <idle>-0     (-----) [001] d..2 82315.980630: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
49606<...>-8874 ( 8858) [001] .... 82315.980638: binder_transaction_received: transaction=1569383
49607<...>-13083 ( 8858) [003] d..1 82315.980653: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
49608<...>-9105 ( 9105) [000] d..3 82315.980656: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
49609 s.nexuslauncher-10023 (10023) [002] d..3 82315.980662: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=007
49610<...>-13083 ( 8858) [003] d..2 82315.980668: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
49611<...>-8874 ( 8858) [001] d..2 82315.980676: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
49612<...>-13083 ( 8858) [003] d..1 82315.980681: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
49613          <idle>-0     (-----) [006] dnh2 82315.980683: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
49614<...>-13083 ( 8858) [003] d..2 82315.980683: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
49615          <idle>-0     (-----) [007] dnh2 82315.980687: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=007
49616          <idle>-0     (-----) [006] .n.1 82315.980688: cpu_idle: state=4294967295 cpu_id=6
49617          <idle>-0     (-----) [007] .n.1 82315.980692: cpu_idle: state=4294967295 cpu_id=7
49618          <idle>-0     (-----) [006] d..2 82315.980696: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
49619          <idle>-0     (-----) [007] d..2 82315.980700: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
49620<...>-13083 ( 8858) [003] d..2 82315.980710: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
49621  appEventThread-8881  ( 8858) [001] d..2 82315.980714: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
49622    RenderThread-16607 (10023) [007] d..2 82315.980721: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
49623<...>-8874 ( 8858) [001] d..1 82315.980721: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
49624          <idle>-0     (-----) [007] d..1 82315.980728: cpu_idle: state=0 cpu_id=7
49625    RenderThread-9436  ( 9105) [006] d..2 82315.980737: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
49626<...>-8874 ( 8858) [001] d..2 82315.980744: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
49627          <idle>-0     (-----) [006] d..1 82315.980747: cpu_idle: state=0 cpu_id=6
49628<...>-86 ( 86) [003] d..2 82315.980756: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
49629<...>-8874 ( 8858) [001] d..2 82315.980783: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49630<...>-9105 ( 9105) [000] d..3 82315.980794: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
49631          <idle>-0     (-----) [001] d..1 82315.980797: cpu_idle: state=0 cpu_id=1
49632  appEventThread-8881  ( 8858) [003] d..2 82315.980808: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49633          <idle>-0     (-----) [006] dnh2 82315.980815: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
49634          <idle>-0     (-----) [006] .n.1 82315.980819: cpu_idle: state=4294967295 cpu_id=6
49635          <idle>-0     (-----) [003] d..1 82315.980820: cpu_idle: state=0 cpu_id=3
49636          <idle>-0     (-----) [006] d..2 82315.980826: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
49637<...>-9105 ( 9105) [000] d..2 82315.980833: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49638          <idle>-0     (-----) [000] d..1 82315.980844: cpu_idle: state=0 cpu_id=0
49639          <idle>-0     (-----) [005] ...1 82315.980848: cpu_idle: state=4294967295 cpu_id=5
49640          <idle>-0     (-----) [005] d..1 82315.980851: cpu_idle: state=0 cpu_id=5
49641 s.nexuslauncher-10023 (10023) [002] d..2 82315.980925: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49642    RenderThread-9436  ( 9105) [006] d..1 82315.980937: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
49643          <idle>-0     (-----) [002] d..1 82315.980942: cpu_idle: state=0 cpu_id=2
49644          <idle>-0     (-----) [000] dnh2 82315.980960: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
49645          <idle>-0     (-----) [000] .n.1 82315.980966: cpu_idle: state=4294967295 cpu_id=0
49646          <idle>-0     (-----) [000] d..2 82315.980973: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
49647    RenderThread-9436  ( 9105) [006] .... 82315.980995: binder_transaction: transaction=1569384 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
49648    RenderThread-9436  ( 9105) [006] .... 82315.980999: binder_transaction_alloc_buf: transaction=1569384 data_size=104 offsets_size=0
49649    RenderThread-9436  ( 9105) [006] d..4 82315.981003: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
49650    RenderThread-9436  ( 9105) [006] d..5 82315.981022: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
49651    RenderThread-9436  ( 9105) [006] d..2 82315.981063: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
49652<...>-9105 ( 9105) [000] d..2 82315.981068: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49653<...>-8874 ( 8858) [006] .... 82315.981073: binder_transaction_received: transaction=1569384
49654          <idle>-0     (-----) [000] d..1 82315.981077: cpu_idle: state=0 cpu_id=0
49655<...>-8874 ( 8858) [006] .... 82315.981133: binder_transaction: transaction=1569385 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
49656<...>-8874 ( 8858) [006] .... 82315.981136: binder_transaction_alloc_buf: transaction=1569385 data_size=52 offsets_size=8
49657<...>-8874 ( 8858) [006] d..2 82315.981143: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
49658<...>-8874 ( 8858) [006] d..3 82315.981152: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
49659<...>-8874 ( 8858) [006] d..2 82315.981179: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
49660    RenderThread-9436  ( 9105) [006] .... 82315.981187: binder_transaction_received: transaction=1569385
49661          <idle>-0     (-----) [000] d.s2 82315.981805: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
49662          <idle>-0     (-----) [000] dns3 82315.981821: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
49663          <idle>-0     (-----) [000] .n.1 82315.981831: cpu_idle: state=4294967295 cpu_id=0
49664          <idle>-0     (-----) [000] d..2 82315.981839: 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
49665     rcu_preempt-7     (    7) [000] d..2 82315.981848: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
49666     rcu_preempt-7     (    7) [000] d..3 82315.981882: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
49667     rcu_preempt-7     (    7) [000] d..2 82315.981884: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
49668     rcu_preempt-7     (    7) [000] d..3 82315.981911: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
49669     rcu_preempt-7     (    7) [000] d..2 82315.981924: 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
49670         rcuop/0-10    (   10) [000] d..2 82315.981930: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
49671         rcuop/0-10    (   10) [000] d..3 82315.981944: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
49672         rcuop/0-10    (   10) [000] d..2 82315.981972: 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
49673         rcuop/1-21    (   21) [000] d..2 82315.982003: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
49674         rcuop/4-45    (   45) [000] d..2 82315.982056: 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
49675          <idle>-0     (-----) [000] d..1 82315.982069: cpu_idle: state=0 cpu_id=0
49676          <idle>-0     (-----) [002] d.h4 82315.982106: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49677          <idle>-0     (-----) [005] dnh2 82315.982126: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49678          <idle>-0     (-----) [005] .n.1 82315.982130: cpu_idle: state=4294967295 cpu_id=5
49679          <idle>-0     (-----) [005] d..2 82315.982139: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49680          <idle>-0     (-----) [002] ...1 82315.982144: cpu_idle: state=4294967295 cpu_id=2
49681          <idle>-0     (-----) [002] d..1 82315.982150: cpu_idle: state=0 cpu_id=2
49682<...>-5340 ( 788) [005] d..1 82315.982194: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49683          <idle>-0     (-----) [000] dnh2 82315.982214: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49684          <idle>-0     (-----) [000] .n.1 82315.982222: cpu_idle: state=4294967295 cpu_id=0
49685          <idle>-0     (-----) [000] d..2 82315.982232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
49686<...>-5340 ( 788) [005] ...1 82315.982288: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
49687 neuralnetworks@-13088 (  788) [000] d..2 82315.982290: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49688<...>-5340 ( 788) [005] ...1 82315.982293: tracing_mark_write: E|788
49689          <idle>-0     (-----) [000] d..1 82315.982301: cpu_idle: state=0 cpu_id=0
49690<...>-5340 ( 788) [005] .... 82315.982310: binder_transaction: transaction=1569386 dest_node=1569380 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
49691<...>-5340 ( 788) [005] .... 82315.982313: binder_transaction_alloc_buf: transaction=1569386 data_size=60 offsets_size=0
49692<...>-5340 ( 788) [005] d..4 82315.982317: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
49693<...>-5340 ( 788) [005] d..5 82315.982330: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
49694          <idle>-0     (-----) [004] .n.1 82315.982336: cpu_idle: state=4294967295 cpu_id=4
49695          <idle>-0     (-----) [004] d..2 82315.982345: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
49696           <...>-27571 (-----) [004] .... 82315.982351: binder_transaction_received: transaction=1569386
49697<...>-5340 ( 788) [005] ...1 82315.982353: tracing_mark_write: E|788
49698<...>-5340 ( 788) [005] .... 82315.982360: binder_transaction: transaction=1569387 dest_node=0 dest_proc=27550 dest_thread=27587 reply=1 flags=0x0 code=0x0
49699<...>-5340 ( 788) [005] .... 82315.982362: binder_transaction_alloc_buf: transaction=1569387 data_size=8 offsets_size=0
49700<...>-5340 ( 788) [005] d..2 82315.982364: sched_waking: comm=id.nn.benchmark pid=27587 prio=110 target_cpu=005
49701<...>-5340 ( 788) [005] d..3 82315.982371: sched_wakeup: comm=id.nn.benchmark pid=27587 prio=110 target_cpu=005
49702<...>-5340 ( 788) [005] .... 82315.982373: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
49703           <...>-27571 (-----) [004] ...1 82315.982375: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
49704           <...>-27571 (-----) [004] ...1 82315.982382: tracing_mark_write: E|27550
49705<...>-5340 ( 788) [005] d..2 82315.982416: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27587 next_prio=110
49706           <...>-27571 (-----) [004] d..2 82315.982418: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49707           <...>-27587 (-----) [005] .... 82315.982426: binder_transaction_received: transaction=1569387
49708          <idle>-0     (-----) [004] d..1 82315.982428: cpu_idle: state=0 cpu_id=4
49709           <...>-27587 (-----) [005] ...1 82315.982465: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
49710           <...>-27587 (-----) [005] ...1 82315.982471: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
49711           <...>-27587 (-----) [005] ...1 82315.982497: tracing_mark_write: E|27550
49712           <...>-27587 (-----) [005] ...1 82315.982501: tracing_mark_write: E|27550
49713           <...>-27587 (-----) [005] ...1 82315.982504: tracing_mark_write: E|27550
49714    RenderThread-9436  ( 9105) [006] d..2 82315.982573: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
49715          <idle>-0     (-----) [006] d..1 82315.982586: cpu_idle: state=0 cpu_id=6
49716          <idle>-0     (-----) [006] d.h2 82315.982662: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
49717          <idle>-0     (-----) [006] d.h3 82315.982669: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
49718          <idle>-0     (-----) [006] dnh3 82315.982672: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
49719          <idle>-0     (-----) [006] .n.1 82315.982678: cpu_idle: state=4294967295 cpu_id=6
49720          <idle>-0     (-----) [006] d..2 82315.982686: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
49721           <...>-27587 (-----) [005] ...1 82315.982700: tracing_mark_write: E|27550
49722           <...>-27587 (-----) [005] d..1 82315.982714: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49723           <...>-27587 (-----) [005] d..2 82315.982730: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49724          <idle>-0     (-----) [004] .n.1 82315.982735: cpu_idle: state=4294967295 cpu_id=4
49725          <idle>-0     (-----) [004] d..2 82315.982744: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
49726           <...>-27550 (-----) [004] d..2 82315.982761: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49727          <idle>-0     (-----) [004] d..1 82315.982768: cpu_idle: state=0 cpu_id=4
49728           <...>-27587 (-----) [005] d..1 82315.982823: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49729           <...>-27587 (-----) [005] d..2 82315.982833: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
49730          <idle>-0     (-----) [004] .n.1 82315.982838: cpu_idle: state=4294967295 cpu_id=4
49731          <idle>-0     (-----) [004] d..2 82315.982844: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
49732          <idle>-0     (-----) [000] d.h3 82315.982868: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
49733           <...>-27587 (-----) [005] d..2 82315.982875: sched_switch: prev_comm=id.nn.benchmark prev_pid=27587 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
49734           <...>-27550 (-----) [004] ...1 82315.982876: tracing_mark_write: E|27550
49735           <...>-27550 (-----) [004] ...1 82315.982881: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
49736           <...>-27550 (-----) [004] ...1 82315.982887: tracing_mark_write: E|27550
49737          <idle>-0     (-----) [000] d.h4 82315.982888: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
49738           <...>-27550 (-----) [004] ...1 82315.982891: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
49739          <idle>-0     (-----) [003] .n.1 82315.982894: cpu_idle: state=4294967295 cpu_id=3
49740           <...>-27550 (-----) [004] ...1 82315.982895: tracing_mark_write: E|27550
49741          <idle>-0     (-----) [005] d..1 82315.982897: cpu_idle: state=0 cpu_id=5
49742           <...>-27550 (-----) [004] ...1 82315.982899: tracing_mark_write: E|27550
49743          <idle>-0     (-----) [000] ...1 82315.982901: cpu_idle: state=4294967295 cpu_id=0
49744          <idle>-0     (-----) [003] d..2 82315.982903: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
49745          <idle>-0     (-----) [000] d..1 82315.982906: cpu_idle: state=0 cpu_id=0
49746    RenderThread-9436  ( 9105) [006] .... 82315.982926: binder_transaction: transaction=1569388 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
49747    RenderThread-9436  ( 9105) [006] .... 82315.982930: binder_transaction_alloc_buf: transaction=1569388 data_size=192 offsets_size=8
49748    RenderThread-9436  ( 9105) [006] d..4 82315.982937: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
49749    RenderThread-9436  ( 9105) [006] dn.5 82315.982949: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
49750    RenderThread-9436  ( 9105) [006] d..2 82315.982956: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
49751 kgsl_worker_thr-258   (  258) [003] d..2 82315.982958: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
49752<...>-8874 ( 8858) [006] .... 82315.982966: binder_transaction_received: transaction=1569388
49753 kgsl_worker_thr-258   (  258) [003] d..3 82315.982976: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
49754 kgsl_worker_thr-258   (  258) [003] d..2 82315.983056: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
49755<...>-8874 ( 8858) [006] .... 82315.983092: binder_transaction: transaction=1569389 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
49756<...>-8874 ( 8858) [006] .... 82315.983095: binder_transaction_alloc_buf: transaction=1569389 data_size=68 offsets_size=0
49757  kworker/u16:15-1311  ( 1311) [003] d..2 82315.983102: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49758          <idle>-0     (-----) [003] d..1 82315.983111: cpu_idle: state=0 cpu_id=3
49759<...>-8874 ( 8858) [006] d..2 82315.983122: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
49760    RenderThread-9436  ( 9105) [006] .... 82315.983132: binder_transaction_received: transaction=1569389
49761    RenderThread-9436  ( 9105) [006] d..2 82315.983199: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
49762          <idle>-0     (-----) [006] d..1 82315.983212: cpu_idle: state=0 cpu_id=6
49763           <...>-27550 (-----) [004] ...1 82315.983547: tracing_mark_write: E|27550
49764           <...>-27550 (-----) [004] ...1 82315.983592: tracing_mark_write: B|27550|[NN_LA_PBM]runBenchmarkLoop
49765          <idle>-0     (-----) [003] d.h2 82315.983813: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
49766          <idle>-0     (-----) [003] dnh3 82315.983824: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
49767          <idle>-0     (-----) [003] .n.1 82315.983831: cpu_idle: state=4294967295 cpu_id=3
49768          <idle>-0     (-----) [003] d..2 82315.983838: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
49769        DispSync-8879  ( 8858) [003] d..1 82315.983855: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
49770        DispSync-8879  ( 8858) [003] d..2 82315.983869: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
49771          <idle>-0     (-----) [002] .n.1 82315.983874: cpu_idle: state=4294967295 cpu_id=2
49772          <idle>-0     (-----) [002] d..2 82315.983886: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
49773        DispSync-8879  ( 8858) [003] d..2 82315.983895: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49774          <idle>-0     (-----) [003] d..1 82315.983903: cpu_idle: state=0 cpu_id=3
49775   sfEventThread-8882  ( 8858) [002] d..3 82315.983937: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
49776   sfEventThread-8882  ( 8858) [002] d..4 82315.983957: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
49777          <idle>-0     (-----) [003] .n.1 82315.983961: cpu_idle: state=4294967295 cpu_id=3
49778          <idle>-0     (-----) [003] d..2 82315.983968: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
49779   sfEventThread-8882  ( 8858) [002] d..3 82315.983973: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
49780          <idle>-0     (-----) [005] dnh2 82315.984006: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=005
49781          <idle>-0     (-----) [005] .n.1 82315.984010: cpu_idle: state=4294967295 cpu_id=5
49782          <idle>-0     (-----) [005] d..2 82315.984018: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
49783   sfEventThread-8882  ( 8858) [002] d..2 82315.984025: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49784          <idle>-0     (-----) [002] d..1 82315.984039: cpu_idle: state=0 cpu_id=2
49785<...>-9005 ( 8943) [005] d..2 82315.984206: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
49786          <idle>-0     (-----) [005] d..1 82315.984220: cpu_idle: state=0 cpu_id=5
49787  surfaceflinger-8858  ( 8858) [003] d..1 82315.984310: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
49788  surfaceflinger-8858  ( 8858) [003] d..2 82315.984329: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
49789          <idle>-0     (-----) [002] .n.1 82315.984335: cpu_idle: state=4294967295 cpu_id=2
49790          <idle>-0     (-----) [002] d..2 82315.984344: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
49791   sfEventThread-8882  ( 8858) [002] d..2 82315.984374: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49792          <idle>-0     (-----) [002] d..1 82315.984383: cpu_idle: state=0 cpu_id=2
49793  surfaceflinger-8858  ( 8858) [003] ...1 82315.984508: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
49794  surfaceflinger-8858  ( 8858) [003] ...1 82315.984514: tracing_mark_write: E|8858
49795  surfaceflinger-8858  ( 8858) [003] .... 82315.984567: binder_transaction: transaction=1569390 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
49796  surfaceflinger-8858  ( 8858) [003] .... 82315.984572: binder_transaction_alloc_buf: transaction=1569390 data_size=540 offsets_size=96
49797  surfaceflinger-8858  ( 8858) [003] ...2 82315.984597: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
49798  surfaceflinger-8858  ( 8858) [003] d..4 82315.984606: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
49799  surfaceflinger-8858  ( 8858) [003] d..5 82315.984624: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
49800          <idle>-0     (-----) [001] .n.1 82315.984629: cpu_idle: state=4294967295 cpu_id=1
49801          <idle>-0     (-----) [001] d..2 82315.984640: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
49802  surfaceflinger-8858  ( 8858) [003] d..2 82315.984651: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49803 [email protected]   (  619) [001] .... 82315.984652: binder_transaction_received: transaction=1569390
49804          <idle>-0     (-----) [003] d..1 82315.984662: cpu_idle: state=0 cpu_id=3
49805 [email protected]   (  619) [001] ...1 82315.984699: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
49806 [email protected]   (  619) [001] ...1 82315.984810: tracing_mark_write: B|619|HWCSession::PresentDisplay::
49807 [email protected]   (  619) [001] ...1 82315.984974: tracing_mark_write: B|619|HWDeviceDRM::Commit::
49808 [email protected]   (  619) [001] ...1 82315.984987: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
49809          <idle>-0     (-----) [003] d.s2 82315.985132: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
49810          <idle>-0     (-----) [003] dns3 82315.985148: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
49811 [email protected]   (  619) [001] d.s2 82315.985150: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
49812          <idle>-0     (-----) [003] .n.1 82315.985166: cpu_idle: state=4294967295 cpu_id=3
49813 [email protected]   (  619) [001] d.s3 82315.985170: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
49814          <idle>-0     (-----) [003] d..2 82315.985178: 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
49815<...>-8 ( 8) [003] d..2 82315.985184: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
49816<...>-8 ( 8) [003] d..3 82315.985217: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
49817<...>-8 ( 8) [003] d..2 82315.985227: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
49818<...>-46 ( 46) [003] d..2 82315.985239: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
49819<...>-46 ( 46) [003] d..3 82315.985250: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
49820<...>-46 ( 46) [003] d..2 82315.985257: 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
49821<...>-8 ( 8) [003] d..2 82315.985269: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
49822  kworker/u16:15-1311  ( 1311) [003] d..2 82315.985381: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49823          <idle>-0     (-----) [003] d..1 82315.985394: cpu_idle: state=0 cpu_id=3
49824 [email protected]   (  619) [001] d..2 82315.985630: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
49825 [email protected]   (  619) [001] d..3 82315.985650: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
49826          <idle>-0     (-----) [002] .n.1 82315.985655: cpu_idle: state=4294967295 cpu_id=2
49827          <idle>-0     (-----) [002] d..2 82315.985665: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
49828 [email protected]   (  619) [001] ...1 82315.985742: tracing_mark_write: E|619
49829 [email protected]   (  619) [001] ...1 82315.985747: tracing_mark_write: E|619
49830 [email protected]   (  619) [001] ...1 82315.985806: tracing_mark_write: E|619
49831 [email protected]   (  619) [001] ...1 82315.985848: tracing_mark_write: E|619
49832 [email protected]   (  619) [001] .... 82315.985862: binder_transaction: transaction=1569391 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
49833 [email protected]   (  619) [001] .... 82315.985866: binder_transaction_alloc_buf: transaction=1569391 data_size=576 offsets_size=112
49834 [email protected]   (  619) [001] d..2 82315.985883: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
49835 [email protected]   (  619) [001] d..3 82315.985899: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
49836 [email protected]   (  619) [001] .... 82315.985903: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
49837          <idle>-0     (-----) [003] .n.1 82315.985904: cpu_idle: state=4294967295 cpu_id=3
49838          <idle>-0     (-----) [003] d..2 82315.985913: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
49839  surfaceflinger-8858  ( 8858) [003] .... 82315.985921: binder_transaction_received: transaction=1569391
49840 [email protected]   (  619) [001] d..2 82315.985977: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49841          <idle>-0     (-----) [001] d..1 82315.985994: cpu_idle: state=0 cpu_id=1
49842  surfaceflinger-8858  ( 8858) [003] d..2 82315.986312: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
49843          <idle>-0     (-----) [003] d..1 82315.986327: cpu_idle: state=0 cpu_id=3
49844 crtc_commit:111-321   (  321) [002] d..2 82315.986360: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
49845          <idle>-0     (-----) [002] d..1 82315.986372: cpu_idle: state=0 cpu_id=2
49846          <idle>-0     (-----) [000] d.s2 82315.988468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
49847           <...>-27550 (-----) [004] d.s2 82315.988470: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
49848          <idle>-0     (-----) [000] dns3 82315.988484: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
49849          <idle>-0     (-----) [000] dnh2 82315.988508: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
49850          <idle>-0     (-----) [000] .n.1 82315.988513: cpu_idle: state=4294967295 cpu_id=0
49851          <idle>-0     (-----) [000] d..2 82315.988524: 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
49852     rcu_preempt-7     (    7) [000] d..2 82315.988536: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
49853     rcu_preempt-7     (    7) [000] d..3 82315.988553: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
49854     rcu_preempt-7     (    7) [000] d..2 82315.988556: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
49855     rcu_preempt-7     (    7) [000] d..3 82315.988570: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
49856     rcu_preempt-7     (    7) [000] d..2 82315.988583: 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
49857         rcuop/2-29    (   29) [000] d..2 82315.988589: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
49858         rcuop/2-29    (   29) [000] d..3 82315.988624: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
49859          <idle>-0     (-----) [001] .n.1 82315.988630: cpu_idle: state=4294967295 cpu_id=1
49860         rcuop/2-29    (   29) [000] d..2 82315.988635: 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
49861          <idle>-0     (-----) [001] d..2 82315.988644: 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
49862         rcuop/6-61    (   61) [000] d..2 82315.988672: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
49863         rcuop/3-37    (   37) [001] d..2 82315.988685: 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
49864          <idle>-0     (-----) [001] d..1 82315.988695: cpu_idle: state=0 cpu_id=1
49865  kworker/u16:15-1311  ( 1311) [000] d..2 82315.988952: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
49866          <idle>-0     (-----) [000] d..1 82315.988966: cpu_idle: state=0 cpu_id=0
49867          <idle>-0     (-----) [001] d.s3 82315.988988: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
49868          <idle>-0     (-----) [001] d.s4 82315.989000: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
49869          <idle>-0     (-----) [001] d.s4 82315.989008: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
49870          <idle>-0     (-----) [000] .n.1 82315.989014: cpu_idle: state=4294967295 cpu_id=0
49871          <idle>-0     (-----) [001] ...1 82315.989017: cpu_idle: state=4294967295 cpu_id=1
49872          <idle>-0     (-----) [001] d..1 82315.989022: cpu_idle: state=0 cpu_id=1
49873          <idle>-0     (-----) [000] d..2 82315.989025: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
49874  kworker/u16:15-1311  ( 1311) [000] d..2 82315.989198: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
49875          <idle>-0     (-----) [000] d..1 82315.989209: cpu_idle: state=0 cpu_id=0
49876          <idle>-0     (-----) [001] d.s3 82315.989225: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
49877          <idle>-0     (-----) [001] d.s4 82315.989232: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
49878          <idle>-0     (-----) [001] d.s4 82315.989239: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
49879          <idle>-0     (-----) [000] .n.1 82315.989245: cpu_idle: state=4294967295 cpu_id=0
49880          <idle>-0     (-----) [001] ...1 82315.989246: cpu_idle: state=4294967295 cpu_id=1
49881          <idle>-0     (-----) [001] d..1 82315.989251: cpu_idle: state=0 cpu_id=1
49882          <idle>-0     (-----) [000] d..2 82315.989255: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
49883  kworker/u16:15-1311  ( 1311) [000] d..2 82315.989304: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49884          <idle>-0     (-----) [000] d..1 82315.989316: cpu_idle: state=0 cpu_id=0
49885           <...>-27550 (-----) [004] ...1 82315.989468: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
49886           <...>-27550 (-----) [004] ...1 82315.989535: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
49887           <...>-27550 (-----) [004] ...1 82315.989542: tracing_mark_write: E|27550
49888           <...>-27550 (-----) [004] ...1 82315.989547: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
49889           <...>-27550 (-----) [004] ...1 82315.989554: tracing_mark_write: E|27550
49890           <...>-27550 (-----) [004] ...1 82315.989559: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
49891           <...>-27550 (-----) [004] ...1 82315.989564: tracing_mark_write: E|27550
49892           <...>-27550 (-----) [004] ...1 82315.989568: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
49893          <idle>-0     (-----) [005] .n.1 82315.989679: cpu_idle: state=4294967295 cpu_id=5
49894           <...>-27550 (-----) [004] ...1 82315.989683: tracing_mark_write: E|27550
49895           <...>-27550 (-----) [004] ...1 82315.989687: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
49896          <idle>-0     (-----) [005] d..2 82315.989689: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27588 next_prio=110
49897           <...>-27550 (-----) [004] d..2 82315.989710: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
49898          <idle>-0     (-----) [004] d..1 82315.989727: cpu_idle: state=0 cpu_id=4
49899           <...>-27588 (-----) [005] ...1 82315.989771: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
49900           <...>-27588 (-----) [005] ...1 82315.989787: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
49901           <...>-27588 (-----) [005] ...1 82315.989791: tracing_mark_write: E|27550
49902           <...>-27588 (-----) [005] .... 82315.989826: binder_transaction: transaction=1569392 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
49903           <...>-27588 (-----) [005] .... 82315.989830: binder_transaction_alloc_buf: transaction=1569392 data_size=48 offsets_size=0
49904           <...>-27588 (-----) [005] ...2 82315.989835: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
49905           <...>-27588 (-----) [005] d..4 82315.989839: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
49906           <...>-27588 (-----) [005] dn.5 82315.989852: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
49907           <...>-27588 (-----) [005] d..2 82315.989859: sched_switch: prev_comm=id.nn.benchmark prev_pid=27588 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
49908<...>-770 ( 770) [005] .... 82315.989870: binder_transaction_received: transaction=1569392
49909<...>-770 ( 770) [005] ...1 82315.989907: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
49910<...>-770 ( 770) [005] d..2 82315.990040: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
49911          <idle>-0     (-----) [000] dnh2 82315.990070: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
49912          <idle>-0     (-----) [000] .n.1 82315.990075: cpu_idle: state=4294967295 cpu_id=0
49913          <idle>-0     (-----) [000] d..2 82315.990085: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
49914<...>-770 ( 770) [005] ...1 82315.990094: tracing_mark_write: E|770
49915<...>-770 ( 770) [005] .... 82315.990103: binder_transaction: transaction=1569393 dest_node=0 dest_proc=27550 dest_thread=27588 reply=1 flags=0x0 code=0x0
49916<...>-770 ( 770) [005] .... 82315.990106: binder_transaction_alloc_buf: transaction=1569393 data_size=168 offsets_size=32
49917<...>-770 ( 770) [005] .... 82315.990113: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
49918<...>-770 ( 770) [005] d..2 82315.990153: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27588 next_prio=110
49919           <...>-27588 (-----) [005] .... 82315.990164: binder_transaction_received: transaction=1569393
49920<...>-581 ( 571) [000] d..2 82315.990209: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49921          <idle>-0     (-----) [000] d..1 82315.990222: cpu_idle: state=0 cpu_id=0
49922           <...>-27588 (-----) [005] ...1 82315.990257: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
49923           <...>-27588 (-----) [005] ...1 82315.990261: tracing_mark_write: E|27550
49924           <...>-27588 (-----) [005] .... 82315.990276: binder_transaction: transaction=1569394 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
49925           <...>-27588 (-----) [005] .... 82315.990278: binder_transaction_alloc_buf: transaction=1569394 data_size=48 offsets_size=0
49926           <...>-27588 (-----) [005] ...2 82315.990280: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
49927           <...>-27588 (-----) [005] d..4 82315.990283: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
49928           <...>-27588 (-----) [005] dn.5 82315.990293: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
49929           <...>-27588 (-----) [005] d..2 82315.990299: sched_switch: prev_comm=id.nn.benchmark prev_pid=27588 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
49930<...>-770 ( 770) [005] .... 82315.990307: binder_transaction_received: transaction=1569394
49931<...>-770 ( 770) [005] ...1 82315.990325: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
49932<...>-770 ( 770) [005] d..2 82315.990383: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
49933          <idle>-0     (-----) [000] dnh2 82315.990406: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
49934          <idle>-0     (-----) [000] .n.1 82315.990412: cpu_idle: state=4294967295 cpu_id=0
49935<...>-770 ( 770) [005] ...1 82315.990418: tracing_mark_write: E|770
49936          <idle>-0     (-----) [000] d..2 82315.990421: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
49937<...>-770 ( 770) [005] .... 82315.990424: binder_transaction: transaction=1569395 dest_node=0 dest_proc=27550 dest_thread=27588 reply=1 flags=0x0 code=0x0
49938<...>-770 ( 770) [005] .... 82315.990427: binder_transaction_alloc_buf: transaction=1569395 data_size=168 offsets_size=32
49939<...>-770 ( 770) [005] .... 82315.990432: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
49940<...>-770 ( 770) [005] d..2 82315.990466: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27588 next_prio=110
49941<...>-581 ( 571) [000] d..2 82315.990475: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49942           <...>-27588 (-----) [005] .... 82315.990477: binder_transaction_received: transaction=1569395
49943          <idle>-0     (-----) [000] d..1 82315.990486: cpu_idle: state=0 cpu_id=0
49944           <...>-27588 (-----) [005] ...1 82315.990789: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
49945           <...>-27588 (-----) [005] ...1 82315.990799: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
49946           <...>-27588 (-----) [005] ...1 82315.990803: tracing_mark_write: E|27550
49947           <...>-27588 (-----) [005] .... 82315.990888: binder_transaction: transaction=1569396 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
49948           <...>-27588 (-----) [005] .... 82315.990891: binder_transaction_alloc_buf: transaction=1569396 data_size=556 offsets_size=104
49949           <...>-27588 (-----) [005] ...2 82315.990911: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
49950           <...>-27588 (-----) [005] d..4 82315.990914: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49951           <...>-27588 (-----) [005] dn.5 82315.990926: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49952           <...>-27588 (-----) [005] d..2 82315.990933: sched_switch: prev_comm=id.nn.benchmark prev_pid=27588 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49953<...>-5340 ( 788) [005] .... 82315.990944: binder_transaction_received: transaction=1569396
49954          <idle>-0     (-----) [002] d.h2 82315.990958: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=002
49955          <idle>-0     (-----) [002] d.h3 82315.990982: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
49956          <idle>-0     (-----) [000] .n.1 82315.990988: cpu_idle: state=4294967295 cpu_id=0
49957          <idle>-0     (-----) [002] ...1 82315.990992: cpu_idle: state=4294967295 cpu_id=2
49958          <idle>-0     (-----) [002] d..1 82315.990998: cpu_idle: state=0 cpu_id=2
49959          <idle>-0     (-----) [000] d..2 82315.990998: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
49960<...>-5340 ( 788) [005] ...1 82315.991012: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
49961<...>-5340 ( 788) [005] d..2 82315.991080: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
49962<...>-5340 ( 788) [005] d..2 82315.991106: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27588 next_prio=110
49963          <idle>-0     (-----) [001] dnh2 82315.991107: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
49964 s.nexuslauncher-10023 (10023) [000] d..2 82315.991109: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49965          <idle>-0     (-----) [001] .n.1 82315.991112: cpu_idle: state=4294967295 cpu_id=1
49966          <idle>-0     (-----) [000] d..1 82315.991121: cpu_idle: state=0 cpu_id=0
49967          <idle>-0     (-----) [001] d..2 82315.991122: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
49968           <...>-27588 (-----) [005] d..2 82315.991130: sched_switch: prev_comm=id.nn.benchmark prev_pid=27588 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
49969          <idle>-0     (-----) [005] d..1 82315.991148: cpu_idle: state=0 cpu_id=5
49970<...>-87 ( 87) [001] d..2 82315.991168: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49971          <idle>-0     (-----) [001] d..1 82315.991178: cpu_idle: state=0 cpu_id=1
49972          <idle>-0     (-----) [002] d.h4 82315.991179: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
49973          <idle>-0     (-----) [002] dnh5 82315.991208: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49974          <idle>-0     (-----) [002] .n.1 82315.991217: cpu_idle: state=4294967295 cpu_id=2
49975          <idle>-0     (-----) [002] d..2 82315.991230: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
49976<...>-86 ( 86) [002] d.h4 82315.991262: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49977          <idle>-0     (-----) [005] dnh2 82315.991283: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
49978          <idle>-0     (-----) [005] .n.1 82315.991287: cpu_idle: state=4294967295 cpu_id=5
49979          <idle>-0     (-----) [005] d..2 82315.991296: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
49980<...>-86 ( 86) [002] d..2 82315.991326: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
49981          <idle>-0     (-----) [002] d..1 82315.991338: cpu_idle: state=0 cpu_id=2
49982<...>-5340 ( 788) [005] d..1 82315.991364: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49983          <idle>-0     (-----) [000] dnh2 82315.991391: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
49984          <idle>-0     (-----) [000] .n.1 82315.991397: cpu_idle: state=4294967295 cpu_id=0
49985          <idle>-0     (-----) [000] d..2 82315.991407: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
49986 neuralnetworks@-13088 (  788) [000] d..2 82315.991459: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
49987          <idle>-0     (-----) [000] d..1 82315.991468: cpu_idle: state=0 cpu_id=0
49988<...>-5340 ( 788) [005] d..2 82315.991521: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
49989          <idle>-0     (-----) [001] dnh2 82315.991541: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
49990          <idle>-0     (-----) [001] .n.1 82315.991546: cpu_idle: state=4294967295 cpu_id=1
49991<...>-5340 ( 788) [005] d..2 82315.991548: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
49992          <idle>-0     (-----) [001] d..2 82315.991555: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
49993          <idle>-0     (-----) [005] d..1 82315.991561: cpu_idle: state=0 cpu_id=5
49994<...>-87 ( 87) [001] d..2 82315.991587: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
49995          <idle>-0     (-----) [002] d.h4 82315.991591: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49996          <idle>-0     (-----) [001] d..1 82315.991596: cpu_idle: state=0 cpu_id=1
49997          <idle>-0     (-----) [002] dnh5 82315.991601: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
49998          <idle>-0     (-----) [002] .n.1 82315.991608: cpu_idle: state=4294967295 cpu_id=2
49999          <idle>-0     (-----) [002] d..2 82315.991618: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
50000<...>-86 ( 86) [002] d..2 82315.991647: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50001          <idle>-0     (-----) [002] d..1 82315.991658: cpu_idle: state=0 cpu_id=2
50002          <idle>-0     (-----) [000] d.h5 82315.991803: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
50003          <idle>-0     (-----) [000] dnh6 82315.991864: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
50004          <idle>-0     (-----) [000] dnh5 82315.991868: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
50005          <idle>-0     (-----) [000] dnh6 82315.991882: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
50006          <idle>-0     (-----) [002] .n.1 82315.991888: cpu_idle: state=4294967295 cpu_id=2
50007          <idle>-0     (-----) [003] d.H3 82315.991889: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
50008          <idle>-0     (-----) [000] .n.1 82315.991895: cpu_idle: state=4294967295 cpu_id=0
50009          <idle>-0     (-----) [002] d..2 82315.991901: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
50010          <idle>-0     (-----) [000] d..2 82315.991906: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
50011          <idle>-0     (-----) [003] dnH4 82315.991915: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
50012          <idle>-0     (-----) [003] dns2 82315.991923: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
50013  crtc_event:111-322   (  322) [000] d..2 82315.991940: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50014          <idle>-0     (-----) [000] d..1 82315.991948: cpu_idle: state=0 cpu_id=0
50015          <idle>-0     (-----) [003] dns3 82315.991957: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
50016          <idle>-0     (-----) [000] .n.1 82315.991963: cpu_idle: state=4294967295 cpu_id=0
50017          <idle>-0     (-----) [003] .n.1 82315.991969: cpu_idle: state=4294967295 cpu_id=3
50018          <idle>-0     (-----) [000] d..2 82315.991971: 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
50019          <idle>-0     (-----) [003] d..2 82315.991979: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
50020<...>-8 ( 8) [000] d..2 82315.991995: 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
50021          <idle>-0     (-----) [000] d..1 82315.992001: cpu_idle: state=0 cpu_id=0
50022         sugov:0-576   (  576) [003] .... 82315.992015: clk_set_rate: pwrcl_clk 825600000
50023         sugov:0-576   (  576) [003] .... 82315.992037: clk_set_rate: cpu3_pwrcl_clk 1056000000
50024 crtc_commit:111-321   (  321) [002] d..2 82315.992045: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
50025         sugov:0-576   (  576) [003] .... 82315.992047: clk_set_rate: cpu2_pwrcl_clk 1056000000
50026          <idle>-0     (-----) [002] d..1 82315.992053: cpu_idle: state=0 cpu_id=2
50027         sugov:0-576   (  576) [003] .... 82315.992054: clk_set_rate: cpu1_pwrcl_clk 1056000000
50028         sugov:0-576   (  576) [003] .... 82315.992062: clk_set_rate: cpu0_pwrcl_clk 825600000
50029         sugov:0-576   (  576) [003] .... 82315.992176: cpu_frequency: state=825600 cpu_id=0
50030         sugov:0-576   (  576) [003] .... 82315.992202: cpu_frequency: state=825600 cpu_id=1
50031         sugov:0-576   (  576) [003] .... 82315.992206: cpu_frequency: state=825600 cpu_id=2
50032         sugov:0-576   (  576) [003] .... 82315.992210: cpu_frequency: state=825600 cpu_id=3
50033         sugov:0-576   (  576) [003] d..2 82315.992242: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50034          <idle>-0     (-----) [003] d..1 82315.992257: cpu_idle: state=0 cpu_id=3
50035          <idle>-0     (-----) [002] d.h4 82315.993346: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50036          <idle>-0     (-----) [005] dnh2 82315.993371: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50037          <idle>-0     (-----) [005] .n.1 82315.993376: cpu_idle: state=4294967295 cpu_id=5
50038          <idle>-0     (-----) [005] d..2 82315.993385: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50039          <idle>-0     (-----) [002] ...1 82315.993387: cpu_idle: state=4294967295 cpu_id=2
50040          <idle>-0     (-----) [002] d..1 82315.993392: cpu_idle: state=0 cpu_id=2
50041<...>-5340 ( 788) [005] d..1 82315.993441: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50042          <idle>-0     (-----) [000] dnh2 82315.993464: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50043          <idle>-0     (-----) [000] .n.1 82315.993473: cpu_idle: state=4294967295 cpu_id=0
50044          <idle>-0     (-----) [000] d..2 82315.993481: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
50045<...>-5340 ( 788) [005] ...1 82315.993537: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
50046<...>-5340 ( 788) [005] ...1 82315.993541: tracing_mark_write: E|788
50047 neuralnetworks@-13088 (  788) [000] d..2 82315.993543: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50048          <idle>-0     (-----) [000] d..1 82315.993552: cpu_idle: state=0 cpu_id=0
50049<...>-5340 ( 788) [005] .... 82315.993561: binder_transaction: transaction=1569399 dest_node=1569397 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
50050<...>-5340 ( 788) [005] .... 82315.993564: binder_transaction_alloc_buf: transaction=1569399 data_size=60 offsets_size=0
50051<...>-5340 ( 788) [005] d..4 82315.993567: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
50052<...>-5340 ( 788) [005] d..5 82315.993582: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
50053          <idle>-0     (-----) [004] .n.1 82315.993589: cpu_idle: state=4294967295 cpu_id=4
50054          <idle>-0     (-----) [004] d..2 82315.993599: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
50055           <...>-27571 (-----) [004] .... 82315.993605: binder_transaction_received: transaction=1569399
50056<...>-5340 ( 788) [005] ...1 82315.993606: tracing_mark_write: E|788
50057<...>-5340 ( 788) [005] .... 82315.993612: binder_transaction: transaction=1569400 dest_node=0 dest_proc=27550 dest_thread=27588 reply=1 flags=0x0 code=0x0
50058<...>-5340 ( 788) [005] .... 82315.993614: binder_transaction_alloc_buf: transaction=1569400 data_size=8 offsets_size=0
50059<...>-5340 ( 788) [005] d..2 82315.993616: sched_waking: comm=id.nn.benchmark pid=27588 prio=110 target_cpu=005
50060<...>-5340 ( 788) [005] d..3 82315.993624: sched_wakeup: comm=id.nn.benchmark pid=27588 prio=110 target_cpu=005
50061<...>-5340 ( 788) [005] .... 82315.993625: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
50062           <...>-27571 (-----) [004] ...1 82315.993630: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
50063           <...>-27571 (-----) [004] ...1 82315.993637: tracing_mark_write: E|27550
50064<...>-5340 ( 788) [005] d..2 82315.993672: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27588 next_prio=110
50065           <...>-27571 (-----) [004] d..2 82315.993674: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50066           <...>-27588 (-----) [005] .... 82315.993681: binder_transaction_received: transaction=1569400
50067          <idle>-0     (-----) [004] d..1 82315.993685: cpu_idle: state=0 cpu_id=4
50068           <...>-27588 (-----) [005] ...1 82315.993721: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
50069           <...>-27588 (-----) [005] ...1 82315.993728: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
50070           <...>-27588 (-----) [005] ...1 82315.993755: tracing_mark_write: E|27550
50071           <...>-27588 (-----) [005] ...1 82315.993759: tracing_mark_write: E|27550
50072           <...>-27588 (-----) [005] ...1 82315.993764: tracing_mark_write: E|27550
50073           <...>-27588 (-----) [005] ...1 82315.993967: tracing_mark_write: E|27550
50074           <...>-27588 (-----) [005] d..1 82315.993983: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50075           <...>-27588 (-----) [005] d..2 82315.994000: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50076          <idle>-0     (-----) [004] .n.1 82315.994005: cpu_idle: state=4294967295 cpu_id=4
50077          <idle>-0     (-----) [004] d..2 82315.994013: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
50078           <...>-27550 (-----) [004] d..2 82315.994031: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50079          <idle>-0     (-----) [004] d..1 82315.994037: cpu_idle: state=0 cpu_id=4
50080           <...>-27588 (-----) [005] d..1 82315.994116: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50081           <...>-27588 (-----) [005] d..2 82315.994125: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50082          <idle>-0     (-----) [004] .n.1 82315.994130: cpu_idle: state=4294967295 cpu_id=4
50083          <idle>-0     (-----) [004] d..2 82315.994136: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
50084          <idle>-0     (-----) [000] d.h5 82315.994144: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
50085          <idle>-0     (-----) [000] d.h6 82315.994164: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
50086           <...>-27588 (-----) [005] d..2 82315.994168: sched_switch: prev_comm=id.nn.benchmark prev_pid=27588 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
50087          <idle>-0     (-----) [002] .n.1 82315.994169: cpu_idle: state=4294967295 cpu_id=2
50088           <...>-27550 (-----) [004] ...1 82315.994170: tracing_mark_write: E|27550
50089           <...>-27550 (-----) [004] ...1 82315.994176: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
50090          <idle>-0     (-----) [002] d..2 82315.994177: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
50091          <idle>-0     (-----) [000] ...1 82315.994178: cpu_idle: state=4294967295 cpu_id=0
50092           <...>-27550 (-----) [004] ...1 82315.994182: tracing_mark_write: E|27550
50093          <idle>-0     (-----) [000] d..1 82315.994183: cpu_idle: state=0 cpu_id=0
50094           <...>-27550 (-----) [004] ...1 82315.994186: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
50095          <idle>-0     (-----) [005] d..1 82315.994189: cpu_idle: state=0 cpu_id=5
50096           <...>-27550 (-----) [004] ...1 82315.994190: tracing_mark_write: E|27550
50097           <...>-27550 (-----) [004] ...1 82315.994194: tracing_mark_write: E|27550
50098 crtc_commit:111-321   (  321) [002] d..2 82315.994262: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50099          <idle>-0     (-----) [002] d..1 82315.994270: cpu_idle: state=0 cpu_id=2
50100           <...>-27550 (-----) [004] ...1 82315.994308: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
50101           <...>-27550 (-----) [004] ...1 82315.994367: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
50102           <...>-27550 (-----) [004] ...1 82315.994372: tracing_mark_write: E|27550
50103           <...>-27550 (-----) [004] ...1 82315.994376: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
50104           <...>-27550 (-----) [004] ...1 82315.994381: tracing_mark_write: E|27550
50105           <...>-27550 (-----) [004] ...1 82315.994385: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
50106           <...>-27550 (-----) [004] ...1 82315.994389: tracing_mark_write: E|27550
50107           <...>-27550 (-----) [004] ...1 82315.994393: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
50108          <idle>-0     (-----) [000] d.h5 82315.994427: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
50109          <idle>-0     (-----) [000] dnh6 82315.994437: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
50110          <idle>-0     (-----) [000] .n.1 82315.994451: cpu_idle: state=4294967295 cpu_id=0
50111          <idle>-0     (-----) [000] d..2 82315.994458: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
50112  crtc_event:111-322   (  322) [000] d..2 82315.994483: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50113          <idle>-0     (-----) [005] .n.1 82315.994483: cpu_idle: state=4294967295 cpu_id=5
50114           <...>-27550 (-----) [004] ...1 82315.994484: tracing_mark_write: E|27550
50115           <...>-27550 (-----) [004] ...1 82315.994488: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
50116          <idle>-0     (-----) [000] d..1 82315.994490: cpu_idle: state=0 cpu_id=0
50117          <idle>-0     (-----) [005] d..2 82315.994492: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27589 next_prio=110
50118           <...>-27550 (-----) [004] d..2 82315.994505: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50119          <idle>-0     (-----) [004] d..1 82315.994520: cpu_idle: state=0 cpu_id=4
50120           <...>-27589 (-----) [005] ...1 82315.994553: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
50121           <...>-27589 (-----) [005] ...1 82315.994568: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
50122           <...>-27589 (-----) [005] ...1 82315.994571: tracing_mark_write: E|27550
50123           <...>-27589 (-----) [005] .... 82315.994593: binder_transaction: transaction=1569401 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
50124           <...>-27589 (-----) [005] .... 82315.994596: binder_transaction_alloc_buf: transaction=1569401 data_size=48 offsets_size=0
50125           <...>-27589 (-----) [005] ...2 82315.994599: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
50126           <...>-27589 (-----) [005] d..4 82315.994602: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
50127           <...>-27589 (-----) [005] dn.5 82315.994613: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
50128           <...>-27589 (-----) [005] d..2 82315.994620: sched_switch: prev_comm=id.nn.benchmark prev_pid=27589 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
50129<...>-770 ( 770) [005] .... 82315.994630: binder_transaction_received: transaction=1569401
50130<...>-770 ( 770) [005] ...1 82315.994653: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
50131<...>-770 ( 770) [005] d..2 82315.994726: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
50132          <idle>-0     (-----) [000] dnh2 82315.994754: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
50133          <idle>-0     (-----) [000] .n.1 82315.994760: cpu_idle: state=4294967295 cpu_id=0
50134<...>-770 ( 770) [005] ...1 82315.994767: tracing_mark_write: E|770
50135          <idle>-0     (-----) [000] d..2 82315.994768: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
50136<...>-770 ( 770) [005] .... 82315.994775: binder_transaction: transaction=1569402 dest_node=0 dest_proc=27550 dest_thread=27589 reply=1 flags=0x0 code=0x0
50137<...>-770 ( 770) [005] .... 82315.994777: binder_transaction_alloc_buf: transaction=1569402 data_size=168 offsets_size=32
50138<...>-770 ( 770) [005] .... 82315.994784: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
50139<...>-770 ( 770) [005] d..2 82315.994820: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27589 next_prio=110
50140           <...>-27589 (-----) [005] .... 82315.994831: binder_transaction_received: transaction=1569402
50141<...>-581 ( 571) [000] d..2 82315.994852: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50142          <idle>-0     (-----) [000] d..1 82315.994863: cpu_idle: state=0 cpu_id=0
50143           <...>-27589 (-----) [005] ...1 82315.994899: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
50144           <...>-27589 (-----) [005] ...1 82315.994905: tracing_mark_write: E|27550
50145           <...>-27589 (-----) [005] .... 82315.994919: binder_transaction: transaction=1569403 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
50146           <...>-27589 (-----) [005] .... 82315.994922: binder_transaction_alloc_buf: transaction=1569403 data_size=48 offsets_size=0
50147           <...>-27589 (-----) [005] ...2 82315.994924: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
50148           <...>-27589 (-----) [005] d..4 82315.994926: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
50149           <...>-27589 (-----) [005] dn.5 82315.994936: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
50150           <...>-27589 (-----) [005] d..2 82315.994942: sched_switch: prev_comm=id.nn.benchmark prev_pid=27589 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
50151<...>-770 ( 770) [005] .... 82315.994951: binder_transaction_received: transaction=1569403
50152<...>-770 ( 770) [005] ...1 82315.994967: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
50153<...>-770 ( 770) [005] d..2 82315.995023: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
50154          <idle>-0     (-----) [000] dnh2 82315.995048: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
50155          <idle>-0     (-----) [000] .n.1 82315.995054: cpu_idle: state=4294967295 cpu_id=0
50156<...>-770 ( 770) [005] ...1 82315.995056: tracing_mark_write: E|770
50157          <idle>-0     (-----) [000] d..2 82315.995062: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
50158<...>-770 ( 770) [005] .... 82315.995063: binder_transaction: transaction=1569404 dest_node=0 dest_proc=27550 dest_thread=27589 reply=1 flags=0x0 code=0x0
50159<...>-770 ( 770) [005] .... 82315.995066: binder_transaction_alloc_buf: transaction=1569404 data_size=168 offsets_size=32
50160<...>-770 ( 770) [005] .... 82315.995072: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
50161<...>-770 ( 770) [005] d..2 82315.995106: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27589 next_prio=110
50162          <idle>-0     (-----) [002] d.s3 82315.995137: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
50163<...>-581 ( 571) [000] d.s1 82315.995146: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
50164           <...>-27589 (-----) [005] .... 82315.995148: binder_transaction_received: transaction=1569404
50165          <idle>-0     (-----) [002] dns4 82315.995165: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
50166<...>-581 ( 571) [000] dns2 82315.995169: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
50167          <idle>-0     (-----) [002] .n.1 82315.995185: cpu_idle: state=4294967295 cpu_id=2
50168<...>-581 ( 571) [000] d..2 82315.995188: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
50169          <idle>-0     (-----) [002] d..2 82315.995193: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
50170     rcu_preempt-7     (    7) [000] d..2 82315.995207: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
50171  crtc_event:111-322   (  322) [002] d..2 82315.995222: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50172<...>-581 ( 571) [000] d..2 82315.995234: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50173          <idle>-0     (-----) [002] d..1 82315.995235: cpu_idle: state=0 cpu_id=2
50174          <idle>-0     (-----) [000] d..1 82315.995244: cpu_idle: state=0 cpu_id=0
50175           <...>-27589 (-----) [005] ...1 82315.995423: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
50176           <...>-27589 (-----) [005] ...1 82315.995433: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
50177           <...>-27589 (-----) [005] ...1 82315.995437: tracing_mark_write: E|27550
50178           <...>-27589 (-----) [005] .... 82315.995497: binder_transaction: transaction=1569405 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
50179           <...>-27589 (-----) [005] .... 82315.995501: binder_transaction_alloc_buf: transaction=1569405 data_size=556 offsets_size=104
50180           <...>-27589 (-----) [005] ...2 82315.995515: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
50181           <...>-27589 (-----) [005] d..4 82315.995518: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50182           <...>-27589 (-----) [005] dn.5 82315.995529: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50183           <...>-27589 (-----) [005] d..2 82315.995536: sched_switch: prev_comm=id.nn.benchmark prev_pid=27589 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50184<...>-5340 ( 788) [005] .... 82315.995545: binder_transaction_received: transaction=1569405
50185<...>-5340 ( 788) [005] ...1 82315.995591: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
50186<...>-5340 ( 788) [005] d..2 82315.995635: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
50187<...>-5340 ( 788) [005] d..2 82315.995673: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27589 next_prio=110
50188          <idle>-0     (-----) [000] dnh2 82315.995676: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50189          <idle>-0     (-----) [000] .n.1 82315.995682: cpu_idle: state=4294967295 cpu_id=0
50190          <idle>-0     (-----) [000] d..2 82315.995691: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
50191           <...>-27589 (-----) [005] d..2 82315.995698: sched_switch: prev_comm=id.nn.benchmark prev_pid=27589 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
50192          <idle>-0     (-----) [005] d..1 82315.995715: cpu_idle: state=0 cpu_id=5
50193<...>-87 ( 87) [000] d..2 82315.995734: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50194          <idle>-0     (-----) [000] d..1 82315.995743: cpu_idle: state=0 cpu_id=0
50195          <idle>-0     (-----) [002] d.h4 82315.995743: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50196          <idle>-0     (-----) [002] dnh5 82315.995763: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50197          <idle>-0     (-----) [002] .n.1 82315.995774: cpu_idle: state=4294967295 cpu_id=2
50198          <idle>-0     (-----) [002] d..2 82315.995785: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
50199<...>-86 ( 86) [002] d..2 82315.995822: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50200          <idle>-0     (-----) [002] d.h5 82315.995844: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50201          <idle>-0     (-----) [005] dnh2 82315.995866: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50202          <idle>-0     (-----) [005] .n.1 82315.995870: cpu_idle: state=4294967295 cpu_id=5
50203          <idle>-0     (-----) [005] d..2 82315.995878: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50204          <idle>-0     (-----) [002] d..1 82315.995891: cpu_idle: state=0 cpu_id=2
50205<...>-5340 ( 788) [005] d..1 82315.995929: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50206          <idle>-0     (-----) [000] dnh2 82315.995954: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50207          <idle>-0     (-----) [000] .n.1 82315.995960: cpu_idle: state=4294967295 cpu_id=0
50208          <idle>-0     (-----) [000] d..2 82315.995968: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
50209 neuralnetworks@-13088 (  788) [000] d..2 82315.996015: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50210          <idle>-0     (-----) [000] d..1 82315.996025: cpu_idle: state=0 cpu_id=0
50211<...>-5340 ( 788) [005] d..2 82315.996077: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50212          <idle>-0     (-----) [000] dnh2 82315.996097: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50213          <idle>-0     (-----) [000] .n.1 82315.996104: cpu_idle: state=4294967295 cpu_id=0
50214<...>-5340 ( 788) [005] d..2 82315.996104: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
50215          <idle>-0     (-----) [000] d..2 82315.996111: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
50216          <idle>-0     (-----) [005] d..1 82315.996117: cpu_idle: state=0 cpu_id=5
50217          <idle>-0     (-----) [002] d.h4 82315.996148: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50218<...>-87 ( 87) [000] d..2 82315.996149: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50219          <idle>-0     (-----) [000] d..1 82315.996157: cpu_idle: state=0 cpu_id=0
50220          <idle>-0     (-----) [002] dnh5 82315.996158: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50221          <idle>-0     (-----) [002] .n.1 82315.996167: cpu_idle: state=4294967295 cpu_id=2
50222          <idle>-0     (-----) [002] d..2 82315.996179: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
50223<...>-86 ( 86) [002] d..2 82315.996213: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50224          <idle>-0     (-----) [002] d..1 82315.996225: cpu_idle: state=0 cpu_id=2
50225          <idle>-0     (-----) [003] d.h2 82315.996270: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
50226          <idle>-0     (-----) [003] dnh3 82315.996285: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
50227          <idle>-0     (-----) [003] .n.1 82315.996293: cpu_idle: state=4294967295 cpu_id=3
50228          <idle>-0     (-----) [003] d..2 82315.996304: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
50229        DispSync-8879  ( 8858) [003] d..1 82315.996327: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
50230        DispSync-8879  ( 8858) [003] d..2 82315.996349: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
50231          <idle>-0     (-----) [001] .n.1 82315.996355: cpu_idle: state=4294967295 cpu_id=1
50232          <idle>-0     (-----) [001] d..2 82315.996366: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
50233        DispSync-8879  ( 8858) [003] d..2 82315.996384: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50234          <idle>-0     (-----) [003] d..1 82315.996396: cpu_idle: state=0 cpu_id=3
50235  appEventThread-8881  ( 8858) [001] d..3 82315.996439: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
50236  appEventThread-8881  ( 8858) [001] d..4 82315.996464: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
50237          <idle>-0     (-----) [000] .n.1 82315.996469: cpu_idle: state=4294967295 cpu_id=0
50238          <idle>-0     (-----) [000] d..2 82315.996478: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
50239  appEventThread-8881  ( 8858) [001] d..3 82315.996484: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
50240  appEventThread-8881  ( 8858) [001] d..4 82315.996509: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=002
50241          <idle>-0     (-----) [002] .n.1 82315.996515: cpu_idle: state=4294967295 cpu_id=2
50242          <idle>-0     (-----) [002] d..2 82315.996527: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
50243  appEventThread-8881  ( 8858) [001] d..2 82315.996552: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50244          <idle>-0     (-----) [001] d..1 82315.996568: cpu_idle: state=0 cpu_id=1
50245<...>-9105 ( 9105) [000] .... 82315.996826: binder_transaction: transaction=1569408 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
50246 s.nexuslauncher-10023 (10023) [002] .... 82315.996827: binder_transaction: transaction=1569409 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
50247<...>-9105 ( 9105) [000] .... 82315.996834: binder_transaction_alloc_buf: transaction=1569408 data_size=80 offsets_size=0
50248 s.nexuslauncher-10023 (10023) [002] .... 82315.996838: binder_transaction_alloc_buf: transaction=1569409 data_size=80 offsets_size=0
50249<...>-9105 ( 9105) [000] d..4 82315.996840: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
50250<...>-9105 ( 9105) [000] d..5 82315.996878: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
50251          <idle>-0     (-----) [001] .n.1 82315.996885: cpu_idle: state=4294967295 cpu_id=1
50252 s.nexuslauncher-10023 (10023) [002] d..4 82315.996932: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
50253          <idle>-0     (-----) [001] d..2 82315.996932: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
50254 s.nexuslauncher-10023 (10023) [002] d..5 82315.996960: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
50255          <idle>-0     (-----) [003] .n.1 82315.996965: cpu_idle: state=4294967295 cpu_id=3
50256<...>-8874 ( 8858) [001] .... 82315.996968: binder_transaction_received: transaction=1569408
50257          <idle>-0     (-----) [003] d..2 82315.996978: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
50258<...>-13083 ( 8858) [003] .... 82315.996987: binder_transaction_received: transaction=1569409
50259 s.nexuslauncher-10023 (10023) [002] d..3 82315.997003: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=007
50260<...>-9105 ( 9105) [000] d..3 82315.997004: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
50261<...>-8874 ( 8858) [001] d..1 82315.997005: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
50262<...>-8874 ( 8858) [001] d..2 82315.997034: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
50263          <idle>-0     (-----) [006] dnh2 82315.997035: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=006
50264          <idle>-0     (-----) [006] dnh2 82315.997037: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
50265<...>-8874 ( 8858) [001] d..1 82315.997040: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
50266          <idle>-0     (-----) [006] .n.1 82315.997042: cpu_idle: state=4294967295 cpu_id=6
50267<...>-13083 ( 8858) [003] d..2 82315.997048: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
50268          <idle>-0     (-----) [006] d..2 82315.997051: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
50269          <idle>-0     (-----) [004] dnh2 82315.997118: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
50270    RenderThread-16607 (10023) [006] d..2 82315.997122: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
50271          <idle>-0     (-----) [004] .n.1 82315.997123: cpu_idle: state=4294967295 cpu_id=4
50272          <idle>-0     (-----) [004] d..2 82315.997130: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
50273  appEventThread-8881  ( 8858) [003] d..2 82315.997133: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50274          <idle>-0     (-----) [003] d..1 82315.997145: cpu_idle: state=0 cpu_id=3
50275<...>-13083 ( 8858) [004] d..1 82315.997148: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
50276    RenderThread-9436  ( 9105) [006] d..2 82315.997157: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
50277<...>-8874 ( 8858) [001] d..2 82315.997161: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50278<...>-9105 ( 9105) [000] d..3 82315.997167: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
50279          <idle>-0     (-----) [006] d..1 82315.997167: cpu_idle: state=0 cpu_id=6
50280          <idle>-0     (-----) [003] dnh2 82315.997173: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
50281          <idle>-0     (-----) [001] d..1 82315.997177: cpu_idle: state=0 cpu_id=1
50282          <idle>-0     (-----) [003] .n.1 82315.997179: cpu_idle: state=4294967295 cpu_id=3
50283          <idle>-0     (-----) [006] dnh2 82315.997189: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
50284          <idle>-0     (-----) [003] d..2 82315.997190: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
50285          <idle>-0     (-----) [006] .n.1 82315.997193: cpu_idle: state=4294967295 cpu_id=6
50286<...>-13083 ( 8858) [004] d..2 82315.997200: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50287          <idle>-0     (-----) [006] d..2 82315.997201: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
50288          <idle>-0     (-----) [004] d..1 82315.997211: cpu_idle: state=0 cpu_id=4
50289<...>-9105 ( 9105) [000] d..2 82315.997214: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50290          <idle>-0     (-----) [000] d..1 82315.997228: cpu_idle: state=0 cpu_id=0
50291  appEventThread-8881  ( 8858) [003] d..2 82315.997229: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50292          <idle>-0     (-----) [003] d..1 82315.997240: cpu_idle: state=0 cpu_id=3
50293    RenderThread-9436  ( 9105) [006] d..1 82315.997281: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
50294          <idle>-0     (-----) [000] dnh2 82315.997306: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
50295          <idle>-0     (-----) [000] .n.1 82315.997313: cpu_idle: state=4294967295 cpu_id=0
50296          <idle>-0     (-----) [000] d..2 82315.997322: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
50297    RenderThread-9436  ( 9105) [006] .... 82315.997337: binder_transaction: transaction=1569410 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
50298    RenderThread-9436  ( 9105) [006] .... 82315.997341: binder_transaction_alloc_buf: transaction=1569410 data_size=104 offsets_size=0
50299    RenderThread-9436  ( 9105) [006] d..4 82315.997345: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
50300 s.nexuslauncher-10023 (10023) [002] d..2 82315.997353: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50301    RenderThread-9436  ( 9105) [006] dn.5 82315.997360: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
50302    RenderThread-9436  ( 9105) [006] d..2 82315.997366: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
50303          <idle>-0     (-----) [002] d..1 82315.997374: cpu_idle: state=0 cpu_id=2
50304<...>-13083 ( 8858) [006] .... 82315.997376: binder_transaction_received: transaction=1569410
50305<...>-9105 ( 9105) [000] d..2 82315.997405: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50306          <idle>-0     (-----) [000] d..1 82315.997416: cpu_idle: state=0 cpu_id=0
50307<...>-13083 ( 8858) [006] .... 82315.997435: binder_transaction: transaction=1569411 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
50308<...>-13083 ( 8858) [006] .... 82315.997437: binder_transaction_alloc_buf: transaction=1569411 data_size=52 offsets_size=8
50309<...>-13083 ( 8858) [006] d..2 82315.997470: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
50310    RenderThread-9436  ( 9105) [006] .... 82315.997480: binder_transaction_received: transaction=1569411
50311          <idle>-0     (-----) [002] d.h4 82315.997772: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50312          <idle>-0     (-----) [005] dnh2 82315.997794: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50313          <idle>-0     (-----) [005] .n.1 82315.997799: cpu_idle: state=4294967295 cpu_id=5
50314          <idle>-0     (-----) [005] d..2 82315.997807: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50315          <idle>-0     (-----) [002] ...1 82315.997815: cpu_idle: state=4294967295 cpu_id=2
50316          <idle>-0     (-----) [002] d..1 82315.997821: cpu_idle: state=0 cpu_id=2
50317<...>-5340 ( 788) [005] d..1 82315.997859: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50318          <idle>-0     (-----) [000] dnh2 82315.997886: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50319          <idle>-0     (-----) [000] .n.1 82315.997892: cpu_idle: state=4294967295 cpu_id=0
50320          <idle>-0     (-----) [000] d..2 82315.997902: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
50321<...>-5340 ( 788) [005] ...1 82315.997953: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
50322<...>-5340 ( 788) [005] ...1 82315.997958: tracing_mark_write: E|788
50323<...>-5340 ( 788) [005] .... 82315.997975: binder_transaction: transaction=1569412 dest_node=1569406 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
50324 neuralnetworks@-13088 (  788) [000] d..2 82315.997976: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50325<...>-5340 ( 788) [005] .... 82315.997978: binder_transaction_alloc_buf: transaction=1569412 data_size=60 offsets_size=0
50326<...>-5340 ( 788) [005] d..4 82315.997981: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
50327          <idle>-0     (-----) [000] d..1 82315.997986: cpu_idle: state=0 cpu_id=0
50328<...>-5340 ( 788) [005] d..5 82315.997993: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
50329          <idle>-0     (-----) [004] .n.1 82315.997999: cpu_idle: state=4294967295 cpu_id=4
50330          <idle>-0     (-----) [004] d..2 82315.998007: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
50331<...>-5340 ( 788) [005] ...1 82315.998016: tracing_mark_write: E|788
50332           <...>-27571 (-----) [004] .... 82315.998016: binder_transaction_received: transaction=1569412
50333<...>-5340 ( 788) [005] .... 82315.998022: binder_transaction: transaction=1569413 dest_node=0 dest_proc=27550 dest_thread=27589 reply=1 flags=0x0 code=0x0
50334<...>-5340 ( 788) [005] .... 82315.998024: binder_transaction_alloc_buf: transaction=1569413 data_size=8 offsets_size=0
50335<...>-5340 ( 788) [005] d..2 82315.998026: sched_waking: comm=id.nn.benchmark pid=27589 prio=110 target_cpu=005
50336<...>-5340 ( 788) [005] d..3 82315.998033: sched_wakeup: comm=id.nn.benchmark pid=27589 prio=110 target_cpu=005
50337<...>-5340 ( 788) [005] .... 82315.998035: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
50338           <...>-27571 (-----) [004] ...1 82315.998043: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
50339           <...>-27571 (-----) [004] ...1 82315.998052: tracing_mark_write: E|27550
50340<...>-5340 ( 788) [005] d..2 82315.998077: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27589 next_prio=110
50341           <...>-27571 (-----) [004] d..2 82315.998082: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50342           <...>-27589 (-----) [005] .... 82315.998086: binder_transaction_received: transaction=1569413
50343          <idle>-0     (-----) [004] d..1 82315.998093: cpu_idle: state=0 cpu_id=4
50344           <...>-27589 (-----) [005] ...1 82315.998125: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
50345           <...>-27589 (-----) [005] ...1 82315.998131: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
50346           <...>-27589 (-----) [005] ...1 82315.998157: tracing_mark_write: E|27550
50347           <...>-27589 (-----) [005] ...1 82315.998161: tracing_mark_write: E|27550
50348           <...>-27589 (-----) [005] ...1 82315.998164: tracing_mark_write: E|27550
50349    RenderThread-9436  ( 9105) [006] d..2 82315.998309: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
50350          <idle>-0     (-----) [006] d..1 82315.998321: cpu_idle: state=0 cpu_id=6
50351           <...>-27589 (-----) [005] ...1 82315.998355: tracing_mark_write: E|27550
50352           <...>-27589 (-----) [005] d..1 82315.998368: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50353           <...>-27589 (-----) [005] d..2 82315.998384: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50354          <idle>-0     (-----) [004] .n.1 82315.998390: cpu_idle: state=4294967295 cpu_id=4
50355          <idle>-0     (-----) [006] d.h2 82315.998391: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
50356          <idle>-0     (-----) [004] d..2 82315.998398: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
50357          <idle>-0     (-----) [006] d.h3 82315.998399: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
50358          <idle>-0     (-----) [006] dnh3 82315.998402: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
50359          <idle>-0     (-----) [006] .n.1 82315.998408: cpu_idle: state=4294967295 cpu_id=6
50360          <idle>-0     (-----) [006] d..2 82315.998416: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
50361           <...>-27550 (-----) [004] d..2 82315.998420: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50362          <idle>-0     (-----) [004] d..1 82315.998429: cpu_idle: state=0 cpu_id=4
50363          <idle>-0     (-----) [000] d.h3 82315.998435: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
50364          <idle>-0     (-----) [000] d.h4 82315.998458: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
50365          <idle>-0     (-----) [003] .n.1 82315.998464: cpu_idle: state=4294967295 cpu_id=3
50366          <idle>-0     (-----) [000] d..2 82315.998472: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
50367          <idle>-0     (-----) [003] d..2 82315.998480: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
50368          <idle>-0     (-----) [000] dn.3 82315.998484: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
50369           <...>-27589 (-----) [005] d..1 82315.998504: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50370           <...>-27589 (-----) [005] d..2 82315.998514: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50371          <idle>-0     (-----) [000] dns2 82315.998515: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
50372          <idle>-0     (-----) [004] .n.1 82315.998519: cpu_idle: state=4294967295 cpu_id=4
50373          <idle>-0     (-----) [004] d..2 82315.998528: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
50374          <idle>-0     (-----) [000] dns3 82315.998531: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
50375          <idle>-0     (-----) [000] dns3 82315.998539: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
50376           <...>-27589 (-----) [005] d..2 82315.998557: sched_switch: prev_comm=id.nn.benchmark prev_pid=27589 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
50377           <...>-27550 (-----) [004] ...1 82315.998563: tracing_mark_write: E|27550
50378           <...>-27550 (-----) [004] ...1 82315.998569: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
50379           <...>-27550 (-----) [004] ...1 82315.998575: tracing_mark_write: E|27550
50380          <idle>-0     (-----) [005] d..1 82315.998577: cpu_idle: state=0 cpu_id=5
50381           <...>-27550 (-----) [004] ...1 82315.998579: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
50382          <idle>-0     (-----) [000] dns4 82315.998579: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
50383           <...>-27550 (-----) [004] ...1 82315.998583: tracing_mark_write: E|27550
50384           <...>-27550 (-----) [004] ...1 82315.998589: tracing_mark_write: E|27550
50385    RenderThread-9436  ( 9105) [006] .... 82315.998590: binder_transaction: transaction=1569414 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
50386    RenderThread-9436  ( 9105) [006] .... 82315.998594: binder_transaction_alloc_buf: transaction=1569414 data_size=192 offsets_size=8
50387          <idle>-0     (-----) [000] .n.1 82315.998594: cpu_idle: state=4294967295 cpu_id=0
50388    RenderThread-9436  ( 9105) [006] d..4 82315.998600: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
50389 kgsl_worker_thr-258   (  258) [003] d..2 82315.998601: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
50390          <idle>-0     (-----) [000] d..2 82315.998604: 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
50391  kworker/u16:15-1311  ( 1311) [003] d..2 82315.998608: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
50392    RenderThread-9436  ( 9105) [006] dn.5 82315.998609: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
50393    RenderThread-9436  ( 9105) [006] d..2 82315.998615: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
50394     ksoftirqd/0-3     (    3) [000] d..2 82315.998623: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
50395<...>-13083 ( 8858) [006] .... 82315.998624: binder_transaction_received: transaction=1569414
50396  kworker/u16:15-1311  ( 1311) [003] d..3 82315.998633: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
50397<...>-8 ( 8) [000] d..2 82315.998634: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
50398<...>-8 ( 8) [000] d..3 82315.998655: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
50399<...>-8 ( 8) [000] d..2 82315.998676: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
50400           <...>-27550 (-----) [004] ...1 82315.998704: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
50401<...>-13083 ( 8858) [006] .... 82315.998746: binder_transaction: transaction=1569415 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
50402<...>-13083 ( 8858) [006] .... 82315.998750: binder_transaction_alloc_buf: transaction=1569415 data_size=68 offsets_size=0
50403           <...>-27550 (-----) [004] ...1 82315.998778: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
50404           <...>-27550 (-----) [004] ...1 82315.998785: tracing_mark_write: E|27550
50405           <...>-27550 (-----) [004] ...1 82315.998788: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
50406<...>-13083 ( 8858) [006] d..2 82315.998793: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
50407           <...>-27550 (-----) [004] ...1 82315.998794: tracing_mark_write: E|27550
50408           <...>-27550 (-----) [004] ...1 82315.998797: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
50409           <...>-27550 (-----) [004] ...1 82315.998801: tracing_mark_write: E|27550
50410    RenderThread-9436  ( 9105) [006] .... 82315.998803: binder_transaction_received: transaction=1569415
50411           <...>-27550 (-----) [004] ...1 82315.998805: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
50412  kworker/u16:15-1311  ( 1311) [003] d..2 82315.998808: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcuos/4 next_pid=46 next_prio=120
50413<...>-46 ( 46) [003] d..2 82315.998822: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
50414<...>-46 ( 46) [003] d..3 82315.998859: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
50415    RenderThread-9436  ( 9105) [006] d..2 82315.998868: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
50416<...>-46 ( 46) [003] d..2 82315.998870: 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
50417          <idle>-0     (-----) [006] d..1 82315.998882: cpu_idle: state=0 cpu_id=6
50418  kworker/u16:13-1147  ( 1147) [000] d..2 82315.998894: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
50419          <idle>-0     (-----) [005] .n.1 82315.998902: cpu_idle: state=4294967295 cpu_id=5
50420<...>-8 ( 8) [003] d..2 82315.998904: 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
50421           <...>-27550 (-----) [004] ...1 82315.998905: tracing_mark_write: E|27550
50422          <idle>-0     (-----) [000] d..1 82315.998906: cpu_idle: state=0 cpu_id=0
50423           <...>-27550 (-----) [004] ...1 82315.998909: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
50424          <idle>-0     (-----) [005] d..2 82315.998912: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27590 next_prio=110
50425          <idle>-0     (-----) [003] d..1 82315.998917: cpu_idle: state=0 cpu_id=3
50426          <idle>-0     (-----) [001] d.s3 82315.998921: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
50427           <...>-27550 (-----) [004] d..2 82315.998930: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50428          <idle>-0     (-----) [001] d.s4 82315.998933: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
50429          <idle>-0     (-----) [001] d.s4 82315.998942: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
50430          <idle>-0     (-----) [004] d..1 82315.998945: cpu_idle: state=0 cpu_id=4
50431          <idle>-0     (-----) [000] .n.1 82315.998948: cpu_idle: state=4294967295 cpu_id=0
50432          <idle>-0     (-----) [001] ...1 82315.998951: cpu_idle: state=4294967295 cpu_id=1
50433          <idle>-0     (-----) [000] d..2 82315.998958: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
50434          <idle>-0     (-----) [001] d..1 82315.998958: cpu_idle: state=0 cpu_id=1
50435  kworker/u16:13-1147  ( 1147) [000] d..1 82315.998969: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
50436           <...>-27590 (-----) [005] ...1 82315.998973: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
50437  kworker/u16:13-1147  ( 1147) [000] d..2 82315.998979: sched_blocked_reason: pid=1311 iowait=0 caller=update_request_adhoc+0x384/0x480
50438  kworker/u16:13-1147  ( 1147) [000] d..2 82315.998988: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
50439           <...>-27590 (-----) [005] ...1 82315.998988: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
50440           <...>-27590 (-----) [005] ...1 82315.998991: tracing_mark_write: E|27550
50441          <idle>-0     (-----) [003] .n.1 82315.998994: cpu_idle: state=4294967295 cpu_id=3
50442          <idle>-0     (-----) [003] d..2 82315.999005: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
50443  kworker/u16:13-1147  ( 1147) [000] d..2 82315.999016: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50444           <...>-27590 (-----) [005] .... 82315.999016: binder_transaction: transaction=1569416 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
50445           <...>-27590 (-----) [005] .... 82315.999020: binder_transaction_alloc_buf: transaction=1569416 data_size=48 offsets_size=0
50446           <...>-27590 (-----) [005] ...2 82315.999024: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
50447          <idle>-0     (-----) [000] d..1 82315.999024: cpu_idle: state=0 cpu_id=0
50448           <...>-27590 (-----) [005] d..4 82315.999026: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
50449           <...>-27590 (-----) [005] dn.5 82315.999037: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
50450           <...>-27590 (-----) [005] d..2 82315.999043: sched_switch: prev_comm=id.nn.benchmark prev_pid=27590 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
50451<...>-770 ( 770) [005] .... 82315.999054: binder_transaction_received: transaction=1569416
50452          <idle>-0     (-----) [006] ...1 82315.999079: cpu_idle: state=4294967295 cpu_id=6
50453<...>-770 ( 770) [005] ...1 82315.999081: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
50454          <idle>-0     (-----) [006] d..1 82315.999083: cpu_idle: state=0 cpu_id=6
50455  kworker/u16:15-1311  ( 1311) [003] d..2 82315.999162: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
50456<...>-770 ( 770) [005] d..2 82315.999168: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
50457          <idle>-0     (-----) [003] d..1 82315.999174: cpu_idle: state=0 cpu_id=3
50458          <idle>-0     (-----) [001] d.s3 82315.999188: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
50459          <idle>-0     (-----) [000] dnh2 82315.999195: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
50460          <idle>-0     (-----) [001] d.s4 82315.999198: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
50461          <idle>-0     (-----) [000] .n.1 82315.999202: cpu_idle: state=4294967295 cpu_id=0
50462          <idle>-0     (-----) [001] d.s4 82315.999206: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
50463          <idle>-0     (-----) [000] d..2 82315.999210: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
50464          <idle>-0     (-----) [003] .n.1 82315.999212: cpu_idle: state=4294967295 cpu_id=3
50465<...>-770 ( 770) [005] ...1 82315.999212: tracing_mark_write: E|770
50466          <idle>-0     (-----) [001] ...1 82315.999214: cpu_idle: state=4294967295 cpu_id=1
50467<...>-770 ( 770) [005] .... 82315.999220: binder_transaction: transaction=1569417 dest_node=0 dest_proc=27550 dest_thread=27590 reply=1 flags=0x0 code=0x0
50468          <idle>-0     (-----) [001] d..1 82315.999220: cpu_idle: state=0 cpu_id=1
50469<...>-770 ( 770) [005] .... 82315.999222: binder_transaction_alloc_buf: transaction=1569417 data_size=168 offsets_size=32
50470          <idle>-0     (-----) [003] d..2 82315.999224: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
50471<...>-770 ( 770) [005] .... 82315.999229: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
50472<...>-770 ( 770) [005] d..2 82315.999266: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27590 next_prio=110
50473           <...>-27590 (-----) [005] .... 82315.999277: binder_transaction_received: transaction=1569417
50474<...>-581 ( 571) [000] d..2 82315.999333: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50475          <idle>-0     (-----) [000] d..1 82315.999344: cpu_idle: state=0 cpu_id=0
50476           <...>-27590 (-----) [005] ...1 82315.999355: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
50477           <...>-27590 (-----) [005] ...1 82315.999360: tracing_mark_write: E|27550
50478           <...>-27590 (-----) [005] .... 82315.999374: binder_transaction: transaction=1569418 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
50479           <...>-27590 (-----) [005] .... 82315.999377: binder_transaction_alloc_buf: transaction=1569418 data_size=48 offsets_size=0
50480           <...>-27590 (-----) [005] ...2 82315.999379: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
50481           <...>-27590 (-----) [005] d..4 82315.999382: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
50482           <...>-27590 (-----) [005] dn.5 82315.999391: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
50483           <...>-27590 (-----) [005] d..2 82315.999398: sched_switch: prev_comm=id.nn.benchmark prev_pid=27590 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
50484<...>-770 ( 770) [005] .... 82315.999406: binder_transaction_received: transaction=1569418
50485  kworker/u16:15-1311  ( 1311) [003] d..2 82315.999421: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
50486<...>-770 ( 770) [005] ...1 82315.999423: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
50487          <idle>-0     (-----) [003] d..1 82315.999432: cpu_idle: state=0 cpu_id=3
50488          <idle>-0     (-----) [001] d.s3 82315.999445: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
50489          <idle>-0     (-----) [001] d.s4 82315.999455: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
50490          <idle>-0     (-----) [001] d.s4 82315.999462: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
50491          <idle>-0     (-----) [003] .n.1 82315.999468: cpu_idle: state=4294967295 cpu_id=3
50492          <idle>-0     (-----) [001] ...1 82315.999471: cpu_idle: state=4294967295 cpu_id=1
50493          <idle>-0     (-----) [001] d..1 82315.999476: cpu_idle: state=0 cpu_id=1
50494          <idle>-0     (-----) [003] d..2 82315.999480: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
50495<...>-770 ( 770) [005] d..2 82315.999482: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
50496          <idle>-0     (-----) [000] dnh2 82315.999506: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
50497          <idle>-0     (-----) [000] .n.1 82315.999512: cpu_idle: state=4294967295 cpu_id=0
50498          <idle>-0     (-----) [000] d..2 82315.999520: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
50499<...>-770 ( 770) [005] ...1 82315.999531: tracing_mark_write: E|770
50500<...>-770 ( 770) [005] .... 82315.999539: binder_transaction: transaction=1569419 dest_node=0 dest_proc=27550 dest_thread=27590 reply=1 flags=0x0 code=0x0
50501<...>-770 ( 770) [005] .... 82315.999542: binder_transaction_alloc_buf: transaction=1569419 data_size=168 offsets_size=32
50502<...>-770 ( 770) [005] .... 82315.999548: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
50503  kworker/u16:15-1311  ( 1311) [003] d..2 82315.999562: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50504          <idle>-0     (-----) [003] d..1 82315.999572: cpu_idle: state=0 cpu_id=3
50505<...>-581 ( 571) [000] d..2 82315.999582: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50506<...>-770 ( 770) [005] d..2 82315.999583: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27590 next_prio=110
50507          <idle>-0     (-----) [000] d..1 82315.999592: cpu_idle: state=0 cpu_id=0
50508           <...>-27590 (-----) [005] .... 82315.999594: binder_transaction_received: transaction=1569419
50509           <...>-27590 (-----) [005] ...1 82315.999872: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
50510           <...>-27590 (-----) [005] ...1 82315.999882: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
50511           <...>-27590 (-----) [005] ...1 82315.999886: tracing_mark_write: E|27550
50512           <...>-27590 (-----) [005] .... 82315.999953: binder_transaction: transaction=1569420 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
50513           <...>-27590 (-----) [005] .... 82315.999956: binder_transaction_alloc_buf: transaction=1569420 data_size=556 offsets_size=104
50514           <...>-27590 (-----) [005] ...2 82315.999973: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
50515           <...>-27590 (-----) [005] d..4 82315.999975: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50516           <...>-27590 (-----) [005] dn.5 82315.999986: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50517           <...>-27590 (-----) [005] d..2 82315.999993: sched_switch: prev_comm=id.nn.benchmark prev_pid=27590 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50518<...>-5340 ( 788) [005] .... 82316.000003: binder_transaction_received: transaction=1569420
50519<...>-5340 ( 788) [005] ...1 82316.000053: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
50520<...>-5340 ( 788) [005] d..2 82316.000104: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50521<...>-5340 ( 788) [005] d..2 82316.000128: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27590 next_prio=110
50522          <idle>-0     (-----) [000] dnh2 82316.000132: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50523          <idle>-0     (-----) [000] .n.1 82316.000138: cpu_idle: state=4294967295 cpu_id=0
50524          <idle>-0     (-----) [000] d..2 82316.000147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
50525           <...>-27590 (-----) [005] d..2 82316.000152: sched_switch: prev_comm=id.nn.benchmark prev_pid=27590 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
50526          <idle>-0     (-----) [005] d..1 82316.000170: cpu_idle: state=0 cpu_id=5
50527<...>-87 ( 87) [000] d..2 82316.000191: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50528          <idle>-0     (-----) [002] d.h4 82316.000198: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50529          <idle>-0     (-----) [000] d..1 82316.000200: cpu_idle: state=0 cpu_id=0
50530          <idle>-0     (-----) [002] dnh5 82316.000218: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50531          <idle>-0     (-----) [002] .n.1 82316.000227: cpu_idle: state=4294967295 cpu_id=2
50532          <idle>-0     (-----) [002] d..2 82316.000241: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
50533<...>-86 ( 86) [002] d..3 82316.000275: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50534          <idle>-0     (-----) [003] d.h2 82316.000284: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
50535          <idle>-0     (-----) [005] dnh2 82316.000297: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50536          <idle>-0     (-----) [003] dnh3 82316.000298: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
50537          <idle>-0     (-----) [005] .n.1 82316.000301: cpu_idle: state=4294967295 cpu_id=5
50538          <idle>-0     (-----) [003] .n.1 82316.000307: cpu_idle: state=4294967295 cpu_id=3
50539          <idle>-0     (-----) [005] d..2 82316.000309: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50540          <idle>-0     (-----) [003] d..2 82316.000317: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
50541<...>-86 ( 86) [002] d..2 82316.000334: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50542        DispSync-8879  ( 8858) [003] d..1 82316.000337: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
50543          <idle>-0     (-----) [002] d..1 82316.000349: cpu_idle: state=0 cpu_id=2
50544          <idle>-0     (-----) [002] .n.1 82316.000354: cpu_idle: state=4294967295 cpu_id=2
50545        DispSync-8879  ( 8858) [003] d..2 82316.000354: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
50546<...>-5340 ( 788) [005] d..1 82316.000362: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50547          <idle>-0     (-----) [002] d..2 82316.000368: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
50548        DispSync-8879  ( 8858) [003] d..2 82316.000386: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50549          <idle>-0     (-----) [003] d..1 82316.000398: cpu_idle: state=0 cpu_id=3
50550          <idle>-0     (-----) [003] dnh2 82316.000413: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
50551   sfEventThread-8882  ( 8858) [002] d..3 82316.000416: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
50552          <idle>-0     (-----) [003] .n.1 82316.000420: cpu_idle: state=4294967295 cpu_id=3
50553          <idle>-0     (-----) [003] d..2 82316.000431: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
50554   sfEventThread-8882  ( 8858) [002] d..4 82316.000453: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
50555          <idle>-0     (-----) [001] .n.1 82316.000458: cpu_idle: state=4294967295 cpu_id=1
50556          <idle>-0     (-----) [001] d..2 82316.000471: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
50557 neuralnetworks@-13088 (  788) [003] d..2 82316.000484: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50558   sfEventThread-8882  ( 8858) [002] d..2 82316.000490: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50559          <idle>-0     (-----) [003] d..1 82316.000498: cpu_idle: state=0 cpu_id=3
50560          <idle>-0     (-----) [002] d..1 82316.000506: cpu_idle: state=0 cpu_id=2
50561<...>-5340 ( 788) [005] d..2 82316.000530: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50562          <idle>-0     (-----) [000] dnh2 82316.000551: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50563<...>-5340 ( 788) [005] d..2 82316.000556: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
50564          <idle>-0     (-----) [000] .n.1 82316.000557: cpu_idle: state=4294967295 cpu_id=0
50565          <idle>-0     (-----) [000] d..2 82316.000565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
50566          <idle>-0     (-----) [005] d..1 82316.000570: cpu_idle: state=0 cpu_id=5
50567<...>-87 ( 87) [000] d..2 82316.000600: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50568          <idle>-0     (-----) [002] d.h4 82316.000606: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50569          <idle>-0     (-----) [000] d..1 82316.000608: cpu_idle: state=0 cpu_id=0
50570          <idle>-0     (-----) [002] dnh5 82316.000618: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50571          <idle>-0     (-----) [002] .n.1 82316.000628: cpu_idle: state=4294967295 cpu_id=2
50572          <idle>-0     (-----) [002] d..2 82316.000640: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
50573<...>-86 ( 86) [002] d..2 82316.000675: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50574          <idle>-0     (-----) [002] d..1 82316.000688: cpu_idle: state=0 cpu_id=2
50575  surfaceflinger-8858  ( 8858) [001] d..2 82316.000847: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
50576  surfaceflinger-8858  ( 8858) [001] d..3 82316.000895: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
50577          <idle>-0     (-----) [005] ...1 82316.000899: cpu_idle: state=4294967295 cpu_id=5
50578          <idle>-0     (-----) [005] d..1 82316.000903: cpu_idle: state=0 cpu_id=5
50579  surfaceflinger-8858  ( 8858) [001] d..1 82316.000922: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
50580  surfaceflinger-8858  ( 8858) [001] d..2 82316.000939: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
50581          <idle>-0     (-----) [002] .n.1 82316.000946: cpu_idle: state=4294967295 cpu_id=2
50582          <idle>-0     (-----) [002] d..2 82316.000956: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
50583   sfEventThread-8882  ( 8858) [002] d..2 82316.000994: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50584          <idle>-0     (-----) [002] d..1 82316.001006: cpu_idle: state=0 cpu_id=2
50585  surfaceflinger-8858  ( 8858) [001] ...1 82316.001158: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
50586  surfaceflinger-8858  ( 8858) [001] ...1 82316.001165: tracing_mark_write: E|8858
50587  surfaceflinger-8858  ( 8858) [001] .... 82316.001225: binder_transaction: transaction=1569423 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
50588  surfaceflinger-8858  ( 8858) [001] .... 82316.001230: binder_transaction_alloc_buf: transaction=1569423 data_size=540 offsets_size=96
50589  surfaceflinger-8858  ( 8858) [001] ...2 82316.001260: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
50590  surfaceflinger-8858  ( 8858) [001] d..4 82316.001269: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
50591  surfaceflinger-8858  ( 8858) [001] d..5 82316.001299: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
50592          <idle>-0     (-----) [002] .n.1 82316.001305: cpu_idle: state=4294967295 cpu_id=2
50593          <idle>-0     (-----) [002] d..2 82316.001315: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
50594  surfaceflinger-8858  ( 8858) [001] d..2 82316.001320: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
50595 [email protected]   (  619) [002] .... 82316.001326: binder_transaction_received: transaction=1569423
50596         rcuop/0-10    (   10) [001] d..2 82316.001349: 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
50597          <idle>-0     (-----) [001] d..1 82316.001369: cpu_idle: state=0 cpu_id=1
50598 [email protected]   (  619) [002] ...1 82316.001380: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
50599 [email protected]   (  619) [002] ...1 82316.001511: tracing_mark_write: B|619|HWCSession::PresentDisplay::
50600 [email protected]   (  619) [002] ...1 82316.001708: tracing_mark_write: B|619|HWDeviceDRM::Commit::
50601 [email protected]   (  619) [002] ...1 82316.001722: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
50602          <idle>-0     (-----) [000] d.s2 82316.001807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
50603          <idle>-0     (-----) [000] dns3 82316.001826: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
50604          <idle>-0     (-----) [000] .n.1 82316.001846: cpu_idle: state=4294967295 cpu_id=0
50605          <idle>-0     (-----) [000] d..2 82316.001855: 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
50606     rcu_preempt-7     (    7) [000] d..2 82316.001862: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
50607     rcu_preempt-7     (    7) [000] d..3 82316.001880: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
50608     rcu_preempt-7     (    7) [000] d..2 82316.001895: 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
50609         rcuop/4-45    (   45) [000] d..2 82316.001901: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=002
50610         rcuop/4-45    (   45) [000] d..3 82316.001939: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
50611         rcuop/4-45    (   45) [000] d..2 82316.001950: 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
50612         rcuop/5-53    (   53) [000] d..2 82316.002065: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50613          <idle>-0     (-----) [000] d..1 82316.002080: cpu_idle: state=0 cpu_id=0
50614 [email protected]   (  619) [002] d.h3 82316.002260: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50615          <idle>-0     (-----) [005] dnh2 82316.002284: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50616          <idle>-0     (-----) [005] .n.1 82316.002288: cpu_idle: state=4294967295 cpu_id=5
50617          <idle>-0     (-----) [005] d..2 82316.002297: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50618<...>-5340 ( 788) [005] d..1 82316.002349: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
50619          <idle>-0     (-----) [003] dnh2 82316.002375: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
50620          <idle>-0     (-----) [003] .n.1 82316.002381: cpu_idle: state=4294967295 cpu_id=3
50621          <idle>-0     (-----) [003] d..2 82316.002394: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
50622<...>-5340 ( 788) [005] ...1 82316.002441: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
50623<...>-5340 ( 788) [005] ...1 82316.002445: tracing_mark_write: E|788
50624 neuralnetworks@-13088 (  788) [003] d..2 82316.002454: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50625<...>-5340 ( 788) [005] .... 82316.002463: binder_transaction: transaction=1569424 dest_node=1569421 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
50626          <idle>-0     (-----) [003] d..1 82316.002463: cpu_idle: state=0 cpu_id=3
50627<...>-5340 ( 788) [005] .... 82316.002466: binder_transaction_alloc_buf: transaction=1569424 data_size=60 offsets_size=0
50628<...>-5340 ( 788) [005] d..4 82316.002469: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
50629<...>-5340 ( 788) [005] d..5 82316.002482: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
50630          <idle>-0     (-----) [004] .n.1 82316.002487: cpu_idle: state=4294967295 cpu_id=4
50631          <idle>-0     (-----) [004] d..2 82316.002496: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
50632           <...>-27571 (-----) [004] .... 82316.002501: binder_transaction_received: transaction=1569424
50633<...>-5340 ( 788) [005] ...1 82316.002506: tracing_mark_write: E|788
50634<...>-5340 ( 788) [005] .... 82316.002512: binder_transaction: transaction=1569425 dest_node=0 dest_proc=27550 dest_thread=27590 reply=1 flags=0x0 code=0x0
50635<...>-5340 ( 788) [005] .... 82316.002514: binder_transaction_alloc_buf: transaction=1569425 data_size=8 offsets_size=0
50636<...>-5340 ( 788) [005] d..2 82316.002516: sched_waking: comm=id.nn.benchmark pid=27590 prio=110 target_cpu=005
50637           <...>-27571 (-----) [004] ...1 82316.002520: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
50638<...>-5340 ( 788) [005] d..3 82316.002523: sched_wakeup: comm=id.nn.benchmark pid=27590 prio=110 target_cpu=005
50639<...>-5340 ( 788) [005] .... 82316.002525: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
50640           <...>-27571 (-----) [004] ...1 82316.002526: tracing_mark_write: E|27550
50641 [email protected]   (  619) [002] d..2 82316.002534: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
50642           <...>-27571 (-----) [004] d..2 82316.002562: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50643 [email protected]   (  619) [002] d..3 82316.002565: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
50644<...>-5340 ( 788) [005] d..2 82316.002568: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27590 next_prio=110
50645          <idle>-0     (-----) [001] .n.1 82316.002572: cpu_idle: state=4294967295 cpu_id=1
50646          <idle>-0     (-----) [004] d..1 82316.002572: cpu_idle: state=0 cpu_id=4
50647           <...>-27590 (-----) [005] .... 82316.002577: binder_transaction_received: transaction=1569425
50648          <idle>-0     (-----) [001] d..2 82316.002584: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
50649           <...>-27590 (-----) [005] ...1 82316.002616: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
50650           <...>-27590 (-----) [005] ...1 82316.002622: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
50651           <...>-27590 (-----) [005] ...1 82316.002648: tracing_mark_write: E|27550
50652           <...>-27590 (-----) [005] ...1 82316.002652: tracing_mark_write: E|27550
50653           <...>-27590 (-----) [005] ...1 82316.002655: tracing_mark_write: E|27550
50654 [email protected]   (  619) [002] ...1 82316.002681: tracing_mark_write: E|619
50655 [email protected]   (  619) [002] ...1 82316.002688: tracing_mark_write: E|619
50656 [email protected]   (  619) [002] ...1 82316.002783: tracing_mark_write: E|619
50657 [email protected]   (  619) [002] ...1 82316.002835: tracing_mark_write: E|619
50658           <...>-27590 (-----) [005] ...1 82316.002844: tracing_mark_write: E|27550
50659 [email protected]   (  619) [002] .... 82316.002850: binder_transaction: transaction=1569426 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
50660 [email protected]   (  619) [002] .... 82316.002855: binder_transaction_alloc_buf: transaction=1569426 data_size=576 offsets_size=112
50661           <...>-27590 (-----) [005] d..1 82316.002857: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50662           <...>-27590 (-----) [005] d..2 82316.002873: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50663 [email protected]   (  619) [002] d..2 82316.002876: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
50664          <idle>-0     (-----) [004] .n.1 82316.002878: cpu_idle: state=4294967295 cpu_id=4
50665          <idle>-0     (-----) [004] d..2 82316.002886: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
50666 [email protected]   (  619) [002] d..3 82316.002902: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
50667           <...>-27550 (-----) [004] d..2 82316.002903: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50668 [email protected]   (  619) [002] .... 82316.002907: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
50669          <idle>-0     (-----) [003] .n.1 82316.002907: cpu_idle: state=4294967295 cpu_id=3
50670          <idle>-0     (-----) [004] d..1 82316.002910: cpu_idle: state=0 cpu_id=4
50671          <idle>-0     (-----) [003] d..2 82316.002916: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
50672  surfaceflinger-8858  ( 8858) [003] .... 82316.002927: binder_transaction_received: transaction=1569426
50673           <...>-27590 (-----) [005] d..1 82316.002964: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50674           <...>-27590 (-----) [005] d..2 82316.002974: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50675          <idle>-0     (-----) [004] .n.1 82316.002978: cpu_idle: state=4294967295 cpu_id=4
50676          <idle>-0     (-----) [004] d..2 82316.002985: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
50677 [email protected]   (  619) [002] d..2 82316.002995: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50678           <...>-27590 (-----) [005] d..2 82316.003013: sched_switch: prev_comm=id.nn.benchmark prev_pid=27590 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
50679          <idle>-0     (-----) [002] d..1 82316.003018: cpu_idle: state=0 cpu_id=2
50680           <...>-27550 (-----) [004] ...1 82316.003019: tracing_mark_write: E|27550
50681           <...>-27550 (-----) [004] ...1 82316.003024: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
50682           <...>-27550 (-----) [004] ...1 82316.003030: tracing_mark_write: E|27550
50683           <...>-27550 (-----) [004] ...1 82316.003034: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
50684          <idle>-0     (-----) [005] d..1 82316.003034: cpu_idle: state=0 cpu_id=5
50685           <...>-27550 (-----) [004] ...1 82316.003038: tracing_mark_write: E|27550
50686           <...>-27550 (-----) [004] ...1 82316.003043: tracing_mark_write: E|27550
50687           <...>-27550 (-----) [004] ...1 82316.003157: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
50688           <...>-27550 (-----) [004] ...1 82316.003214: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
50689           <...>-27550 (-----) [004] ...1 82316.003219: tracing_mark_write: E|27550
50690           <...>-27550 (-----) [004] ...1 82316.003223: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
50691           <...>-27550 (-----) [004] ...1 82316.003228: tracing_mark_write: E|27550
50692           <...>-27550 (-----) [004] ...1 82316.003232: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
50693           <...>-27550 (-----) [004] ...1 82316.003236: tracing_mark_write: E|27550
50694           <...>-27550 (-----) [004] ...1 82316.003239: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
50695          <idle>-0     (-----) [005] .n.1 82316.003335: cpu_idle: state=4294967295 cpu_id=5
50696           <...>-27550 (-----) [004] ...1 82316.003336: tracing_mark_write: E|27550
50697 crtc_commit:111-321   (  321) [001] d..2 82316.003338: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
50698           <...>-27550 (-----) [004] ...1 82316.003340: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
50699          <idle>-0     (-----) [005] d..2 82316.003343: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27591 next_prio=110
50700          <idle>-0     (-----) [001] d..1 82316.003354: cpu_idle: state=0 cpu_id=1
50701           <...>-27550 (-----) [004] d..2 82316.003357: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50702          <idle>-0     (-----) [004] d..1 82316.003372: cpu_idle: state=0 cpu_id=4
50703  surfaceflinger-8858  ( 8858) [003] d..2 82316.003386: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
50704          <idle>-0     (-----) [003] d..1 82316.003401: cpu_idle: state=0 cpu_id=3
50705           <...>-27591 (-----) [005] ...1 82316.003404: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
50706           <...>-27591 (-----) [005] ...1 82316.003419: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
50707           <...>-27591 (-----) [005] ...1 82316.003422: tracing_mark_write: E|27550
50708           <...>-27591 (-----) [005] .... 82316.003444: binder_transaction: transaction=1569427 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
50709           <...>-27591 (-----) [005] .... 82316.003447: binder_transaction_alloc_buf: transaction=1569427 data_size=48 offsets_size=0
50710           <...>-27591 (-----) [005] ...2 82316.003450: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
50711           <...>-27591 (-----) [005] d..4 82316.003453: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
50712           <...>-27591 (-----) [005] dn.5 82316.003463: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
50713           <...>-27591 (-----) [005] d..2 82316.003470: sched_switch: prev_comm=id.nn.benchmark prev_pid=27591 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
50714<...>-770 ( 770) [005] .... 82316.003480: binder_transaction_received: transaction=1569427
50715<...>-770 ( 770) [005] ...1 82316.003504: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
50716<...>-770 ( 770) [005] d..2 82316.003586: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
50717          <idle>-0     (-----) [000] dnh2 82316.003613: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
50718          <idle>-0     (-----) [000] .n.1 82316.003620: cpu_idle: state=4294967295 cpu_id=0
50719<...>-770 ( 770) [005] ...1 82316.003625: tracing_mark_write: E|770
50720          <idle>-0     (-----) [000] d..2 82316.003631: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
50721<...>-770 ( 770) [005] .... 82316.003633: binder_transaction: transaction=1569428 dest_node=0 dest_proc=27550 dest_thread=27591 reply=1 flags=0x0 code=0x0
50722<...>-770 ( 770) [005] .... 82316.003635: binder_transaction_alloc_buf: transaction=1569428 data_size=168 offsets_size=32
50723<...>-770 ( 770) [005] .... 82316.003642: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
50724<...>-770 ( 770) [005] d..2 82316.003679: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27591 next_prio=110
50725           <...>-27591 (-----) [005] .... 82316.003690: binder_transaction_received: transaction=1569428
50726<...>-581 ( 571) [000] d..2 82316.003706: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50727          <idle>-0     (-----) [000] d..1 82316.003719: cpu_idle: state=0 cpu_id=0
50728           <...>-27591 (-----) [005] ...1 82316.003763: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
50729           <...>-27591 (-----) [005] ...1 82316.003768: tracing_mark_write: E|27550
50730           <...>-27591 (-----) [005] .... 82316.003783: binder_transaction: transaction=1569429 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
50731           <...>-27591 (-----) [005] .... 82316.003786: binder_transaction_alloc_buf: transaction=1569429 data_size=48 offsets_size=0
50732           <...>-27591 (-----) [005] ...2 82316.003788: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
50733           <...>-27591 (-----) [005] d..4 82316.003790: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
50734           <...>-27591 (-----) [005] dn.5 82316.003800: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
50735           <...>-27591 (-----) [005] d..2 82316.003807: sched_switch: prev_comm=id.nn.benchmark prev_pid=27591 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
50736<...>-770 ( 770) [005] .... 82316.003815: binder_transaction_received: transaction=1569429
50737<...>-770 ( 770) [005] ...1 82316.003832: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
50738<...>-770 ( 770) [005] d..2 82316.003890: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
50739          <idle>-0     (-----) [000] dnh2 82316.003914: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
50740          <idle>-0     (-----) [000] .n.1 82316.003920: cpu_idle: state=4294967295 cpu_id=0
50741<...>-770 ( 770) [005] ...1 82316.003924: tracing_mark_write: E|770
50742<...>-770 ( 770) [005] .... 82316.003931: binder_transaction: transaction=1569430 dest_node=0 dest_proc=27550 dest_thread=27591 reply=1 flags=0x0 code=0x0
50743          <idle>-0     (-----) [000] d..2 82316.003932: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
50744<...>-770 ( 770) [005] .... 82316.003934: binder_transaction_alloc_buf: transaction=1569430 data_size=168 offsets_size=32
50745<...>-770 ( 770) [005] .... 82316.003940: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
50746<...>-770 ( 770) [005] d..2 82316.003973: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27591 next_prio=110
50747           <...>-27591 (-----) [005] .... 82316.003983: binder_transaction_received: transaction=1569430
50748<...>-581 ( 571) [000] d..2 82316.003993: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50749          <idle>-0     (-----) [000] d..1 82316.004005: cpu_idle: state=0 cpu_id=0
50750          <idle>-0     (-----) [002] ...1 82316.004191: cpu_idle: state=4294967295 cpu_id=2
50751          <idle>-0     (-----) [002] d..1 82316.004197: cpu_idle: state=0 cpu_id=2
50752           <...>-27591 (-----) [005] ...1 82316.004255: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
50753           <...>-27591 (-----) [005] ...1 82316.004264: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
50754           <...>-27591 (-----) [005] ...1 82316.004268: tracing_mark_write: E|27550
50755           <...>-27591 (-----) [005] .... 82316.004329: binder_transaction: transaction=1569431 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
50756           <...>-27591 (-----) [005] .... 82316.004332: binder_transaction_alloc_buf: transaction=1569431 data_size=556 offsets_size=104
50757           <...>-27591 (-----) [005] ...2 82316.004346: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
50758           <...>-27591 (-----) [005] d..4 82316.004348: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50759           <...>-27591 (-----) [005] dn.5 82316.004359: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50760           <...>-27591 (-----) [005] d..2 82316.004366: sched_switch: prev_comm=id.nn.benchmark prev_pid=27591 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50761<...>-5340 ( 788) [005] .... 82316.004376: binder_transaction_received: transaction=1569431
50762<...>-5340 ( 788) [005] ...1 82316.004423: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
50763<...>-5340 ( 788) [005] d..2 82316.004468: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50764<...>-5340 ( 788) [005] d..2 82316.004493: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27591 next_prio=110
50765          <idle>-0     (-----) [000] dnh2 82316.004497: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50766          <idle>-0     (-----) [000] .n.1 82316.004503: cpu_idle: state=4294967295 cpu_id=0
50767          <idle>-0     (-----) [000] d..2 82316.004514: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
50768           <...>-27591 (-----) [005] d..2 82316.004516: sched_switch: prev_comm=id.nn.benchmark prev_pid=27591 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
50769          <idle>-0     (-----) [005] d..1 82316.004533: cpu_idle: state=0 cpu_id=5
50770<...>-87 ( 87) [000] d..2 82316.004556: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50771          <idle>-0     (-----) [002] d.h4 82316.004566: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50772          <idle>-0     (-----) [000] d..1 82316.004567: cpu_idle: state=0 cpu_id=0
50773          <idle>-0     (-----) [002] dnh5 82316.004588: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50774          <idle>-0     (-----) [002] .n.1 82316.004598: cpu_idle: state=4294967295 cpu_id=2
50775          <idle>-0     (-----) [002] d..2 82316.004610: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
50776<...>-86 ( 86) [002] d.h4 82316.004643: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50777          <idle>-0     (-----) [005] dnh2 82316.004666: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50778          <idle>-0     (-----) [005] .n.1 82316.004670: cpu_idle: state=4294967295 cpu_id=5
50779          <idle>-0     (-----) [005] d..2 82316.004678: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50780<...>-86 ( 86) [002] d..2 82316.004702: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50781          <idle>-0     (-----) [002] d..1 82316.004717: cpu_idle: state=0 cpu_id=2
50782<...>-5340 ( 788) [005] d..1 82316.004731: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
50783          <idle>-0     (-----) [000] dnh2 82316.004768: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50784          <idle>-0     (-----) [000] .n.1 82316.004774: cpu_idle: state=4294967295 cpu_id=0
50785          <idle>-0     (-----) [000] d..2 82316.004785: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
50786 neuralnetworks@-13088 (  788) [000] d..2 82316.004834: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50787          <idle>-0     (-----) [000] d..1 82316.004847: cpu_idle: state=0 cpu_id=0
50788<...>-5340 ( 788) [005] d..2 82316.004888: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50789          <idle>-0     (-----) [000] dnh2 82316.004910: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50790<...>-5340 ( 788) [005] d..2 82316.004914: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
50791          <idle>-0     (-----) [000] .n.1 82316.004916: cpu_idle: state=4294967295 cpu_id=0
50792          <idle>-0     (-----) [000] d..2 82316.004927: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
50793          <idle>-0     (-----) [005] d..1 82316.004928: cpu_idle: state=0 cpu_id=5
50794<...>-87 ( 87) [000] d..2 82316.004965: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50795          <idle>-0     (-----) [002] d.h4 82316.004966: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50796          <idle>-0     (-----) [000] d..1 82316.004975: cpu_idle: state=0 cpu_id=0
50797          <idle>-0     (-----) [002] dnh5 82316.004977: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50798          <idle>-0     (-----) [002] .n.1 82316.004987: cpu_idle: state=4294967295 cpu_id=2
50799          <idle>-0     (-----) [002] d..2 82316.004998: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
50800          <idle>-0     (-----) [001] ...1 82316.005008: cpu_idle: state=4294967295 cpu_id=1
50801          <idle>-0     (-----) [001] d..1 82316.005013: cpu_idle: state=0 cpu_id=1
50802<...>-86 ( 86) [002] d..2 82316.005031: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50803          <idle>-0     (-----) [002] d..1 82316.005044: cpu_idle: state=0 cpu_id=2
50804          <idle>-0     (-----) [003] d.s2 82316.005142: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
50805          <idle>-0     (-----) [003] dns3 82316.005162: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
50806          <idle>-0     (-----) [003] .n.1 82316.005184: cpu_idle: state=4294967295 cpu_id=3
50807          <idle>-0     (-----) [003] d..2 82316.005195: 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
50808<...>-8 ( 8) [003] d..2 82316.005207: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
50809<...>-8 ( 8) [003] d..3 82316.005223: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
50810<...>-8 ( 8) [003] d..2 82316.005235: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
50811<...>-46 ( 46) [003] d..2 82316.005245: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
50812          <idle>-0     (-----) [005] ...1 82316.005254: cpu_idle: state=4294967295 cpu_id=5
50813<...>-46 ( 46) [003] d..3 82316.005257: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
50814          <idle>-0     (-----) [005] d..1 82316.005257: cpu_idle: state=0 cpu_id=5
50815<...>-46 ( 46) [003] d..2 82316.005267: 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
50816<...>-8 ( 8) [003] d..2 82316.005296: 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
50817          <idle>-0     (-----) [003] d..1 82316.005310: cpu_idle: state=0 cpu_id=3
50818          <idle>-0     (-----) [002] ...1 82316.006272: cpu_idle: state=4294967295 cpu_id=2
50819          <idle>-0     (-----) [002] d..1 82316.006277: cpu_idle: state=0 cpu_id=2
50820          <idle>-0     (-----) [002] d.h4 82316.006640: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50821          <idle>-0     (-----) [005] dnh2 82316.006661: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50822          <idle>-0     (-----) [005] .n.1 82316.006665: cpu_idle: state=4294967295 cpu_id=5
50823          <idle>-0     (-----) [005] d..2 82316.006673: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50824          <idle>-0     (-----) [002] ...1 82316.006680: cpu_idle: state=4294967295 cpu_id=2
50825          <idle>-0     (-----) [002] d..1 82316.006685: cpu_idle: state=0 cpu_id=2
50826<...>-5340 ( 788) [005] d..1 82316.006723: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50827          <idle>-0     (-----) [000] dnh2 82316.006748: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50828          <idle>-0     (-----) [000] .n.1 82316.006754: cpu_idle: state=4294967295 cpu_id=0
50829          <idle>-0     (-----) [000] d..2 82316.006765: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
50830<...>-5340 ( 788) [005] ...1 82316.006813: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
50831<...>-5340 ( 788) [005] ...1 82316.006817: tracing_mark_write: E|788
50832 neuralnetworks@-13088 (  788) [000] d..2 82316.006828: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50833<...>-5340 ( 788) [005] .... 82316.006833: binder_transaction: transaction=1569434 dest_node=1569432 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
50834<...>-5340 ( 788) [005] .... 82316.006836: binder_transaction_alloc_buf: transaction=1569434 data_size=60 offsets_size=0
50835          <idle>-0     (-----) [000] d..1 82316.006837: cpu_idle: state=0 cpu_id=0
50836<...>-5340 ( 788) [005] d..4 82316.006839: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
50837<...>-5340 ( 788) [005] d..5 82316.006852: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
50838          <idle>-0     (-----) [004] .n.1 82316.006857: cpu_idle: state=4294967295 cpu_id=4
50839          <idle>-0     (-----) [004] d..2 82316.006865: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
50840           <...>-27571 (-----) [004] .... 82316.006870: binder_transaction_received: transaction=1569434
50841<...>-5340 ( 788) [005] ...1 82316.006874: tracing_mark_write: E|788
50842<...>-5340 ( 788) [005] .... 82316.006880: binder_transaction: transaction=1569435 dest_node=0 dest_proc=27550 dest_thread=27591 reply=1 flags=0x0 code=0x0
50843<...>-5340 ( 788) [005] .... 82316.006882: binder_transaction_alloc_buf: transaction=1569435 data_size=8 offsets_size=0
50844<...>-5340 ( 788) [005] d..2 82316.006884: sched_waking: comm=id.nn.benchmark pid=27591 prio=110 target_cpu=005
50845           <...>-27571 (-----) [004] ...1 82316.006890: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
50846<...>-5340 ( 788) [005] d..3 82316.006891: sched_wakeup: comm=id.nn.benchmark pid=27591 prio=110 target_cpu=005
50847<...>-5340 ( 788) [005] .... 82316.006893: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
50848           <...>-27571 (-----) [004] ...1 82316.006897: tracing_mark_write: E|27550
50849           <...>-27571 (-----) [004] d..2 82316.006932: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50850<...>-5340 ( 788) [005] d..2 82316.006934: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27591 next_prio=110
50851          <idle>-0     (-----) [004] d..1 82316.006941: cpu_idle: state=0 cpu_id=4
50852           <...>-27591 (-----) [005] .... 82316.006943: binder_transaction_received: transaction=1569435
50853           <...>-27591 (-----) [005] ...1 82316.006979: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
50854           <...>-27591 (-----) [005] ...1 82316.006985: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
50855           <...>-27591 (-----) [005] ...1 82316.007011: tracing_mark_write: E|27550
50856           <...>-27591 (-----) [005] ...1 82316.007014: tracing_mark_write: E|27550
50857           <...>-27591 (-----) [005] ...1 82316.007018: tracing_mark_write: E|27550
50858           <...>-27591 (-----) [005] ...1 82316.007208: tracing_mark_write: E|27550
50859           <...>-27591 (-----) [005] d..1 82316.007220: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50860           <...>-27591 (-----) [005] d..2 82316.007236: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50861          <idle>-0     (-----) [004] .n.1 82316.007241: cpu_idle: state=4294967295 cpu_id=4
50862          <idle>-0     (-----) [004] d..2 82316.007249: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
50863           <...>-27550 (-----) [004] d..2 82316.007266: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50864          <idle>-0     (-----) [004] d..1 82316.007273: cpu_idle: state=0 cpu_id=4
50865           <...>-27591 (-----) [005] d..1 82316.007322: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50866           <...>-27591 (-----) [005] d..2 82316.007331: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
50867          <idle>-0     (-----) [004] .n.1 82316.007336: cpu_idle: state=4294967295 cpu_id=4
50868          <idle>-0     (-----) [004] d..2 82316.007342: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
50869           <...>-27591 (-----) [005] d..2 82316.007370: sched_switch: prev_comm=id.nn.benchmark prev_pid=27591 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
50870           <...>-27550 (-----) [004] ...1 82316.007375: tracing_mark_write: E|27550
50871           <...>-27550 (-----) [004] ...1 82316.007380: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
50872           <...>-27550 (-----) [004] ...1 82316.007386: tracing_mark_write: E|27550
50873           <...>-27550 (-----) [004] ...1 82316.007390: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
50874          <idle>-0     (-----) [005] d..1 82316.007390: cpu_idle: state=0 cpu_id=5
50875           <...>-27550 (-----) [004] ...1 82316.007394: tracing_mark_write: E|27550
50876           <...>-27550 (-----) [004] ...1 82316.007398: tracing_mark_write: E|27550
50877           <...>-27550 (-----) [004] ...1 82316.007513: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
50878           <...>-27550 (-----) [004] ...1 82316.007572: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
50879           <...>-27550 (-----) [004] ...1 82316.007578: tracing_mark_write: E|27550
50880           <...>-27550 (-----) [004] ...1 82316.007582: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
50881           <...>-27550 (-----) [004] ...1 82316.007588: tracing_mark_write: E|27550
50882           <...>-27550 (-----) [004] ...1 82316.007592: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
50883           <...>-27550 (-----) [004] ...1 82316.007597: tracing_mark_write: E|27550
50884           <...>-27550 (-----) [004] ...1 82316.007601: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
50885          <idle>-0     (-----) [005] .n.1 82316.007696: cpu_idle: state=4294967295 cpu_id=5
50886           <...>-27550 (-----) [004] ...1 82316.007697: tracing_mark_write: E|27550
50887           <...>-27550 (-----) [004] ...1 82316.007702: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
50888          <idle>-0     (-----) [005] d..2 82316.007705: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27592 next_prio=110
50889           <...>-27550 (-----) [004] d..2 82316.007721: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
50890          <idle>-0     (-----) [004] d..1 82316.007738: cpu_idle: state=0 cpu_id=4
50891           <...>-27592 (-----) [005] ...1 82316.007768: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
50892           <...>-27592 (-----) [005] ...1 82316.007783: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
50893           <...>-27592 (-----) [005] ...1 82316.007786: tracing_mark_write: E|27550
50894           <...>-27592 (-----) [005] .... 82316.007808: binder_transaction: transaction=1569436 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
50895           <...>-27592 (-----) [005] .... 82316.007811: binder_transaction_alloc_buf: transaction=1569436 data_size=48 offsets_size=0
50896           <...>-27592 (-----) [005] ...2 82316.007814: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
50897           <...>-27592 (-----) [005] d..4 82316.007817: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
50898           <...>-27592 (-----) [005] dn.5 82316.007827: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
50899           <...>-27592 (-----) [005] d..2 82316.007834: sched_switch: prev_comm=id.nn.benchmark prev_pid=27592 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
50900<...>-770 ( 770) [005] .... 82316.007843: binder_transaction_received: transaction=1569436
50901<...>-770 ( 770) [005] ...1 82316.007865: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
50902<...>-770 ( 770) [005] d..2 82316.007937: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
50903          <idle>-0     (-----) [000] dnh2 82316.007964: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
50904          <idle>-0     (-----) [000] .n.1 82316.007971: cpu_idle: state=4294967295 cpu_id=0
50905<...>-770 ( 770) [005] ...1 82316.007976: tracing_mark_write: E|770
50906          <idle>-0     (-----) [000] d..2 82316.007981: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
50907<...>-770 ( 770) [005] .... 82316.007984: binder_transaction: transaction=1569437 dest_node=0 dest_proc=27550 dest_thread=27592 reply=1 flags=0x0 code=0x0
50908<...>-770 ( 770) [005] .... 82316.007987: binder_transaction_alloc_buf: transaction=1569437 data_size=168 offsets_size=32
50909<...>-770 ( 770) [005] .... 82316.007993: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
50910<...>-770 ( 770) [005] d..2 82316.008029: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27592 next_prio=110
50911           <...>-27592 (-----) [005] .... 82316.008040: binder_transaction_received: transaction=1569437
50912<...>-581 ( 571) [000] d..2 82316.008054: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50913          <idle>-0     (-----) [000] d..1 82316.008064: cpu_idle: state=0 cpu_id=0
50914           <...>-27592 (-----) [005] ...1 82316.008109: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
50915           <...>-27592 (-----) [005] ...1 82316.008115: tracing_mark_write: E|27550
50916           <...>-27592 (-----) [005] .... 82316.008129: binder_transaction: transaction=1569438 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
50917           <...>-27592 (-----) [005] .... 82316.008132: binder_transaction_alloc_buf: transaction=1569438 data_size=48 offsets_size=0
50918           <...>-27592 (-----) [005] ...2 82316.008134: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
50919           <...>-27592 (-----) [005] d..4 82316.008136: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
50920           <...>-27592 (-----) [005] dn.5 82316.008146: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
50921           <...>-27592 (-----) [005] d..2 82316.008153: sched_switch: prev_comm=id.nn.benchmark prev_pid=27592 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
50922<...>-770 ( 770) [005] .... 82316.008161: binder_transaction_received: transaction=1569438
50923<...>-770 ( 770) [005] ...1 82316.008179: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
50924<...>-770 ( 770) [005] d..2 82316.008236: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
50925          <idle>-0     (-----) [000] d.h5 82316.008267: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
50926<...>-770 ( 770) [005] ...1 82316.008268: tracing_mark_write: E|770
50927<...>-770 ( 770) [005] .... 82316.008276: binder_transaction: transaction=1569439 dest_node=0 dest_proc=27550 dest_thread=27592 reply=1 flags=0x0 code=0x0
50928<...>-770 ( 770) [005] .... 82316.008279: binder_transaction_alloc_buf: transaction=1569439 data_size=168 offsets_size=32
50929<...>-770 ( 770) [005] .... 82316.008285: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
50930          <idle>-0     (-----) [000] d.h6 82316.008288: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
50931          <idle>-0     (-----) [002] .n.1 82316.008293: cpu_idle: state=4294967295 cpu_id=2
50932          <idle>-0     (-----) [000] d.h5 82316.008294: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
50933          <idle>-0     (-----) [002] d..2 82316.008305: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
50934          <idle>-0     (-----) [000] d.h6 82316.008307: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
50935          <idle>-0     (-----) [001] .n.1 82316.008312: cpu_idle: state=4294967295 cpu_id=1
50936<...>-770 ( 770) [005] d..2 82316.008319: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27592 next_prio=110
50937          <idle>-0     (-----) [001] d..2 82316.008323: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
50938           <...>-27592 (-----) [005] .... 82316.008329: binder_transaction_received: transaction=1569439
50939          <idle>-0     (-----) [000] dnh2 82316.008330: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
50940          <idle>-0     (-----) [000] .n.1 82316.008336: cpu_idle: state=4294967295 cpu_id=0
50941  crtc_event:111-322   (  322) [002] d..2 82316.008343: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50942          <idle>-0     (-----) [000] d..2 82316.008345: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
50943          <idle>-0     (-----) [002] d..1 82316.008354: cpu_idle: state=0 cpu_id=2
50944<...>-581 ( 571) [000] d..2 82316.008407: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50945          <idle>-0     (-----) [000] d..1 82316.008418: cpu_idle: state=0 cpu_id=0
50946          <idle>-0     (-----) [000] d.s2 82316.008468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
50947 crtc_commit:111-321   (  321) [001] d.s2 82316.008477: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
50948          <idle>-0     (-----) [000] dns3 82316.008486: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
50949          <idle>-0     (-----) [000] .n.1 82316.008497: cpu_idle: state=4294967295 cpu_id=0
50950          <idle>-0     (-----) [000] d..2 82316.008506: 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
50951 crtc_commit:111-321   (  321) [001] d.s3 82316.008525: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
50952     rcu_preempt-7     (    7) [000] d..2 82316.008537: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
50953 crtc_commit:111-321   (  321) [001] d.s2 82316.008544: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
50954 crtc_commit:111-321   (  321) [001] d.s3 82316.008560: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
50955 crtc_commit:111-321   (  321) [001] d..2 82316.008623: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
50956           <...>-27592 (-----) [005] ...1 82316.008652: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
50957  kworker/u16:13-1147  ( 1147) [001] d..2 82316.008657: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50958           <...>-27592 (-----) [005] ...1 82316.008661: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
50959           <...>-27592 (-----) [005] ...1 82316.008664: tracing_mark_write: E|27550
50960          <idle>-0     (-----) [001] d..1 82316.008686: cpu_idle: state=0 cpu_id=1
50961           <...>-27592 (-----) [005] .... 82316.008723: binder_transaction: transaction=1569440 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
50962           <...>-27592 (-----) [005] .... 82316.008727: binder_transaction_alloc_buf: transaction=1569440 data_size=556 offsets_size=104
50963           <...>-27592 (-----) [005] ...2 82316.008741: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
50964           <...>-27592 (-----) [005] d..4 82316.008743: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50965           <...>-27592 (-----) [005] dn.5 82316.008754: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50966           <...>-27592 (-----) [005] d..2 82316.008761: sched_switch: prev_comm=id.nn.benchmark prev_pid=27592 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50967<...>-5340 ( 788) [005] .... 82316.008771: binder_transaction_received: transaction=1569440
50968<...>-5340 ( 788) [005] ...1 82316.008815: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
50969<...>-5340 ( 788) [005] d..2 82316.008858: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50970  kworker/u16:15-1311  ( 1311) [000] d..2 82316.008864: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
50971          <idle>-0     (-----) [000] d..1 82316.008880: cpu_idle: state=0 cpu_id=0
50972<...>-5340 ( 788) [005] d..2 82316.008890: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27592 next_prio=110
50973          <idle>-0     (-----) [001] d.s3 82316.008894: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
50974          <idle>-0     (-----) [000] dnh2 82316.008896: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
50975          <idle>-0     (-----) [000] .n.1 82316.008906: cpu_idle: state=4294967295 cpu_id=0
50976           <...>-27592 (-----) [005] d..2 82316.008913: sched_switch: prev_comm=id.nn.benchmark prev_pid=27592 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
50977          <idle>-0     (-----) [001] d.s4 82316.008920: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
50978          <idle>-0     (-----) [000] d..2 82316.008921: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
50979          <idle>-0     (-----) [001] dns4 82316.008926: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
50980          <idle>-0     (-----) [005] d..1 82316.008930: cpu_idle: state=0 cpu_id=5
50981          <idle>-0     (-----) [001] .n.1 82316.008934: cpu_idle: state=4294967295 cpu_id=1
50982          <idle>-0     (-----) [001] d..2 82316.008943: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
50983<...>-87 ( 87) [000] d..2 82316.008964: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
50984          <idle>-0     (-----) [002] d.h4 82316.008972: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50985          <idle>-0     (-----) [000] d..1 82316.008976: cpu_idle: state=0 cpu_id=0
50986          <idle>-0     (-----) [002] dnh5 82316.008989: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
50987          <idle>-0     (-----) [002] .n.1 82316.008997: cpu_idle: state=4294967295 cpu_id=2
50988          <idle>-0     (-----) [002] d..2 82316.009010: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
50989  kworker/u16:15-1311  ( 1311) [001] d..2 82316.009025: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
50990          <idle>-0     (-----) [001] d..1 82316.009034: cpu_idle: state=0 cpu_id=1
50991<...>-86 ( 86) [002] d..2 82316.009046: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
50992          <idle>-0     (-----) [002] d.h5 82316.009068: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50993          <idle>-0     (-----) [005] dnh2 82316.009090: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
50994          <idle>-0     (-----) [005] .n.1 82316.009095: cpu_idle: state=4294967295 cpu_id=5
50995          <idle>-0     (-----) [005] d..2 82316.009103: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
50996          <idle>-0     (-----) [002] d..1 82316.009116: cpu_idle: state=0 cpu_id=2
50997<...>-5340 ( 788) [005] d..1 82316.009155: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50998          <idle>-0     (-----) [000] dnh2 82316.009182: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
50999          <idle>-0     (-----) [000] .n.1 82316.009188: cpu_idle: state=4294967295 cpu_id=0
51000          <idle>-0     (-----) [000] d..2 82316.009199: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
51001 neuralnetworks@-13088 (  788) [000] d..2 82316.009245: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51002          <idle>-0     (-----) [000] d..1 82316.009258: cpu_idle: state=0 cpu_id=0
51003<...>-5340 ( 788) [005] d..2 82316.009302: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51004          <idle>-0     (-----) [000] dnh2 82316.009324: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51005<...>-5340 ( 788) [005] d..2 82316.009329: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
51006          <idle>-0     (-----) [000] .n.1 82316.009330: cpu_idle: state=4294967295 cpu_id=0
51007          <idle>-0     (-----) [000] d..2 82316.009341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
51008          <idle>-0     (-----) [005] d..1 82316.009344: cpu_idle: state=0 cpu_id=5
51009          <idle>-0     (-----) [002] d.h4 82316.009380: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
51010<...>-87 ( 87) [000] d..2 82316.009381: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51011          <idle>-0     (-----) [002] dnh5 82316.009390: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
51012          <idle>-0     (-----) [000] d..1 82316.009391: cpu_idle: state=0 cpu_id=0
51013          <idle>-0     (-----) [002] .n.1 82316.009399: cpu_idle: state=4294967295 cpu_id=2
51014          <idle>-0     (-----) [002] d..2 82316.009410: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
51015<...>-86 ( 86) [002] d..2 82316.009444: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51016          <idle>-0     (-----) [002] d..1 82316.009456: cpu_idle: state=0 cpu_id=2
51017          <idle>-0     (-----) [005] ...1 82316.009674: cpu_idle: state=4294967295 cpu_id=5
51018          <idle>-0     (-----) [005] d..1 82316.009678: cpu_idle: state=0 cpu_id=5
51019          <idle>-0     (-----) [000] d.h5 82316.010600: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
51020          <idle>-0     (-----) [000] d.h6 82316.010619: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
51021          <idle>-0     (-----) [001] .n.1 82316.010626: cpu_idle: state=4294967295 cpu_id=1
51022          <idle>-0     (-----) [001] d..2 82316.010634: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
51023          <idle>-0     (-----) [000] ...1 82316.010634: cpu_idle: state=4294967295 cpu_id=0
51024          <idle>-0     (-----) [000] d..1 82316.010639: cpu_idle: state=0 cpu_id=0
51025 crtc_commit:111-321   (  321) [001] d..2 82316.010713: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51026          <idle>-0     (-----) [001] d..1 82316.010722: cpu_idle: state=0 cpu_id=1
51027          <idle>-0     (-----) [000] d.h5 82316.010893: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
51028          <idle>-0     (-----) [000] d.h6 82316.010908: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
51029          <idle>-0     (-----) [002] .n.1 82316.010914: cpu_idle: state=4294967295 cpu_id=2
51030          <idle>-0     (-----) [000] ...1 82316.010923: cpu_idle: state=4294967295 cpu_id=0
51031          <idle>-0     (-----) [002] d..2 82316.010925: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
51032          <idle>-0     (-----) [000] d..1 82316.010928: cpu_idle: state=0 cpu_id=0
51033  crtc_event:111-322   (  322) [002] d..2 82316.010951: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51034          <idle>-0     (-----) [002] d..1 82316.010961: cpu_idle: state=0 cpu_id=2
51035          <idle>-0     (-----) [002] d.h4 82316.011120: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51036          <idle>-0     (-----) [005] dnh2 82316.011141: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51037          <idle>-0     (-----) [005] .n.1 82316.011145: cpu_idle: state=4294967295 cpu_id=5
51038          <idle>-0     (-----) [005] d..2 82316.011152: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51039          <idle>-0     (-----) [002] ...1 82316.011160: cpu_idle: state=4294967295 cpu_id=2
51040          <idle>-0     (-----) [002] d..1 82316.011166: cpu_idle: state=0 cpu_id=2
51041<...>-5340 ( 788) [005] d..1 82316.011204: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
51042          <idle>-0     (-----) [000] dnh2 82316.011229: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
51043          <idle>-0     (-----) [000] .n.1 82316.011235: cpu_idle: state=4294967295 cpu_id=0
51044          <idle>-0     (-----) [000] d..2 82316.011246: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
51045<...>-5340 ( 788) [005] ...1 82316.011295: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
51046<...>-5340 ( 788) [005] ...1 82316.011299: tracing_mark_write: E|788
51047 neuralnetworks@-13088 (  788) [000] d..2 82316.011311: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51048<...>-5340 ( 788) [005] .... 82316.011315: binder_transaction: transaction=1569443 dest_node=1569441 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
51049<...>-5340 ( 788) [005] .... 82316.011317: binder_transaction_alloc_buf: transaction=1569443 data_size=60 offsets_size=0
51050<...>-5340 ( 788) [005] d..4 82316.011321: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
51051          <idle>-0     (-----) [000] d..1 82316.011323: cpu_idle: state=0 cpu_id=0
51052<...>-5340 ( 788) [005] d..5 82316.011334: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
51053          <idle>-0     (-----) [004] .n.1 82316.011339: cpu_idle: state=4294967295 cpu_id=4
51054          <idle>-0     (-----) [004] d..2 82316.011348: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
51055           <...>-27571 (-----) [004] .... 82316.011353: binder_transaction_received: transaction=1569443
51056<...>-5340 ( 788) [005] ...1 82316.011356: tracing_mark_write: E|788
51057<...>-5340 ( 788) [005] .... 82316.011362: binder_transaction: transaction=1569444 dest_node=0 dest_proc=27550 dest_thread=27592 reply=1 flags=0x0 code=0x0
51058<...>-5340 ( 788) [005] .... 82316.011365: binder_transaction_alloc_buf: transaction=1569444 data_size=8 offsets_size=0
51059<...>-5340 ( 788) [005] d..2 82316.011367: sched_waking: comm=id.nn.benchmark pid=27592 prio=110 target_cpu=005
51060           <...>-27571 (-----) [004] ...1 82316.011373: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
51061<...>-5340 ( 788) [005] d..3 82316.011374: sched_wakeup: comm=id.nn.benchmark pid=27592 prio=110 target_cpu=005
51062<...>-5340 ( 788) [005] .... 82316.011376: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
51063           <...>-27571 (-----) [004] ...1 82316.011379: tracing_mark_write: E|27550
51064           <...>-27571 (-----) [004] d..2 82316.011411: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51065<...>-5340 ( 788) [005] d..2 82316.011417: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27592 next_prio=110
51066          <idle>-0     (-----) [004] d..1 82316.011419: cpu_idle: state=0 cpu_id=4
51067           <...>-27592 (-----) [005] .... 82316.011427: binder_transaction_received: transaction=1569444
51068           <...>-27592 (-----) [005] ...1 82316.011463: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
51069           <...>-27592 (-----) [005] ...1 82316.011469: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
51070           <...>-27592 (-----) [005] ...1 82316.011496: tracing_mark_write: E|27550
51071           <...>-27592 (-----) [005] ...1 82316.011499: tracing_mark_write: E|27550
51072           <...>-27592 (-----) [005] ...1 82316.011503: tracing_mark_write: E|27550
51073           <...>-27592 (-----) [005] ...1 82316.011690: tracing_mark_write: E|27550
51074           <...>-27592 (-----) [005] d..1 82316.011702: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51075           <...>-27592 (-----) [005] d..2 82316.011718: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51076          <idle>-0     (-----) [004] .n.1 82316.011724: cpu_idle: state=4294967295 cpu_id=4
51077          <idle>-0     (-----) [004] d..2 82316.011731: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
51078           <...>-27550 (-----) [004] d..2 82316.011746: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51079          <idle>-0     (-----) [004] d..1 82316.011754: cpu_idle: state=0 cpu_id=4
51080          <idle>-0     (-----) [003] d.s2 82316.011801: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
51081          <idle>-0     (-----) [003] dns3 82316.011860: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
51082           <...>-27592 (-----) [005] d..1 82316.011867: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51083          <idle>-0     (-----) [003] .n.1 82316.011871: cpu_idle: state=4294967295 cpu_id=3
51084           <...>-27592 (-----) [005] d..2 82316.011877: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51085          <idle>-0     (-----) [001] d.s3 82316.011882: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
51086          <idle>-0     (-----) [004] .n.1 82316.011882: cpu_idle: state=4294967295 cpu_id=4
51087          <idle>-0     (-----) [003] d..2 82316.011883: 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
51088          <idle>-0     (-----) [004] d..2 82316.011889: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
51089          <idle>-0     (-----) [001] d.s4 82316.011902: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
51090          <idle>-0     (-----) [002] .n.1 82316.011910: cpu_idle: state=4294967295 cpu_id=2
51091<...>-8 ( 8) [003] d..2 82316.011919: 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
51092           <...>-27592 (-----) [005] d..2 82316.011919: sched_switch: prev_comm=id.nn.benchmark prev_pid=27592 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
51093           <...>-27550 (-----) [004] ...1 82316.011919: tracing_mark_write: E|27550
51094          <idle>-0     (-----) [001] d.s3 82316.011920: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
51095          <idle>-0     (-----) [002] d..2 82316.011922: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
51096           <...>-27550 (-----) [004] ...1 82316.011925: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
51097          <idle>-0     (-----) [003] d..1 82316.011929: cpu_idle: state=0 cpu_id=3
51098           <...>-27550 (-----) [004] ...1 82316.011931: tracing_mark_write: E|27550
51099           <...>-27550 (-----) [004] ...1 82316.011935: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
51100          <idle>-0     (-----) [005] d..1 82316.011939: cpu_idle: state=0 cpu_id=5
51101           <...>-27550 (-----) [004] ...1 82316.011939: tracing_mark_write: E|27550
51102           <...>-27550 (-----) [004] ...1 82316.011943: tracing_mark_write: E|27550
51103  crtc_event:111-322   (  322) [002] d..2 82316.011952: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51104          <idle>-0     (-----) [001] dns4 82316.011955: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
51105          <idle>-0     (-----) [002] d..1 82316.011963: cpu_idle: state=0 cpu_id=2
51106          <idle>-0     (-----) [001] .n.1 82316.011965: cpu_idle: state=4294967295 cpu_id=1
51107          <idle>-0     (-----) [001] d..2 82316.011974: 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
51108     rcu_preempt-7     (    7) [001] d..2 82316.011981: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
51109     rcu_preempt-7     (    7) [001] d..3 82316.011998: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
51110     rcu_preempt-7     (    7) [001] d..2 82316.012001: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
51111     rcu_preempt-7     (    7) [001] d..3 82316.012033: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
51112     rcu_preempt-7     (    7) [001] d..2 82316.012049: 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
51113         rcuop/2-29    (   29) [001] d..2 82316.012055: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
51114           <...>-27550 (-----) [004] ...1 82316.012059: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
51115         rcuop/2-29    (   29) [001] d..3 82316.012072: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
51116         rcuop/2-29    (   29) [001] d..2 82316.012082: 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
51117         rcuop/0-10    (   10) [001] d..2 82316.012087: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
51118           <...>-27550 (-----) [004] ...1 82316.012116: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
51119         rcuop/0-10    (   10) [001] d..3 82316.012120: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
51120           <...>-27550 (-----) [004] ...1 82316.012121: tracing_mark_write: E|27550
51121           <...>-27550 (-----) [004] ...1 82316.012125: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
51122         rcuop/0-10    (   10) [001] d..2 82316.012129: 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
51123           <...>-27550 (-----) [004] ...1 82316.012130: tracing_mark_write: E|27550
51124           <...>-27550 (-----) [004] ...1 82316.012134: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
51125           <...>-27550 (-----) [004] ...1 82316.012138: tracing_mark_write: E|27550
51126           <...>-27550 (-----) [004] ...1 82316.012141: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
51127         rcuop/1-21    (   21) [001] d..2 82316.012144: 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
51128         rcuop/3-37    (   37) [001] d..2 82316.012172: 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
51129          <idle>-0     (-----) [001] d..1 82316.012187: cpu_idle: state=0 cpu_id=1
51130          <idle>-0     (-----) [005] .n.1 82316.012233: cpu_idle: state=4294967295 cpu_id=5
51131           <...>-27550 (-----) [004] ...1 82316.012234: tracing_mark_write: E|27550
51132           <...>-27550 (-----) [004] ...1 82316.012239: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
51133          <idle>-0     (-----) [005] d..2 82316.012242: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27593 next_prio=110
51134           <...>-27550 (-----) [004] d..2 82316.012258: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51135          <idle>-0     (-----) [004] d..1 82316.012274: cpu_idle: state=0 cpu_id=4
51136           <...>-27593 (-----) [005] ...1 82316.012303: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
51137           <...>-27593 (-----) [005] ...1 82316.012316: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
51138           <...>-27593 (-----) [005] ...1 82316.012320: tracing_mark_write: E|27550
51139           <...>-27593 (-----) [005] .... 82316.012341: binder_transaction: transaction=1569445 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
51140           <...>-27593 (-----) [005] .... 82316.012345: binder_transaction_alloc_buf: transaction=1569445 data_size=48 offsets_size=0
51141           <...>-27593 (-----) [005] ...2 82316.012348: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
51142           <...>-27593 (-----) [005] d..4 82316.012351: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
51143           <...>-27593 (-----) [005] dn.5 82316.012362: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
51144           <...>-27593 (-----) [005] d..2 82316.012369: sched_switch: prev_comm=id.nn.benchmark prev_pid=27593 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
51145<...>-770 ( 770) [005] .... 82316.012379: binder_transaction_received: transaction=1569445
51146<...>-770 ( 770) [005] ...1 82316.012402: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
51147<...>-770 ( 770) [005] d..2 82316.012478: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
51148          <idle>-0     (-----) [000] dnh2 82316.012507: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
51149          <idle>-0     (-----) [000] .n.1 82316.012513: cpu_idle: state=4294967295 cpu_id=0
51150<...>-770 ( 770) [005] ...1 82316.012520: tracing_mark_write: E|770
51151          <idle>-0     (-----) [000] d..2 82316.012524: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
51152<...>-770 ( 770) [005] .... 82316.012527: binder_transaction: transaction=1569446 dest_node=0 dest_proc=27550 dest_thread=27593 reply=1 flags=0x0 code=0x0
51153<...>-770 ( 770) [005] .... 82316.012530: binder_transaction_alloc_buf: transaction=1569446 data_size=168 offsets_size=32
51154<...>-770 ( 770) [005] .... 82316.012537: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
51155<...>-770 ( 770) [005] d..2 82316.012572: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27593 next_prio=110
51156           <...>-27593 (-----) [005] .... 82316.012583: binder_transaction_received: transaction=1569446
51157<...>-581 ( 571) [000] d..2 82316.012605: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51158          <idle>-0     (-----) [000] d..1 82316.012619: cpu_idle: state=0 cpu_id=0
51159           <...>-27593 (-----) [005] ...1 82316.012653: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
51160           <...>-27593 (-----) [005] ...1 82316.012659: tracing_mark_write: E|27550
51161           <...>-27593 (-----) [005] .... 82316.012673: binder_transaction: transaction=1569447 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
51162           <...>-27593 (-----) [005] .... 82316.012675: binder_transaction_alloc_buf: transaction=1569447 data_size=48 offsets_size=0
51163           <...>-27593 (-----) [005] ...2 82316.012678: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
51164           <...>-27593 (-----) [005] d..4 82316.012680: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
51165           <...>-27593 (-----) [005] dn.5 82316.012690: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
51166           <...>-27593 (-----) [005] d..2 82316.012697: sched_switch: prev_comm=id.nn.benchmark prev_pid=27593 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
51167<...>-770 ( 770) [005] .... 82316.012705: binder_transaction_received: transaction=1569447
51168<...>-770 ( 770) [005] ...1 82316.012721: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
51169          <idle>-0     (-----) [003] d.h2 82316.012737: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
51170          <idle>-0     (-----) [003] dnh3 82316.012753: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
51171          <idle>-0     (-----) [003] .n.1 82316.012760: cpu_idle: state=4294967295 cpu_id=3
51172          <idle>-0     (-----) [003] d..2 82316.012770: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
51173<...>-770 ( 770) [005] d..2 82316.012779: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
51174        DispSync-8879  ( 8858) [003] d..1 82316.012790: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
51175          <idle>-0     (-----) [000] dnh2 82316.012803: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
51176          <idle>-0     (-----) [000] .n.1 82316.012809: cpu_idle: state=4294967295 cpu_id=0
51177<...>-770 ( 770) [005] ...1 82316.012812: tracing_mark_write: E|770
51178        DispSync-8879  ( 8858) [003] d..2 82316.012814: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
51179<...>-770 ( 770) [005] .... 82316.012819: binder_transaction: transaction=1569448 dest_node=0 dest_proc=27550 dest_thread=27593 reply=1 flags=0x0 code=0x0
51180          <idle>-0     (-----) [002] .n.1 82316.012820: cpu_idle: state=4294967295 cpu_id=2
51181          <idle>-0     (-----) [000] d..2 82316.012820: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
51182<...>-770 ( 770) [005] .... 82316.012822: binder_transaction_alloc_buf: transaction=1569448 data_size=168 offsets_size=32
51183<...>-770 ( 770) [005] .... 82316.012828: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
51184          <idle>-0     (-----) [002] d..2 82316.012829: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
51185        DispSync-8879  ( 8858) [003] d..2 82316.012848: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51186          <idle>-0     (-----) [003] d..1 82316.012860: cpu_idle: state=0 cpu_id=3
51187<...>-770 ( 770) [005] d..2 82316.012862: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27593 next_prio=110
51188           <...>-27593 (-----) [005] .... 82316.012872: binder_transaction_received: transaction=1569448
51189<...>-581 ( 571) [000] d..2 82316.012883: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51190          <idle>-0     (-----) [000] d..1 82316.012895: cpu_idle: state=0 cpu_id=0
51191  appEventThread-8881  ( 8858) [002] d..3 82316.012900: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
51192  appEventThread-8881  ( 8858) [002] d..4 82316.012923: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
51193          <idle>-0     (-----) [000] .n.1 82316.012928: cpu_idle: state=4294967295 cpu_id=0
51194          <idle>-0     (-----) [000] d..2 82316.012941: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
51195  appEventThread-8881  ( 8858) [002] d..3 82316.012942: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=002
51196  appEventThread-8881  ( 8858) [002] d..4 82316.012968: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=001
51197          <idle>-0     (-----) [001] .n.1 82316.012974: cpu_idle: state=4294967295 cpu_id=1
51198          <idle>-0     (-----) [001] d..2 82316.012986: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
51199  appEventThread-8881  ( 8858) [002] d..2 82316.013010: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51200          <idle>-0     (-----) [002] d..1 82316.013027: cpu_idle: state=0 cpu_id=2
51201           <...>-27593 (-----) [005] ...1 82316.013143: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
51202           <...>-27593 (-----) [005] ...1 82316.013153: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
51203           <...>-27593 (-----) [005] ...1 82316.013157: tracing_mark_write: E|27550
51204           <...>-27593 (-----) [005] .... 82316.013213: binder_transaction: transaction=1569449 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
51205           <...>-27593 (-----) [005] .... 82316.013216: binder_transaction_alloc_buf: transaction=1569449 data_size=556 offsets_size=104
51206           <...>-27593 (-----) [005] ...2 82316.013230: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
51207           <...>-27593 (-----) [005] d..4 82316.013233: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51208           <...>-27593 (-----) [005] dn.5 82316.013246: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51209           <...>-27593 (-----) [005] d..2 82316.013252: sched_switch: prev_comm=id.nn.benchmark prev_pid=27593 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51210<...>-5340 ( 788) [005] .... 82316.013262: binder_transaction_received: transaction=1569449
51211<...>-9105 ( 9105) [000] .... 82316.013277: binder_transaction: transaction=1569452 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
51212<...>-9105 ( 9105) [000] .... 82316.013285: binder_transaction_alloc_buf: transaction=1569452 data_size=80 offsets_size=0
51213<...>-9105 ( 9105) [000] d..4 82316.013292: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
51214<...>-5340 ( 788) [005] ...1 82316.013306: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
51215<...>-9105 ( 9105) [000] d..5 82316.013330: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
51216          <idle>-0     (-----) [002] .n.1 82316.013337: cpu_idle: state=4294967295 cpu_id=2
51217<...>-5340 ( 788) [005] d..2 82316.013350: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51218          <idle>-0     (-----) [002] d..2 82316.013384: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
51219 s.nexuslauncher-10023 (10023) [001] .... 82316.013392: binder_transaction: transaction=1569453 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
51220<...>-13083 ( 8858) [002] .... 82316.013393: binder_transaction_received: transaction=1569452
51221 s.nexuslauncher-10023 (10023) [001] .... 82316.013398: binder_transaction_alloc_buf: transaction=1569453 data_size=80 offsets_size=0
51222 s.nexuslauncher-10023 (10023) [001] d..4 82316.013404: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
51223<...>-5340 ( 788) [005] d..2 82316.013415: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27593 next_prio=110
51224<...>-13083 ( 8858) [002] d.h1 82316.013417: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
51225<...>-9105 ( 9105) [000] d..3 82316.013426: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
51226           <...>-27593 (-----) [005] d..2 82316.013439: sched_switch: prev_comm=id.nn.benchmark prev_pid=27593 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
51227 s.nexuslauncher-10023 (10023) [001] d..5 82316.013439: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
51228          <idle>-0     (-----) [003] .n.1 82316.013445: cpu_idle: state=4294967295 cpu_id=3
51229<...>-13083 ( 8858) [002] d..1 82316.013445: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
51230          <idle>-0     (-----) [006] dnh2 82316.013452: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
51231          <idle>-0     (-----) [006] .n.1 82316.013456: cpu_idle: state=4294967295 cpu_id=6
51232          <idle>-0     (-----) [005] d..1 82316.013457: cpu_idle: state=0 cpu_id=5
51233          <idle>-0     (-----) [003] d..2 82316.013457: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
51234          <idle>-0     (-----) [006] d..2 82316.013464: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
51235<...>-8874 ( 8858) [003] .... 82316.013465: binder_transaction_received: transaction=1569453
51236<...>-13083 ( 8858) [002] d..2 82316.013474: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
51237 s.nexuslauncher-10023 (10023) [001] d..3 82316.013478: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=006
51238<...>-8874 ( 8858) [003] d..2 82316.013483: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
51239    RenderThread-9436  ( 9105) [006] d..2 82316.013497: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
51240          <idle>-0     (-----) [006] d..1 82316.013505: cpu_idle: state=0 cpu_id=6
51241<...>-13083 ( 8858) [002] d..2 82316.013515: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
51242          <idle>-0     (-----) [007] dnh2 82316.013517: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=007
51243          <idle>-0     (-----) [007] .n.1 82316.013521: cpu_idle: state=4294967295 cpu_id=7
51244          <idle>-0     (-----) [007] d..2 82316.013527: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
51245  appEventThread-8881  ( 8858) [003] d..2 82316.013531: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
51246    RenderThread-16607 (10023) [007] d..2 82316.013552: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
51247<...>-8874 ( 8858) [003] d..1 82316.013556: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
51248          <idle>-0     (-----) [007] d..1 82316.013559: cpu_idle: state=0 cpu_id=7
51249<...>-87 ( 87) [002] d..2 82316.013563: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51250<...>-9105 ( 9105) [000] d..3 82316.013565: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
51251<...>-8874 ( 8858) [003] d..2 82316.013580: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
51252          <idle>-0     (-----) [006] dnh2 82316.013585: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
51253          <idle>-0     (-----) [002] dnh5 82316.013586: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
51254          <idle>-0     (-----) [006] .n.1 82316.013588: cpu_idle: state=4294967295 cpu_id=6
51255          <idle>-0     (-----) [006] d..2 82316.013594: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
51256<...>-9105 ( 9105) [000] d..2 82316.013612: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51257<...>-8874 ( 8858) [003] d..2 82316.013624: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51258          <idle>-0     (-----) [002] dnh6 82316.013630: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
51259          <idle>-0     (-----) [003] d..1 82316.013638: cpu_idle: state=0 cpu_id=3
51260          <idle>-0     (-----) [000] d..2 82316.013643: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
51261          <idle>-0     (-----) [002] dnh5 82316.013646: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51262    RenderThread-9436  ( 9105) [006] d..1 82316.013665: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
51263          <idle>-0     (-----) [005] dnh2 82316.013668: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51264          <idle>-0     (-----) [005] .n.1 82316.013672: cpu_idle: state=4294967295 cpu_id=5
51265          <idle>-0     (-----) [005] d..2 82316.013681: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51266          <idle>-0     (-----) [003] dnh2 82316.013698: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
51267          <idle>-0     (-----) [002] d..2 82316.013701: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
51268          <idle>-0     (-----) [003] .n.1 82316.013705: cpu_idle: state=4294967295 cpu_id=3
51269<...>-86 ( 86) [000] d..2 82316.013717: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51270          <idle>-0     (-----) [003] d..2 82316.013718: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
51271    RenderThread-9436  ( 9105) [006] .... 82316.013727: binder_transaction: transaction=1569454 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
51272          <idle>-0     (-----) [000] d..1 82316.013729: cpu_idle: state=0 cpu_id=0
51273    RenderThread-9436  ( 9105) [006] .... 82316.013730: binder_transaction_alloc_buf: transaction=1569454 data_size=104 offsets_size=0
51274    RenderThread-9436  ( 9105) [006] d..4 82316.013733: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
51275<...>-5340 ( 788) [005] d..1 82316.013734: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
51276    RenderThread-9436  ( 9105) [006] dn.5 82316.013750: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
51277  appEventThread-8881  ( 8858) [002] d..2 82316.013754: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51278          <idle>-0     (-----) [002] d..1 82316.013773: cpu_idle: state=0 cpu_id=2
51279    RenderThread-9436  ( 9105) [006] d..2 82316.013792: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
51280          <idle>-0     (-----) [002] dnh2 82316.013794: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
51281          <idle>-0     (-----) [002] .n.1 82316.013801: cpu_idle: state=4294967295 cpu_id=2
51282<...>-8874 ( 8858) [006] .... 82316.013802: binder_transaction_received: transaction=1569454
51283          <idle>-0     (-----) [002] d..2 82316.013812: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
51284<...>-9105 ( 9105) [003] d..2 82316.013830: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51285 s.nexuslauncher-10023 (10023) [001] d..2 82316.013833: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51286          <idle>-0     (-----) [003] d..1 82316.013847: cpu_idle: state=0 cpu_id=3
51287          <idle>-0     (-----) [001] d..1 82316.013852: cpu_idle: state=0 cpu_id=1
51288<...>-8874 ( 8858) [006] .... 82316.013857: binder_transaction: transaction=1569455 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
51289<...>-8874 ( 8858) [006] .... 82316.013861: binder_transaction_alloc_buf: transaction=1569455 data_size=52 offsets_size=8
51290 neuralnetworks@-13088 (  788) [002] d..2 82316.013865: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51291          <idle>-0     (-----) [002] d..1 82316.013879: cpu_idle: state=0 cpu_id=2
51292<...>-8874 ( 8858) [006] d..2 82316.013892: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
51293    RenderThread-9436  ( 9105) [006] .... 82316.013902: binder_transaction_received: transaction=1569455
51294<...>-5340 ( 788) [005] d..2 82316.013921: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
51295          <idle>-0     (-----) [002] dnh2 82316.013944: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
51296<...>-5340 ( 788) [005] d..2 82316.013947: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
51297          <idle>-0     (-----) [002] .n.1 82316.013951: cpu_idle: state=4294967295 cpu_id=2
51298          <idle>-0     (-----) [002] d..2 82316.013961: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
51299          <idle>-0     (-----) [005] d..1 82316.013962: cpu_idle: state=0 cpu_id=5
51300<...>-87 ( 87) [002] d.h4 82316.013998: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
51301<...>-87 ( 87) [002] d.h5 82316.014014: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
51302          <idle>-0     (-----) [000] .n.1 82316.014021: cpu_idle: state=4294967295 cpu_id=0
51303          <idle>-0     (-----) [000] d..2 82316.014032: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
51304<...>-87 ( 87) [002] d..2 82316.014039: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51305          <idle>-0     (-----) [002] d..1 82316.014053: cpu_idle: state=0 cpu_id=2
51306<...>-86 ( 86) [000] d..2 82316.014066: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51307          <idle>-0     (-----) [000] d..1 82316.014076: cpu_idle: state=0 cpu_id=0
51308          <idle>-0     (-----) [005] ...1 82316.014311: cpu_idle: state=4294967295 cpu_id=5
51309          <idle>-0     (-----) [005] d..1 82316.014315: cpu_idle: state=0 cpu_id=5
51310    RenderThread-9436  ( 9105) [006] d..2 82316.014615: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
51311          <idle>-0     (-----) [006] d..1 82316.014628: cpu_idle: state=0 cpu_id=6
51312          <idle>-0     (-----) [006] d.h2 82316.014706: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
51313          <idle>-0     (-----) [006] d.h3 82316.014713: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
51314          <idle>-0     (-----) [006] dnh3 82316.014716: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
51315          <idle>-0     (-----) [006] .n.1 82316.014722: cpu_idle: state=4294967295 cpu_id=6
51316          <idle>-0     (-----) [006] d..2 82316.014730: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
51317          <idle>-0     (-----) [000] d.h3 82316.014753: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
51318          <idle>-0     (-----) [000] d.h4 82316.014774: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
51319          <idle>-0     (-----) [003] .n.1 82316.014781: cpu_idle: state=4294967295 cpu_id=3
51320          <idle>-0     (-----) [000] ...1 82316.014791: cpu_idle: state=4294967295 cpu_id=0
51321          <idle>-0     (-----) [003] d..2 82316.014794: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
51322          <idle>-0     (-----) [000] d..1 82316.014796: cpu_idle: state=0 cpu_id=0
51323 kgsl_worker_thr-258   (  258) [003] d..2 82316.014849: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
51324    RenderThread-9436  ( 9105) [006] .... 82316.014862: binder_transaction: transaction=1569456 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
51325    RenderThread-9436  ( 9105) [006] .... 82316.014865: binder_transaction_alloc_buf: transaction=1569456 data_size=192 offsets_size=8
51326    RenderThread-9436  ( 9105) [006] d..4 82316.014871: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
51327    RenderThread-9436  ( 9105) [006] dn.5 82316.014880: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
51328    RenderThread-9436  ( 9105) [006] d..2 82316.014885: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
51329 kgsl_worker_thr-258   (  258) [003] d..3 82316.014893: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
51330<...>-8874 ( 8858) [006] .... 82316.014895: binder_transaction_received: transaction=1569456
51331 kgsl_worker_thr-258   (  258) [003] d..2 82316.014912: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
51332  kworker/u16:15-1311  ( 1311) [003] d..2 82316.014958: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51333          <idle>-0     (-----) [003] d..1 82316.014971: cpu_idle: state=0 cpu_id=3
51334<...>-8874 ( 8858) [006] .... 82316.015008: binder_transaction: transaction=1569457 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
51335<...>-8874 ( 8858) [006] .... 82316.015011: binder_transaction_alloc_buf: transaction=1569457 data_size=68 offsets_size=0
51336<...>-8874 ( 8858) [006] d..2 82316.015039: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
51337    RenderThread-9436  ( 9105) [006] .... 82316.015049: binder_transaction_received: transaction=1569457
51338    RenderThread-9436  ( 9105) [006] d..2 82316.015115: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
51339          <idle>-0     (-----) [006] d..1 82316.015165: cpu_idle: state=0 cpu_id=6
51340          <idle>-0     (-----) [006] ...1 82316.015359: cpu_idle: state=4294967295 cpu_id=6
51341          <idle>-0     (-----) [006] d..1 82316.015363: cpu_idle: state=0 cpu_id=6
51342          <idle>-0     (-----) [002] ...1 82316.015458: cpu_idle: state=4294967295 cpu_id=2
51343          <idle>-0     (-----) [002] d..1 82316.015463: cpu_idle: state=0 cpu_id=2
51344          <idle>-0     (-----) [002] d.h4 82316.015660: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51345          <idle>-0     (-----) [005] dnh2 82316.015682: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51346          <idle>-0     (-----) [005] .n.1 82316.015685: cpu_idle: state=4294967295 cpu_id=5
51347          <idle>-0     (-----) [005] d..2 82316.015694: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51348          <idle>-0     (-----) [002] ...1 82316.015700: cpu_idle: state=4294967295 cpu_id=2
51349          <idle>-0     (-----) [002] d..1 82316.015708: cpu_idle: state=0 cpu_id=2
51350<...>-5340 ( 788) [005] d..1 82316.015749: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
51351          <idle>-0     (-----) [002] dnh2 82316.015770: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
51352          <idle>-0     (-----) [002] .n.1 82316.015780: cpu_idle: state=4294967295 cpu_id=2
51353          <idle>-0     (-----) [002] d..2 82316.015793: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
51354<...>-5340 ( 788) [005] ...1 82316.015844: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
51355<...>-5340 ( 788) [005] ...1 82316.015848: tracing_mark_write: E|788
51356 neuralnetworks@-13088 (  788) [002] d..2 82316.015864: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51357<...>-5340 ( 788) [005] .... 82316.015866: binder_transaction: transaction=1569458 dest_node=1569450 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
51358<...>-5340 ( 788) [005] .... 82316.015869: binder_transaction_alloc_buf: transaction=1569458 data_size=60 offsets_size=0
51359<...>-5340 ( 788) [005] d..4 82316.015873: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
51360          <idle>-0     (-----) [002] d..1 82316.015878: cpu_idle: state=0 cpu_id=2
51361<...>-5340 ( 788) [005] d..5 82316.015886: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
51362          <idle>-0     (-----) [004] .n.1 82316.015892: cpu_idle: state=4294967295 cpu_id=4
51363          <idle>-0     (-----) [004] d..2 82316.015902: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
51364           <...>-27571 (-----) [004] .... 82316.015907: binder_transaction_received: transaction=1569458
51365<...>-5340 ( 788) [005] ...1 82316.015911: tracing_mark_write: E|788
51366<...>-5340 ( 788) [005] .... 82316.015917: binder_transaction: transaction=1569459 dest_node=0 dest_proc=27550 dest_thread=27593 reply=1 flags=0x0 code=0x0
51367<...>-5340 ( 788) [005] .... 82316.015919: binder_transaction_alloc_buf: transaction=1569459 data_size=8 offsets_size=0
51368<...>-5340 ( 788) [005] d..2 82316.015921: sched_waking: comm=id.nn.benchmark pid=27593 prio=110 target_cpu=005
51369           <...>-27571 (-----) [004] ...1 82316.015927: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
51370<...>-5340 ( 788) [005] d..3 82316.015929: sched_wakeup: comm=id.nn.benchmark pid=27593 prio=110 target_cpu=005
51371<...>-5340 ( 788) [005] .... 82316.015931: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
51372           <...>-27571 (-----) [004] ...1 82316.015934: tracing_mark_write: E|27550
51373           <...>-27571 (-----) [004] d..2 82316.015966: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51374          <idle>-0     (-----) [004] d..1 82316.015973: cpu_idle: state=0 cpu_id=4
51375<...>-5340 ( 788) [005] d..2 82316.015974: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27593 next_prio=110
51376           <...>-27593 (-----) [005] .... 82316.015984: binder_transaction_received: transaction=1569459
51377           <...>-27593 (-----) [005] ...1 82316.016023: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
51378           <...>-27593 (-----) [005] ...1 82316.016029: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
51379           <...>-27593 (-----) [005] ...1 82316.016056: tracing_mark_write: E|27550
51380           <...>-27593 (-----) [005] ...1 82316.016060: tracing_mark_write: E|27550
51381           <...>-27593 (-----) [005] ...1 82316.016064: tracing_mark_write: E|27550
51382           <...>-27593 (-----) [005] ...1 82316.016261: tracing_mark_write: E|27550
51383           <...>-27593 (-----) [005] d..1 82316.016275: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51384           <...>-27593 (-----) [005] d..2 82316.016291: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51385          <idle>-0     (-----) [004] .n.1 82316.016296: cpu_idle: state=4294967295 cpu_id=4
51386          <idle>-0     (-----) [004] d..2 82316.016303: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
51387           <...>-27550 (-----) [004] d..2 82316.016323: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51388          <idle>-0     (-----) [004] d..1 82316.016332: cpu_idle: state=0 cpu_id=4
51389           <...>-27593 (-----) [005] d..1 82316.016387: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51390           <...>-27593 (-----) [005] d..2 82316.016396: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51391          <idle>-0     (-----) [004] .n.1 82316.016401: cpu_idle: state=4294967295 cpu_id=4
51392          <idle>-0     (-----) [004] d..2 82316.016409: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
51393           <...>-27593 (-----) [005] d..2 82316.016437: sched_switch: prev_comm=id.nn.benchmark prev_pid=27593 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
51394           <...>-27550 (-----) [004] ...1 82316.016443: tracing_mark_write: E|27550
51395           <...>-27550 (-----) [004] ...1 82316.016449: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
51396           <...>-27550 (-----) [004] ...1 82316.016455: tracing_mark_write: E|27550
51397          <idle>-0     (-----) [005] d..1 82316.016458: cpu_idle: state=0 cpu_id=5
51398           <...>-27550 (-----) [004] ...1 82316.016459: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
51399           <...>-27550 (-----) [004] ...1 82316.016463: tracing_mark_write: E|27550
51400           <...>-27550 (-----) [004] ...1 82316.016467: tracing_mark_write: E|27550
51401           <...>-27550 (-----) [004] ...1 82316.016581: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
51402           <...>-27550 (-----) [004] ...1 82316.016639: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
51403           <...>-27550 (-----) [004] ...1 82316.016644: tracing_mark_write: E|27550
51404           <...>-27550 (-----) [004] ...1 82316.016648: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
51405           <...>-27550 (-----) [004] ...1 82316.016654: tracing_mark_write: E|27550
51406           <...>-27550 (-----) [004] ...1 82316.016658: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
51407           <...>-27550 (-----) [004] ...1 82316.016663: tracing_mark_write: E|27550
51408           <...>-27550 (-----) [004] ...1 82316.016666: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
51409          <idle>-0     (-----) [003] d.h2 82316.016746: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
51410          <idle>-0     (-----) [003] dnh3 82316.016761: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
51411          <idle>-0     (-----) [005] .n.1 82316.016763: cpu_idle: state=4294967295 cpu_id=5
51412           <...>-27550 (-----) [004] ...1 82316.016765: tracing_mark_write: E|27550
51413           <...>-27550 (-----) [004] ...1 82316.016770: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
51414          <idle>-0     (-----) [003] .n.1 82316.016770: cpu_idle: state=4294967295 cpu_id=3
51415          <idle>-0     (-----) [005] d..2 82316.016772: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27594 next_prio=110
51416          <idle>-0     (-----) [003] d..2 82316.016782: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
51417           <...>-27550 (-----) [004] d..2 82316.016787: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51418          <idle>-0     (-----) [004] d..1 82316.016801: cpu_idle: state=0 cpu_id=4
51419        DispSync-8879  ( 8858) [003] d..1 82316.016804: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
51420        DispSync-8879  ( 8858) [003] d..2 82316.016822: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
51421          <idle>-0     (-----) [002] .n.1 82316.016829: cpu_idle: state=4294967295 cpu_id=2
51422           <...>-27594 (-----) [005] ...1 82316.016835: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
51423          <idle>-0     (-----) [002] d..2 82316.016840: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
51424           <...>-27594 (-----) [005] ...1 82316.016849: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
51425           <...>-27594 (-----) [005] ...1 82316.016853: tracing_mark_write: E|27550
51426        DispSync-8879  ( 8858) [003] d..2 82316.016856: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51427          <idle>-0     (-----) [003] d..1 82316.016866: cpu_idle: state=0 cpu_id=3
51428           <...>-27594 (-----) [005] .... 82316.016874: binder_transaction: transaction=1569460 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
51429           <...>-27594 (-----) [005] .... 82316.016878: binder_transaction_alloc_buf: transaction=1569460 data_size=48 offsets_size=0
51430           <...>-27594 (-----) [005] ...2 82316.016881: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
51431   sfEventThread-8882  ( 8858) [002] d..3 82316.016883: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
51432           <...>-27594 (-----) [005] d..4 82316.016884: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
51433           <...>-27594 (-----) [005] dn.5 82316.016894: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
51434           <...>-27594 (-----) [005] d..2 82316.016900: sched_switch: prev_comm=id.nn.benchmark prev_pid=27594 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
51435   sfEventThread-8882  ( 8858) [002] d..4 82316.016905: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
51436          <idle>-0     (-----) [003] .n.1 82316.016910: cpu_idle: state=4294967295 cpu_id=3
51437<...>-770 ( 770) [005] .... 82316.016910: binder_transaction_received: transaction=1569460
51438          <idle>-0     (-----) [003] d..2 82316.016918: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
51439<...>-770 ( 770) [005] ...1 82316.016936: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
51440   sfEventThread-8882  ( 8858) [002] d..2 82316.016939: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51441          <idle>-0     (-----) [002] d..1 82316.016955: cpu_idle: state=0 cpu_id=2
51442<...>-770 ( 770) [005] d..2 82316.017023: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
51443  surfaceflinger-8858  ( 8858) [003] d.h1 82316.017065: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
51444<...>-770 ( 770) [005] ...1 82316.017080: tracing_mark_write: E|770
51445<...>-770 ( 770) [005] .... 82316.017088: binder_transaction: transaction=1569461 dest_node=0 dest_proc=27550 dest_thread=27594 reply=1 flags=0x0 code=0x0
51446<...>-770 ( 770) [005] .... 82316.017090: binder_transaction_alloc_buf: transaction=1569461 data_size=168 offsets_size=32
51447<...>-770 ( 770) [005] .... 82316.017097: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
51448<...>-770 ( 770) [005] d..2 82316.017133: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27594 next_prio=110
51449           <...>-27594 (-----) [005] .... 82316.017144: binder_transaction_received: transaction=1569461
51450           <...>-27594 (-----) [005] ...1 82316.017218: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
51451           <...>-27594 (-----) [005] ...1 82316.017223: tracing_mark_write: E|27550
51452           <...>-27594 (-----) [005] .... 82316.017237: binder_transaction: transaction=1569462 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
51453           <...>-27594 (-----) [005] .... 82316.017240: binder_transaction_alloc_buf: transaction=1569462 data_size=48 offsets_size=0
51454           <...>-27594 (-----) [005] ...2 82316.017242: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
51455           <...>-27594 (-----) [005] d..4 82316.017244: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
51456           <...>-27594 (-----) [005] dn.5 82316.017254: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
51457           <...>-27594 (-----) [005] d..2 82316.017261: sched_switch: prev_comm=id.nn.benchmark prev_pid=27594 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
51458<...>-770 ( 770) [005] .... 82316.017269: binder_transaction_received: transaction=1569462
51459<...>-770 ( 770) [005] ...1 82316.017285: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
51460  surfaceflinger-8858  ( 8858) [003] d..1 82316.017292: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
51461  surfaceflinger-8858  ( 8858) [003] d..2 82316.017312: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
51462          <idle>-0     (-----) [002] .n.1 82316.017319: cpu_idle: state=4294967295 cpu_id=2
51463          <idle>-0     (-----) [002] d..2 82316.017328: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
51464<...>-770 ( 770) [005] ...1 82316.017365: tracing_mark_write: E|770
51465<...>-770 ( 770) [005] .... 82316.017372: binder_transaction: transaction=1569463 dest_node=0 dest_proc=27550 dest_thread=27594 reply=1 flags=0x0 code=0x0
51466<...>-770 ( 770) [005] .... 82316.017375: binder_transaction_alloc_buf: transaction=1569463 data_size=168 offsets_size=32
51467   sfEventThread-8882  ( 8858) [002] d..2 82316.017380: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
51468<...>-770 ( 770) [005] .... 82316.017380: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
51469<...>-770 ( 770) [005] d..2 82316.017415: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27594 next_prio=110
51470           <...>-27594 (-----) [005] .... 82316.017425: binder_transaction_received: transaction=1569463
51471  surfaceflinger-8858  ( 8858) [003] ...1 82316.017503: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
51472<...>-581 ( 571) [002] d..2 82316.017509: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51473  surfaceflinger-8858  ( 8858) [003] ...1 82316.017510: tracing_mark_write: E|8858
51474          <idle>-0     (-----) [002] d..1 82316.017527: cpu_idle: state=0 cpu_id=2
51475  surfaceflinger-8858  ( 8858) [003] .... 82316.017563: binder_transaction: transaction=1569464 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
51476  surfaceflinger-8858  ( 8858) [003] .... 82316.017568: binder_transaction_alloc_buf: transaction=1569464 data_size=540 offsets_size=96
51477  surfaceflinger-8858  ( 8858) [003] ...2 82316.017593: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
51478  surfaceflinger-8858  ( 8858) [003] d..4 82316.017602: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
51479  surfaceflinger-8858  ( 8858) [003] d..5 82316.017622: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
51480          <idle>-0     (-----) [002] .n.1 82316.017629: cpu_idle: state=4294967295 cpu_id=2
51481          <idle>-0     (-----) [002] d..2 82316.017640: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
51482 [email protected]   (  619) [002] .... 82316.017652: binder_transaction_received: transaction=1569464
51483  surfaceflinger-8858  ( 8858) [003] d..2 82316.017654: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51484          <idle>-0     (-----) [003] d..1 82316.017668: cpu_idle: state=0 cpu_id=3
51485 [email protected]   (  619) [002] ...1 82316.017699: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
51486           <...>-27594 (-----) [005] ...1 82316.017699: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
51487           <...>-27594 (-----) [005] ...1 82316.017710: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
51488           <...>-27594 (-----) [005] ...1 82316.017714: tracing_mark_write: E|27550
51489           <...>-27594 (-----) [005] .... 82316.017779: binder_transaction: transaction=1569465 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
51490           <...>-27594 (-----) [005] .... 82316.017783: binder_transaction_alloc_buf: transaction=1569465 data_size=556 offsets_size=104
51491           <...>-27594 (-----) [005] ...2 82316.017797: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
51492           <...>-27594 (-----) [005] d..4 82316.017800: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51493 [email protected]   (  619) [002] ...1 82316.017805: tracing_mark_write: B|619|HWCSession::PresentDisplay::
51494           <...>-27594 (-----) [005] dn.5 82316.017811: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51495           <...>-27594 (-----) [005] d..2 82316.017818: sched_switch: prev_comm=id.nn.benchmark prev_pid=27594 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51496<...>-5340 ( 788) [005] .... 82316.017828: binder_transaction_received: transaction=1569465
51497<...>-5340 ( 788) [005] ...1 82316.017876: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
51498<...>-5340 ( 788) [005] d..2 82316.017920: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
51499<...>-5340 ( 788) [005] d..2 82316.017944: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27594 next_prio=110
51500 [email protected]   (  619) [002] d.h1 82316.017949: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
51501           <...>-27594 (-----) [005] d..2 82316.017967: sched_switch: prev_comm=id.nn.benchmark prev_pid=27594 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
51502          <idle>-0     (-----) [005] d..1 82316.017984: cpu_idle: state=0 cpu_id=5
51503          <idle>-0     (-----) [000] d.h2 82316.017997: sched_waking: comm=CCodecWatchdog pid=25284 prio=120 target_cpu=000
51504 [email protected]   (  619) [002] ...1 82316.018003: tracing_mark_write: B|619|HWDeviceDRM::Commit::
51505          <idle>-0     (-----) [000] dnh3 82316.018015: sched_wakeup: comm=CCodecWatchdog pid=25284 prio=120 target_cpu=000
51506 [email protected]   (  619) [002] ...1 82316.018017: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
51507          <idle>-0     (-----) [000] .n.1 82316.018023: cpu_idle: state=4294967295 cpu_id=0
51508          <idle>-0     (-----) [000] d..2 82316.018036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25284 next_prio=120
51509  CCodecWatchdog-25284 (  900) [000] d..2 82316.018150: sched_switch: prev_comm=CCodecWatchdog prev_pid=25284 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
51510<...>-87 ( 87) [000] d..2 82316.018193: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51511 [email protected]   (  619) [002] d.h3 82316.018203: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
51512          <idle>-0     (-----) [000] d..1 82316.018210: cpu_idle: state=0 cpu_id=0
51513 [email protected]   (  619) [002] d.h4 82316.018249: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
51514 [email protected]   (  619) [002] d.h3 82316.018284: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51515          <idle>-0     (-----) [005] dnh2 82316.018306: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51516          <idle>-0     (-----) [005] .n.1 82316.018311: cpu_idle: state=4294967295 cpu_id=5
51517          <idle>-0     (-----) [005] d..2 82316.018319: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51518<...>-5340 ( 788) [005] d..1 82316.018371: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
51519 [email protected]   (  619) [002] d.h1 82316.018395: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
51520          <idle>-0     (-----) [003] d.s2 82316.018471: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
51521          <idle>-0     (-----) [001] d.s2 82316.018473: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
51522 [email protected]   (  619) [002] d.s2 82316.018477: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
51523          <idle>-0     (-----) [003] dns3 82316.018491: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
51524          <idle>-0     (-----) [001] dns3 82316.018494: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
51525 [email protected]   (  619) [002] d.s3 82316.018499: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
51526          <idle>-0     (-----) [001] .n.1 82316.018507: cpu_idle: state=4294967295 cpu_id=1
51527          <idle>-0     (-----) [003] .n.1 82316.018519: cpu_idle: state=4294967295 cpu_id=3
51528          <idle>-0     (-----) [001] d..2 82316.018521: 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
51529          <idle>-0     (-----) [003] d..2 82316.018530: 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
51530<...>-8 ( 8) [003] d..2 82316.018540: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
51531<...>-5340 ( 788) [005] d..2 82316.018553: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51532     rcu_preempt-7     (    7) [001] d..2 82316.018572: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
51533          <idle>-0     (-----) [000] dnh2 82316.018577: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51534<...>-5340 ( 788) [005] d..2 82316.018579: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
51535          <idle>-0     (-----) [000] .n.1 82316.018585: cpu_idle: state=4294967295 cpu_id=0
51536<...>-8 ( 8) [003] d..3 82316.018592: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
51537          <idle>-0     (-----) [005] d..1 82316.018593: cpu_idle: state=0 cpu_id=5
51538          <idle>-0     (-----) [000] d..2 82316.018596: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
51539<...>-8 ( 8) [003] d..2 82316.018606: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
51540 neuralnetworks@-13088 (  788) [001] d..2 82316.018619: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
51541<...>-46 ( 46) [001] d..2 82316.018632: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
51542<...>-87 ( 87) [000] d..2 82316.018636: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51543<...>-46 ( 46) [001] d..3 82316.018676: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
51544          <idle>-0     (-----) [000] d..2 82316.018695: 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
51545<...>-46 ( 46) [001] d..2 82316.018701: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51546<...>-8 ( 8) [000] d..2 82316.018722: 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
51547          <idle>-0     (-----) [000] d..1 82316.018734: cpu_idle: state=0 cpu_id=0
51548          <idle>-0     (-----) [001] d..1 82316.018748: cpu_idle: state=0 cpu_id=1
51549  kworker/u16:15-1311  ( 1311) [003] d..2 82316.018893: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51550 [email protected]   (  619) [002] d..2 82316.018907: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
51551          <idle>-0     (-----) [003] d..1 82316.018909: cpu_idle: state=0 cpu_id=3
51552 [email protected]   (  619) [002] d..3 82316.018931: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
51553          <idle>-0     (-----) [001] .n.1 82316.018936: cpu_idle: state=4294967295 cpu_id=1
51554          <idle>-0     (-----) [001] d..2 82316.018948: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
51555          <idle>-0     (-----) [005] ...1 82316.018980: cpu_idle: state=4294967295 cpu_id=5
51556          <idle>-0     (-----) [005] d..1 82316.018983: cpu_idle: state=0 cpu_id=5
51557 [email protected]   (  619) [002] ...1 82316.019036: tracing_mark_write: E|619
51558 [email protected]   (  619) [002] ...1 82316.019043: tracing_mark_write: E|619
51559 [email protected]   (  619) [002] ...1 82316.019108: tracing_mark_write: E|619
51560 [email protected]   (  619) [002] ...1 82316.019157: tracing_mark_write: E|619
51561 [email protected]   (  619) [002] .... 82316.019173: binder_transaction: transaction=1569468 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
51562 [email protected]   (  619) [002] .... 82316.019178: binder_transaction_alloc_buf: transaction=1569468 data_size=576 offsets_size=112
51563 [email protected]   (  619) [002] d..2 82316.019198: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
51564 [email protected]   (  619) [002] d..3 82316.019216: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
51565 [email protected]   (  619) [002] .... 82316.019221: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
51566          <idle>-0     (-----) [003] .n.1 82316.019223: cpu_idle: state=4294967295 cpu_id=3
51567          <idle>-0     (-----) [003] d..2 82316.019234: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
51568  surfaceflinger-8858  ( 8858) [003] .... 82316.019243: binder_transaction_received: transaction=1569468
51569 [email protected]   (  619) [002] d..2 82316.019295: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
51570<...>-86 ( 86) [002] d..2 82316.019350: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51571          <idle>-0     (-----) [002] d..1 82316.019370: cpu_idle: state=0 cpu_id=2
51572 crtc_commit:111-321   (  321) [001] d..2 82316.019665: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
51573          <idle>-0     (-----) [001] d..1 82316.019679: cpu_idle: state=0 cpu_id=1
51574  surfaceflinger-8858  ( 8858) [003] d..2 82316.019687: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51575          <idle>-0     (-----) [003] d..1 82316.019706: cpu_idle: state=0 cpu_id=3
51576          <idle>-0     (-----) [002] d.h4 82316.020318: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51577          <idle>-0     (-----) [005] dnh2 82316.020339: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51578          <idle>-0     (-----) [005] .n.1 82316.020342: cpu_idle: state=4294967295 cpu_id=5
51579          <idle>-0     (-----) [005] d..2 82316.020351: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51580          <idle>-0     (-----) [002] ...1 82316.020361: cpu_idle: state=4294967295 cpu_id=2
51581          <idle>-0     (-----) [002] d..1 82316.020367: cpu_idle: state=0 cpu_id=2
51582<...>-5340 ( 788) [005] d..1 82316.020404: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
51583          <idle>-0     (-----) [001] dnh2 82316.020431: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
51584          <idle>-0     (-----) [001] .n.1 82316.020438: cpu_idle: state=4294967295 cpu_id=1
51585          <idle>-0     (-----) [001] d..2 82316.020449: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
51586<...>-5340 ( 788) [005] ...1 82316.020496: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
51587<...>-5340 ( 788) [005] ...1 82316.020500: tracing_mark_write: E|788
51588 neuralnetworks@-13088 (  788) [001] d..2 82316.020516: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51589<...>-5340 ( 788) [005] .... 82316.020517: binder_transaction: transaction=1569469 dest_node=1569466 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
51590<...>-5340 ( 788) [005] .... 82316.020520: binder_transaction_alloc_buf: transaction=1569469 data_size=60 offsets_size=0
51591<...>-5340 ( 788) [005] d..4 82316.020523: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
51592          <idle>-0     (-----) [001] d..1 82316.020528: cpu_idle: state=0 cpu_id=1
51593<...>-5340 ( 788) [005] d..5 82316.020536: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
51594          <idle>-0     (-----) [004] .n.1 82316.020543: cpu_idle: state=4294967295 cpu_id=4
51595          <idle>-0     (-----) [004] d..2 82316.020551: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
51596           <...>-27571 (-----) [004] .... 82316.020557: binder_transaction_received: transaction=1569469
51597<...>-5340 ( 788) [005] ...1 82316.020559: tracing_mark_write: E|788
51598<...>-5340 ( 788) [005] .... 82316.020565: binder_transaction: transaction=1569470 dest_node=0 dest_proc=27550 dest_thread=27594 reply=1 flags=0x0 code=0x0
51599<...>-5340 ( 788) [005] .... 82316.020567: binder_transaction_alloc_buf: transaction=1569470 data_size=8 offsets_size=0
51600<...>-5340 ( 788) [005] d..2 82316.020569: sched_waking: comm=id.nn.benchmark pid=27594 prio=110 target_cpu=005
51601<...>-5340 ( 788) [005] d..3 82316.020576: sched_wakeup: comm=id.nn.benchmark pid=27594 prio=110 target_cpu=005
51602           <...>-27571 (-----) [004] ...1 82316.020577: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
51603<...>-5340 ( 788) [005] .... 82316.020578: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
51604           <...>-27571 (-----) [004] ...1 82316.020583: tracing_mark_write: E|27550
51605           <...>-27571 (-----) [004] d..2 82316.020613: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51606          <idle>-0     (-----) [004] d..1 82316.020621: cpu_idle: state=0 cpu_id=4
51607<...>-5340 ( 788) [005] d..2 82316.020621: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27594 next_prio=110
51608           <...>-27594 (-----) [005] .... 82316.020631: binder_transaction_received: transaction=1569470
51609           <...>-27594 (-----) [005] ...1 82316.020669: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
51610           <...>-27594 (-----) [005] ...1 82316.020675: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
51611           <...>-27594 (-----) [005] ...1 82316.020702: tracing_mark_write: E|27550
51612           <...>-27594 (-----) [005] ...1 82316.020706: tracing_mark_write: E|27550
51613           <...>-27594 (-----) [005] ...1 82316.020710: tracing_mark_write: E|27550
51614           <...>-27594 (-----) [005] ...1 82316.020904: tracing_mark_write: E|27550
51615           <...>-27594 (-----) [005] d..1 82316.020918: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51616           <...>-27594 (-----) [005] d..2 82316.020934: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51617          <idle>-0     (-----) [004] .n.1 82316.020938: cpu_idle: state=4294967295 cpu_id=4
51618          <idle>-0     (-----) [004] d..2 82316.020945: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
51619           <...>-27550 (-----) [004] d..2 82316.020966: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51620          <idle>-0     (-----) [004] d..1 82316.020975: cpu_idle: state=0 cpu_id=4
51621           <...>-27594 (-----) [005] d..1 82316.021026: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51622           <...>-27594 (-----) [005] d..2 82316.021036: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51623          <idle>-0     (-----) [004] .n.1 82316.021041: cpu_idle: state=4294967295 cpu_id=4
51624          <idle>-0     (-----) [004] d..2 82316.021048: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
51625           <...>-27594 (-----) [005] d..2 82316.021077: sched_switch: prev_comm=id.nn.benchmark prev_pid=27594 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
51626           <...>-27550 (-----) [004] ...1 82316.021082: tracing_mark_write: E|27550
51627           <...>-27550 (-----) [004] ...1 82316.021087: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
51628           <...>-27550 (-----) [004] ...1 82316.021093: tracing_mark_write: E|27550
51629           <...>-27550 (-----) [004] ...1 82316.021097: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
51630          <idle>-0     (-----) [005] d..1 82316.021098: cpu_idle: state=0 cpu_id=5
51631           <...>-27550 (-----) [004] ...1 82316.021101: tracing_mark_write: E|27550
51632           <...>-27550 (-----) [004] ...1 82316.021106: tracing_mark_write: E|27550
51633           <...>-27550 (-----) [004] ...1 82316.021220: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
51634          <idle>-0     (-----) [003] ...1 82316.021235: cpu_idle: state=4294967295 cpu_id=3
51635          <idle>-0     (-----) [003] d..1 82316.021240: cpu_idle: state=0 cpu_id=3
51636           <...>-27550 (-----) [004] ...1 82316.021278: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
51637           <...>-27550 (-----) [004] ...1 82316.021283: tracing_mark_write: E|27550
51638           <...>-27550 (-----) [004] ...1 82316.021287: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
51639           <...>-27550 (-----) [004] ...1 82316.021293: tracing_mark_write: E|27550
51640           <...>-27550 (-----) [004] ...1 82316.021297: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
51641           <...>-27550 (-----) [004] ...1 82316.021301: tracing_mark_write: E|27550
51642           <...>-27550 (-----) [004] ...1 82316.021305: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
51643          <idle>-0     (-----) [005] .n.1 82316.021403: cpu_idle: state=4294967295 cpu_id=5
51644           <...>-27550 (-----) [004] ...1 82316.021405: tracing_mark_write: E|27550
51645           <...>-27550 (-----) [004] ...1 82316.021409: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
51646          <idle>-0     (-----) [005] d..2 82316.021412: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27595 next_prio=110
51647           <...>-27550 (-----) [004] d..2 82316.021427: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51648          <idle>-0     (-----) [004] d..1 82316.021441: cpu_idle: state=0 cpu_id=4
51649           <...>-27595 (-----) [005] ...1 82316.021473: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
51650           <...>-27595 (-----) [005] ...1 82316.021489: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
51651           <...>-27595 (-----) [005] ...1 82316.021492: tracing_mark_write: E|27550
51652           <...>-27595 (-----) [005] .... 82316.021515: binder_transaction: transaction=1569471 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
51653           <...>-27595 (-----) [005] .... 82316.021519: binder_transaction_alloc_buf: transaction=1569471 data_size=48 offsets_size=0
51654           <...>-27595 (-----) [005] ...2 82316.021522: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
51655           <...>-27595 (-----) [005] d..4 82316.021524: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
51656           <...>-27595 (-----) [005] dn.5 82316.021535: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
51657           <...>-27595 (-----) [005] d..2 82316.021541: sched_switch: prev_comm=id.nn.benchmark prev_pid=27595 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
51658<...>-770 ( 770) [005] .... 82316.021551: binder_transaction_received: transaction=1569471
51659<...>-770 ( 770) [005] ...1 82316.021577: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
51660<...>-770 ( 770) [005] d..2 82316.021663: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
51661          <idle>-0     (-----) [000] dnh2 82316.021703: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
51662          <idle>-0     (-----) [000] .n.1 82316.021709: cpu_idle: state=4294967295 cpu_id=0
51663<...>-770 ( 770) [005] ...1 82316.021717: tracing_mark_write: E|770
51664          <idle>-0     (-----) [000] d..2 82316.021721: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
51665<...>-770 ( 770) [005] .... 82316.021725: binder_transaction: transaction=1569472 dest_node=0 dest_proc=27550 dest_thread=27595 reply=1 flags=0x0 code=0x0
51666<...>-770 ( 770) [005] .... 82316.021728: binder_transaction_alloc_buf: transaction=1569472 data_size=168 offsets_size=32
51667<...>-770 ( 770) [005] .... 82316.021735: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
51668<...>-770 ( 770) [005] d..2 82316.021771: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27595 next_prio=110
51669           <...>-27595 (-----) [005] .... 82316.021812: binder_transaction_received: transaction=1569472
51670<...>-581 ( 571) [000] d..2 82316.021877: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51671           <...>-27595 (-----) [005] ...1 82316.021885: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
51672          <idle>-0     (-----) [000] d..1 82316.021890: cpu_idle: state=0 cpu_id=0
51673           <...>-27595 (-----) [005] ...1 82316.021890: tracing_mark_write: E|27550
51674           <...>-27595 (-----) [005] .... 82316.021904: binder_transaction: transaction=1569473 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
51675           <...>-27595 (-----) [005] .... 82316.021907: binder_transaction_alloc_buf: transaction=1569473 data_size=48 offsets_size=0
51676           <...>-27595 (-----) [005] ...2 82316.021909: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
51677           <...>-27595 (-----) [005] d..4 82316.021912: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
51678           <...>-27595 (-----) [005] dn.5 82316.021921: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
51679           <...>-27595 (-----) [005] d..2 82316.021928: sched_switch: prev_comm=id.nn.benchmark prev_pid=27595 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
51680<...>-770 ( 770) [005] .... 82316.021936: binder_transaction_received: transaction=1569473
51681<...>-770 ( 770) [005] ...1 82316.021953: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
51682<...>-770 ( 770) [005] d..2 82316.022011: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
51683          <idle>-0     (-----) [000] dnh2 82316.022036: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
51684          <idle>-0     (-----) [000] .n.1 82316.022042: cpu_idle: state=4294967295 cpu_id=0
51685<...>-770 ( 770) [005] ...1 82316.022045: tracing_mark_write: E|770
51686          <idle>-0     (-----) [000] d..2 82316.022051: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
51687<...>-770 ( 770) [005] .... 82316.022053: binder_transaction: transaction=1569474 dest_node=0 dest_proc=27550 dest_thread=27595 reply=1 flags=0x0 code=0x0
51688<...>-770 ( 770) [005] .... 82316.022055: binder_transaction_alloc_buf: transaction=1569474 data_size=168 offsets_size=32
51689<...>-770 ( 770) [005] .... 82316.022061: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
51690<...>-770 ( 770) [005] d..2 82316.022095: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27595 next_prio=110
51691           <...>-27595 (-----) [005] .... 82316.022106: binder_transaction_received: transaction=1569474
51692<...>-581 ( 571) [000] d..2 82316.022119: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51693          <idle>-0     (-----) [000] d..1 82316.022129: cpu_idle: state=0 cpu_id=0
51694           <...>-27595 (-----) [005] ...1 82316.022376: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
51695           <...>-27595 (-----) [005] ...1 82316.022386: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
51696           <...>-27595 (-----) [005] ...1 82316.022390: tracing_mark_write: E|27550
51697           <...>-27595 (-----) [005] .... 82316.022451: binder_transaction: transaction=1569475 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
51698           <...>-27595 (-----) [005] .... 82316.022454: binder_transaction_alloc_buf: transaction=1569475 data_size=556 offsets_size=104
51699           <...>-27595 (-----) [005] ...2 82316.022468: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
51700           <...>-27595 (-----) [005] d..4 82316.022471: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51701           <...>-27595 (-----) [005] dn.5 82316.022482: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51702           <...>-27595 (-----) [005] d..2 82316.022489: sched_switch: prev_comm=id.nn.benchmark prev_pid=27595 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51703<...>-5340 ( 788) [005] .... 82316.022498: binder_transaction_received: transaction=1569475
51704<...>-5340 ( 788) [005] ...1 82316.022545: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
51705<...>-5340 ( 788) [005] d..2 82316.022588: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51706<...>-5340 ( 788) [005] d..2 82316.022613: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27595 next_prio=110
51707          <idle>-0     (-----) [000] dnh2 82316.022616: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51708          <idle>-0     (-----) [000] .n.1 82316.022622: cpu_idle: state=4294967295 cpu_id=0
51709          <idle>-0     (-----) [000] d..2 82316.022630: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
51710           <...>-27595 (-----) [005] d..2 82316.022636: sched_switch: prev_comm=id.nn.benchmark prev_pid=27595 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
51711          <idle>-0     (-----) [005] d..1 82316.022654: cpu_idle: state=0 cpu_id=5
51712<...>-87 ( 87) [000] d..2 82316.022672: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51713          <idle>-0     (-----) [002] d.h4 82316.022679: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
51714          <idle>-0     (-----) [000] d..1 82316.022680: cpu_idle: state=0 cpu_id=0
51715          <idle>-0     (-----) [002] dnh5 82316.022697: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
51716          <idle>-0     (-----) [002] .n.1 82316.022705: cpu_idle: state=4294967295 cpu_id=2
51717          <idle>-0     (-----) [002] d..2 82316.022718: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
51718<...>-86 ( 86) [002] d..2 82316.022755: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51719          <idle>-0     (-----) [002] d.h5 82316.022776: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51720          <idle>-0     (-----) [005] dnh2 82316.022798: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51721          <idle>-0     (-----) [005] .n.1 82316.022802: cpu_idle: state=4294967295 cpu_id=5
51722          <idle>-0     (-----) [005] d..2 82316.022810: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51723          <idle>-0     (-----) [002] d..1 82316.022823: cpu_idle: state=0 cpu_id=2
51724<...>-5340 ( 788) [005] d..1 82316.022862: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
51725          <idle>-0     (-----) [000] dnh2 82316.022899: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
51726          <idle>-0     (-----) [000] .n.1 82316.022905: cpu_idle: state=4294967295 cpu_id=0
51727          <idle>-0     (-----) [000] d..2 82316.022913: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
51728 neuralnetworks@-13088 (  788) [000] d..2 82316.022967: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51729          <idle>-0     (-----) [000] d..1 82316.022977: cpu_idle: state=0 cpu_id=0
51730<...>-5340 ( 788) [005] d..2 82316.023020: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51731          <idle>-0     (-----) [000] dnh2 82316.023041: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51732<...>-5340 ( 788) [005] d..2 82316.023046: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
51733          <idle>-0     (-----) [000] .n.1 82316.023048: cpu_idle: state=4294967295 cpu_id=0
51734          <idle>-0     (-----) [000] d..2 82316.023056: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
51735          <idle>-0     (-----) [005] d..1 82316.023060: cpu_idle: state=0 cpu_id=5
51736<...>-87 ( 87) [000] d..2 82316.023094: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51737          <idle>-0     (-----) [002] d.h4 82316.023095: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
51738          <idle>-0     (-----) [000] d..1 82316.023102: cpu_idle: state=0 cpu_id=0
51739          <idle>-0     (-----) [002] dnh5 82316.023105: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
51740          <idle>-0     (-----) [002] .n.1 82316.023114: cpu_idle: state=4294967295 cpu_id=2
51741          <idle>-0     (-----) [002] d..2 82316.023125: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
51742<...>-86 ( 86) [002] d..2 82316.023160: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51743          <idle>-0     (-----) [002] d..1 82316.023173: cpu_idle: state=0 cpu_id=2
51744          <idle>-0     (-----) [005] ...1 82316.023433: cpu_idle: state=4294967295 cpu_id=5
51745          <idle>-0     (-----) [005] d..1 82316.023437: cpu_idle: state=0 cpu_id=5
51746          <idle>-0     (-----) [002] ...1 82316.024594: cpu_idle: state=4294967295 cpu_id=2
51747          <idle>-0     (-----) [002] d..1 82316.024599: cpu_idle: state=0 cpu_id=2
51748          <idle>-0     (-----) [000] d.h5 82316.024728: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
51749          <idle>-0     (-----) [000] d.h6 82316.024749: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
51750          <idle>-0     (-----) [000] d.h5 82316.024754: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
51751          <idle>-0     (-----) [002] .n.1 82316.024754: cpu_idle: state=4294967295 cpu_id=2
51752          <idle>-0     (-----) [000] d.h6 82316.024766: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
51753          <idle>-0     (-----) [001] .n.1 82316.024772: cpu_idle: state=4294967295 cpu_id=1
51754          <idle>-0     (-----) [002] dnh4 82316.024778: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51755          <idle>-0     (-----) [000] ...1 82316.024781: cpu_idle: state=4294967295 cpu_id=0
51756          <idle>-0     (-----) [001] d..2 82316.024783: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
51757          <idle>-0     (-----) [000] d..1 82316.024787: cpu_idle: state=0 cpu_id=0
51758          <idle>-0     (-----) [005] dnh2 82316.024798: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51759          <idle>-0     (-----) [005] .n.1 82316.024802: cpu_idle: state=4294967295 cpu_id=5
51760          <idle>-0     (-----) [005] d..2 82316.024809: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51761          <idle>-0     (-----) [002] d..2 82316.024818: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
51762  crtc_event:111-322   (  322) [002] d..2 82316.024854: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51763<...>-5340 ( 788) [005] d..1 82316.024856: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
51764          <idle>-0     (-----) [002] d..1 82316.024866: cpu_idle: state=0 cpu_id=2
51765          <idle>-0     (-----) [000] dnh2 82316.024881: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
51766          <idle>-0     (-----) [000] .n.1 82316.024886: cpu_idle: state=4294967295 cpu_id=0
51767          <idle>-0     (-----) [000] d..2 82316.024895: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
51768<...>-5340 ( 788) [005] ...1 82316.024945: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
51769<...>-5340 ( 788) [005] ...1 82316.024949: tracing_mark_write: E|788
51770 crtc_commit:111-321   (  321) [001] d..2 82316.024958: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
51771 neuralnetworks@-13088 (  788) [000] d..2 82316.024960: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51772<...>-5340 ( 788) [005] .... 82316.024964: binder_transaction: transaction=1569478 dest_node=1569476 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
51773<...>-5340 ( 788) [005] .... 82316.024967: binder_transaction_alloc_buf: transaction=1569478 data_size=60 offsets_size=0
51774          <idle>-0     (-----) [001] d..1 82316.024967: cpu_idle: state=0 cpu_id=1
51775          <idle>-0     (-----) [000] d..1 82316.024969: cpu_idle: state=0 cpu_id=0
51776<...>-5340 ( 788) [005] d..4 82316.024970: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
51777<...>-5340 ( 788) [005] d..5 82316.024982: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
51778          <idle>-0     (-----) [004] .n.1 82316.024988: cpu_idle: state=4294967295 cpu_id=4
51779          <idle>-0     (-----) [004] d..2 82316.024998: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
51780           <...>-27571 (-----) [004] .... 82316.025003: binder_transaction_received: transaction=1569478
51781<...>-5340 ( 788) [005] ...1 82316.025004: tracing_mark_write: E|788
51782<...>-5340 ( 788) [005] .... 82316.025011: binder_transaction: transaction=1569479 dest_node=0 dest_proc=27550 dest_thread=27595 reply=1 flags=0x0 code=0x0
51783<...>-5340 ( 788) [005] .... 82316.025013: binder_transaction_alloc_buf: transaction=1569479 data_size=8 offsets_size=0
51784<...>-5340 ( 788) [005] d..2 82316.025015: sched_waking: comm=id.nn.benchmark pid=27595 prio=110 target_cpu=005
51785           <...>-27571 (-----) [004] ...1 82316.025021: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
51786<...>-5340 ( 788) [005] d..3 82316.025022: sched_wakeup: comm=id.nn.benchmark pid=27595 prio=110 target_cpu=005
51787<...>-5340 ( 788) [005] .... 82316.025024: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
51788           <...>-27571 (-----) [004] ...1 82316.025027: tracing_mark_write: E|27550
51789           <...>-27571 (-----) [004] d..2 82316.025057: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51790          <idle>-0     (-----) [004] d..1 82316.025065: cpu_idle: state=0 cpu_id=4
51791<...>-5340 ( 788) [005] d..2 82316.025066: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27595 next_prio=110
51792           <...>-27595 (-----) [005] .... 82316.025075: binder_transaction_received: transaction=1569479
51793          <idle>-0     (-----) [001] d.s3 82316.025134: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
51794          <idle>-0     (-----) [000] d.s2 82316.025138: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
51795           <...>-27595 (-----) [005] ...1 82316.025143: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
51796           <...>-27595 (-----) [005] ...1 82316.025150: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
51797          <idle>-0     (-----) [001] d.s4 82316.025152: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
51798          <idle>-0     (-----) [000] dns3 82316.025156: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
51799          <idle>-0     (-----) [001] d.s2 82316.025157: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
51800          <idle>-0     (-----) [002] .n.1 82316.025158: cpu_idle: state=4294967295 cpu_id=2
51801          <idle>-0     (-----) [002] d..2 82316.025170: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
51802          <idle>-0     (-----) [000] .n.1 82316.025172: cpu_idle: state=4294967295 cpu_id=0
51803          <idle>-0     (-----) [001] dns3 82316.025174: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
51804           <...>-27595 (-----) [005] ...1 82316.025176: tracing_mark_write: E|27550
51805           <...>-27595 (-----) [005] ...1 82316.025180: tracing_mark_write: E|27550
51806          <idle>-0     (-----) [000] d..2 82316.025181: 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
51807           <...>-27595 (-----) [005] ...1 82316.025184: tracing_mark_write: E|27550
51808          <idle>-0     (-----) [001] .n.1 82316.025192: cpu_idle: state=4294967295 cpu_id=1
51809          <idle>-0     (-----) [001] d..2 82316.025206: 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
51810  crtc_event:111-322   (  322) [002] d..2 82316.025207: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51811<...>-8 ( 8) [000] d..2 82316.025216: 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
51812     rcu_preempt-7     (    7) [001] d..2 82316.025216: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
51813          <idle>-0     (-----) [002] d..1 82316.025218: cpu_idle: state=0 cpu_id=2
51814          <idle>-0     (-----) [000] d..1 82316.025230: cpu_idle: state=0 cpu_id=0
51815     rcu_preempt-7     (    7) [001] d..3 82316.025240: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
51816          <idle>-0     (-----) [000] .n.1 82316.025247: cpu_idle: state=4294967295 cpu_id=0
51817          <idle>-0     (-----) [000] d..2 82316.025259: 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
51818     rcu_preempt-7     (    7) [001] d..2 82316.025265: 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
51819         rcuop/4-45    (   45) [000] d..2 82316.025267: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
51820          <idle>-0     (-----) [001] d..1 82316.025307: cpu_idle: state=0 cpu_id=1
51821         rcuop/4-45    (   45) [000] d..3 82316.025325: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
51822          <idle>-0     (-----) [001] .n.1 82316.025331: cpu_idle: state=4294967295 cpu_id=1
51823          <idle>-0     (-----) [001] d..2 82316.025344: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
51824         rcuop/4-45    (   45) [000] d..2 82316.025348: 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
51825          <idle>-0     (-----) [000] d..1 82316.025360: cpu_idle: state=0 cpu_id=0
51826           <...>-27595 (-----) [005] ...1 82316.025368: tracing_mark_write: E|27550
51827           <...>-27595 (-----) [005] d..1 82316.025381: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51828           <...>-27595 (-----) [005] d..2 82316.025397: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51829          <idle>-0     (-----) [004] .n.1 82316.025402: cpu_idle: state=4294967295 cpu_id=4
51830          <idle>-0     (-----) [004] d..2 82316.025409: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
51831         rcuop/5-53    (   53) [001] d..2 82316.025425: 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
51832           <...>-27550 (-----) [004] d..2 82316.025429: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51833          <idle>-0     (-----) [001] d..1 82316.025437: cpu_idle: state=0 cpu_id=1
51834          <idle>-0     (-----) [004] d..1 82316.025438: cpu_idle: state=0 cpu_id=4
51835           <...>-27595 (-----) [005] d..1 82316.025486: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51836           <...>-27595 (-----) [005] d..2 82316.025495: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
51837          <idle>-0     (-----) [004] .n.1 82316.025500: cpu_idle: state=4294967295 cpu_id=4
51838          <idle>-0     (-----) [004] d..2 82316.025508: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
51839           <...>-27595 (-----) [005] d..2 82316.025534: sched_switch: prev_comm=id.nn.benchmark prev_pid=27595 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
51840           <...>-27550 (-----) [004] ...1 82316.025540: tracing_mark_write: E|27550
51841           <...>-27550 (-----) [004] ...1 82316.025545: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
51842           <...>-27550 (-----) [004] ...1 82316.025551: tracing_mark_write: E|27550
51843          <idle>-0     (-----) [005] d..1 82316.025554: cpu_idle: state=0 cpu_id=5
51844           <...>-27550 (-----) [004] ...1 82316.025555: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
51845           <...>-27550 (-----) [004] ...1 82316.025559: tracing_mark_write: E|27550
51846           <...>-27550 (-----) [004] ...1 82316.025564: tracing_mark_write: E|27550
51847           <...>-27550 (-----) [004] ...1 82316.025677: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
51848           <...>-27550 (-----) [004] ...1 82316.025736: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
51849           <...>-27550 (-----) [004] ...1 82316.025741: tracing_mark_write: E|27550
51850           <...>-27550 (-----) [004] ...1 82316.025745: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
51851           <...>-27550 (-----) [004] ...1 82316.025751: tracing_mark_write: E|27550
51852           <...>-27550 (-----) [004] ...1 82316.025755: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
51853           <...>-27550 (-----) [004] ...1 82316.025759: tracing_mark_write: E|27550
51854           <...>-27550 (-----) [004] ...1 82316.025763: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
51855          <idle>-0     (-----) [005] .n.1 82316.025858: cpu_idle: state=4294967295 cpu_id=5
51856           <...>-27550 (-----) [004] ...1 82316.025859: tracing_mark_write: E|27550
51857           <...>-27550 (-----) [004] ...1 82316.025863: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
51858          <idle>-0     (-----) [005] d..2 82316.025867: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27596 next_prio=110
51859           <...>-27550 (-----) [004] d..2 82316.025880: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
51860          <idle>-0     (-----) [004] d..1 82316.025895: cpu_idle: state=0 cpu_id=4
51861           <...>-27596 (-----) [005] ...1 82316.025927: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
51862           <...>-27596 (-----) [005] ...1 82316.025942: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
51863           <...>-27596 (-----) [005] ...1 82316.025946: tracing_mark_write: E|27550
51864           <...>-27596 (-----) [005] .... 82316.025966: binder_transaction: transaction=1569480 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
51865           <...>-27596 (-----) [005] .... 82316.025969: binder_transaction_alloc_buf: transaction=1569480 data_size=48 offsets_size=0
51866           <...>-27596 (-----) [005] ...2 82316.025972: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
51867           <...>-27596 (-----) [005] d..4 82316.025975: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
51868           <...>-27596 (-----) [005] dn.5 82316.025985: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
51869           <...>-27596 (-----) [005] d..2 82316.025992: sched_switch: prev_comm=id.nn.benchmark prev_pid=27596 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
51870<...>-770 ( 770) [005] .... 82316.026002: binder_transaction_received: transaction=1569480
51871<...>-770 ( 770) [005] ...1 82316.026024: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
51872<...>-770 ( 770) [005] d..2 82316.026099: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
51873          <idle>-0     (-----) [000] dnh2 82316.026126: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
51874          <idle>-0     (-----) [000] .n.1 82316.026132: cpu_idle: state=4294967295 cpu_id=0
51875<...>-770 ( 770) [005] ...1 82316.026138: tracing_mark_write: E|770
51876          <idle>-0     (-----) [000] d..2 82316.026142: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
51877<...>-770 ( 770) [005] .... 82316.026146: binder_transaction: transaction=1569481 dest_node=0 dest_proc=27550 dest_thread=27596 reply=1 flags=0x0 code=0x0
51878<...>-770 ( 770) [005] .... 82316.026149: binder_transaction_alloc_buf: transaction=1569481 data_size=168 offsets_size=32
51879<...>-770 ( 770) [005] .... 82316.026156: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
51880<...>-770 ( 770) [005] d..2 82316.026191: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27596 next_prio=110
51881           <...>-27596 (-----) [005] .... 82316.026202: binder_transaction_received: transaction=1569481
51882<...>-581 ( 571) [000] d..2 82316.026222: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51883          <idle>-0     (-----) [000] d..1 82316.026236: cpu_idle: state=0 cpu_id=0
51884           <...>-27596 (-----) [005] ...1 82316.026271: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
51885           <...>-27596 (-----) [005] ...1 82316.026277: tracing_mark_write: E|27550
51886           <...>-27596 (-----) [005] .... 82316.026291: binder_transaction: transaction=1569482 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
51887           <...>-27596 (-----) [005] .... 82316.026294: binder_transaction_alloc_buf: transaction=1569482 data_size=48 offsets_size=0
51888           <...>-27596 (-----) [005] ...2 82316.026296: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
51889           <...>-27596 (-----) [005] d..4 82316.026298: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
51890           <...>-27596 (-----) [005] dn.5 82316.026309: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
51891           <...>-27596 (-----) [005] d..2 82316.026315: sched_switch: prev_comm=id.nn.benchmark prev_pid=27596 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
51892<...>-770 ( 770) [005] .... 82316.026323: binder_transaction_received: transaction=1569482
51893<...>-770 ( 770) [005] ...1 82316.026340: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
51894<...>-770 ( 770) [005] d..2 82316.026396: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
51895          <idle>-0     (-----) [000] dnh2 82316.026420: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
51896          <idle>-0     (-----) [000] .n.1 82316.026426: cpu_idle: state=4294967295 cpu_id=0
51897<...>-770 ( 770) [005] ...1 82316.026430: tracing_mark_write: E|770
51898          <idle>-0     (-----) [000] d..2 82316.026437: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
51899<...>-770 ( 770) [005] .... 82316.026438: binder_transaction: transaction=1569483 dest_node=0 dest_proc=27550 dest_thread=27596 reply=1 flags=0x0 code=0x0
51900<...>-770 ( 770) [005] .... 82316.026440: binder_transaction_alloc_buf: transaction=1569483 data_size=168 offsets_size=32
51901<...>-770 ( 770) [005] .... 82316.026446: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
51902<...>-770 ( 770) [005] d..2 82316.026481: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27596 next_prio=110
51903           <...>-27596 (-----) [005] .... 82316.026491: binder_transaction_received: transaction=1569483
51904<...>-581 ( 571) [000] d..2 82316.026496: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51905          <idle>-0     (-----) [000] d..1 82316.026509: cpu_idle: state=0 cpu_id=0
51906           <...>-27596 (-----) [005] ...1 82316.026768: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
51907           <...>-27596 (-----) [005] ...1 82316.026778: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
51908           <...>-27596 (-----) [005] ...1 82316.026782: tracing_mark_write: E|27550
51909           <...>-27596 (-----) [005] .... 82316.026841: binder_transaction: transaction=1569484 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
51910           <...>-27596 (-----) [005] .... 82316.026844: binder_transaction_alloc_buf: transaction=1569484 data_size=556 offsets_size=104
51911           <...>-27596 (-----) [005] ...2 82316.026858: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
51912           <...>-27596 (-----) [005] d..4 82316.026860: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51913           <...>-27596 (-----) [005] dn.5 82316.026873: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51914           <...>-27596 (-----) [005] d..2 82316.026880: sched_switch: prev_comm=id.nn.benchmark prev_pid=27596 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51915<...>-5340 ( 788) [005] .... 82316.026889: binder_transaction_received: transaction=1569484
51916<...>-5340 ( 788) [005] ...1 82316.026933: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
51917<...>-5340 ( 788) [005] d..2 82316.026976: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51918<...>-5340 ( 788) [005] d..2 82316.027009: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27596 next_prio=110
51919           <...>-27596 (-----) [005] d..2 82316.027031: sched_switch: prev_comm=id.nn.benchmark prev_pid=27596 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
51920          <idle>-0     (-----) [005] d..1 82316.027049: cpu_idle: state=0 cpu_id=5
51921          <idle>-0     (-----) [000] d.h5 82316.027072: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
51922          <idle>-0     (-----) [000] d.h6 82316.027091: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
51923          <idle>-0     (-----) [001] .n.1 82316.027096: cpu_idle: state=4294967295 cpu_id=1
51924          <idle>-0     (-----) [001] d..2 82316.027107: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
51925          <idle>-0     (-----) [000] dnh2 82316.027114: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51926          <idle>-0     (-----) [000] .n.1 82316.027120: cpu_idle: state=4294967295 cpu_id=0
51927          <idle>-0     (-----) [000] d..2 82316.027131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
51928<...>-87 ( 87) [000] d..2 82316.027173: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51929          <idle>-0     (-----) [002] d.h4 82316.027182: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
51930 crtc_commit:111-321   (  321) [001] d..2 82316.027183: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51931          <idle>-0     (-----) [000] d..1 82316.027185: cpu_idle: state=0 cpu_id=0
51932          <idle>-0     (-----) [001] d..1 82316.027194: cpu_idle: state=0 cpu_id=1
51933          <idle>-0     (-----) [002] d.h5 82316.027221: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
51934          <idle>-0     (-----) [001] .n.1 82316.027226: cpu_idle: state=4294967295 cpu_id=1
51935          <idle>-0     (-----) [002] ...1 82316.027238: cpu_idle: state=4294967295 cpu_id=2
51936          <idle>-0     (-----) [001] d..2 82316.027238: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
51937          <idle>-0     (-----) [002] d..1 82316.027245: cpu_idle: state=0 cpu_id=2
51938          <idle>-0     (-----) [002] d.h4 82316.027269: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51939          <idle>-0     (-----) [005] dnh2 82316.027290: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51940          <idle>-0     (-----) [005] .n.1 82316.027294: cpu_idle: state=4294967295 cpu_id=5
51941          <idle>-0     (-----) [005] d..2 82316.027302: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51942          <idle>-0     (-----) [002] ...1 82316.027308: cpu_idle: state=4294967295 cpu_id=2
51943          <idle>-0     (-----) [002] d..1 82316.027314: cpu_idle: state=0 cpu_id=2
51944<...>-86 ( 86) [001] d..2 82316.027320: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51945          <idle>-0     (-----) [001] d..1 82316.027331: cpu_idle: state=0 cpu_id=1
51946<...>-5340 ( 788) [005] d..1 82316.027353: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
51947          <idle>-0     (-----) [000] d.h5 82316.027354: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
51948          <idle>-0     (-----) [000] d.h6 82316.027371: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
51949          <idle>-0     (-----) [002] .n.1 82316.027377: cpu_idle: state=4294967295 cpu_id=2
51950          <idle>-0     (-----) [002] d..2 82316.027388: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
51951          <idle>-0     (-----) [000] dnh2 82316.027396: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
51952          <idle>-0     (-----) [000] .n.1 82316.027401: cpu_idle: state=4294967295 cpu_id=0
51953          <idle>-0     (-----) [000] d..2 82316.027413: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
51954  crtc_event:111-322   (  322) [002] d..2 82316.027416: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51955          <idle>-0     (-----) [002] d..1 82316.027426: cpu_idle: state=0 cpu_id=2
51956 neuralnetworks@-13088 (  788) [000] d..2 82316.027458: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51957          <idle>-0     (-----) [000] d..1 82316.027471: cpu_idle: state=0 cpu_id=0
51958<...>-5340 ( 788) [005] d..2 82316.027499: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51959          <idle>-0     (-----) [000] dnh2 82316.027521: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
51960<...>-5340 ( 788) [005] d..2 82316.027525: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
51961          <idle>-0     (-----) [000] .n.1 82316.027527: cpu_idle: state=4294967295 cpu_id=0
51962          <idle>-0     (-----) [000] d..2 82316.027538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
51963          <idle>-0     (-----) [005] d..1 82316.027539: cpu_idle: state=0 cpu_id=5
51964<...>-87 ( 87) [000] d..2 82316.027577: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
51965          <idle>-0     (-----) [002] d.h4 82316.027578: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
51966          <idle>-0     (-----) [000] d..1 82316.027587: cpu_idle: state=0 cpu_id=0
51967          <idle>-0     (-----) [002] d.h5 82316.027594: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
51968          <idle>-0     (-----) [001] .n.1 82316.027599: cpu_idle: state=4294967295 cpu_id=1
51969          <idle>-0     (-----) [002] ...1 82316.027605: cpu_idle: state=4294967295 cpu_id=2
51970          <idle>-0     (-----) [001] d..2 82316.027611: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
51971          <idle>-0     (-----) [002] d..1 82316.027612: cpu_idle: state=0 cpu_id=2
51972<...>-86 ( 86) [001] d..2 82316.027644: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
51973          <idle>-0     (-----) [001] d..1 82316.027654: cpu_idle: state=0 cpu_id=1
51974          <idle>-0     (-----) [005] ...1 82316.027892: cpu_idle: state=4294967295 cpu_id=5
51975          <idle>-0     (-----) [005] d..1 82316.027896: cpu_idle: state=0 cpu_id=5
51976          <idle>-0     (-----) [002] d..2 82316.028748: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
51977          <idle>-0     (-----) [002] dn.3 82316.028762: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
51978          <idle>-0     (-----) [002] .n.1 82316.028766: cpu_idle: state=4294967295 cpu_id=2
51979          <idle>-0     (-----) [002] d..2 82316.028779: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
51980     ksoftirqd/2-26    (   26) [002] d.s2 82316.028791: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
51981     ksoftirqd/2-26    (   26) [002] d.s3 82316.028829: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
51982     ksoftirqd/2-26    (   26) [002] d..2 82316.028845: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
51983  kworker/u16:15-1311  ( 1311) [002] d..2 82316.028962: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
51984          <idle>-0     (-----) [002] d..1 82316.028975: cpu_idle: state=0 cpu_id=2
51985          <idle>-0     (-----) [003] d.h2 82316.029202: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
51986          <idle>-0     (-----) [003] dnh3 82316.029218: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
51987          <idle>-0     (-----) [003] .n.1 82316.029226: cpu_idle: state=4294967295 cpu_id=3
51988          <idle>-0     (-----) [003] d..2 82316.029237: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
51989        DispSync-8879  ( 8858) [003] d..1 82316.029254: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
51990        DispSync-8879  ( 8858) [003] d..2 82316.029268: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
51991          <idle>-0     (-----) [002] dnh4 82316.029291: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51992        DispSync-8879  ( 8858) [003] d..2 82316.029305: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
51993          <idle>-0     (-----) [005] dnh2 82316.029312: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
51994          <idle>-0     (-----) [005] .n.1 82316.029316: cpu_idle: state=4294967295 cpu_id=5
51995          <idle>-0     (-----) [003] d..1 82316.029316: cpu_idle: state=0 cpu_id=3
51996          <idle>-0     (-----) [005] d..2 82316.029325: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
51997          <idle>-0     (-----) [002] .n.1 82316.029333: cpu_idle: state=4294967295 cpu_id=2
51998          <idle>-0     (-----) [002] d..2 82316.029345: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
51999<...>-5340 ( 788) [005] d..1 82316.029375: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52000          <idle>-0     (-----) [000] dnh2 82316.029399: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52001          <idle>-0     (-----) [000] .n.1 82316.029405: cpu_idle: state=4294967295 cpu_id=0
52002  appEventThread-8881  ( 8858) [002] d..3 82316.029413: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
52003          <idle>-0     (-----) [000] d..2 82316.029416: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
52004<...>-5340 ( 788) [005] ...1 82316.029463: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
52005<...>-5340 ( 788) [005] ...1 82316.029468: tracing_mark_write: E|788
52006  appEventThread-8881  ( 8858) [002] d..4 82316.029472: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
52007 neuralnetworks@-13088 (  788) [000] d..2 82316.029477: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52008          <idle>-0     (-----) [001] .n.1 82316.029478: cpu_idle: state=4294967295 cpu_id=1
52009<...>-5340 ( 788) [005] .... 82316.029483: binder_transaction: transaction=1569487 dest_node=1569485 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
52010<...>-5340 ( 788) [005] .... 82316.029485: binder_transaction_alloc_buf: transaction=1569487 data_size=60 offsets_size=0
52011          <idle>-0     (-----) [000] d..1 82316.029486: cpu_idle: state=0 cpu_id=0
52012<...>-5340 ( 788) [005] d..4 82316.029488: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
52013  appEventThread-8881  ( 8858) [002] d..3 82316.029490: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=001
52014          <idle>-0     (-----) [001] d..2 82316.029490: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
52015<...>-5340 ( 788) [005] d..5 82316.029501: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
52016          <idle>-0     (-----) [004] .n.1 82316.029506: cpu_idle: state=4294967295 cpu_id=4
52017          <idle>-0     (-----) [004] d..2 82316.029515: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
52018  appEventThread-8881  ( 8858) [002] d..4 82316.029516: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
52019           <...>-27571 (-----) [004] .... 82316.029520: binder_transaction_received: transaction=1569487
52020          <idle>-0     (-----) [000] .n.1 82316.029522: cpu_idle: state=4294967295 cpu_id=0
52021<...>-5340 ( 788) [005] ...1 82316.029522: tracing_mark_write: E|788
52022<...>-5340 ( 788) [005] .... 82316.029528: binder_transaction: transaction=1569488 dest_node=0 dest_proc=27550 dest_thread=27596 reply=1 flags=0x0 code=0x0
52023<...>-5340 ( 788) [005] .... 82316.029531: binder_transaction_alloc_buf: transaction=1569488 data_size=8 offsets_size=0
52024          <idle>-0     (-----) [000] d..2 82316.029531: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
52025<...>-5340 ( 788) [005] d..2 82316.029532: sched_waking: comm=id.nn.benchmark pid=27596 prio=110 target_cpu=005
52026           <...>-27571 (-----) [004] ...1 82316.029538: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
52027<...>-5340 ( 788) [005] d..3 82316.029539: sched_wakeup: comm=id.nn.benchmark pid=27596 prio=110 target_cpu=005
52028<...>-5340 ( 788) [005] .... 82316.029541: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
52029           <...>-27571 (-----) [004] ...1 82316.029545: tracing_mark_write: E|27550
52030  appEventThread-8881  ( 8858) [002] d..2 82316.029561: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52031           <...>-27571 (-----) [004] d..2 82316.029574: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52032          <idle>-0     (-----) [002] d..1 82316.029578: cpu_idle: state=0 cpu_id=2
52033          <idle>-0     (-----) [004] d..1 82316.029582: cpu_idle: state=0 cpu_id=4
52034<...>-5340 ( 788) [005] d..2 82316.029583: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27596 next_prio=110
52035           <...>-27596 (-----) [005] .... 82316.029593: binder_transaction_received: transaction=1569488
52036           <...>-27596 (-----) [005] ...1 82316.029628: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
52037           <...>-27596 (-----) [005] ...1 82316.029634: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
52038           <...>-27596 (-----) [005] ...1 82316.029660: tracing_mark_write: E|27550
52039           <...>-27596 (-----) [005] ...1 82316.029664: tracing_mark_write: E|27550
52040           <...>-27596 (-----) [005] ...1 82316.029668: tracing_mark_write: E|27550
52041           <...>-27596 (-----) [005] ...1 82316.029851: tracing_mark_write: E|27550
52042           <...>-27596 (-----) [005] d..1 82316.029863: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52043<...>-9105 ( 9105) [001] .... 82316.029867: binder_transaction: transaction=1569489 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
52044 s.nexuslauncher-10023 (10023) [000] .... 82316.029872: binder_transaction: transaction=1569490 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
52045<...>-9105 ( 9105) [001] .... 82316.029874: binder_transaction_alloc_buf: transaction=1569489 data_size=80 offsets_size=0
52046 s.nexuslauncher-10023 (10023) [000] .... 82316.029878: binder_transaction_alloc_buf: transaction=1569490 data_size=80 offsets_size=0
52047           <...>-27596 (-----) [005] d..2 82316.029879: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52048<...>-9105 ( 9105) [001] d..4 82316.029881: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
52049          <idle>-0     (-----) [004] .n.1 82316.029884: cpu_idle: state=4294967295 cpu_id=4
52050          <idle>-0     (-----) [004] d..2 82316.029891: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
52051           <...>-27550 (-----) [004] d..2 82316.029911: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52052<...>-9105 ( 9105) [001] d..5 82316.029919: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
52053          <idle>-0     (-----) [004] d..1 82316.029920: cpu_idle: state=0 cpu_id=4
52054          <idle>-0     (-----) [002] .n.1 82316.029925: cpu_idle: state=4294967295 cpu_id=2
52055          <idle>-0     (-----) [002] d..2 82316.029982: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
52056 s.nexuslauncher-10023 (10023) [000] d..4 82316.029982: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
52057           <...>-27596 (-----) [005] d..1 82316.029987: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52058           <...>-27596 (-----) [005] d..2 82316.029996: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52059          <idle>-0     (-----) [004] .n.1 82316.030000: cpu_idle: state=4294967295 cpu_id=4
52060          <idle>-0     (-----) [004] d..2 82316.030008: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
52061 s.nexuslauncher-10023 (10023) [000] d..5 82316.030018: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
52062          <idle>-0     (-----) [003] .n.1 82316.030025: cpu_idle: state=4294967295 cpu_id=3
52063<...>-8874 ( 8858) [002] .... 82316.030030: binder_transaction_received: transaction=1569489
52064           <...>-27596 (-----) [005] d..2 82316.030033: sched_switch: prev_comm=id.nn.benchmark prev_pid=27596 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
52065          <idle>-0     (-----) [003] d..2 82316.030039: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
52066           <...>-27550 (-----) [004] ...1 82316.030041: tracing_mark_write: E|27550
52067           <...>-27550 (-----) [004] ...1 82316.030046: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
52068<...>-13083 ( 8858) [003] .... 82316.030046: binder_transaction_received: transaction=1569490
52069           <...>-27550 (-----) [004] ...1 82316.030052: tracing_mark_write: E|27550
52070          <idle>-0     (-----) [005] d..1 82316.030054: cpu_idle: state=0 cpu_id=5
52071           <...>-27550 (-----) [004] ...1 82316.030055: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
52072           <...>-27550 (-----) [004] ...1 82316.030060: tracing_mark_write: E|27550
52073           <...>-27550 (-----) [004] ...1 82316.030064: tracing_mark_write: E|27550
52074<...>-9105 ( 9105) [001] d..3 82316.030066: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
52075 s.nexuslauncher-10023 (10023) [000] d..3 82316.030066: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=007
52076<...>-8874 ( 8858) [002] d..1 82316.030067: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
52077          <idle>-0     (-----) [006] dnh2 82316.030091: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
52078          <idle>-0     (-----) [007] dnh2 82316.030091: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=007
52079          <idle>-0     (-----) [007] .n.1 82316.030095: cpu_idle: state=4294967295 cpu_id=7
52080          <idle>-0     (-----) [006] .n.1 82316.030096: cpu_idle: state=4294967295 cpu_id=6
52081<...>-8874 ( 8858) [002] d..2 82316.030097: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
52082          <idle>-0     (-----) [007] d..2 82316.030101: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
52083<...>-8874 ( 8858) [002] d..1 82316.030104: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
52084          <idle>-0     (-----) [006] d..2 82316.030105: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
52085<...>-13083 ( 8858) [003] d..2 82316.030112: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
52086    RenderThread-16607 (10023) [007] d..2 82316.030117: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
52087          <idle>-0     (-----) [007] d..1 82316.030123: cpu_idle: state=0 cpu_id=7
52088    RenderThread-9436  ( 9105) [006] d..2 82316.030130: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
52089          <idle>-0     (-----) [006] d..1 82316.030137: cpu_idle: state=0 cpu_id=6
52090           <...>-27550 (-----) [004] ...1 82316.030178: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
52091          <idle>-0     (-----) [005] dnh2 82316.030186: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
52092          <idle>-0     (-----) [005] .n.1 82316.030191: cpu_idle: state=4294967295 cpu_id=5
52093          <idle>-0     (-----) [005] d..2 82316.030199: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
52094  appEventThread-8881  ( 8858) [003] d..2 82316.030203: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52095<...>-9105 ( 9105) [001] d..3 82316.030212: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
52096          <idle>-0     (-----) [003] d..1 82316.030215: cpu_idle: state=0 cpu_id=3
52097<...>-13083 ( 8858) [005] d..1 82316.030218: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
52098          <idle>-0     (-----) [006] dnh2 82316.030231: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
52099<...>-8874 ( 8858) [002] d..2 82316.030234: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52100          <idle>-0     (-----) [006] .n.1 82316.030235: cpu_idle: state=4294967295 cpu_id=6
52101           <...>-27550 (-----) [004] ...1 82316.030237: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
52102          <idle>-0     (-----) [006] d..2 82316.030241: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
52103           <...>-27550 (-----) [004] ...1 82316.030241: tracing_mark_write: E|27550
52104          <idle>-0     (-----) [003] dnh2 82316.030242: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
52105           <...>-27550 (-----) [004] ...1 82316.030245: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
52106          <idle>-0     (-----) [003] .n.1 82316.030249: cpu_idle: state=4294967295 cpu_id=3
52107           <...>-27550 (-----) [004] ...1 82316.030250: tracing_mark_write: E|27550
52108          <idle>-0     (-----) [002] d..1 82316.030251: cpu_idle: state=0 cpu_id=2
52109           <...>-27550 (-----) [004] ...1 82316.030254: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
52110           <...>-27550 (-----) [004] ...1 82316.030258: tracing_mark_write: E|27550
52111          <idle>-0     (-----) [003] d..2 82316.030259: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
52112<...>-9105 ( 9105) [001] d..2 82316.030259: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52113           <...>-27550 (-----) [004] ...1 82316.030261: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
52114<...>-13083 ( 8858) [005] d..2 82316.030268: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52115          <idle>-0     (-----) [001] d..1 82316.030273: cpu_idle: state=0 cpu_id=1
52116          <idle>-0     (-----) [005] d..1 82316.030279: cpu_idle: state=0 cpu_id=5
52117  appEventThread-8881  ( 8858) [003] d..2 82316.030298: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52118          <idle>-0     (-----) [003] d..1 82316.030308: cpu_idle: state=0 cpu_id=3
52119    RenderThread-9436  ( 9105) [006] d..1 82316.030312: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
52120          <idle>-0     (-----) [001] dnh2 82316.030337: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
52121          <idle>-0     (-----) [001] .n.1 82316.030344: cpu_idle: state=4294967295 cpu_id=1
52122          <idle>-0     (-----) [005] .n.1 82316.030346: cpu_idle: state=4294967295 cpu_id=5
52123           <...>-27550 (-----) [004] ...1 82316.030348: tracing_mark_write: E|27550
52124           <...>-27550 (-----) [004] ...1 82316.030353: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
52125          <idle>-0     (-----) [001] d..2 82316.030354: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
52126          <idle>-0     (-----) [005] d..2 82316.030355: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27597 next_prio=110
52127    RenderThread-9436  ( 9105) [006] .... 82316.030366: binder_transaction: transaction=1569491 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
52128 s.nexuslauncher-10023 (10023) [000] d..2 82316.030366: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52129    RenderThread-9436  ( 9105) [006] .... 82316.030369: binder_transaction_alloc_buf: transaction=1569491 data_size=104 offsets_size=0
52130           <...>-27550 (-----) [004] d..2 82316.030371: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52131    RenderThread-9436  ( 9105) [006] d..4 82316.030372: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
52132          <idle>-0     (-----) [000] d..1 82316.030381: cpu_idle: state=0 cpu_id=0
52133          <idle>-0     (-----) [004] d..1 82316.030386: cpu_idle: state=0 cpu_id=4
52134    RenderThread-9436  ( 9105) [006] dn.5 82316.030387: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
52135    RenderThread-9436  ( 9105) [006] d..2 82316.030394: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
52136<...>-13083 ( 8858) [006] .... 82316.030404: binder_transaction_received: transaction=1569491
52137           <...>-27597 (-----) [005] ...1 82316.030424: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
52138           <...>-27597 (-----) [005] ...1 82316.030436: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
52139<...>-9105 ( 9105) [001] d..2 82316.030437: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52140           <...>-27597 (-----) [005] ...1 82316.030440: tracing_mark_write: E|27550
52141          <idle>-0     (-----) [001] d..1 82316.030448: cpu_idle: state=0 cpu_id=1
52142<...>-13083 ( 8858) [006] .... 82316.030458: binder_transaction: transaction=1569492 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
52143<...>-13083 ( 8858) [006] .... 82316.030461: binder_transaction_alloc_buf: transaction=1569492 data_size=52 offsets_size=8
52144           <...>-27597 (-----) [005] .... 82316.030464: binder_transaction: transaction=1569493 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
52145           <...>-27597 (-----) [005] .... 82316.030468: binder_transaction_alloc_buf: transaction=1569493 data_size=48 offsets_size=0
52146           <...>-27597 (-----) [005] ...2 82316.030471: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
52147           <...>-27597 (-----) [005] d..4 82316.030474: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
52148           <...>-27597 (-----) [005] dn.5 82316.030485: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
52149<...>-13083 ( 8858) [006] d..2 82316.030493: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
52150           <...>-27597 (-----) [005] d..2 82316.030493: sched_switch: prev_comm=id.nn.benchmark prev_pid=27597 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
52151    RenderThread-9436  ( 9105) [006] .... 82316.030502: binder_transaction_received: transaction=1569492
52152<...>-770 ( 770) [005] .... 82316.030503: binder_transaction_received: transaction=1569493
52153<...>-770 ( 770) [005] ...1 82316.030527: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
52154<...>-770 ( 770) [005] d..2 82316.030603: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
52155          <idle>-0     (-----) [000] dnh2 82316.030633: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
52156          <idle>-0     (-----) [000] .n.1 82316.030640: cpu_idle: state=4294967295 cpu_id=0
52157<...>-770 ( 770) [005] ...1 82316.030643: tracing_mark_write: E|770
52158          <idle>-0     (-----) [000] d..2 82316.030649: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
52159<...>-770 ( 770) [005] .... 82316.030651: binder_transaction: transaction=1569494 dest_node=0 dest_proc=27550 dest_thread=27597 reply=1 flags=0x0 code=0x0
52160<...>-770 ( 770) [005] .... 82316.030654: binder_transaction_alloc_buf: transaction=1569494 data_size=168 offsets_size=32
52161<...>-770 ( 770) [005] .... 82316.030661: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
52162<...>-770 ( 770) [005] d..2 82316.030698: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27597 next_prio=110
52163           <...>-27597 (-----) [005] .... 82316.030709: binder_transaction_received: transaction=1569494
52164<...>-581 ( 571) [000] d..2 82316.030739: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52165          <idle>-0     (-----) [000] d..1 82316.030752: cpu_idle: state=0 cpu_id=0
52166           <...>-27597 (-----) [005] ...1 82316.030781: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
52167           <...>-27597 (-----) [005] ...1 82316.030786: tracing_mark_write: E|27550
52168           <...>-27597 (-----) [005] .... 82316.030801: binder_transaction: transaction=1569495 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
52169           <...>-27597 (-----) [005] .... 82316.030803: binder_transaction_alloc_buf: transaction=1569495 data_size=48 offsets_size=0
52170           <...>-27597 (-----) [005] ...2 82316.030806: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
52171           <...>-27597 (-----) [005] d..4 82316.030808: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
52172           <...>-27597 (-----) [005] dn.5 82316.030817: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
52173           <...>-27597 (-----) [005] d..2 82316.030824: sched_switch: prev_comm=id.nn.benchmark prev_pid=27597 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
52174<...>-770 ( 770) [005] .... 82316.030832: binder_transaction_received: transaction=1569495
52175<...>-770 ( 770) [005] ...1 82316.030849: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
52176<...>-770 ( 770) [005] d..2 82316.030908: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
52177          <idle>-0     (-----) [000] dnh2 82316.030932: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
52178          <idle>-0     (-----) [000] .n.1 82316.030938: cpu_idle: state=4294967295 cpu_id=0
52179<...>-770 ( 770) [005] ...1 82316.030941: tracing_mark_write: E|770
52180          <idle>-0     (-----) [000] d..2 82316.030947: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
52181<...>-770 ( 770) [005] .... 82316.030948: binder_transaction: transaction=1569496 dest_node=0 dest_proc=27550 dest_thread=27597 reply=1 flags=0x0 code=0x0
52182<...>-770 ( 770) [005] .... 82316.030951: binder_transaction_alloc_buf: transaction=1569496 data_size=168 offsets_size=32
52183<...>-770 ( 770) [005] .... 82316.030957: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
52184<...>-770 ( 770) [005] d..2 82316.030992: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27597 next_prio=110
52185           <...>-27597 (-----) [005] .... 82316.031002: binder_transaction_received: transaction=1569496
52186<...>-581 ( 571) [000] d..2 82316.031011: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52187          <idle>-0     (-----) [000] d..1 82316.031020: cpu_idle: state=0 cpu_id=0
52188    RenderThread-9436  ( 9105) [006] d..2 82316.031182: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
52189          <idle>-0     (-----) [006] d..1 82316.031195: cpu_idle: state=0 cpu_id=6
52190          <idle>-0     (-----) [006] d.h2 82316.031272: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
52191          <idle>-0     (-----) [006] d.h3 82316.031279: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
52192          <idle>-0     (-----) [006] dnh3 82316.031283: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
52193           <...>-27597 (-----) [005] ...1 82316.031284: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
52194          <idle>-0     (-----) [006] .n.1 82316.031289: cpu_idle: state=4294967295 cpu_id=6
52195           <...>-27597 (-----) [005] ...1 82316.031295: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
52196          <idle>-0     (-----) [006] d..2 82316.031296: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
52197           <...>-27597 (-----) [005] ...1 82316.031299: tracing_mark_write: E|27550
52198          <idle>-0     (-----) [000] d.h3 82316.031320: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
52199          <idle>-0     (-----) [000] d.h4 82316.031340: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
52200          <idle>-0     (-----) [003] .n.1 82316.031345: cpu_idle: state=4294967295 cpu_id=3
52201          <idle>-0     (-----) [000] ...1 82316.031356: cpu_idle: state=4294967295 cpu_id=0
52202          <idle>-0     (-----) [003] d..2 82316.031356: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
52203          <idle>-0     (-----) [000] d..1 82316.031361: cpu_idle: state=0 cpu_id=0
52204           <...>-27597 (-----) [005] .... 82316.031362: binder_transaction: transaction=1569497 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
52205           <...>-27597 (-----) [005] .... 82316.031365: binder_transaction_alloc_buf: transaction=1569497 data_size=556 offsets_size=104
52206           <...>-27597 (-----) [005] ...2 82316.031379: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
52207           <...>-27597 (-----) [005] d..4 82316.031382: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52208           <...>-27597 (-----) [005] dn.5 82316.031393: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52209           <...>-27597 (-----) [005] d..2 82316.031400: sched_switch: prev_comm=id.nn.benchmark prev_pid=27597 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52210          <idle>-0     (-----) [002] ...1 82316.031401: cpu_idle: state=4294967295 cpu_id=2
52211          <idle>-0     (-----) [002] d..1 82316.031406: cpu_idle: state=0 cpu_id=2
52212 kgsl_worker_thr-258   (  258) [003] d..2 82316.031410: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
52213<...>-5340 ( 788) [005] .... 82316.031410: binder_transaction_received: transaction=1569497
52214    RenderThread-9436  ( 9105) [006] .... 82316.031431: binder_transaction: transaction=1569500 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
52215    RenderThread-9436  ( 9105) [006] .... 82316.031435: binder_transaction_alloc_buf: transaction=1569500 data_size=192 offsets_size=8
52216    RenderThread-9436  ( 9105) [006] d..4 82316.031442: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
52217    RenderThread-9436  ( 9105) [006] dn.5 82316.031452: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
52218 kgsl_worker_thr-258   (  258) [003] d..3 82316.031455: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
52219<...>-5340 ( 788) [005] ...1 82316.031459: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
52220    RenderThread-9436  ( 9105) [006] d..2 82316.031459: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
52221<...>-13083 ( 8858) [006] .... 82316.031470: binder_transaction_received: transaction=1569500
52222 kgsl_worker_thr-258   (  258) [003] d..2 82316.031473: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
52223<...>-5340 ( 788) [005] d..2 82316.031507: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52224<...>-5340 ( 788) [005] d..2 82316.031545: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27597 next_prio=110
52225           <...>-27597 (-----) [005] d..2 82316.031568: sched_switch: prev_comm=id.nn.benchmark prev_pid=27597 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52226<...>-13083 ( 8858) [006] .... 82316.031586: binder_transaction: transaction=1569501 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
52227          <idle>-0     (-----) [005] d..1 82316.031588: cpu_idle: state=0 cpu_id=5
52228<...>-13083 ( 8858) [006] .... 82316.031589: binder_transaction_alloc_buf: transaction=1569501 data_size=68 offsets_size=0
52229<...>-13083 ( 8858) [006] d..2 82316.031617: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
52230    RenderThread-9436  ( 9105) [006] .... 82316.031627: binder_transaction_received: transaction=1569501
52231  kworker/u16:15-1311  ( 1311) [003] d.h1 82316.031662: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
52232    RenderThread-9436  ( 9105) [006] d..2 82316.031688: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
52233  kworker/u16:15-1311  ( 1311) [003] d..2 82316.031689: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
52234          <idle>-0     (-----) [006] d..1 82316.031702: cpu_idle: state=0 cpu_id=6
52235<...>-87 ( 87) [003] d..2 82316.031736: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52236          <idle>-0     (-----) [002] d.h4 82316.031744: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
52237          <idle>-0     (-----) [003] d..1 82316.031749: cpu_idle: state=0 cpu_id=3
52238          <idle>-0     (-----) [002] dnh5 82316.031788: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52239          <idle>-0     (-----) [000] d.s2 82316.031850: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
52240          <idle>-0     (-----) [001] d.s2 82316.031851: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
52241          <idle>-0     (-----) [005] ...1 82316.031870: cpu_idle: state=4294967295 cpu_id=5
52242          <idle>-0     (-----) [000] dns3 82316.031871: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
52243          <idle>-0     (-----) [001] dns3 82316.031873: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
52244          <idle>-0     (-----) [005] d..1 82316.031873: cpu_idle: state=0 cpu_id=5
52245          <idle>-0     (-----) [002] dnh4 82316.031883: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52246          <idle>-0     (-----) [000] .n.1 82316.031885: cpu_idle: state=4294967295 cpu_id=0
52247          <idle>-0     (-----) [001] .n.1 82316.031891: cpu_idle: state=4294967295 cpu_id=1
52248          <idle>-0     (-----) [000] d..2 82316.031894: 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
52249          <idle>-0     (-----) [006] ...1 82316.031900: cpu_idle: state=4294967295 cpu_id=6
52250          <idle>-0     (-----) [001] d..2 82316.031901: 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
52251          <idle>-0     (-----) [006] d..1 82316.031903: cpu_idle: state=0 cpu_id=6
52252<...>-8 ( 8) [000] d..2 82316.031905: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
52253          <idle>-0     (-----) [005] dnh2 82316.031906: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52254          <idle>-0     (-----) [005] .n.1 82316.031910: cpu_idle: state=4294967295 cpu_id=5
52255          <idle>-0     (-----) [005] d..2 82316.031919: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52256          <idle>-0     (-----) [002] .n.1 82316.031925: cpu_idle: state=4294967295 cpu_id=2
52257<...>-8 ( 8) [000] d..3 82316.031925: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
52258     rcu_preempt-7     (    7) [001] d..2 82316.031934: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
52259          <idle>-0     (-----) [002] d..2 82316.031941: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
52260<...>-46 ( 46) [001] d..2 82316.031948: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
52261<...>-8 ( 8) [000] d..2 82316.031961: 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
52262<...>-5340 ( 788) [005] d..1 82316.031975: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52263<...>-46 ( 46) [001] d..3 82316.031977: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
52264<...>-86 ( 86) [002] d..2 82316.031984: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52265          <idle>-0     (-----) [000] d..2 82316.031990: 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
52266          <idle>-0     (-----) [002] d..1 82316.031998: cpu_idle: state=0 cpu_id=2
52267<...>-46 ( 46) [001] d..2 82316.032002: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52268          <idle>-0     (-----) [001] d..1 82316.032017: cpu_idle: state=0 cpu_id=1
52269          <idle>-0     (-----) [002] dnh2 82316.032017: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
52270<...>-8 ( 8) [000] d..2 82316.032017: 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
52271          <idle>-0     (-----) [002] .n.1 82316.032023: cpu_idle: state=4294967295 cpu_id=2
52272          <idle>-0     (-----) [000] d..1 82316.032026: cpu_idle: state=0 cpu_id=0
52273          <idle>-0     (-----) [002] d..2 82316.032034: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
52274 neuralnetworks@-13088 (  788) [002] d..2 82316.032088: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52275          <idle>-0     (-----) [002] d..1 82316.032102: cpu_idle: state=0 cpu_id=2
52276<...>-5340 ( 788) [005] d..2 82316.032139: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
52277          <idle>-0     (-----) [003] dnh2 82316.032162: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
52278<...>-5340 ( 788) [005] d..2 82316.032166: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52279          <idle>-0     (-----) [003] .n.1 82316.032168: cpu_idle: state=4294967295 cpu_id=3
52280          <idle>-0     (-----) [003] d..2 82316.032179: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
52281          <idle>-0     (-----) [005] d..1 82316.032181: cpu_idle: state=0 cpu_id=5
52282<...>-87 ( 87) [003] d..2 82316.032218: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52283          <idle>-0     (-----) [002] d.h4 82316.032223: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52284          <idle>-0     (-----) [003] d..1 82316.032227: cpu_idle: state=0 cpu_id=3
52285          <idle>-0     (-----) [002] dnh5 82316.032235: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52286          <idle>-0     (-----) [002] .n.1 82316.032244: cpu_idle: state=4294967295 cpu_id=2
52287          <idle>-0     (-----) [002] d..2 82316.032256: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
52288<...>-86 ( 86) [002] d..2 82316.032292: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52289          <idle>-0     (-----) [002] d..1 82316.032303: cpu_idle: state=0 cpu_id=2
52290          <idle>-0     (-----) [005] ...1 82316.032460: cpu_idle: state=4294967295 cpu_id=5
52291          <idle>-0     (-----) [005] d..1 82316.032464: cpu_idle: state=0 cpu_id=5
52292          <idle>-0     (-----) [003] d.h2 82316.033200: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
52293          <idle>-0     (-----) [000] ...1 82316.033212: cpu_idle: state=4294967295 cpu_id=0
52294          <idle>-0     (-----) [003] dnh3 82316.033216: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
52295          <idle>-0     (-----) [000] d..1 82316.033217: cpu_idle: state=0 cpu_id=0
52296          <idle>-0     (-----) [003] .n.1 82316.033225: cpu_idle: state=4294967295 cpu_id=3
52297          <idle>-0     (-----) [003] d..2 82316.033234: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
52298        DispSync-8879  ( 8858) [003] d..1 82316.033253: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
52299        DispSync-8879  ( 8858) [003] d..2 82316.033268: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
52300          <idle>-0     (-----) [002] .n.1 82316.033274: cpu_idle: state=4294967295 cpu_id=2
52301          <idle>-0     (-----) [002] d..2 82316.033284: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
52302        DispSync-8879  ( 8858) [003] d..2 82316.033299: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52303          <idle>-0     (-----) [003] d..1 82316.033313: cpu_idle: state=0 cpu_id=3
52304   sfEventThread-8882  ( 8858) [002] d..3 82316.033325: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
52305   sfEventThread-8882  ( 8858) [002] d..4 82316.033347: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
52306          <idle>-0     (-----) [003] .n.1 82316.033353: cpu_idle: state=4294967295 cpu_id=3
52307          <idle>-0     (-----) [003] d..2 82316.033363: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
52308   sfEventThread-8882  ( 8858) [002] d..2 82316.033383: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52309          <idle>-0     (-----) [002] d..1 82316.033398: cpu_idle: state=0 cpu_id=2
52310  surfaceflinger-8858  ( 8858) [003] d..1 82316.033700: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
52311  surfaceflinger-8858  ( 8858) [003] d..2 82316.033721: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
52312          <idle>-0     (-----) [002] .n.1 82316.033727: cpu_idle: state=4294967295 cpu_id=2
52313          <idle>-0     (-----) [002] d..2 82316.033737: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
52314   sfEventThread-8882  ( 8858) [002] d..2 82316.033771: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52315          <idle>-0     (-----) [002] d..1 82316.033782: cpu_idle: state=0 cpu_id=2
52316          <idle>-0     (-----) [002] d.h4 82316.033879: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52317          <idle>-0     (-----) [005] dnh2 82316.033900: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52318          <idle>-0     (-----) [005] .n.1 82316.033904: cpu_idle: state=4294967295 cpu_id=5
52319  surfaceflinger-8858  ( 8858) [003] ...1 82316.033905: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
52320  surfaceflinger-8858  ( 8858) [003] ...1 82316.033912: tracing_mark_write: E|8858
52321          <idle>-0     (-----) [005] d..2 82316.033912: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52322          <idle>-0     (-----) [002] ...1 82316.033921: cpu_idle: state=4294967295 cpu_id=2
52323          <idle>-0     (-----) [002] d..1 82316.033926: cpu_idle: state=0 cpu_id=2
52324<...>-5340 ( 788) [005] d..1 82316.033965: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
52325  surfaceflinger-8858  ( 8858) [003] .... 82316.033965: binder_transaction: transaction=1569502 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
52326  surfaceflinger-8858  ( 8858) [003] .... 82316.033971: binder_transaction_alloc_buf: transaction=1569502 data_size=540 offsets_size=96
52327          <idle>-0     (-----) [002] dnh2 82316.033989: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
52328          <idle>-0     (-----) [002] .n.1 82316.033997: cpu_idle: state=4294967295 cpu_id=2
52329  surfaceflinger-8858  ( 8858) [003] ...2 82316.033999: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
52330  surfaceflinger-8858  ( 8858) [003] d..4 82316.034007: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
52331          <idle>-0     (-----) [002] d..2 82316.034010: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
52332<...>-5340 ( 788) [005] ...1 82316.034058: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
52333<...>-5340 ( 788) [005] ...1 82316.034062: tracing_mark_write: E|788
52334  surfaceflinger-8858  ( 8858) [003] d..5 82316.034069: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
52335          <idle>-0     (-----) [001] .n.1 82316.034074: cpu_idle: state=4294967295 cpu_id=1
52336 neuralnetworks@-13088 (  788) [002] d..2 82316.034079: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52337<...>-5340 ( 788) [005] .... 82316.034080: binder_transaction: transaction=1569503 dest_node=1569498 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
52338<...>-5340 ( 788) [005] .... 82316.034083: binder_transaction_alloc_buf: transaction=1569503 data_size=60 offsets_size=0
52339          <idle>-0     (-----) [001] d..2 82316.034085: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
52340<...>-5340 ( 788) [005] d..4 82316.034086: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
52341          <idle>-0     (-----) [002] d..1 82316.034091: cpu_idle: state=0 cpu_id=2
52342 [email protected]   (  619) [001] .... 82316.034098: binder_transaction_received: transaction=1569502
52343<...>-5340 ( 788) [005] d..5 82316.034100: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
52344  surfaceflinger-8858  ( 8858) [003] d..2 82316.034101: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52345          <idle>-0     (-----) [004] .n.1 82316.034107: cpu_idle: state=4294967295 cpu_id=4
52346          <idle>-0     (-----) [004] d..2 82316.034115: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
52347          <idle>-0     (-----) [003] d..1 82316.034120: cpu_idle: state=0 cpu_id=3
52348           <...>-27571 (-----) [004] .... 82316.034120: binder_transaction_received: transaction=1569503
52349<...>-5340 ( 788) [005] ...1 82316.034124: tracing_mark_write: E|788
52350<...>-5340 ( 788) [005] .... 82316.034131: binder_transaction: transaction=1569504 dest_node=0 dest_proc=27550 dest_thread=27597 reply=1 flags=0x0 code=0x0
52351<...>-5340 ( 788) [005] .... 82316.034133: binder_transaction_alloc_buf: transaction=1569504 data_size=8 offsets_size=0
52352<...>-5340 ( 788) [005] d..2 82316.034135: sched_waking: comm=id.nn.benchmark pid=27597 prio=110 target_cpu=005
52353           <...>-27571 (-----) [004] ...1 82316.034139: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
52354<...>-5340 ( 788) [005] d..3 82316.034143: sched_wakeup: comm=id.nn.benchmark pid=27597 prio=110 target_cpu=005
52355<...>-5340 ( 788) [005] .... 82316.034145: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
52356           <...>-27571 (-----) [004] ...1 82316.034145: tracing_mark_write: E|27550
52357 [email protected]   (  619) [001] ...1 82316.034149: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
52358           <...>-27571 (-----) [004] d..2 82316.034175: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52359          <idle>-0     (-----) [004] d..1 82316.034183: cpu_idle: state=0 cpu_id=4
52360<...>-5340 ( 788) [005] d..2 82316.034188: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27597 next_prio=110
52361           <...>-27597 (-----) [005] .... 82316.034197: binder_transaction_received: transaction=1569504
52362           <...>-27597 (-----) [005] ...1 82316.034236: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
52363           <...>-27597 (-----) [005] ...1 82316.034242: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
52364 [email protected]   (  619) [001] ...1 82316.034262: tracing_mark_write: B|619|HWCSession::PresentDisplay::
52365           <...>-27597 (-----) [005] ...1 82316.034268: tracing_mark_write: E|27550
52366           <...>-27597 (-----) [005] ...1 82316.034272: tracing_mark_write: E|27550
52367           <...>-27597 (-----) [005] ...1 82316.034275: tracing_mark_write: E|27550
52368           <...>-27597 (-----) [005] ...1 82316.034464: tracing_mark_write: E|27550
52369           <...>-27597 (-----) [005] d..1 82316.034476: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52370 [email protected]   (  619) [001] ...1 82316.034477: tracing_mark_write: B|619|HWDeviceDRM::Commit::
52371 [email protected]   (  619) [001] ...1 82316.034491: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
52372           <...>-27597 (-----) [005] d..2 82316.034493: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52373          <idle>-0     (-----) [004] .n.1 82316.034498: cpu_idle: state=4294967295 cpu_id=4
52374          <idle>-0     (-----) [004] d..2 82316.034505: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
52375           <...>-27550 (-----) [004] d..2 82316.034524: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52376          <idle>-0     (-----) [004] d..1 82316.034533: cpu_idle: state=0 cpu_id=4
52377           <...>-27597 (-----) [005] d..1 82316.034584: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52378           <...>-27597 (-----) [005] d..2 82316.034593: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52379          <idle>-0     (-----) [004] .n.1 82316.034599: cpu_idle: state=4294967295 cpu_id=4
52380          <idle>-0     (-----) [004] d..2 82316.034606: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
52381           <...>-27597 (-----) [005] d..2 82316.034633: sched_switch: prev_comm=id.nn.benchmark prev_pid=27597 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
52382           <...>-27550 (-----) [004] ...1 82316.034640: tracing_mark_write: E|27550
52383           <...>-27550 (-----) [004] ...1 82316.034645: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
52384           <...>-27550 (-----) [004] ...1 82316.034651: tracing_mark_write: E|27550
52385          <idle>-0     (-----) [005] d..1 82316.034654: cpu_idle: state=0 cpu_id=5
52386           <...>-27550 (-----) [004] ...1 82316.034654: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
52387           <...>-27550 (-----) [004] ...1 82316.034659: tracing_mark_write: E|27550
52388           <...>-27550 (-----) [004] ...1 82316.034663: tracing_mark_write: E|27550
52389           <...>-27550 (-----) [004] ...1 82316.034776: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
52390           <...>-27550 (-----) [004] ...1 82316.034833: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
52391           <...>-27550 (-----) [004] ...1 82316.034838: tracing_mark_write: E|27550
52392           <...>-27550 (-----) [004] ...1 82316.034842: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
52393           <...>-27550 (-----) [004] ...1 82316.034847: tracing_mark_write: E|27550
52394           <...>-27550 (-----) [004] ...1 82316.034852: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
52395           <...>-27550 (-----) [004] ...1 82316.034856: tracing_mark_write: E|27550
52396           <...>-27550 (-----) [004] ...1 82316.034859: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
52397          <idle>-0     (-----) [005] .n.1 82316.034949: cpu_idle: state=4294967295 cpu_id=5
52398           <...>-27550 (-----) [004] ...1 82316.034950: tracing_mark_write: E|27550
52399           <...>-27550 (-----) [004] ...1 82316.034955: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
52400          <idle>-0     (-----) [005] d..2 82316.034958: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27598 next_prio=110
52401           <...>-27550 (-----) [004] d..2 82316.034971: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52402          <idle>-0     (-----) [004] d..1 82316.034986: cpu_idle: state=0 cpu_id=4
52403           <...>-27598 (-----) [005] ...1 82316.035018: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
52404           <...>-27598 (-----) [005] ...1 82316.035033: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
52405           <...>-27598 (-----) [005] ...1 82316.035036: tracing_mark_write: E|27550
52406           <...>-27598 (-----) [005] .... 82316.035057: binder_transaction: transaction=1569505 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
52407           <...>-27598 (-----) [005] .... 82316.035060: binder_transaction_alloc_buf: transaction=1569505 data_size=48 offsets_size=0
52408           <...>-27598 (-----) [005] ...2 82316.035063: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
52409           <...>-27598 (-----) [005] d..4 82316.035066: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
52410           <...>-27598 (-----) [005] dn.5 82316.035077: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
52411           <...>-27598 (-----) [005] d..2 82316.035084: sched_switch: prev_comm=id.nn.benchmark prev_pid=27598 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
52412<...>-770 ( 770) [005] .... 82316.035095: binder_transaction_received: transaction=1569505
52413 [email protected]   (  619) [001] d..2 82316.035106: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
52414<...>-770 ( 770) [005] d.s2 82316.035140: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
52415 [email protected]   (  619) [001] d..3 82316.035142: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
52416          <idle>-0     (-----) [000] .n.1 82316.035146: cpu_idle: state=4294967295 cpu_id=0
52417          <idle>-0     (-----) [000] d..2 82316.035158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
52418<...>-770 ( 770) [005] d.s2 82316.035173: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
52419 crtc_commit:111-321   (  321) [000] d.h1 82316.035180: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
52420<...>-770 ( 770) [005] d.s3 82316.035182: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
52421<...>-770 ( 770) [005] ...1 82316.035205: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
52422<...>-770 ( 770) [005] d..2 82316.035286: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
52423 [email protected]   (  619) [001] ...1 82316.035294: tracing_mark_write: E|619
52424 [email protected]   (  619) [001] ...1 82316.035301: tracing_mark_write: E|619
52425 [email protected]   (  619) [001] d.h1 82316.035324: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
52426<...>-770 ( 770) [005] ...1 82316.035337: tracing_mark_write: E|770
52427<...>-770 ( 770) [005] .... 82316.035344: binder_transaction: transaction=1569506 dest_node=0 dest_proc=27550 dest_thread=27598 reply=1 flags=0x0 code=0x0
52428<...>-770 ( 770) [005] .... 82316.035348: binder_transaction_alloc_buf: transaction=1569506 data_size=168 offsets_size=32
52429<...>-770 ( 770) [005] .... 82316.035355: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
52430<...>-770 ( 770) [005] d..2 82316.035368: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=R+ ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
52431 [email protected]   (  619) [001] ...1 82316.035384: tracing_mark_write: E|619
52432     kworker/5:0-23997 (23997) [005] d..2 82316.035394: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> [email protected] next_pid=770 next_prio=120
52433          <idle>-0     (-----) [002] ...1 82316.035407: cpu_idle: state=4294967295 cpu_id=2
52434          <idle>-0     (-----) [002] d..1 82316.035412: cpu_idle: state=0 cpu_id=2
52435<...>-770 ( 770) [005] d..2 82316.035419: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27598 next_prio=110
52436           <...>-27598 (-----) [005] .... 82316.035430: binder_transaction_received: transaction=1569506
52437 [email protected]   (  619) [001] ...1 82316.035435: tracing_mark_write: E|619
52438 [email protected]   (  619) [001] .... 82316.035451: binder_transaction: transaction=1569507 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
52439 [email protected]   (  619) [001] .... 82316.035455: binder_transaction_alloc_buf: transaction=1569507 data_size=576 offsets_size=112
52440 [email protected]   (  619) [001] d..2 82316.035477: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
52441 [email protected]   (  619) [001] d..3 82316.035495: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
52442 [email protected]   (  619) [001] .... 82316.035500: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
52443          <idle>-0     (-----) [003] .n.1 82316.035503: cpu_idle: state=4294967295 cpu_id=3
52444           <...>-27598 (-----) [005] ...1 82316.035504: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
52445           <...>-27598 (-----) [005] ...1 82316.035509: tracing_mark_write: E|27550
52446          <idle>-0     (-----) [003] d..2 82316.035515: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
52447  surfaceflinger-8858  ( 8858) [003] .... 82316.035524: binder_transaction_received: transaction=1569507
52448           <...>-27598 (-----) [005] .... 82316.035524: binder_transaction: transaction=1569508 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
52449           <...>-27598 (-----) [005] .... 82316.035527: binder_transaction_alloc_buf: transaction=1569508 data_size=48 offsets_size=0
52450           <...>-27598 (-----) [005] ...2 82316.035529: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
52451           <...>-27598 (-----) [005] d..4 82316.035532: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
52452           <...>-27598 (-----) [005] dn.5 82316.035541: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
52453           <...>-27598 (-----) [005] d..2 82316.035548: sched_switch: prev_comm=id.nn.benchmark prev_pid=27598 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
52454<...>-770 ( 770) [005] .... 82316.035556: binder_transaction_received: transaction=1569508
52455<...>-770 ( 770) [005] ...1 82316.035573: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
52456 [email protected]   (  619) [001] d..2 82316.035575: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
52457<...>-770 ( 770) [005] ...1 82316.035653: tracing_mark_write: E|770
52458<...>-770 ( 770) [005] .... 82316.035660: binder_transaction: transaction=1569509 dest_node=0 dest_proc=27550 dest_thread=27598 reply=1 flags=0x0 code=0x0
52459<...>-770 ( 770) [005] .... 82316.035663: binder_transaction_alloc_buf: transaction=1569509 data_size=168 offsets_size=32
52460<...>-770 ( 770) [005] .... 82316.035669: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
52461<...>-770 ( 770) [005] d..2 82316.035704: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27598 next_prio=110
52462<...>-581 ( 571) [001] d..2 82316.035706: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52463           <...>-27598 (-----) [005] .... 82316.035713: binder_transaction_received: transaction=1569509
52464          <idle>-0     (-----) [001] d..1 82316.035721: cpu_idle: state=0 cpu_id=1
52465 crtc_commit:111-321   (  321) [000] d..2 82316.035876: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
52466  surfaceflinger-8858  ( 8858) [003] d..2 82316.035972: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52467           <...>-27598 (-----) [005] ...1 82316.035990: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
52468          <idle>-0     (-----) [003] d..1 82316.035995: cpu_idle: state=0 cpu_id=3
52469           <...>-27598 (-----) [005] ...1 82316.036000: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
52470           <...>-27598 (-----) [005] ...1 82316.036004: tracing_mark_write: E|27550
52471           <...>-27598 (-----) [005] .... 82316.036065: binder_transaction: transaction=1569510 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
52472           <...>-27598 (-----) [005] .... 82316.036068: binder_transaction_alloc_buf: transaction=1569510 data_size=556 offsets_size=104
52473           <...>-27598 (-----) [005] ...2 82316.036082: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
52474           <...>-27598 (-----) [005] d..4 82316.036085: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52475  kworker/u16:15-1311  ( 1311) [000] d..2 82316.036092: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
52476           <...>-27598 (-----) [005] dn.5 82316.036096: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52477           <...>-27598 (-----) [005] d..2 82316.036103: sched_switch: prev_comm=id.nn.benchmark prev_pid=27598 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52478          <idle>-0     (-----) [000] d..1 82316.036103: cpu_idle: state=0 cpu_id=0
52479<...>-5340 ( 788) [005] .... 82316.036113: binder_transaction_received: transaction=1569510
52480          <idle>-0     (-----) [001] d.s3 82316.036121: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
52481          <idle>-0     (-----) [001] d.s4 82316.036134: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
52482          <idle>-0     (-----) [001] d.s4 82316.036143: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
52483          <idle>-0     (-----) [000] .n.1 82316.036150: cpu_idle: state=4294967295 cpu_id=0
52484          <idle>-0     (-----) [001] ...1 82316.036154: cpu_idle: state=4294967295 cpu_id=1
52485          <idle>-0     (-----) [001] d..1 82316.036159: cpu_idle: state=0 cpu_id=1
52486          <idle>-0     (-----) [000] d..2 82316.036160: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
52487<...>-5340 ( 788) [005] ...1 82316.036161: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
52488<...>-5340 ( 788) [005] d..2 82316.036206: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
52489<...>-5340 ( 788) [005] d..2 82316.036245: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27598 next_prio=110
52490  kworker/u16:15-1311  ( 1311) [000] d.h1 82316.036247: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52491           <...>-27598 (-----) [005] d..2 82316.036267: sched_switch: prev_comm=id.nn.benchmark prev_pid=27598 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52492          <idle>-0     (-----) [005] d..1 82316.036285: cpu_idle: state=0 cpu_id=5
52493  kworker/u16:15-1311  ( 1311) [000] d..2 82316.036339: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
52494          <idle>-0     (-----) [001] d.s3 82316.036369: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
52495<...>-87 ( 87) [000] d..2 82316.036382: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52496          <idle>-0     (-----) [000] d..1 82316.036392: cpu_idle: state=0 cpu_id=0
52497          <idle>-0     (-----) [002] d.h4 82316.036392: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52498          <idle>-0     (-----) [001] d.s4 82316.036393: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
52499          <idle>-0     (-----) [001] dns4 82316.036398: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
52500          <idle>-0     (-----) [001] .n.1 82316.036405: cpu_idle: state=4294967295 cpu_id=1
52501          <idle>-0     (-----) [002] dnh5 82316.036411: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52502          <idle>-0     (-----) [001] d..2 82316.036415: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
52503          <idle>-0     (-----) [002] .n.1 82316.036420: cpu_idle: state=4294967295 cpu_id=2
52504          <idle>-0     (-----) [002] d..2 82316.036432: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
52505  kworker/u16:15-1311  ( 1311) [001] d..2 82316.036452: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52506          <idle>-0     (-----) [001] d..1 82316.036461: cpu_idle: state=0 cpu_id=1
52507<...>-86 ( 86) [002] d.h4 82316.036470: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52508          <idle>-0     (-----) [005] dnh2 82316.036492: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52509          <idle>-0     (-----) [005] .n.1 82316.036496: cpu_idle: state=4294967295 cpu_id=5
52510          <idle>-0     (-----) [005] d..2 82316.036505: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52511<...>-86 ( 86) [002] d..2 82316.036525: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52512          <idle>-0     (-----) [002] d..1 82316.036540: cpu_idle: state=0 cpu_id=2
52513<...>-5340 ( 788) [005] d..1 82316.036560: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
52514          <idle>-0     (-----) [000] dnh2 82316.036597: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52515          <idle>-0     (-----) [000] .n.1 82316.036603: cpu_idle: state=4294967295 cpu_id=0
52516          <idle>-0     (-----) [000] d..2 82316.036611: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
52517 neuralnetworks@-13088 (  788) [000] d..2 82316.036666: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52518          <idle>-0     (-----) [000] d..1 82316.036677: cpu_idle: state=0 cpu_id=0
52519<...>-5340 ( 788) [005] d..2 82316.036718: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52520          <idle>-0     (-----) [000] dnh2 82316.036739: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52521<...>-5340 ( 788) [005] d..2 82316.036743: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52522          <idle>-0     (-----) [000] .n.1 82316.036746: cpu_idle: state=4294967295 cpu_id=0
52523          <idle>-0     (-----) [000] d..2 82316.036754: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
52524          <idle>-0     (-----) [005] d..1 82316.036758: cpu_idle: state=0 cpu_id=5
52525<...>-87 ( 87) [000] d..2 82316.036792: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52526          <idle>-0     (-----) [002] d.h4 82316.036795: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52527          <idle>-0     (-----) [000] d..1 82316.036800: cpu_idle: state=0 cpu_id=0
52528          <idle>-0     (-----) [002] dnh5 82316.036806: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52529          <idle>-0     (-----) [002] .n.1 82316.036816: cpu_idle: state=4294967295 cpu_id=2
52530          <idle>-0     (-----) [002] d..2 82316.036827: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
52531<...>-86 ( 86) [002] d..2 82316.036860: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52532          <idle>-0     (-----) [002] d..1 82316.036873: cpu_idle: state=0 cpu_id=2
52533          <idle>-0     (-----) [005] ...1 82316.037081: cpu_idle: state=4294967295 cpu_id=5
52534          <idle>-0     (-----) [005] d..1 82316.037085: cpu_idle: state=0 cpu_id=5
52535          <idle>-0     (-----) [003] ...1 82316.037774: cpu_idle: state=4294967295 cpu_id=3
52536          <idle>-0     (-----) [003] d..1 82316.037779: cpu_idle: state=0 cpu_id=3
52537          <idle>-0     (-----) [002] ...1 82316.038056: cpu_idle: state=4294967295 cpu_id=2
52538          <idle>-0     (-----) [002] d..1 82316.038061: cpu_idle: state=0 cpu_id=2
52539          <idle>-0     (-----) [001] d.s2 82316.038467: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
52540          <idle>-0     (-----) [000] d.s2 82316.038472: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
52541          <idle>-0     (-----) [001] dns3 82316.038485: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
52542          <idle>-0     (-----) [000] dns3 82316.038490: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
52543          <idle>-0     (-----) [002] d.h4 82316.038496: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52544          <idle>-0     (-----) [000] dns3 82316.038497: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
52545          <idle>-0     (-----) [001] .n.1 82316.038507: cpu_idle: state=4294967295 cpu_id=1
52546          <idle>-0     (-----) [000] dns4 82316.038512: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
52547          <idle>-0     (-----) [005] dnh2 82316.038516: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52548          <idle>-0     (-----) [005] .n.1 82316.038520: cpu_idle: state=4294967295 cpu_id=5
52549          <idle>-0     (-----) [001] d..2 82316.038520: 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
52550          <idle>-0     (-----) [005] d..2 82316.038528: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52551     rcu_preempt-7     (    7) [001] d..2 82316.038531: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
52552          <idle>-0     (-----) [002] ...1 82316.038535: cpu_idle: state=4294967295 cpu_id=2
52553          <idle>-0     (-----) [002] d..1 82316.038541: cpu_idle: state=0 cpu_id=2
52554          <idle>-0     (-----) [000] .n.1 82316.038542: cpu_idle: state=4294967295 cpu_id=0
52555          <idle>-0     (-----) [000] d..2 82316.038552: 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
52556     rcu_preempt-7     (    7) [001] d..3 82316.038574: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
52557<...>-5340 ( 788) [005] d..1 82316.038579: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52558     rcu_preempt-7     (    7) [001] d..2 82316.038592: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
52559<...>-8 ( 8) [000] d..2 82316.038602: 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
52560         rcuop/2-29    (   29) [000] d.h3 82316.038618: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52561         rcuop/2-29    (   29) [000] d..2 82316.038664: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
52562<...>-5340 ( 788) [005] ...1 82316.038673: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
52563<...>-5340 ( 788) [005] ...1 82316.038677: tracing_mark_write: E|788
52564<...>-5340 ( 788) [005] .... 82316.038692: binder_transaction: transaction=1569513 dest_node=1569511 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
52565<...>-5340 ( 788) [005] .... 82316.038695: binder_transaction_alloc_buf: transaction=1569513 data_size=60 offsets_size=0
52566<...>-5340 ( 788) [005] d..4 82316.038698: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
52567         rcuop/2-29    (   29) [000] d..3 82316.038709: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
52568<...>-5340 ( 788) [005] d..5 82316.038710: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
52569          <idle>-0     (-----) [002] .n.1 82316.038715: cpu_idle: state=4294967295 cpu_id=2
52570          <idle>-0     (-----) [004] .n.1 82316.038717: cpu_idle: state=4294967295 cpu_id=4
52571          <idle>-0     (-----) [004] d..2 82316.038725: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
52572         rcuop/2-29    (   29) [000] d..2 82316.038729: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
52573          <idle>-0     (-----) [002] d..2 82316.038730: 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
52574           <...>-27571 (-----) [004] .... 82316.038730: binder_transaction_received: transaction=1569513
52575<...>-5340 ( 788) [005] ...1 82316.038732: tracing_mark_write: E|788
52576<...>-5340 ( 788) [005] .... 82316.038738: binder_transaction: transaction=1569514 dest_node=0 dest_proc=27550 dest_thread=27598 reply=1 flags=0x0 code=0x0
52577<...>-5340 ( 788) [005] .... 82316.038740: binder_transaction_alloc_buf: transaction=1569514 data_size=8 offsets_size=0
52578<...>-5340 ( 788) [005] d..2 82316.038742: sched_waking: comm=id.nn.benchmark pid=27598 prio=110 target_cpu=005
52579<...>-5340 ( 788) [005] d..3 82316.038749: sched_wakeup: comm=id.nn.benchmark pid=27598 prio=110 target_cpu=005
52580           <...>-27571 (-----) [004] ...1 82316.038749: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
52581<...>-5340 ( 788) [005] .... 82316.038751: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
52582           <...>-27571 (-----) [004] ...1 82316.038755: tracing_mark_write: E|27550
52583 neuralnetworks@-13088 (  788) [000] d..2 82316.038767: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52584         rcuop/3-37    (   37) [002] d..2 82316.038781: 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
52585          <idle>-0     (-----) [000] d..1 82316.038783: cpu_idle: state=0 cpu_id=0
52586           <...>-27571 (-----) [004] d..2 82316.038785: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52587          <idle>-0     (-----) [002] d..1 82316.038793: cpu_idle: state=0 cpu_id=2
52588<...>-5340 ( 788) [005] d..2 82316.038794: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27598 next_prio=110
52589           <...>-27598 (-----) [005] .... 82316.038803: binder_transaction_received: transaction=1569514
52590          <idle>-0     (-----) [004] d..1 82316.038810: cpu_idle: state=0 cpu_id=4
52591          <idle>-0     (-----) [004] ...1 82316.038820: cpu_idle: state=4294967295 cpu_id=4
52592          <idle>-0     (-----) [004] d..1 82316.038823: cpu_idle: state=0 cpu_id=4
52593           <...>-27598 (-----) [005] ...1 82316.038854: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
52594           <...>-27598 (-----) [005] ...1 82316.038860: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
52595           <...>-27598 (-----) [005] ...1 82316.038890: tracing_mark_write: E|27550
52596           <...>-27598 (-----) [005] ...1 82316.038894: tracing_mark_write: E|27550
52597           <...>-27598 (-----) [005] ...1 82316.038902: tracing_mark_write: E|27550
52598  kworker/u16:15-1311  ( 1311) [001] d..2 82316.038946: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52599          <idle>-0     (-----) [001] d..1 82316.038962: cpu_idle: state=0 cpu_id=1
52600           <...>-27598 (-----) [005] ...1 82316.039096: tracing_mark_write: E|27550
52601           <...>-27598 (-----) [005] d..1 82316.039109: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52602           <...>-27598 (-----) [005] d..2 82316.039125: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52603          <idle>-0     (-----) [004] .n.1 82316.039130: cpu_idle: state=4294967295 cpu_id=4
52604          <idle>-0     (-----) [004] d..2 82316.039137: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
52605           <...>-27550 (-----) [004] d..2 82316.039157: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52606          <idle>-0     (-----) [004] d..1 82316.039167: cpu_idle: state=0 cpu_id=4
52607           <...>-27598 (-----) [005] d..1 82316.039213: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52608           <...>-27598 (-----) [005] d..2 82316.039223: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52609          <idle>-0     (-----) [004] .n.1 82316.039228: cpu_idle: state=4294967295 cpu_id=4
52610          <idle>-0     (-----) [004] d..2 82316.039236: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
52611           <...>-27598 (-----) [005] d..2 82316.039261: sched_switch: prev_comm=id.nn.benchmark prev_pid=27598 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
52612           <...>-27550 (-----) [004] ...1 82316.039269: tracing_mark_write: E|27550
52613           <...>-27550 (-----) [004] ...1 82316.039274: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
52614           <...>-27550 (-----) [004] ...1 82316.039280: tracing_mark_write: E|27550
52615          <idle>-0     (-----) [005] d..1 82316.039282: cpu_idle: state=0 cpu_id=5
52616           <...>-27550 (-----) [004] ...1 82316.039284: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
52617           <...>-27550 (-----) [004] ...1 82316.039288: tracing_mark_write: E|27550
52618           <...>-27550 (-----) [004] ...1 82316.039292: tracing_mark_write: E|27550
52619           <...>-27550 (-----) [004] ...1 82316.039406: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
52620           <...>-27550 (-----) [004] ...1 82316.039464: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
52621           <...>-27550 (-----) [004] ...1 82316.039469: tracing_mark_write: E|27550
52622           <...>-27550 (-----) [004] ...1 82316.039473: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
52623           <...>-27550 (-----) [004] ...1 82316.039479: tracing_mark_write: E|27550
52624           <...>-27550 (-----) [004] ...1 82316.039484: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
52625           <...>-27550 (-----) [004] ...1 82316.039488: tracing_mark_write: E|27550
52626           <...>-27550 (-----) [004] ...1 82316.039491: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
52627          <idle>-0     (-----) [005] .n.1 82316.039585: cpu_idle: state=4294967295 cpu_id=5
52628           <...>-27550 (-----) [004] ...1 82316.039587: tracing_mark_write: E|27550
52629           <...>-27550 (-----) [004] ...1 82316.039591: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
52630          <idle>-0     (-----) [005] d..2 82316.039594: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27599 next_prio=110
52631           <...>-27550 (-----) [004] d..2 82316.039609: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52632          <idle>-0     (-----) [004] d..1 82316.039623: cpu_idle: state=0 cpu_id=4
52633           <...>-27599 (-----) [005] ...1 82316.039656: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
52634           <...>-27599 (-----) [005] ...1 82316.039668: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
52635           <...>-27599 (-----) [005] ...1 82316.039672: tracing_mark_write: E|27550
52636           <...>-27599 (-----) [005] .... 82316.039692: binder_transaction: transaction=1569515 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
52637           <...>-27599 (-----) [005] .... 82316.039695: binder_transaction_alloc_buf: transaction=1569515 data_size=48 offsets_size=0
52638           <...>-27599 (-----) [005] ...2 82316.039698: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
52639           <...>-27599 (-----) [005] d..4 82316.039701: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
52640           <...>-27599 (-----) [005] dn.5 82316.039712: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
52641           <...>-27599 (-----) [005] d..2 82316.039718: sched_switch: prev_comm=id.nn.benchmark prev_pid=27599 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
52642<...>-770 ( 770) [005] .... 82316.039728: binder_transaction_received: transaction=1569515
52643<...>-770 ( 770) [005] ...1 82316.039751: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
52644<...>-770 ( 770) [005] d..2 82316.039827: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
52645          <idle>-0     (-----) [000] dnh2 82316.039865: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
52646          <idle>-0     (-----) [000] .n.1 82316.039871: cpu_idle: state=4294967295 cpu_id=0
52647<...>-770 ( 770) [005] ...1 82316.039878: tracing_mark_write: E|770
52648          <idle>-0     (-----) [000] d..2 82316.039882: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
52649<...>-770 ( 770) [005] .... 82316.039886: binder_transaction: transaction=1569516 dest_node=0 dest_proc=27550 dest_thread=27599 reply=1 flags=0x0 code=0x0
52650<...>-770 ( 770) [005] .... 82316.039889: binder_transaction_alloc_buf: transaction=1569516 data_size=168 offsets_size=32
52651<...>-770 ( 770) [005] .... 82316.039896: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
52652<...>-770 ( 770) [005] d..2 82316.039931: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27599 next_prio=110
52653           <...>-27599 (-----) [005] .... 82316.039942: binder_transaction_received: transaction=1569516
52654<...>-581 ( 571) [000] d..2 82316.039970: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52655          <idle>-0     (-----) [000] d..1 82316.039984: cpu_idle: state=0 cpu_id=0
52656           <...>-27599 (-----) [005] ...1 82316.040016: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
52657           <...>-27599 (-----) [005] ...1 82316.040021: tracing_mark_write: E|27550
52658           <...>-27599 (-----) [005] .... 82316.040036: binder_transaction: transaction=1569517 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
52659           <...>-27599 (-----) [005] .... 82316.040039: binder_transaction_alloc_buf: transaction=1569517 data_size=48 offsets_size=0
52660           <...>-27599 (-----) [005] ...2 82316.040041: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
52661           <...>-27599 (-----) [005] d..4 82316.040043: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
52662           <...>-27599 (-----) [005] dn.5 82316.040054: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
52663           <...>-27599 (-----) [005] d..2 82316.040060: sched_switch: prev_comm=id.nn.benchmark prev_pid=27599 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
52664<...>-770 ( 770) [005] .... 82316.040068: binder_transaction_received: transaction=1569517
52665<...>-770 ( 770) [005] ...1 82316.040086: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
52666<...>-770 ( 770) [005] d..2 82316.040144: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
52667          <idle>-0     (-----) [000] dnh2 82316.040168: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
52668          <idle>-0     (-----) [000] .n.1 82316.040174: cpu_idle: state=4294967295 cpu_id=0
52669<...>-770 ( 770) [005] ...1 82316.040178: tracing_mark_write: E|770
52670          <idle>-0     (-----) [000] d..2 82316.040185: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
52671<...>-770 ( 770) [005] .... 82316.040186: binder_transaction: transaction=1569518 dest_node=0 dest_proc=27550 dest_thread=27599 reply=1 flags=0x0 code=0x0
52672<...>-770 ( 770) [005] .... 82316.040188: binder_transaction_alloc_buf: transaction=1569518 data_size=168 offsets_size=32
52673<...>-770 ( 770) [005] .... 82316.040194: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
52674<...>-770 ( 770) [005] d..2 82316.040229: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27599 next_prio=110
52675           <...>-27599 (-----) [005] .... 82316.040240: binder_transaction_received: transaction=1569518
52676<...>-581 ( 571) [000] d..2 82316.040247: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52677          <idle>-0     (-----) [000] d..1 82316.040260: cpu_idle: state=0 cpu_id=0
52678           <...>-27599 (-----) [005] ...1 82316.040513: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
52679           <...>-27599 (-----) [005] ...1 82316.040524: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
52680           <...>-27599 (-----) [005] ...1 82316.040528: tracing_mark_write: E|27550
52681           <...>-27599 (-----) [005] .... 82316.040588: binder_transaction: transaction=1569519 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
52682           <...>-27599 (-----) [005] .... 82316.040591: binder_transaction_alloc_buf: transaction=1569519 data_size=556 offsets_size=104
52683           <...>-27599 (-----) [005] ...2 82316.040604: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
52684           <...>-27599 (-----) [005] d..4 82316.040607: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52685           <...>-27599 (-----) [005] dn.5 82316.040619: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52686           <...>-27599 (-----) [005] d..2 82316.040626: sched_switch: prev_comm=id.nn.benchmark prev_pid=27599 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52687<...>-5340 ( 788) [005] .... 82316.040635: binder_transaction_received: transaction=1569519
52688<...>-5340 ( 788) [005] ...1 82316.040681: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
52689<...>-5340 ( 788) [005] d..2 82316.040726: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52690<...>-5340 ( 788) [005] d..2 82316.040751: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27599 next_prio=110
52691          <idle>-0     (-----) [000] dnh2 82316.040755: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52692          <idle>-0     (-----) [000] .n.1 82316.040761: cpu_idle: state=4294967295 cpu_id=0
52693          <idle>-0     (-----) [000] d..2 82316.040773: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
52694           <...>-27599 (-----) [005] d..2 82316.040774: sched_switch: prev_comm=id.nn.benchmark prev_pid=27599 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52695          <idle>-0     (-----) [005] d..1 82316.040792: cpu_idle: state=0 cpu_id=5
52696<...>-87 ( 87) [000] d..2 82316.040816: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52697          <idle>-0     (-----) [000] d..1 82316.040827: cpu_idle: state=0 cpu_id=0
52698          <idle>-0     (-----) [002] d.h4 82316.040828: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52699          <idle>-0     (-----) [002] dnh5 82316.040844: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52700          <idle>-0     (-----) [002] .n.1 82316.040853: cpu_idle: state=4294967295 cpu_id=2
52701          <idle>-0     (-----) [002] d..2 82316.040864: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
52702<...>-86 ( 86) [002] d..2 82316.040900: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52703          <idle>-0     (-----) [002] d.h5 82316.040921: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52704          <idle>-0     (-----) [005] dnh2 82316.040943: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52705          <idle>-0     (-----) [005] .n.1 82316.040947: cpu_idle: state=4294967295 cpu_id=5
52706          <idle>-0     (-----) [005] d..2 82316.040956: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52707          <idle>-0     (-----) [002] d..1 82316.040967: cpu_idle: state=0 cpu_id=2
52708<...>-5340 ( 788) [005] d..1 82316.041008: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52709          <idle>-0     (-----) [000] dnh2 82316.041033: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52710          <idle>-0     (-----) [000] .n.1 82316.041039: cpu_idle: state=4294967295 cpu_id=0
52711          <idle>-0     (-----) [000] d..2 82316.041050: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
52712 neuralnetworks@-13088 (  788) [000] d..2 82316.041094: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52713<...>-5340 ( 788) [005] d..2 82316.041154: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52714<...>-5340 ( 788) [005] d..2 82316.041179: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52715          <idle>-0     (-----) [000] d.h5 82316.041192: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
52716          <idle>-0     (-----) [005] d..1 82316.041194: cpu_idle: state=0 cpu_id=5
52717          <idle>-0     (-----) [000] d.h6 82316.041215: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
52718          <idle>-0     (-----) [000] d.h5 82316.041221: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
52719          <idle>-0     (-----) [002] .n.1 82316.041221: cpu_idle: state=4294967295 cpu_id=2
52720          <idle>-0     (-----) [000] dnh6 82316.041231: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
52721          <idle>-0     (-----) [002] d..2 82316.041232: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
52722          <idle>-0     (-----) [000] dnh2 82316.041253: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52723          <idle>-0     (-----) [000] d..2 82316.041273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
52724  crtc_event:111-322   (  322) [002] d..2 82316.041294: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
52725<...>-87 ( 87) [002] d.h3 82316.041328: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52726<...>-87 ( 87) [002] d.h4 82316.041345: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52727<...>-87 ( 87) [002] d..2 82316.041359: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
52728<...>-86 ( 86) [002] d..2 82316.041391: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52729          <idle>-0     (-----) [002] d..1 82316.041405: cpu_idle: state=0 cpu_id=2
52730 crtc_commit:111-321   (  321) [000] d..2 82316.041423: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
52731          <idle>-0     (-----) [000] d..1 82316.041435: cpu_idle: state=0 cpu_id=0
52732          <idle>-0     (-----) [005] ...1 82316.041538: cpu_idle: state=4294967295 cpu_id=5
52733          <idle>-0     (-----) [005] d..1 82316.041541: cpu_idle: state=0 cpu_id=5
52734          <idle>-0     (-----) [000] d.s3 82316.041805: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
52735          <idle>-0     (-----) [000] d.s4 82316.041820: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
52736          <idle>-0     (-----) [002] .n.1 82316.041827: cpu_idle: state=4294967295 cpu_id=2
52737          <idle>-0     (-----) [002] d..2 82316.041839: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
52738          <idle>-0     (-----) [000] ...1 82316.041843: cpu_idle: state=4294967295 cpu_id=0
52739          <idle>-0     (-----) [000] d..1 82316.041848: cpu_idle: state=0 cpu_id=0
52740  crtc_event:111-322   (  322) [002] d..2 82316.041872: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52741          <idle>-0     (-----) [002] d..1 82316.041883: cpu_idle: state=0 cpu_id=2
52742          <idle>-0     (-----) [002] d.h4 82316.043074: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52743          <idle>-0     (-----) [005] dnh2 82316.043094: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52744          <idle>-0     (-----) [005] .n.1 82316.043098: cpu_idle: state=4294967295 cpu_id=5
52745          <idle>-0     (-----) [005] d..2 82316.043107: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52746          <idle>-0     (-----) [002] ...1 82316.043114: cpu_idle: state=4294967295 cpu_id=2
52747          <idle>-0     (-----) [002] d..1 82316.043121: cpu_idle: state=0 cpu_id=2
52748<...>-5340 ( 788) [005] d..1 82316.043156: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52749          <idle>-0     (-----) [000] dnh2 82316.043185: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52750          <idle>-0     (-----) [000] .n.1 82316.043191: cpu_idle: state=4294967295 cpu_id=0
52751          <idle>-0     (-----) [000] d..2 82316.043200: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
52752<...>-5340 ( 788) [005] ...1 82316.043250: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
52753<...>-5340 ( 788) [005] ...1 82316.043255: tracing_mark_write: E|788
52754 neuralnetworks@-13088 (  788) [000] d..2 82316.043269: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52755<...>-5340 ( 788) [005] .... 82316.043271: binder_transaction: transaction=1569522 dest_node=1569520 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
52756<...>-5340 ( 788) [005] .... 82316.043274: binder_transaction_alloc_buf: transaction=1569522 data_size=60 offsets_size=0
52757<...>-5340 ( 788) [005] d..4 82316.043277: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
52758          <idle>-0     (-----) [000] d..1 82316.043278: cpu_idle: state=0 cpu_id=0
52759<...>-5340 ( 788) [005] d..5 82316.043289: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
52760          <idle>-0     (-----) [004] .n.1 82316.043295: cpu_idle: state=4294967295 cpu_id=4
52761          <idle>-0     (-----) [004] d..2 82316.043304: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
52762           <...>-27571 (-----) [004] .... 82316.043309: binder_transaction_received: transaction=1569522
52763<...>-5340 ( 788) [005] ...1 82316.043312: tracing_mark_write: E|788
52764<...>-5340 ( 788) [005] .... 82316.043318: binder_transaction: transaction=1569523 dest_node=0 dest_proc=27550 dest_thread=27599 reply=1 flags=0x0 code=0x0
52765<...>-5340 ( 788) [005] .... 82316.043319: binder_transaction_alloc_buf: transaction=1569523 data_size=8 offsets_size=0
52766<...>-5340 ( 788) [005] d..2 82316.043321: sched_waking: comm=id.nn.benchmark pid=27599 prio=110 target_cpu=005
52767           <...>-27571 (-----) [004] ...1 82316.043327: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
52768<...>-5340 ( 788) [005] d..3 82316.043328: sched_wakeup: comm=id.nn.benchmark pid=27599 prio=110 target_cpu=005
52769<...>-5340 ( 788) [005] .... 82316.043330: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
52770           <...>-27571 (-----) [004] ...1 82316.043333: tracing_mark_write: E|27550
52771           <...>-27571 (-----) [004] d..2 82316.043362: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52772          <idle>-0     (-----) [004] d..1 82316.043369: cpu_idle: state=0 cpu_id=4
52773<...>-5340 ( 788) [005] d..2 82316.043372: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27599 next_prio=110
52774           <...>-27599 (-----) [005] .... 82316.043382: binder_transaction_received: transaction=1569523
52775           <...>-27599 (-----) [005] ...1 82316.043421: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
52776           <...>-27599 (-----) [005] ...1 82316.043427: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
52777           <...>-27599 (-----) [005] ...1 82316.043453: tracing_mark_write: E|27550
52778           <...>-27599 (-----) [005] ...1 82316.043459: tracing_mark_write: E|27550
52779           <...>-27599 (-----) [005] ...1 82316.043463: tracing_mark_write: E|27550
52780          <idle>-0     (-----) [000] d.h5 82316.043537: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
52781          <idle>-0     (-----) [000] dnh6 82316.043549: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
52782          <idle>-0     (-----) [000] .n.1 82316.043590: cpu_idle: state=4294967295 cpu_id=0
52783          <idle>-0     (-----) [000] d..2 82316.043597: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
52784           <...>-27599 (-----) [005] ...1 82316.043647: tracing_mark_write: E|27550
52785           <...>-27599 (-----) [005] d..1 82316.043659: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52786 crtc_commit:111-321   (  321) [000] d..2 82316.043674: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52787           <...>-27599 (-----) [005] d..2 82316.043675: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52788          <idle>-0     (-----) [004] .n.1 82316.043680: cpu_idle: state=4294967295 cpu_id=4
52789          <idle>-0     (-----) [000] d..1 82316.043683: cpu_idle: state=0 cpu_id=0
52790          <idle>-0     (-----) [004] d..2 82316.043687: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
52791           <...>-27550 (-----) [004] d..2 82316.043706: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52792          <idle>-0     (-----) [004] d..1 82316.043716: cpu_idle: state=0 cpu_id=4
52793           <...>-27599 (-----) [005] d..1 82316.043762: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52794           <...>-27599 (-----) [005] d..2 82316.043772: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
52795          <idle>-0     (-----) [004] .n.1 82316.043777: cpu_idle: state=4294967295 cpu_id=4
52796          <idle>-0     (-----) [004] d..2 82316.043785: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
52797           <...>-27599 (-----) [005] d..2 82316.043810: sched_switch: prev_comm=id.nn.benchmark prev_pid=27599 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
52798           <...>-27550 (-----) [004] ...1 82316.043817: tracing_mark_write: E|27550
52799          <idle>-0     (-----) [000] d.h5 82316.043820: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
52800           <...>-27550 (-----) [004] ...1 82316.043822: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
52801           <...>-27550 (-----) [004] ...1 82316.043828: tracing_mark_write: E|27550
52802          <idle>-0     (-----) [005] d..1 82316.043830: cpu_idle: state=0 cpu_id=5
52803           <...>-27550 (-----) [004] ...1 82316.043831: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
52804           <...>-27550 (-----) [004] ...1 82316.043835: tracing_mark_write: E|27550
52805          <idle>-0     (-----) [000] d.h6 82316.043836: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
52806           <...>-27550 (-----) [004] ...1 82316.043839: tracing_mark_write: E|27550
52807          <idle>-0     (-----) [002] .n.1 82316.043843: cpu_idle: state=4294967295 cpu_id=2
52808          <idle>-0     (-----) [002] d..2 82316.043853: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
52809          <idle>-0     (-----) [000] ...1 82316.043853: cpu_idle: state=4294967295 cpu_id=0
52810          <idle>-0     (-----) [000] d..1 82316.043858: cpu_idle: state=0 cpu_id=0
52811  crtc_event:111-322   (  322) [002] d..2 82316.043881: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52812          <idle>-0     (-----) [002] d..1 82316.043892: cpu_idle: state=0 cpu_id=2
52813           <...>-27550 (-----) [004] ...1 82316.043951: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
52814           <...>-27550 (-----) [004] ...1 82316.044008: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
52815           <...>-27550 (-----) [004] ...1 82316.044012: tracing_mark_write: E|27550
52816           <...>-27550 (-----) [004] ...1 82316.044016: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
52817           <...>-27550 (-----) [004] ...1 82316.044022: tracing_mark_write: E|27550
52818           <...>-27550 (-----) [004] ...1 82316.044026: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
52819           <...>-27550 (-----) [004] ...1 82316.044030: tracing_mark_write: E|27550
52820           <...>-27550 (-----) [004] ...1 82316.044033: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
52821          <idle>-0     (-----) [005] .n.1 82316.044124: cpu_idle: state=4294967295 cpu_id=5
52822           <...>-27550 (-----) [004] ...1 82316.044125: tracing_mark_write: E|27550
52823           <...>-27550 (-----) [004] ...1 82316.044129: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
52824          <idle>-0     (-----) [005] d..2 82316.044134: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27600 next_prio=110
52825           <...>-27550 (-----) [004] d..2 82316.044146: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
52826          <idle>-0     (-----) [004] d..1 82316.044161: cpu_idle: state=0 cpu_id=4
52827           <...>-27600 (-----) [005] ...1 82316.044195: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
52828           <...>-27600 (-----) [005] ...1 82316.044208: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
52829           <...>-27600 (-----) [005] ...1 82316.044212: tracing_mark_write: E|27550
52830           <...>-27600 (-----) [005] .... 82316.044233: binder_transaction: transaction=1569524 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
52831           <...>-27600 (-----) [005] .... 82316.044237: binder_transaction_alloc_buf: transaction=1569524 data_size=48 offsets_size=0
52832           <...>-27600 (-----) [005] ...2 82316.044240: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
52833           <...>-27600 (-----) [005] d..4 82316.044242: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
52834           <...>-27600 (-----) [005] dn.5 82316.044253: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
52835           <...>-27600 (-----) [005] d..2 82316.044260: sched_switch: prev_comm=id.nn.benchmark prev_pid=27600 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
52836<...>-770 ( 770) [005] .... 82316.044270: binder_transaction_received: transaction=1569524
52837<...>-770 ( 770) [005] ...1 82316.044292: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
52838<...>-770 ( 770) [005] d..2 82316.044364: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
52839          <idle>-0     (-----) [000] dnh2 82316.044392: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
52840          <idle>-0     (-----) [000] .n.1 82316.044397: cpu_idle: state=4294967295 cpu_id=0
52841<...>-770 ( 770) [005] ...1 82316.044404: tracing_mark_write: E|770
52842          <idle>-0     (-----) [000] d..2 82316.044406: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
52843<...>-770 ( 770) [005] .... 82316.044412: binder_transaction: transaction=1569525 dest_node=0 dest_proc=27550 dest_thread=27600 reply=1 flags=0x0 code=0x0
52844<...>-770 ( 770) [005] .... 82316.044415: binder_transaction_alloc_buf: transaction=1569525 data_size=168 offsets_size=32
52845<...>-770 ( 770) [005] .... 82316.044421: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
52846<...>-770 ( 770) [005] d..2 82316.044457: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27600 next_prio=110
52847           <...>-27600 (-----) [005] .... 82316.044468: binder_transaction_received: transaction=1569525
52848<...>-581 ( 571) [000] d..2 82316.044487: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52849          <idle>-0     (-----) [000] d..1 82316.044496: cpu_idle: state=0 cpu_id=0
52850           <...>-27600 (-----) [005] ...1 82316.044538: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
52851           <...>-27600 (-----) [005] ...1 82316.044543: tracing_mark_write: E|27550
52852           <...>-27600 (-----) [005] .... 82316.044558: binder_transaction: transaction=1569526 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
52853           <...>-27600 (-----) [005] .... 82316.044561: binder_transaction_alloc_buf: transaction=1569526 data_size=48 offsets_size=0
52854           <...>-27600 (-----) [005] ...2 82316.044563: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
52855           <...>-27600 (-----) [005] d..4 82316.044565: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
52856           <...>-27600 (-----) [005] dn.5 82316.044575: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
52857           <...>-27600 (-----) [005] d..2 82316.044582: sched_switch: prev_comm=id.nn.benchmark prev_pid=27600 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
52858<...>-770 ( 770) [005] .... 82316.044590: binder_transaction_received: transaction=1569526
52859<...>-770 ( 770) [005] ...1 82316.044606: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
52860<...>-770 ( 770) [005] d..2 82316.044663: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
52861          <idle>-0     (-----) [000] dnh2 82316.044687: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
52862          <idle>-0     (-----) [000] .n.1 82316.044693: cpu_idle: state=4294967295 cpu_id=0
52863<...>-770 ( 770) [005] ...1 82316.044697: tracing_mark_write: E|770
52864          <idle>-0     (-----) [000] d..2 82316.044702: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
52865<...>-770 ( 770) [005] .... 82316.044703: binder_transaction: transaction=1569527 dest_node=0 dest_proc=27550 dest_thread=27600 reply=1 flags=0x0 code=0x0
52866<...>-770 ( 770) [005] .... 82316.044706: binder_transaction_alloc_buf: transaction=1569527 data_size=168 offsets_size=32
52867<...>-770 ( 770) [005] .... 82316.044712: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
52868<...>-770 ( 770) [005] d..2 82316.044746: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27600 next_prio=110
52869           <...>-27600 (-----) [005] .... 82316.044756: binder_transaction_received: transaction=1569527
52870<...>-581 ( 571) [000] d..2 82316.044758: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52871          <idle>-0     (-----) [000] d..1 82316.044768: cpu_idle: state=0 cpu_id=0
52872           <...>-27600 (-----) [005] ...1 82316.045029: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
52873           <...>-27600 (-----) [005] ...1 82316.045039: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
52874           <...>-27600 (-----) [005] ...1 82316.045043: tracing_mark_write: E|27550
52875           <...>-27600 (-----) [005] .... 82316.045102: binder_transaction: transaction=1569528 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
52876          <idle>-0     (-----) [000] d.s2 82316.045135: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
52877          <idle>-0     (-----) [001] d.s2 82316.045136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
52878          <idle>-0     (-----) [000] dns3 82316.045154: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
52879          <idle>-0     (-----) [001] dns3 82316.045154: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
52880           <...>-27600 (-----) [005] .... 82316.045160: binder_transaction_alloc_buf: transaction=1569528 data_size=556 offsets_size=104
52881          <idle>-0     (-----) [001] .n.1 82316.045165: cpu_idle: state=4294967295 cpu_id=1
52882          <idle>-0     (-----) [000] .n.1 82316.045166: cpu_idle: state=4294967295 cpu_id=0
52883           <...>-27600 (-----) [005] ...2 82316.045174: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
52884          <idle>-0     (-----) [000] d..2 82316.045176: 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
52885           <...>-27600 (-----) [005] d..4 82316.045177: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52886          <idle>-0     (-----) [001] d..2 82316.045177: 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
52887<...>-8 ( 8) [000] d..2 82316.045182: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
52888           <...>-27600 (-----) [005] dn.5 82316.045185: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52889           <...>-27600 (-----) [005] d..2 82316.045191: sched_switch: prev_comm=id.nn.benchmark prev_pid=27600 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52890<...>-8 ( 8) [000] d..3 82316.045200: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
52891<...>-5340 ( 788) [005] .... 82316.045201: binder_transaction_received: transaction=1569528
52892     rcu_preempt-7     (    7) [001] d..2 82316.045209: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
52893<...>-46 ( 46) [001] d..2 82316.045221: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
52894<...>-8 ( 8) [000] d..2 82316.045234: 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
52895<...>-5340 ( 788) [005] ...1 82316.045245: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
52896<...>-46 ( 46) [001] d..3 82316.045251: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
52897          <idle>-0     (-----) [000] d..2 82316.045262: 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
52898<...>-46 ( 46) [001] d..2 82316.045272: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52899          <idle>-0     (-----) [001] d..1 82316.045286: cpu_idle: state=0 cpu_id=1
52900<...>-8 ( 8) [000] d..2 82316.045287: 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
52901<...>-5340 ( 788) [005] d..2 82316.045287: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
52902          <idle>-0     (-----) [000] d..1 82316.045297: cpu_idle: state=0 cpu_id=0
52903<...>-5340 ( 788) [005] d..2 82316.045324: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27600 next_prio=110
52904          <idle>-0     (-----) [000] dnh2 82316.045327: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52905          <idle>-0     (-----) [000] .n.1 82316.045334: cpu_idle: state=4294967295 cpu_id=0
52906          <idle>-0     (-----) [000] d..2 82316.045344: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
52907           <...>-27600 (-----) [005] d..2 82316.045348: sched_switch: prev_comm=id.nn.benchmark prev_pid=27600 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52908          <idle>-0     (-----) [005] d..1 82316.045365: cpu_idle: state=0 cpu_id=5
52909<...>-87 ( 87) [000] d..2 82316.045387: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52910          <idle>-0     (-----) [002] d.h4 82316.045394: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52911          <idle>-0     (-----) [000] d..1 82316.045398: cpu_idle: state=0 cpu_id=0
52912          <idle>-0     (-----) [002] dnh5 82316.045411: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52913          <idle>-0     (-----) [002] .n.1 82316.045421: cpu_idle: state=4294967295 cpu_id=2
52914          <idle>-0     (-----) [002] d..2 82316.045432: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
52915<...>-86 ( 86) [002] d..2 82316.045469: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52916          <idle>-0     (-----) [002] d.h5 82316.045491: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52917          <idle>-0     (-----) [005] dnh2 82316.045513: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
52918          <idle>-0     (-----) [005] .n.1 82316.045517: cpu_idle: state=4294967295 cpu_id=5
52919          <idle>-0     (-----) [005] d..2 82316.045525: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
52920          <idle>-0     (-----) [002] d..1 82316.045538: cpu_idle: state=0 cpu_id=2
52921<...>-5340 ( 788) [005] d..1 82316.045578: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52922          <idle>-0     (-----) [000] dnh2 82316.045605: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
52923          <idle>-0     (-----) [000] .n.1 82316.045611: cpu_idle: state=4294967295 cpu_id=0
52924          <idle>-0     (-----) [000] d..2 82316.045621: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
52925          <idle>-0     (-----) [003] d.h2 82316.045662: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
52926 neuralnetworks@-13088 (  788) [000] d..2 82316.045669: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52927          <idle>-0     (-----) [003] dnh3 82316.045678: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
52928          <idle>-0     (-----) [000] d..1 82316.045682: cpu_idle: state=0 cpu_id=0
52929          <idle>-0     (-----) [003] .n.1 82316.045685: cpu_idle: state=4294967295 cpu_id=3
52930          <idle>-0     (-----) [003] d..2 82316.045698: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
52931        DispSync-8879  ( 8858) [003] d..1 82316.045718: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
52932<...>-5340 ( 788) [005] d..2 82316.045725: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52933        DispSync-8879  ( 8858) [003] d..2 82316.045743: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
52934          <idle>-0     (-----) [000] dnh2 82316.045746: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
52935          <idle>-0     (-----) [002] .n.1 82316.045749: cpu_idle: state=4294967295 cpu_id=2
52936          <idle>-0     (-----) [000] .n.1 82316.045752: cpu_idle: state=4294967295 cpu_id=0
52937<...>-5340 ( 788) [005] d..2 82316.045752: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
52938          <idle>-0     (-----) [002] d..2 82316.045761: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
52939          <idle>-0     (-----) [000] d..2 82316.045763: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
52940          <idle>-0     (-----) [005] d..1 82316.045766: cpu_idle: state=0 cpu_id=5
52941        DispSync-8879  ( 8858) [003] d..2 82316.045778: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52942          <idle>-0     (-----) [003] d..1 82316.045790: cpu_idle: state=0 cpu_id=3
52943  appEventThread-8881  ( 8858) [002] d.h3 82316.045800: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
52944<...>-87 ( 87) [000] d..2 82316.045802: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52945          <idle>-0     (-----) [000] d..1 82316.045812: cpu_idle: state=0 cpu_id=0
52946  appEventThread-8881  ( 8858) [002] d.h4 82316.045829: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
52947          <idle>-0     (-----) [000] .n.1 82316.045834: cpu_idle: state=4294967295 cpu_id=0
52948          <idle>-0     (-----) [000] d..2 82316.045846: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
52949  appEventThread-8881  ( 8858) [002] d..3 82316.045868: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
52950<...>-86 ( 86) [000] d..2 82316.045882: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52951  appEventThread-8881  ( 8858) [002] d..4 82316.045889: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
52952          <idle>-0     (-----) [000] d..1 82316.045892: cpu_idle: state=0 cpu_id=0
52953          <idle>-0     (-----) [001] .n.1 82316.045895: cpu_idle: state=4294967295 cpu_id=1
52954          <idle>-0     (-----) [001] d..2 82316.045907: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
52955  appEventThread-8881  ( 8858) [002] d..3 82316.045907: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
52956  appEventThread-8881  ( 8858) [002] d..4 82316.045924: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
52957          <idle>-0     (-----) [000] .n.1 82316.045929: cpu_idle: state=4294967295 cpu_id=0
52958          <idle>-0     (-----) [000] d..2 82316.045940: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
52959  appEventThread-8881  ( 8858) [002] d..2 82316.045967: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52960          <idle>-0     (-----) [002] d..1 82316.045984: cpu_idle: state=0 cpu_id=2
52961          <idle>-0     (-----) [005] ...1 82316.046095: cpu_idle: state=4294967295 cpu_id=5
52962          <idle>-0     (-----) [005] d..1 82316.046099: cpu_idle: state=0 cpu_id=5
52963 s.nexuslauncher-10023 (10023) [000] d..2 82316.046201: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52964          <idle>-0     (-----) [000] d..1 82316.046219: cpu_idle: state=0 cpu_id=0
52965<...>-9105 ( 9105) [001] .... 82316.046232: binder_transaction: transaction=1569531 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
52966<...>-9105 ( 9105) [001] .... 82316.046240: binder_transaction_alloc_buf: transaction=1569531 data_size=80 offsets_size=0
52967<...>-9105 ( 9105) [001] d..4 82316.046246: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
52968<...>-9105 ( 9105) [001] d..5 82316.046284: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
52969          <idle>-0     (-----) [000] .n.1 82316.046291: cpu_idle: state=4294967295 cpu_id=0
52970          <idle>-0     (-----) [000] d..2 82316.046343: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
52971<...>-13083 ( 8858) [000] .... 82316.046354: binder_transaction_received: transaction=1569531
52972<...>-9105 ( 9105) [001] d..3 82316.046376: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
52973<...>-13083 ( 8858) [000] d..1 82316.046397: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
52974<...>-9105 ( 9105) [001] d..4 82316.046407: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
52975          <idle>-0     (-----) [002] .n.1 82316.046414: cpu_idle: state=4294967295 cpu_id=2
52976          <idle>-0     (-----) [002] d..2 82316.046452: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
52977<...>-13083 ( 8858) [000] d..2 82316.046473: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
52978          <idle>-0     (-----) [003] .n.1 82316.046478: cpu_idle: state=4294967295 cpu_id=3
52979          <idle>-0     (-----) [003] d..2 82316.046489: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
52980    RenderThread-9436  ( 9105) [002] d..2 82316.046513: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
52981<...>-13083 ( 8858) [000] d..2 82316.046521: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
52982          <idle>-0     (-----) [002] d..1 82316.046527: cpu_idle: state=0 cpu_id=2
52983          <idle>-0     (-----) [000] d..1 82316.046536: cpu_idle: state=0 cpu_id=0
52984  appEventThread-8881  ( 8858) [003] d..2 82316.046544: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
52985          <idle>-0     (-----) [003] d..1 82316.046556: cpu_idle: state=0 cpu_id=3
52986<...>-9105 ( 9105) [001] d..3 82316.046572: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
52987<...>-9105 ( 9105) [001] d..4 82316.046591: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
52988          <idle>-0     (-----) [002] .n.1 82316.046598: cpu_idle: state=4294967295 cpu_id=2
52989          <idle>-0     (-----) [002] d..2 82316.046609: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
52990<...>-9105 ( 9105) [001] d..2 82316.046627: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
52991          <idle>-0     (-----) [001] d..1 82316.046646: cpu_idle: state=0 cpu_id=1
52992    RenderThread-9436  ( 9105) [002] d..1 82316.046741: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
52993    RenderThread-9436  ( 9105) [002] d..2 82316.046760: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
52994          <idle>-0     (-----) [001] .n.1 82316.046767: cpu_idle: state=4294967295 cpu_id=1
52995          <idle>-0     (-----) [001] d..2 82316.046780: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
52996    RenderThread-9436  ( 9105) [002] .... 82316.046832: binder_transaction: transaction=1569532 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
52997    RenderThread-9436  ( 9105) [002] .... 82316.046837: binder_transaction_alloc_buf: transaction=1569532 data_size=104 offsets_size=0
52998    RenderThread-9436  ( 9105) [002] d..4 82316.046843: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
52999<...>-9105 ( 9105) [001] d..2 82316.046859: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53000    RenderThread-9436  ( 9105) [002] dn.5 82316.046864: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
53001          <idle>-0     (-----) [001] d..1 82316.046873: cpu_idle: state=0 cpu_id=1
53002    RenderThread-9436  ( 9105) [002] d..2 82316.046874: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
53003<...>-13083 ( 8858) [002] .... 82316.046883: binder_transaction_received: transaction=1569532
53004<...>-13083 ( 8858) [002] .... 82316.046962: binder_transaction: transaction=1569533 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
53005<...>-13083 ( 8858) [002] .... 82316.046966: binder_transaction_alloc_buf: transaction=1569533 data_size=52 offsets_size=8
53006<...>-13083 ( 8858) [002] d..2 82316.047018: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
53007    RenderThread-9436  ( 9105) [002] .... 82316.047027: binder_transaction_received: transaction=1569533
53008    RenderThread-9436  ( 9105) [002] d.h3 82316.047460: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53009          <idle>-0     (-----) [005] dnh2 82316.047483: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53010          <idle>-0     (-----) [005] .n.1 82316.047487: cpu_idle: state=4294967295 cpu_id=5
53011          <idle>-0     (-----) [005] d..2 82316.047495: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53012<...>-5340 ( 788) [005] d..1 82316.047555: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
53013          <idle>-0     (-----) [000] dnh2 82316.047582: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
53014          <idle>-0     (-----) [000] .n.1 82316.047589: cpu_idle: state=4294967295 cpu_id=0
53015          <idle>-0     (-----) [000] d..2 82316.047611: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
53016<...>-5340 ( 788) [005] ...1 82316.047647: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
53017<...>-5340 ( 788) [005] ...1 82316.047651: tracing_mark_write: E|788
53018<...>-5340 ( 788) [005] .... 82316.047666: binder_transaction: transaction=1569534 dest_node=1569529 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
53019<...>-5340 ( 788) [005] .... 82316.047669: binder_transaction_alloc_buf: transaction=1569534 data_size=60 offsets_size=0
53020<...>-5340 ( 788) [005] d..4 82316.047672: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
53021 neuralnetworks@-13088 (  788) [000] d..2 82316.047674: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53022<...>-5340 ( 788) [005] d..5 82316.047685: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
53023          <idle>-0     (-----) [000] d..1 82316.047686: cpu_idle: state=0 cpu_id=0
53024          <idle>-0     (-----) [004] .n.1 82316.047691: cpu_idle: state=4294967295 cpu_id=4
53025          <idle>-0     (-----) [004] d..2 82316.047699: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
53026           <...>-27571 (-----) [004] .... 82316.047704: binder_transaction_received: transaction=1569534
53027<...>-5340 ( 788) [005] ...1 82316.047707: tracing_mark_write: E|788
53028<...>-5340 ( 788) [005] .... 82316.047713: binder_transaction: transaction=1569535 dest_node=0 dest_proc=27550 dest_thread=27600 reply=1 flags=0x0 code=0x0
53029<...>-5340 ( 788) [005] .... 82316.047715: binder_transaction_alloc_buf: transaction=1569535 data_size=8 offsets_size=0
53030<...>-5340 ( 788) [005] d..2 82316.047717: sched_waking: comm=id.nn.benchmark pid=27600 prio=110 target_cpu=005
53031<...>-5340 ( 788) [005] d..3 82316.047724: sched_wakeup: comm=id.nn.benchmark pid=27600 prio=110 target_cpu=005
53032           <...>-27571 (-----) [004] ...1 82316.047724: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
53033<...>-5340 ( 788) [005] .... 82316.047726: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
53034           <...>-27571 (-----) [004] ...1 82316.047730: tracing_mark_write: E|27550
53035           <...>-27571 (-----) [004] d..2 82316.047759: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53036          <idle>-0     (-----) [004] d..1 82316.047767: cpu_idle: state=0 cpu_id=4
53037<...>-5340 ( 788) [005] d..2 82316.047769: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27600 next_prio=110
53038           <...>-27600 (-----) [005] .... 82316.047779: binder_transaction_received: transaction=1569535
53039           <...>-27600 (-----) [005] ...1 82316.047818: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
53040           <...>-27600 (-----) [005] ...1 82316.047825: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
53041           <...>-27600 (-----) [005] ...1 82316.047852: tracing_mark_write: E|27550
53042           <...>-27600 (-----) [005] ...1 82316.047855: tracing_mark_write: E|27550
53043           <...>-27600 (-----) [005] ...1 82316.047859: tracing_mark_write: E|27550
53044           <...>-27600 (-----) [005] ...1 82316.048049: tracing_mark_write: E|27550
53045           <...>-27600 (-----) [005] d..1 82316.048061: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53046           <...>-27600 (-----) [005] d..2 82316.048077: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53047          <idle>-0     (-----) [004] .n.1 82316.048082: cpu_idle: state=4294967295 cpu_id=4
53048          <idle>-0     (-----) [004] d..2 82316.048089: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
53049           <...>-27550 (-----) [004] d..2 82316.048109: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53050          <idle>-0     (-----) [004] d..1 82316.048118: cpu_idle: state=0 cpu_id=4
53051           <...>-27600 (-----) [005] d..1 82316.048166: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53052           <...>-27600 (-----) [005] d..2 82316.048175: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53053          <idle>-0     (-----) [004] .n.1 82316.048180: cpu_idle: state=4294967295 cpu_id=4
53054          <idle>-0     (-----) [004] d..2 82316.048188: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
53055    RenderThread-9436  ( 9105) [002] d..2 82316.048206: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
53056           <...>-27600 (-----) [005] d..2 82316.048215: sched_switch: prev_comm=id.nn.benchmark prev_pid=27600 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
53057           <...>-27550 (-----) [004] ...1 82316.048222: tracing_mark_write: E|27550
53058          <idle>-0     (-----) [002] d..1 82316.048225: cpu_idle: state=0 cpu_id=2
53059           <...>-27550 (-----) [004] ...1 82316.048227: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
53060           <...>-27550 (-----) [004] ...1 82316.048232: tracing_mark_write: E|27550
53061          <idle>-0     (-----) [005] d..1 82316.048236: cpu_idle: state=0 cpu_id=5
53062           <...>-27550 (-----) [004] ...1 82316.048237: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
53063           <...>-27550 (-----) [004] ...1 82316.048242: tracing_mark_write: E|27550
53064           <...>-27550 (-----) [004] ...1 82316.048246: tracing_mark_write: E|27550
53065          <idle>-0     (-----) [002] d.h2 82316.048284: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
53066          <idle>-0     (-----) [002] d.h3 82316.048296: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
53067          <idle>-0     (-----) [002] dnh3 82316.048301: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
53068          <idle>-0     (-----) [002] .n.1 82316.048311: cpu_idle: state=4294967295 cpu_id=2
53069          <idle>-0     (-----) [000] d.h3 82316.048322: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
53070          <idle>-0     (-----) [002] d..2 82316.048323: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
53071          <idle>-0     (-----) [000] d.h4 82316.048343: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
53072          <idle>-0     (-----) [003] .n.1 82316.048349: cpu_idle: state=4294967295 cpu_id=3
53073          <idle>-0     (-----) [000] ...1 82316.048357: cpu_idle: state=4294967295 cpu_id=0
53074          <idle>-0     (-----) [003] d..2 82316.048359: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
53075           <...>-27550 (-----) [004] ...1 82316.048359: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
53076          <idle>-0     (-----) [000] d..1 82316.048362: cpu_idle: state=0 cpu_id=0
53077 kgsl_worker_thr-258   (  258) [003] d..2 82316.048413: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
53078           <...>-27550 (-----) [004] ...1 82316.048416: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
53079           <...>-27550 (-----) [004] ...1 82316.048421: tracing_mark_write: E|27550
53080           <...>-27550 (-----) [004] ...1 82316.048424: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
53081           <...>-27550 (-----) [004] ...1 82316.048430: tracing_mark_write: E|27550
53082           <...>-27550 (-----) [004] ...1 82316.048433: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
53083 kgsl_worker_thr-258   (  258) [003] d..3 82316.048458: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
53084           <...>-27550 (-----) [004] ...1 82316.048481: tracing_mark_write: E|27550
53085           <...>-27550 (-----) [004] ...1 82316.048488: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
53086 kgsl_worker_thr-258   (  258) [003] d..2 82316.048510: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
53087  kworker/u16:15-1311  ( 1311) [003] d..2 82316.048516: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
53088  kworker/u16:15-1311  ( 1311) [003] dn.3 82316.048555: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
53089  kworker/u16:15-1311  ( 1311) [003] d..2 82316.048564: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
53090    RenderThread-9436  ( 9105) [002] .... 82316.048574: binder_transaction: transaction=1569536 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
53091    RenderThread-9436  ( 9105) [002] .... 82316.048579: binder_transaction_alloc_buf: transaction=1569536 data_size=192 offsets_size=8
53092          <idle>-0     (-----) [005] .n.1 82316.048582: cpu_idle: state=4294967295 cpu_id=5
53093    RenderThread-9436  ( 9105) [002] d..4 82316.048590: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
53094          <idle>-0     (-----) [005] d..2 82316.048592: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27601 next_prio=110
53095           <...>-27550 (-----) [004] ...1 82316.048594: tracing_mark_write: E|27550
53096           <...>-27550 (-----) [004] ...1 82316.048603: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
53097    RenderThread-9436  ( 9105) [002] dn.5 82316.048606: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
53098    RenderThread-9436  ( 9105) [002] d..2 82316.048616: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
53099           <...>-27550 (-----) [004] d..2 82316.048623: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53100<...>-13083 ( 8858) [002] .... 82316.048624: binder_transaction_received: transaction=1569536
53101          <idle>-0     (-----) [004] d..1 82316.048638: cpu_idle: state=0 cpu_id=4
53102           <...>-27601 (-----) [005] ...1 82316.048667: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
53103           <...>-27601 (-----) [005] ...1 82316.048682: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
53104           <...>-27601 (-----) [005] ...1 82316.048685: tracing_mark_write: E|27550
53105           <...>-27601 (-----) [005] .... 82316.048713: binder_transaction: transaction=1569537 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
53106           <...>-27601 (-----) [005] .... 82316.048720: binder_transaction_alloc_buf: transaction=1569537 data_size=48 offsets_size=0
53107           <...>-27601 (-----) [005] ...2 82316.048727: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
53108           <...>-27601 (-----) [005] d..4 82316.048730: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
53109           <...>-27601 (-----) [005] dn.5 82316.048740: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
53110           <...>-27601 (-----) [005] d..2 82316.048747: sched_switch: prev_comm=id.nn.benchmark prev_pid=27601 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
53111<...>-770 ( 770) [005] .... 82316.048758: binder_transaction_received: transaction=1569537
53112<...>-770 ( 770) [005] ...1 82316.048782: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
53113  kworker/u16:13-1147  ( 1147) [003] d..2 82316.048787: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
53114<...>-13083 ( 8858) [002] .... 82316.048815: binder_transaction: transaction=1569538 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
53115<...>-13083 ( 8858) [002] .... 82316.048820: binder_transaction_alloc_buf: transaction=1569538 data_size=68 offsets_size=0
53116  kworker/u16:15-1311  ( 1311) [003] d..2 82316.048835: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53117          <idle>-0     (-----) [003] d..1 82316.048849: cpu_idle: state=0 cpu_id=3
53118<...>-13083 ( 8858) [002] d..2 82316.048863: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
53119<...>-770 ( 770) [005] d..2 82316.048866: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
53120    RenderThread-9436  ( 9105) [002] .... 82316.048873: binder_transaction_received: transaction=1569538
53121    RenderThread-9436  ( 9105) [002] d.h2 82316.048907: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
53122<...>-770 ( 770) [005] ...1 82316.048923: tracing_mark_write: E|770
53123<...>-770 ( 770) [005] .... 82316.048932: binder_transaction: transaction=1569539 dest_node=0 dest_proc=27550 dest_thread=27601 reply=1 flags=0x0 code=0x0
53124<...>-770 ( 770) [005] .... 82316.048934: binder_transaction_alloc_buf: transaction=1569539 data_size=168 offsets_size=32
53125<...>-770 ( 770) [005] .... 82316.048942: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
53126    RenderThread-9436  ( 9105) [002] d..2 82316.048972: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
53127<...>-770 ( 770) [005] d..2 82316.048978: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27601 next_prio=110
53128           <...>-27601 (-----) [005] .... 82316.048989: binder_transaction_received: transaction=1569539
53129           <...>-27601 (-----) [005] ...1 82316.049065: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
53130           <...>-27601 (-----) [005] ...1 82316.049071: tracing_mark_write: E|27550
53131<...>-581 ( 571) [002] d..2 82316.049076: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53132           <...>-27601 (-----) [005] .... 82316.049085: binder_transaction: transaction=1569540 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
53133           <...>-27601 (-----) [005] .... 82316.049088: binder_transaction_alloc_buf: transaction=1569540 data_size=48 offsets_size=0
53134           <...>-27601 (-----) [005] ...2 82316.049091: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
53135           <...>-27601 (-----) [005] d..4 82316.049093: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
53136          <idle>-0     (-----) [002] d..1 82316.049097: cpu_idle: state=0 cpu_id=2
53137           <...>-27601 (-----) [005] dn.5 82316.049103: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
53138           <...>-27601 (-----) [005] d..2 82316.049109: sched_switch: prev_comm=id.nn.benchmark prev_pid=27601 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
53139<...>-770 ( 770) [005] .... 82316.049117: binder_transaction_received: transaction=1569540
53140<...>-770 ( 770) [005] ...1 82316.049134: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
53141<...>-770 ( 770) [005] d..2 82316.049195: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
53142          <idle>-0     (-----) [002] dnh2 82316.049220: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
53143          <idle>-0     (-----) [002] .n.1 82316.049228: cpu_idle: state=4294967295 cpu_id=2
53144<...>-770 ( 770) [005] ...1 82316.049228: tracing_mark_write: E|770
53145<...>-770 ( 770) [005] .... 82316.049235: binder_transaction: transaction=1569541 dest_node=0 dest_proc=27550 dest_thread=27601 reply=1 flags=0x0 code=0x0
53146<...>-770 ( 770) [005] .... 82316.049237: binder_transaction_alloc_buf: transaction=1569541 data_size=168 offsets_size=32
53147          <idle>-0     (-----) [002] d..2 82316.049239: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
53148<...>-770 ( 770) [005] .... 82316.049243: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
53149<...>-770 ( 770) [005] d..2 82316.049278: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27601 next_prio=110
53150           <...>-27601 (-----) [005] .... 82316.049289: binder_transaction_received: transaction=1569541
53151<...>-581 ( 571) [002] d..2 82316.049304: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53152          <idle>-0     (-----) [002] d..1 82316.049319: cpu_idle: state=0 cpu_id=2
53153           <...>-27601 (-----) [005] ...1 82316.049575: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
53154           <...>-27601 (-----) [005] ...1 82316.049584: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
53155           <...>-27601 (-----) [005] ...1 82316.049588: tracing_mark_write: E|27550
53156           <...>-27601 (-----) [005] .... 82316.049650: binder_transaction: transaction=1569542 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
53157           <...>-27601 (-----) [005] .... 82316.049653: binder_transaction_alloc_buf: transaction=1569542 data_size=556 offsets_size=104
53158           <...>-27601 (-----) [005] ...2 82316.049668: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
53159           <...>-27601 (-----) [005] d..4 82316.049671: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53160          <idle>-0     (-----) [003] d.h2 82316.049676: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
53161           <...>-27601 (-----) [005] dn.5 82316.049682: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53162           <...>-27601 (-----) [005] d..2 82316.049689: sched_switch: prev_comm=id.nn.benchmark prev_pid=27601 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53163          <idle>-0     (-----) [003] dnh3 82316.049690: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
53164<...>-5340 ( 788) [005] .... 82316.049699: binder_transaction_received: transaction=1569542
53165          <idle>-0     (-----) [003] .n.1 82316.049699: cpu_idle: state=4294967295 cpu_id=3
53166          <idle>-0     (-----) [003] d..2 82316.049709: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
53167        DispSync-8879  ( 8858) [003] d..1 82316.049728: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
53168        DispSync-8879  ( 8858) [003] d..2 82316.049742: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
53169<...>-5340 ( 788) [005] ...1 82316.049746: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
53170          <idle>-0     (-----) [002] .n.1 82316.049750: cpu_idle: state=4294967295 cpu_id=2
53171          <idle>-0     (-----) [002] d..2 82316.049760: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
53172        DispSync-8879  ( 8858) [003] d..2 82316.049776: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53173          <idle>-0     (-----) [003] d..1 82316.049790: cpu_idle: state=0 cpu_id=3
53174<...>-5340 ( 788) [005] d..2 82316.049793: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53175   sfEventThread-8882  ( 8858) [002] d..3 82316.049803: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
53176   sfEventThread-8882  ( 8858) [002] d..4 82316.049823: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
53177          <idle>-0     (-----) [003] .n.1 82316.049830: cpu_idle: state=4294967295 cpu_id=3
53178<...>-5340 ( 788) [005] d..2 82316.049831: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27601 next_prio=110
53179   sfEventThread-8882  ( 8858) [002] d.h2 82316.049837: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
53180          <idle>-0     (-----) [003] d..2 82316.049840: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
53181           <...>-27601 (-----) [005] d..2 82316.049854: sched_switch: prev_comm=id.nn.benchmark prev_pid=27601 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
53182   sfEventThread-8882  ( 8858) [002] d..2 82316.049865: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
53183          <idle>-0     (-----) [005] d..1 82316.049871: cpu_idle: state=0 cpu_id=5
53184<...>-87 ( 87) [002] d..2 82316.049915: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53185          <idle>-0     (-----) [002] d.h5 82316.049936: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
53186          <idle>-0     (-----) [002] dnh6 82316.049971: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53187          <idle>-0     (-----) [002] dnh4 82316.050001: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53188          <idle>-0     (-----) [005] dnh2 82316.050023: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53189          <idle>-0     (-----) [005] .n.1 82316.050027: cpu_idle: state=4294967295 cpu_id=5
53190          <idle>-0     (-----) [005] d..2 82316.050036: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53191          <idle>-0     (-----) [002] d..2 82316.050043: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
53192<...>-86 ( 86) [002] d..2 82316.050079: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53193<...>-5340 ( 788) [005] d..1 82316.050090: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
53194          <idle>-0     (-----) [002] d..1 82316.050096: cpu_idle: state=0 cpu_id=2
53195  surfaceflinger-8858  ( 8858) [003] d.h1 82316.050131: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
53196  surfaceflinger-8858  ( 8858) [003] d..1 82316.050191: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
53197  surfaceflinger-8858  ( 8858) [003] d..2 82316.050210: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
53198          <idle>-0     (-----) [002] .n.1 82316.050217: cpu_idle: state=4294967295 cpu_id=2
53199          <idle>-0     (-----) [002] d..2 82316.050228: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
53200<...>-5340 ( 788) [005] d..2 82316.050251: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
53201   sfEventThread-8882  ( 8858) [002] d..2 82316.050274: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53202<...>-5340 ( 788) [005] d..2 82316.050281: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
53203          <idle>-0     (-----) [002] dnh3 82316.050287: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
53204          <idle>-0     (-----) [005] d..1 82316.050296: cpu_idle: state=0 cpu_id=5
53205          <idle>-0     (-----) [002] d..2 82316.050298: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
53206<...>-87 ( 87) [002] d.h4 82316.050330: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53207<...>-87 ( 87) [002] d.h5 82316.050347: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53208<...>-87 ( 87) [002] d..2 82316.050362: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
53209<...>-86 ( 86) [002] d..2 82316.050395: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53210          <idle>-0     (-----) [002] d..1 82316.050410: cpu_idle: state=0 cpu_id=2
53211  surfaceflinger-8858  ( 8858) [003] ...1 82316.050410: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
53212  surfaceflinger-8858  ( 8858) [003] ...1 82316.050417: tracing_mark_write: E|8858
53213  surfaceflinger-8858  ( 8858) [003] .... 82316.050471: binder_transaction: transaction=1569545 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
53214  surfaceflinger-8858  ( 8858) [003] .... 82316.050476: binder_transaction_alloc_buf: transaction=1569545 data_size=540 offsets_size=96
53215  surfaceflinger-8858  ( 8858) [003] ...2 82316.050501: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
53216  surfaceflinger-8858  ( 8858) [003] d..4 82316.050509: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
53217  surfaceflinger-8858  ( 8858) [003] d..5 82316.050527: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
53218          <idle>-0     (-----) [001] .n.1 82316.050534: cpu_idle: state=4294967295 cpu_id=1
53219          <idle>-0     (-----) [001] d..2 82316.050546: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
53220  surfaceflinger-8858  ( 8858) [003] d..2 82316.050549: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
53221 [email protected]   (  619) [001] .... 82316.050557: binder_transaction_received: transaction=1569545
53222 [email protected]   (  619) [001] ...1 82316.050602: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
53223 neuralnetworks@-13088 (  788) [003] d..2 82316.050609: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53224          <idle>-0     (-----) [003] d..1 82316.050627: cpu_idle: state=0 cpu_id=3
53225          <idle>-0     (-----) [005] ...1 82316.050636: cpu_idle: state=4294967295 cpu_id=5
53226          <idle>-0     (-----) [005] d..1 82316.050639: cpu_idle: state=0 cpu_id=5
53227 [email protected]   (  619) [001] ...1 82316.050716: tracing_mark_write: B|619|HWCSession::PresentDisplay::
53228 [email protected]   (  619) [001] ...1 82316.050896: tracing_mark_write: B|619|HWDeviceDRM::Commit::
53229 [email protected]   (  619) [001] ...1 82316.050910: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
53230 [email protected]   (  619) [001] d..2 82316.051545: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
53231 [email protected]   (  619) [001] d..3 82316.051569: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
53232          <idle>-0     (-----) [000] .n.1 82316.051574: cpu_idle: state=4294967295 cpu_id=0
53233          <idle>-0     (-----) [002] ...1 82316.051576: cpu_idle: state=4294967295 cpu_id=2
53234          <idle>-0     (-----) [002] d..1 82316.051581: cpu_idle: state=0 cpu_id=2
53235          <idle>-0     (-----) [000] d..2 82316.051587: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
53236 [email protected]   (  619) [001] ...1 82316.051672: tracing_mark_write: E|619
53237 [email protected]   (  619) [001] ...1 82316.051679: tracing_mark_write: E|619
53238 [email protected]   (  619) [001] ...1 82316.051741: tracing_mark_write: E|619
53239 [email protected]   (  619) [001] d.s1 82316.051816: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
53240 crtc_commit:111-321   (  321) [000] d.s1 82316.051886: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
53241 [email protected]   (  619) [001] d.s2 82316.051908: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
53242 crtc_commit:111-321   (  321) [000] d.s2 82316.051917: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
53243 [email protected]   (  619) [001] ...1 82316.051949: tracing_mark_write: E|619
53244 [email protected]   (  619) [001] .... 82316.051965: binder_transaction: transaction=1569546 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
53245 [email protected]   (  619) [001] .... 82316.051969: binder_transaction_alloc_buf: transaction=1569546 data_size=576 offsets_size=112
53246          <idle>-0     (-----) [002] d.h4 82316.051972: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53247 [email protected]   (  619) [001] d..2 82316.051990: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
53248          <idle>-0     (-----) [005] dnh2 82316.051995: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53249          <idle>-0     (-----) [005] .n.1 82316.051998: cpu_idle: state=4294967295 cpu_id=5
53250          <idle>-0     (-----) [005] d..2 82316.052007: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53251 [email protected]   (  619) [001] d..3 82316.052009: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
53252          <idle>-0     (-----) [002] ...1 82316.052013: cpu_idle: state=4294967295 cpu_id=2
53253 [email protected]   (  619) [001] .... 82316.052014: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
53254          <idle>-0     (-----) [003] .n.1 82316.052016: cpu_idle: state=4294967295 cpu_id=3
53255          <idle>-0     (-----) [002] d..1 82316.052021: cpu_idle: state=0 cpu_id=2
53256          <idle>-0     (-----) [003] d..2 82316.052029: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
53257  surfaceflinger-8858  ( 8858) [003] .... 82316.052039: binder_transaction_received: transaction=1569546
53258<...>-5340 ( 788) [005] d..1 82316.052059: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
53259  surfaceflinger-8858  ( 8858) [003] d.h1 82316.052084: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
53260 [email protected]   (  619) [001] d..2 82316.052147: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53261<...>-5340 ( 788) [005] ...1 82316.052155: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
53262<...>-5340 ( 788) [005] ...1 82316.052161: tracing_mark_write: E|788
53263          <idle>-0     (-----) [001] d..1 82316.052169: cpu_idle: state=0 cpu_id=1
53264<...>-5340 ( 788) [005] .... 82316.052179: binder_transaction: transaction=1569547 dest_node=1569543 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
53265<...>-5340 ( 788) [005] .... 82316.052182: binder_transaction_alloc_buf: transaction=1569547 data_size=60 offsets_size=0
53266<...>-5340 ( 788) [005] d..4 82316.052186: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
53267<...>-5340 ( 788) [005] d..5 82316.052200: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
53268          <idle>-0     (-----) [004] .n.1 82316.052206: cpu_idle: state=4294967295 cpu_id=4
53269          <idle>-0     (-----) [004] d..2 82316.052214: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
53270           <...>-27571 (-----) [004] .... 82316.052219: binder_transaction_received: transaction=1569547
53271<...>-5340 ( 788) [005] ...1 82316.052224: tracing_mark_write: E|788
53272<...>-5340 ( 788) [005] .... 82316.052230: binder_transaction: transaction=1569548 dest_node=0 dest_proc=27550 dest_thread=27601 reply=1 flags=0x0 code=0x0
53273<...>-5340 ( 788) [005] .... 82316.052232: binder_transaction_alloc_buf: transaction=1569548 data_size=8 offsets_size=0
53274<...>-5340 ( 788) [005] d..2 82316.052234: sched_waking: comm=id.nn.benchmark pid=27601 prio=110 target_cpu=005
53275           <...>-27571 (-----) [004] ...1 82316.052238: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
53276<...>-5340 ( 788) [005] d..3 82316.052241: sched_wakeup: comm=id.nn.benchmark pid=27601 prio=110 target_cpu=005
53277<...>-5340 ( 788) [005] .... 82316.052243: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
53278           <...>-27571 (-----) [004] ...1 82316.052245: tracing_mark_write: E|27550
53279           <...>-27571 (-----) [004] d..2 82316.052275: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53280          <idle>-0     (-----) [004] d..1 82316.052282: cpu_idle: state=0 cpu_id=4
53281<...>-5340 ( 788) [005] d..2 82316.052285: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27601 next_prio=110
53282           <...>-27601 (-----) [005] .... 82316.052296: binder_transaction_received: transaction=1569548
53283           <...>-27601 (-----) [005] ...1 82316.052333: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
53284           <...>-27601 (-----) [005] ...1 82316.052339: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
53285           <...>-27601 (-----) [005] ...1 82316.052365: tracing_mark_write: E|27550
53286           <...>-27601 (-----) [005] ...1 82316.052370: tracing_mark_write: E|27550
53287           <...>-27601 (-----) [005] ...1 82316.052374: tracing_mark_write: E|27550
53288 crtc_commit:111-321   (  321) [000] d..2 82316.052511: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_sched next_pid=8 next_prio=120
53289<...>-8 ( 8) [000] d..2 82316.052532: 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
53290     rcu_preempt-7     (    7) [000] d..2 82316.052541: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
53291     rcu_preempt-7     (    7) [000] d..3 82316.052562: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
53292           <...>-27601 (-----) [005] ...1 82316.052562: tracing_mark_write: E|27550
53293           <...>-27601 (-----) [005] d..1 82316.052576: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53294     rcu_preempt-7     (    7) [000] d..2 82316.052578: 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
53295         rcuop/4-45    (   45) [000] d..2 82316.052584: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
53296           <...>-27601 (-----) [005] d..2 82316.052593: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53297          <idle>-0     (-----) [004] .n.1 82316.052598: cpu_idle: state=4294967295 cpu_id=4
53298          <idle>-0     (-----) [004] d..2 82316.052605: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
53299  surfaceflinger-8858  ( 8858) [003] d..2 82316.052614: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
53300         rcuop/4-45    (   45) [000] d..3 82316.052621: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
53301           <...>-27550 (-----) [004] d..2 82316.052626: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53302         rcuop/4-45    (   45) [000] d..2 82316.052633: 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
53303          <idle>-0     (-----) [004] d..1 82316.052635: cpu_idle: state=0 cpu_id=4
53304 neuralnetworks@-13088 (  788) [003] d..2 82316.052663: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53305           <...>-27601 (-----) [005] d..1 82316.052686: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53306          <idle>-0     (-----) [003] d..1 82316.052686: cpu_idle: state=0 cpu_id=3
53307           <...>-27601 (-----) [005] d..2 82316.052695: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53308          <idle>-0     (-----) [004] .n.1 82316.052700: cpu_idle: state=4294967295 cpu_id=4
53309          <idle>-0     (-----) [004] d..2 82316.052708: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
53310           <...>-27601 (-----) [005] d..2 82316.052736: sched_switch: prev_comm=id.nn.benchmark prev_pid=27601 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
53311           <...>-27550 (-----) [004] ...1 82316.052741: tracing_mark_write: E|27550
53312           <...>-27550 (-----) [004] ...1 82316.052746: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
53313         rcuop/5-53    (   53) [000] d..2 82316.052749: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53314           <...>-27550 (-----) [004] ...1 82316.052752: tracing_mark_write: E|27550
53315           <...>-27550 (-----) [004] ...1 82316.052756: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
53316          <idle>-0     (-----) [005] d..1 82316.052758: cpu_idle: state=0 cpu_id=5
53317           <...>-27550 (-----) [004] ...1 82316.052760: tracing_mark_write: E|27550
53318           <...>-27550 (-----) [004] ...1 82316.052764: tracing_mark_write: E|27550
53319          <idle>-0     (-----) [000] d..1 82316.052765: cpu_idle: state=0 cpu_id=0
53320           <...>-27550 (-----) [004] ...1 82316.052876: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
53321           <...>-27550 (-----) [004] ...1 82316.052934: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
53322           <...>-27550 (-----) [004] ...1 82316.052940: tracing_mark_write: E|27550
53323           <...>-27550 (-----) [004] ...1 82316.052944: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
53324           <...>-27550 (-----) [004] ...1 82316.052950: tracing_mark_write: E|27550
53325           <...>-27550 (-----) [004] ...1 82316.052954: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
53326           <...>-27550 (-----) [004] ...1 82316.052958: tracing_mark_write: E|27550
53327           <...>-27550 (-----) [004] ...1 82316.052962: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
53328          <idle>-0     (-----) [005] .n.1 82316.053058: cpu_idle: state=4294967295 cpu_id=5
53329           <...>-27550 (-----) [004] ...1 82316.053059: tracing_mark_write: E|27550
53330           <...>-27550 (-----) [004] ...1 82316.053064: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
53331          <idle>-0     (-----) [005] d..2 82316.053067: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27602 next_prio=110
53332           <...>-27550 (-----) [004] d..2 82316.053081: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53333          <idle>-0     (-----) [004] d..1 82316.053096: cpu_idle: state=0 cpu_id=4
53334           <...>-27602 (-----) [005] ...1 82316.053129: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
53335           <...>-27602 (-----) [005] ...1 82316.053143: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
53336           <...>-27602 (-----) [005] ...1 82316.053147: tracing_mark_write: E|27550
53337           <...>-27602 (-----) [005] .... 82316.053168: binder_transaction: transaction=1569549 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
53338           <...>-27602 (-----) [005] .... 82316.053171: binder_transaction_alloc_buf: transaction=1569549 data_size=48 offsets_size=0
53339           <...>-27602 (-----) [005] ...2 82316.053174: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
53340           <...>-27602 (-----) [005] d..4 82316.053177: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
53341           <...>-27602 (-----) [005] dn.5 82316.053189: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
53342           <...>-27602 (-----) [005] d..2 82316.053196: sched_switch: prev_comm=id.nn.benchmark prev_pid=27602 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
53343          <idle>-0     (-----) [002] ...1 82316.053207: cpu_idle: state=4294967295 cpu_id=2
53344<...>-770 ( 770) [005] .... 82316.053207: binder_transaction_received: transaction=1569549
53345          <idle>-0     (-----) [002] d..1 82316.053211: cpu_idle: state=0 cpu_id=2
53346<...>-770 ( 770) [005] ...1 82316.053232: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
53347<...>-770 ( 770) [005] d..2 82316.053318: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
53348          <idle>-0     (-----) [000] dnh2 82316.053359: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
53349          <idle>-0     (-----) [000] .n.1 82316.053366: cpu_idle: state=4294967295 cpu_id=0
53350<...>-770 ( 770) [005] ...1 82316.053373: tracing_mark_write: E|770
53351          <idle>-0     (-----) [000] d..2 82316.053377: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
53352<...>-770 ( 770) [005] .... 82316.053382: binder_transaction: transaction=1569550 dest_node=0 dest_proc=27550 dest_thread=27602 reply=1 flags=0x0 code=0x0
53353<...>-770 ( 770) [005] .... 82316.053384: binder_transaction_alloc_buf: transaction=1569550 data_size=168 offsets_size=32
53354<...>-770 ( 770) [005] .... 82316.053391: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
53355<...>-770 ( 770) [005] d..2 82316.053427: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27602 next_prio=110
53356           <...>-27602 (-----) [005] .... 82316.053438: binder_transaction_received: transaction=1569550
53357<...>-581 ( 571) [000] d..2 82316.053474: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53358          <idle>-0     (-----) [000] d..1 82316.053489: cpu_idle: state=0 cpu_id=0
53359           <...>-27602 (-----) [005] ...1 82316.053511: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
53360           <...>-27602 (-----) [005] ...1 82316.053517: tracing_mark_write: E|27550
53361           <...>-27602 (-----) [005] .... 82316.053531: binder_transaction: transaction=1569551 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
53362           <...>-27602 (-----) [005] .... 82316.053533: binder_transaction_alloc_buf: transaction=1569551 data_size=48 offsets_size=0
53363           <...>-27602 (-----) [005] ...2 82316.053535: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
53364           <...>-27602 (-----) [005] d..4 82316.053538: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
53365           <...>-27602 (-----) [005] dn.5 82316.053548: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
53366           <...>-27602 (-----) [005] d..2 82316.053554: sched_switch: prev_comm=id.nn.benchmark prev_pid=27602 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
53367<...>-770 ( 770) [005] .... 82316.053563: binder_transaction_received: transaction=1569551
53368<...>-770 ( 770) [005] ...1 82316.053579: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
53369<...>-770 ( 770) [005] d..2 82316.053637: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
53370          <idle>-0     (-----) [000] dnh2 82316.053661: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
53371          <idle>-0     (-----) [000] .n.1 82316.053667: cpu_idle: state=4294967295 cpu_id=0
53372<...>-770 ( 770) [005] ...1 82316.053670: tracing_mark_write: E|770
53373<...>-770 ( 770) [005] .... 82316.053677: binder_transaction: transaction=1569552 dest_node=0 dest_proc=27550 dest_thread=27602 reply=1 flags=0x0 code=0x0
53374<...>-770 ( 770) [005] .... 82316.053679: binder_transaction_alloc_buf: transaction=1569552 data_size=168 offsets_size=32
53375          <idle>-0     (-----) [000] d..2 82316.053680: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
53376<...>-770 ( 770) [005] .... 82316.053685: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
53377<...>-770 ( 770) [005] d..2 82316.053720: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27602 next_prio=110
53378           <...>-27602 (-----) [005] .... 82316.053730: binder_transaction_received: transaction=1569552
53379<...>-581 ( 571) [000] d..2 82316.053741: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53380          <idle>-0     (-----) [000] d..1 82316.053754: cpu_idle: state=0 cpu_id=0
53381           <...>-27602 (-----) [005] ...1 82316.054007: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
53382           <...>-27602 (-----) [005] ...1 82316.054017: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
53383           <...>-27602 (-----) [005] ...1 82316.054021: tracing_mark_write: E|27550
53384           <...>-27602 (-----) [005] .... 82316.054084: binder_transaction: transaction=1569553 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
53385           <...>-27602 (-----) [005] .... 82316.054087: binder_transaction_alloc_buf: transaction=1569553 data_size=556 offsets_size=104
53386           <...>-27602 (-----) [005] ...2 82316.054102: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
53387           <...>-27602 (-----) [005] d..4 82316.054104: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53388           <...>-27602 (-----) [005] dn.5 82316.054115: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53389           <...>-27602 (-----) [005] d..2 82316.054122: sched_switch: prev_comm=id.nn.benchmark prev_pid=27602 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53390<...>-5340 ( 788) [005] .... 82316.054132: binder_transaction_received: transaction=1569553
53391<...>-5340 ( 788) [005] ...1 82316.054180: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
53392<...>-5340 ( 788) [005] d..2 82316.054227: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
53393<...>-5340 ( 788) [005] d..2 82316.054264: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27602 next_prio=110
53394          <idle>-0     (-----) [000] dnh2 82316.054268: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53395          <idle>-0     (-----) [000] .n.1 82316.054274: cpu_idle: state=4294967295 cpu_id=0
53396          <idle>-0     (-----) [000] d..2 82316.054285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
53397           <...>-27602 (-----) [005] d..2 82316.054288: sched_switch: prev_comm=id.nn.benchmark prev_pid=27602 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
53398          <idle>-0     (-----) [005] d..1 82316.054305: cpu_idle: state=0 cpu_id=5
53399<...>-87 ( 87) [000] d..2 82316.054329: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53400          <idle>-0     (-----) [002] d.h4 82316.054333: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53401          <idle>-0     (-----) [000] d..1 82316.054340: cpu_idle: state=0 cpu_id=0
53402          <idle>-0     (-----) [002] dnh5 82316.054351: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53403          <idle>-0     (-----) [002] .n.1 82316.054359: cpu_idle: state=4294967295 cpu_id=2
53404          <idle>-0     (-----) [002] d..2 82316.054374: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
53405<...>-86 ( 86) [002] d..2 82316.054408: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53406          <idle>-0     (-----) [002] d.h5 82316.054429: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53407          <idle>-0     (-----) [003] ...1 82316.054432: cpu_idle: state=4294967295 cpu_id=3
53408          <idle>-0     (-----) [003] d..1 82316.054438: cpu_idle: state=0 cpu_id=3
53409          <idle>-0     (-----) [005] dnh2 82316.054451: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53410          <idle>-0     (-----) [005] .n.1 82316.054455: cpu_idle: state=4294967295 cpu_id=5
53411          <idle>-0     (-----) [005] d..2 82316.054464: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53412          <idle>-0     (-----) [002] d..1 82316.054475: cpu_idle: state=0 cpu_id=2
53413<...>-5340 ( 788) [005] d..1 82316.054517: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
53414          <idle>-0     (-----) [003] dnh2 82316.054542: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
53415          <idle>-0     (-----) [003] .n.1 82316.054548: cpu_idle: state=4294967295 cpu_id=3
53416          <idle>-0     (-----) [003] d..2 82316.054559: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
53417 neuralnetworks@-13088 (  788) [003] d..2 82316.054600: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53418          <idle>-0     (-----) [003] d..1 82316.054612: cpu_idle: state=0 cpu_id=3
53419<...>-5340 ( 788) [005] d..2 82316.054662: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53420          <idle>-0     (-----) [000] dnh2 82316.054684: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53421<...>-5340 ( 788) [005] d..2 82316.054688: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
53422          <idle>-0     (-----) [000] .n.1 82316.054690: cpu_idle: state=4294967295 cpu_id=0
53423          <idle>-0     (-----) [000] d..2 82316.054700: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
53424          <idle>-0     (-----) [005] d..1 82316.054703: cpu_idle: state=0 cpu_id=5
53425<...>-87 ( 87) [000] d..2 82316.054736: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53426          <idle>-0     (-----) [002] d.h4 82316.054737: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53427          <idle>-0     (-----) [000] d..1 82316.054746: cpu_idle: state=0 cpu_id=0
53428          <idle>-0     (-----) [002] dnh5 82316.054749: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53429          <idle>-0     (-----) [002] .n.1 82316.054758: cpu_idle: state=4294967295 cpu_id=2
53430          <idle>-0     (-----) [002] d..2 82316.054769: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
53431<...>-86 ( 86) [002] d..2 82316.054803: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53432          <idle>-0     (-----) [002] d..1 82316.054814: cpu_idle: state=0 cpu_id=2
53433          <idle>-0     (-----) [005] ...1 82316.055043: cpu_idle: state=4294967295 cpu_id=5
53434          <idle>-0     (-----) [005] d..1 82316.055047: cpu_idle: state=0 cpu_id=5
53435          <idle>-0     (-----) [002] d.h4 82316.056475: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53436          <idle>-0     (-----) [005] dnh2 82316.056495: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53437          <idle>-0     (-----) [005] .n.1 82316.056499: cpu_idle: state=4294967295 cpu_id=5
53438          <idle>-0     (-----) [005] d..2 82316.056507: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53439          <idle>-0     (-----) [002] d..2 82316.056511: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
53440          <idle>-0     (-----) [002] dn.3 82316.056523: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
53441          <idle>-0     (-----) [002] .n.1 82316.056528: cpu_idle: state=4294967295 cpu_id=2
53442          <idle>-0     (-----) [002] d..2 82316.056542: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
53443<...>-5340 ( 788) [005] d..1 82316.056559: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
53444     ksoftirqd/2-26    (   26) [002] d..2 82316.056577: 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
53445          <idle>-0     (-----) [003] dnh2 82316.056585: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
53446          <idle>-0     (-----) [003] .n.1 82316.056591: cpu_idle: state=4294967295 cpu_id=3
53447          <idle>-0     (-----) [002] d..1 82316.056593: cpu_idle: state=0 cpu_id=2
53448          <idle>-0     (-----) [003] d..2 82316.056603: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
53449<...>-5340 ( 788) [005] ...1 82316.056649: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
53450<...>-5340 ( 788) [005] ...1 82316.056653: tracing_mark_write: E|788
53451 neuralnetworks@-13088 (  788) [003] d..2 82316.056667: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53452<...>-5340 ( 788) [005] .... 82316.056669: binder_transaction: transaction=1569556 dest_node=1569554 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
53453<...>-5340 ( 788) [005] .... 82316.056672: binder_transaction_alloc_buf: transaction=1569556 data_size=60 offsets_size=0
53454<...>-5340 ( 788) [005] d..4 82316.056675: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
53455          <idle>-0     (-----) [003] d..1 82316.056678: cpu_idle: state=0 cpu_id=3
53456<...>-5340 ( 788) [005] d..5 82316.056688: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
53457          <idle>-0     (-----) [004] .n.1 82316.056693: cpu_idle: state=4294967295 cpu_id=4
53458          <idle>-0     (-----) [004] d..2 82316.056702: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
53459           <...>-27571 (-----) [004] .... 82316.056707: binder_transaction_received: transaction=1569556
53460<...>-5340 ( 788) [005] ...1 82316.056710: tracing_mark_write: E|788
53461<...>-5340 ( 788) [005] .... 82316.056716: binder_transaction: transaction=1569557 dest_node=0 dest_proc=27550 dest_thread=27602 reply=1 flags=0x0 code=0x0
53462<...>-5340 ( 788) [005] .... 82316.056718: binder_transaction_alloc_buf: transaction=1569557 data_size=8 offsets_size=0
53463<...>-5340 ( 788) [005] d..2 82316.056720: sched_waking: comm=id.nn.benchmark pid=27602 prio=110 target_cpu=005
53464           <...>-27571 (-----) [004] ...1 82316.056725: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
53465<...>-5340 ( 788) [005] d..3 82316.056727: sched_wakeup: comm=id.nn.benchmark pid=27602 prio=110 target_cpu=005
53466<...>-5340 ( 788) [005] .... 82316.056729: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
53467           <...>-27571 (-----) [004] ...1 82316.056732: tracing_mark_write: E|27550
53468           <...>-27571 (-----) [004] d..2 82316.056760: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53469          <idle>-0     (-----) [004] d..1 82316.056768: cpu_idle: state=0 cpu_id=4
53470<...>-5340 ( 788) [005] d..2 82316.056770: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27602 next_prio=110
53471           <...>-27602 (-----) [005] .... 82316.056780: binder_transaction_received: transaction=1569557
53472           <...>-27602 (-----) [005] ...1 82316.056815: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
53473           <...>-27602 (-----) [005] ...1 82316.056821: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
53474           <...>-27602 (-----) [005] ...1 82316.056847: tracing_mark_write: E|27550
53475           <...>-27602 (-----) [005] ...1 82316.056850: tracing_mark_write: E|27550
53476           <...>-27602 (-----) [005] ...1 82316.056854: tracing_mark_write: E|27550
53477           <...>-27602 (-----) [005] ...1 82316.057040: tracing_mark_write: E|27550
53478           <...>-27602 (-----) [005] d..1 82316.057054: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53479           <...>-27602 (-----) [005] d..2 82316.057071: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53480          <idle>-0     (-----) [004] .n.1 82316.057075: cpu_idle: state=4294967295 cpu_id=4
53481          <idle>-0     (-----) [004] d..2 82316.057082: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
53482           <...>-27550 (-----) [004] d..2 82316.057102: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53483          <idle>-0     (-----) [004] d..1 82316.057111: cpu_idle: state=0 cpu_id=4
53484           <...>-27602 (-----) [005] d..1 82316.057157: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53485           <...>-27602 (-----) [005] d..2 82316.057166: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53486          <idle>-0     (-----) [004] .n.1 82316.057172: cpu_idle: state=4294967295 cpu_id=4
53487          <idle>-0     (-----) [004] d..2 82316.057179: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
53488           <...>-27602 (-----) [005] d..2 82316.057204: sched_switch: prev_comm=id.nn.benchmark prev_pid=27602 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
53489           <...>-27550 (-----) [004] ...1 82316.057211: tracing_mark_write: E|27550
53490           <...>-27550 (-----) [004] ...1 82316.057217: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
53491           <...>-27550 (-----) [004] ...1 82316.057222: tracing_mark_write: E|27550
53492          <idle>-0     (-----) [005] d..1 82316.057224: cpu_idle: state=0 cpu_id=5
53493           <...>-27550 (-----) [004] ...1 82316.057226: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
53494           <...>-27550 (-----) [004] ...1 82316.057230: tracing_mark_write: E|27550
53495           <...>-27550 (-----) [004] ...1 82316.057234: tracing_mark_write: E|27550
53496           <...>-27550 (-----) [004] ...1 82316.057347: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
53497           <...>-27550 (-----) [004] ...1 82316.057405: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
53498           <...>-27550 (-----) [004] ...1 82316.057410: tracing_mark_write: E|27550
53499           <...>-27550 (-----) [004] ...1 82316.057414: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
53500           <...>-27550 (-----) [004] ...1 82316.057420: tracing_mark_write: E|27550
53501           <...>-27550 (-----) [004] ...1 82316.057424: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
53502           <...>-27550 (-----) [004] ...1 82316.057428: tracing_mark_write: E|27550
53503           <...>-27550 (-----) [004] ...1 82316.057432: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
53504          <idle>-0     (-----) [005] .n.1 82316.057524: cpu_idle: state=4294967295 cpu_id=5
53505           <...>-27550 (-----) [004] ...1 82316.057526: tracing_mark_write: E|27550
53506           <...>-27550 (-----) [004] ...1 82316.057530: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
53507          <idle>-0     (-----) [005] d..2 82316.057532: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27603 next_prio=110
53508           <...>-27550 (-----) [004] d..2 82316.057547: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53509          <idle>-0     (-----) [004] d..1 82316.057562: cpu_idle: state=0 cpu_id=4
53510           <...>-27603 (-----) [005] ...1 82316.057592: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
53511           <...>-27603 (-----) [005] ...1 82316.057606: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
53512           <...>-27603 (-----) [005] ...1 82316.057609: tracing_mark_write: E|27550
53513           <...>-27603 (-----) [005] .... 82316.057629: binder_transaction: transaction=1569558 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
53514           <...>-27603 (-----) [005] .... 82316.057632: binder_transaction_alloc_buf: transaction=1569558 data_size=48 offsets_size=0
53515           <...>-27603 (-----) [005] ...2 82316.057635: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
53516           <...>-27603 (-----) [005] d..4 82316.057637: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
53517           <...>-27603 (-----) [005] dn.5 82316.057648: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
53518           <...>-27603 (-----) [005] d..2 82316.057654: sched_switch: prev_comm=id.nn.benchmark prev_pid=27603 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
53519          <idle>-0     (-----) [000] d.h5 82316.057658: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
53520<...>-770 ( 770) [005] .... 82316.057664: binder_transaction_received: transaction=1569558
53521          <idle>-0     (-----) [000] d.h6 82316.057681: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
53522<...>-770 ( 770) [005] ...1 82316.057686: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
53523          <idle>-0     (-----) [000] d.h5 82316.057686: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
53524          <idle>-0     (-----) [002] .n.1 82316.057687: cpu_idle: state=4294967295 cpu_id=2
53525          <idle>-0     (-----) [000] dnh6 82316.057694: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
53526          <idle>-0     (-----) [002] d..2 82316.057698: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
53527          <idle>-0     (-----) [000] .n.1 82316.057708: cpu_idle: state=4294967295 cpu_id=0
53528          <idle>-0     (-----) [000] d..2 82316.057720: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
53529  crtc_event:111-322   (  322) [002] d..2 82316.057732: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53530          <idle>-0     (-----) [002] d..1 82316.057743: cpu_idle: state=0 cpu_id=2
53531<...>-770 ( 770) [005] d..2 82316.057756: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
53532 crtc_commit:111-321   (  321) [000] d.h1 82316.057781: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
53533<...>-770 ( 770) [005] ...1 82316.057796: tracing_mark_write: E|770
53534<...>-770 ( 770) [005] .... 82316.057803: binder_transaction: transaction=1569559 dest_node=0 dest_proc=27550 dest_thread=27603 reply=1 flags=0x0 code=0x0
53535<...>-770 ( 770) [005] .... 82316.057806: binder_transaction_alloc_buf: transaction=1569559 data_size=168 offsets_size=32
53536<...>-770 ( 770) [005] .... 82316.057812: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
53537<...>-770 ( 770) [005] d..2 82316.057847: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27603 next_prio=110
53538           <...>-27603 (-----) [005] .... 82316.057858: binder_transaction_received: transaction=1569559
53539 crtc_commit:111-321   (  321) [000] d..2 82316.057870: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
53540           <...>-27603 (-----) [005] ...1 82316.057926: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
53541           <...>-27603 (-----) [005] ...1 82316.057931: tracing_mark_write: E|27550
53542<...>-581 ( 571) [000] d..2 82316.057940: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53543           <...>-27603 (-----) [005] .... 82316.057945: binder_transaction: transaction=1569560 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
53544           <...>-27603 (-----) [005] .... 82316.057948: binder_transaction_alloc_buf: transaction=1569560 data_size=48 offsets_size=0
53545           <...>-27603 (-----) [005] ...2 82316.057950: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
53546          <idle>-0     (-----) [000] d..1 82316.057952: cpu_idle: state=0 cpu_id=0
53547           <...>-27603 (-----) [005] d..4 82316.057952: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
53548           <...>-27603 (-----) [005] dn.5 82316.057962: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
53549           <...>-27603 (-----) [005] d..2 82316.057968: sched_switch: prev_comm=id.nn.benchmark prev_pid=27603 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
53550<...>-770 ( 770) [005] .... 82316.057977: binder_transaction_received: transaction=1569560
53551<...>-770 ( 770) [005] ...1 82316.057994: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
53552<...>-770 ( 770) [005] d..2 82316.058051: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
53553          <idle>-0     (-----) [000] dnh2 82316.058076: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
53554          <idle>-0     (-----) [000] .n.1 82316.058082: cpu_idle: state=4294967295 cpu_id=0
53555<...>-770 ( 770) [005] ...1 82316.058085: tracing_mark_write: E|770
53556          <idle>-0     (-----) [000] d..2 82316.058090: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
53557<...>-770 ( 770) [005] .... 82316.058092: binder_transaction: transaction=1569561 dest_node=0 dest_proc=27550 dest_thread=27603 reply=1 flags=0x0 code=0x0
53558<...>-770 ( 770) [005] .... 82316.058095: binder_transaction_alloc_buf: transaction=1569561 data_size=168 offsets_size=32
53559<...>-770 ( 770) [005] .... 82316.058101: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
53560<...>-770 ( 770) [005] d..2 82316.058134: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27603 next_prio=110
53561           <...>-27603 (-----) [005] .... 82316.058145: binder_transaction_received: transaction=1569561
53562<...>-581 ( 571) [000] d..2 82316.058147: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53563          <idle>-0     (-----) [000] d..1 82316.058156: cpu_idle: state=0 cpu_id=0
53564           <...>-27603 (-----) [005] ...1 82316.058420: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
53565           <...>-27603 (-----) [005] ...1 82316.058429: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
53566           <...>-27603 (-----) [005] ...1 82316.058433: tracing_mark_write: E|27550
53567          <idle>-0     (-----) [000] d.s3 82316.058468: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
53568           <...>-27603 (-----) [005] d.s2 82316.058472: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
53569          <idle>-0     (-----) [000] d.s4 82316.058485: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
53570          <idle>-0     (-----) [000] d.s2 82316.058488: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
53571          <idle>-0     (-----) [002] .n.1 82316.058490: cpu_idle: state=4294967295 cpu_id=2
53572          <idle>-0     (-----) [002] d..2 82316.058503: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
53573          <idle>-0     (-----) [000] dns3 82316.058506: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
53574          <idle>-0     (-----) [000] dns2 82316.058509: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
53575  crtc_event:111-322   (  322) [002] d.h3 82316.058514: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
53576          <idle>-0     (-----) [000] dns3 82316.058521: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
53577  crtc_event:111-322   (  322) [002] d..2 82316.058534: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
53578          <idle>-0     (-----) [000] .n.1 82316.058541: cpu_idle: state=4294967295 cpu_id=0
53579          <idle>-0     (-----) [000] d..2 82316.058551: 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
53580           <...>-27603 (-----) [005] .... 82316.058567: binder_transaction: transaction=1569562 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
53581           <...>-27603 (-----) [005] .... 82316.058571: binder_transaction_alloc_buf: transaction=1569562 data_size=556 offsets_size=104
53582     rcu_preempt-7     (    7) [000] d..2 82316.058583: 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
53583           <...>-27603 (-----) [005] ...2 82316.058585: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
53584           <...>-27603 (-----) [005] d..4 82316.058587: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53585<...>-8 ( 8) [000] d..2 82316.058591: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
53586           <...>-27603 (-----) [005] dn.5 82316.058595: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53587           <...>-27603 (-----) [005] d..2 82316.058602: sched_switch: prev_comm=id.nn.benchmark prev_pid=27603 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53588<...>-5340 ( 788) [005] .... 82316.058612: binder_transaction_received: transaction=1569562
53589<...>-8 ( 8) [000] d..3 82316.058630: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
53590<...>-8 ( 8) [000] d..2 82316.058643: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
53591<...>-46 ( 46) [000] d..2 82316.058662: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
53592<...>-5340 ( 788) [005] ...1 82316.058672: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
53593<...>-46 ( 46) [000] d..3 82316.058676: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
53594<...>-46 ( 46) [000] d..2 82316.058692: 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
53595<...>-5340 ( 788) [005] d..2 82316.058714: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53596<...>-8 ( 8) [000] d..2 82316.058724: 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
53597          <idle>-0     (-----) [000] dnh2 82316.058742: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53598<...>-5340 ( 788) [005] d..2 82316.058743: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27603 next_prio=110
53599          <idle>-0     (-----) [000] d..2 82316.058756: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
53600           <...>-27603 (-----) [005] d..2 82316.058773: sched_switch: prev_comm=id.nn.benchmark prev_pid=27603 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
53601<...>-87 ( 87) [000] d..2 82316.058797: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53602          <idle>-0     (-----) [005] d..1 82316.058798: cpu_idle: state=0 cpu_id=5
53603  kworker/u16:15-1311  ( 1311) [002] d.h3 82316.058806: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53604          <idle>-0     (-----) [000] d..1 82316.058811: cpu_idle: state=0 cpu_id=0
53605  kworker/u16:15-1311  ( 1311) [002] d.h4 82316.058827: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53606  kworker/u16:15-1311  ( 1311) [002] d..2 82316.058847: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
53607<...>-86 ( 86) [002] d..2 82316.058885: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53608          <idle>-0     (-----) [002] d.h5 82316.058908: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53609          <idle>-0     (-----) [005] dnh2 82316.058928: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53610          <idle>-0     (-----) [005] .n.1 82316.058932: cpu_idle: state=4294967295 cpu_id=5
53611          <idle>-0     (-----) [005] d..2 82316.058941: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53612          <idle>-0     (-----) [002] d..1 82316.058958: cpu_idle: state=0 cpu_id=2
53613<...>-5340 ( 788) [005] d..1 82316.058993: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
53614          <idle>-0     (-----) [000] dnh2 82316.059030: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
53615          <idle>-0     (-----) [000] .n.1 82316.059037: cpu_idle: state=4294967295 cpu_id=0
53616          <idle>-0     (-----) [000] d..2 82316.059048: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
53617 neuralnetworks@-13088 (  788) [000] d..2 82316.059098: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53618          <idle>-0     (-----) [000] d..1 82316.059112: cpu_idle: state=0 cpu_id=0
53619<...>-5340 ( 788) [005] d..2 82316.059153: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53620          <idle>-0     (-----) [000] dnh2 82316.059176: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53621<...>-5340 ( 788) [005] d..2 82316.059180: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
53622          <idle>-0     (-----) [000] .n.1 82316.059181: cpu_idle: state=4294967295 cpu_id=0
53623          <idle>-0     (-----) [000] d..2 82316.059193: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
53624          <idle>-0     (-----) [005] d..1 82316.059194: cpu_idle: state=0 cpu_id=5
53625<...>-87 ( 87) [000] d..2 82316.059232: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53626          <idle>-0     (-----) [002] d.h4 82316.059233: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53627          <idle>-0     (-----) [000] d..1 82316.059243: cpu_idle: state=0 cpu_id=0
53628          <idle>-0     (-----) [002] dnh5 82316.059244: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53629          <idle>-0     (-----) [002] .n.1 82316.059252: cpu_idle: state=4294967295 cpu_id=2
53630          <idle>-0     (-----) [002] d..2 82316.059264: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
53631<...>-86 ( 86) [002] d..2 82316.059298: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53632          <idle>-0     (-----) [002] d..1 82316.059311: cpu_idle: state=0 cpu_id=2
53633          <idle>-0     (-----) [005] ...1 82316.059518: cpu_idle: state=4294967295 cpu_id=5
53634          <idle>-0     (-----) [005] d..1 82316.059522: cpu_idle: state=0 cpu_id=5
53635          <idle>-0     (-----) [000] d.h5 82316.059987: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
53636          <idle>-0     (-----) [000] dnh6 82316.060000: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
53637          <idle>-0     (-----) [000] .n.1 82316.060013: cpu_idle: state=4294967295 cpu_id=0
53638          <idle>-0     (-----) [000] d..2 82316.060023: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
53639 crtc_commit:111-321   (  321) [000] d..2 82316.060101: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53640          <idle>-0     (-----) [000] d..1 82316.060114: cpu_idle: state=0 cpu_id=0
53641          <idle>-0     (-----) [000] d.h5 82316.060280: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
53642          <idle>-0     (-----) [000] d.h6 82316.060296: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
53643          <idle>-0     (-----) [002] .n.1 82316.060303: cpu_idle: state=4294967295 cpu_id=2
53644          <idle>-0     (-----) [002] d..2 82316.060313: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
53645          <idle>-0     (-----) [000] ...1 82316.060313: cpu_idle: state=4294967295 cpu_id=0
53646          <idle>-0     (-----) [000] d..1 82316.060318: cpu_idle: state=0 cpu_id=0
53647  crtc_event:111-322   (  322) [002] d..2 82316.060341: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53648          <idle>-0     (-----) [002] d..1 82316.060352: cpu_idle: state=0 cpu_id=2
53649          <idle>-0     (-----) [002] d.h4 82316.060990: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53650          <idle>-0     (-----) [005] dnh2 82316.061010: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53651          <idle>-0     (-----) [005] .n.1 82316.061014: cpu_idle: state=4294967295 cpu_id=5
53652          <idle>-0     (-----) [005] d..2 82316.061022: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53653          <idle>-0     (-----) [002] ...1 82316.061031: cpu_idle: state=4294967295 cpu_id=2
53654          <idle>-0     (-----) [002] d..1 82316.061036: cpu_idle: state=0 cpu_id=2
53655<...>-5340 ( 788) [005] d..1 82316.061071: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
53656          <idle>-0     (-----) [000] dnh2 82316.061096: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
53657          <idle>-0     (-----) [000] .n.1 82316.061101: cpu_idle: state=4294967295 cpu_id=0
53658          <idle>-0     (-----) [000] d..2 82316.061113: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
53659<...>-5340 ( 788) [005] ...1 82316.061161: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
53660<...>-5340 ( 788) [005] ...1 82316.061165: tracing_mark_write: E|788
53661 neuralnetworks@-13088 (  788) [000] d..2 82316.061177: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53662<...>-5340 ( 788) [005] .... 82316.061180: binder_transaction: transaction=1569565 dest_node=1569563 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
53663<...>-5340 ( 788) [005] .... 82316.061183: binder_transaction_alloc_buf: transaction=1569565 data_size=60 offsets_size=0
53664<...>-5340 ( 788) [005] d..4 82316.061186: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
53665          <idle>-0     (-----) [000] d..1 82316.061188: cpu_idle: state=0 cpu_id=0
53666<...>-5340 ( 788) [005] d..5 82316.061199: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
53667          <idle>-0     (-----) [004] .n.1 82316.061205: cpu_idle: state=4294967295 cpu_id=4
53668          <idle>-0     (-----) [004] d..2 82316.061214: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
53669           <...>-27571 (-----) [004] .... 82316.061219: binder_transaction_received: transaction=1569565
53670<...>-5340 ( 788) [005] ...1 82316.061220: tracing_mark_write: E|788
53671<...>-5340 ( 788) [005] .... 82316.061227: binder_transaction: transaction=1569566 dest_node=0 dest_proc=27550 dest_thread=27603 reply=1 flags=0x0 code=0x0
53672<...>-5340 ( 788) [005] .... 82316.061229: binder_transaction_alloc_buf: transaction=1569566 data_size=8 offsets_size=0
53673<...>-5340 ( 788) [005] d..2 82316.061231: sched_waking: comm=id.nn.benchmark pid=27603 prio=110 target_cpu=005
53674           <...>-27571 (-----) [004] ...1 82316.061237: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
53675<...>-5340 ( 788) [005] d..3 82316.061238: sched_wakeup: comm=id.nn.benchmark pid=27603 prio=110 target_cpu=005
53676<...>-5340 ( 788) [005] .... 82316.061240: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
53677           <...>-27571 (-----) [004] ...1 82316.061243: tracing_mark_write: E|27550
53678           <...>-27571 (-----) [004] d..2 82316.061271: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53679          <idle>-0     (-----) [004] d..1 82316.061280: cpu_idle: state=0 cpu_id=4
53680<...>-5340 ( 788) [005] d..2 82316.061281: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27603 next_prio=110
53681           <...>-27603 (-----) [005] .... 82316.061290: binder_transaction_received: transaction=1569566
53682           <...>-27603 (-----) [005] ...1 82316.061325: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
53683           <...>-27603 (-----) [005] ...1 82316.061332: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
53684           <...>-27603 (-----) [005] ...1 82316.061358: tracing_mark_write: E|27550
53685           <...>-27603 (-----) [005] ...1 82316.061362: tracing_mark_write: E|27550
53686           <...>-27603 (-----) [005] ...1 82316.061365: tracing_mark_write: E|27550
53687           <...>-27603 (-----) [005] ...1 82316.061552: tracing_mark_write: E|27550
53688           <...>-27603 (-----) [005] d..1 82316.061565: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53689           <...>-27603 (-----) [005] d..2 82316.061582: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53690          <idle>-0     (-----) [004] .n.1 82316.061587: cpu_idle: state=4294967295 cpu_id=4
53691          <idle>-0     (-----) [004] d..2 82316.061594: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
53692           <...>-27550 (-----) [004] d..2 82316.061614: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53693          <idle>-0     (-----) [004] d..1 82316.061623: cpu_idle: state=0 cpu_id=4
53694           <...>-27603 (-----) [005] d..1 82316.061667: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53695           <...>-27603 (-----) [005] d..2 82316.061676: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53696          <idle>-0     (-----) [004] .n.1 82316.061681: cpu_idle: state=4294967295 cpu_id=4
53697          <idle>-0     (-----) [004] d..2 82316.061689: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
53698           <...>-27603 (-----) [005] d..2 82316.061713: sched_switch: prev_comm=id.nn.benchmark prev_pid=27603 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
53699           <...>-27550 (-----) [004] ...1 82316.061722: tracing_mark_write: E|27550
53700           <...>-27550 (-----) [004] ...1 82316.061727: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
53701           <...>-27550 (-----) [004] ...1 82316.061732: tracing_mark_write: E|27550
53702          <idle>-0     (-----) [005] d..1 82316.061734: cpu_idle: state=0 cpu_id=5
53703           <...>-27550 (-----) [004] ...1 82316.061736: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
53704           <...>-27550 (-----) [004] ...1 82316.061740: tracing_mark_write: E|27550
53705           <...>-27550 (-----) [004] ...1 82316.061744: tracing_mark_write: E|27550
53706           <...>-27550 (-----) [004] ...1 82316.061892: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
53707           <...>-27550 (-----) [004] ...1 82316.061950: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
53708           <...>-27550 (-----) [004] ...1 82316.061955: tracing_mark_write: E|27550
53709           <...>-27550 (-----) [004] ...1 82316.061959: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
53710           <...>-27550 (-----) [004] ...1 82316.061964: tracing_mark_write: E|27550
53711           <...>-27550 (-----) [004] ...1 82316.061968: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
53712           <...>-27550 (-----) [004] ...1 82316.061972: tracing_mark_write: E|27550
53713           <...>-27550 (-----) [004] ...1 82316.061976: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
53714          <idle>-0     (-----) [005] .n.1 82316.062065: cpu_idle: state=4294967295 cpu_id=5
53715           <...>-27550 (-----) [004] ...1 82316.062066: tracing_mark_write: E|27550
53716           <...>-27550 (-----) [004] ...1 82316.062070: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
53717          <idle>-0     (-----) [005] d..2 82316.062075: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27604 next_prio=110
53718           <...>-27550 (-----) [004] d..2 82316.062091: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53719          <idle>-0     (-----) [004] d..1 82316.062106: cpu_idle: state=0 cpu_id=4
53720          <idle>-0     (-----) [003] d.h2 82316.062127: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
53721           <...>-27604 (-----) [005] ...1 82316.062136: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
53722          <idle>-0     (-----) [003] dnh3 82316.062145: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
53723           <...>-27604 (-----) [005] ...1 82316.062149: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
53724           <...>-27604 (-----) [005] ...1 82316.062153: tracing_mark_write: E|27550
53725          <idle>-0     (-----) [003] .n.1 82316.062154: cpu_idle: state=4294967295 cpu_id=3
53726          <idle>-0     (-----) [003] d..2 82316.062164: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
53727           <...>-27604 (-----) [005] .... 82316.062173: binder_transaction: transaction=1569567 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
53728           <...>-27604 (-----) [005] .... 82316.062176: binder_transaction_alloc_buf: transaction=1569567 data_size=48 offsets_size=0
53729           <...>-27604 (-----) [005] ...2 82316.062179: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
53730           <...>-27604 (-----) [005] d..4 82316.062182: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
53731        DispSync-8879  ( 8858) [003] d..1 82316.062186: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
53732           <...>-27604 (-----) [005] dn.5 82316.062192: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
53733           <...>-27604 (-----) [005] d..2 82316.062199: sched_switch: prev_comm=id.nn.benchmark prev_pid=27604 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
53734<...>-770 ( 770) [005] .... 82316.062209: binder_transaction_received: transaction=1569567
53735        DispSync-8879  ( 8858) [003] d..2 82316.062209: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
53736          <idle>-0     (-----) [001] .n.1 82316.062216: cpu_idle: state=4294967295 cpu_id=1
53737          <idle>-0     (-----) [001] d..2 82316.062229: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
53738<...>-770 ( 770) [005] ...1 82316.062230: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
53739        DispSync-8879  ( 8858) [003] d..2 82316.062243: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53740          <idle>-0     (-----) [003] d..1 82316.062256: cpu_idle: state=0 cpu_id=3
53741<...>-770 ( 770) [005] d..2 82316.062301: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
53742  appEventThread-8881  ( 8858) [001] d..3 82316.062303: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
53743  appEventThread-8881  ( 8858) [001] d..4 82316.062339: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
53744          <idle>-0     (-----) [000] .n.1 82316.062345: cpu_idle: state=4294967295 cpu_id=0
53745  appEventThread-8881  ( 8858) [001] d.h2 82316.062352: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
53746          <idle>-0     (-----) [000] d..2 82316.062358: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
53747<...>-770 ( 770) [005] ...1 82316.062359: tracing_mark_write: E|770
53748<...>-770 ( 770) [005] .... 82316.062367: binder_transaction: transaction=1569568 dest_node=0 dest_proc=27550 dest_thread=27604 reply=1 flags=0x0 code=0x0
53749<...>-770 ( 770) [005] .... 82316.062369: binder_transaction_alloc_buf: transaction=1569568 data_size=168 offsets_size=32
53750<...>-770 ( 770) [005] .... 82316.062376: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
53751  appEventThread-8881  ( 8858) [001] d..2 82316.062385: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
53752<...>-770 ( 770) [005] d..2 82316.062412: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27604 next_prio=110
53753           <...>-27604 (-----) [005] .... 82316.062423: binder_transaction_received: transaction=1569568
53754<...>-581 ( 571) [001] d..2 82316.062474: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53755          <idle>-0     (-----) [001] d..1 82316.062493: cpu_idle: state=0 cpu_id=1
53756           <...>-27604 (-----) [005] ...1 82316.062495: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
53757           <...>-27604 (-----) [005] ...1 82316.062500: tracing_mark_write: E|27550
53758           <...>-27604 (-----) [005] .... 82316.062514: binder_transaction: transaction=1569569 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
53759           <...>-27604 (-----) [005] .... 82316.062517: binder_transaction_alloc_buf: transaction=1569569 data_size=48 offsets_size=0
53760           <...>-27604 (-----) [005] ...2 82316.062520: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
53761           <...>-27604 (-----) [005] d..4 82316.062522: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
53762           <...>-27604 (-----) [005] dn.5 82316.062532: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
53763           <...>-27604 (-----) [005] d..2 82316.062538: sched_switch: prev_comm=id.nn.benchmark prev_pid=27604 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
53764<...>-770 ( 770) [005] .... 82316.062546: binder_transaction_received: transaction=1569569
53765<...>-770 ( 770) [005] ...1 82316.062564: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
53766<...>-770 ( 770) [005] d..2 82316.062622: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
53767          <idle>-0     (-----) [001] dnh2 82316.062648: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
53768          <idle>-0     (-----) [001] .n.1 82316.062654: cpu_idle: state=4294967295 cpu_id=1
53769<...>-770 ( 770) [005] ...1 82316.062656: tracing_mark_write: E|770
53770<...>-770 ( 770) [005] .... 82316.062663: binder_transaction: transaction=1569570 dest_node=0 dest_proc=27550 dest_thread=27604 reply=1 flags=0x0 code=0x0
53771          <idle>-0     (-----) [001] d..2 82316.062666: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
53772<...>-770 ( 770) [005] .... 82316.062666: binder_transaction_alloc_buf: transaction=1569570 data_size=168 offsets_size=32
53773<...>-770 ( 770) [005] .... 82316.062671: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
53774<...>-9105 ( 9105) [000] .... 82316.062702: binder_transaction: transaction=1569571 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
53775<...>-770 ( 770) [005] d..2 82316.062706: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27604 next_prio=110
53776<...>-9105 ( 9105) [000] .... 82316.062710: binder_transaction_alloc_buf: transaction=1569571 data_size=80 offsets_size=0
53777<...>-9105 ( 9105) [000] d..4 82316.062716: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
53778           <...>-27604 (-----) [005] .... 82316.062716: binder_transaction_received: transaction=1569570
53779<...>-581 ( 571) [001] d..2 82316.062725: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53780          <idle>-0     (-----) [001] d..1 82316.062739: cpu_idle: state=0 cpu_id=1
53781<...>-9105 ( 9105) [000] d..5 82316.062749: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
53782          <idle>-0     (-----) [001] .n.1 82316.062754: cpu_idle: state=4294967295 cpu_id=1
53783          <idle>-0     (-----) [001] d..2 82316.062767: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
53784<...>-13083 ( 8858) [001] .... 82316.062776: binder_transaction_received: transaction=1569571
53785<...>-9105 ( 9105) [000] d..3 82316.062790: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
53786<...>-9105 ( 9105) [000] d..4 82316.062810: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
53787          <idle>-0     (-----) [002] .n.1 82316.062815: cpu_idle: state=4294967295 cpu_id=2
53788<...>-13083 ( 8858) [001] d..1 82316.062816: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
53789          <idle>-0     (-----) [002] d..2 82316.062828: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
53790<...>-13083 ( 8858) [001] d..2 82316.062842: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
53791          <idle>-0     (-----) [003] .n.1 82316.062849: cpu_idle: state=4294967295 cpu_id=3
53792          <idle>-0     (-----) [003] d..2 82316.062859: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
53793<...>-13083 ( 8858) [001] d..2 82316.062887: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
53794    RenderThread-9436  ( 9105) [002] d..2 82316.062889: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53795          <idle>-0     (-----) [002] d..1 82316.062903: cpu_idle: state=0 cpu_id=2
53796          <idle>-0     (-----) [001] d..1 82316.062904: cpu_idle: state=0 cpu_id=1
53797  appEventThread-8881  ( 8858) [003] d..2 82316.062910: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53798          <idle>-0     (-----) [003] d..1 82316.062921: cpu_idle: state=0 cpu_id=3
53799<...>-9105 ( 9105) [000] d..3 82316.062943: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
53800<...>-9105 ( 9105) [000] d..4 82316.062962: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
53801          <idle>-0     (-----) [002] .n.1 82316.062969: cpu_idle: state=4294967295 cpu_id=2
53802          <idle>-0     (-----) [002] d..2 82316.062980: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
53803           <...>-27604 (-----) [005] ...1 82316.062986: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
53804           <...>-27604 (-----) [005] ...1 82316.062996: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
53805<...>-9105 ( 9105) [000] d..2 82316.062999: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53806           <...>-27604 (-----) [005] ...1 82316.062999: tracing_mark_write: E|27550
53807          <idle>-0     (-----) [000] d..1 82316.063013: cpu_idle: state=0 cpu_id=0
53808           <...>-27604 (-----) [005] .... 82316.063058: binder_transaction: transaction=1569572 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
53809           <...>-27604 (-----) [005] .... 82316.063062: binder_transaction_alloc_buf: transaction=1569572 data_size=556 offsets_size=104
53810           <...>-27604 (-----) [005] ...2 82316.063075: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
53811           <...>-27604 (-----) [005] d..4 82316.063078: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53812           <...>-27604 (-----) [005] dn.5 82316.063090: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53813           <...>-27604 (-----) [005] d..2 82316.063097: sched_switch: prev_comm=id.nn.benchmark prev_pid=27604 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53814    RenderThread-9436  ( 9105) [002] d..1 82316.063106: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
53815<...>-5340 ( 788) [005] .... 82316.063107: binder_transaction_received: transaction=1569572
53816    RenderThread-9436  ( 9105) [002] d..2 82316.063125: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
53817          <idle>-0     (-----) [000] .n.1 82316.063132: cpu_idle: state=4294967295 cpu_id=0
53818          <idle>-0     (-----) [000] d..2 82316.063143: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
53819<...>-5340 ( 788) [005] ...1 82316.063151: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
53820    RenderThread-9436  ( 9105) [002] .... 82316.063196: binder_transaction: transaction=1569575 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
53821<...>-5340 ( 788) [005] d..2 82316.063196: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53822    RenderThread-9436  ( 9105) [002] .... 82316.063201: binder_transaction_alloc_buf: transaction=1569575 data_size=104 offsets_size=0
53823    RenderThread-9436  ( 9105) [002] d..4 82316.063206: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
53824<...>-5340 ( 788) [005] d..2 82316.063220: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27604 next_prio=110
53825<...>-9105 ( 9105) [000] d..2 82316.063226: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53826    RenderThread-9436  ( 9105) [002] dn.5 82316.063227: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
53827    RenderThread-9436  ( 9105) [002] d..2 82316.063237: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
53828          <idle>-0     (-----) [000] dnh3 82316.063242: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53829           <...>-27604 (-----) [005] d..2 82316.063243: sched_switch: prev_comm=id.nn.benchmark prev_pid=27604 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
53830<...>-13083 ( 8858) [002] .... 82316.063245: binder_transaction_received: transaction=1569575
53831          <idle>-0     (-----) [000] d..2 82316.063255: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
53832          <idle>-0     (-----) [005] d..1 82316.063261: cpu_idle: state=0 cpu_id=5
53833<...>-87 ( 87) [000] d..2 82316.063296: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53834<...>-13083 ( 8858) [002] d.h3 82316.063306: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53835          <idle>-0     (-----) [000] d..1 82316.063307: cpu_idle: state=0 cpu_id=0
53836<...>-13083 ( 8858) [002] d.h4 82316.063328: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53837<...>-13083 ( 8858) [002] d.h3 82316.063389: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53838          <idle>-0     (-----) [005] dnh2 82316.063412: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53839          <idle>-0     (-----) [005] .n.1 82316.063416: cpu_idle: state=4294967295 cpu_id=5
53840          <idle>-0     (-----) [005] d..2 82316.063424: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53841<...>-13083 ( 8858) [002] .... 82316.063426: binder_transaction: transaction=1569576 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
53842<...>-13083 ( 8858) [002] .... 82316.063431: binder_transaction_alloc_buf: transaction=1569576 data_size=52 offsets_size=8
53843<...>-5340 ( 788) [005] d..1 82316.063476: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
53844<...>-13083 ( 8858) [002] d..2 82316.063484: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
53845<...>-86 ( 86) [002] d..2 82316.063514: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
53846    RenderThread-9436  ( 9105) [002] dnh3 82316.063527: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
53847    RenderThread-9436  ( 9105) [002] d..2 82316.063536: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
53848 neuralnetworks@-13088 (  788) [002] d..2 82316.063576: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
53849    RenderThread-9436  ( 9105) [002] .... 82316.063587: binder_transaction_received: transaction=1569576
53850<...>-5340 ( 788) [005] d..2 82316.063638: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53851          <idle>-0     (-----) [000] dnh2 82316.063659: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
53852<...>-5340 ( 788) [005] d..2 82316.063663: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
53853          <idle>-0     (-----) [000] .n.1 82316.063665: cpu_idle: state=4294967295 cpu_id=0
53854          <idle>-0     (-----) [000] d..2 82316.063673: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
53855          <idle>-0     (-----) [005] d..1 82316.063677: cpu_idle: state=0 cpu_id=5
53856<...>-87 ( 87) [000] d..2 82316.063708: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
53857    RenderThread-9436  ( 9105) [002] d.h3 82316.063711: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53858          <idle>-0     (-----) [000] d..1 82316.063716: cpu_idle: state=0 cpu_id=0
53859    RenderThread-9436  ( 9105) [002] dnh4 82316.063734: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
53860    RenderThread-9436  ( 9105) [002] d..2 82316.063748: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
53861<...>-86 ( 86) [002] d..2 82316.063774: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
53862          <idle>-0     (-----) [005] ...1 82316.064010: cpu_idle: state=4294967295 cpu_id=5
53863          <idle>-0     (-----) [005] d..1 82316.064014: cpu_idle: state=0 cpu_id=5
53864    RenderThread-9436  ( 9105) [002] d..2 82316.064679: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
53865          <idle>-0     (-----) [002] d..1 82316.064695: cpu_idle: state=0 cpu_id=2
53866          <idle>-0     (-----) [002] d.h2 82316.064761: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
53867          <idle>-0     (-----) [002] d.h3 82316.064772: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
53868          <idle>-0     (-----) [002] dnh3 82316.064778: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
53869          <idle>-0     (-----) [002] .n.1 82316.064787: cpu_idle: state=4294967295 cpu_id=2
53870          <idle>-0     (-----) [000] d.h3 82316.064797: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
53871          <idle>-0     (-----) [002] d..2 82316.064799: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
53872          <idle>-0     (-----) [000] d.h4 82316.064819: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
53873          <idle>-0     (-----) [003] .n.1 82316.064825: cpu_idle: state=4294967295 cpu_id=3
53874          <idle>-0     (-----) [000] ...1 82316.064833: cpu_idle: state=4294967295 cpu_id=0
53875          <idle>-0     (-----) [003] d..2 82316.064835: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
53876          <idle>-0     (-----) [000] d..1 82316.064838: cpu_idle: state=0 cpu_id=0
53877 kgsl_worker_thr-258   (  258) [003] d..2 82316.064891: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
53878 kgsl_worker_thr-258   (  258) [003] d..3 82316.064934: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
53879 kgsl_worker_thr-258   (  258) [003] d..2 82316.064951: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
53880    RenderThread-9436  ( 9105) [002] .... 82316.064993: binder_transaction: transaction=1569577 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
53881  kworker/u16:15-1311  ( 1311) [003] d..2 82316.064997: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53882    RenderThread-9436  ( 9105) [002] .... 82316.064999: binder_transaction_alloc_buf: transaction=1569577 data_size=192 offsets_size=8
53883          <idle>-0     (-----) [003] d..1 82316.065009: cpu_idle: state=0 cpu_id=3
53884    RenderThread-9436  ( 9105) [002] d..4 82316.065009: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
53885    RenderThread-9436  ( 9105) [002] dn.5 82316.065026: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
53886    RenderThread-9436  ( 9105) [002] d..2 82316.065036: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
53887<...>-13083 ( 8858) [002] .... 82316.065044: binder_transaction_received: transaction=1569577
53888          <idle>-0     (-----) [000] d.s2 82316.065134: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
53889          <idle>-0     (-----) [000] dns3 82316.065153: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
53890          <idle>-0     (-----) [000] dns2 82316.065156: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
53891          <idle>-0     (-----) [000] dns3 82316.065168: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
53892          <idle>-0     (-----) [000] .n.1 82316.065179: cpu_idle: state=4294967295 cpu_id=0
53893          <idle>-0     (-----) [000] d..2 82316.065188: 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
53894     rcu_preempt-7     (    7) [000] d..2 82316.065199: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
53895     rcu_preempt-7     (    7) [000] d..3 82316.065216: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
53896     rcu_preempt-7     (    7) [000] d..2 82316.065232: 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
53897         rcuop/2-29    (   29) [000] d..2 82316.065237: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
53898<...>-13083 ( 8858) [002] .... 82316.065259: binder_transaction: transaction=1569578 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
53899<...>-13083 ( 8858) [002] .... 82316.065264: binder_transaction_alloc_buf: transaction=1569578 data_size=68 offsets_size=0
53900         rcuop/2-29    (   29) [000] d..3 82316.065278: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
53901          <idle>-0     (-----) [001] .n.1 82316.065284: cpu_idle: state=4294967295 cpu_id=1
53902         rcuop/2-29    (   29) [000] d..2 82316.065290: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
53903          <idle>-0     (-----) [001] d..2 82316.065299: 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
53904<...>-13083 ( 8858) [002] d..2 82316.065307: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
53905    RenderThread-9436  ( 9105) [002] .... 82316.065317: binder_transaction_received: transaction=1569578
53906<...>-8 ( 8) [000] d..2 82316.065321: 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
53907         rcuop/3-37    (   37) [001] d..2 82316.065335: 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
53908          <idle>-0     (-----) [000] d..1 82316.065336: cpu_idle: state=0 cpu_id=0
53909          <idle>-0     (-----) [001] d..1 82316.065346: cpu_idle: state=0 cpu_id=1
53910    RenderThread-9436  ( 9105) [002] d.h3 82316.065355: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53911          <idle>-0     (-----) [005] dnh2 82316.065378: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
53912          <idle>-0     (-----) [005] .n.1 82316.065382: cpu_idle: state=4294967295 cpu_id=5
53913          <idle>-0     (-----) [005] d..2 82316.065390: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
53914<...>-5340 ( 788) [005] d..1 82316.065445: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
53915    RenderThread-9436  ( 9105) [002] d..2 82316.065478: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53916          <idle>-0     (-----) [002] dnh3 82316.065493: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
53917          <idle>-0     (-----) [002] d..2 82316.065534: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
53918<...>-5340 ( 788) [005] ...1 82316.065541: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
53919<...>-5340 ( 788) [005] ...1 82316.065545: tracing_mark_write: E|788
53920<...>-5340 ( 788) [005] .... 82316.065562: binder_transaction: transaction=1569579 dest_node=1569573 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
53921<...>-5340 ( 788) [005] .... 82316.065565: binder_transaction_alloc_buf: transaction=1569579 data_size=60 offsets_size=0
53922<...>-5340 ( 788) [005] d..4 82316.065568: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
53923 neuralnetworks@-13088 (  788) [002] d..2 82316.065580: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53924<...>-5340 ( 788) [005] d..5 82316.065581: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
53925          <idle>-0     (-----) [004] .n.1 82316.065588: cpu_idle: state=4294967295 cpu_id=4
53926          <idle>-0     (-----) [004] d..2 82316.065598: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
53927          <idle>-0     (-----) [002] d..1 82316.065600: cpu_idle: state=0 cpu_id=2
53928           <...>-27571 (-----) [004] .... 82316.065603: binder_transaction_received: transaction=1569579
53929<...>-5340 ( 788) [005] ...1 82316.065604: tracing_mark_write: E|788
53930<...>-5340 ( 788) [005] .... 82316.065610: binder_transaction: transaction=1569580 dest_node=0 dest_proc=27550 dest_thread=27604 reply=1 flags=0x0 code=0x0
53931<...>-5340 ( 788) [005] .... 82316.065612: binder_transaction_alloc_buf: transaction=1569580 data_size=8 offsets_size=0
53932<...>-5340 ( 788) [005] d..2 82316.065614: sched_waking: comm=id.nn.benchmark pid=27604 prio=110 target_cpu=005
53933<...>-5340 ( 788) [005] d..3 82316.065621: sched_wakeup: comm=id.nn.benchmark pid=27604 prio=110 target_cpu=005
53934<...>-5340 ( 788) [005] .... 82316.065623: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
53935           <...>-27571 (-----) [004] ...1 82316.065623: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
53936           <...>-27571 (-----) [004] ...1 82316.065629: tracing_mark_write: E|27550
53937           <...>-27571 (-----) [004] d..2 82316.065659: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53938<...>-5340 ( 788) [005] d..2 82316.065666: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27604 next_prio=110
53939          <idle>-0     (-----) [004] d..1 82316.065667: cpu_idle: state=0 cpu_id=4
53940           <...>-27604 (-----) [005] .... 82316.065676: binder_transaction_received: transaction=1569580
53941           <...>-27604 (-----) [005] ...1 82316.065713: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
53942           <...>-27604 (-----) [005] ...1 82316.065719: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
53943           <...>-27604 (-----) [005] ...1 82316.065746: tracing_mark_write: E|27550
53944           <...>-27604 (-----) [005] ...1 82316.065750: tracing_mark_write: E|27550
53945           <...>-27604 (-----) [005] ...1 82316.065753: tracing_mark_write: E|27550
53946           <...>-27604 (-----) [005] ...1 82316.065946: tracing_mark_write: E|27550
53947           <...>-27604 (-----) [005] d..1 82316.065960: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53948           <...>-27604 (-----) [005] d..2 82316.065976: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53949          <idle>-0     (-----) [004] .n.1 82316.065981: cpu_idle: state=4294967295 cpu_id=4
53950          <idle>-0     (-----) [004] d..2 82316.065988: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
53951           <...>-27550 (-----) [004] d..2 82316.066008: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53952          <idle>-0     (-----) [004] d..1 82316.066017: cpu_idle: state=0 cpu_id=4
53953           <...>-27604 (-----) [005] d..1 82316.066071: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53954           <...>-27604 (-----) [005] d..2 82316.066082: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
53955          <idle>-0     (-----) [004] .n.1 82316.066086: cpu_idle: state=4294967295 cpu_id=4
53956          <idle>-0     (-----) [004] d..2 82316.066093: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
53957           <...>-27604 (-----) [005] d..2 82316.066122: sched_switch: prev_comm=id.nn.benchmark prev_pid=27604 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
53958           <...>-27550 (-----) [004] ...1 82316.066128: tracing_mark_write: E|27550
53959           <...>-27550 (-----) [004] ...1 82316.066133: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
53960          <idle>-0     (-----) [003] d.h2 82316.066138: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
53961           <...>-27550 (-----) [004] ...1 82316.066138: tracing_mark_write: E|27550
53962           <...>-27550 (-----) [004] ...1 82316.066142: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
53963          <idle>-0     (-----) [005] d..1 82316.066143: cpu_idle: state=0 cpu_id=5
53964           <...>-27550 (-----) [004] ...1 82316.066146: tracing_mark_write: E|27550
53965           <...>-27550 (-----) [004] ...1 82316.066150: tracing_mark_write: E|27550
53966          <idle>-0     (-----) [003] dnh3 82316.066152: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
53967          <idle>-0     (-----) [003] .n.1 82316.066160: cpu_idle: state=4294967295 cpu_id=3
53968          <idle>-0     (-----) [003] d..2 82316.066170: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
53969        DispSync-8879  ( 8858) [003] d..1 82316.066187: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
53970        DispSync-8879  ( 8858) [003] d..2 82316.066203: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
53971          <idle>-0     (-----) [002] .n.1 82316.066210: cpu_idle: state=4294967295 cpu_id=2
53972          <idle>-0     (-----) [002] d..2 82316.066222: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
53973        DispSync-8879  ( 8858) [003] d..2 82316.066235: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
53974          <idle>-0     (-----) [003] d..1 82316.066248: cpu_idle: state=0 cpu_id=3
53975           <...>-27550 (-----) [004] ...1 82316.066265: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
53976   sfEventThread-8882  ( 8858) [002] d..3 82316.066267: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
53977   sfEventThread-8882  ( 8858) [002] d..4 82316.066288: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
53978          <idle>-0     (-----) [003] .n.1 82316.066294: cpu_idle: state=4294967295 cpu_id=3
53979          <idle>-0     (-----) [003] d..2 82316.066304: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
53980           <...>-27550 (-----) [004] ...1 82316.066323: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
53981   sfEventThread-8882  ( 8858) [002] d..2 82316.066324: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
53982           <...>-27550 (-----) [004] ...1 82316.066327: tracing_mark_write: E|27550
53983           <...>-27550 (-----) [004] ...1 82316.066331: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
53984           <...>-27550 (-----) [004] ...1 82316.066336: tracing_mark_write: E|27550
53985           <...>-27550 (-----) [004] ...1 82316.066340: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
53986          <idle>-0     (-----) [002] d..1 82316.066340: cpu_idle: state=0 cpu_id=2
53987           <...>-27550 (-----) [004] ...1 82316.066343: tracing_mark_write: E|27550
53988           <...>-27550 (-----) [004] ...1 82316.066347: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
53989          <idle>-0     (-----) [005] .n.1 82316.066443: cpu_idle: state=4294967295 cpu_id=5
53990           <...>-27550 (-----) [004] ...1 82316.066444: tracing_mark_write: E|27550
53991           <...>-27550 (-----) [004] ...1 82316.066449: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
53992          <idle>-0     (-----) [005] d..2 82316.066452: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27605 next_prio=110
53993           <...>-27550 (-----) [004] d..2 82316.066465: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
53994          <idle>-0     (-----) [004] d..1 82316.066480: cpu_idle: state=0 cpu_id=4
53995           <...>-27605 (-----) [005] ...1 82316.066513: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
53996           <...>-27605 (-----) [005] ...1 82316.066528: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
53997           <...>-27605 (-----) [005] ...1 82316.066532: tracing_mark_write: E|27550
53998           <...>-27605 (-----) [005] .... 82316.066553: binder_transaction: transaction=1569581 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
53999           <...>-27605 (-----) [005] .... 82316.066557: binder_transaction_alloc_buf: transaction=1569581 data_size=48 offsets_size=0
54000           <...>-27605 (-----) [005] ...2 82316.066561: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
54001           <...>-27605 (-----) [005] d..4 82316.066563: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
54002           <...>-27605 (-----) [005] dn.5 82316.066574: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
54003           <...>-27605 (-----) [005] d..2 82316.066580: sched_switch: prev_comm=id.nn.benchmark prev_pid=27605 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
54004<...>-770 ( 770) [005] .... 82316.066591: binder_transaction_received: transaction=1569581
54005<...>-770 ( 770) [005] ...1 82316.066615: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
54006  surfaceflinger-8858  ( 8858) [003] d..1 82316.066640: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
54007  surfaceflinger-8858  ( 8858) [003] d..2 82316.066661: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
54008          <idle>-0     (-----) [002] .n.1 82316.066667: cpu_idle: state=4294967295 cpu_id=2
54009          <idle>-0     (-----) [002] d..2 82316.066678: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
54010<...>-770 ( 770) [005] d..2 82316.066699: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
54011   sfEventThread-8882  ( 8858) [002] d..2 82316.066713: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54012          <idle>-0     (-----) [002] d..1 82316.066725: cpu_idle: state=0 cpu_id=2
54013          <idle>-0     (-----) [002] dnh2 82316.066741: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
54014          <idle>-0     (-----) [002] .n.1 82316.066749: cpu_idle: state=4294967295 cpu_id=2
54015<...>-770 ( 770) [005] ...1 82316.066755: tracing_mark_write: E|770
54016          <idle>-0     (-----) [002] d..2 82316.066759: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
54017<...>-770 ( 770) [005] .... 82316.066763: binder_transaction: transaction=1569582 dest_node=0 dest_proc=27550 dest_thread=27605 reply=1 flags=0x0 code=0x0
54018<...>-770 ( 770) [005] .... 82316.066765: binder_transaction_alloc_buf: transaction=1569582 data_size=168 offsets_size=32
54019<...>-770 ( 770) [005] .... 82316.066772: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
54020<...>-770 ( 770) [005] d..2 82316.066809: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27605 next_prio=110
54021           <...>-27605 (-----) [005] .... 82316.066820: binder_transaction_received: transaction=1569582
54022  surfaceflinger-8858  ( 8858) [003] ...1 82316.066847: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
54023  surfaceflinger-8858  ( 8858) [003] ...1 82316.066853: tracing_mark_write: E|8858
54024<...>-581 ( 571) [002] d..2 82316.066856: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54025          <idle>-0     (-----) [002] d..1 82316.066872: cpu_idle: state=0 cpu_id=2
54026           <...>-27605 (-----) [005] ...1 82316.066894: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
54027           <...>-27605 (-----) [005] ...1 82316.066899: tracing_mark_write: E|27550
54028  surfaceflinger-8858  ( 8858) [003] .... 82316.066904: binder_transaction: transaction=1569583 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
54029  surfaceflinger-8858  ( 8858) [003] .... 82316.066910: binder_transaction_alloc_buf: transaction=1569583 data_size=540 offsets_size=96
54030           <...>-27605 (-----) [005] .... 82316.066915: binder_transaction: transaction=1569584 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
54031           <...>-27605 (-----) [005] .... 82316.066918: binder_transaction_alloc_buf: transaction=1569584 data_size=48 offsets_size=0
54032           <...>-27605 (-----) [005] ...2 82316.066921: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
54033           <...>-27605 (-----) [005] d..4 82316.066923: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
54034           <...>-27605 (-----) [005] dn.5 82316.066933: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
54035  surfaceflinger-8858  ( 8858) [003] ...2 82316.066935: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
54036           <...>-27605 (-----) [005] d..2 82316.066939: sched_switch: prev_comm=id.nn.benchmark prev_pid=27605 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
54037  surfaceflinger-8858  ( 8858) [003] d..4 82316.066943: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
54038<...>-770 ( 770) [005] .... 82316.066947: binder_transaction_received: transaction=1569584
54039  surfaceflinger-8858  ( 8858) [003] d..5 82316.066961: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
54040<...>-770 ( 770) [005] ...1 82316.066964: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
54041          <idle>-0     (-----) [001] .n.1 82316.066966: cpu_idle: state=4294967295 cpu_id=1
54042          <idle>-0     (-----) [001] d..2 82316.066976: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
54043 [email protected]   (  619) [001] .... 82316.066987: binder_transaction_received: transaction=1569583
54044  surfaceflinger-8858  ( 8858) [003] d..2 82316.066993: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54045          <idle>-0     (-----) [003] d..1 82316.067011: cpu_idle: state=0 cpu_id=3
54046<...>-770 ( 770) [005] d..2 82316.067023: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
54047 [email protected]   (  619) [001] ...1 82316.067031: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
54048          <idle>-0     (-----) [002] dnh2 82316.067047: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
54049          <idle>-0     (-----) [002] .n.1 82316.067055: cpu_idle: state=4294967295 cpu_id=2
54050<...>-770 ( 770) [005] ...1 82316.067056: tracing_mark_write: E|770
54051<...>-770 ( 770) [005] .... 82316.067063: binder_transaction: transaction=1569585 dest_node=0 dest_proc=27550 dest_thread=27605 reply=1 flags=0x0 code=0x0
54052          <idle>-0     (-----) [002] d..2 82316.067065: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
54053<...>-770 ( 770) [005] .... 82316.067065: binder_transaction_alloc_buf: transaction=1569585 data_size=168 offsets_size=32
54054<...>-770 ( 770) [005] .... 82316.067072: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
54055<...>-770 ( 770) [005] d..2 82316.067106: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27605 next_prio=110
54056           <...>-27605 (-----) [005] .... 82316.067117: binder_transaction_received: transaction=1569585
54057<...>-581 ( 571) [002] d..2 82316.067127: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54058 [email protected]   (  619) [001] ...1 82316.067136: tracing_mark_write: B|619|HWCSession::PresentDisplay::
54059          <idle>-0     (-----) [002] d..1 82316.067142: cpu_idle: state=0 cpu_id=2
54060 [email protected]   (  619) [001] ...1 82316.067311: tracing_mark_write: B|619|HWDeviceDRM::Commit::
54061 [email protected]   (  619) [001] ...1 82316.067326: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
54062           <...>-27605 (-----) [005] ...1 82316.067393: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
54063           <...>-27605 (-----) [005] ...1 82316.067403: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
54064           <...>-27605 (-----) [005] ...1 82316.067407: tracing_mark_write: E|27550
54065           <...>-27605 (-----) [005] .... 82316.067470: binder_transaction: transaction=1569586 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
54066           <...>-27605 (-----) [005] .... 82316.067473: binder_transaction_alloc_buf: transaction=1569586 data_size=556 offsets_size=104
54067           <...>-27605 (-----) [005] ...2 82316.067488: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
54068           <...>-27605 (-----) [005] d..4 82316.067491: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54069           <...>-27605 (-----) [005] dn.5 82316.067503: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54070           <...>-27605 (-----) [005] d..2 82316.067509: sched_switch: prev_comm=id.nn.benchmark prev_pid=27605 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54071<...>-5340 ( 788) [005] .... 82316.067519: binder_transaction_received: transaction=1569586
54072<...>-5340 ( 788) [005] ...1 82316.067564: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
54073<...>-5340 ( 788) [005] d..2 82316.067612: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
54074<...>-5340 ( 788) [005] d..2 82316.067650: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27605 next_prio=110
54075 [email protected]   (  619) [001] d.h1 82316.067656: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
54076           <...>-27605 (-----) [005] d..2 82316.067672: sched_switch: prev_comm=id.nn.benchmark prev_pid=27605 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54077          <idle>-0     (-----) [005] d..1 82316.067691: cpu_idle: state=0 cpu_id=5
54078 [email protected]   (  619) [001] d..2 82316.067963: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
54079 [email protected]   (  619) [001] d..3 82316.067986: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
54080          <idle>-0     (-----) [000] .n.1 82316.067992: cpu_idle: state=4294967295 cpu_id=0
54081          <idle>-0     (-----) [000] d..2 82316.068004: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
54082 [email protected]   (  619) [001] ...1 82316.068090: tracing_mark_write: E|619
54083 [email protected]   (  619) [001] ...1 82316.068097: tracing_mark_write: E|619
54084 [email protected]   (  619) [001] ...1 82316.068160: tracing_mark_write: E|619
54085 [email protected]   (  619) [001] ...1 82316.068205: tracing_mark_write: E|619
54086 [email protected]   (  619) [001] .... 82316.068220: binder_transaction: transaction=1569589 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
54087 [email protected]   (  619) [001] .... 82316.068224: binder_transaction_alloc_buf: transaction=1569589 data_size=576 offsets_size=112
54088 [email protected]   (  619) [001] d..2 82316.068246: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
54089 [email protected]   (  619) [001] d..3 82316.068264: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
54090 [email protected]   (  619) [001] .... 82316.068269: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
54091          <idle>-0     (-----) [003] .n.1 82316.068270: cpu_idle: state=4294967295 cpu_id=3
54092          <idle>-0     (-----) [003] d..2 82316.068281: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
54093  surfaceflinger-8858  ( 8858) [003] .... 82316.068290: binder_transaction_received: transaction=1569589
54094 [email protected]   (  619) [001] d..2 82316.068344: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
54095<...>-87 ( 87) [001] d..2 82316.068394: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54096          <idle>-0     (-----) [002] d.h4 82316.068406: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54097          <idle>-0     (-----) [001] d..1 82316.068413: cpu_idle: state=0 cpu_id=1
54098          <idle>-0     (-----) [002] dnh5 82316.068426: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54099          <idle>-0     (-----) [002] .n.1 82316.068436: cpu_idle: state=4294967295 cpu_id=2
54100          <idle>-0     (-----) [002] d..2 82316.068454: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
54101 crtc_commit:111-321   (  321) [000] d.s2 82316.068478: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
54102<...>-86 ( 86) [002] d.h4 82316.068479: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54103          <idle>-0     (-----) [005] dnh2 82316.068502: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54104          <idle>-0     (-----) [005] .n.1 82316.068506: cpu_idle: state=4294967295 cpu_id=5
54105          <idle>-0     (-----) [005] d..2 82316.068516: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54106 crtc_commit:111-321   (  321) [000] d.s3 82316.068521: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
54107<...>-86 ( 86) [002] d..2 82316.068551: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
54108<...>-5340 ( 788) [005] d..1 82316.068572: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
54109 crtc_commit:111-321   (  321) [000] d.h1 82316.068607: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54110<...>-5340 ( 788) [005] d..2 82316.068753: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
54111          <idle>-0     (-----) [001] dnh2 82316.068777: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
54112<...>-5340 ( 788) [005] d..2 82316.068784: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54113          <idle>-0     (-----) [001] .n.1 82316.068785: cpu_idle: state=4294967295 cpu_id=1
54114          <idle>-0     (-----) [005] d..1 82316.068798: cpu_idle: state=0 cpu_id=5
54115  surfaceflinger-8858  ( 8858) [003] d..2 82316.068799: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
54116          <idle>-0     (-----) [001] d..2 82316.068799: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
54117<...>-87 ( 87) [001] d..2 82316.068838: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54118 crtc_commit:111-321   (  321) [000] d..2 82316.068844: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
54119          <idle>-0     (-----) [001] d..1 82316.068850: cpu_idle: state=0 cpu_id=1
54120 neuralnetworks@-13088 (  788) [003] d..2 82316.068854: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54121          <idle>-0     (-----) [000] d..1 82316.068856: cpu_idle: state=0 cpu_id=0
54122          <idle>-0     (-----) [003] d..1 82316.068873: cpu_idle: state=0 cpu_id=3
54123  kworker/u16:15-1311  ( 1311) [002] d.h4 82316.068893: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54124  kworker/u16:15-1311  ( 1311) [002] dnh5 82316.068915: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54125  kworker/u16:15-1311  ( 1311) [002] d..2 82316.068930: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_cds next_pid=86 next_prio=120
54126          <idle>-0     (-----) [001] ...1 82316.068945: cpu_idle: state=4294967295 cpu_id=1
54127          <idle>-0     (-----) [001] d..1 82316.068951: cpu_idle: state=0 cpu_id=1
54128<...>-86 ( 86) [002] d..2 82316.068956: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
54129  kworker/u16:15-1311  ( 1311) [002] .... 82316.069014: clk_set_rate: l3_cluster0_vote_clk 403200000
54130  kworker/u16:15-1311  ( 1311) [002] d..2 82316.069044: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54131          <idle>-0     (-----) [002] d..1 82316.069060: cpu_idle: state=0 cpu_id=2
54132          <idle>-0     (-----) [002] d.h4 82316.070518: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54133          <idle>-0     (-----) [005] dnh2 82316.070540: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54134          <idle>-0     (-----) [005] .n.1 82316.070544: cpu_idle: state=4294967295 cpu_id=5
54135          <idle>-0     (-----) [005] d..2 82316.070552: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54136          <idle>-0     (-----) [002] ...1 82316.070559: cpu_idle: state=4294967295 cpu_id=2
54137          <idle>-0     (-----) [002] d..1 82316.070567: cpu_idle: state=0 cpu_id=2
54138<...>-5340 ( 788) [005] d..1 82316.070603: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
54139          <idle>-0     (-----) [003] dnh2 82316.070627: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
54140          <idle>-0     (-----) [003] .n.1 82316.070647: cpu_idle: state=4294967295 cpu_id=3
54141          <idle>-0     (-----) [003] d..2 82316.070688: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
54142<...>-5340 ( 788) [005] ...1 82316.070695: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
54143<...>-5340 ( 788) [005] ...1 82316.070699: tracing_mark_write: E|788
54144<...>-5340 ( 788) [005] .... 82316.070715: binder_transaction: transaction=1569590 dest_node=1569587 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
54145<...>-5340 ( 788) [005] .... 82316.070718: binder_transaction_alloc_buf: transaction=1569590 data_size=60 offsets_size=0
54146 neuralnetworks@-13088 (  788) [003] d..2 82316.070719: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54147<...>-5340 ( 788) [005] d..4 82316.070721: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
54148          <idle>-0     (-----) [003] d..1 82316.070731: cpu_idle: state=0 cpu_id=3
54149<...>-5340 ( 788) [005] d..5 82316.070734: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
54150          <idle>-0     (-----) [004] .n.1 82316.070740: cpu_idle: state=4294967295 cpu_id=4
54151          <idle>-0     (-----) [004] d..2 82316.070748: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
54152           <...>-27571 (-----) [004] .... 82316.070754: binder_transaction_received: transaction=1569590
54153<...>-5340 ( 788) [005] ...1 82316.070756: tracing_mark_write: E|788
54154<...>-5340 ( 788) [005] .... 82316.070762: binder_transaction: transaction=1569591 dest_node=0 dest_proc=27550 dest_thread=27605 reply=1 flags=0x0 code=0x0
54155<...>-5340 ( 788) [005] .... 82316.070764: binder_transaction_alloc_buf: transaction=1569591 data_size=8 offsets_size=0
54156<...>-5340 ( 788) [005] d..2 82316.070766: sched_waking: comm=id.nn.benchmark pid=27605 prio=110 target_cpu=005
54157           <...>-27571 (-----) [004] ...1 82316.070773: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
54158<...>-5340 ( 788) [005] d..3 82316.070774: sched_wakeup: comm=id.nn.benchmark pid=27605 prio=110 target_cpu=005
54159<...>-5340 ( 788) [005] .... 82316.070775: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
54160           <...>-27571 (-----) [004] ...1 82316.070779: tracing_mark_write: E|27550
54161           <...>-27571 (-----) [004] d..2 82316.070809: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54162          <idle>-0     (-----) [004] d..1 82316.070816: cpu_idle: state=0 cpu_id=4
54163<...>-5340 ( 788) [005] d..2 82316.070818: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27605 next_prio=110
54164           <...>-27605 (-----) [005] .... 82316.070827: binder_transaction_received: transaction=1569591
54165           <...>-27605 (-----) [005] ...1 82316.070863: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
54166           <...>-27605 (-----) [005] ...1 82316.070869: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
54167           <...>-27605 (-----) [005] ...1 82316.070897: tracing_mark_write: E|27550
54168           <...>-27605 (-----) [005] ...1 82316.070900: tracing_mark_write: E|27550
54169           <...>-27605 (-----) [005] ...1 82316.070904: tracing_mark_write: E|27550
54170           <...>-27605 (-----) [005] ...1 82316.071097: tracing_mark_write: E|27550
54171           <...>-27605 (-----) [005] d..1 82316.071110: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54172           <...>-27605 (-----) [005] d..2 82316.071125: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54173          <idle>-0     (-----) [004] .n.1 82316.071130: cpu_idle: state=4294967295 cpu_id=4
54174          <idle>-0     (-----) [004] d..2 82316.071137: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
54175           <...>-27550 (-----) [004] d..2 82316.071157: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54176          <idle>-0     (-----) [004] d..1 82316.071166: cpu_idle: state=0 cpu_id=4
54177           <...>-27605 (-----) [005] d..1 82316.071214: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54178           <...>-27605 (-----) [005] d..2 82316.071224: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54179          <idle>-0     (-----) [004] .n.1 82316.071229: cpu_idle: state=4294967295 cpu_id=4
54180          <idle>-0     (-----) [004] d..2 82316.071237: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
54181           <...>-27605 (-----) [005] d..2 82316.071264: sched_switch: prev_comm=id.nn.benchmark prev_pid=27605 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
54182           <...>-27550 (-----) [004] ...1 82316.071269: tracing_mark_write: E|27550
54183           <...>-27550 (-----) [004] ...1 82316.071274: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
54184           <...>-27550 (-----) [004] ...1 82316.071280: tracing_mark_write: E|27550
54185           <...>-27550 (-----) [004] ...1 82316.071283: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
54186          <idle>-0     (-----) [005] d..1 82316.071284: cpu_idle: state=0 cpu_id=5
54187           <...>-27550 (-----) [004] ...1 82316.071288: tracing_mark_write: E|27550
54188           <...>-27550 (-----) [004] ...1 82316.071292: tracing_mark_write: E|27550
54189           <...>-27550 (-----) [004] ...1 82316.071405: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
54190           <...>-27550 (-----) [004] ...1 82316.071464: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
54191           <...>-27550 (-----) [004] ...1 82316.071469: tracing_mark_write: E|27550
54192           <...>-27550 (-----) [004] ...1 82316.071473: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
54193           <...>-27550 (-----) [004] ...1 82316.071478: tracing_mark_write: E|27550
54194           <...>-27550 (-----) [004] ...1 82316.071482: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
54195           <...>-27550 (-----) [004] ...1 82316.071486: tracing_mark_write: E|27550
54196           <...>-27550 (-----) [004] ...1 82316.071490: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
54197          <idle>-0     (-----) [005] .n.1 82316.071582: cpu_idle: state=4294967295 cpu_id=5
54198           <...>-27550 (-----) [004] ...1 82316.071582: tracing_mark_write: E|27550
54199           <...>-27550 (-----) [004] ...1 82316.071587: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
54200          <idle>-0     (-----) [005] d..2 82316.071592: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27606 next_prio=110
54201           <...>-27550 (-----) [004] d..2 82316.071605: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54202          <idle>-0     (-----) [004] d..1 82316.071619: cpu_idle: state=0 cpu_id=4
54203           <...>-27606 (-----) [005] ...1 82316.071653: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
54204           <...>-27606 (-----) [005] ...1 82316.071667: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
54205           <...>-27606 (-----) [005] ...1 82316.071671: tracing_mark_write: E|27550
54206           <...>-27606 (-----) [005] .... 82316.071693: binder_transaction: transaction=1569592 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
54207           <...>-27606 (-----) [005] .... 82316.071697: binder_transaction_alloc_buf: transaction=1569592 data_size=48 offsets_size=0
54208           <...>-27606 (-----) [005] ...2 82316.071700: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
54209           <...>-27606 (-----) [005] d..4 82316.071703: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
54210           <...>-27606 (-----) [005] dn.5 82316.071713: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
54211           <...>-27606 (-----) [005] d..2 82316.071720: sched_switch: prev_comm=id.nn.benchmark prev_pid=27606 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
54212<...>-770 ( 770) [005] .... 82316.071730: binder_transaction_received: transaction=1569592
54213<...>-770 ( 770) [005] ...1 82316.071754: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
54214          <idle>-0     (-----) [000] d.s2 82316.071806: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
54215          <idle>-0     (-----) [002] ...1 82316.071854: cpu_idle: state=4294967295 cpu_id=2
54216          <idle>-0     (-----) [000] dns3 82316.071857: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
54217          <idle>-0     (-----) [002] d..1 82316.071859: cpu_idle: state=0 cpu_id=2
54218          <idle>-0     (-----) [000] dns2 82316.071860: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54219          <idle>-0     (-----) [000] dns3 82316.071874: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54220          <idle>-0     (-----) [000] .n.1 82316.071889: cpu_idle: state=4294967295 cpu_id=0
54221          <idle>-0     (-----) [000] d..2 82316.071899: 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
54222     rcu_preempt-7     (    7) [000] d..2 82316.071918: 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
54223<...>-770 ( 770) [005] d..2 82316.071922: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
54224<...>-8 ( 8) [000] d..2 82316.071925: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
54225<...>-8 ( 8) [000] d..3 82316.071943: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
54226<...>-8 ( 8) [000] d..2 82316.071959: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
54227<...>-46 ( 46) [000] d.h3 82316.071969: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
54228<...>-46 ( 46) [000] d..2 82316.071982: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
54229<...>-770 ( 770) [005] ...1 82316.071990: tracing_mark_write: E|770
54230<...>-46 ( 46) [000] d..3 82316.071995: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
54231<...>-770 ( 770) [005] .... 82316.071998: binder_transaction: transaction=1569593 dest_node=0 dest_proc=27550 dest_thread=27606 reply=1 flags=0x0 code=0x0
54232<...>-770 ( 770) [005] .... 82316.072000: binder_transaction_alloc_buf: transaction=1569593 data_size=168 offsets_size=32
54233<...>-46 ( 46) [000] d..2 82316.072005: 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
54234<...>-770 ( 770) [005] .... 82316.072007: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
54235<...>-8 ( 8) [000] d..2 82316.072017: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
54236<...>-770 ( 770) [005] d..2 82316.072045: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27606 next_prio=110
54237           <...>-27606 (-----) [005] .... 82316.072056: binder_transaction_received: transaction=1569593
54238<...>-581 ( 571) [000] d..2 82316.072114: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54239           <...>-27606 (-----) [005] ...1 82316.072131: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
54240          <idle>-0     (-----) [000] d..1 82316.072133: cpu_idle: state=0 cpu_id=0
54241           <...>-27606 (-----) [005] ...1 82316.072136: tracing_mark_write: E|27550
54242           <...>-27606 (-----) [005] .... 82316.072150: binder_transaction: transaction=1569594 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
54243           <...>-27606 (-----) [005] .... 82316.072153: binder_transaction_alloc_buf: transaction=1569594 data_size=48 offsets_size=0
54244           <...>-27606 (-----) [005] ...2 82316.072155: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
54245           <...>-27606 (-----) [005] d..4 82316.072158: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
54246           <...>-27606 (-----) [005] dn.5 82316.072167: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
54247           <...>-27606 (-----) [005] d..2 82316.072174: sched_switch: prev_comm=id.nn.benchmark prev_pid=27606 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
54248<...>-770 ( 770) [005] .... 82316.072181: binder_transaction_received: transaction=1569594
54249<...>-770 ( 770) [005] ...1 82316.072198: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
54250<...>-770 ( 770) [005] d..2 82316.072259: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
54251          <idle>-0     (-----) [000] dnh2 82316.072286: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
54252          <idle>-0     (-----) [000] .n.1 82316.072292: cpu_idle: state=4294967295 cpu_id=0
54253<...>-770 ( 770) [005] ...1 82316.072294: tracing_mark_write: E|770
54254<...>-770 ( 770) [005] .... 82316.072302: binder_transaction: transaction=1569595 dest_node=0 dest_proc=27550 dest_thread=27606 reply=1 flags=0x0 code=0x0
54255          <idle>-0     (-----) [000] d..2 82316.072304: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
54256<...>-770 ( 770) [005] .... 82316.072304: binder_transaction_alloc_buf: transaction=1569595 data_size=168 offsets_size=32
54257<...>-770 ( 770) [005] .... 82316.072310: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
54258<...>-770 ( 770) [005] d..2 82316.072344: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27606 next_prio=110
54259           <...>-27606 (-----) [005] .... 82316.072355: binder_transaction_received: transaction=1569595
54260<...>-581 ( 571) [000] d..2 82316.072365: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54261          <idle>-0     (-----) [000] d..1 82316.072378: cpu_idle: state=0 cpu_id=0
54262           <...>-27606 (-----) [005] ...1 82316.072636: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
54263           <...>-27606 (-----) [005] ...1 82316.072646: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
54264           <...>-27606 (-----) [005] ...1 82316.072650: tracing_mark_write: E|27550
54265           <...>-27606 (-----) [005] .... 82316.072712: binder_transaction: transaction=1569596 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
54266           <...>-27606 (-----) [005] .... 82316.072715: binder_transaction_alloc_buf: transaction=1569596 data_size=556 offsets_size=104
54267           <...>-27606 (-----) [005] ...2 82316.072730: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
54268           <...>-27606 (-----) [005] d..4 82316.072732: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54269           <...>-27606 (-----) [005] dn.5 82316.072745: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54270           <...>-27606 (-----) [005] d..2 82316.072752: sched_switch: prev_comm=id.nn.benchmark prev_pid=27606 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54271<...>-5340 ( 788) [005] .... 82316.072761: binder_transaction_received: transaction=1569596
54272<...>-5340 ( 788) [005] ...1 82316.072807: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
54273<...>-5340 ( 788) [005] d..2 82316.072850: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
54274<...>-5340 ( 788) [005] d..2 82316.072888: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27606 next_prio=110
54275          <idle>-0     (-----) [000] dnh2 82316.072891: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
54276          <idle>-0     (-----) [000] .n.1 82316.072898: cpu_idle: state=4294967295 cpu_id=0
54277          <idle>-0     (-----) [000] d..2 82316.072909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
54278           <...>-27606 (-----) [005] d..2 82316.072912: sched_switch: prev_comm=id.nn.benchmark prev_pid=27606 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54279          <idle>-0     (-----) [005] d..1 82316.072929: cpu_idle: state=0 cpu_id=5
54280<...>-87 ( 87) [000] d..2 82316.072953: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54281          <idle>-0     (-----) [002] d.h4 82316.072959: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54282          <idle>-0     (-----) [000] d..1 82316.072964: cpu_idle: state=0 cpu_id=0
54283          <idle>-0     (-----) [002] dnh5 82316.072979: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54284          <idle>-0     (-----) [002] .n.1 82316.072988: cpu_idle: state=4294967295 cpu_id=2
54285          <idle>-0     (-----) [002] d..2 82316.073001: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
54286<...>-86 ( 86) [002] d..2 82316.073038: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54287          <idle>-0     (-----) [002] d.h5 82316.073059: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54288          <idle>-0     (-----) [005] dnh2 82316.073082: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54289          <idle>-0     (-----) [005] .n.1 82316.073087: cpu_idle: state=4294967295 cpu_id=5
54290          <idle>-0     (-----) [005] d..2 82316.073095: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54291          <idle>-0     (-----) [002] d..1 82316.073105: cpu_idle: state=0 cpu_id=2
54292<...>-5340 ( 788) [005] d..1 82316.073149: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
54293          <idle>-0     (-----) [000] dnh2 82316.073187: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54294          <idle>-0     (-----) [000] .n.1 82316.073193: cpu_idle: state=4294967295 cpu_id=0
54295          <idle>-0     (-----) [000] d..2 82316.073204: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
54296 neuralnetworks@-13088 (  788) [000] d..2 82316.073258: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54297          <idle>-0     (-----) [000] d..1 82316.073271: cpu_idle: state=0 cpu_id=0
54298<...>-5340 ( 788) [005] d..2 82316.073310: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
54299          <idle>-0     (-----) [000] dnh2 82316.073333: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
54300<...>-5340 ( 788) [005] d..2 82316.073337: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54301          <idle>-0     (-----) [000] .n.1 82316.073339: cpu_idle: state=4294967295 cpu_id=0
54302          <idle>-0     (-----) [000] d..2 82316.073350: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
54303          <idle>-0     (-----) [005] d..1 82316.073351: cpu_idle: state=0 cpu_id=5
54304          <idle>-0     (-----) [002] d.h4 82316.073389: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54305<...>-87 ( 87) [000] d..2 82316.073390: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54306          <idle>-0     (-----) [002] dnh5 82316.073400: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54307          <idle>-0     (-----) [000] d..1 82316.073400: cpu_idle: state=0 cpu_id=0
54308          <idle>-0     (-----) [002] .n.1 82316.073408: cpu_idle: state=4294967295 cpu_id=2
54309          <idle>-0     (-----) [002] d..2 82316.073420: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
54310<...>-86 ( 86) [002] d..2 82316.073454: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54311          <idle>-0     (-----) [002] d..1 82316.073466: cpu_idle: state=0 cpu_id=2
54312          <idle>-0     (-----) [000] d.h5 82316.074115: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
54313          <idle>-0     (-----) [000] d.h6 82316.074137: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
54314          <idle>-0     (-----) [000] d.h5 82316.074142: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
54315          <idle>-0     (-----) [002] .n.1 82316.074142: cpu_idle: state=4294967295 cpu_id=2
54316          <idle>-0     (-----) [000] dnh6 82316.074152: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
54317          <idle>-0     (-----) [002] d..2 82316.074152: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
54318          <idle>-0     (-----) [000] .n.1 82316.074165: cpu_idle: state=4294967295 cpu_id=0
54319          <idle>-0     (-----) [000] d..2 82316.074176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
54320  crtc_event:111-322   (  322) [002] d..2 82316.074185: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54321          <idle>-0     (-----) [002] d..1 82316.074195: cpu_idle: state=0 cpu_id=2
54322 crtc_commit:111-321   (  321) [000] d..2 82316.074317: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
54323          <idle>-0     (-----) [000] d..1 82316.074327: cpu_idle: state=0 cpu_id=0
54324          <idle>-0     (-----) [000] d.s3 82316.075138: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
54325          <idle>-0     (-----) [002] d.h4 82316.075141: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54326          <idle>-0     (-----) [000] d.s4 82316.075153: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
54327          <idle>-0     (-----) [005] dnh2 82316.075163: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54328          <idle>-0     (-----) [005] .n.1 82316.075167: cpu_idle: state=4294967295 cpu_id=5
54329          <idle>-0     (-----) [000] ...1 82316.075174: cpu_idle: state=4294967295 cpu_id=0
54330          <idle>-0     (-----) [005] d..2 82316.075176: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54331          <idle>-0     (-----) [000] d..1 82316.075179: cpu_idle: state=0 cpu_id=0
54332          <idle>-0     (-----) [002] .n.1 82316.075181: cpu_idle: state=4294967295 cpu_id=2
54333          <idle>-0     (-----) [002] d..2 82316.075193: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
54334<...>-5340 ( 788) [005] d..1 82316.075226: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54335  crtc_event:111-322   (  322) [002] d..2 82316.075228: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54336          <idle>-0     (-----) [002] d..1 82316.075239: cpu_idle: state=0 cpu_id=2
54337          <idle>-0     (-----) [000] dnh2 82316.075251: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54338          <idle>-0     (-----) [000] .n.1 82316.075257: cpu_idle: state=4294967295 cpu_id=0
54339          <idle>-0     (-----) [000] d..2 82316.075266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
54340<...>-5340 ( 788) [005] ...1 82316.075316: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
54341<...>-5340 ( 788) [005] ...1 82316.075320: tracing_mark_write: E|788
54342 neuralnetworks@-13088 (  788) [000] d..2 82316.075333: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54343<...>-5340 ( 788) [005] .... 82316.075336: binder_transaction: transaction=1569599 dest_node=1569597 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
54344<...>-5340 ( 788) [005] .... 82316.075338: binder_transaction_alloc_buf: transaction=1569599 data_size=60 offsets_size=0
54345          <idle>-0     (-----) [000] d..1 82316.075341: cpu_idle: state=0 cpu_id=0
54346<...>-5340 ( 788) [005] d..4 82316.075341: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
54347<...>-5340 ( 788) [005] d..5 82316.075354: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
54348          <idle>-0     (-----) [004] .n.1 82316.075361: cpu_idle: state=4294967295 cpu_id=4
54349          <idle>-0     (-----) [004] d..2 82316.075370: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
54350           <...>-27571 (-----) [004] .... 82316.075375: binder_transaction_received: transaction=1569599
54351<...>-5340 ( 788) [005] ...1 82316.075377: tracing_mark_write: E|788
54352<...>-5340 ( 788) [005] .... 82316.075383: binder_transaction: transaction=1569600 dest_node=0 dest_proc=27550 dest_thread=27606 reply=1 flags=0x0 code=0x0
54353<...>-5340 ( 788) [005] .... 82316.075385: binder_transaction_alloc_buf: transaction=1569600 data_size=8 offsets_size=0
54354<...>-5340 ( 788) [005] d..2 82316.075387: sched_waking: comm=id.nn.benchmark pid=27606 prio=110 target_cpu=005
54355           <...>-27571 (-----) [004] ...1 82316.075393: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
54356<...>-5340 ( 788) [005] d..3 82316.075394: sched_wakeup: comm=id.nn.benchmark pid=27606 prio=110 target_cpu=005
54357<...>-5340 ( 788) [005] .... 82316.075396: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
54358           <...>-27571 (-----) [004] ...1 82316.075399: tracing_mark_write: E|27550
54359           <...>-27571 (-----) [004] d..2 82316.075428: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54360          <idle>-0     (-----) [004] d..1 82316.075435: cpu_idle: state=0 cpu_id=4
54361<...>-5340 ( 788) [005] d..2 82316.075437: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27606 next_prio=110
54362           <...>-27606 (-----) [005] .... 82316.075448: binder_transaction_received: transaction=1569600
54363           <...>-27606 (-----) [005] ...1 82316.075484: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
54364           <...>-27606 (-----) [005] ...1 82316.075490: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
54365           <...>-27606 (-----) [005] ...1 82316.075517: tracing_mark_write: E|27550
54366           <...>-27606 (-----) [005] ...1 82316.075520: tracing_mark_write: E|27550
54367           <...>-27606 (-----) [005] ...1 82316.075525: tracing_mark_write: E|27550
54368           <...>-27606 (-----) [005] ...1 82316.075716: tracing_mark_write: E|27550
54369           <...>-27606 (-----) [005] d..1 82316.075729: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54370           <...>-27606 (-----) [005] d..2 82316.075746: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54371          <idle>-0     (-----) [004] .n.1 82316.075751: cpu_idle: state=4294967295 cpu_id=4
54372          <idle>-0     (-----) [004] d..2 82316.075758: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
54373           <...>-27550 (-----) [004] d..2 82316.075777: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54374          <idle>-0     (-----) [004] d..1 82316.075786: cpu_idle: state=0 cpu_id=4
54375           <...>-27606 (-----) [005] d..1 82316.075835: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54376           <...>-27606 (-----) [005] d..2 82316.075845: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54377          <idle>-0     (-----) [004] .n.1 82316.075850: cpu_idle: state=4294967295 cpu_id=4
54378          <idle>-0     (-----) [004] d..2 82316.075858: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
54379           <...>-27606 (-----) [005] d..2 82316.075883: sched_switch: prev_comm=id.nn.benchmark prev_pid=27606 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
54380           <...>-27550 (-----) [004] ...1 82316.075891: tracing_mark_write: E|27550
54381           <...>-27550 (-----) [004] ...1 82316.075896: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
54382           <...>-27550 (-----) [004] ...1 82316.075903: tracing_mark_write: E|27550
54383          <idle>-0     (-----) [005] d..1 82316.075903: cpu_idle: state=0 cpu_id=5
54384           <...>-27550 (-----) [004] ...1 82316.075907: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
54385           <...>-27550 (-----) [004] ...1 82316.075911: tracing_mark_write: E|27550
54386           <...>-27550 (-----) [004] ...1 82316.075915: tracing_mark_write: E|27550
54387           <...>-27550 (-----) [004] ...1 82316.076028: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
54388           <...>-27550 (-----) [004] ...1 82316.076086: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
54389           <...>-27550 (-----) [004] ...1 82316.076091: tracing_mark_write: E|27550
54390           <...>-27550 (-----) [004] ...1 82316.076096: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
54391           <...>-27550 (-----) [004] ...1 82316.076102: tracing_mark_write: E|27550
54392           <...>-27550 (-----) [004] ...1 82316.076105: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
54393           <...>-27550 (-----) [004] ...1 82316.076110: tracing_mark_write: E|27550
54394           <...>-27550 (-----) [004] ...1 82316.076113: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
54395          <idle>-0     (-----) [005] .n.1 82316.076207: cpu_idle: state=4294967295 cpu_id=5
54396           <...>-27550 (-----) [004] ...1 82316.076209: tracing_mark_write: E|27550
54397           <...>-27550 (-----) [004] ...1 82316.076213: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
54398          <idle>-0     (-----) [005] d..2 82316.076217: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27607 next_prio=110
54399           <...>-27550 (-----) [004] d..2 82316.076230: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54400          <idle>-0     (-----) [004] d..1 82316.076244: cpu_idle: state=0 cpu_id=4
54401           <...>-27607 (-----) [005] ...1 82316.076278: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
54402           <...>-27607 (-----) [005] ...1 82316.076294: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
54403           <...>-27607 (-----) [005] ...1 82316.076298: tracing_mark_write: E|27550
54404           <...>-27607 (-----) [005] .... 82316.076318: binder_transaction: transaction=1569601 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
54405           <...>-27607 (-----) [005] .... 82316.076322: binder_transaction_alloc_buf: transaction=1569601 data_size=48 offsets_size=0
54406           <...>-27607 (-----) [005] ...2 82316.076324: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
54407           <...>-27607 (-----) [005] d..4 82316.076327: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
54408           <...>-27607 (-----) [005] dn.5 82316.076338: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
54409           <...>-27607 (-----) [005] d..2 82316.076345: sched_switch: prev_comm=id.nn.benchmark prev_pid=27607 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
54410<...>-770 ( 770) [005] .... 82316.076355: binder_transaction_received: transaction=1569601
54411<...>-770 ( 770) [005] ...1 82316.076378: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
54412          <idle>-0     (-----) [000] d.h5 82316.076454: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
54413<...>-770 ( 770) [005] d..2 82316.076459: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
54414          <idle>-0     (-----) [000] dnh6 82316.076468: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
54415          <idle>-0     (-----) [000] dnh2 82316.076489: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
54416          <idle>-0     (-----) [000] .n.1 82316.076495: cpu_idle: state=4294967295 cpu_id=0
54417<...>-770 ( 770) [005] ...1 82316.076498: tracing_mark_write: E|770
54418          <idle>-0     (-----) [000] d..2 82316.076504: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
54419<...>-770 ( 770) [005] .... 82316.076506: binder_transaction: transaction=1569602 dest_node=0 dest_proc=27550 dest_thread=27607 reply=1 flags=0x0 code=0x0
54420<...>-770 ( 770) [005] .... 82316.076508: binder_transaction_alloc_buf: transaction=1569602 data_size=168 offsets_size=32
54421<...>-770 ( 770) [005] .... 82316.076514: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
54422<...>-770 ( 770) [005] d..2 82316.076550: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27607 next_prio=110
54423           <...>-27607 (-----) [005] .... 82316.076561: binder_transaction_received: transaction=1569602
54424 crtc_commit:111-321   (  321) [000] d..2 82316.076571: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
54425           <...>-27607 (-----) [005] ...1 82316.076629: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
54426           <...>-27607 (-----) [005] ...1 82316.076634: tracing_mark_write: E|27550
54427           <...>-27607 (-----) [005] .... 82316.076648: binder_transaction: transaction=1569603 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
54428           <...>-27607 (-----) [005] .... 82316.076651: binder_transaction_alloc_buf: transaction=1569603 data_size=48 offsets_size=0
54429<...>-581 ( 571) [000] d..2 82316.076651: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54430           <...>-27607 (-----) [005] ...2 82316.076653: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
54431           <...>-27607 (-----) [005] d..4 82316.076656: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
54432          <idle>-0     (-----) [000] d..1 82316.076664: cpu_idle: state=0 cpu_id=0
54433           <...>-27607 (-----) [005] dn.5 82316.076665: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
54434           <...>-27607 (-----) [005] d..2 82316.076672: sched_switch: prev_comm=id.nn.benchmark prev_pid=27607 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
54435<...>-770 ( 770) [005] .... 82316.076680: binder_transaction_received: transaction=1569603
54436<...>-770 ( 770) [005] ...1 82316.076697: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
54437          <idle>-0     (-----) [000] d.h5 82316.076742: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
54438<...>-770 ( 770) [005] d..2 82316.076753: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
54439          <idle>-0     (-----) [000] d.h6 82316.076760: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
54440          <idle>-0     (-----) [002] .n.1 82316.076766: cpu_idle: state=4294967295 cpu_id=2
54441          <idle>-0     (-----) [002] d..2 82316.076776: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
54442          <idle>-0     (-----) [000] dnh2 82316.076785: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
54443<...>-770 ( 770) [005] ...1 82316.076787: tracing_mark_write: E|770
54444          <idle>-0     (-----) [000] .n.1 82316.076791: cpu_idle: state=4294967295 cpu_id=0
54445<...>-770 ( 770) [005] .... 82316.076794: binder_transaction: transaction=1569604 dest_node=0 dest_proc=27550 dest_thread=27607 reply=1 flags=0x0 code=0x0
54446<...>-770 ( 770) [005] .... 82316.076797: binder_transaction_alloc_buf: transaction=1569604 data_size=168 offsets_size=32
54447          <idle>-0     (-----) [000] d..2 82316.076800: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
54448  crtc_event:111-322   (  322) [002] d..2 82316.076801: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54449<...>-770 ( 770) [005] .... 82316.076802: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
54450          <idle>-0     (-----) [002] d..1 82316.076812: cpu_idle: state=0 cpu_id=2
54451<...>-770 ( 770) [005] d..2 82316.076836: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27607 next_prio=110
54452           <...>-27607 (-----) [005] .... 82316.076846: binder_transaction_received: transaction=1569604
54453<...>-581 ( 571) [000] d..2 82316.076864: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54454          <idle>-0     (-----) [000] d..1 82316.076875: cpu_idle: state=0 cpu_id=0
54455           <...>-27607 (-----) [005] ...1 82316.077115: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
54456           <...>-27607 (-----) [005] ...1 82316.077125: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
54457           <...>-27607 (-----) [005] ...1 82316.077129: tracing_mark_write: E|27550
54458           <...>-27607 (-----) [005] .... 82316.077186: binder_transaction: transaction=1569605 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
54459           <...>-27607 (-----) [005] .... 82316.077189: binder_transaction_alloc_buf: transaction=1569605 data_size=556 offsets_size=104
54460           <...>-27607 (-----) [005] ...2 82316.077203: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
54461           <...>-27607 (-----) [005] d..4 82316.077205: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54462           <...>-27607 (-----) [005] dn.5 82316.077216: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54463           <...>-27607 (-----) [005] d..2 82316.077223: sched_switch: prev_comm=id.nn.benchmark prev_pid=27607 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54464<...>-5340 ( 788) [005] .... 82316.077233: binder_transaction_received: transaction=1569605
54465<...>-5340 ( 788) [005] ...1 82316.077275: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
54466<...>-5340 ( 788) [005] d..2 82316.077317: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
54467<...>-5340 ( 788) [005] d..2 82316.077341: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27607 next_prio=110
54468          <idle>-0     (-----) [000] dnh2 82316.077345: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
54469          <idle>-0     (-----) [000] .n.1 82316.077351: cpu_idle: state=4294967295 cpu_id=0
54470          <idle>-0     (-----) [000] d..2 82316.077359: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
54471           <...>-27607 (-----) [005] d..2 82316.077364: sched_switch: prev_comm=id.nn.benchmark prev_pid=27607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54472          <idle>-0     (-----) [005] d..1 82316.077382: cpu_idle: state=0 cpu_id=5
54473<...>-87 ( 87) [000] d..2 82316.077399: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54474          <idle>-0     (-----) [000] d..1 82316.077407: cpu_idle: state=0 cpu_id=0
54475          <idle>-0     (-----) [002] d.h4 82316.077411: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54476          <idle>-0     (-----) [002] dnh5 82316.077428: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54477          <idle>-0     (-----) [002] .n.1 82316.077438: cpu_idle: state=4294967295 cpu_id=2
54478          <idle>-0     (-----) [002] d..2 82316.077449: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
54479<...>-86 ( 86) [002] d..2 82316.077482: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54480          <idle>-0     (-----) [002] d.h5 82316.077504: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54481          <idle>-0     (-----) [005] dnh2 82316.077526: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54482          <idle>-0     (-----) [005] .n.1 82316.077530: cpu_idle: state=4294967295 cpu_id=5
54483          <idle>-0     (-----) [005] d..2 82316.077538: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54484          <idle>-0     (-----) [002] d..1 82316.077550: cpu_idle: state=0 cpu_id=2
54485<...>-5340 ( 788) [005] d..1 82316.077589: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54486          <idle>-0     (-----) [000] dnh2 82316.077614: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54487          <idle>-0     (-----) [000] .n.1 82316.077620: cpu_idle: state=4294967295 cpu_id=0
54488          <idle>-0     (-----) [000] d..2 82316.077628: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
54489 neuralnetworks@-13088 (  788) [000] d..2 82316.077672: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54490          <idle>-0     (-----) [000] d..1 82316.077681: cpu_idle: state=0 cpu_id=0
54491<...>-5340 ( 788) [005] d..2 82316.077736: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
54492          <idle>-0     (-----) [000] dnh2 82316.077757: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
54493<...>-5340 ( 788) [005] d..2 82316.077762: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54494          <idle>-0     (-----) [000] .n.1 82316.077763: cpu_idle: state=4294967295 cpu_id=0
54495          <idle>-0     (-----) [000] d..2 82316.077771: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
54496          <idle>-0     (-----) [005] d..1 82316.077776: cpu_idle: state=0 cpu_id=5
54497          <idle>-0     (-----) [002] d.h4 82316.077808: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54498<...>-87 ( 87) [000] d..2 82316.077808: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54499          <idle>-0     (-----) [000] d..1 82316.077816: cpu_idle: state=0 cpu_id=0
54500          <idle>-0     (-----) [002] dnh5 82316.077819: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54501          <idle>-0     (-----) [002] .n.1 82316.077828: cpu_idle: state=4294967295 cpu_id=2
54502          <idle>-0     (-----) [002] d..2 82316.077839: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
54503<...>-86 ( 86) [002] d..2 82316.077872: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54504          <idle>-0     (-----) [002] d..1 82316.077884: cpu_idle: state=0 cpu_id=2
54505          <idle>-0     (-----) [005] ...1 82316.078105: cpu_idle: state=4294967295 cpu_id=5
54506          <idle>-0     (-----) [005] d..1 82316.078108: cpu_idle: state=0 cpu_id=5
54507          <idle>-0     (-----) [000] d.s2 82316.078470: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
54508          <idle>-0     (-----) [000] dns3 82316.078489: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
54509          <idle>-0     (-----) [000] dns2 82316.078492: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54510          <idle>-0     (-----) [000] dns3 82316.078505: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54511          <idle>-0     (-----) [000] dns3 82316.078511: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
54512          <idle>-0     (-----) [000] dns4 82316.078547: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
54513          <idle>-0     (-----) [000] .n.1 82316.078558: cpu_idle: state=4294967295 cpu_id=0
54514          <idle>-0     (-----) [000] d..2 82316.078568: 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
54515<...>-8 ( 8) [000] d..2 82316.078580: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
54516          <idle>-0     (-----) [003] d.h2 82316.078591: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
54517<...>-8 ( 8) [000] d..3 82316.078595: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
54518<...>-8 ( 8) [000] d..2 82316.078606: 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
54519          <idle>-0     (-----) [003] dnh3 82316.078608: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
54520     rcu_preempt-7     (    7) [000] d..2 82316.078613: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
54521          <idle>-0     (-----) [003] .n.1 82316.078616: cpu_idle: state=4294967295 cpu_id=3
54522          <idle>-0     (-----) [003] d..2 82316.078627: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
54523        DispSync-8879  ( 8858) [003] d..1 82316.078649: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
54524     rcu_preempt-7     (    7) [000] d..3 82316.078650: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
54525     rcu_preempt-7     (    7) [000] d..2 82316.078671: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
54526        DispSync-8879  ( 8858) [003] d..2 82316.078675: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
54527          <idle>-0     (-----) [001] .n.1 82316.078680: cpu_idle: state=4294967295 cpu_id=1
54528          <idle>-0     (-----) [001] d..2 82316.078693: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
54529        DispSync-8879  ( 8858) [003] d..2 82316.078699: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
54530<...>-46 ( 46) [000] d..2 82316.078701: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
54531         rcuop/4-45    (   45) [003] d..2 82316.078706: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
54532<...>-46 ( 46) [000] d..3 82316.078734: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
54533         rcuop/4-45    (   45) [003] d..3 82316.078750: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
54534<...>-46 ( 46) [000] d..2 82316.078752: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
54535  appEventThread-8881  ( 8858) [001] d..3 82316.078757: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
54536         rcuop/4-45    (   45) [003] d..2 82316.078763: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
54537<...>-8 ( 8) [003] d..2 82316.078779: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
54538  appEventThread-8881  ( 8858) [001] d..4 82316.078791: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
54539          <idle>-0     (-----) [002] .n.1 82316.078797: cpu_idle: state=4294967295 cpu_id=2
54540          <idle>-0     (-----) [002] d..2 82316.078810: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
54541  appEventThread-8881  ( 8858) [001] d..2 82316.078859: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54542          <idle>-0     (-----) [001] d..1 82316.078875: cpu_idle: state=0 cpu_id=1
54543  kworker/u16:15-1311  ( 1311) [000] .... 82316.078890: clk_set_rate: l3_cluster0_vote_clk 300000000
54544         rcuop/5-53    (   53) [003] d..2 82316.078925: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54545          <idle>-0     (-----) [003] d..1 82316.078939: cpu_idle: state=0 cpu_id=3
54546  kworker/u16:15-1311  ( 1311) [000] d..2 82316.079122: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
54547          <idle>-0     (-----) [000] d..1 82316.079141: cpu_idle: state=0 cpu_id=0
54548          <idle>-0     (-----) [001] d.s3 82316.079152: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
54549          <idle>-0     (-----) [001] d.s4 82316.079164: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
54550          <idle>-0     (-----) [001] d.s4 82316.079174: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
54551<...>-9105 ( 9105) [002] .... 82316.079178: binder_transaction: transaction=1569608 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
54552          <idle>-0     (-----) [000] .n.1 82316.079180: cpu_idle: state=4294967295 cpu_id=0
54553          <idle>-0     (-----) [001] ...1 82316.079183: cpu_idle: state=4294967295 cpu_id=1
54554<...>-9105 ( 9105) [002] .... 82316.079185: binder_transaction_alloc_buf: transaction=1569608 data_size=80 offsets_size=0
54555          <idle>-0     (-----) [001] d..1 82316.079190: cpu_idle: state=0 cpu_id=1
54556<...>-9105 ( 9105) [002] d..4 82316.079191: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
54557          <idle>-0     (-----) [000] d..2 82316.079193: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
54558<...>-9105 ( 9105) [002] d..5 82316.079225: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
54559          <idle>-0     (-----) [001] .n.1 82316.079230: cpu_idle: state=4294967295 cpu_id=1
54560          <idle>-0     (-----) [001] d..2 82316.079243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
54561  kworker/u16:15-1311  ( 1311) [000] d..2 82316.079245: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54562<...>-13083 ( 8858) [001] .... 82316.079251: binder_transaction_received: transaction=1569608
54563          <idle>-0     (-----) [000] d..1 82316.079257: cpu_idle: state=0 cpu_id=0
54564<...>-9105 ( 9105) [002] d..3 82316.079263: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
54565<...>-13083 ( 8858) [001] d..1 82316.079287: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
54566<...>-9105 ( 9105) [002] d..4 82316.079290: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
54567          <idle>-0     (-----) [000] .n.1 82316.079296: cpu_idle: state=4294967295 cpu_id=0
54568          <idle>-0     (-----) [000] d..2 82316.079308: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
54569<...>-13083 ( 8858) [001] d..2 82316.079312: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
54570          <idle>-0     (-----) [003] .n.1 82316.079318: cpu_idle: state=4294967295 cpu_id=3
54571          <idle>-0     (-----) [003] d..2 82316.079330: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
54572<...>-13083 ( 8858) [001] d..2 82316.079359: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54573    RenderThread-9436  ( 9105) [000] d..2 82316.079368: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54574          <idle>-0     (-----) [001] d..1 82316.079376: cpu_idle: state=0 cpu_id=1
54575          <idle>-0     (-----) [000] d..1 82316.079381: cpu_idle: state=0 cpu_id=0
54576  appEventThread-8881  ( 8858) [003] d..2 82316.079387: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54577          <idle>-0     (-----) [003] d..1 82316.079399: cpu_idle: state=0 cpu_id=3
54578<...>-9105 ( 9105) [002] d..3 82316.079414: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
54579<...>-9105 ( 9105) [002] d..4 82316.079433: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
54580          <idle>-0     (-----) [000] .n.1 82316.079437: cpu_idle: state=4294967295 cpu_id=0
54581          <idle>-0     (-----) [000] d..2 82316.079449: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
54582<...>-9105 ( 9105) [002] d.h4 82316.079458: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54583          <idle>-0     (-----) [005] dnh2 82316.079478: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54584          <idle>-0     (-----) [005] .n.1 82316.079482: cpu_idle: state=4294967295 cpu_id=5
54585          <idle>-0     (-----) [005] d..2 82316.079491: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54586<...>-9105 ( 9105) [002] d..2 82316.079528: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54587<...>-5340 ( 788) [005] d..1 82316.079541: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54588          <idle>-0     (-----) [002] d..1 82316.079548: cpu_idle: state=0 cpu_id=2
54589    RenderThread-9436  ( 9105) [000] dnh1 82316.079570: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54590    RenderThread-9436  ( 9105) [000] d..2 82316.079582: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
54591<...>-5340 ( 788) [005] ...1 82316.079635: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
54592<...>-5340 ( 788) [005] ...1 82316.079639: tracing_mark_write: E|788
54593 neuralnetworks@-13088 (  788) [000] d..2 82316.079644: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
54594<...>-5340 ( 788) [005] .... 82316.079655: binder_transaction: transaction=1569609 dest_node=1569606 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
54595<...>-5340 ( 788) [005] .... 82316.079658: binder_transaction_alloc_buf: transaction=1569609 data_size=60 offsets_size=0
54596<...>-5340 ( 788) [005] d..4 82316.079661: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
54597    RenderThread-9436  ( 9105) [000] d..1 82316.079668: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
54598<...>-5340 ( 788) [005] d..5 82316.079673: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
54599          <idle>-0     (-----) [004] .n.1 82316.079680: cpu_idle: state=4294967295 cpu_id=4
54600    RenderThread-9436  ( 9105) [000] d..2 82316.079685: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
54601          <idle>-0     (-----) [004] d..2 82316.079689: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
54602          <idle>-0     (-----) [002] .n.1 82316.079692: cpu_idle: state=4294967295 cpu_id=2
54603           <...>-27571 (-----) [004] .... 82316.079694: binder_transaction_received: transaction=1569609
54604<...>-5340 ( 788) [005] ...1 82316.079696: tracing_mark_write: E|788
54605<...>-5340 ( 788) [005] .... 82316.079702: binder_transaction: transaction=1569610 dest_node=0 dest_proc=27550 dest_thread=27607 reply=1 flags=0x0 code=0x0
54606<...>-5340 ( 788) [005] .... 82316.079704: binder_transaction_alloc_buf: transaction=1569610 data_size=8 offsets_size=0
54607          <idle>-0     (-----) [002] d..2 82316.079705: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
54608<...>-5340 ( 788) [005] d..2 82316.079706: sched_waking: comm=id.nn.benchmark pid=27607 prio=110 target_cpu=005
54609           <...>-27571 (-----) [004] ...1 82316.079713: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
54610<...>-5340 ( 788) [005] d..3 82316.079713: sched_wakeup: comm=id.nn.benchmark pid=27607 prio=110 target_cpu=005
54611<...>-5340 ( 788) [005] .... 82316.079715: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
54612           <...>-27571 (-----) [004] ...1 82316.079719: tracing_mark_write: E|27550
54613           <...>-27571 (-----) [004] d..2 82316.079748: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54614          <idle>-0     (-----) [004] d..1 82316.079756: cpu_idle: state=0 cpu_id=4
54615<...>-5340 ( 788) [005] d..2 82316.079756: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27607 next_prio=110
54616    RenderThread-9436  ( 9105) [000] .... 82316.079757: binder_transaction: transaction=1569611 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
54617    RenderThread-9436  ( 9105) [000] .... 82316.079763: binder_transaction_alloc_buf: transaction=1569611 data_size=104 offsets_size=0
54618           <...>-27607 (-----) [005] .... 82316.079766: binder_transaction_received: transaction=1569610
54619    RenderThread-9436  ( 9105) [000] d..4 82316.079769: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
54620    RenderThread-9436  ( 9105) [000] dn.5 82316.079789: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
54621<...>-9105 ( 9105) [002] d..2 82316.079792: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54622    RenderThread-9436  ( 9105) [000] d..2 82316.079798: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
54623           <...>-27607 (-----) [005] ...1 82316.079804: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
54624<...>-13083 ( 8858) [000] .... 82316.079808: binder_transaction_received: transaction=1569611
54625          <idle>-0     (-----) [002] d..1 82316.079809: cpu_idle: state=0 cpu_id=2
54626           <...>-27607 (-----) [005] ...1 82316.079810: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
54627           <...>-27607 (-----) [005] ...1 82316.079836: tracing_mark_write: E|27550
54628           <...>-27607 (-----) [005] ...1 82316.079839: tracing_mark_write: E|27550
54629           <...>-27607 (-----) [005] ...1 82316.079843: tracing_mark_write: E|27550
54630<...>-13083 ( 8858) [000] .... 82316.079892: binder_transaction: transaction=1569612 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
54631<...>-13083 ( 8858) [000] .... 82316.079897: binder_transaction_alloc_buf: transaction=1569612 data_size=52 offsets_size=8
54632<...>-13083 ( 8858) [000] d..2 82316.079978: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
54633    RenderThread-9436  ( 9105) [000] .... 82316.079987: binder_transaction_received: transaction=1569612
54634           <...>-27607 (-----) [005] ...1 82316.080032: tracing_mark_write: E|27550
54635           <...>-27607 (-----) [005] d..1 82316.080045: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54636           <...>-27607 (-----) [005] d..2 82316.080061: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54637          <idle>-0     (-----) [004] .n.1 82316.080065: cpu_idle: state=4294967295 cpu_id=4
54638          <idle>-0     (-----) [004] d..2 82316.080072: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
54639           <...>-27550 (-----) [004] d..2 82316.080091: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54640          <idle>-0     (-----) [004] d..1 82316.080100: cpu_idle: state=0 cpu_id=4
54641           <...>-27607 (-----) [005] d..1 82316.080147: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54642           <...>-27607 (-----) [005] d..2 82316.080156: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54643          <idle>-0     (-----) [004] .n.1 82316.080161: cpu_idle: state=4294967295 cpu_id=4
54644          <idle>-0     (-----) [004] d..2 82316.080169: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
54645           <...>-27607 (-----) [005] d..2 82316.080195: sched_switch: prev_comm=id.nn.benchmark prev_pid=27607 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
54646           <...>-27550 (-----) [004] ...1 82316.080202: tracing_mark_write: E|27550
54647           <...>-27550 (-----) [004] ...1 82316.080207: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
54648           <...>-27550 (-----) [004] ...1 82316.080213: tracing_mark_write: E|27550
54649          <idle>-0     (-----) [005] d..1 82316.080215: cpu_idle: state=0 cpu_id=5
54650           <...>-27550 (-----) [004] ...1 82316.080216: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
54651           <...>-27550 (-----) [004] ...1 82316.080220: tracing_mark_write: E|27550
54652           <...>-27550 (-----) [004] ...1 82316.080224: tracing_mark_write: E|27550
54653           <...>-27550 (-----) [004] ...1 82316.080336: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
54654           <...>-27550 (-----) [004] ...1 82316.080393: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
54655           <...>-27550 (-----) [004] ...1 82316.080398: tracing_mark_write: E|27550
54656           <...>-27550 (-----) [004] ...1 82316.080402: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
54657           <...>-27550 (-----) [004] ...1 82316.080407: tracing_mark_write: E|27550
54658           <...>-27550 (-----) [004] ...1 82316.080410: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
54659           <...>-27550 (-----) [004] ...1 82316.080414: tracing_mark_write: E|27550
54660           <...>-27550 (-----) [004] ...1 82316.080417: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
54661          <idle>-0     (-----) [005] .n.1 82316.080511: cpu_idle: state=4294967295 cpu_id=5
54662           <...>-27550 (-----) [004] ...1 82316.080513: tracing_mark_write: E|27550
54663           <...>-27550 (-----) [004] ...1 82316.080517: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
54664          <idle>-0     (-----) [005] d..2 82316.080520: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27608 next_prio=110
54665           <...>-27550 (-----) [004] d..2 82316.080534: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54666          <idle>-0     (-----) [004] d..1 82316.080548: cpu_idle: state=0 cpu_id=4
54667          <idle>-0     (-----) [001] ...1 82316.080559: cpu_idle: state=4294967295 cpu_id=1
54668          <idle>-0     (-----) [001] d..1 82316.080563: cpu_idle: state=0 cpu_id=1
54669           <...>-27608 (-----) [005] ...1 82316.080581: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
54670           <...>-27608 (-----) [005] ...1 82316.080595: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
54671           <...>-27608 (-----) [005] ...1 82316.080599: tracing_mark_write: E|27550
54672           <...>-27608 (-----) [005] .... 82316.080621: binder_transaction: transaction=1569613 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
54673           <...>-27608 (-----) [005] .... 82316.080625: binder_transaction_alloc_buf: transaction=1569613 data_size=48 offsets_size=0
54674           <...>-27608 (-----) [005] ...2 82316.080628: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
54675           <...>-27608 (-----) [005] d..4 82316.080630: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
54676           <...>-27608 (-----) [005] dn.5 82316.080641: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
54677           <...>-27608 (-----) [005] d..2 82316.080648: sched_switch: prev_comm=id.nn.benchmark prev_pid=27608 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
54678<...>-770 ( 770) [005] .... 82316.080658: binder_transaction_received: transaction=1569613
54679<...>-770 ( 770) [005] ...1 82316.080682: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
54680<...>-770 ( 770) [005] d..2 82316.080761: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
54681    RenderThread-9436  ( 9105) [000] d.h1 82316.080794: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
54682<...>-770 ( 770) [005] ...1 82316.080802: tracing_mark_write: E|770
54683<...>-770 ( 770) [005] .... 82316.080810: binder_transaction: transaction=1569614 dest_node=0 dest_proc=27550 dest_thread=27608 reply=1 flags=0x0 code=0x0
54684<...>-770 ( 770) [005] .... 82316.080812: binder_transaction_alloc_buf: transaction=1569614 data_size=168 offsets_size=32
54685<...>-770 ( 770) [005] .... 82316.080819: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
54686<...>-770 ( 770) [005] d..2 82316.080855: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27608 next_prio=110
54687           <...>-27608 (-----) [005] .... 82316.080866: binder_transaction_received: transaction=1569614
54688           <...>-27608 (-----) [005] ...1 82316.080942: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
54689           <...>-27608 (-----) [005] ...1 82316.080947: tracing_mark_write: E|27550
54690           <...>-27608 (-----) [005] .... 82316.080962: binder_transaction: transaction=1569615 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
54691           <...>-27608 (-----) [005] .... 82316.080964: binder_transaction_alloc_buf: transaction=1569615 data_size=48 offsets_size=0
54692           <...>-27608 (-----) [005] ...2 82316.080967: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
54693           <...>-27608 (-----) [005] d..4 82316.080969: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
54694           <...>-27608 (-----) [005] dn.5 82316.080978: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
54695           <...>-27608 (-----) [005] d..2 82316.080985: sched_switch: prev_comm=id.nn.benchmark prev_pid=27608 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
54696<...>-770 ( 770) [005] .... 82316.080993: binder_transaction_received: transaction=1569615
54697    RenderThread-9436  ( 9105) [000] d..2 82316.081005: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
54698<...>-770 ( 770) [005] ...1 82316.081010: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
54699<...>-770 ( 770) [005] ...1 82316.081090: tracing_mark_write: E|770
54700<...>-770 ( 770) [005] .... 82316.081097: binder_transaction: transaction=1569616 dest_node=0 dest_proc=27550 dest_thread=27608 reply=1 flags=0x0 code=0x0
54701<...>-581 ( 571) [000] d.h1 82316.081098: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
54702<...>-770 ( 770) [005] .... 82316.081100: binder_transaction_alloc_buf: transaction=1569616 data_size=168 offsets_size=32
54703<...>-770 ( 770) [005] .... 82316.081106: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
54704<...>-581 ( 571) [000] d.h2 82316.081122: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
54705<...>-581 ( 571) [000] d.h2 82316.081131: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
54706          <idle>-0     (-----) [001] .n.1 82316.081135: cpu_idle: state=4294967295 cpu_id=1
54707<...>-770 ( 770) [005] d..2 82316.081140: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27608 next_prio=110
54708          <idle>-0     (-----) [001] d..2 82316.081148: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
54709           <...>-27608 (-----) [005] .... 82316.081151: binder_transaction_received: transaction=1569616
54710<...>-581 ( 571) [000] d.h2 82316.081158: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
54711<...>-581 ( 571) [000] d.h3 82316.081181: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
54712          <idle>-0     (-----) [003] .n.1 82316.081187: cpu_idle: state=4294967295 cpu_id=3
54713          <idle>-0     (-----) [003] d..2 82316.081197: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
54714<...>-581 ( 571) [000] d..2 82316.081232: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54715 kgsl_worker_thr-258   (  258) [003] d..2 82316.081249: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
54716          <idle>-0     (-----) [000] d..1 82316.081250: cpu_idle: state=0 cpu_id=0
54717          <idle>-0     (-----) [002] ...1 82316.081290: cpu_idle: state=4294967295 cpu_id=2
54718 kgsl_worker_thr-258   (  258) [003] d..3 82316.081291: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
54719          <idle>-0     (-----) [002] d..1 82316.081296: cpu_idle: state=0 cpu_id=2
54720 kgsl_worker_thr-258   (  258) [003] d..2 82316.081307: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
54721  kworker/u16:15-1311  ( 1311) [003] d..2 82316.081353: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54722          <idle>-0     (-----) [003] d..1 82316.081365: cpu_idle: state=0 cpu_id=3
54723    RenderThread-9436  ( 9105) [001] .... 82316.081376: binder_transaction: transaction=1569617 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
54724    RenderThread-9436  ( 9105) [001] .... 82316.081381: binder_transaction_alloc_buf: transaction=1569617 data_size=192 offsets_size=8
54725    RenderThread-9436  ( 9105) [001] d..4 82316.081392: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
54726    RenderThread-9436  ( 9105) [001] dn.5 82316.081418: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
54727           <...>-27608 (-----) [005] ...1 82316.081422: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
54728    RenderThread-9436  ( 9105) [001] d..2 82316.081428: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
54729           <...>-27608 (-----) [005] ...1 82316.081432: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
54730           <...>-27608 (-----) [005] ...1 82316.081435: tracing_mark_write: E|27550
54731<...>-13083 ( 8858) [001] .... 82316.081436: binder_transaction_received: transaction=1569617
54732           <...>-27608 (-----) [005] .... 82316.081495: binder_transaction: transaction=1569618 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
54733           <...>-27608 (-----) [005] .... 82316.081498: binder_transaction_alloc_buf: transaction=1569618 data_size=556 offsets_size=104
54734           <...>-27608 (-----) [005] ...2 82316.081512: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
54735           <...>-27608 (-----) [005] d..4 82316.081515: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54736           <...>-27608 (-----) [005] dn.5 82316.081527: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54737           <...>-27608 (-----) [005] d..2 82316.081533: sched_switch: prev_comm=id.nn.benchmark prev_pid=27608 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54738<...>-5340 ( 788) [005] .... 82316.081543: binder_transaction_received: transaction=1569618
54739<...>-13083 ( 8858) [001] .... 82316.081589: binder_transaction: transaction=1569621 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
54740<...>-5340 ( 788) [005] ...1 82316.081592: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
54741<...>-13083 ( 8858) [001] .... 82316.081594: binder_transaction_alloc_buf: transaction=1569621 data_size=68 offsets_size=0
54742<...>-5340 ( 788) [005] d..2 82316.081637: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
54743<...>-13083 ( 8858) [001] d..2 82316.081639: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
54744    RenderThread-9436  ( 9105) [001] .... 82316.081649: binder_transaction_received: transaction=1569621
54745<...>-5340 ( 788) [005] d..2 82316.081675: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27608 next_prio=110
54746    RenderThread-9436  ( 9105) [001] dnh1 82316.081679: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
54747    RenderThread-9436  ( 9105) [001] d..2 82316.081690: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
54748           <...>-27608 (-----) [005] d..2 82316.081698: sched_switch: prev_comm=id.nn.benchmark prev_pid=27608 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54749          <idle>-0     (-----) [005] d..1 82316.081716: cpu_idle: state=0 cpu_id=5
54750<...>-87 ( 87) [001] d..2 82316.081726: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
54751          <idle>-0     (-----) [002] d.h4 82316.081743: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54752          <idle>-0     (-----) [002] dnh5 82316.081762: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54753          <idle>-0     (-----) [002] .n.1 82316.081772: cpu_idle: state=4294967295 cpu_id=2
54754          <idle>-0     (-----) [002] d..2 82316.081792: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
54755<...>-86 ( 86) [002] d.h3 82316.081826: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54756          <idle>-0     (-----) [005] dnh2 82316.081848: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54757          <idle>-0     (-----) [005] .n.1 82316.081853: cpu_idle: state=4294967295 cpu_id=5
54758          <idle>-0     (-----) [005] d..2 82316.081863: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54759    RenderThread-9436  ( 9105) [001] d..2 82316.081867: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54760          <idle>-0     (-----) [001] d..1 82316.081886: cpu_idle: state=0 cpu_id=1
54761<...>-86 ( 86) [002] d..2 82316.081887: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54762          <idle>-0     (-----) [002] d..1 82316.081902: cpu_idle: state=0 cpu_id=2
54763<...>-5340 ( 788) [005] d..1 82316.081918: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54764          <idle>-0     (-----) [000] dnh2 82316.081946: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54765          <idle>-0     (-----) [000] .n.1 82316.081952: cpu_idle: state=4294967295 cpu_id=0
54766          <idle>-0     (-----) [000] d..2 82316.081965: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
54767 neuralnetworks@-13088 (  788) [000] d..2 82316.082021: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54768          <idle>-0     (-----) [000] d..1 82316.082032: cpu_idle: state=0 cpu_id=0
54769<...>-5340 ( 788) [005] d..2 82316.082067: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
54770          <idle>-0     (-----) [001] dnh2 82316.082090: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
54771<...>-5340 ( 788) [005] d..2 82316.082093: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
54772          <idle>-0     (-----) [001] .n.1 82316.082097: cpu_idle: state=4294967295 cpu_id=1
54773          <idle>-0     (-----) [005] d..1 82316.082107: cpu_idle: state=0 cpu_id=5
54774          <idle>-0     (-----) [001] d..2 82316.082109: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
54775          <idle>-0     (-----) [002] d.h4 82316.082148: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54776<...>-87 ( 87) [001] d..2 82316.082150: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54777          <idle>-0     (-----) [002] dnh5 82316.082160: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
54778          <idle>-0     (-----) [001] d..1 82316.082162: cpu_idle: state=0 cpu_id=1
54779          <idle>-0     (-----) [002] .n.1 82316.082170: cpu_idle: state=4294967295 cpu_id=2
54780          <idle>-0     (-----) [002] d..2 82316.082181: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
54781<...>-86 ( 86) [002] d..2 82316.082214: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54782          <idle>-0     (-----) [002] d..1 82316.082227: cpu_idle: state=0 cpu_id=2
54783          <idle>-0     (-----) [005] ...1 82316.082430: cpu_idle: state=4294967295 cpu_id=5
54784          <idle>-0     (-----) [005] d..1 82316.082434: cpu_idle: state=0 cpu_id=5
54785          <idle>-0     (-----) [003] d.h2 82316.082605: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
54786          <idle>-0     (-----) [003] dnh3 82316.082619: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
54787          <idle>-0     (-----) [003] .n.1 82316.082628: cpu_idle: state=4294967295 cpu_id=3
54788          <idle>-0     (-----) [003] d..2 82316.082639: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
54789        DispSync-8879  ( 8858) [003] d..1 82316.082656: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
54790        DispSync-8879  ( 8858) [003] d..2 82316.082672: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
54791          <idle>-0     (-----) [002] .n.1 82316.082679: cpu_idle: state=4294967295 cpu_id=2
54792          <idle>-0     (-----) [002] d..2 82316.082689: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
54793        DispSync-8879  ( 8858) [003] d..2 82316.082703: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54794          <idle>-0     (-----) [003] d..1 82316.082713: cpu_idle: state=0 cpu_id=3
54795   sfEventThread-8882  ( 8858) [002] d..3 82316.082735: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
54796   sfEventThread-8882  ( 8858) [002] d..4 82316.082758: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
54797          <idle>-0     (-----) [003] .n.1 82316.082764: cpu_idle: state=4294967295 cpu_id=3
54798          <idle>-0     (-----) [003] d..2 82316.082772: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
54799   sfEventThread-8882  ( 8858) [002] d..2 82316.082794: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54800          <idle>-0     (-----) [002] d..1 82316.082810: cpu_idle: state=0 cpu_id=2
54801  surfaceflinger-8858  ( 8858) [003] d..1 82316.083106: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
54802  surfaceflinger-8858  ( 8858) [003] d..2 82316.083127: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
54803          <idle>-0     (-----) [002] .n.1 82316.083134: cpu_idle: state=4294967295 cpu_id=2
54804          <idle>-0     (-----) [002] d..2 82316.083143: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
54805   sfEventThread-8882  ( 8858) [002] d..2 82316.083178: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
54806          <idle>-0     (-----) [002] d..1 82316.083190: cpu_idle: state=0 cpu_id=2
54807  surfaceflinger-8858  ( 8858) [003] ...1 82316.083316: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
54808  surfaceflinger-8858  ( 8858) [003] ...1 82316.083324: tracing_mark_write: E|8858
54809  surfaceflinger-8858  ( 8858) [003] .... 82316.083371: binder_transaction: transaction=1569622 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
54810  surfaceflinger-8858  ( 8858) [003] .... 82316.083376: binder_transaction_alloc_buf: transaction=1569622 data_size=540 offsets_size=96
54811  surfaceflinger-8858  ( 8858) [003] ...2 82316.083401: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
54812  surfaceflinger-8858  ( 8858) [003] d..4 82316.083409: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
54813  surfaceflinger-8858  ( 8858) [003] d..5 82316.083429: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
54814          <idle>-0     (-----) [001] .n.1 82316.083434: cpu_idle: state=4294967295 cpu_id=1
54815          <idle>-0     (-----) [001] d..2 82316.083445: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
54816 [email protected]   (  619) [001] .... 82316.083456: binder_transaction_received: transaction=1569622
54817  surfaceflinger-8858  ( 8858) [003] d..2 82316.083461: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54818          <idle>-0     (-----) [003] d..1 82316.083474: cpu_idle: state=0 cpu_id=3
54819 [email protected]   (  619) [001] ...1 82316.083501: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
54820 [email protected]   (  619) [001] ...1 82316.083610: tracing_mark_write: B|619|HWCSession::PresentDisplay::
54821 [email protected]   (  619) [001] ...1 82316.083785: tracing_mark_write: B|619|HWDeviceDRM::Commit::
54822 [email protected]   (  619) [001] ...1 82316.083799: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
54823          <idle>-0     (-----) [002] d.h4 82316.083804: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54824          <idle>-0     (-----) [005] dnh2 82316.083825: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54825          <idle>-0     (-----) [005] .n.1 82316.083829: cpu_idle: state=4294967295 cpu_id=5
54826          <idle>-0     (-----) [005] d..2 82316.083837: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54827          <idle>-0     (-----) [002] ...1 82316.083847: cpu_idle: state=4294967295 cpu_id=2
54828          <idle>-0     (-----) [002] d..1 82316.083852: cpu_idle: state=0 cpu_id=2
54829<...>-5340 ( 788) [005] d..1 82316.083890: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54830          <idle>-0     (-----) [000] dnh2 82316.083911: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
54831          <idle>-0     (-----) [000] .n.1 82316.083921: cpu_idle: state=4294967295 cpu_id=0
54832          <idle>-0     (-----) [000] d..2 82316.083930: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
54833<...>-5340 ( 788) [005] ...1 82316.083982: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
54834<...>-5340 ( 788) [005] ...1 82316.083986: tracing_mark_write: E|788
54835 neuralnetworks@-13088 (  788) [000] d..2 82316.083991: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54836          <idle>-0     (-----) [000] d..1 82316.084000: cpu_idle: state=0 cpu_id=0
54837<...>-5340 ( 788) [005] .... 82316.084003: binder_transaction: transaction=1569623 dest_node=1569619 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
54838<...>-5340 ( 788) [005] .... 82316.084005: binder_transaction_alloc_buf: transaction=1569623 data_size=60 offsets_size=0
54839<...>-5340 ( 788) [005] d..4 82316.084009: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
54840<...>-5340 ( 788) [005] d..5 82316.084022: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
54841          <idle>-0     (-----) [004] .n.1 82316.084027: cpu_idle: state=4294967295 cpu_id=4
54842          <idle>-0     (-----) [004] d..2 82316.084037: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
54843           <...>-27571 (-----) [004] .... 82316.084042: binder_transaction_received: transaction=1569623
54844<...>-5340 ( 788) [005] ...1 82316.084045: tracing_mark_write: E|788
54845<...>-5340 ( 788) [005] .... 82316.084051: binder_transaction: transaction=1569624 dest_node=0 dest_proc=27550 dest_thread=27608 reply=1 flags=0x0 code=0x0
54846<...>-5340 ( 788) [005] .... 82316.084053: binder_transaction_alloc_buf: transaction=1569624 data_size=8 offsets_size=0
54847<...>-5340 ( 788) [005] d..2 82316.084055: sched_waking: comm=id.nn.benchmark pid=27608 prio=110 target_cpu=005
54848           <...>-27571 (-----) [004] ...1 82316.084061: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
54849<...>-5340 ( 788) [005] d..3 82316.084062: sched_wakeup: comm=id.nn.benchmark pid=27608 prio=110 target_cpu=005
54850<...>-5340 ( 788) [005] .... 82316.084064: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
54851           <...>-27571 (-----) [004] ...1 82316.084068: tracing_mark_write: E|27550
54852           <...>-27571 (-----) [004] d..2 82316.084096: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54853          <idle>-0     (-----) [004] d..1 82316.084103: cpu_idle: state=0 cpu_id=4
54854<...>-5340 ( 788) [005] d..2 82316.084106: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27608 next_prio=110
54855           <...>-27608 (-----) [005] .... 82316.084115: binder_transaction_received: transaction=1569624
54856           <...>-27608 (-----) [005] ...1 82316.084152: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
54857           <...>-27608 (-----) [005] ...1 82316.084158: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
54858           <...>-27608 (-----) [005] ...1 82316.084184: tracing_mark_write: E|27550
54859           <...>-27608 (-----) [005] ...1 82316.084188: tracing_mark_write: E|27550
54860           <...>-27608 (-----) [005] ...1 82316.084191: tracing_mark_write: E|27550
54861           <...>-27608 (-----) [005] ...1 82316.084378: tracing_mark_write: E|27550
54862           <...>-27608 (-----) [005] d..1 82316.084391: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54863           <...>-27608 (-----) [005] d..2 82316.084406: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54864          <idle>-0     (-----) [004] .n.1 82316.084412: cpu_idle: state=4294967295 cpu_id=4
54865          <idle>-0     (-----) [004] d..2 82316.084418: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
54866           <...>-27550 (-----) [004] d..2 82316.084437: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54867          <idle>-0     (-----) [004] d..1 82316.084446: cpu_idle: state=0 cpu_id=4
54868 [email protected]   (  619) [001] d..2 82316.084474: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
54869           <...>-27608 (-----) [005] d..1 82316.084497: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54870 [email protected]   (  619) [001] d..3 82316.084499: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
54871          <idle>-0     (-----) [000] .n.1 82316.084504: cpu_idle: state=4294967295 cpu_id=0
54872           <...>-27608 (-----) [005] d..2 82316.084506: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
54873          <idle>-0     (-----) [004] .n.1 82316.084511: cpu_idle: state=4294967295 cpu_id=4
54874          <idle>-0     (-----) [000] d..2 82316.084512: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
54875          <idle>-0     (-----) [004] d..2 82316.084519: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
54876           <...>-27608 (-----) [005] d..2 82316.084547: sched_switch: prev_comm=id.nn.benchmark prev_pid=27608 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
54877           <...>-27550 (-----) [004] ...1 82316.084553: tracing_mark_write: E|27550
54878           <...>-27550 (-----) [004] ...1 82316.084557: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
54879           <...>-27550 (-----) [004] ...1 82316.084563: tracing_mark_write: E|27550
54880           <...>-27550 (-----) [004] ...1 82316.084566: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
54881          <idle>-0     (-----) [005] d..1 82316.084569: cpu_idle: state=0 cpu_id=5
54882           <...>-27550 (-----) [004] ...1 82316.084570: tracing_mark_write: E|27550
54883           <...>-27550 (-----) [004] ...1 82316.084574: tracing_mark_write: E|27550
54884 [email protected]   (  619) [001] ...1 82316.084607: tracing_mark_write: E|619
54885 [email protected]   (  619) [001] ...1 82316.084615: tracing_mark_write: E|619
54886 [email protected]   (  619) [001] ...1 82316.084678: tracing_mark_write: E|619
54887           <...>-27550 (-----) [004] ...1 82316.084686: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
54888 [email protected]   (  619) [001] ...1 82316.084725: tracing_mark_write: E|619
54889 [email protected]   (  619) [001] .... 82316.084740: binder_transaction: transaction=1569625 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
54890           <...>-27550 (-----) [004] ...1 82316.084743: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
54891 [email protected]   (  619) [001] .... 82316.084745: binder_transaction_alloc_buf: transaction=1569625 data_size=576 offsets_size=112
54892           <...>-27550 (-----) [004] ...1 82316.084748: tracing_mark_write: E|27550
54893           <...>-27550 (-----) [004] ...1 82316.084753: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
54894           <...>-27550 (-----) [004] ...1 82316.084758: tracing_mark_write: E|27550
54895           <...>-27550 (-----) [004] ...1 82316.084762: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
54896           <...>-27550 (-----) [004] ...1 82316.084766: tracing_mark_write: E|27550
54897 [email protected]   (  619) [001] d..2 82316.084767: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
54898           <...>-27550 (-----) [004] ...1 82316.084769: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
54899 [email protected]   (  619) [001] d..3 82316.084786: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
54900 [email protected]   (  619) [001] .... 82316.084791: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
54901          <idle>-0     (-----) [003] .n.1 82316.084792: cpu_idle: state=4294967295 cpu_id=3
54902          <idle>-0     (-----) [003] d..2 82316.084801: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
54903  surfaceflinger-8858  ( 8858) [003] .... 82316.084809: binder_transaction_received: transaction=1569625
54904          <idle>-0     (-----) [005] .n.1 82316.084860: cpu_idle: state=4294967295 cpu_id=5
54905           <...>-27550 (-----) [004] ...1 82316.084861: tracing_mark_write: E|27550
54906           <...>-27550 (-----) [004] ...1 82316.084865: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
54907          <idle>-0     (-----) [005] d..2 82316.084869: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27609 next_prio=110
54908 [email protected]   (  619) [001] d..2 82316.084879: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
54909           <...>-27550 (-----) [004] d..2 82316.084882: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
54910          <idle>-0     (-----) [004] d..1 82316.084896: cpu_idle: state=0 cpu_id=4
54911          <idle>-0     (-----) [001] d..1 82316.084900: cpu_idle: state=0 cpu_id=1
54912           <...>-27609 (-----) [005] ...1 82316.084931: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
54913           <...>-27609 (-----) [005] ...1 82316.084945: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
54914           <...>-27609 (-----) [005] ...1 82316.084949: tracing_mark_write: E|27550
54915           <...>-27609 (-----) [005] .... 82316.084969: binder_transaction: transaction=1569626 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
54916           <...>-27609 (-----) [005] .... 82316.084973: binder_transaction_alloc_buf: transaction=1569626 data_size=48 offsets_size=0
54917           <...>-27609 (-----) [005] ...2 82316.084976: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
54918           <...>-27609 (-----) [005] d..4 82316.084978: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
54919           <...>-27609 (-----) [005] dn.5 82316.084989: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
54920           <...>-27609 (-----) [005] d..2 82316.084996: sched_switch: prev_comm=id.nn.benchmark prev_pid=27609 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
54921<...>-770 ( 770) [005] .... 82316.085006: binder_transaction_received: transaction=1569626
54922<...>-770 ( 770) [005] ...1 82316.085029: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
54923 crtc_commit:111-321   (  321) [000] d.s1 82316.085143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
54924  surfaceflinger-8858  ( 8858) [003] d.s1 82316.085143: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
54925<...>-770 ( 770) [005] d..2 82316.085149: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
54926  surfaceflinger-8858  ( 8858) [003] d.s2 82316.085166: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
54927 crtc_commit:111-321   (  321) [000] d.s2 82316.085191: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
54928  surfaceflinger-8858  ( 8858) [003] d.H2 82316.085199: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
54929 crtc_commit:111-321   (  321) [000] d.s2 82316.085207: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
54930<...>-770 ( 770) [005] ...1 82316.085212: tracing_mark_write: E|770
54931<...>-770 ( 770) [005] .... 82316.085221: binder_transaction: transaction=1569627 dest_node=0 dest_proc=27550 dest_thread=27609 reply=1 flags=0x0 code=0x0
54932<...>-770 ( 770) [005] .... 82316.085223: binder_transaction_alloc_buf: transaction=1569627 data_size=168 offsets_size=32
54933<...>-770 ( 770) [005] .... 82316.085230: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
54934 crtc_commit:111-321   (  321) [000] d.s3 82316.085238: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
54935<...>-770 ( 770) [005] d..2 82316.085266: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27609 next_prio=110
54936           <...>-27609 (-----) [005] .... 82316.085277: binder_transaction_received: transaction=1569627
54937  surfaceflinger-8858  ( 8858) [003] d..2 82316.085338: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
54938           <...>-27609 (-----) [005] ...1 82316.085350: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
54939           <...>-27609 (-----) [005] ...1 82316.085355: tracing_mark_write: E|27550
54940     rcu_preempt-7     (    7) [003] d..2 82316.085363: 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
54941 crtc_commit:111-321   (  321) [000] d..2 82316.085366: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
54942           <...>-27609 (-----) [005] .... 82316.085370: binder_transaction: transaction=1569628 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
54943           <...>-27609 (-----) [005] .... 82316.085372: binder_transaction_alloc_buf: transaction=1569628 data_size=48 offsets_size=0
54944           <...>-27609 (-----) [005] ...2 82316.085375: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
54945           <...>-27609 (-----) [005] d..4 82316.085377: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
54946<...>-8 ( 8) [003] d..2 82316.085380: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
54947           <...>-27609 (-----) [005] dn.5 82316.085387: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
54948           <...>-27609 (-----) [005] d..2 82316.085393: sched_switch: prev_comm=id.nn.benchmark prev_pid=27609 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
54949<...>-770 ( 770) [005] .... 82316.085401: binder_transaction_received: transaction=1569628
54950<...>-770 ( 770) [005] ...1 82316.085417: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
54951<...>-770 ( 770) [005] d..2 82316.085476: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
54952<...>-581 ( 571) [003] d..2 82316.085480: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54953          <idle>-0     (-----) [003] d..1 82316.085500: cpu_idle: state=0 cpu_id=3
54954<...>-770 ( 770) [005] ...1 82316.085517: tracing_mark_write: E|770
54955          <idle>-0     (-----) [003] dnh2 82316.085518: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
54956<...>-770 ( 770) [005] .... 82316.085523: binder_transaction: transaction=1569629 dest_node=0 dest_proc=27550 dest_thread=27609 reply=1 flags=0x0 code=0x0
54957          <idle>-0     (-----) [003] .n.1 82316.085524: cpu_idle: state=4294967295 cpu_id=3
54958<...>-770 ( 770) [005] .... 82316.085526: binder_transaction_alloc_buf: transaction=1569629 data_size=168 offsets_size=32
54959<...>-770 ( 770) [005] .... 82316.085532: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
54960          <idle>-0     (-----) [003] d..2 82316.085536: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
54961  kworker/u16:15-1311  ( 1311) [000] d..2 82316.085563: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
54962<...>-770 ( 770) [005] d..2 82316.085566: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27609 next_prio=110
54963           <...>-27609 (-----) [005] .... 82316.085577: binder_transaction_received: transaction=1569629
54964          <idle>-0     (-----) [000] d..1 82316.085582: cpu_idle: state=0 cpu_id=0
54965          <idle>-0     (-----) [001] d.s3 82316.085594: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
54966<...>-581 ( 571) [003] d..2 82316.085600: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
54967          <idle>-0     (-----) [001] d.s4 82316.085608: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
54968          <idle>-0     (-----) [003] d..1 82316.085614: cpu_idle: state=0 cpu_id=3
54969          <idle>-0     (-----) [001] d.s4 82316.085618: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
54970          <idle>-0     (-----) [000] .n.1 82316.085626: cpu_idle: state=4294967295 cpu_id=0
54971          <idle>-0     (-----) [001] ...1 82316.085630: cpu_idle: state=4294967295 cpu_id=1
54972          <idle>-0     (-----) [001] d..1 82316.085636: cpu_idle: state=0 cpu_id=1
54973          <idle>-0     (-----) [000] d..2 82316.085638: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
54974  kworker/u16:15-1311  ( 1311) [000] d..2 82316.085816: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
54975          <idle>-0     (-----) [000] d..1 82316.085831: cpu_idle: state=0 cpu_id=0
54976          <idle>-0     (-----) [001] d.s3 82316.085834: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
54977          <idle>-0     (-----) [001] d.s4 82316.085843: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
54978           <...>-27609 (-----) [005] ...1 82316.085850: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
54979          <idle>-0     (-----) [001] d.s4 82316.085851: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
54980          <idle>-0     (-----) [000] .n.1 82316.085858: cpu_idle: state=4294967295 cpu_id=0
54981           <...>-27609 (-----) [005] ...1 82316.085859: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
54982          <idle>-0     (-----) [001] ...1 82316.085860: cpu_idle: state=4294967295 cpu_id=1
54983           <...>-27609 (-----) [005] ...1 82316.085863: tracing_mark_write: E|27550
54984          <idle>-0     (-----) [001] d..1 82316.085868: cpu_idle: state=0 cpu_id=1
54985          <idle>-0     (-----) [000] d..2 82316.085870: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
54986  kworker/u16:15-1311  ( 1311) [000] d..2 82316.085898: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
54987          <idle>-0     (-----) [000] d..1 82316.085911: cpu_idle: state=0 cpu_id=0
54988           <...>-27609 (-----) [005] .... 82316.085925: binder_transaction: transaction=1569630 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
54989           <...>-27609 (-----) [005] .... 82316.085928: binder_transaction_alloc_buf: transaction=1569630 data_size=556 offsets_size=104
54990           <...>-27609 (-----) [005] ...2 82316.085942: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
54991           <...>-27609 (-----) [005] d..4 82316.085945: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54992           <...>-27609 (-----) [005] dn.5 82316.085957: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
54993           <...>-27609 (-----) [005] d..2 82316.085963: sched_switch: prev_comm=id.nn.benchmark prev_pid=27609 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
54994<...>-5340 ( 788) [005] .... 82316.085973: binder_transaction_received: transaction=1569630
54995<...>-5340 ( 788) [005] ...1 82316.086021: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
54996<...>-5340 ( 788) [005] d..2 82316.086068: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
54997<...>-5340 ( 788) [005] d..2 82316.086104: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27609 next_prio=110
54998          <idle>-0     (-----) [000] dnh2 82316.086108: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
54999          <idle>-0     (-----) [000] .n.1 82316.086115: cpu_idle: state=4294967295 cpu_id=0
55000          <idle>-0     (-----) [000] d..2 82316.086126: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
55001           <...>-27609 (-----) [005] d..2 82316.086127: sched_switch: prev_comm=id.nn.benchmark prev_pid=27609 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
55002          <idle>-0     (-----) [005] d..1 82316.086146: cpu_idle: state=0 cpu_id=5
55003<...>-87 ( 87) [000] d..2 82316.086169: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55004          <idle>-0     (-----) [002] d.h4 82316.086177: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55005          <idle>-0     (-----) [000] d..1 82316.086182: cpu_idle: state=0 cpu_id=0
55006          <idle>-0     (-----) [002] dnh5 82316.086196: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55007          <idle>-0     (-----) [002] .n.1 82316.086204: cpu_idle: state=4294967295 cpu_id=2
55008          <idle>-0     (-----) [002] d..2 82316.086217: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
55009<...>-86 ( 86) [002] d..2 82316.086257: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55010          <idle>-0     (-----) [002] d.h5 82316.086279: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55011          <idle>-0     (-----) [005] dnh2 82316.086300: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55012          <idle>-0     (-----) [005] .n.1 82316.086305: cpu_idle: state=4294967295 cpu_id=5
55013          <idle>-0     (-----) [005] d..2 82316.086313: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55014          <idle>-0     (-----) [002] d..1 82316.086325: cpu_idle: state=0 cpu_id=2
55015<...>-5340 ( 788) [005] d..1 82316.086367: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55016          <idle>-0     (-----) [000] dnh2 82316.086394: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55017          <idle>-0     (-----) [000] .n.1 82316.086401: cpu_idle: state=4294967295 cpu_id=0
55018          <idle>-0     (-----) [000] d..2 82316.086411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
55019 neuralnetworks@-13088 (  788) [000] d..2 82316.086454: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55020          <idle>-0     (-----) [000] d..1 82316.086468: cpu_idle: state=0 cpu_id=0
55021<...>-5340 ( 788) [005] d..2 82316.086517: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
55022          <idle>-0     (-----) [000] dnh2 82316.086538: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
55023<...>-5340 ( 788) [005] d..2 82316.086543: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
55024          <idle>-0     (-----) [000] .n.1 82316.086546: cpu_idle: state=4294967295 cpu_id=0
55025          <idle>-0     (-----) [000] d..2 82316.086556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
55026          <idle>-0     (-----) [005] d..1 82316.086558: cpu_idle: state=0 cpu_id=5
55027<...>-87 ( 87) [000] d..2 82316.086593: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55028          <idle>-0     (-----) [002] d.h4 82316.086594: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55029          <idle>-0     (-----) [002] dnh5 82316.086604: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55030          <idle>-0     (-----) [000] d..1 82316.086606: cpu_idle: state=0 cpu_id=0
55031          <idle>-0     (-----) [002] .n.1 82316.086613: cpu_idle: state=4294967295 cpu_id=2
55032          <idle>-0     (-----) [002] d..2 82316.086625: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
55033<...>-86 ( 86) [002] d..2 82316.086658: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55034          <idle>-0     (-----) [002] d..1 82316.086671: cpu_idle: state=0 cpu_id=2
55035          <idle>-0     (-----) [005] ...1 82316.086881: cpu_idle: state=4294967295 cpu_id=5
55036          <idle>-0     (-----) [005] d..1 82316.086884: cpu_idle: state=0 cpu_id=5
55037          <idle>-0     (-----) [001] ...1 82316.087448: cpu_idle: state=4294967295 cpu_id=1
55038          <idle>-0     (-----) [001] d..1 82316.087453: cpu_idle: state=0 cpu_id=1
55039          <idle>-0     (-----) [000] ...1 82316.087722: cpu_idle: state=4294967295 cpu_id=0
55040          <idle>-0     (-----) [000] d..1 82316.087727: cpu_idle: state=0 cpu_id=0
55041          <idle>-0     (-----) [002] ...1 82316.088087: cpu_idle: state=4294967295 cpu_id=2
55042          <idle>-0     (-----) [002] d..1 82316.088092: cpu_idle: state=0 cpu_id=2
55043          <idle>-0     (-----) [002] d.h4 82316.088304: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55044          <idle>-0     (-----) [005] dnh2 82316.088325: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55045          <idle>-0     (-----) [005] .n.1 82316.088329: cpu_idle: state=4294967295 cpu_id=5
55046          <idle>-0     (-----) [005] d..2 82316.088337: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55047          <idle>-0     (-----) [002] ...1 82316.088343: cpu_idle: state=4294967295 cpu_id=2
55048          <idle>-0     (-----) [002] d..1 82316.088349: cpu_idle: state=0 cpu_id=2
55049<...>-5340 ( 788) [005] d..1 82316.088383: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55050          <idle>-0     (-----) [000] dnh2 82316.088404: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55051          <idle>-0     (-----) [000] .n.1 82316.088413: cpu_idle: state=4294967295 cpu_id=0
55052          <idle>-0     (-----) [000] d..2 82316.088423: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
55053<...>-5340 ( 788) [005] d.s2 82316.088468: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
55054<...>-5340 ( 788) [005] d.s2 82316.088485: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
55055 neuralnetworks@-13088 (  788) [000] d.h1 82316.088488: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
55056 neuralnetworks@-13088 (  788) [000] d..2 82316.088514: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
55057  kworker/u16:15-1311  ( 1311) [000] dnh3 82316.088541: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
55058  kworker/u16:15-1311  ( 1311) [000] d..2 82316.088550: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
55059<...>-5340 ( 788) [005] ...1 82316.088552: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
55060<...>-5340 ( 788) [005] ...1 82316.088556: tracing_mark_write: E|788
55061<...>-8 ( 8) [000] d..2 82316.088558: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
55062<...>-5340 ( 788) [005] .... 82316.088572: binder_transaction: transaction=1569633 dest_node=1569631 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
55063<...>-5340 ( 788) [005] .... 82316.088575: binder_transaction_alloc_buf: transaction=1569633 data_size=60 offsets_size=0
55064<...>-8 ( 8) [000] d..3 82316.088576: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
55065<...>-5340 ( 788) [005] d..4 82316.088578: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
55066<...>-8 ( 8) [000] d..2 82316.088587: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
55067<...>-5340 ( 788) [005] d..5 82316.088589: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
55068          <idle>-0     (-----) [004] .n.1 82316.088595: cpu_idle: state=4294967295 cpu_id=4
55069<...>-46 ( 46) [000] d..2 82316.088598: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
55070          <idle>-0     (-----) [004] d..2 82316.088604: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
55071           <...>-27571 (-----) [004] .... 82316.088609: binder_transaction_received: transaction=1569633
55072<...>-5340 ( 788) [005] ...1 82316.088612: tracing_mark_write: E|788
55073<...>-46 ( 46) [000] d..3 82316.088612: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
55074<...>-5340 ( 788) [005] .... 82316.088618: binder_transaction: transaction=1569634 dest_node=0 dest_proc=27550 dest_thread=27609 reply=1 flags=0x0 code=0x0
55075<...>-5340 ( 788) [005] .... 82316.088620: binder_transaction_alloc_buf: transaction=1569634 data_size=8 offsets_size=0
55076<...>-46 ( 46) [000] d..2 82316.088622: 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
55077<...>-5340 ( 788) [005] d..2 82316.088622: sched_waking: comm=id.nn.benchmark pid=27609 prio=110 target_cpu=005
55078           <...>-27571 (-----) [004] ...1 82316.088628: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
55079<...>-5340 ( 788) [005] d..3 82316.088629: sched_wakeup: comm=id.nn.benchmark pid=27609 prio=110 target_cpu=005
55080<...>-5340 ( 788) [005] .... 82316.088630: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
55081<...>-8 ( 8) [000] d..2 82316.088634: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
55082           <...>-27571 (-----) [004] ...1 82316.088635: tracing_mark_write: E|27550
55083<...>-5340 ( 788) [005] d..2 82316.088672: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27609 next_prio=110
55084           <...>-27571 (-----) [004] d..2 82316.088674: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55085           <...>-27609 (-----) [005] .... 82316.088682: binder_transaction_received: transaction=1569634
55086          <idle>-0     (-----) [004] d..1 82316.088697: cpu_idle: state=0 cpu_id=4
55087           <...>-27609 (-----) [005] ...1 82316.088733: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
55088           <...>-27609 (-----) [005] ...1 82316.088739: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
55089           <...>-27609 (-----) [005] ...1 82316.088765: tracing_mark_write: E|27550
55090           <...>-27609 (-----) [005] ...1 82316.088768: tracing_mark_write: E|27550
55091           <...>-27609 (-----) [005] ...1 82316.088772: tracing_mark_write: E|27550
55092  kworker/u16:15-1311  ( 1311) [000] d..2 82316.088948: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
55093           <...>-27609 (-----) [005] ...1 82316.088956: tracing_mark_write: E|27550
55094          <idle>-0     (-----) [000] d..1 82316.088965: cpu_idle: state=0 cpu_id=0
55095           <...>-27609 (-----) [005] d..1 82316.088969: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55096          <idle>-0     (-----) [001] d.s3 82316.088971: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
55097          <idle>-0     (-----) [001] d.s4 82316.088981: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
55098           <...>-27609 (-----) [005] d..2 82316.088984: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55099          <idle>-0     (-----) [001] d.s4 82316.088989: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
55100          <idle>-0     (-----) [004] .n.1 82316.088990: cpu_idle: state=4294967295 cpu_id=4
55101          <idle>-0     (-----) [000] .n.1 82316.088995: cpu_idle: state=4294967295 cpu_id=0
55102          <idle>-0     (-----) [004] d..2 82316.088997: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
55103          <idle>-0     (-----) [001] ...1 82316.088998: cpu_idle: state=4294967295 cpu_id=1
55104          <idle>-0     (-----) [001] d..1 82316.089005: cpu_idle: state=0 cpu_id=1
55105          <idle>-0     (-----) [000] d..2 82316.089008: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
55106           <...>-27550 (-----) [004] d..2 82316.089017: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55107          <idle>-0     (-----) [004] d..1 82316.089026: cpu_idle: state=0 cpu_id=4
55108          <idle>-0     (-----) [004] ...1 82316.089037: cpu_idle: state=4294967295 cpu_id=4
55109          <idle>-0     (-----) [004] d..1 82316.089041: cpu_idle: state=0 cpu_id=4
55110           <...>-27609 (-----) [005] d..1 82316.089083: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55111           <...>-27609 (-----) [005] d..2 82316.089093: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55112  kworker/u16:15-1311  ( 1311) [000] .... 82316.089097: clk_set_rate: l3_cluster0_vote_clk 403200000
55113          <idle>-0     (-----) [004] .n.1 82316.089098: cpu_idle: state=4294967295 cpu_id=4
55114          <idle>-0     (-----) [004] d..2 82316.089105: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
55115  kworker/u16:15-1311  ( 1311) [000] d..2 82316.089128: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55116           <...>-27609 (-----) [005] d..2 82316.089132: sched_switch: prev_comm=id.nn.benchmark prev_pid=27609 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
55117           <...>-27550 (-----) [004] ...1 82316.089139: tracing_mark_write: E|27550
55118          <idle>-0     (-----) [000] d..1 82316.089140: cpu_idle: state=0 cpu_id=0
55119           <...>-27550 (-----) [004] ...1 82316.089143: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
55120           <...>-27550 (-----) [004] ...1 82316.089149: tracing_mark_write: E|27550
55121          <idle>-0     (-----) [005] d..1 82316.089152: cpu_idle: state=0 cpu_id=5
55122           <...>-27550 (-----) [004] ...1 82316.089153: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
55123           <...>-27550 (-----) [004] ...1 82316.089157: tracing_mark_write: E|27550
55124           <...>-27550 (-----) [004] ...1 82316.089161: tracing_mark_write: E|27550
55125           <...>-27550 (-----) [004] ...1 82316.089274: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
55126           <...>-27550 (-----) [004] ...1 82316.089332: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
55127           <...>-27550 (-----) [004] ...1 82316.089338: tracing_mark_write: E|27550
55128           <...>-27550 (-----) [004] ...1 82316.089341: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
55129           <...>-27550 (-----) [004] ...1 82316.089347: tracing_mark_write: E|27550
55130           <...>-27550 (-----) [004] ...1 82316.089351: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
55131           <...>-27550 (-----) [004] ...1 82316.089355: tracing_mark_write: E|27550
55132           <...>-27550 (-----) [004] ...1 82316.089359: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
55133          <idle>-0     (-----) [005] .n.1 82316.089448: cpu_idle: state=4294967295 cpu_id=5
55134           <...>-27550 (-----) [004] ...1 82316.089450: tracing_mark_write: E|27550
55135           <...>-27550 (-----) [004] ...1 82316.089455: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
55136          <idle>-0     (-----) [005] d..2 82316.089458: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27610 next_prio=110
55137           <...>-27550 (-----) [004] d..2 82316.089471: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55138          <idle>-0     (-----) [004] d..1 82316.089486: cpu_idle: state=0 cpu_id=4
55139           <...>-27610 (-----) [005] ...1 82316.089519: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
55140           <...>-27610 (-----) [005] ...1 82316.089531: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
55141           <...>-27610 (-----) [005] ...1 82316.089535: tracing_mark_write: E|27550
55142           <...>-27610 (-----) [005] .... 82316.089557: binder_transaction: transaction=1569635 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
55143           <...>-27610 (-----) [005] .... 82316.089560: binder_transaction_alloc_buf: transaction=1569635 data_size=48 offsets_size=0
55144           <...>-27610 (-----) [005] ...2 82316.089563: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
55145           <...>-27610 (-----) [005] d..4 82316.089566: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
55146           <...>-27610 (-----) [005] dn.5 82316.089578: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
55147           <...>-27610 (-----) [005] d..2 82316.089585: sched_switch: prev_comm=id.nn.benchmark prev_pid=27610 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
55148<...>-770 ( 770) [005] .... 82316.089595: binder_transaction_received: transaction=1569635
55149<...>-770 ( 770) [005] ...1 82316.089618: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
55150<...>-770 ( 770) [005] d..2 82316.089692: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
55151          <idle>-0     (-----) [000] dnh2 82316.089731: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
55152          <idle>-0     (-----) [000] .n.1 82316.089737: cpu_idle: state=4294967295 cpu_id=0
55153<...>-770 ( 770) [005] ...1 82316.089742: tracing_mark_write: E|770
55154          <idle>-0     (-----) [000] d..2 82316.089749: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
55155<...>-770 ( 770) [005] .... 82316.089750: binder_transaction: transaction=1569636 dest_node=0 dest_proc=27550 dest_thread=27610 reply=1 flags=0x0 code=0x0
55156<...>-770 ( 770) [005] .... 82316.089753: binder_transaction_alloc_buf: transaction=1569636 data_size=168 offsets_size=32
55157<...>-770 ( 770) [005] .... 82316.089760: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
55158<...>-770 ( 770) [005] d..2 82316.089796: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27610 next_prio=110
55159           <...>-27610 (-----) [005] .... 82316.089807: binder_transaction_received: transaction=1569636
55160<...>-581 ( 571) [000] d..2 82316.089836: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55161          <idle>-0     (-----) [000] d..1 82316.089850: cpu_idle: state=0 cpu_id=0
55162           <...>-27610 (-----) [005] ...1 82316.089876: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
55163           <...>-27610 (-----) [005] ...1 82316.089882: tracing_mark_write: E|27550
55164           <...>-27610 (-----) [005] .... 82316.089896: binder_transaction: transaction=1569637 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
55165           <...>-27610 (-----) [005] .... 82316.089898: binder_transaction_alloc_buf: transaction=1569637 data_size=48 offsets_size=0
55166           <...>-27610 (-----) [005] ...2 82316.089901: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
55167           <...>-27610 (-----) [005] d..4 82316.089903: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
55168           <...>-27610 (-----) [005] dn.5 82316.089913: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
55169           <...>-27610 (-----) [005] d..2 82316.089920: sched_switch: prev_comm=id.nn.benchmark prev_pid=27610 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
55170<...>-770 ( 770) [005] .... 82316.089928: binder_transaction_received: transaction=1569637
55171<...>-770 ( 770) [005] ...1 82316.089946: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
55172<...>-770 ( 770) [005] d..2 82316.090004: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
55173          <idle>-0     (-----) [000] dnh2 82316.090029: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
55174          <idle>-0     (-----) [000] .n.1 82316.090036: cpu_idle: state=4294967295 cpu_id=0
55175<...>-770 ( 770) [005] ...1 82316.090039: tracing_mark_write: E|770
55176<...>-770 ( 770) [005] .... 82316.090046: binder_transaction: transaction=1569638 dest_node=0 dest_proc=27550 dest_thread=27610 reply=1 flags=0x0 code=0x0
55177          <idle>-0     (-----) [000] d..2 82316.090047: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
55178<...>-770 ( 770) [005] .... 82316.090049: binder_transaction_alloc_buf: transaction=1569638 data_size=168 offsets_size=32
55179<...>-770 ( 770) [005] .... 82316.090055: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
55180<...>-770 ( 770) [005] d..2 82316.090090: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27610 next_prio=110
55181           <...>-27610 (-----) [005] .... 82316.090101: binder_transaction_received: transaction=1569638
55182<...>-581 ( 571) [000] d..2 82316.090105: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55183          <idle>-0     (-----) [000] d..1 82316.090117: cpu_idle: state=0 cpu_id=0
55184           <...>-27610 (-----) [005] ...1 82316.090379: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
55185           <...>-27610 (-----) [005] ...1 82316.090389: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
55186           <...>-27610 (-----) [005] ...1 82316.090395: tracing_mark_write: E|27550
55187           <...>-27610 (-----) [005] .... 82316.090455: binder_transaction: transaction=1569639 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
55188           <...>-27610 (-----) [005] .... 82316.090458: binder_transaction_alloc_buf: transaction=1569639 data_size=556 offsets_size=104
55189           <...>-27610 (-----) [005] ...2 82316.090473: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
55190           <...>-27610 (-----) [005] d..4 82316.090476: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55191           <...>-27610 (-----) [005] dn.5 82316.090487: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55192           <...>-27610 (-----) [005] d..2 82316.090494: sched_switch: prev_comm=id.nn.benchmark prev_pid=27610 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55193<...>-5340 ( 788) [005] .... 82316.090503: binder_transaction_received: transaction=1569639
55194<...>-5340 ( 788) [005] ...1 82316.090546: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
55195          <idle>-0     (-----) [000] d.h5 82316.090577: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
55196          <idle>-0     (-----) [001] ...1 82316.090583: cpu_idle: state=4294967295 cpu_id=1
55197          <idle>-0     (-----) [001] d..1 82316.090587: cpu_idle: state=0 cpu_id=1
55198<...>-5340 ( 788) [005] d..2 82316.090588: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
55199          <idle>-0     (-----) [000] d.h6 82316.090598: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
55200          <idle>-0     (-----) [002] .n.1 82316.090603: cpu_idle: state=4294967295 cpu_id=2
55201          <idle>-0     (-----) [000] d.h5 82316.090604: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
55202          <idle>-0     (-----) [000] dnh6 82316.090615: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
55203          <idle>-0     (-----) [002] d..2 82316.090618: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
55204          <idle>-0     (-----) [000] .n.1 82316.090630: cpu_idle: state=4294967295 cpu_id=0
55205  crtc_event:111-322   (  322) [002] d.h3 82316.090630: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
55206<...>-5340 ( 788) [005] d..2 82316.090631: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27610 next_prio=110
55207          <idle>-0     (-----) [000] d..2 82316.090641: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
55208           <...>-27610 (-----) [005] d..2 82316.090654: sched_switch: prev_comm=id.nn.benchmark prev_pid=27610 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
55209  crtc_event:111-322   (  322) [002] d..2 82316.090658: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
55210          <idle>-0     (-----) [005] d..1 82316.090672: cpu_idle: state=0 cpu_id=5
55211<...>-87 ( 87) [002] d..2 82316.090698: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55212          <idle>-0     (-----) [002] d.h5 82316.090716: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55213          <idle>-0     (-----) [002] dnh6 82316.090731: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55214          <idle>-0     (-----) [002] d..2 82316.090744: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
55215<...>-86 ( 86) [002] d..2 82316.090776: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55216 crtc_commit:111-321   (  321) [000] d..2 82316.090783: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
55217          <idle>-0     (-----) [000] d..1 82316.090793: cpu_idle: state=0 cpu_id=0
55218          <idle>-0     (-----) [002] d.h5 82316.090797: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55219          <idle>-0     (-----) [005] dnh2 82316.090818: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55220          <idle>-0     (-----) [005] .n.1 82316.090823: cpu_idle: state=4294967295 cpu_id=5
55221          <idle>-0     (-----) [005] d..2 82316.090831: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55222          <idle>-0     (-----) [002] d..1 82316.090843: cpu_idle: state=0 cpu_id=2
55223<...>-5340 ( 788) [005] d..1 82316.090885: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55224          <idle>-0     (-----) [000] dnh2 82316.090913: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55225          <idle>-0     (-----) [000] .n.1 82316.090920: cpu_idle: state=4294967295 cpu_id=0
55226          <idle>-0     (-----) [000] d..2 82316.090928: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
55227 neuralnetworks@-13088 (  788) [000] d..2 82316.090976: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55228          <idle>-0     (-----) [000] d..1 82316.090986: cpu_idle: state=0 cpu_id=0
55229<...>-5340 ( 788) [005] d..2 82316.091032: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
55230          <idle>-0     (-----) [002] dnh2 82316.091054: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
55231<...>-5340 ( 788) [005] d..2 82316.091058: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
55232          <idle>-0     (-----) [002] .n.1 82316.091060: cpu_idle: state=4294967295 cpu_id=2
55233          <idle>-0     (-----) [002] d..2 82316.091072: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
55234          <idle>-0     (-----) [005] d..1 82316.091072: cpu_idle: state=0 cpu_id=5
55235<...>-87 ( 87) [002] d..2 82316.091108: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55236          <idle>-0     (-----) [002] d.h5 82316.091125: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55237          <idle>-0     (-----) [002] dnh6 82316.091136: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55238          <idle>-0     (-----) [002] d..2 82316.091148: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
55239<...>-86 ( 86) [002] d..2 82316.091178: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55240          <idle>-0     (-----) [002] d..1 82316.091191: cpu_idle: state=0 cpu_id=2
55241          <idle>-0     (-----) [005] ...1 82316.091399: cpu_idle: state=4294967295 cpu_id=5
55242          <idle>-0     (-----) [005] d..1 82316.091403: cpu_idle: state=0 cpu_id=5
55243          <idle>-0     (-----) [003] d.s2 82316.091805: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
55244          <idle>-0     (-----) [003] dns3 82316.091869: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
55245          <idle>-0     (-----) [003] .n.1 82316.091890: cpu_idle: state=4294967295 cpu_id=3
55246          <idle>-0     (-----) [000] d.H3 82316.091893: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
55247          <idle>-0     (-----) [003] d..2 82316.091907: 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
55248     rcu_preempt-7     (    7) [003] d..2 82316.091914: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
55249          <idle>-0     (-----) [000] dnH4 82316.091925: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
55250          <idle>-0     (-----) [000] dns3 82316.091934: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
55251          <idle>-0     (-----) [000] dns4 82316.091947: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
55252     rcu_preempt-7     (    7) [003] d..3 82316.091953: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
55253          <idle>-0     (-----) [002] .n.1 82316.091953: cpu_idle: state=4294967295 cpu_id=2
55254          <idle>-0     (-----) [002] d..2 82316.091965: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
55255          <idle>-0     (-----) [000] .n.1 82316.091969: cpu_idle: state=4294967295 cpu_id=0
55256     rcu_preempt-7     (    7) [003] d..2 82316.091969: 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
55257         rcuop/2-29    (   29) [003] d..2 82316.091975: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
55258          <idle>-0     (-----) [000] d..2 82316.091977: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
55259  crtc_event:111-322   (  322) [002] d..2 82316.092000: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55260          <idle>-0     (-----) [002] d..1 82316.092010: cpu_idle: state=0 cpu_id=2
55261         sugov:0-576   (  576) [000] .... 82316.092013: clk_set_rate: pwrcl_clk 902400000
55262          <idle>-0     (-----) [002] .n.1 82316.092013: cpu_idle: state=4294967295 cpu_id=2
55263         rcuop/2-29    (   29) [003] d..3 82316.092015: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
55264          <idle>-0     (-----) [002] d..2 82316.092028: 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
55265         sugov:0-576   (  576) [000] .... 82316.092035: clk_set_rate: cpu3_pwrcl_clk 825600000
55266         rcuop/2-29    (   29) [003] d..2 82316.092038: 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
55267         sugov:0-576   (  576) [000] .... 82316.092045: clk_set_rate: cpu2_pwrcl_clk 825600000
55268          <idle>-0     (-----) [003] d..1 82316.092050: cpu_idle: state=0 cpu_id=3
55269         sugov:0-576   (  576) [000] .... 82316.092053: clk_set_rate: cpu1_pwrcl_clk 825600000
55270         rcuop/3-37    (   37) [002] d..2 82316.092058: 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
55271         sugov:0-576   (  576) [000] .... 82316.092062: clk_set_rate: cpu0_pwrcl_clk 902400000
55272          <idle>-0     (-----) [002] d..1 82316.092068: cpu_idle: state=0 cpu_id=2
55273         sugov:0-576   (  576) [000] .... 82316.092072: cpu_frequency: state=902400 cpu_id=0
55274         sugov:0-576   (  576) [000] .... 82316.092096: cpu_frequency: state=902400 cpu_id=1
55275         sugov:0-576   (  576) [000] .... 82316.092101: cpu_frequency: state=902400 cpu_id=2
55276         sugov:0-576   (  576) [000] .... 82316.092105: cpu_frequency: state=902400 cpu_id=3
55277         sugov:0-576   (  576) [000] d..2 82316.092133: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55278          <idle>-0     (-----) [000] d..1 82316.092143: cpu_idle: state=0 cpu_id=0
55279          <idle>-0     (-----) [002] d.h4 82316.092888: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55280          <idle>-0     (-----) [005] dnh2 82316.092910: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55281          <idle>-0     (-----) [005] .n.1 82316.092914: cpu_idle: state=4294967295 cpu_id=5
55282          <idle>-0     (-----) [000] d.h5 82316.092914: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
55283          <idle>-0     (-----) [005] d..2 82316.092922: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55284          <idle>-0     (-----) [000] dnh6 82316.092926: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
55285          <idle>-0     (-----) [002] ...1 82316.092927: cpu_idle: state=4294967295 cpu_id=2
55286          <idle>-0     (-----) [002] d..1 82316.092935: cpu_idle: state=0 cpu_id=2
55287          <idle>-0     (-----) [000] .n.1 82316.092938: cpu_idle: state=4294967295 cpu_id=0
55288          <idle>-0     (-----) [000] d..2 82316.092945: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
55289<...>-5340 ( 788) [005] d..1 82316.092972: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55290 crtc_commit:111-321   (  321) [000] d.h1 82316.092996: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55291 crtc_commit:111-321   (  321) [000] d..2 82316.093044: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
55292<...>-5340 ( 788) [005] ...1 82316.093066: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
55293<...>-5340 ( 788) [005] ...1 82316.093071: tracing_mark_write: E|788
55294<...>-5340 ( 788) [005] .... 82316.093086: binder_transaction: transaction=1569642 dest_node=1569640 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
55295 neuralnetworks@-13088 (  788) [000] d..2 82316.093087: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55296<...>-5340 ( 788) [005] .... 82316.093089: binder_transaction_alloc_buf: transaction=1569642 data_size=60 offsets_size=0
55297<...>-5340 ( 788) [005] d..4 82316.093092: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
55298          <idle>-0     (-----) [000] d..1 82316.093097: cpu_idle: state=0 cpu_id=0
55299<...>-5340 ( 788) [005] d..5 82316.093105: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
55300          <idle>-0     (-----) [004] .n.1 82316.093111: cpu_idle: state=4294967295 cpu_id=4
55301          <idle>-0     (-----) [004] d..2 82316.093120: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
55302           <...>-27571 (-----) [004] .... 82316.093125: binder_transaction_received: transaction=1569642
55303<...>-5340 ( 788) [005] ...1 82316.093127: tracing_mark_write: E|788
55304<...>-5340 ( 788) [005] .... 82316.093133: binder_transaction: transaction=1569643 dest_node=0 dest_proc=27550 dest_thread=27610 reply=1 flags=0x0 code=0x0
55305<...>-5340 ( 788) [005] .... 82316.093135: binder_transaction_alloc_buf: transaction=1569643 data_size=8 offsets_size=0
55306<...>-5340 ( 788) [005] d..2 82316.093137: sched_waking: comm=id.nn.benchmark pid=27610 prio=110 target_cpu=005
55307           <...>-27571 (-----) [004] ...1 82316.093143: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
55308<...>-5340 ( 788) [005] d..3 82316.093145: sched_wakeup: comm=id.nn.benchmark pid=27610 prio=110 target_cpu=005
55309<...>-5340 ( 788) [005] .... 82316.093147: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
55310           <...>-27571 (-----) [004] ...1 82316.093149: tracing_mark_write: E|27550
55311           <...>-27571 (-----) [004] d..2 82316.093177: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55312          <idle>-0     (-----) [004] d..1 82316.093185: cpu_idle: state=0 cpu_id=4
55313<...>-5340 ( 788) [005] d..2 82316.093188: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27610 next_prio=110
55314           <...>-27610 (-----) [005] .... 82316.093197: binder_transaction_received: transaction=1569643
55315          <idle>-0     (-----) [000] d.h5 82316.093200: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
55316          <idle>-0     (-----) [000] d.h6 82316.093215: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
55317          <idle>-0     (-----) [002] .n.1 82316.093222: cpu_idle: state=4294967295 cpu_id=2
55318          <idle>-0     (-----) [002] d..2 82316.093231: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
55319          <idle>-0     (-----) [000] ...1 82316.093232: cpu_idle: state=4294967295 cpu_id=0
55320           <...>-27610 (-----) [005] ...1 82316.093233: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
55321          <idle>-0     (-----) [000] d..1 82316.093237: cpu_idle: state=0 cpu_id=0
55322           <...>-27610 (-----) [005] ...1 82316.093239: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
55323  crtc_event:111-322   (  322) [002] d..2 82316.093258: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55324           <...>-27610 (-----) [005] ...1 82316.093265: tracing_mark_write: E|27550
55325          <idle>-0     (-----) [002] d..1 82316.093269: cpu_idle: state=0 cpu_id=2
55326           <...>-27610 (-----) [005] ...1 82316.093269: tracing_mark_write: E|27550
55327           <...>-27610 (-----) [005] ...1 82316.093273: tracing_mark_write: E|27550
55328           <...>-27610 (-----) [005] ...1 82316.093458: tracing_mark_write: E|27550
55329           <...>-27610 (-----) [005] d..1 82316.093471: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55330           <...>-27610 (-----) [005] d..2 82316.093488: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55331          <idle>-0     (-----) [004] .n.1 82316.093492: cpu_idle: state=4294967295 cpu_id=4
55332          <idle>-0     (-----) [004] d..2 82316.093499: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
55333           <...>-27550 (-----) [004] d..2 82316.093519: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55334          <idle>-0     (-----) [004] d..1 82316.093528: cpu_idle: state=0 cpu_id=4
55335           <...>-27610 (-----) [005] d..1 82316.093575: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55336           <...>-27610 (-----) [005] d..2 82316.093585: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55337          <idle>-0     (-----) [004] .n.1 82316.093590: cpu_idle: state=4294967295 cpu_id=4
55338          <idle>-0     (-----) [004] d..2 82316.093598: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
55339           <...>-27610 (-----) [005] d..2 82316.093624: sched_switch: prev_comm=id.nn.benchmark prev_pid=27610 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
55340           <...>-27550 (-----) [004] ...1 82316.093630: tracing_mark_write: E|27550
55341           <...>-27550 (-----) [004] ...1 82316.093635: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
55342           <...>-27550 (-----) [004] ...1 82316.093641: tracing_mark_write: E|27550
55343           <...>-27550 (-----) [004] ...1 82316.093644: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
55344          <idle>-0     (-----) [005] d..1 82316.093645: cpu_idle: state=0 cpu_id=5
55345           <...>-27550 (-----) [004] ...1 82316.093648: tracing_mark_write: E|27550
55346           <...>-27550 (-----) [004] ...1 82316.093652: tracing_mark_write: E|27550
55347           <...>-27550 (-----) [004] ...1 82316.093765: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
55348           <...>-27550 (-----) [004] ...1 82316.093822: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
55349           <...>-27550 (-----) [004] ...1 82316.093827: tracing_mark_write: E|27550
55350           <...>-27550 (-----) [004] ...1 82316.093830: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
55351           <...>-27550 (-----) [004] ...1 82316.093836: tracing_mark_write: E|27550
55352           <...>-27550 (-----) [004] ...1 82316.093839: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
55353           <...>-27550 (-----) [004] ...1 82316.093843: tracing_mark_write: E|27550
55354           <...>-27550 (-----) [004] ...1 82316.093846: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
55355          <idle>-0     (-----) [005] .n.1 82316.093942: cpu_idle: state=4294967295 cpu_id=5
55356           <...>-27550 (-----) [004] ...1 82316.093943: tracing_mark_write: E|27550
55357           <...>-27550 (-----) [004] ...1 82316.093947: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
55358          <idle>-0     (-----) [005] d..2 82316.093951: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27611 next_prio=110
55359           <...>-27550 (-----) [004] d..2 82316.093963: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55360          <idle>-0     (-----) [004] d..1 82316.093978: cpu_idle: state=0 cpu_id=4
55361           <...>-27611 (-----) [005] ...1 82316.094012: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
55362           <...>-27611 (-----) [005] ...1 82316.094026: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
55363           <...>-27611 (-----) [005] ...1 82316.094030: tracing_mark_write: E|27550
55364           <...>-27611 (-----) [005] .... 82316.094051: binder_transaction: transaction=1569644 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
55365           <...>-27611 (-----) [005] .... 82316.094055: binder_transaction_alloc_buf: transaction=1569644 data_size=48 offsets_size=0
55366           <...>-27611 (-----) [005] ...2 82316.094058: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
55367           <...>-27611 (-----) [005] d..4 82316.094060: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
55368           <...>-27611 (-----) [005] dn.5 82316.094072: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
55369           <...>-27611 (-----) [005] d..2 82316.094078: sched_switch: prev_comm=id.nn.benchmark prev_pid=27611 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
55370<...>-770 ( 770) [005] .... 82316.094090: binder_transaction_received: transaction=1569644
55371<...>-770 ( 770) [005] ...1 82316.094113: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
55372<...>-770 ( 770) [005] d..2 82316.094182: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
55373          <idle>-0     (-----) [000] dnh2 82316.094210: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
55374          <idle>-0     (-----) [000] .n.1 82316.094215: cpu_idle: state=4294967295 cpu_id=0
55375          <idle>-0     (-----) [000] d..2 82316.094223: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
55376<...>-770 ( 770) [005] ...1 82316.094223: tracing_mark_write: E|770
55377<...>-770 ( 770) [005] .... 82316.094231: binder_transaction: transaction=1569645 dest_node=0 dest_proc=27550 dest_thread=27611 reply=1 flags=0x0 code=0x0
55378<...>-770 ( 770) [005] .... 82316.094233: binder_transaction_alloc_buf: transaction=1569645 data_size=168 offsets_size=32
55379<...>-770 ( 770) [005] .... 82316.094240: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
55380<...>-770 ( 770) [005] d..2 82316.094277: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27611 next_prio=110
55381           <...>-27611 (-----) [005] .... 82316.094287: binder_transaction_received: transaction=1569645
55382<...>-581 ( 571) [000] d..2 82316.094294: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55383          <idle>-0     (-----) [000] d..1 82316.094304: cpu_idle: state=0 cpu_id=0
55384           <...>-27611 (-----) [005] ...1 82316.094356: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
55385           <...>-27611 (-----) [005] ...1 82316.094361: tracing_mark_write: E|27550
55386           <...>-27611 (-----) [005] .... 82316.094375: binder_transaction: transaction=1569646 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
55387           <...>-27611 (-----) [005] .... 82316.094378: binder_transaction_alloc_buf: transaction=1569646 data_size=48 offsets_size=0
55388           <...>-27611 (-----) [005] ...2 82316.094380: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
55389           <...>-27611 (-----) [005] d..4 82316.094382: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
55390           <...>-27611 (-----) [005] dn.5 82316.094392: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
55391           <...>-27611 (-----) [005] d..2 82316.094399: sched_switch: prev_comm=id.nn.benchmark prev_pid=27611 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
55392<...>-770 ( 770) [005] .... 82316.094407: binder_transaction_received: transaction=1569646
55393<...>-770 ( 770) [005] ...1 82316.094424: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
55394<...>-770 ( 770) [005] d..2 82316.094479: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
55395          <idle>-0     (-----) [000] dnh2 82316.094502: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
55396          <idle>-0     (-----) [000] .n.1 82316.094508: cpu_idle: state=4294967295 cpu_id=0
55397<...>-770 ( 770) [005] ...1 82316.094513: tracing_mark_write: E|770
55398          <idle>-0     (-----) [000] d..2 82316.094515: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
55399<...>-770 ( 770) [005] .... 82316.094520: binder_transaction: transaction=1569647 dest_node=0 dest_proc=27550 dest_thread=27611 reply=1 flags=0x0 code=0x0
55400<...>-770 ( 770) [005] .... 82316.094522: binder_transaction_alloc_buf: transaction=1569647 data_size=168 offsets_size=32
55401<...>-770 ( 770) [005] .... 82316.094528: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
55402<...>-770 ( 770) [005] d..2 82316.094562: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27611 next_prio=110
55403<...>-581 ( 571) [000] d..2 82316.094569: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55404           <...>-27611 (-----) [005] .... 82316.094572: binder_transaction_received: transaction=1569647
55405          <idle>-0     (-----) [000] d..1 82316.094578: cpu_idle: state=0 cpu_id=0
55406          <idle>-0     (-----) [002] ...1 82316.094691: cpu_idle: state=4294967295 cpu_id=2
55407          <idle>-0     (-----) [002] d..1 82316.094695: cpu_idle: state=0 cpu_id=2
55408           <...>-27611 (-----) [005] ...1 82316.094842: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
55409           <...>-27611 (-----) [005] ...1 82316.094852: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
55410           <...>-27611 (-----) [005] ...1 82316.094857: tracing_mark_write: E|27550
55411           <...>-27611 (-----) [005] .... 82316.094915: binder_transaction: transaction=1569648 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
55412           <...>-27611 (-----) [005] .... 82316.094918: binder_transaction_alloc_buf: transaction=1569648 data_size=556 offsets_size=104
55413           <...>-27611 (-----) [005] ...2 82316.094933: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
55414           <...>-27611 (-----) [005] d..4 82316.094935: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55415           <...>-27611 (-----) [005] dn.5 82316.094947: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55416           <...>-27611 (-----) [005] d..2 82316.094954: sched_switch: prev_comm=id.nn.benchmark prev_pid=27611 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55417<...>-5340 ( 788) [005] .... 82316.094963: binder_transaction_received: transaction=1569648
55418<...>-5340 ( 788) [005] ...1 82316.095007: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
55419<...>-5340 ( 788) [005] d..2 82316.095049: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
55420          <idle>-0     (-----) [003] d.h2 82316.095056: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
55421          <idle>-0     (-----) [003] dnh3 82316.095072: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
55422          <idle>-0     (-----) [003] .n.1 82316.095080: cpu_idle: state=4294967295 cpu_id=3
55423<...>-5340 ( 788) [005] d..2 82316.095088: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27611 next_prio=110
55424          <idle>-0     (-----) [003] d..2 82316.095090: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
55425          <idle>-0     (-----) [000] dnh2 82316.095090: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
55426          <idle>-0     (-----) [000] .n.1 82316.095095: cpu_idle: state=4294967295 cpu_id=0
55427          <idle>-0     (-----) [000] d..2 82316.095103: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
55428           <...>-27611 (-----) [005] d..2 82316.095110: sched_switch: prev_comm=id.nn.benchmark prev_pid=27611 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
55429<...>-87 ( 87) [000] d.s3 82316.095135: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
55430        DispSync-8879  ( 8858) [003] d..1 82316.095146: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
55431          <idle>-0     (-----) [005] d..1 82316.095156: cpu_idle: state=0 cpu_id=5
55432        DispSync-8879  ( 8858) [003] d..2 82316.095169: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
55433<...>-87 ( 87) [000] d.s4 82316.095174: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
55434          <idle>-0     (-----) [001] .n.1 82316.095174: cpu_idle: state=4294967295 cpu_id=1
55435          <idle>-0     (-----) [001] d..2 82316.095187: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
55436        DispSync-8879  ( 8858) [003] d..2 82316.095193: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
55437<...>-87 ( 87) [000] d..2 82316.095226: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55438<...>-8 ( 8) [003] d..2 82316.095227: 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
55439          <idle>-0     (-----) [002] d.h4 82316.095227: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55440          <idle>-0     (-----) [003] d..1 82316.095238: cpu_idle: state=0 cpu_id=3
55441          <idle>-0     (-----) [000] d..1 82316.095241: cpu_idle: state=0 cpu_id=0
55442  appEventThread-8881  ( 8858) [001] d..3 82316.095252: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
55443          <idle>-0     (-----) [002] d.h5 82316.095264: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
55444          <idle>-0     (-----) [000] .n.1 82316.095271: cpu_idle: state=4294967295 cpu_id=0
55445  appEventThread-8881  ( 8858) [001] d..4 82316.095276: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
55446          <idle>-0     (-----) [000] d..2 82316.095282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
55447          <idle>-0     (-----) [002] .n.1 82316.095285: cpu_idle: state=4294967295 cpu_id=2
55448          <idle>-0     (-----) [002] dnh4 82316.095309: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55449  appEventThread-8881  ( 8858) [001] d..2 82316.095322: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55450          <idle>-0     (-----) [005] dnh2 82316.095328: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55451          <idle>-0     (-----) [005] .n.1 82316.095332: cpu_idle: state=4294967295 cpu_id=5
55452          <idle>-0     (-----) [001] d..1 82316.095338: cpu_idle: state=0 cpu_id=1
55453          <idle>-0     (-----) [005] d..2 82316.095340: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55454          <idle>-0     (-----) [002] d..2 82316.095349: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
55455<...>-86 ( 86) [000] d..2 82316.095356: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55456          <idle>-0     (-----) [000] d..1 82316.095368: cpu_idle: state=0 cpu_id=0
55457<...>-5340 ( 788) [005] d..1 82316.095392: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55458<...>-9105 ( 9105) [002] dnh1 82316.095432: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
55459<...>-9105 ( 9105) [002] d..2 82316.095444: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
55460 neuralnetworks@-13088 (  788) [002] d..2 82316.095483: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
55461<...>-5340 ( 788) [005] d..2 82316.095551: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
55462          <idle>-0     (-----) [000] dnh2 82316.095572: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
55463<...>-5340 ( 788) [005] d..2 82316.095578: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
55464          <idle>-0     (-----) [000] .n.1 82316.095579: cpu_idle: state=4294967295 cpu_id=0
55465          <idle>-0     (-----) [000] d..2 82316.095589: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
55466          <idle>-0     (-----) [005] d..1 82316.095592: cpu_idle: state=0 cpu_id=5
55467<...>-87 ( 87) [000] d..2 82316.095624: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55468<...>-9105 ( 9105) [002] d.h3 82316.095628: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
55469          <idle>-0     (-----) [000] d..1 82316.095635: cpu_idle: state=0 cpu_id=0
55470<...>-9105 ( 9105) [002] d.h4 82316.095646: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
55471          <idle>-0     (-----) [000] .n.1 82316.095652: cpu_idle: state=4294967295 cpu_id=0
55472          <idle>-0     (-----) [000] d..2 82316.095663: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
55473<...>-86 ( 86) [000] d..2 82316.095693: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55474          <idle>-0     (-----) [000] d..1 82316.095704: cpu_idle: state=0 cpu_id=0
55475<...>-9105 ( 9105) [002] .... 82316.095783: binder_transaction: transaction=1569651 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
55476<...>-9105 ( 9105) [002] .... 82316.095790: binder_transaction_alloc_buf: transaction=1569651 data_size=80 offsets_size=0
55477<...>-9105 ( 9105) [002] d..4 82316.095796: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
55478<...>-9105 ( 9105) [002] d..5 82316.095826: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
55479          <idle>-0     (-----) [000] .n.1 82316.095831: cpu_idle: state=4294967295 cpu_id=0
55480          <idle>-0     (-----) [000] d..2 82316.095842: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
55481<...>-13083 ( 8858) [000] .... 82316.095851: binder_transaction_received: transaction=1569651
55482<...>-9105 ( 9105) [002] d..3 82316.095862: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
55483<...>-9105 ( 9105) [002] d..4 82316.095880: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
55484          <idle>-0     (-----) [001] .n.1 82316.095886: cpu_idle: state=4294967295 cpu_id=1
55485<...>-13083 ( 8858) [000] d..1 82316.095892: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
55486          <idle>-0     (-----) [001] d..2 82316.095898: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
55487          <idle>-0     (-----) [005] ...1 82316.095925: cpu_idle: state=4294967295 cpu_id=5
55488<...>-13083 ( 8858) [000] d..2 82316.095928: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
55489          <idle>-0     (-----) [005] d..1 82316.095928: cpu_idle: state=0 cpu_id=5
55490          <idle>-0     (-----) [003] .n.1 82316.095933: cpu_idle: state=4294967295 cpu_id=3
55491          <idle>-0     (-----) [003] d..2 82316.095941: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
55492    RenderThread-9436  ( 9105) [001] d..2 82316.095954: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55493          <idle>-0     (-----) [001] d..1 82316.095967: cpu_idle: state=0 cpu_id=1
55494<...>-13083 ( 8858) [000] d..2 82316.095972: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55495          <idle>-0     (-----) [000] d..1 82316.095989: cpu_idle: state=0 cpu_id=0
55496  appEventThread-8881  ( 8858) [003] d..2 82316.095995: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
55497<...>-9105 ( 9105) [002] d..3 82316.096000: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
55498          <idle>-0     (-----) [003] d..1 82316.096004: cpu_idle: state=0 cpu_id=3
55499<...>-9105 ( 9105) [002] d..4 82316.096017: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
55500          <idle>-0     (-----) [001] .n.1 82316.096023: cpu_idle: state=4294967295 cpu_id=1
55501          <idle>-0     (-----) [001] d..2 82316.096035: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
55502<...>-9105 ( 9105) [002] d..2 82316.096051: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55503          <idle>-0     (-----) [002] d..1 82316.096071: cpu_idle: state=0 cpu_id=2
55504    RenderThread-9436  ( 9105) [001] d..1 82316.096158: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
55505    RenderThread-9436  ( 9105) [001] d..2 82316.096177: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
55506          <idle>-0     (-----) [002] .n.1 82316.096184: cpu_idle: state=4294967295 cpu_id=2
55507          <idle>-0     (-----) [002] d..2 82316.096196: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
55508    RenderThread-9436  ( 9105) [001] .... 82316.096243: binder_transaction: transaction=1569652 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
55509    RenderThread-9436  ( 9105) [001] .... 82316.096248: binder_transaction_alloc_buf: transaction=1569652 data_size=104 offsets_size=0
55510    RenderThread-9436  ( 9105) [001] d..4 82316.096253: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
55511    RenderThread-9436  ( 9105) [001] dn.5 82316.096272: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
55512<...>-9105 ( 9105) [002] d..2 82316.096273: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55513    RenderThread-9436  ( 9105) [001] d..2 82316.096281: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
55514          <idle>-0     (-----) [002] d..1 82316.096288: cpu_idle: state=0 cpu_id=2
55515<...>-13083 ( 8858) [001] .... 82316.096290: binder_transaction_received: transaction=1569652
55516<...>-13083 ( 8858) [001] .... 82316.096365: binder_transaction: transaction=1569653 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
55517<...>-13083 ( 8858) [001] .... 82316.096369: binder_transaction_alloc_buf: transaction=1569653 data_size=52 offsets_size=8
55518<...>-13083 ( 8858) [001] d..2 82316.096418: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
55519    RenderThread-9436  ( 9105) [001] .... 82316.096427: binder_transaction_received: transaction=1569653
55520          <idle>-0     (-----) [000] ...1 82316.097174: cpu_idle: state=4294967295 cpu_id=0
55521          <idle>-0     (-----) [000] d..1 82316.097178: cpu_idle: state=0 cpu_id=0
55522          <idle>-0     (-----) [002] d.h4 82316.097261: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55523          <idle>-0     (-----) [005] dnh2 82316.097282: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55524          <idle>-0     (-----) [005] .n.1 82316.097285: cpu_idle: state=4294967295 cpu_id=5
55525          <idle>-0     (-----) [005] d..2 82316.097293: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55526          <idle>-0     (-----) [002] ...1 82316.097303: cpu_idle: state=4294967295 cpu_id=2
55527          <idle>-0     (-----) [002] d..1 82316.097308: cpu_idle: state=0 cpu_id=2
55528<...>-5340 ( 788) [005] d..1 82316.097345: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
55529          <idle>-0     (-----) [002] dnh2 82316.097367: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
55530          <idle>-0     (-----) [002] .n.1 82316.097376: cpu_idle: state=4294967295 cpu_id=2
55531          <idle>-0     (-----) [002] d..2 82316.097387: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
55532<...>-5340 ( 788) [005] ...1 82316.097437: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
55533<...>-5340 ( 788) [005] ...1 82316.097441: tracing_mark_write: E|788
55534    RenderThread-9436  ( 9105) [001] d..2 82316.097443: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
55535 neuralnetworks@-13088 (  788) [002] d..2 82316.097456: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55536<...>-5340 ( 788) [005] .... 82316.097457: binder_transaction: transaction=1569654 dest_node=1569649 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
55537          <idle>-0     (-----) [001] d..1 82316.097460: cpu_idle: state=0 cpu_id=1
55538<...>-5340 ( 788) [005] .... 82316.097460: binder_transaction_alloc_buf: transaction=1569654 data_size=60 offsets_size=0
55539<...>-5340 ( 788) [005] d..4 82316.097463: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
55540          <idle>-0     (-----) [002] d..1 82316.097470: cpu_idle: state=0 cpu_id=2
55541<...>-5340 ( 788) [005] d..5 82316.097477: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
55542          <idle>-0     (-----) [004] .n.1 82316.097482: cpu_idle: state=4294967295 cpu_id=4
55543          <idle>-0     (-----) [004] d..2 82316.097491: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
55544           <...>-27571 (-----) [004] .... 82316.097496: binder_transaction_received: transaction=1569654
55545          <idle>-0     (-----) [001] d.h2 82316.097498: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
55546<...>-5340 ( 788) [005] ...1 82316.097500: tracing_mark_write: E|788
55547<...>-5340 ( 788) [005] .... 82316.097506: binder_transaction: transaction=1569655 dest_node=0 dest_proc=27550 dest_thread=27611 reply=1 flags=0x0 code=0x0
55548<...>-5340 ( 788) [005] .... 82316.097508: binder_transaction_alloc_buf: transaction=1569655 data_size=8 offsets_size=0
55549          <idle>-0     (-----) [001] d.h3 82316.097508: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
55550<...>-5340 ( 788) [005] d..2 82316.097510: sched_waking: comm=id.nn.benchmark pid=27611 prio=110 target_cpu=005
55551          <idle>-0     (-----) [001] dnh3 82316.097513: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
55552           <...>-27571 (-----) [004] ...1 82316.097516: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
55553<...>-5340 ( 788) [005] d..3 82316.097517: sched_wakeup: comm=id.nn.benchmark pid=27611 prio=110 target_cpu=005
55554<...>-5340 ( 788) [005] .... 82316.097519: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
55555          <idle>-0     (-----) [001] .n.1 82316.097522: cpu_idle: state=4294967295 cpu_id=1
55556           <...>-27571 (-----) [004] ...1 82316.097522: tracing_mark_write: E|27550
55557          <idle>-0     (-----) [000] d.h3 82316.097533: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
55558          <idle>-0     (-----) [001] d..2 82316.097534: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
55559           <...>-27571 (-----) [004] d..2 82316.097551: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55560          <idle>-0     (-----) [000] d.h4 82316.097553: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
55561          <idle>-0     (-----) [004] d..1 82316.097559: cpu_idle: state=0 cpu_id=4
55562          <idle>-0     (-----) [003] .n.1 82316.097559: cpu_idle: state=4294967295 cpu_id=3
55563<...>-5340 ( 788) [005] d..2 82316.097561: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27611 next_prio=110
55564          <idle>-0     (-----) [003] d..2 82316.097566: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
55565          <idle>-0     (-----) [000] ...1 82316.097568: cpu_idle: state=4294967295 cpu_id=0
55566           <...>-27611 (-----) [005] .... 82316.097572: binder_transaction_received: transaction=1569655
55567          <idle>-0     (-----) [000] d..1 82316.097574: cpu_idle: state=0 cpu_id=0
55568           <...>-27611 (-----) [005] ...1 82316.097609: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
55569           <...>-27611 (-----) [005] ...1 82316.097615: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
55570 kgsl_worker_thr-258   (  258) [003] d..2 82316.097618: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
55571           <...>-27611 (-----) [005] ...1 82316.097642: tracing_mark_write: E|27550
55572           <...>-27611 (-----) [005] ...1 82316.097645: tracing_mark_write: E|27550
55573           <...>-27611 (-----) [005] ...1 82316.097649: tracing_mark_write: E|27550
55574 kgsl_worker_thr-258   (  258) [003] d..3 82316.097658: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
55575 kgsl_worker_thr-258   (  258) [003] d..2 82316.097678: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
55576  kworker/u16:15-1311  ( 1311) [003] d..2 82316.097724: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
55577    RenderThread-9436  ( 9105) [001] .... 82316.097729: binder_transaction: transaction=1569656 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
55578          <idle>-0     (-----) [003] d..1 82316.097733: cpu_idle: state=0 cpu_id=3
55579    RenderThread-9436  ( 9105) [001] .... 82316.097734: binder_transaction_alloc_buf: transaction=1569656 data_size=192 offsets_size=8
55580    RenderThread-9436  ( 9105) [001] d..4 82316.097765: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
55581    RenderThread-9436  ( 9105) [001] dn.5 82316.097785: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
55582    RenderThread-9436  ( 9105) [001] d..2 82316.097794: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
55583<...>-13083 ( 8858) [001] .... 82316.097802: binder_transaction_received: transaction=1569656
55584           <...>-27611 (-----) [005] ...1 82316.097837: tracing_mark_write: E|27550
55585           <...>-27611 (-----) [005] d..1 82316.097850: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55586           <...>-27611 (-----) [005] d..2 82316.097867: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55587          <idle>-0     (-----) [004] .n.1 82316.097871: cpu_idle: state=4294967295 cpu_id=4
55588          <idle>-0     (-----) [004] d..2 82316.097878: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
55589           <...>-27550 (-----) [004] d..2 82316.097897: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55590          <idle>-0     (-----) [004] d..1 82316.097906: cpu_idle: state=0 cpu_id=4
55591<...>-13083 ( 8858) [001] .... 82316.097947: binder_transaction: transaction=1569657 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
55592<...>-13083 ( 8858) [001] .... 82316.097951: binder_transaction_alloc_buf: transaction=1569657 data_size=68 offsets_size=0
55593           <...>-27611 (-----) [005] d..1 82316.097956: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55594           <...>-27611 (-----) [005] d..2 82316.097966: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55595          <idle>-0     (-----) [004] .n.1 82316.097971: cpu_idle: state=4294967295 cpu_id=4
55596          <idle>-0     (-----) [004] d..2 82316.097979: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
55597<...>-13083 ( 8858) [001] d..2 82316.097995: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
55598    RenderThread-9436  ( 9105) [001] .... 82316.098006: binder_transaction_received: transaction=1569657
55599           <...>-27611 (-----) [005] d..2 82316.098006: sched_switch: prev_comm=id.nn.benchmark prev_pid=27611 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
55600           <...>-27550 (-----) [004] ...1 82316.098014: tracing_mark_write: E|27550
55601           <...>-27550 (-----) [004] ...1 82316.098018: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
55602           <...>-27550 (-----) [004] ...1 82316.098024: tracing_mark_write: E|27550
55603          <idle>-0     (-----) [005] d..1 82316.098027: cpu_idle: state=0 cpu_id=5
55604           <...>-27550 (-----) [004] ...1 82316.098028: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
55605           <...>-27550 (-----) [004] ...1 82316.098032: tracing_mark_write: E|27550
55606           <...>-27550 (-----) [004] ...1 82316.098036: tracing_mark_write: E|27550
55607    RenderThread-9436  ( 9105) [001] d..2 82316.098088: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55608          <idle>-0     (-----) [001] d..1 82316.098106: cpu_idle: state=0 cpu_id=1
55609           <...>-27550 (-----) [004] ...1 82316.098148: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
55610           <...>-27550 (-----) [004] ...1 82316.098206: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
55611           <...>-27550 (-----) [004] ...1 82316.098210: tracing_mark_write: E|27550
55612           <...>-27550 (-----) [004] ...1 82316.098214: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
55613           <...>-27550 (-----) [004] ...1 82316.098220: tracing_mark_write: E|27550
55614           <...>-27550 (-----) [004] ...1 82316.098224: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
55615           <...>-27550 (-----) [004] ...1 82316.098228: tracing_mark_write: E|27550
55616           <...>-27550 (-----) [004] ...1 82316.098232: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
55617          <idle>-0     (-----) [005] .n.1 82316.098329: cpu_idle: state=4294967295 cpu_id=5
55618           <...>-27550 (-----) [004] ...1 82316.098330: tracing_mark_write: E|27550
55619           <...>-27550 (-----) [004] ...1 82316.098335: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
55620          <idle>-0     (-----) [005] d..2 82316.098338: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27612 next_prio=110
55621           <...>-27550 (-----) [004] d..2 82316.098351: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55622          <idle>-0     (-----) [004] d..1 82316.098366: cpu_idle: state=0 cpu_id=4
55623           <...>-27612 (-----) [005] ...1 82316.098399: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
55624           <...>-27612 (-----) [005] ...1 82316.098415: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
55625           <...>-27612 (-----) [005] ...1 82316.098419: tracing_mark_write: E|27550
55626          <idle>-0     (-----) [003] d.s2 82316.098468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
55627           <...>-27612 (-----) [005] d.s2 82316.098470: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
55628          <idle>-0     (-----) [003] dns3 82316.098485: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
55629          <idle>-0     (-----) [003] dnH3 82316.098495: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
55630           <...>-27612 (-----) [005] .... 82316.098496: binder_transaction: transaction=1569658 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
55631           <...>-27612 (-----) [005] .... 82316.098499: binder_transaction_alloc_buf: transaction=1569658 data_size=48 offsets_size=0
55632           <...>-27612 (-----) [005] ...2 82316.098503: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
55633          <idle>-0     (-----) [003] .n.1 82316.098504: cpu_idle: state=4294967295 cpu_id=3
55634           <...>-27612 (-----) [005] d..4 82316.098505: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
55635          <idle>-0     (-----) [003] d..2 82316.098512: 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
55636           <...>-27612 (-----) [005] dn.5 82316.098513: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
55637           <...>-27612 (-----) [005] d..2 82316.098519: sched_switch: prev_comm=id.nn.benchmark prev_pid=27612 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
55638     rcu_preempt-7     (    7) [003] d..2 82316.098524: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
55639<...>-770 ( 770) [005] .... 82316.098529: binder_transaction_received: transaction=1569658
55640     rcu_preempt-7     (    7) [003] d..3 82316.098542: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
55641<...>-770 ( 770) [005] ...1 82316.098556: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
55642     rcu_preempt-7     (    7) [003] d..2 82316.098557: 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
55643         rcuop/4-45    (   45) [003] d..2 82316.098563: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
55644         rcuop/4-45    (   45) [003] d..3 82316.098577: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
55645         rcuop/4-45    (   45) [003] d..2 82316.098587: 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
55646<...>-770 ( 770) [005] d..2 82316.098639: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
55647         rcuop/5-53    (   53) [003] d.h1 82316.098676: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
55648          <idle>-0     (-----) [000] ...1 82316.098689: cpu_idle: state=4294967295 cpu_id=0
55649          <idle>-0     (-----) [000] d..1 82316.098693: cpu_idle: state=0 cpu_id=0
55650<...>-770 ( 770) [005] ...1 82316.098694: tracing_mark_write: E|770
55651         rcuop/5-53    (   53) [003] d..2 82316.098696: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
55652<...>-770 ( 770) [005] .... 82316.098703: binder_transaction: transaction=1569659 dest_node=0 dest_proc=27550 dest_thread=27612 reply=1 flags=0x0 code=0x0
55653<...>-770 ( 770) [005] .... 82316.098705: binder_transaction_alloc_buf: transaction=1569659 data_size=168 offsets_size=32
55654<...>-770 ( 770) [005] .... 82316.098712: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
55655  kworker/u16:15-1311  ( 1311) [003] .... 82316.098735: clk_set_rate: l3_cluster0_vote_clk 300000000
55656<...>-770 ( 770) [005] d..2 82316.098749: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27612 next_prio=110
55657           <...>-27612 (-----) [005] .... 82316.098771: binder_transaction_received: transaction=1569659
55658          <idle>-0     (-----) [002] ...1 82316.098829: cpu_idle: state=4294967295 cpu_id=2
55659          <idle>-0     (-----) [002] d..1 82316.098835: cpu_idle: state=0 cpu_id=2
55660           <...>-27612 (-----) [005] ...1 82316.098852: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
55661           <...>-27612 (-----) [005] ...1 82316.098857: tracing_mark_write: E|27550
55662           <...>-27612 (-----) [005] .... 82316.098871: binder_transaction: transaction=1569660 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
55663           <...>-27612 (-----) [005] .... 82316.098874: binder_transaction_alloc_buf: transaction=1569660 data_size=48 offsets_size=0
55664           <...>-27612 (-----) [005] ...2 82316.098876: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
55665           <...>-27612 (-----) [005] d..4 82316.098879: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
55666           <...>-27612 (-----) [005] dn.5 82316.098888: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
55667           <...>-27612 (-----) [005] d..2 82316.098895: sched_switch: prev_comm=id.nn.benchmark prev_pid=27612 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
55668<...>-770 ( 770) [005] .... 82316.098903: binder_transaction_received: transaction=1569660
55669<...>-770 ( 770) [005] ...1 82316.098921: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
55670  kworker/u16:15-1311  ( 1311) [003] d..2 82316.098960: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
55671<...>-770 ( 770) [005] ...1 82316.099000: tracing_mark_write: E|770
55672          <idle>-0     (-----) [001] d.s3 82316.099008: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
55673<...>-770 ( 770) [005] .... 82316.099008: binder_transaction: transaction=1569661 dest_node=0 dest_proc=27550 dest_thread=27612 reply=1 flags=0x0 code=0x0
55674<...>-770 ( 770) [005] .... 82316.099010: binder_transaction_alloc_buf: transaction=1569661 data_size=168 offsets_size=32
55675<...>-770 ( 770) [005] .... 82316.099016: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
55676          <idle>-0     (-----) [001] d.s4 82316.099032: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
55677          <idle>-0     (-----) [001] dns4 82316.099037: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
55678          <idle>-0     (-----) [001] .n.1 82316.099045: cpu_idle: state=4294967295 cpu_id=1
55679<...>-770 ( 770) [005] d..2 82316.099051: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27612 next_prio=110
55680          <idle>-0     (-----) [001] d..2 82316.099059: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
55681           <...>-27612 (-----) [005] .... 82316.099061: binder_transaction_received: transaction=1569661
55682<...>-581 ( 571) [003] d..2 82316.099079: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
55683          <idle>-0     (-----) [003] d..1 82316.099092: cpu_idle: state=0 cpu_id=3
55684          <idle>-0     (-----) [003] d.h2 82316.099105: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
55685          <idle>-0     (-----) [003] dnh3 82316.099119: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
55686          <idle>-0     (-----) [003] .n.1 82316.099127: cpu_idle: state=4294967295 cpu_id=3
55687          <idle>-0     (-----) [003] d..2 82316.099134: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
55688  kworker/u16:15-1311  ( 1311) [001] d..2 82316.099144: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55689        DispSync-8879  ( 8858) [003] d..1 82316.099153: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
55690          <idle>-0     (-----) [001] d..1 82316.099158: cpu_idle: state=0 cpu_id=1
55691        DispSync-8879  ( 8858) [003] d..2 82316.099170: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
55692          <idle>-0     (-----) [002] .n.1 82316.099176: cpu_idle: state=4294967295 cpu_id=2
55693          <idle>-0     (-----) [002] d..2 82316.099186: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
55694        DispSync-8879  ( 8858) [003] d..2 82316.099203: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
55695          <idle>-0     (-----) [003] d..1 82316.099213: cpu_idle: state=0 cpu_id=3
55696   sfEventThread-8882  ( 8858) [002] d..3 82316.099229: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
55697   sfEventThread-8882  ( 8858) [002] d..4 82316.099250: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
55698          <idle>-0     (-----) [003] .n.1 82316.099256: cpu_idle: state=4294967295 cpu_id=3
55699          <idle>-0     (-----) [003] d..2 82316.099263: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
55700   sfEventThread-8882  ( 8858) [002] d..2 82316.099286: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55701          <idle>-0     (-----) [002] d..1 82316.099300: cpu_idle: state=0 cpu_id=2
55702           <...>-27612 (-----) [005] ...1 82316.099349: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
55703           <...>-27612 (-----) [005] ...1 82316.099358: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
55704           <...>-27612 (-----) [005] ...1 82316.099361: tracing_mark_write: E|27550
55705           <...>-27612 (-----) [005] .... 82316.099424: binder_transaction: transaction=1569662 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
55706           <...>-27612 (-----) [005] .... 82316.099427: binder_transaction_alloc_buf: transaction=1569662 data_size=556 offsets_size=104
55707           <...>-27612 (-----) [005] ...2 82316.099442: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
55708           <...>-27612 (-----) [005] d..4 82316.099444: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55709           <...>-27612 (-----) [005] dn.5 82316.099456: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55710           <...>-27612 (-----) [005] d..2 82316.099464: sched_switch: prev_comm=id.nn.benchmark prev_pid=27612 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55711<...>-5340 ( 788) [005] .... 82316.099474: binder_transaction_received: transaction=1569662
55712<...>-5340 ( 788) [005] ...1 82316.099522: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
55713<...>-5340 ( 788) [005] d..2 82316.099569: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
55714  surfaceflinger-8858  ( 8858) [003] d..1 82316.099596: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
55715<...>-5340 ( 788) [005] d..2 82316.099607: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27612 next_prio=110
55716  surfaceflinger-8858  ( 8858) [003] d..2 82316.099616: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
55717          <idle>-0     (-----) [002] .n.1 82316.099622: cpu_idle: state=4294967295 cpu_id=2
55718  surfaceflinger-8858  ( 8858) [003] d.h2 82316.099629: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
55719          <idle>-0     (-----) [002] d..2 82316.099632: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
55720           <...>-27612 (-----) [005] d..2 82316.099633: sched_switch: prev_comm=id.nn.benchmark prev_pid=27612 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
55721          <idle>-0     (-----) [005] d..1 82316.099651: cpu_idle: state=0 cpu_id=5
55722   sfEventThread-8882  ( 8858) [002] d..2 82316.099684: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
55723<...>-87 ( 87) [002] d..2 82316.099727: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55724          <idle>-0     (-----) [002] d.h5 82316.099746: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
55725          <idle>-0     (-----) [002] dnh6 82316.099778: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55726          <idle>-0     (-----) [002] d..2 82316.099796: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
55727  surfaceflinger-8858  ( 8858) [003] ...1 82316.099812: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
55728<...>-86 ( 86) [002] d.h5 82316.099816: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55729  surfaceflinger-8858  ( 8858) [003] ...1 82316.099819: tracing_mark_write: E|8858
55730          <idle>-0     (-----) [005] dnh2 82316.099838: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55731          <idle>-0     (-----) [005] .n.1 82316.099843: cpu_idle: state=4294967295 cpu_id=5
55732          <idle>-0     (-----) [005] d..2 82316.099851: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55733  surfaceflinger-8858  ( 8858) [003] .... 82316.099866: binder_transaction: transaction=1569665 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
55734  surfaceflinger-8858  ( 8858) [003] .... 82316.099872: binder_transaction_alloc_buf: transaction=1569665 data_size=540 offsets_size=96
55735<...>-86 ( 86) [002] d..2 82316.099882: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55736          <idle>-0     (-----) [002] d..1 82316.099897: cpu_idle: state=0 cpu_id=2
55737  surfaceflinger-8858  ( 8858) [003] ...2 82316.099897: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
55738  surfaceflinger-8858  ( 8858) [003] d..4 82316.099905: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
55739<...>-5340 ( 788) [005] d..1 82316.099906: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
55740  surfaceflinger-8858  ( 8858) [003] d..5 82316.099924: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
55741          <idle>-0     (-----) [001] .n.1 82316.099930: cpu_idle: state=4294967295 cpu_id=1
55742          <idle>-0     (-----) [001] d..2 82316.099940: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
55743 [email protected]   (  619) [001] .... 82316.099951: binder_transaction_received: transaction=1569665
55744  surfaceflinger-8858  ( 8858) [003] d..2 82316.099956: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
55745          <idle>-0     (-----) [003] dnh3 82316.099970: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
55746          <idle>-0     (-----) [003] d..2 82316.099981: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
55747 [email protected]   (  619) [001] ...1 82316.099997: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
55748 neuralnetworks@-13088 (  788) [003] d..2 82316.100033: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
55749          <idle>-0     (-----) [003] d..1 82316.100046: cpu_idle: state=0 cpu_id=3
55750<...>-5340 ( 788) [005] d..2 82316.100071: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
55751          <idle>-0     (-----) [002] dnh2 82316.100093: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
55752<...>-5340 ( 788) [005] d..2 82316.100097: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
55753          <idle>-0     (-----) [002] .n.1 82316.100100: cpu_idle: state=4294967295 cpu_id=2
55754 [email protected]   (  619) [001] ...1 82316.100104: tracing_mark_write: B|619|HWCSession::PresentDisplay::
55755          <idle>-0     (-----) [002] d..2 82316.100110: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
55756          <idle>-0     (-----) [005] d..1 82316.100112: cpu_idle: state=0 cpu_id=5
55757<...>-87 ( 87) [002] d..2 82316.100147: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55758          <idle>-0     (-----) [002] d.h5 82316.100165: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55759          <idle>-0     (-----) [002] dnh6 82316.100175: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55760          <idle>-0     (-----) [002] d..2 82316.100187: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
55761<...>-86 ( 86) [002] d..2 82316.100216: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55762          <idle>-0     (-----) [002] d..1 82316.100229: cpu_idle: state=0 cpu_id=2
55763 [email protected]   (  619) [001] ...1 82316.100272: tracing_mark_write: B|619|HWDeviceDRM::Commit::
55764 [email protected]   (  619) [001] ...1 82316.100284: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
55765          <idle>-0     (-----) [005] ...1 82316.100456: cpu_idle: state=4294967295 cpu_id=5
55766          <idle>-0     (-----) [005] d..1 82316.100460: cpu_idle: state=0 cpu_id=5
55767 [email protected]   (  619) [001] d..2 82316.100866: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
55768 [email protected]   (  619) [001] d..3 82316.100890: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
55769          <idle>-0     (-----) [000] .n.1 82316.100894: cpu_idle: state=4294967295 cpu_id=0
55770          <idle>-0     (-----) [000] d..2 82316.100907: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
55771 [email protected]   (  619) [001] ...1 82316.100989: tracing_mark_write: E|619
55772 [email protected]   (  619) [001] ...1 82316.100995: tracing_mark_write: E|619
55773 [email protected]   (  619) [001] ...1 82316.101053: tracing_mark_write: E|619
55774 [email protected]   (  619) [001] ...1 82316.101096: tracing_mark_write: E|619
55775 [email protected]   (  619) [001] .... 82316.101110: binder_transaction: transaction=1569666 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
55776 [email protected]   (  619) [001] .... 82316.101114: binder_transaction_alloc_buf: transaction=1569666 data_size=576 offsets_size=112
55777 [email protected]   (  619) [001] d..2 82316.101133: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
55778 [email protected]   (  619) [001] d..3 82316.101151: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
55779 [email protected]   (  619) [001] .... 82316.101155: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
55780          <idle>-0     (-----) [003] .n.1 82316.101157: cpu_idle: state=4294967295 cpu_id=3
55781          <idle>-0     (-----) [003] d..2 82316.101164: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
55782  surfaceflinger-8858  ( 8858) [003] .... 82316.101173: binder_transaction_received: transaction=1569666
55783 [email protected]   (  619) [001] d..2 82316.101237: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
55784          <idle>-0     (-----) [001] d..1 82316.101256: cpu_idle: state=0 cpu_id=1
55785  surfaceflinger-8858  ( 8858) [003] d..2 82316.101582: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
55786          <idle>-0     (-----) [003] d..1 82316.101595: cpu_idle: state=0 cpu_id=3
55787 crtc_commit:111-321   (  321) [000] d..2 82316.101610: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
55788          <idle>-0     (-----) [002] ...1 82316.101618: cpu_idle: state=4294967295 cpu_id=2
55789          <idle>-0     (-----) [002] d..1 82316.101622: cpu_idle: state=0 cpu_id=2
55790          <idle>-0     (-----) [000] d..1 82316.101625: cpu_idle: state=0 cpu_id=0
55791          <idle>-0     (-----) [003] d.s2 82316.101803: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
55792          <idle>-0     (-----) [002] d.h4 82316.101803: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55793          <idle>-0     (-----) [003] dns3 82316.101822: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
55794          <idle>-0     (-----) [005] dnh2 82316.101823: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55795          <idle>-0     (-----) [005] .n.1 82316.101827: cpu_idle: state=4294967295 cpu_id=5
55796          <idle>-0     (-----) [005] d..2 82316.101836: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55797          <idle>-0     (-----) [002] ...1 82316.101841: cpu_idle: state=4294967295 cpu_id=2
55798          <idle>-0     (-----) [003] .n.1 82316.101843: cpu_idle: state=4294967295 cpu_id=3
55799          <idle>-0     (-----) [002] d..1 82316.101846: cpu_idle: state=0 cpu_id=2
55800          <idle>-0     (-----) [003] d..2 82316.101852: 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
55801<...>-8 ( 8) [003] d..2 82316.101862: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
55802<...>-5340 ( 788) [005] d..1 82316.101887: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
55803<...>-8 ( 8) [003] d..3 82316.101901: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
55804<...>-8 ( 8) [003] d.h2 82316.101911: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
55805<...>-8 ( 8) [003] d..2 82316.101927: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
55806<...>-46 ( 46) [003] d..2 82316.101938: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
55807<...>-46 ( 46) [003] d..3 82316.101978: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
55808<...>-5340 ( 788) [005] ...1 82316.101986: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
55809<...>-46 ( 46) [003] d..2 82316.101986: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
55810<...>-5340 ( 788) [005] ...1 82316.101990: tracing_mark_write: E|788
55811<...>-5340 ( 788) [005] .... 82316.102007: binder_transaction: transaction=1569667 dest_node=1569663 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
55812<...>-5340 ( 788) [005] .... 82316.102010: binder_transaction_alloc_buf: transaction=1569667 data_size=60 offsets_size=0
55813<...>-5340 ( 788) [005] d..4 82316.102013: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
55814 neuralnetworks@-13088 (  788) [003] d..2 82316.102016: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
55815<...>-5340 ( 788) [005] d..5 82316.102026: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
55816          <idle>-0     (-----) [004] .n.1 82316.102033: cpu_idle: state=4294967295 cpu_id=4
55817          <idle>-0     (-----) [004] d..2 82316.102041: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
55818<...>-8 ( 8) [003] d..2 82316.102045: 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
55819           <...>-27571 (-----) [004] .... 82316.102047: binder_transaction_received: transaction=1569667
55820<...>-5340 ( 788) [005] ...1 82316.102049: tracing_mark_write: E|788
55821<...>-5340 ( 788) [005] .... 82316.102055: binder_transaction: transaction=1569668 dest_node=0 dest_proc=27550 dest_thread=27612 reply=1 flags=0x0 code=0x0
55822          <idle>-0     (-----) [003] d..1 82316.102055: cpu_idle: state=0 cpu_id=3
55823<...>-5340 ( 788) [005] .... 82316.102057: binder_transaction_alloc_buf: transaction=1569668 data_size=8 offsets_size=0
55824<...>-5340 ( 788) [005] d..2 82316.102059: sched_waking: comm=id.nn.benchmark pid=27612 prio=110 target_cpu=005
55825           <...>-27571 (-----) [004] ...1 82316.102066: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
55826<...>-5340 ( 788) [005] d..3 82316.102067: sched_wakeup: comm=id.nn.benchmark pid=27612 prio=110 target_cpu=005
55827<...>-5340 ( 788) [005] .... 82316.102068: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
55828           <...>-27571 (-----) [004] ...1 82316.102072: tracing_mark_write: E|27550
55829           <...>-27571 (-----) [004] d..2 82316.102102: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55830          <idle>-0     (-----) [004] d..1 82316.102110: cpu_idle: state=0 cpu_id=4
55831<...>-5340 ( 788) [005] d..2 82316.102110: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27612 next_prio=110
55832           <...>-27612 (-----) [005] .... 82316.102120: binder_transaction_received: transaction=1569668
55833           <...>-27612 (-----) [005] ...1 82316.102158: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
55834           <...>-27612 (-----) [005] ...1 82316.102164: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
55835           <...>-27612 (-----) [005] ...1 82316.102191: tracing_mark_write: E|27550
55836           <...>-27612 (-----) [005] ...1 82316.102195: tracing_mark_write: E|27550
55837           <...>-27612 (-----) [005] ...1 82316.102198: tracing_mark_write: E|27550
55838           <...>-27612 (-----) [005] ...1 82316.102393: tracing_mark_write: E|27550
55839           <...>-27612 (-----) [005] d..1 82316.102406: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55840           <...>-27612 (-----) [005] d..2 82316.102422: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55841          <idle>-0     (-----) [004] .n.1 82316.102427: cpu_idle: state=4294967295 cpu_id=4
55842          <idle>-0     (-----) [004] d..2 82316.102434: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
55843           <...>-27550 (-----) [004] d..2 82316.102454: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55844          <idle>-0     (-----) [004] d..1 82316.102463: cpu_idle: state=0 cpu_id=4
55845           <...>-27612 (-----) [005] d..1 82316.102516: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55846           <...>-27612 (-----) [005] d..2 82316.102525: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
55847          <idle>-0     (-----) [004] .n.1 82316.102530: cpu_idle: state=4294967295 cpu_id=4
55848          <idle>-0     (-----) [004] d..2 82316.102538: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
55849           <...>-27612 (-----) [005] d..2 82316.102565: sched_switch: prev_comm=id.nn.benchmark prev_pid=27612 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
55850           <...>-27550 (-----) [004] ...1 82316.102571: tracing_mark_write: E|27550
55851           <...>-27550 (-----) [004] ...1 82316.102576: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
55852           <...>-27550 (-----) [004] ...1 82316.102582: tracing_mark_write: E|27550
55853          <idle>-0     (-----) [005] d..1 82316.102586: cpu_idle: state=0 cpu_id=5
55854           <...>-27550 (-----) [004] ...1 82316.102586: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
55855           <...>-27550 (-----) [004] ...1 82316.102590: tracing_mark_write: E|27550
55856           <...>-27550 (-----) [004] ...1 82316.102595: tracing_mark_write: E|27550
55857           <...>-27550 (-----) [004] ...1 82316.102708: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
55858          <idle>-0     (-----) [001] ...1 82316.102720: cpu_idle: state=4294967295 cpu_id=1
55859          <idle>-0     (-----) [001] d..1 82316.102725: cpu_idle: state=0 cpu_id=1
55860           <...>-27550 (-----) [004] ...1 82316.102765: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
55861           <...>-27550 (-----) [004] ...1 82316.102770: tracing_mark_write: E|27550
55862           <...>-27550 (-----) [004] ...1 82316.102774: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
55863           <...>-27550 (-----) [004] ...1 82316.102779: tracing_mark_write: E|27550
55864           <...>-27550 (-----) [004] ...1 82316.102783: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
55865           <...>-27550 (-----) [004] ...1 82316.102788: tracing_mark_write: E|27550
55866           <...>-27550 (-----) [004] ...1 82316.102791: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
55867          <idle>-0     (-----) [005] .n.1 82316.102887: cpu_idle: state=4294967295 cpu_id=5
55868           <...>-27550 (-----) [004] ...1 82316.102888: tracing_mark_write: E|27550
55869           <...>-27550 (-----) [004] ...1 82316.102892: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
55870          <idle>-0     (-----) [005] d..2 82316.102896: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27613 next_prio=110
55871           <...>-27550 (-----) [004] d..2 82316.102910: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
55872          <idle>-0     (-----) [004] d..1 82316.102924: cpu_idle: state=0 cpu_id=4
55873           <...>-27613 (-----) [005] ...1 82316.102957: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
55874           <...>-27613 (-----) [005] ...1 82316.102971: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
55875           <...>-27613 (-----) [005] ...1 82316.102975: tracing_mark_write: E|27550
55876           <...>-27613 (-----) [005] .... 82316.102997: binder_transaction: transaction=1569669 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
55877           <...>-27613 (-----) [005] .... 82316.103001: binder_transaction_alloc_buf: transaction=1569669 data_size=48 offsets_size=0
55878           <...>-27613 (-----) [005] ...2 82316.103004: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
55879           <...>-27613 (-----) [005] d..4 82316.103007: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
55880           <...>-27613 (-----) [005] dn.5 82316.103018: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
55881           <...>-27613 (-----) [005] d..2 82316.103025: sched_switch: prev_comm=id.nn.benchmark prev_pid=27613 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
55882<...>-770 ( 770) [005] .... 82316.103035: binder_transaction_received: transaction=1569669
55883<...>-770 ( 770) [005] ...1 82316.103058: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
55884<...>-770 ( 770) [005] d..2 82316.103142: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
55885          <idle>-0     (-----) [000] dnh2 82316.103183: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
55886          <idle>-0     (-----) [000] .n.1 82316.103189: cpu_idle: state=4294967295 cpu_id=0
55887<...>-770 ( 770) [005] ...1 82316.103196: tracing_mark_write: E|770
55888          <idle>-0     (-----) [000] d..2 82316.103202: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
55889<...>-770 ( 770) [005] .... 82316.103204: binder_transaction: transaction=1569670 dest_node=0 dest_proc=27550 dest_thread=27613 reply=1 flags=0x0 code=0x0
55890<...>-770 ( 770) [005] .... 82316.103207: binder_transaction_alloc_buf: transaction=1569670 data_size=168 offsets_size=32
55891<...>-770 ( 770) [005] .... 82316.103214: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
55892<...>-770 ( 770) [005] d..2 82316.103250: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27613 next_prio=110
55893           <...>-27613 (-----) [005] .... 82316.103261: binder_transaction_received: transaction=1569670
55894<...>-581 ( 571) [000] d..2 82316.103293: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55895          <idle>-0     (-----) [000] d..1 82316.103308: cpu_idle: state=0 cpu_id=0
55896           <...>-27613 (-----) [005] ...1 82316.103333: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
55897           <...>-27613 (-----) [005] ...1 82316.103339: tracing_mark_write: E|27550
55898           <...>-27613 (-----) [005] .... 82316.103353: binder_transaction: transaction=1569671 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
55899           <...>-27613 (-----) [005] .... 82316.103356: binder_transaction_alloc_buf: transaction=1569671 data_size=48 offsets_size=0
55900           <...>-27613 (-----) [005] ...2 82316.103358: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
55901           <...>-27613 (-----) [005] d..4 82316.103360: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
55902           <...>-27613 (-----) [005] dn.5 82316.103371: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
55903           <...>-27613 (-----) [005] d..2 82316.103377: sched_switch: prev_comm=id.nn.benchmark prev_pid=27613 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
55904<...>-770 ( 770) [005] .... 82316.103386: binder_transaction_received: transaction=1569671
55905<...>-770 ( 770) [005] ...1 82316.103403: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
55906<...>-770 ( 770) [005] d..2 82316.103460: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
55907          <idle>-0     (-----) [000] dnh2 82316.103483: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
55908          <idle>-0     (-----) [000] .n.1 82316.103489: cpu_idle: state=4294967295 cpu_id=0
55909<...>-770 ( 770) [005] ...1 82316.103492: tracing_mark_write: E|770
55910<...>-770 ( 770) [005] .... 82316.103499: binder_transaction: transaction=1569672 dest_node=0 dest_proc=27550 dest_thread=27613 reply=1 flags=0x0 code=0x0
55911          <idle>-0     (-----) [000] d..2 82316.103500: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
55912<...>-770 ( 770) [005] .... 82316.103501: binder_transaction_alloc_buf: transaction=1569672 data_size=168 offsets_size=32
55913<...>-770 ( 770) [005] .... 82316.103507: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
55914<...>-770 ( 770) [005] d..2 82316.103542: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27613 next_prio=110
55915           <...>-27613 (-----) [005] .... 82316.103552: binder_transaction_received: transaction=1569672
55916<...>-581 ( 571) [000] d..2 82316.103557: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55917          <idle>-0     (-----) [000] d..1 82316.103570: cpu_idle: state=0 cpu_id=0
55918           <...>-27613 (-----) [005] ...1 82316.103831: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
55919           <...>-27613 (-----) [005] ...1 82316.103841: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
55920           <...>-27613 (-----) [005] ...1 82316.103845: tracing_mark_write: E|27550
55921           <...>-27613 (-----) [005] .... 82316.103910: binder_transaction: transaction=1569673 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
55922           <...>-27613 (-----) [005] .... 82316.103913: binder_transaction_alloc_buf: transaction=1569673 data_size=556 offsets_size=104
55923           <...>-27613 (-----) [005] ...2 82316.103927: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
55924           <...>-27613 (-----) [005] d..4 82316.103930: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55925           <...>-27613 (-----) [005] dn.5 82316.103941: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55926           <...>-27613 (-----) [005] d..2 82316.103948: sched_switch: prev_comm=id.nn.benchmark prev_pid=27613 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55927<...>-5340 ( 788) [005] .... 82316.103958: binder_transaction_received: transaction=1569673
55928<...>-5340 ( 788) [005] ...1 82316.104004: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
55929<...>-5340 ( 788) [005] d..2 82316.104050: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
55930<...>-5340 ( 788) [005] d..2 82316.104086: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27613 next_prio=110
55931          <idle>-0     (-----) [000] dnh2 82316.104089: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
55932          <idle>-0     (-----) [000] .n.1 82316.104095: cpu_idle: state=4294967295 cpu_id=0
55933          <idle>-0     (-----) [000] d..2 82316.104105: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
55934           <...>-27613 (-----) [005] d..2 82316.104108: sched_switch: prev_comm=id.nn.benchmark prev_pid=27613 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
55935          <idle>-0     (-----) [005] d..1 82316.104125: cpu_idle: state=0 cpu_id=5
55936<...>-87 ( 87) [000] d..2 82316.104146: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55937          <idle>-0     (-----) [000] d..1 82316.104157: cpu_idle: state=0 cpu_id=0
55938          <idle>-0     (-----) [002] d.h4 82316.104159: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55939          <idle>-0     (-----) [002] dnh5 82316.104175: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55940          <idle>-0     (-----) [002] .n.1 82316.104183: cpu_idle: state=4294967295 cpu_id=2
55941          <idle>-0     (-----) [002] d..2 82316.104194: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
55942<...>-86 ( 86) [002] d..2 82316.104226: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55943          <idle>-0     (-----) [002] d.h5 82316.104246: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55944          <idle>-0     (-----) [005] dnh2 82316.104267: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55945          <idle>-0     (-----) [005] .n.1 82316.104272: cpu_idle: state=4294967295 cpu_id=5
55946          <idle>-0     (-----) [005] d..2 82316.104280: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55947          <idle>-0     (-----) [002] d..1 82316.104288: cpu_idle: state=0 cpu_id=2
55948<...>-5340 ( 788) [005] d..1 82316.104334: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
55949          <idle>-0     (-----) [000] dnh2 82316.104369: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55950          <idle>-0     (-----) [000] .n.1 82316.104375: cpu_idle: state=4294967295 cpu_id=0
55951          <idle>-0     (-----) [000] d..2 82316.104385: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
55952 neuralnetworks@-13088 (  788) [000] d..2 82316.104433: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55953          <idle>-0     (-----) [000] d..1 82316.104445: cpu_idle: state=0 cpu_id=0
55954<...>-5340 ( 788) [005] d..2 82316.104493: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
55955          <idle>-0     (-----) [000] dnh2 82316.104514: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
55956<...>-5340 ( 788) [005] d..2 82316.104518: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
55957          <idle>-0     (-----) [000] .n.1 82316.104520: cpu_idle: state=4294967295 cpu_id=0
55958          <idle>-0     (-----) [000] d..2 82316.104531: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
55959          <idle>-0     (-----) [005] d..1 82316.104533: cpu_idle: state=0 cpu_id=5
55960<...>-87 ( 87) [000] d..2 82316.104566: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55961          <idle>-0     (-----) [002] d.h4 82316.104567: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55962          <idle>-0     (-----) [002] dnh5 82316.104577: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
55963          <idle>-0     (-----) [000] d..1 82316.104579: cpu_idle: state=0 cpu_id=0
55964          <idle>-0     (-----) [002] .n.1 82316.104585: cpu_idle: state=4294967295 cpu_id=2
55965          <idle>-0     (-----) [002] d..2 82316.104596: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
55966<...>-86 ( 86) [002] d..2 82316.104627: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
55967          <idle>-0     (-----) [002] d..1 82316.104638: cpu_idle: state=0 cpu_id=2
55968          <idle>-0     (-----) [005] ...1 82316.104872: cpu_idle: state=4294967295 cpu_id=5
55969          <idle>-0     (-----) [005] d..1 82316.104875: cpu_idle: state=0 cpu_id=5
55970          <idle>-0     (-----) [003] d.s2 82316.105137: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
55971          <idle>-0     (-----) [003] dns3 82316.105154: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
55972          <idle>-0     (-----) [003] .n.1 82316.105165: cpu_idle: state=4294967295 cpu_id=3
55973          <idle>-0     (-----) [003] d..2 82316.105173: 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
55974     rcu_preempt-7     (    7) [003] d..2 82316.105186: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
55975     rcu_preempt-7     (    7) [003] d..3 82316.105201: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
55976     rcu_preempt-7     (    7) [003] d..2 82316.105214: 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
55977         rcuop/2-29    (   29) [003] d..2 82316.105219: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
55978         rcuop/2-29    (   29) [003] d..3 82316.105252: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
55979         rcuop/2-29    (   29) [003] d..2 82316.105263: 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
55980         rcuop/3-37    (   37) [003] d..2 82316.105299: 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
55981          <idle>-0     (-----) [003] d..1 82316.105308: cpu_idle: state=0 cpu_id=3
55982          <idle>-0     (-----) [000] ...1 82316.105825: cpu_idle: state=4294967295 cpu_id=0
55983          <idle>-0     (-----) [000] d..1 82316.105829: cpu_idle: state=0 cpu_id=0
55984          <idle>-0     (-----) [002] d.h4 82316.106297: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55985          <idle>-0     (-----) [005] dnh2 82316.106317: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
55986          <idle>-0     (-----) [005] .n.1 82316.106320: cpu_idle: state=4294967295 cpu_id=5
55987          <idle>-0     (-----) [005] d..2 82316.106329: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
55988          <idle>-0     (-----) [002] ...1 82316.106334: cpu_idle: state=4294967295 cpu_id=2
55989          <idle>-0     (-----) [002] d..1 82316.106339: cpu_idle: state=0 cpu_id=2
55990<...>-5340 ( 788) [005] d..1 82316.106379: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55991          <idle>-0     (-----) [000] dnh2 82316.106399: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
55992          <idle>-0     (-----) [000] .n.1 82316.106408: cpu_idle: state=4294967295 cpu_id=0
55993          <idle>-0     (-----) [000] d..2 82316.106420: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
55994<...>-5340 ( 788) [005] ...1 82316.106468: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
55995<...>-5340 ( 788) [005] ...1 82316.106473: tracing_mark_write: E|788
55996 neuralnetworks@-13088 (  788) [000] d..2 82316.106481: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
55997<...>-5340 ( 788) [005] .... 82316.106488: binder_transaction: transaction=1569676 dest_node=1569674 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
55998<...>-5340 ( 788) [005] .... 82316.106491: binder_transaction_alloc_buf: transaction=1569676 data_size=60 offsets_size=0
55999          <idle>-0     (-----) [000] d..1 82316.106493: cpu_idle: state=0 cpu_id=0
56000<...>-5340 ( 788) [005] d..4 82316.106494: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
56001<...>-5340 ( 788) [005] d..5 82316.106506: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
56002          <idle>-0     (-----) [004] .n.1 82316.106512: cpu_idle: state=4294967295 cpu_id=4
56003          <idle>-0     (-----) [004] d..2 82316.106520: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
56004           <...>-27571 (-----) [004] .... 82316.106525: binder_transaction_received: transaction=1569676
56005<...>-5340 ( 788) [005] ...1 82316.106528: tracing_mark_write: E|788
56006<...>-5340 ( 788) [005] .... 82316.106534: binder_transaction: transaction=1569677 dest_node=0 dest_proc=27550 dest_thread=27613 reply=1 flags=0x0 code=0x0
56007<...>-5340 ( 788) [005] .... 82316.106536: binder_transaction_alloc_buf: transaction=1569677 data_size=8 offsets_size=0
56008<...>-5340 ( 788) [005] d..2 82316.106538: sched_waking: comm=id.nn.benchmark pid=27613 prio=110 target_cpu=005
56009           <...>-27571 (-----) [004] ...1 82316.106542: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
56010<...>-5340 ( 788) [005] d..3 82316.106545: sched_wakeup: comm=id.nn.benchmark pid=27613 prio=110 target_cpu=005
56011<...>-5340 ( 788) [005] .... 82316.106547: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
56012           <...>-27571 (-----) [004] ...1 82316.106549: tracing_mark_write: E|27550
56013           <...>-27571 (-----) [004] d..2 82316.106577: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56014          <idle>-0     (-----) [004] d..1 82316.106585: cpu_idle: state=0 cpu_id=4
56015<...>-5340 ( 788) [005] d..2 82316.106589: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27613 next_prio=110
56016           <...>-27613 (-----) [005] .... 82316.106599: binder_transaction_received: transaction=1569677
56017           <...>-27613 (-----) [005] ...1 82316.106635: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
56018           <...>-27613 (-----) [005] ...1 82316.106642: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
56019           <...>-27613 (-----) [005] ...1 82316.106669: tracing_mark_write: E|27550
56020           <...>-27613 (-----) [005] ...1 82316.106672: tracing_mark_write: E|27550
56021           <...>-27613 (-----) [005] ...1 82316.106677: tracing_mark_write: E|27550
56022           <...>-27613 (-----) [005] ...1 82316.106862: tracing_mark_write: E|27550
56023           <...>-27613 (-----) [005] d..1 82316.106875: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56024           <...>-27613 (-----) [005] d..2 82316.106891: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56025          <idle>-0     (-----) [004] .n.1 82316.106896: cpu_idle: state=4294967295 cpu_id=4
56026          <idle>-0     (-----) [004] d..2 82316.106903: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
56027           <...>-27550 (-----) [004] d..2 82316.106922: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56028          <idle>-0     (-----) [004] d..1 82316.106931: cpu_idle: state=0 cpu_id=4
56029           <...>-27613 (-----) [005] d..1 82316.106975: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56030           <...>-27613 (-----) [005] d..2 82316.106984: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56031          <idle>-0     (-----) [004] .n.1 82316.106989: cpu_idle: state=4294967295 cpu_id=4
56032          <idle>-0     (-----) [004] d..2 82316.106997: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
56033           <...>-27613 (-----) [005] d..2 82316.107022: sched_switch: prev_comm=id.nn.benchmark prev_pid=27613 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
56034           <...>-27550 (-----) [004] ...1 82316.107029: tracing_mark_write: E|27550
56035           <...>-27550 (-----) [004] ...1 82316.107033: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
56036           <...>-27550 (-----) [004] ...1 82316.107040: tracing_mark_write: E|27550
56037          <idle>-0     (-----) [000] d.h5 82316.107040: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56038          <idle>-0     (-----) [005] d..1 82316.107042: cpu_idle: state=0 cpu_id=5
56039           <...>-27550 (-----) [004] ...1 82316.107043: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
56040           <...>-27550 (-----) [004] ...1 82316.107047: tracing_mark_write: E|27550
56041           <...>-27550 (-----) [004] ...1 82316.107051: tracing_mark_write: E|27550
56042          <idle>-0     (-----) [000] d.h6 82316.107059: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56043          <idle>-0     (-----) [002] .n.1 82316.107064: cpu_idle: state=4294967295 cpu_id=2
56044          <idle>-0     (-----) [000] d.h5 82316.107065: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
56045          <idle>-0     (-----) [000] dnh6 82316.107073: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
56046          <idle>-0     (-----) [002] d..2 82316.107075: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
56047          <idle>-0     (-----) [000] .n.1 82316.107091: cpu_idle: state=4294967295 cpu_id=0
56048          <idle>-0     (-----) [000] d..2 82316.107102: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
56049  crtc_event:111-322   (  322) [002] d..2 82316.107111: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56050          <idle>-0     (-----) [002] d..1 82316.107121: cpu_idle: state=0 cpu_id=2
56051           <...>-27550 (-----) [004] ...1 82316.107163: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
56052           <...>-27550 (-----) [004] ...1 82316.107220: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
56053           <...>-27550 (-----) [004] ...1 82316.107224: tracing_mark_write: E|27550
56054           <...>-27550 (-----) [004] ...1 82316.107228: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
56055           <...>-27550 (-----) [004] ...1 82316.107233: tracing_mark_write: E|27550
56056           <...>-27550 (-----) [004] ...1 82316.107237: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
56057           <...>-27550 (-----) [004] ...1 82316.107241: tracing_mark_write: E|27550
56058 crtc_commit:111-321   (  321) [000] d..2 82316.107244: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
56059           <...>-27550 (-----) [004] ...1 82316.107245: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
56060          <idle>-0     (-----) [000] d..1 82316.107253: cpu_idle: state=0 cpu_id=0
56061          <idle>-0     (-----) [005] .n.1 82316.107331: cpu_idle: state=4294967295 cpu_id=5
56062           <...>-27550 (-----) [004] ...1 82316.107333: tracing_mark_write: E|27550
56063           <...>-27550 (-----) [004] ...1 82316.107337: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
56064          <idle>-0     (-----) [005] d..2 82316.107340: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27614 next_prio=110
56065           <...>-27550 (-----) [004] d..2 82316.107354: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56066          <idle>-0     (-----) [004] d..1 82316.107368: cpu_idle: state=0 cpu_id=4
56067           <...>-27614 (-----) [005] ...1 82316.107401: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
56068           <...>-27614 (-----) [005] ...1 82316.107415: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
56069           <...>-27614 (-----) [005] ...1 82316.107419: tracing_mark_write: E|27550
56070           <...>-27614 (-----) [005] .... 82316.107439: binder_transaction: transaction=1569678 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
56071           <...>-27614 (-----) [005] .... 82316.107442: binder_transaction_alloc_buf: transaction=1569678 data_size=48 offsets_size=0
56072           <...>-27614 (-----) [005] ...2 82316.107445: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
56073           <...>-27614 (-----) [005] d..4 82316.107448: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
56074           <...>-27614 (-----) [005] dn.5 82316.107459: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
56075           <...>-27614 (-----) [005] d..2 82316.107467: sched_switch: prev_comm=id.nn.benchmark prev_pid=27614 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
56076<...>-770 ( 770) [005] .... 82316.107478: binder_transaction_received: transaction=1569678
56077<...>-770 ( 770) [005] ...1 82316.107502: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
56078<...>-770 ( 770) [005] d..2 82316.107573: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
56079          <idle>-0     (-----) [000] dnh2 82316.107601: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
56080          <idle>-0     (-----) [000] .n.1 82316.107606: cpu_idle: state=4294967295 cpu_id=0
56081<...>-770 ( 770) [005] ...1 82316.107614: tracing_mark_write: E|770
56082          <idle>-0     (-----) [000] d..2 82316.107614: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
56083<...>-770 ( 770) [005] .... 82316.107622: binder_transaction: transaction=1569679 dest_node=0 dest_proc=27550 dest_thread=27614 reply=1 flags=0x0 code=0x0
56084<...>-770 ( 770) [005] .... 82316.107625: binder_transaction_alloc_buf: transaction=1569679 data_size=168 offsets_size=32
56085<...>-770 ( 770) [005] .... 82316.107632: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
56086<...>-770 ( 770) [005] d..2 82316.107669: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27614 next_prio=110
56087           <...>-27614 (-----) [005] .... 82316.107680: binder_transaction_received: transaction=1569679
56088<...>-581 ( 571) [000] d..2 82316.107690: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56089          <idle>-0     (-----) [000] d..1 82316.107700: cpu_idle: state=0 cpu_id=0
56090           <...>-27614 (-----) [005] ...1 82316.107750: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
56091           <...>-27614 (-----) [005] ...1 82316.107755: tracing_mark_write: E|27550
56092           <...>-27614 (-----) [005] .... 82316.107770: binder_transaction: transaction=1569680 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
56093           <...>-27614 (-----) [005] .... 82316.107773: binder_transaction_alloc_buf: transaction=1569680 data_size=48 offsets_size=0
56094           <...>-27614 (-----) [005] ...2 82316.107775: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
56095           <...>-27614 (-----) [005] d..4 82316.107777: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
56096           <...>-27614 (-----) [005] dn.5 82316.107787: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
56097           <...>-27614 (-----) [005] d..2 82316.107794: sched_switch: prev_comm=id.nn.benchmark prev_pid=27614 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
56098<...>-770 ( 770) [005] .... 82316.107802: binder_transaction_received: transaction=1569680
56099<...>-770 ( 770) [005] ...1 82316.107819: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
56100<...>-770 ( 770) [005] d..2 82316.107877: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
56101          <idle>-0     (-----) [000] dnh2 82316.107901: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
56102          <idle>-0     (-----) [000] .n.1 82316.107907: cpu_idle: state=4294967295 cpu_id=0
56103<...>-770 ( 770) [005] ...1 82316.107912: tracing_mark_write: E|770
56104          <idle>-0     (-----) [000] d..2 82316.107915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
56105<...>-770 ( 770) [005] .... 82316.107919: binder_transaction: transaction=1569681 dest_node=0 dest_proc=27550 dest_thread=27614 reply=1 flags=0x0 code=0x0
56106<...>-770 ( 770) [005] .... 82316.107922: binder_transaction_alloc_buf: transaction=1569681 data_size=168 offsets_size=32
56107<...>-770 ( 770) [005] .... 82316.107927: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
56108<...>-770 ( 770) [005] d..2 82316.107961: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27614 next_prio=110
56109<...>-581 ( 571) [000] d..2 82316.107969: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56110           <...>-27614 (-----) [005] .... 82316.107971: binder_transaction_received: transaction=1569681
56111          <idle>-0     (-----) [000] d..1 82316.107978: cpu_idle: state=0 cpu_id=0
56112           <...>-27614 (-----) [005] ...1 82316.108247: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
56113           <...>-27614 (-----) [005] ...1 82316.108258: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
56114           <...>-27614 (-----) [005] ...1 82316.108262: tracing_mark_write: E|27550
56115           <...>-27614 (-----) [005] .... 82316.108320: binder_transaction: transaction=1569682 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
56116           <...>-27614 (-----) [005] .... 82316.108324: binder_transaction_alloc_buf: transaction=1569682 data_size=556 offsets_size=104
56117           <...>-27614 (-----) [005] ...2 82316.108337: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
56118           <...>-27614 (-----) [005] d..4 82316.108340: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56119           <...>-27614 (-----) [005] dn.5 82316.108351: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56120           <...>-27614 (-----) [005] d..2 82316.108358: sched_switch: prev_comm=id.nn.benchmark prev_pid=27614 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56121<...>-5340 ( 788) [005] .... 82316.108368: binder_transaction_received: transaction=1569682
56122<...>-5340 ( 788) [005] ...1 82316.108411: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
56123          <idle>-0     (-----) [003] d.s2 82316.108467: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
56124          <idle>-0     (-----) [000] d.s3 82316.108468: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56125          <idle>-0     (-----) [003] dns3 82316.108481: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
56126<...>-5340 ( 788) [005] d..2 82316.108486: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
56127          <idle>-0     (-----) [000] d.s4 82316.108486: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56128          <idle>-0     (-----) [003] dns3 82316.108489: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
56129          <idle>-0     (-----) [002] .n.1 82316.108491: cpu_idle: state=4294967295 cpu_id=2
56130          <idle>-0     (-----) [002] d..2 82316.108502: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
56131          <idle>-0     (-----) [000] ...1 82316.108519: cpu_idle: state=4294967295 cpu_id=0
56132          <idle>-0     (-----) [003] dns4 82316.108527: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
56133          <idle>-0     (-----) [000] d..1 82316.108527: cpu_idle: state=0 cpu_id=0
56134<...>-5340 ( 788) [005] d..2 82316.108530: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27614 next_prio=110
56135  crtc_event:111-322   (  322) [002] d..2 82316.108536: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
56136  kworker/u16:15-1311  ( 1311) [002] d.h3 82316.108548: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
56137          <idle>-0     (-----) [003] .n.1 82316.108553: cpu_idle: state=4294967295 cpu_id=3
56138           <...>-27614 (-----) [005] d..2 82316.108555: sched_switch: prev_comm=id.nn.benchmark prev_pid=27614 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
56139          <idle>-0     (-----) [003] d..2 82316.108562: 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
56140          <idle>-0     (-----) [005] d..1 82316.108572: cpu_idle: state=0 cpu_id=5
56141          <idle>-0     (-----) [005] ...1 82316.108586: cpu_idle: state=4294967295 cpu_id=5
56142          <idle>-0     (-----) [005] d..1 82316.108590: cpu_idle: state=0 cpu_id=5
56143<...>-8 ( 8) [003] d..2 82316.108592: 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
56144          <idle>-0     (-----) [003] d..1 82316.108600: cpu_idle: state=0 cpu_id=3
56145  kworker/u16:15-1311  ( 1311) [002] d..2 82316.108673: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
56146<...>-87 ( 87) [002] d..2 82316.108714: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56147          <idle>-0     (-----) [002] d.h5 82316.108733: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56148          <idle>-0     (-----) [002] dnh6 82316.108748: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56149          <idle>-0     (-----) [002] d..2 82316.108761: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
56150<...>-86 ( 86) [002] d..2 82316.108793: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56151          <idle>-0     (-----) [002] d.h4 82316.108821: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56152          <idle>-0     (-----) [005] dnh2 82316.108840: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56153          <idle>-0     (-----) [005] .n.1 82316.108844: cpu_idle: state=4294967295 cpu_id=5
56154          <idle>-0     (-----) [005] d..2 82316.108852: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56155          <idle>-0     (-----) [002] d..1 82316.108863: cpu_idle: state=0 cpu_id=2
56156<...>-5340 ( 788) [005] d..1 82316.108905: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56157          <idle>-0     (-----) [000] dnh2 82316.108931: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56158          <idle>-0     (-----) [000] .n.1 82316.108938: cpu_idle: state=4294967295 cpu_id=0
56159          <idle>-0     (-----) [000] d..2 82316.108948: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
56160 neuralnetworks@-13088 (  788) [000] d..2 82316.108992: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56161          <idle>-0     (-----) [000] d..1 82316.109005: cpu_idle: state=0 cpu_id=0
56162<...>-5340 ( 788) [005] d..2 82316.109054: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
56163          <idle>-0     (-----) [002] dnh2 82316.109076: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
56164<...>-5340 ( 788) [005] d..2 82316.109079: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
56165          <idle>-0     (-----) [002] .n.1 82316.109081: cpu_idle: state=4294967295 cpu_id=2
56166          <idle>-0     (-----) [002] d..2 82316.109092: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
56167          <idle>-0     (-----) [005] d..1 82316.109092: cpu_idle: state=0 cpu_id=5
56168<...>-87 ( 87) [002] d..2 82316.109127: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56169          <idle>-0     (-----) [002] d.h5 82316.109144: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56170          <idle>-0     (-----) [002] dnh6 82316.109154: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56171          <idle>-0     (-----) [002] d..2 82316.109166: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
56172<...>-86 ( 86) [002] d..2 82316.109196: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56173          <idle>-0     (-----) [002] d..1 82316.109209: cpu_idle: state=0 cpu_id=2
56174          <idle>-0     (-----) [000] d.h5 82316.109375: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
56175          <idle>-0     (-----) [000] dnh6 82316.109387: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
56176          <idle>-0     (-----) [000] .n.1 82316.109400: cpu_idle: state=4294967295 cpu_id=0
56177          <idle>-0     (-----) [000] d..2 82316.109410: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
56178 crtc_commit:111-321   (  321) [000] d..2 82316.109485: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56179          <idle>-0     (-----) [000] d..1 82316.109498: cpu_idle: state=0 cpu_id=0
56180          <idle>-0     (-----) [000] d.h5 82316.109662: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56181          <idle>-0     (-----) [000] d.h6 82316.109677: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56182          <idle>-0     (-----) [002] .n.1 82316.109684: cpu_idle: state=4294967295 cpu_id=2
56183          <idle>-0     (-----) [002] d..2 82316.109694: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
56184          <idle>-0     (-----) [000] ...1 82316.109695: cpu_idle: state=4294967295 cpu_id=0
56185          <idle>-0     (-----) [000] d..1 82316.109700: cpu_idle: state=0 cpu_id=0
56186  crtc_event:111-322   (  322) [002] d..2 82316.109718: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56187          <idle>-0     (-----) [002] d..1 82316.109729: cpu_idle: state=0 cpu_id=2
56188          <idle>-0     (-----) [002] d.h4 82316.110866: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56189          <idle>-0     (-----) [005] dnh2 82316.110887: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56190          <idle>-0     (-----) [005] .n.1 82316.110892: cpu_idle: state=4294967295 cpu_id=5
56191          <idle>-0     (-----) [005] d..2 82316.110900: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56192          <idle>-0     (-----) [002] ...1 82316.110903: cpu_idle: state=4294967295 cpu_id=2
56193          <idle>-0     (-----) [002] d..1 82316.110908: cpu_idle: state=0 cpu_id=2
56194<...>-5340 ( 788) [005] d..1 82316.110950: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56195          <idle>-0     (-----) [000] dnh2 82316.110975: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56196          <idle>-0     (-----) [000] .n.1 82316.110980: cpu_idle: state=4294967295 cpu_id=0
56197          <idle>-0     (-----) [000] d..2 82316.110991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
56198<...>-5340 ( 788) [005] ...1 82316.111040: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
56199<...>-5340 ( 788) [005] ...1 82316.111044: tracing_mark_write: E|788
56200 neuralnetworks@-13088 (  788) [000] d..2 82316.111047: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56201<...>-5340 ( 788) [005] .... 82316.111059: binder_transaction: transaction=1569685 dest_node=1569683 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
56202          <idle>-0     (-----) [000] d..1 82316.111059: cpu_idle: state=0 cpu_id=0
56203<...>-5340 ( 788) [005] .... 82316.111062: binder_transaction_alloc_buf: transaction=1569685 data_size=60 offsets_size=0
56204<...>-5340 ( 788) [005] d..4 82316.111065: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
56205<...>-5340 ( 788) [005] d..5 82316.111078: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
56206          <idle>-0     (-----) [004] .n.1 82316.111084: cpu_idle: state=4294967295 cpu_id=4
56207          <idle>-0     (-----) [004] d..2 82316.111092: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
56208           <...>-27571 (-----) [004] .... 82316.111097: binder_transaction_received: transaction=1569685
56209<...>-5340 ( 788) [005] ...1 82316.111101: tracing_mark_write: E|788
56210<...>-5340 ( 788) [005] .... 82316.111107: binder_transaction: transaction=1569686 dest_node=0 dest_proc=27550 dest_thread=27614 reply=1 flags=0x0 code=0x0
56211<...>-5340 ( 788) [005] .... 82316.111109: binder_transaction_alloc_buf: transaction=1569686 data_size=8 offsets_size=0
56212<...>-5340 ( 788) [005] d..2 82316.111111: sched_waking: comm=id.nn.benchmark pid=27614 prio=110 target_cpu=005
56213           <...>-27571 (-----) [004] ...1 82316.111114: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
56214<...>-5340 ( 788) [005] d..3 82316.111118: sched_wakeup: comm=id.nn.benchmark pid=27614 prio=110 target_cpu=005
56215<...>-5340 ( 788) [005] .... 82316.111120: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
56216           <...>-27571 (-----) [004] ...1 82316.111122: tracing_mark_write: E|27550
56217           <...>-27571 (-----) [004] d..2 82316.111149: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56218          <idle>-0     (-----) [004] d..1 82316.111157: cpu_idle: state=0 cpu_id=4
56219<...>-5340 ( 788) [005] d..2 82316.111160: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27614 next_prio=110
56220           <...>-27614 (-----) [005] .... 82316.111170: binder_transaction_received: transaction=1569686
56221           <...>-27614 (-----) [005] ...1 82316.111207: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
56222           <...>-27614 (-----) [005] ...1 82316.111213: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
56223           <...>-27614 (-----) [005] ...1 82316.111239: tracing_mark_write: E|27550
56224           <...>-27614 (-----) [005] ...1 82316.111242: tracing_mark_write: E|27550
56225           <...>-27614 (-----) [005] ...1 82316.111246: tracing_mark_write: E|27550
56226           <...>-27614 (-----) [005] ...1 82316.111433: tracing_mark_write: E|27550
56227           <...>-27614 (-----) [005] d..1 82316.111447: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56228           <...>-27614 (-----) [005] d..2 82316.111463: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56229          <idle>-0     (-----) [004] .n.1 82316.111468: cpu_idle: state=4294967295 cpu_id=4
56230          <idle>-0     (-----) [004] d..2 82316.111475: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
56231           <...>-27550 (-----) [004] d..2 82316.111494: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56232          <idle>-0     (-----) [004] d..1 82316.111503: cpu_idle: state=0 cpu_id=4
56233          <idle>-0     (-----) [003] d.h2 82316.111520: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
56234          <idle>-0     (-----) [003] dnh3 82316.111534: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
56235          <idle>-0     (-----) [003] .n.1 82316.111542: cpu_idle: state=4294967295 cpu_id=3
56236           <...>-27614 (-----) [005] d..1 82316.111546: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56237          <idle>-0     (-----) [003] d..2 82316.111548: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
56238           <...>-27614 (-----) [005] d..2 82316.111556: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56239          <idle>-0     (-----) [004] .n.1 82316.111561: cpu_idle: state=4294967295 cpu_id=4
56240          <idle>-0     (-----) [004] d..2 82316.111568: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
56241        DispSync-8879  ( 8858) [003] d..1 82316.111569: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
56242           <...>-27614 (-----) [005] d..2 82316.111593: sched_switch: prev_comm=id.nn.benchmark prev_pid=27614 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
56243        DispSync-8879  ( 8858) [003] d..2 82316.111593: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
56244          <idle>-0     (-----) [000] .n.1 82316.111599: cpu_idle: state=4294967295 cpu_id=0
56245           <...>-27550 (-----) [004] ...1 82316.111601: tracing_mark_write: E|27550
56246           <...>-27550 (-----) [004] ...1 82316.111606: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
56247          <idle>-0     (-----) [000] d..2 82316.111609: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
56248           <...>-27550 (-----) [004] ...1 82316.111612: tracing_mark_write: E|27550
56249          <idle>-0     (-----) [005] d..1 82316.111614: cpu_idle: state=0 cpu_id=5
56250           <...>-27550 (-----) [004] ...1 82316.111615: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
56251           <...>-27550 (-----) [004] ...1 82316.111619: tracing_mark_write: E|27550
56252           <...>-27550 (-----) [004] ...1 82316.111623: tracing_mark_write: E|27550
56253        DispSync-8879  ( 8858) [003] d..2 82316.111624: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
56254          <idle>-0     (-----) [003] d..1 82316.111634: cpu_idle: state=0 cpu_id=3
56255  appEventThread-8881  ( 8858) [000] d..3 82316.111674: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
56256  appEventThread-8881  ( 8858) [000] d..4 82316.111702: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
56257          <idle>-0     (-----) [001] .n.1 82316.111707: cpu_idle: state=4294967295 cpu_id=1
56258          <idle>-0     (-----) [001] d..2 82316.111721: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
56259           <...>-27550 (-----) [004] ...1 82316.111735: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
56260  appEventThread-8881  ( 8858) [000] d..2 82316.111742: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56261          <idle>-0     (-----) [000] d..1 82316.111757: cpu_idle: state=0 cpu_id=0
56262           <...>-27550 (-----) [004] ...1 82316.111830: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
56263           <...>-27550 (-----) [004] ...1 82316.111836: tracing_mark_write: E|27550
56264           <...>-27550 (-----) [004] ...1 82316.111839: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
56265           <...>-27550 (-----) [004] ...1 82316.111844: tracing_mark_write: E|27550
56266           <...>-27550 (-----) [004] ...1 82316.111848: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
56267           <...>-27550 (-----) [004] ...1 82316.111852: tracing_mark_write: E|27550
56268           <...>-27550 (-----) [004] ...1 82316.111855: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
56269          <idle>-0     (-----) [003] d.H3 82316.111883: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
56270          <idle>-0     (-----) [003] d.H4 82316.111899: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
56271          <idle>-0     (-----) [000] .n.1 82316.111906: cpu_idle: state=4294967295 cpu_id=0
56272          <idle>-0     (-----) [003] d.s2 82316.111906: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
56273          <idle>-0     (-----) [000] d..2 82316.111917: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
56274          <idle>-0     (-----) [003] dns3 82316.111922: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
56275          <idle>-0     (-----) [003] .n.1 82316.111931: cpu_idle: state=4294967295 cpu_id=3
56276          <idle>-0     (-----) [003] d..2 82316.111941: 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
56277          <idle>-0     (-----) [005] .n.1 82316.111942: cpu_idle: state=4294967295 cpu_id=5
56278           <...>-27550 (-----) [004] ...1 82316.111943: tracing_mark_write: E|27550
56279           <...>-27550 (-----) [004] ...1 82316.111947: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
56280         sugov:0-576   (  576) [000] .... 82316.111950: clk_set_rate: pwrcl_clk 748800000
56281          <idle>-0     (-----) [005] d..2 82316.111952: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27615 next_prio=110
56282           <...>-27550 (-----) [004] d..2 82316.111967: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56283         sugov:0-576   (  576) [000] .... 82316.111968: clk_set_rate: cpu3_pwrcl_clk 902400000
56284     rcu_preempt-7     (    7) [003] d..2 82316.111971: 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
56285         sugov:0-576   (  576) [000] .... 82316.111977: clk_set_rate: cpu2_pwrcl_clk 902400000
56286          <idle>-0     (-----) [003] d..1 82316.111980: cpu_idle: state=0 cpu_id=3
56287          <idle>-0     (-----) [004] d..1 82316.111981: cpu_idle: state=0 cpu_id=4
56288         sugov:0-576   (  576) [000] .... 82316.111985: clk_set_rate: cpu1_pwrcl_clk 902400000
56289         sugov:0-576   (  576) [000] .... 82316.111992: clk_set_rate: cpu0_pwrcl_clk 748800000
56290           <...>-27615 (-----) [005] ...1 82316.112014: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
56291           <...>-27615 (-----) [005] ...1 82316.112028: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
56292           <...>-27615 (-----) [005] ...1 82316.112032: tracing_mark_write: E|27550
56293           <...>-27615 (-----) [005] .... 82316.112053: binder_transaction: transaction=1569687 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
56294           <...>-27615 (-----) [005] .... 82316.112057: binder_transaction_alloc_buf: transaction=1569687 data_size=48 offsets_size=0
56295           <...>-27615 (-----) [005] ...2 82316.112060: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
56296           <...>-27615 (-----) [005] d..4 82316.112062: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
56297           <...>-27615 (-----) [005] dn.5 82316.112074: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
56298           <...>-27615 (-----) [005] d..2 82316.112081: sched_switch: prev_comm=id.nn.benchmark prev_pid=27615 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
56299<...>-770 ( 770) [005] .... 82316.112091: binder_transaction_received: transaction=1569687
56300         sugov:0-576   (  576) [000] .... 82316.112104: cpu_frequency: state=748800 cpu_id=0
56301<...>-770 ( 770) [005] ...1 82316.112113: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
56302         sugov:0-576   (  576) [000] .... 82316.112127: cpu_frequency: state=748800 cpu_id=1
56303         sugov:0-576   (  576) [000] .... 82316.112133: cpu_frequency: state=748800 cpu_id=2
56304         sugov:0-576   (  576) [000] .... 82316.112137: cpu_frequency: state=748800 cpu_id=3
56305<...>-9105 ( 9105) [001] .... 82316.112163: binder_transaction: transaction=1569688 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
56306         sugov:0-576   (  576) [000] d..2 82316.112167: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56307<...>-9105 ( 9105) [001] .... 82316.112171: binder_transaction_alloc_buf: transaction=1569688 data_size=80 offsets_size=0
56308<...>-9105 ( 9105) [001] d..4 82316.112179: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
56309          <idle>-0     (-----) [000] d..1 82316.112183: cpu_idle: state=0 cpu_id=0
56310<...>-770 ( 770) [005] d..2 82316.112187: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
56311<...>-9105 ( 9105) [001] d..5 82316.112215: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
56312          <idle>-0     (-----) [000] .n.1 82316.112221: cpu_idle: state=4294967295 cpu_id=0
56313          <idle>-0     (-----) [000] d..2 82316.112235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
56314<...>-9105 ( 9105) [001] d.h2 82316.112238: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
56315<...>-13083 ( 8858) [000] .... 82316.112243: binder_transaction_received: transaction=1569688
56316<...>-770 ( 770) [005] ...1 82316.112251: tracing_mark_write: E|770
56317<...>-770 ( 770) [005] .... 82316.112260: binder_transaction: transaction=1569689 dest_node=0 dest_proc=27550 dest_thread=27615 reply=1 flags=0x0 code=0x0
56318<...>-770 ( 770) [005] .... 82316.112262: binder_transaction_alloc_buf: transaction=1569689 data_size=168 offsets_size=32
56319<...>-770 ( 770) [005] .... 82316.112269: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
56320<...>-9105 ( 9105) [001] d..3 82316.112278: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
56321<...>-13083 ( 8858) [000] d..1 82316.112282: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
56322<...>-770 ( 770) [005] d..2 82316.112305: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27615 next_prio=110
56323<...>-9105 ( 9105) [001] d..4 82316.112313: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
56324           <...>-27615 (-----) [005] .... 82316.112316: binder_transaction_received: transaction=1569689
56325          <idle>-0     (-----) [002] .n.1 82316.112319: cpu_idle: state=4294967295 cpu_id=2
56326<...>-13083 ( 8858) [000] d..2 82316.112320: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
56327          <idle>-0     (-----) [002] d..2 82316.112331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
56328<...>-13083 ( 8858) [000] d..2 82316.112377: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56329  appEventThread-8881  ( 8858) [002] d..2 82316.112384: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
56330           <...>-27615 (-----) [005] ...1 82316.112387: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
56331           <...>-27615 (-----) [005] ...1 82316.112392: tracing_mark_write: E|27550
56332          <idle>-0     (-----) [000] d..1 82316.112394: cpu_idle: state=0 cpu_id=0
56333           <...>-27615 (-----) [005] .... 82316.112407: binder_transaction: transaction=1569690 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
56334           <...>-27615 (-----) [005] .... 82316.112410: binder_transaction_alloc_buf: transaction=1569690 data_size=48 offsets_size=0
56335           <...>-27615 (-----) [005] ...2 82316.112412: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
56336           <...>-27615 (-----) [005] d..4 82316.112415: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
56337           <...>-27615 (-----) [005] dn.5 82316.112425: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
56338           <...>-27615 (-----) [005] d..2 82316.112431: sched_switch: prev_comm=id.nn.benchmark prev_pid=27615 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
56339<...>-770 ( 770) [005] .... 82316.112439: binder_transaction_received: transaction=1569690
56340    RenderThread-9436  ( 9105) [002] d..2 82316.112446: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56341<...>-9105 ( 9105) [001] d..3 82316.112454: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
56342<...>-770 ( 770) [005] ...1 82316.112456: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
56343          <idle>-0     (-----) [002] d..1 82316.112464: cpu_idle: state=0 cpu_id=2
56344<...>-9105 ( 9105) [001] d..4 82316.112473: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
56345          <idle>-0     (-----) [002] .n.1 82316.112480: cpu_idle: state=4294967295 cpu_id=2
56346          <idle>-0     (-----) [002] d..2 82316.112493: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
56347<...>-9105 ( 9105) [001] d..2 82316.112497: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
56348<...>-770 ( 770) [005] ...1 82316.112533: tracing_mark_write: E|770
56349<...>-770 ( 770) [005] .... 82316.112541: binder_transaction: transaction=1569691 dest_node=0 dest_proc=27550 dest_thread=27615 reply=1 flags=0x0 code=0x0
56350<...>-770 ( 770) [005] .... 82316.112543: binder_transaction_alloc_buf: transaction=1569691 data_size=168 offsets_size=32
56351<...>-770 ( 770) [005] .... 82316.112549: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
56352<...>-770 ( 770) [005] d..2 82316.112584: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27615 next_prio=110
56353           <...>-27615 (-----) [005] .... 82316.112594: binder_transaction_received: transaction=1569691
56354    RenderThread-9436  ( 9105) [002] d..1 82316.112621: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
56355<...>-581 ( 571) [001] d..2 82316.112629: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56356    RenderThread-9436  ( 9105) [002] d..2 82316.112651: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
56357          <idle>-0     (-----) [001] d..2 82316.112667: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
56358    RenderThread-9436  ( 9105) [002] .... 82316.112726: binder_transaction: transaction=1569692 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
56359    RenderThread-9436  ( 9105) [002] .... 82316.112731: binder_transaction_alloc_buf: transaction=1569692 data_size=104 offsets_size=0
56360    RenderThread-9436  ( 9105) [002] d..4 82316.112737: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
56361    RenderThread-9436  ( 9105) [002] dn.5 82316.112760: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
56362<...>-9105 ( 9105) [001] d..2 82316.112767: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56363    RenderThread-9436  ( 9105) [002] d..2 82316.112771: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
56364<...>-13083 ( 8858) [002] .... 82316.112780: binder_transaction_received: transaction=1569692
56365          <idle>-0     (-----) [001] d..1 82316.112783: cpu_idle: state=0 cpu_id=1
56366<...>-13083 ( 8858) [002] .... 82316.112861: binder_transaction: transaction=1569693 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
56367<...>-13083 ( 8858) [002] .... 82316.112866: binder_transaction_alloc_buf: transaction=1569693 data_size=52 offsets_size=8
56368           <...>-27615 (-----) [005] ...1 82316.112866: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
56369           <...>-27615 (-----) [005] ...1 82316.112875: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
56370           <...>-27615 (-----) [005] ...1 82316.112879: tracing_mark_write: E|27550
56371<...>-13083 ( 8858) [002] d..2 82316.112919: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
56372    RenderThread-9436  ( 9105) [002] .... 82316.112930: binder_transaction_received: transaction=1569693
56373           <...>-27615 (-----) [005] .... 82316.112953: binder_transaction: transaction=1569694 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
56374           <...>-27615 (-----) [005] .... 82316.112956: binder_transaction_alloc_buf: transaction=1569694 data_size=556 offsets_size=104
56375           <...>-27615 (-----) [005] ...2 82316.112972: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
56376           <...>-27615 (-----) [005] d..4 82316.112974: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56377           <...>-27615 (-----) [005] dn.5 82316.112987: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56378           <...>-27615 (-----) [005] d..2 82316.112994: sched_switch: prev_comm=id.nn.benchmark prev_pid=27615 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56379<...>-5340 ( 788) [005] .... 82316.113004: binder_transaction_received: transaction=1569694
56380<...>-5340 ( 788) [005] ...1 82316.113049: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
56381<...>-5340 ( 788) [005] d..2 82316.113092: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
56382<...>-5340 ( 788) [005] d..2 82316.113118: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27615 next_prio=110
56383    RenderThread-9436  ( 9105) [002] dnh1 82316.113125: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
56384    RenderThread-9436  ( 9105) [002] d..2 82316.113140: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
56385           <...>-27615 (-----) [005] d..2 82316.113141: sched_switch: prev_comm=id.nn.benchmark prev_pid=27615 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
56386          <idle>-0     (-----) [005] d..1 82316.113158: cpu_idle: state=0 cpu_id=5
56387<...>-87 ( 87) [002] d..2 82316.113177: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
56388    RenderThread-9436  ( 9105) [002] d.h5 82316.113196: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56389    RenderThread-9436  ( 9105) [002] dnh6 82316.113218: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56390    RenderThread-9436  ( 9105) [002] d..2 82316.113232: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
56391<...>-86 ( 86) [002] d..2 82316.113260: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
56392    RenderThread-9436  ( 9105) [002] d.h5 82316.113280: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56393          <idle>-0     (-----) [005] dnh2 82316.113303: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56394          <idle>-0     (-----) [005] .n.1 82316.113307: cpu_idle: state=4294967295 cpu_id=5
56395          <idle>-0     (-----) [005] d..2 82316.113316: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56396<...>-5340 ( 788) [005] d..1 82316.113368: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56397    RenderThread-9436  ( 9105) [002] dnh1 82316.113408: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
56398    RenderThread-9436  ( 9105) [002] d..2 82316.113421: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
56399 neuralnetworks@-13088 (  788) [002] d..2 82316.113468: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
56400<...>-5340 ( 788) [005] d..2 82316.113530: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
56401    RenderThread-9436  ( 9105) [002] dnh1 82316.113555: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
56402<...>-5340 ( 788) [005] d..2 82316.113558: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
56403    RenderThread-9436  ( 9105) [002] d..2 82316.113567: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
56404          <idle>-0     (-----) [005] d..1 82316.113572: cpu_idle: state=0 cpu_id=5
56405<...>-87 ( 87) [002] d.h4 82316.113605: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56406<...>-87 ( 87) [002] d.h5 82316.113625: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56407<...>-87 ( 87) [002] d..2 82316.113642: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
56408<...>-86 ( 86) [002] d..2 82316.113669: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
56409          <idle>-0     (-----) [000] ...1 82316.113824: cpu_idle: state=4294967295 cpu_id=0
56410          <idle>-0     (-----) [000] d..1 82316.113830: cpu_idle: state=0 cpu_id=0
56411          <idle>-0     (-----) [001] ...1 82316.114094: cpu_idle: state=4294967295 cpu_id=1
56412          <idle>-0     (-----) [001] d..1 82316.114100: cpu_idle: state=0 cpu_id=1
56413    RenderThread-9436  ( 9105) [002] d..2 82316.114421: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
56414          <idle>-0     (-----) [002] d..1 82316.114439: cpu_idle: state=0 cpu_id=2
56415          <idle>-0     (-----) [002] d.h2 82316.114500: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
56416          <idle>-0     (-----) [002] d.h3 82316.114512: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
56417          <idle>-0     (-----) [002] dnh3 82316.114518: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
56418          <idle>-0     (-----) [002] .n.1 82316.114528: cpu_idle: state=4294967295 cpu_id=2
56419          <idle>-0     (-----) [000] d.h3 82316.114536: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
56420          <idle>-0     (-----) [002] d..2 82316.114541: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
56421          <idle>-0     (-----) [000] d.h4 82316.114558: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
56422          <idle>-0     (-----) [003] .n.1 82316.114564: cpu_idle: state=4294967295 cpu_id=3
56423          <idle>-0     (-----) [000] ...1 82316.114573: cpu_idle: state=4294967295 cpu_id=0
56424          <idle>-0     (-----) [003] d..2 82316.114573: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
56425          <idle>-0     (-----) [000] d..1 82316.114580: cpu_idle: state=0 cpu_id=0
56426 kgsl_worker_thr-258   (  258) [003] d..2 82316.114632: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
56427 kgsl_worker_thr-258   (  258) [003] d..3 82316.114677: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
56428 kgsl_worker_thr-258   (  258) [003] d..2 82316.114695: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
56429    RenderThread-9436  ( 9105) [002] .... 82316.114751: binder_transaction: transaction=1569697 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
56430    RenderThread-9436  ( 9105) [002] .... 82316.114756: binder_transaction_alloc_buf: transaction=1569697 data_size=192 offsets_size=8
56431    RenderThread-9436  ( 9105) [002] d..4 82316.114767: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
56432    RenderThread-9436  ( 9105) [002] dn.5 82316.114784: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
56433    RenderThread-9436  ( 9105) [002] d..2 82316.114795: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
56434<...>-13083 ( 8858) [002] .... 82316.114804: binder_transaction_received: transaction=1569697
56435  kworker/u16:15-1311  ( 1311) [003] d..2 82316.114907: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
56436          <idle>-0     (-----) [003] d..1 82316.114919: cpu_idle: state=0 cpu_id=3
56437<...>-13083 ( 8858) [002] .... 82316.114968: binder_transaction: transaction=1569698 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
56438<...>-13083 ( 8858) [002] .... 82316.114974: binder_transaction_alloc_buf: transaction=1569698 data_size=68 offsets_size=0
56439<...>-13083 ( 8858) [002] d..2 82316.115020: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
56440    RenderThread-9436  ( 9105) [002] .... 82316.115030: binder_transaction_received: transaction=1569698
56441          <idle>-0     (-----) [003] d.s2 82316.115144: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
56442          <idle>-0     (-----) [003] dns3 82316.115164: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
56443          <idle>-0     (-----) [003] .n.1 82316.115182: cpu_idle: state=4294967295 cpu_id=3
56444    RenderThread-9436  ( 9105) [002] d..2 82316.115190: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56445          <idle>-0     (-----) [003] d..2 82316.115192: 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
56446<...>-8 ( 8) [003] d..2 82316.115202: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
56447          <idle>-0     (-----) [002] d..1 82316.115210: cpu_idle: state=0 cpu_id=2
56448<...>-8 ( 8) [003] d..3 82316.115221: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
56449<...>-8 ( 8) [003] d..2 82316.115234: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
56450          <idle>-0     (-----) [002] d.h4 82316.115241: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56451<...>-46 ( 46) [003] d..2 82316.115246: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
56452<...>-46 ( 46) [003] d..3 82316.115260: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
56453          <idle>-0     (-----) [005] dnh2 82316.115265: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56454          <idle>-0     (-----) [005] .n.1 82316.115269: cpu_idle: state=4294967295 cpu_id=5
56455<...>-46 ( 46) [003] d..2 82316.115270: 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
56456          <idle>-0     (-----) [005] d..2 82316.115278: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56457          <idle>-0     (-----) [002] ...1 82316.115288: cpu_idle: state=4294967295 cpu_id=2
56458          <idle>-0     (-----) [002] d..1 82316.115294: cpu_idle: state=0 cpu_id=2
56459<...>-8 ( 8) [003] d..2 82316.115295: 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
56460          <idle>-0     (-----) [003] d..1 82316.115305: cpu_idle: state=0 cpu_id=3
56461<...>-5340 ( 788) [005] d..1 82316.115338: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
56462          <idle>-0     (-----) [002] dnh2 82316.115366: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
56463          <idle>-0     (-----) [002] .n.1 82316.115372: cpu_idle: state=4294967295 cpu_id=2
56464          <idle>-0     (-----) [002] d..2 82316.115385: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
56465<...>-5340 ( 788) [005] ...1 82316.115436: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
56466<...>-5340 ( 788) [005] ...1 82316.115440: tracing_mark_write: E|788
56467<...>-5340 ( 788) [005] .... 82316.115457: binder_transaction: transaction=1569699 dest_node=1569695 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
56468<...>-5340 ( 788) [005] .... 82316.115460: binder_transaction_alloc_buf: transaction=1569699 data_size=60 offsets_size=0
56469<...>-5340 ( 788) [005] d..4 82316.115464: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
56470 neuralnetworks@-13088 (  788) [002] d..2 82316.115471: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56471<...>-5340 ( 788) [005] d..5 82316.115478: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
56472          <idle>-0     (-----) [004] .n.1 82316.115484: cpu_idle: state=4294967295 cpu_id=4
56473          <idle>-0     (-----) [002] d..1 82316.115487: cpu_idle: state=0 cpu_id=2
56474          <idle>-0     (-----) [004] d..2 82316.115492: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
56475           <...>-27571 (-----) [004] .... 82316.115498: binder_transaction_received: transaction=1569699
56476<...>-5340 ( 788) [005] ...1 82316.115501: tracing_mark_write: E|788
56477<...>-5340 ( 788) [005] .... 82316.115507: binder_transaction: transaction=1569700 dest_node=0 dest_proc=27550 dest_thread=27615 reply=1 flags=0x0 code=0x0
56478<...>-5340 ( 788) [005] .... 82316.115509: binder_transaction_alloc_buf: transaction=1569700 data_size=8 offsets_size=0
56479<...>-5340 ( 788) [005] d..2 82316.115511: sched_waking: comm=id.nn.benchmark pid=27615 prio=110 target_cpu=005
56480           <...>-27571 (-----) [004] ...1 82316.115518: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
56481<...>-5340 ( 788) [005] d..3 82316.115518: sched_wakeup: comm=id.nn.benchmark pid=27615 prio=110 target_cpu=005
56482<...>-5340 ( 788) [005] .... 82316.115520: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
56483           <...>-27571 (-----) [004] ...1 82316.115524: tracing_mark_write: E|27550
56484          <idle>-0     (-----) [003] d.h2 82316.115530: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
56485          <idle>-0     (-----) [003] dnh3 82316.115547: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
56486           <...>-27571 (-----) [004] d..2 82316.115553: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56487          <idle>-0     (-----) [003] .n.1 82316.115556: cpu_idle: state=4294967295 cpu_id=3
56488          <idle>-0     (-----) [004] d..1 82316.115561: cpu_idle: state=0 cpu_id=4
56489<...>-5340 ( 788) [005] d..2 82316.115562: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27615 next_prio=110
56490          <idle>-0     (-----) [003] d..2 82316.115564: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
56491           <...>-27615 (-----) [005] .... 82316.115572: binder_transaction_received: transaction=1569700
56492        DispSync-8879  ( 8858) [003] d..1 82316.115581: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
56493        DispSync-8879  ( 8858) [003] d..2 82316.115598: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
56494          <idle>-0     (-----) [002] .n.1 82316.115605: cpu_idle: state=4294967295 cpu_id=2
56495           <...>-27615 (-----) [005] ...1 82316.115610: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
56496           <...>-27615 (-----) [005] ...1 82316.115616: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
56497          <idle>-0     (-----) [002] d..2 82316.115616: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
56498        DispSync-8879  ( 8858) [003] d..2 82316.115633: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
56499           <...>-27615 (-----) [005] ...1 82316.115642: tracing_mark_write: E|27550
56500          <idle>-0     (-----) [003] d..1 82316.115644: cpu_idle: state=0 cpu_id=3
56501           <...>-27615 (-----) [005] ...1 82316.115646: tracing_mark_write: E|27550
56502           <...>-27615 (-----) [005] ...1 82316.115649: tracing_mark_write: E|27550
56503   sfEventThread-8882  ( 8858) [002] d..3 82316.115662: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
56504   sfEventThread-8882  ( 8858) [002] d..4 82316.115690: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
56505          <idle>-0     (-----) [003] .n.1 82316.115696: cpu_idle: state=4294967295 cpu_id=3
56506          <idle>-0     (-----) [003] d..2 82316.115705: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
56507   sfEventThread-8882  ( 8858) [002] d..2 82316.115730: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56508          <idle>-0     (-----) [002] d..1 82316.115779: cpu_idle: state=0 cpu_id=2
56509           <...>-27615 (-----) [005] ...1 82316.115842: tracing_mark_write: E|27550
56510           <...>-27615 (-----) [005] d..1 82316.115855: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56511           <...>-27615 (-----) [005] d..2 82316.115870: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56512          <idle>-0     (-----) [004] .n.1 82316.115875: cpu_idle: state=4294967295 cpu_id=4
56513          <idle>-0     (-----) [004] d..2 82316.115882: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
56514           <...>-27550 (-----) [004] d..2 82316.115902: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56515          <idle>-0     (-----) [004] d..1 82316.115911: cpu_idle: state=0 cpu_id=4
56516           <...>-27615 (-----) [005] d..1 82316.115964: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56517           <...>-27615 (-----) [005] d..2 82316.115973: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56518          <idle>-0     (-----) [004] .n.1 82316.115978: cpu_idle: state=4294967295 cpu_id=4
56519          <idle>-0     (-----) [004] d..2 82316.115986: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
56520           <...>-27615 (-----) [005] d..2 82316.116014: sched_switch: prev_comm=id.nn.benchmark prev_pid=27615 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
56521           <...>-27550 (-----) [004] ...1 82316.116021: tracing_mark_write: E|27550
56522           <...>-27550 (-----) [004] ...1 82316.116025: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
56523           <...>-27550 (-----) [004] ...1 82316.116031: tracing_mark_write: E|27550
56524           <...>-27550 (-----) [004] ...1 82316.116035: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
56525          <idle>-0     (-----) [005] d..1 82316.116036: cpu_idle: state=0 cpu_id=5
56526           <...>-27550 (-----) [004] ...1 82316.116039: tracing_mark_write: E|27550
56527           <...>-27550 (-----) [004] ...1 82316.116043: tracing_mark_write: E|27550
56528          <idle>-0     (-----) [000] ...1 82316.116086: cpu_idle: state=4294967295 cpu_id=0
56529          <idle>-0     (-----) [000] d..1 82316.116091: cpu_idle: state=0 cpu_id=0
56530  surfaceflinger-8858  ( 8858) [003] d..1 82316.116097: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
56531  surfaceflinger-8858  ( 8858) [003] d..2 82316.116119: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
56532          <idle>-0     (-----) [002] .n.1 82316.116126: cpu_idle: state=4294967295 cpu_id=2
56533          <idle>-0     (-----) [002] d..2 82316.116137: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
56534           <...>-27550 (-----) [004] ...1 82316.116156: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
56535   sfEventThread-8882  ( 8858) [002] d..2 82316.116178: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56536          <idle>-0     (-----) [002] d..1 82316.116191: cpu_idle: state=0 cpu_id=2
56537           <...>-27550 (-----) [004] ...1 82316.116214: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
56538           <...>-27550 (-----) [004] ...1 82316.116219: tracing_mark_write: E|27550
56539           <...>-27550 (-----) [004] ...1 82316.116223: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
56540           <...>-27550 (-----) [004] ...1 82316.116228: tracing_mark_write: E|27550
56541           <...>-27550 (-----) [004] ...1 82316.116232: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
56542           <...>-27550 (-----) [004] ...1 82316.116236: tracing_mark_write: E|27550
56543           <...>-27550 (-----) [004] ...1 82316.116239: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
56544  surfaceflinger-8858  ( 8858) [003] ...1 82316.116326: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
56545  surfaceflinger-8858  ( 8858) [003] ...1 82316.116333: tracing_mark_write: E|8858
56546          <idle>-0     (-----) [005] .n.1 82316.116335: cpu_idle: state=4294967295 cpu_id=5
56547           <...>-27550 (-----) [004] ...1 82316.116336: tracing_mark_write: E|27550
56548           <...>-27550 (-----) [004] ...1 82316.116340: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
56549          <idle>-0     (-----) [005] d..2 82316.116344: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27616 next_prio=110
56550           <...>-27550 (-----) [004] d..2 82316.116358: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56551          <idle>-0     (-----) [004] d..1 82316.116372: cpu_idle: state=0 cpu_id=4
56552  surfaceflinger-8858  ( 8858) [003] .... 82316.116388: binder_transaction: transaction=1569701 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
56553  surfaceflinger-8858  ( 8858) [003] .... 82316.116393: binder_transaction_alloc_buf: transaction=1569701 data_size=540 offsets_size=96
56554           <...>-27616 (-----) [005] ...1 82316.116404: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
56555           <...>-27616 (-----) [005] ...1 82316.116418: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
56556  surfaceflinger-8858  ( 8858) [003] ...2 82316.116419: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
56557           <...>-27616 (-----) [005] ...1 82316.116422: tracing_mark_write: E|27550
56558  surfaceflinger-8858  ( 8858) [003] d..4 82316.116427: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
56559           <...>-27616 (-----) [005] .... 82316.116444: binder_transaction: transaction=1569702 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
56560           <...>-27616 (-----) [005] .... 82316.116449: binder_transaction_alloc_buf: transaction=1569702 data_size=48 offsets_size=0
56561  surfaceflinger-8858  ( 8858) [003] d..5 82316.116449: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
56562           <...>-27616 (-----) [005] ...2 82316.116452: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
56563          <idle>-0     (-----) [001] .n.1 82316.116453: cpu_idle: state=4294967295 cpu_id=1
56564           <...>-27616 (-----) [005] d..4 82316.116455: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
56565           <...>-27616 (-----) [005] dn.5 82316.116465: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
56566          <idle>-0     (-----) [001] d..2 82316.116467: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
56567           <...>-27616 (-----) [005] d..2 82316.116472: sched_switch: prev_comm=id.nn.benchmark prev_pid=27616 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
56568 [email protected]   (  619) [001] .... 82316.116479: binder_transaction_received: transaction=1569701
56569<...>-770 ( 770) [005] .... 82316.116482: binder_transaction_received: transaction=1569702
56570  surfaceflinger-8858  ( 8858) [003] d..2 82316.116486: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
56571          <idle>-0     (-----) [003] d..1 82316.116501: cpu_idle: state=0 cpu_id=3
56572<...>-770 ( 770) [005] ...1 82316.116508: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
56573 [email protected]   (  619) [001] ...1 82316.116527: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
56574<...>-770 ( 770) [005] d..2 82316.116590: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
56575 [email protected]   (  619) [001] d.h1 82316.116619: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
56576<...>-770 ( 770) [005] ...1 82316.116632: tracing_mark_write: E|770
56577<...>-770 ( 770) [005] .... 82316.116639: binder_transaction: transaction=1569703 dest_node=0 dest_proc=27550 dest_thread=27616 reply=1 flags=0x0 code=0x0
56578<...>-770 ( 770) [005] .... 82316.116642: binder_transaction_alloc_buf: transaction=1569703 data_size=168 offsets_size=32
56579<...>-770 ( 770) [005] .... 82316.116649: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
56580 [email protected]   (  619) [001] ...1 82316.116664: tracing_mark_write: B|619|HWCSession::PresentDisplay::
56581<...>-770 ( 770) [005] d..2 82316.116685: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27616 next_prio=110
56582           <...>-27616 (-----) [005] .... 82316.116696: binder_transaction_received: transaction=1569703
56583           <...>-27616 (-----) [005] ...1 82316.116772: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
56584           <...>-27616 (-----) [005] ...1 82316.116777: tracing_mark_write: E|27550
56585           <...>-27616 (-----) [005] .... 82316.116791: binder_transaction: transaction=1569704 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
56586           <...>-27616 (-----) [005] .... 82316.116795: binder_transaction_alloc_buf: transaction=1569704 data_size=48 offsets_size=0
56587           <...>-27616 (-----) [005] ...2 82316.116797: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
56588           <...>-27616 (-----) [005] d..4 82316.116800: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
56589           <...>-27616 (-----) [005] dn.5 82316.116809: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
56590           <...>-27616 (-----) [005] d..2 82316.116816: sched_switch: prev_comm=id.nn.benchmark prev_pid=27616 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
56591<...>-770 ( 770) [005] .... 82316.116824: binder_transaction_received: transaction=1569704
56592<...>-770 ( 770) [005] ...1 82316.116840: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
56593 [email protected]   (  619) [001] ...1 82316.116850: tracing_mark_write: B|619|HWDeviceDRM::Commit::
56594 [email protected]   (  619) [001] ...1 82316.116865: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
56595<...>-770 ( 770) [005] ...1 82316.116920: tracing_mark_write: E|770
56596<...>-770 ( 770) [005] .... 82316.116927: binder_transaction: transaction=1569705 dest_node=0 dest_proc=27550 dest_thread=27616 reply=1 flags=0x0 code=0x0
56597<...>-770 ( 770) [005] .... 82316.116930: binder_transaction_alloc_buf: transaction=1569705 data_size=168 offsets_size=32
56598<...>-770 ( 770) [005] .... 82316.116936: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
56599<...>-770 ( 770) [005] d..2 82316.116971: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27616 next_prio=110
56600           <...>-27616 (-----) [005] .... 82316.116981: binder_transaction_received: transaction=1569705
56601           <...>-27616 (-----) [005] ...1 82316.117255: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
56602           <...>-27616 (-----) [005] ...1 82316.117266: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
56603           <...>-27616 (-----) [005] ...1 82316.117269: tracing_mark_write: E|27550
56604          <idle>-0     (-----) [002] ...1 82316.117318: cpu_idle: state=4294967295 cpu_id=2
56605          <idle>-0     (-----) [002] d..1 82316.117323: cpu_idle: state=0 cpu_id=2
56606           <...>-27616 (-----) [005] .... 82316.117333: binder_transaction: transaction=1569706 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
56607           <...>-27616 (-----) [005] .... 82316.117336: binder_transaction_alloc_buf: transaction=1569706 data_size=556 offsets_size=104
56608           <...>-27616 (-----) [005] ...2 82316.117350: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
56609           <...>-27616 (-----) [005] d..4 82316.117353: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56610           <...>-27616 (-----) [005] dn.5 82316.117364: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56611           <...>-27616 (-----) [005] d..2 82316.117372: sched_switch: prev_comm=id.nn.benchmark prev_pid=27616 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56612<...>-5340 ( 788) [005] .... 82316.117382: binder_transaction_received: transaction=1569706
56613<...>-5340 ( 788) [005] ...1 82316.117429: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
56614<...>-5340 ( 788) [005] d..2 82316.117475: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
56615<...>-5340 ( 788) [005] d..2 82316.117515: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27616 next_prio=110
56616 [email protected]   (  619) [001] d.h1 82316.117522: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
56617           <...>-27616 (-----) [005] d..2 82316.117538: sched_switch: prev_comm=id.nn.benchmark prev_pid=27616 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
56618 [email protected]   (  619) [001] d..2 82316.117548: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
56619          <idle>-0     (-----) [005] d..1 82316.117556: cpu_idle: state=0 cpu_id=5
56620 [email protected]   (  619) [001] d..3 82316.117573: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
56621          <idle>-0     (-----) [000] .n.1 82316.117578: cpu_idle: state=4294967295 cpu_id=0
56622          <idle>-0     (-----) [000] d..2 82316.117592: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
56623 [email protected]   (  619) [001] ...1 82316.117687: tracing_mark_write: E|619
56624 [email protected]   (  619) [001] ...1 82316.117695: tracing_mark_write: E|619
56625 [email protected]   (  619) [001] ...1 82316.117763: tracing_mark_write: E|619
56626 [email protected]   (  619) [001] ...1 82316.117813: tracing_mark_write: E|619
56627 [email protected]   (  619) [001] .... 82316.117829: binder_transaction: transaction=1569709 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
56628 [email protected]   (  619) [001] .... 82316.117834: binder_transaction_alloc_buf: transaction=1569709 data_size=576 offsets_size=112
56629 [email protected]   (  619) [001] d..2 82316.117858: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
56630 [email protected]   (  619) [001] d..3 82316.117877: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
56631 [email protected]   (  619) [001] .... 82316.117883: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
56632          <idle>-0     (-----) [003] .n.1 82316.117884: cpu_idle: state=4294967295 cpu_id=3
56633          <idle>-0     (-----) [003] d..2 82316.117893: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
56634  surfaceflinger-8858  ( 8858) [003] .... 82316.117903: binder_transaction_received: transaction=1569709
56635 [email protected]   (  619) [001] d..2 82316.117964: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
56636<...>-87 ( 87) [001] d..2 82316.118005: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
56637          <idle>-0     (-----) [002] d.h4 82316.118021: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56638          <idle>-0     (-----) [002] dnh5 82316.118042: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56639          <idle>-0     (-----) [002] .n.1 82316.118052: cpu_idle: state=4294967295 cpu_id=2
56640          <idle>-0     (-----) [002] d..2 82316.118065: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
56641<...>-86 ( 86) [002] d.h4 82316.118096: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56642          <idle>-0     (-----) [005] dnh2 82316.118119: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56643          <idle>-0     (-----) [005] .n.1 82316.118124: cpu_idle: state=4294967295 cpu_id=5
56644          <idle>-0     (-----) [005] d..2 82316.118132: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56645<...>-581 ( 571) [001] d..2 82316.118138: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56646          <idle>-0     (-----) [001] d..1 82316.118159: cpu_idle: state=0 cpu_id=1
56647<...>-86 ( 86) [002] d..2 82316.118164: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56648          <idle>-0     (-----) [002] d..1 82316.118180: cpu_idle: state=0 cpu_id=2
56649<...>-5340 ( 788) [005] d..1 82316.118187: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
56650 crtc_commit:111-321   (  321) [000] d.h1 82316.118228: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56651 crtc_commit:111-321   (  321) [000] d..2 82316.118324: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
56652<...>-5340 ( 788) [005] d..2 82316.118349: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
56653  surfaceflinger-8858  ( 8858) [003] d..2 82316.118363: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
56654          <idle>-0     (-----) [001] dnh2 82316.118374: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
56655<...>-5340 ( 788) [005] d..2 82316.118375: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
56656          <idle>-0     (-----) [003] d..1 82316.118378: cpu_idle: state=0 cpu_id=3
56657          <idle>-0     (-----) [001] .n.1 82316.118381: cpu_idle: state=4294967295 cpu_id=1
56658 neuralnetworks@-13088 (  788) [000] d..2 82316.118385: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56659          <idle>-0     (-----) [005] d..1 82316.118388: cpu_idle: state=0 cpu_id=5
56660          <idle>-0     (-----) [001] d..2 82316.118395: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
56661          <idle>-0     (-----) [000] d..1 82316.118403: cpu_idle: state=0 cpu_id=0
56662          <idle>-0     (-----) [002] d.h4 82316.118436: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56663<...>-87 ( 87) [001] d..2 82316.118438: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
56664          <idle>-0     (-----) [002] dnh5 82316.118450: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56665          <idle>-0     (-----) [002] .n.1 82316.118462: cpu_idle: state=4294967295 cpu_id=2
56666          <idle>-0     (-----) [002] d..2 82316.118476: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
56667          <idle>-0     (-----) [003] d.s2 82316.118478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
56668          <idle>-0     (-----) [001] d..1 82316.118499: cpu_idle: state=0 cpu_id=1
56669<...>-86 ( 86) [002] d..2 82316.118517: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56670          <idle>-0     (-----) [003] d.s3 82316.118522: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
56671          <idle>-0     (-----) [001] .n.1 82316.118527: cpu_idle: state=4294967295 cpu_id=1
56672          <idle>-0     (-----) [003] d.s3 82316.118530: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
56673          <idle>-0     (-----) [002] d..1 82316.118531: cpu_idle: state=0 cpu_id=2
56674          <idle>-0     (-----) [001] d..2 82316.118541: 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
56675          <idle>-0     (-----) [003] dns4 82316.118547: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
56676     rcu_preempt-7     (    7) [001] d..2 82316.118553: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
56677          <idle>-0     (-----) [003] .n.1 82316.118566: cpu_idle: state=4294967295 cpu_id=3
56678          <idle>-0     (-----) [003] d..2 82316.118577: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
56679     rcu_preempt-7     (    7) [001] d..3 82316.118602: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
56680     rcu_preempt-7     (    7) [001] d..2 82316.118634: 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
56681         rcuop/4-45    (   45) [001] d..2 82316.118645: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
56682  kworker/u16:15-1311  ( 1311) [003] .... 82316.118668: clk_set_rate: l3_cluster0_vote_clk 403200000
56683         rcuop/4-45    (   45) [001] d..3 82316.118682: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
56684         rcuop/4-45    (   45) [001] d..2 82316.118695: 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
56685         rcuop/5-53    (   53) [001] d..2 82316.118818: 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
56686          <idle>-0     (-----) [001] d..1 82316.118834: cpu_idle: state=0 cpu_id=1
56687  kworker/u16:15-1311  ( 1311) [003] d..2 82316.118941: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
56688          <idle>-0     (-----) [003] d..1 82316.118953: cpu_idle: state=0 cpu_id=3
56689          <idle>-0     (-----) [001] d.s3 82316.118978: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
56690          <idle>-0     (-----) [001] d.s4 82316.118990: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
56691          <idle>-0     (-----) [001] d.s4 82316.119000: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
56692          <idle>-0     (-----) [003] .n.1 82316.119007: cpu_idle: state=4294967295 cpu_id=3
56693          <idle>-0     (-----) [001] ...1 82316.119010: cpu_idle: state=4294967295 cpu_id=1
56694          <idle>-0     (-----) [001] d..1 82316.119017: cpu_idle: state=0 cpu_id=1
56695          <idle>-0     (-----) [003] d..2 82316.119018: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
56696  kworker/u16:15-1311  ( 1311) [003] d..2 82316.119074: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
56697          <idle>-0     (-----) [003] d..1 82316.119083: cpu_idle: state=0 cpu_id=3
56698          <idle>-0     (-----) [002] ...1 82316.119732: cpu_idle: state=4294967295 cpu_id=2
56699          <idle>-0     (-----) [002] d..1 82316.119737: cpu_idle: state=0 cpu_id=2
56700          <idle>-0     (-----) [002] d.h4 82316.120107: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56701          <idle>-0     (-----) [005] dnh2 82316.120130: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56702          <idle>-0     (-----) [005] .n.1 82316.120134: cpu_idle: state=4294967295 cpu_id=5
56703          <idle>-0     (-----) [005] d..2 82316.120143: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56704          <idle>-0     (-----) [002] ...1 82316.120149: cpu_idle: state=4294967295 cpu_id=2
56705          <idle>-0     (-----) [002] d..1 82316.120155: cpu_idle: state=0 cpu_id=2
56706<...>-5340 ( 788) [005] d..1 82316.120197: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56707          <idle>-0     (-----) [000] dnh2 82316.120224: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56708          <idle>-0     (-----) [000] .n.1 82316.120231: cpu_idle: state=4294967295 cpu_id=0
56709          <idle>-0     (-----) [000] d..2 82316.120278: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
56710<...>-5340 ( 788) [005] ...1 82316.120292: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
56711<...>-5340 ( 788) [005] ...1 82316.120296: tracing_mark_write: E|788
56712<...>-5340 ( 788) [005] .... 82316.120313: binder_transaction: transaction=1569710 dest_node=1569707 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
56713 neuralnetworks@-13088 (  788) [000] d..2 82316.120313: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56714<...>-5340 ( 788) [005] .... 82316.120316: binder_transaction_alloc_buf: transaction=1569710 data_size=60 offsets_size=0
56715<...>-5340 ( 788) [005] d..4 82316.120319: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
56716          <idle>-0     (-----) [000] d..1 82316.120327: cpu_idle: state=0 cpu_id=0
56717<...>-5340 ( 788) [005] d..5 82316.120331: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
56718          <idle>-0     (-----) [004] .n.1 82316.120337: cpu_idle: state=4294967295 cpu_id=4
56719          <idle>-0     (-----) [004] d..2 82316.120346: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
56720           <...>-27571 (-----) [004] .... 82316.120351: binder_transaction_received: transaction=1569710
56721<...>-5340 ( 788) [005] ...1 82316.120355: tracing_mark_write: E|788
56722<...>-5340 ( 788) [005] .... 82316.120361: binder_transaction: transaction=1569711 dest_node=0 dest_proc=27550 dest_thread=27616 reply=1 flags=0x0 code=0x0
56723<...>-5340 ( 788) [005] .... 82316.120363: binder_transaction_alloc_buf: transaction=1569711 data_size=8 offsets_size=0
56724<...>-5340 ( 788) [005] d..2 82316.120365: sched_waking: comm=id.nn.benchmark pid=27616 prio=110 target_cpu=005
56725           <...>-27571 (-----) [004] ...1 82316.120369: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
56726<...>-5340 ( 788) [005] d..3 82316.120372: sched_wakeup: comm=id.nn.benchmark pid=27616 prio=110 target_cpu=005
56727<...>-5340 ( 788) [005] .... 82316.120374: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
56728           <...>-27571 (-----) [004] ...1 82316.120375: tracing_mark_write: E|27550
56729           <...>-27571 (-----) [004] d..2 82316.120405: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56730          <idle>-0     (-----) [004] d..1 82316.120413: cpu_idle: state=0 cpu_id=4
56731<...>-5340 ( 788) [005] d..2 82316.120417: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27616 next_prio=110
56732           <...>-27616 (-----) [005] .... 82316.120427: binder_transaction_received: transaction=1569711
56733           <...>-27616 (-----) [005] ...1 82316.120463: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
56734           <...>-27616 (-----) [005] ...1 82316.120469: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
56735           <...>-27616 (-----) [005] ...1 82316.120496: tracing_mark_write: E|27550
56736           <...>-27616 (-----) [005] ...1 82316.120499: tracing_mark_write: E|27550
56737           <...>-27616 (-----) [005] ...1 82316.120502: tracing_mark_write: E|27550
56738           <...>-27616 (-----) [005] ...1 82316.120696: tracing_mark_write: E|27550
56739           <...>-27616 (-----) [005] d..1 82316.120709: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56740           <...>-27616 (-----) [005] d..2 82316.120726: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56741          <idle>-0     (-----) [004] .n.1 82316.120731: cpu_idle: state=4294967295 cpu_id=4
56742          <idle>-0     (-----) [004] d..2 82316.120737: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
56743           <...>-27550 (-----) [004] d..2 82316.120757: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56744          <idle>-0     (-----) [004] d..1 82316.120766: cpu_idle: state=0 cpu_id=4
56745           <...>-27616 (-----) [005] d..1 82316.120814: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56746           <...>-27616 (-----) [005] d..2 82316.120823: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56747          <idle>-0     (-----) [004] .n.1 82316.120828: cpu_idle: state=4294967295 cpu_id=4
56748          <idle>-0     (-----) [004] d..2 82316.120836: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
56749           <...>-27616 (-----) [005] d..2 82316.120863: sched_switch: prev_comm=id.nn.benchmark prev_pid=27616 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
56750           <...>-27550 (-----) [004] ...1 82316.120870: tracing_mark_write: E|27550
56751           <...>-27550 (-----) [004] ...1 82316.120875: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
56752           <...>-27550 (-----) [004] ...1 82316.120881: tracing_mark_write: E|27550
56753           <...>-27550 (-----) [004] ...1 82316.120885: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
56754          <idle>-0     (-----) [005] d..1 82316.120885: cpu_idle: state=0 cpu_id=5
56755           <...>-27550 (-----) [004] ...1 82316.120888: tracing_mark_write: E|27550
56756           <...>-27550 (-----) [004] ...1 82316.120893: tracing_mark_write: E|27550
56757           <...>-27550 (-----) [004] ...1 82316.121006: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
56758           <...>-27550 (-----) [004] ...1 82316.121064: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
56759           <...>-27550 (-----) [004] ...1 82316.121070: tracing_mark_write: E|27550
56760           <...>-27550 (-----) [004] ...1 82316.121074: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
56761           <...>-27550 (-----) [004] ...1 82316.121080: tracing_mark_write: E|27550
56762           <...>-27550 (-----) [004] ...1 82316.121083: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
56763           <...>-27550 (-----) [004] ...1 82316.121088: tracing_mark_write: E|27550
56764           <...>-27550 (-----) [004] ...1 82316.121093: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
56765          <idle>-0     (-----) [005] .n.1 82316.121184: cpu_idle: state=4294967295 cpu_id=5
56766           <...>-27550 (-----) [004] ...1 82316.121186: tracing_mark_write: E|27550
56767           <...>-27550 (-----) [004] ...1 82316.121190: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
56768          <idle>-0     (-----) [005] d..2 82316.121193: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27617 next_prio=110
56769           <...>-27550 (-----) [004] d..2 82316.121206: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56770          <idle>-0     (-----) [004] d..1 82316.121221: cpu_idle: state=0 cpu_id=4
56771           <...>-27617 (-----) [005] ...1 82316.121254: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
56772           <...>-27617 (-----) [005] ...1 82316.121269: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
56773           <...>-27617 (-----) [005] ...1 82316.121273: tracing_mark_write: E|27550
56774           <...>-27617 (-----) [005] .... 82316.121295: binder_transaction: transaction=1569712 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
56775           <...>-27617 (-----) [005] .... 82316.121300: binder_transaction_alloc_buf: transaction=1569712 data_size=48 offsets_size=0
56776           <...>-27617 (-----) [005] ...2 82316.121303: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
56777           <...>-27617 (-----) [005] d..4 82316.121306: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
56778           <...>-27617 (-----) [005] dn.5 82316.121317: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
56779           <...>-27617 (-----) [005] d..2 82316.121323: sched_switch: prev_comm=id.nn.benchmark prev_pid=27617 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
56780<...>-770 ( 770) [005] .... 82316.121334: binder_transaction_received: transaction=1569712
56781<...>-770 ( 770) [005] ...1 82316.121357: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
56782<...>-770 ( 770) [005] d..2 82316.121440: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
56783          <idle>-0     (-----) [000] dnh2 82316.121479: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
56784          <idle>-0     (-----) [000] .n.1 82316.121486: cpu_idle: state=4294967295 cpu_id=0
56785<...>-770 ( 770) [005] ...1 82316.121493: tracing_mark_write: E|770
56786          <idle>-0     (-----) [000] d..2 82316.121497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
56787<...>-770 ( 770) [005] .... 82316.121502: binder_transaction: transaction=1569713 dest_node=0 dest_proc=27550 dest_thread=27617 reply=1 flags=0x0 code=0x0
56788<...>-770 ( 770) [005] .... 82316.121504: binder_transaction_alloc_buf: transaction=1569713 data_size=168 offsets_size=32
56789<...>-770 ( 770) [005] .... 82316.121511: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
56790<...>-770 ( 770) [005] d..2 82316.121547: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27617 next_prio=110
56791           <...>-27617 (-----) [005] .... 82316.121559: binder_transaction_received: transaction=1569713
56792<...>-581 ( 571) [000] d..2 82316.121590: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56793          <idle>-0     (-----) [000] d..1 82316.121607: cpu_idle: state=0 cpu_id=0
56794           <...>-27617 (-----) [005] ...1 82316.121629: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
56795           <...>-27617 (-----) [005] ...1 82316.121634: tracing_mark_write: E|27550
56796           <...>-27617 (-----) [005] .... 82316.121649: binder_transaction: transaction=1569714 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
56797           <...>-27617 (-----) [005] .... 82316.121652: binder_transaction_alloc_buf: transaction=1569714 data_size=48 offsets_size=0
56798           <...>-27617 (-----) [005] ...2 82316.121654: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
56799           <...>-27617 (-----) [005] d..4 82316.121657: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
56800           <...>-27617 (-----) [005] dn.5 82316.121667: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
56801           <...>-27617 (-----) [005] d..2 82316.121673: sched_switch: prev_comm=id.nn.benchmark prev_pid=27617 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
56802<...>-770 ( 770) [005] .... 82316.121681: binder_transaction_received: transaction=1569714
56803<...>-770 ( 770) [005] ...1 82316.121699: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
56804<...>-770 ( 770) [005] d..2 82316.121757: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
56805          <idle>-0     (-----) [000] dnh2 82316.121787: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
56806          <idle>-0     (-----) [000] .n.1 82316.121795: cpu_idle: state=4294967295 cpu_id=0
56807          <idle>-0     (-----) [003] d.s2 82316.121805: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
56808          <idle>-0     (-----) [000] d..2 82316.121809: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
56809          <idle>-0     (-----) [003] dns3 82316.121824: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
56810<...>-770 ( 770) [005] ...1 82316.121826: tracing_mark_write: E|770
56811<...>-770 ( 770) [005] .... 82316.121834: binder_transaction: transaction=1569715 dest_node=0 dest_proc=27550 dest_thread=27617 reply=1 flags=0x0 code=0x0
56812          <idle>-0     (-----) [003] .n.1 82316.121836: cpu_idle: state=4294967295 cpu_id=3
56813<...>-770 ( 770) [005] .... 82316.121837: binder_transaction_alloc_buf: transaction=1569715 data_size=168 offsets_size=32
56814<...>-770 ( 770) [005] .... 82316.121843: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
56815          <idle>-0     (-----) [003] d..2 82316.121846: 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
56816<...>-770 ( 770) [005] d..2 82316.121877: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27617 next_prio=110
56817<...>-8 ( 8) [003] d..2 82316.121886: 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
56818<...>-581 ( 571) [000] d..2 82316.121887: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56819           <...>-27617 (-----) [005] .... 82316.121888: binder_transaction_received: transaction=1569715
56820          <idle>-0     (-----) [003] d..1 82316.121900: cpu_idle: state=0 cpu_id=3
56821          <idle>-0     (-----) [000] d..1 82316.121903: cpu_idle: state=0 cpu_id=0
56822           <...>-27617 (-----) [005] ...1 82316.122166: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
56823           <...>-27617 (-----) [005] ...1 82316.122177: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
56824           <...>-27617 (-----) [005] ...1 82316.122181: tracing_mark_write: E|27550
56825           <...>-27617 (-----) [005] .... 82316.122242: binder_transaction: transaction=1569716 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
56826           <...>-27617 (-----) [005] .... 82316.122245: binder_transaction_alloc_buf: transaction=1569716 data_size=556 offsets_size=104
56827           <...>-27617 (-----) [005] ...2 82316.122259: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
56828           <...>-27617 (-----) [005] d..4 82316.122262: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56829           <...>-27617 (-----) [005] dn.5 82316.122274: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56830           <...>-27617 (-----) [005] d..2 82316.122280: sched_switch: prev_comm=id.nn.benchmark prev_pid=27617 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56831<...>-5340 ( 788) [005] .... 82316.122290: binder_transaction_received: transaction=1569716
56832<...>-5340 ( 788) [005] ...1 82316.122337: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
56833<...>-5340 ( 788) [005] d..2 82316.122384: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
56834<...>-5340 ( 788) [005] d..2 82316.122419: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27617 next_prio=110
56835          <idle>-0     (-----) [000] dnh2 82316.122424: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
56836          <idle>-0     (-----) [000] .n.1 82316.122431: cpu_idle: state=4294967295 cpu_id=0
56837           <...>-27617 (-----) [005] d..2 82316.122442: sched_switch: prev_comm=id.nn.benchmark prev_pid=27617 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
56838          <idle>-0     (-----) [000] d..2 82316.122443: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
56839          <idle>-0     (-----) [005] d..1 82316.122460: cpu_idle: state=0 cpu_id=5
56840<...>-87 ( 87) [000] d..2 82316.122492: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56841          <idle>-0     (-----) [002] d.h4 82316.122496: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
56842          <idle>-0     (-----) [000] d..1 82316.122504: cpu_idle: state=0 cpu_id=0
56843          <idle>-0     (-----) [002] d.h5 82316.122536: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
56844          <idle>-0     (-----) [000] .n.1 82316.122542: cpu_idle: state=4294967295 cpu_id=0
56845          <idle>-0     (-----) [002] ...1 82316.122548: cpu_idle: state=4294967295 cpu_id=2
56846          <idle>-0     (-----) [000] d..2 82316.122554: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
56847          <idle>-0     (-----) [002] d..1 82316.122555: cpu_idle: state=0 cpu_id=2
56848          <idle>-0     (-----) [002] d.h4 82316.122590: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56849          <idle>-0     (-----) [005] dnh2 82316.122612: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56850          <idle>-0     (-----) [005] .n.1 82316.122617: cpu_idle: state=4294967295 cpu_id=5
56851          <idle>-0     (-----) [005] d..2 82316.122625: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56852          <idle>-0     (-----) [002] ...1 82316.122631: cpu_idle: state=4294967295 cpu_id=2
56853          <idle>-0     (-----) [002] d..1 82316.122637: cpu_idle: state=0 cpu_id=2
56854<...>-86 ( 86) [000] d..2 82316.122643: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56855          <idle>-0     (-----) [000] d..1 82316.122657: cpu_idle: state=0 cpu_id=0
56856<...>-5340 ( 788) [005] d..1 82316.122677: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56857          <idle>-0     (-----) [000] dnh2 82316.122704: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56858          <idle>-0     (-----) [000] .n.1 82316.122712: cpu_idle: state=4294967295 cpu_id=0
56859          <idle>-0     (-----) [000] d..2 82316.122723: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
56860 neuralnetworks@-13088 (  788) [000] d..2 82316.122772: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56861          <idle>-0     (-----) [000] d..1 82316.122787: cpu_idle: state=0 cpu_id=0
56862<...>-5340 ( 788) [005] d..2 82316.122824: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
56863          <idle>-0     (-----) [000] dnh2 82316.122846: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
56864<...>-5340 ( 788) [005] d..2 82316.122849: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
56865          <idle>-0     (-----) [000] .n.1 82316.122854: cpu_idle: state=4294967295 cpu_id=0
56866          <idle>-0     (-----) [005] d..1 82316.122863: cpu_idle: state=0 cpu_id=5
56867          <idle>-0     (-----) [000] d..2 82316.122866: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
56868          <idle>-0     (-----) [002] d.h4 82316.122905: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
56869<...>-87 ( 87) [000] d..2 82316.122907: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56870          <idle>-0     (-----) [002] d.h5 82316.122923: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
56871          <idle>-0     (-----) [000] d..2 82316.122932: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
56872          <idle>-0     (-----) [002] ...1 82316.122944: cpu_idle: state=4294967295 cpu_id=2
56873          <idle>-0     (-----) [002] d..1 82316.122950: cpu_idle: state=0 cpu_id=2
56874<...>-86 ( 86) [000] d..2 82316.122973: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56875          <idle>-0     (-----) [000] d..1 82316.122984: cpu_idle: state=0 cpu_id=0
56876          <idle>-0     (-----) [000] d.h5 82316.123500: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56877          <idle>-0     (-----) [000] d.h6 82316.123523: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56878          <idle>-0     (-----) [000] d.h5 82316.123528: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
56879          <idle>-0     (-----) [002] .n.1 82316.123528: cpu_idle: state=4294967295 cpu_id=2
56880          <idle>-0     (-----) [000] dnh6 82316.123537: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
56881          <idle>-0     (-----) [002] d..2 82316.123542: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
56882          <idle>-0     (-----) [000] .n.1 82316.123553: cpu_idle: state=4294967295 cpu_id=0
56883          <idle>-0     (-----) [000] d..2 82316.123564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
56884  crtc_event:111-322   (  322) [002] d..2 82316.123581: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56885          <idle>-0     (-----) [002] d..1 82316.123592: cpu_idle: state=0 cpu_id=2
56886 crtc_commit:111-321   (  321) [000] d..2 82316.123710: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
56887          <idle>-0     (-----) [000] d..1 82316.123721: cpu_idle: state=0 cpu_id=0
56888          <idle>-0     (-----) [002] d.h4 82316.124683: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56889          <idle>-0     (-----) [005] dnh2 82316.124705: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
56890          <idle>-0     (-----) [005] .n.1 82316.124709: cpu_idle: state=4294967295 cpu_id=5
56891          <idle>-0     (-----) [005] d..2 82316.124717: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
56892          <idle>-0     (-----) [002] ...1 82316.124723: cpu_idle: state=4294967295 cpu_id=2
56893          <idle>-0     (-----) [002] d..1 82316.124732: cpu_idle: state=0 cpu_id=2
56894<...>-5340 ( 788) [005] d..1 82316.124768: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56895          <idle>-0     (-----) [000] dnh2 82316.124799: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
56896          <idle>-0     (-----) [000] .n.1 82316.124806: cpu_idle: state=4294967295 cpu_id=0
56897          <idle>-0     (-----) [000] d..2 82316.124815: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
56898<...>-5340 ( 788) [005] ...1 82316.124864: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
56899<...>-5340 ( 788) [005] ...1 82316.124868: tracing_mark_write: E|788
56900<...>-5340 ( 788) [005] .... 82316.124883: binder_transaction: transaction=1569719 dest_node=1569717 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
56901 neuralnetworks@-13088 (  788) [000] d..2 82316.124885: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56902<...>-5340 ( 788) [005] .... 82316.124886: binder_transaction_alloc_buf: transaction=1569719 data_size=60 offsets_size=0
56903<...>-5340 ( 788) [005] d..4 82316.124889: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
56904          <idle>-0     (-----) [000] d..1 82316.124894: cpu_idle: state=0 cpu_id=0
56905<...>-5340 ( 788) [005] d..5 82316.124901: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
56906          <idle>-0     (-----) [004] .n.1 82316.124907: cpu_idle: state=4294967295 cpu_id=4
56907          <idle>-0     (-----) [004] d..2 82316.124915: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
56908           <...>-27571 (-----) [004] .... 82316.124920: binder_transaction_received: transaction=1569719
56909<...>-5340 ( 788) [005] ...1 82316.124924: tracing_mark_write: E|788
56910<...>-5340 ( 788) [005] .... 82316.124930: binder_transaction: transaction=1569720 dest_node=0 dest_proc=27550 dest_thread=27617 reply=1 flags=0x0 code=0x0
56911<...>-5340 ( 788) [005] .... 82316.124932: binder_transaction_alloc_buf: transaction=1569720 data_size=8 offsets_size=0
56912<...>-5340 ( 788) [005] d..2 82316.124934: sched_waking: comm=id.nn.benchmark pid=27617 prio=110 target_cpu=005
56913           <...>-27571 (-----) [004] ...1 82316.124938: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
56914<...>-5340 ( 788) [005] d..3 82316.124941: sched_wakeup: comm=id.nn.benchmark pid=27617 prio=110 target_cpu=005
56915<...>-5340 ( 788) [005] .... 82316.124943: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
56916           <...>-27571 (-----) [004] ...1 82316.124944: tracing_mark_write: E|27550
56917           <...>-27571 (-----) [004] d..2 82316.124973: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56918          <idle>-0     (-----) [004] d..1 82316.124981: cpu_idle: state=0 cpu_id=4
56919<...>-5340 ( 788) [005] d..2 82316.124984: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27617 next_prio=110
56920           <...>-27617 (-----) [005] .... 82316.124995: binder_transaction_received: transaction=1569720
56921           <...>-27617 (-----) [005] ...1 82316.125031: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
56922           <...>-27617 (-----) [005] ...1 82316.125037: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
56923           <...>-27617 (-----) [005] ...1 82316.125063: tracing_mark_write: E|27550
56924           <...>-27617 (-----) [005] ...1 82316.125067: tracing_mark_write: E|27550
56925           <...>-27617 (-----) [005] ...1 82316.125070: tracing_mark_write: E|27550
56926          <idle>-0     (-----) [000] d.s3 82316.125136: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56927          <idle>-0     (-----) [001] d.s2 82316.125137: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
56928          <idle>-0     (-----) [000] d.s4 82316.125154: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56929          <idle>-0     (-----) [001] dns3 82316.125155: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
56930          <idle>-0     (-----) [002] .n.1 82316.125161: cpu_idle: state=4294967295 cpu_id=2
56931          <idle>-0     (-----) [001] .n.1 82316.125166: cpu_idle: state=4294967295 cpu_id=1
56932          <idle>-0     (-----) [002] d..2 82316.125174: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
56933          <idle>-0     (-----) [001] d..2 82316.125180: 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
56934          <idle>-0     (-----) [000] ...1 82316.125187: cpu_idle: state=4294967295 cpu_id=0
56935          <idle>-0     (-----) [000] d..1 82316.125218: cpu_idle: state=0 cpu_id=0
56936  crtc_event:111-322   (  322) [002] d..2 82316.125244: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
56937     rcu_preempt-7     (    7) [001] d..2 82316.125246: 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
56938          <idle>-0     (-----) [002] d..1 82316.125257: cpu_idle: state=0 cpu_id=2
56939          <idle>-0     (-----) [001] d..1 82316.125260: cpu_idle: state=0 cpu_id=1
56940           <...>-27617 (-----) [005] ...1 82316.125296: tracing_mark_write: E|27550
56941           <...>-27617 (-----) [005] d..1 82316.125309: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56942           <...>-27617 (-----) [005] d..2 82316.125324: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56943          <idle>-0     (-----) [004] .n.1 82316.125330: cpu_idle: state=4294967295 cpu_id=4
56944          <idle>-0     (-----) [004] d..2 82316.125337: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
56945           <...>-27550 (-----) [004] d..2 82316.125357: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56946          <idle>-0     (-----) [004] d..1 82316.125366: cpu_idle: state=0 cpu_id=4
56947           <...>-27617 (-----) [005] d..1 82316.125413: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56948           <...>-27617 (-----) [005] d..2 82316.125422: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
56949          <idle>-0     (-----) [004] .n.1 82316.125427: cpu_idle: state=4294967295 cpu_id=4
56950          <idle>-0     (-----) [004] d..2 82316.125435: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
56951           <...>-27617 (-----) [005] d..2 82316.125461: sched_switch: prev_comm=id.nn.benchmark prev_pid=27617 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
56952           <...>-27550 (-----) [004] ...1 82316.125467: tracing_mark_write: E|27550
56953           <...>-27550 (-----) [004] ...1 82316.125472: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
56954           <...>-27550 (-----) [004] ...1 82316.125479: tracing_mark_write: E|27550
56955          <idle>-0     (-----) [005] d..1 82316.125482: cpu_idle: state=0 cpu_id=5
56956           <...>-27550 (-----) [004] ...1 82316.125482: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
56957           <...>-27550 (-----) [004] ...1 82316.125487: tracing_mark_write: E|27550
56958           <...>-27550 (-----) [004] ...1 82316.125491: tracing_mark_write: E|27550
56959           <...>-27550 (-----) [004] ...1 82316.125606: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
56960           <...>-27550 (-----) [004] ...1 82316.125664: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
56961           <...>-27550 (-----) [004] ...1 82316.125669: tracing_mark_write: E|27550
56962           <...>-27550 (-----) [004] ...1 82316.125673: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
56963           <...>-27550 (-----) [004] ...1 82316.125679: tracing_mark_write: E|27550
56964           <...>-27550 (-----) [004] ...1 82316.125682: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
56965           <...>-27550 (-----) [004] ...1 82316.125687: tracing_mark_write: E|27550
56966           <...>-27550 (-----) [004] ...1 82316.125691: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
56967          <idle>-0     (-----) [005] .n.1 82316.125791: cpu_idle: state=4294967295 cpu_id=5
56968           <...>-27550 (-----) [004] ...1 82316.125792: tracing_mark_write: E|27550
56969           <...>-27550 (-----) [004] ...1 82316.125797: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
56970          <idle>-0     (-----) [005] d..2 82316.125800: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27618 next_prio=110
56971           <...>-27550 (-----) [004] d..2 82316.125813: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
56972          <idle>-0     (-----) [004] d..1 82316.125828: cpu_idle: state=0 cpu_id=4
56973          <idle>-0     (-----) [000] d.h5 82316.125838: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
56974          <idle>-0     (-----) [000] dnh6 82316.125850: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
56975           <...>-27618 (-----) [005] ...1 82316.125860: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
56976          <idle>-0     (-----) [000] .n.1 82316.125864: cpu_idle: state=4294967295 cpu_id=0
56977           <...>-27618 (-----) [005] ...1 82316.125873: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
56978          <idle>-0     (-----) [000] d..2 82316.125875: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
56979           <...>-27618 (-----) [005] ...1 82316.125877: tracing_mark_write: E|27550
56980           <...>-27618 (-----) [005] .... 82316.125897: binder_transaction: transaction=1569721 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
56981           <...>-27618 (-----) [005] .... 82316.125900: binder_transaction_alloc_buf: transaction=1569721 data_size=48 offsets_size=0
56982           <...>-27618 (-----) [005] ...2 82316.125903: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
56983           <...>-27618 (-----) [005] d..4 82316.125905: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
56984           <...>-27618 (-----) [005] dn.5 82316.125916: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
56985           <...>-27618 (-----) [005] d..2 82316.125923: sched_switch: prev_comm=id.nn.benchmark prev_pid=27618 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
56986<...>-770 ( 770) [005] .... 82316.125932: binder_transaction_received: transaction=1569721
56987<...>-770 ( 770) [005] ...1 82316.125955: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
56988 crtc_commit:111-321   (  321) [000] d..2 82316.125957: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
56989          <idle>-0     (-----) [000] d..1 82316.125972: cpu_idle: state=0 cpu_id=0
56990<...>-770 ( 770) [005] d..2 82316.126024: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
56991          <idle>-0     (-----) [000] dnh2 82316.126054: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
56992<...>-770 ( 770) [005] ...1 82316.126064: tracing_mark_write: E|770
56993<...>-770 ( 770) [005] .... 82316.126072: binder_transaction: transaction=1569722 dest_node=0 dest_proc=27550 dest_thread=27618 reply=1 flags=0x0 code=0x0
56994<...>-770 ( 770) [005] .... 82316.126074: binder_transaction_alloc_buf: transaction=1569722 data_size=168 offsets_size=32
56995<...>-770 ( 770) [005] .... 82316.126081: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
56996<...>-770 ( 770) [005] d..2 82316.126117: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27618 next_prio=110
56997           <...>-27618 (-----) [005] .... 82316.126128: binder_transaction_received: transaction=1569722
56998          <idle>-0     (-----) [000] dnh5 82316.126129: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
56999          <idle>-0     (-----) [000] dnh6 82316.126145: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
57000          <idle>-0     (-----) [002] .n.1 82316.126152: cpu_idle: state=4294967295 cpu_id=2
57001          <idle>-0     (-----) [000] .n.1 82316.126162: cpu_idle: state=4294967295 cpu_id=0
57002          <idle>-0     (-----) [002] d..2 82316.126162: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
57003          <idle>-0     (-----) [000] d..2 82316.126175: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
57004  crtc_event:111-322   (  322) [002] d..2 82316.126188: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57005           <...>-27618 (-----) [005] ...1 82316.126196: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
57006          <idle>-0     (-----) [002] d..1 82316.126200: cpu_idle: state=0 cpu_id=2
57007           <...>-27618 (-----) [005] ...1 82316.126201: tracing_mark_write: E|27550
57008           <...>-27618 (-----) [005] .... 82316.126215: binder_transaction: transaction=1569723 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
57009           <...>-27618 (-----) [005] .... 82316.126218: binder_transaction_alloc_buf: transaction=1569723 data_size=48 offsets_size=0
57010           <...>-27618 (-----) [005] ...2 82316.126220: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
57011           <...>-27618 (-----) [005] d..4 82316.126222: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
57012           <...>-27618 (-----) [005] dn.5 82316.126232: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
57013           <...>-27618 (-----) [005] d..2 82316.126239: sched_switch: prev_comm=id.nn.benchmark prev_pid=27618 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
57014<...>-770 ( 770) [005] .... 82316.126247: binder_transaction_received: transaction=1569723
57015<...>-581 ( 571) [000] d..2 82316.126259: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57016<...>-770 ( 770) [005] ...1 82316.126264: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
57017          <idle>-0     (-----) [000] d..1 82316.126276: cpu_idle: state=0 cpu_id=0
57018<...>-770 ( 770) [005] d..2 82316.126322: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
57019          <idle>-0     (-----) [000] dnh2 82316.126348: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
57020          <idle>-0     (-----) [000] .n.1 82316.126355: cpu_idle: state=4294967295 cpu_id=0
57021<...>-770 ( 770) [005] ...1 82316.126356: tracing_mark_write: E|770
57022<...>-770 ( 770) [005] .... 82316.126364: binder_transaction: transaction=1569724 dest_node=0 dest_proc=27550 dest_thread=27618 reply=1 flags=0x0 code=0x0
57023<...>-770 ( 770) [005] .... 82316.126366: binder_transaction_alloc_buf: transaction=1569724 data_size=168 offsets_size=32
57024          <idle>-0     (-----) [000] d..2 82316.126367: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
57025<...>-770 ( 770) [005] .... 82316.126372: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
57026<...>-770 ( 770) [005] d..2 82316.126407: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27618 next_prio=110
57027           <...>-27618 (-----) [005] .... 82316.126417: binder_transaction_received: transaction=1569724
57028<...>-581 ( 571) [000] d..2 82316.126430: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57029          <idle>-0     (-----) [000] d..1 82316.126445: cpu_idle: state=0 cpu_id=0
57030           <...>-27618 (-----) [005] ...1 82316.126689: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
57031           <...>-27618 (-----) [005] ...1 82316.126699: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
57032           <...>-27618 (-----) [005] ...1 82316.126703: tracing_mark_write: E|27550
57033           <...>-27618 (-----) [005] .... 82316.126762: binder_transaction: transaction=1569725 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
57034           <...>-27618 (-----) [005] .... 82316.126765: binder_transaction_alloc_buf: transaction=1569725 data_size=556 offsets_size=104
57035           <...>-27618 (-----) [005] ...2 82316.126779: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
57036           <...>-27618 (-----) [005] d..4 82316.126781: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57037           <...>-27618 (-----) [005] dn.5 82316.126794: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57038           <...>-27618 (-----) [005] d..2 82316.126801: sched_switch: prev_comm=id.nn.benchmark prev_pid=27618 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57039<...>-5340 ( 788) [005] .... 82316.126810: binder_transaction_received: transaction=1569725
57040<...>-5340 ( 788) [005] ...1 82316.126855: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
57041<...>-5340 ( 788) [005] d..2 82316.126900: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57042<...>-5340 ( 788) [005] d..2 82316.126925: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27618 next_prio=110
57043          <idle>-0     (-----) [000] dnh2 82316.126929: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57044          <idle>-0     (-----) [000] .n.1 82316.126937: cpu_idle: state=4294967295 cpu_id=0
57045           <...>-27618 (-----) [005] d..2 82316.126947: sched_switch: prev_comm=id.nn.benchmark prev_pid=27618 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
57046          <idle>-0     (-----) [000] d..2 82316.126949: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
57047          <idle>-0     (-----) [005] d..1 82316.126965: cpu_idle: state=0 cpu_id=5
57048<...>-87 ( 87) [000] d..2 82316.126992: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57049          <idle>-0     (-----) [002] d.h4 82316.127001: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
57050          <idle>-0     (-----) [000] d..1 82316.127005: cpu_idle: state=0 cpu_id=0
57051          <idle>-0     (-----) [002] dnh5 82316.127037: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57052          <idle>-0     (-----) [002] .n.1 82316.127048: cpu_idle: state=4294967295 cpu_id=2
57053          <idle>-0     (-----) [002] d..2 82316.127060: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
57054<...>-86 ( 86) [002] d.h4 82316.127090: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57055          <idle>-0     (-----) [005] dnh2 82316.127112: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57056          <idle>-0     (-----) [005] .n.1 82316.127116: cpu_idle: state=4294967295 cpu_id=5
57057          <idle>-0     (-----) [005] d..2 82316.127124: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57058<...>-86 ( 86) [002] d..2 82316.127150: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57059          <idle>-0     (-----) [002] d..1 82316.127165: cpu_idle: state=0 cpu_id=2
57060<...>-5340 ( 788) [005] d..1 82316.127175: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57061          <idle>-0     (-----) [000] dnh2 82316.127202: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57062          <idle>-0     (-----) [000] .n.1 82316.127209: cpu_idle: state=4294967295 cpu_id=0
57063          <idle>-0     (-----) [000] d..2 82316.127221: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
57064 neuralnetworks@-13088 (  788) [000] d..2 82316.127268: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57065          <idle>-0     (-----) [000] d..1 82316.127282: cpu_idle: state=0 cpu_id=0
57066<...>-5340 ( 788) [005] d..2 82316.127321: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57067          <idle>-0     (-----) [000] dnh2 82316.127343: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57068<...>-5340 ( 788) [005] d..2 82316.127347: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
57069          <idle>-0     (-----) [000] .n.1 82316.127351: cpu_idle: state=4294967295 cpu_id=0
57070          <idle>-0     (-----) [005] d..1 82316.127361: cpu_idle: state=0 cpu_id=5
57071          <idle>-0     (-----) [000] d..2 82316.127361: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
57072<...>-87 ( 87) [000] d..2 82316.127402: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57073          <idle>-0     (-----) [002] d.h4 82316.127403: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57074          <idle>-0     (-----) [002] dnh5 82316.127415: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57075          <idle>-0     (-----) [000] d..1 82316.127415: cpu_idle: state=0 cpu_id=0
57076          <idle>-0     (-----) [002] .n.1 82316.127425: cpu_idle: state=4294967295 cpu_id=2
57077          <idle>-0     (-----) [002] d..2 82316.127437: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
57078<...>-86 ( 86) [002] d..2 82316.127473: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57079          <idle>-0     (-----) [002] d..1 82316.127487: cpu_idle: state=0 cpu_id=2
57080          <idle>-0     (-----) [005] ...1 82316.127693: cpu_idle: state=4294967295 cpu_id=5
57081          <idle>-0     (-----) [005] d..1 82316.127697: cpu_idle: state=0 cpu_id=5
57082          <idle>-0     (-----) [003] d.h2 82316.127987: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
57083          <idle>-0     (-----) [003] dnh3 82316.128002: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
57084          <idle>-0     (-----) [003] .n.1 82316.128011: cpu_idle: state=4294967295 cpu_id=3
57085          <idle>-0     (-----) [003] d..2 82316.128022: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
57086        DispSync-8879  ( 8858) [003] d..1 82316.128044: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
57087        DispSync-8879  ( 8858) [003] d..2 82316.128059: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
57088          <idle>-0     (-----) [002] .n.1 82316.128066: cpu_idle: state=4294967295 cpu_id=2
57089          <idle>-0     (-----) [002] d..2 82316.128077: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
57090        DispSync-8879  ( 8858) [003] d..2 82316.128094: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57091          <idle>-0     (-----) [003] d..1 82316.128104: cpu_idle: state=0 cpu_id=3
57092  appEventThread-8881  ( 8858) [002] d..3 82316.128140: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
57093  appEventThread-8881  ( 8858) [002] d..4 82316.128169: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
57094          <idle>-0     (-----) [000] .n.1 82316.128176: cpu_idle: state=4294967295 cpu_id=0
57095          <idle>-0     (-----) [000] d..2 82316.128189: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
57096  appEventThread-8881  ( 8858) [002] d..2 82316.128214: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57097          <idle>-0     (-----) [002] d..1 82316.128231: cpu_idle: state=0 cpu_id=2
57098          <idle>-0     (-----) [003] d.s2 82316.128465: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
57099          <idle>-0     (-----) [003] dns3 82316.128484: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
57100<...>-9105 ( 9105) [000] d.s2 82316.128491: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
57101          <idle>-0     (-----) [003] .n.1 82316.128503: cpu_idle: state=4294967295 cpu_id=3
57102          <idle>-0     (-----) [003] d..2 82316.128513: 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
57103<...>-8 ( 8) [003] d..2 82316.128522: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
57104<...>-9105 ( 9105) [000] d.s3 82316.128524: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
57105<...>-8 ( 8) [003] d..3 82316.128566: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
57106<...>-8 ( 8) [003] d..2 82316.128581: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
57107<...>-9105 ( 9105) [000] .... 82316.128674: binder_transaction: transaction=1569728 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
57108<...>-9105 ( 9105) [000] .... 82316.128682: binder_transaction_alloc_buf: transaction=1569728 data_size=80 offsets_size=0
57109<...>-9105 ( 9105) [000] d..4 82316.128688: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
57110<...>-9105 ( 9105) [000] d..5 82316.128719: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
57111          <idle>-0     (-----) [001] .n.1 82316.128725: cpu_idle: state=4294967295 cpu_id=1
57112          <idle>-0     (-----) [001] d..2 82316.128740: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
57113<...>-13083 ( 8858) [001] .... 82316.128752: binder_transaction_received: transaction=1569728
57114<...>-9105 ( 9105) [000] d..3 82316.128760: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
57115<...>-9105 ( 9105) [000] d..4 82316.128780: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
57116          <idle>-0     (-----) [002] .n.1 82316.128788: cpu_idle: state=4294967295 cpu_id=2
57117<...>-13083 ( 8858) [001] d..1 82316.128798: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
57118          <idle>-0     (-----) [002] d..2 82316.128803: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
57119  kworker/u16:15-1311  ( 1311) [003] d..2 82316.128831: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
57120<...>-13083 ( 8858) [001] d..2 82316.128843: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
57121          <idle>-0     (-----) [003] d..2 82316.128855: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
57122    RenderThread-9436  ( 9105) [002] d..2 82316.128879: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
57123<...>-13083 ( 8858) [001] d.s3 82316.128884: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
57124  appEventThread-8881  ( 8858) [003] d..2 82316.128890: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57125<...>-46 ( 46) [002] d..2 82316.128894: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
57126          <idle>-0     (-----) [003] d..1 82316.128903: cpu_idle: state=0 cpu_id=3
57127<...>-13083 ( 8858) [001] d.s4 82316.128903: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
57128<...>-13083 ( 8858) [001] d.s4 82316.128912: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
57129<...>-9105 ( 9105) [000] d..3 82316.128915: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
57130          <idle>-0     (-----) [003] .n.1 82316.128918: cpu_idle: state=4294967295 cpu_id=3
57131<...>-46 ( 46) [002] d..3 82316.128920: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
57132<...>-13083 ( 8858) [001] d..1 82316.128929: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
57133          <idle>-0     (-----) [003] d..2 82316.128932: 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
57134<...>-46 ( 46) [002] d..2 82316.128949: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57135<...>-8 ( 8) [003] d..2 82316.128951: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
57136          <idle>-0     (-----) [006] dnh2 82316.128959: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
57137          <idle>-0     (-----) [006] .n.1 82316.128963: cpu_idle: state=4294967295 cpu_id=6
57138          <idle>-0     (-----) [002] d..1 82316.128965: cpu_idle: state=0 cpu_id=2
57139          <idle>-0     (-----) [006] d..2 82316.129015: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
57140<...>-13083 ( 8858) [001] d..2 82316.129016: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
57141          <idle>-0     (-----) [002] .n.1 82316.129023: cpu_idle: state=4294967295 cpu_id=2
57142          <idle>-0     (-----) [002] d..2 82316.129034: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
57143<...>-9105 ( 9105) [000] d..2 82316.129046: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57144  appEventThread-8881  ( 8858) [002] d.h3 82316.129062: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57145<...>-13083 ( 8858) [001] d..2 82316.129069: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57146          <idle>-0     (-----) [001] d..1 82316.129082: cpu_idle: state=0 cpu_id=1
57147          <idle>-0     (-----) [005] dnh2 82316.129083: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57148          <idle>-0     (-----) [005] .n.1 82316.129087: cpu_idle: state=4294967295 cpu_id=5
57149          <idle>-0     (-----) [005] d..2 82316.129096: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57150    RenderThread-9436  ( 9105) [006] d..1 82316.129099: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
57151          <idle>-0     (-----) [000] d..1 82316.129101: cpu_idle: state=0 cpu_id=0
57152          <idle>-0     (-----) [000] dnh2 82316.129122: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
57153          <idle>-0     (-----) [000] .n.1 82316.129130: cpu_idle: state=4294967295 cpu_id=0
57154  kworker/u16:15-1311  ( 1311) [003] .... 82316.129136: clk_set_rate: l3_cluster0_vote_clk 300000000
57155          <idle>-0     (-----) [000] d..2 82316.129142: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
57156<...>-5340 ( 788) [005] d..1 82316.129146: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57157    RenderThread-9436  ( 9105) [006] .... 82316.129155: binder_transaction: transaction=1569729 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
57158    RenderThread-9436  ( 9105) [006] .... 82316.129160: binder_transaction_alloc_buf: transaction=1569729 data_size=104 offsets_size=0
57159    RenderThread-9436  ( 9105) [006] d..4 82316.129164: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
57160  kworker/u16:15-1311  ( 1311) [003] d..2 82316.129166: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57161  appEventThread-8881  ( 8858) [002] d..2 82316.129175: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57162          <idle>-0     (-----) [003] d..1 82316.129179: cpu_idle: state=0 cpu_id=3
57163    RenderThread-9436  ( 9105) [006] dn.5 82316.129185: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
57164          <idle>-0     (-----) [002] d..1 82316.129192: cpu_idle: state=0 cpu_id=2
57165          <idle>-0     (-----) [003] dnh2 82316.129200: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
57166          <idle>-0     (-----) [003] .n.1 82316.129258: cpu_idle: state=4294967295 cpu_id=3
57167    RenderThread-9436  ( 9105) [006] d..2 82316.129260: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
57168<...>-5340 ( 788) [005] ...1 82316.129266: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
57169<...>-13083 ( 8858) [006] .... 82316.129270: binder_transaction_received: transaction=1569729
57170<...>-5340 ( 788) [005] ...1 82316.129270: tracing_mark_write: E|788
57171          <idle>-0     (-----) [003] d..2 82316.129270: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
57172<...>-9105 ( 9105) [000] d..2 82316.129277: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57173<...>-5340 ( 788) [005] .... 82316.129287: binder_transaction: transaction=1569730 dest_node=1569726 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
57174<...>-5340 ( 788) [005] .... 82316.129290: binder_transaction_alloc_buf: transaction=1569730 data_size=60 offsets_size=0
57175<...>-5340 ( 788) [005] d..4 82316.129293: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
57176          <idle>-0     (-----) [000] d..1 82316.129294: cpu_idle: state=0 cpu_id=0
57177<...>-5340 ( 788) [005] d..5 82316.129306: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
57178          <idle>-0     (-----) [004] .n.1 82316.129312: cpu_idle: state=4294967295 cpu_id=4
57179 neuralnetworks@-13088 (  788) [003] d..2 82316.129317: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57180          <idle>-0     (-----) [004] d..2 82316.129320: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
57181           <...>-27571 (-----) [004] .... 82316.129325: binder_transaction_received: transaction=1569730
57182<...>-5340 ( 788) [005] ...1 82316.129329: tracing_mark_write: E|788
57183          <idle>-0     (-----) [003] d..1 82316.129330: cpu_idle: state=0 cpu_id=3
57184<...>-13083 ( 8858) [006] .... 82316.129331: binder_transaction: transaction=1569731 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
57185<...>-13083 ( 8858) [006] .... 82316.129334: binder_transaction_alloc_buf: transaction=1569731 data_size=52 offsets_size=8
57186<...>-5340 ( 788) [005] .... 82316.129336: binder_transaction: transaction=1569732 dest_node=0 dest_proc=27550 dest_thread=27618 reply=1 flags=0x0 code=0x0
57187<...>-5340 ( 788) [005] .... 82316.129338: binder_transaction_alloc_buf: transaction=1569732 data_size=8 offsets_size=0
57188<...>-5340 ( 788) [005] d..2 82316.129340: sched_waking: comm=id.nn.benchmark pid=27618 prio=110 target_cpu=005
57189           <...>-27571 (-----) [004] ...1 82316.129344: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
57190<...>-5340 ( 788) [005] d..3 82316.129347: sched_wakeup: comm=id.nn.benchmark pid=27618 prio=110 target_cpu=005
57191<...>-5340 ( 788) [005] .... 82316.129349: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
57192           <...>-27571 (-----) [004] ...1 82316.129350: tracing_mark_write: E|27550
57193<...>-13083 ( 8858) [006] d..2 82316.129367: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
57194    RenderThread-9436  ( 9105) [006] .... 82316.129376: binder_transaction_received: transaction=1569731
57195           <...>-27571 (-----) [004] d..2 82316.129378: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57196          <idle>-0     (-----) [004] d..1 82316.129386: cpu_idle: state=0 cpu_id=4
57197<...>-5340 ( 788) [005] d..2 82316.129392: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27618 next_prio=110
57198           <...>-27618 (-----) [005] .... 82316.129402: binder_transaction_received: transaction=1569732
57199           <...>-27618 (-----) [005] ...1 82316.129438: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
57200           <...>-27618 (-----) [005] ...1 82316.129444: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
57201           <...>-27618 (-----) [005] ...1 82316.129470: tracing_mark_write: E|27550
57202           <...>-27618 (-----) [005] ...1 82316.129473: tracing_mark_write: E|27550
57203           <...>-27618 (-----) [005] ...1 82316.129477: tracing_mark_write: E|27550
57204           <...>-27618 (-----) [005] ...1 82316.129666: tracing_mark_write: E|27550
57205           <...>-27618 (-----) [005] d..1 82316.129679: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57206           <...>-27618 (-----) [005] d..2 82316.129695: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57207          <idle>-0     (-----) [004] .n.1 82316.129700: cpu_idle: state=4294967295 cpu_id=4
57208          <idle>-0     (-----) [004] d..2 82316.129706: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
57209           <...>-27550 (-----) [004] d..2 82316.129727: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57210          <idle>-0     (-----) [004] d..1 82316.129735: cpu_idle: state=0 cpu_id=4
57211           <...>-27618 (-----) [005] d..1 82316.129784: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57212           <...>-27618 (-----) [005] d..2 82316.129793: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57213          <idle>-0     (-----) [004] .n.1 82316.129797: cpu_idle: state=4294967295 cpu_id=4
57214          <idle>-0     (-----) [004] d..2 82316.129805: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
57215           <...>-27618 (-----) [005] d..2 82316.129832: sched_switch: prev_comm=id.nn.benchmark prev_pid=27618 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
57216           <...>-27550 (-----) [004] ...1 82316.129839: tracing_mark_write: E|27550
57217           <...>-27550 (-----) [004] ...1 82316.129843: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
57218           <...>-27550 (-----) [004] ...1 82316.129849: tracing_mark_write: E|27550
57219           <...>-27550 (-----) [004] ...1 82316.129853: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
57220          <idle>-0     (-----) [005] d..1 82316.129853: cpu_idle: state=0 cpu_id=5
57221           <...>-27550 (-----) [004] ...1 82316.129857: tracing_mark_write: E|27550
57222           <...>-27550 (-----) [004] ...1 82316.129861: tracing_mark_write: E|27550
57223           <...>-27550 (-----) [004] ...1 82316.129973: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
57224           <...>-27550 (-----) [004] ...1 82316.130031: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
57225           <...>-27550 (-----) [004] ...1 82316.130036: tracing_mark_write: E|27550
57226           <...>-27550 (-----) [004] ...1 82316.130040: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
57227           <...>-27550 (-----) [004] ...1 82316.130045: tracing_mark_write: E|27550
57228           <...>-27550 (-----) [004] ...1 82316.130048: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
57229           <...>-27550 (-----) [004] ...1 82316.130053: tracing_mark_write: E|27550
57230           <...>-27550 (-----) [004] ...1 82316.130056: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
57231    RenderThread-9436  ( 9105) [006] d..2 82316.130094: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
57232          <idle>-0     (-----) [006] d..1 82316.130106: cpu_idle: state=0 cpu_id=6
57233          <idle>-0     (-----) [005] .n.1 82316.130150: cpu_idle: state=4294967295 cpu_id=5
57234           <...>-27550 (-----) [004] ...1 82316.130152: tracing_mark_write: E|27550
57235           <...>-27550 (-----) [004] ...1 82316.130156: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
57236          <idle>-0     (-----) [005] d..2 82316.130159: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27619 next_prio=110
57237           <...>-27550 (-----) [004] d..2 82316.130173: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57238          <idle>-0     (-----) [006] d.h2 82316.130183: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
57239          <idle>-0     (-----) [004] d..1 82316.130187: cpu_idle: state=0 cpu_id=4
57240          <idle>-0     (-----) [006] d.h3 82316.130190: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
57241          <idle>-0     (-----) [006] dnh3 82316.130193: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
57242          <idle>-0     (-----) [006] .n.1 82316.130199: cpu_idle: state=4294967295 cpu_id=6
57243          <idle>-0     (-----) [006] d..2 82316.130207: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
57244           <...>-27619 (-----) [005] ...1 82316.130220: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
57245          <idle>-0     (-----) [000] d.h3 82316.130230: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
57246           <...>-27619 (-----) [005] ...1 82316.130234: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
57247           <...>-27619 (-----) [005] ...1 82316.130238: tracing_mark_write: E|27550
57248          <idle>-0     (-----) [000] d.h4 82316.130253: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
57249           <...>-27619 (-----) [005] .... 82316.130259: binder_transaction: transaction=1569733 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
57250          <idle>-0     (-----) [003] .n.1 82316.130260: cpu_idle: state=4294967295 cpu_id=3
57251           <...>-27619 (-----) [005] .... 82316.130262: binder_transaction_alloc_buf: transaction=1569733 data_size=48 offsets_size=0
57252           <...>-27619 (-----) [005] ...2 82316.130265: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
57253           <...>-27619 (-----) [005] d..4 82316.130268: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
57254          <idle>-0     (-----) [003] d..2 82316.130271: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
57255          <idle>-0     (-----) [000] ...1 82316.130272: cpu_idle: state=4294967295 cpu_id=0
57256          <idle>-0     (-----) [000] d..1 82316.130277: cpu_idle: state=0 cpu_id=0
57257           <...>-27619 (-----) [005] dn.5 82316.130278: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
57258           <...>-27619 (-----) [005] d..2 82316.130285: sched_switch: prev_comm=id.nn.benchmark prev_pid=27619 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
57259<...>-770 ( 770) [005] .... 82316.130295: binder_transaction_received: transaction=1569733
57260<...>-770 ( 770) [005] ...1 82316.130320: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
57261 kgsl_worker_thr-258   (  258) [003] d..2 82316.130328: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
57262    RenderThread-9436  ( 9105) [006] .... 82316.130342: binder_transaction: transaction=1569734 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
57263    RenderThread-9436  ( 9105) [006] .... 82316.130347: binder_transaction_alloc_buf: transaction=1569734 data_size=192 offsets_size=8
57264 kgsl_worker_thr-258   (  258) [003] d..3 82316.130350: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
57265    RenderThread-9436  ( 9105) [006] d..4 82316.130353: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
57266    RenderThread-9436  ( 9105) [006] dn.5 82316.130362: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
57267    RenderThread-9436  ( 9105) [006] d..2 82316.130369: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
57268 kgsl_worker_thr-258   (  258) [003] d..2 82316.130369: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
57269<...>-13083 ( 8858) [006] .... 82316.130379: binder_transaction_received: transaction=1569734
57270<...>-770 ( 770) [005] d..2 82316.130404: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
57271  kworker/u16:15-1311  ( 1311) [003] d..2 82316.130417: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57272          <idle>-0     (-----) [003] d..1 82316.130430: cpu_idle: state=0 cpu_id=3
57273          <idle>-0     (-----) [003] dnh2 82316.130447: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
57274          <idle>-0     (-----) [003] .n.1 82316.130453: cpu_idle: state=4294967295 cpu_id=3
57275<...>-770 ( 770) [005] ...1 82316.130460: tracing_mark_write: E|770
57276          <idle>-0     (-----) [003] d..2 82316.130465: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
57277<...>-770 ( 770) [005] .... 82316.130469: binder_transaction: transaction=1569735 dest_node=0 dest_proc=27550 dest_thread=27619 reply=1 flags=0x0 code=0x0
57278<...>-770 ( 770) [005] .... 82316.130471: binder_transaction_alloc_buf: transaction=1569735 data_size=168 offsets_size=32
57279<...>-770 ( 770) [005] .... 82316.130479: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
57280<...>-13083 ( 8858) [006] .... 82316.130503: binder_transaction: transaction=1569736 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
57281<...>-13083 ( 8858) [006] .... 82316.130507: binder_transaction_alloc_buf: transaction=1569736 data_size=68 offsets_size=0
57282<...>-770 ( 770) [005] d..2 82316.130516: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27619 next_prio=110
57283           <...>-27619 (-----) [005] .... 82316.130528: binder_transaction_received: transaction=1569735
57284<...>-13083 ( 8858) [006] d..2 82316.130535: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
57285    RenderThread-9436  ( 9105) [006] .... 82316.130545: binder_transaction_received: transaction=1569736
57286<...>-581 ( 571) [003] d..2 82316.130569: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57287          <idle>-0     (-----) [003] d..1 82316.130584: cpu_idle: state=0 cpu_id=3
57288           <...>-27619 (-----) [005] ...1 82316.130602: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
57289           <...>-27619 (-----) [005] ...1 82316.130607: tracing_mark_write: E|27550
57290    RenderThread-9436  ( 9105) [006] d..2 82316.130613: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
57291           <...>-27619 (-----) [005] .... 82316.130623: binder_transaction: transaction=1569737 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
57292          <idle>-0     (-----) [006] d..1 82316.130626: cpu_idle: state=0 cpu_id=6
57293           <...>-27619 (-----) [005] .... 82316.130626: binder_transaction_alloc_buf: transaction=1569737 data_size=48 offsets_size=0
57294           <...>-27619 (-----) [005] ...2 82316.130628: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
57295           <...>-27619 (-----) [005] d..4 82316.130631: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
57296           <...>-27619 (-----) [005] dn.5 82316.130640: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
57297          <idle>-0     (-----) [002] ...1 82316.130642: cpu_idle: state=4294967295 cpu_id=2
57298           <...>-27619 (-----) [005] d..2 82316.130647: sched_switch: prev_comm=id.nn.benchmark prev_pid=27619 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
57299          <idle>-0     (-----) [002] d..1 82316.130648: cpu_idle: state=0 cpu_id=2
57300<...>-770 ( 770) [005] .... 82316.130655: binder_transaction_received: transaction=1569737
57301<...>-770 ( 770) [005] ...1 82316.130672: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
57302<...>-770 ( 770) [005] d..2 82316.130732: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
57303          <idle>-0     (-----) [003] dnh2 82316.130758: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
57304          <idle>-0     (-----) [003] .n.1 82316.130765: cpu_idle: state=4294967295 cpu_id=3
57305<...>-770 ( 770) [005] ...1 82316.130766: tracing_mark_write: E|770
57306<...>-770 ( 770) [005] .... 82316.130773: binder_transaction: transaction=1569738 dest_node=0 dest_proc=27550 dest_thread=27619 reply=1 flags=0x0 code=0x0
57307<...>-770 ( 770) [005] .... 82316.130776: binder_transaction_alloc_buf: transaction=1569738 data_size=168 offsets_size=32
57308          <idle>-0     (-----) [003] d..2 82316.130777: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
57309<...>-770 ( 770) [005] .... 82316.130782: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
57310<...>-770 ( 770) [005] d..2 82316.130818: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27619 next_prio=110
57311           <...>-27619 (-----) [005] .... 82316.130828: binder_transaction_received: transaction=1569738
57312<...>-581 ( 571) [003] d..2 82316.130844: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57313          <idle>-0     (-----) [003] d..1 82316.130857: cpu_idle: state=0 cpu_id=3
57314           <...>-27619 (-----) [005] ...1 82316.131103: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
57315           <...>-27619 (-----) [005] ...1 82316.131113: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
57316           <...>-27619 (-----) [005] ...1 82316.131117: tracing_mark_write: E|27550
57317           <...>-27619 (-----) [005] .... 82316.131180: binder_transaction: transaction=1569739 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
57318           <...>-27619 (-----) [005] .... 82316.131183: binder_transaction_alloc_buf: transaction=1569739 data_size=556 offsets_size=104
57319           <...>-27619 (-----) [005] ...2 82316.131198: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
57320           <...>-27619 (-----) [005] d..4 82316.131200: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57321           <...>-27619 (-----) [005] dn.5 82316.131211: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57322           <...>-27619 (-----) [005] d..2 82316.131218: sched_switch: prev_comm=id.nn.benchmark prev_pid=27619 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57323<...>-5340 ( 788) [005] .... 82316.131228: binder_transaction_received: transaction=1569739
57324<...>-5340 ( 788) [005] ...1 82316.131276: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
57325<...>-5340 ( 788) [005] d..2 82316.131325: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57326<...>-5340 ( 788) [005] d..2 82316.131349: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27619 next_prio=110
57327          <idle>-0     (-----) [000] dnh2 82316.131353: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57328          <idle>-0     (-----) [000] .n.1 82316.131359: cpu_idle: state=4294967295 cpu_id=0
57329           <...>-27619 (-----) [005] d..2 82316.131371: sched_switch: prev_comm=id.nn.benchmark prev_pid=27619 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
57330          <idle>-0     (-----) [000] d..2 82316.131372: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
57331          <idle>-0     (-----) [005] d..1 82316.131389: cpu_idle: state=0 cpu_id=5
57332<...>-87 ( 87) [000] d..2 82316.131423: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57333          <idle>-0     (-----) [002] d.h4 82316.131428: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57334          <idle>-0     (-----) [000] d..1 82316.131437: cpu_idle: state=0 cpu_id=0
57335          <idle>-0     (-----) [002] dnh5 82316.131448: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57336          <idle>-0     (-----) [002] .n.1 82316.131458: cpu_idle: state=4294967295 cpu_id=2
57337          <idle>-0     (-----) [002] d..2 82316.131471: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
57338<...>-86 ( 86) [002] d.h4 82316.131511: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57339          <idle>-0     (-----) [005] dnh2 82316.131534: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57340          <idle>-0     (-----) [005] .n.1 82316.131538: cpu_idle: state=4294967295 cpu_id=5
57341          <idle>-0     (-----) [005] d..2 82316.131546: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57342<...>-86 ( 86) [002] d..2 82316.131570: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57343          <idle>-0     (-----) [002] d..1 82316.131586: cpu_idle: state=0 cpu_id=2
57344<...>-5340 ( 788) [005] d..1 82316.131602: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
57345          <idle>-0     (-----) [000] dnh2 82316.131639: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57346          <idle>-0     (-----) [000] .n.1 82316.131647: cpu_idle: state=4294967295 cpu_id=0
57347          <idle>-0     (-----) [000] d..2 82316.131658: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
57348 neuralnetworks@-13088 (  788) [000] d..2 82316.131711: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57349          <idle>-0     (-----) [000] d..1 82316.131727: cpu_idle: state=0 cpu_id=0
57350<...>-5340 ( 788) [005] d..2 82316.131761: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57351          <idle>-0     (-----) [000] dnh2 82316.131789: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57352          <idle>-0     (-----) [000] .n.1 82316.131799: cpu_idle: state=4294967295 cpu_id=0
57353          <idle>-0     (-----) [000] d..2 82316.131815: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
57354<...>-5340 ( 788) [005] d..2 82316.131871: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
57355          <idle>-0     (-----) [002] d.h4 82316.131880: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57356          <idle>-0     (-----) [005] d..1 82316.131884: cpu_idle: state=0 cpu_id=5
57357<...>-87 ( 87) [000] d..2 82316.131888: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57358          <idle>-0     (-----) [001] d.s2 82316.131893: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
57359          <idle>-0     (-----) [002] dnh5 82316.131894: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57360          <idle>-0     (-----) [000] d..1 82316.131902: cpu_idle: state=0 cpu_id=0
57361          <idle>-0     (-----) [002] .n.1 82316.131904: cpu_idle: state=4294967295 cpu_id=2
57362          <idle>-0     (-----) [001] dns3 82316.131915: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
57363          <idle>-0     (-----) [002] d..2 82316.131918: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
57364          <idle>-0     (-----) [001] .n.1 82316.131928: cpu_idle: state=4294967295 cpu_id=1
57365          <idle>-0     (-----) [001] d..2 82316.131939: 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
57366     rcu_preempt-7     (    7) [001] d..2 82316.131950: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
57367<...>-86 ( 86) [002] d..2 82316.131955: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57368          <idle>-0     (-----) [002] d..1 82316.131969: cpu_idle: state=0 cpu_id=2
57369          <idle>-0     (-----) [003] d.h2 82316.131989: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
57370     rcu_preempt-7     (    7) [001] d..3 82316.131990: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
57371          <idle>-0     (-----) [002] .n.1 82316.131996: cpu_idle: state=4294967295 cpu_id=2
57372          <idle>-0     (-----) [003] dnh3 82316.132007: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
57373          <idle>-0     (-----) [002] d..2 82316.132008: 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
57374         rcuop/2-29    (   29) [002] d..2 82316.132015: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
57375          <idle>-0     (-----) [003] .n.1 82316.132017: cpu_idle: state=4294967295 cpu_id=3
57376     rcu_preempt-7     (    7) [001] d..2 82316.132023: 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
57377          <idle>-0     (-----) [003] d..2 82316.132031: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
57378          <idle>-0     (-----) [001] d..1 82316.132040: cpu_idle: state=0 cpu_id=1
57379         rcuop/2-29    (   29) [002] d..3 82316.132052: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
57380        DispSync-8879  ( 8858) [003] d..1 82316.132055: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
57381          <idle>-0     (-----) [001] .n.1 82316.132058: cpu_idle: state=4294967295 cpu_id=1
57382          <idle>-0     (-----) [001] d..2 82316.132071: 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
57383        DispSync-8879  ( 8858) [003] d..2 82316.132075: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
57384         rcuop/2-29    (   29) [002] d..2 82316.132083: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=8882 next_prio=97
57385         rcuop/3-37    (   37) [001] d..2 82316.132104: 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
57386          <idle>-0     (-----) [001] d..1 82316.132116: cpu_idle: state=0 cpu_id=1
57387        DispSync-8879  ( 8858) [003] d..2 82316.132120: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57388   sfEventThread-8882  ( 8858) [002] d..3 82316.132124: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
57389          <idle>-0     (-----) [003] d..1 82316.132132: cpu_idle: state=0 cpu_id=3
57390   sfEventThread-8882  ( 8858) [002] d..4 82316.132147: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
57391          <idle>-0     (-----) [003] .n.1 82316.132153: cpu_idle: state=4294967295 cpu_id=3
57392          <idle>-0     (-----) [003] d..2 82316.132162: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
57393   sfEventThread-8882  ( 8858) [002] d..2 82316.132181: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57394          <idle>-0     (-----) [002] d..1 82316.132198: cpu_idle: state=0 cpu_id=2
57395          <idle>-0     (-----) [005] ...1 82316.132210: cpu_idle: state=4294967295 cpu_id=5
57396          <idle>-0     (-----) [005] d..1 82316.132214: cpu_idle: state=0 cpu_id=5
57397  surfaceflinger-8858  ( 8858) [003] d..1 82316.132537: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
57398  surfaceflinger-8858  ( 8858) [003] d..2 82316.132559: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
57399          <idle>-0     (-----) [002] .n.1 82316.132566: cpu_idle: state=4294967295 cpu_id=2
57400          <idle>-0     (-----) [002] d..2 82316.132576: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
57401   sfEventThread-8882  ( 8858) [002] d..2 82316.132613: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57402          <idle>-0     (-----) [002] d..1 82316.132626: cpu_idle: state=0 cpu_id=2
57403  surfaceflinger-8858  ( 8858) [003] ...1 82316.132761: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
57404  surfaceflinger-8858  ( 8858) [003] ...1 82316.132769: tracing_mark_write: E|8858
57405  surfaceflinger-8858  ( 8858) [003] .... 82316.132822: binder_transaction: transaction=1569742 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
57406  surfaceflinger-8858  ( 8858) [003] .... 82316.132828: binder_transaction_alloc_buf: transaction=1569742 data_size=540 offsets_size=96
57407  surfaceflinger-8858  ( 8858) [003] ...2 82316.132855: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
57408  surfaceflinger-8858  ( 8858) [003] d..4 82316.132866: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
57409  surfaceflinger-8858  ( 8858) [003] d..5 82316.132887: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
57410          <idle>-0     (-----) [001] .n.1 82316.132892: cpu_idle: state=4294967295 cpu_id=1
57411          <idle>-0     (-----) [001] d..2 82316.132903: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
57412 [email protected]   (  619) [001] .... 82316.132914: binder_transaction_received: transaction=1569742
57413  surfaceflinger-8858  ( 8858) [003] d..2 82316.132921: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57414          <idle>-0     (-----) [003] d..1 82316.132936: cpu_idle: state=0 cpu_id=3
57415 [email protected]   (  619) [001] ...1 82316.132961: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
57416 [email protected]   (  619) [001] ...1 82316.133086: tracing_mark_write: B|619|HWCSession::PresentDisplay::
57417 [email protected]   (  619) [001] ...1 82316.133270: tracing_mark_write: B|619|HWDeviceDRM::Commit::
57418 [email protected]   (  619) [001] ...1 82316.133284: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
57419          <idle>-0     (-----) [000] ...1 82316.133360: cpu_idle: state=4294967295 cpu_id=0
57420          <idle>-0     (-----) [000] d..1 82316.133365: cpu_idle: state=0 cpu_id=0
57421          <idle>-0     (-----) [002] d.h4 82316.133483: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57422          <idle>-0     (-----) [005] dnh2 82316.133503: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57423          <idle>-0     (-----) [005] .n.1 82316.133507: cpu_idle: state=4294967295 cpu_id=5
57424          <idle>-0     (-----) [005] d..2 82316.133515: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57425          <idle>-0     (-----) [002] ...1 82316.133527: cpu_idle: state=4294967295 cpu_id=2
57426          <idle>-0     (-----) [002] d..1 82316.133533: cpu_idle: state=0 cpu_id=2
57427<...>-5340 ( 788) [005] d..1 82316.133566: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57428          <idle>-0     (-----) [000] dnh2 82316.133594: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57429          <idle>-0     (-----) [000] .n.1 82316.133600: cpu_idle: state=4294967295 cpu_id=0
57430          <idle>-0     (-----) [000] d..2 82316.133611: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
57431<...>-5340 ( 788) [005] ...1 82316.133664: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
57432<...>-5340 ( 788) [005] ...1 82316.133668: tracing_mark_write: E|788
57433 neuralnetworks@-13088 (  788) [000] d..2 82316.133680: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57434<...>-5340 ( 788) [005] .... 82316.133685: binder_transaction: transaction=1569743 dest_node=1569740 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
57435<...>-5340 ( 788) [005] .... 82316.133688: binder_transaction_alloc_buf: transaction=1569743 data_size=60 offsets_size=0
57436<...>-5340 ( 788) [005] d..4 82316.133691: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
57437          <idle>-0     (-----) [000] d..1 82316.133694: cpu_idle: state=0 cpu_id=0
57438<...>-5340 ( 788) [005] d..5 82316.133704: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
57439          <idle>-0     (-----) [004] .n.1 82316.133710: cpu_idle: state=4294967295 cpu_id=4
57440          <idle>-0     (-----) [004] d..2 82316.133718: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
57441           <...>-27571 (-----) [004] .... 82316.133723: binder_transaction_received: transaction=1569743
57442<...>-5340 ( 788) [005] ...1 82316.133727: tracing_mark_write: E|788
57443<...>-5340 ( 788) [005] .... 82316.133733: binder_transaction: transaction=1569744 dest_node=0 dest_proc=27550 dest_thread=27619 reply=1 flags=0x0 code=0x0
57444<...>-5340 ( 788) [005] .... 82316.133735: binder_transaction_alloc_buf: transaction=1569744 data_size=8 offsets_size=0
57445<...>-5340 ( 788) [005] d..2 82316.133737: sched_waking: comm=id.nn.benchmark pid=27619 prio=110 target_cpu=005
57446           <...>-27571 (-----) [004] ...1 82316.133742: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
57447<...>-5340 ( 788) [005] d..3 82316.133745: sched_wakeup: comm=id.nn.benchmark pid=27619 prio=110 target_cpu=005
57448<...>-5340 ( 788) [005] .... 82316.133747: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
57449           <...>-27571 (-----) [004] ...1 82316.133748: tracing_mark_write: E|27550
57450           <...>-27571 (-----) [004] d..2 82316.133778: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57451          <idle>-0     (-----) [004] d..1 82316.133785: cpu_idle: state=0 cpu_id=4
57452<...>-5340 ( 788) [005] d..2 82316.133789: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27619 next_prio=110
57453           <...>-27619 (-----) [005] .... 82316.133799: binder_transaction_received: transaction=1569744
57454           <...>-27619 (-----) [005] ...1 82316.133836: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
57455           <...>-27619 (-----) [005] ...1 82316.133842: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
57456           <...>-27619 (-----) [005] ...1 82316.133867: tracing_mark_write: E|27550
57457           <...>-27619 (-----) [005] ...1 82316.133870: tracing_mark_write: E|27550
57458           <...>-27619 (-----) [005] ...1 82316.133874: tracing_mark_write: E|27550
57459 [email protected]   (  619) [001] d..2 82316.134011: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
57460 [email protected]   (  619) [001] d..3 82316.134039: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
57461          <idle>-0     (-----) [000] .n.1 82316.134045: cpu_idle: state=4294967295 cpu_id=0
57462          <idle>-0     (-----) [000] d..2 82316.134056: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
57463           <...>-27619 (-----) [005] ...1 82316.134066: tracing_mark_write: E|27550
57464           <...>-27619 (-----) [005] d..1 82316.134079: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57465           <...>-27619 (-----) [005] d..2 82316.134096: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57466          <idle>-0     (-----) [004] .n.1 82316.134101: cpu_idle: state=4294967295 cpu_id=4
57467          <idle>-0     (-----) [004] d..2 82316.134107: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
57468           <...>-27550 (-----) [004] d..2 82316.134127: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57469          <idle>-0     (-----) [004] d..1 82316.134135: cpu_idle: state=0 cpu_id=4
57470 [email protected]   (  619) [001] ...1 82316.134151: tracing_mark_write: E|619
57471 [email protected]   (  619) [001] ...1 82316.134158: tracing_mark_write: E|619
57472           <...>-27619 (-----) [005] d..1 82316.134183: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57473           <...>-27619 (-----) [005] d..2 82316.134192: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57474          <idle>-0     (-----) [004] .n.1 82316.134197: cpu_idle: state=4294967295 cpu_id=4
57475          <idle>-0     (-----) [004] d..2 82316.134205: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
57476 [email protected]   (  619) [001] ...1 82316.134228: tracing_mark_write: E|619
57477           <...>-27619 (-----) [005] d..2 82316.134232: sched_switch: prev_comm=id.nn.benchmark prev_pid=27619 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
57478           <...>-27550 (-----) [004] ...1 82316.134238: tracing_mark_write: E|27550
57479           <...>-27550 (-----) [004] ...1 82316.134243: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
57480           <...>-27550 (-----) [004] ...1 82316.134249: tracing_mark_write: E|27550
57481          <idle>-0     (-----) [005] d..1 82316.134252: cpu_idle: state=0 cpu_id=5
57482           <...>-27550 (-----) [004] ...1 82316.134252: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
57483           <...>-27550 (-----) [004] ...1 82316.134256: tracing_mark_write: E|27550
57484           <...>-27550 (-----) [004] ...1 82316.134260: tracing_mark_write: E|27550
57485 [email protected]   (  619) [001] ...1 82316.134277: tracing_mark_write: E|619
57486 [email protected]   (  619) [001] .... 82316.134293: binder_transaction: transaction=1569745 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
57487 [email protected]   (  619) [001] .... 82316.134298: binder_transaction_alloc_buf: transaction=1569745 data_size=576 offsets_size=112
57488 [email protected]   (  619) [001] d..2 82316.134321: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
57489 [email protected]   (  619) [001] d..3 82316.134340: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
57490 [email protected]   (  619) [001] .... 82316.134345: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
57491          <idle>-0     (-----) [003] .n.1 82316.134347: cpu_idle: state=4294967295 cpu_id=3
57492          <idle>-0     (-----) [003] d..2 82316.134356: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
57493  surfaceflinger-8858  ( 8858) [003] .... 82316.134364: binder_transaction_received: transaction=1569745
57494           <...>-27550 (-----) [004] ...1 82316.134373: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
57495           <...>-27550 (-----) [004] ...1 82316.134431: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
57496           <...>-27550 (-----) [004] ...1 82316.134436: tracing_mark_write: E|27550
57497           <...>-27550 (-----) [004] ...1 82316.134440: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
57498 [email protected]   (  619) [001] d..2 82316.134440: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
57499           <...>-27550 (-----) [004] ...1 82316.134445: tracing_mark_write: E|27550
57500           <...>-27550 (-----) [004] ...1 82316.134448: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
57501           <...>-27550 (-----) [004] ...1 82316.134452: tracing_mark_write: E|27550
57502           <...>-27550 (-----) [004] ...1 82316.134456: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
57503          <idle>-0     (-----) [001] d..1 82316.134460: cpu_idle: state=0 cpu_id=1
57504          <idle>-0     (-----) [005] .n.1 82316.134547: cpu_idle: state=4294967295 cpu_id=5
57505           <...>-27550 (-----) [004] ...1 82316.134549: tracing_mark_write: E|27550
57506           <...>-27550 (-----) [004] ...1 82316.134554: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
57507          <idle>-0     (-----) [005] d..2 82316.134557: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27620 next_prio=110
57508           <...>-27550 (-----) [004] d..2 82316.134571: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57509          <idle>-0     (-----) [004] d..1 82316.134585: cpu_idle: state=0 cpu_id=4
57510           <...>-27620 (-----) [005] ...1 82316.134617: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
57511           <...>-27620 (-----) [005] ...1 82316.134631: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
57512           <...>-27620 (-----) [005] ...1 82316.134635: tracing_mark_write: E|27550
57513           <...>-27620 (-----) [005] .... 82316.134656: binder_transaction: transaction=1569746 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
57514           <...>-27620 (-----) [005] .... 82316.134659: binder_transaction_alloc_buf: transaction=1569746 data_size=48 offsets_size=0
57515           <...>-27620 (-----) [005] ...2 82316.134663: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
57516           <...>-27620 (-----) [005] d..4 82316.134665: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
57517           <...>-27620 (-----) [005] dn.5 82316.134676: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
57518           <...>-27620 (-----) [005] d..2 82316.134683: sched_switch: prev_comm=id.nn.benchmark prev_pid=27620 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
57519<...>-770 ( 770) [005] .... 82316.134693: binder_transaction_received: transaction=1569746
57520<...>-770 ( 770) [005] ...1 82316.134717: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
57521 crtc_commit:111-321   (  321) [000] d..2 82316.134786: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
57522<...>-770 ( 770) [005] d..2 82316.134794: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
57523          <idle>-0     (-----) [000] d..1 82316.134803: cpu_idle: state=0 cpu_id=0
57524  surfaceflinger-8858  ( 8858) [003] d..2 82316.134817: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57525          <idle>-0     (-----) [003] dnh3 82316.134835: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
57526<...>-770 ( 770) [005] ...1 82316.134847: tracing_mark_write: E|770
57527          <idle>-0     (-----) [003] d..2 82316.134848: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
57528<...>-770 ( 770) [005] .... 82316.134855: binder_transaction: transaction=1569747 dest_node=0 dest_proc=27550 dest_thread=27620 reply=1 flags=0x0 code=0x0
57529<...>-770 ( 770) [005] .... 82316.134858: binder_transaction_alloc_buf: transaction=1569747 data_size=168 offsets_size=32
57530<...>-770 ( 770) [005] .... 82316.134865: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
57531<...>-770 ( 770) [005] d..2 82316.134901: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27620 next_prio=110
57532           <...>-27620 (-----) [005] .... 82316.134912: binder_transaction_received: transaction=1569747
57533<...>-581 ( 571) [003] d..2 82316.134941: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57534          <idle>-0     (-----) [003] d..1 82316.134955: cpu_idle: state=0 cpu_id=3
57535           <...>-27620 (-----) [005] ...1 82316.134984: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
57536           <...>-27620 (-----) [005] ...1 82316.134990: tracing_mark_write: E|27550
57537           <...>-27620 (-----) [005] .... 82316.135004: binder_transaction: transaction=1569748 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
57538           <...>-27620 (-----) [005] .... 82316.135006: binder_transaction_alloc_buf: transaction=1569748 data_size=48 offsets_size=0
57539           <...>-27620 (-----) [005] ...2 82316.135008: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
57540           <...>-27620 (-----) [005] d..4 82316.135011: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
57541           <...>-27620 (-----) [005] dn.5 82316.135021: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
57542           <...>-27620 (-----) [005] d..2 82316.135028: sched_switch: prev_comm=id.nn.benchmark prev_pid=27620 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
57543<...>-770 ( 770) [005] .... 82316.135036: binder_transaction_received: transaction=1569748
57544<...>-770 ( 770) [005] ...1 82316.135053: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
57545<...>-770 ( 770) [005] d.s2 82316.135139: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
57546          <idle>-0     (-----) [003] d.s2 82316.135139: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
57547          <idle>-0     (-----) [003] dns3 82316.135168: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
57548<...>-770 ( 770) [005] d..2 82316.135179: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
57549          <idle>-0     (-----) [000] dnh2 82316.135181: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
57550          <idle>-0     (-----) [003] .n.1 82316.135181: cpu_idle: state=4294967295 cpu_id=3
57551          <idle>-0     (-----) [000] .n.1 82316.135190: cpu_idle: state=4294967295 cpu_id=0
57552          <idle>-0     (-----) [003] d..2 82316.135193: 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
57553<...>-8 ( 8) [003] d.h3 82316.135203: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
57554          <idle>-0     (-----) [000] d..2 82316.135204: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
57555<...>-770 ( 770) [005] ...1 82316.135221: tracing_mark_write: E|770
57556<...>-8 ( 8) [003] d..2 82316.135225: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
57557<...>-770 ( 770) [005] .... 82316.135229: binder_transaction: transaction=1569749 dest_node=0 dest_proc=27550 dest_thread=27620 reply=1 flags=0x0 code=0x0
57558<...>-770 ( 770) [005] .... 82316.135232: binder_transaction_alloc_buf: transaction=1569749 data_size=168 offsets_size=32
57559<...>-770 ( 770) [005] .... 82316.135238: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
57560<...>-770 ( 770) [005] d..2 82316.135272: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27620 next_prio=110
57561           <...>-27620 (-----) [005] .... 82316.135284: binder_transaction_received: transaction=1569749
57562<...>-581 ( 571) [003] d..2 82316.135301: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57563          <idle>-0     (-----) [003] d..1 82316.135318: cpu_idle: state=0 cpu_id=3
57564  kworker/u16:15-1311  ( 1311) [000] d..2 82316.135323: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57565          <idle>-0     (-----) [000] d..1 82316.135337: cpu_idle: state=0 cpu_id=0
57566           <...>-27620 (-----) [005] ...1 82316.135567: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
57567           <...>-27620 (-----) [005] ...1 82316.135577: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
57568           <...>-27620 (-----) [005] ...1 82316.135581: tracing_mark_write: E|27550
57569           <...>-27620 (-----) [005] .... 82316.135646: binder_transaction: transaction=1569750 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
57570           <...>-27620 (-----) [005] .... 82316.135649: binder_transaction_alloc_buf: transaction=1569750 data_size=556 offsets_size=104
57571           <...>-27620 (-----) [005] ...2 82316.135663: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
57572           <...>-27620 (-----) [005] d..4 82316.135666: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57573           <...>-27620 (-----) [005] dn.5 82316.135677: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57574           <...>-27620 (-----) [005] d..2 82316.135685: sched_switch: prev_comm=id.nn.benchmark prev_pid=27620 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57575<...>-5340 ( 788) [005] .... 82316.135694: binder_transaction_received: transaction=1569750
57576<...>-5340 ( 788) [005] ...1 82316.135742: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
57577<...>-5340 ( 788) [005] d..2 82316.135790: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57578<...>-5340 ( 788) [005] d..2 82316.135815: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27620 next_prio=110
57579          <idle>-0     (-----) [000] dnh2 82316.135819: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57580          <idle>-0     (-----) [000] .n.1 82316.135826: cpu_idle: state=4294967295 cpu_id=0
57581          <idle>-0     (-----) [000] d..2 82316.135838: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
57582           <...>-27620 (-----) [005] d..2 82316.135838: sched_switch: prev_comm=id.nn.benchmark prev_pid=27620 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
57583          <idle>-0     (-----) [005] d..1 82316.135856: cpu_idle: state=0 cpu_id=5
57584<...>-87 ( 87) [000] d..2 82316.135882: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57585          <idle>-0     (-----) [002] d.h4 82316.135889: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57586          <idle>-0     (-----) [000] d..1 82316.135896: cpu_idle: state=0 cpu_id=0
57587          <idle>-0     (-----) [002] dnh5 82316.135908: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57588          <idle>-0     (-----) [002] .n.1 82316.135918: cpu_idle: state=4294967295 cpu_id=2
57589          <idle>-0     (-----) [002] d..2 82316.135933: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
57590<...>-86 ( 86) [002] d..3 82316.135966: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57591          <idle>-0     (-----) [005] dnh2 82316.135987: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57592          <idle>-0     (-----) [005] .n.1 82316.135992: cpu_idle: state=4294967295 cpu_id=5
57593          <idle>-0     (-----) [005] d..2 82316.136000: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57594<...>-86 ( 86) [002] d..2 82316.136027: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57595          <idle>-0     (-----) [002] d..1 82316.136042: cpu_idle: state=0 cpu_id=2
57596<...>-5340 ( 788) [005] d..1 82316.136055: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57597          <idle>-0     (-----) [000] dnh2 82316.136081: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57598          <idle>-0     (-----) [000] .n.1 82316.136089: cpu_idle: state=4294967295 cpu_id=0
57599          <idle>-0     (-----) [000] d..2 82316.136100: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
57600 neuralnetworks@-13088 (  788) [000] d..2 82316.136144: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57601          <idle>-0     (-----) [000] d..1 82316.136158: cpu_idle: state=0 cpu_id=0
57602<...>-5340 ( 788) [005] d..2 82316.136200: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57603          <idle>-0     (-----) [000] dnh2 82316.136221: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57604<...>-5340 ( 788) [005] d..2 82316.136226: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
57605          <idle>-0     (-----) [000] .n.1 82316.136229: cpu_idle: state=4294967295 cpu_id=0
57606          <idle>-0     (-----) [000] d..2 82316.136240: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
57607          <idle>-0     (-----) [005] d..1 82316.136240: cpu_idle: state=0 cpu_id=5
57608<...>-87 ( 87) [000] d..2 82316.136280: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57609          <idle>-0     (-----) [002] d.h4 82316.136280: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57610          <idle>-0     (-----) [002] dnh5 82316.136292: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57611          <idle>-0     (-----) [000] d..1 82316.136294: cpu_idle: state=0 cpu_id=0
57612          <idle>-0     (-----) [002] .n.1 82316.136303: cpu_idle: state=4294967295 cpu_id=2
57613          <idle>-0     (-----) [002] d..2 82316.136314: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
57614<...>-86 ( 86) [002] d..2 82316.136350: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57615          <idle>-0     (-----) [002] d..1 82316.136364: cpu_idle: state=0 cpu_id=2
57616          <idle>-0     (-----) [005] ...1 82316.136562: cpu_idle: state=4294967295 cpu_id=5
57617          <idle>-0     (-----) [005] d..1 82316.136565: cpu_idle: state=0 cpu_id=5
57618          <idle>-0     (-----) [000] ...1 82316.137591: cpu_idle: state=4294967295 cpu_id=0
57619          <idle>-0     (-----) [000] d..1 82316.137597: cpu_idle: state=0 cpu_id=0
57620          <idle>-0     (-----) [002] ...1 82316.137737: cpu_idle: state=4294967295 cpu_id=2
57621          <idle>-0     (-----) [002] d..1 82316.137742: cpu_idle: state=0 cpu_id=2
57622          <idle>-0     (-----) [002] d.h4 82316.137980: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57623          <idle>-0     (-----) [005] dnh2 82316.138000: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57624          <idle>-0     (-----) [005] .n.1 82316.138004: cpu_idle: state=4294967295 cpu_id=5
57625          <idle>-0     (-----) [005] d..2 82316.138012: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57626          <idle>-0     (-----) [002] ...1 82316.138021: cpu_idle: state=4294967295 cpu_id=2
57627          <idle>-0     (-----) [002] d..1 82316.138028: cpu_idle: state=0 cpu_id=2
57628<...>-5340 ( 788) [005] d..1 82316.138059: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57629          <idle>-0     (-----) [000] dnh2 82316.138084: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57630          <idle>-0     (-----) [000] .n.1 82316.138090: cpu_idle: state=4294967295 cpu_id=0
57631          <idle>-0     (-----) [000] d..2 82316.138102: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
57632<...>-5340 ( 788) [005] ...1 82316.138152: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
57633<...>-5340 ( 788) [005] ...1 82316.138156: tracing_mark_write: E|788
57634 neuralnetworks@-13088 (  788) [000] d..2 82316.138168: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57635<...>-5340 ( 788) [005] .... 82316.138171: binder_transaction: transaction=1569753 dest_node=1569751 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
57636<...>-5340 ( 788) [005] .... 82316.138174: binder_transaction_alloc_buf: transaction=1569753 data_size=60 offsets_size=0
57637<...>-5340 ( 788) [005] d..4 82316.138177: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
57638          <idle>-0     (-----) [000] d..1 82316.138182: cpu_idle: state=0 cpu_id=0
57639<...>-5340 ( 788) [005] d..5 82316.138189: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
57640          <idle>-0     (-----) [004] .n.1 82316.138195: cpu_idle: state=4294967295 cpu_id=4
57641          <idle>-0     (-----) [004] d..2 82316.138203: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
57642           <...>-27571 (-----) [004] .... 82316.138208: binder_transaction_received: transaction=1569753
57643<...>-5340 ( 788) [005] ...1 82316.138211: tracing_mark_write: E|788
57644<...>-5340 ( 788) [005] .... 82316.138217: binder_transaction: transaction=1569754 dest_node=0 dest_proc=27550 dest_thread=27620 reply=1 flags=0x0 code=0x0
57645<...>-5340 ( 788) [005] .... 82316.138219: binder_transaction_alloc_buf: transaction=1569754 data_size=8 offsets_size=0
57646<...>-5340 ( 788) [005] d..2 82316.138221: sched_waking: comm=id.nn.benchmark pid=27620 prio=110 target_cpu=005
57647           <...>-27571 (-----) [004] ...1 82316.138225: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
57648<...>-5340 ( 788) [005] d..3 82316.138228: sched_wakeup: comm=id.nn.benchmark pid=27620 prio=110 target_cpu=005
57649<...>-5340 ( 788) [005] .... 82316.138230: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
57650           <...>-27571 (-----) [004] ...1 82316.138232: tracing_mark_write: E|27550
57651           <...>-27571 (-----) [004] d..2 82316.138260: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57652          <idle>-0     (-----) [004] d..1 82316.138268: cpu_idle: state=0 cpu_id=4
57653<...>-5340 ( 788) [005] d..2 82316.138271: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27620 next_prio=110
57654           <...>-27620 (-----) [005] .... 82316.138280: binder_transaction_received: transaction=1569754
57655           <...>-27620 (-----) [005] ...1 82316.138315: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
57656           <...>-27620 (-----) [005] ...1 82316.138322: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
57657           <...>-27620 (-----) [005] ...1 82316.138348: tracing_mark_write: E|27550
57658           <...>-27620 (-----) [005] ...1 82316.138351: tracing_mark_write: E|27550
57659           <...>-27620 (-----) [005] ...1 82316.138355: tracing_mark_write: E|27550
57660           <...>-27620 (-----) [005] d.s4 82316.138468: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
57661          <idle>-0     (-----) [001] d.s2 82316.138476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
57662          <idle>-0     (-----) [000] dnh2 82316.138494: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
57663          <idle>-0     (-----) [001] dns3 82316.138525: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
57664          <idle>-0     (-----) [000] .n.1 82316.138533: cpu_idle: state=4294967295 cpu_id=0
57665          <idle>-0     (-----) [000] d..2 82316.138547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
57666          <idle>-0     (-----) [001] .n.1 82316.138553: cpu_idle: state=4294967295 cpu_id=1
57667          <idle>-0     (-----) [001] d..2 82316.138567: 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
57668           <...>-27620 (-----) [005] ...1 82316.138603: tracing_mark_write: E|27550
57669           <...>-27620 (-----) [005] d..1 82316.138615: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57670     rcu_preempt-7     (    7) [001] d..2 82316.138618: 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
57671           <...>-27620 (-----) [005] d..2 82316.138628: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57672          <idle>-0     (-----) [004] .n.1 82316.138633: cpu_idle: state=4294967295 cpu_id=4
57673          <idle>-0     (-----) [004] d..2 82316.138640: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
57674          <idle>-0     (-----) [001] d..1 82316.138642: cpu_idle: state=0 cpu_id=1
57675           <...>-27550 (-----) [004] d..2 82316.138661: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57676          <idle>-0     (-----) [004] d..1 82316.138687: cpu_idle: state=0 cpu_id=4
57677          <idle>-0     (-----) [004] ...1 82316.138698: cpu_idle: state=4294967295 cpu_id=4
57678          <idle>-0     (-----) [004] d..1 82316.138702: cpu_idle: state=0 cpu_id=4
57679           <...>-27620 (-----) [005] d..1 82316.138725: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57680           <...>-27620 (-----) [005] d..2 82316.138734: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57681          <idle>-0     (-----) [004] .n.1 82316.138739: cpu_idle: state=4294967295 cpu_id=4
57682          <idle>-0     (-----) [004] d..2 82316.138746: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
57683           <...>-27620 (-----) [005] d..2 82316.138777: sched_switch: prev_comm=id.nn.benchmark prev_pid=27620 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
57684           <...>-27550 (-----) [004] ...1 82316.138779: tracing_mark_write: E|27550
57685           <...>-27550 (-----) [004] ...1 82316.138792: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
57686          <idle>-0     (-----) [005] d..1 82316.138797: cpu_idle: state=0 cpu_id=5
57687           <...>-27550 (-----) [004] ...1 82316.138803: tracing_mark_write: E|27550
57688           <...>-27550 (-----) [004] ...1 82316.138806: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
57689           <...>-27550 (-----) [004] ...1 82316.138811: tracing_mark_write: E|27550
57690           <...>-27550 (-----) [004] ...1 82316.138814: tracing_mark_write: E|27550
57691  kworker/u16:15-1311  ( 1311) [000] d..2 82316.138840: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57692          <idle>-0     (-----) [000] d..1 82316.138856: cpu_idle: state=0 cpu_id=0
57693           <...>-27550 (-----) [004] ...1 82316.138931: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
57694           <...>-27550 (-----) [004] ...1 82316.138988: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
57695           <...>-27550 (-----) [004] ...1 82316.138993: tracing_mark_write: E|27550
57696           <...>-27550 (-----) [004] ...1 82316.138997: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
57697           <...>-27550 (-----) [004] ...1 82316.139004: tracing_mark_write: E|27550
57698           <...>-27550 (-----) [004] ...1 82316.139007: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
57699           <...>-27550 (-----) [004] ...1 82316.139011: tracing_mark_write: E|27550
57700           <...>-27550 (-----) [004] ...1 82316.139016: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
57701          <idle>-0     (-----) [005] .n.1 82316.139106: cpu_idle: state=4294967295 cpu_id=5
57702           <...>-27550 (-----) [004] ...1 82316.139107: tracing_mark_write: E|27550
57703           <...>-27550 (-----) [004] ...1 82316.139111: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
57704          <idle>-0     (-----) [005] d..2 82316.139115: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27621 next_prio=110
57705           <...>-27550 (-----) [004] d..2 82316.139129: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57706          <idle>-0     (-----) [004] d..1 82316.139143: cpu_idle: state=0 cpu_id=4
57707           <...>-27621 (-----) [005] ...1 82316.139176: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
57708           <...>-27621 (-----) [005] ...1 82316.139190: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
57709           <...>-27621 (-----) [005] ...1 82316.139194: tracing_mark_write: E|27550
57710           <...>-27621 (-----) [005] .... 82316.139213: binder_transaction: transaction=1569755 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
57711           <...>-27621 (-----) [005] .... 82316.139217: binder_transaction_alloc_buf: transaction=1569755 data_size=48 offsets_size=0
57712           <...>-27621 (-----) [005] ...2 82316.139220: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
57713           <...>-27621 (-----) [005] d..4 82316.139222: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
57714           <...>-27621 (-----) [005] dn.5 82316.139233: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
57715           <...>-27621 (-----) [005] d..2 82316.139239: sched_switch: prev_comm=id.nn.benchmark prev_pid=27621 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
57716<...>-770 ( 770) [005] .... 82316.139250: binder_transaction_received: transaction=1569755
57717<...>-770 ( 770) [005] ...1 82316.139273: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
57718<...>-770 ( 770) [005] d..2 82316.139344: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
57719          <idle>-0     (-----) [000] dnh2 82316.139385: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
57720          <idle>-0     (-----) [000] .n.1 82316.139393: cpu_idle: state=4294967295 cpu_id=0
57721<...>-770 ( 770) [005] ...1 82316.139396: tracing_mark_write: E|770
57722<...>-770 ( 770) [005] .... 82316.139404: binder_transaction: transaction=1569756 dest_node=0 dest_proc=27550 dest_thread=27621 reply=1 flags=0x0 code=0x0
57723          <idle>-0     (-----) [000] d..2 82316.139405: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
57724<...>-770 ( 770) [005] .... 82316.139406: binder_transaction_alloc_buf: transaction=1569756 data_size=168 offsets_size=32
57725<...>-770 ( 770) [005] .... 82316.139413: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
57726<...>-770 ( 770) [005] d..2 82316.139449: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27621 next_prio=110
57727           <...>-27621 (-----) [005] .... 82316.139460: binder_transaction_received: transaction=1569756
57728<...>-581 ( 571) [000] d..2 82316.139509: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57729          <idle>-0     (-----) [000] d..1 82316.139527: cpu_idle: state=0 cpu_id=0
57730           <...>-27621 (-----) [005] ...1 82316.139528: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
57731           <...>-27621 (-----) [005] ...1 82316.139534: tracing_mark_write: E|27550
57732           <...>-27621 (-----) [005] .... 82316.139548: binder_transaction: transaction=1569757 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
57733           <...>-27621 (-----) [005] .... 82316.139551: binder_transaction_alloc_buf: transaction=1569757 data_size=48 offsets_size=0
57734           <...>-27621 (-----) [005] ...2 82316.139553: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
57735           <...>-27621 (-----) [005] d..4 82316.139555: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
57736           <...>-27621 (-----) [005] dn.5 82316.139565: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
57737           <...>-27621 (-----) [005] d..2 82316.139572: sched_switch: prev_comm=id.nn.benchmark prev_pid=27621 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
57738<...>-770 ( 770) [005] .... 82316.139580: binder_transaction_received: transaction=1569757
57739<...>-770 ( 770) [005] ...1 82316.139597: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
57740<...>-770 ( 770) [005] d..2 82316.139655: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
57741          <idle>-0     (-----) [000] dnh2 82316.139680: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
57742          <idle>-0     (-----) [000] .n.1 82316.139688: cpu_idle: state=4294967295 cpu_id=0
57743<...>-770 ( 770) [005] ...1 82316.139689: tracing_mark_write: E|770
57744<...>-770 ( 770) [005] .... 82316.139697: binder_transaction: transaction=1569758 dest_node=0 dest_proc=27550 dest_thread=27621 reply=1 flags=0x0 code=0x0
57745          <idle>-0     (-----) [000] d..2 82316.139699: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
57746<...>-770 ( 770) [005] .... 82316.139700: binder_transaction_alloc_buf: transaction=1569758 data_size=168 offsets_size=32
57747<...>-770 ( 770) [005] .... 82316.139706: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
57748<...>-770 ( 770) [005] d..2 82316.139741: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27621 next_prio=110
57749           <...>-27621 (-----) [005] .... 82316.139751: binder_transaction_received: transaction=1569758
57750<...>-581 ( 571) [000] d..2 82316.139767: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57751          <idle>-0     (-----) [000] d..1 82316.139784: cpu_idle: state=0 cpu_id=0
57752          <idle>-0     (-----) [000] d.h5 82316.139965: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
57753          <idle>-0     (-----) [000] d.h6 82316.139990: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
57754          <idle>-0     (-----) [000] d.h5 82316.139995: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
57755          <idle>-0     (-----) [002] .n.1 82316.139995: cpu_idle: state=4294967295 cpu_id=2
57756          <idle>-0     (-----) [000] dnh6 82316.140004: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
57757          <idle>-0     (-----) [002] d..2 82316.140008: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
57758          <idle>-0     (-----) [000] .n.1 82316.140021: cpu_idle: state=4294967295 cpu_id=0
57759           <...>-27621 (-----) [005] ...1 82316.140021: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
57760           <...>-27621 (-----) [005] ...1 82316.140030: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
57761          <idle>-0     (-----) [000] d..2 82316.140032: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
57762           <...>-27621 (-----) [005] ...1 82316.140034: tracing_mark_write: E|27550
57763  crtc_event:111-322   (  322) [002] d..2 82316.140047: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57764          <idle>-0     (-----) [002] d..1 82316.140059: cpu_idle: state=0 cpu_id=2
57765           <...>-27621 (-----) [005] .... 82316.140091: binder_transaction: transaction=1569759 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
57766           <...>-27621 (-----) [005] .... 82316.140095: binder_transaction_alloc_buf: transaction=1569759 data_size=556 offsets_size=104
57767           <...>-27621 (-----) [005] ...2 82316.140108: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
57768           <...>-27621 (-----) [005] d..4 82316.140111: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57769           <...>-27621 (-----) [005] dn.5 82316.140122: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57770           <...>-27621 (-----) [005] d..2 82316.140129: sched_switch: prev_comm=id.nn.benchmark prev_pid=27621 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57771<...>-5340 ( 788) [005] .... 82316.140139: binder_transaction_received: transaction=1569759
57772 crtc_commit:111-321   (  321) [000] d..2 82316.140179: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
57773<...>-5340 ( 788) [005] ...1 82316.140183: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
57774          <idle>-0     (-----) [000] d..1 82316.140190: cpu_idle: state=0 cpu_id=0
57775<...>-5340 ( 788) [005] d..2 82316.140228: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57776<...>-5340 ( 788) [005] d..2 82316.140252: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27621 next_prio=110
57777          <idle>-0     (-----) [000] dnh2 82316.140258: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57778          <idle>-0     (-----) [000] .n.1 82316.140265: cpu_idle: state=4294967295 cpu_id=0
57779          <idle>-0     (-----) [000] d..2 82316.140274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
57780           <...>-27621 (-----) [005] d..2 82316.140275: sched_switch: prev_comm=id.nn.benchmark prev_pid=27621 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
57781          <idle>-0     (-----) [005] d..1 82316.140293: cpu_idle: state=0 cpu_id=5
57782<...>-87 ( 87) [000] d..2 82316.140319: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57783          <idle>-0     (-----) [000] d..1 82316.140328: cpu_idle: state=0 cpu_id=0
57784          <idle>-0     (-----) [002] d.h4 82316.140328: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57785          <idle>-0     (-----) [002] dnh5 82316.140346: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57786          <idle>-0     (-----) [002] .n.1 82316.140356: cpu_idle: state=4294967295 cpu_id=2
57787          <idle>-0     (-----) [002] d..2 82316.140368: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
57788<...>-86 ( 86) [002] d..2 82316.140406: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57789          <idle>-0     (-----) [002] d.h5 82316.140428: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57790          <idle>-0     (-----) [005] dnh2 82316.140451: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57791          <idle>-0     (-----) [005] .n.1 82316.140455: cpu_idle: state=4294967295 cpu_id=5
57792          <idle>-0     (-----) [005] d..2 82316.140463: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57793          <idle>-0     (-----) [002] d..1 82316.140478: cpu_idle: state=0 cpu_id=2
57794<...>-5340 ( 788) [005] d..1 82316.140517: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57795          <idle>-0     (-----) [000] dnh2 82316.140544: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57796          <idle>-0     (-----) [000] .n.1 82316.140551: cpu_idle: state=4294967295 cpu_id=0
57797          <idle>-0     (-----) [000] d..2 82316.140559: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
57798 neuralnetworks@-13088 (  788) [000] d..2 82316.140611: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57799          <idle>-0     (-----) [000] d..1 82316.140620: cpu_idle: state=0 cpu_id=0
57800<...>-5340 ( 788) [005] d..2 82316.140663: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57801          <idle>-0     (-----) [000] dnh2 82316.140686: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57802<...>-5340 ( 788) [005] d..2 82316.140690: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
57803          <idle>-0     (-----) [000] .n.1 82316.140692: cpu_idle: state=4294967295 cpu_id=0
57804          <idle>-0     (-----) [000] d..2 82316.140701: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
57805          <idle>-0     (-----) [005] d..1 82316.140704: cpu_idle: state=0 cpu_id=5
57806          <idle>-0     (-----) [002] d.h4 82316.140742: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57807<...>-87 ( 87) [000] d..2 82316.140743: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57808          <idle>-0     (-----) [000] d..1 82316.140752: cpu_idle: state=0 cpu_id=0
57809          <idle>-0     (-----) [002] dnh5 82316.140753: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
57810          <idle>-0     (-----) [002] .n.1 82316.140762: cpu_idle: state=4294967295 cpu_id=2
57811          <idle>-0     (-----) [002] d..2 82316.140775: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
57812<...>-86 ( 86) [002] d..2 82316.140812: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57813          <idle>-0     (-----) [002] d..1 82316.140825: cpu_idle: state=0 cpu_id=2
57814          <idle>-0     (-----) [005] ...1 82316.141033: cpu_idle: state=4294967295 cpu_id=5
57815          <idle>-0     (-----) [005] d..1 82316.141037: cpu_idle: state=0 cpu_id=5
57816          <idle>-0     (-----) [003] d.s2 82316.141804: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
57817          <idle>-0     (-----) [000] d.s3 82316.141806: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
57818          <idle>-0     (-----) [003] dns3 82316.141822: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
57819          <idle>-0     (-----) [000] d.s4 82316.141826: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
57820          <idle>-0     (-----) [002] .n.1 82316.141832: cpu_idle: state=4294967295 cpu_id=2
57821          <idle>-0     (-----) [003] .n.1 82316.141842: cpu_idle: state=4294967295 cpu_id=3
57822          <idle>-0     (-----) [002] d..2 82316.141844: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
57823          <idle>-0     (-----) [003] d..2 82316.141855: 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
57824          <idle>-0     (-----) [000] ...1 82316.141857: cpu_idle: state=4294967295 cpu_id=0
57825<...>-8 ( 8) [003] d..2 82316.141865: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
57826          <idle>-0     (-----) [000] d..1 82316.141866: cpu_idle: state=0 cpu_id=0
57827  crtc_event:111-322   (  322) [002] d..2 82316.141878: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57828<...>-8 ( 8) [003] d..3 82316.141889: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
57829          <idle>-0     (-----) [002] d..2 82316.141900: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
57830<...>-8 ( 8) [003] d..2 82316.141914: 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
57831<...>-46 ( 46) [002] d..2 82316.141914: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
57832          <idle>-0     (-----) [003] d..1 82316.141926: cpu_idle: state=0 cpu_id=3
57833          <idle>-0     (-----) [003] .n.1 82316.141930: cpu_idle: state=4294967295 cpu_id=3
57834<...>-46 ( 46) [002] d..3 82316.141931: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
57835          <idle>-0     (-----) [003] d..2 82316.141946: 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
57836<...>-46 ( 46) [002] d..2 82316.141954: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57837          <idle>-0     (-----) [002] d..1 82316.141967: cpu_idle: state=0 cpu_id=2
57838<...>-8 ( 8) [003] d..2 82316.141971: 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
57839          <idle>-0     (-----) [003] d..1 82316.141981: cpu_idle: state=0 cpu_id=3
57840          <idle>-0     (-----) [000] d.h5 82316.142289: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
57841          <idle>-0     (-----) [000] dnh6 82316.142301: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
57842          <idle>-0     (-----) [000] .n.1 82316.142315: cpu_idle: state=4294967295 cpu_id=0
57843          <idle>-0     (-----) [000] d..2 82316.142326: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
57844 crtc_commit:111-321   (  321) [000] d..2 82316.142409: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57845          <idle>-0     (-----) [000] d..1 82316.142425: cpu_idle: state=0 cpu_id=0
57846          <idle>-0     (-----) [002] d.h4 82316.142477: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57847          <idle>-0     (-----) [005] dnh2 82316.142498: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57848          <idle>-0     (-----) [005] .n.1 82316.142501: cpu_idle: state=4294967295 cpu_id=5
57849          <idle>-0     (-----) [005] d..2 82316.142510: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57850          <idle>-0     (-----) [002] ...1 82316.142519: cpu_idle: state=4294967295 cpu_id=2
57851          <idle>-0     (-----) [002] d..1 82316.142527: cpu_idle: state=0 cpu_id=2
57852<...>-5340 ( 788) [005] d..1 82316.142560: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57853          <idle>-0     (-----) [000] d.h5 82316.142595: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
57854          <idle>-0     (-----) [000] d.h6 82316.142644: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
57855          <idle>-0     (-----) [002] .n.1 82316.142651: cpu_idle: state=4294967295 cpu_id=2
57856<...>-5340 ( 788) [005] ...1 82316.142652: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
57857<...>-5340 ( 788) [005] ...1 82316.142656: tracing_mark_write: E|788
57858          <idle>-0     (-----) [002] d..2 82316.142663: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
57859          <idle>-0     (-----) [000] dnh2 82316.142671: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
57860<...>-5340 ( 788) [005] .... 82316.142671: binder_transaction: transaction=1569762 dest_node=1569760 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
57861<...>-5340 ( 788) [005] .... 82316.142674: binder_transaction_alloc_buf: transaction=1569762 data_size=60 offsets_size=0
57862<...>-5340 ( 788) [005] d..4 82316.142677: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
57863          <idle>-0     (-----) [000] .n.1 82316.142678: cpu_idle: state=4294967295 cpu_id=0
57864<...>-5340 ( 788) [005] d..5 82316.142690: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
57865          <idle>-0     (-----) [000] d..2 82316.142690: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
57866          <idle>-0     (-----) [004] .n.1 82316.142696: cpu_idle: state=4294967295 cpu_id=4
57867  crtc_event:111-322   (  322) [002] d..2 82316.142699: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
57868          <idle>-0     (-----) [004] d..2 82316.142705: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
57869           <...>-27571 (-----) [004] .... 82316.142710: binder_transaction_received: transaction=1569762
57870          <idle>-0     (-----) [002] d..1 82316.142711: cpu_idle: state=0 cpu_id=2
57871<...>-5340 ( 788) [005] ...1 82316.142713: tracing_mark_write: E|788
57872<...>-5340 ( 788) [005] .... 82316.142719: binder_transaction: transaction=1569763 dest_node=0 dest_proc=27550 dest_thread=27621 reply=1 flags=0x0 code=0x0
57873<...>-5340 ( 788) [005] .... 82316.142721: binder_transaction_alloc_buf: transaction=1569763 data_size=8 offsets_size=0
57874<...>-5340 ( 788) [005] d..2 82316.142723: sched_waking: comm=id.nn.benchmark pid=27621 prio=110 target_cpu=005
57875 neuralnetworks@-13088 (  788) [000] d..2 82316.142728: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57876           <...>-27571 (-----) [004] ...1 82316.142728: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
57877<...>-5340 ( 788) [005] d..3 82316.142731: sched_wakeup: comm=id.nn.benchmark pid=27621 prio=110 target_cpu=005
57878<...>-5340 ( 788) [005] .... 82316.142732: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
57879           <...>-27571 (-----) [004] ...1 82316.142734: tracing_mark_write: E|27550
57880          <idle>-0     (-----) [000] d..1 82316.142743: cpu_idle: state=0 cpu_id=0
57881           <...>-27571 (-----) [004] d..2 82316.142763: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57882          <idle>-0     (-----) [004] d..1 82316.142771: cpu_idle: state=0 cpu_id=4
57883<...>-5340 ( 788) [005] d..2 82316.142773: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27621 next_prio=110
57884           <...>-27621 (-----) [005] .... 82316.142783: binder_transaction_received: transaction=1569763
57885           <...>-27621 (-----) [005] ...1 82316.142819: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
57886           <...>-27621 (-----) [005] ...1 82316.142825: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
57887           <...>-27621 (-----) [005] ...1 82316.142851: tracing_mark_write: E|27550
57888           <...>-27621 (-----) [005] ...1 82316.142854: tracing_mark_write: E|27550
57889           <...>-27621 (-----) [005] ...1 82316.142858: tracing_mark_write: E|27550
57890           <...>-27621 (-----) [005] ...1 82316.143048: tracing_mark_write: E|27550
57891           <...>-27621 (-----) [005] d..1 82316.143061: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57892           <...>-27621 (-----) [005] d..2 82316.143076: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57893          <idle>-0     (-----) [004] .n.1 82316.143082: cpu_idle: state=4294967295 cpu_id=4
57894          <idle>-0     (-----) [004] d..2 82316.143088: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
57895           <...>-27550 (-----) [004] d..2 82316.143108: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57896          <idle>-0     (-----) [004] d..1 82316.143117: cpu_idle: state=0 cpu_id=4
57897           <...>-27621 (-----) [005] d..1 82316.143161: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57898           <...>-27621 (-----) [005] d..2 82316.143171: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
57899          <idle>-0     (-----) [004] .n.1 82316.143176: cpu_idle: state=4294967295 cpu_id=4
57900          <idle>-0     (-----) [004] d..2 82316.143183: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
57901           <...>-27621 (-----) [005] d..2 82316.143209: sched_switch: prev_comm=id.nn.benchmark prev_pid=27621 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
57902           <...>-27550 (-----) [004] ...1 82316.143216: tracing_mark_write: E|27550
57903           <...>-27550 (-----) [004] ...1 82316.143221: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
57904           <...>-27550 (-----) [004] ...1 82316.143227: tracing_mark_write: E|27550
57905          <idle>-0     (-----) [005] d..1 82316.143230: cpu_idle: state=0 cpu_id=5
57906           <...>-27550 (-----) [004] ...1 82316.143231: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
57907           <...>-27550 (-----) [004] ...1 82316.143235: tracing_mark_write: E|27550
57908           <...>-27550 (-----) [004] ...1 82316.143239: tracing_mark_write: E|27550
57909           <...>-27550 (-----) [004] ...1 82316.143351: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
57910           <...>-27550 (-----) [004] ...1 82316.143408: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
57911           <...>-27550 (-----) [004] ...1 82316.143413: tracing_mark_write: E|27550
57912           <...>-27550 (-----) [004] ...1 82316.143417: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
57913           <...>-27550 (-----) [004] ...1 82316.143422: tracing_mark_write: E|27550
57914           <...>-27550 (-----) [004] ...1 82316.143425: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
57915           <...>-27550 (-----) [004] ...1 82316.143429: tracing_mark_write: E|27550
57916           <...>-27550 (-----) [004] ...1 82316.143433: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
57917          <idle>-0     (-----) [005] .n.1 82316.143516: cpu_idle: state=4294967295 cpu_id=5
57918           <...>-27550 (-----) [004] ...1 82316.143517: tracing_mark_write: E|27550
57919           <...>-27550 (-----) [004] ...1 82316.143522: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
57920          <idle>-0     (-----) [005] d..2 82316.143524: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27622 next_prio=110
57921           <...>-27550 (-----) [004] d..2 82316.143538: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
57922          <idle>-0     (-----) [004] d..1 82316.143552: cpu_idle: state=0 cpu_id=4
57923           <...>-27622 (-----) [005] ...1 82316.143585: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
57924           <...>-27622 (-----) [005] ...1 82316.143599: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
57925           <...>-27622 (-----) [005] ...1 82316.143603: tracing_mark_write: E|27550
57926           <...>-27622 (-----) [005] .... 82316.143623: binder_transaction: transaction=1569764 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
57927           <...>-27622 (-----) [005] .... 82316.143626: binder_transaction_alloc_buf: transaction=1569764 data_size=48 offsets_size=0
57928           <...>-27622 (-----) [005] ...2 82316.143629: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
57929           <...>-27622 (-----) [005] d..4 82316.143631: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
57930           <...>-27622 (-----) [005] dn.5 82316.143641: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
57931           <...>-27622 (-----) [005] d..2 82316.143648: sched_switch: prev_comm=id.nn.benchmark prev_pid=27622 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
57932<...>-770 ( 770) [005] .... 82316.143658: binder_transaction_received: transaction=1569764
57933<...>-770 ( 770) [005] ...1 82316.143679: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
57934<...>-770 ( 770) [005] d..2 82316.143750: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
57935          <idle>-0     (-----) [000] dnh2 82316.143778: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
57936          <idle>-0     (-----) [000] .n.1 82316.143786: cpu_idle: state=4294967295 cpu_id=0
57937<...>-770 ( 770) [005] ...1 82316.143789: tracing_mark_write: E|770
57938<...>-770 ( 770) [005] .... 82316.143797: binder_transaction: transaction=1569765 dest_node=0 dest_proc=27550 dest_thread=27622 reply=1 flags=0x0 code=0x0
57939          <idle>-0     (-----) [000] d..2 82316.143798: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
57940<...>-770 ( 770) [005] .... 82316.143800: binder_transaction_alloc_buf: transaction=1569765 data_size=168 offsets_size=32
57941<...>-770 ( 770) [005] .... 82316.143807: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
57942<...>-770 ( 770) [005] d..2 82316.143842: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27622 next_prio=110
57943           <...>-27622 (-----) [005] .... 82316.143853: binder_transaction_received: transaction=1569765
57944<...>-581 ( 571) [000] d..2 82316.143877: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57945          <idle>-0     (-----) [000] d..1 82316.143894: cpu_idle: state=0 cpu_id=0
57946           <...>-27622 (-----) [005] ...1 82316.143921: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
57947           <...>-27622 (-----) [005] ...1 82316.143926: tracing_mark_write: E|27550
57948           <...>-27622 (-----) [005] .... 82316.143940: binder_transaction: transaction=1569766 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
57949           <...>-27622 (-----) [005] .... 82316.143943: binder_transaction_alloc_buf: transaction=1569766 data_size=48 offsets_size=0
57950           <...>-27622 (-----) [005] ...2 82316.143945: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
57951           <...>-27622 (-----) [005] d..4 82316.143947: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
57952           <...>-27622 (-----) [005] dn.5 82316.143957: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
57953           <...>-27622 (-----) [005] d..2 82316.143964: sched_switch: prev_comm=id.nn.benchmark prev_pid=27622 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
57954<...>-770 ( 770) [005] .... 82316.143972: binder_transaction_received: transaction=1569766
57955<...>-770 ( 770) [005] ...1 82316.143989: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
57956<...>-770 ( 770) [005] d..2 82316.144045: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
57957          <idle>-0     (-----) [000] dnh2 82316.144070: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
57958<...>-770 ( 770) [005] ...1 82316.144077: tracing_mark_write: E|770
57959          <idle>-0     (-----) [000] .n.1 82316.144078: cpu_idle: state=4294967295 cpu_id=0
57960<...>-770 ( 770) [005] .... 82316.144085: binder_transaction: transaction=1569767 dest_node=0 dest_proc=27550 dest_thread=27622 reply=1 flags=0x0 code=0x0
57961<...>-770 ( 770) [005] .... 82316.144087: binder_transaction_alloc_buf: transaction=1569767 data_size=168 offsets_size=32
57962          <idle>-0     (-----) [000] d..2 82316.144089: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
57963<...>-770 ( 770) [005] .... 82316.144093: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
57964<...>-770 ( 770) [005] d..2 82316.144127: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27622 next_prio=110
57965           <...>-27622 (-----) [005] .... 82316.144138: binder_transaction_received: transaction=1569767
57966          <idle>-0     (-----) [002] ...1 82316.144146: cpu_idle: state=4294967295 cpu_id=2
57967          <idle>-0     (-----) [002] d..1 82316.144151: cpu_idle: state=0 cpu_id=2
57968<...>-581 ( 571) [000] d..2 82316.144152: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
57969          <idle>-0     (-----) [000] d..1 82316.144168: cpu_idle: state=0 cpu_id=0
57970           <...>-27622 (-----) [005] ...1 82316.144407: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
57971           <...>-27622 (-----) [005] ...1 82316.144417: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
57972           <...>-27622 (-----) [005] ...1 82316.144421: tracing_mark_write: E|27550
57973          <idle>-0     (-----) [003] d.h2 82316.144465: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
57974           <...>-27622 (-----) [005] .... 82316.144478: binder_transaction: transaction=1569768 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
57975          <idle>-0     (-----) [003] dnh3 82316.144480: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
57976           <...>-27622 (-----) [005] .... 82316.144481: binder_transaction_alloc_buf: transaction=1569768 data_size=556 offsets_size=104
57977          <idle>-0     (-----) [003] .n.1 82316.144489: cpu_idle: state=4294967295 cpu_id=3
57978           <...>-27622 (-----) [005] ...2 82316.144494: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
57979           <...>-27622 (-----) [005] d..4 82316.144497: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57980          <idle>-0     (-----) [003] d..2 82316.144499: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
57981           <...>-27622 (-----) [005] dn.5 82316.144508: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
57982           <...>-27622 (-----) [005] d..2 82316.144515: sched_switch: prev_comm=id.nn.benchmark prev_pid=27622 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
57983        DispSync-8879  ( 8858) [003] d..1 82316.144523: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
57984<...>-5340 ( 788) [005] .... 82316.144524: binder_transaction_received: transaction=1569768
57985        DispSync-8879  ( 8858) [003] d..2 82316.144541: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
57986          <idle>-0     (-----) [002] .n.1 82316.144546: cpu_idle: state=4294967295 cpu_id=2
57987          <idle>-0     (-----) [002] d..2 82316.144556: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
57988<...>-5340 ( 788) [005] ...1 82316.144568: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
57989        DispSync-8879  ( 8858) [003] d..2 82316.144577: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
57990          <idle>-0     (-----) [003] d..1 82316.144591: cpu_idle: state=0 cpu_id=3
57991  appEventThread-8881  ( 8858) [002] d..3 82316.144607: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
57992<...>-5340 ( 788) [005] d..2 82316.144608: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
57993  appEventThread-8881  ( 8858) [002] d..4 82316.144631: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
57994          <idle>-0     (-----) [000] .n.1 82316.144638: cpu_idle: state=4294967295 cpu_id=0
57995          <idle>-0     (-----) [000] d..2 82316.144651: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
57996<...>-5340 ( 788) [005] d..2 82316.144652: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27622 next_prio=110
57997  appEventThread-8881  ( 8858) [002] d.h1 82316.144652: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
57998           <...>-27622 (-----) [005] d..2 82316.144674: sched_switch: prev_comm=id.nn.benchmark prev_pid=27622 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
57999  appEventThread-8881  ( 8858) [002] d..2 82316.144677: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
58000          <idle>-0     (-----) [005] d..1 82316.144692: cpu_idle: state=0 cpu_id=5
58001<...>-87 ( 87) [002] d..2 82316.144723: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58002          <idle>-0     (-----) [002] d.h5 82316.144748: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58003          <idle>-0     (-----) [002] dnh6 82316.144765: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58004          <idle>-0     (-----) [002] d..2 82316.144779: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
58005<...>-86 ( 86) [002] d.h4 82316.144808: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58006          <idle>-0     (-----) [005] dnh2 82316.144829: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58007          <idle>-0     (-----) [005] .n.1 82316.144833: cpu_idle: state=4294967295 cpu_id=5
58008          <idle>-0     (-----) [005] d..2 82316.144841: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58009<...>-86 ( 86) [002] d..2 82316.144868: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58010          <idle>-0     (-----) [002] d..1 82316.144886: cpu_idle: state=0 cpu_id=2
58011<...>-5340 ( 788) [005] d..1 82316.144890: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58012<...>-9105 ( 9105) [000] dnh1 82316.144922: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58013<...>-9105 ( 9105) [000] d..2 82316.144937: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
58014 neuralnetworks@-13088 (  788) [000] d..2 82316.144979: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
58015<...>-5340 ( 788) [005] d..2 82316.145035: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
58016          <idle>-0     (-----) [002] dnh2 82316.145058: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
58017<...>-5340 ( 788) [005] d..2 82316.145061: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
58018          <idle>-0     (-----) [002] .n.1 82316.145066: cpu_idle: state=4294967295 cpu_id=2
58019<...>-9105 ( 9105) [000] .... 82316.145075: binder_transaction: transaction=1569771 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
58020          <idle>-0     (-----) [005] d..1 82316.145076: cpu_idle: state=0 cpu_id=5
58021          <idle>-0     (-----) [002] d..2 82316.145078: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
58022<...>-9105 ( 9105) [000] .... 82316.145082: binder_transaction_alloc_buf: transaction=1569771 data_size=80 offsets_size=0
58023<...>-9105 ( 9105) [000] d..4 82316.145088: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
58024<...>-87 ( 87) [002] d.h4 82316.145112: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58025<...>-9105 ( 9105) [000] d..5 82316.145128: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
58026<...>-87 ( 87) [002] d.h5 82316.145130: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58027          <idle>-0     (-----) [001] dns2 82316.145150: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
58028          <idle>-0     (-----) [001] dns3 82316.145167: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
58029          <idle>-0     (-----) [001] .n.1 82316.145178: cpu_idle: state=4294967295 cpu_id=1
58030          <idle>-0     (-----) [001] d..2 82316.145226: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
58031<...>-87 ( 87) [002] d..2 82316.145229: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
58032<...>-13083 ( 8858) [001] .... 82316.145236: binder_transaction_received: transaction=1569771
58033<...>-9105 ( 9105) [000] d..3 82316.145271: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
58034<...>-86 ( 86) [002] d..2 82316.145271: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58035<...>-13083 ( 8858) [001] d..1 82316.145277: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
58036          <idle>-0     (-----) [002] d..1 82316.145288: cpu_idle: state=0 cpu_id=2
58037<...>-13083 ( 8858) [001] d..2 82316.145304: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
58038          <idle>-0     (-----) [002] .n.1 82316.145311: cpu_idle: state=4294967295 cpu_id=2
58039<...>-9105 ( 9105) [000] d..4 82316.145312: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
58040          <idle>-0     (-----) [002] d..2 82316.145322: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
58041<...>-13083 ( 8858) [001] d..2 82316.145367: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
58042  appEventThread-8881  ( 8858) [002] d..2 82316.145368: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
58043     rcu_preempt-7     (    7) [001] d..2 82316.145374: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
58044     rcu_preempt-7     (    7) [001] d..3 82316.145396: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
58045          <idle>-0     (-----) [005] ...1 82316.145403: cpu_idle: state=4294967295 cpu_id=5
58046          <idle>-0     (-----) [005] d..1 82316.145406: cpu_idle: state=0 cpu_id=5
58047     rcu_preempt-7     (    7) [001] d..2 82316.145411: 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
58048         rcuop/4-45    (   45) [001] d..2 82316.145417: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
58049    RenderThread-9436  ( 9105) [002] d..2 82316.145427: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58050         rcuop/4-45    (   45) [001] d..3 82316.145446: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=002
58051          <idle>-0     (-----) [002] d..2 82316.145460: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
58052         rcuop/4-45    (   45) [001] d..2 82316.145473: 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
58053<...>-9105 ( 9105) [000] d..3 82316.145485: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
58054          <idle>-0     (-----) [001] d..1 82316.145491: cpu_idle: state=0 cpu_id=1
58055<...>-9105 ( 9105) [000] d..4 82316.145516: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
58056          <idle>-0     (-----) [001] .n.1 82316.145522: cpu_idle: state=4294967295 cpu_id=1
58057          <idle>-0     (-----) [001] d..2 82316.145536: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
58058<...>-9105 ( 9105) [000] d..2 82316.145555: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58059         rcuop/5-53    (   53) [002] d..2 82316.145557: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58060          <idle>-0     (-----) [002] d..1 82316.145568: cpu_idle: state=0 cpu_id=2
58061          <idle>-0     (-----) [000] d..1 82316.145578: cpu_idle: state=0 cpu_id=0
58062    RenderThread-9436  ( 9105) [001] d..1 82316.145680: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
58063    RenderThread-9436  ( 9105) [001] d..2 82316.145701: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
58064          <idle>-0     (-----) [000] .n.1 82316.145709: cpu_idle: state=4294967295 cpu_id=0
58065          <idle>-0     (-----) [000] d..2 82316.145724: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
58066    RenderThread-9436  ( 9105) [001] .... 82316.145776: binder_transaction: transaction=1569772 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
58067    RenderThread-9436  ( 9105) [001] .... 82316.145781: binder_transaction_alloc_buf: transaction=1569772 data_size=104 offsets_size=0
58068    RenderThread-9436  ( 9105) [001] d..4 82316.145786: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
58069    RenderThread-9436  ( 9105) [001] dn.5 82316.145802: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
58070    RenderThread-9436  ( 9105) [001] d..2 82316.145814: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
58071<...>-9105 ( 9105) [000] d..2 82316.145822: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58072<...>-13083 ( 8858) [001] .... 82316.145822: binder_transaction_received: transaction=1569772
58073          <idle>-0     (-----) [000] d..1 82316.145840: cpu_idle: state=0 cpu_id=0
58074<...>-13083 ( 8858) [001] .... 82316.145902: binder_transaction: transaction=1569773 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
58075<...>-13083 ( 8858) [001] .... 82316.145907: binder_transaction_alloc_buf: transaction=1569773 data_size=52 offsets_size=8
58076<...>-13083 ( 8858) [001] d..2 82316.145961: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
58077    RenderThread-9436  ( 9105) [001] .... 82316.145971: binder_transaction_received: transaction=1569773
58078          <idle>-0     (-----) [002] ...1 82316.146658: cpu_idle: state=4294967295 cpu_id=2
58079          <idle>-0     (-----) [002] d..1 82316.146663: cpu_idle: state=0 cpu_id=2
58080          <idle>-0     (-----) [002] d.h4 82316.146759: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58081          <idle>-0     (-----) [005] dnh2 82316.146780: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58082          <idle>-0     (-----) [005] .n.1 82316.146784: cpu_idle: state=4294967295 cpu_id=5
58083          <idle>-0     (-----) [005] d..2 82316.146793: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58084          <idle>-0     (-----) [002] ...1 82316.146802: cpu_idle: state=4294967295 cpu_id=2
58085          <idle>-0     (-----) [002] d..1 82316.146810: cpu_idle: state=0 cpu_id=2
58086<...>-5340 ( 788) [005] d..1 82316.146844: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58087          <idle>-0     (-----) [000] dnh2 82316.146874: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58088          <idle>-0     (-----) [000] .n.1 82316.146882: cpu_idle: state=4294967295 cpu_id=0
58089          <idle>-0     (-----) [000] d..2 82316.146926: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
58090<...>-5340 ( 788) [005] ...1 82316.146940: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
58091<...>-5340 ( 788) [005] ...1 82316.146944: tracing_mark_write: E|788
58092<...>-5340 ( 788) [005] .... 82316.146961: binder_transaction: transaction=1569774 dest_node=1569769 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
58093<...>-5340 ( 788) [005] .... 82316.146963: binder_transaction_alloc_buf: transaction=1569774 data_size=60 offsets_size=0
58094<...>-5340 ( 788) [005] d..4 82316.146967: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
58095 neuralnetworks@-13088 (  788) [000] d..2 82316.146972: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58096<...>-5340 ( 788) [005] d..5 82316.146980: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
58097          <idle>-0     (-----) [004] .n.1 82316.146986: cpu_idle: state=4294967295 cpu_id=4
58098          <idle>-0     (-----) [000] d..1 82316.146987: cpu_idle: state=0 cpu_id=0
58099          <idle>-0     (-----) [004] d..2 82316.146996: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
58100           <...>-27571 (-----) [004] .... 82316.147001: binder_transaction_received: transaction=1569774
58101<...>-5340 ( 788) [005] ...1 82316.147003: tracing_mark_write: E|788
58102<...>-5340 ( 788) [005] .... 82316.147009: binder_transaction: transaction=1569775 dest_node=0 dest_proc=27550 dest_thread=27622 reply=1 flags=0x0 code=0x0
58103<...>-5340 ( 788) [005] .... 82316.147011: binder_transaction_alloc_buf: transaction=1569775 data_size=8 offsets_size=0
58104    RenderThread-9436  ( 9105) [001] d..2 82316.147011: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
58105<...>-5340 ( 788) [005] d..2 82316.147013: sched_waking: comm=id.nn.benchmark pid=27622 prio=110 target_cpu=005
58106<...>-5340 ( 788) [005] d..3 82316.147020: sched_wakeup: comm=id.nn.benchmark pid=27622 prio=110 target_cpu=005
58107           <...>-27571 (-----) [004] ...1 82316.147020: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
58108<...>-5340 ( 788) [005] .... 82316.147022: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
58109           <...>-27571 (-----) [004] ...1 82316.147026: tracing_mark_write: E|27550
58110          <idle>-0     (-----) [001] d..1 82316.147030: cpu_idle: state=0 cpu_id=1
58111           <...>-27571 (-----) [004] d..2 82316.147056: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58112          <idle>-0     (-----) [004] d..1 82316.147063: cpu_idle: state=0 cpu_id=4
58113<...>-5340 ( 788) [005] d..2 82316.147064: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27622 next_prio=110
58114           <...>-27622 (-----) [005] .... 82316.147075: binder_transaction_received: transaction=1569775
58115          <idle>-0     (-----) [001] d.h2 82316.147087: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
58116          <idle>-0     (-----) [001] d.h3 82316.147098: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
58117          <idle>-0     (-----) [001] dnh3 82316.147104: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
58118           <...>-27622 (-----) [005] ...1 82316.147113: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
58119          <idle>-0     (-----) [001] .n.1 82316.147114: cpu_idle: state=4294967295 cpu_id=1
58120           <...>-27622 (-----) [005] ...1 82316.147119: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
58121          <idle>-0     (-----) [000] d.h3 82316.147127: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
58122          <idle>-0     (-----) [001] d..2 82316.147128: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
58123           <...>-27622 (-----) [005] ...1 82316.147145: tracing_mark_write: E|27550
58124           <...>-27622 (-----) [005] ...1 82316.147149: tracing_mark_write: E|27550
58125          <idle>-0     (-----) [000] d.h4 82316.147149: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
58126           <...>-27622 (-----) [005] ...1 82316.147152: tracing_mark_write: E|27550
58127          <idle>-0     (-----) [003] .n.1 82316.147156: cpu_idle: state=4294967295 cpu_id=3
58128          <idle>-0     (-----) [000] ...1 82316.147172: cpu_idle: state=4294967295 cpu_id=0
58129          <idle>-0     (-----) [003] d..2 82316.147173: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
58130          <idle>-0     (-----) [000] d..1 82316.147178: cpu_idle: state=0 cpu_id=0
58131 kgsl_worker_thr-258   (  258) [003] d..2 82316.147228: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
58132 kgsl_worker_thr-258   (  258) [003] d..3 82316.147305: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
58133 kgsl_worker_thr-258   (  258) [003] d..2 82316.147324: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
58134           <...>-27622 (-----) [005] ...1 82316.147343: tracing_mark_write: E|27550
58135           <...>-27622 (-----) [005] d..1 82316.147356: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58136    RenderThread-9436  ( 9105) [001] .... 82316.147371: binder_transaction: transaction=1569776 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
58137           <...>-27622 (-----) [005] d..2 82316.147372: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58138  kworker/u16:15-1311  ( 1311) [003] d..2 82316.147375: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
58139    RenderThread-9436  ( 9105) [001] .... 82316.147377: binder_transaction_alloc_buf: transaction=1569776 data_size=192 offsets_size=8
58140          <idle>-0     (-----) [004] .n.1 82316.147377: cpu_idle: state=4294967295 cpu_id=4
58141          <idle>-0     (-----) [004] d..2 82316.147383: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
58142          <idle>-0     (-----) [003] d..1 82316.147385: cpu_idle: state=0 cpu_id=3
58143    RenderThread-9436  ( 9105) [001] d..4 82316.147388: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
58144           <...>-27550 (-----) [004] d..2 82316.147404: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58145    RenderThread-9436  ( 9105) [001] dn.5 82316.147406: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
58146          <idle>-0     (-----) [004] d..1 82316.147413: cpu_idle: state=0 cpu_id=4
58147    RenderThread-9436  ( 9105) [001] d..2 82316.147417: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
58148<...>-13083 ( 8858) [001] .... 82316.147426: binder_transaction_received: transaction=1569776
58149           <...>-27622 (-----) [005] d..1 82316.147464: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58150           <...>-27622 (-----) [005] d..2 82316.147474: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58151          <idle>-0     (-----) [004] .n.1 82316.147479: cpu_idle: state=4294967295 cpu_id=4
58152          <idle>-0     (-----) [004] d..2 82316.147487: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
58153           <...>-27622 (-----) [005] d..2 82316.147513: sched_switch: prev_comm=id.nn.benchmark prev_pid=27622 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
58154           <...>-27550 (-----) [004] ...1 82316.147520: tracing_mark_write: E|27550
58155           <...>-27550 (-----) [004] ...1 82316.147525: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
58156           <...>-27550 (-----) [004] ...1 82316.147531: tracing_mark_write: E|27550
58157          <idle>-0     (-----) [005] d..1 82316.147534: cpu_idle: state=0 cpu_id=5
58158           <...>-27550 (-----) [004] ...1 82316.147535: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
58159           <...>-27550 (-----) [004] ...1 82316.147539: tracing_mark_write: E|27550
58160           <...>-27550 (-----) [004] ...1 82316.147543: tracing_mark_write: E|27550
58161<...>-13083 ( 8858) [001] .... 82316.147590: binder_transaction: transaction=1569777 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
58162<...>-13083 ( 8858) [001] .... 82316.147596: binder_transaction_alloc_buf: transaction=1569777 data_size=68 offsets_size=0
58163<...>-13083 ( 8858) [001] d..2 82316.147642: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
58164    RenderThread-9436  ( 9105) [001] .... 82316.147653: binder_transaction_received: transaction=1569777
58165           <...>-27550 (-----) [004] ...1 82316.147655: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
58166           <...>-27550 (-----) [004] ...1 82316.147712: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
58167           <...>-27550 (-----) [004] ...1 82316.147716: tracing_mark_write: E|27550
58168           <...>-27550 (-----) [004] ...1 82316.147720: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
58169           <...>-27550 (-----) [004] ...1 82316.147725: tracing_mark_write: E|27550
58170           <...>-27550 (-----) [004] ...1 82316.147729: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
58171           <...>-27550 (-----) [004] ...1 82316.147732: tracing_mark_write: E|27550
58172           <...>-27550 (-----) [004] ...1 82316.147736: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
58173    RenderThread-9436  ( 9105) [001] d..2 82316.147755: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58174          <idle>-0     (-----) [001] d..1 82316.147774: cpu_idle: state=0 cpu_id=1
58175          <idle>-0     (-----) [005] .n.1 82316.147834: cpu_idle: state=4294967295 cpu_id=5
58176           <...>-27550 (-----) [004] ...1 82316.147834: tracing_mark_write: E|27550
58177           <...>-27550 (-----) [004] ...1 82316.147839: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
58178          <idle>-0     (-----) [005] d..2 82316.147843: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27623 next_prio=110
58179           <...>-27550 (-----) [004] d..2 82316.147855: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58180          <idle>-0     (-----) [004] d..1 82316.147869: cpu_idle: state=0 cpu_id=4
58181           <...>-27623 (-----) [005] ...1 82316.147906: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
58182           <...>-27623 (-----) [005] ...1 82316.147920: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
58183           <...>-27623 (-----) [005] ...1 82316.147924: tracing_mark_write: E|27550
58184           <...>-27623 (-----) [005] .... 82316.147948: binder_transaction: transaction=1569778 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
58185           <...>-27623 (-----) [005] .... 82316.147952: binder_transaction_alloc_buf: transaction=1569778 data_size=48 offsets_size=0
58186           <...>-27623 (-----) [005] ...2 82316.147955: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
58187           <...>-27623 (-----) [005] d..4 82316.147958: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
58188           <...>-27623 (-----) [005] dn.5 82316.147969: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
58189           <...>-27623 (-----) [005] d..2 82316.147976: sched_switch: prev_comm=id.nn.benchmark prev_pid=27623 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
58190<...>-770 ( 770) [005] .... 82316.147987: binder_transaction_received: transaction=1569778
58191<...>-770 ( 770) [005] ...1 82316.148013: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
58192<...>-770 ( 770) [005] d..2 82316.148103: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
58193          <idle>-0     (-----) [000] dnh2 82316.148132: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
58194          <idle>-0     (-----) [000] .n.1 82316.148138: cpu_idle: state=4294967295 cpu_id=0
58195<...>-770 ( 770) [005] ...1 82316.148146: tracing_mark_write: E|770
58196          <idle>-0     (-----) [000] d..2 82316.148150: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
58197<...>-770 ( 770) [005] .... 82316.148154: binder_transaction: transaction=1569779 dest_node=0 dest_proc=27550 dest_thread=27623 reply=1 flags=0x0 code=0x0
58198<...>-770 ( 770) [005] .... 82316.148157: binder_transaction_alloc_buf: transaction=1569779 data_size=168 offsets_size=32
58199<...>-770 ( 770) [005] .... 82316.148163: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
58200          <idle>-0     (-----) [002] ...1 82316.148181: cpu_idle: state=4294967295 cpu_id=2
58201          <idle>-0     (-----) [002] d..1 82316.148186: cpu_idle: state=0 cpu_id=2
58202<...>-770 ( 770) [005] d..2 82316.148199: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27623 next_prio=110
58203           <...>-27623 (-----) [005] .... 82316.148210: binder_transaction_received: transaction=1569779
58204<...>-581 ( 571) [000] d..2 82316.148254: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58205          <idle>-0     (-----) [000] d..1 82316.148272: cpu_idle: state=0 cpu_id=0
58206           <...>-27623 (-----) [005] ...1 82316.148286: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
58207           <...>-27623 (-----) [005] ...1 82316.148291: tracing_mark_write: E|27550
58208           <...>-27623 (-----) [005] .... 82316.148305: binder_transaction: transaction=1569780 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
58209           <...>-27623 (-----) [005] .... 82316.148308: binder_transaction_alloc_buf: transaction=1569780 data_size=48 offsets_size=0
58210           <...>-27623 (-----) [005] ...2 82316.148310: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
58211           <...>-27623 (-----) [005] d..4 82316.148313: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
58212           <...>-27623 (-----) [005] dn.5 82316.148323: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
58213           <...>-27623 (-----) [005] d..2 82316.148329: sched_switch: prev_comm=id.nn.benchmark prev_pid=27623 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
58214<...>-770 ( 770) [005] .... 82316.148337: binder_transaction_received: transaction=1569780
58215<...>-770 ( 770) [005] ...1 82316.148354: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
58216<...>-770 ( 770) [005] d..2 82316.148411: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
58217          <idle>-0     (-----) [000] dnh2 82316.148438: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
58218          <idle>-0     (-----) [000] .n.1 82316.148446: cpu_idle: state=4294967295 cpu_id=0
58219          <idle>-0     (-----) [000] d..2 82316.148460: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
58220          <idle>-0     (-----) [003] d.h2 82316.148462: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
58221<...>-770 ( 770) [005] d.s2 82316.148471: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
58222          <idle>-0     (-----) [003] dnh3 82316.148476: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
58223          <idle>-0     (-----) [003] dnH2 82316.148499: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
58224<...>-770 ( 770) [005] ...1 82316.148504: tracing_mark_write: E|770
58225          <idle>-0     (-----) [003] dns2 82316.148505: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
58226<...>-770 ( 770) [005] .... 82316.148512: binder_transaction: transaction=1569781 dest_node=0 dest_proc=27550 dest_thread=27623 reply=1 flags=0x0 code=0x0
58227<...>-770 ( 770) [005] .... 82316.148515: binder_transaction_alloc_buf: transaction=1569781 data_size=168 offsets_size=32
58228<...>-770 ( 770) [005] .... 82316.148521: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
58229<...>-581 ( 571) [000] d..2 82316.148534: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58230          <idle>-0     (-----) [003] dns3 82316.148551: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
58231<...>-770 ( 770) [005] d..2 82316.148555: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27623 next_prio=110
58232          <idle>-0     (-----) [000] d..2 82316.148564: 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
58233           <...>-27623 (-----) [005] .... 82316.148565: binder_transaction_received: transaction=1569781
58234          <idle>-0     (-----) [003] .n.1 82316.148568: cpu_idle: state=4294967295 cpu_id=3
58235          <idle>-0     (-----) [003] d..2 82316.148577: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
58236        DispSync-8879  ( 8858) [003] d..1 82316.148594: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
58237<...>-8 ( 8) [000] d..2 82316.148596: 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
58238          <idle>-0     (-----) [000] d..1 82316.148607: cpu_idle: state=0 cpu_id=0
58239        DispSync-8879  ( 8858) [003] d..2 82316.148610: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
58240          <idle>-0     (-----) [002] .n.1 82316.148615: cpu_idle: state=4294967295 cpu_id=2
58241          <idle>-0     (-----) [002] d..2 82316.148627: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
58242        DispSync-8879  ( 8858) [003] d..2 82316.148634: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
58243   sfEventThread-8882  ( 8858) [002] d..3 82316.148667: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
58244   sfEventThread-8882  ( 8858) [002] d..4 82316.148698: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
58245          <idle>-0     (-----) [000] .n.1 82316.148705: cpu_idle: state=4294967295 cpu_id=0
58246          <idle>-0     (-----) [000] d..2 82316.148716: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
58247   sfEventThread-8882  ( 8858) [002] d..2 82316.148738: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58248          <idle>-0     (-----) [002] d..1 82316.148786: cpu_idle: state=0 cpu_id=2
58249           <...>-27623 (-----) [005] ...1 82316.148869: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
58250           <...>-27623 (-----) [005] ...1 82316.148879: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
58251           <...>-27623 (-----) [005] ...1 82316.148884: tracing_mark_write: E|27550
58252  kworker/u16:15-1311  ( 1311) [003] d..2 82316.148896: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
58253          <idle>-0     (-----) [003] d..1 82316.148913: cpu_idle: state=0 cpu_id=3
58254           <...>-27623 (-----) [005] .... 82316.148948: binder_transaction: transaction=1569782 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
58255           <...>-27623 (-----) [005] .... 82316.148951: binder_transaction_alloc_buf: transaction=1569782 data_size=556 offsets_size=104
58256           <...>-27623 (-----) [005] ...2 82316.148965: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
58257           <...>-27623 (-----) [005] d..4 82316.148968: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58258           <...>-27623 (-----) [005] dn.5 82316.148980: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58259           <...>-27623 (-----) [005] d..2 82316.148987: sched_switch: prev_comm=id.nn.benchmark prev_pid=27623 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58260<...>-5340 ( 788) [005] .... 82316.148997: binder_transaction_received: transaction=1569782
58261<...>-5340 ( 788) [005] ...1 82316.149044: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
58262<...>-5340 ( 788) [005] d..2 82316.149093: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
58263  surfaceflinger-8858  ( 8858) [000] d..2 82316.149099: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
58264<...>-5340 ( 788) [005] d..2 82316.149133: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27623 next_prio=110
58265  surfaceflinger-8858  ( 8858) [000] d..3 82316.149155: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
58266           <...>-27623 (-----) [005] d..2 82316.149158: sched_switch: prev_comm=id.nn.benchmark prev_pid=27623 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
58267  surfaceflinger-8858  ( 8858) [000] d.h1 82316.149167: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
58268          <idle>-0     (-----) [005] d..1 82316.149175: cpu_idle: state=0 cpu_id=5
58269  surfaceflinger-8858  ( 8858) [000] d..1 82316.149198: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
58270  surfaceflinger-8858  ( 8858) [000] d..2 82316.149216: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
58271          <idle>-0     (-----) [002] .n.1 82316.149223: cpu_idle: state=4294967295 cpu_id=2
58272          <idle>-0     (-----) [002] d..2 82316.149234: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
58273   sfEventThread-8882  ( 8858) [002] d..2 82316.149293: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
58274<...>-87 ( 87) [002] d..2 82316.149341: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58275          <idle>-0     (-----) [002] d.h5 82316.149362: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58276          <idle>-0     (-----) [002] dnh6 82316.149379: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58277          <idle>-0     (-----) [002] d..2 82316.149394: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
58278  surfaceflinger-8858  ( 8858) [000] ...1 82316.149425: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
58279<...>-86 ( 86) [002] d.h4 82316.149427: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58280  surfaceflinger-8858  ( 8858) [000] ...1 82316.149433: tracing_mark_write: E|8858
58281          <idle>-0     (-----) [005] dnh2 82316.149449: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58282          <idle>-0     (-----) [005] .n.1 82316.149453: cpu_idle: state=4294967295 cpu_id=5
58283          <idle>-0     (-----) [005] d..2 82316.149461: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58284<...>-86 ( 86) [002] d..2 82316.149487: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58285  surfaceflinger-8858  ( 8858) [000] .... 82316.149488: binder_transaction: transaction=1569785 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
58286  surfaceflinger-8858  ( 8858) [000] .... 82316.149493: binder_transaction_alloc_buf: transaction=1569785 data_size=540 offsets_size=96
58287          <idle>-0     (-----) [002] d..1 82316.149505: cpu_idle: state=0 cpu_id=2
58288<...>-5340 ( 788) [005] d..1 82316.149516: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58289  surfaceflinger-8858  ( 8858) [000] ...2 82316.149521: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
58290  surfaceflinger-8858  ( 8858) [000] d..4 82316.149530: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
58291  surfaceflinger-8858  ( 8858) [000] d..5 82316.149549: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
58292          <idle>-0     (-----) [001] .n.1 82316.149556: cpu_idle: state=4294967295 cpu_id=1
58293  surfaceflinger-8858  ( 8858) [000] d.h4 82316.149563: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58294          <idle>-0     (-----) [001] d..2 82316.149569: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
58295 [email protected]   (  619) [001] .... 82316.149581: binder_transaction_received: transaction=1569785
58296  surfaceflinger-8858  ( 8858) [000] d..2 82316.149586: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
58297         rcuop/0-10    (   10) [000] d..2 82316.149603: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
58298 [email protected]   (  619) [001] ...1 82316.149629: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
58299 neuralnetworks@-13088 (  788) [000] d..2 82316.149662: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58300<...>-5340 ( 788) [005] d..2 82316.149665: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
58301          <idle>-0     (-----) [000] d..1 82316.149681: cpu_idle: state=0 cpu_id=0
58302          <idle>-0     (-----) [002] dnh2 82316.149687: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
58303<...>-5340 ( 788) [005] d..2 82316.149690: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
58304          <idle>-0     (-----) [002] .n.1 82316.149695: cpu_idle: state=4294967295 cpu_id=2
58305          <idle>-0     (-----) [005] d..1 82316.149705: cpu_idle: state=0 cpu_id=5
58306          <idle>-0     (-----) [002] d..2 82316.149706: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
58307<...>-87 ( 87) [002] d.h4 82316.149740: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58308 [email protected]   (  619) [001] ...1 82316.149743: tracing_mark_write: B|619|HWCSession::PresentDisplay::
58309<...>-87 ( 87) [002] d.h5 82316.149759: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58310<...>-87 ( 87) [002] d..2 82316.149775: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
58311<...>-86 ( 86) [002] d..2 82316.149810: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58312          <idle>-0     (-----) [002] d..1 82316.149825: cpu_idle: state=0 cpu_id=2
58313 [email protected]   (  619) [001] ...1 82316.149931: tracing_mark_write: B|619|HWDeviceDRM::Commit::
58314 [email protected]   (  619) [001] ...1 82316.149945: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
58315          <idle>-0     (-----) [005] ...1 82316.150059: cpu_idle: state=4294967295 cpu_id=5
58316          <idle>-0     (-----) [005] d..1 82316.150063: cpu_idle: state=0 cpu_id=5
58317 [email protected]   (  619) [001] d..2 82316.150610: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
58318 [email protected]   (  619) [001] d..3 82316.150637: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
58319          <idle>-0     (-----) [000] .n.1 82316.150643: cpu_idle: state=4294967295 cpu_id=0
58320          <idle>-0     (-----) [000] d..2 82316.150656: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
58321 [email protected]   (  619) [001] ...1 82316.150745: tracing_mark_write: E|619
58322 [email protected]   (  619) [001] ...1 82316.150753: tracing_mark_write: E|619
58323 [email protected]   (  619) [001] ...1 82316.150817: tracing_mark_write: E|619
58324 [email protected]   (  619) [001] ...1 82316.150867: tracing_mark_write: E|619
58325 [email protected]   (  619) [001] .... 82316.150882: binder_transaction: transaction=1569786 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
58326 [email protected]   (  619) [001] .... 82316.150887: binder_transaction_alloc_buf: transaction=1569786 data_size=576 offsets_size=112
58327 [email protected]   (  619) [001] d..2 82316.150909: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
58328 [email protected]   (  619) [001] d..3 82316.150938: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
58329 [email protected]   (  619) [001] .... 82316.150944: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
58330          <idle>-0     (-----) [003] .n.1 82316.150945: cpu_idle: state=4294967295 cpu_id=3
58331          <idle>-0     (-----) [003] d..2 82316.150957: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
58332  surfaceflinger-8858  ( 8858) [003] .... 82316.150967: binder_transaction_received: transaction=1569786
58333 [email protected]   (  619) [001] d..2 82316.151036: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58334          <idle>-0     (-----) [001] d..1 82316.151051: cpu_idle: state=0 cpu_id=1
58335          <idle>-0     (-----) [002] ...1 82316.151280: cpu_idle: state=4294967295 cpu_id=2
58336          <idle>-0     (-----) [002] d..1 82316.151286: cpu_idle: state=0 cpu_id=2
58337          <idle>-0     (-----) [002] d.h4 82316.151374: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58338 crtc_commit:111-321   (  321) [000] d..2 82316.151386: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
58339          <idle>-0     (-----) [005] dnh2 82316.151395: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58340          <idle>-0     (-----) [005] .n.1 82316.151398: cpu_idle: state=4294967295 cpu_id=5
58341          <idle>-0     (-----) [000] d..1 82316.151402: cpu_idle: state=0 cpu_id=0
58342          <idle>-0     (-----) [005] d..2 82316.151406: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58343          <idle>-0     (-----) [002] ...1 82316.151415: cpu_idle: state=4294967295 cpu_id=2
58344          <idle>-0     (-----) [002] d..1 82316.151422: cpu_idle: state=0 cpu_id=2
58345  surfaceflinger-8858  ( 8858) [003] d..2 82316.151423: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
58346          <idle>-0     (-----) [003] d..1 82316.151443: cpu_idle: state=0 cpu_id=3
58347<...>-5340 ( 788) [005] d..1 82316.151456: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58348          <idle>-0     (-----) [000] dnh2 82316.151486: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58349          <idle>-0     (-----) [000] .n.1 82316.151493: cpu_idle: state=4294967295 cpu_id=0
58350          <idle>-0     (-----) [000] d..2 82316.151533: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
58351<...>-5340 ( 788) [005] ...1 82316.151553: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
58352<...>-5340 ( 788) [005] ...1 82316.151557: tracing_mark_write: E|788
58353<...>-5340 ( 788) [005] .... 82316.151574: binder_transaction: transaction=1569787 dest_node=1569783 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
58354 neuralnetworks@-13088 (  788) [000] d..2 82316.151577: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58355<...>-5340 ( 788) [005] .... 82316.151577: binder_transaction_alloc_buf: transaction=1569787 data_size=60 offsets_size=0
58356<...>-5340 ( 788) [005] d..4 82316.151580: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
58357          <idle>-0     (-----) [000] d..1 82316.151589: cpu_idle: state=0 cpu_id=0
58358<...>-5340 ( 788) [005] d..5 82316.151592: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
58359          <idle>-0     (-----) [004] .n.1 82316.151598: cpu_idle: state=4294967295 cpu_id=4
58360          <idle>-0     (-----) [004] d..2 82316.151607: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
58361           <...>-27571 (-----) [004] .... 82316.151612: binder_transaction_received: transaction=1569787
58362<...>-5340 ( 788) [005] ...1 82316.151615: tracing_mark_write: E|788
58363<...>-5340 ( 788) [005] .... 82316.151621: binder_transaction: transaction=1569788 dest_node=0 dest_proc=27550 dest_thread=27623 reply=1 flags=0x0 code=0x0
58364<...>-5340 ( 788) [005] .... 82316.151623: binder_transaction_alloc_buf: transaction=1569788 data_size=8 offsets_size=0
58365<...>-5340 ( 788) [005] d..2 82316.151625: sched_waking: comm=id.nn.benchmark pid=27623 prio=110 target_cpu=005
58366           <...>-27571 (-----) [004] ...1 82316.151631: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
58367<...>-5340 ( 788) [005] d..3 82316.151632: sched_wakeup: comm=id.nn.benchmark pid=27623 prio=110 target_cpu=005
58368<...>-5340 ( 788) [005] .... 82316.151634: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
58369           <...>-27571 (-----) [004] ...1 82316.151638: tracing_mark_write: E|27550
58370           <...>-27571 (-----) [004] d..2 82316.151666: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58371          <idle>-0     (-----) [004] d..1 82316.151673: cpu_idle: state=0 cpu_id=4
58372<...>-5340 ( 788) [005] d..2 82316.151677: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27623 next_prio=110
58373           <...>-27623 (-----) [005] .... 82316.151687: binder_transaction_received: transaction=1569788
58374           <...>-27623 (-----) [005] ...1 82316.151725: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
58375           <...>-27623 (-----) [005] ...1 82316.151731: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
58376           <...>-27623 (-----) [005] ...1 82316.151758: tracing_mark_write: E|27550
58377           <...>-27623 (-----) [005] ...1 82316.151762: tracing_mark_write: E|27550
58378           <...>-27623 (-----) [005] ...1 82316.151766: tracing_mark_write: E|27550
58379          <idle>-0     (-----) [001] d.H3 82316.151893: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
58380          <idle>-0     (-----) [001] d.H4 82316.151946: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
58381          <idle>-0     (-----) [000] .n.1 82316.151952: cpu_idle: state=4294967295 cpu_id=0
58382          <idle>-0     (-----) [001] d.s2 82316.151955: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
58383          <idle>-0     (-----) [000] d..2 82316.151965: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
58384          <idle>-0     (-----) [001] dns3 82316.151975: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
58385          <idle>-0     (-----) [001] .n.1 82316.151989: cpu_idle: state=4294967295 cpu_id=1
58386          <idle>-0     (-----) [001] d..2 82316.152000: 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
58387           <...>-27623 (-----) [005] ...1 82316.152001: tracing_mark_write: E|27550
58388         sugov:0-576   (  576) [000] .... 82316.152005: clk_set_rate: pwrcl_clk 825600000
58389           <...>-27623 (-----) [005] d..1 82316.152014: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58390         sugov:0-576   (  576) [000] .... 82316.152026: clk_set_rate: cpu3_pwrcl_clk 748800000
58391           <...>-27623 (-----) [005] d..2 82316.152030: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58392          <idle>-0     (-----) [004] .n.1 82316.152035: cpu_idle: state=4294967295 cpu_id=4
58393         sugov:0-576   (  576) [000] .... 82316.152038: clk_set_rate: cpu2_pwrcl_clk 748800000
58394     rcu_preempt-7     (    7) [001] d..2 82316.152041: 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
58395          <idle>-0     (-----) [004] d..2 82316.152042: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
58396         sugov:0-576   (  576) [000] .... 82316.152046: clk_set_rate: cpu1_pwrcl_clk 748800000
58397         sugov:0-576   (  576) [000] .... 82316.152054: clk_set_rate: cpu0_pwrcl_clk 825600000
58398          <idle>-0     (-----) [001] d..1 82316.152056: cpu_idle: state=0 cpu_id=1
58399         sugov:0-576   (  576) [000] .... 82316.152063: cpu_frequency: state=825600 cpu_id=0
58400           <...>-27550 (-----) [004] d..2 82316.152064: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58401          <idle>-0     (-----) [004] d..1 82316.152073: cpu_idle: state=0 cpu_id=4
58402         sugov:0-576   (  576) [000] .... 82316.152090: cpu_frequency: state=825600 cpu_id=1
58403         sugov:0-576   (  576) [000] .... 82316.152095: cpu_frequency: state=825600 cpu_id=2
58404         sugov:0-576   (  576) [000] .... 82316.152099: cpu_frequency: state=825600 cpu_id=3
58405           <...>-27623 (-----) [005] d..1 82316.152124: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58406         sugov:0-576   (  576) [000] d..2 82316.152128: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58407           <...>-27623 (-----) [005] d..2 82316.152133: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58408          <idle>-0     (-----) [000] d..1 82316.152138: cpu_idle: state=0 cpu_id=0
58409          <idle>-0     (-----) [004] .n.1 82316.152139: cpu_idle: state=4294967295 cpu_id=4
58410          <idle>-0     (-----) [004] d..2 82316.152147: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
58411           <...>-27623 (-----) [005] d..2 82316.152174: sched_switch: prev_comm=id.nn.benchmark prev_pid=27623 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
58412           <...>-27550 (-----) [004] ...1 82316.152180: tracing_mark_write: E|27550
58413           <...>-27550 (-----) [004] ...1 82316.152185: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
58414           <...>-27550 (-----) [004] ...1 82316.152190: tracing_mark_write: E|27550
58415           <...>-27550 (-----) [004] ...1 82316.152194: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
58416          <idle>-0     (-----) [005] d..1 82316.152196: cpu_idle: state=0 cpu_id=5
58417           <...>-27550 (-----) [004] ...1 82316.152198: tracing_mark_write: E|27550
58418           <...>-27550 (-----) [004] ...1 82316.152203: tracing_mark_write: E|27550
58419           <...>-27550 (-----) [004] ...1 82316.152316: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
58420           <...>-27550 (-----) [004] ...1 82316.152374: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
58421           <...>-27550 (-----) [004] ...1 82316.152379: tracing_mark_write: E|27550
58422           <...>-27550 (-----) [004] ...1 82316.152384: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
58423           <...>-27550 (-----) [004] ...1 82316.152389: tracing_mark_write: E|27550
58424           <...>-27550 (-----) [004] ...1 82316.152393: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
58425           <...>-27550 (-----) [004] ...1 82316.152398: tracing_mark_write: E|27550
58426           <...>-27550 (-----) [004] ...1 82316.152401: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
58427          <idle>-0     (-----) [005] .n.1 82316.152497: cpu_idle: state=4294967295 cpu_id=5
58428           <...>-27550 (-----) [004] ...1 82316.152499: tracing_mark_write: E|27550
58429           <...>-27550 (-----) [004] ...1 82316.152503: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
58430          <idle>-0     (-----) [005] d..2 82316.152506: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27624 next_prio=110
58431           <...>-27550 (-----) [004] d..2 82316.152520: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58432          <idle>-0     (-----) [004] d..1 82316.152535: cpu_idle: state=0 cpu_id=4
58433           <...>-27624 (-----) [005] ...1 82316.152568: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
58434           <...>-27624 (-----) [005] ...1 82316.152584: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
58435           <...>-27624 (-----) [005] ...1 82316.152588: tracing_mark_write: E|27550
58436           <...>-27624 (-----) [005] .... 82316.152611: binder_transaction: transaction=1569789 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
58437           <...>-27624 (-----) [005] .... 82316.152614: binder_transaction_alloc_buf: transaction=1569789 data_size=48 offsets_size=0
58438           <...>-27624 (-----) [005] ...2 82316.152617: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
58439           <...>-27624 (-----) [005] d..4 82316.152620: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
58440           <...>-27624 (-----) [005] dn.5 82316.152632: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
58441           <...>-27624 (-----) [005] d..2 82316.152639: sched_switch: prev_comm=id.nn.benchmark prev_pid=27624 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
58442<...>-770 ( 770) [005] .... 82316.152649: binder_transaction_received: transaction=1569789
58443<...>-770 ( 770) [005] ...1 82316.152674: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
58444<...>-770 ( 770) [005] d..2 82316.152762: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
58445          <idle>-0     (-----) [000] dnh2 82316.152792: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
58446          <idle>-0     (-----) [000] .n.1 82316.152798: cpu_idle: state=4294967295 cpu_id=0
58447<...>-770 ( 770) [005] ...1 82316.152804: tracing_mark_write: E|770
58448          <idle>-0     (-----) [000] d..2 82316.152806: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
58449<...>-770 ( 770) [005] .... 82316.152812: binder_transaction: transaction=1569790 dest_node=0 dest_proc=27550 dest_thread=27624 reply=1 flags=0x0 code=0x0
58450<...>-770 ( 770) [005] .... 82316.152814: binder_transaction_alloc_buf: transaction=1569790 data_size=168 offsets_size=32
58451<...>-770 ( 770) [005] .... 82316.152821: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
58452<...>-770 ( 770) [005] d..2 82316.152857: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27624 next_prio=110
58453           <...>-27624 (-----) [005] .... 82316.152868: binder_transaction_received: transaction=1569790
58454<...>-581 ( 571) [000] d..2 82316.152906: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58455          <idle>-0     (-----) [000] d..1 82316.152917: cpu_idle: state=0 cpu_id=0
58456           <...>-27624 (-----) [005] ...1 82316.152939: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
58457           <...>-27624 (-----) [005] ...1 82316.152944: tracing_mark_write: E|27550
58458           <...>-27624 (-----) [005] .... 82316.152958: binder_transaction: transaction=1569791 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
58459           <...>-27624 (-----) [005] .... 82316.152961: binder_transaction_alloc_buf: transaction=1569791 data_size=48 offsets_size=0
58460           <...>-27624 (-----) [005] ...2 82316.152964: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
58461           <...>-27624 (-----) [005] d..4 82316.152966: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
58462           <...>-27624 (-----) [005] dn.5 82316.152976: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
58463           <...>-27624 (-----) [005] d..2 82316.152983: sched_switch: prev_comm=id.nn.benchmark prev_pid=27624 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
58464<...>-770 ( 770) [005] .... 82316.152990: binder_transaction_received: transaction=1569791
58465<...>-770 ( 770) [005] ...1 82316.153007: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
58466<...>-770 ( 770) [005] d..2 82316.153065: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
58467          <idle>-0     (-----) [000] dnh2 82316.153090: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
58468          <idle>-0     (-----) [000] .n.1 82316.153096: cpu_idle: state=4294967295 cpu_id=0
58469<...>-770 ( 770) [005] ...1 82316.153099: tracing_mark_write: E|770
58470          <idle>-0     (-----) [000] d..2 82316.153105: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
58471<...>-770 ( 770) [005] .... 82316.153106: binder_transaction: transaction=1569792 dest_node=0 dest_proc=27550 dest_thread=27624 reply=1 flags=0x0 code=0x0
58472<...>-770 ( 770) [005] .... 82316.153109: binder_transaction_alloc_buf: transaction=1569792 data_size=168 offsets_size=32
58473<...>-770 ( 770) [005] .... 82316.153115: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
58474<...>-770 ( 770) [005] d..2 82316.153148: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27624 next_prio=110
58475           <...>-27624 (-----) [005] .... 82316.153159: binder_transaction_received: transaction=1569792
58476<...>-581 ( 571) [000] d..2 82316.153165: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58477          <idle>-0     (-----) [000] d..1 82316.153174: cpu_idle: state=0 cpu_id=0
58478           <...>-27624 (-----) [005] ...1 82316.153439: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
58479           <...>-27624 (-----) [005] ...1 82316.153448: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
58480           <...>-27624 (-----) [005] ...1 82316.153452: tracing_mark_write: E|27550
58481           <...>-27624 (-----) [005] .... 82316.153515: binder_transaction: transaction=1569793 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
58482           <...>-27624 (-----) [005] .... 82316.153518: binder_transaction_alloc_buf: transaction=1569793 data_size=556 offsets_size=104
58483           <...>-27624 (-----) [005] ...2 82316.153534: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
58484           <...>-27624 (-----) [005] d..4 82316.153536: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58485           <...>-27624 (-----) [005] dn.5 82316.153549: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58486           <...>-27624 (-----) [005] d..2 82316.153556: sched_switch: prev_comm=id.nn.benchmark prev_pid=27624 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58487<...>-5340 ( 788) [005] .... 82316.153566: binder_transaction_received: transaction=1569793
58488<...>-5340 ( 788) [005] ...1 82316.153613: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
58489<...>-5340 ( 788) [005] d..2 82316.153661: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
58490<...>-5340 ( 788) [005] d..2 82316.153699: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27624 next_prio=110
58491          <idle>-0     (-----) [000] dnh2 82316.153703: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
58492          <idle>-0     (-----) [000] .n.1 82316.153709: cpu_idle: state=4294967295 cpu_id=0
58493          <idle>-0     (-----) [000] d..2 82316.153717: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
58494           <...>-27624 (-----) [005] d..2 82316.153722: sched_switch: prev_comm=id.nn.benchmark prev_pid=27624 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
58495          <idle>-0     (-----) [005] d..1 82316.153740: cpu_idle: state=0 cpu_id=5
58496<...>-87 ( 87) [000] d..2 82316.153761: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58497          <idle>-0     (-----) [002] d.h4 82316.153767: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58498          <idle>-0     (-----) [000] d..1 82316.153769: cpu_idle: state=0 cpu_id=0
58499          <idle>-0     (-----) [002] dnh5 82316.153786: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58500          <idle>-0     (-----) [002] .n.1 82316.153794: cpu_idle: state=4294967295 cpu_id=2
58501          <idle>-0     (-----) [002] d..2 82316.153807: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
58502<...>-86 ( 86) [002] d..2 82316.153842: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58503          <idle>-0     (-----) [002] d.h5 82316.153864: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58504          <idle>-0     (-----) [005] dnh2 82316.153885: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58505          <idle>-0     (-----) [005] .n.1 82316.153890: cpu_idle: state=4294967295 cpu_id=5
58506          <idle>-0     (-----) [005] d..2 82316.153898: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58507          <idle>-0     (-----) [002] d..1 82316.153909: cpu_idle: state=0 cpu_id=2
58508<...>-5340 ( 788) [005] d..1 82316.153953: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58509          <idle>-0     (-----) [000] dnh2 82316.153979: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58510          <idle>-0     (-----) [000] .n.1 82316.153985: cpu_idle: state=4294967295 cpu_id=0
58511          <idle>-0     (-----) [000] d..2 82316.153993: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
58512 neuralnetworks@-13088 (  788) [000] d..2 82316.154041: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58513          <idle>-0     (-----) [000] d..1 82316.154051: cpu_idle: state=0 cpu_id=0
58514<...>-5340 ( 788) [005] d..2 82316.154102: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
58515          <idle>-0     (-----) [000] dnh2 82316.154123: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
58516<...>-5340 ( 788) [005] d..2 82316.154128: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
58517          <idle>-0     (-----) [000] .n.1 82316.154129: cpu_idle: state=4294967295 cpu_id=0
58518          <idle>-0     (-----) [000] d..2 82316.154137: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
58519          <idle>-0     (-----) [005] d..1 82316.154142: cpu_idle: state=0 cpu_id=5
58520          <idle>-0     (-----) [002] d.h4 82316.154175: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58521<...>-87 ( 87) [000] d..2 82316.154177: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58522          <idle>-0     (-----) [000] d..1 82316.154185: cpu_idle: state=0 cpu_id=0
58523          <idle>-0     (-----) [002] dnh5 82316.154186: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58524          <idle>-0     (-----) [002] .n.1 82316.154194: cpu_idle: state=4294967295 cpu_id=2
58525          <idle>-0     (-----) [002] d..2 82316.154206: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
58526<...>-86 ( 86) [002] d..2 82316.154240: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58527          <idle>-0     (-----) [002] d..1 82316.154252: cpu_idle: state=0 cpu_id=2
58528          <idle>-0     (-----) [005] ...1 82316.154504: cpu_idle: state=4294967295 cpu_id=5
58529          <idle>-0     (-----) [005] d..1 82316.154507: cpu_idle: state=0 cpu_id=5
58530          <idle>-0     (-----) [000] d.s2 82316.155141: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
58531          <idle>-0     (-----) [000] dns3 82316.155161: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
58532          <idle>-0     (-----) [000] .n.1 82316.155174: cpu_idle: state=4294967295 cpu_id=0
58533          <idle>-0     (-----) [000] d..2 82316.155184: 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
58534<...>-8 ( 8) [000] d..2 82316.155191: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
58535<...>-8 ( 8) [000] d..3 82316.155228: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
58536<...>-8 ( 8) [000] d..2 82316.155241: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
58537<...>-46 ( 46) [000] d..2 82316.155254: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
58538<...>-46 ( 46) [000] d..3 82316.155268: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
58539<...>-46 ( 46) [000] d..2 82316.155277: 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
58540<...>-8 ( 8) [000] d..2 82316.155308: 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
58541          <idle>-0     (-----) [000] d..1 82316.155322: cpu_idle: state=0 cpu_id=0
58542          <idle>-0     (-----) [002] d.h4 82316.155919: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58543          <idle>-0     (-----) [005] dnh2 82316.155940: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58544          <idle>-0     (-----) [005] .n.1 82316.155943: cpu_idle: state=4294967295 cpu_id=5
58545          <idle>-0     (-----) [005] d..2 82316.155952: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58546          <idle>-0     (-----) [002] ...1 82316.155959: cpu_idle: state=4294967295 cpu_id=2
58547          <idle>-0     (-----) [002] d..1 82316.155965: cpu_idle: state=0 cpu_id=2
58548<...>-5340 ( 788) [005] d..1 82316.156006: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58549          <idle>-0     (-----) [000] dnh2 82316.156032: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58550          <idle>-0     (-----) [000] .n.1 82316.156038: cpu_idle: state=4294967295 cpu_id=0
58551          <idle>-0     (-----) [000] d..2 82316.156049: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
58552<...>-5340 ( 788) [005] ...1 82316.156096: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
58553<...>-5340 ( 788) [005] ...1 82316.156099: tracing_mark_write: E|788
58554 neuralnetworks@-13088 (  788) [000] d..2 82316.156115: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58555<...>-5340 ( 788) [005] .... 82316.156115: binder_transaction: transaction=1569796 dest_node=1569794 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
58556<...>-5340 ( 788) [005] .... 82316.156118: binder_transaction_alloc_buf: transaction=1569796 data_size=60 offsets_size=0
58557<...>-5340 ( 788) [005] d..4 82316.156121: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
58558          <idle>-0     (-----) [000] d..1 82316.156126: cpu_idle: state=0 cpu_id=0
58559<...>-5340 ( 788) [005] d..5 82316.156134: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
58560          <idle>-0     (-----) [004] .n.1 82316.156140: cpu_idle: state=4294967295 cpu_id=4
58561          <idle>-0     (-----) [004] d..2 82316.156150: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
58562           <...>-27571 (-----) [004] .... 82316.156155: binder_transaction_received: transaction=1569796
58563<...>-5340 ( 788) [005] ...1 82316.156157: tracing_mark_write: E|788
58564<...>-5340 ( 788) [005] .... 82316.156163: binder_transaction: transaction=1569797 dest_node=0 dest_proc=27550 dest_thread=27624 reply=1 flags=0x0 code=0x0
58565<...>-5340 ( 788) [005] .... 82316.156166: binder_transaction_alloc_buf: transaction=1569797 data_size=8 offsets_size=0
58566<...>-5340 ( 788) [005] d..2 82316.156168: sched_waking: comm=id.nn.benchmark pid=27624 prio=110 target_cpu=005
58567           <...>-27571 (-----) [004] ...1 82316.156172: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
58568<...>-5340 ( 788) [005] d..3 82316.156175: sched_wakeup: comm=id.nn.benchmark pid=27624 prio=110 target_cpu=005
58569<...>-5340 ( 788) [005] .... 82316.156177: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
58570           <...>-27571 (-----) [004] ...1 82316.156178: tracing_mark_write: E|27550
58571           <...>-27571 (-----) [004] d..2 82316.156208: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58572          <idle>-0     (-----) [004] d..1 82316.156216: cpu_idle: state=0 cpu_id=4
58573<...>-5340 ( 788) [005] d..2 82316.156218: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27624 next_prio=110
58574           <...>-27624 (-----) [005] .... 82316.156228: binder_transaction_received: transaction=1569797
58575           <...>-27624 (-----) [005] ...1 82316.156267: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
58576           <...>-27624 (-----) [005] ...1 82316.156273: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
58577           <...>-27624 (-----) [005] ...1 82316.156299: tracing_mark_write: E|27550
58578           <...>-27624 (-----) [005] ...1 82316.156303: tracing_mark_write: E|27550
58579           <...>-27624 (-----) [005] ...1 82316.156307: tracing_mark_write: E|27550
58580          <idle>-0     (-----) [000] d.h5 82316.156453: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
58581          <idle>-0     (-----) [000] d.h6 82316.156474: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
58582          <idle>-0     (-----) [000] d.h5 82316.156479: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
58583          <idle>-0     (-----) [002] .n.1 82316.156479: cpu_idle: state=4294967295 cpu_id=2
58584          <idle>-0     (-----) [000] dnh6 82316.156488: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
58585          <idle>-0     (-----) [002] d..2 82316.156491: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
58586           <...>-27624 (-----) [005] ...1 82316.156494: tracing_mark_write: E|27550
58587          <idle>-0     (-----) [000] .n.1 82316.156503: cpu_idle: state=4294967295 cpu_id=0
58588           <...>-27624 (-----) [005] d..1 82316.156506: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58589          <idle>-0     (-----) [000] d..2 82316.156514: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
58590           <...>-27624 (-----) [005] d..2 82316.156522: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58591          <idle>-0     (-----) [004] .n.1 82316.156527: cpu_idle: state=4294967295 cpu_id=4
58592  crtc_event:111-322   (  322) [002] d..2 82316.156530: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58593          <idle>-0     (-----) [004] d..2 82316.156534: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
58594          <idle>-0     (-----) [002] d..1 82316.156541: cpu_idle: state=0 cpu_id=2
58595           <...>-27550 (-----) [004] d..2 82316.156554: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58596          <idle>-0     (-----) [004] d..1 82316.156563: cpu_idle: state=0 cpu_id=4
58597           <...>-27624 (-----) [005] d..1 82316.156607: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58598           <...>-27624 (-----) [005] d..2 82316.156616: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58599          <idle>-0     (-----) [004] .n.1 82316.156622: cpu_idle: state=4294967295 cpu_id=4
58600          <idle>-0     (-----) [004] d..2 82316.156629: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
58601           <...>-27624 (-----) [005] d..2 82316.156656: sched_switch: prev_comm=id.nn.benchmark prev_pid=27624 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
58602           <...>-27550 (-----) [004] ...1 82316.156662: tracing_mark_write: E|27550
58603 crtc_commit:111-321   (  321) [000] d..2 82316.156663: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
58604           <...>-27550 (-----) [004] ...1 82316.156667: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
58605           <...>-27550 (-----) [004] ...1 82316.156673: tracing_mark_write: E|27550
58606          <idle>-0     (-----) [000] d..1 82316.156674: cpu_idle: state=0 cpu_id=0
58607          <idle>-0     (-----) [005] d..1 82316.156676: cpu_idle: state=0 cpu_id=5
58608           <...>-27550 (-----) [004] ...1 82316.156677: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
58609           <...>-27550 (-----) [004] ...1 82316.156681: tracing_mark_write: E|27550
58610           <...>-27550 (-----) [004] ...1 82316.156685: tracing_mark_write: E|27550
58611           <...>-27550 (-----) [004] ...1 82316.156797: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
58612           <...>-27550 (-----) [004] ...1 82316.156856: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
58613           <...>-27550 (-----) [004] ...1 82316.156861: tracing_mark_write: E|27550
58614           <...>-27550 (-----) [004] ...1 82316.156866: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
58615           <...>-27550 (-----) [004] ...1 82316.156872: tracing_mark_write: E|27550
58616           <...>-27550 (-----) [004] ...1 82316.156875: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
58617           <...>-27550 (-----) [004] ...1 82316.156880: tracing_mark_write: E|27550
58618           <...>-27550 (-----) [004] ...1 82316.156883: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
58619          <idle>-0     (-----) [005] .n.1 82316.156972: cpu_idle: state=4294967295 cpu_id=5
58620           <...>-27550 (-----) [004] ...1 82316.156973: tracing_mark_write: E|27550
58621           <...>-27550 (-----) [004] ...1 82316.156978: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
58622          <idle>-0     (-----) [005] d..2 82316.156981: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27625 next_prio=110
58623           <...>-27550 (-----) [004] d..2 82316.156995: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58624          <idle>-0     (-----) [004] d..1 82316.157009: cpu_idle: state=0 cpu_id=4
58625           <...>-27625 (-----) [005] ...1 82316.157041: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
58626           <...>-27625 (-----) [005] ...1 82316.157055: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
58627           <...>-27625 (-----) [005] ...1 82316.157060: tracing_mark_write: E|27550
58628           <...>-27625 (-----) [005] .... 82316.157081: binder_transaction: transaction=1569798 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
58629           <...>-27625 (-----) [005] .... 82316.157084: binder_transaction_alloc_buf: transaction=1569798 data_size=48 offsets_size=0
58630           <...>-27625 (-----) [005] ...2 82316.157087: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
58631           <...>-27625 (-----) [005] d..4 82316.157090: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
58632           <...>-27625 (-----) [005] dn.5 82316.157101: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
58633           <...>-27625 (-----) [005] d..2 82316.157108: sched_switch: prev_comm=id.nn.benchmark prev_pid=27625 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
58634<...>-770 ( 770) [005] .... 82316.157118: binder_transaction_received: transaction=1569798
58635<...>-770 ( 770) [005] ...1 82316.157140: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
58636<...>-770 ( 770) [005] d..2 82316.157213: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
58637          <idle>-0     (-----) [000] dnh2 82316.157242: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
58638          <idle>-0     (-----) [000] .n.1 82316.157248: cpu_idle: state=4294967295 cpu_id=0
58639<...>-770 ( 770) [005] ...1 82316.157252: tracing_mark_write: E|770
58640          <idle>-0     (-----) [000] d..2 82316.157257: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
58641<...>-770 ( 770) [005] .... 82316.157260: binder_transaction: transaction=1569799 dest_node=0 dest_proc=27550 dest_thread=27625 reply=1 flags=0x0 code=0x0
58642<...>-770 ( 770) [005] .... 82316.157263: binder_transaction_alloc_buf: transaction=1569799 data_size=168 offsets_size=32
58643<...>-770 ( 770) [005] .... 82316.157270: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
58644<...>-770 ( 770) [005] d..2 82316.157305: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27625 next_prio=110
58645           <...>-27625 (-----) [005] .... 82316.157316: binder_transaction_received: transaction=1569799
58646<...>-581 ( 571) [000] d..2 82316.157339: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58647          <idle>-0     (-----) [000] d..1 82316.157349: cpu_idle: state=0 cpu_id=0
58648           <...>-27625 (-----) [005] ...1 82316.157386: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
58649           <...>-27625 (-----) [005] ...1 82316.157392: tracing_mark_write: E|27550
58650           <...>-27625 (-----) [005] .... 82316.157406: binder_transaction: transaction=1569800 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
58651           <...>-27625 (-----) [005] .... 82316.157408: binder_transaction_alloc_buf: transaction=1569800 data_size=48 offsets_size=0
58652           <...>-27625 (-----) [005] ...2 82316.157410: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
58653           <...>-27625 (-----) [005] d..4 82316.157413: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
58654           <...>-27625 (-----) [005] dn.5 82316.157423: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
58655           <...>-27625 (-----) [005] d..2 82316.157430: sched_switch: prev_comm=id.nn.benchmark prev_pid=27625 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
58656<...>-770 ( 770) [005] .... 82316.157439: binder_transaction_received: transaction=1569800
58657<...>-770 ( 770) [005] ...1 82316.157456: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
58658<...>-770 ( 770) [005] d..2 82316.157517: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
58659          <idle>-0     (-----) [000] dnh2 82316.157541: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
58660          <idle>-0     (-----) [000] .n.1 82316.157548: cpu_idle: state=4294967295 cpu_id=0
58661<...>-770 ( 770) [005] ...1 82316.157552: tracing_mark_write: E|770
58662          <idle>-0     (-----) [000] d..2 82316.157556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
58663<...>-770 ( 770) [005] .... 82316.157559: binder_transaction: transaction=1569801 dest_node=0 dest_proc=27550 dest_thread=27625 reply=1 flags=0x0 code=0x0
58664<...>-770 ( 770) [005] .... 82316.157562: binder_transaction_alloc_buf: transaction=1569801 data_size=168 offsets_size=32
58665<...>-770 ( 770) [005] .... 82316.157568: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
58666<...>-770 ( 770) [005] d..2 82316.157602: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27625 next_prio=110
58667           <...>-27625 (-----) [005] .... 82316.157613: binder_transaction_received: transaction=1569801
58668<...>-581 ( 571) [000] d..2 82316.157616: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58669          <idle>-0     (-----) [000] d..1 82316.157626: cpu_idle: state=0 cpu_id=0
58670           <...>-27625 (-----) [005] ...1 82316.157888: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
58671           <...>-27625 (-----) [005] ...1 82316.157899: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
58672           <...>-27625 (-----) [005] ...1 82316.157903: tracing_mark_write: E|27550
58673           <...>-27625 (-----) [005] .... 82316.157964: binder_transaction: transaction=1569802 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
58674           <...>-27625 (-----) [005] .... 82316.157967: binder_transaction_alloc_buf: transaction=1569802 data_size=556 offsets_size=104
58675           <...>-27625 (-----) [005] ...2 82316.157982: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
58676           <...>-27625 (-----) [005] d..4 82316.157984: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58677           <...>-27625 (-----) [005] dn.5 82316.157996: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58678           <...>-27625 (-----) [005] d..2 82316.158004: sched_switch: prev_comm=id.nn.benchmark prev_pid=27625 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58679<...>-5340 ( 788) [005] .... 82316.158014: binder_transaction_received: transaction=1569802
58680<...>-5340 ( 788) [005] ...1 82316.158059: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
58681<...>-5340 ( 788) [005] d..2 82316.158105: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
58682<...>-5340 ( 788) [005] d..2 82316.158129: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27625 next_prio=110
58683          <idle>-0     (-----) [000] dnh2 82316.158133: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
58684          <idle>-0     (-----) [000] .n.1 82316.158139: cpu_idle: state=4294967295 cpu_id=0
58685          <idle>-0     (-----) [000] d..2 82316.158147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
58686           <...>-27625 (-----) [005] d..2 82316.158153: sched_switch: prev_comm=id.nn.benchmark prev_pid=27625 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
58687          <idle>-0     (-----) [005] d..1 82316.158170: cpu_idle: state=0 cpu_id=5
58688<...>-87 ( 87) [000] d..2 82316.158190: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58689          <idle>-0     (-----) [002] d.h4 82316.158198: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58690          <idle>-0     (-----) [000] d..1 82316.158198: cpu_idle: state=0 cpu_id=0
58691          <idle>-0     (-----) [002] dnh5 82316.158215: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58692          <idle>-0     (-----) [002] .n.1 82316.158224: cpu_idle: state=4294967295 cpu_id=2
58693          <idle>-0     (-----) [002] d..2 82316.158236: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
58694<...>-86 ( 86) [002] d..2 82316.158272: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58695          <idle>-0     (-----) [002] d.h5 82316.158294: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58696          <idle>-0     (-----) [005] dnh2 82316.158315: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58697          <idle>-0     (-----) [005] .n.1 82316.158319: cpu_idle: state=4294967295 cpu_id=5
58698          <idle>-0     (-----) [005] d..2 82316.158328: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58699          <idle>-0     (-----) [002] d..1 82316.158339: cpu_idle: state=0 cpu_id=2
58700<...>-5340 ( 788) [005] d..1 82316.158379: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58701          <idle>-0     (-----) [000] dnh2 82316.158404: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58702          <idle>-0     (-----) [000] .n.1 82316.158410: cpu_idle: state=4294967295 cpu_id=0
58703          <idle>-0     (-----) [000] d..2 82316.158418: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
58704          <idle>-0     (-----) [001] d.s2 82316.158470: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
58705 neuralnetworks@-13088 (  788) [000] d.s2 82316.158476: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
58706          <idle>-0     (-----) [001] dns3 82316.158485: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
58707 neuralnetworks@-13088 (  788) [000] d.s3 82316.158495: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
58708          <idle>-0     (-----) [002] .n.1 82316.158501: cpu_idle: state=4294967295 cpu_id=2
58709 neuralnetworks@-13088 (  788) [000] d.s2 82316.158503: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
58710          <idle>-0     (-----) [001] .n.1 82316.158504: cpu_idle: state=4294967295 cpu_id=1
58711          <idle>-0     (-----) [002] d..2 82316.158513: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
58712          <idle>-0     (-----) [001] d..2 82316.158517: 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
58713     rcu_preempt-7     (    7) [001] d..2 82316.158524: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
58714     rcu_preempt-7     (    7) [001] d..3 82316.158547: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
58715 neuralnetworks@-13088 (  788) [000] d.s3 82316.158555: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
58716<...>-5340 ( 788) [005] d..2 82316.158560: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
58717  crtc_event:111-322   (  322) [002] d..2 82316.158565: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
58718         rcuop/2-29    (   29) [002] d..2 82316.158572: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
58719 neuralnetworks@-13088 (  788) [000] d.s2 82316.158576: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
58720 neuralnetworks@-13088 (  788) [000] d.s3 82316.158596: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
58721         rcuop/2-29    (   29) [002] d..3 82316.158598: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
58722     rcu_preempt-7     (    7) [001] d..2 82316.158607: 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
58723<...>-5340 ( 788) [005] d..2 82316.158616: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
58724         rcuop/3-37    (   37) [001] d.h3 82316.158620: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
58725         rcuop/2-29    (   29) [002] d..2 82316.158623: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
58726 neuralnetworks@-13088 (  788) [000] d..2 82316.158626: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
58727          <idle>-0     (-----) [005] d..1 82316.158630: cpu_idle: state=0 cpu_id=5
58728         rcuop/3-37    (   37) [001] d..2 82316.158642: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
58729  kworker/u16:15-1311  ( 1311) [002] d.h5 82316.158682: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58730<...>-87 ( 87) [001] d..2 82316.158685: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58731     kworker/0:1-25262 (25262) [000] d..2 82316.158691: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58732  kworker/u16:15-1311  ( 1311) [002] d.h6 82316.158724: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
58733          <idle>-0     (-----) [001] d..2 82316.158736: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
58734          <idle>-0     (-----) [000] d.h6 82316.158773: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
58735          <idle>-0     (-----) [000] dnh7 82316.158785: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
58736<...>-86 ( 86) [001] d..2 82316.158786: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58737          <idle>-0     (-----) [001] d..1 82316.158798: cpu_idle: state=0 cpu_id=1
58738          <idle>-0     (-----) [000] d..2 82316.158801: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
58739 crtc_commit:111-321   (  321) [000] d..2 82316.158895: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58740          <idle>-0     (-----) [000] d..1 82316.158907: cpu_idle: state=0 cpu_id=0
58741          <idle>-0     (-----) [005] ...1 82316.158956: cpu_idle: state=4294967295 cpu_id=5
58742          <idle>-0     (-----) [005] d..1 82316.158960: cpu_idle: state=0 cpu_id=5
58743  kworker/u16:15-1311  ( 1311) [002] d..2 82316.159029: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
58744          <idle>-0     (-----) [002] d..1 82316.159045: cpu_idle: state=0 cpu_id=2
58745          <idle>-0     (-----) [000] d.h5 82316.159056: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
58746          <idle>-0     (-----) [001] d.s3 82316.159061: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
58747          <idle>-0     (-----) [000] d.h6 82316.159072: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
58748          <idle>-0     (-----) [001] d.s4 82316.159078: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
58749          <idle>-0     (-----) [002] .n.1 82316.159079: cpu_idle: state=4294967295 cpu_id=2
58750          <idle>-0     (-----) [001] d.s4 82316.159084: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
58751          <idle>-0     (-----) [002] d..2 82316.159092: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
58752          <idle>-0     (-----) [000] ...1 82316.159102: cpu_idle: state=4294967295 cpu_id=0
58753          <idle>-0     (-----) [001] ...1 82316.159102: cpu_idle: state=4294967295 cpu_id=1
58754          <idle>-0     (-----) [000] d..1 82316.159107: cpu_idle: state=0 cpu_id=0
58755          <idle>-0     (-----) [001] d..1 82316.159109: cpu_idle: state=0 cpu_id=1
58756  crtc_event:111-322   (  322) [002] d..2 82316.159111: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
58757  kworker/u16:15-1311  ( 1311) [002] d..2 82316.159165: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58758          <idle>-0     (-----) [002] d..1 82316.159178: cpu_idle: state=0 cpu_id=2
58759          <idle>-0     (-----) [002] d.h4 82316.160384: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58760          <idle>-0     (-----) [005] dnh2 82316.160405: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58761          <idle>-0     (-----) [005] .n.1 82316.160409: cpu_idle: state=4294967295 cpu_id=5
58762          <idle>-0     (-----) [005] d..2 82316.160417: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58763          <idle>-0     (-----) [002] ...1 82316.160425: cpu_idle: state=4294967295 cpu_id=2
58764          <idle>-0     (-----) [002] d..1 82316.160433: cpu_idle: state=0 cpu_id=2
58765<...>-5340 ( 788) [005] d..1 82316.160467: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58766          <idle>-0     (-----) [000] dnh2 82316.160492: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58767          <idle>-0     (-----) [000] .n.1 82316.160498: cpu_idle: state=4294967295 cpu_id=0
58768          <idle>-0     (-----) [000] d..2 82316.160507: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
58769<...>-5340 ( 788) [005] ...1 82316.160558: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
58770<...>-5340 ( 788) [005] ...1 82316.160562: tracing_mark_write: E|788
58771 neuralnetworks@-13088 (  788) [000] d..2 82316.160574: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58772<...>-5340 ( 788) [005] .... 82316.160578: binder_transaction: transaction=1569805 dest_node=1569803 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
58773<...>-5340 ( 788) [005] .... 82316.160581: binder_transaction_alloc_buf: transaction=1569805 data_size=60 offsets_size=0
58774          <idle>-0     (-----) [000] d..1 82316.160583: cpu_idle: state=0 cpu_id=0
58775<...>-5340 ( 788) [005] d..4 82316.160584: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
58776<...>-5340 ( 788) [005] d..5 82316.160596: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
58777          <idle>-0     (-----) [004] .n.1 82316.160603: cpu_idle: state=4294967295 cpu_id=4
58778          <idle>-0     (-----) [004] d..2 82316.160612: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
58779           <...>-27571 (-----) [004] .... 82316.160617: binder_transaction_received: transaction=1569805
58780<...>-5340 ( 788) [005] ...1 82316.160618: tracing_mark_write: E|788
58781<...>-5340 ( 788) [005] .... 82316.160625: binder_transaction: transaction=1569806 dest_node=0 dest_proc=27550 dest_thread=27625 reply=1 flags=0x0 code=0x0
58782<...>-5340 ( 788) [005] .... 82316.160627: binder_transaction_alloc_buf: transaction=1569806 data_size=8 offsets_size=0
58783<...>-5340 ( 788) [005] d..2 82316.160629: sched_waking: comm=id.nn.benchmark pid=27625 prio=110 target_cpu=005
58784           <...>-27571 (-----) [004] ...1 82316.160635: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
58785<...>-5340 ( 788) [005] d..3 82316.160636: sched_wakeup: comm=id.nn.benchmark pid=27625 prio=110 target_cpu=005
58786<...>-5340 ( 788) [005] .... 82316.160637: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
58787           <...>-27571 (-----) [004] ...1 82316.160641: tracing_mark_write: E|27550
58788           <...>-27571 (-----) [004] d..2 82316.160671: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58789          <idle>-0     (-----) [004] d..1 82316.160679: cpu_idle: state=0 cpu_id=4
58790<...>-5340 ( 788) [005] d..2 82316.160679: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27625 next_prio=110
58791           <...>-27625 (-----) [005] .... 82316.160689: binder_transaction_received: transaction=1569806
58792           <...>-27625 (-----) [005] ...1 82316.160725: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
58793           <...>-27625 (-----) [005] ...1 82316.160731: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
58794           <...>-27625 (-----) [005] ...1 82316.160758: tracing_mark_write: E|27550
58795           <...>-27625 (-----) [005] ...1 82316.160762: tracing_mark_write: E|27550
58796           <...>-27625 (-----) [005] ...1 82316.160766: tracing_mark_write: E|27550
58797          <idle>-0     (-----) [003] d.h2 82316.160914: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
58798          <idle>-0     (-----) [003] dnh3 82316.160931: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
58799          <idle>-0     (-----) [003] .n.1 82316.160940: cpu_idle: state=4294967295 cpu_id=3
58800           <...>-27625 (-----) [005] ...1 82316.160951: tracing_mark_write: E|27550
58801          <idle>-0     (-----) [003] d..2 82316.160952: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
58802           <...>-27625 (-----) [005] d..1 82316.160964: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58803        DispSync-8879  ( 8858) [003] d..1 82316.160970: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
58804           <...>-27625 (-----) [005] d..2 82316.160980: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58805          <idle>-0     (-----) [004] .n.1 82316.160985: cpu_idle: state=4294967295 cpu_id=4
58806        DispSync-8879  ( 8858) [003] d..2 82316.160986: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
58807          <idle>-0     (-----) [004] d..2 82316.160992: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
58808          <idle>-0     (-----) [002] .n.1 82316.160993: cpu_idle: state=4294967295 cpu_id=2
58809          <idle>-0     (-----) [002] d..2 82316.161003: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
58810           <...>-27550 (-----) [004] d..2 82316.161011: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58811        DispSync-8879  ( 8858) [003] d..2 82316.161018: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
58812          <idle>-0     (-----) [004] d..1 82316.161020: cpu_idle: state=0 cpu_id=4
58813          <idle>-0     (-----) [003] d..1 82316.161031: cpu_idle: state=0 cpu_id=3
58814  appEventThread-8881  ( 8858) [002] d..3 82316.161060: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
58815           <...>-27625 (-----) [005] d..1 82316.161064: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58816           <...>-27625 (-----) [005] d..2 82316.161074: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
58817          <idle>-0     (-----) [004] .n.1 82316.161079: cpu_idle: state=4294967295 cpu_id=4
58818  appEventThread-8881  ( 8858) [002] d..4 82316.161083: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
58819          <idle>-0     (-----) [004] d..2 82316.161086: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
58820          <idle>-0     (-----) [000] .n.1 82316.161088: cpu_idle: state=4294967295 cpu_id=0
58821          <idle>-0     (-----) [000] d..2 82316.161098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
58822           <...>-27625 (-----) [005] d..2 82316.161112: sched_switch: prev_comm=id.nn.benchmark prev_pid=27625 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
58823           <...>-27550 (-----) [004] ...1 82316.161119: tracing_mark_write: E|27550
58824           <...>-27550 (-----) [004] ...1 82316.161123: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
58825  appEventThread-8881  ( 8858) [002] d..2 82316.161127: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58826           <...>-27550 (-----) [004] ...1 82316.161129: tracing_mark_write: E|27550
58827          <idle>-0     (-----) [005] d..1 82316.161132: cpu_idle: state=0 cpu_id=5
58828           <...>-27550 (-----) [004] ...1 82316.161133: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
58829           <...>-27550 (-----) [004] ...1 82316.161137: tracing_mark_write: E|27550
58830           <...>-27550 (-----) [004] ...1 82316.161141: tracing_mark_write: E|27550
58831          <idle>-0     (-----) [002] d..1 82316.161143: cpu_idle: state=0 cpu_id=2
58832           <...>-27550 (-----) [004] ...1 82316.161253: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
58833           <...>-27550 (-----) [004] ...1 82316.161311: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
58834           <...>-27550 (-----) [004] ...1 82316.161316: tracing_mark_write: E|27550
58835           <...>-27550 (-----) [004] ...1 82316.161320: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
58836           <...>-27550 (-----) [004] ...1 82316.161325: tracing_mark_write: E|27550
58837           <...>-27550 (-----) [004] ...1 82316.161328: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
58838           <...>-27550 (-----) [004] ...1 82316.161332: tracing_mark_write: E|27550
58839           <...>-27550 (-----) [004] ...1 82316.161335: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
58840          <idle>-0     (-----) [005] .n.1 82316.161419: cpu_idle: state=4294967295 cpu_id=5
58841           <...>-27550 (-----) [004] ...1 82316.161420: tracing_mark_write: E|27550
58842           <...>-27550 (-----) [004] ...1 82316.161424: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
58843          <idle>-0     (-----) [005] d..2 82316.161428: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27626 next_prio=110
58844           <...>-27550 (-----) [004] d..2 82316.161441: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
58845<...>-9105 ( 9105) [000] .... 82316.161445: binder_transaction: transaction=1569807 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
58846<...>-9105 ( 9105) [000] .... 82316.161452: binder_transaction_alloc_buf: transaction=1569807 data_size=80 offsets_size=0
58847          <idle>-0     (-----) [004] d..1 82316.161456: cpu_idle: state=0 cpu_id=4
58848<...>-9105 ( 9105) [000] d..4 82316.161458: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
58849<...>-9105 ( 9105) [000] d..5 82316.161484: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
58850           <...>-27626 (-----) [005] ...1 82316.161488: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
58851          <idle>-0     (-----) [001] .n.1 82316.161489: cpu_idle: state=4294967295 cpu_id=1
58852           <...>-27626 (-----) [005] ...1 82316.161502: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
58853          <idle>-0     (-----) [001] d..2 82316.161503: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
58854           <...>-27626 (-----) [005] ...1 82316.161506: tracing_mark_write: E|27550
58855<...>-13083 ( 8858) [001] .... 82316.161513: binder_transaction_received: transaction=1569807
58856<...>-9105 ( 9105) [000] d..3 82316.161524: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
58857           <...>-27626 (-----) [005] .... 82316.161528: binder_transaction: transaction=1569808 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
58858           <...>-27626 (-----) [005] .... 82316.161531: binder_transaction_alloc_buf: transaction=1569808 data_size=48 offsets_size=0
58859           <...>-27626 (-----) [005] ...2 82316.161534: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
58860           <...>-27626 (-----) [005] d..4 82316.161537: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
58861           <...>-27626 (-----) [005] dn.5 82316.161547: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
58862<...>-9105 ( 9105) [000] d..4 82316.161552: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
58863           <...>-27626 (-----) [005] d..2 82316.161554: sched_switch: prev_comm=id.nn.benchmark prev_pid=27626 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
58864<...>-13083 ( 8858) [001] d..1 82316.161555: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
58865          <idle>-0     (-----) [002] .n.1 82316.161559: cpu_idle: state=4294967295 cpu_id=2
58866<...>-770 ( 770) [005] .... 82316.161564: binder_transaction_received: transaction=1569808
58867          <idle>-0     (-----) [002] d..2 82316.161571: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
58868<...>-770 ( 770) [005] ...1 82316.161588: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
58869<...>-13083 ( 8858) [001] d..2 82316.161590: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
58870          <idle>-0     (-----) [003] .n.1 82316.161595: cpu_idle: state=4294967295 cpu_id=3
58871          <idle>-0     (-----) [003] d..2 82316.161606: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
58872    RenderThread-9436  ( 9105) [002] d..2 82316.161624: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
58873          <idle>-0     (-----) [002] d..1 82316.161638: cpu_idle: state=0 cpu_id=2
58874<...>-13083 ( 8858) [001] d..2 82316.161638: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
58875          <idle>-0     (-----) [001] d..1 82316.161653: cpu_idle: state=0 cpu_id=1
58876<...>-770 ( 770) [005] d..2 82316.161661: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
58877  appEventThread-8881  ( 8858) [003] d..2 82316.161663: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
58878          <idle>-0     (-----) [003] d..1 82316.161674: cpu_idle: state=0 cpu_id=3
58879<...>-9105 ( 9105) [000] d..3 82316.161682: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
58880          <idle>-0     (-----) [003] dnh2 82316.161695: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
58881<...>-9105 ( 9105) [000] d..4 82316.161701: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
58882          <idle>-0     (-----) [003] .n.1 82316.161702: cpu_idle: state=4294967295 cpu_id=3
58883<...>-770 ( 770) [005] ...1 82316.161706: tracing_mark_write: E|770
58884          <idle>-0     (-----) [002] .n.1 82316.161707: cpu_idle: state=4294967295 cpu_id=2
58885          <idle>-0     (-----) [003] d..2 82316.161713: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
58886<...>-770 ( 770) [005] .... 82316.161714: binder_transaction: transaction=1569809 dest_node=0 dest_proc=27550 dest_thread=27626 reply=1 flags=0x0 code=0x0
58887<...>-770 ( 770) [005] .... 82316.161716: binder_transaction_alloc_buf: transaction=1569809 data_size=168 offsets_size=32
58888          <idle>-0     (-----) [002] d..2 82316.161718: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
58889<...>-770 ( 770) [005] .... 82316.161723: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
58890<...>-9105 ( 9105) [000] d..2 82316.161738: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58891          <idle>-0     (-----) [000] d..1 82316.161752: cpu_idle: state=0 cpu_id=0
58892<...>-770 ( 770) [005] d..2 82316.161759: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27626 next_prio=110
58893           <...>-27626 (-----) [005] .... 82316.161799: binder_transaction_received: transaction=1569809
58894          <idle>-0     (-----) [000] d.s2 82316.161809: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
58895          <idle>-0     (-----) [000] dns3 82316.161826: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
58896<...>-581 ( 571) [003] d..2 82316.161845: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
58897          <idle>-0     (-----) [000] .n.1 82316.161847: cpu_idle: state=4294967295 cpu_id=0
58898          <idle>-0     (-----) [000] d..2 82316.161857: 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
58899          <idle>-0     (-----) [003] d..1 82316.161859: cpu_idle: state=0 cpu_id=3
58900           <...>-27626 (-----) [005] ...1 82316.161871: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
58901           <...>-27626 (-----) [005] ...1 82316.161876: tracing_mark_write: E|27550
58902    RenderThread-9436  ( 9105) [002] d..1 82316.161886: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
58903<...>-8 ( 8) [000] d..2 82316.161887: 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
58904           <...>-27626 (-----) [005] .... 82316.161891: binder_transaction: transaction=1569810 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
58905           <...>-27626 (-----) [005] .... 82316.161893: binder_transaction_alloc_buf: transaction=1569810 data_size=48 offsets_size=0
58906           <...>-27626 (-----) [005] ...2 82316.161896: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
58907           <...>-27626 (-----) [005] d..4 82316.161898: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
58908          <idle>-0     (-----) [000] dn.1 82316.161900: cpu_idle: state=0 cpu_id=0
58909          <idle>-0     (-----) [000] .n.1 82316.161904: cpu_idle: state=4294967295 cpu_id=0
58910    RenderThread-9436  ( 9105) [002] d..2 82316.161905: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
58911           <...>-27626 (-----) [005] dn.5 82316.161908: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
58912           <...>-27626 (-----) [005] d..2 82316.161915: sched_switch: prev_comm=id.nn.benchmark prev_pid=27626 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
58913          <idle>-0     (-----) [000] d..2 82316.161920: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
58914<...>-770 ( 770) [005] .... 82316.161923: binder_transaction_received: transaction=1569810
58915<...>-770 ( 770) [005] ...1 82316.161941: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
58916    RenderThread-9436  ( 9105) [002] .... 82316.161976: binder_transaction: transaction=1569811 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
58917    RenderThread-9436  ( 9105) [002] .... 82316.161982: binder_transaction_alloc_buf: transaction=1569811 data_size=104 offsets_size=0
58918    RenderThread-9436  ( 9105) [002] d..4 82316.161987: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
58919<...>-770 ( 770) [005] d..2 82316.162001: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
58920    RenderThread-9436  ( 9105) [002] dn.5 82316.162008: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
58921<...>-9105 ( 9105) [000] d..2 82316.162009: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
58922    RenderThread-9436  ( 9105) [002] d..2 82316.162018: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
58923          <idle>-0     (-----) [000] d..1 82316.162025: cpu_idle: state=0 cpu_id=0
58924          <idle>-0     (-----) [003] dnh2 82316.162025: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
58925<...>-13083 ( 8858) [002] .... 82316.162027: binder_transaction_received: transaction=1569811
58926          <idle>-0     (-----) [003] .n.1 82316.162031: cpu_idle: state=4294967295 cpu_id=3
58927<...>-770 ( 770) [005] ...1 82316.162035: tracing_mark_write: E|770
58928          <idle>-0     (-----) [003] d..2 82316.162042: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
58929<...>-770 ( 770) [005] .... 82316.162042: binder_transaction: transaction=1569812 dest_node=0 dest_proc=27550 dest_thread=27626 reply=1 flags=0x0 code=0x0
58930<...>-770 ( 770) [005] .... 82316.162045: binder_transaction_alloc_buf: transaction=1569812 data_size=168 offsets_size=32
58931<...>-770 ( 770) [005] .... 82316.162051: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
58932<...>-770 ( 770) [005] d..2 82316.162086: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27626 next_prio=110
58933           <...>-27626 (-----) [005] .... 82316.162097: binder_transaction_received: transaction=1569812
58934<...>-13083 ( 8858) [002] .... 82316.162103: binder_transaction: transaction=1569813 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
58935<...>-13083 ( 8858) [002] .... 82316.162108: binder_transaction_alloc_buf: transaction=1569813 data_size=52 offsets_size=8
58936<...>-581 ( 571) [003] d..2 82316.162112: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
58937          <idle>-0     (-----) [003] d..1 82316.162124: cpu_idle: state=0 cpu_id=3
58938<...>-13083 ( 8858) [002] d..2 82316.162159: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
58939    RenderThread-9436  ( 9105) [002] .... 82316.162168: binder_transaction_received: transaction=1569813
58940           <...>-27626 (-----) [005] ...1 82316.162371: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
58941           <...>-27626 (-----) [005] ...1 82316.162381: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
58942           <...>-27626 (-----) [005] ...1 82316.162385: tracing_mark_write: E|27550
58943           <...>-27626 (-----) [005] .... 82316.162444: binder_transaction: transaction=1569814 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
58944           <...>-27626 (-----) [005] .... 82316.162447: binder_transaction_alloc_buf: transaction=1569814 data_size=556 offsets_size=104
58945           <...>-27626 (-----) [005] ...2 82316.162461: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
58946           <...>-27626 (-----) [005] d..4 82316.162463: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58947           <...>-27626 (-----) [005] dn.5 82316.162474: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58948           <...>-27626 (-----) [005] d..2 82316.162481: sched_switch: prev_comm=id.nn.benchmark prev_pid=27626 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58949<...>-5340 ( 788) [005] .... 82316.162491: binder_transaction_received: transaction=1569814
58950<...>-5340 ( 788) [005] ...1 82316.162538: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
58951<...>-5340 ( 788) [005] d..2 82316.162583: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
58952<...>-5340 ( 788) [005] d..2 82316.162621: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27626 next_prio=110
58953    RenderThread-9436  ( 9105) [002] dnh1 82316.162631: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
58954    RenderThread-9436  ( 9105) [002] d..2 82316.162646: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
58955           <...>-27626 (-----) [005] d..2 82316.162646: sched_switch: prev_comm=id.nn.benchmark prev_pid=27626 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
58956          <idle>-0     (-----) [005] d..1 82316.162664: cpu_idle: state=0 cpu_id=5
58957<...>-87 ( 87) [002] d..2 82316.162682: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
58958    RenderThread-9436  ( 9105) [002] d.h5 82316.162700: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
58959    RenderThread-9436  ( 9105) [002] dnh6 82316.162744: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58960    RenderThread-9436  ( 9105) [002] d..2 82316.162757: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
58961<...>-86 ( 86) [002] d.h4 82316.162787: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58962          <idle>-0     (-----) [005] dnh2 82316.162810: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
58963          <idle>-0     (-----) [005] .n.1 82316.162814: cpu_idle: state=4294967295 cpu_id=5
58964          <idle>-0     (-----) [005] d..2 82316.162822: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
58965<...>-86 ( 86) [002] d..2 82316.162839: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
58966<...>-5340 ( 788) [005] d..1 82316.162875: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
58967    RenderThread-9436  ( 9105) [002] dnh1 82316.162913: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
58968    RenderThread-9436  ( 9105) [002] d..2 82316.162923: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
58969 neuralnetworks@-13088 (  788) [002] d..2 82316.162967: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
58970<...>-5340 ( 788) [005] d..2 82316.163035: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
58971    RenderThread-9436  ( 9105) [002] dnh1 82316.163059: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
58972<...>-5340 ( 788) [005] d..2 82316.163064: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
58973    RenderThread-9436  ( 9105) [002] d..2 82316.163070: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
58974          <idle>-0     (-----) [005] d..1 82316.163078: cpu_idle: state=0 cpu_id=5
58975<...>-87 ( 87) [002] d.h4 82316.163105: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58976<...>-87 ( 87) [002] d.h5 82316.163123: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
58977<...>-87 ( 87) [002] d..2 82316.163140: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
58978<...>-86 ( 86) [002] d..2 82316.163163: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
58979          <idle>-0     (-----) [005] ...1 82316.163401: cpu_idle: state=4294967295 cpu_id=5
58980          <idle>-0     (-----) [005] d..1 82316.163405: cpu_idle: state=0 cpu_id=5
58981    RenderThread-9436  ( 9105) [002] d..2 82316.163636: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
58982          <idle>-0     (-----) [002] d..1 82316.163654: cpu_idle: state=0 cpu_id=2
58983          <idle>-0     (-----) [002] d.h2 82316.163719: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
58984          <idle>-0     (-----) [002] d.h3 82316.163730: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
58985          <idle>-0     (-----) [002] dnh3 82316.163735: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
58986          <idle>-0     (-----) [002] .n.1 82316.163745: cpu_idle: state=4294967295 cpu_id=2
58987          <idle>-0     (-----) [000] d.h3 82316.163756: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
58988          <idle>-0     (-----) [002] d..2 82316.163757: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
58989          <idle>-0     (-----) [000] d.h4 82316.163778: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
58990          <idle>-0     (-----) [003] .n.1 82316.163784: cpu_idle: state=4294967295 cpu_id=3
58991          <idle>-0     (-----) [000] ...1 82316.163792: cpu_idle: state=4294967295 cpu_id=0
58992          <idle>-0     (-----) [003] d..2 82316.163794: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
58993          <idle>-0     (-----) [000] d..1 82316.163797: cpu_idle: state=0 cpu_id=0
58994 kgsl_worker_thr-258   (  258) [003] d..2 82316.163848: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
58995 kgsl_worker_thr-258   (  258) [003] d..3 82316.163889: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
58996 kgsl_worker_thr-258   (  258) [003] d..2 82316.163909: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
58997  kworker/u16:15-1311  ( 1311) [003] d..2 82316.163957: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
58998    RenderThread-9436  ( 9105) [002] .... 82316.163958: binder_transaction: transaction=1569817 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
58999    RenderThread-9436  ( 9105) [002] .... 82316.163963: binder_transaction_alloc_buf: transaction=1569817 data_size=192 offsets_size=8
59000          <idle>-0     (-----) [003] d..1 82316.163968: cpu_idle: state=0 cpu_id=3
59001    RenderThread-9436  ( 9105) [002] d..4 82316.163973: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
59002    RenderThread-9436  ( 9105) [002] dn.5 82316.163989: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
59003    RenderThread-9436  ( 9105) [002] d..2 82316.164000: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
59004<...>-13083 ( 8858) [002] .... 82316.164008: binder_transaction_received: transaction=1569817
59005<...>-13083 ( 8858) [002] .... 82316.164163: binder_transaction: transaction=1569818 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
59006<...>-13083 ( 8858) [002] .... 82316.164169: binder_transaction_alloc_buf: transaction=1569818 data_size=68 offsets_size=0
59007<...>-13083 ( 8858) [002] d..2 82316.164213: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
59008    RenderThread-9436  ( 9105) [002] .... 82316.164223: binder_transaction_received: transaction=1569818
59009    RenderThread-9436  ( 9105) [002] d..2 82316.164314: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59010          <idle>-0     (-----) [002] d..1 82316.164333: cpu_idle: state=0 cpu_id=2
59011          <idle>-0     (-----) [002] d.h4 82316.164782: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59012          <idle>-0     (-----) [005] dnh2 82316.164804: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59013          <idle>-0     (-----) [005] .n.1 82316.164808: cpu_idle: state=4294967295 cpu_id=5
59014          <idle>-0     (-----) [005] d..2 82316.164816: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59015          <idle>-0     (-----) [002] ...1 82316.164827: cpu_idle: state=4294967295 cpu_id=2
59016          <idle>-0     (-----) [002] d..1 82316.164832: cpu_idle: state=0 cpu_id=2
59017<...>-5340 ( 788) [005] d..1 82316.164866: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
59018          <idle>-0     (-----) [002] dnh2 82316.164889: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
59019          <idle>-0     (-----) [002] .n.1 82316.164898: cpu_idle: state=4294967295 cpu_id=2
59020          <idle>-0     (-----) [002] d..2 82316.164910: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
59021          <idle>-0     (-----) [003] d.h2 82316.164910: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
59022          <idle>-0     (-----) [003] dnh3 82316.164954: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
59023<...>-5340 ( 788) [005] ...1 82316.164960: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
59024          <idle>-0     (-----) [003] .n.1 82316.164963: cpu_idle: state=4294967295 cpu_id=3
59025<...>-5340 ( 788) [005] ...1 82316.164965: tracing_mark_write: E|788
59026          <idle>-0     (-----) [003] d..2 82316.164973: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
59027<...>-5340 ( 788) [005] .... 82316.164981: binder_transaction: transaction=1569819 dest_node=1569815 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
59028<...>-5340 ( 788) [005] .... 82316.164984: binder_transaction_alloc_buf: transaction=1569819 data_size=60 offsets_size=0
59029<...>-5340 ( 788) [005] d..4 82316.164987: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
59030 neuralnetworks@-13088 (  788) [002] d..2 82316.164988: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59031        DispSync-8879  ( 8858) [003] d..1 82316.164994: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
59032<...>-5340 ( 788) [005] d..5 82316.165000: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
59033          <idle>-0     (-----) [002] d..1 82316.165003: cpu_idle: state=0 cpu_id=2
59034          <idle>-0     (-----) [004] .n.1 82316.165006: cpu_idle: state=4294967295 cpu_id=4
59035        DispSync-8879  ( 8858) [003] d..2 82316.165012: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
59036          <idle>-0     (-----) [004] d..2 82316.165015: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
59037          <idle>-0     (-----) [002] .n.1 82316.165018: cpu_idle: state=4294967295 cpu_id=2
59038           <...>-27571 (-----) [004] .... 82316.165020: binder_transaction_received: transaction=1569819
59039<...>-5340 ( 788) [005] ...1 82316.165022: tracing_mark_write: E|788
59040<...>-5340 ( 788) [005] .... 82316.165028: binder_transaction: transaction=1569820 dest_node=0 dest_proc=27550 dest_thread=27626 reply=1 flags=0x0 code=0x0
59041          <idle>-0     (-----) [002] d..2 82316.165028: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
59042<...>-5340 ( 788) [005] .... 82316.165030: binder_transaction_alloc_buf: transaction=1569820 data_size=8 offsets_size=0
59043<...>-5340 ( 788) [005] d..2 82316.165032: sched_waking: comm=id.nn.benchmark pid=27626 prio=110 target_cpu=005
59044<...>-5340 ( 788) [005] d..3 82316.165039: sched_wakeup: comm=id.nn.benchmark pid=27626 prio=110 target_cpu=005
59045           <...>-27571 (-----) [004] ...1 82316.165039: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
59046<...>-5340 ( 788) [005] .... 82316.165041: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
59047        DispSync-8879  ( 8858) [003] d..2 82316.165042: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59048           <...>-27571 (-----) [004] ...1 82316.165045: tracing_mark_write: E|27550
59049          <idle>-0     (-----) [003] d..1 82316.165057: cpu_idle: state=0 cpu_id=3
59050   sfEventThread-8882  ( 8858) [002] d..3 82316.165071: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
59051           <...>-27571 (-----) [004] d..2 82316.165074: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59052          <idle>-0     (-----) [004] d..1 82316.165081: cpu_idle: state=0 cpu_id=4
59053<...>-5340 ( 788) [005] d..2 82316.165082: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27626 next_prio=110
59054           <...>-27626 (-----) [005] .... 82316.165092: binder_transaction_received: transaction=1569820
59055   sfEventThread-8882  ( 8858) [002] d..4 82316.165092: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
59056          <idle>-0     (-----) [003] .n.1 82316.165098: cpu_idle: state=4294967295 cpu_id=3
59057          <idle>-0     (-----) [003] d..2 82316.165109: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
59058          <idle>-0     (-----) [001] d.s2 82316.165138: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
59059   sfEventThread-8882  ( 8858) [002] d.s2 82316.165147: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
59060          <idle>-0     (-----) [001] dns3 82316.165158: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
59061           <...>-27626 (-----) [005] ...1 82316.165159: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
59062           <...>-27626 (-----) [005] ...1 82316.165165: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
59063          <idle>-0     (-----) [001] .n.1 82316.165169: cpu_idle: state=4294967295 cpu_id=1
59064          <idle>-0     (-----) [001] d..2 82316.165181: 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
59065   sfEventThread-8882  ( 8858) [002] d.s3 82316.165186: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
59066           <...>-27626 (-----) [005] ...1 82316.165191: tracing_mark_write: E|27550
59067     rcu_preempt-7     (    7) [001] d..2 82316.165193: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
59068           <...>-27626 (-----) [005] ...1 82316.165195: tracing_mark_write: E|27550
59069           <...>-27626 (-----) [005] ...1 82316.165199: tracing_mark_write: E|27550
59070   sfEventThread-8882  ( 8858) [002] d..2 82316.165202: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
59071<...>-8 ( 8) [002] d..2 82316.165210: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
59072     rcu_preempt-7     (    7) [001] d..3 82316.165237: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
59073     rcu_preempt-7     (    7) [001] d..2 82316.165246: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
59074<...>-8 ( 8) [002] d..3 82316.165252: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
59075     rcu_preempt-7     (    7) [001] d..3 82316.165263: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
59076<...>-8 ( 8) [002] d..2 82316.165264: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
59077     rcu_preempt-7     (    7) [001] d..2 82316.165278: 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
59078         rcuop/0-10    (   10) [002] d..2 82316.165281: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
59079         rcuop/4-45    (   45) [001] d..2 82316.165284: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=002
59080<...>-46 ( 46) [002] d..2 82316.165317: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
59081         rcuop/4-45    (   45) [001] d..3 82316.165349: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
59082<...>-46 ( 46) [002] d..3 82316.165364: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
59083         rcuop/4-45    (   45) [001] d..2 82316.165375: 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
59084           <...>-27626 (-----) [005] ...1 82316.165389: tracing_mark_write: E|27550
59085           <...>-27626 (-----) [005] d..1 82316.165402: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59086<...>-46 ( 46) [002] d..2 82316.165403: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59087           <...>-27626 (-----) [005] d..2 82316.165417: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59088          <idle>-0     (-----) [002] d..1 82316.165420: cpu_idle: state=0 cpu_id=2
59089          <idle>-0     (-----) [004] .n.1 82316.165423: cpu_idle: state=4294967295 cpu_id=4
59090          <idle>-0     (-----) [004] d..2 82316.165430: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
59091           <...>-27550 (-----) [004] d..2 82316.165451: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59092          <idle>-0     (-----) [004] d..1 82316.165460: cpu_idle: state=0 cpu_id=4
59093         rcuop/5-53    (   53) [001] d..2 82316.165482: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
59094<...>-8 ( 8) [001] d..2 82316.165506: 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
59095  surfaceflinger-8858  ( 8858) [003] d..1 82316.165507: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
59096           <...>-27626 (-----) [005] d..1 82316.165508: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59097           <...>-27626 (-----) [005] d..2 82316.165517: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59098          <idle>-0     (-----) [001] d..1 82316.165521: cpu_idle: state=0 cpu_id=1
59099          <idle>-0     (-----) [004] .n.1 82316.165522: cpu_idle: state=4294967295 cpu_id=4
59100  surfaceflinger-8858  ( 8858) [003] d..2 82316.165527: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
59101          <idle>-0     (-----) [004] d..2 82316.165530: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
59102          <idle>-0     (-----) [002] .n.1 82316.165534: cpu_idle: state=4294967295 cpu_id=2
59103          <idle>-0     (-----) [002] d..2 82316.165546: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
59104           <...>-27626 (-----) [005] d..2 82316.165557: sched_switch: prev_comm=id.nn.benchmark prev_pid=27626 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
59105           <...>-27550 (-----) [004] ...1 82316.165572: tracing_mark_write: E|27550
59106           <...>-27550 (-----) [004] ...1 82316.165576: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
59107          <idle>-0     (-----) [005] d..1 82316.165579: cpu_idle: state=0 cpu_id=5
59108           <...>-27550 (-----) [004] ...1 82316.165582: tracing_mark_write: E|27550
59109           <...>-27550 (-----) [004] ...1 82316.165585: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
59110   sfEventThread-8882  ( 8858) [002] d..2 82316.165587: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59111           <...>-27550 (-----) [004] ...1 82316.165590: tracing_mark_write: E|27550
59112           <...>-27550 (-----) [004] ...1 82316.165594: tracing_mark_write: E|27550
59113          <idle>-0     (-----) [002] d..1 82316.165599: cpu_idle: state=0 cpu_id=2
59114           <...>-27550 (-----) [004] ...1 82316.165706: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
59115  surfaceflinger-8858  ( 8858) [003] ...1 82316.165720: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
59116  surfaceflinger-8858  ( 8858) [003] ...1 82316.165728: tracing_mark_write: E|8858
59117           <...>-27550 (-----) [004] ...1 82316.165763: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
59118           <...>-27550 (-----) [004] ...1 82316.165768: tracing_mark_write: E|27550
59119           <...>-27550 (-----) [004] ...1 82316.165771: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
59120           <...>-27550 (-----) [004] ...1 82316.165777: tracing_mark_write: E|27550
59121           <...>-27550 (-----) [004] ...1 82316.165780: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
59122  surfaceflinger-8858  ( 8858) [003] .... 82316.165781: binder_transaction: transaction=1569821 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
59123           <...>-27550 (-----) [004] ...1 82316.165784: tracing_mark_write: E|27550
59124  surfaceflinger-8858  ( 8858) [003] .... 82316.165786: binder_transaction_alloc_buf: transaction=1569821 data_size=540 offsets_size=96
59125           <...>-27550 (-----) [004] ...1 82316.165788: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
59126  surfaceflinger-8858  ( 8858) [003] ...2 82316.165811: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
59127  surfaceflinger-8858  ( 8858) [003] d..4 82316.165818: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
59128  surfaceflinger-8858  ( 8858) [003] d..5 82316.165838: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
59129          <idle>-0     (-----) [001] .n.1 82316.165845: cpu_idle: state=4294967295 cpu_id=1
59130          <idle>-0     (-----) [001] d..2 82316.165856: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
59131 [email protected]   (  619) [001] .... 82316.165867: binder_transaction_received: transaction=1569821
59132  surfaceflinger-8858  ( 8858) [003] d..2 82316.165871: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59133          <idle>-0     (-----) [005] .n.1 82316.165883: cpu_idle: state=4294967295 cpu_id=5
59134           <...>-27550 (-----) [004] ...1 82316.165885: tracing_mark_write: E|27550
59135           <...>-27550 (-----) [004] ...1 82316.165889: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
59136          <idle>-0     (-----) [003] d..1 82316.165891: cpu_idle: state=0 cpu_id=3
59137          <idle>-0     (-----) [005] d..2 82316.165892: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27627 next_prio=110
59138           <...>-27550 (-----) [004] d..2 82316.165906: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59139 [email protected]   (  619) [001] ...1 82316.165912: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
59140          <idle>-0     (-----) [004] d..1 82316.165921: cpu_idle: state=0 cpu_id=4
59141           <...>-27627 (-----) [005] ...1 82316.165952: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
59142           <...>-27627 (-----) [005] ...1 82316.165967: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
59143           <...>-27627 (-----) [005] ...1 82316.165970: tracing_mark_write: E|27550
59144           <...>-27627 (-----) [005] .... 82316.165993: binder_transaction: transaction=1569822 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
59145           <...>-27627 (-----) [005] .... 82316.165997: binder_transaction_alloc_buf: transaction=1569822 data_size=48 offsets_size=0
59146           <...>-27627 (-----) [005] ...2 82316.166000: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
59147           <...>-27627 (-----) [005] d..4 82316.166003: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
59148           <...>-27627 (-----) [005] dn.5 82316.166014: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
59149 [email protected]   (  619) [001] ...1 82316.166019: tracing_mark_write: B|619|HWCSession::PresentDisplay::
59150           <...>-27627 (-----) [005] d..2 82316.166020: sched_switch: prev_comm=id.nn.benchmark prev_pid=27627 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
59151<...>-770 ( 770) [005] .... 82316.166030: binder_transaction_received: transaction=1569822
59152<...>-770 ( 770) [005] ...1 82316.166054: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
59153<...>-770 ( 770) [005] d..2 82316.166137: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
59154 [email protected]   (  619) [001] d.h1 82316.166181: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
59155<...>-770 ( 770) [005] ...1 82316.166193: tracing_mark_write: E|770
59156<...>-770 ( 770) [005] .... 82316.166201: binder_transaction: transaction=1569823 dest_node=0 dest_proc=27550 dest_thread=27627 reply=1 flags=0x0 code=0x0
59157<...>-770 ( 770) [005] .... 82316.166204: binder_transaction_alloc_buf: transaction=1569823 data_size=168 offsets_size=32
59158<...>-770 ( 770) [005] .... 82316.166211: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
59159 [email protected]   (  619) [001] ...1 82316.166212: tracing_mark_write: B|619|HWDeviceDRM::Commit::
59160 [email protected]   (  619) [001] ...1 82316.166226: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
59161<...>-770 ( 770) [005] d..2 82316.166248: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27627 next_prio=110
59162           <...>-27627 (-----) [005] .... 82316.166259: binder_transaction_received: transaction=1569823
59163           <...>-27627 (-----) [005] ...1 82316.166333: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
59164           <...>-27627 (-----) [005] ...1 82316.166338: tracing_mark_write: E|27550
59165           <...>-27627 (-----) [005] .... 82316.166352: binder_transaction: transaction=1569824 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
59166           <...>-27627 (-----) [005] .... 82316.166355: binder_transaction_alloc_buf: transaction=1569824 data_size=48 offsets_size=0
59167           <...>-27627 (-----) [005] ...2 82316.166357: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
59168           <...>-27627 (-----) [005] d..4 82316.166359: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
59169           <...>-27627 (-----) [005] dn.5 82316.166369: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
59170           <...>-27627 (-----) [005] d..2 82316.166376: sched_switch: prev_comm=id.nn.benchmark prev_pid=27627 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
59171<...>-770 ( 770) [005] .... 82316.166383: binder_transaction_received: transaction=1569824
59172<...>-770 ( 770) [005] ...1 82316.166400: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
59173<...>-770 ( 770) [005] ...1 82316.166480: tracing_mark_write: E|770
59174<...>-770 ( 770) [005] .... 82316.166487: binder_transaction: transaction=1569825 dest_node=0 dest_proc=27550 dest_thread=27627 reply=1 flags=0x0 code=0x0
59175<...>-770 ( 770) [005] .... 82316.166489: binder_transaction_alloc_buf: transaction=1569825 data_size=168 offsets_size=32
59176<...>-770 ( 770) [005] .... 82316.166495: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
59177<...>-770 ( 770) [005] d..2 82316.166530: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27627 next_prio=110
59178           <...>-27627 (-----) [005] .... 82316.166541: binder_transaction_received: transaction=1569825
59179          <idle>-0     (-----) [002] ...1 82316.166740: cpu_idle: state=4294967295 cpu_id=2
59180          <idle>-0     (-----) [002] d..1 82316.166745: cpu_idle: state=0 cpu_id=2
59181           <...>-27627 (-----) [005] ...1 82316.166819: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
59182           <...>-27627 (-----) [005] ...1 82316.166830: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
59183           <...>-27627 (-----) [005] ...1 82316.166833: tracing_mark_write: E|27550
59184 [email protected]   (  619) [001] d..2 82316.166838: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
59185 [email protected]   (  619) [001] d..3 82316.166861: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
59186          <idle>-0     (-----) [000] .n.1 82316.166866: cpu_idle: state=4294967295 cpu_id=0
59187          <idle>-0     (-----) [000] d..2 82316.166879: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
59188           <...>-27627 (-----) [005] .... 82316.166896: binder_transaction: transaction=1569826 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
59189           <...>-27627 (-----) [005] .... 82316.166899: binder_transaction_alloc_buf: transaction=1569826 data_size=556 offsets_size=104
59190           <...>-27627 (-----) [005] ...2 82316.166913: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
59191           <...>-27627 (-----) [005] d..4 82316.166915: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59192           <...>-27627 (-----) [005] dn.5 82316.166927: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59193           <...>-27627 (-----) [005] d..2 82316.166934: sched_switch: prev_comm=id.nn.benchmark prev_pid=27627 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59194<...>-5340 ( 788) [005] .... 82316.166944: binder_transaction_received: transaction=1569826
59195 [email protected]   (  619) [001] ...1 82316.166965: tracing_mark_write: E|619
59196 [email protected]   (  619) [001] ...1 82316.166972: tracing_mark_write: E|619
59197<...>-5340 ( 788) [005] ...1 82316.166992: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
59198 [email protected]   (  619) [001] ...1 82316.167037: tracing_mark_write: E|619
59199<...>-5340 ( 788) [005] d..2 82316.167038: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
59200<...>-5340 ( 788) [005] d..2 82316.167076: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27627 next_prio=110
59201 crtc_commit:111-321   (  321) [000] d.h1 82316.167077: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59202 [email protected]   (  619) [001] ...1 82316.167083: tracing_mark_write: E|619
59203 [email protected]   (  619) [001] .... 82316.167099: binder_transaction: transaction=1569829 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
59204           <...>-27627 (-----) [005] d..2 82316.167099: sched_switch: prev_comm=id.nn.benchmark prev_pid=27627 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
59205 [email protected]   (  619) [001] .... 82316.167104: binder_transaction_alloc_buf: transaction=1569829 data_size=576 offsets_size=112
59206          <idle>-0     (-----) [005] d..1 82316.167117: cpu_idle: state=0 cpu_id=5
59207 [email protected]   (  619) [001] d..2 82316.167126: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
59208 [email protected]   (  619) [001] d..3 82316.167145: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
59209 [email protected]   (  619) [001] .... 82316.167150: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
59210          <idle>-0     (-----) [003] .n.1 82316.167152: cpu_idle: state=4294967295 cpu_id=3
59211          <idle>-0     (-----) [003] d..2 82316.167163: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
59212  surfaceflinger-8858  ( 8858) [003] .... 82316.167171: binder_transaction_received: transaction=1569829
59213 [email protected]   (  619) [001] d..2 82316.167226: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
59214<...>-581 ( 571) [001] d..2 82316.167351: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59215          <idle>-0     (-----) [001] d..1 82316.167371: cpu_idle: state=0 cpu_id=1
59216 crtc_commit:111-321   (  321) [000] d..2 82316.167601: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
59217  surfaceflinger-8858  ( 8858) [003] d..2 82316.167618: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59218          <idle>-0     (-----) [003] d..1 82316.167636: cpu_idle: state=0 cpu_id=3
59219<...>-87 ( 87) [000] d..2 82316.167649: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59220          <idle>-0     (-----) [002] d.h4 82316.167659: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59221          <idle>-0     (-----) [000] d..1 82316.167665: cpu_idle: state=0 cpu_id=0
59222          <idle>-0     (-----) [002] dnh5 82316.167677: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59223          <idle>-0     (-----) [002] .n.1 82316.167688: cpu_idle: state=4294967295 cpu_id=2
59224          <idle>-0     (-----) [002] d..2 82316.167700: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
59225<...>-86 ( 86) [002] d.h4 82316.167735: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59226          <idle>-0     (-----) [005] dnh2 82316.167757: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59227          <idle>-0     (-----) [005] .n.1 82316.167762: cpu_idle: state=4294967295 cpu_id=5
59228          <idle>-0     (-----) [005] d..2 82316.167770: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59229<...>-86 ( 86) [002] d..2 82316.167796: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59230          <idle>-0     (-----) [002] d..1 82316.167811: cpu_idle: state=0 cpu_id=2
59231<...>-5340 ( 788) [005] d..1 82316.167825: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
59232          <idle>-0     (-----) [000] dnh2 82316.167863: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59233          <idle>-0     (-----) [000] .n.1 82316.167869: cpu_idle: state=4294967295 cpu_id=0
59234          <idle>-0     (-----) [000] d..2 82316.167880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
59235 neuralnetworks@-13088 (  788) [000] d..2 82316.167937: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59236          <idle>-0     (-----) [000] d..1 82316.167951: cpu_idle: state=0 cpu_id=0
59237<...>-5340 ( 788) [005] d..2 82316.167986: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59238          <idle>-0     (-----) [000] dnh2 82316.168009: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59239<...>-5340 ( 788) [005] d..2 82316.168012: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
59240          <idle>-0     (-----) [000] .n.1 82316.168015: cpu_idle: state=4294967295 cpu_id=0
59241          <idle>-0     (-----) [005] d..1 82316.168026: cpu_idle: state=0 cpu_id=5
59242          <idle>-0     (-----) [000] d..2 82316.168026: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
59243<...>-87 ( 87) [000] d..2 82316.168065: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59244          <idle>-0     (-----) [002] d.h4 82316.168066: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59245          <idle>-0     (-----) [000] d..1 82316.168077: cpu_idle: state=0 cpu_id=0
59246          <idle>-0     (-----) [002] dnh5 82316.168077: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59247          <idle>-0     (-----) [002] .n.1 82316.168087: cpu_idle: state=4294967295 cpu_id=2
59248          <idle>-0     (-----) [002] d..2 82316.168099: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
59249<...>-86 ( 86) [002] d..2 82316.168133: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59250          <idle>-0     (-----) [002] d..1 82316.168146: cpu_idle: state=0 cpu_id=2
59251          <idle>-0     (-----) [002] d..2 82316.169265: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
59252          <idle>-0     (-----) [002] dn.3 82316.169279: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
59253          <idle>-0     (-----) [002] .n.1 82316.169283: cpu_idle: state=4294967295 cpu_id=2
59254          <idle>-0     (-----) [002] d..2 82316.169296: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
59255     ksoftirqd/2-26    (   26) [002] d.s2 82316.169309: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
59256     ksoftirqd/2-26    (   26) [002] d.s3 82316.169347: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
59257     ksoftirqd/2-26    (   26) [002] d..2 82316.169363: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
59258  kworker/u16:15-1311  ( 1311) [002] .... 82316.169465: clk_set_rate: l3_cluster0_vote_clk 403200000
59259  kworker/u16:15-1311  ( 1311) [002] d..2 82316.169502: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59260          <idle>-0     (-----) [002] d..1 82316.169515: cpu_idle: state=0 cpu_id=2
59261          <idle>-0     (-----) [002] d.h4 82316.169760: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59262          <idle>-0     (-----) [005] dnh2 82316.169782: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59263          <idle>-0     (-----) [005] .n.1 82316.169787: cpu_idle: state=4294967295 cpu_id=5
59264          <idle>-0     (-----) [005] d..2 82316.169795: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59265          <idle>-0     (-----) [002] ...1 82316.169801: cpu_idle: state=4294967295 cpu_id=2
59266          <idle>-0     (-----) [002] d..1 82316.169807: cpu_idle: state=0 cpu_id=2
59267<...>-5340 ( 788) [005] d..1 82316.169845: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59268          <idle>-0     (-----) [000] dnh2 82316.169868: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59269          <idle>-0     (-----) [000] .n.1 82316.169876: cpu_idle: state=4294967295 cpu_id=0
59270          <idle>-0     (-----) [000] d..2 82316.169887: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
59271<...>-5340 ( 788) [005] ...1 82316.169937: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
59272<...>-5340 ( 788) [005] ...1 82316.169941: tracing_mark_write: E|788
59273 neuralnetworks@-13088 (  788) [000] d..2 82316.169951: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59274<...>-5340 ( 788) [005] .... 82316.169956: binder_transaction: transaction=1569830 dest_node=1569827 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
59275<...>-5340 ( 788) [005] .... 82316.169959: binder_transaction_alloc_buf: transaction=1569830 data_size=60 offsets_size=0
59276<...>-5340 ( 788) [005] d..4 82316.169962: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
59277          <idle>-0     (-----) [000] d..1 82316.169964: cpu_idle: state=0 cpu_id=0
59278<...>-5340 ( 788) [005] d..5 82316.169975: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
59279          <idle>-0     (-----) [004] .n.1 82316.169980: cpu_idle: state=4294967295 cpu_id=4
59280          <idle>-0     (-----) [004] d..2 82316.169989: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
59281           <...>-27571 (-----) [004] .... 82316.169994: binder_transaction_received: transaction=1569830
59282<...>-5340 ( 788) [005] ...1 82316.169997: tracing_mark_write: E|788
59283<...>-5340 ( 788) [005] .... 82316.170003: binder_transaction: transaction=1569831 dest_node=0 dest_proc=27550 dest_thread=27627 reply=1 flags=0x0 code=0x0
59284<...>-5340 ( 788) [005] .... 82316.170005: binder_transaction_alloc_buf: transaction=1569831 data_size=8 offsets_size=0
59285<...>-5340 ( 788) [005] d..2 82316.170007: sched_waking: comm=id.nn.benchmark pid=27627 prio=110 target_cpu=005
59286           <...>-27571 (-----) [004] ...1 82316.170013: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
59287<...>-5340 ( 788) [005] d..3 82316.170014: sched_wakeup: comm=id.nn.benchmark pid=27627 prio=110 target_cpu=005
59288<...>-5340 ( 788) [005] .... 82316.170016: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
59289           <...>-27571 (-----) [004] ...1 82316.170018: tracing_mark_write: E|27550
59290           <...>-27571 (-----) [004] d..2 82316.170048: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59291          <idle>-0     (-----) [004] d..1 82316.170055: cpu_idle: state=0 cpu_id=4
59292<...>-5340 ( 788) [005] d..2 82316.170058: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27627 next_prio=110
59293           <...>-27627 (-----) [005] .... 82316.170068: binder_transaction_received: transaction=1569831
59294           <...>-27627 (-----) [005] ...1 82316.170103: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
59295           <...>-27627 (-----) [005] ...1 82316.170108: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
59296           <...>-27627 (-----) [005] ...1 82316.170136: tracing_mark_write: E|27550
59297           <...>-27627 (-----) [005] ...1 82316.170139: tracing_mark_write: E|27550
59298           <...>-27627 (-----) [005] ...1 82316.170143: tracing_mark_write: E|27550
59299           <...>-27627 (-----) [005] ...1 82316.170334: tracing_mark_write: E|27550
59300           <...>-27627 (-----) [005] d..1 82316.170347: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59301           <...>-27627 (-----) [005] d..2 82316.170364: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59302          <idle>-0     (-----) [004] .n.1 82316.170368: cpu_idle: state=4294967295 cpu_id=4
59303          <idle>-0     (-----) [004] d..2 82316.170375: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
59304           <...>-27550 (-----) [004] d..2 82316.170395: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59305          <idle>-0     (-----) [004] d..1 82316.170404: cpu_idle: state=0 cpu_id=4
59306           <...>-27627 (-----) [005] d..1 82316.170452: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59307           <...>-27627 (-----) [005] d..2 82316.170462: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59308          <idle>-0     (-----) [004] .n.1 82316.170468: cpu_idle: state=4294967295 cpu_id=4
59309          <idle>-0     (-----) [004] d..2 82316.170476: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
59310           <...>-27627 (-----) [005] d..2 82316.170502: sched_switch: prev_comm=id.nn.benchmark prev_pid=27627 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
59311           <...>-27550 (-----) [004] ...1 82316.170508: tracing_mark_write: E|27550
59312           <...>-27550 (-----) [004] ...1 82316.170513: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
59313           <...>-27550 (-----) [004] ...1 82316.170518: tracing_mark_write: E|27550
59314           <...>-27550 (-----) [004] ...1 82316.170522: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
59315          <idle>-0     (-----) [005] d..1 82316.170522: cpu_idle: state=0 cpu_id=5
59316           <...>-27550 (-----) [004] ...1 82316.170526: tracing_mark_write: E|27550
59317           <...>-27550 (-----) [004] ...1 82316.170531: tracing_mark_write: E|27550
59318           <...>-27550 (-----) [004] ...1 82316.170644: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
59319           <...>-27550 (-----) [004] ...1 82316.170702: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
59320           <...>-27550 (-----) [004] ...1 82316.170706: tracing_mark_write: E|27550
59321           <...>-27550 (-----) [004] ...1 82316.170710: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
59322           <...>-27550 (-----) [004] ...1 82316.170716: tracing_mark_write: E|27550
59323           <...>-27550 (-----) [004] ...1 82316.170720: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
59324           <...>-27550 (-----) [004] ...1 82316.170725: tracing_mark_write: E|27550
59325           <...>-27550 (-----) [004] ...1 82316.170728: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
59326          <idle>-0     (-----) [005] .n.1 82316.170821: cpu_idle: state=4294967295 cpu_id=5
59327           <...>-27550 (-----) [004] ...1 82316.170822: tracing_mark_write: E|27550
59328           <...>-27550 (-----) [004] ...1 82316.170826: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
59329          <idle>-0     (-----) [005] d..2 82316.170830: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27628 next_prio=110
59330           <...>-27550 (-----) [004] d..2 82316.170843: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59331          <idle>-0     (-----) [004] d..1 82316.170858: cpu_idle: state=0 cpu_id=4
59332           <...>-27628 (-----) [005] ...1 82316.170891: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
59333           <...>-27628 (-----) [005] ...1 82316.170905: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
59334           <...>-27628 (-----) [005] ...1 82316.170909: tracing_mark_write: E|27550
59335           <...>-27628 (-----) [005] .... 82316.170930: binder_transaction: transaction=1569832 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
59336           <...>-27628 (-----) [005] .... 82316.170933: binder_transaction_alloc_buf: transaction=1569832 data_size=48 offsets_size=0
59337           <...>-27628 (-----) [005] ...2 82316.170936: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
59338           <...>-27628 (-----) [005] d..4 82316.170939: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
59339           <...>-27628 (-----) [005] dn.5 82316.170949: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
59340           <...>-27628 (-----) [005] d..2 82316.170956: sched_switch: prev_comm=id.nn.benchmark prev_pid=27628 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
59341<...>-770 ( 770) [005] .... 82316.170966: binder_transaction_received: transaction=1569832
59342<...>-770 ( 770) [005] ...1 82316.170989: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
59343<...>-770 ( 770) [005] d..2 82316.171068: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
59344          <idle>-0     (-----) [000] dnh2 82316.171106: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
59345          <idle>-0     (-----) [000] .n.1 82316.171112: cpu_idle: state=4294967295 cpu_id=0
59346<...>-770 ( 770) [005] ...1 82316.171119: tracing_mark_write: E|770
59347          <idle>-0     (-----) [000] d..2 82316.171123: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
59348<...>-770 ( 770) [005] .... 82316.171128: binder_transaction: transaction=1569833 dest_node=0 dest_proc=27550 dest_thread=27628 reply=1 flags=0x0 code=0x0
59349<...>-770 ( 770) [005] .... 82316.171130: binder_transaction_alloc_buf: transaction=1569833 data_size=168 offsets_size=32
59350<...>-770 ( 770) [005] .... 82316.171137: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
59351<...>-770 ( 770) [005] d..2 82316.171172: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27628 next_prio=110
59352           <...>-27628 (-----) [005] .... 82316.171183: binder_transaction_received: transaction=1569833
59353<...>-581 ( 571) [000] d..2 82316.171220: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59354          <idle>-0     (-----) [000] d..1 82316.171236: cpu_idle: state=0 cpu_id=0
59355           <...>-27628 (-----) [005] ...1 82316.171253: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
59356           <...>-27628 (-----) [005] ...1 82316.171258: tracing_mark_write: E|27550
59357           <...>-27628 (-----) [005] .... 82316.171272: binder_transaction: transaction=1569834 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
59358           <...>-27628 (-----) [005] .... 82316.171275: binder_transaction_alloc_buf: transaction=1569834 data_size=48 offsets_size=0
59359           <...>-27628 (-----) [005] ...2 82316.171278: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
59360           <...>-27628 (-----) [005] d..4 82316.171280: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
59361           <...>-27628 (-----) [005] dn.5 82316.171290: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
59362           <...>-27628 (-----) [005] d..2 82316.171297: sched_switch: prev_comm=id.nn.benchmark prev_pid=27628 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
59363<...>-770 ( 770) [005] .... 82316.171305: binder_transaction_received: transaction=1569834
59364<...>-770 ( 770) [005] ...1 82316.171322: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
59365<...>-770 ( 770) [005] d..2 82316.171379: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
59366          <idle>-0     (-----) [000] dnh2 82316.171403: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
59367          <idle>-0     (-----) [000] .n.1 82316.171410: cpu_idle: state=4294967295 cpu_id=0
59368<...>-770 ( 770) [005] ...1 82316.171413: tracing_mark_write: E|770
59369<...>-770 ( 770) [005] .... 82316.171420: binder_transaction: transaction=1569835 dest_node=0 dest_proc=27550 dest_thread=27628 reply=1 flags=0x0 code=0x0
59370          <idle>-0     (-----) [000] d..2 82316.171421: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
59371<...>-770 ( 770) [005] .... 82316.171422: binder_transaction_alloc_buf: transaction=1569835 data_size=168 offsets_size=32
59372<...>-770 ( 770) [005] .... 82316.171428: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
59373<...>-770 ( 770) [005] d..2 82316.171462: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27628 next_prio=110
59374           <...>-27628 (-----) [005] .... 82316.171473: binder_transaction_received: transaction=1569835
59375<...>-581 ( 571) [000] d..2 82316.171481: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59376          <idle>-0     (-----) [000] d..1 82316.171496: cpu_idle: state=0 cpu_id=0
59377           <...>-27628 (-----) [005] ...1 82316.171746: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
59378           <...>-27628 (-----) [005] ...1 82316.171756: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
59379           <...>-27628 (-----) [005] ...1 82316.171759: tracing_mark_write: E|27550
59380          <idle>-0     (-----) [001] d.s2 82316.171810: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
59381          <idle>-0     (-----) [001] dns3 82316.171864: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
59382          <idle>-0     (-----) [001] dns2 82316.171867: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
59383          <idle>-0     (-----) [001] dns3 82316.171881: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
59384          <idle>-0     (-----) [001] .n.1 82316.171893: cpu_idle: state=4294967295 cpu_id=1
59385          <idle>-0     (-----) [001] d..2 82316.171906: 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
59386           <...>-27628 (-----) [005] .... 82316.171919: binder_transaction: transaction=1569836 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
59387           <...>-27628 (-----) [005] .... 82316.171923: binder_transaction_alloc_buf: transaction=1569836 data_size=556 offsets_size=104
59388<...>-8 ( 8) [001] d..2 82316.171927: 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
59389           <...>-27628 (-----) [005] ...2 82316.171936: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
59390           <...>-27628 (-----) [005] d..4 82316.171939: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59391           <...>-27628 (-----) [005] dn.5 82316.171949: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59392           <...>-27628 (-----) [005] d..2 82316.171955: sched_switch: prev_comm=id.nn.benchmark prev_pid=27628 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59393     rcu_preempt-7     (    7) [001] d..2 82316.171957: 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
59394<...>-5340 ( 788) [005] .... 82316.171965: binder_transaction_received: transaction=1569836
59395          <idle>-0     (-----) [001] d..1 82316.171971: cpu_idle: state=0 cpu_id=1
59396<...>-5340 ( 788) [005] ...1 82316.172012: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
59397<...>-5340 ( 788) [005] d..2 82316.172056: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59398<...>-5340 ( 788) [005] d..2 82316.172082: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27628 next_prio=110
59399          <idle>-0     (-----) [000] dnh2 82316.172085: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59400          <idle>-0     (-----) [000] .n.1 82316.172093: cpu_idle: state=4294967295 cpu_id=0
59401          <idle>-0     (-----) [000] d..2 82316.172104: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
59402           <...>-27628 (-----) [005] d..2 82316.172106: sched_switch: prev_comm=id.nn.benchmark prev_pid=27628 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
59403          <idle>-0     (-----) [005] d..1 82316.172123: cpu_idle: state=0 cpu_id=5
59404<...>-87 ( 87) [000] d..2 82316.172149: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59405          <idle>-0     (-----) [002] d.h4 82316.172156: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59406          <idle>-0     (-----) [000] d..1 82316.172162: cpu_idle: state=0 cpu_id=0
59407          <idle>-0     (-----) [002] dnh5 82316.172175: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59408          <idle>-0     (-----) [002] .n.1 82316.172188: cpu_idle: state=4294967295 cpu_id=2
59409          <idle>-0     (-----) [002] d..2 82316.172204: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
59410<...>-86 ( 86) [002] d..3 82316.172235: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59411          <idle>-0     (-----) [005] dnh2 82316.172257: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59412          <idle>-0     (-----) [005] .n.1 82316.172262: cpu_idle: state=4294967295 cpu_id=5
59413          <idle>-0     (-----) [005] d..2 82316.172270: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59414<...>-86 ( 86) [002] d..2 82316.172294: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59415          <idle>-0     (-----) [002] d..1 82316.172308: cpu_idle: state=0 cpu_id=2
59416<...>-5340 ( 788) [005] d..1 82316.172323: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59417          <idle>-0     (-----) [000] dnh2 82316.172349: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59418          <idle>-0     (-----) [000] .n.1 82316.172357: cpu_idle: state=4294967295 cpu_id=0
59419          <idle>-0     (-----) [000] d..2 82316.172367: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
59420 neuralnetworks@-13088 (  788) [000] d..2 82316.172414: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59421          <idle>-0     (-----) [000] d..1 82316.172428: cpu_idle: state=0 cpu_id=0
59422<...>-5340 ( 788) [005] d..2 82316.172470: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59423          <idle>-0     (-----) [000] dnh2 82316.172492: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59424<...>-5340 ( 788) [005] d..2 82316.172496: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
59425          <idle>-0     (-----) [000] .n.1 82316.172499: cpu_idle: state=4294967295 cpu_id=0
59426          <idle>-0     (-----) [000] d..2 82316.172509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
59427          <idle>-0     (-----) [005] d..1 82316.172510: cpu_idle: state=0 cpu_id=5
59428          <idle>-0     (-----) [002] d.h4 82316.172548: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59429<...>-87 ( 87) [000] d..2 82316.172549: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59430          <idle>-0     (-----) [002] dnh5 82316.172559: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59431          <idle>-0     (-----) [000] d..1 82316.172562: cpu_idle: state=0 cpu_id=0
59432          <idle>-0     (-----) [002] .n.1 82316.172567: cpu_idle: state=4294967295 cpu_id=2
59433          <idle>-0     (-----) [002] d..2 82316.172579: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
59434<...>-86 ( 86) [002] d..2 82316.172613: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59435          <idle>-0     (-----) [002] d..1 82316.172625: cpu_idle: state=0 cpu_id=2
59436          <idle>-0     (-----) [000] d.h5 82316.172894: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
59437          <idle>-0     (-----) [000] d.h6 82316.172915: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
59438          <idle>-0     (-----) [000] d.h5 82316.172919: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
59439          <idle>-0     (-----) [002] .n.1 82316.172921: cpu_idle: state=4294967295 cpu_id=2
59440          <idle>-0     (-----) [000] dnh6 82316.172929: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
59441          <idle>-0     (-----) [002] d..2 82316.172931: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
59442          <idle>-0     (-----) [000] .n.1 82316.172943: cpu_idle: state=4294967295 cpu_id=0
59443          <idle>-0     (-----) [000] d..2 82316.172954: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
59444  crtc_event:111-322   (  322) [002] d..2 82316.172966: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59445          <idle>-0     (-----) [002] d..1 82316.172977: cpu_idle: state=0 cpu_id=2
59446 crtc_commit:111-321   (  321) [000] d..2 82316.173096: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
59447          <idle>-0     (-----) [000] d..1 82316.173106: cpu_idle: state=0 cpu_id=0
59448          <idle>-0     (-----) [002] d.h4 82316.174315: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59449          <idle>-0     (-----) [005] dnh2 82316.174337: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59450          <idle>-0     (-----) [005] .n.1 82316.174341: cpu_idle: state=4294967295 cpu_id=5
59451          <idle>-0     (-----) [005] d..2 82316.174349: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59452          <idle>-0     (-----) [002] ...1 82316.174355: cpu_idle: state=4294967295 cpu_id=2
59453          <idle>-0     (-----) [002] d..1 82316.174361: cpu_idle: state=0 cpu_id=2
59454<...>-5340 ( 788) [005] d..1 82316.174401: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59455          <idle>-0     (-----) [000] dnh2 82316.174427: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59456          <idle>-0     (-----) [000] .n.1 82316.174434: cpu_idle: state=4294967295 cpu_id=0
59457          <idle>-0     (-----) [000] d..2 82316.174442: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
59458<...>-5340 ( 788) [005] ...1 82316.174490: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
59459<...>-5340 ( 788) [005] ...1 82316.174494: tracing_mark_write: E|788
59460 neuralnetworks@-13088 (  788) [000] d..2 82316.174507: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59461<...>-5340 ( 788) [005] .... 82316.174510: binder_transaction: transaction=1569839 dest_node=1569837 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
59462<...>-5340 ( 788) [005] .... 82316.174512: binder_transaction_alloc_buf: transaction=1569839 data_size=60 offsets_size=0
59463<...>-5340 ( 788) [005] d..4 82316.174516: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
59464          <idle>-0     (-----) [000] d..1 82316.174517: cpu_idle: state=0 cpu_id=0
59465<...>-5340 ( 788) [005] d..5 82316.174529: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
59466          <idle>-0     (-----) [004] .n.1 82316.174535: cpu_idle: state=4294967295 cpu_id=4
59467          <idle>-0     (-----) [004] d..2 82316.174543: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
59468           <...>-27571 (-----) [004] .... 82316.174547: binder_transaction_received: transaction=1569839
59469<...>-5340 ( 788) [005] ...1 82316.174552: tracing_mark_write: E|788
59470<...>-5340 ( 788) [005] .... 82316.174558: binder_transaction: transaction=1569840 dest_node=0 dest_proc=27550 dest_thread=27628 reply=1 flags=0x0 code=0x0
59471<...>-5340 ( 788) [005] .... 82316.174560: binder_transaction_alloc_buf: transaction=1569840 data_size=8 offsets_size=0
59472<...>-5340 ( 788) [005] d..2 82316.174562: sched_waking: comm=id.nn.benchmark pid=27628 prio=110 target_cpu=005
59473           <...>-27571 (-----) [004] ...1 82316.174565: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
59474<...>-5340 ( 788) [005] d..3 82316.174569: sched_wakeup: comm=id.nn.benchmark pid=27628 prio=110 target_cpu=005
59475<...>-5340 ( 788) [005] .... 82316.174571: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
59476           <...>-27571 (-----) [004] ...1 82316.174571: tracing_mark_write: E|27550
59477           <...>-27571 (-----) [004] d..2 82316.174599: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59478          <idle>-0     (-----) [004] d..1 82316.174607: cpu_idle: state=0 cpu_id=4
59479<...>-5340 ( 788) [005] d..2 82316.174612: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27628 next_prio=110
59480           <...>-27628 (-----) [005] .... 82316.174622: binder_transaction_received: transaction=1569840
59481           <...>-27628 (-----) [005] ...1 82316.174658: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
59482           <...>-27628 (-----) [005] ...1 82316.174664: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
59483           <...>-27628 (-----) [005] ...1 82316.174691: tracing_mark_write: E|27550
59484           <...>-27628 (-----) [005] ...1 82316.174694: tracing_mark_write: E|27550
59485           <...>-27628 (-----) [005] ...1 82316.174698: tracing_mark_write: E|27550
59486           <...>-27628 (-----) [005] ...1 82316.174886: tracing_mark_write: E|27550
59487           <...>-27628 (-----) [005] d..1 82316.174898: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59488           <...>-27628 (-----) [005] d..2 82316.174916: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59489          <idle>-0     (-----) [004] .n.1 82316.174921: cpu_idle: state=4294967295 cpu_id=4
59490          <idle>-0     (-----) [004] d..2 82316.174928: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
59491           <...>-27550 (-----) [004] d..2 82316.174947: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59492          <idle>-0     (-----) [004] d..1 82316.174956: cpu_idle: state=0 cpu_id=4
59493           <...>-27628 (-----) [005] d..1 82316.175007: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59494           <...>-27628 (-----) [005] d..2 82316.175017: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59495          <idle>-0     (-----) [004] .n.1 82316.175021: cpu_idle: state=4294967295 cpu_id=4
59496          <idle>-0     (-----) [004] d..2 82316.175029: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
59497           <...>-27628 (-----) [005] d..2 82316.175057: sched_switch: prev_comm=id.nn.benchmark prev_pid=27628 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
59498           <...>-27550 (-----) [004] ...1 82316.175061: tracing_mark_write: E|27550
59499           <...>-27550 (-----) [004] ...1 82316.175065: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
59500           <...>-27550 (-----) [004] ...1 82316.175071: tracing_mark_write: E|27550
59501           <...>-27550 (-----) [004] ...1 82316.175075: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
59502          <idle>-0     (-----) [005] d..1 82316.175078: cpu_idle: state=0 cpu_id=5
59503           <...>-27550 (-----) [004] ...1 82316.175079: tracing_mark_write: E|27550
59504           <...>-27550 (-----) [004] ...1 82316.175083: tracing_mark_write: E|27550
59505          <idle>-0     (-----) [000] d.s3 82316.175134: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
59506          <idle>-0     (-----) [000] d.s4 82316.175151: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
59507          <idle>-0     (-----) [002] .n.1 82316.175161: cpu_idle: state=4294967295 cpu_id=2
59508          <idle>-0     (-----) [002] d..2 82316.175173: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
59509  crtc_event:111-322   (  322) [002] d..2 82316.175207: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59510          <idle>-0     (-----) [002] d..1 82316.175219: cpu_idle: state=0 cpu_id=2
59511          <idle>-0     (-----) [000] d.H6 82316.175231: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
59512           <...>-27550 (-----) [004] ...1 82316.175232: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
59513          <idle>-0     (-----) [000] dnH7 82316.175242: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
59514          <idle>-0     (-----) [000] .n.1 82316.175261: cpu_idle: state=4294967295 cpu_id=0
59515          <idle>-0     (-----) [000] d..2 82316.175268: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
59516           <...>-27550 (-----) [004] ...1 82316.175291: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
59517           <...>-27550 (-----) [004] ...1 82316.175296: tracing_mark_write: E|27550
59518           <...>-27550 (-----) [004] ...1 82316.175300: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
59519           <...>-27550 (-----) [004] ...1 82316.175304: tracing_mark_write: E|27550
59520           <...>-27550 (-----) [004] ...1 82316.175308: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
59521           <...>-27550 (-----) [004] ...1 82316.175311: tracing_mark_write: E|27550
59522           <...>-27550 (-----) [004] ...1 82316.175315: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
59523 crtc_commit:111-321   (  321) [000] d..2 82316.175345: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59524          <idle>-0     (-----) [000] d..1 82316.175361: cpu_idle: state=0 cpu_id=0
59525          <idle>-0     (-----) [005] .n.1 82316.175403: cpu_idle: state=4294967295 cpu_id=5
59526           <...>-27550 (-----) [004] ...1 82316.175403: tracing_mark_write: E|27550
59527           <...>-27550 (-----) [004] ...1 82316.175408: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
59528          <idle>-0     (-----) [005] d..2 82316.175413: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27629 next_prio=110
59529           <...>-27550 (-----) [004] d..2 82316.175425: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59530          <idle>-0     (-----) [004] d..1 82316.175440: cpu_idle: state=0 cpu_id=4
59531           <...>-27629 (-----) [005] ...1 82316.175474: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
59532           <...>-27629 (-----) [005] ...1 82316.175488: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
59533           <...>-27629 (-----) [005] ...1 82316.175492: tracing_mark_write: E|27550
59534           <...>-27629 (-----) [005] .... 82316.175512: binder_transaction: transaction=1569841 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
59535           <...>-27629 (-----) [005] .... 82316.175515: binder_transaction_alloc_buf: transaction=1569841 data_size=48 offsets_size=0
59536          <idle>-0     (-----) [000] d.h5 82316.175518: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
59537           <...>-27629 (-----) [005] ...2 82316.175518: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
59538           <...>-27629 (-----) [005] d..4 82316.175521: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
59539           <...>-27629 (-----) [005] dn.5 82316.175532: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
59540          <idle>-0     (-----) [000] d.h6 82316.175534: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
59541           <...>-27629 (-----) [005] d..2 82316.175539: sched_switch: prev_comm=id.nn.benchmark prev_pid=27629 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
59542          <idle>-0     (-----) [002] .n.1 82316.175540: cpu_idle: state=4294967295 cpu_id=2
59543<...>-770 ( 770) [005] .... 82316.175549: binder_transaction_received: transaction=1569841
59544          <idle>-0     (-----) [002] d..2 82316.175550: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
59545          <idle>-0     (-----) [000] ...1 82316.175554: cpu_idle: state=4294967295 cpu_id=0
59546          <idle>-0     (-----) [000] d..1 82316.175559: cpu_idle: state=0 cpu_id=0
59547<...>-770 ( 770) [005] ...1 82316.175571: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
59548  crtc_event:111-322   (  322) [002] d..2 82316.175575: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59549          <idle>-0     (-----) [002] d..1 82316.175586: cpu_idle: state=0 cpu_id=2
59550<...>-770 ( 770) [005] d..2 82316.175642: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
59551          <idle>-0     (-----) [000] dnh2 82316.175671: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
59552          <idle>-0     (-----) [000] .n.1 82316.175677: cpu_idle: state=4294967295 cpu_id=0
59553<...>-770 ( 770) [005] ...1 82316.175684: tracing_mark_write: E|770
59554          <idle>-0     (-----) [000] d..2 82316.175688: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
59555<...>-770 ( 770) [005] .... 82316.175692: binder_transaction: transaction=1569842 dest_node=0 dest_proc=27550 dest_thread=27629 reply=1 flags=0x0 code=0x0
59556<...>-770 ( 770) [005] .... 82316.175694: binder_transaction_alloc_buf: transaction=1569842 data_size=168 offsets_size=32
59557<...>-770 ( 770) [005] .... 82316.175701: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
59558<...>-770 ( 770) [005] d..2 82316.175736: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27629 next_prio=110
59559           <...>-27629 (-----) [005] .... 82316.175747: binder_transaction_received: transaction=1569842
59560<...>-581 ( 571) [000] d..2 82316.175770: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59561          <idle>-0     (-----) [000] d..1 82316.175786: cpu_idle: state=0 cpu_id=0
59562           <...>-27629 (-----) [005] ...1 82316.175818: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
59563           <...>-27629 (-----) [005] ...1 82316.175824: tracing_mark_write: E|27550
59564           <...>-27629 (-----) [005] .... 82316.175838: binder_transaction: transaction=1569843 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
59565           <...>-27629 (-----) [005] .... 82316.175841: binder_transaction_alloc_buf: transaction=1569843 data_size=48 offsets_size=0
59566           <...>-27629 (-----) [005] ...2 82316.175843: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
59567           <...>-27629 (-----) [005] d..4 82316.175845: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
59568           <...>-27629 (-----) [005] dn.5 82316.175855: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
59569           <...>-27629 (-----) [005] d..2 82316.175861: sched_switch: prev_comm=id.nn.benchmark prev_pid=27629 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
59570<...>-770 ( 770) [005] .... 82316.175869: binder_transaction_received: transaction=1569843
59571<...>-770 ( 770) [005] ...1 82316.175886: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
59572<...>-770 ( 770) [005] d..2 82316.175943: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
59573          <idle>-0     (-----) [000] dnh2 82316.175968: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
59574          <idle>-0     (-----) [000] .n.1 82316.175975: cpu_idle: state=4294967295 cpu_id=0
59575<...>-770 ( 770) [005] ...1 82316.175977: tracing_mark_write: E|770
59576<...>-770 ( 770) [005] .... 82316.175984: binder_transaction: transaction=1569844 dest_node=0 dest_proc=27550 dest_thread=27629 reply=1 flags=0x0 code=0x0
59577          <idle>-0     (-----) [000] d..2 82316.175986: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
59578<...>-770 ( 770) [005] .... 82316.175987: binder_transaction_alloc_buf: transaction=1569844 data_size=168 offsets_size=32
59579<...>-770 ( 770) [005] .... 82316.175992: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
59580<...>-770 ( 770) [005] d..2 82316.176027: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27629 next_prio=110
59581           <...>-27629 (-----) [005] .... 82316.176038: binder_transaction_received: transaction=1569844
59582<...>-581 ( 571) [000] d..2 82316.176046: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59583          <idle>-0     (-----) [000] d..1 82316.176060: cpu_idle: state=0 cpu_id=0
59584           <...>-27629 (-----) [005] ...1 82316.176316: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
59585           <...>-27629 (-----) [005] ...1 82316.176325: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
59586           <...>-27629 (-----) [005] ...1 82316.176329: tracing_mark_write: E|27550
59587           <...>-27629 (-----) [005] .... 82316.176387: binder_transaction: transaction=1569845 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
59588           <...>-27629 (-----) [005] .... 82316.176390: binder_transaction_alloc_buf: transaction=1569845 data_size=556 offsets_size=104
59589           <...>-27629 (-----) [005] ...2 82316.176404: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
59590           <...>-27629 (-----) [005] d..4 82316.176407: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59591           <...>-27629 (-----) [005] dn.5 82316.176418: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59592           <...>-27629 (-----) [005] d..2 82316.176425: sched_switch: prev_comm=id.nn.benchmark prev_pid=27629 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59593<...>-5340 ( 788) [005] .... 82316.176435: binder_transaction_received: transaction=1569845
59594<...>-5340 ( 788) [005] ...1 82316.176481: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
59595<...>-5340 ( 788) [005] d..2 82316.176527: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59596<...>-5340 ( 788) [005] d..2 82316.176551: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27629 next_prio=110
59597          <idle>-0     (-----) [000] dnh2 82316.176555: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59598          <idle>-0     (-----) [000] .n.1 82316.176562: cpu_idle: state=4294967295 cpu_id=0
59599          <idle>-0     (-----) [000] d..2 82316.176573: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
59600           <...>-27629 (-----) [005] d..2 82316.176574: sched_switch: prev_comm=id.nn.benchmark prev_pid=27629 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
59601          <idle>-0     (-----) [005] d..1 82316.176591: cpu_idle: state=0 cpu_id=5
59602<...>-87 ( 87) [000] d..2 82316.176615: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59603          <idle>-0     (-----) [002] d.h4 82316.176623: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59604          <idle>-0     (-----) [000] d..1 82316.176627: cpu_idle: state=0 cpu_id=0
59605          <idle>-0     (-----) [002] dnh5 82316.176641: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59606          <idle>-0     (-----) [002] .n.1 82316.176651: cpu_idle: state=4294967295 cpu_id=2
59607          <idle>-0     (-----) [002] d..2 82316.176661: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
59608<...>-86 ( 86) [002] d..2 82316.176696: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59609          <idle>-0     (-----) [002] d.h5 82316.176719: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59610          <idle>-0     (-----) [005] dnh2 82316.176740: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59611          <idle>-0     (-----) [005] .n.1 82316.176745: cpu_idle: state=4294967295 cpu_id=5
59612          <idle>-0     (-----) [005] d..2 82316.176753: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59613          <idle>-0     (-----) [002] d..1 82316.176764: cpu_idle: state=0 cpu_id=2
59614<...>-5340 ( 788) [005] d..1 82316.176806: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59615          <idle>-0     (-----) [000] dnh2 82316.176832: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59616          <idle>-0     (-----) [000] .n.1 82316.176839: cpu_idle: state=4294967295 cpu_id=0
59617          <idle>-0     (-----) [000] d..2 82316.176849: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
59618 neuralnetworks@-13088 (  788) [000] d..2 82316.176895: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59619          <idle>-0     (-----) [000] d..1 82316.176908: cpu_idle: state=0 cpu_id=0
59620<...>-5340 ( 788) [005] d..2 82316.176953: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59621          <idle>-0     (-----) [000] dnh2 82316.176976: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59622<...>-5340 ( 788) [005] d..2 82316.176980: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
59623          <idle>-0     (-----) [000] .n.1 82316.176983: cpu_idle: state=4294967295 cpu_id=0
59624          <idle>-0     (-----) [000] d..2 82316.176993: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
59625          <idle>-0     (-----) [005] d..1 82316.176994: cpu_idle: state=0 cpu_id=5
59626          <idle>-0     (-----) [002] d.h4 82316.177032: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59627<...>-87 ( 87) [000] d..2 82316.177033: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59628          <idle>-0     (-----) [002] dnh5 82316.177043: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59629          <idle>-0     (-----) [000] d..1 82316.177045: cpu_idle: state=0 cpu_id=0
59630          <idle>-0     (-----) [002] .n.1 82316.177052: cpu_idle: state=4294967295 cpu_id=2
59631          <idle>-0     (-----) [002] d..2 82316.177063: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
59632<...>-86 ( 86) [002] d..2 82316.177098: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59633          <idle>-0     (-----) [002] d..1 82316.177110: cpu_idle: state=0 cpu_id=2
59634          <idle>-0     (-----) [005] ...1 82316.177325: cpu_idle: state=4294967295 cpu_id=5
59635          <idle>-0     (-----) [005] d..1 82316.177329: cpu_idle: state=0 cpu_id=5
59636          <idle>-0     (-----) [003] d.h2 82316.177379: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
59637          <idle>-0     (-----) [003] dnh3 82316.177397: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
59638          <idle>-0     (-----) [003] .n.1 82316.177406: cpu_idle: state=4294967295 cpu_id=3
59639          <idle>-0     (-----) [003] d..2 82316.177419: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
59640        DispSync-8879  ( 8858) [003] d..1 82316.177437: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
59641        DispSync-8879  ( 8858) [003] d..2 82316.177460: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
59642          <idle>-0     (-----) [002] .n.1 82316.177467: cpu_idle: state=4294967295 cpu_id=2
59643          <idle>-0     (-----) [002] d..2 82316.177477: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
59644        DispSync-8879  ( 8858) [003] d..2 82316.177493: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59645          <idle>-0     (-----) [003] d..1 82316.177507: cpu_idle: state=0 cpu_id=3
59646  appEventThread-8881  ( 8858) [002] d..3 82316.177536: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
59647  appEventThread-8881  ( 8858) [002] d..4 82316.177558: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
59648          <idle>-0     (-----) [000] .n.1 82316.177564: cpu_idle: state=4294967295 cpu_id=0
59649          <idle>-0     (-----) [000] d..2 82316.177576: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
59650  appEventThread-8881  ( 8858) [002] d..2 82316.177599: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59651          <idle>-0     (-----) [002] d..1 82316.177614: cpu_idle: state=0 cpu_id=2
59652<...>-9105 ( 9105) [000] .... 82316.177894: binder_transaction: transaction=1569848 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
59653<...>-9105 ( 9105) [000] .... 82316.177901: binder_transaction_alloc_buf: transaction=1569848 data_size=80 offsets_size=0
59654<...>-9105 ( 9105) [000] d..4 82316.177907: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
59655<...>-9105 ( 9105) [000] d..5 82316.177942: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
59656          <idle>-0     (-----) [001] .n.1 82316.177948: cpu_idle: state=4294967295 cpu_id=1
59657          <idle>-0     (-----) [001] d..2 82316.177960: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
59658<...>-13083 ( 8858) [001] .... 82316.177970: binder_transaction_received: transaction=1569848
59659<...>-9105 ( 9105) [000] d..3 82316.177981: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
59660<...>-9105 ( 9105) [000] d..4 82316.178001: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
59661          <idle>-0     (-----) [002] .n.1 82316.178008: cpu_idle: state=4294967295 cpu_id=2
59662<...>-13083 ( 8858) [001] d..1 82316.178010: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
59663          <idle>-0     (-----) [002] d..2 82316.178022: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
59664<...>-13083 ( 8858) [001] d..2 82316.178043: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
59665          <idle>-0     (-----) [003] .n.1 82316.178049: cpu_idle: state=4294967295 cpu_id=3
59666          <idle>-0     (-----) [003] d..2 82316.178059: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
59667    RenderThread-9436  ( 9105) [002] d..2 82316.178077: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59668<...>-13083 ( 8858) [001] d..2 82316.178089: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59669          <idle>-0     (-----) [002] d..1 82316.178091: cpu_idle: state=0 cpu_id=2
59670          <idle>-0     (-----) [001] d..1 82316.178102: cpu_idle: state=0 cpu_id=1
59671  appEventThread-8881  ( 8858) [003] d..2 82316.178113: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59672<...>-9105 ( 9105) [000] d..3 82316.178123: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
59673          <idle>-0     (-----) [003] d..1 82316.178124: cpu_idle: state=0 cpu_id=3
59674<...>-9105 ( 9105) [000] d..4 82316.178141: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
59675          <idle>-0     (-----) [002] .n.1 82316.178148: cpu_idle: state=4294967295 cpu_id=2
59676          <idle>-0     (-----) [002] d..2 82316.178159: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
59677<...>-9105 ( 9105) [000] d..2 82316.178175: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59678          <idle>-0     (-----) [000] d..1 82316.178196: cpu_idle: state=0 cpu_id=0
59679    RenderThread-9436  ( 9105) [002] d..1 82316.178280: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
59680    RenderThread-9436  ( 9105) [002] d..2 82316.178299: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
59681          <idle>-0     (-----) [000] .n.1 82316.178306: cpu_idle: state=4294967295 cpu_id=0
59682          <idle>-0     (-----) [000] d..2 82316.178320: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
59683    RenderThread-9436  ( 9105) [002] .... 82316.178368: binder_transaction: transaction=1569849 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
59684    RenderThread-9436  ( 9105) [002] .... 82316.178374: binder_transaction_alloc_buf: transaction=1569849 data_size=104 offsets_size=0
59685    RenderThread-9436  ( 9105) [002] d..4 82316.178379: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
59686<...>-9105 ( 9105) [000] d..2 82316.178399: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59687    RenderThread-9436  ( 9105) [002] dn.5 82316.178401: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
59688    RenderThread-9436  ( 9105) [002] d..2 82316.178411: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
59689          <idle>-0     (-----) [000] d..1 82316.178415: cpu_idle: state=0 cpu_id=0
59690<...>-13083 ( 8858) [002] .... 82316.178419: binder_transaction_received: transaction=1569849
59691          <idle>-0     (-----) [001] d.s2 82316.178469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
59692<...>-13083 ( 8858) [002] d.s2 82316.178486: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
59693          <idle>-0     (-----) [001] dns3 82316.178487: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
59694          <idle>-0     (-----) [001] dns2 82316.178490: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
59695          <idle>-0     (-----) [001] dns3 82316.178501: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
59696          <idle>-0     (-----) [001] .n.1 82316.178516: cpu_idle: state=4294967295 cpu_id=1
59697          <idle>-0     (-----) [001] d..2 82316.178529: 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
59698<...>-13083 ( 8858) [002] d.s3 82316.178538: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
59699     rcu_preempt-7     (    7) [001] d..2 82316.178538: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
59700     rcu_preempt-7     (    7) [001] d..3 82316.178579: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
59701     rcu_preempt-7     (    7) [001] d..2 82316.178596: 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
59702<...>-8 ( 8) [001] d..2 82316.178602: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
59703<...>-13083 ( 8858) [002] .... 82316.178612: binder_transaction: transaction=1569850 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
59704<...>-13083 ( 8858) [002] .... 82316.178617: binder_transaction_alloc_buf: transaction=1569850 data_size=52 offsets_size=8
59705<...>-8 ( 8) [001] d..3 82316.178634: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
59706<...>-8 ( 8) [001] d..2 82316.178646: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
59707<...>-13083 ( 8858) [002] d..2 82316.178668: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
59708    RenderThread-9436  ( 9105) [002] d.h5 82316.178696: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59709          <idle>-0     (-----) [005] dnh2 82316.178717: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59710          <idle>-0     (-----) [005] .n.1 82316.178720: cpu_idle: state=4294967295 cpu_id=5
59711          <idle>-0     (-----) [005] d..2 82316.178729: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59712    RenderThread-9436  ( 9105) [002] .... 82316.178755: binder_transaction_received: transaction=1569850
59713  kworker/u16:15-1311  ( 1311) [001] .... 82316.178772: clk_set_rate: l3_cluster0_vote_clk 300000000
59714<...>-5340 ( 788) [005] d..1 82316.178781: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59715          <idle>-0     (-----) [000] dnh2 82316.178804: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59716          <idle>-0     (-----) [000] .n.1 82316.178812: cpu_idle: state=4294967295 cpu_id=0
59717          <idle>-0     (-----) [000] d..2 82316.178828: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
59718<...>-5340 ( 788) [005] ...1 82316.178886: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
59719<...>-5340 ( 788) [005] ...1 82316.178890: tracing_mark_write: E|788
59720<...>-5340 ( 788) [005] .... 82316.178906: binder_transaction: transaction=1569851 dest_node=1569846 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
59721<...>-5340 ( 788) [005] .... 82316.178908: binder_transaction_alloc_buf: transaction=1569851 data_size=60 offsets_size=0
59722<...>-5340 ( 788) [005] d..4 82316.178912: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
59723 neuralnetworks@-13088 (  788) [000] d..2 82316.178922: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59724<...>-5340 ( 788) [005] d..5 82316.178925: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
59725          <idle>-0     (-----) [004] .n.1 82316.178931: cpu_idle: state=4294967295 cpu_id=4
59726          <idle>-0     (-----) [000] d..1 82316.178937: cpu_idle: state=0 cpu_id=0
59727          <idle>-0     (-----) [004] d..2 82316.178939: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
59728           <...>-27571 (-----) [004] .... 82316.178944: binder_transaction_received: transaction=1569851
59729<...>-5340 ( 788) [005] ...1 82316.178948: tracing_mark_write: E|788
59730<...>-5340 ( 788) [005] .... 82316.178954: binder_transaction: transaction=1569852 dest_node=0 dest_proc=27550 dest_thread=27629 reply=1 flags=0x0 code=0x0
59731<...>-5340 ( 788) [005] .... 82316.178956: binder_transaction_alloc_buf: transaction=1569852 data_size=8 offsets_size=0
59732<...>-5340 ( 788) [005] d..2 82316.178958: sched_waking: comm=id.nn.benchmark pid=27629 prio=110 target_cpu=005
59733           <...>-27571 (-----) [004] ...1 82316.178963: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
59734<...>-5340 ( 788) [005] d..3 82316.178965: sched_wakeup: comm=id.nn.benchmark pid=27629 prio=110 target_cpu=005
59735<...>-5340 ( 788) [005] .... 82316.178967: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
59736           <...>-27571 (-----) [004] ...1 82316.178969: tracing_mark_write: E|27550
59737           <...>-27571 (-----) [004] d..2 82316.178999: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59738          <idle>-0     (-----) [004] d..1 82316.179008: cpu_idle: state=0 cpu_id=4
59739<...>-5340 ( 788) [005] d..2 82316.179008: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27629 next_prio=110
59740           <...>-27629 (-----) [005] .... 82316.179018: binder_transaction_received: transaction=1569852
59741           <...>-27629 (-----) [005] ...1 82316.179055: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
59742           <...>-27629 (-----) [005] ...1 82316.179061: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
59743           <...>-27629 (-----) [005] ...1 82316.179087: tracing_mark_write: E|27550
59744  kworker/u16:15-1311  ( 1311) [001] d..2 82316.179091: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
59745           <...>-27629 (-----) [005] ...1 82316.179091: tracing_mark_write: E|27550
59746           <...>-27629 (-----) [005] ...1 82316.179095: tracing_mark_write: E|27550
59747         rcuop/2-29    (   29) [001] d.s4 82316.179131: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
59748         rcuop/2-29    (   29) [001] d.s5 82316.179148: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
59749         rcuop/2-29    (   29) [001] d.s5 82316.179154: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
59750         rcuop/2-29    (   29) [001] d..2 82316.179161: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
59751         rcuop/2-29    (   29) [001] d..3 82316.179177: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
59752         rcuop/2-29    (   29) [001] d..2 82316.179219: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
59753<...>-46 ( 46) [001] d..2 82316.179230: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
59754<...>-46 ( 46) [001] d..3 82316.179243: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
59755<...>-46 ( 46) [001] d..2 82316.179252: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
59756         rcuop/3-37    (   37) [001] d..2 82316.179272: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
59757           <...>-27629 (-----) [005] ...1 82316.179280: tracing_mark_write: E|27550
59758<...>-8 ( 8) [001] d..2 82316.179283: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
59759           <...>-27629 (-----) [005] d..1 82316.179292: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59760           <...>-27629 (-----) [005] d..2 82316.179308: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59761          <idle>-0     (-----) [004] .n.1 82316.179313: cpu_idle: state=4294967295 cpu_id=4
59762          <idle>-0     (-----) [004] d..2 82316.179319: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
59763           <...>-27550 (-----) [004] d..2 82316.179340: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59764          <idle>-0     (-----) [004] d..1 82316.179349: cpu_idle: state=0 cpu_id=4
59765  kworker/u16:15-1311  ( 1311) [001] d..2 82316.179367: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59766          <idle>-0     (-----) [001] d..1 82316.179384: cpu_idle: state=0 cpu_id=1
59767           <...>-27629 (-----) [005] d..1 82316.179416: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59768           <...>-27629 (-----) [005] d..2 82316.179425: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
59769          <idle>-0     (-----) [004] .n.1 82316.179430: cpu_idle: state=4294967295 cpu_id=4
59770          <idle>-0     (-----) [004] d..2 82316.179437: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
59771           <...>-27629 (-----) [005] d..2 82316.179466: sched_switch: prev_comm=id.nn.benchmark prev_pid=27629 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
59772           <...>-27550 (-----) [004] ...1 82316.179470: tracing_mark_write: E|27550
59773           <...>-27550 (-----) [004] ...1 82316.179474: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
59774           <...>-27550 (-----) [004] ...1 82316.179480: tracing_mark_write: E|27550
59775           <...>-27550 (-----) [004] ...1 82316.179484: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
59776          <idle>-0     (-----) [005] d..1 82316.179487: cpu_idle: state=0 cpu_id=5
59777           <...>-27550 (-----) [004] ...1 82316.179488: tracing_mark_write: E|27550
59778           <...>-27550 (-----) [004] ...1 82316.179492: tracing_mark_write: E|27550
59779           <...>-27550 (-----) [004] ...1 82316.179604: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
59780           <...>-27550 (-----) [004] ...1 82316.179662: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
59781           <...>-27550 (-----) [004] ...1 82316.179666: tracing_mark_write: E|27550
59782           <...>-27550 (-----) [004] ...1 82316.179670: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
59783           <...>-27550 (-----) [004] ...1 82316.179675: tracing_mark_write: E|27550
59784           <...>-27550 (-----) [004] ...1 82316.179679: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
59785           <...>-27550 (-----) [004] ...1 82316.179682: tracing_mark_write: E|27550
59786           <...>-27550 (-----) [004] ...1 82316.179686: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
59787          <idle>-0     (-----) [005] .n.1 82316.179777: cpu_idle: state=4294967295 cpu_id=5
59788           <...>-27550 (-----) [004] ...1 82316.179779: tracing_mark_write: E|27550
59789           <...>-27550 (-----) [004] ...1 82316.179783: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
59790          <idle>-0     (-----) [005] d..2 82316.179786: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27630 next_prio=110
59791           <...>-27550 (-----) [004] d..2 82316.179800: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59792          <idle>-0     (-----) [004] d..1 82316.179815: cpu_idle: state=0 cpu_id=4
59793    RenderThread-9436  ( 9105) [002] d..2 82316.179822: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
59794          <idle>-0     (-----) [002] d..1 82316.179840: cpu_idle: state=0 cpu_id=2
59795           <...>-27630 (-----) [005] ...1 82316.179849: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
59796           <...>-27630 (-----) [005] ...1 82316.179864: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
59797           <...>-27630 (-----) [005] ...1 82316.179868: tracing_mark_write: E|27550
59798           <...>-27630 (-----) [005] .... 82316.179891: binder_transaction: transaction=1569853 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
59799           <...>-27630 (-----) [005] .... 82316.179895: binder_transaction_alloc_buf: transaction=1569853 data_size=48 offsets_size=0
59800           <...>-27630 (-----) [005] ...2 82316.179898: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
59801          <idle>-0     (-----) [002] d.h2 82316.179900: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
59802           <...>-27630 (-----) [005] d..4 82316.179900: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
59803           <...>-27630 (-----) [005] dn.5 82316.179910: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
59804          <idle>-0     (-----) [002] d.h3 82316.179912: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
59805          <idle>-0     (-----) [002] dnh3 82316.179917: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
59806           <...>-27630 (-----) [005] d..2 82316.179917: sched_switch: prev_comm=id.nn.benchmark prev_pid=27630 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
59807          <idle>-0     (-----) [002] .n.1 82316.179926: cpu_idle: state=4294967295 cpu_id=2
59808<...>-770 ( 770) [005] .... 82316.179928: binder_transaction_received: transaction=1569853
59809          <idle>-0     (-----) [002] d..2 82316.179938: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
59810          <idle>-0     (-----) [000] d.h3 82316.179939: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
59811<...>-770 ( 770) [005] ...1 82316.179951: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
59812          <idle>-0     (-----) [000] d.h4 82316.179961: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
59813          <idle>-0     (-----) [003] .n.1 82316.179966: cpu_idle: state=4294967295 cpu_id=3
59814          <idle>-0     (-----) [003] d..2 82316.179978: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
59815          <idle>-0     (-----) [000] ...1 82316.179979: cpu_idle: state=4294967295 cpu_id=0
59816          <idle>-0     (-----) [000] d..1 82316.179984: cpu_idle: state=0 cpu_id=0
59817 kgsl_worker_thr-258   (  258) [003] d..2 82316.180031: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
59818<...>-770 ( 770) [005] d..2 82316.180033: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
59819 kgsl_worker_thr-258   (  258) [003] d..3 82316.180050: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
59820          <idle>-0     (-----) [001] .n.1 82316.180056: cpu_idle: state=4294967295 cpu_id=1
59821          <idle>-0     (-----) [001] d..2 82316.180069: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
59822 kgsl_worker_thr-258   (  258) [003] d..2 82316.180079: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59823          <idle>-0     (-----) [003] dnh3 82316.180092: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
59824<...>-770 ( 770) [005] ...1 82316.180092: tracing_mark_write: E|770
59825<...>-770 ( 770) [005] .... 82316.180101: binder_transaction: transaction=1569854 dest_node=0 dest_proc=27550 dest_thread=27630 reply=1 flags=0x0 code=0x0
59826          <idle>-0     (-----) [003] d..2 82316.180102: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
59827<...>-770 ( 770) [005] .... 82316.180103: binder_transaction_alloc_buf: transaction=1569854 data_size=168 offsets_size=32
59828<...>-770 ( 770) [005] .... 82316.180110: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
59829  kworker/u16:15-1311  ( 1311) [001] d..2 82316.180116: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
59830          <idle>-0     (-----) [001] d..1 82316.180126: cpu_idle: state=0 cpu_id=1
59831    RenderThread-9436  ( 9105) [002] .... 82316.180141: binder_transaction: transaction=1569855 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
59832<...>-770 ( 770) [005] d..2 82316.180147: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27630 next_prio=110
59833    RenderThread-9436  ( 9105) [002] .... 82316.180147: binder_transaction_alloc_buf: transaction=1569855 data_size=192 offsets_size=8
59834           <...>-27630 (-----) [005] .... 82316.180158: binder_transaction_received: transaction=1569854
59835    RenderThread-9436  ( 9105) [002] d..4 82316.180158: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
59836    RenderThread-9436  ( 9105) [002] dn.5 82316.180175: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
59837    RenderThread-9436  ( 9105) [002] d..2 82316.180185: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
59838<...>-13083 ( 8858) [002] .... 82316.180194: binder_transaction_received: transaction=1569855
59839<...>-581 ( 571) [003] d..2 82316.180203: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59840          <idle>-0     (-----) [003] d..1 82316.180218: cpu_idle: state=0 cpu_id=3
59841           <...>-27630 (-----) [005] ...1 82316.180234: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
59842           <...>-27630 (-----) [005] ...1 82316.180239: tracing_mark_write: E|27550
59843           <...>-27630 (-----) [005] .... 82316.180254: binder_transaction: transaction=1569856 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
59844           <...>-27630 (-----) [005] .... 82316.180257: binder_transaction_alloc_buf: transaction=1569856 data_size=48 offsets_size=0
59845           <...>-27630 (-----) [005] ...2 82316.180259: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
59846           <...>-27630 (-----) [005] d..4 82316.180261: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
59847           <...>-27630 (-----) [005] dn.5 82316.180272: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
59848           <...>-27630 (-----) [005] d..2 82316.180279: sched_switch: prev_comm=id.nn.benchmark prev_pid=27630 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
59849<...>-770 ( 770) [005] .... 82316.180287: binder_transaction_received: transaction=1569856
59850<...>-770 ( 770) [005] ...1 82316.180304: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
59851<...>-13083 ( 8858) [002] .... 82316.180350: binder_transaction: transaction=1569857 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
59852<...>-13083 ( 8858) [002] .... 82316.180355: binder_transaction_alloc_buf: transaction=1569857 data_size=68 offsets_size=0
59853<...>-770 ( 770) [005] d..2 82316.180360: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
59854          <idle>-0     (-----) [003] dnh2 82316.180385: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
59855          <idle>-0     (-----) [003] .n.1 82316.180391: cpu_idle: state=4294967295 cpu_id=3
59856<...>-770 ( 770) [005] ...1 82316.180395: tracing_mark_write: E|770
59857<...>-13083 ( 8858) [002] d..2 82316.180400: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
59858          <idle>-0     (-----) [003] d..2 82316.180402: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
59859<...>-770 ( 770) [005] .... 82316.180402: binder_transaction: transaction=1569858 dest_node=0 dest_proc=27550 dest_thread=27630 reply=1 flags=0x0 code=0x0
59860<...>-770 ( 770) [005] .... 82316.180405: binder_transaction_alloc_buf: transaction=1569858 data_size=168 offsets_size=32
59861    RenderThread-9436  ( 9105) [002] .... 82316.180410: binder_transaction_received: transaction=1569857
59862<...>-770 ( 770) [005] .... 82316.180410: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
59863<...>-770 ( 770) [005] d..2 82316.180445: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27630 next_prio=110
59864           <...>-27630 (-----) [005] .... 82316.180456: binder_transaction_received: transaction=1569858
59865<...>-581 ( 571) [003] d..2 82316.180462: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59866          <idle>-0     (-----) [003] d..1 82316.180474: cpu_idle: state=0 cpu_id=3
59867    RenderThread-9436  ( 9105) [002] d..2 82316.180509: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59868          <idle>-0     (-----) [002] d..1 82316.180528: cpu_idle: state=0 cpu_id=2
59869           <...>-27630 (-----) [005] ...1 82316.180746: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
59870           <...>-27630 (-----) [005] ...1 82316.180756: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
59871           <...>-27630 (-----) [005] ...1 82316.180760: tracing_mark_write: E|27550
59872           <...>-27630 (-----) [005] .... 82316.180824: binder_transaction: transaction=1569859 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
59873           <...>-27630 (-----) [005] .... 82316.180827: binder_transaction_alloc_buf: transaction=1569859 data_size=556 offsets_size=104
59874           <...>-27630 (-----) [005] ...2 82316.180842: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
59875           <...>-27630 (-----) [005] d..4 82316.180845: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59876           <...>-27630 (-----) [005] dn.5 82316.180856: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59877           <...>-27630 (-----) [005] d..2 82316.180863: sched_switch: prev_comm=id.nn.benchmark prev_pid=27630 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59878<...>-5340 ( 788) [005] .... 82316.180873: binder_transaction_received: transaction=1569859
59879<...>-5340 ( 788) [005] ...1 82316.180921: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
59880<...>-5340 ( 788) [005] d..2 82316.180971: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59881<...>-5340 ( 788) [005] d..2 82316.180995: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27630 next_prio=110
59882          <idle>-0     (-----) [000] dnh2 82316.180998: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59883          <idle>-0     (-----) [000] .n.1 82316.181004: cpu_idle: state=4294967295 cpu_id=0
59884          <idle>-0     (-----) [000] d..2 82316.181015: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
59885           <...>-27630 (-----) [005] d..2 82316.181017: sched_switch: prev_comm=id.nn.benchmark prev_pid=27630 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
59886          <idle>-0     (-----) [005] d..1 82316.181035: cpu_idle: state=0 cpu_id=5
59887<...>-87 ( 87) [000] d..2 82316.181061: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59888          <idle>-0     (-----) [002] d.h4 82316.181073: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59889          <idle>-0     (-----) [000] d..1 82316.181073: cpu_idle: state=0 cpu_id=0
59890          <idle>-0     (-----) [002] dnh5 82316.181093: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59891          <idle>-0     (-----) [002] .n.1 82316.181105: cpu_idle: state=4294967295 cpu_id=2
59892          <idle>-0     (-----) [002] d..2 82316.181117: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
59893<...>-86 ( 86) [002] d.h4 82316.181152: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59894          <idle>-0     (-----) [005] dnh2 82316.181175: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59895          <idle>-0     (-----) [005] .n.1 82316.181179: cpu_idle: state=4294967295 cpu_id=5
59896          <idle>-0     (-----) [005] d..2 82316.181187: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59897<...>-86 ( 86) [002] d..2 82316.181213: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59898          <idle>-0     (-----) [002] d..1 82316.181228: cpu_idle: state=0 cpu_id=2
59899<...>-5340 ( 788) [005] d..1 82316.181241: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59900          <idle>-0     (-----) [000] dnh2 82316.181267: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59901          <idle>-0     (-----) [000] .n.1 82316.181274: cpu_idle: state=4294967295 cpu_id=0
59902          <idle>-0     (-----) [000] d..2 82316.181284: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
59903 neuralnetworks@-13088 (  788) [000] d..2 82316.181324: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59904          <idle>-0     (-----) [000] d..1 82316.181337: cpu_idle: state=0 cpu_id=0
59905          <idle>-0     (-----) [003] d.h2 82316.181383: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
59906<...>-5340 ( 788) [005] d..2 82316.181390: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59907          <idle>-0     (-----) [003] dnh3 82316.181398: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
59908          <idle>-0     (-----) [003] .n.1 82316.181407: cpu_idle: state=4294967295 cpu_id=3
59909          <idle>-0     (-----) [000] dnh2 82316.181411: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
59910<...>-5340 ( 788) [005] d..2 82316.181416: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
59911          <idle>-0     (-----) [003] d..2 82316.181418: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
59912          <idle>-0     (-----) [000] .n.1 82316.181418: cpu_idle: state=4294967295 cpu_id=0
59913          <idle>-0     (-----) [000] d..2 82316.181428: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
59914          <idle>-0     (-----) [005] d..1 82316.181431: cpu_idle: state=0 cpu_id=5
59915        DispSync-8879  ( 8858) [003] d..1 82316.181437: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
59916        DispSync-8879  ( 8858) [003] d..2 82316.181454: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
59917<...>-87 ( 87) [000] d..2 82316.181466: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59918          <idle>-0     (-----) [002] dnh4 82316.181469: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
59919          <idle>-0     (-----) [000] d..1 82316.181478: cpu_idle: state=0 cpu_id=0
59920        DispSync-8879  ( 8858) [003] d..2 82316.181489: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59921          <idle>-0     (-----) [003] d..1 82316.181503: cpu_idle: state=0 cpu_id=3
59922          <idle>-0     (-----) [002] dnh5 82316.181506: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
59923          <idle>-0     (-----) [000] .n.1 82316.181512: cpu_idle: state=4294967295 cpu_id=0
59924          <idle>-0     (-----) [002] .n.1 82316.181519: cpu_idle: state=4294967295 cpu_id=2
59925          <idle>-0     (-----) [000] d..2 82316.181523: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
59926          <idle>-0     (-----) [002] d..2 82316.181532: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
59927<...>-86 ( 86) [000] d..2 82316.181560: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59928          <idle>-0     (-----) [000] d..1 82316.181572: cpu_idle: state=0 cpu_id=0
59929   sfEventThread-8882  ( 8858) [002] d..3 82316.181574: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
59930   sfEventThread-8882  ( 8858) [002] d..4 82316.181597: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
59931          <idle>-0     (-----) [003] .n.1 82316.181602: cpu_idle: state=4294967295 cpu_id=3
59932          <idle>-0     (-----) [003] d..2 82316.181613: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
59933   sfEventThread-8882  ( 8858) [002] d..2 82316.181633: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59934          <idle>-0     (-----) [002] d..1 82316.181650: cpu_idle: state=0 cpu_id=2
59935          <idle>-0     (-----) [005] ...1 82316.181761: cpu_idle: state=4294967295 cpu_id=5
59936          <idle>-0     (-----) [005] d..1 82316.181764: cpu_idle: state=0 cpu_id=5
59937  surfaceflinger-8858  ( 8858) [003] d..1 82316.182006: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
59938  surfaceflinger-8858  ( 8858) [003] d..2 82316.182026: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
59939          <idle>-0     (-----) [002] .n.1 82316.182033: cpu_idle: state=4294967295 cpu_id=2
59940          <idle>-0     (-----) [002] d..2 82316.182045: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
59941   sfEventThread-8882  ( 8858) [002] d..2 82316.182087: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
59942          <idle>-0     (-----) [002] d..1 82316.182099: cpu_idle: state=0 cpu_id=2
59943  surfaceflinger-8858  ( 8858) [003] ...1 82316.182224: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
59944  surfaceflinger-8858  ( 8858) [003] ...1 82316.182231: tracing_mark_write: E|8858
59945  surfaceflinger-8858  ( 8858) [003] .... 82316.182281: binder_transaction: transaction=1569862 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
59946  surfaceflinger-8858  ( 8858) [003] .... 82316.182286: binder_transaction_alloc_buf: transaction=1569862 data_size=540 offsets_size=96
59947  surfaceflinger-8858  ( 8858) [003] ...2 82316.182313: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
59948  surfaceflinger-8858  ( 8858) [003] d..4 82316.182322: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
59949  surfaceflinger-8858  ( 8858) [003] d..5 82316.182342: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
59950          <idle>-0     (-----) [001] .n.1 82316.182347: cpu_idle: state=4294967295 cpu_id=1
59951          <idle>-0     (-----) [001] d..2 82316.182358: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
59952 [email protected]   (  619) [001] .... 82316.182369: binder_transaction_received: transaction=1569862
59953  surfaceflinger-8858  ( 8858) [003] d..2 82316.182375: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
59954          <idle>-0     (-----) [003] d..1 82316.182394: cpu_idle: state=0 cpu_id=3
59955 [email protected]   (  619) [001] ...1 82316.182413: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
59956 [email protected]   (  619) [001] ...1 82316.182527: tracing_mark_write: B|619|HWCSession::PresentDisplay::
59957 [email protected]   (  619) [001] ...1 82316.182703: tracing_mark_write: B|619|HWDeviceDRM::Commit::
59958 [email protected]   (  619) [001] ...1 82316.182716: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
59959          <idle>-0     (-----) [000] ...1 82316.183038: cpu_idle: state=4294967295 cpu_id=0
59960          <idle>-0     (-----) [000] d..1 82316.183043: cpu_idle: state=0 cpu_id=0
59961          <idle>-0     (-----) [002] d.h4 82316.183123: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59962          <idle>-0     (-----) [005] dnh2 82316.183144: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
59963          <idle>-0     (-----) [005] .n.1 82316.183148: cpu_idle: state=4294967295 cpu_id=5
59964          <idle>-0     (-----) [005] d..2 82316.183156: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
59965          <idle>-0     (-----) [002] ...1 82316.183166: cpu_idle: state=4294967295 cpu_id=2
59966          <idle>-0     (-----) [002] d..1 82316.183171: cpu_idle: state=0 cpu_id=2
59967<...>-5340 ( 788) [005] d..1 82316.183208: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59968          <idle>-0     (-----) [000] dnh2 82316.183229: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
59969          <idle>-0     (-----) [000] .n.1 82316.183239: cpu_idle: state=4294967295 cpu_id=0
59970          <idle>-0     (-----) [000] d..2 82316.183249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
59971<...>-5340 ( 788) [005] ...1 82316.183300: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
59972<...>-5340 ( 788) [005] ...1 82316.183304: tracing_mark_write: E|788
59973 neuralnetworks@-13088 (  788) [000] d..2 82316.183309: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
59974<...>-5340 ( 788) [005] .... 82316.183321: binder_transaction: transaction=1569863 dest_node=1569860 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
59975          <idle>-0     (-----) [000] d..1 82316.183322: cpu_idle: state=0 cpu_id=0
59976<...>-5340 ( 788) [005] .... 82316.183324: binder_transaction_alloc_buf: transaction=1569863 data_size=60 offsets_size=0
59977<...>-5340 ( 788) [005] d..4 82316.183327: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
59978<...>-5340 ( 788) [005] d..5 82316.183340: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
59979          <idle>-0     (-----) [004] .n.1 82316.183346: cpu_idle: state=4294967295 cpu_id=4
59980          <idle>-0     (-----) [004] d..2 82316.183354: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
59981           <...>-27571 (-----) [004] .... 82316.183359: binder_transaction_received: transaction=1569863
59982 [email protected]   (  619) [001] d..2 82316.183362: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
59983<...>-5340 ( 788) [005] ...1 82316.183363: tracing_mark_write: E|788
59984<...>-5340 ( 788) [005] .... 82316.183369: binder_transaction: transaction=1569864 dest_node=0 dest_proc=27550 dest_thread=27630 reply=1 flags=0x0 code=0x0
59985<...>-5340 ( 788) [005] .... 82316.183371: binder_transaction_alloc_buf: transaction=1569864 data_size=8 offsets_size=0
59986<...>-5340 ( 788) [005] d..2 82316.183373: sched_waking: comm=id.nn.benchmark pid=27630 prio=110 target_cpu=005
59987           <...>-27571 (-----) [004] ...1 82316.183377: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
59988<...>-5340 ( 788) [005] d..3 82316.183380: sched_wakeup: comm=id.nn.benchmark pid=27630 prio=110 target_cpu=005
59989<...>-5340 ( 788) [005] .... 82316.183382: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
59990           <...>-27571 (-----) [004] ...1 82316.183383: tracing_mark_write: E|27550
59991 [email protected]   (  619) [001] d..3 82316.183386: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
59992          <idle>-0     (-----) [000] .n.1 82316.183393: cpu_idle: state=4294967295 cpu_id=0
59993          <idle>-0     (-----) [000] d..2 82316.183403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
59994           <...>-27571 (-----) [004] d..2 82316.183412: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
59995          <idle>-0     (-----) [004] d..1 82316.183419: cpu_idle: state=0 cpu_id=4
59996<...>-5340 ( 788) [005] d..2 82316.183424: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27630 next_prio=110
59997           <...>-27630 (-----) [005] .... 82316.183434: binder_transaction_received: transaction=1569864
59998           <...>-27630 (-----) [005] ...1 82316.183471: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
59999           <...>-27630 (-----) [005] ...1 82316.183477: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
60000 [email protected]   (  619) [001] ...1 82316.183492: tracing_mark_write: E|619
60001 [email protected]   (  619) [001] ...1 82316.183500: tracing_mark_write: E|619
60002           <...>-27630 (-----) [005] ...1 82316.183504: tracing_mark_write: E|27550
60003           <...>-27630 (-----) [005] ...1 82316.183507: tracing_mark_write: E|27550
60004           <...>-27630 (-----) [005] ...1 82316.183511: tracing_mark_write: E|27550
60005 [email protected]   (  619) [001] ...1 82316.183566: tracing_mark_write: E|619
60006 [email protected]   (  619) [001] ...1 82316.183641: tracing_mark_write: E|619
60007 [email protected]   (  619) [001] .... 82316.183657: binder_transaction: transaction=1569865 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
60008 [email protected]   (  619) [001] .... 82316.183661: binder_transaction_alloc_buf: transaction=1569865 data_size=576 offsets_size=112
60009 [email protected]   (  619) [001] d..2 82316.183683: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
60010           <...>-27630 (-----) [005] ...1 82316.183700: tracing_mark_write: E|27550
60011 [email protected]   (  619) [001] d..3 82316.183701: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
60012 [email protected]   (  619) [001] .... 82316.183706: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
60013          <idle>-0     (-----) [003] .n.1 82316.183709: cpu_idle: state=4294967295 cpu_id=3
60014           <...>-27630 (-----) [005] d..1 82316.183713: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60015          <idle>-0     (-----) [003] d..2 82316.183720: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
60016  surfaceflinger-8858  ( 8858) [003] .... 82316.183728: binder_transaction_received: transaction=1569865
60017           <...>-27630 (-----) [005] d..2 82316.183728: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60018          <idle>-0     (-----) [004] .n.1 82316.183734: cpu_idle: state=4294967295 cpu_id=4
60019          <idle>-0     (-----) [004] d..2 82316.183740: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
60020           <...>-27550 (-----) [004] d..2 82316.183760: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60021          <idle>-0     (-----) [004] d..1 82316.183769: cpu_idle: state=0 cpu_id=4
60022 [email protected]   (  619) [001] d..2 82316.183792: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60023          <idle>-0     (-----) [001] d..1 82316.183806: cpu_idle: state=0 cpu_id=1
60024           <...>-27630 (-----) [005] d..1 82316.183820: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60025           <...>-27630 (-----) [005] d..2 82316.183830: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60026          <idle>-0     (-----) [004] .n.1 82316.183835: cpu_idle: state=4294967295 cpu_id=4
60027          <idle>-0     (-----) [004] d..2 82316.183843: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
60028           <...>-27630 (-----) [005] d..2 82316.183870: sched_switch: prev_comm=id.nn.benchmark prev_pid=27630 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
60029           <...>-27550 (-----) [004] ...1 82316.183876: tracing_mark_write: E|27550
60030           <...>-27550 (-----) [004] ...1 82316.183881: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
60031           <...>-27550 (-----) [004] ...1 82316.183887: tracing_mark_write: E|27550
60032          <idle>-0     (-----) [005] d..1 82316.183891: cpu_idle: state=0 cpu_id=5
60033           <...>-27550 (-----) [004] ...1 82316.183891: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
60034           <...>-27550 (-----) [004] ...1 82316.183896: tracing_mark_write: E|27550
60035           <...>-27550 (-----) [004] ...1 82316.183900: tracing_mark_write: E|27550
60036           <...>-27550 (-----) [004] ...1 82316.184012: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
60037           <...>-27550 (-----) [004] ...1 82316.184069: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
60038           <...>-27550 (-----) [004] ...1 82316.184074: tracing_mark_write: E|27550
60039           <...>-27550 (-----) [004] ...1 82316.184078: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
60040           <...>-27550 (-----) [004] ...1 82316.184083: tracing_mark_write: E|27550
60041           <...>-27550 (-----) [004] ...1 82316.184087: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
60042           <...>-27550 (-----) [004] ...1 82316.184091: tracing_mark_write: E|27550
60043           <...>-27550 (-----) [004] ...1 82316.184094: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
60044 crtc_commit:111-321   (  321) [000] d..2 82316.184144: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
60045  surfaceflinger-8858  ( 8858) [003] d..2 82316.184150: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60046          <idle>-0     (-----) [000] d..1 82316.184161: cpu_idle: state=0 cpu_id=0
60047          <idle>-0     (-----) [003] d..1 82316.184168: cpu_idle: state=0 cpu_id=3
60048          <idle>-0     (-----) [005] .n.1 82316.184186: cpu_idle: state=4294967295 cpu_id=5
60049           <...>-27550 (-----) [004] ...1 82316.184187: tracing_mark_write: E|27550
60050           <...>-27550 (-----) [004] ...1 82316.184192: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
60051          <idle>-0     (-----) [005] d..2 82316.184195: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27631 next_prio=110
60052           <...>-27550 (-----) [004] d..2 82316.184208: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60053          <idle>-0     (-----) [004] d..1 82316.184223: cpu_idle: state=0 cpu_id=4
60054           <...>-27631 (-----) [005] ...1 82316.184257: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
60055           <...>-27631 (-----) [005] ...1 82316.184273: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
60056           <...>-27631 (-----) [005] ...1 82316.184277: tracing_mark_write: E|27550
60057           <...>-27631 (-----) [005] .... 82316.184299: binder_transaction: transaction=1569866 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
60058           <...>-27631 (-----) [005] .... 82316.184303: binder_transaction_alloc_buf: transaction=1569866 data_size=48 offsets_size=0
60059           <...>-27631 (-----) [005] ...2 82316.184306: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
60060           <...>-27631 (-----) [005] d..4 82316.184309: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
60061           <...>-27631 (-----) [005] dn.5 82316.184319: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
60062           <...>-27631 (-----) [005] d..2 82316.184326: sched_switch: prev_comm=id.nn.benchmark prev_pid=27631 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
60063<...>-770 ( 770) [005] .... 82316.184336: binder_transaction_received: transaction=1569866
60064<...>-770 ( 770) [005] ...1 82316.184361: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
60065<...>-770 ( 770) [005] d..2 82316.184444: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
60066          <idle>-0     (-----) [000] dnh2 82316.184483: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
60067          <idle>-0     (-----) [000] .n.1 82316.184491: cpu_idle: state=4294967295 cpu_id=0
60068<...>-770 ( 770) [005] ...1 82316.184496: tracing_mark_write: E|770
60069          <idle>-0     (-----) [000] d..2 82316.184502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
60070<...>-770 ( 770) [005] .... 82316.184504: binder_transaction: transaction=1569867 dest_node=0 dest_proc=27550 dest_thread=27631 reply=1 flags=0x0 code=0x0
60071<...>-770 ( 770) [005] .... 82316.184507: binder_transaction_alloc_buf: transaction=1569867 data_size=168 offsets_size=32
60072<...>-770 ( 770) [005] .... 82316.184514: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
60073<...>-770 ( 770) [005] d..2 82316.184550: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27631 next_prio=110
60074           <...>-27631 (-----) [005] .... 82316.184561: binder_transaction_received: transaction=1569867
60075<...>-581 ( 571) [000] d..2 82316.184595: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60076          <idle>-0     (-----) [000] d..1 82316.184612: cpu_idle: state=0 cpu_id=0
60077           <...>-27631 (-----) [005] ...1 82316.184633: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
60078           <...>-27631 (-----) [005] ...1 82316.184639: tracing_mark_write: E|27550
60079           <...>-27631 (-----) [005] .... 82316.184653: binder_transaction: transaction=1569868 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
60080           <...>-27631 (-----) [005] .... 82316.184656: binder_transaction_alloc_buf: transaction=1569868 data_size=48 offsets_size=0
60081           <...>-27631 (-----) [005] ...2 82316.184658: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
60082           <...>-27631 (-----) [005] d..4 82316.184660: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
60083           <...>-27631 (-----) [005] dn.5 82316.184671: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
60084           <...>-27631 (-----) [005] d..2 82316.184677: sched_switch: prev_comm=id.nn.benchmark prev_pid=27631 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
60085<...>-770 ( 770) [005] .... 82316.184686: binder_transaction_received: transaction=1569868
60086<...>-770 ( 770) [005] ...1 82316.184703: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
60087<...>-770 ( 770) [005] d..2 82316.184761: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
60088          <idle>-0     (-----) [000] dnh2 82316.184785: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
60089<...>-770 ( 770) [005] ...1 82316.184794: tracing_mark_write: E|770
60090          <idle>-0     (-----) [000] .n.1 82316.184794: cpu_idle: state=4294967295 cpu_id=0
60091<...>-770 ( 770) [005] .... 82316.184801: binder_transaction: transaction=1569869 dest_node=0 dest_proc=27550 dest_thread=27631 reply=1 flags=0x0 code=0x0
60092<...>-770 ( 770) [005] .... 82316.184804: binder_transaction_alloc_buf: transaction=1569869 data_size=168 offsets_size=32
60093          <idle>-0     (-----) [000] d..2 82316.184805: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
60094<...>-770 ( 770) [005] .... 82316.184810: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
60095<...>-770 ( 770) [005] d..2 82316.184844: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27631 next_prio=110
60096           <...>-27631 (-----) [005] .... 82316.184854: binder_transaction_received: transaction=1569869
60097<...>-581 ( 571) [000] d..2 82316.184868: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60098          <idle>-0     (-----) [000] d..1 82316.184883: cpu_idle: state=0 cpu_id=0
60099          <idle>-0     (-----) [001] d.s2 82316.185139: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
60100           <...>-27631 (-----) [005] d.s2 82316.185141: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
60101          <idle>-0     (-----) [001] dns3 82316.185159: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
60102          <idle>-0     (-----) [001] dns2 82316.185166: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
60103          <idle>-0     (-----) [000] dnh2 82316.185183: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
60104          <idle>-0     (-----) [000] .n.1 82316.185190: cpu_idle: state=4294967295 cpu_id=0
60105          <idle>-0     (-----) [001] dns3 82316.185203: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
60106           <...>-27631 (-----) [005] ...1 82316.185209: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
60107          <idle>-0     (-----) [000] d..2 82316.185212: 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
60108           <...>-27631 (-----) [005] ...1 82316.185219: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
60109           <...>-27631 (-----) [005] ...1 82316.185223: tracing_mark_write: E|27550
60110          <idle>-0     (-----) [001] .n.1 82316.185226: cpu_idle: state=4294967295 cpu_id=1
60111          <idle>-0     (-----) [001] d..2 82316.185236: 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
60112     rcu_preempt-7     (    7) [000] d..2 82316.185238: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
60113<...>-8 ( 8) [001] d..2 82316.185272: 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
60114           <...>-27631 (-----) [005] .... 82316.185285: binder_transaction: transaction=1569870 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
60115          <idle>-0     (-----) [001] d..1 82316.185286: cpu_idle: state=0 cpu_id=1
60116           <...>-27631 (-----) [005] .... 82316.185288: binder_transaction_alloc_buf: transaction=1569870 data_size=556 offsets_size=104
60117           <...>-27631 (-----) [005] ...2 82316.185303: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
60118           <...>-27631 (-----) [005] d..4 82316.185306: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60119           <...>-27631 (-----) [005] dn.5 82316.185315: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60120           <...>-27631 (-----) [005] d..2 82316.185322: sched_switch: prev_comm=id.nn.benchmark prev_pid=27631 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60121<...>-5340 ( 788) [005] .... 82316.185332: binder_transaction_received: transaction=1569870
60122<...>-5340 ( 788) [005] ...1 82316.185378: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
60123<...>-5340 ( 788) [005] d..2 82316.185424: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
60124  kworker/u16:15-1311  ( 1311) [000] d..2 82316.185430: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
60125          <idle>-0     (-----) [000] d..1 82316.185445: cpu_idle: state=0 cpu_id=0
60126<...>-5340 ( 788) [005] d..2 82316.185455: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27631 next_prio=110
60127          <idle>-0     (-----) [001] d.s3 82316.185457: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
60128          <idle>-0     (-----) [000] dnh2 82316.185461: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
60129          <idle>-0     (-----) [000] .n.1 82316.185471: cpu_idle: state=4294967295 cpu_id=0
60130           <...>-27631 (-----) [005] d..2 82316.185478: sched_switch: prev_comm=id.nn.benchmark prev_pid=27631 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
60131          <idle>-0     (-----) [001] d.s4 82316.185483: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
60132          <idle>-0     (-----) [000] d..2 82316.185485: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
60133          <idle>-0     (-----) [001] dns4 82316.185488: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
60134          <idle>-0     (-----) [001] .n.1 82316.185496: cpu_idle: state=4294967295 cpu_id=1
60135          <idle>-0     (-----) [005] d..1 82316.185496: cpu_idle: state=0 cpu_id=5
60136          <idle>-0     (-----) [001] d..2 82316.185508: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
60137<...>-87 ( 87) [000] d..2 82316.185527: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60138          <idle>-0     (-----) [002] d.h4 82316.185536: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
60139          <idle>-0     (-----) [000] d..1 82316.185539: cpu_idle: state=0 cpu_id=0
60140          <idle>-0     (-----) [002] dnh5 82316.185570: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60141          <idle>-0     (-----) [002] .n.1 82316.185579: cpu_idle: state=4294967295 cpu_id=2
60142  kworker/u16:15-1311  ( 1311) [001] d..2 82316.185591: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60143          <idle>-0     (-----) [002] d..2 82316.185593: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
60144          <idle>-0     (-----) [001] d..1 82316.185605: cpu_idle: state=0 cpu_id=1
60145<...>-86 ( 86) [002] d.h4 82316.185621: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60146          <idle>-0     (-----) [005] dnh2 82316.185643: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60147          <idle>-0     (-----) [005] .n.1 82316.185647: cpu_idle: state=4294967295 cpu_id=5
60148          <idle>-0     (-----) [005] d..2 82316.185655: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60149<...>-86 ( 86) [002] d..2 82316.185684: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60150          <idle>-0     (-----) [002] d..1 82316.185699: cpu_idle: state=0 cpu_id=2
60151<...>-5340 ( 788) [005] d..1 82316.185710: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
60152          <idle>-0     (-----) [000] dnh2 82316.185735: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
60153          <idle>-0     (-----) [000] .n.1 82316.185741: cpu_idle: state=4294967295 cpu_id=0
60154          <idle>-0     (-----) [000] d..2 82316.185751: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
60155 neuralnetworks@-13088 (  788) [000] d..2 82316.185799: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60156          <idle>-0     (-----) [000] d..1 82316.185811: cpu_idle: state=0 cpu_id=0
60157<...>-5340 ( 788) [005] d..2 82316.185856: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
60158          <idle>-0     (-----) [000] dnh2 82316.185878: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
60159<...>-5340 ( 788) [005] d..2 82316.185881: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
60160          <idle>-0     (-----) [000] .n.1 82316.185884: cpu_idle: state=4294967295 cpu_id=0
60161          <idle>-0     (-----) [000] d..2 82316.185895: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
60162          <idle>-0     (-----) [005] d..1 82316.185897: cpu_idle: state=0 cpu_id=5
60163<...>-87 ( 87) [000] d..2 82316.185932: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60164          <idle>-0     (-----) [002] d.h4 82316.185934: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60165          <idle>-0     (-----) [000] d..1 82316.185943: cpu_idle: state=0 cpu_id=0
60166          <idle>-0     (-----) [002] dnh5 82316.185944: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60167          <idle>-0     (-----) [002] .n.1 82316.185954: cpu_idle: state=4294967295 cpu_id=2
60168          <idle>-0     (-----) [002] d..2 82316.185965: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
60169<...>-86 ( 86) [002] d..2 82316.185997: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60170          <idle>-0     (-----) [002] d..1 82316.186010: cpu_idle: state=0 cpu_id=2
60171          <idle>-0     (-----) [005] ...1 82316.186218: cpu_idle: state=4294967295 cpu_id=5
60172          <idle>-0     (-----) [005] d..1 82316.186221: cpu_idle: state=0 cpu_id=5
60173          <idle>-0     (-----) [002] ...1 82316.187478: cpu_idle: state=4294967295 cpu_id=2
60174          <idle>-0     (-----) [002] d..1 82316.187483: cpu_idle: state=0 cpu_id=2
60175          <idle>-0     (-----) [002] d.h4 82316.187639: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60176          <idle>-0     (-----) [005] dnh2 82316.187660: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60177          <idle>-0     (-----) [005] .n.1 82316.187663: cpu_idle: state=4294967295 cpu_id=5
60178          <idle>-0     (-----) [005] d..2 82316.187671: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60179          <idle>-0     (-----) [002] ...1 82316.187677: cpu_idle: state=4294967295 cpu_id=2
60180          <idle>-0     (-----) [002] d..1 82316.187683: cpu_idle: state=0 cpu_id=2
60181<...>-5340 ( 788) [005] d..1 82316.187729: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
60182          <idle>-0     (-----) [000] dnh2 82316.187750: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
60183          <idle>-0     (-----) [000] .n.1 82316.187759: cpu_idle: state=4294967295 cpu_id=0
60184          <idle>-0     (-----) [000] d..2 82316.187769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
60185<...>-5340 ( 788) [005] ...1 82316.187819: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
60186<...>-5340 ( 788) [005] ...1 82316.187823: tracing_mark_write: E|788
60187 neuralnetworks@-13088 (  788) [000] d..2 82316.187830: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60188<...>-5340 ( 788) [005] .... 82316.187839: binder_transaction: transaction=1569873 dest_node=1569871 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
60189          <idle>-0     (-----) [000] d..1 82316.187841: cpu_idle: state=0 cpu_id=0
60190<...>-5340 ( 788) [005] .... 82316.187841: binder_transaction_alloc_buf: transaction=1569873 data_size=60 offsets_size=0
60191<...>-5340 ( 788) [005] d..4 82316.187845: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
60192<...>-5340 ( 788) [005] d..5 82316.187857: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
60193          <idle>-0     (-----) [004] .n.1 82316.187863: cpu_idle: state=4294967295 cpu_id=4
60194          <idle>-0     (-----) [004] d..2 82316.187872: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
60195           <...>-27571 (-----) [004] .... 82316.187877: binder_transaction_received: transaction=1569873
60196<...>-5340 ( 788) [005] ...1 82316.187880: tracing_mark_write: E|788
60197<...>-5340 ( 788) [005] .... 82316.187886: binder_transaction: transaction=1569874 dest_node=0 dest_proc=27550 dest_thread=27631 reply=1 flags=0x0 code=0x0
60198<...>-5340 ( 788) [005] .... 82316.187888: binder_transaction_alloc_buf: transaction=1569874 data_size=8 offsets_size=0
60199<...>-5340 ( 788) [005] d..2 82316.187890: sched_waking: comm=id.nn.benchmark pid=27631 prio=110 target_cpu=005
60200           <...>-27571 (-----) [004] ...1 82316.187894: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
60201<...>-5340 ( 788) [005] d..3 82316.187897: sched_wakeup: comm=id.nn.benchmark pid=27631 prio=110 target_cpu=005
60202<...>-5340 ( 788) [005] .... 82316.187899: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
60203           <...>-27571 (-----) [004] ...1 82316.187900: tracing_mark_write: E|27550
60204           <...>-27571 (-----) [004] d..2 82316.187928: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60205          <idle>-0     (-----) [004] d..1 82316.187935: cpu_idle: state=0 cpu_id=4
60206<...>-5340 ( 788) [005] d..2 82316.187941: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27631 next_prio=110
60207           <...>-27631 (-----) [005] .... 82316.187951: binder_transaction_received: transaction=1569874
60208           <...>-27631 (-----) [005] ...1 82316.187985: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
60209           <...>-27631 (-----) [005] ...1 82316.187992: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
60210           <...>-27631 (-----) [005] ...1 82316.188019: tracing_mark_write: E|27550
60211           <...>-27631 (-----) [005] ...1 82316.188022: tracing_mark_write: E|27550
60212           <...>-27631 (-----) [005] ...1 82316.188026: tracing_mark_write: E|27550
60213           <...>-27631 (-----) [005] ...1 82316.188216: tracing_mark_write: E|27550
60214           <...>-27631 (-----) [005] d..1 82316.188228: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60215           <...>-27631 (-----) [005] d..2 82316.188245: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60216          <idle>-0     (-----) [004] .n.1 82316.188250: cpu_idle: state=4294967295 cpu_id=4
60217          <idle>-0     (-----) [004] d..2 82316.188257: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
60218           <...>-27550 (-----) [004] d..2 82316.188276: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60219          <idle>-0     (-----) [004] d..1 82316.188285: cpu_idle: state=0 cpu_id=4
60220           <...>-27631 (-----) [005] d..1 82316.188333: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60221           <...>-27631 (-----) [005] d..2 82316.188342: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60222          <idle>-0     (-----) [004] .n.1 82316.188347: cpu_idle: state=4294967295 cpu_id=4
60223          <idle>-0     (-----) [004] d..2 82316.188355: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
60224           <...>-27631 (-----) [005] d..2 82316.188380: sched_switch: prev_comm=id.nn.benchmark prev_pid=27631 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
60225           <...>-27550 (-----) [004] ...1 82316.188388: tracing_mark_write: E|27550
60226           <...>-27550 (-----) [004] ...1 82316.188393: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
60227           <...>-27550 (-----) [004] ...1 82316.188399: tracing_mark_write: E|27550
60228          <idle>-0     (-----) [005] d..1 82316.188401: cpu_idle: state=0 cpu_id=5
60229           <...>-27550 (-----) [004] ...1 82316.188402: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
60230           <...>-27550 (-----) [004] ...1 82316.188407: tracing_mark_write: E|27550
60231           <...>-27550 (-----) [004] ...1 82316.188411: tracing_mark_write: E|27550
60232           <...>-27550 (-----) [004] d.s2 82316.188468: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
60233          <idle>-0     (-----) [000] dnh2 82316.188504: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
60234          <idle>-0     (-----) [000] .n.1 82316.188510: cpu_idle: state=4294967295 cpu_id=0
60235          <idle>-0     (-----) [000] d..2 82316.188522: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
60236           <...>-27550 (-----) [004] ...1 82316.188604: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
60237           <...>-27550 (-----) [004] ...1 82316.188677: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
60238           <...>-27550 (-----) [004] ...1 82316.188682: tracing_mark_write: E|27550
60239           <...>-27550 (-----) [004] ...1 82316.188686: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
60240           <...>-27550 (-----) [004] ...1 82316.188691: tracing_mark_write: E|27550
60241           <...>-27550 (-----) [004] ...1 82316.188694: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
60242  kworker/u16:15-1311  ( 1311) [000] d..2 82316.188695: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60243           <...>-27550 (-----) [004] ...1 82316.188698: tracing_mark_write: E|27550
60244           <...>-27550 (-----) [004] ...1 82316.188702: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
60245          <idle>-0     (-----) [000] d..1 82316.188705: cpu_idle: state=0 cpu_id=0
60246           <...>-27550 (-----) [004] d..2 82316.188760: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=006
60247          <idle>-0     (-----) [000] dnh2 82316.188840: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=000
60248          <idle>-0     (-----) [000] .n.1 82316.188846: cpu_idle: state=4294967295 cpu_id=0
60249          <idle>-0     (-----) [000] d..2 82316.188855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kswapd0 next_pid=142 next_prio=120
60250          <idle>-0     (-----) [005] .n.1 82316.188867: cpu_idle: state=4294967295 cpu_id=5
60251           <...>-27550 (-----) [004] ...1 82316.188869: tracing_mark_write: E|27550
60252           <...>-27550 (-----) [004] ...1 82316.188874: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
60253          <idle>-0     (-----) [005] d..2 82316.188877: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27632 next_prio=110
60254           <...>-27550 (-----) [004] d..2 82316.188891: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60255          <idle>-0     (-----) [004] d..1 82316.188908: cpu_idle: state=0 cpu_id=4
60256           <...>-27632 (-----) [005] ...1 82316.188943: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
60257           <...>-27632 (-----) [005] ...1 82316.188963: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
60258           <...>-27632 (-----) [005] ...1 82316.188968: tracing_mark_write: E|27550
60259           <...>-27632 (-----) [005] .... 82316.188990: binder_transaction: transaction=1569875 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
60260           <...>-27632 (-----) [005] .... 82316.188993: binder_transaction_alloc_buf: transaction=1569875 data_size=48 offsets_size=0
60261           <...>-27632 (-----) [005] ...2 82316.188996: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
60262           <...>-27632 (-----) [005] d..4 82316.188999: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
60263           <...>-27632 (-----) [005] dn.5 82316.189009: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
60264           <...>-27632 (-----) [005] d..2 82316.189017: sched_switch: prev_comm=id.nn.benchmark prev_pid=27632 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
60265<...>-770 ( 770) [005] .... 82316.189032: binder_transaction_received: transaction=1569875
60266<...>-770 ( 770) [005] ...1 82316.189061: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
60267<...>-770 ( 770) [005] d..2 82316.189134: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
60268          <idle>-0     (-----) [001] dnh2 82316.189167: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
60269          <idle>-0     (-----) [001] .n.1 82316.189174: cpu_idle: state=4294967295 cpu_id=1
60270<...>-770 ( 770) [005] ...1 82316.189179: tracing_mark_write: E|770
60271          <idle>-0     (-----) [001] d..2 82316.189186: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
60272<...>-770 ( 770) [005] .... 82316.189186: binder_transaction: transaction=1569876 dest_node=0 dest_proc=27550 dest_thread=27632 reply=1 flags=0x0 code=0x0
60273<...>-770 ( 770) [005] .... 82316.189189: binder_transaction_alloc_buf: transaction=1569876 data_size=168 offsets_size=32
60274<...>-770 ( 770) [005] .... 82316.189195: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
60275<...>-770 ( 770) [005] d..2 82316.189233: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27632 next_prio=110
60276           <...>-27632 (-----) [005] .... 82316.189243: binder_transaction_received: transaction=1569876
60277<...>-581 ( 571) [001] d..2 82316.189276: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60278          <idle>-0     (-----) [001] d..1 82316.189288: cpu_idle: state=0 cpu_id=1
60279           <...>-27632 (-----) [005] ...1 82316.189314: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
60280           <...>-27632 (-----) [005] ...1 82316.189319: tracing_mark_write: E|27550
60281           <...>-27632 (-----) [005] .... 82316.189334: binder_transaction: transaction=1569877 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
60282           <...>-27632 (-----) [005] .... 82316.189337: binder_transaction_alloc_buf: transaction=1569877 data_size=48 offsets_size=0
60283           <...>-27632 (-----) [005] ...2 82316.189339: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
60284           <...>-27632 (-----) [005] d..4 82316.189341: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
60285<...>-142 ( 142) [000] d.h4 82316.189348: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
60286           <...>-27632 (-----) [005] dn.5 82316.189351: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
60287           <...>-27632 (-----) [005] d..2 82316.189358: sched_switch: prev_comm=id.nn.benchmark prev_pid=27632 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
60288<...>-770 ( 770) [005] .... 82316.189366: binder_transaction_received: transaction=1569877
60289<...>-142 ( 142) [000] d.h5 82316.189373: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
60290<...>-142 ( 142) [000] d.h4 82316.189377: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
60291          <idle>-0     (-----) [002] .n.1 82316.189377: cpu_idle: state=4294967295 cpu_id=2
60292<...>-770 ( 770) [005] ...1 82316.189383: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
60293          <idle>-0     (-----) [002] d..2 82316.189389: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
60294<...>-142 ( 142) [000] d.h5 82316.189400: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
60295          <idle>-0     (-----) [003] .n.1 82316.189407: cpu_idle: state=4294967295 cpu_id=3
60296          <idle>-0     (-----) [003] d..2 82316.189419: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
60297  crtc_event:111-322   (  322) [002] d..2 82316.189424: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60298          <idle>-0     (-----) [002] d..1 82316.189436: cpu_idle: state=0 cpu_id=2
60299<...>-770 ( 770) [005] d..2 82316.189440: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
60300          <idle>-0     (-----) [001] dnh2 82316.189466: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
60301          <idle>-0     (-----) [001] .n.1 82316.189473: cpu_idle: state=4294967295 cpu_id=1
60302<...>-770 ( 770) [005] ...1 82316.189478: tracing_mark_write: E|770
60303          <idle>-0     (-----) [001] d..2 82316.189486: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
60304<...>-770 ( 770) [005] .... 82316.189488: binder_transaction: transaction=1569878 dest_node=0 dest_proc=27550 dest_thread=27632 reply=1 flags=0x0 code=0x0
60305<...>-770 ( 770) [005] .... 82316.189491: binder_transaction_alloc_buf: transaction=1569878 data_size=168 offsets_size=32
60306<...>-770 ( 770) [005] .... 82316.189497: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
60307<...>-770 ( 770) [005] d..2 82316.189536: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27632 next_prio=110
60308           <...>-27632 (-----) [005] .... 82316.189546: binder_transaction_received: transaction=1569878
60309<...>-581 ( 571) [001] d..2 82316.189555: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60310          <idle>-0     (-----) [001] d..1 82316.189565: cpu_idle: state=0 cpu_id=1
60311 crtc_commit:111-321   (  321) [003] d..2 82316.189581: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
60312          <idle>-0     (-----) [003] d..1 82316.189591: cpu_idle: state=0 cpu_id=3
60313           <...>-27632 (-----) [005] ...1 82316.189827: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
60314           <...>-27632 (-----) [005] ...1 82316.189840: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
60315           <...>-27632 (-----) [005] ...1 82316.189845: tracing_mark_write: E|27550
60316           <...>-27632 (-----) [005] .... 82316.189904: binder_transaction: transaction=1569879 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
60317           <...>-27632 (-----) [005] .... 82316.189907: binder_transaction_alloc_buf: transaction=1569879 data_size=556 offsets_size=104
60318           <...>-27632 (-----) [005] ...2 82316.189921: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
60319           <...>-27632 (-----) [005] d..4 82316.189923: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60320           <...>-27632 (-----) [005] dn.5 82316.189935: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60321           <...>-27632 (-----) [005] d..2 82316.189942: sched_switch: prev_comm=id.nn.benchmark prev_pid=27632 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60322<...>-5340 ( 788) [005] .... 82316.189951: binder_transaction_received: transaction=1569879
60323<...>-5340 ( 788) [005] ...1 82316.189996: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
60324<...>-5340 ( 788) [005] d..2 82316.190043: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
60325<...>-5340 ( 788) [005] d..2 82316.190073: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27632 next_prio=110
60326          <idle>-0     (-----) [001] dnh2 82316.190077: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
60327          <idle>-0     (-----) [001] .n.1 82316.190084: cpu_idle: state=4294967295 cpu_id=1
60328          <idle>-0     (-----) [001] d..2 82316.190094: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
60329           <...>-27632 (-----) [005] d..2 82316.190098: sched_switch: prev_comm=id.nn.benchmark prev_pid=27632 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
60330          <idle>-0     (-----) [005] d..1 82316.190116: cpu_idle: state=0 cpu_id=5
60331<...>-87 ( 87) [001] d..2 82316.190137: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60332          <idle>-0     (-----) [001] d..1 82316.190146: cpu_idle: state=0 cpu_id=1
60333          <idle>-0     (-----) [002] d.h4 82316.190146: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60334          <idle>-0     (-----) [002] dnh5 82316.190164: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60335          <idle>-0     (-----) [002] .n.1 82316.190173: cpu_idle: state=4294967295 cpu_id=2
60336          <idle>-0     (-----) [002] d..2 82316.190185: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
60337<...>-86 ( 86) [002] d..2 82316.190222: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60338          <idle>-0     (-----) [002] d.h5 82316.190244: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60339          <idle>-0     (-----) [005] dnh2 82316.190265: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60340          <idle>-0     (-----) [005] .n.1 82316.190270: cpu_idle: state=4294967295 cpu_id=5
60341          <idle>-0     (-----) [005] d..2 82316.190280: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60342          <idle>-0     (-----) [002] d..1 82316.190298: cpu_idle: state=0 cpu_id=2
60343<...>-5340 ( 788) [005] d..1 82316.190343: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
60344          <idle>-0     (-----) [001] dnh2 82316.190374: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
60345          <idle>-0     (-----) [001] .n.1 82316.190380: cpu_idle: state=4294967295 cpu_id=1
60346          <idle>-0     (-----) [001] d..2 82316.190387: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
60347 neuralnetworks@-13088 (  788) [001] d..2 82316.190443: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60348          <idle>-0     (-----) [001] d..1 82316.190453: cpu_idle: state=0 cpu_id=1
60349<...>-5340 ( 788) [005] d..2 82316.190495: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
60350          <idle>-0     (-----) [001] dnh2 82316.190520: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
60351<...>-5340 ( 788) [005] d..2 82316.190523: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
60352          <idle>-0     (-----) [001] .n.1 82316.190527: cpu_idle: state=4294967295 cpu_id=1
60353          <idle>-0     (-----) [001] d..2 82316.190537: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
60354          <idle>-0     (-----) [005] d..1 82316.190538: cpu_idle: state=0 cpu_id=5
60355          <idle>-0     (-----) [002] d.h4 82316.190579: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60356<...>-87 ( 87) [001] d..2 82316.190584: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60357          <idle>-0     (-----) [002] dnh5 82316.190591: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60358          <idle>-0     (-----) [001] d..1 82316.190592: cpu_idle: state=0 cpu_id=1
60359          <idle>-0     (-----) [002] .n.1 82316.190600: cpu_idle: state=4294967295 cpu_id=2
60360          <idle>-0     (-----) [002] d..2 82316.190611: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
60361<...>-86 ( 86) [002] d..2 82316.190644: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60362          <idle>-0     (-----) [002] d..1 82316.190656: cpu_idle: state=0 cpu_id=2
60363<...>-142 ( 142) [000] d.h4 82316.191698: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
60364<...>-142 ( 142) [000] d.h5 82316.191721: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
60365          <idle>-0     (-----) [003] .n.1 82316.191727: cpu_idle: state=4294967295 cpu_id=3
60366          <idle>-0     (-----) [003] d..2 82316.191734: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
60367 crtc_commit:111-321   (  321) [003] d.s2 82316.191809: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
60368<...>-142 ( 142) [000] d.s2 82316.191865: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
60369 crtc_commit:111-321   (  321) [003] d.s3 82316.191870: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
60370          <idle>-0     (-----) [002] .n.1 82316.191875: cpu_idle: state=4294967295 cpu_id=2
60371          <idle>-0     (-----) [002] d..2 82316.191887: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
60372          <idle>-0     (-----) [001] d.H3 82316.191894: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
60373<...>-142 ( 142) [000] d.s3 82316.191917: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
60374          <idle>-0     (-----) [001] dnH4 82316.191922: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
60375  crtc_event:111-322   (  322) [002] d..2 82316.191925: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
60376 crtc_commit:111-321   (  321) [003] d..2 82316.191927: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60377          <idle>-0     (-----) [001] dns2 82316.191929: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
60378          <idle>-0     (-----) [003] d..1 82316.191940: cpu_idle: state=0 cpu_id=3
60379          <idle>-0     (-----) [001] dns3 82316.191969: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
60380          <idle>-0     (-----) [001] .n.1 82316.191978: cpu_idle: state=4294967295 cpu_id=1
60381<...>-142 ( 142) [000] d.H6 82316.191985: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
60382          <idle>-0     (-----) [001] d..2 82316.191985: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
60383<...>-142 ( 142) [000] d.H7 82316.192009: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
60384          <idle>-0     (-----) [003] .n.1 82316.192015: cpu_idle: state=4294967295 cpu_id=3
60385         sugov:0-576   (  576) [001] .... 82316.192021: clk_set_rate: pwrcl_clk 902400000
60386          <idle>-0     (-----) [003] d..2 82316.192026: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
60387<...>-142 ( 142) [000] d.s3 82316.192029: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
60388     rcu_preempt-7     (    7) [002] d..2 82316.192031: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
60389         sugov:0-576   (  576) [001] .... 82316.192042: clk_set_rate: cpu3_pwrcl_clk 825600000
60390         sugov:0-576   (  576) [001] .... 82316.192052: clk_set_rate: cpu2_pwrcl_clk 825600000
60391  crtc_event:111-322   (  322) [003] d..2 82316.192053: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60392         sugov:0-576   (  576) [001] .... 82316.192061: clk_set_rate: cpu1_pwrcl_clk 825600000
60393          <idle>-0     (-----) [003] d..1 82316.192062: cpu_idle: state=0 cpu_id=3
60394         sugov:0-576   (  576) [001] .... 82316.192068: clk_set_rate: cpu0_pwrcl_clk 902400000
60395<...>-142 ( 142) [000] d.s4 82316.192075: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
60396         sugov:0-576   (  576) [001] .... 82316.192077: cpu_frequency: state=902400 cpu_id=0
60397          <idle>-0     (-----) [003] .n.1 82316.192081: cpu_idle: state=4294967295 cpu_id=3
60398     rcu_preempt-7     (    7) [002] d..3 82316.192084: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
60399          <idle>-0     (-----) [003] d..2 82316.192095: 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
60400         sugov:0-576   (  576) [001] .... 82316.192102: cpu_frequency: state=902400 cpu_id=1
60401         sugov:0-576   (  576) [001] .... 82316.192106: cpu_frequency: state=902400 cpu_id=2
60402         sugov:0-576   (  576) [001] .... 82316.192110: cpu_frequency: state=902400 cpu_id=3
60403         rcuop/0-10    (   10) [003] d..2 82316.192112: 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
60404     rcu_preempt-7     (    7) [002] d..2 82316.192116: 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
60405         rcuop/4-45    (   45) [003] d..2 82316.192119: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
60406<...>-8 ( 8) [002] d..2 82316.192124: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
60407         rcuop/4-45    (   45) [003] d..3 82316.192140: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
60408<...>-8 ( 8) [002] d..3 82316.192147: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
60409         sugov:0-576   (  576) [001] d..2 82316.192158: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
60410<...>-8 ( 8) [002] d..2 82316.192188: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60411         rcuop/4-45    (   45) [003] d..2 82316.192189: 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
60412          <idle>-0     (-----) [003] d..1 82316.192202: cpu_idle: state=0 cpu_id=3
60413          <idle>-0     (-----) [002] d..1 82316.192204: cpu_idle: state=0 cpu_id=2
60414          <idle>-0     (-----) [002] d.h4 82316.192257: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60415         rcuop/5-53    (   53) [001] d..2 82316.192259: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
60416<...>-46 ( 46) [001] d..2 82316.192271: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
60417          <idle>-0     (-----) [005] dnh2 82316.192280: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60418          <idle>-0     (-----) [005] .n.1 82316.192285: cpu_idle: state=4294967295 cpu_id=5
60419<...>-46 ( 46) [001] d..3 82316.192286: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
60420          <idle>-0     (-----) [005] d..2 82316.192295: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60421          <idle>-0     (-----) [002] .n.1 82316.192297: cpu_idle: state=4294967295 cpu_id=2
60422<...>-46 ( 46) [001] d..2 82316.192305: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60423          <idle>-0     (-----) [002] d..2 82316.192310: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
60424          <idle>-0     (-----) [001] d..1 82316.192324: cpu_idle: state=0 cpu_id=1
60425<...>-8 ( 8) [002] d..2 82316.192333: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60426          <idle>-0     (-----) [002] d..1 82316.192345: cpu_idle: state=0 cpu_id=2
60427<...>-5340 ( 788) [005] d..1 82316.192346: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
60428          <idle>-0     (-----) [001] dnh2 82316.192368: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
60429          <idle>-0     (-----) [001] .n.1 82316.192378: cpu_idle: state=4294967295 cpu_id=1
60430          <idle>-0     (-----) [001] d..2 82316.192389: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
60431<...>-5340 ( 788) [005] ...1 82316.192438: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
60432<...>-5340 ( 788) [005] ...1 82316.192442: tracing_mark_write: E|788
60433 neuralnetworks@-13088 (  788) [001] d..2 82316.192449: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60434<...>-5340 ( 788) [005] .... 82316.192458: binder_transaction: transaction=1569882 dest_node=1569880 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
60435<...>-5340 ( 788) [005] .... 82316.192461: binder_transaction_alloc_buf: transaction=1569882 data_size=60 offsets_size=0
60436          <idle>-0     (-----) [001] d..1 82316.192462: cpu_idle: state=0 cpu_id=1
60437<...>-5340 ( 788) [005] d..4 82316.192465: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
60438<...>-5340 ( 788) [005] d..5 82316.192478: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
60439          <idle>-0     (-----) [004] .n.1 82316.192484: cpu_idle: state=4294967295 cpu_id=4
60440          <idle>-0     (-----) [004] d..2 82316.192492: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
60441           <...>-27571 (-----) [004] .... 82316.192497: binder_transaction_received: transaction=1569882
60442<...>-5340 ( 788) [005] ...1 82316.192502: tracing_mark_write: E|788
60443<...>-5340 ( 788) [005] .... 82316.192508: binder_transaction: transaction=1569883 dest_node=0 dest_proc=27550 dest_thread=27632 reply=1 flags=0x0 code=0x0
60444<...>-5340 ( 788) [005] .... 82316.192510: binder_transaction_alloc_buf: transaction=1569883 data_size=8 offsets_size=0
60445<...>-5340 ( 788) [005] d..2 82316.192512: sched_waking: comm=id.nn.benchmark pid=27632 prio=110 target_cpu=005
60446           <...>-27571 (-----) [004] ...1 82316.192517: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
60447<...>-5340 ( 788) [005] d..3 82316.192520: sched_wakeup: comm=id.nn.benchmark pid=27632 prio=110 target_cpu=005
60448<...>-5340 ( 788) [005] .... 82316.192522: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
60449           <...>-27571 (-----) [004] ...1 82316.192523: tracing_mark_write: E|27550
60450           <...>-27571 (-----) [004] d..2 82316.192553: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60451          <idle>-0     (-----) [004] d..1 82316.192560: cpu_idle: state=0 cpu_id=4
60452<...>-5340 ( 788) [005] d..2 82316.192564: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27632 next_prio=110
60453           <...>-27632 (-----) [005] .... 82316.192574: binder_transaction_received: transaction=1569883
60454           <...>-27632 (-----) [005] ...1 82316.192613: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
60455           <...>-27632 (-----) [005] ...1 82316.192619: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
60456           <...>-27632 (-----) [005] ...1 82316.192645: tracing_mark_write: E|27550
60457           <...>-27632 (-----) [005] ...1 82316.192649: tracing_mark_write: E|27550
60458           <...>-27632 (-----) [005] ...1 82316.192652: tracing_mark_write: E|27550
60459           <...>-27632 (-----) [005] ...1 82316.192837: tracing_mark_write: E|27550
60460           <...>-27632 (-----) [005] d..1 82316.192850: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60461           <...>-27632 (-----) [005] d..2 82316.192868: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60462          <idle>-0     (-----) [004] .n.1 82316.192874: cpu_idle: state=4294967295 cpu_id=4
60463          <idle>-0     (-----) [004] d..2 82316.192882: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
60464           <...>-27550 (-----) [004] d..2 82316.192905: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60465          <idle>-0     (-----) [004] d..1 82316.192916: cpu_idle: state=0 cpu_id=4
60466           <...>-27632 (-----) [005] d..1 82316.192964: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60467           <...>-27632 (-----) [005] d..2 82316.192974: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60468          <idle>-0     (-----) [004] .n.1 82316.192979: cpu_idle: state=4294967295 cpu_id=4
60469          <idle>-0     (-----) [004] d..2 82316.192987: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
60470           <...>-27632 (-----) [005] d..2 82316.193013: sched_switch: prev_comm=id.nn.benchmark prev_pid=27632 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
60471           <...>-27550 (-----) [004] ...1 82316.193025: tracing_mark_write: E|27550
60472           <...>-27550 (-----) [004] ...1 82316.193029: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
60473          <idle>-0     (-----) [005] d..1 82316.193034: cpu_idle: state=0 cpu_id=5
60474           <...>-27550 (-----) [004] ...1 82316.193036: tracing_mark_write: E|27550
60475           <...>-27550 (-----) [004] ...1 82316.193039: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
60476           <...>-27550 (-----) [004] ...1 82316.193044: tracing_mark_write: E|27550
60477           <...>-27550 (-----) [004] ...1 82316.193048: tracing_mark_write: E|27550
60478           <...>-27550 (-----) [004] ...1 82316.193161: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
60479           <...>-27550 (-----) [004] ...1 82316.193220: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
60480           <...>-27550 (-----) [004] ...1 82316.193225: tracing_mark_write: E|27550
60481           <...>-27550 (-----) [004] ...1 82316.193229: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
60482           <...>-27550 (-----) [004] ...1 82316.193234: tracing_mark_write: E|27550
60483           <...>-27550 (-----) [004] ...1 82316.193238: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
60484           <...>-27550 (-----) [004] ...1 82316.193242: tracing_mark_write: E|27550
60485           <...>-27550 (-----) [004] ...1 82316.193246: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
60486          <idle>-0     (-----) [005] .n.1 82316.193344: cpu_idle: state=4294967295 cpu_id=5
60487           <...>-27550 (-----) [004] ...1 82316.193345: tracing_mark_write: E|27550
60488           <...>-27550 (-----) [004] ...1 82316.193349: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
60489          <idle>-0     (-----) [005] d..2 82316.193353: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27633 next_prio=110
60490           <...>-27550 (-----) [004] d..2 82316.193366: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60491          <idle>-0     (-----) [004] d..1 82316.193380: cpu_idle: state=0 cpu_id=4
60492           <...>-27633 (-----) [005] ...1 82316.193414: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
60493           <...>-27633 (-----) [005] ...1 82316.193428: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
60494           <...>-27633 (-----) [005] ...1 82316.193432: tracing_mark_write: E|27550
60495           <...>-27633 (-----) [005] .... 82316.193458: binder_transaction: transaction=1569884 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
60496           <...>-27633 (-----) [005] .... 82316.193461: binder_transaction_alloc_buf: transaction=1569884 data_size=48 offsets_size=0
60497           <...>-27633 (-----) [005] ...2 82316.193464: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
60498           <...>-27633 (-----) [005] d..4 82316.193468: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
60499           <...>-27633 (-----) [005] dn.5 82316.193481: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
60500           <...>-27633 (-----) [005] d..2 82316.193488: sched_switch: prev_comm=id.nn.benchmark prev_pid=27633 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
60501<...>-770 ( 770) [005] .... 82316.193498: binder_transaction_received: transaction=1569884
60502<...>-770 ( 770) [005] ...1 82316.193526: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
60503<...>-770 ( 770) [005] d..2 82316.193613: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
60504<...>-142 ( 142) [000] d.h1 82316.193657: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
60505<...>-770 ( 770) [005] ...1 82316.193670: tracing_mark_write: E|770
60506<...>-770 ( 770) [005] .... 82316.193678: binder_transaction: transaction=1569885 dest_node=0 dest_proc=27550 dest_thread=27633 reply=1 flags=0x0 code=0x0
60507<...>-770 ( 770) [005] .... 82316.193680: binder_transaction_alloc_buf: transaction=1569885 data_size=168 offsets_size=32
60508<...>-770 ( 770) [005] .... 82316.193688: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
60509<...>-770 ( 770) [005] d..2 82316.193725: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27633 next_prio=110
60510           <...>-27633 (-----) [005] .... 82316.193735: binder_transaction_received: transaction=1569885
60511           <...>-27633 (-----) [005] ...1 82316.193809: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
60512           <...>-27633 (-----) [005] ...1 82316.193814: tracing_mark_write: E|27550
60513           <...>-27633 (-----) [005] .... 82316.193829: binder_transaction: transaction=1569886 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
60514           <...>-27633 (-----) [005] .... 82316.193832: binder_transaction_alloc_buf: transaction=1569886 data_size=48 offsets_size=0
60515           <...>-27633 (-----) [005] ...2 82316.193834: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
60516           <...>-27633 (-----) [005] d..4 82316.193836: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
60517          <idle>-0     (-----) [003] d.h2 82316.193840: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
60518           <...>-27633 (-----) [005] dn.5 82316.193846: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
60519           <...>-27633 (-----) [005] d..2 82316.193853: sched_switch: prev_comm=id.nn.benchmark prev_pid=27633 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
60520          <idle>-0     (-----) [003] dnh3 82316.193854: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
60521<...>-770 ( 770) [005] .... 82316.193860: binder_transaction_received: transaction=1569886
60522          <idle>-0     (-----) [003] .n.1 82316.193862: cpu_idle: state=4294967295 cpu_id=3
60523          <idle>-0     (-----) [003] d..2 82316.193873: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
60524          <idle>-0     (-----) [001] ...1 82316.193873: cpu_idle: state=4294967295 cpu_id=1
60525<...>-770 ( 770) [005] ...1 82316.193877: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
60526          <idle>-0     (-----) [001] d..1 82316.193878: cpu_idle: state=0 cpu_id=1
60527        DispSync-8879  ( 8858) [003] d..1 82316.193895: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
60528        DispSync-8879  ( 8858) [003] d..2 82316.193917: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
60529          <idle>-0     (-----) [002] .n.1 82316.193923: cpu_idle: state=4294967295 cpu_id=2
60530          <idle>-0     (-----) [002] d..2 82316.193932: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
60531<...>-770 ( 770) [005] ...1 82316.193959: tracing_mark_write: E|770
60532        DispSync-8879  ( 8858) [003] d..2 82316.193963: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
60533<...>-770 ( 770) [005] .... 82316.193967: binder_transaction: transaction=1569887 dest_node=0 dest_proc=27550 dest_thread=27633 reply=1 flags=0x0 code=0x0
60534<...>-770 ( 770) [005] .... 82316.193970: binder_transaction_alloc_buf: transaction=1569887 data_size=168 offsets_size=32
60535<...>-770 ( 770) [005] .... 82316.193976: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
60536  appEventThread-8881  ( 8858) [002] d..3 82316.193996: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
60537<...>-770 ( 770) [005] d..2 82316.194012: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27633 next_prio=110
60538           <...>-27633 (-----) [005] .... 82316.194024: binder_transaction_received: transaction=1569887
60539  appEventThread-8881  ( 8858) [002] d..4 82316.194033: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
60540          <idle>-0     (-----) [001] .n.1 82316.194038: cpu_idle: state=4294967295 cpu_id=1
60541          <idle>-0     (-----) [001] d..2 82316.194053: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
60542  appEventThread-8881  ( 8858) [002] d..2 82316.194078: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60543<...>-581 ( 571) [003] d..2 82316.194089: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60544          <idle>-0     (-----) [002] d..1 82316.194091: cpu_idle: state=0 cpu_id=2
60545          <idle>-0     (-----) [003] d..1 82316.194105: cpu_idle: state=0 cpu_id=3
60546           <...>-27633 (-----) [005] ...1 82316.194307: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
60547           <...>-27633 (-----) [005] ...1 82316.194317: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
60548           <...>-27633 (-----) [005] ...1 82316.194320: tracing_mark_write: E|27550
60549           <...>-27633 (-----) [005] .... 82316.194382: binder_transaction: transaction=1569888 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
60550           <...>-27633 (-----) [005] .... 82316.194385: binder_transaction_alloc_buf: transaction=1569888 data_size=556 offsets_size=104
60551           <...>-27633 (-----) [005] ...2 82316.194400: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
60552           <...>-27633 (-----) [005] d..4 82316.194402: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60553           <...>-27633 (-----) [005] dn.5 82316.194414: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60554           <...>-27633 (-----) [005] d..2 82316.194421: sched_switch: prev_comm=id.nn.benchmark prev_pid=27633 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60555<...>-9105 ( 9105) [001] .... 82316.194422: binder_transaction: transaction=1569891 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
60556<...>-9105 ( 9105) [001] .... 82316.194430: binder_transaction_alloc_buf: transaction=1569891 data_size=80 offsets_size=0
60557<...>-5340 ( 788) [005] .... 82316.194432: binder_transaction_received: transaction=1569888
60558<...>-9105 ( 9105) [001] d..4 82316.194437: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
60559<...>-9105 ( 9105) [001] d..5 82316.194464: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
60560          <idle>-0     (-----) [002] .n.1 82316.194470: cpu_idle: state=4294967295 cpu_id=2
60561<...>-5340 ( 788) [005] ...1 82316.194480: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
60562          <idle>-0     (-----) [002] d..2 82316.194482: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
60563<...>-13083 ( 8858) [002] .... 82316.194489: binder_transaction_received: transaction=1569891
60564<...>-9105 ( 9105) [001] d..3 82316.194504: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
60565<...>-13083 ( 8858) [002] d..1 82316.194524: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
60566<...>-5340 ( 788) [005] d..2 82316.194525: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
60567<...>-9105 ( 9105) [001] d..4 82316.194533: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
60568<...>-13083 ( 8858) [002] dn.2 82316.194538: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
60569          <idle>-0     (-----) [003] .n.1 82316.194539: cpu_idle: state=4294967295 cpu_id=3
60570<...>-13083 ( 8858) [002] d..2 82316.194546: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
60571          <idle>-0     (-----) [003] d..2 82316.194552: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
60572  appEventThread-8881  ( 8858) [002] d..2 82316.194565: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
60573<...>-13083 ( 8858) [002] d.h3 82316.194576: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
60574<...>-5340 ( 788) [005] d..2 82316.194577: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27633 next_prio=110
60575<...>-13083 ( 8858) [002] d..1 82316.194582: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
60576           <...>-27633 (-----) [005] d..2 82316.194599: sched_switch: prev_comm=id.nn.benchmark prev_pid=27633 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
60577<...>-13083 ( 8858) [002] d..2 82316.194602: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
60578    RenderThread-9436  ( 9105) [003] d..2 82316.194611: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60579          <idle>-0     (-----) [005] d..1 82316.194617: cpu_idle: state=0 cpu_id=5
60580<...>-9105 ( 9105) [001] d..2 82316.194620: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
60581          <idle>-0     (-----) [003] d..1 82316.194623: cpu_idle: state=0 cpu_id=3
60582<...>-13083 ( 8858) [002] d..2 82316.194633: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
60583<...>-87 ( 87) [002] d..2 82316.194678: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60584  appEventThread-8881  ( 8858) [001] d..2 82316.194679: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
60585          <idle>-0     (-----) [002] d.h5 82316.194703: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60586          <idle>-0     (-----) [002] dnh6 82316.194720: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60587          <idle>-0     (-----) [002] d..2 82316.194734: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
60588<...>-9105 ( 9105) [001] d..3 82316.194755: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
60589<...>-86 ( 86) [002] d.h4 82316.194761: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60590<...>-9105 ( 9105) [001] d..4 82316.194773: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
60591          <idle>-0     (-----) [003] .n.1 82316.194779: cpu_idle: state=4294967295 cpu_id=3
60592          <idle>-0     (-----) [005] dnh2 82316.194782: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60593          <idle>-0     (-----) [005] .n.1 82316.194787: cpu_idle: state=4294967295 cpu_id=5
60594          <idle>-0     (-----) [003] d..2 82316.194790: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
60595          <idle>-0     (-----) [005] d..2 82316.194795: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60596<...>-9105 ( 9105) [001] d..2 82316.194805: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60597<...>-86 ( 86) [002] d..2 82316.194818: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60598          <idle>-0     (-----) [001] d..1 82316.194824: cpu_idle: state=0 cpu_id=1
60599          <idle>-0     (-----) [002] d..1 82316.194833: cpu_idle: state=0 cpu_id=2
60600<...>-5340 ( 788) [005] d..1 82316.194850: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
60601    RenderThread-9436  ( 9105) [003] dnh1 82316.194891: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
60602    RenderThread-9436  ( 9105) [003] d..2 82316.194903: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
60603 neuralnetworks@-13088 (  788) [003] d..2 82316.194943: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
60604    RenderThread-9436  ( 9105) [003] d..1 82316.194999: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
60605<...>-5340 ( 788) [005] d..2 82316.195015: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
60606    RenderThread-9436  ( 9105) [003] d..2 82316.195016: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
60607          <idle>-0     (-----) [001] .n.1 82316.195024: cpu_idle: state=4294967295 cpu_id=1
60608          <idle>-0     (-----) [001] d..2 82316.195037: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
60609          <idle>-0     (-----) [002] dnh2 82316.195038: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
60610<...>-5340 ( 788) [005] d..2 82316.195042: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
60611          <idle>-0     (-----) [002] .n.1 82316.195044: cpu_idle: state=4294967295 cpu_id=2
60612          <idle>-0     (-----) [002] d..2 82316.195055: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
60613          <idle>-0     (-----) [005] d..1 82316.195056: cpu_idle: state=0 cpu_id=5
60614<...>-87 ( 87) [002] d..2 82316.195091: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60615    RenderThread-9436  ( 9105) [003] .... 82316.195091: binder_transaction: transaction=1569892 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
60616    RenderThread-9436  ( 9105) [003] .... 82316.195096: binder_transaction_alloc_buf: transaction=1569892 data_size=104 offsets_size=0
60617    RenderThread-9436  ( 9105) [003] d..4 82316.195101: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
60618          <idle>-0     (-----) [002] d.h5 82316.195108: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60619<...>-9105 ( 9105) [001] d..2 82316.195120: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60620    RenderThread-9436  ( 9105) [003] dn.5 82316.195121: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
60621          <idle>-0     (-----) [002] dnh6 82316.195125: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60622    RenderThread-9436  ( 9105) [003] d..2 82316.195174: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
60623          <idle>-0     (-----) [002] d..2 82316.195175: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
60624<...>-13083 ( 8858) [003] .... 82316.195183: binder_transaction_received: transaction=1569892
60625          <idle>-0     (-----) [001] d..1 82316.195186: cpu_idle: state=0 cpu_id=1
60626<...>-86 ( 86) [002] d..2 82316.195226: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
60627    RenderThread-9436  ( 9105) [002] d..2 82316.195257: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60628<...>-13083 ( 8858) [003] .... 82316.195262: binder_transaction: transaction=1569893 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
60629<...>-13083 ( 8858) [003] .... 82316.195267: binder_transaction_alloc_buf: transaction=1569893 data_size=52 offsets_size=8
60630          <idle>-0     (-----) [002] d..1 82316.195268: cpu_idle: state=0 cpu_id=2
60631<...>-13083 ( 8858) [003] d..2 82316.195278: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
60632<...>-13083 ( 8858) [003] d..3 82316.195300: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
60633<...>-13083 ( 8858) [003] d..2 82316.195343: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
60634    RenderThread-9436  ( 9105) [003] .... 82316.195351: binder_transaction_received: transaction=1569893
60635    RenderThread-9436  ( 9105) [003] d..2 82316.196494: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
60636          <idle>-0     (-----) [003] d..1 82316.196517: cpu_idle: state=0 cpu_id=3
60637          <idle>-0     (-----) [001] ...1 82316.196564: cpu_idle: state=4294967295 cpu_id=1
60638          <idle>-0     (-----) [003] d.h2 82316.196569: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
60639          <idle>-0     (-----) [001] d..1 82316.196570: cpu_idle: state=0 cpu_id=1
60640          <idle>-0     (-----) [003] d.h3 82316.196581: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
60641          <idle>-0     (-----) [003] dnh3 82316.196586: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
60642          <idle>-0     (-----) [003] .n.1 82316.196595: cpu_idle: state=4294967295 cpu_id=3
60643<...>-142 ( 142) [000] d.h2 82316.196601: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
60644          <idle>-0     (-----) [003] d..2 82316.196606: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
60645<...>-142 ( 142) [000] d.h3 82316.196638: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
60646          <idle>-0     (-----) [002] .n.1 82316.196644: cpu_idle: state=4294967295 cpu_id=2
60647          <idle>-0     (-----) [002] d..2 82316.196652: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
60648 kgsl_worker_thr-258   (  258) [002] d.h4 82316.196703: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60649          <idle>-0     (-----) [005] dnh2 82316.196725: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60650          <idle>-0     (-----) [005] .n.1 82316.196730: cpu_idle: state=4294967295 cpu_id=5
60651          <idle>-0     (-----) [005] d..2 82316.196739: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60652 kgsl_worker_thr-258   (  258) [002] d..2 82316.196769: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
60653<...>-5340 ( 788) [005] d..1 82316.196795: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
60654 kgsl_worker_thr-258   (  258) [002] d..3 82316.196820: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
60655    RenderThread-9436  ( 9105) [003] .... 82316.196822: binder_transaction: transaction=1569894 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
60656    RenderThread-9436  ( 9105) [003] .... 82316.196828: binder_transaction_alloc_buf: transaction=1569894 data_size=192 offsets_size=8
60657 kgsl_worker_thr-258   (  258) [002] d.h2 82316.196840: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
60658    RenderThread-9436  ( 9105) [003] d..4 82316.196840: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
60659 kgsl_worker_thr-258   (  258) [002] d..2 82316.196862: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
60660    RenderThread-9436  ( 9105) [003] dn.5 82316.196863: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
60661    RenderThread-9436  ( 9105) [003] d..2 82316.196874: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
60662<...>-13083 ( 8858) [003] .... 82316.196914: binder_transaction_received: transaction=1569894
60663 neuralnetworks@-13088 (  788) [002] d..2 82316.196929: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
60664<...>-5340 ( 788) [005] ...1 82316.196931: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
60665<...>-5340 ( 788) [005] ...1 82316.196938: tracing_mark_write: E|788
60666<...>-5340 ( 788) [005] .... 82316.196960: binder_transaction: transaction=1569895 dest_node=1569889 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
60667<...>-5340 ( 788) [005] .... 82316.196963: binder_transaction_alloc_buf: transaction=1569895 data_size=60 offsets_size=0
60668<...>-5340 ( 788) [005] d..4 82316.196968: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
60669<...>-13083 ( 8858) [003] d.h1 82316.196974: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
60670<...>-5340 ( 788) [005] d..5 82316.196981: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
60671          <idle>-0     (-----) [004] .n.1 82316.196988: cpu_idle: state=4294967295 cpu_id=4
60672<...>-13083 ( 8858) [003] dnh2 82316.196990: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
60673          <idle>-0     (-----) [004] d..2 82316.196998: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
60674           <...>-27571 (-----) [004] .... 82316.197003: binder_transaction_received: transaction=1569895
60675<...>-5340 ( 788) [005] ...1 82316.197010: tracing_mark_write: E|788
60676<...>-13083 ( 8858) [003] d..2 82316.197011: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
60677<...>-5340 ( 788) [005] .... 82316.197016: binder_transaction: transaction=1569896 dest_node=0 dest_proc=27550 dest_thread=27633 reply=1 flags=0x0 code=0x0
60678<...>-5340 ( 788) [005] .... 82316.197018: binder_transaction_alloc_buf: transaction=1569896 data_size=8 offsets_size=0
60679<...>-5340 ( 788) [005] d..2 82316.197020: sched_waking: comm=id.nn.benchmark pid=27633 prio=110 target_cpu=005
60680           <...>-27571 (-----) [004] ...1 82316.197027: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
60681<...>-5340 ( 788) [005] d..3 82316.197028: sched_wakeup: comm=id.nn.benchmark pid=27633 prio=110 target_cpu=005
60682<...>-5340 ( 788) [005] .... 82316.197030: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
60683           <...>-27571 (-----) [004] ...1 82316.197035: tracing_mark_write: E|27550
60684           <...>-27571 (-----) [004] d..2 82316.197071: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60685          <idle>-0     (-----) [004] d..1 82316.197079: cpu_idle: state=0 cpu_id=4
60686<...>-5340 ( 788) [005] d..2 82316.197081: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27633 next_prio=110
60687           <...>-27633 (-----) [005] .... 82316.197092: binder_transaction_received: transaction=1569896
60688           <...>-27633 (-----) [005] ...1 82316.197133: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
60689           <...>-27633 (-----) [005] ...1 82316.197140: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
60690  kworker/u16:15-1311  ( 1311) [002] d..2 82316.197165: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
60691           <...>-27633 (-----) [005] ...1 82316.197167: tracing_mark_write: E|27550
60692           <...>-27633 (-----) [005] ...1 82316.197171: tracing_mark_write: E|27550
60693           <...>-27633 (-----) [005] ...1 82316.197174: tracing_mark_write: E|27550
60694 irq/80-1436400.-9674  ( 9674) [003] d..2 82316.197209: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=RenderThread next_pid=9436 next_prio=120
60695          <idle>-0     (-----) [001] d.s3 82316.197241: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
60696    RenderThread-9436  ( 9105) [003] d..2 82316.197245: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60697          <idle>-0     (-----) [001] d.s4 82316.197260: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
60698          <idle>-0     (-----) [003] d..2 82316.197274: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
60699          <idle>-0     (-----) [001] ...1 82316.197274: cpu_idle: state=4294967295 cpu_id=1
60700          <idle>-0     (-----) [001] d..1 82316.197279: cpu_idle: state=0 cpu_id=1
60701 irq/80-1436400.-9674  ( 9674) [003] d..2 82316.197345: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60702          <idle>-0     (-----) [003] d..1 82316.197359: cpu_idle: state=0 cpu_id=3
60703<...>-13083 ( 8858) [002] .... 82316.197379: binder_transaction: transaction=1569897 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
60704<...>-13083 ( 8858) [002] .... 82316.197387: binder_transaction_alloc_buf: transaction=1569897 data_size=68 offsets_size=0
60705           <...>-27633 (-----) [005] ...1 82316.197390: tracing_mark_write: E|27550
60706<...>-13083 ( 8858) [002] d..2 82316.197392: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
60707           <...>-27633 (-----) [005] d..1 82316.197406: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60708<...>-13083 ( 8858) [002] d..3 82316.197421: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
60709           <...>-27633 (-----) [005] d..2 82316.197425: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60710          <idle>-0     (-----) [004] .n.1 82316.197431: cpu_idle: state=4294967295 cpu_id=4
60711          <idle>-0     (-----) [004] d..2 82316.197437: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
60712           <...>-27550 (-----) [004] d..2 82316.197458: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60713<...>-13083 ( 8858) [002] d..2 82316.197462: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
60714          <idle>-0     (-----) [004] d..1 82316.197467: cpu_idle: state=0 cpu_id=4
60715    RenderThread-9436  ( 9105) [002] .... 82316.197471: binder_transaction_received: transaction=1569897
60716           <...>-27633 (-----) [005] d..1 82316.197519: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60717           <...>-27633 (-----) [005] d..2 82316.197528: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60718          <idle>-0     (-----) [004] .n.1 82316.197533: cpu_idle: state=4294967295 cpu_id=4
60719          <idle>-0     (-----) [004] d..2 82316.197541: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
60720    RenderThread-9436  ( 9105) [002] d..2 82316.197574: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60721           <...>-27633 (-----) [005] d..2 82316.197577: sched_switch: prev_comm=id.nn.benchmark prev_pid=27633 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
60722           <...>-27550 (-----) [004] ...1 82316.197583: tracing_mark_write: E|27550
60723           <...>-27550 (-----) [004] ...1 82316.197589: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
60724          <idle>-0     (-----) [002] d..1 82316.197590: cpu_idle: state=0 cpu_id=2
60725           <...>-27550 (-----) [004] ...1 82316.197596: tracing_mark_write: E|27550
60726           <...>-27550 (-----) [004] ...1 82316.197601: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
60727          <idle>-0     (-----) [005] d..1 82316.197601: cpu_idle: state=0 cpu_id=5
60728           <...>-27550 (-----) [004] ...1 82316.197608: tracing_mark_write: E|27550
60729           <...>-27550 (-----) [004] ...1 82316.197615: tracing_mark_write: E|27550
60730           <...>-27550 (-----) [004] ...1 82316.197737: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
60731           <...>-27550 (-----) [004] ...1 82316.197796: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
60732           <...>-27550 (-----) [004] ...1 82316.197801: tracing_mark_write: E|27550
60733           <...>-27550 (-----) [004] ...1 82316.197804: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
60734           <...>-27550 (-----) [004] ...1 82316.197810: tracing_mark_write: E|27550
60735           <...>-27550 (-----) [004] ...1 82316.197813: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
60736           <...>-27550 (-----) [004] ...1 82316.197817: tracing_mark_write: E|27550
60737           <...>-27550 (-----) [004] ...1 82316.197820: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
60738          <idle>-0     (-----) [003] d.h2 82316.197848: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
60739          <idle>-0     (-----) [003] dnh3 82316.197862: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
60740          <idle>-0     (-----) [003] .n.1 82316.197870: cpu_idle: state=4294967295 cpu_id=3
60741          <idle>-0     (-----) [003] d..2 82316.197879: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
60742        DispSync-8879  ( 8858) [003] d..1 82316.197902: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
60743        DispSync-8879  ( 8858) [003] d..2 82316.197918: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
60744          <idle>-0     (-----) [005] .n.1 82316.197920: cpu_idle: state=4294967295 cpu_id=5
60745           <...>-27550 (-----) [004] ...1 82316.197921: tracing_mark_write: E|27550
60746          <idle>-0     (-----) [002] .n.1 82316.197925: cpu_idle: state=4294967295 cpu_id=2
60747           <...>-27550 (-----) [004] ...1 82316.197925: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
60748          <idle>-0     (-----) [005] d..2 82316.197929: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27634 next_prio=110
60749          <idle>-0     (-----) [002] d..2 82316.197934: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
60750           <...>-27550 (-----) [004] d..2 82316.197942: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60751        DispSync-8879  ( 8858) [003] d..2 82316.197950: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60752          <idle>-0     (-----) [004] d..1 82316.197957: cpu_idle: state=0 cpu_id=4
60753          <idle>-0     (-----) [003] d..1 82316.197965: cpu_idle: state=0 cpu_id=3
60754   sfEventThread-8882  ( 8858) [002] d..3 82316.197982: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
60755           <...>-27634 (-----) [005] ...1 82316.197993: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
60756   sfEventThread-8882  ( 8858) [002] d..4 82316.198003: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
60757           <...>-27634 (-----) [005] ...1 82316.198008: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
60758          <idle>-0     (-----) [003] .n.1 82316.198009: cpu_idle: state=4294967295 cpu_id=3
60759           <...>-27634 (-----) [005] ...1 82316.198011: tracing_mark_write: E|27550
60760          <idle>-0     (-----) [003] d..2 82316.198019: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
60761           <...>-27634 (-----) [005] .... 82316.198035: binder_transaction: transaction=1569898 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
60762   sfEventThread-8882  ( 8858) [002] d..2 82316.198037: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60763           <...>-27634 (-----) [005] .... 82316.198038: binder_transaction_alloc_buf: transaction=1569898 data_size=48 offsets_size=0
60764           <...>-27634 (-----) [005] ...2 82316.198041: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
60765           <...>-27634 (-----) [005] d..4 82316.198044: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
60766          <idle>-0     (-----) [002] d..1 82316.198048: cpu_idle: state=0 cpu_id=2
60767           <...>-27634 (-----) [005] dn.5 82316.198055: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
60768           <...>-27634 (-----) [005] d..2 82316.198062: sched_switch: prev_comm=id.nn.benchmark prev_pid=27634 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
60769<...>-770 ( 770) [005] .... 82316.198072: binder_transaction_received: transaction=1569898
60770<...>-770 ( 770) [005] ...1 82316.198099: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
60771<...>-770 ( 770) [005] d..2 82316.198189: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
60772  surfaceflinger-8858  ( 8858) [003] d.h1 82316.198217: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
60773<...>-770 ( 770) [005] ...1 82316.198232: tracing_mark_write: E|770
60774<...>-770 ( 770) [005] .... 82316.198241: binder_transaction: transaction=1569899 dest_node=0 dest_proc=27550 dest_thread=27634 reply=1 flags=0x0 code=0x0
60775<...>-770 ( 770) [005] .... 82316.198244: binder_transaction_alloc_buf: transaction=1569899 data_size=168 offsets_size=32
60776<...>-770 ( 770) [005] .... 82316.198251: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
60777<...>-770 ( 770) [005] d..2 82316.198287: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27634 next_prio=110
60778           <...>-27634 (-----) [005] .... 82316.198297: binder_transaction_received: transaction=1569899
60779           <...>-27634 (-----) [005] ...1 82316.198374: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
60780           <...>-27634 (-----) [005] ...1 82316.198380: tracing_mark_write: E|27550
60781           <...>-27634 (-----) [005] .... 82316.198394: binder_transaction: transaction=1569900 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
60782           <...>-27634 (-----) [005] .... 82316.198397: binder_transaction_alloc_buf: transaction=1569900 data_size=48 offsets_size=0
60783           <...>-27634 (-----) [005] ...2 82316.198399: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
60784           <...>-27634 (-----) [005] d..4 82316.198402: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
60785           <...>-27634 (-----) [005] dn.5 82316.198411: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
60786  surfaceflinger-8858  ( 8858) [003] d..1 82316.198413: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
60787           <...>-27634 (-----) [005] d..2 82316.198418: sched_switch: prev_comm=id.nn.benchmark prev_pid=27634 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
60788<...>-770 ( 770) [005] .... 82316.198426: binder_transaction_received: transaction=1569900
60789  surfaceflinger-8858  ( 8858) [003] d..2 82316.198433: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
60790          <idle>-0     (-----) [002] dns2 82316.198469: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
60791<...>-770 ( 770) [005] ...1 82316.198479: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
60792<...>-142 ( 142) [000] d.s2 82316.198482: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
60793          <idle>-0     (-----) [002] dns3 82316.198486: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
60794          <idle>-0     (-----) [002] dns2 82316.198492: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
60795<...>-142 ( 142) [000] d.s3 82316.198506: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
60796          <idle>-0     (-----) [002] dns3 82316.198512: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
60797          <idle>-0     (-----) [002] .n.1 82316.198521: cpu_idle: state=4294967295 cpu_id=2
60798          <idle>-0     (-----) [002] d..2 82316.198528: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
60799   sfEventThread-8882  ( 8858) [002] d..2 82316.198558: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
60800<...>-770 ( 770) [005] ...1 82316.198564: tracing_mark_write: E|770
60801<...>-770 ( 770) [005] .... 82316.198572: binder_transaction: transaction=1569901 dest_node=0 dest_proc=27550 dest_thread=27634 reply=1 flags=0x0 code=0x0
60802<...>-770 ( 770) [005] .... 82316.198575: binder_transaction_alloc_buf: transaction=1569901 data_size=168 offsets_size=32
60803<...>-8 ( 8) [002] d..2 82316.198578: 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
60804<...>-770 ( 770) [005] .... 82316.198581: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
60805     rcu_preempt-7     (    7) [002] d..2 82316.198593: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
60806<...>-770 ( 770) [005] d..2 82316.198615: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27634 next_prio=110
60807           <...>-27634 (-----) [005] .... 82316.198626: binder_transaction_received: transaction=1569901
60808  surfaceflinger-8858  ( 8858) [003] ...1 82316.198696: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
60809  kworker/u16:15-1311  ( 1311) [002] .... 82316.198700: clk_set_rate: l3_cluster0_vote_clk 652800000
60810  surfaceflinger-8858  ( 8858) [003] ...1 82316.198703: tracing_mark_write: E|8858
60811  kworker/u16:15-1311  ( 1311) [002] .... 82316.198707: clk_set_rate: l3_clk 652800000
60812  surfaceflinger-8858  ( 8858) [003] .... 82316.198766: binder_transaction: transaction=1569902 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
60813  surfaceflinger-8858  ( 8858) [003] .... 82316.198773: binder_transaction_alloc_buf: transaction=1569902 data_size=540 offsets_size=96
60814  surfaceflinger-8858  ( 8858) [003] ...2 82316.198799: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
60815  surfaceflinger-8858  ( 8858) [003] d..4 82316.198810: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
60816  surfaceflinger-8858  ( 8858) [003] d..5 82316.198829: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
60817          <idle>-0     (-----) [001] .n.1 82316.198834: cpu_idle: state=4294967295 cpu_id=1
60818          <idle>-0     (-----) [001] d..2 82316.198847: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
60819  surfaceflinger-8858  ( 8858) [003] d..2 82316.198860: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
60820 [email protected]   (  619) [001] .... 82316.198860: binder_transaction_received: transaction=1569902
60821 [email protected]   (  619) [001] ...1 82316.198911: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
60822           <...>-27634 (-----) [005] ...1 82316.198926: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
60823           <...>-27634 (-----) [005] ...1 82316.198935: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
60824           <...>-27634 (-----) [005] ...1 82316.198939: tracing_mark_write: E|27550
60825<...>-581 ( 571) [003] d..2 82316.198995: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60826           <...>-27634 (-----) [005] .... 82316.199002: binder_transaction: transaction=1569903 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
60827           <...>-27634 (-----) [005] .... 82316.199005: binder_transaction_alloc_buf: transaction=1569903 data_size=556 offsets_size=104
60828          <idle>-0     (-----) [003] d..1 82316.199012: cpu_idle: state=0 cpu_id=3
60829           <...>-27634 (-----) [005] ...2 82316.199020: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
60830           <...>-27634 (-----) [005] d..4 82316.199023: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60831  kworker/u16:15-1311  ( 1311) [002] d..2 82316.199029: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
60832           <...>-27634 (-----) [005] dn.5 82316.199033: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60833           <...>-27634 (-----) [005] d..2 82316.199041: sched_switch: prev_comm=id.nn.benchmark prev_pid=27634 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60834          <idle>-0     (-----) [002] d..1 82316.199045: cpu_idle: state=0 cpu_id=2
60835 [email protected]   (  619) [001] d.s1 82316.199048: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
60836<...>-5340 ( 788) [005] .... 82316.199051: binder_transaction_received: transaction=1569903
60837 [email protected]   (  619) [001] d.s2 82316.199066: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
60838 [email protected]   (  619) [001] ...1 82316.199075: tracing_mark_write: B|619|HWCSession::PresentDisplay::
60839<...>-5340 ( 788) [005] ...1 82316.199099: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
60840<...>-5340 ( 788) [005] d..2 82316.199147: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
60841<...>-5340 ( 788) [005] d..2 82316.199185: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27634 next_prio=110
60842 [email protected]   (  619) [001] d.h1 82316.199186: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
60843           <...>-27634 (-----) [005] d..2 82316.199207: sched_switch: prev_comm=id.nn.benchmark prev_pid=27634 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
60844          <idle>-0     (-----) [005] d..1 82316.199225: cpu_idle: state=0 cpu_id=5
60845 [email protected]   (  619) [001] ...1 82316.199267: tracing_mark_write: B|619|HWDeviceDRM::Commit::
60846 [email protected]   (  619) [001] ...1 82316.199281: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
60847<...>-142 ( 142) [000] d..2 82316.199320: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
60848<...>-142 ( 142) [000] dn.3 82316.199341: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
60849<...>-142 ( 142) [000] d..2 82316.199353: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
60850     kworker/0:1-25262 (25262) [000] d..3 82316.199364: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
60851     kworker/0:1-25262 (25262) [000] d..4 82316.199382: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
60852          <idle>-0     (-----) [002] .n.1 82316.199388: cpu_idle: state=4294967295 cpu_id=2
60853     kworker/0:1-25262 (25262) [000] d..2 82316.199397: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
60854          <idle>-0     (-----) [002] d..2 82316.199399: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
60855<...>-142 ( 142) [000] d..2 82316.199425: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
60856          <idle>-0     (-----) [000] d..1 82316.199451: cpu_idle: state=0 cpu_id=0
60857<...>-821 ( 821) [002] d..2 82316.199829: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60858          <idle>-0     (-----) [002] d..1 82316.199843: cpu_idle: state=0 cpu_id=2
60859 [email protected]   (  619) [001] d..2 82316.199911: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
60860 [email protected]   (  619) [001] d..3 82316.199933: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
60861          <idle>-0     (-----) [003] .n.1 82316.199940: cpu_idle: state=4294967295 cpu_id=3
60862          <idle>-0     (-----) [003] d..2 82316.199951: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
60863 [email protected]   (  619) [001] ...1 82316.200035: tracing_mark_write: E|619
60864 [email protected]   (  619) [001] ...1 82316.200041: tracing_mark_write: E|619
60865 [email protected]   (  619) [001] ...1 82316.200105: tracing_mark_write: E|619
60866 [email protected]   (  619) [001] ...1 82316.200153: tracing_mark_write: E|619
60867 [email protected]   (  619) [001] .... 82316.200167: binder_transaction: transaction=1569906 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
60868 [email protected]   (  619) [001] .... 82316.200172: binder_transaction_alloc_buf: transaction=1569906 data_size=576 offsets_size=112
60869 [email protected]   (  619) [001] d..2 82316.200191: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
60870 [email protected]   (  619) [001] d..3 82316.200216: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
60871 [email protected]   (  619) [001] .... 82316.200221: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
60872          <idle>-0     (-----) [002] .n.1 82316.200222: cpu_idle: state=4294967295 cpu_id=2
60873          <idle>-0     (-----) [002] d..2 82316.200232: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
60874  surfaceflinger-8858  ( 8858) [002] .... 82316.200241: binder_transaction_received: transaction=1569906
60875 [email protected]   (  619) [001] d..2 82316.200295: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
60876     ksoftirqd/1-18    (   18) [001] d.s2 82316.200312: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
60877     ksoftirqd/1-18    (   18) [001] d.s3 82316.200347: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
60878     ksoftirqd/1-18    (   18) [001] d.s3 82316.200353: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
60879     ksoftirqd/1-18    (   18) [001] d..2 82316.200366: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
60880<...>-87 ( 87) [001] d..2 82316.200409: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60881  surfaceflinger-8858  ( 8858) [002] d.h3 82316.200419: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60882          <idle>-0     (-----) [001] d..1 82316.200425: cpu_idle: state=0 cpu_id=1
60883  surfaceflinger-8858  ( 8858) [002] d.h4 82316.200441: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
60884  surfaceflinger-8858  ( 8858) [002] d.h3 82316.200500: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60885          <idle>-0     (-----) [005] dnh2 82316.200522: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60886          <idle>-0     (-----) [005] .n.1 82316.200527: cpu_idle: state=4294967295 cpu_id=5
60887          <idle>-0     (-----) [005] d..2 82316.200535: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60888<...>-5340 ( 788) [005] d..1 82316.200594: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
60889  surfaceflinger-8858  ( 8858) [002] d.h1 82316.200619: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
60890 crtc_commit:111-321   (  321) [003] d..2 82316.200654: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
60891          <idle>-0     (-----) [000] ...1 82316.200712: cpu_idle: state=4294967295 cpu_id=0
60892          <idle>-0     (-----) [000] d..1 82316.200717: cpu_idle: state=0 cpu_id=0
60893<...>-5340 ( 788) [005] d..2 82316.200759: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
60894  kworker/u16:15-1311  ( 1311) [003] d..2 82316.200761: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
60895          <idle>-0     (-----) [001] dnh2 82316.200780: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
60896<...>-5340 ( 788) [005] d..2 82316.200784: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
60897          <idle>-0     (-----) [001] .n.1 82316.200786: cpu_idle: state=4294967295 cpu_id=1
60898          <idle>-0     (-----) [005] d..1 82316.200797: cpu_idle: state=0 cpu_id=5
60899          <idle>-0     (-----) [001] d..2 82316.200798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
60900  surfaceflinger-8858  ( 8858) [002] d..2 82316.200805: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
60901 neuralnetworks@-13088 (  788) [003] d..2 82316.200817: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60902<...>-87 ( 87) [001] d..2 82316.200832: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
60903          <idle>-0     (-----) [003] d..1 82316.200833: cpu_idle: state=0 cpu_id=3
60904          <idle>-0     (-----) [001] d..1 82316.200843: cpu_idle: state=0 cpu_id=1
60905<...>-86 ( 86) [002] d..2 82316.200878: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
60906          <idle>-0     (-----) [002] d..1 82316.200893: cpu_idle: state=0 cpu_id=2
60907          <idle>-0     (-----) [003] d..2 82316.202176: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
60908          <idle>-0     (-----) [003] dn.3 82316.202190: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
60909          <idle>-0     (-----) [003] .n.1 82316.202194: cpu_idle: state=4294967295 cpu_id=3
60910          <idle>-0     (-----) [003] d..2 82316.202206: 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
60911     ksoftirqd/3-34    (   34) [003] d..2 82316.202239: 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
60912          <idle>-0     (-----) [003] d..1 82316.202249: cpu_idle: state=0 cpu_id=3
60913          <idle>-0     (-----) [002] d.h4 82316.202532: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60914          <idle>-0     (-----) [005] dnh2 82316.202554: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
60915          <idle>-0     (-----) [005] .n.1 82316.202558: cpu_idle: state=4294967295 cpu_id=5
60916          <idle>-0     (-----) [005] d..2 82316.202566: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
60917          <idle>-0     (-----) [002] ...1 82316.202570: cpu_idle: state=4294967295 cpu_id=2
60918          <idle>-0     (-----) [002] d..1 82316.202576: cpu_idle: state=0 cpu_id=2
60919<...>-5340 ( 788) [005] d..1 82316.202618: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
60920          <idle>-0     (-----) [003] dnh2 82316.202637: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
60921          <idle>-0     (-----) [003] .n.1 82316.202646: cpu_idle: state=4294967295 cpu_id=3
60922          <idle>-0     (-----) [003] d..2 82316.202656: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
60923<...>-5340 ( 788) [005] ...1 82316.202709: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
60924 neuralnetworks@-13088 (  788) [003] d..2 82316.202709: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
60925<...>-5340 ( 788) [005] ...1 82316.202713: tracing_mark_write: E|788
60926          <idle>-0     (-----) [003] d..1 82316.202721: cpu_idle: state=0 cpu_id=3
60927<...>-5340 ( 788) [005] .... 82316.202731: binder_transaction: transaction=1569907 dest_node=1569904 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
60928<...>-5340 ( 788) [005] .... 82316.202733: binder_transaction_alloc_buf: transaction=1569907 data_size=60 offsets_size=0
60929<...>-5340 ( 788) [005] d..4 82316.202737: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
60930<...>-5340 ( 788) [005] d..5 82316.202749: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
60931          <idle>-0     (-----) [004] .n.1 82316.202756: cpu_idle: state=4294967295 cpu_id=4
60932          <idle>-0     (-----) [004] d..2 82316.202764: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
60933           <...>-27571 (-----) [004] .... 82316.202769: binder_transaction_received: transaction=1569907
60934<...>-5340 ( 788) [005] ...1 82316.202774: tracing_mark_write: E|788
60935<...>-5340 ( 788) [005] .... 82316.202780: binder_transaction: transaction=1569908 dest_node=0 dest_proc=27550 dest_thread=27634 reply=1 flags=0x0 code=0x0
60936<...>-5340 ( 788) [005] .... 82316.202782: binder_transaction_alloc_buf: transaction=1569908 data_size=8 offsets_size=0
60937<...>-5340 ( 788) [005] d..2 82316.202784: sched_waking: comm=id.nn.benchmark pid=27634 prio=110 target_cpu=005
60938           <...>-27571 (-----) [004] ...1 82316.202787: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
60939<...>-5340 ( 788) [005] d..3 82316.202791: sched_wakeup: comm=id.nn.benchmark pid=27634 prio=110 target_cpu=005
60940<...>-5340 ( 788) [005] .... 82316.202793: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
60941           <...>-27571 (-----) [004] ...1 82316.202794: tracing_mark_write: E|27550
60942           <...>-27571 (-----) [004] d..2 82316.202822: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60943          <idle>-0     (-----) [004] d..1 82316.202830: cpu_idle: state=0 cpu_id=4
60944<...>-5340 ( 788) [005] d..2 82316.202834: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27634 next_prio=110
60945           <...>-27634 (-----) [005] .... 82316.202844: binder_transaction_received: transaction=1569908
60946           <...>-27634 (-----) [005] ...1 82316.202882: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
60947           <...>-27634 (-----) [005] ...1 82316.202888: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
60948           <...>-27634 (-----) [005] ...1 82316.202915: tracing_mark_write: E|27550
60949           <...>-27634 (-----) [005] ...1 82316.202918: tracing_mark_write: E|27550
60950           <...>-27634 (-----) [005] ...1 82316.202922: tracing_mark_write: E|27550
60951           <...>-27634 (-----) [005] ...1 82316.203112: tracing_mark_write: E|27550
60952           <...>-27634 (-----) [005] d..1 82316.203125: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60953           <...>-27634 (-----) [005] d..2 82316.203140: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60954          <idle>-0     (-----) [004] .n.1 82316.203146: cpu_idle: state=4294967295 cpu_id=4
60955          <idle>-0     (-----) [004] d..2 82316.203152: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
60956           <...>-27550 (-----) [004] d..2 82316.203174: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60957          <idle>-0     (-----) [004] d..1 82316.203183: cpu_idle: state=0 cpu_id=4
60958           <...>-27634 (-----) [005] d..1 82316.203235: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60959           <...>-27634 (-----) [005] d..2 82316.203244: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
60960          <idle>-0     (-----) [004] .n.1 82316.203249: cpu_idle: state=4294967295 cpu_id=4
60961          <idle>-0     (-----) [004] d..2 82316.203257: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
60962           <...>-27634 (-----) [005] d..2 82316.203287: sched_switch: prev_comm=id.nn.benchmark prev_pid=27634 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
60963           <...>-27550 (-----) [004] ...1 82316.203290: tracing_mark_write: E|27550
60964           <...>-27550 (-----) [004] ...1 82316.203295: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
60965           <...>-27550 (-----) [004] ...1 82316.203301: tracing_mark_write: E|27550
60966           <...>-27550 (-----) [004] ...1 82316.203304: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
60967          <idle>-0     (-----) [005] d..1 82316.203307: cpu_idle: state=0 cpu_id=5
60968           <...>-27550 (-----) [004] ...1 82316.203309: tracing_mark_write: E|27550
60969           <...>-27550 (-----) [004] ...1 82316.203313: tracing_mark_write: E|27550
60970           <...>-27550 (-----) [004] ...1 82316.203426: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
60971           <...>-27550 (-----) [004] ...1 82316.203483: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
60972           <...>-27550 (-----) [004] ...1 82316.203487: tracing_mark_write: E|27550
60973           <...>-27550 (-----) [004] ...1 82316.203491: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
60974           <...>-27550 (-----) [004] ...1 82316.203497: tracing_mark_write: E|27550
60975           <...>-27550 (-----) [004] ...1 82316.203500: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
60976           <...>-27550 (-----) [004] ...1 82316.203504: tracing_mark_write: E|27550
60977           <...>-27550 (-----) [004] ...1 82316.203508: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
60978          <idle>-0     (-----) [005] .n.1 82316.203601: cpu_idle: state=4294967295 cpu_id=5
60979           <...>-27550 (-----) [004] ...1 82316.203602: tracing_mark_write: E|27550
60980           <...>-27550 (-----) [004] ...1 82316.203606: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
60981          <idle>-0     (-----) [005] d..2 82316.203610: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27635 next_prio=110
60982           <...>-27550 (-----) [004] d..2 82316.203623: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
60983          <idle>-0     (-----) [004] d..1 82316.203637: cpu_idle: state=0 cpu_id=4
60984           <...>-27635 (-----) [005] ...1 82316.203670: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
60985           <...>-27635 (-----) [005] ...1 82316.203685: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
60986           <...>-27635 (-----) [005] ...1 82316.203689: tracing_mark_write: E|27550
60987           <...>-27635 (-----) [005] .... 82316.203711: binder_transaction: transaction=1569909 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
60988           <...>-27635 (-----) [005] .... 82316.203714: binder_transaction_alloc_buf: transaction=1569909 data_size=48 offsets_size=0
60989           <...>-27635 (-----) [005] ...2 82316.203718: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
60990           <...>-27635 (-----) [005] d..4 82316.203720: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
60991           <...>-27635 (-----) [005] dn.5 82316.203731: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
60992           <...>-27635 (-----) [005] d..2 82316.203737: sched_switch: prev_comm=id.nn.benchmark prev_pid=27635 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
60993<...>-770 ( 770) [005] .... 82316.203747: binder_transaction_received: transaction=1569909
60994<...>-770 ( 770) [005] ...1 82316.203772: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
60995<...>-770 ( 770) [005] d..2 82316.203859: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
60996          <idle>-0     (-----) [000] dnh2 82316.203897: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
60997          <idle>-0     (-----) [000] .n.1 82316.203902: cpu_idle: state=4294967295 cpu_id=0
60998<...>-770 ( 770) [005] ...1 82316.203911: tracing_mark_write: E|770
60999          <idle>-0     (-----) [000] d..2 82316.203916: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
61000<...>-770 ( 770) [005] .... 82316.203919: binder_transaction: transaction=1569910 dest_node=0 dest_proc=27550 dest_thread=27635 reply=1 flags=0x0 code=0x0
61001<...>-770 ( 770) [005] .... 82316.203921: binder_transaction_alloc_buf: transaction=1569910 data_size=168 offsets_size=32
61002<...>-770 ( 770) [005] .... 82316.203928: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
61003<...>-770 ( 770) [005] d..2 82316.203963: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27635 next_prio=110
61004           <...>-27635 (-----) [005] .... 82316.203974: binder_transaction_received: transaction=1569910
61005<...>-581 ( 571) [000] d..2 82316.204004: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61006          <idle>-0     (-----) [000] d..1 82316.204019: cpu_idle: state=0 cpu_id=0
61007           <...>-27635 (-----) [005] ...1 82316.204046: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
61008           <...>-27635 (-----) [005] ...1 82316.204051: tracing_mark_write: E|27550
61009           <...>-27635 (-----) [005] .... 82316.204065: binder_transaction: transaction=1569911 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
61010           <...>-27635 (-----) [005] .... 82316.204068: binder_transaction_alloc_buf: transaction=1569911 data_size=48 offsets_size=0
61011           <...>-27635 (-----) [005] ...2 82316.204070: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
61012           <...>-27635 (-----) [005] d..4 82316.204072: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
61013           <...>-27635 (-----) [005] dn.5 82316.204081: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
61014           <...>-27635 (-----) [005] d..2 82316.204088: sched_switch: prev_comm=id.nn.benchmark prev_pid=27635 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
61015<...>-770 ( 770) [005] .... 82316.204096: binder_transaction_received: transaction=1569911
61016          <idle>-0     (-----) [003] ...1 82316.204103: cpu_idle: state=4294967295 cpu_id=3
61017          <idle>-0     (-----) [003] d..1 82316.204107: cpu_idle: state=0 cpu_id=3
61018<...>-770 ( 770) [005] ...1 82316.204113: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
61019<...>-770 ( 770) [005] d..2 82316.204169: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
61020          <idle>-0     (-----) [000] dnh2 82316.204192: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
61021          <idle>-0     (-----) [000] .n.1 82316.204198: cpu_idle: state=4294967295 cpu_id=0
61022<...>-770 ( 770) [005] ...1 82316.204202: tracing_mark_write: E|770
61023          <idle>-0     (-----) [000] d..2 82316.204209: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
61024<...>-770 ( 770) [005] .... 82316.204209: binder_transaction: transaction=1569912 dest_node=0 dest_proc=27550 dest_thread=27635 reply=1 flags=0x0 code=0x0
61025<...>-770 ( 770) [005] .... 82316.204212: binder_transaction_alloc_buf: transaction=1569912 data_size=168 offsets_size=32
61026<...>-770 ( 770) [005] .... 82316.204218: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
61027<...>-770 ( 770) [005] d..2 82316.204251: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27635 next_prio=110
61028           <...>-27635 (-----) [005] .... 82316.204261: binder_transaction_received: transaction=1569912
61029<...>-581 ( 571) [000] d..2 82316.204268: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61030          <idle>-0     (-----) [000] d..1 82316.204281: cpu_idle: state=0 cpu_id=0
61031           <...>-27635 (-----) [005] ...1 82316.204529: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
61032           <...>-27635 (-----) [005] ...1 82316.204540: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
61033           <...>-27635 (-----) [005] ...1 82316.204544: tracing_mark_write: E|27550
61034           <...>-27635 (-----) [005] .... 82316.204603: binder_transaction: transaction=1569913 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
61035           <...>-27635 (-----) [005] .... 82316.204606: binder_transaction_alloc_buf: transaction=1569913 data_size=556 offsets_size=104
61036           <...>-27635 (-----) [005] ...2 82316.204620: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
61037           <...>-27635 (-----) [005] d..4 82316.204622: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61038           <...>-27635 (-----) [005] dn.5 82316.204633: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61039           <...>-27635 (-----) [005] d..2 82316.204640: sched_switch: prev_comm=id.nn.benchmark prev_pid=27635 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61040<...>-5340 ( 788) [005] .... 82316.204649: binder_transaction_received: transaction=1569913
61041<...>-5340 ( 788) [005] ...1 82316.204694: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
61042<...>-5340 ( 788) [005] d..2 82316.204736: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
61043<...>-5340 ( 788) [005] d..2 82316.204772: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27635 next_prio=110
61044          <idle>-0     (-----) [000] dnh2 82316.204775: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61045          <idle>-0     (-----) [000] .n.1 82316.204780: cpu_idle: state=4294967295 cpu_id=0
61046          <idle>-0     (-----) [000] d..2 82316.204791: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
61047           <...>-27635 (-----) [005] d..2 82316.204794: sched_switch: prev_comm=id.nn.benchmark prev_pid=27635 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61048          <idle>-0     (-----) [005] d..1 82316.204811: cpu_idle: state=0 cpu_id=5
61049<...>-87 ( 87) [000] d..2 82316.204830: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61050          <idle>-0     (-----) [002] d.h4 82316.204838: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61051          <idle>-0     (-----) [000] d..1 82316.204842: cpu_idle: state=0 cpu_id=0
61052          <idle>-0     (-----) [002] dnh5 82316.204854: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61053          <idle>-0     (-----) [002] .n.1 82316.204862: cpu_idle: state=4294967295 cpu_id=2
61054          <idle>-0     (-----) [002] d..2 82316.204874: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
61055<...>-86 ( 86) [002] d..2 82316.204907: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61056          <idle>-0     (-----) [002] d.h5 82316.204927: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61057          <idle>-0     (-----) [005] dnh2 82316.204948: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61058          <idle>-0     (-----) [005] .n.1 82316.204952: cpu_idle: state=4294967295 cpu_id=5
61059          <idle>-0     (-----) [005] d..2 82316.204960: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61060          <idle>-0     (-----) [002] d..1 82316.204966: cpu_idle: state=0 cpu_id=2
61061<...>-5340 ( 788) [005] d..1 82316.205012: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
61062          <idle>-0     (-----) [000] dnh2 82316.205048: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61063          <idle>-0     (-----) [000] .n.1 82316.205054: cpu_idle: state=4294967295 cpu_id=0
61064          <idle>-0     (-----) [000] d..2 82316.205063: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
61065 neuralnetworks@-13088 (  788) [000] d..2 82316.205110: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61066          <idle>-0     (-----) [002] d.s2 82316.205134: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
61067<...>-5340 ( 788) [005] d.s2 82316.205138: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
61068<...>-5340 ( 788) [005] d.s3 82316.205149: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
61069          <idle>-0     (-----) [002] d.s3 82316.205168: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
61070<...>-5340 ( 788) [005] d.s2 82316.205172: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
61071          <idle>-0     (-----) [000] d..2 82316.205178: 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
61072     rcu_preempt-7     (    7) [000] d..2 82316.205191: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
61073          <idle>-0     (-----) [001] dnh2 82316.205206: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
61074          <idle>-0     (-----) [001] .n.1 82316.205211: cpu_idle: state=4294967295 cpu_id=1
61075          <idle>-0     (-----) [002] ...1 82316.205212: cpu_idle: state=4294967295 cpu_id=2
61076          <idle>-0     (-----) [002] d..1 82316.205219: cpu_idle: state=0 cpu_id=2
61077          <idle>-0     (-----) [001] d..2 82316.205227: 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
61078<...>-8 ( 8) [001] d..2 82316.205234: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
61079     rcu_preempt-7     (    7) [000] d..3 82316.205237: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
61080     rcu_preempt-7     (    7) [000] d..2 82316.205243: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
61081<...>-5340 ( 788) [005] d..2 82316.205261: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61082<...>-8 ( 8) [001] d..3 82316.205286: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
61083<...>-5340 ( 788) [005] d..2 82316.205287: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
61084     rcu_preempt-7     (    7) [000] d..3 82316.205293: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
61085     rcu_preempt-7     (    7) [000] d.h2 82316.205302: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61086<...>-8 ( 8) [001] d..2 82316.205306: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
61087     kworker/5:0-23997 (23997) [005] d..2 82316.205314: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61088     rcu_preempt-7     (    7) [000] d..2 82316.205320: 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
61089         rcuop/2-29    (   29) [000] d..2 82316.205326: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
61090          <idle>-0     (-----) [005] d..1 82316.205326: cpu_idle: state=0 cpu_id=5
61091         rcuop/2-29    (   29) [000] d..3 82316.205344: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
61092         rcuop/2-29    (   29) [000] d..2 82316.205356: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
61093         rcuop/0-10    (   10) [001] d..2 82316.205370: 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
61094<...>-46 ( 46) [000] d..2 82316.205387: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
61095<...>-46 ( 46) [000] d..3 82316.205408: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
61096         rcuop/3-37    (   37) [001] d..2 82316.205420: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
61097<...>-8 ( 8) [001] d..2 82316.205433: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
61098<...>-46 ( 46) [000] d..2 82316.205435: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61099          <idle>-0     (-----) [000] d..1 82316.205449: cpu_idle: state=0 cpu_id=0
61100<...>-87 ( 87) [001] d..2 82316.205469: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61101          <idle>-0     (-----) [002] d.h4 82316.205471: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61102          <idle>-0     (-----) [002] dnh5 82316.205481: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61103          <idle>-0     (-----) [001] d..1 82316.205482: cpu_idle: state=0 cpu_id=1
61104          <idle>-0     (-----) [002] .n.1 82316.205488: cpu_idle: state=4294967295 cpu_id=2
61105          <idle>-0     (-----) [002] d..2 82316.205500: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
61106<...>-86 ( 86) [002] d..2 82316.205533: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61107          <idle>-0     (-----) [002] d..1 82316.205545: cpu_idle: state=0 cpu_id=2
61108          <idle>-0     (-----) [000] d.h5 82316.205819: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
61109          <idle>-0     (-----) [000] d.h6 82316.205838: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
61110          <idle>-0     (-----) [000] d.h5 82316.205842: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
61111          <idle>-0     (-----) [003] .n.1 82316.205843: cpu_idle: state=4294967295 cpu_id=3
61112          <idle>-0     (-----) [000] dnh6 82316.205857: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
61113          <idle>-0     (-----) [003] d..2 82316.205858: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
61114          <idle>-0     (-----) [000] .n.1 82316.205872: cpu_idle: state=4294967295 cpu_id=0
61115          <idle>-0     (-----) [000] d..2 82316.205882: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
61116  crtc_event:111-322   (  322) [003] d..2 82316.205893: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61117          <idle>-0     (-----) [003] d..1 82316.205902: cpu_idle: state=0 cpu_id=3
61118 crtc_commit:111-321   (  321) [000] d..2 82316.206028: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
61119          <idle>-0     (-----) [000] d..1 82316.206038: cpu_idle: state=0 cpu_id=0
61120          <idle>-0     (-----) [002] d.h4 82316.207208: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61121          <idle>-0     (-----) [005] dnh2 82316.207229: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61122          <idle>-0     (-----) [005] .n.1 82316.207233: cpu_idle: state=4294967295 cpu_id=5
61123          <idle>-0     (-----) [005] d..2 82316.207241: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61124          <idle>-0     (-----) [002] ...1 82316.207243: cpu_idle: state=4294967295 cpu_id=2
61125          <idle>-0     (-----) [002] d..1 82316.207249: cpu_idle: state=0 cpu_id=2
61126<...>-5340 ( 788) [005] d..1 82316.207291: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61127          <idle>-0     (-----) [000] dnh2 82316.207319: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61128          <idle>-0     (-----) [000] .n.1 82316.207325: cpu_idle: state=4294967295 cpu_id=0
61129          <idle>-0     (-----) [000] d..2 82316.207333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
61130<...>-5340 ( 788) [005] ...1 82316.207383: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
61131<...>-5340 ( 788) [005] ...1 82316.207387: tracing_mark_write: E|788
61132 neuralnetworks@-13088 (  788) [000] d..2 82316.207388: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61133          <idle>-0     (-----) [000] d..1 82316.207397: cpu_idle: state=0 cpu_id=0
61134<...>-5340 ( 788) [005] .... 82316.207402: binder_transaction: transaction=1569916 dest_node=1569914 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
61135<...>-5340 ( 788) [005] .... 82316.207405: binder_transaction_alloc_buf: transaction=1569916 data_size=60 offsets_size=0
61136<...>-5340 ( 788) [005] d..4 82316.207408: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
61137<...>-5340 ( 788) [005] d..5 82316.207421: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
61138          <idle>-0     (-----) [004] .n.1 82316.207426: cpu_idle: state=4294967295 cpu_id=4
61139          <idle>-0     (-----) [004] d..2 82316.207435: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
61140           <...>-27571 (-----) [004] .... 82316.207440: binder_transaction_received: transaction=1569916
61141<...>-5340 ( 788) [005] ...1 82316.207443: tracing_mark_write: E|788
61142<...>-5340 ( 788) [005] .... 82316.207449: binder_transaction: transaction=1569917 dest_node=0 dest_proc=27550 dest_thread=27635 reply=1 flags=0x0 code=0x0
61143<...>-5340 ( 788) [005] .... 82316.207451: binder_transaction_alloc_buf: transaction=1569917 data_size=8 offsets_size=0
61144<...>-5340 ( 788) [005] d..2 82316.207453: sched_waking: comm=id.nn.benchmark pid=27635 prio=110 target_cpu=005
61145           <...>-27571 (-----) [004] ...1 82316.207457: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
61146<...>-5340 ( 788) [005] d..3 82316.207460: sched_wakeup: comm=id.nn.benchmark pid=27635 prio=110 target_cpu=005
61147<...>-5340 ( 788) [005] .... 82316.207462: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
61148           <...>-27571 (-----) [004] ...1 82316.207463: tracing_mark_write: E|27550
61149           <...>-27571 (-----) [004] d..2 82316.207490: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61150          <idle>-0     (-----) [004] d..1 82316.207498: cpu_idle: state=0 cpu_id=4
61151<...>-5340 ( 788) [005] d..2 82316.207503: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27635 next_prio=110
61152           <...>-27635 (-----) [005] .... 82316.207512: binder_transaction_received: transaction=1569917
61153           <...>-27635 (-----) [005] ...1 82316.207547: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
61154           <...>-27635 (-----) [005] ...1 82316.207553: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
61155           <...>-27635 (-----) [005] ...1 82316.207579: tracing_mark_write: E|27550
61156           <...>-27635 (-----) [005] ...1 82316.207582: tracing_mark_write: E|27550
61157           <...>-27635 (-----) [005] ...1 82316.207587: tracing_mark_write: E|27550
61158           <...>-27635 (-----) [005] ...1 82316.207771: tracing_mark_write: E|27550
61159           <...>-27635 (-----) [005] d..1 82316.207784: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61160           <...>-27635 (-----) [005] d..2 82316.207800: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61161          <idle>-0     (-----) [004] .n.1 82316.207804: cpu_idle: state=4294967295 cpu_id=4
61162          <idle>-0     (-----) [004] d..2 82316.207811: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
61163           <...>-27550 (-----) [004] d..2 82316.207830: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61164          <idle>-0     (-----) [004] d..1 82316.207839: cpu_idle: state=0 cpu_id=4
61165           <...>-27635 (-----) [005] d..1 82316.207885: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61166           <...>-27635 (-----) [005] d..2 82316.207894: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61167          <idle>-0     (-----) [004] .n.1 82316.207899: cpu_idle: state=4294967295 cpu_id=4
61168          <idle>-0     (-----) [004] d..2 82316.207907: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
61169           <...>-27635 (-----) [005] d..2 82316.207932: sched_switch: prev_comm=id.nn.benchmark prev_pid=27635 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
61170           <...>-27550 (-----) [004] ...1 82316.207939: tracing_mark_write: E|27550
61171           <...>-27550 (-----) [004] ...1 82316.207943: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
61172           <...>-27550 (-----) [004] ...1 82316.207949: tracing_mark_write: E|27550
61173          <idle>-0     (-----) [005] d..1 82316.207952: cpu_idle: state=0 cpu_id=5
61174           <...>-27550 (-----) [004] ...1 82316.207953: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
61175           <...>-27550 (-----) [004] ...1 82316.207957: tracing_mark_write: E|27550
61176           <...>-27550 (-----) [004] ...1 82316.207961: tracing_mark_write: E|27550
61177           <...>-27550 (-----) [004] ...1 82316.208074: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
61178           <...>-27550 (-----) [004] ...1 82316.208152: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
61179           <...>-27550 (-----) [004] ...1 82316.208157: tracing_mark_write: E|27550
61180          <idle>-0     (-----) [000] d.h5 82316.208157: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
61181           <...>-27550 (-----) [004] ...1 82316.208160: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
61182           <...>-27550 (-----) [004] ...1 82316.208165: tracing_mark_write: E|27550
61183          <idle>-0     (-----) [000] dnh6 82316.208168: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
61184           <...>-27550 (-----) [004] ...1 82316.208169: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
61185           <...>-27550 (-----) [004] ...1 82316.208173: tracing_mark_write: E|27550
61186           <...>-27550 (-----) [004] ...1 82316.208176: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
61187          <idle>-0     (-----) [000] .n.1 82316.208179: cpu_idle: state=4294967295 cpu_id=0
61188          <idle>-0     (-----) [000] d..2 82316.208186: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
61189 crtc_commit:111-321   (  321) [000] d..2 82316.208256: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61190          <idle>-0     (-----) [005] .n.1 82316.208261: cpu_idle: state=4294967295 cpu_id=5
61191           <...>-27550 (-----) [004] ...1 82316.208263: tracing_mark_write: E|27550
61192          <idle>-0     (-----) [000] d..1 82316.208264: cpu_idle: state=0 cpu_id=0
61193           <...>-27550 (-----) [004] ...1 82316.208267: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
61194          <idle>-0     (-----) [005] d..2 82316.208269: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27636 next_prio=110
61195           <...>-27550 (-----) [004] d..2 82316.208284: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61196          <idle>-0     (-----) [004] d..1 82316.208298: cpu_idle: state=0 cpu_id=4
61197           <...>-27636 (-----) [005] ...1 82316.208328: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
61198           <...>-27636 (-----) [005] ...1 82316.208342: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
61199           <...>-27636 (-----) [005] ...1 82316.208346: tracing_mark_write: E|27550
61200           <...>-27636 (-----) [005] .... 82316.208367: binder_transaction: transaction=1569918 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
61201           <...>-27636 (-----) [005] .... 82316.208370: binder_transaction_alloc_buf: transaction=1569918 data_size=48 offsets_size=0
61202           <...>-27636 (-----) [005] ...2 82316.208373: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
61203           <...>-27636 (-----) [005] d..4 82316.208376: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
61204           <...>-27636 (-----) [005] dn.5 82316.208387: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
61205           <...>-27636 (-----) [005] d..2 82316.208393: sched_switch: prev_comm=id.nn.benchmark prev_pid=27636 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
61206<...>-770 ( 770) [005] .... 82316.208403: binder_transaction_received: transaction=1569918
61207<...>-770 ( 770) [005] ...1 82316.208423: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
61208          <idle>-0     (-----) [000] d.h5 82316.208445: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
61209          <idle>-0     (-----) [000] d.h6 82316.208460: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
61210          <idle>-0     (-----) [003] .n.1 82316.208466: cpu_idle: state=4294967295 cpu_id=3
61211<...>-770 ( 770) [005] d.s2 82316.208466: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
61212          <idle>-0     (-----) [003] d..2 82316.208478: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
61213  crtc_event:111-322   (  322) [003] d.h1 82316.208489: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
61214          <idle>-0     (-----) [000] d.s3 82316.208499: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
61215  crtc_event:111-322   (  322) [003] d..2 82316.208503: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
61216          <idle>-0     (-----) [000] dns4 82316.208521: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
61217          <idle>-0     (-----) [000] .n.1 82316.208532: cpu_idle: state=4294967295 cpu_id=0
61218          <idle>-0     (-----) [000] d..2 82316.208539: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
61219<...>-770 ( 770) [005] d..2 82316.208558: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
61220  crtc_event:111-322   (  322) [000] d..2 82316.208568: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61221          <idle>-0     (-----) [000] dnh3 82316.208588: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
61222<...>-770 ( 770) [005] ...1 82316.208595: tracing_mark_write: E|770
61223<...>-770 ( 770) [005] .... 82316.208603: binder_transaction: transaction=1569919 dest_node=0 dest_proc=27550 dest_thread=27636 reply=1 flags=0x0 code=0x0
61224          <idle>-0     (-----) [000] d..2 82316.208605: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
61225<...>-770 ( 770) [005] .... 82316.208606: binder_transaction_alloc_buf: transaction=1569919 data_size=168 offsets_size=32
61226<...>-770 ( 770) [005] .... 82316.208612: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
61227<...>-770 ( 770) [005] d..2 82316.208647: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27636 next_prio=110
61228           <...>-27636 (-----) [005] .... 82316.208658: binder_transaction_received: transaction=1569919
61229<...>-581 ( 571) [000] d..2 82316.208683: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61230          <idle>-0     (-----) [000] d..1 82316.208694: cpu_idle: state=0 cpu_id=0
61231           <...>-27636 (-----) [005] ...1 82316.208726: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
61232           <...>-27636 (-----) [005] ...1 82316.208731: tracing_mark_write: E|27550
61233           <...>-27636 (-----) [005] .... 82316.208746: binder_transaction: transaction=1569920 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
61234           <...>-27636 (-----) [005] .... 82316.208748: binder_transaction_alloc_buf: transaction=1569920 data_size=48 offsets_size=0
61235           <...>-27636 (-----) [005] ...2 82316.208751: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
61236           <...>-27636 (-----) [005] d..4 82316.208753: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
61237           <...>-27636 (-----) [005] dn.5 82316.208763: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
61238           <...>-27636 (-----) [005] d..2 82316.208769: sched_switch: prev_comm=id.nn.benchmark prev_pid=27636 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
61239<...>-770 ( 770) [005] .... 82316.208777: binder_transaction_received: transaction=1569920
61240  kworker/u16:15-1311  ( 1311) [003] d..2 82316.208786: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
61241<...>-770 ( 770) [005] ...1 82316.208793: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
61242          <idle>-0     (-----) [003] d..1 82316.208798: cpu_idle: state=0 cpu_id=3
61243          <idle>-0     (-----) [001] d.s3 82316.208817: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
61244          <idle>-0     (-----) [001] d.s4 82316.208827: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
61245          <idle>-0     (-----) [001] d.s4 82316.208835: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
61246          <idle>-0     (-----) [003] .n.1 82316.208841: cpu_idle: state=4294967295 cpu_id=3
61247          <idle>-0     (-----) [001] ...1 82316.208844: cpu_idle: state=4294967295 cpu_id=1
61248          <idle>-0     (-----) [001] d..1 82316.208849: cpu_idle: state=0 cpu_id=1
61249<...>-770 ( 770) [005] d..2 82316.208850: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
61250          <idle>-0     (-----) [003] d..2 82316.208852: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
61251          <idle>-0     (-----) [000] dnh2 82316.208872: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
61252          <idle>-0     (-----) [000] .n.1 82316.208878: cpu_idle: state=4294967295 cpu_id=0
61253          <idle>-0     (-----) [000] d..2 82316.208886: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
61254<...>-770 ( 770) [005] ...1 82316.208896: tracing_mark_write: E|770
61255<...>-770 ( 770) [005] .... 82316.208904: binder_transaction: transaction=1569921 dest_node=0 dest_proc=27550 dest_thread=27636 reply=1 flags=0x0 code=0x0
61256<...>-770 ( 770) [005] .... 82316.208906: binder_transaction_alloc_buf: transaction=1569921 data_size=168 offsets_size=32
61257<...>-770 ( 770) [005] .... 82316.208912: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
61258<...>-770 ( 770) [005] d..2 82316.208945: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27636 next_prio=110
61259  kworker/u16:15-1311  ( 1311) [003] .... 82316.208950: clk_set_rate: l3_cluster0_vote_clk 300000000
61260  kworker/u16:15-1311  ( 1311) [003] .... 82316.208956: clk_set_rate: l3_clk 576000000
61261           <...>-27636 (-----) [005] .... 82316.208956: binder_transaction_received: transaction=1569921
61262<...>-581 ( 571) [000] d..2 82316.208956: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61263          <idle>-0     (-----) [000] d..1 82316.208966: cpu_idle: state=0 cpu_id=0
61264  kworker/u16:15-1311  ( 1311) [003] d..2 82316.209012: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61265          <idle>-0     (-----) [003] d..1 82316.209024: cpu_idle: state=0 cpu_id=3
61266           <...>-27636 (-----) [005] ...1 82316.209242: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
61267           <...>-27636 (-----) [005] ...1 82316.209252: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
61268           <...>-27636 (-----) [005] ...1 82316.209255: tracing_mark_write: E|27550
61269           <...>-27636 (-----) [005] .... 82316.209318: binder_transaction: transaction=1569922 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
61270           <...>-27636 (-----) [005] .... 82316.209321: binder_transaction_alloc_buf: transaction=1569922 data_size=556 offsets_size=104
61271           <...>-27636 (-----) [005] ...2 82316.209335: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
61272           <...>-27636 (-----) [005] d..4 82316.209338: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61273           <...>-27636 (-----) [005] dn.5 82316.209349: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61274           <...>-27636 (-----) [005] d..2 82316.209356: sched_switch: prev_comm=id.nn.benchmark prev_pid=27636 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61275<...>-5340 ( 788) [005] .... 82316.209366: binder_transaction_received: transaction=1569922
61276<...>-5340 ( 788) [005] ...1 82316.209412: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
61277<...>-5340 ( 788) [005] d..2 82316.209458: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
61278<...>-5340 ( 788) [005] d..2 82316.209493: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27636 next_prio=110
61279          <idle>-0     (-----) [000] dnh2 82316.209496: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61280          <idle>-0     (-----) [000] .n.1 82316.209502: cpu_idle: state=4294967295 cpu_id=0
61281          <idle>-0     (-----) [000] d..2 82316.209510: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
61282           <...>-27636 (-----) [005] d..2 82316.209517: sched_switch: prev_comm=id.nn.benchmark prev_pid=27636 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61283          <idle>-0     (-----) [005] d..1 82316.209535: cpu_idle: state=0 cpu_id=5
61284<...>-87 ( 87) [000] d..2 82316.209551: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61285          <idle>-0     (-----) [002] d.h4 82316.209559: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61286          <idle>-0     (-----) [000] d..1 82316.209559: cpu_idle: state=0 cpu_id=0
61287          <idle>-0     (-----) [002] dnh5 82316.209573: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61288          <idle>-0     (-----) [002] .n.1 82316.209580: cpu_idle: state=4294967295 cpu_id=2
61289          <idle>-0     (-----) [002] d..2 82316.209593: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
61290<...>-86 ( 86) [002] d..2 82316.209625: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61291          <idle>-0     (-----) [002] d.h5 82316.209645: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61292          <idle>-0     (-----) [005] dnh2 82316.209666: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61293          <idle>-0     (-----) [005] .n.1 82316.209670: cpu_idle: state=4294967295 cpu_id=5
61294          <idle>-0     (-----) [005] d..2 82316.209678: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61295          <idle>-0     (-----) [002] d..1 82316.209688: cpu_idle: state=0 cpu_id=2
61296<...>-5340 ( 788) [005] d..1 82316.209731: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61297          <idle>-0     (-----) [000] dnh2 82316.209756: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61298          <idle>-0     (-----) [000] .n.1 82316.209762: cpu_idle: state=4294967295 cpu_id=0
61299          <idle>-0     (-----) [000] d..2 82316.209769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
61300 neuralnetworks@-13088 (  788) [000] d..2 82316.209812: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61301          <idle>-0     (-----) [000] d..1 82316.209820: cpu_idle: state=0 cpu_id=0
61302<...>-5340 ( 788) [005] d..2 82316.209877: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61303          <idle>-0     (-----) [000] dnh2 82316.209898: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61304<...>-5340 ( 788) [005] d..2 82316.209902: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61305          <idle>-0     (-----) [000] .n.1 82316.209903: cpu_idle: state=4294967295 cpu_id=0
61306          <idle>-0     (-----) [000] d..2 82316.209911: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
61307          <idle>-0     (-----) [005] d..1 82316.209916: cpu_idle: state=0 cpu_id=5
61308<...>-87 ( 87) [000] d..2 82316.209947: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61309          <idle>-0     (-----) [002] d.h4 82316.209948: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61310          <idle>-0     (-----) [000] d..1 82316.209954: cpu_idle: state=0 cpu_id=0
61311          <idle>-0     (-----) [002] dnh5 82316.209959: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61312          <idle>-0     (-----) [002] .n.1 82316.209966: cpu_idle: state=4294967295 cpu_id=2
61313          <idle>-0     (-----) [002] d..2 82316.209977: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
61314<...>-86 ( 86) [002] d..2 82316.210009: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61315          <idle>-0     (-----) [002] d..1 82316.210020: cpu_idle: state=0 cpu_id=2
61316          <idle>-0     (-----) [005] ...1 82316.210239: cpu_idle: state=4294967295 cpu_id=5
61317          <idle>-0     (-----) [005] d..1 82316.210243: cpu_idle: state=0 cpu_id=5
61318          <idle>-0     (-----) [003] d.h2 82316.210305: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
61319          <idle>-0     (-----) [003] dnh3 82316.210320: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
61320          <idle>-0     (-----) [003] .n.1 82316.210328: cpu_idle: state=4294967295 cpu_id=3
61321          <idle>-0     (-----) [003] d..2 82316.210338: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
61322        DispSync-8879  ( 8858) [003] d..1 82316.210363: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
61323        DispSync-8879  ( 8858) [003] d..2 82316.210379: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
61324          <idle>-0     (-----) [001] .n.1 82316.210384: cpu_idle: state=4294967295 cpu_id=1
61325          <idle>-0     (-----) [001] d..2 82316.210395: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
61326        DispSync-8879  ( 8858) [003] d..2 82316.210412: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61327          <idle>-0     (-----) [003] d..1 82316.210423: cpu_idle: state=0 cpu_id=3
61328  appEventThread-8881  ( 8858) [001] d..3 82316.210464: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
61329  appEventThread-8881  ( 8858) [001] d..4 82316.210492: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
61330          <idle>-0     (-----) [000] .n.1 82316.210497: cpu_idle: state=4294967295 cpu_id=0
61331          <idle>-0     (-----) [000] d..2 82316.210506: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
61332  appEventThread-8881  ( 8858) [001] d..2 82316.210536: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61333          <idle>-0     (-----) [001] d..1 82316.210547: cpu_idle: state=0 cpu_id=1
61334<...>-9105 ( 9105) [000] .... 82316.210865: binder_transaction: transaction=1569925 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
61335<...>-9105 ( 9105) [000] .... 82316.210871: binder_transaction_alloc_buf: transaction=1569925 data_size=80 offsets_size=0
61336<...>-9105 ( 9105) [000] d..4 82316.210878: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
61337<...>-9105 ( 9105) [000] d..5 82316.210909: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
61338          <idle>-0     (-----) [001] .n.1 82316.210916: cpu_idle: state=4294967295 cpu_id=1
61339          <idle>-0     (-----) [001] d..2 82316.210925: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
61340<...>-13083 ( 8858) [001] .... 82316.210933: binder_transaction_received: transaction=1569925
61341<...>-9105 ( 9105) [000] d..3 82316.210948: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
61342<...>-9105 ( 9105) [000] d..4 82316.210966: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
61343<...>-13083 ( 8858) [001] d..1 82316.210969: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
61344          <idle>-0     (-----) [002] .n.1 82316.210972: cpu_idle: state=4294967295 cpu_id=2
61345          <idle>-0     (-----) [002] d..2 82316.210984: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
61346<...>-13083 ( 8858) [001] d..2 82316.210995: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
61347          <idle>-0     (-----) [003] .n.1 82316.211001: cpu_idle: state=4294967295 cpu_id=3
61348          <idle>-0     (-----) [003] d..2 82316.211010: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
61349<...>-13083 ( 8858) [001] d..2 82316.211037: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61350    RenderThread-9436  ( 9105) [002] d..2 82316.211040: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61351          <idle>-0     (-----) [001] d..1 82316.211047: cpu_idle: state=0 cpu_id=1
61352          <idle>-0     (-----) [002] d..1 82316.211054: cpu_idle: state=0 cpu_id=2
61353  appEventThread-8881  ( 8858) [003] d..2 82316.211063: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61354          <idle>-0     (-----) [003] d..1 82316.211073: cpu_idle: state=0 cpu_id=3
61355<...>-9105 ( 9105) [000] d..3 82316.211098: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
61356<...>-9105 ( 9105) [000] d..4 82316.211115: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
61357          <idle>-0     (-----) [002] .n.1 82316.211120: cpu_idle: state=4294967295 cpu_id=2
61358          <idle>-0     (-----) [002] d..2 82316.211132: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
61359<...>-9105 ( 9105) [000] d..2 82316.211148: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61360          <idle>-0     (-----) [000] d..1 82316.211161: cpu_idle: state=0 cpu_id=0
61361    RenderThread-9436  ( 9105) [002] d..1 82316.211272: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
61362    RenderThread-9436  ( 9105) [002] d..2 82316.211290: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
61363          <idle>-0     (-----) [000] .n.1 82316.211297: cpu_idle: state=4294967295 cpu_id=0
61364          <idle>-0     (-----) [000] d..2 82316.211307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
61365    RenderThread-9436  ( 9105) [002] .... 82316.211361: binder_transaction: transaction=1569926 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
61366    RenderThread-9436  ( 9105) [002] .... 82316.211366: binder_transaction_alloc_buf: transaction=1569926 data_size=104 offsets_size=0
61367    RenderThread-9436  ( 9105) [002] d..4 82316.211371: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
61368<...>-9105 ( 9105) [000] d..2 82316.211384: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61369    RenderThread-9436  ( 9105) [002] dn.5 82316.211393: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
61370          <idle>-0     (-----) [000] d..1 82316.211395: cpu_idle: state=0 cpu_id=0
61371    RenderThread-9436  ( 9105) [002] d..2 82316.211403: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
61372<...>-13083 ( 8858) [002] .... 82316.211411: binder_transaction_received: transaction=1569926
61373<...>-13083 ( 8858) [002] .... 82316.211487: binder_transaction: transaction=1569927 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
61374<...>-13083 ( 8858) [002] .... 82316.211491: binder_transaction_alloc_buf: transaction=1569927 data_size=52 offsets_size=8
61375<...>-13083 ( 8858) [002] d..2 82316.211540: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
61376    RenderThread-9436  ( 9105) [002] .... 82316.211549: binder_transaction_received: transaction=1569927
61377    RenderThread-9436  ( 9105) [002] d.h3 82316.211603: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61378          <idle>-0     (-----) [005] dnh2 82316.211625: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61379          <idle>-0     (-----) [005] .n.1 82316.211629: cpu_idle: state=4294967295 cpu_id=5
61380          <idle>-0     (-----) [005] d..2 82316.211636: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61381<...>-5340 ( 788) [005] d..1 82316.211685: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61382          <idle>-0     (-----) [000] dnh2 82316.211710: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61383          <idle>-0     (-----) [000] .n.1 82316.211717: cpu_idle: state=4294967295 cpu_id=0
61384          <idle>-0     (-----) [000] d..2 82316.211725: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
61385<...>-5340 ( 788) [005] ...1 82316.211810: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
61386<...>-5340 ( 788) [005] ...1 82316.211814: tracing_mark_write: E|788
61387<...>-5340 ( 788) [005] .... 82316.211830: binder_transaction: transaction=1569928 dest_node=1569923 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
61388<...>-5340 ( 788) [005] .... 82316.211833: binder_transaction_alloc_buf: transaction=1569928 data_size=60 offsets_size=0
61389<...>-5340 ( 788) [005] d..4 82316.211836: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
61390 neuralnetworks@-13088 (  788) [000] d.s2 82316.211864: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
61391<...>-5340 ( 788) [005] d..5 82316.211874: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
61392          <idle>-0     (-----) [004] .n.1 82316.211879: cpu_idle: state=4294967295 cpu_id=4
61393 neuralnetworks@-13088 (  788) [000] d.s3 82316.211884: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
61394          <idle>-0     (-----) [001] d.H3 82316.211887: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
61395          <idle>-0     (-----) [004] d..2 82316.211889: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
61396           <...>-27571 (-----) [004] .... 82316.211893: binder_transaction_received: transaction=1569928
61397<...>-5340 ( 788) [005] ...1 82316.211897: tracing_mark_write: E|788
61398 neuralnetworks@-13088 (  788) [000] d..2 82316.211901: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
61399          <idle>-0     (-----) [001] dnH4 82316.211902: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
61400<...>-5340 ( 788) [005] .... 82316.211905: binder_transaction: transaction=1569929 dest_node=0 dest_proc=27550 dest_thread=27636 reply=1 flags=0x0 code=0x0
61401<...>-5340 ( 788) [005] .... 82316.211907: binder_transaction_alloc_buf: transaction=1569929 data_size=8 offsets_size=0
61402<...>-5340 ( 788) [005] d..2 82316.211909: sched_waking: comm=id.nn.benchmark pid=27636 prio=110 target_cpu=005
61403          <idle>-0     (-----) [001] dns2 82316.211910: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
61404           <...>-27571 (-----) [004] ...1 82316.211912: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
61405<...>-5340 ( 788) [005] d..3 82316.211917: sched_wakeup: comm=id.nn.benchmark pid=27636 prio=110 target_cpu=005
61406           <...>-27571 (-----) [004] ...1 82316.211919: tracing_mark_write: E|27550
61407<...>-5340 ( 788) [005] .... 82316.211919: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
61408     rcu_preempt-7     (    7) [000] d..2 82316.211934: 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
61409           <...>-27571 (-----) [004] d..2 82316.211949: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61410          <idle>-0     (-----) [001] dns3 82316.211950: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
61411          <idle>-0     (-----) [004] d..1 82316.211957: cpu_idle: state=0 cpu_id=4
61412<...>-5340 ( 788) [005] d..2 82316.211960: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27636 next_prio=110
61413          <idle>-0     (-----) [000] d..2 82316.211961: 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
61414           <...>-27636 (-----) [005] .... 82316.211970: binder_transaction_received: transaction=1569929
61415          <idle>-0     (-----) [001] .n.1 82316.211971: cpu_idle: state=4294967295 cpu_id=1
61416          <idle>-0     (-----) [001] d..2 82316.211979: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
61417<...>-8 ( 8) [000] d..2 82316.211987: 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
61418          <idle>-0     (-----) [000] d..1 82316.211997: cpu_idle: state=0 cpu_id=0
61419           <...>-27636 (-----) [005] ...1 82316.212006: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
61420           <...>-27636 (-----) [005] ...1 82316.212012: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
61421         sugov:0-576   (  576) [001] .... 82316.212012: clk_set_rate: pwrcl_clk 1132800000
61422         sugov:0-576   (  576) [001] .... 82316.212025: clk_set_rate: cpu3_pwrcl_clk 902400000
61423         sugov:0-576   (  576) [001] .... 82316.212035: clk_set_rate: cpu2_pwrcl_clk 902400000
61424           <...>-27636 (-----) [005] ...1 82316.212038: tracing_mark_write: E|27550
61425           <...>-27636 (-----) [005] ...1 82316.212041: tracing_mark_write: E|27550
61426         sugov:0-576   (  576) [001] .... 82316.212042: clk_set_rate: cpu1_pwrcl_clk 902400000
61427           <...>-27636 (-----) [005] ...1 82316.212045: tracing_mark_write: E|27550
61428         sugov:0-576   (  576) [001] .... 82316.212050: clk_set_rate: cpu0_pwrcl_clk 1132800000
61429         sugov:0-576   (  576) [001] .... 82316.212058: cpu_frequency: state=1132800 cpu_id=0
61430         sugov:0-576   (  576) [001] .... 82316.212084: cpu_frequency: state=1132800 cpu_id=1
61431         sugov:0-576   (  576) [001] .... 82316.212088: cpu_frequency: state=1132800 cpu_id=2
61432         sugov:0-576   (  576) [001] .... 82316.212093: cpu_frequency: state=1132800 cpu_id=3
61433         sugov:0-576   (  576) [001] d..2 82316.212120: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61434          <idle>-0     (-----) [001] d..1 82316.212133: cpu_idle: state=0 cpu_id=1
61435           <...>-27636 (-----) [005] ...1 82316.212232: tracing_mark_write: E|27550
61436           <...>-27636 (-----) [005] d..1 82316.212244: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61437           <...>-27636 (-----) [005] d..2 82316.212262: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61438          <idle>-0     (-----) [004] .n.1 82316.212267: cpu_idle: state=4294967295 cpu_id=4
61439          <idle>-0     (-----) [004] d..2 82316.212274: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
61440           <...>-27550 (-----) [004] d..2 82316.212294: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61441          <idle>-0     (-----) [004] d..1 82316.212303: cpu_idle: state=0 cpu_id=4
61442           <...>-27636 (-----) [005] d..1 82316.212352: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61443           <...>-27636 (-----) [005] d..2 82316.212361: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61444          <idle>-0     (-----) [004] .n.1 82316.212367: cpu_idle: state=4294967295 cpu_id=4
61445          <idle>-0     (-----) [004] d..2 82316.212374: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
61446           <...>-27636 (-----) [005] d..2 82316.212402: sched_switch: prev_comm=id.nn.benchmark prev_pid=27636 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
61447           <...>-27550 (-----) [004] ...1 82316.212408: tracing_mark_write: E|27550
61448           <...>-27550 (-----) [004] ...1 82316.212413: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
61449           <...>-27550 (-----) [004] ...1 82316.212419: tracing_mark_write: E|27550
61450           <...>-27550 (-----) [004] ...1 82316.212423: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
61451          <idle>-0     (-----) [005] d..1 82316.212423: cpu_idle: state=0 cpu_id=5
61452           <...>-27550 (-----) [004] ...1 82316.212427: tracing_mark_write: E|27550
61453           <...>-27550 (-----) [004] ...1 82316.212431: tracing_mark_write: E|27550
61454           <...>-27550 (-----) [004] ...1 82316.212543: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
61455           <...>-27550 (-----) [004] ...1 82316.212600: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
61456           <...>-27550 (-----) [004] ...1 82316.212605: tracing_mark_write: E|27550
61457           <...>-27550 (-----) [004] ...1 82316.212609: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
61458           <...>-27550 (-----) [004] ...1 82316.212614: tracing_mark_write: E|27550
61459           <...>-27550 (-----) [004] ...1 82316.212617: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
61460           <...>-27550 (-----) [004] ...1 82316.212621: tracing_mark_write: E|27550
61461           <...>-27550 (-----) [004] ...1 82316.212625: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
61462          <idle>-0     (-----) [005] .n.1 82316.212717: cpu_idle: state=4294967295 cpu_id=5
61463           <...>-27550 (-----) [004] ...1 82316.212718: tracing_mark_write: E|27550
61464           <...>-27550 (-----) [004] ...1 82316.212723: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
61465          <idle>-0     (-----) [005] d..2 82316.212726: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27637 next_prio=110
61466           <...>-27550 (-----) [004] d..2 82316.212739: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61467          <idle>-0     (-----) [004] d..1 82316.212753: cpu_idle: state=0 cpu_id=4
61468    RenderThread-9436  ( 9105) [002] d..2 82316.212780: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
61469           <...>-27637 (-----) [005] ...1 82316.212787: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
61470          <idle>-0     (-----) [002] d..1 82316.212794: cpu_idle: state=0 cpu_id=2
61471           <...>-27637 (-----) [005] ...1 82316.212801: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
61472           <...>-27637 (-----) [005] ...1 82316.212805: tracing_mark_write: E|27550
61473           <...>-27637 (-----) [005] .... 82316.212827: binder_transaction: transaction=1569930 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
61474           <...>-27637 (-----) [005] .... 82316.212830: binder_transaction_alloc_buf: transaction=1569930 data_size=48 offsets_size=0
61475           <...>-27637 (-----) [005] ...2 82316.212833: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
61476           <...>-27637 (-----) [005] d..4 82316.212836: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
61477           <...>-27637 (-----) [005] dn.5 82316.212847: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
61478           <...>-27637 (-----) [005] d..2 82316.212854: sched_switch: prev_comm=id.nn.benchmark prev_pid=27637 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
61479          <idle>-0     (-----) [002] d.h2 82316.212862: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
61480<...>-770 ( 770) [005] .... 82316.212864: binder_transaction_received: transaction=1569930
61481          <idle>-0     (-----) [002] d.h3 82316.212872: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
61482          <idle>-0     (-----) [002] dnh3 82316.212876: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
61483          <idle>-0     (-----) [002] .n.1 82316.212883: cpu_idle: state=4294967295 cpu_id=2
61484<...>-770 ( 770) [005] ...1 82316.212890: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
61485          <idle>-0     (-----) [002] d..2 82316.212893: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
61486          <idle>-0     (-----) [000] d.h3 82316.212904: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
61487          <idle>-0     (-----) [000] dnh4 82316.212926: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
61488          <idle>-0     (-----) [000] .n.1 82316.212937: cpu_idle: state=4294967295 cpu_id=0
61489          <idle>-0     (-----) [000] d..2 82316.212945: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
61490<...>-770 ( 770) [005] d..2 82316.212969: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
61491 kgsl_worker_thr-258   (  258) [000] d.h1 82316.212994: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
61492 kgsl_worker_thr-258   (  258) [000] d..2 82316.213009: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
61493<...>-770 ( 770) [005] ...1 82316.213013: tracing_mark_write: E|770
61494<...>-770 ( 770) [005] .... 82316.213021: binder_transaction: transaction=1569931 dest_node=0 dest_proc=27550 dest_thread=27637 reply=1 flags=0x0 code=0x0
61495<...>-770 ( 770) [005] .... 82316.213024: binder_transaction_alloc_buf: transaction=1569931 data_size=168 offsets_size=32
61496<...>-770 ( 770) [005] .... 82316.213030: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
61497 kgsl_worker_thr-258   (  258) [000] d..3 82316.213040: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
61498 kgsl_worker_thr-258   (  258) [000] d..2 82316.213054: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
61499<...>-770 ( 770) [005] d..2 82316.213067: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27637 next_prio=110
61500           <...>-27637 (-----) [005] .... 82316.213078: binder_transaction_received: transaction=1569931
61501    RenderThread-9436  ( 9105) [002] .... 82316.213085: binder_transaction: transaction=1569932 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
61502  kworker/u16:15-1311  ( 1311) [000] d..2 82316.213088: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
61503    RenderThread-9436  ( 9105) [002] .... 82316.213090: binder_transaction_alloc_buf: transaction=1569932 data_size=192 offsets_size=8
61504    RenderThread-9436  ( 9105) [002] d..4 82316.213099: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
61505    RenderThread-9436  ( 9105) [002] dn.5 82316.213114: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
61506    RenderThread-9436  ( 9105) [002] d..2 82316.213122: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
61507<...>-13083 ( 8858) [002] .... 82316.213130: binder_transaction_received: transaction=1569932
61508           <...>-27637 (-----) [005] ...1 82316.213151: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
61509           <...>-27637 (-----) [005] ...1 82316.213156: tracing_mark_write: E|27550
61510           <...>-27637 (-----) [005] .... 82316.213171: binder_transaction: transaction=1569933 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
61511<...>-581 ( 571) [000] d..2 82316.213172: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61512           <...>-27637 (-----) [005] .... 82316.213174: binder_transaction_alloc_buf: transaction=1569933 data_size=48 offsets_size=0
61513           <...>-27637 (-----) [005] ...2 82316.213176: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
61514           <...>-27637 (-----) [005] d..4 82316.213178: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
61515          <idle>-0     (-----) [000] d..1 82316.213186: cpu_idle: state=0 cpu_id=0
61516           <...>-27637 (-----) [005] dn.5 82316.213188: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
61517           <...>-27637 (-----) [005] d..2 82316.213194: sched_switch: prev_comm=id.nn.benchmark prev_pid=27637 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
61518<...>-770 ( 770) [005] .... 82316.213202: binder_transaction_received: transaction=1569933
61519<...>-770 ( 770) [005] ...1 82316.213219: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
61520<...>-13083 ( 8858) [002] .... 82316.213262: binder_transaction: transaction=1569934 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
61521<...>-13083 ( 8858) [002] .... 82316.213267: binder_transaction_alloc_buf: transaction=1569934 data_size=68 offsets_size=0
61522<...>-770 ( 770) [005] d..2 82316.213278: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
61523          <idle>-0     (-----) [000] dnh2 82316.213301: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
61524<...>-13083 ( 8858) [002] d..2 82316.213303: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
61525          <idle>-0     (-----) [000] .n.1 82316.213306: cpu_idle: state=4294967295 cpu_id=0
61526    RenderThread-9436  ( 9105) [002] .... 82316.213311: binder_transaction_received: transaction=1569934
61527<...>-770 ( 770) [005] ...1 82316.213313: tracing_mark_write: E|770
61528          <idle>-0     (-----) [000] d..2 82316.213316: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
61529<...>-770 ( 770) [005] .... 82316.213320: binder_transaction: transaction=1569935 dest_node=0 dest_proc=27550 dest_thread=27637 reply=1 flags=0x0 code=0x0
61530<...>-770 ( 770) [005] .... 82316.213323: binder_transaction_alloc_buf: transaction=1569935 data_size=168 offsets_size=32
61531<...>-770 ( 770) [005] .... 82316.213329: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
61532<...>-770 ( 770) [005] d..2 82316.213363: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27637 next_prio=110
61533<...>-581 ( 571) [000] d..2 82316.213367: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61534           <...>-27637 (-----) [005] .... 82316.213374: binder_transaction_received: transaction=1569935
61535          <idle>-0     (-----) [000] d..1 82316.213377: cpu_idle: state=0 cpu_id=0
61536    RenderThread-9436  ( 9105) [002] d..2 82316.213393: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61537          <idle>-0     (-----) [002] d..1 82316.213410: cpu_idle: state=0 cpu_id=2
61538           <...>-27637 (-----) [005] ...1 82316.213657: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
61539           <...>-27637 (-----) [005] ...1 82316.213668: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
61540           <...>-27637 (-----) [005] ...1 82316.213672: tracing_mark_write: E|27550
61541           <...>-27637 (-----) [005] .... 82316.213738: binder_transaction: transaction=1569936 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
61542           <...>-27637 (-----) [005] .... 82316.213741: binder_transaction_alloc_buf: transaction=1569936 data_size=556 offsets_size=104
61543           <...>-27637 (-----) [005] ...2 82316.213755: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
61544           <...>-27637 (-----) [005] d..4 82316.213757: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61545           <...>-27637 (-----) [005] dn.5 82316.213769: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61546           <...>-27637 (-----) [005] d..2 82316.213776: sched_switch: prev_comm=id.nn.benchmark prev_pid=27637 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61547<...>-5340 ( 788) [005] .... 82316.213786: binder_transaction_received: transaction=1569936
61548<...>-5340 ( 788) [005] ...1 82316.213834: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
61549<...>-5340 ( 788) [005] d..2 82316.213883: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61550<...>-5340 ( 788) [005] d..2 82316.213909: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27637 next_prio=110
61551          <idle>-0     (-----) [000] dnh2 82316.213910: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61552          <idle>-0     (-----) [000] .n.1 82316.213915: cpu_idle: state=4294967295 cpu_id=0
61553          <idle>-0     (-----) [000] d..2 82316.213924: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
61554           <...>-27637 (-----) [005] d..2 82316.213932: sched_switch: prev_comm=id.nn.benchmark prev_pid=27637 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61555          <idle>-0     (-----) [005] d..1 82316.213950: cpu_idle: state=0 cpu_id=5
61556<...>-87 ( 87) [000] d..2 82316.213962: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61557          <idle>-0     (-----) [000] d..1 82316.213971: cpu_idle: state=0 cpu_id=0
61558          <idle>-0     (-----) [002] d.h4 82316.213977: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61559          <idle>-0     (-----) [002] dnh5 82316.213995: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61560          <idle>-0     (-----) [002] .n.1 82316.214005: cpu_idle: state=4294967295 cpu_id=2
61561          <idle>-0     (-----) [002] d..2 82316.214015: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
61562<...>-86 ( 86) [002] d..2 82316.214049: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61563          <idle>-0     (-----) [002] d.h5 82316.214070: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61564          <idle>-0     (-----) [005] dnh2 82316.214090: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61565          <idle>-0     (-----) [005] .n.1 82316.214095: cpu_idle: state=4294967295 cpu_id=5
61566          <idle>-0     (-----) [005] d..2 82316.214103: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61567          <idle>-0     (-----) [002] d..1 82316.214111: cpu_idle: state=0 cpu_id=2
61568<...>-5340 ( 788) [005] d..1 82316.214158: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61569          <idle>-0     (-----) [000] dnh2 82316.214182: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61570          <idle>-0     (-----) [000] .n.1 82316.214187: cpu_idle: state=4294967295 cpu_id=0
61571          <idle>-0     (-----) [000] d..2 82316.214196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
61572 neuralnetworks@-13088 (  788) [000] d..2 82316.214236: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61573          <idle>-0     (-----) [000] d..1 82316.214245: cpu_idle: state=0 cpu_id=0
61574          <idle>-0     (-----) [003] d.h2 82316.214304: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
61575<...>-5340 ( 788) [005] d..2 82316.214309: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61576          <idle>-0     (-----) [003] dnh3 82316.214316: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
61577          <idle>-0     (-----) [003] .n.1 82316.214322: cpu_idle: state=4294967295 cpu_id=3
61578          <idle>-0     (-----) [000] dnh2 82316.214328: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61579          <idle>-0     (-----) [003] d..2 82316.214331: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
61580          <idle>-0     (-----) [000] .n.1 82316.214333: cpu_idle: state=4294967295 cpu_id=0
61581<...>-5340 ( 788) [005] d..2 82316.214334: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61582          <idle>-0     (-----) [000] d..2 82316.214342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
61583        DispSync-8879  ( 8858) [003] d..1 82316.214345: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
61584          <idle>-0     (-----) [005] d..1 82316.214348: cpu_idle: state=0 cpu_id=5
61585        DispSync-8879  ( 8858) [003] d..2 82316.214358: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
61586<...>-87 ( 87) [000] d..2 82316.214373: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61587          <idle>-0     (-----) [002] dnh4 82316.214375: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61588          <idle>-0     (-----) [000] d..1 82316.214381: cpu_idle: state=0 cpu_id=0
61589        DispSync-8879  ( 8858) [003] d..2 82316.214382: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61590          <idle>-0     (-----) [003] d..1 82316.214392: cpu_idle: state=0 cpu_id=3
61591          <idle>-0     (-----) [002] dnh5 82316.214397: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
61592          <idle>-0     (-----) [000] .n.1 82316.214402: cpu_idle: state=4294967295 cpu_id=0
61593          <idle>-0     (-----) [002] .n.1 82316.214405: cpu_idle: state=4294967295 cpu_id=2
61594          <idle>-0     (-----) [000] d..2 82316.214412: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
61595          <idle>-0     (-----) [002] d..2 82316.214413: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
61596<...>-86 ( 86) [000] d..2 82316.214442: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61597          <idle>-0     (-----) [000] d..1 82316.214450: cpu_idle: state=0 cpu_id=0
61598   sfEventThread-8882  ( 8858) [002] d..3 82316.214453: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
61599   sfEventThread-8882  ( 8858) [002] d..4 82316.214477: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
61600          <idle>-0     (-----) [003] .n.1 82316.214482: cpu_idle: state=4294967295 cpu_id=3
61601          <idle>-0     (-----) [003] d..2 82316.214490: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
61602   sfEventThread-8882  ( 8858) [002] d..2 82316.214506: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61603          <idle>-0     (-----) [002] d..1 82316.214519: cpu_idle: state=0 cpu_id=2
61604          <idle>-0     (-----) [005] ...1 82316.214672: cpu_idle: state=4294967295 cpu_id=5
61605          <idle>-0     (-----) [005] d..1 82316.214675: cpu_idle: state=0 cpu_id=5
61606  surfaceflinger-8858  ( 8858) [003] d..1 82316.214797: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
61607  surfaceflinger-8858  ( 8858) [003] d..2 82316.214815: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
61608          <idle>-0     (-----) [002] .n.1 82316.214821: cpu_idle: state=4294967295 cpu_id=2
61609          <idle>-0     (-----) [002] d..2 82316.214829: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
61610   sfEventThread-8882  ( 8858) [002] d..2 82316.214857: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61611          <idle>-0     (-----) [002] d..1 82316.214865: cpu_idle: state=0 cpu_id=2
61612  surfaceflinger-8858  ( 8858) [003] ...1 82316.214982: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
61613  surfaceflinger-8858  ( 8858) [003] ...1 82316.214988: tracing_mark_write: E|8858
61614  surfaceflinger-8858  ( 8858) [003] .... 82316.215034: binder_transaction: transaction=1569939 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
61615  surfaceflinger-8858  ( 8858) [003] .... 82316.215038: binder_transaction_alloc_buf: transaction=1569939 data_size=540 offsets_size=96
61616  surfaceflinger-8858  ( 8858) [003] ...2 82316.215059: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
61617  surfaceflinger-8858  ( 8858) [003] d..4 82316.215067: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
61618  surfaceflinger-8858  ( 8858) [003] d..5 82316.215085: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
61619          <idle>-0     (-----) [001] .n.1 82316.215090: cpu_idle: state=4294967295 cpu_id=1
61620          <idle>-0     (-----) [001] d..2 82316.215099: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
61621  surfaceflinger-8858  ( 8858) [003] d..2 82316.215111: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61622 [email protected]   (  619) [001] .... 82316.215146: binder_transaction_received: transaction=1569939
61623          <idle>-0     (-----) [003] d..1 82316.215163: cpu_idle: state=0 cpu_id=3
61624 [email protected]   (  619) [001] ...1 82316.215183: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
61625 [email protected]   (  619) [001] ...1 82316.215278: tracing_mark_write: B|619|HWCSession::PresentDisplay::
61626 [email protected]   (  619) [001] ...1 82316.215423: tracing_mark_write: B|619|HWDeviceDRM::Commit::
61627 [email protected]   (  619) [001] ...1 82316.215436: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
61628 [email protected]   (  619) [001] d..2 82316.215938: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
61629 [email protected]   (  619) [001] d..3 82316.215959: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
61630          <idle>-0     (-----) [000] .n.1 82316.215964: cpu_idle: state=4294967295 cpu_id=0
61631          <idle>-0     (-----) [000] d..2 82316.215974: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
61632          <idle>-0     (-----) [002] d.h4 82316.216011: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61633          <idle>-0     (-----) [005] dnh2 82316.216031: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61634          <idle>-0     (-----) [005] .n.1 82316.216035: cpu_idle: state=4294967295 cpu_id=5
61635          <idle>-0     (-----) [005] d..2 82316.216043: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61636 [email protected]   (  619) [001] ...1 82316.216045: tracing_mark_write: E|619
61637          <idle>-0     (-----) [002] ...1 82316.216046: cpu_idle: state=4294967295 cpu_id=2
61638 [email protected]   (  619) [001] ...1 82316.216050: tracing_mark_write: E|619
61639          <idle>-0     (-----) [002] d..1 82316.216051: cpu_idle: state=0 cpu_id=2
61640<...>-5340 ( 788) [005] d..1 82316.216099: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61641 [email protected]   (  619) [001] ...1 82316.216103: tracing_mark_write: E|619
61642 crtc_commit:111-321   (  321) [000] d.h1 82316.216120: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61643 [email protected]   (  619) [001] ...1 82316.216145: tracing_mark_write: E|619
61644 [email protected]   (  619) [001] .... 82316.216172: binder_transaction: transaction=1569940 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
61645 [email protected]   (  619) [001] .... 82316.216179: binder_transaction_alloc_buf: transaction=1569940 data_size=576 offsets_size=112
61646 [email protected]   (  619) [001] d..2 82316.216196: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
61647<...>-5340 ( 788) [005] ...1 82316.216196: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
61648<...>-5340 ( 788) [005] ...1 82316.216200: tracing_mark_write: E|788
61649 [email protected]   (  619) [001] d..3 82316.216211: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
61650 [email protected]   (  619) [001] .... 82316.216215: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
61651<...>-5340 ( 788) [005] .... 82316.216218: binder_transaction: transaction=1569941 dest_node=1569937 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
61652          <idle>-0     (-----) [003] .n.1 82316.216218: cpu_idle: state=4294967295 cpu_id=3
61653<...>-5340 ( 788) [005] .... 82316.216221: binder_transaction_alloc_buf: transaction=1569941 data_size=60 offsets_size=0
61654<...>-5340 ( 788) [005] d..4 82316.216224: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
61655          <idle>-0     (-----) [003] d..2 82316.216227: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
61656  surfaceflinger-8858  ( 8858) [003] .... 82316.216233: binder_transaction_received: transaction=1569940
61657<...>-5340 ( 788) [005] d..5 82316.216237: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
61658          <idle>-0     (-----) [004] .n.1 82316.216243: cpu_idle: state=4294967295 cpu_id=4
61659          <idle>-0     (-----) [004] d..2 82316.216252: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
61660           <...>-27571 (-----) [004] .... 82316.216257: binder_transaction_received: transaction=1569941
61661<...>-5340 ( 788) [005] ...1 82316.216260: tracing_mark_write: E|788
61662<...>-5340 ( 788) [005] .... 82316.216266: binder_transaction: transaction=1569942 dest_node=0 dest_proc=27550 dest_thread=27637 reply=1 flags=0x0 code=0x0
61663<...>-5340 ( 788) [005] .... 82316.216268: binder_transaction_alloc_buf: transaction=1569942 data_size=8 offsets_size=0
61664<...>-5340 ( 788) [005] d..2 82316.216270: sched_waking: comm=id.nn.benchmark pid=27637 prio=110 target_cpu=005
61665           <...>-27571 (-----) [004] ...1 82316.216276: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
61666<...>-5340 ( 788) [005] d..3 82316.216278: sched_wakeup: comm=id.nn.benchmark pid=27637 prio=110 target_cpu=005
61667<...>-5340 ( 788) [005] .... 82316.216280: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
61668           <...>-27571 (-----) [004] ...1 82316.216283: tracing_mark_write: E|27550
61669 [email protected]   (  619) [001] d..2 82316.216303: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
61670           <...>-27571 (-----) [004] d..2 82316.216313: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61671          <idle>-0     (-----) [004] d..1 82316.216320: cpu_idle: state=0 cpu_id=4
61672<...>-5340 ( 788) [005] d..2 82316.216323: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27637 next_prio=110
61673           <...>-27637 (-----) [005] .... 82316.216333: binder_transaction_received: transaction=1569942
61674 neuralnetworks@-13088 (  788) [001] d..2 82316.216346: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
61675          <idle>-0     (-----) [001] d..1 82316.216362: cpu_idle: state=0 cpu_id=1
61676           <...>-27637 (-----) [005] ...1 82316.216370: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
61677           <...>-27637 (-----) [005] ...1 82316.216376: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
61678           <...>-27637 (-----) [005] ...1 82316.216402: tracing_mark_write: E|27550
61679           <...>-27637 (-----) [005] ...1 82316.216406: tracing_mark_write: E|27550
61680           <...>-27637 (-----) [005] ...1 82316.216409: tracing_mark_write: E|27550
61681           <...>-27637 (-----) [005] ...1 82316.216597: tracing_mark_write: E|27550
61682           <...>-27637 (-----) [005] d..1 82316.216610: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61683  surfaceflinger-8858  ( 8858) [003] d..2 82316.216610: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
61684           <...>-27637 (-----) [005] d..2 82316.216625: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61685          <idle>-0     (-----) [003] d..1 82316.216626: cpu_idle: state=0 cpu_id=3
61686          <idle>-0     (-----) [004] .n.1 82316.216630: cpu_idle: state=4294967295 cpu_id=4
61687          <idle>-0     (-----) [004] d..2 82316.216637: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
61688           <...>-27550 (-----) [004] d..2 82316.216658: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61689          <idle>-0     (-----) [004] d..1 82316.216667: cpu_idle: state=0 cpu_id=4
61690 crtc_commit:111-321   (  321) [000] d..2 82316.216669: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
61691          <idle>-0     (-----) [000] d..1 82316.216678: cpu_idle: state=0 cpu_id=0
61692           <...>-27637 (-----) [005] d..1 82316.216717: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61693           <...>-27637 (-----) [005] d..2 82316.216726: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61694          <idle>-0     (-----) [004] .n.1 82316.216731: cpu_idle: state=4294967295 cpu_id=4
61695          <idle>-0     (-----) [004] d..2 82316.216739: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
61696           <...>-27637 (-----) [005] d..2 82316.216767: sched_switch: prev_comm=id.nn.benchmark prev_pid=27637 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
61697           <...>-27550 (-----) [004] ...1 82316.216772: tracing_mark_write: E|27550
61698           <...>-27550 (-----) [004] ...1 82316.216777: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
61699           <...>-27550 (-----) [004] ...1 82316.216783: tracing_mark_write: E|27550
61700           <...>-27550 (-----) [004] ...1 82316.216786: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
61701          <idle>-0     (-----) [005] d..1 82316.216788: cpu_idle: state=0 cpu_id=5
61702           <...>-27550 (-----) [004] ...1 82316.216791: tracing_mark_write: E|27550
61703           <...>-27550 (-----) [004] ...1 82316.216796: tracing_mark_write: E|27550
61704           <...>-27550 (-----) [004] ...1 82316.216909: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
61705           <...>-27550 (-----) [004] ...1 82316.216967: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
61706           <...>-27550 (-----) [004] ...1 82316.216972: tracing_mark_write: E|27550
61707           <...>-27550 (-----) [004] ...1 82316.216976: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
61708           <...>-27550 (-----) [004] ...1 82316.216982: tracing_mark_write: E|27550
61709           <...>-27550 (-----) [004] ...1 82316.216986: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
61710           <...>-27550 (-----) [004] ...1 82316.216990: tracing_mark_write: E|27550
61711           <...>-27550 (-----) [004] ...1 82316.216994: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
61712          <idle>-0     (-----) [005] .n.1 82316.217087: cpu_idle: state=4294967295 cpu_id=5
61713           <...>-27550 (-----) [004] ...1 82316.217089: tracing_mark_write: E|27550
61714           <...>-27550 (-----) [004] ...1 82316.217093: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
61715          <idle>-0     (-----) [005] d..2 82316.217096: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27638 next_prio=110
61716           <...>-27550 (-----) [004] d..2 82316.217110: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61717          <idle>-0     (-----) [004] d..1 82316.217125: cpu_idle: state=0 cpu_id=4
61718           <...>-27638 (-----) [005] ...1 82316.217157: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
61719           <...>-27638 (-----) [005] ...1 82316.217171: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
61720           <...>-27638 (-----) [005] ...1 82316.217175: tracing_mark_write: E|27550
61721           <...>-27638 (-----) [005] .... 82316.217197: binder_transaction: transaction=1569943 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
61722           <...>-27638 (-----) [005] .... 82316.217200: binder_transaction_alloc_buf: transaction=1569943 data_size=48 offsets_size=0
61723           <...>-27638 (-----) [005] ...2 82316.217203: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
61724           <...>-27638 (-----) [005] d..4 82316.217205: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
61725           <...>-27638 (-----) [005] dn.5 82316.217216: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
61726           <...>-27638 (-----) [005] d..2 82316.217223: sched_switch: prev_comm=id.nn.benchmark prev_pid=27638 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
61727<...>-770 ( 770) [005] .... 82316.217233: binder_transaction_received: transaction=1569943
61728<...>-770 ( 770) [005] ...1 82316.217258: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
61729<...>-770 ( 770) [005] d..2 82316.217343: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
61730          <idle>-0     (-----) [000] dnh2 82316.217371: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
61731          <idle>-0     (-----) [000] .n.1 82316.217376: cpu_idle: state=4294967295 cpu_id=0
61732          <idle>-0     (-----) [000] d..2 82316.217383: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
61733<...>-770 ( 770) [005] ...1 82316.217384: tracing_mark_write: E|770
61734<...>-770 ( 770) [005] .... 82316.217391: binder_transaction: transaction=1569944 dest_node=0 dest_proc=27550 dest_thread=27638 reply=1 flags=0x0 code=0x0
61735<...>-770 ( 770) [005] .... 82316.217394: binder_transaction_alloc_buf: transaction=1569944 data_size=168 offsets_size=32
61736<...>-770 ( 770) [005] .... 82316.217401: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
61737<...>-770 ( 770) [005] d..2 82316.217437: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27638 next_prio=110
61738           <...>-27638 (-----) [005] .... 82316.217448: binder_transaction_received: transaction=1569944
61739<...>-581 ( 571) [000] d..2 82316.217455: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61740          <idle>-0     (-----) [000] d..1 82316.217463: cpu_idle: state=0 cpu_id=0
61741           <...>-27638 (-----) [005] ...1 82316.217521: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
61742           <...>-27638 (-----) [005] ...1 82316.217526: tracing_mark_write: E|27550
61743           <...>-27638 (-----) [005] .... 82316.217541: binder_transaction: transaction=1569945 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
61744           <...>-27638 (-----) [005] .... 82316.217544: binder_transaction_alloc_buf: transaction=1569945 data_size=48 offsets_size=0
61745           <...>-27638 (-----) [005] ...2 82316.217546: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
61746           <...>-27638 (-----) [005] d..4 82316.217549: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
61747           <...>-27638 (-----) [005] dn.5 82316.217558: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
61748           <...>-27638 (-----) [005] d..2 82316.217565: sched_switch: prev_comm=id.nn.benchmark prev_pid=27638 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
61749<...>-770 ( 770) [005] .... 82316.217573: binder_transaction_received: transaction=1569945
61750<...>-770 ( 770) [005] ...1 82316.217590: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
61751<...>-770 ( 770) [005] d..2 82316.217649: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
61752          <idle>-0     (-----) [000] dnh2 82316.217671: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
61753          <idle>-0     (-----) [000] .n.1 82316.217676: cpu_idle: state=4294967295 cpu_id=0
61754<...>-770 ( 770) [005] ...1 82316.217682: tracing_mark_write: E|770
61755          <idle>-0     (-----) [000] d..2 82316.217683: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
61756<...>-770 ( 770) [005] .... 82316.217690: binder_transaction: transaction=1569946 dest_node=0 dest_proc=27550 dest_thread=27638 reply=1 flags=0x0 code=0x0
61757<...>-770 ( 770) [005] .... 82316.217692: binder_transaction_alloc_buf: transaction=1569946 data_size=168 offsets_size=32
61758<...>-770 ( 770) [005] .... 82316.217698: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
61759<...>-581 ( 571) [000] d..2 82316.217729: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61760<...>-770 ( 770) [005] d..2 82316.217733: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27638 next_prio=110
61761          <idle>-0     (-----) [000] d..1 82316.217736: cpu_idle: state=0 cpu_id=0
61762           <...>-27638 (-----) [005] .... 82316.217743: binder_transaction_received: transaction=1569946
61763           <...>-27638 (-----) [005] ...1 82316.218024: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
61764           <...>-27638 (-----) [005] ...1 82316.218035: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
61765           <...>-27638 (-----) [005] ...1 82316.218039: tracing_mark_write: E|27550
61766           <...>-27638 (-----) [005] .... 82316.218100: binder_transaction: transaction=1569947 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
61767           <...>-27638 (-----) [005] .... 82316.218104: binder_transaction_alloc_buf: transaction=1569947 data_size=556 offsets_size=104
61768           <...>-27638 (-----) [005] ...2 82316.218118: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
61769           <...>-27638 (-----) [005] d..4 82316.218120: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61770           <...>-27638 (-----) [005] dn.5 82316.218132: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61771           <...>-27638 (-----) [005] d..2 82316.218138: sched_switch: prev_comm=id.nn.benchmark prev_pid=27638 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61772<...>-5340 ( 788) [005] .... 82316.218148: binder_transaction_received: transaction=1569947
61773<...>-5340 ( 788) [005] ...1 82316.218196: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
61774<...>-5340 ( 788) [005] d..2 82316.218242: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61775<...>-5340 ( 788) [005] d..2 82316.218266: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27638 next_prio=110
61776          <idle>-0     (-----) [000] dnh2 82316.218269: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61777          <idle>-0     (-----) [000] .n.1 82316.218274: cpu_idle: state=4294967295 cpu_id=0
61778          <idle>-0     (-----) [000] d..2 82316.218280: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
61779           <...>-27638 (-----) [005] d..2 82316.218290: sched_switch: prev_comm=id.nn.benchmark prev_pid=27638 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61780          <idle>-0     (-----) [005] d..1 82316.218307: cpu_idle: state=0 cpu_id=5
61781<...>-87 ( 87) [000] d..2 82316.218315: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61782          <idle>-0     (-----) [000] d..1 82316.218322: cpu_idle: state=0 cpu_id=0
61783          <idle>-0     (-----) [002] d.h4 82316.218325: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
61784          <idle>-0     (-----) [002] dnh5 82316.218356: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61785          <idle>-0     (-----) [002] .n.1 82316.218363: cpu_idle: state=4294967295 cpu_id=2
61786          <idle>-0     (-----) [002] d..2 82316.218374: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
61787          <idle>-0     (-----) [003] ...1 82316.218385: cpu_idle: state=4294967295 cpu_id=3
61788          <idle>-0     (-----) [003] d..1 82316.218389: cpu_idle: state=0 cpu_id=3
61789<...>-86 ( 86) [002] d..2 82316.218406: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61790          <idle>-0     (-----) [002] d.h5 82316.218425: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61791          <idle>-0     (-----) [005] dnh2 82316.218448: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61792          <idle>-0     (-----) [005] .n.1 82316.218453: cpu_idle: state=4294967295 cpu_id=5
61793          <idle>-0     (-----) [005] d..2 82316.218462: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61794          <idle>-0     (-----) [000] d.s2 82316.218467: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
61795          <idle>-0     (-----) [000] dns3 82316.218482: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
61796          <idle>-0     (-----) [000] dns2 82316.218485: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
61797          <idle>-0     (-----) [002] d..1 82316.218501: cpu_idle: state=0 cpu_id=2
61798          <idle>-0     (-----) [000] dns3 82316.218505: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
61799          <idle>-0     (-----) [002] .n.1 82316.218505: cpu_idle: state=4294967295 cpu_id=2
61800          <idle>-0     (-----) [000] dns3 82316.218511: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
61801<...>-5340 ( 788) [005] d..1 82316.218515: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
61802          <idle>-0     (-----) [002] d..2 82316.218519: 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
61803     rcu_preempt-7     (    7) [002] d..2 82316.218530: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
61804          <idle>-0     (-----) [000] dns4 82316.218545: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
61805          <idle>-0     (-----) [000] .n.1 82316.218555: cpu_idle: state=4294967295 cpu_id=0
61806          <idle>-0     (-----) [000] d..2 82316.218562: 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
61807     rcu_preempt-7     (    7) [002] d..3 82316.218566: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
61808<...>-8 ( 8) [000] d..2 82316.218568: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
61809     rcu_preempt-7     (    7) [002] d.h2 82316.218574: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
61810<...>-8 ( 8) [000] d..3 82316.218583: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
61811     rcu_preempt-7     (    7) [002] d..2 82316.218589: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
61812<...>-8 ( 8) [000] d..2 82316.218592: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
61813<...>-46 ( 46) [000] d..2 82316.218610: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
61814<...>-46 ( 46) [000] d..3 82316.218621: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
61815<...>-46 ( 46) [000] d..2 82316.218634: 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
61816  kworker/u16:15-1311  ( 1311) [002] .... 82316.218665: clk_set_rate: l3_cluster0_vote_clk 403200000
61817<...>-8 ( 8) [000] d..2 82316.218670: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
61818         rcuop/4-45    (   45) [000] d..2 82316.218676: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
61819<...>-5340 ( 788) [005] d..2 82316.218700: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61820         rcuop/4-45    (   45) [000] d..3 82316.218705: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
61821         rcuop/4-45    (   45) [000] d..2 82316.218717: 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
61822         rcuop/5-53    (   53) [000] d.h3 82316.218726: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61823<...>-5340 ( 788) [005] d..2 82316.218742: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61824          <idle>-0     (-----) [005] d..1 82316.218757: cpu_idle: state=0 cpu_id=5
61825         rcuop/5-53    (   53) [000] d..2 82316.218833: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
61826<...>-87 ( 87) [000] d..2 82316.218878: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
61827  kworker/u16:15-1311  ( 1311) [002] d.h4 82316.218920: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61828 neuralnetworks@-13088 (  788) [000] d..2 82316.218920: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61829          <idle>-0     (-----) [000] d..1 82316.218934: cpu_idle: state=0 cpu_id=0
61830  kworker/u16:15-1311  ( 1311) [002] d.h5 82316.218946: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
61831          <idle>-0     (-----) [000] .n.1 82316.218951: cpu_idle: state=4294967295 cpu_id=0
61832          <idle>-0     (-----) [000] d..2 82316.218962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
61833          <idle>-0     (-----) [001] d.s3 82316.218966: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
61834  kworker/u16:15-1311  ( 1311) [002] d..2 82316.218972: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
61835          <idle>-0     (-----) [001] d.s4 82316.218984: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
61836          <idle>-0     (-----) [002] d..1 82316.218986: cpu_idle: state=0 cpu_id=2
61837          <idle>-0     (-----) [001] d.s4 82316.218992: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
61838<...>-86 ( 86) [000] d..2 82316.218994: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61839          <idle>-0     (-----) [002] .n.1 82316.218997: cpu_idle: state=4294967295 cpu_id=2
61840          <idle>-0     (-----) [001] ...1 82316.219000: cpu_idle: state=4294967295 cpu_id=1
61841          <idle>-0     (-----) [000] d..1 82316.219004: cpu_idle: state=0 cpu_id=0
61842          <idle>-0     (-----) [001] d..1 82316.219005: cpu_idle: state=0 cpu_id=1
61843          <idle>-0     (-----) [002] d..2 82316.219007: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
61844  kworker/u16:15-1311  ( 1311) [002] d..2 82316.219053: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61845          <idle>-0     (-----) [002] d..1 82316.219063: cpu_idle: state=0 cpu_id=2
61846          <idle>-0     (-----) [005] ...1 82316.219078: cpu_idle: state=4294967295 cpu_id=5
61847          <idle>-0     (-----) [005] d..1 82316.219082: cpu_idle: state=0 cpu_id=5
61848          <idle>-0     (-----) [002] d.h4 82316.220571: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61849          <idle>-0     (-----) [005] dnh2 82316.220591: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61850          <idle>-0     (-----) [005] .n.1 82316.220594: cpu_idle: state=4294967295 cpu_id=5
61851          <idle>-0     (-----) [005] d..2 82316.220602: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61852          <idle>-0     (-----) [002] ...1 82316.220605: cpu_idle: state=4294967295 cpu_id=2
61853          <idle>-0     (-----) [002] d..1 82316.220609: cpu_idle: state=0 cpu_id=2
61854<...>-5340 ( 788) [005] d..1 82316.220654: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61855          <idle>-0     (-----) [000] dnh2 82316.220673: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
61856          <idle>-0     (-----) [000] .n.1 82316.220681: cpu_idle: state=4294967295 cpu_id=0
61857          <idle>-0     (-----) [000] d..2 82316.220689: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
61858 neuralnetworks@-13088 (  788) [000] d..2 82316.220736: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61859          <idle>-0     (-----) [000] d..1 82316.220745: cpu_idle: state=0 cpu_id=0
61860<...>-5340 ( 788) [005] ...1 82316.220747: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
61861<...>-5340 ( 788) [005] ...1 82316.220751: tracing_mark_write: E|788
61862<...>-5340 ( 788) [005] .... 82316.220767: binder_transaction: transaction=1569950 dest_node=1569948 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
61863<...>-5340 ( 788) [005] .... 82316.220770: binder_transaction_alloc_buf: transaction=1569950 data_size=60 offsets_size=0
61864<...>-5340 ( 788) [005] d..4 82316.220773: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
61865<...>-5340 ( 788) [005] d..5 82316.220786: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
61866          <idle>-0     (-----) [004] .n.1 82316.220792: cpu_idle: state=4294967295 cpu_id=4
61867          <idle>-0     (-----) [004] d..2 82316.220800: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
61868           <...>-27571 (-----) [004] .... 82316.220805: binder_transaction_received: transaction=1569950
61869<...>-5340 ( 788) [005] ...1 82316.220809: tracing_mark_write: E|788
61870<...>-5340 ( 788) [005] .... 82316.220815: binder_transaction: transaction=1569951 dest_node=0 dest_proc=27550 dest_thread=27638 reply=1 flags=0x0 code=0x0
61871<...>-5340 ( 788) [005] .... 82316.220817: binder_transaction_alloc_buf: transaction=1569951 data_size=8 offsets_size=0
61872<...>-5340 ( 788) [005] d..2 82316.220819: sched_waking: comm=id.nn.benchmark pid=27638 prio=110 target_cpu=005
61873           <...>-27571 (-----) [004] ...1 82316.220823: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
61874<...>-5340 ( 788) [005] d..3 82316.220826: sched_wakeup: comm=id.nn.benchmark pid=27638 prio=110 target_cpu=005
61875<...>-5340 ( 788) [005] .... 82316.220827: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
61876           <...>-27571 (-----) [004] ...1 82316.220829: tracing_mark_write: E|27550
61877           <...>-27571 (-----) [004] d..2 82316.220858: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61878          <idle>-0     (-----) [004] d..1 82316.220866: cpu_idle: state=0 cpu_id=4
61879<...>-5340 ( 788) [005] d..2 82316.220871: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27638 next_prio=110
61880           <...>-27638 (-----) [005] .... 82316.220880: binder_transaction_received: transaction=1569951
61881           <...>-27638 (-----) [005] ...1 82316.220918: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
61882           <...>-27638 (-----) [005] ...1 82316.220924: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
61883           <...>-27638 (-----) [005] ...1 82316.220950: tracing_mark_write: E|27550
61884           <...>-27638 (-----) [005] ...1 82316.220953: tracing_mark_write: E|27550
61885           <...>-27638 (-----) [005] ...1 82316.220957: tracing_mark_write: E|27550
61886           <...>-27638 (-----) [005] ...1 82316.221146: tracing_mark_write: E|27550
61887           <...>-27638 (-----) [005] d..1 82316.221159: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61888           <...>-27638 (-----) [005] d..2 82316.221175: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61889          <idle>-0     (-----) [004] .n.1 82316.221180: cpu_idle: state=4294967295 cpu_id=4
61890          <idle>-0     (-----) [004] d..2 82316.221187: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
61891           <...>-27550 (-----) [004] d..2 82316.221207: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61892          <idle>-0     (-----) [004] d..1 82316.221215: cpu_idle: state=0 cpu_id=4
61893           <...>-27638 (-----) [005] d..1 82316.221265: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61894           <...>-27638 (-----) [005] d..2 82316.221274: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
61895          <idle>-0     (-----) [004] .n.1 82316.221279: cpu_idle: state=4294967295 cpu_id=4
61896          <idle>-0     (-----) [004] d..2 82316.221287: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
61897           <...>-27638 (-----) [005] d..2 82316.221314: sched_switch: prev_comm=id.nn.benchmark prev_pid=27638 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
61898           <...>-27550 (-----) [004] ...1 82316.221319: tracing_mark_write: E|27550
61899           <...>-27550 (-----) [004] ...1 82316.221323: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
61900           <...>-27550 (-----) [004] ...1 82316.221329: tracing_mark_write: E|27550
61901           <...>-27550 (-----) [004] ...1 82316.221333: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
61902          <idle>-0     (-----) [005] d..1 82316.221335: cpu_idle: state=0 cpu_id=5
61903           <...>-27550 (-----) [004] ...1 82316.221336: tracing_mark_write: E|27550
61904           <...>-27550 (-----) [004] ...1 82316.221341: tracing_mark_write: E|27550
61905           <...>-27550 (-----) [004] ...1 82316.221455: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
61906           <...>-27550 (-----) [004] ...1 82316.221515: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
61907           <...>-27550 (-----) [004] ...1 82316.221520: tracing_mark_write: E|27550
61908           <...>-27550 (-----) [004] ...1 82316.221524: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
61909           <...>-27550 (-----) [004] ...1 82316.221530: tracing_mark_write: E|27550
61910           <...>-27550 (-----) [004] ...1 82316.221533: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
61911           <...>-27550 (-----) [004] ...1 82316.221538: tracing_mark_write: E|27550
61912           <...>-27550 (-----) [004] ...1 82316.221542: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
61913          <idle>-0     (-----) [005] .n.1 82316.221632: cpu_idle: state=4294967295 cpu_id=5
61914           <...>-27550 (-----) [004] ...1 82316.221635: tracing_mark_write: E|27550
61915           <...>-27550 (-----) [004] ...1 82316.221639: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
61916          <idle>-0     (-----) [005] d..2 82316.221641: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27639 next_prio=110
61917           <...>-27550 (-----) [004] d..2 82316.221656: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
61918          <idle>-0     (-----) [004] d..1 82316.221671: cpu_idle: state=0 cpu_id=4
61919           <...>-27639 (-----) [005] ...1 82316.221702: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
61920           <...>-27639 (-----) [005] ...1 82316.221716: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
61921           <...>-27639 (-----) [005] ...1 82316.221721: tracing_mark_write: E|27550
61922           <...>-27639 (-----) [005] .... 82316.221741: binder_transaction: transaction=1569952 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
61923           <...>-27639 (-----) [005] .... 82316.221745: binder_transaction_alloc_buf: transaction=1569952 data_size=48 offsets_size=0
61924           <...>-27639 (-----) [005] ...2 82316.221748: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
61925           <...>-27639 (-----) [005] d..4 82316.221751: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
61926           <...>-27639 (-----) [005] dn.5 82316.221761: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
61927           <...>-27639 (-----) [005] d..2 82316.221768: sched_switch: prev_comm=id.nn.benchmark prev_pid=27639 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
61928<...>-770 ( 770) [005] .... 82316.221814: binder_transaction_received: transaction=1569952
61929<...>-770 ( 770) [005] ...1 82316.221837: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
61930<...>-770 ( 770) [005] d..2 82316.221910: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
61931          <idle>-0     (-----) [000] dnh2 82316.221935: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
61932          <idle>-0     (-----) [000] .n.1 82316.221940: cpu_idle: state=4294967295 cpu_id=0
61933          <idle>-0     (-----) [000] d..2 82316.221950: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
61934<...>-770 ( 770) [005] ...1 82316.221950: tracing_mark_write: E|770
61935<...>-770 ( 770) [005] .... 82316.221958: binder_transaction: transaction=1569953 dest_node=0 dest_proc=27550 dest_thread=27639 reply=1 flags=0x0 code=0x0
61936<...>-770 ( 770) [005] .... 82316.221961: binder_transaction_alloc_buf: transaction=1569953 data_size=168 offsets_size=32
61937<...>-770 ( 770) [005] .... 82316.221967: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
61938<...>-770 ( 770) [005] d..2 82316.222003: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27639 next_prio=110
61939           <...>-27639 (-----) [005] .... 82316.222014: binder_transaction_received: transaction=1569953
61940<...>-581 ( 571) [000] d..2 82316.222023: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61941          <idle>-0     (-----) [000] d..1 82316.222031: cpu_idle: state=0 cpu_id=0
61942           <...>-27639 (-----) [005] ...1 82316.222086: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
61943           <...>-27639 (-----) [005] ...1 82316.222091: tracing_mark_write: E|27550
61944           <...>-27639 (-----) [005] .... 82316.222106: binder_transaction: transaction=1569954 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
61945           <...>-27639 (-----) [005] .... 82316.222108: binder_transaction_alloc_buf: transaction=1569954 data_size=48 offsets_size=0
61946           <...>-27639 (-----) [005] ...2 82316.222111: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
61947           <...>-27639 (-----) [005] d..4 82316.222114: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
61948           <...>-27639 (-----) [005] dn.5 82316.222123: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
61949           <...>-27639 (-----) [005] d..2 82316.222130: sched_switch: prev_comm=id.nn.benchmark prev_pid=27639 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
61950<...>-770 ( 770) [005] .... 82316.222138: binder_transaction_received: transaction=1569954
61951<...>-770 ( 770) [005] ...1 82316.222154: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
61952<...>-770 ( 770) [005] d..2 82316.222212: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
61953<...>-770 ( 770) [005] ...1 82316.222244: tracing_mark_write: E|770
61954<...>-770 ( 770) [005] .... 82316.222252: binder_transaction: transaction=1569955 dest_node=0 dest_proc=27550 dest_thread=27639 reply=1 flags=0x0 code=0x0
61955<...>-770 ( 770) [005] .... 82316.222254: binder_transaction_alloc_buf: transaction=1569955 data_size=168 offsets_size=32
61956<...>-770 ( 770) [005] .... 82316.222260: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
61957          <idle>-0     (-----) [000] d.h5 82316.222278: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
61958<...>-770 ( 770) [005] d..2 82316.222294: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27639 next_prio=110
61959          <idle>-0     (-----) [000] dnh6 82316.222296: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
61960          <idle>-0     (-----) [000] dnh5 82316.222299: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
61961           <...>-27639 (-----) [005] .... 82316.222304: binder_transaction_received: transaction=1569955
61962          <idle>-0     (-----) [000] dnh6 82316.222316: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
61963          <idle>-0     (-----) [003] .n.1 82316.222321: cpu_idle: state=4294967295 cpu_id=3
61964          <idle>-0     (-----) [003] d..2 82316.222332: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
61965          <idle>-0     (-----) [000] dnh2 82316.222336: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
61966          <idle>-0     (-----) [000] .n.1 82316.222341: cpu_idle: state=4294967295 cpu_id=0
61967          <idle>-0     (-----) [000] d..2 82316.222347: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
61968  crtc_event:111-322   (  322) [000] d..2 82316.222365: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
61969<...>-581 ( 571) [000] d..2 82316.222416: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61970          <idle>-0     (-----) [000] d..1 82316.222425: cpu_idle: state=0 cpu_id=0
61971 crtc_commit:111-321   (  321) [003] d..2 82316.222475: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
61972          <idle>-0     (-----) [003] d..1 82316.222483: cpu_idle: state=0 cpu_id=3
61973           <...>-27639 (-----) [005] ...1 82316.222576: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
61974           <...>-27639 (-----) [005] ...1 82316.222585: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
61975           <...>-27639 (-----) [005] ...1 82316.222590: tracing_mark_write: E|27550
61976           <...>-27639 (-----) [005] .... 82316.222652: binder_transaction: transaction=1569956 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
61977           <...>-27639 (-----) [005] .... 82316.222655: binder_transaction_alloc_buf: transaction=1569956 data_size=556 offsets_size=104
61978           <...>-27639 (-----) [005] ...2 82316.222670: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
61979           <...>-27639 (-----) [005] d..4 82316.222673: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61980           <...>-27639 (-----) [005] dn.5 82316.222685: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61981           <...>-27639 (-----) [005] d..2 82316.222692: sched_switch: prev_comm=id.nn.benchmark prev_pid=27639 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
61982<...>-5340 ( 788) [005] .... 82316.222702: binder_transaction_received: transaction=1569956
61983<...>-5340 ( 788) [005] ...1 82316.222746: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
61984<...>-5340 ( 788) [005] d..2 82316.222793: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61985<...>-5340 ( 788) [005] d..2 82316.222817: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27639 next_prio=110
61986          <idle>-0     (-----) [000] dnh2 82316.222819: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
61987          <idle>-0     (-----) [000] .n.1 82316.222825: cpu_idle: state=4294967295 cpu_id=0
61988          <idle>-0     (-----) [000] d..2 82316.222831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
61989           <...>-27639 (-----) [005] d..2 82316.222840: sched_switch: prev_comm=id.nn.benchmark prev_pid=27639 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
61990          <idle>-0     (-----) [005] d..1 82316.222859: cpu_idle: state=0 cpu_id=5
61991<...>-87 ( 87) [000] d..2 82316.222865: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
61992          <idle>-0     (-----) [000] d..1 82316.222871: cpu_idle: state=0 cpu_id=0
61993          <idle>-0     (-----) [002] d.h4 82316.222877: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
61994          <idle>-0     (-----) [002] dnh5 82316.222904: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
61995          <idle>-0     (-----) [002] .n.1 82316.222911: cpu_idle: state=4294967295 cpu_id=2
61996          <idle>-0     (-----) [002] d..2 82316.222923: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
61997<...>-86 ( 86) [002] d..2 82316.222952: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
61998          <idle>-0     (-----) [002] d.h5 82316.222970: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
61999          <idle>-0     (-----) [005] dnh2 82316.222990: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62000          <idle>-0     (-----) [005] .n.1 82316.222995: cpu_idle: state=4294967295 cpu_id=5
62001          <idle>-0     (-----) [005] d..2 82316.223003: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62002          <idle>-0     (-----) [002] d..1 82316.223005: cpu_idle: state=0 cpu_id=2
62003<...>-5340 ( 788) [005] d..1 82316.223055: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
62004          <idle>-0     (-----) [000] dnh2 82316.223079: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
62005          <idle>-0     (-----) [000] .n.1 82316.223084: cpu_idle: state=4294967295 cpu_id=0
62006          <idle>-0     (-----) [000] d..2 82316.223090: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
62007 neuralnetworks@-13088 (  788) [000] d..2 82316.223125: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62008          <idle>-0     (-----) [000] d..1 82316.223132: cpu_idle: state=0 cpu_id=0
62009<...>-5340 ( 788) [005] d..2 82316.223203: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62010          <idle>-0     (-----) [000] dnh2 82316.223223: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62011          <idle>-0     (-----) [000] .n.1 82316.223228: cpu_idle: state=4294967295 cpu_id=0
62012<...>-5340 ( 788) [005] d..2 82316.223229: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62013          <idle>-0     (-----) [000] d..2 82316.223234: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
62014          <idle>-0     (-----) [005] d..1 82316.223243: cpu_idle: state=0 cpu_id=5
62015<...>-87 ( 87) [000] d..2 82316.223265: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62016          <idle>-0     (-----) [002] d.h4 82316.223268: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62017          <idle>-0     (-----) [000] d..1 82316.223271: cpu_idle: state=0 cpu_id=0
62018          <idle>-0     (-----) [002] dnh5 82316.223277: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62019          <idle>-0     (-----) [002] .n.1 82316.223284: cpu_idle: state=4294967295 cpu_id=2
62020          <idle>-0     (-----) [002] d..2 82316.223290: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
62021<...>-86 ( 86) [002] d..2 82316.223318: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62022          <idle>-0     (-----) [002] d..1 82316.223325: cpu_idle: state=0 cpu_id=2
62023          <idle>-0     (-----) [005] ...1 82316.223565: cpu_idle: state=4294967295 cpu_id=5
62024          <idle>-0     (-----) [005] d..1 82316.223568: cpu_idle: state=0 cpu_id=5
62025          <idle>-0     (-----) [000] d.h5 82316.224610: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
62026          <idle>-0     (-----) [000] d.h6 82316.224627: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
62027          <idle>-0     (-----) [003] .n.1 82316.224632: cpu_idle: state=4294967295 cpu_id=3
62028          <idle>-0     (-----) [003] d..2 82316.224639: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
62029          <idle>-0     (-----) [000] ...1 82316.224639: cpu_idle: state=4294967295 cpu_id=0
62030          <idle>-0     (-----) [000] d..1 82316.224643: cpu_idle: state=0 cpu_id=0
62031 crtc_commit:111-321   (  321) [003] d..2 82316.224710: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62032          <idle>-0     (-----) [003] d..1 82316.224716: cpu_idle: state=0 cpu_id=3
62033          <idle>-0     (-----) [000] d.h5 82316.224908: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
62034          <idle>-0     (-----) [000] dnh6 82316.224917: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
62035          <idle>-0     (-----) [000] .n.1 82316.224928: cpu_idle: state=4294967295 cpu_id=0
62036          <idle>-0     (-----) [000] d..2 82316.224934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
62037  crtc_event:111-322   (  322) [000] d..2 82316.224953: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62038          <idle>-0     (-----) [000] d..1 82316.224959: cpu_idle: state=0 cpu_id=0
62039          <idle>-0     (-----) [002] d.h4 82316.224996: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62040          <idle>-0     (-----) [005] dnh2 82316.225015: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62041          <idle>-0     (-----) [005] .n.1 82316.225018: cpu_idle: state=4294967295 cpu_id=5
62042          <idle>-0     (-----) [005] d..2 82316.225026: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62043          <idle>-0     (-----) [002] ...1 82316.225026: cpu_idle: state=4294967295 cpu_id=2
62044          <idle>-0     (-----) [002] d..1 82316.225030: cpu_idle: state=0 cpu_id=2
62045<...>-5340 ( 788) [005] d..1 82316.225076: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
62046          <idle>-0     (-----) [000] dnh2 82316.225094: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
62047          <idle>-0     (-----) [000] .n.1 82316.225101: cpu_idle: state=4294967295 cpu_id=0
62048          <idle>-0     (-----) [000] d..2 82316.225107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
62049          <idle>-0     (-----) [002] d.s2 82316.225130: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
62050          <idle>-0     (-----) [003] d.s3 82316.225132: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
62051 neuralnetworks@-13088 (  788) [000] d.s3 82316.225135: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
62052          <idle>-0     (-----) [002] dns3 82316.225143: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
62053          <idle>-0     (-----) [003] dns4 82316.225157: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
62054          <idle>-0     (-----) [002] .n.1 82316.225162: cpu_idle: state=4294967295 cpu_id=2
62055          <idle>-0     (-----) [002] d..2 82316.225180: 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
62056          <idle>-0     (-----) [003] .n.1 82316.225186: cpu_idle: state=4294967295 cpu_id=3
62057          <idle>-0     (-----) [003] d..2 82316.225192: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
62058<...>-5340 ( 788) [005] ...1 82316.225194: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
62059 neuralnetworks@-13088 (  788) [000] d.s4 82316.225195: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
62060<...>-5340 ( 788) [005] ...1 82316.225198: tracing_mark_write: E|788
62061     rcu_preempt-7     (    7) [002] d..2 82316.225205: 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
62062<...>-5340 ( 788) [005] .... 82316.225213: binder_transaction: transaction=1569959 dest_node=1569957 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
62063  crtc_event:111-322   (  322) [003] d..2 82316.225215: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62064<...>-5340 ( 788) [005] .... 82316.225217: binder_transaction_alloc_buf: transaction=1569959 data_size=60 offsets_size=0
62065<...>-5340 ( 788) [005] d..4 82316.225220: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
62066          <idle>-0     (-----) [003] d..1 82316.225224: cpu_idle: state=0 cpu_id=3
62067<...>-8 ( 8) [002] d..2 82316.225227: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62068<...>-5340 ( 788) [005] d..5 82316.225232: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
62069          <idle>-0     (-----) [002] d..1 82316.225238: cpu_idle: state=0 cpu_id=2
62070          <idle>-0     (-----) [004] .n.1 82316.225239: cpu_idle: state=4294967295 cpu_id=4
62071 neuralnetworks@-13088 (  788) [000] d..2 82316.225242: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62072          <idle>-0     (-----) [004] d..2 82316.225246: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
62073           <...>-27571 (-----) [004] .... 82316.225251: binder_transaction_received: transaction=1569959
62074          <idle>-0     (-----) [000] d..1 82316.225255: cpu_idle: state=0 cpu_id=0
62075<...>-5340 ( 788) [005] ...1 82316.225255: tracing_mark_write: E|788
62076<...>-5340 ( 788) [005] .... 82316.225261: binder_transaction: transaction=1569960 dest_node=0 dest_proc=27550 dest_thread=27639 reply=1 flags=0x0 code=0x0
62077<...>-5340 ( 788) [005] .... 82316.225263: binder_transaction_alloc_buf: transaction=1569960 data_size=8 offsets_size=0
62078<...>-5340 ( 788) [005] d..2 82316.225265: sched_waking: comm=id.nn.benchmark pid=27639 prio=110 target_cpu=005
62079           <...>-27571 (-----) [004] ...1 82316.225269: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
62080<...>-5340 ( 788) [005] d..3 82316.225272: sched_wakeup: comm=id.nn.benchmark pid=27639 prio=110 target_cpu=005
62081<...>-5340 ( 788) [005] .... 82316.225274: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
62082           <...>-27571 (-----) [004] ...1 82316.225275: tracing_mark_write: E|27550
62083           <...>-27571 (-----) [004] d..2 82316.225304: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62084          <idle>-0     (-----) [004] d..1 82316.225311: cpu_idle: state=0 cpu_id=4
62085<...>-5340 ( 788) [005] d..2 82316.225316: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27639 next_prio=110
62086           <...>-27639 (-----) [005] .... 82316.225326: binder_transaction_received: transaction=1569960
62087           <...>-27639 (-----) [005] ...1 82316.225363: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
62088           <...>-27639 (-----) [005] ...1 82316.225369: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
62089           <...>-27639 (-----) [005] ...1 82316.225395: tracing_mark_write: E|27550
62090           <...>-27639 (-----) [005] ...1 82316.225399: tracing_mark_write: E|27550
62091           <...>-27639 (-----) [005] ...1 82316.225402: tracing_mark_write: E|27550
62092           <...>-27639 (-----) [005] ...1 82316.225587: tracing_mark_write: E|27550
62093           <...>-27639 (-----) [005] d..1 82316.225600: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62094           <...>-27639 (-----) [005] d..2 82316.225616: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62095          <idle>-0     (-----) [004] .n.1 82316.225621: cpu_idle: state=4294967295 cpu_id=4
62096          <idle>-0     (-----) [004] d..2 82316.225628: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
62097           <...>-27550 (-----) [004] d..2 82316.225647: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62098          <idle>-0     (-----) [004] d..1 82316.225656: cpu_idle: state=0 cpu_id=4
62099           <...>-27639 (-----) [005] d..1 82316.225703: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62100           <...>-27639 (-----) [005] d..2 82316.225713: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62101          <idle>-0     (-----) [004] .n.1 82316.225718: cpu_idle: state=4294967295 cpu_id=4
62102          <idle>-0     (-----) [004] d..2 82316.225726: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
62103           <...>-27639 (-----) [005] d..2 82316.225751: sched_switch: prev_comm=id.nn.benchmark prev_pid=27639 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
62104           <...>-27550 (-----) [004] ...1 82316.225758: tracing_mark_write: E|27550
62105           <...>-27550 (-----) [004] ...1 82316.225763: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
62106           <...>-27550 (-----) [004] ...1 82316.225768: tracing_mark_write: E|27550
62107          <idle>-0     (-----) [005] d..1 82316.225771: cpu_idle: state=0 cpu_id=5
62108           <...>-27550 (-----) [004] ...1 82316.225772: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
62109           <...>-27550 (-----) [004] ...1 82316.225776: tracing_mark_write: E|27550
62110           <...>-27550 (-----) [004] ...1 82316.225780: tracing_mark_write: E|27550
62111           <...>-27550 (-----) [004] ...1 82316.225894: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
62112           <...>-27550 (-----) [004] ...1 82316.225950: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
62113           <...>-27550 (-----) [004] ...1 82316.225955: tracing_mark_write: E|27550
62114           <...>-27550 (-----) [004] ...1 82316.225959: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
62115           <...>-27550 (-----) [004] ...1 82316.225964: tracing_mark_write: E|27550
62116           <...>-27550 (-----) [004] ...1 82316.225967: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
62117           <...>-27550 (-----) [004] ...1 82316.225971: tracing_mark_write: E|27550
62118           <...>-27550 (-----) [004] ...1 82316.225975: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
62119          <idle>-0     (-----) [005] .n.1 82316.226065: cpu_idle: state=4294967295 cpu_id=5
62120           <...>-27550 (-----) [004] ...1 82316.226065: tracing_mark_write: E|27550
62121           <...>-27550 (-----) [004] ...1 82316.226069: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
62122          <idle>-0     (-----) [005] d..2 82316.226074: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27640 next_prio=110
62123           <...>-27550 (-----) [004] d..2 82316.226086: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62124          <idle>-0     (-----) [004] d..1 82316.226100: cpu_idle: state=0 cpu_id=4
62125           <...>-27640 (-----) [005] ...1 82316.226134: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
62126           <...>-27640 (-----) [005] ...1 82316.226148: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
62127           <...>-27640 (-----) [005] ...1 82316.226152: tracing_mark_write: E|27550
62128           <...>-27640 (-----) [005] .... 82316.226172: binder_transaction: transaction=1569961 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
62129           <...>-27640 (-----) [005] .... 82316.226176: binder_transaction_alloc_buf: transaction=1569961 data_size=48 offsets_size=0
62130           <...>-27640 (-----) [005] ...2 82316.226179: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
62131           <...>-27640 (-----) [005] d..4 82316.226181: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
62132           <...>-27640 (-----) [005] dn.5 82316.226192: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
62133           <...>-27640 (-----) [005] d..2 82316.226199: sched_switch: prev_comm=id.nn.benchmark prev_pid=27640 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
62134<...>-770 ( 770) [005] .... 82316.226209: binder_transaction_received: transaction=1569961
62135<...>-770 ( 770) [005] ...1 82316.226230: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
62136<...>-770 ( 770) [005] d..2 82316.226303: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
62137          <idle>-0     (-----) [000] dnh2 82316.226329: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
62138          <idle>-0     (-----) [000] .n.1 82316.226335: cpu_idle: state=4294967295 cpu_id=0
62139<...>-770 ( 770) [005] ...1 82316.226342: tracing_mark_write: E|770
62140          <idle>-0     (-----) [000] d..2 82316.226344: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
62141<...>-770 ( 770) [005] .... 82316.226350: binder_transaction: transaction=1569962 dest_node=0 dest_proc=27550 dest_thread=27640 reply=1 flags=0x0 code=0x0
62142<...>-770 ( 770) [005] .... 82316.226353: binder_transaction_alloc_buf: transaction=1569962 data_size=168 offsets_size=32
62143<...>-770 ( 770) [005] .... 82316.226359: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
62144<...>-770 ( 770) [005] d..2 82316.226395: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27640 next_prio=110
62145<...>-581 ( 571) [000] d..2 82316.226405: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62146           <...>-27640 (-----) [005] .... 82316.226405: binder_transaction_received: transaction=1569962
62147          <idle>-0     (-----) [000] d..1 82316.226418: cpu_idle: state=0 cpu_id=0
62148           <...>-27640 (-----) [005] ...1 82316.226474: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
62149           <...>-27640 (-----) [005] ...1 82316.226479: tracing_mark_write: E|27550
62150           <...>-27640 (-----) [005] .... 82316.226493: binder_transaction: transaction=1569963 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
62151           <...>-27640 (-----) [005] .... 82316.226496: binder_transaction_alloc_buf: transaction=1569963 data_size=48 offsets_size=0
62152           <...>-27640 (-----) [005] ...2 82316.226498: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
62153           <...>-27640 (-----) [005] d..4 82316.226500: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
62154           <...>-27640 (-----) [005] dn.5 82316.226510: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
62155           <...>-27640 (-----) [005] d..2 82316.226516: sched_switch: prev_comm=id.nn.benchmark prev_pid=27640 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
62156<...>-770 ( 770) [005] .... 82316.226524: binder_transaction_received: transaction=1569963
62157<...>-770 ( 770) [005] ...1 82316.226541: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
62158<...>-770 ( 770) [005] d..2 82316.226597: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
62159          <idle>-0     (-----) [000] dnh2 82316.226618: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
62160          <idle>-0     (-----) [000] .n.1 82316.226624: cpu_idle: state=4294967295 cpu_id=0
62161<...>-770 ( 770) [005] ...1 82316.226630: tracing_mark_write: E|770
62162          <idle>-0     (-----) [000] d..2 82316.226633: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
62163<...>-770 ( 770) [005] .... 82316.226637: binder_transaction: transaction=1569964 dest_node=0 dest_proc=27550 dest_thread=27640 reply=1 flags=0x0 code=0x0
62164<...>-770 ( 770) [005] .... 82316.226640: binder_transaction_alloc_buf: transaction=1569964 data_size=168 offsets_size=32
62165<...>-770 ( 770) [005] .... 82316.226646: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
62166<...>-581 ( 571) [000] d..2 82316.226678: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62167<...>-770 ( 770) [005] d..2 82316.226680: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27640 next_prio=110
62168          <idle>-0     (-----) [000] d..1 82316.226690: cpu_idle: state=0 cpu_id=0
62169           <...>-27640 (-----) [005] .... 82316.226690: binder_transaction_received: transaction=1569964
62170          <idle>-0     (-----) [003] d.h2 82316.226756: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
62171          <idle>-0     (-----) [003] dnh3 82316.226766: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
62172          <idle>-0     (-----) [003] .n.1 82316.226772: cpu_idle: state=4294967295 cpu_id=3
62173          <idle>-0     (-----) [003] d..2 82316.226780: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
62174        DispSync-8879  ( 8858) [003] d..1 82316.226798: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
62175        DispSync-8879  ( 8858) [003] d..2 82316.226817: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
62176          <idle>-0     (-----) [001] .n.1 82316.226822: cpu_idle: state=4294967295 cpu_id=1
62177          <idle>-0     (-----) [001] d..2 82316.226833: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
62178        DispSync-8879  ( 8858) [003] d..2 82316.226844: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62179          <idle>-0     (-----) [003] d..1 82316.226853: cpu_idle: state=0 cpu_id=3
62180  appEventThread-8881  ( 8858) [001] d..3 82316.226890: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
62181  appEventThread-8881  ( 8858) [001] d..4 82316.226908: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
62182          <idle>-0     (-----) [000] .n.1 82316.226914: cpu_idle: state=4294967295 cpu_id=0
62183          <idle>-0     (-----) [000] d..2 82316.226924: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
62184  appEventThread-8881  ( 8858) [001] d..2 82316.226944: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
62185           <...>-27640 (-----) [005] ...1 82316.226957: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
62186          <idle>-0     (-----) [001] d..1 82316.226958: cpu_idle: state=0 cpu_id=1
62187           <...>-27640 (-----) [005] ...1 82316.226967: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
62188           <...>-27640 (-----) [005] ...1 82316.226970: tracing_mark_write: E|27550
62189           <...>-27640 (-----) [005] .... 82316.227029: binder_transaction: transaction=1569965 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
62190           <...>-27640 (-----) [005] .... 82316.227032: binder_transaction_alloc_buf: transaction=1569965 data_size=556 offsets_size=104
62191           <...>-27640 (-----) [005] ...2 82316.227045: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
62192           <...>-27640 (-----) [005] d..4 82316.227047: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62193           <...>-27640 (-----) [005] dn.5 82316.227058: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62194           <...>-27640 (-----) [005] d..2 82316.227065: sched_switch: prev_comm=id.nn.benchmark prev_pid=27640 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62195<...>-5340 ( 788) [005] .... 82316.227075: binder_transaction_received: transaction=1569965
62196<...>-5340 ( 788) [005] ...1 82316.227117: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
62197<...>-5340 ( 788) [005] d..2 82316.227159: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62198<...>-5340 ( 788) [005] d..2 82316.227183: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27640 next_prio=110
62199<...>-9105 ( 9105) [000] d.h1 82316.227189: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62200           <...>-27640 (-----) [005] d..2 82316.227205: sched_switch: prev_comm=id.nn.benchmark prev_pid=27640 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62201          <idle>-0     (-----) [005] d..1 82316.227223: cpu_idle: state=0 cpu_id=5
62202<...>-9105 ( 9105) [000] .... 82316.227248: binder_transaction: transaction=1569968 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
62203<...>-9105 ( 9105) [000] .... 82316.227254: binder_transaction_alloc_buf: transaction=1569968 data_size=80 offsets_size=0
62204<...>-9105 ( 9105) [000] d..4 82316.227259: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
62205<...>-9105 ( 9105) [000] d..5 82316.227285: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
62206          <idle>-0     (-----) [001] .n.1 82316.227291: cpu_idle: state=4294967295 cpu_id=1
62207          <idle>-0     (-----) [001] d..2 82316.227302: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
62208<...>-13083 ( 8858) [001] .... 82316.227308: binder_transaction_received: transaction=1569968
62209<...>-9105 ( 9105) [000] d..3 82316.227319: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
62210<...>-9105 ( 9105) [000] d..4 82316.227334: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
62211          <idle>-0     (-----) [002] .n.1 82316.227339: cpu_idle: state=4294967295 cpu_id=2
62212<...>-13083 ( 8858) [001] d..1 82316.227340: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
62213          <idle>-0     (-----) [002] d..2 82316.227349: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
62214<...>-13083 ( 8858) [001] d..2 82316.227361: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
62215          <idle>-0     (-----) [003] .n.1 82316.227366: cpu_idle: state=4294967295 cpu_id=3
62216          <idle>-0     (-----) [003] d..2 82316.227374: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
62217    RenderThread-9436  ( 9105) [002] d..2 82316.227395: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62218          <idle>-0     (-----) [002] d..1 82316.227405: cpu_idle: state=0 cpu_id=2
62219<...>-13083 ( 8858) [001] d..2 82316.227413: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
62220  appEventThread-8881  ( 8858) [003] d..2 82316.227418: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62221          <idle>-0     (-----) [003] d..1 82316.227427: cpu_idle: state=0 cpu_id=3
62222<...>-9105 ( 9105) [000] d..3 82316.227449: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
62223<...>-87 ( 87) [001] d..2 82316.227449: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
62224          <idle>-0     (-----) [002] dnh4 82316.227461: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62225          <idle>-0     (-----) [001] d..1 82316.227461: cpu_idle: state=0 cpu_id=1
62226<...>-9105 ( 9105) [000] d..4 82316.227464: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
62227<...>-9105 ( 9105) [000] d..2 82316.227496: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62228          <idle>-0     (-----) [002] dnh5 82316.227506: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
62229          <idle>-0     (-----) [002] .n.1 82316.227517: cpu_idle: state=4294967295 cpu_id=2
62230          <idle>-0     (-----) [000] d..2 82316.227518: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
62231          <idle>-0     (-----) [002] d..2 82316.227528: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
62232    RenderThread-9436  ( 9105) [002] d.h5 82316.227547: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62233          <idle>-0     (-----) [005] dnh2 82316.227567: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62234          <idle>-0     (-----) [005] .n.1 82316.227572: cpu_idle: state=4294967295 cpu_id=5
62235          <idle>-0     (-----) [005] d..2 82316.227580: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62236<...>-86 ( 86) [000] d..2 82316.227589: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62237          <idle>-0     (-----) [000] d..1 82316.227602: cpu_idle: state=0 cpu_id=0
62238<...>-5340 ( 788) [005] d..1 82316.227631: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
62239    RenderThread-9436  ( 9105) [002] dnh1 82316.227669: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
62240    RenderThread-9436  ( 9105) [002] d..2 82316.227679: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
62241 neuralnetworks@-13088 (  788) [002] d..2 82316.227715: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
62242    RenderThread-9436  ( 9105) [002] d..1 82316.227753: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
62243    RenderThread-9436  ( 9105) [002] d..2 82316.227766: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
62244          <idle>-0     (-----) [000] .n.1 82316.227772: cpu_idle: state=4294967295 cpu_id=0
62245          <idle>-0     (-----) [000] d..2 82316.227782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
62246<...>-5340 ( 788) [005] d..2 82316.227790: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
62247          <idle>-0     (-----) [001] dnh2 82316.227810: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
62248<...>-5340 ( 788) [005] d..2 82316.227815: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62249          <idle>-0     (-----) [001] .n.1 82316.227816: cpu_idle: state=4294967295 cpu_id=1
62250          <idle>-0     (-----) [001] d..2 82316.227825: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
62251    RenderThread-9436  ( 9105) [002] .... 82316.227828: binder_transaction: transaction=1569969 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
62252          <idle>-0     (-----) [005] d..1 82316.227829: cpu_idle: state=0 cpu_id=5
62253    RenderThread-9436  ( 9105) [002] .... 82316.227832: binder_transaction_alloc_buf: transaction=1569969 data_size=104 offsets_size=0
62254    RenderThread-9436  ( 9105) [002] d..4 82316.227836: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
62255<...>-9105 ( 9105) [000] d..2 82316.227852: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62256    RenderThread-9436  ( 9105) [002] dn.5 82316.227855: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
62257<...>-87 ( 87) [001] d..2 82316.227861: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
62258          <idle>-0     (-----) [000] d..1 82316.227865: cpu_idle: state=0 cpu_id=0
62259          <idle>-0     (-----) [001] d..1 82316.227870: cpu_idle: state=0 cpu_id=1
62260    RenderThread-9436  ( 9105) [002] dnh6 82316.227873: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
62261    RenderThread-9436  ( 9105) [002] dnh7 82316.227885: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
62262          <idle>-0     (-----) [000] .n.1 82316.227891: cpu_idle: state=4294967295 cpu_id=0
62263    RenderThread-9436  ( 9105) [002] d..2 82316.227896: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
62264          <idle>-0     (-----) [000] d..2 82316.227901: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
62265<...>-13083 ( 8858) [002] .... 82316.227903: binder_transaction_received: transaction=1569969
62266<...>-86 ( 86) [000] d..2 82316.227934: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62267          <idle>-0     (-----) [000] d..1 82316.227944: cpu_idle: state=0 cpu_id=0
62268<...>-13083 ( 8858) [002] .... 82316.227967: binder_transaction: transaction=1569970 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
62269<...>-13083 ( 8858) [002] .... 82316.227971: binder_transaction_alloc_buf: transaction=1569970 data_size=52 offsets_size=8
62270<...>-13083 ( 8858) [002] d..2 82316.228013: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
62271    RenderThread-9436  ( 9105) [002] .... 82316.228021: binder_transaction_received: transaction=1569970
62272          <idle>-0     (-----) [005] ...1 82316.228201: cpu_idle: state=4294967295 cpu_id=5
62273          <idle>-0     (-----) [005] d..1 82316.228205: cpu_idle: state=0 cpu_id=5
62274    RenderThread-9436  ( 9105) [002] d.s2 82316.228484: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
62275    RenderThread-9436  ( 9105) [002] dns3 82316.228502: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
62276    RenderThread-9436  ( 9105) [002] d..2 82316.228519: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
62277  kworker/u16:15-1311  ( 1311) [002] d..2 82316.228706: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=RenderThread next_pid=9436 next_prio=120
62278          <idle>-0     (-----) [001] d.s3 82316.228746: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
62279          <idle>-0     (-----) [001] d.s4 82316.228764: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
62280          <idle>-0     (-----) [001] dns4 82316.228768: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
62281          <idle>-0     (-----) [001] .n.1 82316.228775: cpu_idle: state=4294967295 cpu_id=1
62282          <idle>-0     (-----) [001] d..2 82316.228785: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
62283  kworker/u16:15-1311  ( 1311) [001] .... 82316.228859: clk_set_rate: l3_cluster0_vote_clk 300000000
62284  kworker/u16:15-1311  ( 1311) [001] d..2 82316.228887: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
62285          <idle>-0     (-----) [001] d..1 82316.228899: cpu_idle: state=0 cpu_id=1
62286    RenderThread-9436  ( 9105) [002] d..2 82316.229228: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
62287          <idle>-0     (-----) [002] d..1 82316.229241: cpu_idle: state=0 cpu_id=2
62288          <idle>-0     (-----) [000] ...1 82316.229288: cpu_idle: state=4294967295 cpu_id=0
62289          <idle>-0     (-----) [000] d..1 82316.229293: cpu_idle: state=0 cpu_id=0
62290          <idle>-0     (-----) [002] d.h2 82316.229310: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
62291          <idle>-0     (-----) [002] d.h3 82316.229318: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
62292          <idle>-0     (-----) [002] dnh3 82316.229323: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
62293          <idle>-0     (-----) [002] .n.1 82316.229330: cpu_idle: state=4294967295 cpu_id=2
62294          <idle>-0     (-----) [002] d..2 82316.229337: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
62295          <idle>-0     (-----) [000] d.h3 82316.229350: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
62296          <idle>-0     (-----) [000] dnh4 82316.229363: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
62297          <idle>-0     (-----) [000] .n.1 82316.229373: cpu_idle: state=4294967295 cpu_id=0
62298          <idle>-0     (-----) [000] d..2 82316.229381: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
62299 kgsl_worker_thr-258   (  258) [000] d..2 82316.229429: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
62300 kgsl_worker_thr-258   (  258) [000] d..3 82316.229444: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
62301          <idle>-0     (-----) [001] .n.1 82316.229450: cpu_idle: state=4294967295 cpu_id=1
62302          <idle>-0     (-----) [001] d..2 82316.229459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
62303 kgsl_worker_thr-258   (  258) [000] d..2 82316.229467: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62304          <idle>-0     (-----) [000] d..1 82316.229479: cpu_idle: state=0 cpu_id=0
62305    RenderThread-9436  ( 9105) [002] d.h3 82316.229480: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62306  kworker/u16:15-1311  ( 1311) [001] d..2 82316.229500: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
62307          <idle>-0     (-----) [005] dnh2 82316.229501: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62308          <idle>-0     (-----) [005] .n.1 82316.229505: cpu_idle: state=4294967295 cpu_id=5
62309          <idle>-0     (-----) [001] d..1 82316.229510: cpu_idle: state=0 cpu_id=1
62310          <idle>-0     (-----) [005] d..2 82316.229513: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62311    RenderThread-9436  ( 9105) [002] .... 82316.229560: binder_transaction: transaction=1569971 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
62312    RenderThread-9436  ( 9105) [002] .... 82316.229564: binder_transaction_alloc_buf: transaction=1569971 data_size=192 offsets_size=8
62313<...>-5340 ( 788) [005] d..1 82316.229567: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
62314    RenderThread-9436  ( 9105) [002] d..4 82316.229573: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
62315    RenderThread-9436  ( 9105) [002] dn.5 82316.229586: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
62316    RenderThread-9436  ( 9105) [002] dnh4 82316.229598: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
62317    RenderThread-9436  ( 9105) [002] d..2 82316.229607: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
62318<...>-13083 ( 8858) [002] .... 82316.229614: binder_transaction_received: transaction=1569971
62319<...>-5340 ( 788) [005] ...1 82316.229662: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
62320<...>-5340 ( 788) [005] ...1 82316.229666: tracing_mark_write: E|788
62321<...>-5340 ( 788) [005] .... 82316.229684: binder_transaction: transaction=1569972 dest_node=1569966 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
62322<...>-5340 ( 788) [005] .... 82316.229687: binder_transaction_alloc_buf: transaction=1569972 data_size=60 offsets_size=0
62323<...>-5340 ( 788) [005] d..4 82316.229691: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
62324<...>-5340 ( 788) [005] d..5 82316.229703: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
62325          <idle>-0     (-----) [004] .n.1 82316.229709: cpu_idle: state=4294967295 cpu_id=4
62326          <idle>-0     (-----) [004] d..2 82316.229717: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
62327           <...>-27571 (-----) [004] .... 82316.229723: binder_transaction_received: transaction=1569972
62328<...>-5340 ( 788) [005] ...1 82316.229726: tracing_mark_write: E|788
62329<...>-5340 ( 788) [005] .... 82316.229732: binder_transaction: transaction=1569973 dest_node=0 dest_proc=27550 dest_thread=27640 reply=1 flags=0x0 code=0x0
62330<...>-5340 ( 788) [005] .... 82316.229734: binder_transaction_alloc_buf: transaction=1569973 data_size=8 offsets_size=0
62331<...>-5340 ( 788) [005] d..2 82316.229735: sched_waking: comm=id.nn.benchmark pid=27640 prio=110 target_cpu=005
62332<...>-5340 ( 788) [005] d..3 82316.229742: sched_wakeup: comm=id.nn.benchmark pid=27640 prio=110 target_cpu=005
62333           <...>-27571 (-----) [004] ...1 82316.229742: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
62334<...>-5340 ( 788) [005] .... 82316.229744: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
62335           <...>-27571 (-----) [004] ...1 82316.229749: tracing_mark_write: E|27550
62336<...>-13083 ( 8858) [002] .... 82316.229759: binder_transaction: transaction=1569974 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
62337<...>-13083 ( 8858) [002] .... 82316.229764: binder_transaction_alloc_buf: transaction=1569974 data_size=68 offsets_size=0
62338           <...>-27571 (-----) [004] d..2 82316.229776: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62339          <idle>-0     (-----) [004] d..1 82316.229784: cpu_idle: state=0 cpu_id=4
62340<...>-5340 ( 788) [005] d..2 82316.229786: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27640 next_prio=110
62341           <...>-27640 (-----) [005] .... 82316.229797: binder_transaction_received: transaction=1569973
62342<...>-13083 ( 8858) [002] d..2 82316.229802: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
62343 neuralnetworks@-13088 (  788) [002] d..2 82316.229830: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
62344           <...>-27640 (-----) [005] ...1 82316.229834: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
62345    RenderThread-9436  ( 9105) [002] .... 82316.229839: binder_transaction_received: transaction=1569974
62346           <...>-27640 (-----) [005] ...1 82316.229841: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
62347           <...>-27640 (-----) [005] ...1 82316.229867: tracing_mark_write: E|27550
62348           <...>-27640 (-----) [005] ...1 82316.229871: tracing_mark_write: E|27550
62349           <...>-27640 (-----) [005] ...1 82316.229875: tracing_mark_write: E|27550
62350    RenderThread-9436  ( 9105) [002] d..2 82316.229917: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62351          <idle>-0     (-----) [002] d..1 82316.229928: cpu_idle: state=0 cpu_id=2
62352           <...>-27640 (-----) [005] ...1 82316.230064: tracing_mark_write: E|27550
62353           <...>-27640 (-----) [005] d..1 82316.230076: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62354           <...>-27640 (-----) [005] d..2 82316.230092: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62355          <idle>-0     (-----) [004] .n.1 82316.230096: cpu_idle: state=4294967295 cpu_id=4
62356          <idle>-0     (-----) [004] d..2 82316.230103: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
62357           <...>-27550 (-----) [004] d..2 82316.230123: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62358          <idle>-0     (-----) [004] d..1 82316.230132: cpu_idle: state=0 cpu_id=4
62359           <...>-27640 (-----) [005] d..1 82316.230183: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62360           <...>-27640 (-----) [005] d..2 82316.230193: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62361          <idle>-0     (-----) [004] .n.1 82316.230197: cpu_idle: state=4294967295 cpu_id=4
62362          <idle>-0     (-----) [004] d..2 82316.230205: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
62363           <...>-27640 (-----) [005] d..2 82316.230233: sched_switch: prev_comm=id.nn.benchmark prev_pid=27640 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
62364           <...>-27550 (-----) [004] ...1 82316.230239: tracing_mark_write: E|27550
62365           <...>-27550 (-----) [004] ...1 82316.230244: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
62366           <...>-27550 (-----) [004] ...1 82316.230250: tracing_mark_write: E|27550
62367           <...>-27550 (-----) [004] ...1 82316.230253: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
62368          <idle>-0     (-----) [005] d..1 82316.230254: cpu_idle: state=0 cpu_id=5
62369           <...>-27550 (-----) [004] ...1 82316.230257: tracing_mark_write: E|27550
62370           <...>-27550 (-----) [004] ...1 82316.230261: tracing_mark_write: E|27550
62371           <...>-27550 (-----) [004] ...1 82316.230374: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
62372           <...>-27550 (-----) [004] ...1 82316.230432: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
62373           <...>-27550 (-----) [004] ...1 82316.230437: tracing_mark_write: E|27550
62374           <...>-27550 (-----) [004] ...1 82316.230441: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
62375           <...>-27550 (-----) [004] ...1 82316.230447: tracing_mark_write: E|27550
62376           <...>-27550 (-----) [004] ...1 82316.230451: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
62377           <...>-27550 (-----) [004] ...1 82316.230455: tracing_mark_write: E|27550
62378           <...>-27550 (-----) [004] ...1 82316.230459: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
62379          <idle>-0     (-----) [005] .n.1 82316.230555: cpu_idle: state=4294967295 cpu_id=5
62380           <...>-27550 (-----) [004] ...1 82316.230557: tracing_mark_write: E|27550
62381           <...>-27550 (-----) [004] ...1 82316.230561: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
62382          <idle>-0     (-----) [005] d..2 82316.230564: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27641 next_prio=110
62383           <...>-27550 (-----) [004] d..2 82316.230579: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62384          <idle>-0     (-----) [004] d..1 82316.230593: cpu_idle: state=0 cpu_id=4
62385           <...>-27641 (-----) [005] ...1 82316.230628: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
62386           <...>-27641 (-----) [005] ...1 82316.230643: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
62387           <...>-27641 (-----) [005] ...1 82316.230646: tracing_mark_write: E|27550
62388           <...>-27641 (-----) [005] .... 82316.230669: binder_transaction: transaction=1569975 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
62389           <...>-27641 (-----) [005] .... 82316.230673: binder_transaction_alloc_buf: transaction=1569975 data_size=48 offsets_size=0
62390           <...>-27641 (-----) [005] ...2 82316.230676: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
62391           <...>-27641 (-----) [005] d..4 82316.230679: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
62392           <...>-27641 (-----) [005] dn.5 82316.230689: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
62393           <...>-27641 (-----) [005] d..2 82316.230696: sched_switch: prev_comm=id.nn.benchmark prev_pid=27641 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
62394<...>-770 ( 770) [005] .... 82316.230706: binder_transaction_received: transaction=1569975
62395<...>-770 ( 770) [005] ...1 82316.230732: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
62396          <idle>-0     (-----) [003] d.h2 82316.230766: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
62397          <idle>-0     (-----) [003] dnh3 82316.230777: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
62398          <idle>-0     (-----) [003] .n.1 82316.230783: cpu_idle: state=4294967295 cpu_id=3
62399          <idle>-0     (-----) [003] d..2 82316.230792: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
62400        DispSync-8879  ( 8858) [003] d..1 82316.230804: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
62401        DispSync-8879  ( 8858) [003] d..2 82316.230816: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
62402<...>-770 ( 770) [005] d..2 82316.230818: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
62403          <idle>-0     (-----) [002] .n.1 82316.230823: cpu_idle: state=4294967295 cpu_id=2
62404          <idle>-0     (-----) [002] d..2 82316.230830: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
62405        DispSync-8879  ( 8858) [003] d..2 82316.230839: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62406          <idle>-0     (-----) [003] d..1 82316.230850: cpu_idle: state=0 cpu_id=3
62407          <idle>-0     (-----) [003] dnh2 82316.230862: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
62408          <idle>-0     (-----) [003] .n.1 82316.230867: cpu_idle: state=4294967295 cpu_id=3
62409   sfEventThread-8882  ( 8858) [002] d..3 82316.230869: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
62410<...>-770 ( 770) [005] ...1 82316.230877: tracing_mark_write: E|770
62411          <idle>-0     (-----) [003] d..2 82316.230879: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
62412          <idle>-0     (-----) [000] ...1 82316.230883: cpu_idle: state=4294967295 cpu_id=0
62413<...>-770 ( 770) [005] .... 82316.230885: binder_transaction: transaction=1569976 dest_node=0 dest_proc=27550 dest_thread=27641 reply=1 flags=0x0 code=0x0
62414          <idle>-0     (-----) [000] d..1 82316.230886: cpu_idle: state=0 cpu_id=0
62415<...>-770 ( 770) [005] .... 82316.230888: binder_transaction_alloc_buf: transaction=1569976 data_size=168 offsets_size=32
62416<...>-770 ( 770) [005] .... 82316.230895: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
62417   sfEventThread-8882  ( 8858) [002] d..4 82316.230899: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
62418          <idle>-0     (-----) [000] .n.1 82316.230903: cpu_idle: state=4294967295 cpu_id=0
62419          <idle>-0     (-----) [000] d..2 82316.230911: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
62420   sfEventThread-8882  ( 8858) [002] d..2 82316.230929: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62421<...>-770 ( 770) [005] d..2 82316.230932: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27641 next_prio=110
62422          <idle>-0     (-----) [002] d..1 82316.230938: cpu_idle: state=0 cpu_id=2
62423           <...>-27641 (-----) [005] .... 82316.230943: binder_transaction_received: transaction=1569976
62424<...>-581 ( 571) [003] d..2 82316.230965: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62425          <idle>-0     (-----) [003] d..1 82316.230978: cpu_idle: state=0 cpu_id=3
62426           <...>-27641 (-----) [005] ...1 82316.231016: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
62427           <...>-27641 (-----) [005] ...1 82316.231021: tracing_mark_write: E|27550
62428          <idle>-0     (-----) [001] ...1 82316.231035: cpu_idle: state=4294967295 cpu_id=1
62429           <...>-27641 (-----) [005] .... 82316.231036: binder_transaction: transaction=1569977 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
62430           <...>-27641 (-----) [005] .... 82316.231038: binder_transaction_alloc_buf: transaction=1569977 data_size=48 offsets_size=0
62431          <idle>-0     (-----) [001] d..1 82316.231038: cpu_idle: state=0 cpu_id=1
62432           <...>-27641 (-----) [005] ...2 82316.231041: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
62433           <...>-27641 (-----) [005] d..4 82316.231043: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
62434           <...>-27641 (-----) [005] dn.5 82316.231053: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
62435           <...>-27641 (-----) [005] d..2 82316.231059: sched_switch: prev_comm=id.nn.benchmark prev_pid=27641 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
62436<...>-770 ( 770) [005] .... 82316.231067: binder_transaction_received: transaction=1569977
62437<...>-770 ( 770) [005] ...1 82316.231084: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
62438<...>-770 ( 770) [005] d..2 82316.231143: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
62439          <idle>-0     (-----) [003] dnh2 82316.231166: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
62440          <idle>-0     (-----) [003] .n.1 82316.231171: cpu_idle: state=4294967295 cpu_id=3
62441<...>-770 ( 770) [005] ...1 82316.231177: tracing_mark_write: E|770
62442          <idle>-0     (-----) [003] d..2 82316.231180: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
62443<...>-770 ( 770) [005] .... 82316.231184: binder_transaction: transaction=1569978 dest_node=0 dest_proc=27550 dest_thread=27641 reply=1 flags=0x0 code=0x0
62444<...>-770 ( 770) [005] .... 82316.231187: binder_transaction_alloc_buf: transaction=1569978 data_size=168 offsets_size=32
62445<...>-770 ( 770) [005] .... 82316.231192: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
62446  surfaceflinger-8858  ( 8858) [000] d..1 82316.231225: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
62447<...>-770 ( 770) [005] d..2 82316.231227: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27641 next_prio=110
62448<...>-581 ( 571) [003] d..2 82316.231228: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62449           <...>-27641 (-----) [005] .... 82316.231238: binder_transaction_received: transaction=1569978
62450          <idle>-0     (-----) [003] d..1 82316.231239: cpu_idle: state=0 cpu_id=3
62451  surfaceflinger-8858  ( 8858) [000] d..2 82316.231244: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
62452          <idle>-0     (-----) [002] .n.1 82316.231250: cpu_idle: state=4294967295 cpu_id=2
62453          <idle>-0     (-----) [002] d..2 82316.231256: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
62454   sfEventThread-8882  ( 8858) [002] d..2 82316.231284: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62455          <idle>-0     (-----) [002] d..1 82316.231290: cpu_idle: state=0 cpu_id=2
62456  surfaceflinger-8858  ( 8858) [000] ...1 82316.231406: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
62457  surfaceflinger-8858  ( 8858) [000] ...1 82316.231412: tracing_mark_write: E|8858
62458  surfaceflinger-8858  ( 8858) [000] .... 82316.231455: binder_transaction: transaction=1569979 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
62459  surfaceflinger-8858  ( 8858) [000] .... 82316.231459: binder_transaction_alloc_buf: transaction=1569979 data_size=540 offsets_size=96
62460  surfaceflinger-8858  ( 8858) [000] ...2 82316.231483: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
62461  surfaceflinger-8858  ( 8858) [000] d..4 82316.231490: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
62462  surfaceflinger-8858  ( 8858) [000] d..5 82316.231507: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
62463           <...>-27641 (-----) [005] ...1 82316.231510: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
62464          <idle>-0     (-----) [001] .n.1 82316.231511: cpu_idle: state=4294967295 cpu_id=1
62465           <...>-27641 (-----) [005] ...1 82316.231519: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
62466          <idle>-0     (-----) [001] d..2 82316.231519: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
62467           <...>-27641 (-----) [005] ...1 82316.231523: tracing_mark_write: E|27550
62468 [email protected]   (  619) [001] .... 82316.231528: binder_transaction_received: transaction=1569979
62469  surfaceflinger-8858  ( 8858) [000] d..2 82316.231534: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62470          <idle>-0     (-----) [000] d..1 82316.231551: cpu_idle: state=0 cpu_id=0
62471 [email protected]   (  619) [001] ...1 82316.231567: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
62472           <...>-27641 (-----) [005] .... 82316.231585: binder_transaction: transaction=1569980 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
62473           <...>-27641 (-----) [005] .... 82316.231588: binder_transaction_alloc_buf: transaction=1569980 data_size=556 offsets_size=104
62474           <...>-27641 (-----) [005] ...2 82316.231603: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
62475           <...>-27641 (-----) [005] d..4 82316.231606: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62476           <...>-27641 (-----) [005] dn.5 82316.231617: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62477           <...>-27641 (-----) [005] d..2 82316.231624: sched_switch: prev_comm=id.nn.benchmark prev_pid=27641 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62478<...>-5340 ( 788) [005] .... 82316.231633: binder_transaction_received: transaction=1569980
62479 [email protected]   (  619) [001] ...1 82316.231656: tracing_mark_write: B|619|HWCSession::PresentDisplay::
62480<...>-5340 ( 788) [005] ...1 82316.231680: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
62481<...>-5340 ( 788) [005] d..2 82316.231728: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
62482<...>-5340 ( 788) [005] d..2 82316.231753: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27641 next_prio=110
62483 [email protected]   (  619) [001] d.h1 82316.231757: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
62484           <...>-27641 (-----) [005] d..2 82316.231780: sched_switch: prev_comm=id.nn.benchmark prev_pid=27641 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62485          <idle>-0     (-----) [002] d.s2 82316.231806: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
62486          <idle>-0     (-----) [002] dns3 82316.231850: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
62487          <idle>-0     (-----) [002] dns2 82316.231853: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
62488          <idle>-0     (-----) [002] dns3 82316.231865: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
62489          <idle>-0     (-----) [005] d.H4 82316.231867: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
62490          <idle>-0     (-----) [002] .n.1 82316.231878: cpu_idle: state=4294967295 cpu_id=2
62491          <idle>-0     (-----) [002] d..2 82316.231886: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
62492 [email protected]   (  619) [001] ...1 82316.231890: tracing_mark_write: B|619|HWDeviceDRM::Commit::
62493<...>-8 ( 8) [002] d..2 82316.231895: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
62494          <idle>-0     (-----) [003] dnh2 82316.231895: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
62495          <idle>-0     (-----) [003] .n.1 82316.231902: cpu_idle: state=4294967295 cpu_id=3
62496 [email protected]   (  619) [001] ...1 82316.231902: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
62497          <idle>-0     (-----) [005] d..1 82316.231908: cpu_idle: state=0 cpu_id=5
62498          <idle>-0     (-----) [003] d..2 82316.231911: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
62499<...>-8 ( 8) [002] d..3 82316.231927: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
62500<...>-8 ( 8) [002] d..2 82316.231938: 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
62501         sugov:0-576   (  576) [003] .... 82316.231941: clk_set_rate: pwrcl_clk 902400000
62502     rcu_preempt-7     (    7) [002] d..2 82316.231944: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
62503         sugov:0-576   (  576) [003] .... 82316.231958: clk_set_rate: cpu3_pwrcl_clk 1132800000
62504         sugov:0-576   (  576) [003] .... 82316.231967: clk_set_rate: cpu2_pwrcl_clk 1132800000
62505     rcu_preempt-7     (    7) [002] d..3 82316.231973: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
62506         sugov:0-576   (  576) [003] .... 82316.231974: clk_set_rate: cpu1_pwrcl_clk 1132800000
62507     rcu_preempt-7     (    7) [002] d..2 82316.231976: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
62508         sugov:0-576   (  576) [003] .... 82316.231981: clk_set_rate: cpu0_pwrcl_clk 902400000
62509     rcu_preempt-7     (    7) [002] d..3 82316.232007: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
62510     rcu_preempt-7     (    7) [002] d..2 82316.232026: 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
62511         sugov:0-576   (  576) [003] .... 82316.232093: cpu_frequency: state=902400 cpu_id=0
62512         sugov:0-576   (  576) [003] .... 82316.232113: cpu_frequency: state=902400 cpu_id=1
62513         sugov:0-576   (  576) [003] .... 82316.232117: cpu_frequency: state=902400 cpu_id=2
62514         sugov:0-576   (  576) [003] .... 82316.232122: cpu_frequency: state=902400 cpu_id=3
62515         sugov:0-576   (  576) [003] d..2 82316.232139: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
62516<...>-46 ( 46) [003] d..2 82316.232152: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
62517<...>-46 ( 46) [003] d..3 82316.232172: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
62518<...>-46 ( 46) [003] d..2 82316.232183: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
62519         rcuop/2-29    (   29) [003] d..2 82316.232189: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
62520         rcuop/2-29    (   29) [003] d..3 82316.232224: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
62521         rcuop/2-29    (   29) [003] d..2 82316.232239: 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
62522         rcuop/0-10    (   10) [002] d..2 82316.232275: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
62523         rcuop/3-37    (   37) [003] d..2 82316.232278: 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
62524          <idle>-0     (-----) [003] d..1 82316.232293: cpu_idle: state=0 cpu_id=3
62525<...>-8 ( 8) [002] d..2 82316.232302: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62526          <idle>-0     (-----) [002] d..1 82316.232323: cpu_idle: state=0 cpu_id=2
62527 [email protected]   (  619) [001] d..2 82316.232478: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
62528 [email protected]   (  619) [001] d..3 82316.232503: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
62529          <idle>-0     (-----) [003] .n.1 82316.232510: cpu_idle: state=4294967295 cpu_id=3
62530          <idle>-0     (-----) [003] d..2 82316.232520: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
62531 [email protected]   (  619) [001] ...1 82316.232603: tracing_mark_write: E|619
62532 [email protected]   (  619) [001] ...1 82316.232609: tracing_mark_write: E|619
62533 [email protected]   (  619) [001] ...1 82316.232668: tracing_mark_write: E|619
62534 [email protected]   (  619) [001] ...1 82316.232710: tracing_mark_write: E|619
62535 [email protected]   (  619) [001] .... 82316.232725: binder_transaction: transaction=1569983 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
62536 [email protected]   (  619) [001] .... 82316.232729: binder_transaction_alloc_buf: transaction=1569983 data_size=576 offsets_size=112
62537 [email protected]   (  619) [001] d..2 82316.232748: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
62538 [email protected]   (  619) [001] d..3 82316.232767: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
62539 [email protected]   (  619) [001] .... 82316.232772: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
62540          <idle>-0     (-----) [000] .n.1 82316.232773: cpu_idle: state=4294967295 cpu_id=0
62541          <idle>-0     (-----) [000] d..2 82316.232785: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
62542  surfaceflinger-8858  ( 8858) [000] .... 82316.232793: binder_transaction_received: transaction=1569983
62543 [email protected]   (  619) [001] d..2 82316.232842: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
62544<...>-87 ( 87) [001] d..2 82316.232890: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
62545          <idle>-0     (-----) [002] d.h4 82316.232902: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
62546          <idle>-0     (-----) [001] d..1 82316.232909: cpu_idle: state=0 cpu_id=1
62547          <idle>-0     (-----) [002] dnh5 82316.232935: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62548          <idle>-0     (-----) [002] .n.1 82316.232945: cpu_idle: state=4294967295 cpu_id=2
62549          <idle>-0     (-----) [002] d..2 82316.232958: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
62550<...>-86 ( 86) [002] d.h5 82316.232980: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62551          <idle>-0     (-----) [005] dnh2 82316.233002: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62552          <idle>-0     (-----) [005] .n.1 82316.233006: cpu_idle: state=4294967295 cpu_id=5
62553          <idle>-0     (-----) [005] d..2 82316.233015: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62554<...>-86 ( 86) [002] d..2 82316.233047: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62555          <idle>-0     (-----) [002] d..1 82316.233059: cpu_idle: state=0 cpu_id=2
62556<...>-5340 ( 788) [005] d..1 82316.233073: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
62557 crtc_commit:111-321   (  321) [003] d.h1 82316.233113: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
62558  surfaceflinger-8858  ( 8858) [000] d..2 82316.233217: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62559 crtc_commit:111-321   (  321) [003] d..2 82316.233228: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
62560          <idle>-0     (-----) [000] d..1 82316.233235: cpu_idle: state=0 cpu_id=0
62561<...>-5340 ( 788) [005] d..2 82316.233240: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
62562          <idle>-0     (-----) [001] dnh2 82316.233263: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
62563<...>-5340 ( 788) [005] d..2 82316.233265: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62564          <idle>-0     (-----) [001] .n.1 82316.233270: cpu_idle: state=4294967295 cpu_id=1
62565          <idle>-0     (-----) [005] d..1 82316.233279: cpu_idle: state=0 cpu_id=5
62566          <idle>-0     (-----) [001] d..2 82316.233282: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
62567 neuralnetworks@-13088 (  788) [003] d..2 82316.233284: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62568          <idle>-0     (-----) [003] d..1 82316.233300: cpu_idle: state=0 cpu_id=3
62569<...>-87 ( 87) [001] d..2 82316.233317: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
62570          <idle>-0     (-----) [002] d.h4 82316.233320: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62571          <idle>-0     (-----) [001] d..1 82316.233329: cpu_idle: state=0 cpu_id=1
62572          <idle>-0     (-----) [002] dnh5 82316.233330: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62573          <idle>-0     (-----) [002] .n.1 82316.233338: cpu_idle: state=4294967295 cpu_id=2
62574          <idle>-0     (-----) [002] d..2 82316.233350: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
62575<...>-86 ( 86) [002] d..2 82316.233381: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62576          <idle>-0     (-----) [002] d..1 82316.233392: cpu_idle: state=0 cpu_id=2
62577          <idle>-0     (-----) [003] ...1 82316.234576: cpu_idle: state=4294967295 cpu_id=3
62578          <idle>-0     (-----) [003] d..1 82316.234580: cpu_idle: state=0 cpu_id=3
62579          <idle>-0     (-----) [001] ...1 82316.234860: cpu_idle: state=4294967295 cpu_id=1
62580          <idle>-0     (-----) [001] d..1 82316.234865: cpu_idle: state=0 cpu_id=1
62581          <idle>-0     (-----) [002] d.h4 82316.235004: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62582          <idle>-0     (-----) [005] dnh2 82316.235026: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62583          <idle>-0     (-----) [005] .n.1 82316.235030: cpu_idle: state=4294967295 cpu_id=5
62584          <idle>-0     (-----) [005] d..2 82316.235038: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62585          <idle>-0     (-----) [002] ...1 82316.235040: cpu_idle: state=4294967295 cpu_id=2
62586          <idle>-0     (-----) [002] d..1 82316.235045: cpu_idle: state=0 cpu_id=2
62587<...>-5340 ( 788) [005] d..1 82316.235091: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
62588          <idle>-0     (-----) [003] dnh2 82316.235116: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
62589          <idle>-0     (-----) [003] .n.1 82316.235121: cpu_idle: state=4294967295 cpu_id=3
62590<...>-5340 ( 788) [005] d.s2 82316.235129: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
62591          <idle>-0     (-----) [003] d..2 82316.235134: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
62592 neuralnetworks@-13088 (  788) [003] d..2 82316.235179: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62593          <idle>-0     (-----) [003] dnh3 82316.235190: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
62594          <idle>-0     (-----) [003] d..2 82316.235216: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
62595<...>-5340 ( 788) [005] ...1 82316.235243: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
62596<...>-5340 ( 788) [005] ...1 82316.235247: tracing_mark_write: E|788
62597<...>-5340 ( 788) [005] .... 82316.235264: binder_transaction: transaction=1569984 dest_node=1569981 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
62598<...>-5340 ( 788) [005] .... 82316.235267: binder_transaction_alloc_buf: transaction=1569984 data_size=60 offsets_size=0
62599<...>-5340 ( 788) [005] d..4 82316.235271: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
62600<...>-5340 ( 788) [005] d..5 82316.235284: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
62601          <idle>-0     (-----) [004] .n.1 82316.235290: cpu_idle: state=4294967295 cpu_id=4
62602  kworker/u16:15-1311  ( 1311) [003] d..2 82316.235295: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62603          <idle>-0     (-----) [004] d..2 82316.235297: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
62604           <...>-27571 (-----) [004] .... 82316.235302: binder_transaction_received: transaction=1569984
62605<...>-5340 ( 788) [005] ...1 82316.235307: tracing_mark_write: E|788
62606          <idle>-0     (-----) [003] d..1 82316.235308: cpu_idle: state=0 cpu_id=3
62607<...>-5340 ( 788) [005] .... 82316.235313: binder_transaction: transaction=1569985 dest_node=0 dest_proc=27550 dest_thread=27641 reply=1 flags=0x0 code=0x0
62608<...>-5340 ( 788) [005] .... 82316.235315: binder_transaction_alloc_buf: transaction=1569985 data_size=8 offsets_size=0
62609<...>-5340 ( 788) [005] d..2 82316.235317: sched_waking: comm=id.nn.benchmark pid=27641 prio=110 target_cpu=005
62610           <...>-27571 (-----) [004] ...1 82316.235322: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
62611<...>-5340 ( 788) [005] d..3 82316.235324: sched_wakeup: comm=id.nn.benchmark pid=27641 prio=110 target_cpu=005
62612<...>-5340 ( 788) [005] .... 82316.235326: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
62613           <...>-27571 (-----) [004] ...1 82316.235329: tracing_mark_write: E|27550
62614           <...>-27571 (-----) [004] d..2 82316.235360: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62615          <idle>-0     (-----) [004] d..1 82316.235367: cpu_idle: state=0 cpu_id=4
62616<...>-5340 ( 788) [005] d..2 82316.235369: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27641 next_prio=110
62617           <...>-27641 (-----) [005] .... 82316.235379: binder_transaction_received: transaction=1569985
62618           <...>-27641 (-----) [005] ...1 82316.235418: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
62619           <...>-27641 (-----) [005] ...1 82316.235425: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
62620           <...>-27641 (-----) [005] ...1 82316.235453: tracing_mark_write: E|27550
62621           <...>-27641 (-----) [005] ...1 82316.235456: tracing_mark_write: E|27550
62622           <...>-27641 (-----) [005] ...1 82316.235460: tracing_mark_write: E|27550
62623           <...>-27641 (-----) [005] ...1 82316.235653: tracing_mark_write: E|27550
62624           <...>-27641 (-----) [005] d..1 82316.235666: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62625           <...>-27641 (-----) [005] d..2 82316.235683: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62626          <idle>-0     (-----) [004] .n.1 82316.235688: cpu_idle: state=4294967295 cpu_id=4
62627          <idle>-0     (-----) [004] d..2 82316.235695: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
62628           <...>-27550 (-----) [004] d..2 82316.235715: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62629          <idle>-0     (-----) [004] d..1 82316.235724: cpu_idle: state=0 cpu_id=4
62630           <...>-27641 (-----) [005] d..1 82316.235778: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62631           <...>-27641 (-----) [005] d..2 82316.235787: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62632          <idle>-0     (-----) [004] .n.1 82316.235792: cpu_idle: state=4294967295 cpu_id=4
62633          <idle>-0     (-----) [004] d..2 82316.235801: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
62634           <...>-27641 (-----) [005] d..2 82316.235828: sched_switch: prev_comm=id.nn.benchmark prev_pid=27641 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
62635           <...>-27550 (-----) [004] ...1 82316.235835: tracing_mark_write: E|27550
62636           <...>-27550 (-----) [004] ...1 82316.235840: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
62637           <...>-27550 (-----) [004] ...1 82316.235846: tracing_mark_write: E|27550
62638          <idle>-0     (-----) [005] d..1 82316.235849: cpu_idle: state=0 cpu_id=5
62639           <...>-27550 (-----) [004] ...1 82316.235850: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
62640           <...>-27550 (-----) [004] ...1 82316.235854: tracing_mark_write: E|27550
62641           <...>-27550 (-----) [004] ...1 82316.235858: tracing_mark_write: E|27550
62642           <...>-27550 (-----) [004] ...1 82316.235973: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
62643           <...>-27550 (-----) [004] ...1 82316.236031: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
62644           <...>-27550 (-----) [004] ...1 82316.236036: tracing_mark_write: E|27550
62645           <...>-27550 (-----) [004] ...1 82316.236040: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
62646           <...>-27550 (-----) [004] ...1 82316.236046: tracing_mark_write: E|27550
62647           <...>-27550 (-----) [004] ...1 82316.236050: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
62648           <...>-27550 (-----) [004] ...1 82316.236054: tracing_mark_write: E|27550
62649           <...>-27550 (-----) [004] ...1 82316.236058: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
62650          <idle>-0     (-----) [005] .n.1 82316.236159: cpu_idle: state=4294967295 cpu_id=5
62651           <...>-27550 (-----) [004] ...1 82316.236160: tracing_mark_write: E|27550
62652           <...>-27550 (-----) [004] ...1 82316.236165: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
62653          <idle>-0     (-----) [005] d..2 82316.236168: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27642 next_prio=110
62654           <...>-27550 (-----) [004] d..2 82316.236182: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62655          <idle>-0     (-----) [004] d..1 82316.236196: cpu_idle: state=0 cpu_id=4
62656           <...>-27642 (-----) [005] ...1 82316.236231: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
62657           <...>-27642 (-----) [005] ...1 82316.236246: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
62658           <...>-27642 (-----) [005] ...1 82316.236249: tracing_mark_write: E|27550
62659           <...>-27642 (-----) [005] .... 82316.236270: binder_transaction: transaction=1569986 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
62660           <...>-27642 (-----) [005] .... 82316.236274: binder_transaction_alloc_buf: transaction=1569986 data_size=48 offsets_size=0
62661           <...>-27642 (-----) [005] ...2 82316.236277: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
62662           <...>-27642 (-----) [005] d..4 82316.236280: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
62663           <...>-27642 (-----) [005] dn.5 82316.236291: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
62664           <...>-27642 (-----) [005] d..2 82316.236298: sched_switch: prev_comm=id.nn.benchmark prev_pid=27642 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
62665<...>-770 ( 770) [005] .... 82316.236308: binder_transaction_received: transaction=1569986
62666<...>-770 ( 770) [005] ...1 82316.236333: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
62667<...>-770 ( 770) [005] d..2 82316.236417: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
62668          <idle>-0     (-----) [000] dnh2 82316.236459: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
62669          <idle>-0     (-----) [000] .n.1 82316.236466: cpu_idle: state=4294967295 cpu_id=0
62670<...>-770 ( 770) [005] ...1 82316.236471: tracing_mark_write: E|770
62671          <idle>-0     (-----) [000] d..2 82316.236478: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
62672<...>-770 ( 770) [005] .... 82316.236479: binder_transaction: transaction=1569987 dest_node=0 dest_proc=27550 dest_thread=27642 reply=1 flags=0x0 code=0x0
62673<...>-770 ( 770) [005] .... 82316.236483: binder_transaction_alloc_buf: transaction=1569987 data_size=168 offsets_size=32
62674<...>-770 ( 770) [005] .... 82316.236489: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
62675<...>-770 ( 770) [005] d..2 82316.236525: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27642 next_prio=110
62676           <...>-27642 (-----) [005] .... 82316.236536: binder_transaction_received: transaction=1569987
62677<...>-581 ( 571) [000] d..2 82316.236571: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62678          <idle>-0     (-----) [003] ...1 82316.236581: cpu_idle: state=4294967295 cpu_id=3
62679          <idle>-0     (-----) [003] d..1 82316.236585: cpu_idle: state=0 cpu_id=3
62680          <idle>-0     (-----) [000] d..1 82316.236587: cpu_idle: state=0 cpu_id=0
62681           <...>-27642 (-----) [005] ...1 82316.236609: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
62682           <...>-27642 (-----) [005] ...1 82316.236614: tracing_mark_write: E|27550
62683           <...>-27642 (-----) [005] .... 82316.236628: binder_transaction: transaction=1569988 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
62684           <...>-27642 (-----) [005] .... 82316.236631: binder_transaction_alloc_buf: transaction=1569988 data_size=48 offsets_size=0
62685           <...>-27642 (-----) [005] ...2 82316.236633: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
62686           <...>-27642 (-----) [005] d..4 82316.236636: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
62687           <...>-27642 (-----) [005] dn.5 82316.236646: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
62688           <...>-27642 (-----) [005] d..2 82316.236652: sched_switch: prev_comm=id.nn.benchmark prev_pid=27642 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
62689<...>-770 ( 770) [005] .... 82316.236660: binder_transaction_received: transaction=1569988
62690<...>-770 ( 770) [005] ...1 82316.236677: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
62691<...>-770 ( 770) [005] d..2 82316.236735: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
62692          <idle>-0     (-----) [000] dnh2 82316.236760: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
62693          <idle>-0     (-----) [000] .n.1 82316.236766: cpu_idle: state=4294967295 cpu_id=0
62694<...>-770 ( 770) [005] ...1 82316.236770: tracing_mark_write: E|770
62695          <idle>-0     (-----) [000] d..2 82316.236777: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
62696<...>-770 ( 770) [005] .... 82316.236778: binder_transaction: transaction=1569989 dest_node=0 dest_proc=27550 dest_thread=27642 reply=1 flags=0x0 code=0x0
62697<...>-770 ( 770) [005] .... 82316.236781: binder_transaction_alloc_buf: transaction=1569989 data_size=168 offsets_size=32
62698<...>-770 ( 770) [005] .... 82316.236786: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
62699<...>-770 ( 770) [005] d..2 82316.236820: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27642 next_prio=110
62700           <...>-27642 (-----) [005] .... 82316.236831: binder_transaction_received: transaction=1569989
62701<...>-581 ( 571) [000] d..2 82316.236835: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62702          <idle>-0     (-----) [000] d..1 82316.236849: cpu_idle: state=0 cpu_id=0
62703           <...>-27642 (-----) [005] ...1 82316.237107: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
62704           <...>-27642 (-----) [005] ...1 82316.237117: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
62705           <...>-27642 (-----) [005] ...1 82316.237121: tracing_mark_write: E|27550
62706           <...>-27642 (-----) [005] .... 82316.237182: binder_transaction: transaction=1569990 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
62707           <...>-27642 (-----) [005] .... 82316.237186: binder_transaction_alloc_buf: transaction=1569990 data_size=556 offsets_size=104
62708           <...>-27642 (-----) [005] ...2 82316.237200: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
62709           <...>-27642 (-----) [005] d..4 82316.237203: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62710           <...>-27642 (-----) [005] dn.5 82316.237214: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62711           <...>-27642 (-----) [005] d..2 82316.237221: sched_switch: prev_comm=id.nn.benchmark prev_pid=27642 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62712<...>-5340 ( 788) [005] .... 82316.237230: binder_transaction_received: transaction=1569990
62713<...>-5340 ( 788) [005] ...1 82316.237277: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
62714<...>-5340 ( 788) [005] d..2 82316.237322: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
62715<...>-5340 ( 788) [005] d..2 82316.237358: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27642 next_prio=110
62716          <idle>-0     (-----) [000] dnh2 82316.237361: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62717          <idle>-0     (-----) [000] .n.1 82316.237367: cpu_idle: state=4294967295 cpu_id=0
62718          <idle>-0     (-----) [000] d..2 82316.237378: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
62719           <...>-27642 (-----) [005] d..2 82316.237381: sched_switch: prev_comm=id.nn.benchmark prev_pid=27642 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62720          <idle>-0     (-----) [005] d..1 82316.237398: cpu_idle: state=0 cpu_id=5
62721<...>-87 ( 87) [000] d..2 82316.237420: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62722          <idle>-0     (-----) [002] d.h4 82316.237426: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62723          <idle>-0     (-----) [000] d..1 82316.237431: cpu_idle: state=0 cpu_id=0
62724          <idle>-0     (-----) [002] dnh5 82316.237441: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62725          <idle>-0     (-----) [002] .n.1 82316.237448: cpu_idle: state=4294967295 cpu_id=2
62726          <idle>-0     (-----) [002] d..2 82316.237460: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
62727<...>-86 ( 86) [002] d..2 82316.237493: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62728          <idle>-0     (-----) [002] d.h4 82316.237513: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62729          <idle>-0     (-----) [005] dnh2 82316.237534: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62730          <idle>-0     (-----) [005] .n.1 82316.237539: cpu_idle: state=4294967295 cpu_id=5
62731          <idle>-0     (-----) [005] d..2 82316.237547: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62732          <idle>-0     (-----) [002] d..1 82316.237552: cpu_idle: state=0 cpu_id=2
62733<...>-5340 ( 788) [005] d..1 82316.237600: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
62734          <idle>-0     (-----) [000] dnh2 82316.237636: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
62735          <idle>-0     (-----) [000] .n.1 82316.237642: cpu_idle: state=4294967295 cpu_id=0
62736          <idle>-0     (-----) [000] d..2 82316.237652: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
62737 neuralnetworks@-13088 (  788) [000] d..2 82316.237704: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62738          <idle>-0     (-----) [000] d..1 82316.237717: cpu_idle: state=0 cpu_id=0
62739<...>-5340 ( 788) [005] d..2 82316.237757: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62740          <idle>-0     (-----) [000] dnh2 82316.237779: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62741<...>-5340 ( 788) [005] d..2 82316.237783: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62742          <idle>-0     (-----) [000] .n.1 82316.237786: cpu_idle: state=4294967295 cpu_id=0
62743          <idle>-0     (-----) [000] d..2 82316.237796: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
62744          <idle>-0     (-----) [005] d..1 82316.237797: cpu_idle: state=0 cpu_id=5
62745          <idle>-0     (-----) [002] d.h4 82316.237834: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62746<...>-87 ( 87) [000] d..2 82316.237835: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62747          <idle>-0     (-----) [002] dnh5 82316.237844: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62748          <idle>-0     (-----) [000] d..1 82316.237847: cpu_idle: state=0 cpu_id=0
62749          <idle>-0     (-----) [002] .n.1 82316.237851: cpu_idle: state=4294967295 cpu_id=2
62750          <idle>-0     (-----) [002] d..2 82316.237860: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
62751<...>-86 ( 86) [002] d..2 82316.237891: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62752          <idle>-0     (-----) [002] d..1 82316.237899: cpu_idle: state=0 cpu_id=2
62753          <idle>-0     (-----) [002] d.s2 82316.238470: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
62754          <idle>-0     (-----) [002] dns3 82316.238484: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
62755          <idle>-0     (-----) [002] dns2 82316.238488: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
62756          <idle>-0     (-----) [002] dns3 82316.238499: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
62757          <idle>-0     (-----) [002] dns3 82316.238505: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
62758          <idle>-0     (-----) [002] dns4 82316.238535: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
62759          <idle>-0     (-----) [002] .n.1 82316.238549: cpu_idle: state=4294967295 cpu_id=2
62760          <idle>-0     (-----) [002] d..2 82316.238558: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
62761<...>-8 ( 8) [002] d..2 82316.238569: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
62762<...>-8 ( 8) [002] d..3 82316.238599: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
62763<...>-8 ( 8) [002] d..2 82316.238609: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
62764<...>-46 ( 46) [002] d..2 82316.238620: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
62765<...>-46 ( 46) [002] d..3 82316.238633: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
62766<...>-46 ( 46) [002] d..2 82316.238641: 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
62767<...>-8 ( 8) [002] d..2 82316.238654: 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
62768     rcu_preempt-7     (    7) [002] d..2 82316.238662: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
62769     rcu_preempt-7     (    7) [002] d..3 82316.238695: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
62770     rcu_preempt-7     (    7) [002] d..2 82316.238707: 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
62771         rcuop/4-45    (   45) [002] d..2 82316.238712: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
62772         rcuop/4-45    (   45) [002] d..3 82316.238742: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=002
62773          <idle>-0     (-----) [000] d.h5 82316.238745: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
62774         rcuop/4-45    (   45) [002] d..2 82316.238752: 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
62775          <idle>-0     (-----) [000] d.h6 82316.238767: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
62776          <idle>-0     (-----) [000] d.h5 82316.238772: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
62777          <idle>-0     (-----) [003] .n.1 82316.238772: cpu_idle: state=4294967295 cpu_id=3
62778          <idle>-0     (-----) [000] dnh6 82316.238787: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
62779          <idle>-0     (-----) [003] d..2 82316.238789: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
62780          <idle>-0     (-----) [000] .n.1 82316.238801: cpu_idle: state=4294967295 cpu_id=0
62781          <idle>-0     (-----) [000] d..2 82316.238812: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
62782  crtc_event:111-322   (  322) [003] d..2 82316.238837: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
62783         rcuop/5-53    (   53) [002] d..2 82316.238872: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62784          <idle>-0     (-----) [002] d..1 82316.238910: cpu_idle: state=0 cpu_id=2
62785          <idle>-0     (-----) [002] ...1 82316.238924: cpu_idle: state=4294967295 cpu_id=2
62786          <idle>-0     (-----) [002] d..1 82316.238928: cpu_idle: state=0 cpu_id=2
62787 crtc_commit:111-321   (  321) [000] d..2 82316.238969: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
62788          <idle>-0     (-----) [000] d..1 82316.238997: cpu_idle: state=0 cpu_id=0
62789          <idle>-0     (-----) [000] ...1 82316.239010: cpu_idle: state=4294967295 cpu_id=0
62790          <idle>-0     (-----) [000] d..1 82316.239014: cpu_idle: state=0 cpu_id=0
62791  kworker/u16:15-1311  ( 1311) [003] d..2 82316.239191: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
62792          <idle>-0     (-----) [003] d..1 82316.239205: cpu_idle: state=0 cpu_id=3
62793          <idle>-0     (-----) [001] d.s3 82316.239223: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
62794          <idle>-0     (-----) [001] d.s4 82316.239235: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
62795          <idle>-0     (-----) [001] d.s4 82316.239243: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
62796          <idle>-0     (-----) [003] .n.1 82316.239249: cpu_idle: state=4294967295 cpu_id=3
62797          <idle>-0     (-----) [001] ...1 82316.239253: cpu_idle: state=4294967295 cpu_id=1
62798          <idle>-0     (-----) [001] d..1 82316.239259: cpu_idle: state=0 cpu_id=1
62799          <idle>-0     (-----) [003] d..2 82316.239261: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
62800  kworker/u16:15-1311  ( 1311) [003] d..2 82316.239311: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62801          <idle>-0     (-----) [003] d..1 82316.239321: cpu_idle: state=0 cpu_id=3
62802          <idle>-0     (-----) [002] d.h4 82316.239572: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62803          <idle>-0     (-----) [005] dnh2 82316.239594: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62804          <idle>-0     (-----) [005] .n.1 82316.239599: cpu_idle: state=4294967295 cpu_id=5
62805          <idle>-0     (-----) [005] d..2 82316.239607: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62806          <idle>-0     (-----) [002] ...1 82316.239610: cpu_idle: state=4294967295 cpu_id=2
62807          <idle>-0     (-----) [002] d..1 82316.239614: cpu_idle: state=0 cpu_id=2
62808<...>-5340 ( 788) [005] d..1 82316.239656: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
62809          <idle>-0     (-----) [000] dnh2 82316.239676: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
62810          <idle>-0     (-----) [000] .n.1 82316.239684: cpu_idle: state=4294967295 cpu_id=0
62811          <idle>-0     (-----) [000] d..2 82316.239692: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
62812<...>-5340 ( 788) [005] ...1 82316.239745: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
62813<...>-5340 ( 788) [005] ...1 82316.239749: tracing_mark_write: E|788
62814 neuralnetworks@-13088 (  788) [000] d..2 82316.239751: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62815          <idle>-0     (-----) [000] d..1 82316.239759: cpu_idle: state=0 cpu_id=0
62816<...>-5340 ( 788) [005] .... 82316.239765: binder_transaction: transaction=1569993 dest_node=1569991 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
62817<...>-5340 ( 788) [005] .... 82316.239768: binder_transaction_alloc_buf: transaction=1569993 data_size=60 offsets_size=0
62818<...>-5340 ( 788) [005] d..4 82316.239771: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
62819<...>-5340 ( 788) [005] d..5 82316.239783: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
62820          <idle>-0     (-----) [004] .n.1 82316.239789: cpu_idle: state=4294967295 cpu_id=4
62821          <idle>-0     (-----) [004] d..2 82316.239798: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
62822           <...>-27571 (-----) [004] .... 82316.239803: binder_transaction_received: transaction=1569993
62823<...>-5340 ( 788) [005] ...1 82316.239805: tracing_mark_write: E|788
62824<...>-5340 ( 788) [005] .... 82316.239811: binder_transaction: transaction=1569994 dest_node=0 dest_proc=27550 dest_thread=27642 reply=1 flags=0x0 code=0x0
62825<...>-5340 ( 788) [005] .... 82316.239814: binder_transaction_alloc_buf: transaction=1569994 data_size=8 offsets_size=0
62826<...>-5340 ( 788) [005] d..2 82316.239816: sched_waking: comm=id.nn.benchmark pid=27642 prio=110 target_cpu=005
62827           <...>-27571 (-----) [004] ...1 82316.239820: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
62828<...>-5340 ( 788) [005] d..3 82316.239823: sched_wakeup: comm=id.nn.benchmark pid=27642 prio=110 target_cpu=005
62829<...>-5340 ( 788) [005] .... 82316.239824: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
62830           <...>-27571 (-----) [004] ...1 82316.239826: tracing_mark_write: E|27550
62831           <...>-27571 (-----) [004] d..2 82316.239854: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62832          <idle>-0     (-----) [004] d..1 82316.239862: cpu_idle: state=0 cpu_id=4
62833<...>-5340 ( 788) [005] d..2 82316.239865: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27642 next_prio=110
62834           <...>-27642 (-----) [005] .... 82316.239875: binder_transaction_received: transaction=1569994
62835           <...>-27642 (-----) [005] ...1 82316.239913: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
62836           <...>-27642 (-----) [005] ...1 82316.239920: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
62837           <...>-27642 (-----) [005] ...1 82316.239946: tracing_mark_write: E|27550
62838           <...>-27642 (-----) [005] ...1 82316.239950: tracing_mark_write: E|27550
62839           <...>-27642 (-----) [005] ...1 82316.239956: tracing_mark_write: E|27550
62840           <...>-27642 (-----) [005] ...1 82316.240148: tracing_mark_write: E|27550
62841           <...>-27642 (-----) [005] d..1 82316.240160: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62842           <...>-27642 (-----) [005] d..2 82316.240176: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62843          <idle>-0     (-----) [004] .n.1 82316.240181: cpu_idle: state=4294967295 cpu_id=4
62844          <idle>-0     (-----) [004] d..2 82316.240188: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
62845           <...>-27550 (-----) [004] d..2 82316.240208: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62846          <idle>-0     (-----) [004] d..1 82316.240217: cpu_idle: state=0 cpu_id=4
62847           <...>-27642 (-----) [005] d..1 82316.240262: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62848           <...>-27642 (-----) [005] d..2 82316.240271: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
62849          <idle>-0     (-----) [004] .n.1 82316.240276: cpu_idle: state=4294967295 cpu_id=4
62850          <idle>-0     (-----) [004] d..2 82316.240284: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
62851           <...>-27642 (-----) [005] d..2 82316.240310: sched_switch: prev_comm=id.nn.benchmark prev_pid=27642 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
62852           <...>-27550 (-----) [004] ...1 82316.240316: tracing_mark_write: E|27550
62853           <...>-27550 (-----) [004] ...1 82316.240321: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
62854           <...>-27550 (-----) [004] ...1 82316.240327: tracing_mark_write: E|27550
62855           <...>-27550 (-----) [004] ...1 82316.240331: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
62856          <idle>-0     (-----) [005] d..1 82316.240331: cpu_idle: state=0 cpu_id=5
62857           <...>-27550 (-----) [004] ...1 82316.240335: tracing_mark_write: E|27550
62858           <...>-27550 (-----) [004] ...1 82316.240340: tracing_mark_write: E|27550
62859           <...>-27550 (-----) [004] ...1 82316.240453: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
62860           <...>-27550 (-----) [004] ...1 82316.240512: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
62861           <...>-27550 (-----) [004] ...1 82316.240517: tracing_mark_write: E|27550
62862           <...>-27550 (-----) [004] ...1 82316.240521: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
62863           <...>-27550 (-----) [004] ...1 82316.240527: tracing_mark_write: E|27550
62864           <...>-27550 (-----) [004] ...1 82316.240531: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
62865           <...>-27550 (-----) [004] ...1 82316.240535: tracing_mark_write: E|27550
62866           <...>-27550 (-----) [004] ...1 82316.240538: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
62867          <idle>-0     (-----) [005] .n.1 82316.240633: cpu_idle: state=4294967295 cpu_id=5
62868           <...>-27550 (-----) [004] ...1 82316.240634: tracing_mark_write: E|27550
62869           <...>-27550 (-----) [004] ...1 82316.240639: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
62870          <idle>-0     (-----) [005] d..2 82316.240642: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27643 next_prio=110
62871           <...>-27550 (-----) [004] d..2 82316.240655: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
62872          <idle>-0     (-----) [004] d..1 82316.240669: cpu_idle: state=0 cpu_id=4
62873           <...>-27643 (-----) [005] ...1 82316.240703: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
62874           <...>-27643 (-----) [005] ...1 82316.240718: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
62875           <...>-27643 (-----) [005] ...1 82316.240722: tracing_mark_write: E|27550
62876           <...>-27643 (-----) [005] .... 82316.240742: binder_transaction: transaction=1569995 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
62877           <...>-27643 (-----) [005] .... 82316.240746: binder_transaction_alloc_buf: transaction=1569995 data_size=48 offsets_size=0
62878           <...>-27643 (-----) [005] ...2 82316.240748: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
62879           <...>-27643 (-----) [005] d..4 82316.240751: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
62880           <...>-27643 (-----) [005] dn.5 82316.240762: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
62881           <...>-27643 (-----) [005] d..2 82316.240769: sched_switch: prev_comm=id.nn.benchmark prev_pid=27643 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
62882<...>-770 ( 770) [005] .... 82316.240779: binder_transaction_received: transaction=1569995
62883<...>-770 ( 770) [005] ...1 82316.240802: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
62884<...>-770 ( 770) [005] d..2 82316.240874: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
62885          <idle>-0     (-----) [000] dnh2 82316.240901: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
62886          <idle>-0     (-----) [000] .n.1 82316.240907: cpu_idle: state=4294967295 cpu_id=0
62887          <idle>-0     (-----) [000] d..2 82316.240914: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
62888<...>-770 ( 770) [005] ...1 82316.240915: tracing_mark_write: E|770
62889<...>-770 ( 770) [005] .... 82316.240923: binder_transaction: transaction=1569996 dest_node=0 dest_proc=27550 dest_thread=27643 reply=1 flags=0x0 code=0x0
62890<...>-770 ( 770) [005] .... 82316.240925: binder_transaction_alloc_buf: transaction=1569996 data_size=168 offsets_size=32
62891<...>-770 ( 770) [005] .... 82316.240932: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
62892<...>-770 ( 770) [005] d..2 82316.240967: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27643 next_prio=110
62893           <...>-27643 (-----) [005] .... 82316.240978: binder_transaction_received: transaction=1569996
62894<...>-581 ( 571) [000] d..2 82316.240990: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62895          <idle>-0     (-----) [000] d..1 82316.241000: cpu_idle: state=0 cpu_id=0
62896           <...>-27643 (-----) [005] ...1 82316.241065: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
62897           <...>-27643 (-----) [005] ...1 82316.241070: tracing_mark_write: E|27550
62898           <...>-27643 (-----) [005] .... 82316.241085: binder_transaction: transaction=1569997 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
62899           <...>-27643 (-----) [005] .... 82316.241088: binder_transaction_alloc_buf: transaction=1569997 data_size=48 offsets_size=0
62900          <idle>-0     (-----) [000] d.h5 82316.241090: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
62901           <...>-27643 (-----) [005] ...2 82316.241090: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
62902           <...>-27643 (-----) [005] d..4 82316.241092: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
62903           <...>-27643 (-----) [005] dn.5 82316.241102: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
62904          <idle>-0     (-----) [000] dnh6 82316.241103: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
62905           <...>-27643 (-----) [005] d..2 82316.241108: sched_switch: prev_comm=id.nn.benchmark prev_pid=27643 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
62906          <idle>-0     (-----) [000] .n.1 82316.241116: cpu_idle: state=4294967295 cpu_id=0
62907<...>-770 ( 770) [005] .... 82316.241116: binder_transaction_received: transaction=1569997
62908          <idle>-0     (-----) [000] d..2 82316.241122: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
62909<...>-770 ( 770) [005] ...1 82316.241133: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
62910<...>-770 ( 770) [005] d..2 82316.241188: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
62911 crtc_commit:111-321   (  321) [000] d..2 82316.241199: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62912          <idle>-0     (-----) [000] dnh2 82316.241215: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
62913<...>-770 ( 770) [005] ...1 82316.241225: tracing_mark_write: E|770
62914          <idle>-0     (-----) [000] d..2 82316.241226: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
62915<...>-770 ( 770) [005] .... 82316.241232: binder_transaction: transaction=1569998 dest_node=0 dest_proc=27550 dest_thread=27643 reply=1 flags=0x0 code=0x0
62916<...>-770 ( 770) [005] .... 82316.241235: binder_transaction_alloc_buf: transaction=1569998 data_size=168 offsets_size=32
62917<...>-770 ( 770) [005] .... 82316.241240: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
62918<...>-770 ( 770) [005] d..2 82316.241274: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27643 next_prio=110
62919           <...>-27643 (-----) [005] .... 82316.241286: binder_transaction_received: transaction=1569998
62920<...>-581 ( 571) [000] d..2 82316.241292: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62921          <idle>-0     (-----) [000] d..1 82316.241302: cpu_idle: state=0 cpu_id=0
62922          <idle>-0     (-----) [000] d.h5 82316.241380: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
62923          <idle>-0     (-----) [000] d.h6 82316.241396: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
62924          <idle>-0     (-----) [003] .n.1 82316.241401: cpu_idle: state=4294967295 cpu_id=3
62925          <idle>-0     (-----) [003] d..2 82316.241412: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
62926          <idle>-0     (-----) [000] ...1 82316.241413: cpu_idle: state=4294967295 cpu_id=0
62927          <idle>-0     (-----) [000] d..1 82316.241418: cpu_idle: state=0 cpu_id=0
62928  crtc_event:111-322   (  322) [003] d..2 82316.241438: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62929          <idle>-0     (-----) [003] d..1 82316.241446: cpu_idle: state=0 cpu_id=3
62930           <...>-27643 (-----) [005] ...1 82316.241555: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
62931           <...>-27643 (-----) [005] ...1 82316.241566: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
62932           <...>-27643 (-----) [005] ...1 82316.241569: tracing_mark_write: E|27550
62933           <...>-27643 (-----) [005] .... 82316.241631: binder_transaction: transaction=1569999 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
62934           <...>-27643 (-----) [005] .... 82316.241633: binder_transaction_alloc_buf: transaction=1569999 data_size=556 offsets_size=104
62935           <...>-27643 (-----) [005] ...2 82316.241647: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
62936           <...>-27643 (-----) [005] d..4 82316.241650: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62937           <...>-27643 (-----) [005] dn.5 82316.241662: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62938           <...>-27643 (-----) [005] d..2 82316.241669: sched_switch: prev_comm=id.nn.benchmark prev_pid=27643 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62939<...>-5340 ( 788) [005] .... 82316.241678: binder_transaction_received: transaction=1569999
62940<...>-5340 ( 788) [005] ...1 82316.241724: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
62941<...>-5340 ( 788) [005] d..2 82316.241766: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62942          <idle>-0     (-----) [000] dnH2 82316.241814: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62943<...>-5340 ( 788) [005] d..2 82316.241819: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27643 next_prio=110
62944          <idle>-0     (-----) [000] dns3 82316.241821: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
62945          <idle>-0     (-----) [000] dns4 82316.241835: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
62946          <idle>-0     (-----) [003] .n.1 82316.241841: cpu_idle: state=4294967295 cpu_id=3
62947           <...>-27643 (-----) [005] d..2 82316.241846: sched_switch: prev_comm=id.nn.benchmark prev_pid=27643 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62948          <idle>-0     (-----) [000] .n.1 82316.241850: cpu_idle: state=4294967295 cpu_id=0
62949          <idle>-0     (-----) [003] d..2 82316.241851: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
62950          <idle>-0     (-----) [000] d..2 82316.241860: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
62951          <idle>-0     (-----) [005] d..1 82316.241863: cpu_idle: state=0 cpu_id=5
62952  crtc_event:111-322   (  322) [003] d..2 82316.241877: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62953          <idle>-0     (-----) [003] d..1 82316.241884: cpu_idle: state=0 cpu_id=3
62954<...>-87 ( 87) [000] d..2 82316.241901: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62955          <idle>-0     (-----) [002] d.h4 82316.241909: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62956          <idle>-0     (-----) [000] d..1 82316.241915: cpu_idle: state=0 cpu_id=0
62957          <idle>-0     (-----) [002] dnh5 82316.241924: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62958          <idle>-0     (-----) [002] .n.1 82316.241932: cpu_idle: state=4294967295 cpu_id=2
62959          <idle>-0     (-----) [002] d..2 82316.241945: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
62960<...>-86 ( 86) [002] d..2 82316.241979: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62961          <idle>-0     (-----) [002] d.h5 82316.242000: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62962          <idle>-0     (-----) [005] dnh2 82316.242020: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
62963          <idle>-0     (-----) [005] .n.1 82316.242025: cpu_idle: state=4294967295 cpu_id=5
62964          <idle>-0     (-----) [005] d..2 82316.242033: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
62965          <idle>-0     (-----) [002] d..1 82316.242039: cpu_idle: state=0 cpu_id=2
62966<...>-5340 ( 788) [005] d..1 82316.242086: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
62967          <idle>-0     (-----) [000] dnh2 82316.242112: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
62968          <idle>-0     (-----) [000] .n.1 82316.242119: cpu_idle: state=4294967295 cpu_id=0
62969          <idle>-0     (-----) [000] d..2 82316.242128: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
62970 neuralnetworks@-13088 (  788) [000] d..2 82316.242172: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62971          <idle>-0     (-----) [000] d..1 82316.242185: cpu_idle: state=0 cpu_id=0
62972<...>-5340 ( 788) [005] d..2 82316.242232: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62973          <idle>-0     (-----) [000] dnh2 82316.242253: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
62974<...>-5340 ( 788) [005] d..2 82316.242257: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
62975          <idle>-0     (-----) [000] .n.1 82316.242260: cpu_idle: state=4294967295 cpu_id=0
62976          <idle>-0     (-----) [000] d..2 82316.242270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
62977          <idle>-0     (-----) [005] d..1 82316.242271: cpu_idle: state=0 cpu_id=5
62978          <idle>-0     (-----) [002] d.h4 82316.242305: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62979<...>-87 ( 87) [000] d..2 82316.242305: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
62980          <idle>-0     (-----) [002] dnh5 82316.242315: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
62981          <idle>-0     (-----) [000] d..1 82316.242318: cpu_idle: state=0 cpu_id=0
62982          <idle>-0     (-----) [002] .n.1 82316.242323: cpu_idle: state=4294967295 cpu_id=2
62983          <idle>-0     (-----) [002] d..2 82316.242331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
62984<...>-86 ( 86) [002] d..2 82316.242361: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
62985          <idle>-0     (-----) [002] d..1 82316.242369: cpu_idle: state=0 cpu_id=2
62986          <idle>-0     (-----) [005] ...1 82316.242602: cpu_idle: state=4294967295 cpu_id=5
62987          <idle>-0     (-----) [005] d..1 82316.242605: cpu_idle: state=0 cpu_id=5
62988          <idle>-0     (-----) [003] d.h2 82316.243220: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
62989          <idle>-0     (-----) [003] dnh3 82316.243236: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
62990          <idle>-0     (-----) [003] .n.1 82316.243244: cpu_idle: state=4294967295 cpu_id=3
62991          <idle>-0     (-----) [003] d..2 82316.243252: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
62992        DispSync-8879  ( 8858) [003] d..1 82316.243276: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
62993        DispSync-8879  ( 8858) [003] d..2 82316.243299: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
62994          <idle>-0     (-----) [001] .n.1 82316.243304: cpu_idle: state=4294967295 cpu_id=1
62995          <idle>-0     (-----) [001] d..2 82316.243316: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
62996        DispSync-8879  ( 8858) [003] d..2 82316.243331: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
62997          <idle>-0     (-----) [003] d..1 82316.243343: cpu_idle: state=0 cpu_id=3
62998  appEventThread-8881  ( 8858) [001] d..3 82316.243375: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
62999  appEventThread-8881  ( 8858) [001] d..4 82316.243397: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
63000          <idle>-0     (-----) [000] .n.1 82316.243403: cpu_idle: state=4294967295 cpu_id=0
63001          <idle>-0     (-----) [000] d..2 82316.243414: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
63002  appEventThread-8881  ( 8858) [001] d..2 82316.243440: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
63003          <idle>-0     (-----) [001] d..1 82316.243455: cpu_idle: state=0 cpu_id=1
63004<...>-9105 ( 9105) [000] .... 82316.243745: binder_transaction: transaction=1570002 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
63005<...>-9105 ( 9105) [000] .... 82316.243752: binder_transaction_alloc_buf: transaction=1570002 data_size=80 offsets_size=0
63006<...>-9105 ( 9105) [000] d..4 82316.243758: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
63007<...>-9105 ( 9105) [000] d..5 82316.243791: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
63008          <idle>-0     (-----) [001] .n.1 82316.243797: cpu_idle: state=4294967295 cpu_id=1
63009          <idle>-0     (-----) [001] d..2 82316.243809: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
63010<...>-13083 ( 8858) [001] .... 82316.243816: binder_transaction_received: transaction=1570002
63011<...>-9105 ( 9105) [000] d..3 82316.243829: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
63012<...>-9105 ( 9105) [000] d..4 82316.243848: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
63013<...>-13083 ( 8858) [001] d..1 82316.243849: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
63014          <idle>-0     (-----) [002] .n.1 82316.243853: cpu_idle: state=4294967295 cpu_id=2
63015          <idle>-0     (-----) [002] d..2 82316.243863: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
63016<...>-13083 ( 8858) [001] d..2 82316.243873: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
63017          <idle>-0     (-----) [003] .n.1 82316.243878: cpu_idle: state=4294967295 cpu_id=3
63018          <idle>-0     (-----) [003] d..2 82316.243887: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
63019<...>-13083 ( 8858) [001] d..2 82316.243914: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
63020    RenderThread-9436  ( 9105) [002] d..2 82316.243916: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63021          <idle>-0     (-----) [002] d..1 82316.243925: cpu_idle: state=0 cpu_id=2
63022          <idle>-0     (-----) [001] d..1 82316.243928: cpu_idle: state=0 cpu_id=1
63023  appEventThread-8881  ( 8858) [003] d..2 82316.243937: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63024          <idle>-0     (-----) [003] d..1 82316.243947: cpu_idle: state=0 cpu_id=3
63025          <idle>-0     (-----) [002] d.h4 82316.243961: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63026<...>-9105 ( 9105) [000] d..3 82316.243968: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
63027          <idle>-0     (-----) [005] dnh2 82316.243982: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63028<...>-9105 ( 9105) [000] d..4 82316.243985: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
63029          <idle>-0     (-----) [005] .n.1 82316.243985: cpu_idle: state=4294967295 cpu_id=5
63030          <idle>-0     (-----) [005] d..2 82316.243993: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63031          <idle>-0     (-----) [002] .n.1 82316.244001: cpu_idle: state=4294967295 cpu_id=2
63032          <idle>-0     (-----) [002] d..2 82316.244011: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
63033<...>-9105 ( 9105) [000] d..2 82316.244020: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63034          <idle>-0     (-----) [000] d..1 82316.244040: cpu_idle: state=0 cpu_id=0
63035<...>-5340 ( 788) [005] d..1 82316.244045: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63036          <idle>-0     (-----) [000] dnh2 82316.244071: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63037          <idle>-0     (-----) [000] .n.1 82316.244079: cpu_idle: state=4294967295 cpu_id=0
63038          <idle>-0     (-----) [000] d..2 82316.244098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
63039<...>-5340 ( 788) [005] ...1 82316.244134: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
63040<...>-5340 ( 788) [005] ...1 82316.244138: tracing_mark_write: E|788
63041<...>-5340 ( 788) [005] .... 82316.244153: binder_transaction: transaction=1570003 dest_node=1570000 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
63042    RenderThread-9436  ( 9105) [002] d..1 82316.244155: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
63043<...>-5340 ( 788) [005] .... 82316.244156: binder_transaction_alloc_buf: transaction=1570003 data_size=60 offsets_size=0
63044 neuralnetworks@-13088 (  788) [000] d..2 82316.244157: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63045<...>-5340 ( 788) [005] d..4 82316.244159: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
63046          <idle>-0     (-----) [000] dn.1 82316.244171: cpu_idle: state=0 cpu_id=0
63047<...>-5340 ( 788) [005] d..5 82316.244172: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
63048    RenderThread-9436  ( 9105) [002] d..2 82316.244175: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
63049          <idle>-0     (-----) [004] .n.1 82316.244178: cpu_idle: state=4294967295 cpu_id=4
63050          <idle>-0     (-----) [000] .n.1 82316.244179: cpu_idle: state=4294967295 cpu_id=0
63051          <idle>-0     (-----) [004] d..2 82316.244186: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
63052          <idle>-0     (-----) [000] d..2 82316.244191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
63053           <...>-27571 (-----) [004] .... 82316.244191: binder_transaction_received: transaction=1570003
63054<...>-5340 ( 788) [005] ...1 82316.244195: tracing_mark_write: E|788
63055<...>-5340 ( 788) [005] .... 82316.244201: binder_transaction: transaction=1570004 dest_node=0 dest_proc=27550 dest_thread=27643 reply=1 flags=0x0 code=0x0
63056<...>-5340 ( 788) [005] .... 82316.244203: binder_transaction_alloc_buf: transaction=1570004 data_size=8 offsets_size=0
63057<...>-5340 ( 788) [005] d..2 82316.244205: sched_waking: comm=id.nn.benchmark pid=27643 prio=110 target_cpu=005
63058           <...>-27571 (-----) [004] ...1 82316.244209: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
63059<...>-5340 ( 788) [005] d..3 82316.244212: sched_wakeup: comm=id.nn.benchmark pid=27643 prio=110 target_cpu=005
63060<...>-5340 ( 788) [005] .... 82316.244214: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
63061           <...>-27571 (-----) [004] ...1 82316.244215: tracing_mark_write: E|27550
63062           <...>-27571 (-----) [004] d..2 82316.244243: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63063    RenderThread-9436  ( 9105) [002] .... 82316.244243: binder_transaction: transaction=1570005 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
63064    RenderThread-9436  ( 9105) [002] .... 82316.244248: binder_transaction_alloc_buf: transaction=1570005 data_size=104 offsets_size=0
63065          <idle>-0     (-----) [004] d..1 82316.244250: cpu_idle: state=0 cpu_id=4
63066    RenderThread-9436  ( 9105) [002] d..4 82316.244254: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
63067<...>-5340 ( 788) [005] d..2 82316.244256: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27643 next_prio=110
63068           <...>-27643 (-----) [005] .... 82316.244265: binder_transaction_received: transaction=1570004
63069    RenderThread-9436  ( 9105) [002] dn.5 82316.244274: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
63070<...>-9105 ( 9105) [000] d..2 82316.244276: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63071    RenderThread-9436  ( 9105) [002] d..2 82316.244283: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
63072<...>-13083 ( 8858) [002] .... 82316.244290: binder_transaction_received: transaction=1570005
63073          <idle>-0     (-----) [000] d..1 82316.244292: cpu_idle: state=0 cpu_id=0
63074           <...>-27643 (-----) [005] ...1 82316.244302: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
63075           <...>-27643 (-----) [005] ...1 82316.244308: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
63076           <...>-27643 (-----) [005] ...1 82316.244334: tracing_mark_write: E|27550
63077           <...>-27643 (-----) [005] ...1 82316.244338: tracing_mark_write: E|27550
63078           <...>-27643 (-----) [005] ...1 82316.244341: tracing_mark_write: E|27550
63079<...>-13083 ( 8858) [002] .... 82316.244366: binder_transaction: transaction=1570006 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
63080<...>-13083 ( 8858) [002] .... 82316.244372: binder_transaction_alloc_buf: transaction=1570006 data_size=52 offsets_size=8
63081<...>-13083 ( 8858) [002] d..2 82316.244419: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
63082    RenderThread-9436  ( 9105) [002] .... 82316.244428: binder_transaction_received: transaction=1570006
63083           <...>-27643 (-----) [005] ...1 82316.244526: tracing_mark_write: E|27550
63084           <...>-27643 (-----) [005] d..1 82316.244538: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63085           <...>-27643 (-----) [005] d..2 82316.244555: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63086          <idle>-0     (-----) [004] .n.1 82316.244558: cpu_idle: state=4294967295 cpu_id=4
63087          <idle>-0     (-----) [004] d..2 82316.244565: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
63088           <...>-27550 (-----) [004] d..2 82316.244584: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63089          <idle>-0     (-----) [004] d..1 82316.244593: cpu_idle: state=0 cpu_id=4
63090           <...>-27643 (-----) [005] d..1 82316.244643: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63091           <...>-27643 (-----) [005] d..2 82316.244652: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63092          <idle>-0     (-----) [004] .n.1 82316.244658: cpu_idle: state=4294967295 cpu_id=4
63093          <idle>-0     (-----) [004] d..2 82316.244665: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
63094           <...>-27643 (-----) [005] d..2 82316.244691: sched_switch: prev_comm=id.nn.benchmark prev_pid=27643 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
63095           <...>-27550 (-----) [004] ...1 82316.244697: tracing_mark_write: E|27550
63096           <...>-27550 (-----) [004] ...1 82316.244701: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
63097           <...>-27550 (-----) [004] ...1 82316.244707: tracing_mark_write: E|27550
63098           <...>-27550 (-----) [004] ...1 82316.244711: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
63099          <idle>-0     (-----) [005] d..1 82316.244712: cpu_idle: state=0 cpu_id=5
63100           <...>-27550 (-----) [004] ...1 82316.244714: tracing_mark_write: E|27550
63101           <...>-27550 (-----) [004] ...1 82316.244718: tracing_mark_write: E|27550
63102           <...>-27550 (-----) [004] ...1 82316.244830: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
63103           <...>-27550 (-----) [004] ...1 82316.244888: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
63104           <...>-27550 (-----) [004] ...1 82316.244893: tracing_mark_write: E|27550
63105           <...>-27550 (-----) [004] ...1 82316.244896: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
63106           <...>-27550 (-----) [004] ...1 82316.244901: tracing_mark_write: E|27550
63107           <...>-27550 (-----) [004] ...1 82316.244905: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
63108           <...>-27550 (-----) [004] ...1 82316.244909: tracing_mark_write: E|27550
63109           <...>-27550 (-----) [004] ...1 82316.244912: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
63110          <idle>-0     (-----) [005] .n.1 82316.245002: cpu_idle: state=4294967295 cpu_id=5
63111           <...>-27550 (-----) [004] ...1 82316.245003: tracing_mark_write: E|27550
63112           <...>-27550 (-----) [004] ...1 82316.245008: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
63113          <idle>-0     (-----) [005] d..2 82316.245010: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27644 next_prio=110
63114           <...>-27550 (-----) [004] d..2 82316.245024: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63115          <idle>-0     (-----) [004] d..1 82316.245039: cpu_idle: state=0 cpu_id=4
63116           <...>-27644 (-----) [005] ...1 82316.245071: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
63117           <...>-27644 (-----) [005] ...1 82316.245085: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
63118           <...>-27644 (-----) [005] ...1 82316.245089: tracing_mark_write: E|27550
63119           <...>-27644 (-----) [005] d.s2 82316.245136: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
63120    RenderThread-9436  ( 9105) [002] d.s1 82316.245149: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63121    RenderThread-9436  ( 9105) [002] dns2 82316.245169: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63122    RenderThread-9436  ( 9105) [002] dns1 82316.245173: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
63123           <...>-27644 (-----) [005] .... 82316.245177: binder_transaction: transaction=1570007 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
63124          <idle>-0     (-----) [000] dnh2 82316.245180: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
63125           <...>-27644 (-----) [005] .... 82316.245180: binder_transaction_alloc_buf: transaction=1570007 data_size=48 offsets_size=0
63126           <...>-27644 (-----) [005] ...2 82316.245183: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
63127           <...>-27644 (-----) [005] d..4 82316.245186: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
63128          <idle>-0     (-----) [000] .n.1 82316.245187: cpu_idle: state=4294967295 cpu_id=0
63129           <...>-27644 (-----) [005] dn.5 82316.245194: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
63130           <...>-27644 (-----) [005] d..2 82316.245200: sched_switch: prev_comm=id.nn.benchmark prev_pid=27644 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
63131          <idle>-0     (-----) [000] d..2 82316.245200: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
63132<...>-770 ( 770) [005] .... 82316.245210: binder_transaction_received: transaction=1570007
63133    RenderThread-9436  ( 9105) [002] dns2 82316.245215: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
63134    RenderThread-9436  ( 9105) [002] d..2 82316.245235: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
63135<...>-770 ( 770) [005] ...1 82316.245235: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
63136     rcu_preempt-7     (    7) [002] d..2 82316.245254: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
63137<...>-770 ( 770) [005] d..2 82316.245313: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
63138<...>-770 ( 770) [005] ...1 82316.245353: tracing_mark_write: E|770
63139<...>-770 ( 770) [005] .... 82316.245361: binder_transaction: transaction=1570008 dest_node=0 dest_proc=27550 dest_thread=27644 reply=1 flags=0x0 code=0x0
63140<...>-770 ( 770) [005] .... 82316.245364: binder_transaction_alloc_buf: transaction=1570008 data_size=168 offsets_size=32
63141<...>-770 ( 770) [005] .... 82316.245370: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
63142  kworker/u16:15-1311  ( 1311) [000] d.h2 82316.245372: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
63143  kworker/u16:15-1311  ( 1311) [000] d..2 82316.245388: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcu_sched next_pid=8 next_prio=120
63144<...>-8 ( 8) [000] d..2 82316.245405: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
63145<...>-770 ( 770) [005] d..2 82316.245406: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27644 next_prio=110
63146          <idle>-0     (-----) [001] d.s3 82316.245409: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
63147           <...>-27644 (-----) [005] .... 82316.245417: binder_transaction_received: transaction=1570008
63148          <idle>-0     (-----) [001] d.s4 82316.245431: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
63149          <idle>-0     (-----) [001] dns4 82316.245436: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
63150          <idle>-0     (-----) [001] .n.1 82316.245443: cpu_idle: state=4294967295 cpu_id=1
63151          <idle>-0     (-----) [001] d..2 82316.245457: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
63152           <...>-27644 (-----) [005] ...1 82316.245489: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
63153  kworker/u16:15-1311  ( 1311) [001] d..2 82316.245492: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
63154           <...>-27644 (-----) [005] ...1 82316.245494: tracing_mark_write: E|27550
63155<...>-581 ( 571) [000] d..2 82316.245496: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63156          <idle>-0     (-----) [001] d..1 82316.245504: cpu_idle: state=0 cpu_id=1
63157           <...>-27644 (-----) [005] .... 82316.245509: binder_transaction: transaction=1570009 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
63158           <...>-27644 (-----) [005] .... 82316.245511: binder_transaction_alloc_buf: transaction=1570009 data_size=48 offsets_size=0
63159          <idle>-0     (-----) [000] d..1 82316.245513: cpu_idle: state=0 cpu_id=0
63160           <...>-27644 (-----) [005] ...2 82316.245514: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
63161           <...>-27644 (-----) [005] d..4 82316.245516: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
63162           <...>-27644 (-----) [005] dn.5 82316.245526: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
63163           <...>-27644 (-----) [005] d..2 82316.245532: sched_switch: prev_comm=id.nn.benchmark prev_pid=27644 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
63164<...>-770 ( 770) [005] .... 82316.245540: binder_transaction_received: transaction=1570009
63165<...>-770 ( 770) [005] ...1 82316.245558: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
63166    RenderThread-9436  ( 9105) [002] d..2 82316.245577: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
63167          <idle>-0     (-----) [002] d..1 82316.245592: cpu_idle: state=0 cpu_id=2
63168<...>-770 ( 770) [005] d..2 82316.245615: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
63169          <idle>-0     (-----) [000] dnh2 82316.245639: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
63170          <idle>-0     (-----) [000] .n.1 82316.245646: cpu_idle: state=4294967295 cpu_id=0
63171<...>-770 ( 770) [005] ...1 82316.245649: tracing_mark_write: E|770
63172<...>-770 ( 770) [005] .... 82316.245656: binder_transaction: transaction=1570010 dest_node=0 dest_proc=27550 dest_thread=27644 reply=1 flags=0x0 code=0x0
63173          <idle>-0     (-----) [000] d..2 82316.245657: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
63174<...>-770 ( 770) [005] .... 82316.245658: binder_transaction_alloc_buf: transaction=1570010 data_size=168 offsets_size=32
63175          <idle>-0     (-----) [002] d.h2 82316.245661: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
63176<...>-770 ( 770) [005] .... 82316.245664: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
63177          <idle>-0     (-----) [002] d.h3 82316.245671: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
63178          <idle>-0     (-----) [002] dnh3 82316.245676: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
63179          <idle>-0     (-----) [002] .n.1 82316.245685: cpu_idle: state=4294967295 cpu_id=2
63180          <idle>-0     (-----) [002] d..2 82316.245697: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
63181<...>-770 ( 770) [005] d..2 82316.245698: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27644 next_prio=110
63182<...>-581 ( 571) [000] d.h2 82316.245699: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
63183           <...>-27644 (-----) [005] .... 82316.245709: binder_transaction_received: transaction=1570010
63184<...>-581 ( 571) [000] d.h3 82316.245729: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
63185          <idle>-0     (-----) [003] .n.1 82316.245734: cpu_idle: state=4294967295 cpu_id=3
63186          <idle>-0     (-----) [003] d..2 82316.245745: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
63187<...>-581 ( 571) [000] d..2 82316.245780: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63188          <idle>-0     (-----) [000] d..1 82316.245794: cpu_idle: state=0 cpu_id=0
63189 kgsl_worker_thr-258   (  258) [003] d..2 82316.245798: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
63190 kgsl_worker_thr-258   (  258) [003] d..3 82316.245815: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
63191          <idle>-0     (-----) [001] .n.1 82316.245821: cpu_idle: state=4294967295 cpu_id=1
63192          <idle>-0     (-----) [001] d..2 82316.245832: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
63193 kgsl_worker_thr-258   (  258) [003] d..2 82316.245840: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63194          <idle>-0     (-----) [003] d..1 82316.245850: cpu_idle: state=0 cpu_id=3
63195  kworker/u16:15-1311  ( 1311) [001] d..2 82316.245875: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
63196          <idle>-0     (-----) [001] d..1 82316.245886: cpu_idle: state=0 cpu_id=1
63197    RenderThread-9436  ( 9105) [002] .... 82316.245893: binder_transaction: transaction=1570011 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
63198    RenderThread-9436  ( 9105) [002] .... 82316.245899: binder_transaction_alloc_buf: transaction=1570011 data_size=192 offsets_size=8
63199    RenderThread-9436  ( 9105) [002] d..4 82316.245909: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
63200    RenderThread-9436  ( 9105) [002] dn.5 82316.245924: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
63201    RenderThread-9436  ( 9105) [002] d..2 82316.245934: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
63202<...>-13083 ( 8858) [002] .... 82316.245942: binder_transaction_received: transaction=1570011
63203           <...>-27644 (-----) [005] ...1 82316.245983: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
63204           <...>-27644 (-----) [005] ...1 82316.245993: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
63205           <...>-27644 (-----) [005] ...1 82316.245997: tracing_mark_write: E|27550
63206           <...>-27644 (-----) [005] .... 82316.246059: binder_transaction: transaction=1570012 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
63207           <...>-27644 (-----) [005] .... 82316.246061: binder_transaction_alloc_buf: transaction=1570012 data_size=556 offsets_size=104
63208           <...>-27644 (-----) [005] ...2 82316.246076: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
63209           <...>-27644 (-----) [005] d..4 82316.246078: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63210           <...>-27644 (-----) [005] dn.5 82316.246090: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63211<...>-13083 ( 8858) [002] .... 82316.246092: binder_transaction: transaction=1570015 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
63212           <...>-27644 (-----) [005] d..2 82316.246096: sched_switch: prev_comm=id.nn.benchmark prev_pid=27644 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63213<...>-13083 ( 8858) [002] .... 82316.246100: binder_transaction_alloc_buf: transaction=1570015 data_size=68 offsets_size=0
63214<...>-5340 ( 788) [005] .... 82316.246106: binder_transaction_received: transaction=1570012
63215<...>-13083 ( 8858) [002] d..2 82316.246142: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
63216    RenderThread-9436  ( 9105) [002] .... 82316.246151: binder_transaction_received: transaction=1570015
63217<...>-5340 ( 788) [005] ...1 82316.246155: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
63218<...>-5340 ( 788) [005] d..2 82316.246202: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
63219<...>-5340 ( 788) [005] d..2 82316.246245: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27644 next_prio=110
63220    RenderThread-9436  ( 9105) [002] d..2 82316.246250: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63221          <idle>-0     (-----) [002] dnh3 82316.246265: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
63222           <...>-27644 (-----) [005] d..2 82316.246269: sched_switch: prev_comm=id.nn.benchmark prev_pid=27644 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
63223          <idle>-0     (-----) [002] d..2 82316.246277: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
63224          <idle>-0     (-----) [005] d..1 82316.246287: cpu_idle: state=0 cpu_id=5
63225<...>-87 ( 87) [002] d..2 82316.246318: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63226          <idle>-0     (-----) [002] d.h5 82316.246337: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63227          <idle>-0     (-----) [002] dnh6 82316.246353: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63228          <idle>-0     (-----) [002] d..2 82316.246371: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
63229<...>-86 ( 86) [002] d..2 82316.246405: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63230          <idle>-0     (-----) [002] d.h5 82316.246426: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63231          <idle>-0     (-----) [005] dnh2 82316.246447: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63232          <idle>-0     (-----) [005] .n.1 82316.246452: cpu_idle: state=4294967295 cpu_id=5
63233          <idle>-0     (-----) [005] d..2 82316.246460: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63234          <idle>-0     (-----) [002] d..1 82316.246474: cpu_idle: state=0 cpu_id=2
63235<...>-5340 ( 788) [005] d..1 82316.246513: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63236          <idle>-0     (-----) [000] dnh2 82316.246540: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63237          <idle>-0     (-----) [000] .n.1 82316.246546: cpu_idle: state=4294967295 cpu_id=0
63238          <idle>-0     (-----) [000] d..2 82316.246556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
63239 neuralnetworks@-13088 (  788) [000] d..2 82316.246605: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63240          <idle>-0     (-----) [000] d..1 82316.246617: cpu_idle: state=0 cpu_id=0
63241<...>-5340 ( 788) [005] d..2 82316.246661: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
63242          <idle>-0     (-----) [002] dnh2 82316.246682: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
63243<...>-5340 ( 788) [005] d..2 82316.246686: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
63244          <idle>-0     (-----) [002] .n.1 82316.246688: cpu_idle: state=4294967295 cpu_id=2
63245          <idle>-0     (-----) [002] d..2 82316.246699: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
63246          <idle>-0     (-----) [005] d..1 82316.246700: cpu_idle: state=0 cpu_id=5
63247<...>-87 ( 87) [002] d..2 82316.246733: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63248          <idle>-0     (-----) [002] d.h5 82316.246750: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63249          <idle>-0     (-----) [002] dnh6 82316.246759: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63250          <idle>-0     (-----) [002] d..2 82316.246771: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
63251<...>-86 ( 86) [002] d..2 82316.246799: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63252          <idle>-0     (-----) [002] d..1 82316.246811: cpu_idle: state=0 cpu_id=2
63253          <idle>-0     (-----) [005] ...1 82316.247032: cpu_idle: state=4294967295 cpu_id=5
63254          <idle>-0     (-----) [005] d..1 82316.247036: cpu_idle: state=0 cpu_id=5
63255          <idle>-0     (-----) [003] d.h2 82316.247240: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
63256          <idle>-0     (-----) [003] dnh3 82316.247252: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
63257          <idle>-0     (-----) [003] .n.1 82316.247260: cpu_idle: state=4294967295 cpu_id=3
63258          <idle>-0     (-----) [003] d..2 82316.247269: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
63259        DispSync-8879  ( 8858) [003] d..1 82316.247285: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
63260        DispSync-8879  ( 8858) [003] d..2 82316.247300: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
63261          <idle>-0     (-----) [002] .n.1 82316.247306: cpu_idle: state=4294967295 cpu_id=2
63262          <idle>-0     (-----) [002] d..2 82316.247316: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
63263        DispSync-8879  ( 8858) [003] d..2 82316.247328: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63264          <idle>-0     (-----) [003] d..1 82316.247342: cpu_idle: state=0 cpu_id=3
63265   sfEventThread-8882  ( 8858) [002] d..3 82316.247355: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
63266   sfEventThread-8882  ( 8858) [002] d..4 82316.247374: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
63267          <idle>-0     (-----) [000] .n.1 82316.247380: cpu_idle: state=4294967295 cpu_id=0
63268          <idle>-0     (-----) [000] d..2 82316.247390: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
63269   sfEventThread-8882  ( 8858) [002] d..2 82316.247407: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63270          <idle>-0     (-----) [002] d..1 82316.247419: cpu_idle: state=0 cpu_id=2
63271  surfaceflinger-8858  ( 8858) [000] d..1 82316.247730: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
63272  surfaceflinger-8858  ( 8858) [000] d..2 82316.247751: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
63273          <idle>-0     (-----) [002] .n.1 82316.247757: cpu_idle: state=4294967295 cpu_id=2
63274          <idle>-0     (-----) [002] d..2 82316.247767: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
63275   sfEventThread-8882  ( 8858) [002] d..2 82316.247799: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63276          <idle>-0     (-----) [002] d..1 82316.247808: cpu_idle: state=0 cpu_id=2
63277  surfaceflinger-8858  ( 8858) [000] ...1 82316.247936: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
63278  surfaceflinger-8858  ( 8858) [000] ...1 82316.247942: tracing_mark_write: E|8858
63279  surfaceflinger-8858  ( 8858) [000] .... 82316.247994: binder_transaction: transaction=1570016 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
63280  surfaceflinger-8858  ( 8858) [000] .... 82316.247998: binder_transaction_alloc_buf: transaction=1570016 data_size=540 offsets_size=96
63281  surfaceflinger-8858  ( 8858) [000] ...2 82316.248022: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
63282  surfaceflinger-8858  ( 8858) [000] d..4 82316.248029: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
63283  surfaceflinger-8858  ( 8858) [000] d..5 82316.248047: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
63284          <idle>-0     (-----) [001] .n.1 82316.248052: cpu_idle: state=4294967295 cpu_id=1
63285          <idle>-0     (-----) [001] d..2 82316.248062: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
63286 [email protected]   (  619) [001] .... 82316.248072: binder_transaction_received: transaction=1570016
63287  surfaceflinger-8858  ( 8858) [000] d..2 82316.248078: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63288          <idle>-0     (-----) [000] d..1 82316.248095: cpu_idle: state=0 cpu_id=0
63289 [email protected]   (  619) [001] ...1 82316.248111: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
63290 [email protected]   (  619) [001] ...1 82316.248215: tracing_mark_write: B|619|HWCSession::PresentDisplay::
63291 [email protected]   (  619) [001] ...1 82316.248376: tracing_mark_write: B|619|HWDeviceDRM::Commit::
63292          <idle>-0     (-----) [002] d.h4 82316.248385: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63293 [email protected]   (  619) [001] ...1 82316.248388: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
63294          <idle>-0     (-----) [005] dnh2 82316.248406: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63295          <idle>-0     (-----) [005] .n.1 82316.248409: cpu_idle: state=4294967295 cpu_id=5
63296          <idle>-0     (-----) [005] d..2 82316.248417: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63297          <idle>-0     (-----) [002] ...1 82316.248423: cpu_idle: state=4294967295 cpu_id=2
63298          <idle>-0     (-----) [002] d..1 82316.248428: cpu_idle: state=0 cpu_id=2
63299<...>-5340 ( 788) [005] d.s2 82316.248463: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
63300 [email protected]   (  619) [001] d.H2 82316.248489: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
63301<...>-5340 ( 788) [005] d..1 82316.248515: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63302          <idle>-0     (-----) [000] dnh2 82316.248542: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63303          <idle>-0     (-----) [000] .n.1 82316.248548: cpu_idle: state=4294967295 cpu_id=0
63304          <idle>-0     (-----) [000] d..2 82316.248574: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
63305<...>-5340 ( 788) [005] ...1 82316.248605: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
63306<...>-5340 ( 788) [005] ...1 82316.248609: tracing_mark_write: E|788
63307<...>-5340 ( 788) [005] .... 82316.248626: binder_transaction: transaction=1570017 dest_node=1570013 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
63308<...>-5340 ( 788) [005] .... 82316.248628: binder_transaction_alloc_buf: transaction=1570017 data_size=60 offsets_size=0
63309<...>-5340 ( 788) [005] d..4 82316.248632: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
63310 neuralnetworks@-13088 (  788) [000] d..2 82316.248636: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63311<...>-5340 ( 788) [005] d..5 82316.248645: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
63312          <idle>-0     (-----) [000] d..1 82316.248646: cpu_idle: state=0 cpu_id=0
63313          <idle>-0     (-----) [004] .n.1 82316.248651: cpu_idle: state=4294967295 cpu_id=4
63314          <idle>-0     (-----) [004] d..2 82316.248659: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
63315           <...>-27571 (-----) [004] .... 82316.248664: binder_transaction_received: transaction=1570017
63316<...>-5340 ( 788) [005] ...1 82316.248668: tracing_mark_write: E|788
63317<...>-5340 ( 788) [005] .... 82316.248675: binder_transaction: transaction=1570018 dest_node=0 dest_proc=27550 dest_thread=27644 reply=1 flags=0x0 code=0x0
63318<...>-5340 ( 788) [005] .... 82316.248676: binder_transaction_alloc_buf: transaction=1570018 data_size=8 offsets_size=0
63319<...>-5340 ( 788) [005] d..2 82316.248678: sched_waking: comm=id.nn.benchmark pid=27644 prio=110 target_cpu=005
63320           <...>-27571 (-----) [004] ...1 82316.248683: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
63321<...>-5340 ( 788) [005] d..3 82316.248685: sched_wakeup: comm=id.nn.benchmark pid=27644 prio=110 target_cpu=005
63322<...>-5340 ( 788) [005] .... 82316.248687: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
63323           <...>-27571 (-----) [004] ...1 82316.248689: tracing_mark_write: E|27550
63324           <...>-27571 (-----) [004] d..2 82316.248719: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63325          <idle>-0     (-----) [004] d..1 82316.248726: cpu_idle: state=0 cpu_id=4
63326<...>-5340 ( 788) [005] d..2 82316.248730: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27644 next_prio=110
63327           <...>-27644 (-----) [005] .... 82316.248740: binder_transaction_received: transaction=1570018
63328           <...>-27644 (-----) [005] ...1 82316.248776: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
63329           <...>-27644 (-----) [005] ...1 82316.248783: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
63330           <...>-27644 (-----) [005] ...1 82316.248810: tracing_mark_write: E|27550
63331           <...>-27644 (-----) [005] ...1 82316.248813: tracing_mark_write: E|27550
63332           <...>-27644 (-----) [005] ...1 82316.248817: tracing_mark_write: E|27550
63333           <...>-27644 (-----) [005] ...1 82316.249002: tracing_mark_write: E|27550
63334           <...>-27644 (-----) [005] d..1 82316.249015: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63335           <...>-27644 (-----) [005] d..2 82316.249032: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63336          <idle>-0     (-----) [004] .n.1 82316.249037: cpu_idle: state=4294967295 cpu_id=4
63337          <idle>-0     (-----) [004] d..2 82316.249043: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
63338           <...>-27550 (-----) [004] d..2 82316.249063: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63339          <idle>-0     (-----) [004] d..1 82316.249071: cpu_idle: state=0 cpu_id=4
63340 [email protected]   (  619) [001] d..2 82316.249075: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
63341 [email protected]   (  619) [001] d..3 82316.249095: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
63342          <idle>-0     (-----) [000] .n.1 82316.249101: cpu_idle: state=4294967295 cpu_id=0
63343          <idle>-0     (-----) [000] d..2 82316.249109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
63344           <...>-27644 (-----) [005] d..1 82316.249125: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63345           <...>-27644 (-----) [005] d..2 82316.249134: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63346          <idle>-0     (-----) [004] .n.1 82316.249140: cpu_idle: state=4294967295 cpu_id=4
63347          <idle>-0     (-----) [004] d..2 82316.249148: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
63348           <...>-27644 (-----) [005] d..2 82316.249175: sched_switch: prev_comm=id.nn.benchmark prev_pid=27644 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
63349           <...>-27550 (-----) [004] ...1 82316.249182: tracing_mark_write: E|27550
63350           <...>-27550 (-----) [004] ...1 82316.249186: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
63351           <...>-27550 (-----) [004] ...1 82316.249192: tracing_mark_write: E|27550
63352           <...>-27550 (-----) [004] ...1 82316.249196: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
63353          <idle>-0     (-----) [005] d..1 82316.249196: cpu_idle: state=0 cpu_id=5
63354 [email protected]   (  619) [001] ...1 82316.249198: tracing_mark_write: E|619
63355           <...>-27550 (-----) [004] ...1 82316.249200: tracing_mark_write: E|27550
63356           <...>-27550 (-----) [004] ...1 82316.249204: tracing_mark_write: E|27550
63357 [email protected]   (  619) [001] ...1 82316.249205: tracing_mark_write: E|619
63358          <idle>-0     (-----) [003] ...1 82316.249261: cpu_idle: state=4294967295 cpu_id=3
63359 [email protected]   (  619) [001] ...1 82316.249263: tracing_mark_write: E|619
63360          <idle>-0     (-----) [003] d..1 82316.249266: cpu_idle: state=0 cpu_id=3
63361 [email protected]   (  619) [001] ...1 82316.249306: tracing_mark_write: E|619
63362           <...>-27550 (-----) [004] ...1 82316.249317: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
63363 [email protected]   (  619) [001] .... 82316.249320: binder_transaction: transaction=1570019 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
63364 [email protected]   (  619) [001] .... 82316.249324: binder_transaction_alloc_buf: transaction=1570019 data_size=576 offsets_size=112
63365 [email protected]   (  619) [001] d..2 82316.249343: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
63366 [email protected]   (  619) [001] d..3 82316.249371: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
63367          <idle>-0     (-----) [003] .n.1 82316.249374: cpu_idle: state=4294967295 cpu_id=3
63368           <...>-27550 (-----) [004] ...1 82316.249374: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
63369 [email protected]   (  619) [001] .... 82316.249375: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
63370           <...>-27550 (-----) [004] ...1 82316.249379: tracing_mark_write: E|27550
63371           <...>-27550 (-----) [004] ...1 82316.249382: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
63372          <idle>-0     (-----) [003] d..2 82316.249384: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
63373           <...>-27550 (-----) [004] ...1 82316.249387: tracing_mark_write: E|27550
63374           <...>-27550 (-----) [004] ...1 82316.249391: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
63375  surfaceflinger-8858  ( 8858) [003] .... 82316.249393: binder_transaction_received: transaction=1570019
63376           <...>-27550 (-----) [004] ...1 82316.249395: tracing_mark_write: E|27550
63377           <...>-27550 (-----) [004] ...1 82316.249398: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
63378 [email protected]   (  619) [001] d..2 82316.249446: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
63379          <idle>-0     (-----) [005] .n.1 82316.249506: cpu_idle: state=4294967295 cpu_id=5
63380           <...>-27550 (-----) [004] ...1 82316.249507: tracing_mark_write: E|27550
63381           <...>-27550 (-----) [004] ...1 82316.249511: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
63382          <idle>-0     (-----) [005] d..2 82316.249515: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27645 next_prio=110
63383           <...>-27550 (-----) [004] d..2 82316.249529: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63384          <idle>-0     (-----) [004] d..1 82316.249543: cpu_idle: state=0 cpu_id=4
63385           <...>-27645 (-----) [005] ...1 82316.249577: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
63386           <...>-27645 (-----) [005] ...1 82316.249591: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
63387           <...>-27645 (-----) [005] ...1 82316.249601: tracing_mark_write: E|27550
63388           <...>-27645 (-----) [005] .... 82316.249630: binder_transaction: transaction=1570020 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
63389           <...>-27645 (-----) [005] .... 82316.249634: binder_transaction_alloc_buf: transaction=1570020 data_size=48 offsets_size=0
63390           <...>-27645 (-----) [005] ...2 82316.249637: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
63391           <...>-27645 (-----) [005] d..4 82316.249640: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
63392           <...>-27645 (-----) [005] dn.5 82316.249650: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
63393           <...>-27645 (-----) [005] d..2 82316.249657: sched_switch: prev_comm=id.nn.benchmark prev_pid=27645 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
63394<...>-770 ( 770) [005] .... 82316.249667: binder_transaction_received: transaction=1570020
63395<...>-770 ( 770) [005] ...1 82316.249691: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
63396  kworker/u16:15-1311  ( 1311) [001] .... 82316.249692: clk_set_rate: l3_cluster0_vote_clk 403200000
63397  kworker/u16:15-1311  ( 1311) [001] d..2 82316.249723: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
63398          <idle>-0     (-----) [001] d..1 82316.249740: cpu_idle: state=0 cpu_id=1
63399<...>-770 ( 770) [005] d..2 82316.249773: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
63400 crtc_commit:111-321   (  321) [000] d.h1 82316.249798: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
63401<...>-770 ( 770) [005] ...1 82316.249813: tracing_mark_write: E|770
63402<...>-770 ( 770) [005] .... 82316.249821: binder_transaction: transaction=1570021 dest_node=0 dest_proc=27550 dest_thread=27645 reply=1 flags=0x0 code=0x0
63403<...>-770 ( 770) [005] .... 82316.249824: binder_transaction_alloc_buf: transaction=1570021 data_size=168 offsets_size=32
63404<...>-770 ( 770) [005] .... 82316.249831: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
63405 crtc_commit:111-321   (  321) [000] d..2 82316.249844: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
63406  surfaceflinger-8858  ( 8858) [003] d..2 82316.249853: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63407<...>-770 ( 770) [005] d..2 82316.249867: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27645 next_prio=110
63408          <idle>-0     (-----) [003] d..1 82316.249872: cpu_idle: state=0 cpu_id=3
63409           <...>-27645 (-----) [005] .... 82316.249878: binder_transaction_received: transaction=1570021
63410<...>-581 ( 571) [000] d..2 82316.249935: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63411          <idle>-0     (-----) [000] d..1 82316.249947: cpu_idle: state=0 cpu_id=0
63412           <...>-27645 (-----) [005] ...1 82316.249951: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
63413           <...>-27645 (-----) [005] ...1 82316.249956: tracing_mark_write: E|27550
63414           <...>-27645 (-----) [005] .... 82316.249970: binder_transaction: transaction=1570022 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
63415           <...>-27645 (-----) [005] .... 82316.249973: binder_transaction_alloc_buf: transaction=1570022 data_size=48 offsets_size=0
63416           <...>-27645 (-----) [005] ...2 82316.249975: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
63417           <...>-27645 (-----) [005] d..4 82316.249978: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
63418           <...>-27645 (-----) [005] dn.5 82316.249988: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
63419           <...>-27645 (-----) [005] d..2 82316.249995: sched_switch: prev_comm=id.nn.benchmark prev_pid=27645 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
63420<...>-770 ( 770) [005] .... 82316.250003: binder_transaction_received: transaction=1570022
63421<...>-770 ( 770) [005] ...1 82316.250019: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
63422<...>-770 ( 770) [005] d..2 82316.250076: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
63423          <idle>-0     (-----) [000] dnh2 82316.250101: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
63424          <idle>-0     (-----) [000] .n.1 82316.250108: cpu_idle: state=4294967295 cpu_id=0
63425<...>-770 ( 770) [005] ...1 82316.250111: tracing_mark_write: E|770
63426          <idle>-0     (-----) [000] d..2 82316.250116: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
63427<...>-770 ( 770) [005] .... 82316.250118: binder_transaction: transaction=1570023 dest_node=0 dest_proc=27550 dest_thread=27645 reply=1 flags=0x0 code=0x0
63428<...>-770 ( 770) [005] .... 82316.250121: binder_transaction_alloc_buf: transaction=1570023 data_size=168 offsets_size=32
63429<...>-770 ( 770) [005] .... 82316.250126: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
63430<...>-770 ( 770) [005] d..2 82316.250160: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27645 next_prio=110
63431           <...>-27645 (-----) [005] .... 82316.250171: binder_transaction_received: transaction=1570023
63432<...>-581 ( 571) [000] d..2 82316.250172: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63433          <idle>-0     (-----) [000] d..1 82316.250181: cpu_idle: state=0 cpu_id=0
63434           <...>-27645 (-----) [005] ...1 82316.250452: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
63435           <...>-27645 (-----) [005] ...1 82316.250462: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
63436           <...>-27645 (-----) [005] ...1 82316.250466: tracing_mark_write: E|27550
63437           <...>-27645 (-----) [005] .... 82316.250531: binder_transaction: transaction=1570024 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
63438           <...>-27645 (-----) [005] .... 82316.250534: binder_transaction_alloc_buf: transaction=1570024 data_size=556 offsets_size=104
63439           <...>-27645 (-----) [005] ...2 82316.250549: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
63440           <...>-27645 (-----) [005] d..4 82316.250551: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63441           <...>-27645 (-----) [005] dn.5 82316.250563: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63442           <...>-27645 (-----) [005] d..2 82316.250570: sched_switch: prev_comm=id.nn.benchmark prev_pid=27645 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63443<...>-5340 ( 788) [005] .... 82316.250580: binder_transaction_received: transaction=1570024
63444<...>-5340 ( 788) [005] ...1 82316.250628: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
63445<...>-5340 ( 788) [005] d..2 82316.250677: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
63446<...>-5340 ( 788) [005] d..2 82316.250713: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27645 next_prio=110
63447          <idle>-0     (-----) [000] dnh2 82316.250716: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
63448          <idle>-0     (-----) [000] .n.1 82316.250722: cpu_idle: state=4294967295 cpu_id=0
63449          <idle>-0     (-----) [000] d..2 82316.250729: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
63450           <...>-27645 (-----) [005] d..2 82316.250735: sched_switch: prev_comm=id.nn.benchmark prev_pid=27645 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
63451          <idle>-0     (-----) [005] d..1 82316.250753: cpu_idle: state=0 cpu_id=5
63452<...>-87 ( 87) [000] d..2 82316.250770: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63453          <idle>-0     (-----) [000] d..1 82316.250777: cpu_idle: state=0 cpu_id=0
63454          <idle>-0     (-----) [002] d.h4 82316.250779: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63455          <idle>-0     (-----) [002] dnh5 82316.250798: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63456          <idle>-0     (-----) [002] .n.1 82316.250806: cpu_idle: state=4294967295 cpu_id=2
63457          <idle>-0     (-----) [002] d..2 82316.250818: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
63458<...>-86 ( 86) [002] d..2 82316.250854: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63459          <idle>-0     (-----) [002] d.h5 82316.250875: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63460          <idle>-0     (-----) [005] dnh2 82316.250896: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63461          <idle>-0     (-----) [005] .n.1 82316.250901: cpu_idle: state=4294967295 cpu_id=5
63462          <idle>-0     (-----) [005] d..2 82316.250909: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63463          <idle>-0     (-----) [002] d..1 82316.250915: cpu_idle: state=0 cpu_id=2
63464<...>-5340 ( 788) [005] d..1 82316.250963: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63465          <idle>-0     (-----) [000] dnh2 82316.250988: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63466          <idle>-0     (-----) [000] .n.1 82316.250994: cpu_idle: state=4294967295 cpu_id=0
63467          <idle>-0     (-----) [000] d..2 82316.251001: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
63468 neuralnetworks@-13088 (  788) [000] d..2 82316.251047: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63469          <idle>-0     (-----) [000] d..1 82316.251056: cpu_idle: state=0 cpu_id=0
63470<...>-5340 ( 788) [005] d..2 82316.251113: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
63471          <idle>-0     (-----) [000] dnh2 82316.251133: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
63472<...>-5340 ( 788) [005] d..2 82316.251138: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
63473          <idle>-0     (-----) [000] .n.1 82316.251139: cpu_idle: state=4294967295 cpu_id=0
63474          <idle>-0     (-----) [000] d..2 82316.251146: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
63475          <idle>-0     (-----) [005] d..1 82316.251152: cpu_idle: state=0 cpu_id=5
63476          <idle>-0     (-----) [002] d.h4 82316.251182: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63477<...>-87 ( 87) [000] d..2 82316.251182: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63478          <idle>-0     (-----) [000] d..1 82316.251190: cpu_idle: state=0 cpu_id=0
63479          <idle>-0     (-----) [002] dnh5 82316.251192: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63480          <idle>-0     (-----) [002] .n.1 82316.251200: cpu_idle: state=4294967295 cpu_id=2
63481          <idle>-0     (-----) [002] d..2 82316.251208: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
63482<...>-86 ( 86) [002] d..2 82316.251239: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63483          <idle>-0     (-----) [002] d..1 82316.251247: cpu_idle: state=0 cpu_id=2
63484          <idle>-0     (-----) [005] ...1 82316.251484: cpu_idle: state=4294967295 cpu_id=5
63485          <idle>-0     (-----) [005] d..1 82316.251488: cpu_idle: state=0 cpu_id=5
63486          <idle>-0     (-----) [002] d.s2 82316.251808: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63487          <idle>-0     (-----) [002] dns3 82316.251867: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63488          <idle>-0     (-----) [002] .n.1 82316.251883: cpu_idle: state=4294967295 cpu_id=2
63489          <idle>-0     (-----) [000] d.H3 82316.251889: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
63490          <idle>-0     (-----) [002] d..2 82316.251892: 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
63491     rcu_preempt-7     (    7) [002] d..2 82316.251903: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
63492          <idle>-0     (-----) [000] d.H4 82316.251908: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
63493          <idle>-0     (-----) [003] .n.1 82316.251914: cpu_idle: state=4294967295 cpu_id=3
63494          <idle>-0     (-----) [000] d.s2 82316.251916: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
63495          <idle>-0     (-----) [003] d..2 82316.251927: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
63496          <idle>-0     (-----) [000] dns3 82316.251934: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
63497     rcu_preempt-7     (    7) [002] d..3 82316.251941: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
63498     rcu_preempt-7     (    7) [002] d..2 82316.251944: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
63499          <idle>-0     (-----) [000] .n.1 82316.251954: cpu_idle: state=4294967295 cpu_id=0
63500         sugov:0-576   (  576) [003] .... 82316.251959: clk_set_rate: pwrcl_clk 825600000
63501          <idle>-0     (-----) [000] d..2 82316.251964: 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
63502<...>-8 ( 8) [000] d..2 82316.251972: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
63503     rcu_preempt-7     (    7) [002] d..3 82316.251975: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
63504         sugov:0-576   (  576) [003] .... 82316.251979: clk_set_rate: cpu3_pwrcl_clk 902400000
63505         sugov:0-576   (  576) [003] .... 82316.251988: clk_set_rate: cpu2_pwrcl_clk 902400000
63506         sugov:0-576   (  576) [003] .... 82316.251996: clk_set_rate: cpu1_pwrcl_clk 902400000
63507     rcu_preempt-7     (    7) [002] d..2 82316.251997: 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
63508         rcuop/2-29    (   29) [002] d..2 82316.252002: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
63509         sugov:0-576   (  576) [003] .... 82316.252003: clk_set_rate: cpu0_pwrcl_clk 825600000
63510<...>-8 ( 8) [000] d..3 82316.252019: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
63511<...>-8 ( 8) [000] d..2 82316.252035: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
63512<...>-46 ( 46) [000] d..2 82316.252046: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
63513         rcuop/2-29    (   29) [002] d..3 82316.252049: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
63514          <idle>-0     (-----) [001] .n.1 82316.252055: cpu_idle: state=4294967295 cpu_id=1
63515          <idle>-0     (-----) [001] d..2 82316.252072: 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
63516         rcuop/2-29    (   29) [002] d..2 82316.252075: 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
63517<...>-46 ( 46) [000] d..3 82316.252087: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
63518          <idle>-0     (-----) [002] d..1 82316.252090: cpu_idle: state=0 cpu_id=2
63519         rcuop/3-37    (   37) [001] d..2 82316.252099: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
63520         sugov:0-576   (  576) [003] .... 82316.252115: cpu_frequency: state=825600 cpu_id=0
63521<...>-46 ( 46) [000] d..2 82316.252128: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63522<...>-8 ( 8) [001] d..2 82316.252130: 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
63523         sugov:0-576   (  576) [003] .... 82316.252138: cpu_frequency: state=825600 cpu_id=1
63524          <idle>-0     (-----) [001] d..1 82316.252142: cpu_idle: state=0 cpu_id=1
63525         sugov:0-576   (  576) [003] .... 82316.252143: cpu_frequency: state=825600 cpu_id=2
63526          <idle>-0     (-----) [000] d..1 82316.252145: cpu_idle: state=0 cpu_id=0
63527         sugov:0-576   (  576) [003] .... 82316.252147: cpu_frequency: state=825600 cpu_id=3
63528         sugov:0-576   (  576) [003] d..2 82316.252167: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
63529         rcuop/0-10    (   10) [003] d..2 82316.252197: 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
63530          <idle>-0     (-----) [003] d..1 82316.252211: cpu_idle: state=0 cpu_id=3
63531          <idle>-0     (-----) [002] d.h4 82316.252896: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63532          <idle>-0     (-----) [005] dnh2 82316.252919: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63533          <idle>-0     (-----) [005] .n.1 82316.252922: cpu_idle: state=4294967295 cpu_id=5
63534          <idle>-0     (-----) [005] d..2 82316.252931: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63535          <idle>-0     (-----) [002] ...1 82316.252936: cpu_idle: state=4294967295 cpu_id=2
63536          <idle>-0     (-----) [002] d..1 82316.252942: cpu_idle: state=0 cpu_id=2
63537<...>-5340 ( 788) [005] d..1 82316.252983: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63538          <idle>-0     (-----) [000] dnh2 82316.253010: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63539          <idle>-0     (-----) [000] .n.1 82316.253017: cpu_idle: state=4294967295 cpu_id=0
63540          <idle>-0     (-----) [000] d..2 82316.253039: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
63541<...>-5340 ( 788) [005] ...1 82316.253075: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
63542<...>-5340 ( 788) [005] ...1 82316.253079: tracing_mark_write: E|788
63543<...>-5340 ( 788) [005] .... 82316.253095: binder_transaction: transaction=1570027 dest_node=1570025 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
63544 neuralnetworks@-13088 (  788) [000] d..2 82316.253096: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63545<...>-5340 ( 788) [005] .... 82316.253098: binder_transaction_alloc_buf: transaction=1570027 data_size=60 offsets_size=0
63546<...>-5340 ( 788) [005] d..4 82316.253101: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
63547          <idle>-0     (-----) [000] d..1 82316.253109: cpu_idle: state=0 cpu_id=0
63548<...>-5340 ( 788) [005] d..5 82316.253114: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
63549          <idle>-0     (-----) [004] .n.1 82316.253120: cpu_idle: state=4294967295 cpu_id=4
63550          <idle>-0     (-----) [004] d..2 82316.253128: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
63551           <...>-27571 (-----) [004] .... 82316.253133: binder_transaction_received: transaction=1570027
63552<...>-5340 ( 788) [005] ...1 82316.253137: tracing_mark_write: E|788
63553<...>-5340 ( 788) [005] .... 82316.253143: binder_transaction: transaction=1570028 dest_node=0 dest_proc=27550 dest_thread=27645 reply=1 flags=0x0 code=0x0
63554<...>-5340 ( 788) [005] .... 82316.253145: binder_transaction_alloc_buf: transaction=1570028 data_size=8 offsets_size=0
63555<...>-5340 ( 788) [005] d..2 82316.253147: sched_waking: comm=id.nn.benchmark pid=27645 prio=110 target_cpu=005
63556           <...>-27571 (-----) [004] ...1 82316.253152: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
63557<...>-5340 ( 788) [005] d..3 82316.253155: sched_wakeup: comm=id.nn.benchmark pid=27645 prio=110 target_cpu=005
63558<...>-5340 ( 788) [005] .... 82316.253157: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
63559           <...>-27571 (-----) [004] ...1 82316.253158: tracing_mark_write: E|27550
63560           <...>-27571 (-----) [004] d..2 82316.253185: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63561          <idle>-0     (-----) [004] d..1 82316.253193: cpu_idle: state=0 cpu_id=4
63562<...>-5340 ( 788) [005] d..2 82316.253201: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27645 next_prio=110
63563           <...>-27645 (-----) [005] .... 82316.253211: binder_transaction_received: transaction=1570028
63564           <...>-27645 (-----) [005] ...1 82316.253247: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
63565           <...>-27645 (-----) [005] ...1 82316.253254: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
63566           <...>-27645 (-----) [005] ...1 82316.253280: tracing_mark_write: E|27550
63567           <...>-27645 (-----) [005] ...1 82316.253283: tracing_mark_write: E|27550
63568           <...>-27645 (-----) [005] ...1 82316.253287: tracing_mark_write: E|27550
63569           <...>-27645 (-----) [005] ...1 82316.253474: tracing_mark_write: E|27550
63570           <...>-27645 (-----) [005] d..1 82316.253487: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63571           <...>-27645 (-----) [005] d..2 82316.253504: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63572          <idle>-0     (-----) [004] .n.1 82316.253509: cpu_idle: state=4294967295 cpu_id=4
63573          <idle>-0     (-----) [004] d..2 82316.253516: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
63574           <...>-27550 (-----) [004] d..2 82316.253536: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63575          <idle>-0     (-----) [004] d..1 82316.253545: cpu_idle: state=0 cpu_id=4
63576           <...>-27645 (-----) [005] d..1 82316.253591: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63577           <...>-27645 (-----) [005] d..2 82316.253601: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63578          <idle>-0     (-----) [004] .n.1 82316.253606: cpu_idle: state=4294967295 cpu_id=4
63579          <idle>-0     (-----) [004] d..2 82316.253614: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
63580           <...>-27645 (-----) [005] d..2 82316.253639: sched_switch: prev_comm=id.nn.benchmark prev_pid=27645 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
63581           <...>-27550 (-----) [004] ...1 82316.253646: tracing_mark_write: E|27550
63582           <...>-27550 (-----) [004] ...1 82316.253651: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
63583           <...>-27550 (-----) [004] ...1 82316.253657: tracing_mark_write: E|27550
63584          <idle>-0     (-----) [005] d..1 82316.253660: cpu_idle: state=0 cpu_id=5
63585           <...>-27550 (-----) [004] ...1 82316.253660: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
63586           <...>-27550 (-----) [004] ...1 82316.253664: tracing_mark_write: E|27550
63587           <...>-27550 (-----) [004] ...1 82316.253669: tracing_mark_write: E|27550
63588           <...>-27550 (-----) [004] ...1 82316.253782: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
63589           <...>-27550 (-----) [004] ...1 82316.253839: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
63590           <...>-27550 (-----) [004] ...1 82316.253844: tracing_mark_write: E|27550
63591           <...>-27550 (-----) [004] ...1 82316.253848: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
63592           <...>-27550 (-----) [004] ...1 82316.253854: tracing_mark_write: E|27550
63593           <...>-27550 (-----) [004] ...1 82316.253858: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
63594           <...>-27550 (-----) [004] ...1 82316.253862: tracing_mark_write: E|27550
63595           <...>-27550 (-----) [004] ...1 82316.253865: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
63596          <idle>-0     (-----) [005] .n.1 82316.253955: cpu_idle: state=4294967295 cpu_id=5
63597           <...>-27550 (-----) [004] ...1 82316.253956: tracing_mark_write: E|27550
63598           <...>-27550 (-----) [004] ...1 82316.253960: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
63599          <idle>-0     (-----) [005] d..2 82316.253964: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27646 next_prio=110
63600           <...>-27550 (-----) [004] d..2 82316.253977: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63601          <idle>-0     (-----) [004] d..1 82316.253991: cpu_idle: state=0 cpu_id=4
63602           <...>-27646 (-----) [005] ...1 82316.254026: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
63603           <...>-27646 (-----) [005] ...1 82316.254041: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
63604           <...>-27646 (-----) [005] ...1 82316.254045: tracing_mark_write: E|27550
63605           <...>-27646 (-----) [005] .... 82316.254065: binder_transaction: transaction=1570029 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
63606           <...>-27646 (-----) [005] .... 82316.254069: binder_transaction_alloc_buf: transaction=1570029 data_size=48 offsets_size=0
63607           <...>-27646 (-----) [005] ...2 82316.254072: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
63608           <...>-27646 (-----) [005] d..4 82316.254074: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
63609           <...>-27646 (-----) [005] dn.5 82316.254086: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
63610           <...>-27646 (-----) [005] d..2 82316.254093: sched_switch: prev_comm=id.nn.benchmark prev_pid=27646 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
63611<...>-770 ( 770) [005] .... 82316.254103: binder_transaction_received: transaction=1570029
63612<...>-770 ( 770) [005] ...1 82316.254126: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
63613<...>-770 ( 770) [005] d..2 82316.254199: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
63614          <idle>-0     (-----) [000] dnh2 82316.254227: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
63615          <idle>-0     (-----) [000] .n.1 82316.254234: cpu_idle: state=4294967295 cpu_id=0
63616<...>-770 ( 770) [005] ...1 82316.254239: tracing_mark_write: E|770
63617          <idle>-0     (-----) [000] d..2 82316.254245: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
63618<...>-770 ( 770) [005] .... 82316.254248: binder_transaction: transaction=1570030 dest_node=0 dest_proc=27550 dest_thread=27646 reply=1 flags=0x0 code=0x0
63619<...>-770 ( 770) [005] .... 82316.254250: binder_transaction_alloc_buf: transaction=1570030 data_size=168 offsets_size=32
63620<...>-770 ( 770) [005] .... 82316.254257: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
63621<...>-770 ( 770) [005] d..2 82316.254292: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27646 next_prio=110
63622           <...>-27646 (-----) [005] .... 82316.254303: binder_transaction_received: transaction=1570030
63623<...>-581 ( 571) [000] d..2 82316.254322: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63624          <idle>-0     (-----) [000] d..1 82316.254338: cpu_idle: state=0 cpu_id=0
63625           <...>-27646 (-----) [005] ...1 82316.254374: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
63626           <...>-27646 (-----) [005] ...1 82316.254379: tracing_mark_write: E|27550
63627           <...>-27646 (-----) [005] .... 82316.254394: binder_transaction: transaction=1570031 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
63628           <...>-27646 (-----) [005] .... 82316.254396: binder_transaction_alloc_buf: transaction=1570031 data_size=48 offsets_size=0
63629           <...>-27646 (-----) [005] ...2 82316.254399: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
63630           <...>-27646 (-----) [005] d..4 82316.254402: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
63631           <...>-27646 (-----) [005] dn.5 82316.254412: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
63632           <...>-27646 (-----) [005] d..2 82316.254419: sched_switch: prev_comm=id.nn.benchmark prev_pid=27646 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
63633<...>-770 ( 770) [005] .... 82316.254427: binder_transaction_received: transaction=1570031
63634<...>-770 ( 770) [005] ...1 82316.254444: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
63635<...>-770 ( 770) [005] d..2 82316.254502: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
63636          <idle>-0     (-----) [000] dnh2 82316.254526: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
63637          <idle>-0     (-----) [000] .n.1 82316.254533: cpu_idle: state=4294967295 cpu_id=0
63638<...>-770 ( 770) [005] ...1 82316.254536: tracing_mark_write: E|770
63639<...>-770 ( 770) [005] .... 82316.254543: binder_transaction: transaction=1570032 dest_node=0 dest_proc=27550 dest_thread=27646 reply=1 flags=0x0 code=0x0
63640          <idle>-0     (-----) [000] d..2 82316.254544: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
63641<...>-770 ( 770) [005] .... 82316.254545: binder_transaction_alloc_buf: transaction=1570032 data_size=168 offsets_size=32
63642<...>-770 ( 770) [005] .... 82316.254551: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
63643<...>-770 ( 770) [005] d..2 82316.254584: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27646 next_prio=110
63644           <...>-27646 (-----) [005] .... 82316.254595: binder_transaction_received: transaction=1570032
63645<...>-581 ( 571) [000] d..2 82316.254602: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63646          <idle>-0     (-----) [000] d..1 82316.254616: cpu_idle: state=0 cpu_id=0
63647           <...>-27646 (-----) [005] ...1 82316.254874: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
63648           <...>-27646 (-----) [005] ...1 82316.254884: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
63649           <...>-27646 (-----) [005] ...1 82316.254888: tracing_mark_write: E|27550
63650           <...>-27646 (-----) [005] .... 82316.254955: binder_transaction: transaction=1570033 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
63651           <...>-27646 (-----) [005] .... 82316.254958: binder_transaction_alloc_buf: transaction=1570033 data_size=556 offsets_size=104
63652           <...>-27646 (-----) [005] ...2 82316.254972: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
63653           <...>-27646 (-----) [005] d..4 82316.254975: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63654           <...>-27646 (-----) [005] dn.5 82316.254986: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63655           <...>-27646 (-----) [005] d..2 82316.254993: sched_switch: prev_comm=id.nn.benchmark prev_pid=27646 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63656<...>-5340 ( 788) [005] .... 82316.255003: binder_transaction_received: transaction=1570033
63657<...>-5340 ( 788) [005] ...1 82316.255048: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
63658<...>-5340 ( 788) [005] d..2 82316.255093: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
63659          <idle>-0     (-----) [000] dnh2 82316.255127: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
63660<...>-5340 ( 788) [005] d..2 82316.255151: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27646 next_prio=110
63661           <...>-27646 (-----) [005] d..2 82316.255178: sched_switch: prev_comm=id.nn.benchmark prev_pid=27646 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
63662          <idle>-0     (-----) [005] d..1 82316.255195: cpu_idle: state=0 cpu_id=5
63663          <idle>-0     (-----) [000] dnh5 82316.255220: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
63664          <idle>-0     (-----) [000] dnh6 82316.255245: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
63665          <idle>-0     (-----) [000] dnh5 82316.255250: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
63666          <idle>-0     (-----) [003] .n.1 82316.255252: cpu_idle: state=4294967295 cpu_id=3
63667          <idle>-0     (-----) [003] d..2 82316.255263: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
63668          <idle>-0     (-----) [000] dnh6 82316.255271: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
63669          <idle>-0     (-----) [001] .n.1 82316.255278: cpu_idle: state=4294967295 cpu_id=1
63670          <idle>-0     (-----) [000] .n.1 82316.255286: cpu_idle: state=4294967295 cpu_id=0
63671          <idle>-0     (-----) [001] d..2 82316.255289: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
63672  crtc_event:111-322   (  322) [003] d..2 82316.255301: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63673          <idle>-0     (-----) [000] d..2 82316.255302: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
63674          <idle>-0     (-----) [003] d..1 82316.255311: cpu_idle: state=0 cpu_id=3
63675<...>-87 ( 87) [000] d..2 82316.255345: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63676          <idle>-0     (-----) [002] d.h4 82316.255350: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63677          <idle>-0     (-----) [000] d..1 82316.255359: cpu_idle: state=0 cpu_id=0
63678          <idle>-0     (-----) [002] d.h5 82316.255386: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
63679          <idle>-0     (-----) [000] .n.1 82316.255392: cpu_idle: state=4294967295 cpu_id=0
63680          <idle>-0     (-----) [002] ...1 82316.255396: cpu_idle: state=4294967295 cpu_id=2
63681          <idle>-0     (-----) [002] d..1 82316.255402: cpu_idle: state=0 cpu_id=2
63682          <idle>-0     (-----) [000] d..2 82316.255403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
63683          <idle>-0     (-----) [002] d.h4 82316.255433: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63684 crtc_commit:111-321   (  321) [001] d..2 82316.255435: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
63685          <idle>-0     (-----) [001] d..1 82316.255444: cpu_idle: state=0 cpu_id=1
63686          <idle>-0     (-----) [005] dnh2 82316.255453: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63687          <idle>-0     (-----) [005] .n.1 82316.255458: cpu_idle: state=4294967295 cpu_id=5
63688          <idle>-0     (-----) [005] d..2 82316.255466: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63689          <idle>-0     (-----) [002] ...1 82316.255469: cpu_idle: state=4294967295 cpu_id=2
63690          <idle>-0     (-----) [002] d..1 82316.255474: cpu_idle: state=0 cpu_id=2
63691<...>-86 ( 86) [000] d..2 82316.255481: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63692          <idle>-0     (-----) [000] d..1 82316.255494: cpu_idle: state=0 cpu_id=0
63693<...>-5340 ( 788) [005] d..1 82316.255518: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63694          <idle>-0     (-----) [000] dnh2 82316.255545: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63695          <idle>-0     (-----) [000] .n.1 82316.255552: cpu_idle: state=4294967295 cpu_id=0
63696          <idle>-0     (-----) [000] d..2 82316.255562: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
63697 neuralnetworks@-13088 (  788) [000] d..2 82316.255606: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63698          <idle>-0     (-----) [000] d..1 82316.255620: cpu_idle: state=0 cpu_id=0
63699<...>-5340 ( 788) [005] d..2 82316.255664: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
63700          <idle>-0     (-----) [000] dnh2 82316.255685: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
63701<...>-5340 ( 788) [005] d..2 82316.255689: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
63702          <idle>-0     (-----) [000] .n.1 82316.255692: cpu_idle: state=4294967295 cpu_id=0
63703          <idle>-0     (-----) [000] d..2 82316.255703: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
63704          <idle>-0     (-----) [005] d..1 82316.255703: cpu_idle: state=0 cpu_id=5
63705          <idle>-0     (-----) [002] d.h4 82316.255740: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
63706<...>-87 ( 87) [000] d..2 82316.255741: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63707          <idle>-0     (-----) [002] d.h5 82316.255756: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
63708          <idle>-0     (-----) [000] d..2 82316.255764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
63709          <idle>-0     (-----) [002] ...1 82316.255775: cpu_idle: state=4294967295 cpu_id=2
63710          <idle>-0     (-----) [002] d..1 82316.255779: cpu_idle: state=0 cpu_id=2
63711<...>-86 ( 86) [000] d..2 82316.255803: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63712          <idle>-0     (-----) [000] d..1 82316.255813: cpu_idle: state=0 cpu_id=0
63713          <idle>-0     (-----) [005] ...1 82316.256060: cpu_idle: state=4294967295 cpu_id=5
63714          <idle>-0     (-----) [005] d..1 82316.256064: cpu_idle: state=0 cpu_id=5
63715          <idle>-0     (-----) [000] ...1 82316.256928: cpu_idle: state=4294967295 cpu_id=0
63716          <idle>-0     (-----) [000] d..1 82316.256932: cpu_idle: state=0 cpu_id=0
63717          <idle>-0     (-----) [002] d.h4 82316.257515: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63718          <idle>-0     (-----) [005] dnh2 82316.257534: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63719          <idle>-0     (-----) [005] .n.1 82316.257538: cpu_idle: state=4294967295 cpu_id=5
63720          <idle>-0     (-----) [000] d.h5 82316.257543: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
63721          <idle>-0     (-----) [005] d..2 82316.257546: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63722          <idle>-0     (-----) [002] ...1 82316.257549: cpu_idle: state=4294967295 cpu_id=2
63723          <idle>-0     (-----) [002] d..1 82316.257554: cpu_idle: state=0 cpu_id=2
63724          <idle>-0     (-----) [000] d.h6 82316.257562: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
63725          <idle>-0     (-----) [001] .n.1 82316.257567: cpu_idle: state=4294967295 cpu_id=1
63726          <idle>-0     (-----) [001] d..2 82316.257575: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
63727          <idle>-0     (-----) [000] ...1 82316.257576: cpu_idle: state=4294967295 cpu_id=0
63728          <idle>-0     (-----) [000] d..1 82316.257583: cpu_idle: state=0 cpu_id=0
63729<...>-5340 ( 788) [005] d..1 82316.257604: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63730 crtc_commit:111-321   (  321) [001] d..2 82316.257652: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
63731          <idle>-0     (-----) [001] dnh3 82316.257666: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
63732          <idle>-0     (-----) [001] d..2 82316.257706: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
63733<...>-5340 ( 788) [005] ...1 82316.257714: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
63734<...>-5340 ( 788) [005] ...1 82316.257718: tracing_mark_write: E|788
63735<...>-5340 ( 788) [005] .... 82316.257733: binder_transaction: transaction=1570036 dest_node=1570034 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
63736<...>-5340 ( 788) [005] .... 82316.257736: binder_transaction_alloc_buf: transaction=1570036 data_size=60 offsets_size=0
63737<...>-5340 ( 788) [005] d..4 82316.257739: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
63738 neuralnetworks@-13088 (  788) [001] d..2 82316.257752: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
63739<...>-5340 ( 788) [005] d..5 82316.257752: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
63740          <idle>-0     (-----) [004] .n.1 82316.257758: cpu_idle: state=4294967295 cpu_id=4
63741          <idle>-0     (-----) [001] d..1 82316.257763: cpu_idle: state=0 cpu_id=1
63742          <idle>-0     (-----) [004] d..2 82316.257766: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
63743           <...>-27571 (-----) [004] .... 82316.257771: binder_transaction_received: transaction=1570036
63744<...>-5340 ( 788) [005] ...1 82316.257775: tracing_mark_write: E|788
63745<...>-5340 ( 788) [005] .... 82316.257780: binder_transaction: transaction=1570037 dest_node=0 dest_proc=27550 dest_thread=27646 reply=1 flags=0x0 code=0x0
63746<...>-5340 ( 788) [005] .... 82316.257782: binder_transaction_alloc_buf: transaction=1570037 data_size=8 offsets_size=0
63747<...>-5340 ( 788) [005] d..2 82316.257784: sched_waking: comm=id.nn.benchmark pid=27646 prio=110 target_cpu=005
63748           <...>-27571 (-----) [004] ...1 82316.257788: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
63749<...>-5340 ( 788) [005] d..3 82316.257791: sched_wakeup: comm=id.nn.benchmark pid=27646 prio=110 target_cpu=005
63750<...>-5340 ( 788) [005] .... 82316.257793: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
63751           <...>-27571 (-----) [004] ...1 82316.257794: tracing_mark_write: E|27550
63752           <...>-27571 (-----) [004] d..2 82316.257821: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63753          <idle>-0     (-----) [004] d..1 82316.257829: cpu_idle: state=0 cpu_id=4
63754<...>-5340 ( 788) [005] d..2 82316.257834: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27646 next_prio=110
63755          <idle>-0     (-----) [000] d.h5 82316.257844: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
63756           <...>-27646 (-----) [005] .... 82316.257844: binder_transaction_received: transaction=1570037
63757          <idle>-0     (-----) [000] d.h6 82316.257859: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
63758          <idle>-0     (-----) [003] .n.1 82316.257864: cpu_idle: state=4294967295 cpu_id=3
63759          <idle>-0     (-----) [003] d..2 82316.257874: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
63760          <idle>-0     (-----) [000] ...1 82316.257877: cpu_idle: state=4294967295 cpu_id=0
63761           <...>-27646 (-----) [005] ...1 82316.257880: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
63762          <idle>-0     (-----) [000] d..1 82316.257881: cpu_idle: state=0 cpu_id=0
63763           <...>-27646 (-----) [005] ...1 82316.257886: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
63764  crtc_event:111-322   (  322) [003] d..2 82316.257897: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63765          <idle>-0     (-----) [003] d..1 82316.257906: cpu_idle: state=0 cpu_id=3
63766           <...>-27646 (-----) [005] ...1 82316.257911: tracing_mark_write: E|27550
63767           <...>-27646 (-----) [005] ...1 82316.257915: tracing_mark_write: E|27550
63768           <...>-27646 (-----) [005] ...1 82316.257918: tracing_mark_write: E|27550
63769           <...>-27646 (-----) [005] ...1 82316.258104: tracing_mark_write: E|27550
63770           <...>-27646 (-----) [005] d..1 82316.258116: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63771           <...>-27646 (-----) [005] d..2 82316.258132: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63772          <idle>-0     (-----) [004] .n.1 82316.258137: cpu_idle: state=4294967295 cpu_id=4
63773          <idle>-0     (-----) [004] d..2 82316.258143: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
63774           <...>-27550 (-----) [004] d..2 82316.258162: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63775          <idle>-0     (-----) [004] d..1 82316.258172: cpu_idle: state=0 cpu_id=4
63776           <...>-27646 (-----) [005] d..1 82316.258222: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63777           <...>-27646 (-----) [005] d..2 82316.258232: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
63778          <idle>-0     (-----) [004] .n.1 82316.258237: cpu_idle: state=4294967295 cpu_id=4
63779          <idle>-0     (-----) [004] d..2 82316.258244: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
63780           <...>-27646 (-----) [005] d..2 82316.258269: sched_switch: prev_comm=id.nn.benchmark prev_pid=27646 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
63781           <...>-27550 (-----) [004] ...1 82316.258277: tracing_mark_write: E|27550
63782           <...>-27550 (-----) [004] ...1 82316.258281: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
63783           <...>-27550 (-----) [004] ...1 82316.258287: tracing_mark_write: E|27550
63784           <...>-27550 (-----) [004] ...1 82316.258291: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
63785          <idle>-0     (-----) [005] d..1 82316.258291: cpu_idle: state=0 cpu_id=5
63786           <...>-27550 (-----) [004] ...1 82316.258295: tracing_mark_write: E|27550
63787           <...>-27550 (-----) [004] ...1 82316.258299: tracing_mark_write: E|27550
63788           <...>-27550 (-----) [004] ...1 82316.258412: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
63789           <...>-27550 (-----) [004] d.s2 82316.258468: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
63790          <idle>-0     (-----) [002] d.s2 82316.258469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63791          <idle>-0     (-----) [001] d.s3 82316.258472: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
63792          <idle>-0     (-----) [002] dns3 82316.258487: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
63793          <idle>-0     (-----) [001] d.s4 82316.258493: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
63794          <idle>-0     (-----) [002] .n.1 82316.258499: cpu_idle: state=4294967295 cpu_id=2
63795          <idle>-0     (-----) [003] .n.1 82316.258499: cpu_idle: state=4294967295 cpu_id=3
63796          <idle>-0     (-----) [001] d.s3 82316.258501: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
63797          <idle>-0     (-----) [000] dnh2 82316.258508: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
63798          <idle>-0     (-----) [003] d..2 82316.258509: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
63799          <idle>-0     (-----) [002] d..2 82316.258512: 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
63800          <idle>-0     (-----) [000] .n.1 82316.258513: cpu_idle: state=4294967295 cpu_id=0
63801          <idle>-0     (-----) [001] dns4 82316.258516: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
63802          <idle>-0     (-----) [001] dns2 82316.258519: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
63803          <idle>-0     (-----) [000] d..2 82316.258527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
63804           <...>-27550 (-----) [004] ...1 82316.258538: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
63805  crtc_event:111-322   (  322) [003] d..2 82316.258539: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63806     rcu_preempt-7     (    7) [002] d..2 82316.258543: 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
63807           <...>-27550 (-----) [004] ...1 82316.258544: tracing_mark_write: E|27550
63808          <idle>-0     (-----) [003] d..1 82316.258548: cpu_idle: state=0 cpu_id=3
63809           <...>-27550 (-----) [004] ...1 82316.258548: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
63810           <...>-27550 (-----) [004] ...1 82316.258553: tracing_mark_write: E|27550
63811          <idle>-0     (-----) [001] dns3 82316.258555: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
63812           <...>-27550 (-----) [004] ...1 82316.258557: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
63813          <idle>-0     (-----) [003] .n.1 82316.258560: cpu_idle: state=4294967295 cpu_id=3
63814           <...>-27550 (-----) [004] ...1 82316.258561: tracing_mark_write: E|27550
63815           <...>-27550 (-----) [004] ...1 82316.258564: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
63816          <idle>-0     (-----) [003] d..2 82316.258571: 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
63817          <idle>-0     (-----) [001] .n.1 82316.258576: cpu_idle: state=4294967295 cpu_id=1
63818          <idle>-0     (-----) [002] d..1 82316.258579: cpu_idle: state=0 cpu_id=2
63819          <idle>-0     (-----) [001] d..2 82316.258586: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
63820          <idle>-0     (-----) [002] ...1 82316.258593: cpu_idle: state=4294967295 cpu_id=2
63821          <idle>-0     (-----) [002] d..1 82316.258598: cpu_idle: state=0 cpu_id=2
63822<...>-8 ( 8) [003] d..2 82316.258600: 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
63823          <idle>-0     (-----) [003] d..1 82316.258641: cpu_idle: state=0 cpu_id=3
63824  kworker/u16:15-1311  ( 1311) [000] .... 82316.258646: clk_set_rate: l3_cluster0_vote_clk 300000000
63825          <idle>-0     (-----) [005] .n.1 82316.258650: cpu_idle: state=4294967295 cpu_id=5
63826           <...>-27550 (-----) [004] ...1 82316.258650: tracing_mark_write: E|27550
63827           <...>-27550 (-----) [004] ...1 82316.258654: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
63828          <idle>-0     (-----) [005] d..2 82316.258659: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27647 next_prio=110
63829           <...>-27550 (-----) [004] d..2 82316.258672: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
63830     kworker/1:1-25249 (25249) [001] d..2 82316.258694: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
63831          <idle>-0     (-----) [001] d..1 82316.258709: cpu_idle: state=0 cpu_id=1
63832          <idle>-0     (-----) [004] d..1 82316.258710: cpu_idle: state=0 cpu_id=4
63833           <...>-27647 (-----) [005] ...1 82316.258733: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
63834           <...>-27647 (-----) [005] ...1 82316.258747: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
63835           <...>-27647 (-----) [005] ...1 82316.258750: tracing_mark_write: E|27550
63836           <...>-27647 (-----) [005] .... 82316.258771: binder_transaction: transaction=1570038 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
63837           <...>-27647 (-----) [005] .... 82316.258774: binder_transaction_alloc_buf: transaction=1570038 data_size=48 offsets_size=0
63838           <...>-27647 (-----) [005] ...2 82316.258777: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
63839           <...>-27647 (-----) [005] d..4 82316.258779: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
63840           <...>-27647 (-----) [005] dn.5 82316.258790: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
63841           <...>-27647 (-----) [005] d..2 82316.258797: sched_switch: prev_comm=id.nn.benchmark prev_pid=27647 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
63842<...>-770 ( 770) [005] .... 82316.258807: binder_transaction_received: transaction=1570038
63843<...>-770 ( 770) [005] ...1 82316.258828: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
63844<...>-770 ( 770) [005] d..2 82316.258896: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
63845  kworker/u16:15-1311  ( 1311) [000] d.h2 82316.258922: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
63846<...>-770 ( 770) [005] ...1 82316.258936: tracing_mark_write: E|770
63847  kworker/u16:15-1311  ( 1311) [000] d..2 82316.258938: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
63848<...>-770 ( 770) [005] .... 82316.258943: binder_transaction: transaction=1570039 dest_node=0 dest_proc=27550 dest_thread=27647 reply=1 flags=0x0 code=0x0
63849<...>-770 ( 770) [005] .... 82316.258947: binder_transaction_alloc_buf: transaction=1570039 data_size=168 offsets_size=32
63850<...>-770 ( 770) [005] .... 82316.258953: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
63851          <idle>-0     (-----) [001] d.s3 82316.258971: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
63852<...>-770 ( 770) [005] d..2 82316.258990: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27647 next_prio=110
63853          <idle>-0     (-----) [001] d.s4 82316.258994: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
63854          <idle>-0     (-----) [001] dns4 82316.258999: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
63855           <...>-27647 (-----) [005] .... 82316.259001: binder_transaction_received: transaction=1570039
63856          <idle>-0     (-----) [001] .n.1 82316.259007: cpu_idle: state=4294967295 cpu_id=1
63857          <idle>-0     (-----) [001] d..2 82316.259020: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
63858<...>-581 ( 571) [000] d..2 82316.259022: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63859          <idle>-0     (-----) [000] d..1 82316.259042: cpu_idle: state=0 cpu_id=0
63860           <...>-27647 (-----) [005] ...1 82316.259087: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
63861           <...>-27647 (-----) [005] ...1 82316.259092: tracing_mark_write: E|27550
63862  kworker/u16:15-1311  ( 1311) [001] d..2 82316.259104: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
63863           <...>-27647 (-----) [005] .... 82316.259106: binder_transaction: transaction=1570040 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
63864           <...>-27647 (-----) [005] .... 82316.259109: binder_transaction_alloc_buf: transaction=1570040 data_size=48 offsets_size=0
63865           <...>-27647 (-----) [005] ...2 82316.259111: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
63866           <...>-27647 (-----) [005] d..4 82316.259113: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
63867          <idle>-0     (-----) [001] d..1 82316.259118: cpu_idle: state=0 cpu_id=1
63868           <...>-27647 (-----) [005] dn.5 82316.259124: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
63869           <...>-27647 (-----) [005] d..2 82316.259130: sched_switch: prev_comm=id.nn.benchmark prev_pid=27647 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
63870<...>-770 ( 770) [005] .... 82316.259138: binder_transaction_received: transaction=1570040
63871<...>-770 ( 770) [005] ...1 82316.259156: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
63872<...>-770 ( 770) [005] d..2 82316.259214: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
63873          <idle>-0     (-----) [000] dnh2 82316.259240: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
63874          <idle>-0     (-----) [000] .n.1 82316.259247: cpu_idle: state=4294967295 cpu_id=0
63875<...>-770 ( 770) [005] ...1 82316.259248: tracing_mark_write: E|770
63876<...>-770 ( 770) [005] .... 82316.259256: binder_transaction: transaction=1570041 dest_node=0 dest_proc=27550 dest_thread=27647 reply=1 flags=0x0 code=0x0
63877<...>-770 ( 770) [005] .... 82316.259259: binder_transaction_alloc_buf: transaction=1570041 data_size=168 offsets_size=32
63878          <idle>-0     (-----) [000] d..2 82316.259259: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
63879<...>-770 ( 770) [005] .... 82316.259264: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
63880<...>-770 ( 770) [005] d..2 82316.259299: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27647 next_prio=110
63881           <...>-27647 (-----) [005] .... 82316.259309: binder_transaction_received: transaction=1570041
63882<...>-581 ( 571) [000] d..2 82316.259323: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63883          <idle>-0     (-----) [000] d..1 82316.259338: cpu_idle: state=0 cpu_id=0
63884          <idle>-0     (-----) [000] d.h3 82316.259426: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
63885          <idle>-0     (-----) [000] dnh4 82316.259441: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
63886          <idle>-0     (-----) [000] .n.1 82316.259462: cpu_idle: state=4294967295 cpu_id=0
63887          <idle>-0     (-----) [000] d..2 82316.259474: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
63888     kworker/0:1-25262 (25262) [000] d..2 82316.259481: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
63889     kworker/0:1-25262 (25262) [000] d..3 82316.259490: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
63890     kworker/0:1-25262 (25262) [000] d..3 82316.259499: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
63891          <idle>-0     (-----) [001] .n.1 82316.259505: cpu_idle: state=4294967295 cpu_id=1
63892          <idle>-0     (-----) [001] d..2 82316.259516: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
63893     kworker/0:1-25262 (25262) [000] d..2 82316.259518: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63894          <idle>-0     (-----) [000] d..1 82316.259531: cpu_idle: state=0 cpu_id=0
63895           <...>-27647 (-----) [005] ...1 82316.259581: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
63896           <...>-27647 (-----) [005] ...1 82316.259589: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
63897           <...>-27647 (-----) [005] ...1 82316.259593: tracing_mark_write: E|27550
63898     kworker/1:1-25249 (25249) [001] d..2 82316.259620: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
63899          <idle>-0     (-----) [001] d..1 82316.259632: cpu_idle: state=0 cpu_id=1
63900           <...>-27647 (-----) [005] .... 82316.259650: binder_transaction: transaction=1570042 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
63901           <...>-27647 (-----) [005] .... 82316.259654: binder_transaction_alloc_buf: transaction=1570042 data_size=556 offsets_size=104
63902           <...>-27647 (-----) [005] ...2 82316.259668: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
63903           <...>-27647 (-----) [005] d..4 82316.259670: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63904           <...>-27647 (-----) [005] dn.5 82316.259682: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63905           <...>-27647 (-----) [005] d..2 82316.259689: sched_switch: prev_comm=id.nn.benchmark prev_pid=27647 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63906          <idle>-0     (-----) [003] d.h2 82316.259689: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
63907<...>-5340 ( 788) [005] .... 82316.259698: binder_transaction_received: transaction=1570042
63908          <idle>-0     (-----) [003] dnh3 82316.259706: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
63909          <idle>-0     (-----) [003] .n.1 82316.259714: cpu_idle: state=4294967295 cpu_id=3
63910          <idle>-0     (-----) [003] d..2 82316.259724: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
63911<...>-5340 ( 788) [005] ...1 82316.259742: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
63912        DispSync-8879  ( 8858) [003] d..1 82316.259744: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
63913        DispSync-8879  ( 8858) [003] d..2 82316.259767: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
63914          <idle>-0     (-----) [002] .n.1 82316.259771: cpu_idle: state=4294967295 cpu_id=2
63915          <idle>-0     (-----) [002] d..2 82316.259782: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
63916<...>-5340 ( 788) [005] d..2 82316.259783: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
63917        DispSync-8879  ( 8858) [003] d..2 82316.259800: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63918          <idle>-0     (-----) [003] d..1 82316.259812: cpu_idle: state=0 cpu_id=3
63919<...>-5340 ( 788) [005] d..2 82316.259820: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27647 next_prio=110
63920          <idle>-0     (-----) [003] dnh2 82316.259827: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
63921          <idle>-0     (-----) [003] .n.1 82316.259833: cpu_idle: state=4294967295 cpu_id=3
63922           <...>-27647 (-----) [005] d..2 82316.259842: sched_switch: prev_comm=id.nn.benchmark prev_pid=27647 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
63923  appEventThread-8881  ( 8858) [002] d..3 82316.259842: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
63924          <idle>-0     (-----) [003] d..2 82316.259844: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
63925          <idle>-0     (-----) [005] d..1 82316.259860: cpu_idle: state=0 cpu_id=5
63926  appEventThread-8881  ( 8858) [002] d..4 82316.259864: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
63927          <idle>-0     (-----) [000] .n.1 82316.259871: cpu_idle: state=4294967295 cpu_id=0
63928          <idle>-0     (-----) [000] d..2 82316.259882: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
63929<...>-87 ( 87) [003] d..2 82316.259886: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63930  appEventThread-8881  ( 8858) [002] d.h3 82316.259894: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
63931          <idle>-0     (-----) [003] d..1 82316.259896: cpu_idle: state=0 cpu_id=3
63932  appEventThread-8881  ( 8858) [002] d.h4 82316.259933: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63933  appEventThread-8881  ( 8858) [002] d..2 82316.259958: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
63934<...>-86 ( 86) [002] d.h5 82316.259979: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63935          <idle>-0     (-----) [005] dnh2 82316.260001: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
63936          <idle>-0     (-----) [005] .n.1 82316.260005: cpu_idle: state=4294967295 cpu_id=5
63937          <idle>-0     (-----) [005] d..2 82316.260013: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
63938<...>-86 ( 86) [002] d..2 82316.260047: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63939          <idle>-0     (-----) [002] d..1 82316.260062: cpu_idle: state=0 cpu_id=2
63940<...>-5340 ( 788) [005] d..1 82316.260064: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
63941<...>-9105 ( 9105) [000] dnh1 82316.260108: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
63942<...>-9105 ( 9105) [000] d..2 82316.260122: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
63943 neuralnetworks@-13088 (  788) [000] d..2 82316.260164: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
63944<...>-5340 ( 788) [005] d..2 82316.260225: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
63945          <idle>-0     (-----) [003] dnh2 82316.260247: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
63946<...>-5340 ( 788) [005] d..2 82316.260250: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
63947          <idle>-0     (-----) [003] .n.1 82316.260253: cpu_idle: state=4294967295 cpu_id=3
63948          <idle>-0     (-----) [003] d..2 82316.260263: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
63949          <idle>-0     (-----) [005] d..1 82316.260265: cpu_idle: state=0 cpu_id=5
63950<...>-87 ( 87) [003] d..2 82316.260299: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63951          <idle>-0     (-----) [002] d.h4 82316.260301: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63952          <idle>-0     (-----) [003] d..1 82316.260309: cpu_idle: state=0 cpu_id=3
63953<...>-9105 ( 9105) [000] .... 82316.260309: binder_transaction: transaction=1570045 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
63954          <idle>-0     (-----) [002] dnh5 82316.260312: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
63955<...>-9105 ( 9105) [000] .... 82316.260316: binder_transaction_alloc_buf: transaction=1570045 data_size=80 offsets_size=0
63956          <idle>-0     (-----) [002] .n.1 82316.260320: cpu_idle: state=4294967295 cpu_id=2
63957<...>-9105 ( 9105) [000] d..4 82316.260322: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
63958          <idle>-0     (-----) [002] d..2 82316.260336: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
63959<...>-9105 ( 9105) [000] d..5 82316.260356: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
63960          <idle>-0     (-----) [001] .n.1 82316.260361: cpu_idle: state=4294967295 cpu_id=1
63961<...>-86 ( 86) [002] d..2 82316.260371: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63962          <idle>-0     (-----) [001] d..2 82316.260372: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
63963          <idle>-0     (-----) [002] d..1 82316.260382: cpu_idle: state=0 cpu_id=2
63964<...>-13083 ( 8858) [001] .... 82316.260383: binder_transaction_received: transaction=1570045
63965<...>-9105 ( 9105) [000] d..3 82316.260396: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
63966<...>-9105 ( 9105) [000] d..4 82316.260416: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
63967<...>-13083 ( 8858) [001] d..1 82316.260421: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
63968          <idle>-0     (-----) [002] .n.1 82316.260422: cpu_idle: state=4294967295 cpu_id=2
63969          <idle>-0     (-----) [002] d..2 82316.260434: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
63970<...>-13083 ( 8858) [001] d..2 82316.260454: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
63971          <idle>-0     (-----) [003] .n.1 82316.260459: cpu_idle: state=4294967295 cpu_id=3
63972          <idle>-0     (-----) [003] d..2 82316.260469: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
63973    RenderThread-9436  ( 9105) [002] d..2 82316.260489: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
63974<...>-13083 ( 8858) [001] d..2 82316.260499: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
63975          <idle>-0     (-----) [002] d..1 82316.260501: cpu_idle: state=0 cpu_id=2
63976          <idle>-0     (-----) [001] d..1 82316.260516: cpu_idle: state=0 cpu_id=1
63977  appEventThread-8881  ( 8858) [003] d..2 82316.260522: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
63978          <idle>-0     (-----) [003] d..1 82316.260533: cpu_idle: state=0 cpu_id=3
63979<...>-9105 ( 9105) [000] d..3 82316.260544: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
63980<...>-9105 ( 9105) [000] d..4 82316.260563: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
63981          <idle>-0     (-----) [002] .n.1 82316.260569: cpu_idle: state=4294967295 cpu_id=2
63982          <idle>-0     (-----) [002] d..2 82316.260581: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
63983<...>-9105 ( 9105) [000] d..2 82316.260597: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63984          <idle>-0     (-----) [000] d..1 82316.260618: cpu_idle: state=0 cpu_id=0
63985          <idle>-0     (-----) [005] ...1 82316.260633: cpu_idle: state=4294967295 cpu_id=5
63986          <idle>-0     (-----) [005] d..1 82316.260636: cpu_idle: state=0 cpu_id=5
63987    RenderThread-9436  ( 9105) [002] d..1 82316.260707: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
63988    RenderThread-9436  ( 9105) [002] d..2 82316.260726: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
63989          <idle>-0     (-----) [000] .n.1 82316.260734: cpu_idle: state=4294967295 cpu_id=0
63990          <idle>-0     (-----) [000] d..2 82316.260747: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
63991    RenderThread-9436  ( 9105) [002] .... 82316.260794: binder_transaction: transaction=1570046 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
63992    RenderThread-9436  ( 9105) [002] .... 82316.260800: binder_transaction_alloc_buf: transaction=1570046 data_size=104 offsets_size=0
63993    RenderThread-9436  ( 9105) [002] d..4 82316.260805: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
63994    RenderThread-9436  ( 9105) [002] dn.5 82316.260826: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
63995<...>-9105 ( 9105) [000] d..2 82316.260830: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
63996    RenderThread-9436  ( 9105) [002] d..2 82316.260836: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
63997<...>-13083 ( 8858) [002] .... 82316.260844: binder_transaction_received: transaction=1570046
63998          <idle>-0     (-----) [000] d..1 82316.260846: cpu_idle: state=0 cpu_id=0
63999<...>-13083 ( 8858) [002] .... 82316.260919: binder_transaction: transaction=1570047 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
64000<...>-13083 ( 8858) [002] .... 82316.260924: binder_transaction_alloc_buf: transaction=1570047 data_size=52 offsets_size=8
64001<...>-13083 ( 8858) [002] d..2 82316.260975: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
64002    RenderThread-9436  ( 9105) [002] .... 82316.260985: binder_transaction_received: transaction=1570047
64003    RenderThread-9436  ( 9105) [002] d.h3 82316.261921: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64004          <idle>-0     (-----) [005] dnh2 82316.261944: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64005          <idle>-0     (-----) [005] .n.1 82316.261948: cpu_idle: state=4294967295 cpu_id=5
64006          <idle>-0     (-----) [005] d..2 82316.261957: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64007<...>-5340 ( 788) [005] d..1 82316.262009: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64008          <idle>-0     (-----) [001] ...1 82316.262036: cpu_idle: state=4294967295 cpu_id=1
64009          <idle>-0     (-----) [000] dnh2 82316.262036: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64010          <idle>-0     (-----) [001] d..1 82316.262041: cpu_idle: state=0 cpu_id=1
64011          <idle>-0     (-----) [000] .n.1 82316.262044: cpu_idle: state=4294967295 cpu_id=0
64012          <idle>-0     (-----) [000] d..2 82316.262087: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
64013<...>-5340 ( 788) [005] ...1 82316.262101: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
64014<...>-5340 ( 788) [005] ...1 82316.262105: tracing_mark_write: E|788
64015<...>-5340 ( 788) [005] .... 82316.262122: binder_transaction: transaction=1570048 dest_node=1570043 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
64016<...>-5340 ( 788) [005] .... 82316.262124: binder_transaction_alloc_buf: transaction=1570048 data_size=60 offsets_size=0
64017<...>-5340 ( 788) [005] d..4 82316.262128: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
64018 neuralnetworks@-13088 (  788) [000] d..2 82316.262134: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64019    RenderThread-9436  ( 9105) [002] d..2 82316.262135: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
64020<...>-5340 ( 788) [005] d..5 82316.262141: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
64021          <idle>-0     (-----) [004] .n.1 82316.262146: cpu_idle: state=4294967295 cpu_id=4
64022          <idle>-0     (-----) [000] d..1 82316.262149: cpu_idle: state=0 cpu_id=0
64023          <idle>-0     (-----) [002] d..1 82316.262149: cpu_idle: state=0 cpu_id=2
64024          <idle>-0     (-----) [004] d..2 82316.262154: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
64025           <...>-27571 (-----) [004] .... 82316.262159: binder_transaction_received: transaction=1570048
64026<...>-5340 ( 788) [005] ...1 82316.262163: tracing_mark_write: E|788
64027<...>-5340 ( 788) [005] .... 82316.262169: binder_transaction: transaction=1570049 dest_node=0 dest_proc=27550 dest_thread=27647 reply=1 flags=0x0 code=0x0
64028<...>-5340 ( 788) [005] .... 82316.262171: binder_transaction_alloc_buf: transaction=1570049 data_size=8 offsets_size=0
64029<...>-5340 ( 788) [005] d..2 82316.262173: sched_waking: comm=id.nn.benchmark pid=27647 prio=110 target_cpu=005
64030           <...>-27571 (-----) [004] ...1 82316.262179: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
64031<...>-5340 ( 788) [005] d..3 82316.262180: sched_wakeup: comm=id.nn.benchmark pid=27647 prio=110 target_cpu=005
64032<...>-5340 ( 788) [005] .... 82316.262182: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
64033           <...>-27571 (-----) [004] ...1 82316.262186: tracing_mark_write: E|27550
64034          <idle>-0     (-----) [002] d.h2 82316.262213: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
64035           <...>-27571 (-----) [004] d..2 82316.262215: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64036          <idle>-0     (-----) [002] d.h3 82316.262223: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
64037          <idle>-0     (-----) [004] d..1 82316.262223: cpu_idle: state=0 cpu_id=4
64038<...>-5340 ( 788) [005] d..2 82316.262224: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27647 next_prio=110
64039          <idle>-0     (-----) [000] d.h3 82316.262227: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
64040          <idle>-0     (-----) [002] dnh3 82316.262228: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
64041           <...>-27647 (-----) [005] .... 82316.262234: binder_transaction_received: transaction=1570049
64042          <idle>-0     (-----) [002] .n.1 82316.262236: cpu_idle: state=4294967295 cpu_id=2
64043          <idle>-0     (-----) [002] d..2 82316.262246: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
64044          <idle>-0     (-----) [000] d.h4 82316.262250: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
64045          <idle>-0     (-----) [003] .n.1 82316.262255: cpu_idle: state=4294967295 cpu_id=3
64046          <idle>-0     (-----) [003] d..2 82316.262266: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
64047          <idle>-0     (-----) [000] ...1 82316.262266: cpu_idle: state=4294967295 cpu_id=0
64048          <idle>-0     (-----) [000] d..1 82316.262272: cpu_idle: state=0 cpu_id=0
64049           <...>-27647 (-----) [005] ...1 82316.262273: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
64050           <...>-27647 (-----) [005] ...1 82316.262279: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
64051           <...>-27647 (-----) [005] ...1 82316.262305: tracing_mark_write: E|27550
64052           <...>-27647 (-----) [005] ...1 82316.262309: tracing_mark_write: E|27550
64053           <...>-27647 (-----) [005] ...1 82316.262312: tracing_mark_write: E|27550
64054 kgsl_worker_thr-258   (  258) [003] d..2 82316.262318: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
64055 kgsl_worker_thr-258   (  258) [003] d..3 82316.262363: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
64056 kgsl_worker_thr-258   (  258) [003] d..2 82316.262379: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
64057  kworker/u16:15-1311  ( 1311) [003] d..2 82316.262454: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64058          <idle>-0     (-----) [003] d..1 82316.262464: cpu_idle: state=0 cpu_id=3
64059    RenderThread-9436  ( 9105) [002] .... 82316.262478: binder_transaction: transaction=1570050 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
64060    RenderThread-9436  ( 9105) [002] .... 82316.262484: binder_transaction_alloc_buf: transaction=1570050 data_size=192 offsets_size=8
64061    RenderThread-9436  ( 9105) [002] d..4 82316.262494: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
64062           <...>-27647 (-----) [005] ...1 82316.262505: tracing_mark_write: E|27550
64063    RenderThread-9436  ( 9105) [002] dn.5 82316.262510: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
64064           <...>-27647 (-----) [005] d..1 82316.262519: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64065    RenderThread-9436  ( 9105) [002] d..2 82316.262520: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
64066<...>-13083 ( 8858) [002] .... 82316.262528: binder_transaction_received: transaction=1570050
64067           <...>-27647 (-----) [005] d..2 82316.262535: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64068          <idle>-0     (-----) [004] .n.1 82316.262540: cpu_idle: state=4294967295 cpu_id=4
64069          <idle>-0     (-----) [004] d..2 82316.262547: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
64070           <...>-27550 (-----) [004] d..2 82316.262567: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64071          <idle>-0     (-----) [004] d..1 82316.262576: cpu_idle: state=0 cpu_id=4
64072           <...>-27647 (-----) [005] d..1 82316.262627: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64073           <...>-27647 (-----) [005] d..2 82316.262636: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64074          <idle>-0     (-----) [004] .n.1 82316.262641: cpu_idle: state=4294967295 cpu_id=4
64075          <idle>-0     (-----) [004] d..2 82316.262649: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
64076           <...>-27647 (-----) [005] d..2 82316.262677: sched_switch: prev_comm=id.nn.benchmark prev_pid=27647 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
64077           <...>-27550 (-----) [004] ...1 82316.262682: tracing_mark_write: E|27550
64078           <...>-27550 (-----) [004] ...1 82316.262686: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
64079<...>-13083 ( 8858) [002] .... 82316.262687: binder_transaction: transaction=1570051 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
64080           <...>-27550 (-----) [004] ...1 82316.262692: tracing_mark_write: E|27550
64081<...>-13083 ( 8858) [002] .... 82316.262692: binder_transaction_alloc_buf: transaction=1570051 data_size=68 offsets_size=0
64082           <...>-27550 (-----) [004] ...1 82316.262696: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
64083          <idle>-0     (-----) [005] d..1 82316.262698: cpu_idle: state=0 cpu_id=5
64084           <...>-27550 (-----) [004] ...1 82316.262700: tracing_mark_write: E|27550
64085           <...>-27550 (-----) [004] ...1 82316.262704: tracing_mark_write: E|27550
64086<...>-13083 ( 8858) [002] d..2 82316.262735: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
64087    RenderThread-9436  ( 9105) [002] .... 82316.262745: binder_transaction_received: transaction=1570051
64088           <...>-27550 (-----) [004] ...1 82316.262817: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
64089    RenderThread-9436  ( 9105) [002] d..2 82316.262832: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64090          <idle>-0     (-----) [002] d..1 82316.262846: cpu_idle: state=0 cpu_id=2
64091           <...>-27550 (-----) [004] ...1 82316.262874: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
64092           <...>-27550 (-----) [004] ...1 82316.262880: tracing_mark_write: E|27550
64093           <...>-27550 (-----) [004] ...1 82316.262884: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
64094           <...>-27550 (-----) [004] ...1 82316.262889: tracing_mark_write: E|27550
64095           <...>-27550 (-----) [004] ...1 82316.262893: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
64096           <...>-27550 (-----) [004] ...1 82316.262897: tracing_mark_write: E|27550
64097           <...>-27550 (-----) [004] ...1 82316.262901: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
64098          <idle>-0     (-----) [005] .n.1 82316.262996: cpu_idle: state=4294967295 cpu_id=5
64099           <...>-27550 (-----) [004] ...1 82316.262997: tracing_mark_write: E|27550
64100           <...>-27550 (-----) [004] ...1 82316.263002: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
64101          <idle>-0     (-----) [005] d..2 82316.263005: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27648 next_prio=110
64102           <...>-27550 (-----) [004] d..2 82316.263018: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64103          <idle>-0     (-----) [004] d..1 82316.263033: cpu_idle: state=0 cpu_id=4
64104           <...>-27648 (-----) [005] ...1 82316.263066: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
64105           <...>-27648 (-----) [005] ...1 82316.263079: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
64106           <...>-27648 (-----) [005] ...1 82316.263083: tracing_mark_write: E|27550
64107           <...>-27648 (-----) [005] .... 82316.263105: binder_transaction: transaction=1570052 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
64108           <...>-27648 (-----) [005] .... 82316.263109: binder_transaction_alloc_buf: transaction=1570052 data_size=48 offsets_size=0
64109           <...>-27648 (-----) [005] ...2 82316.263112: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
64110           <...>-27648 (-----) [005] d..4 82316.263115: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
64111           <...>-27648 (-----) [005] dn.5 82316.263124: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
64112           <...>-27648 (-----) [005] d..2 82316.263130: sched_switch: prev_comm=id.nn.benchmark prev_pid=27648 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
64113<...>-770 ( 770) [005] .... 82316.263140: binder_transaction_received: transaction=1570052
64114<...>-770 ( 770) [005] ...1 82316.263166: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
64115<...>-770 ( 770) [005] d..2 82316.263256: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
64116          <idle>-0     (-----) [000] dnh2 82316.263283: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
64117          <idle>-0     (-----) [000] .n.1 82316.263289: cpu_idle: state=4294967295 cpu_id=0
64118<...>-770 ( 770) [005] ...1 82316.263298: tracing_mark_write: E|770
64119          <idle>-0     (-----) [000] d..2 82316.263300: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
64120<...>-770 ( 770) [005] .... 82316.263307: binder_transaction: transaction=1570053 dest_node=0 dest_proc=27550 dest_thread=27648 reply=1 flags=0x0 code=0x0
64121<...>-770 ( 770) [005] .... 82316.263309: binder_transaction_alloc_buf: transaction=1570053 data_size=168 offsets_size=32
64122<...>-770 ( 770) [005] .... 82316.263316: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
64123<...>-770 ( 770) [005] d..2 82316.263352: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27648 next_prio=110
64124           <...>-27648 (-----) [005] .... 82316.263363: binder_transaction_received: transaction=1570053
64125<...>-581 ( 571) [000] d..2 82316.263399: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64126          <idle>-0     (-----) [000] d..1 82316.263415: cpu_idle: state=0 cpu_id=0
64127           <...>-27648 (-----) [005] ...1 82316.263438: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
64128           <...>-27648 (-----) [005] ...1 82316.263443: tracing_mark_write: E|27550
64129           <...>-27648 (-----) [005] .... 82316.263458: binder_transaction: transaction=1570054 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
64130           <...>-27648 (-----) [005] .... 82316.263460: binder_transaction_alloc_buf: transaction=1570054 data_size=48 offsets_size=0
64131           <...>-27648 (-----) [005] ...2 82316.263463: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
64132           <...>-27648 (-----) [005] d..4 82316.263465: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
64133           <...>-27648 (-----) [005] dn.5 82316.263475: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
64134           <...>-27648 (-----) [005] d..2 82316.263481: sched_switch: prev_comm=id.nn.benchmark prev_pid=27648 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
64135<...>-770 ( 770) [005] .... 82316.263489: binder_transaction_received: transaction=1570054
64136<...>-770 ( 770) [005] ...1 82316.263507: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
64137<...>-770 ( 770) [005] d..2 82316.263564: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
64138          <idle>-0     (-----) [000] dnh2 82316.263589: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
64139          <idle>-0     (-----) [000] .n.1 82316.263596: cpu_idle: state=4294967295 cpu_id=0
64140<...>-770 ( 770) [005] ...1 82316.263599: tracing_mark_write: E|770
64141<...>-770 ( 770) [005] .... 82316.263606: binder_transaction: transaction=1570055 dest_node=0 dest_proc=27550 dest_thread=27648 reply=1 flags=0x0 code=0x0
64142          <idle>-0     (-----) [000] d..2 82316.263607: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
64143<...>-770 ( 770) [005] .... 82316.263609: binder_transaction_alloc_buf: transaction=1570055 data_size=168 offsets_size=32
64144<...>-770 ( 770) [005] .... 82316.263614: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
64145<...>-770 ( 770) [005] d..2 82316.263649: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27648 next_prio=110
64146           <...>-27648 (-----) [005] .... 82316.263660: binder_transaction_received: transaction=1570055
64147<...>-581 ( 571) [000] d..2 82316.263665: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64148          <idle>-0     (-----) [000] d..1 82316.263680: cpu_idle: state=0 cpu_id=0
64149          <idle>-0     (-----) [003] d.h2 82316.263702: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
64150          <idle>-0     (-----) [003] dnh3 82316.263716: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
64151          <idle>-0     (-----) [003] .n.1 82316.263724: cpu_idle: state=4294967295 cpu_id=3
64152          <idle>-0     (-----) [003] d..2 82316.263731: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
64153        DispSync-8879  ( 8858) [003] d..1 82316.263749: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
64154        DispSync-8879  ( 8858) [003] d..2 82316.263765: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
64155          <idle>-0     (-----) [002] .n.1 82316.263772: cpu_idle: state=4294967295 cpu_id=2
64156          <idle>-0     (-----) [002] d..2 82316.263781: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
64157        DispSync-8879  ( 8858) [003] d..2 82316.263796: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64158          <idle>-0     (-----) [003] d..1 82316.263806: cpu_idle: state=0 cpu_id=3
64159   sfEventThread-8882  ( 8858) [002] d..3 82316.263822: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
64160   sfEventThread-8882  ( 8858) [002] d..4 82316.263846: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
64161          <idle>-0     (-----) [003] .n.1 82316.263852: cpu_idle: state=4294967295 cpu_id=3
64162          <idle>-0     (-----) [003] d..2 82316.263860: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
64163   sfEventThread-8882  ( 8858) [002] d..2 82316.263882: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64164          <idle>-0     (-----) [002] d..1 82316.263893: cpu_idle: state=0 cpu_id=2
64165           <...>-27648 (-----) [005] ...1 82316.263931: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
64166           <...>-27648 (-----) [005] ...1 82316.263940: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
64167           <...>-27648 (-----) [005] ...1 82316.263944: tracing_mark_write: E|27550
64168           <...>-27648 (-----) [005] .... 82316.264005: binder_transaction: transaction=1570056 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
64169           <...>-27648 (-----) [005] .... 82316.264009: binder_transaction_alloc_buf: transaction=1570056 data_size=556 offsets_size=104
64170           <...>-27648 (-----) [005] ...2 82316.264023: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
64171           <...>-27648 (-----) [005] d..4 82316.264026: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64172           <...>-27648 (-----) [005] dn.5 82316.264036: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64173           <...>-27648 (-----) [005] d..2 82316.264043: sched_switch: prev_comm=id.nn.benchmark prev_pid=27648 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64174<...>-5340 ( 788) [005] .... 82316.264053: binder_transaction_received: transaction=1570056
64175<...>-5340 ( 788) [005] ...1 82316.264100: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
64176<...>-5340 ( 788) [005] d..2 82316.264145: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
64177<...>-5340 ( 788) [005] d..2 82316.264170: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27648 next_prio=110
64178  surfaceflinger-8858  ( 8858) [003] d.h1 82316.264174: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
64179           <...>-27648 (-----) [005] d..2 82316.264192: sched_switch: prev_comm=id.nn.benchmark prev_pid=27648 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
64180          <idle>-0     (-----) [005] d..1 82316.264210: cpu_idle: state=0 cpu_id=5
64181  surfaceflinger-8858  ( 8858) [003] d..1 82316.264216: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
64182  surfaceflinger-8858  ( 8858) [003] d..2 82316.264235: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
64183          <idle>-0     (-----) [002] .n.1 82316.264242: cpu_idle: state=4294967295 cpu_id=2
64184          <idle>-0     (-----) [002] d..2 82316.264249: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
64185   sfEventThread-8882  ( 8858) [002] d..2 82316.264290: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64186          <idle>-0     (-----) [002] d..1 82316.264298: cpu_idle: state=0 cpu_id=2
64187  surfaceflinger-8858  ( 8858) [003] ...1 82316.264429: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
64188  surfaceflinger-8858  ( 8858) [003] ...1 82316.264436: tracing_mark_write: E|8858
64189  surfaceflinger-8858  ( 8858) [003] .... 82316.264491: binder_transaction: transaction=1570059 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
64190  surfaceflinger-8858  ( 8858) [003] .... 82316.264496: binder_transaction_alloc_buf: transaction=1570059 data_size=540 offsets_size=96
64191  surfaceflinger-8858  ( 8858) [003] ...2 82316.264525: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
64192  surfaceflinger-8858  ( 8858) [003] d..4 82316.264533: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
64193  surfaceflinger-8858  ( 8858) [003] d..5 82316.264553: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
64194          <idle>-0     (-----) [001] .n.1 82316.264558: cpu_idle: state=4294967295 cpu_id=1
64195          <idle>-0     (-----) [001] d..2 82316.264569: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
64196  surfaceflinger-8858  ( 8858) [003] d..2 82316.264575: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
64197 [email protected]   (  619) [001] .... 82316.264580: binder_transaction_received: transaction=1570059
64198<...>-87 ( 87) [003] d..2 82316.264624: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64199 [email protected]   (  619) [001] ...1 82316.264624: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
64200          <idle>-0     (-----) [002] d.h4 82316.264630: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64201          <idle>-0     (-----) [003] d..1 82316.264636: cpu_idle: state=0 cpu_id=3
64202          <idle>-0     (-----) [002] dnh5 82316.264650: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64203          <idle>-0     (-----) [002] .n.1 82316.264659: cpu_idle: state=4294967295 cpu_id=2
64204          <idle>-0     (-----) [002] d..2 82316.264668: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
64205<...>-86 ( 86) [002] d.h4 82316.264706: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64206          <idle>-0     (-----) [005] dnh2 82316.264727: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64207 [email protected]   (  619) [001] ...1 82316.264731: tracing_mark_write: B|619|HWCSession::PresentDisplay::
64208          <idle>-0     (-----) [005] .n.1 82316.264732: cpu_idle: state=4294967295 cpu_id=5
64209          <idle>-0     (-----) [005] d..2 82316.264740: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64210<...>-86 ( 86) [002] d..2 82316.264761: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64211          <idle>-0     (-----) [002] d..1 82316.264771: cpu_idle: state=0 cpu_id=2
64212<...>-5340 ( 788) [005] d..1 82316.264794: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64213 [email protected]   (  619) [001] d.h1 82316.264836: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
64214 [email protected]   (  619) [001] ...1 82316.264923: tracing_mark_write: B|619|HWDeviceDRM::Commit::
64215 [email protected]   (  619) [001] ...1 82316.264937: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
64216<...>-5340 ( 788) [005] d..2 82316.264955: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
64217          <idle>-0     (-----) [003] dnh2 82316.264977: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
64218<...>-5340 ( 788) [005] d..2 82316.264980: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
64219          <idle>-0     (-----) [003] .n.1 82316.264984: cpu_idle: state=4294967295 cpu_id=3
64220          <idle>-0     (-----) [003] d..2 82316.264993: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
64221          <idle>-0     (-----) [005] d..1 82316.264994: cpu_idle: state=0 cpu_id=5
64222<...>-87 ( 87) [003] d..2 82316.265030: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64223          <idle>-0     (-----) [002] d.h4 82316.265030: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64224          <idle>-0     (-----) [003] d..1 82316.265038: cpu_idle: state=0 cpu_id=3
64225          <idle>-0     (-----) [002] dnh5 82316.265041: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64226          <idle>-0     (-----) [002] .n.1 82316.265049: cpu_idle: state=4294967295 cpu_id=2
64227          <idle>-0     (-----) [002] d..2 82316.265058: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
64228<...>-86 ( 86) [002] d..2 82316.265095: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64229          <idle>-0     (-----) [002] d..1 82316.265103: cpu_idle: state=0 cpu_id=2
64230          <idle>-0     (-----) [003] d.s2 82316.265136: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
64231          <idle>-0     (-----) [002] d.s2 82316.265142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
64232          <idle>-0     (-----) [003] dns3 82316.265154: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
64233          <idle>-0     (-----) [002] dns3 82316.265158: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
64234          <idle>-0     (-----) [002] .n.1 82316.265169: cpu_idle: state=4294967295 cpu_id=2
64235          <idle>-0     (-----) [003] .n.1 82316.265175: cpu_idle: state=4294967295 cpu_id=3
64236          <idle>-0     (-----) [002] d..2 82316.265178: 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
64237          <idle>-0     (-----) [003] d..2 82316.265185: 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
64238     rcu_preempt-7     (    7) [002] d..2 82316.265191: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
64239          <idle>-0     (-----) [000] ...1 82316.265193: cpu_idle: state=4294967295 cpu_id=0
64240<...>-8 ( 8) [003] d..2 82316.265195: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
64241          <idle>-0     (-----) [000] d..1 82316.265198: cpu_idle: state=0 cpu_id=0
64242     rcu_preempt-7     (    7) [002] d..3 82316.265210: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
64243     rcu_preempt-7     (    7) [002] d..2 82316.265227: 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
64244         rcuop/4-45    (   45) [002] d..2 82316.265233: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=002
64245<...>-8 ( 8) [003] d..3 82316.265249: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
64246         rcuop/4-45    (   45) [002] d..3 82316.265256: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=002
64247         rcuop/4-45    (   45) [002] d..2 82316.265270: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
64248<...>-8 ( 8) [003] d..2 82316.265282: 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
64249<...>-46 ( 46) [002] d..2 82316.265283: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
64250<...>-46 ( 46) [002] d..3 82316.265297: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
64251<...>-46 ( 46) [002] d..2 82316.265307: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
64252          <idle>-0     (-----) [003] d..2 82316.265310: 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
64253<...>-8 ( 8) [003] d..2 82316.265333: 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
64254          <idle>-0     (-----) [003] d..1 82316.265342: cpu_idle: state=0 cpu_id=3
64255         rcuop/5-53    (   53) [002] d..2 82316.265404: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64256          <idle>-0     (-----) [002] d..1 82316.265419: cpu_idle: state=0 cpu_id=2
64257 [email protected]   (  619) [001] d..2 82316.265593: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
64258 [email protected]   (  619) [001] d..3 82316.265624: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
64259          <idle>-0     (-----) [000] .n.1 82316.265628: cpu_idle: state=4294967295 cpu_id=0
64260          <idle>-0     (-----) [000] d..2 82316.265639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
64261 [email protected]   (  619) [001] ...1 82316.265725: tracing_mark_write: E|619
64262 [email protected]   (  619) [001] ...1 82316.265732: tracing_mark_write: E|619
64263 [email protected]   (  619) [001] ...1 82316.265795: tracing_mark_write: E|619
64264 [email protected]   (  619) [001] ...1 82316.265841: tracing_mark_write: E|619
64265 [email protected]   (  619) [001] .... 82316.265856: binder_transaction: transaction=1570060 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
64266 [email protected]   (  619) [001] .... 82316.265861: binder_transaction_alloc_buf: transaction=1570060 data_size=576 offsets_size=112
64267 [email protected]   (  619) [001] d..2 82316.265881: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
64268 [email protected]   (  619) [001] d..3 82316.265899: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
64269 [email protected]   (  619) [001] .... 82316.265904: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
64270          <idle>-0     (-----) [003] .n.1 82316.265905: cpu_idle: state=4294967295 cpu_id=3
64271          <idle>-0     (-----) [003] d..2 82316.265915: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
64272  surfaceflinger-8858  ( 8858) [003] .... 82316.265924: binder_transaction_received: transaction=1570060
64273 [email protected]   (  619) [001] d..2 82316.265976: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
64274 neuralnetworks@-13088 (  788) [001] d..2 82316.266034: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
64275          <idle>-0     (-----) [001] d..1 82316.266053: cpu_idle: state=0 cpu_id=1
64276  surfaceflinger-8858  ( 8858) [003] d..2 82316.266350: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64277 crtc_commit:111-321   (  321) [000] d..2 82316.266354: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
64278          <idle>-0     (-----) [003] d..1 82316.266367: cpu_idle: state=0 cpu_id=3
64279          <idle>-0     (-----) [000] d..1 82316.266370: cpu_idle: state=0 cpu_id=0
64280          <idle>-0     (-----) [002] d.h4 82316.266686: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64281          <idle>-0     (-----) [005] dnh2 82316.266708: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64282          <idle>-0     (-----) [005] .n.1 82316.266713: cpu_idle: state=4294967295 cpu_id=5
64283          <idle>-0     (-----) [005] d..2 82316.266722: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64284          <idle>-0     (-----) [002] ...1 82316.266726: cpu_idle: state=4294967295 cpu_id=2
64285          <idle>-0     (-----) [002] d..1 82316.266731: cpu_idle: state=0 cpu_id=2
64286<...>-5340 ( 788) [005] d..1 82316.266775: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
64287          <idle>-0     (-----) [001] dnh2 82316.266803: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
64288          <idle>-0     (-----) [001] .n.1 82316.266810: cpu_idle: state=4294967295 cpu_id=1
64289          <idle>-0     (-----) [001] d..2 82316.266832: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
64290<...>-5340 ( 788) [005] ...1 82316.266866: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
64291<...>-5340 ( 788) [005] ...1 82316.266870: tracing_mark_write: E|788
64292 neuralnetworks@-13088 (  788) [001] d..2 82316.266884: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
64293<...>-5340 ( 788) [005] .... 82316.266887: binder_transaction: transaction=1570061 dest_node=1570057 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
64294<...>-5340 ( 788) [005] .... 82316.266891: binder_transaction_alloc_buf: transaction=1570061 data_size=60 offsets_size=0
64295<...>-5340 ( 788) [005] d..4 82316.266894: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
64296          <idle>-0     (-----) [001] d..1 82316.266897: cpu_idle: state=0 cpu_id=1
64297<...>-5340 ( 788) [005] d..5 82316.266906: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
64298          <idle>-0     (-----) [004] .n.1 82316.266912: cpu_idle: state=4294967295 cpu_id=4
64299          <idle>-0     (-----) [004] d..2 82316.266920: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
64300           <...>-27571 (-----) [004] .... 82316.266925: binder_transaction_received: transaction=1570061
64301<...>-5340 ( 788) [005] ...1 82316.266929: tracing_mark_write: E|788
64302<...>-5340 ( 788) [005] .... 82316.266936: binder_transaction: transaction=1570062 dest_node=0 dest_proc=27550 dest_thread=27648 reply=1 flags=0x0 code=0x0
64303<...>-5340 ( 788) [005] .... 82316.266938: binder_transaction_alloc_buf: transaction=1570062 data_size=8 offsets_size=0
64304<...>-5340 ( 788) [005] d..2 82316.266940: sched_waking: comm=id.nn.benchmark pid=27648 prio=110 target_cpu=005
64305           <...>-27571 (-----) [004] ...1 82316.266944: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
64306<...>-5340 ( 788) [005] d..3 82316.266947: sched_wakeup: comm=id.nn.benchmark pid=27648 prio=110 target_cpu=005
64307<...>-5340 ( 788) [005] .... 82316.266949: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
64308           <...>-27571 (-----) [004] ...1 82316.266950: tracing_mark_write: E|27550
64309           <...>-27571 (-----) [004] d..2 82316.266980: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64310          <idle>-0     (-----) [004] d..1 82316.266987: cpu_idle: state=0 cpu_id=4
64311<...>-5340 ( 788) [005] d..2 82316.266990: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27648 next_prio=110
64312           <...>-27648 (-----) [005] .... 82316.267000: binder_transaction_received: transaction=1570062
64313           <...>-27648 (-----) [005] ...1 82316.267039: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
64314           <...>-27648 (-----) [005] ...1 82316.267045: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
64315           <...>-27648 (-----) [005] ...1 82316.267071: tracing_mark_write: E|27550
64316           <...>-27648 (-----) [005] ...1 82316.267075: tracing_mark_write: E|27550
64317           <...>-27648 (-----) [005] ...1 82316.267079: tracing_mark_write: E|27550
64318           <...>-27648 (-----) [005] ...1 82316.267272: tracing_mark_write: E|27550
64319           <...>-27648 (-----) [005] d..1 82316.267286: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64320           <...>-27648 (-----) [005] d..2 82316.267302: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64321          <idle>-0     (-----) [004] .n.1 82316.267307: cpu_idle: state=4294967295 cpu_id=4
64322          <idle>-0     (-----) [004] d..2 82316.267314: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
64323           <...>-27550 (-----) [004] d..2 82316.267334: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64324          <idle>-0     (-----) [004] d..1 82316.267343: cpu_idle: state=0 cpu_id=4
64325           <...>-27648 (-----) [005] d..1 82316.267395: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64326           <...>-27648 (-----) [005] d..2 82316.267405: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64327          <idle>-0     (-----) [004] .n.1 82316.267409: cpu_idle: state=4294967295 cpu_id=4
64328          <idle>-0     (-----) [004] d..2 82316.267417: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
64329           <...>-27648 (-----) [005] d..2 82316.267445: sched_switch: prev_comm=id.nn.benchmark prev_pid=27648 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
64330           <...>-27550 (-----) [004] ...1 82316.267450: tracing_mark_write: E|27550
64331           <...>-27550 (-----) [004] ...1 82316.267455: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
64332           <...>-27550 (-----) [004] ...1 82316.267460: tracing_mark_write: E|27550
64333           <...>-27550 (-----) [004] ...1 82316.267464: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
64334          <idle>-0     (-----) [005] d..1 82316.267466: cpu_idle: state=0 cpu_id=5
64335           <...>-27550 (-----) [004] ...1 82316.267468: tracing_mark_write: E|27550
64336           <...>-27550 (-----) [004] ...1 82316.267473: tracing_mark_write: E|27550
64337           <...>-27550 (-----) [004] ...1 82316.267586: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
64338           <...>-27550 (-----) [004] ...1 82316.267644: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
64339           <...>-27550 (-----) [004] ...1 82316.267649: tracing_mark_write: E|27550
64340           <...>-27550 (-----) [004] ...1 82316.267653: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
64341           <...>-27550 (-----) [004] ...1 82316.267659: tracing_mark_write: E|27550
64342           <...>-27550 (-----) [004] ...1 82316.267662: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
64343           <...>-27550 (-----) [004] ...1 82316.267667: tracing_mark_write: E|27550
64344           <...>-27550 (-----) [004] ...1 82316.267670: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
64345          <idle>-0     (-----) [005] .n.1 82316.267764: cpu_idle: state=4294967295 cpu_id=5
64346           <...>-27550 (-----) [004] ...1 82316.267766: tracing_mark_write: E|27550
64347           <...>-27550 (-----) [004] ...1 82316.267770: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
64348          <idle>-0     (-----) [005] d..2 82316.267773: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27649 next_prio=110
64349           <...>-27550 (-----) [004] d..2 82316.267786: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64350          <idle>-0     (-----) [004] d..1 82316.267801: cpu_idle: state=0 cpu_id=4
64351           <...>-27649 (-----) [005] ...1 82316.267835: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
64352           <...>-27649 (-----) [005] ...1 82316.267849: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
64353           <...>-27649 (-----) [005] ...1 82316.267854: tracing_mark_write: E|27550
64354           <...>-27649 (-----) [005] .... 82316.267876: binder_transaction: transaction=1570063 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
64355           <...>-27649 (-----) [005] .... 82316.267880: binder_transaction_alloc_buf: transaction=1570063 data_size=48 offsets_size=0
64356           <...>-27649 (-----) [005] ...2 82316.267883: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
64357           <...>-27649 (-----) [005] d..4 82316.267886: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
64358           <...>-27649 (-----) [005] dn.5 82316.267897: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
64359           <...>-27649 (-----) [005] d..2 82316.267903: sched_switch: prev_comm=id.nn.benchmark prev_pid=27649 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
64360<...>-770 ( 770) [005] .... 82316.267913: binder_transaction_received: transaction=1570063
64361<...>-770 ( 770) [005] ...1 82316.267938: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
64362          <idle>-0     (-----) [000] ...1 82316.267981: cpu_idle: state=4294967295 cpu_id=0
64363          <idle>-0     (-----) [000] d..1 82316.267986: cpu_idle: state=0 cpu_id=0
64364<...>-770 ( 770) [005] d..2 82316.268020: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
64365          <idle>-0     (-----) [000] dnh2 82316.268049: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
64366          <idle>-0     (-----) [000] .n.1 82316.268055: cpu_idle: state=4294967295 cpu_id=0
64367<...>-770 ( 770) [005] ...1 82316.268062: tracing_mark_write: E|770
64368          <idle>-0     (-----) [000] d..2 82316.268066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
64369<...>-770 ( 770) [005] .... 82316.268070: binder_transaction: transaction=1570064 dest_node=0 dest_proc=27550 dest_thread=27649 reply=1 flags=0x0 code=0x0
64370<...>-770 ( 770) [005] .... 82316.268072: binder_transaction_alloc_buf: transaction=1570064 data_size=168 offsets_size=32
64371<...>-770 ( 770) [005] .... 82316.268079: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
64372<...>-770 ( 770) [005] d..2 82316.268115: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27649 next_prio=110
64373           <...>-27649 (-----) [005] .... 82316.268126: binder_transaction_received: transaction=1570064
64374<...>-581 ( 571) [000] d..2 82316.268140: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64375          <idle>-0     (-----) [000] d..1 82316.268154: cpu_idle: state=0 cpu_id=0
64376           <...>-27649 (-----) [005] ...1 82316.268199: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
64377           <...>-27649 (-----) [005] ...1 82316.268204: tracing_mark_write: E|27550
64378           <...>-27649 (-----) [005] .... 82316.268219: binder_transaction: transaction=1570065 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
64379           <...>-27649 (-----) [005] .... 82316.268221: binder_transaction_alloc_buf: transaction=1570065 data_size=48 offsets_size=0
64380           <...>-27649 (-----) [005] ...2 82316.268224: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
64381           <...>-27649 (-----) [005] d..4 82316.268226: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
64382           <...>-27649 (-----) [005] dn.5 82316.268236: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
64383           <...>-27649 (-----) [005] d..2 82316.268243: sched_switch: prev_comm=id.nn.benchmark prev_pid=27649 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
64384<...>-770 ( 770) [005] .... 82316.268251: binder_transaction_received: transaction=1570065
64385<...>-770 ( 770) [005] ...1 82316.268268: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
64386<...>-770 ( 770) [005] d..2 82316.268326: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
64387          <idle>-0     (-----) [000] dnh2 82316.268351: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
64388          <idle>-0     (-----) [000] .n.1 82316.268357: cpu_idle: state=4294967295 cpu_id=0
64389<...>-770 ( 770) [005] ...1 82316.268360: tracing_mark_write: E|770
64390<...>-770 ( 770) [005] .... 82316.268367: binder_transaction: transaction=1570066 dest_node=0 dest_proc=27550 dest_thread=27649 reply=1 flags=0x0 code=0x0
64391          <idle>-0     (-----) [000] d..2 82316.268368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
64392<...>-770 ( 770) [005] .... 82316.268369: binder_transaction_alloc_buf: transaction=1570066 data_size=168 offsets_size=32
64393<...>-770 ( 770) [005] .... 82316.268375: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
64394<...>-770 ( 770) [005] d..2 82316.268409: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27649 next_prio=110
64395           <...>-27649 (-----) [005] .... 82316.268419: binder_transaction_received: transaction=1570066
64396          <idle>-0     (-----) [001] ...1 82316.268426: cpu_idle: state=4294967295 cpu_id=1
64397<...>-581 ( 571) [000] d..2 82316.268427: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64398          <idle>-0     (-----) [001] d..1 82316.268431: cpu_idle: state=0 cpu_id=1
64399          <idle>-0     (-----) [000] d..1 82316.268441: cpu_idle: state=0 cpu_id=0
64400           <...>-27649 (-----) [005] d.s2 82316.268472: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
64401          <idle>-0     (-----) [000] dnh2 82316.268510: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
64402          <idle>-0     (-----) [000] .n.1 82316.268517: cpu_idle: state=4294967295 cpu_id=0
64403          <idle>-0     (-----) [000] d..2 82316.268530: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
64404           <...>-27649 (-----) [005] ...1 82316.268780: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
64405           <...>-27649 (-----) [005] ...1 82316.268790: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
64406           <...>-27649 (-----) [005] ...1 82316.268793: tracing_mark_write: E|27550
64407  kworker/u16:15-1311  ( 1311) [000] d..2 82316.268812: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
64408          <idle>-0     (-----) [000] d..1 82316.268828: cpu_idle: state=0 cpu_id=0
64409          <idle>-0     (-----) [001] d.s3 82316.268839: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
64410          <idle>-0     (-----) [001] d.s4 82316.268851: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
64411           <...>-27649 (-----) [005] .... 82316.268855: binder_transaction: transaction=1570067 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
64412           <...>-27649 (-----) [005] .... 82316.268858: binder_transaction_alloc_buf: transaction=1570067 data_size=556 offsets_size=104
64413          <idle>-0     (-----) [001] d.s4 82316.268861: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
64414          <idle>-0     (-----) [000] .n.1 82316.268867: cpu_idle: state=4294967295 cpu_id=0
64415          <idle>-0     (-----) [001] ...1 82316.268872: cpu_idle: state=4294967295 cpu_id=1
64416           <...>-27649 (-----) [005] ...2 82316.268872: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
64417           <...>-27649 (-----) [005] d..4 82316.268875: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64418          <idle>-0     (-----) [001] d..1 82316.268878: cpu_idle: state=0 cpu_id=1
64419          <idle>-0     (-----) [000] d..2 82316.268880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
64420           <...>-27649 (-----) [005] dn.5 82316.268887: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64421           <...>-27649 (-----) [005] d..2 82316.268894: sched_switch: prev_comm=id.nn.benchmark prev_pid=27649 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64422<...>-5340 ( 788) [005] .... 82316.268910: binder_transaction_received: transaction=1570067
64423<...>-5340 ( 788) [005] ...1 82316.268965: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
64424  kworker/u16:15-1311  ( 1311) [000] d..2 82316.268978: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64425          <idle>-0     (-----) [000] d..1 82316.268991: cpu_idle: state=0 cpu_id=0
64426<...>-5340 ( 788) [005] d..2 82316.269010: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
64427<...>-5340 ( 788) [005] d..2 82316.269047: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27649 next_prio=110
64428          <idle>-0     (-----) [000] dnh2 82316.269051: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
64429          <idle>-0     (-----) [000] .n.1 82316.269057: cpu_idle: state=4294967295 cpu_id=0
64430          <idle>-0     (-----) [000] d..2 82316.269068: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
64431           <...>-27649 (-----) [005] d..2 82316.269070: sched_switch: prev_comm=id.nn.benchmark prev_pid=27649 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
64432          <idle>-0     (-----) [005] d..1 82316.269087: cpu_idle: state=0 cpu_id=5
64433<...>-87 ( 87) [000] d..2 82316.269111: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64434          <idle>-0     (-----) [002] d.h4 82316.269119: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64435          <idle>-0     (-----) [000] d..1 82316.269125: cpu_idle: state=0 cpu_id=0
64436          <idle>-0     (-----) [002] dnh5 82316.269135: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64437          <idle>-0     (-----) [002] .n.1 82316.269144: cpu_idle: state=4294967295 cpu_id=2
64438          <idle>-0     (-----) [002] d..2 82316.269158: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
64439<...>-86 ( 86) [002] d..2 82316.269196: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64440          <idle>-0     (-----) [002] d.h5 82316.269218: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64441          <idle>-0     (-----) [005] dnh2 82316.269238: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64442          <idle>-0     (-----) [005] .n.1 82316.269242: cpu_idle: state=4294967295 cpu_id=5
64443          <idle>-0     (-----) [005] d..2 82316.269250: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64444          <idle>-0     (-----) [002] d..1 82316.269259: cpu_idle: state=0 cpu_id=2
64445<...>-5340 ( 788) [005] d..1 82316.269303: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
64446          <idle>-0     (-----) [000] dnh2 82316.269340: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64447          <idle>-0     (-----) [000] .n.1 82316.269347: cpu_idle: state=4294967295 cpu_id=0
64448          <idle>-0     (-----) [000] d..2 82316.269357: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
64449 neuralnetworks@-13088 (  788) [000] d..2 82316.269408: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64450          <idle>-0     (-----) [000] d..1 82316.269423: cpu_idle: state=0 cpu_id=0
64451<...>-5340 ( 788) [005] d..2 82316.269461: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
64452          <idle>-0     (-----) [000] dnh2 82316.269483: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
64453<...>-5340 ( 788) [005] d..2 82316.269487: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
64454          <idle>-0     (-----) [000] .n.1 82316.269490: cpu_idle: state=4294967295 cpu_id=0
64455          <idle>-0     (-----) [005] d..1 82316.269500: cpu_idle: state=0 cpu_id=5
64456          <idle>-0     (-----) [000] d..2 82316.269501: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
64457          <idle>-0     (-----) [002] d.h4 82316.269539: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64458<...>-87 ( 87) [000] d..2 82316.269539: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64459          <idle>-0     (-----) [002] dnh5 82316.269549: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64460          <idle>-0     (-----) [000] d..1 82316.269552: cpu_idle: state=0 cpu_id=0
64461          <idle>-0     (-----) [002] .n.1 82316.269558: cpu_idle: state=4294967295 cpu_id=2
64462          <idle>-0     (-----) [002] d..2 82316.269566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
64463<...>-86 ( 86) [002] d..2 82316.269599: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64464          <idle>-0     (-----) [002] d..1 82316.269608: cpu_idle: state=0 cpu_id=2
64465          <idle>-0     (-----) [000] ...1 82316.270668: cpu_idle: state=4294967295 cpu_id=0
64466          <idle>-0     (-----) [000] d..1 82316.270673: cpu_idle: state=0 cpu_id=0
64467          <idle>-0     (-----) [002] d.h4 82316.271268: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64468          <idle>-0     (-----) [005] dnh2 82316.271289: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64469          <idle>-0     (-----) [005] .n.1 82316.271293: cpu_idle: state=4294967295 cpu_id=5
64470          <idle>-0     (-----) [005] d..2 82316.271301: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64471          <idle>-0     (-----) [002] ...1 82316.271305: cpu_idle: state=4294967295 cpu_id=2
64472          <idle>-0     (-----) [002] d..1 82316.271310: cpu_idle: state=0 cpu_id=2
64473<...>-5340 ( 788) [005] d..1 82316.271348: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64474          <idle>-0     (-----) [000] dnh2 82316.271369: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64475          <idle>-0     (-----) [000] .n.1 82316.271378: cpu_idle: state=4294967295 cpu_id=0
64476          <idle>-0     (-----) [000] d..2 82316.271389: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
64477<...>-5340 ( 788) [005] ...1 82316.271438: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
64478<...>-5340 ( 788) [005] ...1 82316.271442: tracing_mark_write: E|788
64479 neuralnetworks@-13088 (  788) [000] d..2 82316.271451: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64480<...>-5340 ( 788) [005] .... 82316.271458: binder_transaction: transaction=1570070 dest_node=1570068 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
64481<...>-5340 ( 788) [005] .... 82316.271461: binder_transaction_alloc_buf: transaction=1570070 data_size=60 offsets_size=0
64482          <idle>-0     (-----) [000] d..1 82316.271464: cpu_idle: state=0 cpu_id=0
64483<...>-5340 ( 788) [005] d..4 82316.271464: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
64484<...>-5340 ( 788) [005] d..5 82316.271477: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
64485          <idle>-0     (-----) [004] .n.1 82316.271484: cpu_idle: state=4294967295 cpu_id=4
64486          <idle>-0     (-----) [004] d..2 82316.271492: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
64487           <...>-27571 (-----) [004] .... 82316.271497: binder_transaction_received: transaction=1570070
64488<...>-5340 ( 788) [005] ...1 82316.271500: tracing_mark_write: E|788
64489<...>-5340 ( 788) [005] .... 82316.271506: binder_transaction: transaction=1570071 dest_node=0 dest_proc=27550 dest_thread=27649 reply=1 flags=0x0 code=0x0
64490<...>-5340 ( 788) [005] .... 82316.271508: binder_transaction_alloc_buf: transaction=1570071 data_size=8 offsets_size=0
64491<...>-5340 ( 788) [005] d..2 82316.271510: sched_waking: comm=id.nn.benchmark pid=27649 prio=110 target_cpu=005
64492           <...>-27571 (-----) [004] ...1 82316.271515: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
64493<...>-5340 ( 788) [005] d..3 82316.271517: sched_wakeup: comm=id.nn.benchmark pid=27649 prio=110 target_cpu=005
64494<...>-5340 ( 788) [005] .... 82316.271518: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
64495           <...>-27571 (-----) [004] ...1 82316.271521: tracing_mark_write: E|27550
64496           <...>-27571 (-----) [004] d..2 82316.271550: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64497          <idle>-0     (-----) [004] d..1 82316.271558: cpu_idle: state=0 cpu_id=4
64498<...>-5340 ( 788) [005] d..2 82316.271559: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27649 next_prio=110
64499           <...>-27649 (-----) [005] .... 82316.271569: binder_transaction_received: transaction=1570071
64500           <...>-27649 (-----) [005] ...1 82316.271605: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
64501           <...>-27649 (-----) [005] ...1 82316.271611: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
64502           <...>-27649 (-----) [005] ...1 82316.271636: tracing_mark_write: E|27550
64503           <...>-27649 (-----) [005] ...1 82316.271640: tracing_mark_write: E|27550
64504           <...>-27649 (-----) [005] ...1 82316.271644: tracing_mark_write: E|27550
64505          <idle>-0     (-----) [000] d.h5 82316.271686: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
64506          <idle>-0     (-----) [000] d.h6 82316.271707: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
64507          <idle>-0     (-----) [000] d.h5 82316.271711: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
64508          <idle>-0     (-----) [003] .n.1 82316.271714: cpu_idle: state=4294967295 cpu_id=3
64509          <idle>-0     (-----) [000] dnh6 82316.271720: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
64510          <idle>-0     (-----) [003] d..2 82316.271726: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
64511          <idle>-0     (-----) [000] .n.1 82316.271765: cpu_idle: state=4294967295 cpu_id=0
64512          <idle>-0     (-----) [000] d..2 82316.271784: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
64513          <idle>-0     (-----) [002] d.s2 82316.271799: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
64514  crtc_event:111-322   (  322) [003] d..2 82316.271809: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64515          <idle>-0     (-----) [002] dns3 82316.271817: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
64516           <...>-27649 (-----) [005] ...1 82316.271863: tracing_mark_write: E|27550
64517           <...>-27649 (-----) [005] d..1 82316.271876: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64518          <idle>-0     (-----) [003] d.s3 82316.271883: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
64519          <idle>-0     (-----) [002] .n.1 82316.271886: cpu_idle: state=4294967295 cpu_id=2
64520           <...>-27649 (-----) [005] d..2 82316.271891: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64521          <idle>-0     (-----) [002] d..2 82316.271896: 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
64522          <idle>-0     (-----) [004] .n.1 82316.271897: cpu_idle: state=4294967295 cpu_id=4
64523          <idle>-0     (-----) [004] d..2 82316.271903: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
64524          <idle>-0     (-----) [003] dns4 82316.271904: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
64525          <idle>-0     (-----) [003] d..2 82316.271920: 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
64526           <...>-27550 (-----) [004] d..2 82316.271924: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64527     rcu_preempt-7     (    7) [002] d..2 82316.271925: 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
64528          <idle>-0     (-----) [004] d..1 82316.271933: cpu_idle: state=0 cpu_id=4
64529          <idle>-0     (-----) [002] d..1 82316.271939: cpu_idle: state=0 cpu_id=2
64530<...>-8 ( 8) [003] d..2 82316.271948: 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
64531          <idle>-0     (-----) [003] d..1 82316.271960: cpu_idle: state=0 cpu_id=3
64532           <...>-27649 (-----) [005] d..1 82316.271980: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64533           <...>-27649 (-----) [005] d..2 82316.271989: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64534          <idle>-0     (-----) [004] .n.1 82316.271995: cpu_idle: state=4294967295 cpu_id=4
64535          <idle>-0     (-----) [004] d..2 82316.272002: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
64536           <...>-27649 (-----) [005] d..2 82316.272028: sched_switch: prev_comm=id.nn.benchmark prev_pid=27649 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
64537           <...>-27550 (-----) [004] ...1 82316.272035: tracing_mark_write: E|27550
64538           <...>-27550 (-----) [004] ...1 82316.272040: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
64539 crtc_commit:111-321   (  321) [000] d..2 82316.272042: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
64540           <...>-27550 (-----) [004] ...1 82316.272045: tracing_mark_write: E|27550
64541          <idle>-0     (-----) [005] d..1 82316.272049: cpu_idle: state=0 cpu_id=5
64542           <...>-27550 (-----) [004] ...1 82316.272051: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
64543          <idle>-0     (-----) [000] d..1 82316.272054: cpu_idle: state=0 cpu_id=0
64544           <...>-27550 (-----) [004] ...1 82316.272055: tracing_mark_write: E|27550
64545           <...>-27550 (-----) [004] ...1 82316.272059: tracing_mark_write: E|27550
64546           <...>-27550 (-----) [004] ...1 82316.272172: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
64547           <...>-27550 (-----) [004] ...1 82316.272229: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
64548           <...>-27550 (-----) [004] ...1 82316.272235: tracing_mark_write: E|27550
64549           <...>-27550 (-----) [004] ...1 82316.272239: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
64550           <...>-27550 (-----) [004] ...1 82316.272244: tracing_mark_write: E|27550
64551           <...>-27550 (-----) [004] ...1 82316.272248: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
64552           <...>-27550 (-----) [004] ...1 82316.272252: tracing_mark_write: E|27550
64553           <...>-27550 (-----) [004] ...1 82316.272257: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
64554          <idle>-0     (-----) [005] .n.1 82316.272345: cpu_idle: state=4294967295 cpu_id=5
64555           <...>-27550 (-----) [004] ...1 82316.272347: tracing_mark_write: E|27550
64556           <...>-27550 (-----) [004] ...1 82316.272351: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
64557          <idle>-0     (-----) [005] d..2 82316.272355: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27650 next_prio=110
64558           <...>-27550 (-----) [004] d..2 82316.272369: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64559          <idle>-0     (-----) [004] d..1 82316.272383: cpu_idle: state=0 cpu_id=4
64560           <...>-27650 (-----) [005] ...1 82316.272415: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
64561           <...>-27650 (-----) [005] ...1 82316.272430: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
64562           <...>-27650 (-----) [005] ...1 82316.272434: tracing_mark_write: E|27550
64563           <...>-27650 (-----) [005] .... 82316.272454: binder_transaction: transaction=1570072 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
64564           <...>-27650 (-----) [005] .... 82316.272457: binder_transaction_alloc_buf: transaction=1570072 data_size=48 offsets_size=0
64565           <...>-27650 (-----) [005] ...2 82316.272461: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
64566           <...>-27650 (-----) [005] d..4 82316.272464: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
64567           <...>-27650 (-----) [005] dn.5 82316.272476: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
64568           <...>-27650 (-----) [005] d..2 82316.272482: sched_switch: prev_comm=id.nn.benchmark prev_pid=27650 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
64569<...>-770 ( 770) [005] .... 82316.272493: binder_transaction_received: transaction=1570072
64570<...>-770 ( 770) [005] ...1 82316.272516: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
64571<...>-770 ( 770) [005] d..2 82316.272591: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
64572          <idle>-0     (-----) [000] dnh2 82316.272622: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
64573          <idle>-0     (-----) [000] .n.1 82316.272628: cpu_idle: state=4294967295 cpu_id=0
64574<...>-770 ( 770) [005] ...1 82316.272633: tracing_mark_write: E|770
64575          <idle>-0     (-----) [000] d..2 82316.272636: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
64576<...>-770 ( 770) [005] .... 82316.272640: binder_transaction: transaction=1570073 dest_node=0 dest_proc=27550 dest_thread=27650 reply=1 flags=0x0 code=0x0
64577<...>-770 ( 770) [005] .... 82316.272643: binder_transaction_alloc_buf: transaction=1570073 data_size=168 offsets_size=32
64578<...>-770 ( 770) [005] .... 82316.272650: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
64579<...>-770 ( 770) [005] d..2 82316.272685: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27650 next_prio=110
64580           <...>-27650 (-----) [005] .... 82316.272696: binder_transaction_received: transaction=1570073
64581<...>-581 ( 571) [000] d..2 82316.272720: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64582          <idle>-0     (-----) [000] d..1 82316.272730: cpu_idle: state=0 cpu_id=0
64583           <...>-27650 (-----) [005] ...1 82316.272765: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
64584           <...>-27650 (-----) [005] ...1 82316.272770: tracing_mark_write: E|27550
64585           <...>-27650 (-----) [005] .... 82316.272785: binder_transaction: transaction=1570074 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
64586           <...>-27650 (-----) [005] .... 82316.272788: binder_transaction_alloc_buf: transaction=1570074 data_size=48 offsets_size=0
64587           <...>-27650 (-----) [005] ...2 82316.272790: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
64588           <...>-27650 (-----) [005] d..4 82316.272792: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
64589           <...>-27650 (-----) [005] dn.5 82316.272802: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
64590           <...>-27650 (-----) [005] d..2 82316.272808: sched_switch: prev_comm=id.nn.benchmark prev_pid=27650 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
64591<...>-770 ( 770) [005] .... 82316.272817: binder_transaction_received: transaction=1570074
64592<...>-770 ( 770) [005] ...1 82316.272833: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
64593<...>-770 ( 770) [005] d..2 82316.272893: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
64594          <idle>-0     (-----) [000] dnh2 82316.272917: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
64595          <idle>-0     (-----) [000] .n.1 82316.272924: cpu_idle: state=4294967295 cpu_id=0
64596<...>-770 ( 770) [005] ...1 82316.272927: tracing_mark_write: E|770
64597          <idle>-0     (-----) [000] d..2 82316.272932: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
64598<...>-770 ( 770) [005] .... 82316.272934: binder_transaction: transaction=1570075 dest_node=0 dest_proc=27550 dest_thread=27650 reply=1 flags=0x0 code=0x0
64599<...>-770 ( 770) [005] .... 82316.272937: binder_transaction_alloc_buf: transaction=1570075 data_size=168 offsets_size=32
64600<...>-770 ( 770) [005] .... 82316.272942: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
64601<...>-770 ( 770) [005] d..2 82316.272976: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27650 next_prio=110
64602           <...>-27650 (-----) [005] .... 82316.272986: binder_transaction_received: transaction=1570075
64603<...>-581 ( 571) [000] d..2 82316.272990: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64604          <idle>-0     (-----) [000] d..1 82316.273000: cpu_idle: state=0 cpu_id=0
64605           <...>-27650 (-----) [005] ...1 82316.273263: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
64606           <...>-27650 (-----) [005] ...1 82316.273274: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
64607           <...>-27650 (-----) [005] ...1 82316.273278: tracing_mark_write: E|27550
64608           <...>-27650 (-----) [005] .... 82316.273338: binder_transaction: transaction=1570076 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
64609           <...>-27650 (-----) [005] .... 82316.273341: binder_transaction_alloc_buf: transaction=1570076 data_size=556 offsets_size=104
64610           <...>-27650 (-----) [005] ...2 82316.273356: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
64611           <...>-27650 (-----) [005] d..4 82316.273358: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64612           <...>-27650 (-----) [005] dn.5 82316.273371: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64613           <...>-27650 (-----) [005] d..2 82316.273378: sched_switch: prev_comm=id.nn.benchmark prev_pid=27650 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64614<...>-5340 ( 788) [005] .... 82316.273388: binder_transaction_received: transaction=1570076
64615<...>-5340 ( 788) [005] ...1 82316.273433: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
64616<...>-5340 ( 788) [005] d..2 82316.273477: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
64617<...>-5340 ( 788) [005] d..2 82316.273502: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27650 next_prio=110
64618          <idle>-0     (-----) [000] dnh2 82316.273506: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
64619          <idle>-0     (-----) [000] .n.1 82316.273512: cpu_idle: state=4294967295 cpu_id=0
64620          <idle>-0     (-----) [000] d..2 82316.273520: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
64621           <...>-27650 (-----) [005] d..2 82316.273524: sched_switch: prev_comm=id.nn.benchmark prev_pid=27650 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
64622          <idle>-0     (-----) [005] d..1 82316.273542: cpu_idle: state=0 cpu_id=5
64623<...>-87 ( 87) [000] d..2 82316.273562: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64624          <idle>-0     (-----) [000] d..1 82316.273570: cpu_idle: state=0 cpu_id=0
64625          <idle>-0     (-----) [002] d.h4 82316.273574: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64626          <idle>-0     (-----) [002] dnh5 82316.273592: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64627          <idle>-0     (-----) [002] .n.1 82316.273601: cpu_idle: state=4294967295 cpu_id=2
64628          <idle>-0     (-----) [002] d..2 82316.273613: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
64629<...>-86 ( 86) [002] d..2 82316.273648: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64630          <idle>-0     (-----) [002] d.h5 82316.273670: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64631          <idle>-0     (-----) [005] dnh2 82316.273691: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64632          <idle>-0     (-----) [005] .n.1 82316.273696: cpu_idle: state=4294967295 cpu_id=5
64633          <idle>-0     (-----) [005] d..2 82316.273704: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64634          <idle>-0     (-----) [002] d..1 82316.273716: cpu_idle: state=0 cpu_id=2
64635<...>-5340 ( 788) [005] d..1 82316.273758: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64636          <idle>-0     (-----) [000] dnh2 82316.273784: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64637          <idle>-0     (-----) [000] .n.1 82316.273790: cpu_idle: state=4294967295 cpu_id=0
64638          <idle>-0     (-----) [000] d..2 82316.273798: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
64639 neuralnetworks@-13088 (  788) [000] d..2 82316.273844: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64640          <idle>-0     (-----) [000] d..1 82316.273853: cpu_idle: state=0 cpu_id=0
64641<...>-5340 ( 788) [005] d..2 82316.273906: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
64642          <idle>-0     (-----) [000] dnh2 82316.273929: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
64643<...>-5340 ( 788) [005] d..2 82316.273933: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
64644          <idle>-0     (-----) [000] .n.1 82316.273934: cpu_idle: state=4294967295 cpu_id=0
64645          <idle>-0     (-----) [000] d..2 82316.273942: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
64646          <idle>-0     (-----) [005] d..1 82316.273956: cpu_idle: state=0 cpu_id=5
64647<...>-87 ( 87) [000] d.h6 82316.274030: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
64648<...>-87 ( 87) [000] d.h7 82316.274057: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
64649          <idle>-0     (-----) [001] .n.1 82316.274061: cpu_idle: state=4294967295 cpu_id=1
64650          <idle>-0     (-----) [001] d..2 82316.274072: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
64651          <idle>-0     (-----) [002] d.h4 82316.274102: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64652<...>-87 ( 87) [000] d..2 82316.274105: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64653          <idle>-0     (-----) [002] dnh5 82316.274113: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64654          <idle>-0     (-----) [000] d..1 82316.274114: cpu_idle: state=0 cpu_id=0
64655          <idle>-0     (-----) [002] .n.1 82316.274121: cpu_idle: state=4294967295 cpu_id=2
64656          <idle>-0     (-----) [002] d..2 82316.274133: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
64657 crtc_commit:111-321   (  321) [001] d..2 82316.274157: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
64658<...>-86 ( 86) [002] d..2 82316.274166: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64659          <idle>-0     (-----) [001] d..1 82316.274170: cpu_idle: state=0 cpu_id=1
64660          <idle>-0     (-----) [002] d..1 82316.274176: cpu_idle: state=0 cpu_id=2
64661          <idle>-0     (-----) [005] ...1 82316.274279: cpu_idle: state=4294967295 cpu_id=5
64662          <idle>-0     (-----) [005] d..1 82316.274282: cpu_idle: state=0 cpu_id=5
64663          <idle>-0     (-----) [000] d.h5 82316.274312: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
64664          <idle>-0     (-----) [000] d.h6 82316.274329: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
64665          <idle>-0     (-----) [003] .n.1 82316.274335: cpu_idle: state=4294967295 cpu_id=3
64666          <idle>-0     (-----) [003] d..2 82316.274345: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
64667          <idle>-0     (-----) [000] ...1 82316.274345: cpu_idle: state=4294967295 cpu_id=0
64668          <idle>-0     (-----) [000] d..1 82316.274350: cpu_idle: state=0 cpu_id=0
64669  crtc_event:111-322   (  322) [003] d..2 82316.274371: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64670          <idle>-0     (-----) [003] d..1 82316.274380: cpu_idle: state=0 cpu_id=3
64671          <idle>-0     (-----) [000] d.s3 82316.275138: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
64672          <idle>-0     (-----) [000] d.s4 82316.275153: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
64673          <idle>-0     (-----) [003] .n.1 82316.275158: cpu_idle: state=4294967295 cpu_id=3
64674          <idle>-0     (-----) [003] d..2 82316.275169: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
64675          <idle>-0     (-----) [000] ...1 82316.275180: cpu_idle: state=4294967295 cpu_id=0
64676          <idle>-0     (-----) [000] d..1 82316.275188: cpu_idle: state=0 cpu_id=0
64677  crtc_event:111-322   (  322) [003] d..2 82316.275201: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64678          <idle>-0     (-----) [003] d..1 82316.275208: cpu_idle: state=0 cpu_id=3
64679          <idle>-0     (-----) [002] d.h4 82316.275795: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64680          <idle>-0     (-----) [005] dnh2 82316.275816: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64681          <idle>-0     (-----) [005] .n.1 82316.275820: cpu_idle: state=4294967295 cpu_id=5
64682          <idle>-0     (-----) [005] d..2 82316.275829: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64683          <idle>-0     (-----) [002] ...1 82316.275833: cpu_idle: state=4294967295 cpu_id=2
64684          <idle>-0     (-----) [002] d..1 82316.275838: cpu_idle: state=0 cpu_id=2
64685<...>-5340 ( 788) [005] d..1 82316.275879: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64686          <idle>-0     (-----) [000] dnh2 82316.275909: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64687          <idle>-0     (-----) [000] .n.1 82316.275916: cpu_idle: state=4294967295 cpu_id=0
64688          <idle>-0     (-----) [000] d..2 82316.275936: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
64689<...>-5340 ( 788) [005] ...1 82316.275973: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
64690<...>-5340 ( 788) [005] ...1 82316.275977: tracing_mark_write: E|788
64691<...>-5340 ( 788) [005] .... 82316.275992: binder_transaction: transaction=1570079 dest_node=1570077 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
64692<...>-5340 ( 788) [005] .... 82316.275994: binder_transaction_alloc_buf: transaction=1570079 data_size=60 offsets_size=0
64693 neuralnetworks@-13088 (  788) [000] d..2 82316.275994: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64694<...>-5340 ( 788) [005] d..4 82316.275997: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
64695          <idle>-0     (-----) [000] d..1 82316.276008: cpu_idle: state=0 cpu_id=0
64696<...>-5340 ( 788) [005] d..5 82316.276010: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
64697          <idle>-0     (-----) [004] .n.1 82316.276017: cpu_idle: state=4294967295 cpu_id=4
64698          <idle>-0     (-----) [004] d..2 82316.276025: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
64699           <...>-27571 (-----) [004] .... 82316.276030: binder_transaction_received: transaction=1570079
64700<...>-5340 ( 788) [005] ...1 82316.276033: tracing_mark_write: E|788
64701<...>-5340 ( 788) [005] .... 82316.276039: binder_transaction: transaction=1570080 dest_node=0 dest_proc=27550 dest_thread=27650 reply=1 flags=0x0 code=0x0
64702<...>-5340 ( 788) [005] .... 82316.276041: binder_transaction_alloc_buf: transaction=1570080 data_size=8 offsets_size=0
64703<...>-5340 ( 788) [005] d..2 82316.276042: sched_waking: comm=id.nn.benchmark pid=27650 prio=110 target_cpu=005
64704           <...>-27571 (-----) [004] ...1 82316.276049: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
64705<...>-5340 ( 788) [005] d..3 82316.276050: sched_wakeup: comm=id.nn.benchmark pid=27650 prio=110 target_cpu=005
64706<...>-5340 ( 788) [005] .... 82316.276051: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
64707           <...>-27571 (-----) [004] ...1 82316.276055: tracing_mark_write: E|27550
64708           <...>-27571 (-----) [004] d..2 82316.276084: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64709          <idle>-0     (-----) [004] d..1 82316.276091: cpu_idle: state=0 cpu_id=4
64710<...>-5340 ( 788) [005] d..2 82316.276092: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27650 next_prio=110
64711           <...>-27650 (-----) [005] .... 82316.276102: binder_transaction_received: transaction=1570080
64712           <...>-27650 (-----) [005] ...1 82316.276139: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
64713           <...>-27650 (-----) [005] ...1 82316.276145: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
64714          <idle>-0     (-----) [003] d.h2 82316.276155: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
64715           <...>-27650 (-----) [005] ...1 82316.276171: tracing_mark_write: E|27550
64716          <idle>-0     (-----) [003] dnh3 82316.276171: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
64717           <...>-27650 (-----) [005] ...1 82316.276174: tracing_mark_write: E|27550
64718           <...>-27650 (-----) [005] ...1 82316.276178: tracing_mark_write: E|27550
64719          <idle>-0     (-----) [003] .n.1 82316.276179: cpu_idle: state=4294967295 cpu_id=3
64720          <idle>-0     (-----) [003] d..2 82316.276186: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
64721        DispSync-8879  ( 8858) [003] d..1 82316.276209: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
64722        DispSync-8879  ( 8858) [003] d..2 82316.276231: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
64723          <idle>-0     (-----) [002] .n.1 82316.276236: cpu_idle: state=4294967295 cpu_id=2
64724          <idle>-0     (-----) [002] d..2 82316.276249: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
64725        DispSync-8879  ( 8858) [003] d..2 82316.276262: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64726          <idle>-0     (-----) [003] d..1 82316.276301: cpu_idle: state=0 cpu_id=3
64727  appEventThread-8881  ( 8858) [002] d..3 82316.276339: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
64728  appEventThread-8881  ( 8858) [002] d..4 82316.276360: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
64729           <...>-27650 (-----) [005] ...1 82316.276362: tracing_mark_write: E|27550
64730          <idle>-0     (-----) [000] .n.1 82316.276366: cpu_idle: state=4294967295 cpu_id=0
64731           <...>-27650 (-----) [005] d..1 82316.276374: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64732          <idle>-0     (-----) [000] d..2 82316.276378: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
64733           <...>-27650 (-----) [005] d..2 82316.276390: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64734          <idle>-0     (-----) [004] .n.1 82316.276395: cpu_idle: state=4294967295 cpu_id=4
64735          <idle>-0     (-----) [004] d..2 82316.276401: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
64736  appEventThread-8881  ( 8858) [002] d..2 82316.276403: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64737          <idle>-0     (-----) [002] d..1 82316.276413: cpu_idle: state=0 cpu_id=2
64738           <...>-27550 (-----) [004] d..2 82316.276420: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64739          <idle>-0     (-----) [004] d..1 82316.276430: cpu_idle: state=0 cpu_id=4
64740           <...>-27650 (-----) [005] d..1 82316.276474: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64741           <...>-27650 (-----) [005] d..2 82316.276483: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
64742          <idle>-0     (-----) [004] .n.1 82316.276489: cpu_idle: state=4294967295 cpu_id=4
64743          <idle>-0     (-----) [004] d..2 82316.276496: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
64744           <...>-27650 (-----) [005] d..2 82316.276521: sched_switch: prev_comm=id.nn.benchmark prev_pid=27650 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
64745           <...>-27550 (-----) [004] ...1 82316.276528: tracing_mark_write: E|27550
64746           <...>-27550 (-----) [004] ...1 82316.276533: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
64747           <...>-27550 (-----) [004] ...1 82316.276539: tracing_mark_write: E|27550
64748          <idle>-0     (-----) [005] d..1 82316.276541: cpu_idle: state=0 cpu_id=5
64749           <...>-27550 (-----) [004] ...1 82316.276542: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
64750           <...>-27550 (-----) [004] ...1 82316.276546: tracing_mark_write: E|27550
64751           <...>-27550 (-----) [004] ...1 82316.276550: tracing_mark_write: E|27550
64752           <...>-27550 (-----) [004] ...1 82316.276662: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
64753<...>-9105 ( 9105) [000] .... 82316.276706: binder_transaction: transaction=1570081 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
64754<...>-9105 ( 9105) [000] .... 82316.276713: binder_transaction_alloc_buf: transaction=1570081 data_size=80 offsets_size=0
64755           <...>-27550 (-----) [004] ...1 82316.276719: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
64756<...>-9105 ( 9105) [000] d..4 82316.276719: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
64757           <...>-27550 (-----) [004] ...1 82316.276724: tracing_mark_write: E|27550
64758           <...>-27550 (-----) [004] ...1 82316.276727: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
64759           <...>-27550 (-----) [004] ...1 82316.276732: tracing_mark_write: E|27550
64760           <...>-27550 (-----) [004] ...1 82316.276736: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
64761           <...>-27550 (-----) [004] ...1 82316.276740: tracing_mark_write: E|27550
64762           <...>-27550 (-----) [004] ...1 82316.276743: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
64763<...>-9105 ( 9105) [000] d..5 82316.276753: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
64764          <idle>-0     (-----) [001] .n.1 82316.276758: cpu_idle: state=4294967295 cpu_id=1
64765          <idle>-0     (-----) [001] d..2 82316.276772: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
64766<...>-13083 ( 8858) [001] .... 82316.276782: binder_transaction_received: transaction=1570081
64767<...>-9105 ( 9105) [000] d..3 82316.276793: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
64768<...>-9105 ( 9105) [000] d..4 82316.276813: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
64769          <idle>-0     (-----) [002] .n.1 82316.276818: cpu_idle: state=4294967295 cpu_id=2
64770<...>-13083 ( 8858) [001] d..1 82316.276822: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
64771          <idle>-0     (-----) [002] d..2 82316.276828: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
64772          <idle>-0     (-----) [005] .n.1 82316.276830: cpu_idle: state=4294967295 cpu_id=5
64773           <...>-27550 (-----) [004] ...1 82316.276832: tracing_mark_write: E|27550
64774           <...>-27550 (-----) [004] ...1 82316.276836: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
64775          <idle>-0     (-----) [005] d..2 82316.276839: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27651 next_prio=110
64776           <...>-27550 (-----) [004] d..2 82316.276853: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
64777<...>-13083 ( 8858) [001] d..2 82316.276858: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
64778          <idle>-0     (-----) [003] .n.1 82316.276864: cpu_idle: state=4294967295 cpu_id=3
64779          <idle>-0     (-----) [004] d..1 82316.276867: cpu_idle: state=0 cpu_id=4
64780          <idle>-0     (-----) [003] d..2 82316.276872: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
64781    RenderThread-9436  ( 9105) [002] d..2 82316.276884: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64782          <idle>-0     (-----) [002] d..1 82316.276893: cpu_idle: state=0 cpu_id=2
64783           <...>-27651 (-----) [005] ...1 82316.276899: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
64784<...>-13083 ( 8858) [001] d..2 82316.276906: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
64785           <...>-27651 (-----) [005] ...1 82316.276913: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
64786           <...>-27651 (-----) [005] ...1 82316.276916: tracing_mark_write: E|27550
64787          <idle>-0     (-----) [001] d..1 82316.276922: cpu_idle: state=0 cpu_id=1
64788  appEventThread-8881  ( 8858) [003] d..2 82316.276927: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64789          <idle>-0     (-----) [003] d..1 82316.276936: cpu_idle: state=0 cpu_id=3
64790           <...>-27651 (-----) [005] .... 82316.276936: binder_transaction: transaction=1570082 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
64791<...>-9105 ( 9105) [000] d..3 82316.276938: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
64792           <...>-27651 (-----) [005] .... 82316.276939: binder_transaction_alloc_buf: transaction=1570082 data_size=48 offsets_size=0
64793           <...>-27651 (-----) [005] ...2 82316.276943: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
64794           <...>-27651 (-----) [005] d..4 82316.276945: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
64795           <...>-27651 (-----) [005] dn.5 82316.276955: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
64796<...>-9105 ( 9105) [000] d..4 82316.276957: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
64797          <idle>-0     (-----) [002] .n.1 82316.276962: cpu_idle: state=4294967295 cpu_id=2
64798           <...>-27651 (-----) [005] d..2 82316.276963: sched_switch: prev_comm=id.nn.benchmark prev_pid=27651 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
64799          <idle>-0     (-----) [002] d..2 82316.276971: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
64800<...>-770 ( 770) [005] .... 82316.276973: binder_transaction_received: transaction=1570082
64801<...>-9105 ( 9105) [000] d..2 82316.276992: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64802<...>-770 ( 770) [005] ...1 82316.276995: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
64803          <idle>-0     (-----) [000] d..1 82316.277012: cpu_idle: state=0 cpu_id=0
64804<...>-770 ( 770) [005] d..2 82316.277065: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
64805    RenderThread-9436  ( 9105) [002] d..1 82316.277091: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
64806    RenderThread-9436  ( 9105) [002] d..2 82316.277109: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
64807          <idle>-0     (-----) [000] .n.1 82316.277117: cpu_idle: state=4294967295 cpu_id=0
64808    RenderThread-9436  ( 9105) [002] d.h2 82316.277121: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
64809<...>-770 ( 770) [005] ...1 82316.277121: tracing_mark_write: E|770
64810<...>-770 ( 770) [005] .... 82316.277129: binder_transaction: transaction=1570083 dest_node=0 dest_proc=27550 dest_thread=27651 reply=1 flags=0x0 code=0x0
64811          <idle>-0     (-----) [000] d..2 82316.277131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
64812<...>-770 ( 770) [005] .... 82316.277132: binder_transaction_alloc_buf: transaction=1570083 data_size=168 offsets_size=32
64813<...>-770 ( 770) [005] .... 82316.277139: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
64814<...>-770 ( 770) [005] d..2 82316.277175: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27651 next_prio=110
64815           <...>-27651 (-----) [005] .... 82316.277186: binder_transaction_received: transaction=1570083
64816    RenderThread-9436  ( 9105) [002] .... 82316.277201: binder_transaction: transaction=1570084 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
64817    RenderThread-9436  ( 9105) [002] .... 82316.277206: binder_transaction_alloc_buf: transaction=1570084 data_size=104 offsets_size=0
64818    RenderThread-9436  ( 9105) [002] d..4 82316.277212: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
64819<...>-9105 ( 9105) [000] d..2 82316.277220: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64820    RenderThread-9436  ( 9105) [002] d..5 82316.277229: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
64821          <idle>-0     (-----) [001] .n.1 82316.277235: cpu_idle: state=4294967295 cpu_id=1
64822          <idle>-0     (-----) [000] d..1 82316.277237: cpu_idle: state=0 cpu_id=0
64823    RenderThread-9436  ( 9105) [002] d..2 82316.277246: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
64824          <idle>-0     (-----) [001] d..2 82316.277248: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
64825<...>-13083 ( 8858) [001] .... 82316.277255: binder_transaction_received: transaction=1570084
64826           <...>-27651 (-----) [005] ...1 82316.277257: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
64827           <...>-27651 (-----) [005] ...1 82316.277262: tracing_mark_write: E|27550
64828           <...>-27651 (-----) [005] .... 82316.277276: binder_transaction: transaction=1570085 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
64829           <...>-27651 (-----) [005] .... 82316.277280: binder_transaction_alloc_buf: transaction=1570085 data_size=48 offsets_size=0
64830           <...>-27651 (-----) [005] ...2 82316.277282: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
64831           <...>-27651 (-----) [005] d..4 82316.277285: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
64832           <...>-27651 (-----) [005] dn.5 82316.277295: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
64833           <...>-27651 (-----) [005] d..2 82316.277302: sched_switch: prev_comm=id.nn.benchmark prev_pid=27651 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
64834<...>-770 ( 770) [005] .... 82316.277310: binder_transaction_received: transaction=1570085
64835<...>-13083 ( 8858) [001] .... 82316.277323: binder_transaction: transaction=1570086 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
64836<...>-770 ( 770) [005] ...1 82316.277327: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
64837<...>-13083 ( 8858) [001] .... 82316.277328: binder_transaction_alloc_buf: transaction=1570086 data_size=52 offsets_size=8
64838<...>-13083 ( 8858) [001] d..2 82316.277339: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
64839<...>-13083 ( 8858) [001] d..3 82316.277362: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
64840<...>-13083 ( 8858) [001] d..2 82316.277405: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
64841<...>-770 ( 770) [005] ...1 82316.277407: tracing_mark_write: E|770
64842    RenderThread-9436  ( 9105) [001] .... 82316.277414: binder_transaction_received: transaction=1570086
64843<...>-770 ( 770) [005] .... 82316.277414: binder_transaction: transaction=1570087 dest_node=0 dest_proc=27550 dest_thread=27651 reply=1 flags=0x0 code=0x0
64844<...>-770 ( 770) [005] .... 82316.277417: binder_transaction_alloc_buf: transaction=1570087 data_size=168 offsets_size=32
64845<...>-770 ( 770) [005] .... 82316.277423: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
64846<...>-770 ( 770) [005] d..2 82316.277459: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27651 next_prio=110
64847           <...>-27651 (-----) [005] .... 82316.277470: binder_transaction_received: transaction=1570087
64848           <...>-27651 (-----) [005] ...1 82316.277742: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
64849           <...>-27651 (-----) [005] ...1 82316.277752: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
64850           <...>-27651 (-----) [005] ...1 82316.277755: tracing_mark_write: E|27550
64851           <...>-27651 (-----) [005] .... 82316.277814: binder_transaction: transaction=1570088 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
64852           <...>-27651 (-----) [005] .... 82316.277817: binder_transaction_alloc_buf: transaction=1570088 data_size=556 offsets_size=104
64853           <...>-27651 (-----) [005] ...2 82316.277831: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
64854           <...>-27651 (-----) [005] d..4 82316.277833: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64855           <...>-27651 (-----) [005] dn.5 82316.277844: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64856           <...>-27651 (-----) [005] d..2 82316.277851: sched_switch: prev_comm=id.nn.benchmark prev_pid=27651 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64857<...>-5340 ( 788) [005] .... 82316.277861: binder_transaction_received: transaction=1570088
64858<...>-5340 ( 788) [005] ...1 82316.277907: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
64859<...>-5340 ( 788) [005] d..2 82316.277951: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
64860<...>-5340 ( 788) [005] d..2 82316.277990: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27651 next_prio=110
64861<...>-581 ( 571) [002] dnh1 82316.277997: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
64862<...>-581 ( 571) [002] d..2 82316.278011: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
64863           <...>-27651 (-----) [005] d..2 82316.278012: sched_switch: prev_comm=id.nn.benchmark prev_pid=27651 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
64864          <idle>-0     (-----) [005] d..1 82316.278030: cpu_idle: state=0 cpu_id=5
64865<...>-87 ( 87) [002] d..2 82316.278046: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
64866<...>-581 ( 571) [002] d.h5 82316.278064: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64867<...>-581 ( 571) [002] dnh6 82316.278084: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64868<...>-581 ( 571) [002] d..2 82316.278097: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
64869<...>-86 ( 86) [002] d..2 82316.278124: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
64870<...>-581 ( 571) [002] d.h5 82316.278144: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64871          <idle>-0     (-----) [005] dnh2 82316.278166: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64872          <idle>-0     (-----) [005] .n.1 82316.278171: cpu_idle: state=4294967295 cpu_id=5
64873          <idle>-0     (-----) [005] d..2 82316.278179: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64874<...>-5340 ( 788) [005] d..1 82316.278232: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
64875<...>-581 ( 571) [002] dnh1 82316.278269: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
64876<...>-581 ( 571) [002] d..2 82316.278279: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
64877 neuralnetworks@-13088 (  788) [002] d..2 82316.278326: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
64878<...>-5340 ( 788) [005] d..2 82316.278391: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
64879<...>-581 ( 571) [002] dnh1 82316.278414: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
64880<...>-5340 ( 788) [005] d..2 82316.278418: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
64881<...>-581 ( 571) [002] d..2 82316.278424: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
64882          <idle>-0     (-----) [005] d..1 82316.278433: cpu_idle: state=0 cpu_id=5
64883          <idle>-0     (-----) [003] d.s2 82316.278473: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
64884          <idle>-0     (-----) [003] dns3 82316.278492: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
64885<...>-87 ( 87) [002] d.H4 82316.278494: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
64886          <idle>-0     (-----) [003] dns3 82316.278499: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
64887<...>-87 ( 87) [002] d.H5 82316.278539: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
64888          <idle>-0     (-----) [003] dns4 82316.278546: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
64889<...>-87 ( 87) [002] d.s2 82316.278554: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
64890    RenderThread-9436  ( 9105) [001] d..2 82316.278558: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
64891          <idle>-0     (-----) [003] .n.1 82316.278568: cpu_idle: state=4294967295 cpu_id=3
64892<...>-87 ( 87) [002] d.s3 82316.278578: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
64893          <idle>-0     (-----) [003] d..2 82316.278579: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
64894          <idle>-0     (-----) [001] d..2 82316.278587: 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
64895     rcu_preempt-7     (    7) [001] d..2 82316.278602: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
64896<...>-87 ( 87) [002] d..2 82316.278611: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
64897<...>-86 ( 86) [003] d..2 82316.278612: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
64898<...>-8 ( 8) [003] d..2 82316.278621: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
64899          <idle>-0     (-----) [000] d.h3 82316.278629: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
64900          <idle>-0     (-----) [000] dnh4 82316.278663: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
64901     rcu_preempt-7     (    7) [001] d..3 82316.278665: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
64902<...>-8 ( 8) [003] d..3 82316.278674: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
64903     rcu_preempt-7     (    7) [001] d.h2 82316.278682: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
64904          <idle>-0     (-----) [000] .n.1 82316.278688: cpu_idle: state=4294967295 cpu_id=0
64905<...>-8 ( 8) [003] d..2 82316.278689: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
64906          <idle>-0     (-----) [000] d..2 82316.278700: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
64907     rcu_preempt-7     (    7) [001] d..2 82316.278762: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
64908          <idle>-0     (-----) [006] d.h2 82316.278762: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
64909          <idle>-0     (-----) [006] dnh2 82316.278766: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
64910          <idle>-0     (-----) [005] ...1 82316.278769: cpu_idle: state=4294967295 cpu_id=5
64911          <idle>-0     (-----) [006] .n.1 82316.278771: cpu_idle: state=4294967295 cpu_id=6
64912          <idle>-0     (-----) [005] d..1 82316.278772: cpu_idle: state=0 cpu_id=5
64913 kgsl_worker_thr-258   (  258) [000] d..2 82316.278778: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
64914          <idle>-0     (-----) [006] d..2 82316.278780: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
64915    RenderThread-9436  ( 9105) [006] d..1 82316.278798: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
64916     rcu_preempt-7     (    7) [001] d..3 82316.278802: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
64917          <idle>-0     (-----) [000] dnh3 82316.278819: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
64918          <idle>-0     (-----) [000] d..2 82316.278831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
64919     rcu_preempt-7     (    7) [001] d..2 82316.278833: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
64920<...>-581 ( 571) [002] d..2 82316.278840: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64921          <idle>-0     (-----) [002] d..1 82316.278862: cpu_idle: state=0 cpu_id=2
64922<...>-46 ( 46) [001] d..2 82316.278874: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
64923          <idle>-0     (-----) [002] ...1 82316.278883: cpu_idle: state=4294967295 cpu_id=2
64924 kgsl_worker_thr-258   (  258) [000] d..2 82316.278884: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
64925          <idle>-0     (-----) [002] d..1 82316.278888: cpu_idle: state=0 cpu_id=2
64926<...>-46 ( 46) [001] d..3 82316.278910: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
64927<...>-46 ( 46) [001] d..2 82316.278922: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
64928 kgsl_worker_thr-258   (  258) [000] d..3 82316.278929: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
64929    RenderThread-9436  ( 9105) [006] .... 82316.278939: binder_transaction: transaction=1570091 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
64930    RenderThread-9436  ( 9105) [006] .... 82316.278943: binder_transaction_alloc_buf: transaction=1570091 data_size=192 offsets_size=8
64931 kgsl_worker_thr-258   (  258) [000] d..2 82316.278946: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
64932    RenderThread-9436  ( 9105) [006] d..4 82316.278949: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
64933         rcuop/2-29    (   29) [000] d..2 82316.278952: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
64934         rcuop/0-10    (   10) [001] d..2 82316.278954: 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
64935          <idle>-0     (-----) [001] d..1 82316.278973: cpu_idle: state=0 cpu_id=1
64936    RenderThread-9436  ( 9105) [006] dn.5 82316.278977: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
64937         rcuop/2-29    (   29) [000] d..3 82316.278981: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
64938          <idle>-0     (-----) [001] .n.1 82316.278987: cpu_idle: state=4294967295 cpu_id=1
64939    RenderThread-9436  ( 9105) [006] d..2 82316.279013: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
64940          <idle>-0     (-----) [001] d..2 82316.279013: 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
64941         rcuop/2-29    (   29) [000] d..2 82316.279017: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
64942<...>-13083 ( 8858) [006] .... 82316.279022: binder_transaction_received: transaction=1570091
64943         rcuop/3-37    (   37) [001] d..2 82316.279041: 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
64944          <idle>-0     (-----) [001] d..1 82316.279051: cpu_idle: state=0 cpu_id=1
64945<...>-13083 ( 8858) [006] .... 82316.279157: binder_transaction: transaction=1570092 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
64946  kworker/u16:15-1311  ( 1311) [003] d..2 82316.279158: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64947<...>-13083 ( 8858) [006] .... 82316.279160: binder_transaction_alloc_buf: transaction=1570092 data_size=68 offsets_size=0
64948          <idle>-0     (-----) [003] d..1 82316.279173: cpu_idle: state=0 cpu_id=3
64949<...>-13083 ( 8858) [006] d..2 82316.279187: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
64950    RenderThread-9436  ( 9105) [006] .... 82316.279197: binder_transaction_received: transaction=1570092
64951    RenderThread-9436  ( 9105) [006] d..2 82316.279269: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
64952          <idle>-0     (-----) [006] d..1 82316.279282: cpu_idle: state=0 cpu_id=6
64953  kworker/u16:13-1147  ( 1147) [000] d..2 82316.279290: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=rcu_sched next_pid=8 next_prio=120
64954<...>-8 ( 8) [000] d..2 82316.279315: 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
64955          <idle>-0     (-----) [000] d..1 82316.279330: cpu_idle: state=0 cpu_id=0
64956          <idle>-0     (-----) [001] d.s3 82316.279334: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
64957          <idle>-0     (-----) [001] d.s4 82316.279345: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
64958          <idle>-0     (-----) [001] d.s4 82316.279354: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
64959          <idle>-0     (-----) [000] .n.1 82316.279360: cpu_idle: state=4294967295 cpu_id=0
64960          <idle>-0     (-----) [001] ...1 82316.279364: cpu_idle: state=4294967295 cpu_id=1
64961          <idle>-0     (-----) [001] d..1 82316.279369: cpu_idle: state=0 cpu_id=1
64962          <idle>-0     (-----) [000] d..2 82316.279373: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
64963  kworker/u16:13-1147  ( 1147) [000] d..2 82316.279427: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
64964          <idle>-0     (-----) [000] d..1 82316.279438: cpu_idle: state=0 cpu_id=0
64965          <idle>-0     (-----) [002] d.h4 82316.280116: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64966          <idle>-0     (-----) [005] dnh2 82316.280138: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
64967          <idle>-0     (-----) [005] .n.1 82316.280141: cpu_idle: state=4294967295 cpu_id=5
64968          <idle>-0     (-----) [005] d..2 82316.280150: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
64969          <idle>-0     (-----) [002] ...1 82316.280158: cpu_idle: state=4294967295 cpu_id=2
64970          <idle>-0     (-----) [003] d.h2 82316.280164: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
64971          <idle>-0     (-----) [002] d..1 82316.280165: cpu_idle: state=0 cpu_id=2
64972          <idle>-0     (-----) [003] dnh3 82316.280178: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
64973          <idle>-0     (-----) [003] .n.1 82316.280186: cpu_idle: state=4294967295 cpu_id=3
64974          <idle>-0     (-----) [003] d..2 82316.280196: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
64975<...>-5340 ( 788) [005] d..1 82316.280201: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
64976        DispSync-8879  ( 8858) [003] d..1 82316.280216: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
64977          <idle>-0     (-----) [002] dnh2 82316.280228: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
64978          <idle>-0     (-----) [002] .n.1 82316.280240: cpu_idle: state=4294967295 cpu_id=2
64979        DispSync-8879  ( 8858) [003] d..2 82316.280278: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
64980          <idle>-0     (-----) [002] d..2 82316.280282: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
64981          <idle>-0     (-----) [001] .n.1 82316.280282: cpu_idle: state=4294967295 cpu_id=1
64982<...>-5340 ( 788) [005] ...1 82316.280293: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
64983          <idle>-0     (-----) [001] d..2 82316.280293: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
64984<...>-5340 ( 788) [005] ...1 82316.280297: tracing_mark_write: E|788
64985        DispSync-8879  ( 8858) [003] d..2 82316.280311: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
64986<...>-5340 ( 788) [005] .... 82316.280315: binder_transaction: transaction=1570093 dest_node=1570089 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
64987<...>-5340 ( 788) [005] .... 82316.280318: binder_transaction_alloc_buf: transaction=1570093 data_size=60 offsets_size=0
64988<...>-5340 ( 788) [005] d..4 82316.280321: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
64989          <idle>-0     (-----) [003] d..1 82316.280326: cpu_idle: state=0 cpu_id=3
64990 neuralnetworks@-13088 (  788) [002] d..2 82316.280328: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
64991<...>-5340 ( 788) [005] d..5 82316.280335: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
64992          <idle>-0     (-----) [004] .n.1 82316.280341: cpu_idle: state=4294967295 cpu_id=4
64993          <idle>-0     (-----) [002] d..1 82316.280342: cpu_idle: state=0 cpu_id=2
64994   sfEventThread-8882  ( 8858) [001] d..3 82316.280343: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
64995          <idle>-0     (-----) [004] d..2 82316.280349: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
64996           <...>-27571 (-----) [004] .... 82316.280354: binder_transaction_received: transaction=1570093
64997<...>-5340 ( 788) [005] ...1 82316.280359: tracing_mark_write: E|788
64998   sfEventThread-8882  ( 8858) [001] d..4 82316.280366: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
64999<...>-5340 ( 788) [005] .... 82316.280366: binder_transaction: transaction=1570094 dest_node=0 dest_proc=27550 dest_thread=27651 reply=1 flags=0x0 code=0x0
65000<...>-5340 ( 788) [005] .... 82316.280368: binder_transaction_alloc_buf: transaction=1570094 data_size=8 offsets_size=0
65001<...>-5340 ( 788) [005] d..2 82316.280370: sched_waking: comm=id.nn.benchmark pid=27651 prio=110 target_cpu=005
65002          <idle>-0     (-----) [003] .n.1 82316.280372: cpu_idle: state=4294967295 cpu_id=3
65003           <...>-27571 (-----) [004] ...1 82316.280373: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
65004<...>-5340 ( 788) [005] d..3 82316.280377: sched_wakeup: comm=id.nn.benchmark pid=27651 prio=110 target_cpu=005
65005<...>-5340 ( 788) [005] .... 82316.280379: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
65006           <...>-27571 (-----) [004] ...1 82316.280380: tracing_mark_write: E|27550
65007          <idle>-0     (-----) [003] d..2 82316.280382: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
65008   sfEventThread-8882  ( 8858) [001] d..2 82316.280403: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65009           <...>-27571 (-----) [004] d..2 82316.280409: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65010          <idle>-0     (-----) [004] d..1 82316.280417: cpu_idle: state=0 cpu_id=4
65011          <idle>-0     (-----) [001] d..1 82316.280418: cpu_idle: state=0 cpu_id=1
65012<...>-5340 ( 788) [005] d..2 82316.280421: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27651 next_prio=110
65013           <...>-27651 (-----) [005] .... 82316.280431: binder_transaction_received: transaction=1570094
65014           <...>-27651 (-----) [005] ...1 82316.280470: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
65015           <...>-27651 (-----) [005] ...1 82316.280476: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
65016           <...>-27651 (-----) [005] ...1 82316.280502: tracing_mark_write: E|27550
65017           <...>-27651 (-----) [005] ...1 82316.280506: tracing_mark_write: E|27550
65018           <...>-27651 (-----) [005] ...1 82316.280509: tracing_mark_write: E|27550
65019           <...>-27651 (-----) [005] ...1 82316.280697: tracing_mark_write: E|27550
65020           <...>-27651 (-----) [005] d..1 82316.280711: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65021           <...>-27651 (-----) [005] d..2 82316.280727: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65022          <idle>-0     (-----) [004] .n.1 82316.280731: cpu_idle: state=4294967295 cpu_id=4
65023          <idle>-0     (-----) [004] d..2 82316.280738: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
65024  surfaceflinger-8858  ( 8858) [003] d..1 82316.280758: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
65025           <...>-27550 (-----) [004] d..2 82316.280758: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65026          <idle>-0     (-----) [004] d..1 82316.280767: cpu_idle: state=0 cpu_id=4
65027  surfaceflinger-8858  ( 8858) [003] d..2 82316.280778: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
65028          <idle>-0     (-----) [001] .n.1 82316.280784: cpu_idle: state=4294967295 cpu_id=1
65029          <idle>-0     (-----) [001] d..2 82316.280794: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
65030           <...>-27651 (-----) [005] d..1 82316.280815: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65031           <...>-27651 (-----) [005] d..2 82316.280825: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65032          <idle>-0     (-----) [004] .n.1 82316.280830: cpu_idle: state=4294967295 cpu_id=4
65033   sfEventThread-8882  ( 8858) [001] d..2 82316.280830: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65034          <idle>-0     (-----) [004] d..2 82316.280838: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
65035          <idle>-0     (-----) [001] d..1 82316.280840: cpu_idle: state=0 cpu_id=1
65036           <...>-27651 (-----) [005] d..2 82316.280865: sched_switch: prev_comm=id.nn.benchmark prev_pid=27651 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
65037           <...>-27550 (-----) [004] ...1 82316.280871: tracing_mark_write: E|27550
65038           <...>-27550 (-----) [004] ...1 82316.280875: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
65039           <...>-27550 (-----) [004] ...1 82316.280881: tracing_mark_write: E|27550
65040           <...>-27550 (-----) [004] ...1 82316.280884: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
65041          <idle>-0     (-----) [005] d..1 82316.280885: cpu_idle: state=0 cpu_id=5
65042           <...>-27550 (-----) [004] ...1 82316.280888: tracing_mark_write: E|27550
65043           <...>-27550 (-----) [004] ...1 82316.280892: tracing_mark_write: E|27550
65044  surfaceflinger-8858  ( 8858) [003] ...1 82316.280968: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
65045  surfaceflinger-8858  ( 8858) [003] ...1 82316.280975: tracing_mark_write: E|8858
65046           <...>-27550 (-----) [004] ...1 82316.281004: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
65047  surfaceflinger-8858  ( 8858) [003] .... 82316.281029: binder_transaction: transaction=1570095 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
65048  surfaceflinger-8858  ( 8858) [003] .... 82316.281034: binder_transaction_alloc_buf: transaction=1570095 data_size=540 offsets_size=96
65049  surfaceflinger-8858  ( 8858) [003] ...2 82316.281059: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
65050           <...>-27550 (-----) [004] ...1 82316.281061: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
65051           <...>-27550 (-----) [004] ...1 82316.281066: tracing_mark_write: E|27550
65052  surfaceflinger-8858  ( 8858) [003] d..4 82316.281067: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
65053           <...>-27550 (-----) [004] ...1 82316.281070: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
65054           <...>-27550 (-----) [004] ...1 82316.281075: tracing_mark_write: E|27550
65055           <...>-27550 (-----) [004] ...1 82316.281078: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
65056           <...>-27550 (-----) [004] ...1 82316.281082: tracing_mark_write: E|27550
65057           <...>-27550 (-----) [004] ...1 82316.281085: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
65058  surfaceflinger-8858  ( 8858) [003] d..5 82316.281087: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
65059          <idle>-0     (-----) [001] .n.1 82316.281092: cpu_idle: state=4294967295 cpu_id=1
65060          <idle>-0     (-----) [001] d..2 82316.281102: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
65061 [email protected]   (  619) [001] .... 82316.281113: binder_transaction_received: transaction=1570095
65062  surfaceflinger-8858  ( 8858) [003] d..2 82316.281118: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65063          <idle>-0     (-----) [003] d..1 82316.281136: cpu_idle: state=0 cpu_id=3
65064 [email protected]   (  619) [001] ...1 82316.281162: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
65065          <idle>-0     (-----) [005] .n.1 82316.281183: cpu_idle: state=4294967295 cpu_id=5
65066           <...>-27550 (-----) [004] ...1 82316.281185: tracing_mark_write: E|27550
65067           <...>-27550 (-----) [004] ...1 82316.281189: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
65068          <idle>-0     (-----) [005] d..2 82316.281192: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27652 next_prio=110
65069           <...>-27550 (-----) [004] d..2 82316.281206: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65070          <idle>-0     (-----) [004] d..1 82316.281221: cpu_idle: state=0 cpu_id=4
65071           <...>-27652 (-----) [005] ...1 82316.281252: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
65072           <...>-27652 (-----) [005] ...1 82316.281266: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
65073           <...>-27652 (-----) [005] ...1 82316.281270: tracing_mark_write: E|27550
65074 [email protected]   (  619) [001] ...1 82316.281274: tracing_mark_write: B|619|HWCSession::PresentDisplay::
65075           <...>-27652 (-----) [005] .... 82316.281292: binder_transaction: transaction=1570096 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
65076           <...>-27652 (-----) [005] .... 82316.281296: binder_transaction_alloc_buf: transaction=1570096 data_size=48 offsets_size=0
65077           <...>-27652 (-----) [005] ...2 82316.281299: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
65078           <...>-27652 (-----) [005] d..4 82316.281302: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
65079           <...>-27652 (-----) [005] dn.5 82316.281312: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
65080           <...>-27652 (-----) [005] d..2 82316.281319: sched_switch: prev_comm=id.nn.benchmark prev_pid=27652 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
65081<...>-770 ( 770) [005] .... 82316.281329: binder_transaction_received: transaction=1570096
65082<...>-770 ( 770) [005] ...1 82316.281354: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
65083<...>-770 ( 770) [005] d..2 82316.281436: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
65084 [email protected]   (  619) [001] ...1 82316.281451: tracing_mark_write: B|619|HWDeviceDRM::Commit::
65085 [email protected]   (  619) [001] d.h1 82316.281479: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
65086 [email protected]   (  619) [001] ...1 82316.281483: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
65087<...>-770 ( 770) [005] ...1 82316.281492: tracing_mark_write: E|770
65088<...>-770 ( 770) [005] .... 82316.281500: binder_transaction: transaction=1570097 dest_node=0 dest_proc=27550 dest_thread=27652 reply=1 flags=0x0 code=0x0
65089<...>-770 ( 770) [005] .... 82316.281503: binder_transaction_alloc_buf: transaction=1570097 data_size=168 offsets_size=32
65090<...>-770 ( 770) [005] .... 82316.281510: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
65091<...>-770 ( 770) [005] d..2 82316.281547: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27652 next_prio=110
65092           <...>-27652 (-----) [005] .... 82316.281557: binder_transaction_received: transaction=1570097
65093           <...>-27652 (-----) [005] ...1 82316.281631: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
65094           <...>-27652 (-----) [005] ...1 82316.281636: tracing_mark_write: E|27550
65095           <...>-27652 (-----) [005] .... 82316.281651: binder_transaction: transaction=1570098 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
65096           <...>-27652 (-----) [005] .... 82316.281654: binder_transaction_alloc_buf: transaction=1570098 data_size=48 offsets_size=0
65097           <...>-27652 (-----) [005] ...2 82316.281656: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
65098           <...>-27652 (-----) [005] d..4 82316.281659: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
65099           <...>-27652 (-----) [005] dn.5 82316.281669: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
65100           <...>-27652 (-----) [005] d..2 82316.281676: sched_switch: prev_comm=id.nn.benchmark prev_pid=27652 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
65101<...>-770 ( 770) [005] .... 82316.281683: binder_transaction_received: transaction=1570098
65102<...>-770 ( 770) [005] ...1 82316.281700: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
65103          <idle>-0     (-----) [002] ...1 82316.281701: cpu_idle: state=4294967295 cpu_id=2
65104          <idle>-0     (-----) [002] d..1 82316.281706: cpu_idle: state=0 cpu_id=2
65105<...>-770 ( 770) [005] d.s2 82316.281808: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
65106<...>-770 ( 770) [005] d.s3 82316.281818: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
65107<...>-770 ( 770) [005] ...1 82316.281838: tracing_mark_write: E|770
65108<...>-770 ( 770) [005] .... 82316.281846: binder_transaction: transaction=1570099 dest_node=0 dest_proc=27550 dest_thread=27652 reply=1 flags=0x0 code=0x0
65109<...>-770 ( 770) [005] .... 82316.281849: binder_transaction_alloc_buf: transaction=1570099 data_size=168 offsets_size=32
65110<...>-770 ( 770) [005] .... 82316.281855: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
65111<...>-770 ( 770) [005] d..2 82316.281867: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=R+ ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
65112     kworker/5:0-23997 (23997) [005] d..2 82316.281892: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> [email protected] next_pid=770 next_prio=120
65113<...>-770 ( 770) [005] d..2 82316.281917: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27652 next_prio=110
65114           <...>-27652 (-----) [005] .... 82316.281927: binder_transaction_received: transaction=1570099
65115 [email protected]   (  619) [001] d..2 82316.282150: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
65116 [email protected]   (  619) [001] d..3 82316.282182: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
65117          <idle>-0     (-----) [002] .n.1 82316.282186: cpu_idle: state=4294967295 cpu_id=2
65118          <idle>-0     (-----) [002] d..2 82316.282199: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
65119           <...>-27652 (-----) [005] ...1 82316.282204: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
65120           <...>-27652 (-----) [005] ...1 82316.282214: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
65121           <...>-27652 (-----) [005] ...1 82316.282218: tracing_mark_write: E|27550
65122           <...>-27652 (-----) [005] .... 82316.282281: binder_transaction: transaction=1570100 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
65123           <...>-27652 (-----) [005] .... 82316.282285: binder_transaction_alloc_buf: transaction=1570100 data_size=556 offsets_size=104
65124 [email protected]   (  619) [001] ...1 82316.282289: tracing_mark_write: E|619
65125 [email protected]   (  619) [001] ...1 82316.282296: tracing_mark_write: E|619
65126           <...>-27652 (-----) [005] ...2 82316.282299: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
65127           <...>-27652 (-----) [005] d..4 82316.282301: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65128           <...>-27652 (-----) [005] dn.5 82316.282313: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65129           <...>-27652 (-----) [005] d..2 82316.282319: sched_switch: prev_comm=id.nn.benchmark prev_pid=27652 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65130<...>-5340 ( 788) [005] .... 82316.282329: binder_transaction_received: transaction=1570100
65131 [email protected]   (  619) [001] ...1 82316.282362: tracing_mark_write: E|619
65132<...>-5340 ( 788) [005] ...1 82316.282377: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
65133 [email protected]   (  619) [001] ...1 82316.282410: tracing_mark_write: E|619
65134<...>-5340 ( 788) [005] d..2 82316.282424: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
65135 [email protected]   (  619) [001] .... 82316.282425: binder_transaction: transaction=1570103 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
65136 [email protected]   (  619) [001] .... 82316.282430: binder_transaction_alloc_buf: transaction=1570103 data_size=576 offsets_size=112
65137<...>-5340 ( 788) [005] d..2 82316.282448: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27652 next_prio=110
65138 crtc_commit:111-321   (  321) [002] d.h1 82316.282451: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
65139 [email protected]   (  619) [001] d..2 82316.282452: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
65140 [email protected]   (  619) [001] d..3 82316.282470: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
65141 [email protected]   (  619) [001] .... 82316.282476: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
65142           <...>-27652 (-----) [005] d..2 82316.282477: sched_switch: prev_comm=id.nn.benchmark prev_pid=27652 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65143          <idle>-0     (-----) [003] .n.1 82316.282479: cpu_idle: state=4294967295 cpu_id=3
65144          <idle>-0     (-----) [003] d..2 82316.282492: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
65145          <idle>-0     (-----) [005] d..1 82316.282495: cpu_idle: state=0 cpu_id=5
65146  surfaceflinger-8858  ( 8858) [003] .... 82316.282500: binder_transaction_received: transaction=1570103
65147 [email protected]   (  619) [001] d..2 82316.282552: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
65148<...>-581 ( 571) [001] d..2 82316.282676: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65149          <idle>-0     (-----) [001] d..1 82316.282691: cpu_idle: state=0 cpu_id=1
65150 crtc_commit:111-321   (  321) [002] d..2 82316.282921: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
65151  surfaceflinger-8858  ( 8858) [003] d..2 82316.282930: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65152          <idle>-0     (-----) [003] d..1 82316.282949: cpu_idle: state=0 cpu_id=3
65153<...>-87 ( 87) [002] d..2 82316.282969: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65154          <idle>-0     (-----) [002] d.h5 82316.282989: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
65155          <idle>-0     (-----) [002] dnh6 82316.283025: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65156          <idle>-0     (-----) [002] d..2 82316.283040: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
65157<...>-86 ( 86) [002] d.h5 82316.283062: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65158          <idle>-0     (-----) [005] dnh2 82316.283084: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65159          <idle>-0     (-----) [005] .n.1 82316.283089: cpu_idle: state=4294967295 cpu_id=5
65160          <idle>-0     (-----) [005] d..2 82316.283097: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65161<...>-86 ( 86) [002] d..2 82316.283129: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65162          <idle>-0     (-----) [002] d..1 82316.283146: cpu_idle: state=0 cpu_id=2
65163<...>-5340 ( 788) [005] d..1 82316.283150: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
65164          <idle>-0     (-----) [000] dnh2 82316.283191: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
65165          <idle>-0     (-----) [000] .n.1 82316.283197: cpu_idle: state=4294967295 cpu_id=0
65166          <idle>-0     (-----) [000] d..2 82316.283209: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
65167 neuralnetworks@-13088 (  788) [000] d..2 82316.283263: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65168          <idle>-0     (-----) [000] d..1 82316.283274: cpu_idle: state=0 cpu_id=0
65169<...>-5340 ( 788) [005] d..2 82316.283312: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
65170          <idle>-0     (-----) [002] dnh2 82316.283334: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
65171<...>-5340 ( 788) [005] d..2 82316.283337: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65172          <idle>-0     (-----) [002] .n.1 82316.283340: cpu_idle: state=4294967295 cpu_id=2
65173          <idle>-0     (-----) [005] d..1 82316.283351: cpu_idle: state=0 cpu_id=5
65174          <idle>-0     (-----) [002] d..2 82316.283352: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
65175<...>-87 ( 87) [002] d.h4 82316.283385: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65176<...>-87 ( 87) [002] d.h5 82316.283402: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65177<...>-87 ( 87) [002] d..2 82316.283416: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
65178<...>-86 ( 86) [002] d..2 82316.283447: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65179          <idle>-0     (-----) [002] d..1 82316.283462: cpu_idle: state=0 cpu_id=2
65180          <idle>-0     (-----) [003] ...1 82316.284695: cpu_idle: state=4294967295 cpu_id=3
65181          <idle>-0     (-----) [003] d..1 82316.284700: cpu_idle: state=0 cpu_id=3
65182          <idle>-0     (-----) [002] ...1 82316.284834: cpu_idle: state=4294967295 cpu_id=2
65183          <idle>-0     (-----) [002] d..1 82316.284838: cpu_idle: state=0 cpu_id=2
65184          <idle>-0     (-----) [002] d.h4 82316.285092: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65185          <idle>-0     (-----) [005] dnh2 82316.285117: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65186          <idle>-0     (-----) [005] .n.1 82316.285122: cpu_idle: state=4294967295 cpu_id=5
65187          <idle>-0     (-----) [005] d..2 82316.285131: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65188          <idle>-0     (-----) [002] ...1 82316.285131: cpu_idle: state=4294967295 cpu_id=2
65189          <idle>-0     (-----) [000] d.s2 82316.285135: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
65190          <idle>-0     (-----) [002] d..1 82316.285137: cpu_idle: state=0 cpu_id=2
65191          <idle>-0     (-----) [001] d.s2 82316.285137: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
65192          <idle>-0     (-----) [000] dns3 82316.285154: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
65193          <idle>-0     (-----) [001] dns3 82316.285157: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
65194          <idle>-0     (-----) [000] dns3 82316.285163: sched_waking: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
65195          <idle>-0     (-----) [001] .n.1 82316.285178: cpu_idle: state=4294967295 cpu_id=1
65196          <idle>-0     (-----) [000] dns3 82316.285179: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
65197<...>-5340 ( 788) [005] d..1 82316.285180: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
65198          <idle>-0     (-----) [007] dnh2 82316.285184: sched_wakeup: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
65199          <idle>-0     (-----) [001] d..2 82316.285188: 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
65200          <idle>-0     (-----) [007] .n.1 82316.285189: cpu_idle: state=4294967295 cpu_id=7
65201          <idle>-0     (-----) [000] dns3 82316.285191: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
65202          <idle>-0     (-----) [007] d..2 82316.285195: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/7:3 next_pid=442 next_prio=120
65203          <idle>-0     (-----) [006] dnh2 82316.285202: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
65204          <idle>-0     (-----) [006] .n.1 82316.285206: cpu_idle: state=4294967295 cpu_id=6
65205     kworker/7:3-442   (  442) [007] d..2 82316.285215: sched_switch: prev_comm=kworker/7:3 prev_pid=442 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
65206          <idle>-0     (-----) [006] d..2 82316.285217: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
65207          <idle>-0     (-----) [007] d..1 82316.285224: cpu_idle: state=0 cpu_id=7
65208     rcu_preempt-7     (    7) [001] d..2 82316.285231: 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
65209          <idle>-0     (-----) [000] dns4 82316.285240: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
65210<...>-560 ( 560) [006] d..2 82316.285242: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
65211          <idle>-0     (-----) [006] d..1 82316.285261: cpu_idle: state=0 cpu_id=6
65212          <idle>-0     (-----) [001] dnh3 82316.285279: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
65213          <idle>-0     (-----) [000] .n.1 82316.285284: cpu_idle: state=4294967295 cpu_id=0
65214<...>-5340 ( 788) [005] ...1 82316.285289: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
65215          <idle>-0     (-----) [001] d..2 82316.285292: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
65216<...>-5340 ( 788) [005] ...1 82316.285293: tracing_mark_write: E|788
65217          <idle>-0     (-----) [000] d..2 82316.285294: 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
65218<...>-5340 ( 788) [005] .... 82316.285309: binder_transaction: transaction=1570104 dest_node=1570101 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
65219<...>-5340 ( 788) [005] .... 82316.285311: binder_transaction_alloc_buf: transaction=1570104 data_size=60 offsets_size=0
65220<...>-5340 ( 788) [005] d..4 82316.285315: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
65221<...>-5340 ( 788) [005] d..5 82316.285327: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
65222          <idle>-0     (-----) [004] .n.1 82316.285333: cpu_idle: state=4294967295 cpu_id=4
65223          <idle>-0     (-----) [004] d..2 82316.285341: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
65224<...>-8 ( 8) [000] d..2 82316.285344: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
65225           <...>-27571 (-----) [004] .... 82316.285346: binder_transaction_received: transaction=1570104
65226<...>-5340 ( 788) [005] ...1 82316.285350: tracing_mark_write: E|788
65227 neuralnetworks@-13088 (  788) [001] d..2 82316.285353: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65228<...>-5340 ( 788) [005] .... 82316.285356: binder_transaction: transaction=1570105 dest_node=0 dest_proc=27550 dest_thread=27652 reply=1 flags=0x0 code=0x0
65229<...>-5340 ( 788) [005] .... 82316.285358: binder_transaction_alloc_buf: transaction=1570105 data_size=8 offsets_size=0
65230<...>-5340 ( 788) [005] d..2 82316.285360: sched_waking: comm=id.nn.benchmark pid=27652 prio=110 target_cpu=005
65231           <...>-27571 (-----) [004] ...1 82316.285365: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
65232<...>-5340 ( 788) [005] d..3 82316.285367: sched_wakeup: comm=id.nn.benchmark pid=27652 prio=110 target_cpu=005
65233<...>-5340 ( 788) [005] .... 82316.285368: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
65234          <idle>-0     (-----) [001] d..1 82316.285369: cpu_idle: state=0 cpu_id=1
65235           <...>-27571 (-----) [004] ...1 82316.285371: tracing_mark_write: E|27550
65236           <...>-27571 (-----) [004] d..2 82316.285400: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65237          <idle>-0     (-----) [004] d..1 82316.285408: cpu_idle: state=0 cpu_id=4
65238<...>-5340 ( 788) [005] d..2 82316.285410: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27652 next_prio=110
65239  kworker/u16:13-1147  ( 1147) [000] d..2 82316.285413: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65240           <...>-27652 (-----) [005] .... 82316.285420: binder_transaction_received: transaction=1570105
65241          <idle>-0     (-----) [000] d..1 82316.285428: cpu_idle: state=0 cpu_id=0
65242           <...>-27652 (-----) [005] ...1 82316.285457: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
65243           <...>-27652 (-----) [005] ...1 82316.285463: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
65244           <...>-27652 (-----) [005] ...1 82316.285490: tracing_mark_write: E|27550
65245           <...>-27652 (-----) [005] ...1 82316.285493: tracing_mark_write: E|27550
65246           <...>-27652 (-----) [005] ...1 82316.285497: tracing_mark_write: E|27550
65247           <...>-27652 (-----) [005] ...1 82316.285689: tracing_mark_write: E|27550
65248           <...>-27652 (-----) [005] d..1 82316.285702: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65249           <...>-27652 (-----) [005] d..2 82316.285718: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65250          <idle>-0     (-----) [004] .n.1 82316.285723: cpu_idle: state=4294967295 cpu_id=4
65251          <idle>-0     (-----) [004] d..2 82316.285731: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
65252           <...>-27550 (-----) [004] d..2 82316.285752: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65253          <idle>-0     (-----) [004] d..1 82316.285761: cpu_idle: state=0 cpu_id=4
65254           <...>-27652 (-----) [005] d..1 82316.285811: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65255           <...>-27652 (-----) [005] d..2 82316.285821: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65256          <idle>-0     (-----) [004] .n.1 82316.285827: cpu_idle: state=4294967295 cpu_id=4
65257          <idle>-0     (-----) [004] d..2 82316.285834: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
65258           <...>-27652 (-----) [005] d..2 82316.285861: sched_switch: prev_comm=id.nn.benchmark prev_pid=27652 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
65259           <...>-27550 (-----) [004] ...1 82316.285867: tracing_mark_write: E|27550
65260           <...>-27550 (-----) [004] ...1 82316.285872: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
65261           <...>-27550 (-----) [004] ...1 82316.285878: tracing_mark_write: E|27550
65262          <idle>-0     (-----) [005] d..1 82316.285881: cpu_idle: state=0 cpu_id=5
65263           <...>-27550 (-----) [004] ...1 82316.285882: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
65264           <...>-27550 (-----) [004] ...1 82316.285886: tracing_mark_write: E|27550
65265           <...>-27550 (-----) [004] ...1 82316.285890: tracing_mark_write: E|27550
65266           <...>-27550 (-----) [004] ...1 82316.286007: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
65267           <...>-27550 (-----) [004] ...1 82316.286067: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
65268           <...>-27550 (-----) [004] ...1 82316.286073: tracing_mark_write: E|27550
65269           <...>-27550 (-----) [004] ...1 82316.286077: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
65270           <...>-27550 (-----) [004] ...1 82316.286083: tracing_mark_write: E|27550
65271           <...>-27550 (-----) [004] ...1 82316.286087: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
65272           <...>-27550 (-----) [004] ...1 82316.286091: tracing_mark_write: E|27550
65273           <...>-27550 (-----) [004] ...1 82316.286094: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
65274          <idle>-0     (-----) [005] .n.1 82316.286188: cpu_idle: state=4294967295 cpu_id=5
65275           <...>-27550 (-----) [004] ...1 82316.286189: tracing_mark_write: E|27550
65276           <...>-27550 (-----) [004] ...1 82316.286194: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
65277          <idle>-0     (-----) [005] d..2 82316.286197: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27653 next_prio=110
65278           <...>-27550 (-----) [004] d..2 82316.286210: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65279          <idle>-0     (-----) [004] d..1 82316.286225: cpu_idle: state=0 cpu_id=4
65280           <...>-27653 (-----) [005] ...1 82316.286260: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
65281           <...>-27653 (-----) [005] ...1 82316.286275: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
65282           <...>-27653 (-----) [005] ...1 82316.286279: tracing_mark_write: E|27550
65283           <...>-27653 (-----) [005] .... 82316.286300: binder_transaction: transaction=1570106 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
65284           <...>-27653 (-----) [005] .... 82316.286303: binder_transaction_alloc_buf: transaction=1570106 data_size=48 offsets_size=0
65285           <...>-27653 (-----) [005] ...2 82316.286306: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
65286           <...>-27653 (-----) [005] d..4 82316.286309: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
65287           <...>-27653 (-----) [005] dn.5 82316.286319: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
65288           <...>-27653 (-----) [005] d..2 82316.286326: sched_switch: prev_comm=id.nn.benchmark prev_pid=27653 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
65289<...>-770 ( 770) [005] .... 82316.286336: binder_transaction_received: transaction=1570106
65290<...>-770 ( 770) [005] ...1 82316.286360: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
65291<...>-770 ( 770) [005] d..2 82316.286436: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
65292          <idle>-0     (-----) [000] dnh2 82316.286476: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
65293          <idle>-0     (-----) [000] .n.1 82316.286482: cpu_idle: state=4294967295 cpu_id=0
65294<...>-770 ( 770) [005] ...1 82316.286489: tracing_mark_write: E|770
65295          <idle>-0     (-----) [000] d..2 82316.286493: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
65296<...>-770 ( 770) [005] .... 82316.286497: binder_transaction: transaction=1570107 dest_node=0 dest_proc=27550 dest_thread=27653 reply=1 flags=0x0 code=0x0
65297<...>-770 ( 770) [005] .... 82316.286500: binder_transaction_alloc_buf: transaction=1570107 data_size=168 offsets_size=32
65298<...>-770 ( 770) [005] .... 82316.286507: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
65299<...>-770 ( 770) [005] d..2 82316.286542: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27653 next_prio=110
65300           <...>-27653 (-----) [005] .... 82316.286553: binder_transaction_received: transaction=1570107
65301<...>-581 ( 571) [000] d..2 82316.286599: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65302          <idle>-0     (-----) [000] d..1 82316.286614: cpu_idle: state=0 cpu_id=0
65303           <...>-27653 (-----) [005] ...1 82316.286625: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
65304           <...>-27653 (-----) [005] ...1 82316.286630: tracing_mark_write: E|27550
65305           <...>-27653 (-----) [005] .... 82316.286644: binder_transaction: transaction=1570108 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
65306           <...>-27653 (-----) [005] .... 82316.286647: binder_transaction_alloc_buf: transaction=1570108 data_size=48 offsets_size=0
65307           <...>-27653 (-----) [005] ...2 82316.286649: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
65308           <...>-27653 (-----) [005] d..4 82316.286651: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
65309           <...>-27653 (-----) [005] dn.5 82316.286661: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
65310           <...>-27653 (-----) [005] d..2 82316.286668: sched_switch: prev_comm=id.nn.benchmark prev_pid=27653 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
65311<...>-770 ( 770) [005] .... 82316.286676: binder_transaction_received: transaction=1570108
65312<...>-770 ( 770) [005] ...1 82316.286693: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
65313<...>-770 ( 770) [005] d..2 82316.286751: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
65314          <idle>-0     (-----) [000] dnh2 82316.286775: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
65315          <idle>-0     (-----) [000] .n.1 82316.286782: cpu_idle: state=4294967295 cpu_id=0
65316<...>-770 ( 770) [005] ...1 82316.286785: tracing_mark_write: E|770
65317<...>-770 ( 770) [005] .... 82316.286792: binder_transaction: transaction=1570109 dest_node=0 dest_proc=27550 dest_thread=27653 reply=1 flags=0x0 code=0x0
65318          <idle>-0     (-----) [000] d..2 82316.286793: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
65319<...>-770 ( 770) [005] .... 82316.286794: binder_transaction_alloc_buf: transaction=1570109 data_size=168 offsets_size=32
65320<...>-770 ( 770) [005] .... 82316.286800: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
65321<...>-770 ( 770) [005] d..2 82316.286834: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27653 next_prio=110
65322           <...>-27653 (-----) [005] .... 82316.286845: binder_transaction_received: transaction=1570109
65323<...>-581 ( 571) [000] d..2 82316.286852: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65324          <idle>-0     (-----) [000] d..1 82316.286865: cpu_idle: state=0 cpu_id=0
65325           <...>-27653 (-----) [005] ...1 82316.287121: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
65326           <...>-27653 (-----) [005] ...1 82316.287130: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
65327           <...>-27653 (-----) [005] ...1 82316.287135: tracing_mark_write: E|27550
65328           <...>-27653 (-----) [005] .... 82316.287196: binder_transaction: transaction=1570110 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
65329           <...>-27653 (-----) [005] .... 82316.287199: binder_transaction_alloc_buf: transaction=1570110 data_size=556 offsets_size=104
65330           <...>-27653 (-----) [005] ...2 82316.287213: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
65331           <...>-27653 (-----) [005] d..4 82316.287215: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65332           <...>-27653 (-----) [005] dn.5 82316.287227: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65333           <...>-27653 (-----) [005] d..2 82316.287234: sched_switch: prev_comm=id.nn.benchmark prev_pid=27653 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65334<...>-5340 ( 788) [005] .... 82316.287243: binder_transaction_received: transaction=1570110
65335<...>-5340 ( 788) [005] ...1 82316.287289: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
65336<...>-5340 ( 788) [005] d..2 82316.287335: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
65337<...>-5340 ( 788) [005] d..2 82316.287371: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27653 next_prio=110
65338          <idle>-0     (-----) [000] dnh2 82316.287374: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65339          <idle>-0     (-----) [000] .n.1 82316.287380: cpu_idle: state=4294967295 cpu_id=0
65340          <idle>-0     (-----) [000] d..2 82316.287391: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
65341           <...>-27653 (-----) [005] d..2 82316.287393: sched_switch: prev_comm=id.nn.benchmark prev_pid=27653 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65342          <idle>-0     (-----) [005] d..1 82316.287410: cpu_idle: state=0 cpu_id=5
65343<...>-87 ( 87) [000] d..2 82316.287436: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65344          <idle>-0     (-----) [002] d.h4 82316.287441: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65345          <idle>-0     (-----) [000] d..1 82316.287447: cpu_idle: state=0 cpu_id=0
65346          <idle>-0     (-----) [002] dnh5 82316.287458: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65347          <idle>-0     (-----) [002] .n.1 82316.287466: cpu_idle: state=4294967295 cpu_id=2
65348          <idle>-0     (-----) [002] d..2 82316.287479: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
65349<...>-86 ( 86) [002] d..2 82316.287514: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65350          <idle>-0     (-----) [002] d.h5 82316.287536: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65351          <idle>-0     (-----) [005] dnh2 82316.287558: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65352          <idle>-0     (-----) [005] .n.1 82316.287563: cpu_idle: state=4294967295 cpu_id=5
65353          <idle>-0     (-----) [005] d..2 82316.287571: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65354          <idle>-0     (-----) [002] d..1 82316.287581: cpu_idle: state=0 cpu_id=2
65355<...>-5340 ( 788) [005] d..1 82316.287623: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
65356          <idle>-0     (-----) [000] dnh2 82316.287661: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
65357          <idle>-0     (-----) [000] .n.1 82316.287667: cpu_idle: state=4294967295 cpu_id=0
65358          <idle>-0     (-----) [000] d..2 82316.287677: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
65359 neuralnetworks@-13088 (  788) [000] d..2 82316.287729: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65360          <idle>-0     (-----) [000] d..1 82316.287741: cpu_idle: state=0 cpu_id=0
65361<...>-5340 ( 788) [005] d..2 82316.287782: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65362          <idle>-0     (-----) [000] dnh2 82316.287805: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65363<...>-5340 ( 788) [005] d..2 82316.287808: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65364          <idle>-0     (-----) [000] .n.1 82316.287811: cpu_idle: state=4294967295 cpu_id=0
65365          <idle>-0     (-----) [000] d..2 82316.287822: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
65366          <idle>-0     (-----) [005] d..1 82316.287822: cpu_idle: state=0 cpu_id=5
65367          <idle>-0     (-----) [002] d.h4 82316.287861: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65368<...>-87 ( 87) [000] d..2 82316.287862: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65369          <idle>-0     (-----) [002] dnh5 82316.287872: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65370          <idle>-0     (-----) [000] d..1 82316.287873: cpu_idle: state=0 cpu_id=0
65371          <idle>-0     (-----) [002] .n.1 82316.287880: cpu_idle: state=4294967295 cpu_id=2
65372          <idle>-0     (-----) [002] d..2 82316.287893: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
65373<...>-86 ( 86) [002] d..2 82316.287926: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65374          <idle>-0     (-----) [002] d..1 82316.287938: cpu_idle: state=0 cpu_id=2
65375          <idle>-0     (-----) [000] d.h5 82316.288148: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
65376          <idle>-0     (-----) [000] d.h6 82316.288168: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
65377          <idle>-0     (-----) [000] d.h5 82316.288173: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
65378          <idle>-0     (-----) [003] .n.1 82316.288174: cpu_idle: state=4294967295 cpu_id=3
65379          <idle>-0     (-----) [003] d..2 82316.288185: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
65380          <idle>-0     (-----) [000] d.h6 82316.288185: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
65381          <idle>-0     (-----) [002] .n.1 82316.288191: cpu_idle: state=4294967295 cpu_id=2
65382          <idle>-0     (-----) [000] ...1 82316.288201: cpu_idle: state=4294967295 cpu_id=0
65383          <idle>-0     (-----) [002] d..2 82316.288202: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
65384          <idle>-0     (-----) [000] d..1 82316.288207: cpu_idle: state=0 cpu_id=0
65385  crtc_event:111-322   (  322) [003] d..2 82316.288218: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65386          <idle>-0     (-----) [003] d..1 82316.288227: cpu_idle: state=0 cpu_id=3
65387 crtc_commit:111-321   (  321) [002] d..2 82316.288346: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
65388          <idle>-0     (-----) [002] d..1 82316.288355: cpu_idle: state=0 cpu_id=2
65389          <idle>-0     (-----) [002] d.s3 82316.288473: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
65390          <idle>-0     (-----) [002] d.s4 82316.288492: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
65391          <idle>-0     (-----) [003] .n.1 82316.288498: cpu_idle: state=4294967295 cpu_id=3
65392          <idle>-0     (-----) [002] d.s3 82316.288499: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
65393          <idle>-0     (-----) [003] d..2 82316.288509: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
65394          <idle>-0     (-----) [002] dns4 82316.288533: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
65395  crtc_event:111-322   (  322) [003] d..2 82316.288543: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65396          <idle>-0     (-----) [003] d..1 82316.288552: cpu_idle: state=0 cpu_id=3
65397          <idle>-0     (-----) [002] .n.1 82316.288556: cpu_idle: state=4294967295 cpu_id=2
65398          <idle>-0     (-----) [002] d..2 82316.288566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
65399  kworker/u16:13-1147  ( 1147) [002] d..2 82316.288811: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
65400          <idle>-0     (-----) [002] d..1 82316.288828: cpu_idle: state=0 cpu_id=2
65401          <idle>-0     (-----) [001] d.s3 82316.288845: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
65402          <idle>-0     (-----) [001] d.s4 82316.288858: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
65403          <idle>-0     (-----) [001] d.s4 82316.288868: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
65404          <idle>-0     (-----) [002] .n.1 82316.288874: cpu_idle: state=4294967295 cpu_id=2
65405          <idle>-0     (-----) [001] ...1 82316.288878: cpu_idle: state=4294967295 cpu_id=1
65406          <idle>-0     (-----) [001] d..1 82316.288884: cpu_idle: state=0 cpu_id=1
65407          <idle>-0     (-----) [002] d..2 82316.288887: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
65408  kworker/u16:13-1147  ( 1147) [002] d..2 82316.288942: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65409          <idle>-0     (-----) [002] d..1 82316.288956: cpu_idle: state=0 cpu_id=2
65410          <idle>-0     (-----) [002] d.h4 82316.289598: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65411          <idle>-0     (-----) [005] dnh2 82316.289620: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65412          <idle>-0     (-----) [005] .n.1 82316.289625: cpu_idle: state=4294967295 cpu_id=5
65413          <idle>-0     (-----) [005] d..2 82316.289634: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65414          <idle>-0     (-----) [002] ...1 82316.289640: cpu_idle: state=4294967295 cpu_id=2
65415          <idle>-0     (-----) [002] d..1 82316.289646: cpu_idle: state=0 cpu_id=2
65416<...>-5340 ( 788) [005] d..1 82316.289684: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
65417          <idle>-0     (-----) [000] dnh2 82316.289709: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
65418          <idle>-0     (-----) [000] .n.1 82316.289715: cpu_idle: state=4294967295 cpu_id=0
65419          <idle>-0     (-----) [000] d..2 82316.289728: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
65420<...>-5340 ( 788) [005] ...1 82316.289773: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
65421<...>-5340 ( 788) [005] ...1 82316.289778: tracing_mark_write: E|788
65422<...>-5340 ( 788) [005] .... 82316.289794: binder_transaction: transaction=1570113 dest_node=1570111 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
65423 neuralnetworks@-13088 (  788) [000] d..2 82316.289794: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65424<...>-5340 ( 788) [005] .... 82316.289796: binder_transaction_alloc_buf: transaction=1570113 data_size=60 offsets_size=0
65425<...>-5340 ( 788) [005] d..4 82316.289799: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
65426          <idle>-0     (-----) [000] d..1 82316.289803: cpu_idle: state=0 cpu_id=0
65427<...>-5340 ( 788) [005] d..5 82316.289811: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
65428          <idle>-0     (-----) [004] .n.1 82316.289817: cpu_idle: state=4294967295 cpu_id=4
65429          <idle>-0     (-----) [004] d..2 82316.289826: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
65430           <...>-27571 (-----) [004] .... 82316.289831: binder_transaction_received: transaction=1570113
65431<...>-5340 ( 788) [005] ...1 82316.289834: tracing_mark_write: E|788
65432<...>-5340 ( 788) [005] .... 82316.289840: binder_transaction: transaction=1570114 dest_node=0 dest_proc=27550 dest_thread=27653 reply=1 flags=0x0 code=0x0
65433<...>-5340 ( 788) [005] .... 82316.289842: binder_transaction_alloc_buf: transaction=1570114 data_size=8 offsets_size=0
65434<...>-5340 ( 788) [005] d..2 82316.289844: sched_waking: comm=id.nn.benchmark pid=27653 prio=110 target_cpu=005
65435           <...>-27571 (-----) [004] ...1 82316.289849: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
65436<...>-5340 ( 788) [005] d..3 82316.289851: sched_wakeup: comm=id.nn.benchmark pid=27653 prio=110 target_cpu=005
65437<...>-5340 ( 788) [005] .... 82316.289853: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
65438           <...>-27571 (-----) [004] ...1 82316.289855: tracing_mark_write: E|27550
65439           <...>-27571 (-----) [004] d..2 82316.289883: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65440          <idle>-0     (-----) [004] d..1 82316.289891: cpu_idle: state=0 cpu_id=4
65441<...>-5340 ( 788) [005] d..2 82316.289894: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27653 next_prio=110
65442           <...>-27653 (-----) [005] .... 82316.289905: binder_transaction_received: transaction=1570114
65443           <...>-27653 (-----) [005] ...1 82316.289941: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
65444           <...>-27653 (-----) [005] ...1 82316.289948: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
65445           <...>-27653 (-----) [005] ...1 82316.289974: tracing_mark_write: E|27550
65446           <...>-27653 (-----) [005] ...1 82316.289978: tracing_mark_write: E|27550
65447           <...>-27653 (-----) [005] ...1 82316.289982: tracing_mark_write: E|27550
65448           <...>-27653 (-----) [005] ...1 82316.290170: tracing_mark_write: E|27550
65449           <...>-27653 (-----) [005] d..1 82316.290183: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65450           <...>-27653 (-----) [005] d..2 82316.290199: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65451          <idle>-0     (-----) [004] .n.1 82316.290206: cpu_idle: state=4294967295 cpu_id=4
65452          <idle>-0     (-----) [004] d..2 82316.290212: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
65453           <...>-27550 (-----) [004] d..2 82316.290232: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65454          <idle>-0     (-----) [004] d..1 82316.290241: cpu_idle: state=0 cpu_id=4
65455           <...>-27653 (-----) [005] d..1 82316.290290: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65456           <...>-27653 (-----) [005] d..2 82316.290299: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65457          <idle>-0     (-----) [004] .n.1 82316.290304: cpu_idle: state=4294967295 cpu_id=4
65458          <idle>-0     (-----) [004] d..2 82316.290312: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
65459           <...>-27653 (-----) [005] d..2 82316.290336: sched_switch: prev_comm=id.nn.benchmark prev_pid=27653 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
65460           <...>-27550 (-----) [004] ...1 82316.290345: tracing_mark_write: E|27550
65461           <...>-27550 (-----) [004] ...1 82316.290349: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
65462           <...>-27550 (-----) [004] ...1 82316.290355: tracing_mark_write: E|27550
65463          <idle>-0     (-----) [005] d..1 82316.290358: cpu_idle: state=0 cpu_id=5
65464           <...>-27550 (-----) [004] ...1 82316.290359: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
65465           <...>-27550 (-----) [004] ...1 82316.290363: tracing_mark_write: E|27550
65466           <...>-27550 (-----) [004] ...1 82316.290367: tracing_mark_write: E|27550
65467          <idle>-0     (-----) [000] d.h5 82316.290481: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
65468           <...>-27550 (-----) [004] ...1 82316.290482: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
65469          <idle>-0     (-----) [000] d.h6 82316.290497: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
65470          <idle>-0     (-----) [002] .n.1 82316.290503: cpu_idle: state=4294967295 cpu_id=2
65471          <idle>-0     (-----) [000] ...1 82316.290511: cpu_idle: state=4294967295 cpu_id=0
65472          <idle>-0     (-----) [002] d..2 82316.290514: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
65473          <idle>-0     (-----) [000] d..1 82316.290515: cpu_idle: state=0 cpu_id=0
65474           <...>-27550 (-----) [004] ...1 82316.290539: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
65475           <...>-27550 (-----) [004] ...1 82316.290543: tracing_mark_write: E|27550
65476           <...>-27550 (-----) [004] ...1 82316.290547: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
65477           <...>-27550 (-----) [004] ...1 82316.290552: tracing_mark_write: E|27550
65478           <...>-27550 (-----) [004] ...1 82316.290555: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
65479           <...>-27550 (-----) [004] ...1 82316.290559: tracing_mark_write: E|27550
65480           <...>-27550 (-----) [004] ...1 82316.290562: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
65481 crtc_commit:111-321   (  321) [002] d..2 82316.290594: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65482          <idle>-0     (-----) [002] d..1 82316.290607: cpu_idle: state=0 cpu_id=2
65483          <idle>-0     (-----) [005] .n.1 82316.290646: cpu_idle: state=4294967295 cpu_id=5
65484           <...>-27550 (-----) [004] ...1 82316.290647: tracing_mark_write: E|27550
65485           <...>-27550 (-----) [004] ...1 82316.290652: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
65486          <idle>-0     (-----) [005] d..2 82316.290655: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27654 next_prio=110
65487           <...>-27550 (-----) [004] d..2 82316.290668: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65488          <idle>-0     (-----) [004] d..1 82316.290682: cpu_idle: state=0 cpu_id=4
65489           <...>-27654 (-----) [005] ...1 82316.290718: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
65490           <...>-27654 (-----) [005] ...1 82316.290732: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
65491           <...>-27654 (-----) [005] ...1 82316.290735: tracing_mark_write: E|27550
65492           <...>-27654 (-----) [005] .... 82316.290755: binder_transaction: transaction=1570115 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
65493           <...>-27654 (-----) [005] .... 82316.290759: binder_transaction_alloc_buf: transaction=1570115 data_size=48 offsets_size=0
65494           <...>-27654 (-----) [005] ...2 82316.290761: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
65495           <...>-27654 (-----) [005] d..4 82316.290764: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
65496          <idle>-0     (-----) [000] d.h5 82316.290773: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
65497           <...>-27654 (-----) [005] dn.5 82316.290774: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
65498           <...>-27654 (-----) [005] d..2 82316.290781: sched_switch: prev_comm=id.nn.benchmark prev_pid=27654 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
65499          <idle>-0     (-----) [000] d.h6 82316.290788: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
65500<...>-770 ( 770) [005] .... 82316.290791: binder_transaction_received: transaction=1570115
65501          <idle>-0     (-----) [003] .n.1 82316.290794: cpu_idle: state=4294967295 cpu_id=3
65502          <idle>-0     (-----) [000] ...1 82316.290803: cpu_idle: state=4294967295 cpu_id=0
65503          <idle>-0     (-----) [003] d..2 82316.290803: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
65504          <idle>-0     (-----) [000] d..1 82316.290807: cpu_idle: state=0 cpu_id=0
65505<...>-770 ( 770) [005] ...1 82316.290813: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
65506  crtc_event:111-322   (  322) [003] d..2 82316.290826: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65507          <idle>-0     (-----) [003] d..1 82316.290835: cpu_idle: state=0 cpu_id=3
65508<...>-770 ( 770) [005] d..2 82316.290883: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
65509          <idle>-0     (-----) [000] dnh2 82316.290911: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
65510          <idle>-0     (-----) [000] .n.1 82316.290916: cpu_idle: state=4294967295 cpu_id=0
65511<...>-770 ( 770) [005] ...1 82316.290924: tracing_mark_write: E|770
65512          <idle>-0     (-----) [000] d..2 82316.290925: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
65513<...>-770 ( 770) [005] .... 82316.290932: binder_transaction: transaction=1570116 dest_node=0 dest_proc=27550 dest_thread=27654 reply=1 flags=0x0 code=0x0
65514<...>-770 ( 770) [005] .... 82316.290935: binder_transaction_alloc_buf: transaction=1570116 data_size=168 offsets_size=32
65515<...>-770 ( 770) [005] .... 82316.290942: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
65516<...>-770 ( 770) [005] d..2 82316.290978: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27654 next_prio=110
65517           <...>-27654 (-----) [005] .... 82316.290988: binder_transaction_received: transaction=1570116
65518<...>-581 ( 571) [000] d..2 82316.291007: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65519          <idle>-0     (-----) [000] d..1 82316.291017: cpu_idle: state=0 cpu_id=0
65520           <...>-27654 (-----) [005] ...1 82316.291056: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
65521           <...>-27654 (-----) [005] ...1 82316.291062: tracing_mark_write: E|27550
65522           <...>-27654 (-----) [005] .... 82316.291076: binder_transaction: transaction=1570117 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
65523           <...>-27654 (-----) [005] .... 82316.291078: binder_transaction_alloc_buf: transaction=1570117 data_size=48 offsets_size=0
65524           <...>-27654 (-----) [005] ...2 82316.291081: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
65525           <...>-27654 (-----) [005] d..4 82316.291083: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
65526           <...>-27654 (-----) [005] dn.5 82316.291093: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
65527           <...>-27654 (-----) [005] d..2 82316.291100: sched_switch: prev_comm=id.nn.benchmark prev_pid=27654 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
65528<...>-770 ( 770) [005] .... 82316.291108: binder_transaction_received: transaction=1570117
65529<...>-770 ( 770) [005] ...1 82316.291124: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
65530<...>-770 ( 770) [005] d..2 82316.291183: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
65531          <idle>-0     (-----) [000] dnh2 82316.291207: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
65532          <idle>-0     (-----) [000] .n.1 82316.291214: cpu_idle: state=4294967295 cpu_id=0
65533<...>-770 ( 770) [005] ...1 82316.291217: tracing_mark_write: E|770
65534          <idle>-0     (-----) [000] d..2 82316.291222: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
65535<...>-770 ( 770) [005] .... 82316.291224: binder_transaction: transaction=1570118 dest_node=0 dest_proc=27550 dest_thread=27654 reply=1 flags=0x0 code=0x0
65536<...>-770 ( 770) [005] .... 82316.291227: binder_transaction_alloc_buf: transaction=1570118 data_size=168 offsets_size=32
65537<...>-770 ( 770) [005] .... 82316.291233: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
65538<...>-770 ( 770) [005] d..2 82316.291268: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27654 next_prio=110
65539<...>-581 ( 571) [000] d..2 82316.291278: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65540           <...>-27654 (-----) [005] .... 82316.291278: binder_transaction_received: transaction=1570118
65541          <idle>-0     (-----) [000] d..1 82316.291287: cpu_idle: state=0 cpu_id=0
65542           <...>-27654 (-----) [005] ...1 82316.291556: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
65543           <...>-27654 (-----) [005] ...1 82316.291565: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
65544           <...>-27654 (-----) [005] ...1 82316.291569: tracing_mark_write: E|27550
65545           <...>-27654 (-----) [005] .... 82316.291631: binder_transaction: transaction=1570119 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
65546           <...>-27654 (-----) [005] .... 82316.291634: binder_transaction_alloc_buf: transaction=1570119 data_size=556 offsets_size=104
65547           <...>-27654 (-----) [005] ...2 82316.291648: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
65548           <...>-27654 (-----) [005] d..4 82316.291650: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65549           <...>-27654 (-----) [005] dn.5 82316.291662: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65550           <...>-27654 (-----) [005] d..2 82316.291668: sched_switch: prev_comm=id.nn.benchmark prev_pid=27654 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65551<...>-5340 ( 788) [005] .... 82316.291678: binder_transaction_received: transaction=1570119
65552<...>-5340 ( 788) [005] ...1 82316.291722: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
65553<...>-5340 ( 788) [005] d..2 82316.291766: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65554          <idle>-0     (-----) [001] d.s2 82316.291802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
65555<...>-5340 ( 788) [005] d.s3 82316.291814: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
65556          <idle>-0     (-----) [000] dnH2 82316.291815: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65557          <idle>-0     (-----) [001] dns3 82316.291821: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
65558          <idle>-0     (-----) [001] .n.1 82316.291829: cpu_idle: state=4294967295 cpu_id=1
65559          <idle>-0     (-----) [001] d..2 82316.291885: 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
65560     rcu_preempt-7     (    7) [001] d..2 82316.291896: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
65561<...>-5340 ( 788) [005] d..2 82316.291907: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27654 next_prio=110
65562          <idle>-0     (-----) [000] dnH3 82316.291917: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
65563          <idle>-0     (-----) [000] dnH4 82316.291936: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
65564     rcu_preempt-7     (    7) [001] d..3 82316.291939: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
65565          <idle>-0     (-----) [003] .n.1 82316.291941: cpu_idle: state=4294967295 cpu_id=3
65566           <...>-27654 (-----) [005] d..2 82316.291943: sched_switch: prev_comm=id.nn.benchmark prev_pid=27654 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65567     rcu_preempt-7     (    7) [001] d.h2 82316.291949: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
65568          <idle>-0     (-----) [003] d..2 82316.291951: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
65569          <idle>-0     (-----) [000] .n.1 82316.291956: cpu_idle: state=4294967295 cpu_id=0
65570          <idle>-0     (-----) [005] d..1 82316.291959: cpu_idle: state=0 cpu_id=5
65571     rcu_preempt-7     (    7) [001] d..2 82316.291966: 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
65572          <idle>-0     (-----) [000] d..2 82316.291968: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
65573         rcuop/4-45    (   45) [001] d..2 82316.291972: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=002
65574         sugov:0-576   (  576) [003] .... 82316.291987: clk_set_rate: pwrcl_clk 748800000
65575          <idle>-0     (-----) [002] ...1 82316.291991: cpu_idle: state=4294967295 cpu_id=2
65576          <idle>-0     (-----) [002] d..1 82316.291996: cpu_idle: state=0 cpu_id=2
65577         rcuop/4-45    (   45) [001] d..3 82316.292007: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
65578         sugov:0-576   (  576) [003] .... 82316.292008: clk_set_rate: cpu3_pwrcl_clk 825600000
65579<...>-87 ( 87) [000] d..2 82316.292017: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65580         sugov:0-576   (  576) [003] .... 82316.292018: clk_set_rate: cpu2_pwrcl_clk 825600000
65581          <idle>-0     (-----) [002] d.h4 82316.292018: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65582         rcuop/4-45    (   45) [001] d..2 82316.292020: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
65583<...>-8 ( 8) [001] d..2 82316.292025: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
65584         sugov:0-576   (  576) [003] .... 82316.292026: clk_set_rate: cpu1_pwrcl_clk 825600000
65585          <idle>-0     (-----) [000] d..1 82316.292032: cpu_idle: state=0 cpu_id=0
65586         sugov:0-576   (  576) [003] .... 82316.292034: clk_set_rate: cpu0_pwrcl_clk 748800000
65587          <idle>-0     (-----) [002] d.h5 82316.292065: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
65588<...>-8 ( 8) [001] d..3 82316.292065: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
65589          <idle>-0     (-----) [000] .n.1 82316.292072: cpu_idle: state=4294967295 cpu_id=0
65590          <idle>-0     (-----) [002] ...1 82316.292080: cpu_idle: state=4294967295 cpu_id=2
65591          <idle>-0     (-----) [000] d..2 82316.292086: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
65592<...>-8 ( 8) [001] d..2 82316.292093: 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
65593          <idle>-0     (-----) [002] d.h4 82316.292105: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65594          <idle>-0     (-----) [001] d..1 82316.292109: cpu_idle: state=0 cpu_id=1
65595          <idle>-0     (-----) [005] dnh2 82316.292127: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65596          <idle>-0     (-----) [005] .n.1 82316.292131: cpu_idle: state=4294967295 cpu_id=5
65597          <idle>-0     (-----) [005] d..2 82316.292139: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65598         sugov:0-576   (  576) [003] .... 82316.292147: cpu_frequency: state=748800 cpu_id=0
65599          <idle>-0     (-----) [002] d..1 82316.292151: cpu_idle: state=0 cpu_id=2
65600         sugov:0-576   (  576) [003] .... 82316.292171: cpu_frequency: state=748800 cpu_id=1
65601         sugov:0-576   (  576) [003] .... 82316.292176: cpu_frequency: state=748800 cpu_id=2
65602<...>-86 ( 86) [000] d..2 82316.292178: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65603         sugov:0-576   (  576) [003] .... 82316.292180: cpu_frequency: state=748800 cpu_id=3
65604          <idle>-0     (-----) [000] d..1 82316.292191: cpu_idle: state=0 cpu_id=0
65605<...>-5340 ( 788) [005] d..1 82316.292191: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
65606         sugov:0-576   (  576) [003] d..2 82316.292201: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
65607         rcuop/5-53    (   53) [003] d.h1 82316.292232: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
65608         rcuop/5-53    (   53) [003] d..2 82316.292345: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
65609<...>-5340 ( 788) [005] d..2 82316.292355: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65610<...>-46 ( 46) [003] d..2 82316.292359: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
65611<...>-46 ( 46) [003] d..3 82316.292376: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
65612          <idle>-0     (-----) [000] dnh2 82316.292378: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65613<...>-5340 ( 788) [005] d..2 82316.292381: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65614          <idle>-0     (-----) [001] .n.1 82316.292383: cpu_idle: state=4294967295 cpu_id=1
65615          <idle>-0     (-----) [000] .n.1 82316.292384: cpu_idle: state=4294967295 cpu_id=0
65616<...>-46 ( 46) [003] d..2 82316.292388: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
65617          <idle>-0     (-----) [005] d..1 82316.292395: cpu_idle: state=0 cpu_id=5
65618          <idle>-0     (-----) [001] d..2 82316.292396: 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
65619          <idle>-0     (-----) [000] d..2 82316.292397: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
65620<...>-8 ( 8) [001] d..2 82316.292422: 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
65621          <idle>-0     (-----) [001] d..1 82316.292433: cpu_idle: state=0 cpu_id=1
65622          <idle>-0     (-----) [002] d.h4 82316.292435: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
65623<...>-87 ( 87) [000] d..2 82316.292437: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65624 neuralnetworks@-13088 (  788) [003] d..2 82316.292446: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65625          <idle>-0     (-----) [000] dn.1 82316.292449: cpu_idle: state=0 cpu_id=0
65626          <idle>-0     (-----) [000] .n.1 82316.292453: cpu_idle: state=4294967295 cpu_id=0
65627          <idle>-0     (-----) [002] d.h5 82316.292453: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
65628          <idle>-0     (-----) [003] d..1 82316.292462: cpu_idle: state=0 cpu_id=3
65629          <idle>-0     (-----) [002] ...1 82316.292466: cpu_idle: state=4294967295 cpu_id=2
65630          <idle>-0     (-----) [000] d..2 82316.292469: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
65631          <idle>-0     (-----) [002] d..1 82316.292471: cpu_idle: state=0 cpu_id=2
65632<...>-86 ( 86) [000] d..2 82316.292505: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65633          <idle>-0     (-----) [000] d..1 82316.292517: cpu_idle: state=0 cpu_id=0
65634          <idle>-0     (-----) [003] d.h2 82316.292670: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
65635          <idle>-0     (-----) [003] dnh3 82316.292688: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
65636          <idle>-0     (-----) [003] .n.1 82316.292698: cpu_idle: state=4294967295 cpu_id=3
65637          <idle>-0     (-----) [003] d..2 82316.292708: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
65638          <idle>-0     (-----) [005] ...1 82316.292727: cpu_idle: state=4294967295 cpu_id=5
65639          <idle>-0     (-----) [005] d..1 82316.292730: cpu_idle: state=0 cpu_id=5
65640        DispSync-8879  ( 8858) [003] d..1 82316.292731: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
65641        DispSync-8879  ( 8858) [003] d..2 82316.292755: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
65642          <idle>-0     (-----) [002] .n.1 82316.292761: cpu_idle: state=4294967295 cpu_id=2
65643          <idle>-0     (-----) [002] d..2 82316.292773: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
65644        DispSync-8879  ( 8858) [003] d..2 82316.292791: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65645          <idle>-0     (-----) [003] d..1 82316.292804: cpu_idle: state=0 cpu_id=3
65646  appEventThread-8881  ( 8858) [002] d..3 82316.292844: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
65647  appEventThread-8881  ( 8858) [002] d..4 82316.292868: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
65648          <idle>-0     (-----) [000] .n.1 82316.292874: cpu_idle: state=4294967295 cpu_id=0
65649          <idle>-0     (-----) [000] d..2 82316.292887: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
65650  appEventThread-8881  ( 8858) [002] d..2 82316.292918: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65651          <idle>-0     (-----) [002] d..1 82316.292935: cpu_idle: state=0 cpu_id=2
65652<...>-9105 ( 9105) [000] .... 82316.293232: binder_transaction: transaction=1570122 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
65653<...>-9105 ( 9105) [000] .... 82316.293239: binder_transaction_alloc_buf: transaction=1570122 data_size=80 offsets_size=0
65654<...>-9105 ( 9105) [000] d..4 82316.293246: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
65655<...>-9105 ( 9105) [000] d..5 82316.293284: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
65656          <idle>-0     (-----) [001] .n.1 82316.293289: cpu_idle: state=4294967295 cpu_id=1
65657          <idle>-0     (-----) [001] d..2 82316.293337: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
65658<...>-13083 ( 8858) [001] .... 82316.293347: binder_transaction_received: transaction=1570122
65659<...>-9105 ( 9105) [000] d..3 82316.293373: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
65660<...>-13083 ( 8858) [001] d..1 82316.293393: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
65661<...>-9105 ( 9105) [000] d..4 82316.293409: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
65662          <idle>-0     (-----) [002] .n.1 82316.293416: cpu_idle: state=4294967295 cpu_id=2
65663<...>-13083 ( 8858) [001] d..2 82316.293427: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
65664          <idle>-0     (-----) [002] d..2 82316.293429: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
65665          <idle>-0     (-----) [003] .n.1 82316.293433: cpu_idle: state=4294967295 cpu_id=3
65666          <idle>-0     (-----) [003] d..2 82316.293469: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
65667<...>-13083 ( 8858) [001] d..2 82316.293488: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65668    RenderThread-9436  ( 9105) [002] d..2 82316.293493: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65669          <idle>-0     (-----) [001] d..1 82316.293505: cpu_idle: state=0 cpu_id=1
65670          <idle>-0     (-----) [002] d..1 82316.293509: cpu_idle: state=0 cpu_id=2
65671  appEventThread-8881  ( 8858) [003] d..2 82316.293530: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65672          <idle>-0     (-----) [003] d..1 82316.293542: cpu_idle: state=0 cpu_id=3
65673<...>-9105 ( 9105) [000] d..3 82316.293599: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
65674<...>-9105 ( 9105) [000] d..4 82316.293620: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
65675          <idle>-0     (-----) [002] .n.1 82316.293626: cpu_idle: state=4294967295 cpu_id=2
65676          <idle>-0     (-----) [002] d..2 82316.293639: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
65677<...>-9105 ( 9105) [000] d..2 82316.293657: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65678          <idle>-0     (-----) [000] d..1 82316.293676: cpu_idle: state=0 cpu_id=0
65679    RenderThread-9436  ( 9105) [002] d..1 82316.293766: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
65680    RenderThread-9436  ( 9105) [002] d..2 82316.293786: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
65681          <idle>-0     (-----) [000] .n.1 82316.293792: cpu_idle: state=4294967295 cpu_id=0
65682          <idle>-0     (-----) [000] d..2 82316.293807: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
65683    RenderThread-9436  ( 9105) [002] .... 82316.293860: binder_transaction: transaction=1570123 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
65684    RenderThread-9436  ( 9105) [002] .... 82316.293866: binder_transaction_alloc_buf: transaction=1570123 data_size=104 offsets_size=0
65685    RenderThread-9436  ( 9105) [002] d..4 82316.293871: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
65686    RenderThread-9436  ( 9105) [002] dn.5 82316.293894: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
65687<...>-9105 ( 9105) [000] d..2 82316.293896: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65688    RenderThread-9436  ( 9105) [002] d..2 82316.293905: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
65689          <idle>-0     (-----) [000] d..1 82316.293911: cpu_idle: state=0 cpu_id=0
65690<...>-13083 ( 8858) [002] .... 82316.293914: binder_transaction_received: transaction=1570123
65691<...>-13083 ( 8858) [002] .... 82316.293999: binder_transaction: transaction=1570124 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
65692<...>-13083 ( 8858) [002] .... 82316.294004: binder_transaction_alloc_buf: transaction=1570124 data_size=52 offsets_size=8
65693<...>-13083 ( 8858) [002] d..2 82316.294060: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
65694    RenderThread-9436  ( 9105) [002] d.h4 82316.294092: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65695          <idle>-0     (-----) [005] dnh2 82316.294114: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65696          <idle>-0     (-----) [005] .n.1 82316.294117: cpu_idle: state=4294967295 cpu_id=5
65697          <idle>-0     (-----) [005] d..2 82316.294125: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65698    RenderThread-9436  ( 9105) [002] .... 82316.294135: binder_transaction_received: transaction=1570124
65699<...>-5340 ( 788) [005] d..1 82316.294177: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
65700          <idle>-0     (-----) [003] dnh2 82316.294204: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
65701          <idle>-0     (-----) [003] .n.1 82316.294211: cpu_idle: state=4294967295 cpu_id=3
65702          <idle>-0     (-----) [003] d..2 82316.294222: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
65703<...>-5340 ( 788) [005] ...1 82316.294272: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
65704<...>-5340 ( 788) [005] ...1 82316.294276: tracing_mark_write: E|788
65705<...>-5340 ( 788) [005] .... 82316.294292: binder_transaction: transaction=1570125 dest_node=1570120 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
65706<...>-5340 ( 788) [005] .... 82316.294295: binder_transaction_alloc_buf: transaction=1570125 data_size=60 offsets_size=0
65707 neuralnetworks@-13088 (  788) [003] d..2 82316.294295: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65708<...>-5340 ( 788) [005] d..4 82316.294298: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
65709          <idle>-0     (-----) [003] d..1 82316.294307: cpu_idle: state=0 cpu_id=3
65710<...>-5340 ( 788) [005] d..5 82316.294311: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
65711          <idle>-0     (-----) [004] .n.1 82316.294317: cpu_idle: state=4294967295 cpu_id=4
65712          <idle>-0     (-----) [004] d..2 82316.294326: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
65713           <...>-27571 (-----) [004] .... 82316.294331: binder_transaction_received: transaction=1570125
65714<...>-5340 ( 788) [005] ...1 82316.294333: tracing_mark_write: E|788
65715<...>-5340 ( 788) [005] .... 82316.294340: binder_transaction: transaction=1570126 dest_node=0 dest_proc=27550 dest_thread=27654 reply=1 flags=0x0 code=0x0
65716<...>-5340 ( 788) [005] .... 82316.294342: binder_transaction_alloc_buf: transaction=1570126 data_size=8 offsets_size=0
65717<...>-5340 ( 788) [005] d..2 82316.294344: sched_waking: comm=id.nn.benchmark pid=27654 prio=110 target_cpu=005
65718           <...>-27571 (-----) [004] ...1 82316.294350: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
65719<...>-5340 ( 788) [005] d..3 82316.294351: sched_wakeup: comm=id.nn.benchmark pid=27654 prio=110 target_cpu=005
65720<...>-5340 ( 788) [005] .... 82316.294352: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
65721           <...>-27571 (-----) [004] ...1 82316.294356: tracing_mark_write: E|27550
65722           <...>-27571 (-----) [004] d..2 82316.294385: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65723          <idle>-0     (-----) [004] d..1 82316.294392: cpu_idle: state=0 cpu_id=4
65724<...>-5340 ( 788) [005] d..2 82316.294394: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27654 next_prio=110
65725           <...>-27654 (-----) [005] .... 82316.294404: binder_transaction_received: transaction=1570126
65726           <...>-27654 (-----) [005] ...1 82316.294441: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
65727           <...>-27654 (-----) [005] ...1 82316.294447: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
65728           <...>-27654 (-----) [005] ...1 82316.294473: tracing_mark_write: E|27550
65729           <...>-27654 (-----) [005] ...1 82316.294476: tracing_mark_write: E|27550
65730           <...>-27654 (-----) [005] ...1 82316.294480: tracing_mark_write: E|27550
65731           <...>-27654 (-----) [005] ...1 82316.294669: tracing_mark_write: E|27550
65732           <...>-27654 (-----) [005] d..1 82316.294682: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65733           <...>-27654 (-----) [005] d..2 82316.294700: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65734          <idle>-0     (-----) [004] .n.1 82316.294705: cpu_idle: state=4294967295 cpu_id=4
65735          <idle>-0     (-----) [004] d..2 82316.294712: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
65736           <...>-27550 (-----) [004] d..2 82316.294731: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65737          <idle>-0     (-----) [004] d..1 82316.294740: cpu_idle: state=0 cpu_id=4
65738           <...>-27654 (-----) [005] d..1 82316.294787: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65739           <...>-27654 (-----) [005] d..2 82316.294796: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
65740          <idle>-0     (-----) [004] .n.1 82316.294801: cpu_idle: state=4294967295 cpu_id=4
65741          <idle>-0     (-----) [004] d..2 82316.294809: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
65742           <...>-27654 (-----) [005] d..2 82316.294835: sched_switch: prev_comm=id.nn.benchmark prev_pid=27654 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
65743           <...>-27550 (-----) [004] ...1 82316.294842: tracing_mark_write: E|27550
65744           <...>-27550 (-----) [004] ...1 82316.294846: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
65745           <...>-27550 (-----) [004] ...1 82316.294852: tracing_mark_write: E|27550
65746           <...>-27550 (-----) [004] ...1 82316.294856: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
65747          <idle>-0     (-----) [005] d..1 82316.294856: cpu_idle: state=0 cpu_id=5
65748           <...>-27550 (-----) [004] ...1 82316.294860: tracing_mark_write: E|27550
65749           <...>-27550 (-----) [004] ...1 82316.294864: tracing_mark_write: E|27550
65750           <...>-27550 (-----) [004] ...1 82316.294976: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
65751           <...>-27550 (-----) [004] ...1 82316.295034: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
65752           <...>-27550 (-----) [004] ...1 82316.295038: tracing_mark_write: E|27550
65753           <...>-27550 (-----) [004] ...1 82316.295042: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
65754           <...>-27550 (-----) [004] ...1 82316.295047: tracing_mark_write: E|27550
65755           <...>-27550 (-----) [004] ...1 82316.295051: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
65756           <...>-27550 (-----) [004] ...1 82316.295054: tracing_mark_write: E|27550
65757           <...>-27550 (-----) [004] ...1 82316.295058: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
65758           <...>-27550 (-----) [004] d.s2 82316.295138: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
65759    RenderThread-9436  ( 9105) [002] dnH2 82316.295166: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
65760    RenderThread-9436  ( 9105) [002] d..2 82316.295181: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
65761          <idle>-0     (-----) [005] .n.1 82316.295206: cpu_idle: state=4294967295 cpu_id=5
65762           <...>-27550 (-----) [004] ...1 82316.295208: tracing_mark_write: E|27550
65763           <...>-27550 (-----) [004] ...1 82316.295214: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
65764          <idle>-0     (-----) [005] d..2 82316.295216: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27655 next_prio=110
65765           <...>-27550 (-----) [004] d..2 82316.295234: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65766          <idle>-0     (-----) [004] d..1 82316.295249: cpu_idle: state=0 cpu_id=4
65767           <...>-27655 (-----) [005] ...1 82316.295275: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
65768           <...>-27655 (-----) [005] ...1 82316.295289: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
65769           <...>-27655 (-----) [005] ...1 82316.295293: tracing_mark_write: E|27550
65770           <...>-27655 (-----) [005] .... 82316.295315: binder_transaction: transaction=1570127 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
65771           <...>-27655 (-----) [005] .... 82316.295318: binder_transaction_alloc_buf: transaction=1570127 data_size=48 offsets_size=0
65772           <...>-27655 (-----) [005] ...2 82316.295321: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
65773           <...>-27655 (-----) [005] d..4 82316.295324: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
65774           <...>-27655 (-----) [005] dn.5 82316.295336: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
65775           <...>-27655 (-----) [005] d..2 82316.295342: sched_switch: prev_comm=id.nn.benchmark prev_pid=27655 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
65776<...>-770 ( 770) [005] .... 82316.295353: binder_transaction_received: transaction=1570127
65777  kworker/u16:13-1147  ( 1147) [002] d..2 82316.295370: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=RenderThread next_pid=9436 next_prio=120
65778<...>-770 ( 770) [005] ...1 82316.295378: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
65779          <idle>-0     (-----) [001] d.s3 82316.295407: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
65780          <idle>-0     (-----) [001] d.s4 82316.295433: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
65781          <idle>-0     (-----) [001] dns4 82316.295439: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
65782          <idle>-0     (-----) [001] .n.1 82316.295448: cpu_idle: state=4294967295 cpu_id=1
65783<...>-770 ( 770) [005] d..2 82316.295461: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
65784          <idle>-0     (-----) [001] d..2 82316.295463: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
65785  kworker/u16:13-1147  ( 1147) [001] d..2 82316.295507: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65786<...>-770 ( 770) [005] ...1 82316.295518: tracing_mark_write: E|770
65787          <idle>-0     (-----) [001] dnh3 82316.295520: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
65788<...>-770 ( 770) [005] .... 82316.295526: binder_transaction: transaction=1570128 dest_node=0 dest_proc=27550 dest_thread=27655 reply=1 flags=0x0 code=0x0
65789<...>-770 ( 770) [005] .... 82316.295529: binder_transaction_alloc_buf: transaction=1570128 data_size=168 offsets_size=32
65790          <idle>-0     (-----) [001] d..2 82316.295530: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
65791    RenderThread-9436  ( 9105) [002] d..2 82316.295536: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
65792<...>-770 ( 770) [005] .... 82316.295536: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
65793          <idle>-0     (-----) [002] d..1 82316.295552: cpu_idle: state=0 cpu_id=2
65794<...>-770 ( 770) [005] d..2 82316.295574: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27655 next_prio=110
65795           <...>-27655 (-----) [005] .... 82316.295585: binder_transaction_received: transaction=1570128
65796          <idle>-0     (-----) [002] d.h2 82316.295622: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
65797          <idle>-0     (-----) [002] d.h3 82316.295633: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
65798<...>-581 ( 571) [001] d..2 82316.295636: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65799          <idle>-0     (-----) [002] dnh3 82316.295638: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
65800          <idle>-0     (-----) [002] .n.1 82316.295648: cpu_idle: state=4294967295 cpu_id=2
65801          <idle>-0     (-----) [001] d..1 82316.295650: cpu_idle: state=0 cpu_id=1
65802           <...>-27655 (-----) [005] ...1 82316.295660: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
65803          <idle>-0     (-----) [002] d..2 82316.295661: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
65804          <idle>-0     (-----) [000] d.h3 82316.295664: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
65805           <...>-27655 (-----) [005] ...1 82316.295665: tracing_mark_write: E|27550
65806           <...>-27655 (-----) [005] .... 82316.295680: binder_transaction: transaction=1570129 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
65807           <...>-27655 (-----) [005] .... 82316.295683: binder_transaction_alloc_buf: transaction=1570129 data_size=48 offsets_size=0
65808          <idle>-0     (-----) [000] dnh4 82316.295683: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
65809           <...>-27655 (-----) [005] ...2 82316.295685: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
65810           <...>-27655 (-----) [005] d..4 82316.295687: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
65811           <...>-27655 (-----) [005] dn.5 82316.295697: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
65812          <idle>-0     (-----) [000] .n.1 82316.295697: cpu_idle: state=4294967295 cpu_id=0
65813           <...>-27655 (-----) [005] d..2 82316.295703: sched_switch: prev_comm=id.nn.benchmark prev_pid=27655 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
65814          <idle>-0     (-----) [000] d..2 82316.295709: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
65815<...>-770 ( 770) [005] .... 82316.295711: binder_transaction_received: transaction=1570129
65816<...>-770 ( 770) [005] ...1 82316.295729: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
65817 kgsl_worker_thr-258   (  258) [000] d..2 82316.295764: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
65818 kgsl_worker_thr-258   (  258) [000] d..3 82316.295782: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
65819<...>-770 ( 770) [005] d..2 82316.295787: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
65820          <idle>-0     (-----) [001] .n.1 82316.295788: cpu_idle: state=4294967295 cpu_id=1
65821          <idle>-0     (-----) [001] d..2 82316.295799: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
65822 kgsl_worker_thr-258   (  258) [000] d..2 82316.295818: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65823          <idle>-0     (-----) [000] dnh3 82316.295831: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
65824          <idle>-0     (-----) [000] d..2 82316.295843: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
65825<...>-770 ( 770) [005] ...1 82316.295845: tracing_mark_write: E|770
65826  kworker/u16:13-1147  ( 1147) [001] d..2 82316.295849: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65827<...>-770 ( 770) [005] .... 82316.295853: binder_transaction: transaction=1570130 dest_node=0 dest_proc=27550 dest_thread=27655 reply=1 flags=0x0 code=0x0
65828<...>-770 ( 770) [005] .... 82316.295856: binder_transaction_alloc_buf: transaction=1570130 data_size=168 offsets_size=32
65829          <idle>-0     (-----) [001] d..1 82316.295858: cpu_idle: state=0 cpu_id=1
65830<...>-770 ( 770) [005] .... 82316.295862: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
65831    RenderThread-9436  ( 9105) [002] .... 82316.295881: binder_transaction: transaction=1570131 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
65832    RenderThread-9436  ( 9105) [002] .... 82316.295887: binder_transaction_alloc_buf: transaction=1570131 data_size=192 offsets_size=8
65833<...>-770 ( 770) [005] d..2 82316.295898: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27655 next_prio=110
65834    RenderThread-9436  ( 9105) [002] d..4 82316.295899: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
65835           <...>-27655 (-----) [005] .... 82316.295908: binder_transaction_received: transaction=1570130
65836    RenderThread-9436  ( 9105) [002] dn.5 82316.295917: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
65837    RenderThread-9436  ( 9105) [002] d..2 82316.295927: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
65838<...>-581 ( 571) [000] d..2 82316.295933: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65839<...>-13083 ( 8858) [002] .... 82316.295937: binder_transaction_received: transaction=1570131
65840          <idle>-0     (-----) [000] d..1 82316.295947: cpu_idle: state=0 cpu_id=0
65841<...>-13083 ( 8858) [002] .... 82316.296108: binder_transaction: transaction=1570132 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
65842<...>-13083 ( 8858) [002] .... 82316.296114: binder_transaction_alloc_buf: transaction=1570132 data_size=68 offsets_size=0
65843<...>-13083 ( 8858) [002] d..2 82316.296161: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
65844    RenderThread-9436  ( 9105) [002] .... 82316.296172: binder_transaction_received: transaction=1570132
65845           <...>-27655 (-----) [005] ...1 82316.296187: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
65846           <...>-27655 (-----) [005] ...1 82316.296197: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
65847           <...>-27655 (-----) [005] ...1 82316.296201: tracing_mark_write: E|27550
65848           <...>-27655 (-----) [005] .... 82316.296264: binder_transaction: transaction=1570133 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
65849           <...>-27655 (-----) [005] .... 82316.296267: binder_transaction_alloc_buf: transaction=1570133 data_size=556 offsets_size=104
65850    RenderThread-9436  ( 9105) [002] d..2 82316.296269: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65851           <...>-27655 (-----) [005] ...2 82316.296281: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
65852           <...>-27655 (-----) [005] d..4 82316.296284: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65853          <idle>-0     (-----) [002] d..1 82316.296290: cpu_idle: state=0 cpu_id=2
65854           <...>-27655 (-----) [005] dn.5 82316.296295: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65855           <...>-27655 (-----) [005] d..2 82316.296302: sched_switch: prev_comm=id.nn.benchmark prev_pid=27655 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65856<...>-5340 ( 788) [005] .... 82316.296312: binder_transaction_received: transaction=1570133
65857<...>-5340 ( 788) [005] ...1 82316.296364: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
65858<...>-5340 ( 788) [005] d..2 82316.296414: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65859<...>-5340 ( 788) [005] d..2 82316.296439: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27655 next_prio=110
65860          <idle>-0     (-----) [000] dnh2 82316.296445: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65861          <idle>-0     (-----) [000] .n.1 82316.296452: cpu_idle: state=4294967295 cpu_id=0
65862           <...>-27655 (-----) [005] d..2 82316.296461: sched_switch: prev_comm=id.nn.benchmark prev_pid=27655 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65863          <idle>-0     (-----) [000] d..2 82316.296462: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
65864          <idle>-0     (-----) [005] d..1 82316.296479: cpu_idle: state=0 cpu_id=5
65865<...>-87 ( 87) [000] d..2 82316.296509: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65866          <idle>-0     (-----) [000] d..1 82316.296519: cpu_idle: state=0 cpu_id=0
65867          <idle>-0     (-----) [002] d.h4 82316.296522: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
65868          <idle>-0     (-----) [002] dnh5 82316.296563: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65869          <idle>-0     (-----) [002] .n.1 82316.296576: cpu_idle: state=4294967295 cpu_id=2
65870          <idle>-0     (-----) [002] dnh4 82316.296604: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65871          <idle>-0     (-----) [005] dnh2 82316.296626: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65872          <idle>-0     (-----) [003] d.h2 82316.296631: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
65873          <idle>-0     (-----) [005] .n.1 82316.296631: cpu_idle: state=4294967295 cpu_id=5
65874          <idle>-0     (-----) [005] d..2 82316.296639: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65875          <idle>-0     (-----) [003] dnh3 82316.296645: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
65876          <idle>-0     (-----) [002] d..2 82316.296652: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
65877          <idle>-0     (-----) [003] .n.1 82316.296654: cpu_idle: state=4294967295 cpu_id=3
65878          <idle>-0     (-----) [003] d..2 82316.296665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
65879        DispSync-8879  ( 8858) [003] d..1 82316.296682: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
65880<...>-86 ( 86) [002] d..2 82316.296692: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65881<...>-5340 ( 788) [005] d..1 82316.296693: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
65882        DispSync-8879  ( 8858) [003] d..2 82316.296700: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
65883          <idle>-0     (-----) [001] .n.1 82316.296706: cpu_idle: state=4294967295 cpu_id=1
65884          <idle>-0     (-----) [002] d..1 82316.296708: cpu_idle: state=0 cpu_id=2
65885          <idle>-0     (-----) [001] d..2 82316.296714: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
65886          <idle>-0     (-----) [002] dnh2 82316.296726: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
65887          <idle>-0     (-----) [002] .n.1 82316.296734: cpu_idle: state=4294967295 cpu_id=2
65888        DispSync-8879  ( 8858) [003] d..2 82316.296734: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65889          <idle>-0     (-----) [002] d..2 82316.296746: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
65890          <idle>-0     (-----) [003] d..1 82316.296750: cpu_idle: state=0 cpu_id=3
65891   sfEventThread-8882  ( 8858) [001] d..3 82316.296760: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
65892   sfEventThread-8882  ( 8858) [001] d..4 82316.296784: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
65893          <idle>-0     (-----) [003] .n.1 82316.296790: cpu_idle: state=4294967295 cpu_id=3
65894          <idle>-0     (-----) [003] d..2 82316.296801: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
65895 neuralnetworks@-13088 (  788) [002] d..2 82316.296803: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65896          <idle>-0     (-----) [002] d..1 82316.296819: cpu_idle: state=0 cpu_id=2
65897   sfEventThread-8882  ( 8858) [001] d..2 82316.296821: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65898          <idle>-0     (-----) [001] d..1 82316.296832: cpu_idle: state=0 cpu_id=1
65899<...>-5340 ( 788) [005] d..2 82316.296846: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65900          <idle>-0     (-----) [000] dnh2 82316.296868: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
65901<...>-5340 ( 788) [005] d..2 82316.296872: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
65902          <idle>-0     (-----) [000] .n.1 82316.296874: cpu_idle: state=4294967295 cpu_id=0
65903          <idle>-0     (-----) [000] d..2 82316.296883: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
65904          <idle>-0     (-----) [005] d..1 82316.296887: cpu_idle: state=0 cpu_id=5
65905<...>-87 ( 87) [000] d..2 82316.296920: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65906          <idle>-0     (-----) [002] d.h4 82316.296924: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65907          <idle>-0     (-----) [000] d..1 82316.296929: cpu_idle: state=0 cpu_id=0
65908          <idle>-0     (-----) [002] dnh5 82316.296937: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
65909          <idle>-0     (-----) [002] .n.1 82316.296948: cpu_idle: state=4294967295 cpu_id=2
65910          <idle>-0     (-----) [002] d..2 82316.296960: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
65911<...>-86 ( 86) [002] d..2 82316.296997: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65912          <idle>-0     (-----) [002] d..1 82316.297011: cpu_idle: state=0 cpu_id=2
65913  surfaceflinger-8858  ( 8858) [003] d..1 82316.297153: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
65914  surfaceflinger-8858  ( 8858) [003] d..2 82316.297175: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
65915          <idle>-0     (-----) [001] .n.1 82316.297181: cpu_idle: state=4294967295 cpu_id=1
65916          <idle>-0     (-----) [001] d..2 82316.297189: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
65917   sfEventThread-8882  ( 8858) [001] d..2 82316.297227: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
65918          <idle>-0     (-----) [005] ...1 82316.297229: cpu_idle: state=4294967295 cpu_id=5
65919          <idle>-0     (-----) [005] d..1 82316.297232: cpu_idle: state=0 cpu_id=5
65920          <idle>-0     (-----) [001] d..1 82316.297236: cpu_idle: state=0 cpu_id=1
65921  surfaceflinger-8858  ( 8858) [003] ...1 82316.297381: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
65922  surfaceflinger-8858  ( 8858) [003] ...1 82316.297389: tracing_mark_write: E|8858
65923  surfaceflinger-8858  ( 8858) [003] .... 82316.297449: binder_transaction: transaction=1570136 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
65924  surfaceflinger-8858  ( 8858) [003] .... 82316.297454: binder_transaction_alloc_buf: transaction=1570136 data_size=540 offsets_size=96
65925  surfaceflinger-8858  ( 8858) [003] ...2 82316.297482: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
65926  surfaceflinger-8858  ( 8858) [003] d..4 82316.297491: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
65927  surfaceflinger-8858  ( 8858) [003] d..5 82316.297512: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
65928          <idle>-0     (-----) [001] .n.1 82316.297518: cpu_idle: state=4294967295 cpu_id=1
65929          <idle>-0     (-----) [001] d..2 82316.297526: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
65930 [email protected]   (  619) [001] .... 82316.297538: binder_transaction_received: transaction=1570136
65931  surfaceflinger-8858  ( 8858) [003] d..2 82316.297546: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
65932          <idle>-0     (-----) [003] d..1 82316.297566: cpu_idle: state=0 cpu_id=3
65933 [email protected]   (  619) [001] ...1 82316.297586: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
65934 [email protected]   (  619) [001] ...1 82316.297715: tracing_mark_write: B|619|HWCSession::PresentDisplay::
65935 [email protected]   (  619) [001] ...1 82316.297908: tracing_mark_write: B|619|HWDeviceDRM::Commit::
65936 [email protected]   (  619) [001] ...1 82316.297923: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
65937          <idle>-0     (-----) [002] ...1 82316.298131: cpu_idle: state=4294967295 cpu_id=2
65938          <idle>-0     (-----) [002] d..1 82316.298136: cpu_idle: state=0 cpu_id=2
65939          <idle>-0     (-----) [000] d.s2 82316.298470: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=000
65940 [email protected]   (  619) [001] d.s1 82316.298485: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
65941          <idle>-0     (-----) [000] dns3 82316.298494: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=000
65942 [email protected]   (  619) [001] d.s2 82316.298510: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
65943 [email protected]   (  619) [001] d.s1 82316.298513: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
65944          <idle>-0     (-----) [000] .n.1 82316.298516: cpu_idle: state=4294967295 cpu_id=0
65945          <idle>-0     (-----) [000] d..2 82316.298527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kswapd0 next_pid=142 next_prio=120
65946 [email protected]   (  619) [001] d.s2 82316.298528: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
65947 [email protected]   (  619) [001] d.s2 82316.298535: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
65948          <idle>-0     (-----) [002] d.h4 82316.298559: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65949<...>-142 ( 142) [000] d..2 82316.298563: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
65950          <idle>-0     (-----) [000] dn.1 82316.298577: cpu_idle: state=0 cpu_id=0
65951          <idle>-0     (-----) [005] dnh2 82316.298580: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
65952 [email protected]   (  619) [001] d.s3 82316.298581: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
65953          <idle>-0     (-----) [005] .n.1 82316.298584: cpu_idle: state=4294967295 cpu_id=5
65954          <idle>-0     (-----) [000] .n.1 82316.298585: cpu_idle: state=4294967295 cpu_id=0
65955          <idle>-0     (-----) [005] d..2 82316.298593: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
65956          <idle>-0     (-----) [000] d..2 82316.298599: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
65957          <idle>-0     (-----) [002] ...1 82316.298603: cpu_idle: state=4294967295 cpu_id=2
65958          <idle>-0     (-----) [002] d..1 82316.298612: cpu_idle: state=0 cpu_id=2
65959<...>-5340 ( 788) [005] d..1 82316.298646: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
65960          <idle>-0     (-----) [002] dnh2 82316.298672: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
65961  kworker/u16:13-1147  ( 1147) [000] .... 82316.298672: clk_set_rate: l3_cluster0_vote_clk 403200000
65962          <idle>-0     (-----) [002] .n.1 82316.298680: cpu_idle: state=4294967295 cpu_id=2
65963          <idle>-0     (-----) [002] d..2 82316.298692: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
65964<...>-5340 ( 788) [005] ...1 82316.298754: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
65965<...>-5340 ( 788) [005] ...1 82316.298758: tracing_mark_write: E|788
65966 neuralnetworks@-13088 (  788) [002] d..2 82316.298763: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
65967<...>-5340 ( 788) [005] .... 82316.298775: binder_transaction: transaction=1570137 dest_node=1570134 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
65968          <idle>-0     (-----) [002] d..1 82316.298778: cpu_idle: state=0 cpu_id=2
65969<...>-5340 ( 788) [005] .... 82316.298778: binder_transaction_alloc_buf: transaction=1570137 data_size=60 offsets_size=0
65970<...>-5340 ( 788) [005] d..4 82316.298781: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
65971<...>-5340 ( 788) [005] d..5 82316.298794: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
65972          <idle>-0     (-----) [004] .n.1 82316.298800: cpu_idle: state=4294967295 cpu_id=4
65973 [email protected]   (  619) [001] d..2 82316.298806: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
65974          <idle>-0     (-----) [004] d..2 82316.298808: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
65975           <...>-27571 (-----) [004] .... 82316.298813: binder_transaction_received: transaction=1570137
65976<...>-5340 ( 788) [005] ...1 82316.298816: tracing_mark_write: E|788
65977<...>-5340 ( 788) [005] .... 82316.298822: binder_transaction: transaction=1570138 dest_node=0 dest_proc=27550 dest_thread=27655 reply=1 flags=0x0 code=0x0
65978<...>-5340 ( 788) [005] .... 82316.298824: binder_transaction_alloc_buf: transaction=1570138 data_size=8 offsets_size=0
65979<...>-5340 ( 788) [005] d..2 82316.298826: sched_waking: comm=id.nn.benchmark pid=27655 prio=110 target_cpu=005
65980 [email protected]   (  619) [001] d..3 82316.298831: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
65981           <...>-27571 (-----) [004] ...1 82316.298832: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
65982<...>-5340 ( 788) [005] d..3 82316.298833: sched_wakeup: comm=id.nn.benchmark pid=27655 prio=110 target_cpu=005
65983<...>-5340 ( 788) [005] .... 82316.298835: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
65984          <idle>-0     (-----) [002] .n.1 82316.298838: cpu_idle: state=4294967295 cpu_id=2
65985           <...>-27571 (-----) [004] ...1 82316.298838: tracing_mark_write: E|27550
65986          <idle>-0     (-----) [002] d..2 82316.298848: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
65987           <...>-27571 (-----) [004] d..2 82316.298869: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
65988          <idle>-0     (-----) [004] d..1 82316.298876: cpu_idle: state=0 cpu_id=4
65989<...>-5340 ( 788) [005] d..2 82316.298878: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27655 next_prio=110
65990           <...>-27655 (-----) [005] .... 82316.298888: binder_transaction_received: transaction=1570138
65991           <...>-27655 (-----) [005] ...1 82316.298925: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
65992  kworker/u16:13-1147  ( 1147) [000] d..2 82316.298928: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
65993           <...>-27655 (-----) [005] ...1 82316.298931: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
65994          <idle>-0     (-----) [000] d..1 82316.298944: cpu_idle: state=0 cpu_id=0
65995 [email protected]   (  619) [001] d.s1 82316.298950: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
65996           <...>-27655 (-----) [005] ...1 82316.298957: tracing_mark_write: E|27550
65997          <idle>-0     (-----) [003] ...1 82316.298959: cpu_idle: state=4294967295 cpu_id=3
65998           <...>-27655 (-----) [005] ...1 82316.298960: tracing_mark_write: E|27550
65999           <...>-27655 (-----) [005] ...1 82316.298964: tracing_mark_write: E|27550
66000          <idle>-0     (-----) [003] d..1 82316.298965: cpu_idle: state=0 cpu_id=3
66001 [email protected]   (  619) [001] d.s2 82316.298968: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
66002 [email protected]   (  619) [001] ...1 82316.299012: tracing_mark_write: E|619
66003 [email protected]   (  619) [001] ...1 82316.299019: tracing_mark_write: E|619
66004 [email protected]   (  619) [001] ...1 82316.299122: tracing_mark_write: E|619
66005           <...>-27655 (-----) [005] ...1 82316.299155: tracing_mark_write: E|27550
66006           <...>-27655 (-----) [005] d..1 82316.299168: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66007 [email protected]   (  619) [001] ...1 82316.299170: tracing_mark_write: E|619
66008           <...>-27655 (-----) [005] d..2 82316.299183: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66009 [email protected]   (  619) [001] .... 82316.299186: binder_transaction: transaction=1570139 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
66010          <idle>-0     (-----) [004] .n.1 82316.299188: cpu_idle: state=4294967295 cpu_id=4
66011 [email protected]   (  619) [001] .... 82316.299191: binder_transaction_alloc_buf: transaction=1570139 data_size=576 offsets_size=112
66012          <idle>-0     (-----) [004] d..2 82316.299195: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
66013 [email protected]   (  619) [001] d..2 82316.299214: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
66014           <...>-27550 (-----) [004] d..2 82316.299215: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66015          <idle>-0     (-----) [004] d..1 82316.299224: cpu_idle: state=0 cpu_id=4
66016 [email protected]   (  619) [001] d..3 82316.299233: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
66017          <idle>-0     (-----) [003] .n.1 82316.299238: cpu_idle: state=4294967295 cpu_id=3
66018 [email protected]   (  619) [001] .... 82316.299238: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
66019          <idle>-0     (-----) [003] d..2 82316.299250: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
66020  surfaceflinger-8858  ( 8858) [003] .... 82316.299258: binder_transaction_received: transaction=1570139
66021           <...>-27655 (-----) [005] d..1 82316.299275: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66022           <...>-27655 (-----) [005] d..2 82316.299284: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66023          <idle>-0     (-----) [004] .n.1 82316.299289: cpu_idle: state=4294967295 cpu_id=4
66024          <idle>-0     (-----) [004] d..2 82316.299297: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
66025 [email protected]   (  619) [001] d..2 82316.299319: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
66026           <...>-27655 (-----) [005] d..2 82316.299323: sched_switch: prev_comm=id.nn.benchmark prev_pid=27655 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
66027           <...>-27550 (-----) [004] ...1 82316.299334: tracing_mark_write: E|27550
66028           <...>-27550 (-----) [004] ...1 82316.299338: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
66029          <idle>-0     (-----) [005] d..1 82316.299344: cpu_idle: state=0 cpu_id=5
66030           <...>-27550 (-----) [004] ...1 82316.299344: tracing_mark_write: E|27550
66031<...>-8 ( 8) [001] d..2 82316.299346: 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
66032           <...>-27550 (-----) [004] ...1 82316.299348: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
66033           <...>-27550 (-----) [004] ...1 82316.299352: tracing_mark_write: E|27550
66034           <...>-27550 (-----) [004] ...1 82316.299357: tracing_mark_write: E|27550
66035     rcu_preempt-7     (    7) [001] d..2 82316.299363: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
66036     ksoftirqd/1-18    (   18) [001] d.s2 82316.299382: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
66037     ksoftirqd/1-18    (   18) [001] d.s3 82316.299394: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
66038     ksoftirqd/1-18    (   18) [001] d.s3 82316.299405: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
66039          <idle>-0     (-----) [000] .n.1 82316.299411: cpu_idle: state=4294967295 cpu_id=0
66040          <idle>-0     (-----) [000] d..2 82316.299425: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
66041     ksoftirqd/1-18    (   18) [001] d..2 82316.299433: 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
66042          <idle>-0     (-----) [001] d..1 82316.299451: cpu_idle: state=0 cpu_id=1
66043           <...>-27550 (-----) [004] ...1 82316.299469: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
66044           <...>-27550 (-----) [004] ...1 82316.299528: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
66045           <...>-27550 (-----) [004] ...1 82316.299532: tracing_mark_write: E|27550
66046           <...>-27550 (-----) [004] ...1 82316.299536: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
66047           <...>-27550 (-----) [004] ...1 82316.299541: tracing_mark_write: E|27550
66048           <...>-27550 (-----) [004] ...1 82316.299545: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
66049           <...>-27550 (-----) [004] ...1 82316.299548: tracing_mark_write: E|27550
66050           <...>-27550 (-----) [004] ...1 82316.299552: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
66051 crtc_commit:111-321   (  321) [002] d..2 82316.299629: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
66052          <idle>-0     (-----) [005] .n.1 82316.299646: cpu_idle: state=4294967295 cpu_id=5
66053          <idle>-0     (-----) [002] d..1 82316.299647: cpu_idle: state=0 cpu_id=2
66054           <...>-27550 (-----) [004] ...1 82316.299648: tracing_mark_write: E|27550
66055           <...>-27550 (-----) [004] ...1 82316.299652: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
66056          <idle>-0     (-----) [005] d..2 82316.299656: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27656 next_prio=110
66057  kworker/u16:13-1147  ( 1147) [000] d..2 82316.299657: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
66058           <...>-27550 (-----) [004] d..2 82316.299669: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66059          <idle>-0     (-----) [000] d..1 82316.299674: cpu_idle: state=0 cpu_id=0
66060          <idle>-0     (-----) [004] d..1 82316.299684: cpu_idle: state=0 cpu_id=4
66061          <idle>-0     (-----) [001] d.s3 82316.299692: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
66062          <idle>-0     (-----) [001] d.s4 82316.299703: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
66063          <idle>-0     (-----) [001] d.s4 82316.299712: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
66064           <...>-27656 (-----) [005] ...1 82316.299719: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
66065          <idle>-0     (-----) [000] .n.1 82316.299719: cpu_idle: state=4294967295 cpu_id=0
66066          <idle>-0     (-----) [001] ...1 82316.299722: cpu_idle: state=4294967295 cpu_id=1
66067          <idle>-0     (-----) [001] d..1 82316.299728: cpu_idle: state=0 cpu_id=1
66068          <idle>-0     (-----) [000] d..2 82316.299732: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
66069           <...>-27656 (-----) [005] ...1 82316.299733: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
66070           <...>-27656 (-----) [005] ...1 82316.299737: tracing_mark_write: E|27550
66071  surfaceflinger-8858  ( 8858) [003] d..2 82316.299745: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
66072           <...>-27656 (-----) [005] .... 82316.299764: binder_transaction: transaction=1570140 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
66073          <idle>-0     (-----) [003] d..1 82316.299764: cpu_idle: state=0 cpu_id=3
66074           <...>-27656 (-----) [005] .... 82316.299771: binder_transaction_alloc_buf: transaction=1570140 data_size=48 offsets_size=0
66075           <...>-27656 (-----) [005] ...2 82316.299778: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
66076           <...>-27656 (-----) [005] d..4 82316.299781: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
66077           <...>-27656 (-----) [005] dn.5 82316.299791: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
66078           <...>-27656 (-----) [005] d..2 82316.299798: sched_switch: prev_comm=id.nn.benchmark prev_pid=27656 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
66079<...>-770 ( 770) [005] .... 82316.299808: binder_transaction_received: transaction=1570140
66080  kworker/u16:13-1147  ( 1147) [000] d..2 82316.299814: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66081          <idle>-0     (-----) [000] d..1 82316.299829: cpu_idle: state=0 cpu_id=0
66082<...>-770 ( 770) [005] ...1 82316.299834: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
66083<...>-770 ( 770) [005] d..2 82316.299921: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
66084          <idle>-0     (-----) [000] dnh2 82316.299950: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
66085          <idle>-0     (-----) [000] .n.1 82316.299958: cpu_idle: state=4294967295 cpu_id=0
66086<...>-770 ( 770) [005] ...1 82316.299962: tracing_mark_write: E|770
66087          <idle>-0     (-----) [000] d..2 82316.299970: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
66088<...>-770 ( 770) [005] .... 82316.299970: binder_transaction: transaction=1570141 dest_node=0 dest_proc=27550 dest_thread=27656 reply=1 flags=0x0 code=0x0
66089<...>-770 ( 770) [005] .... 82316.299973: binder_transaction_alloc_buf: transaction=1570141 data_size=168 offsets_size=32
66090<...>-770 ( 770) [005] .... 82316.299980: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
66091<...>-770 ( 770) [005] d..2 82316.300016: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27656 next_prio=110
66092           <...>-27656 (-----) [005] .... 82316.300026: binder_transaction_received: transaction=1570141
66093<...>-581 ( 571) [000] d..2 82316.300060: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66094          <idle>-0     (-----) [000] d..1 82316.300076: cpu_idle: state=0 cpu_id=0
66095           <...>-27656 (-----) [005] ...1 82316.300102: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
66096           <...>-27656 (-----) [005] ...1 82316.300107: tracing_mark_write: E|27550
66097           <...>-27656 (-----) [005] .... 82316.300122: binder_transaction: transaction=1570142 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
66098           <...>-27656 (-----) [005] .... 82316.300125: binder_transaction_alloc_buf: transaction=1570142 data_size=48 offsets_size=0
66099           <...>-27656 (-----) [005] ...2 82316.300127: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
66100           <...>-27656 (-----) [005] d..4 82316.300129: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
66101           <...>-27656 (-----) [005] dn.5 82316.300139: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
66102           <...>-27656 (-----) [005] d..2 82316.300146: sched_switch: prev_comm=id.nn.benchmark prev_pid=27656 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
66103<...>-770 ( 770) [005] .... 82316.300154: binder_transaction_received: transaction=1570142
66104<...>-770 ( 770) [005] ...1 82316.300171: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
66105<...>-770 ( 770) [005] d..2 82316.300229: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
66106          <idle>-0     (-----) [000] dnh2 82316.300254: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
66107          <idle>-0     (-----) [000] .n.1 82316.300262: cpu_idle: state=4294967295 cpu_id=0
66108<...>-770 ( 770) [005] ...1 82316.300263: tracing_mark_write: E|770
66109<...>-770 ( 770) [005] .... 82316.300270: binder_transaction: transaction=1570143 dest_node=0 dest_proc=27550 dest_thread=27656 reply=1 flags=0x0 code=0x0
66110<...>-770 ( 770) [005] .... 82316.300273: binder_transaction_alloc_buf: transaction=1570143 data_size=168 offsets_size=32
66111          <idle>-0     (-----) [000] d..2 82316.300273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
66112<...>-770 ( 770) [005] .... 82316.300279: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
66113<...>-770 ( 770) [005] d..2 82316.300313: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27656 next_prio=110
66114           <...>-27656 (-----) [005] .... 82316.300324: binder_transaction_received: transaction=1570143
66115<...>-581 ( 571) [000] d..2 82316.300332: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66116          <idle>-0     (-----) [000] d..1 82316.300347: cpu_idle: state=0 cpu_id=0
66117           <...>-27656 (-----) [005] ...1 82316.300608: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
66118           <...>-27656 (-----) [005] ...1 82316.300618: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
66119           <...>-27656 (-----) [005] ...1 82316.300622: tracing_mark_write: E|27550
66120           <...>-27656 (-----) [005] .... 82316.300687: binder_transaction: transaction=1570144 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
66121           <...>-27656 (-----) [005] .... 82316.300690: binder_transaction_alloc_buf: transaction=1570144 data_size=556 offsets_size=104
66122           <...>-27656 (-----) [005] ...2 82316.300703: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
66123           <...>-27656 (-----) [005] d..4 82316.300706: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66124           <...>-27656 (-----) [005] dn.5 82316.300717: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66125           <...>-27656 (-----) [005] d..2 82316.300724: sched_switch: prev_comm=id.nn.benchmark prev_pid=27656 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66126<...>-5340 ( 788) [005] .... 82316.300734: binder_transaction_received: transaction=1570144
66127          <idle>-0     (-----) [002] ...1 82316.300766: cpu_idle: state=4294967295 cpu_id=2
66128          <idle>-0     (-----) [002] d..1 82316.300771: cpu_idle: state=0 cpu_id=2
66129<...>-5340 ( 788) [005] ...1 82316.300780: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
66130<...>-5340 ( 788) [005] d..2 82316.300826: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
66131<...>-5340 ( 788) [005] d..2 82316.300850: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27656 next_prio=110
66132          <idle>-0     (-----) [000] dnh2 82316.300854: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
66133          <idle>-0     (-----) [000] .n.1 82316.300862: cpu_idle: state=4294967295 cpu_id=0
66134           <...>-27656 (-----) [005] d..2 82316.300873: sched_switch: prev_comm=id.nn.benchmark prev_pid=27656 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
66135          <idle>-0     (-----) [000] d..2 82316.300874: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
66136          <idle>-0     (-----) [005] d..1 82316.300891: cpu_idle: state=0 cpu_id=5
66137<...>-87 ( 87) [000] d..2 82316.300918: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66138          <idle>-0     (-----) [002] d.h4 82316.300927: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66139          <idle>-0     (-----) [000] d..1 82316.300931: cpu_idle: state=0 cpu_id=0
66140          <idle>-0     (-----) [002] dnh5 82316.300947: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66141          <idle>-0     (-----) [002] .n.1 82316.300958: cpu_idle: state=4294967295 cpu_id=2
66142          <idle>-0     (-----) [002] d..2 82316.300971: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
66143<...>-86 ( 86) [002] d.h3 82316.301009: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66144          <idle>-0     (-----) [005] dnh2 82316.301031: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66145          <idle>-0     (-----) [005] .n.1 82316.301035: cpu_idle: state=4294967295 cpu_id=5
66146          <idle>-0     (-----) [005] d..2 82316.301043: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66147<...>-86 ( 86) [002] d..2 82316.301070: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66148          <idle>-0     (-----) [002] d..1 82316.301084: cpu_idle: state=0 cpu_id=2
66149<...>-5340 ( 788) [005] d..1 82316.301095: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
66150          <idle>-0     (-----) [000] dnh2 82316.301134: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
66151          <idle>-0     (-----) [000] .n.1 82316.301142: cpu_idle: state=4294967295 cpu_id=0
66152          <idle>-0     (-----) [000] d..2 82316.301153: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
66153 neuralnetworks@-13088 (  788) [000] d..2 82316.301211: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66154          <idle>-0     (-----) [000] d..1 82316.301226: cpu_idle: state=0 cpu_id=0
66155<...>-5340 ( 788) [005] d..2 82316.301255: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
66156          <idle>-0     (-----) [000] dnh2 82316.301279: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
66157<...>-5340 ( 788) [005] d..2 82316.301281: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
66158          <idle>-0     (-----) [000] .n.1 82316.301286: cpu_idle: state=4294967295 cpu_id=0
66159          <idle>-0     (-----) [005] d..1 82316.301295: cpu_idle: state=0 cpu_id=5
66160          <idle>-0     (-----) [000] d..2 82316.301297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
66161<...>-87 ( 87) [000] d..2 82316.301337: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66162          <idle>-0     (-----) [002] d.h4 82316.301339: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66163          <idle>-0     (-----) [000] d..1 82316.301351: cpu_idle: state=0 cpu_id=0
66164          <idle>-0     (-----) [002] dnh5 82316.301351: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66165          <idle>-0     (-----) [002] .n.1 82316.301360: cpu_idle: state=4294967295 cpu_id=2
66166          <idle>-0     (-----) [002] d..2 82316.301374: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
66167<...>-86 ( 86) [002] d..2 82316.301409: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66168          <idle>-0     (-----) [002] d..1 82316.301424: cpu_idle: state=0 cpu_id=2
66169          <idle>-0     (-----) [005] ...1 82316.301636: cpu_idle: state=4294967295 cpu_id=5
66170          <idle>-0     (-----) [005] d..1 82316.301639: cpu_idle: state=0 cpu_id=5
66171          <idle>-0     (-----) [000] d.h2 82316.302565: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
66172          <idle>-0     (-----) [000] dnh3 82316.302586: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
66173          <idle>-0     (-----) [000] .n.1 82316.302596: cpu_idle: state=4294967295 cpu_id=0
66174          <idle>-0     (-----) [000] d..2 82316.302611: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
66175          <idle>-0     (-----) [002] d..2 82316.302828: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
66176          <idle>-0     (-----) [002] dn.3 82316.302842: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
66177          <idle>-0     (-----) [002] .n.1 82316.302846: cpu_idle: state=4294967295 cpu_id=2
66178          <idle>-0     (-----) [002] d..2 82316.302860: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
66179     ksoftirqd/2-26    (   26) [002] d..2 82316.302894: 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
66180 RxSchedulerPurg-25567 (25538) [000] d..2 82316.302899: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66181          <idle>-0     (-----) [002] d..1 82316.302905: cpu_idle: state=0 cpu_id=2
66182          <idle>-0     (-----) [000] d..1 82316.302916: cpu_idle: state=0 cpu_id=0
66183          <idle>-0     (-----) [002] d.h4 82316.303005: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66184          <idle>-0     (-----) [005] dnh2 82316.303026: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66185          <idle>-0     (-----) [005] .n.1 82316.303030: cpu_idle: state=4294967295 cpu_id=5
66186          <idle>-0     (-----) [005] d..2 82316.303039: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66187          <idle>-0     (-----) [002] ...1 82316.303046: cpu_idle: state=4294967295 cpu_id=2
66188          <idle>-0     (-----) [002] d..1 82316.303055: cpu_idle: state=0 cpu_id=2
66189<...>-5340 ( 788) [005] d..1 82316.303090: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
66190          <idle>-0     (-----) [000] dnh2 82316.303118: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
66191          <idle>-0     (-----) [000] .n.1 82316.303125: cpu_idle: state=4294967295 cpu_id=0
66192          <idle>-0     (-----) [000] d..2 82316.303170: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
66193<...>-5340 ( 788) [005] ...1 82316.303183: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
66194<...>-5340 ( 788) [005] ...1 82316.303187: tracing_mark_write: E|788
66195<...>-5340 ( 788) [005] .... 82316.303203: binder_transaction: transaction=1570147 dest_node=1570145 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
66196<...>-5340 ( 788) [005] .... 82316.303206: binder_transaction_alloc_buf: transaction=1570147 data_size=60 offsets_size=0
66197<...>-5340 ( 788) [005] d..4 82316.303209: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
66198 neuralnetworks@-13088 (  788) [000] d..2 82316.303213: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66199<...>-5340 ( 788) [005] d..5 82316.303221: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
66200          <idle>-0     (-----) [004] .n.1 82316.303227: cpu_idle: state=4294967295 cpu_id=4
66201          <idle>-0     (-----) [000] d..1 82316.303229: cpu_idle: state=0 cpu_id=0
66202          <idle>-0     (-----) [004] d..2 82316.303236: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
66203           <...>-27571 (-----) [004] .... 82316.303241: binder_transaction_received: transaction=1570147
66204<...>-5340 ( 788) [005] ...1 82316.303243: tracing_mark_write: E|788
66205<...>-5340 ( 788) [005] .... 82316.303249: binder_transaction: transaction=1570148 dest_node=0 dest_proc=27550 dest_thread=27656 reply=1 flags=0x0 code=0x0
66206<...>-5340 ( 788) [005] .... 82316.303251: binder_transaction_alloc_buf: transaction=1570148 data_size=8 offsets_size=0
66207<...>-5340 ( 788) [005] d..2 82316.303253: sched_waking: comm=id.nn.benchmark pid=27656 prio=110 target_cpu=005
66208           <...>-27571 (-----) [004] ...1 82316.303259: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
66209<...>-5340 ( 788) [005] d..3 82316.303261: sched_wakeup: comm=id.nn.benchmark pid=27656 prio=110 target_cpu=005
66210<...>-5340 ( 788) [005] .... 82316.303262: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
66211           <...>-27571 (-----) [004] ...1 82316.303265: tracing_mark_write: E|27550
66212           <...>-27571 (-----) [004] d..2 82316.303294: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66213          <idle>-0     (-----) [004] d..1 82316.303301: cpu_idle: state=0 cpu_id=4
66214<...>-5340 ( 788) [005] d..2 82316.303304: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27656 next_prio=110
66215           <...>-27656 (-----) [005] .... 82316.303313: binder_transaction_received: transaction=1570148
66216           <...>-27656 (-----) [005] ...1 82316.303350: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
66217           <...>-27656 (-----) [005] ...1 82316.303356: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
66218           <...>-27656 (-----) [005] ...1 82316.303383: tracing_mark_write: E|27550
66219           <...>-27656 (-----) [005] ...1 82316.303387: tracing_mark_write: E|27550
66220           <...>-27656 (-----) [005] ...1 82316.303390: tracing_mark_write: E|27550
66221           <...>-27656 (-----) [005] ...1 82316.303582: tracing_mark_write: E|27550
66222           <...>-27656 (-----) [005] d..1 82316.303596: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66223           <...>-27656 (-----) [005] d..2 82316.303612: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66224          <idle>-0     (-----) [004] .n.1 82316.303617: cpu_idle: state=4294967295 cpu_id=4
66225          <idle>-0     (-----) [004] d..2 82316.303624: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
66226           <...>-27550 (-----) [004] d..2 82316.303644: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66227          <idle>-0     (-----) [004] d..1 82316.303653: cpu_idle: state=0 cpu_id=4
66228           <...>-27656 (-----) [005] d..1 82316.303701: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66229           <...>-27656 (-----) [005] d..2 82316.303710: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66230          <idle>-0     (-----) [004] .n.1 82316.303715: cpu_idle: state=4294967295 cpu_id=4
66231          <idle>-0     (-----) [004] d..2 82316.303723: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
66232           <...>-27656 (-----) [005] d..2 82316.303749: sched_switch: prev_comm=id.nn.benchmark prev_pid=27656 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
66233           <...>-27550 (-----) [004] ...1 82316.303755: tracing_mark_write: E|27550
66234           <...>-27550 (-----) [004] ...1 82316.303760: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
66235           <...>-27550 (-----) [004] ...1 82316.303766: tracing_mark_write: E|27550
66236          <idle>-0     (-----) [005] d..1 82316.303769: cpu_idle: state=0 cpu_id=5
66237           <...>-27550 (-----) [004] ...1 82316.303769: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
66238           <...>-27550 (-----) [004] ...1 82316.303774: tracing_mark_write: E|27550
66239           <...>-27550 (-----) [004] ...1 82316.303778: tracing_mark_write: E|27550
66240           <...>-27550 (-----) [004] ...1 82316.303891: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
66241           <...>-27550 (-----) [004] ...1 82316.303949: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
66242           <...>-27550 (-----) [004] ...1 82316.303955: tracing_mark_write: E|27550
66243           <...>-27550 (-----) [004] ...1 82316.303959: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
66244           <...>-27550 (-----) [004] ...1 82316.303964: tracing_mark_write: E|27550
66245           <...>-27550 (-----) [004] ...1 82316.303968: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
66246           <...>-27550 (-----) [004] ...1 82316.303973: tracing_mark_write: E|27550
66247           <...>-27550 (-----) [004] ...1 82316.303976: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
66248          <idle>-0     (-----) [005] .n.1 82316.304069: cpu_idle: state=4294967295 cpu_id=5
66249           <...>-27550 (-----) [004] ...1 82316.304070: tracing_mark_write: E|27550
66250           <...>-27550 (-----) [004] ...1 82316.304075: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
66251          <idle>-0     (-----) [005] d..2 82316.304077: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27657 next_prio=110
66252           <...>-27550 (-----) [004] d..2 82316.304091: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66253          <idle>-0     (-----) [004] d..1 82316.304106: cpu_idle: state=0 cpu_id=4
66254           <...>-27657 (-----) [005] ...1 82316.304138: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
66255           <...>-27657 (-----) [005] ...1 82316.304152: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
66256           <...>-27657 (-----) [005] ...1 82316.304156: tracing_mark_write: E|27550
66257           <...>-27657 (-----) [005] .... 82316.304177: binder_transaction: transaction=1570149 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
66258           <...>-27657 (-----) [005] .... 82316.304181: binder_transaction_alloc_buf: transaction=1570149 data_size=48 offsets_size=0
66259           <...>-27657 (-----) [005] ...2 82316.304184: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
66260           <...>-27657 (-----) [005] d..4 82316.304187: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
66261           <...>-27657 (-----) [005] dn.5 82316.304198: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
66262           <...>-27657 (-----) [005] d..2 82316.304205: sched_switch: prev_comm=id.nn.benchmark prev_pid=27657 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
66263<...>-770 ( 770) [005] .... 82316.304215: binder_transaction_received: transaction=1570149
66264<...>-770 ( 770) [005] ...1 82316.304238: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
66265<...>-770 ( 770) [005] d..2 82316.304311: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
66266          <idle>-0     (-----) [000] dnh2 82316.304340: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
66267          <idle>-0     (-----) [000] .n.1 82316.304348: cpu_idle: state=4294967295 cpu_id=0
66268<...>-770 ( 770) [005] ...1 82316.304351: tracing_mark_write: E|770
66269<...>-770 ( 770) [005] .... 82316.304359: binder_transaction: transaction=1570150 dest_node=0 dest_proc=27550 dest_thread=27657 reply=1 flags=0x0 code=0x0
66270          <idle>-0     (-----) [000] d..2 82316.304360: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
66271<...>-770 ( 770) [005] .... 82316.304362: binder_transaction_alloc_buf: transaction=1570150 data_size=168 offsets_size=32
66272<...>-770 ( 770) [005] .... 82316.304368: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
66273<...>-770 ( 770) [005] d..2 82316.304404: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27657 next_prio=110
66274           <...>-27657 (-----) [005] .... 82316.304414: binder_transaction_received: transaction=1570150
66275<...>-581 ( 571) [000] d..2 82316.304453: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66276          <idle>-0     (-----) [002] ...1 82316.304460: cpu_idle: state=4294967295 cpu_id=2
66277          <idle>-0     (-----) [002] d..1 82316.304465: cpu_idle: state=0 cpu_id=2
66278          <idle>-0     (-----) [000] d..1 82316.304472: cpu_idle: state=0 cpu_id=0
66279           <...>-27657 (-----) [005] ...1 82316.304482: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
66280           <...>-27657 (-----) [005] ...1 82316.304487: tracing_mark_write: E|27550
66281           <...>-27657 (-----) [005] .... 82316.304503: binder_transaction: transaction=1570151 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
66282           <...>-27657 (-----) [005] .... 82316.304506: binder_transaction_alloc_buf: transaction=1570151 data_size=48 offsets_size=0
66283           <...>-27657 (-----) [005] ...2 82316.304508: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
66284           <...>-27657 (-----) [005] d..4 82316.304510: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
66285           <...>-27657 (-----) [005] dn.5 82316.304520: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
66286           <...>-27657 (-----) [005] d..2 82316.304527: sched_switch: prev_comm=id.nn.benchmark prev_pid=27657 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
66287<...>-770 ( 770) [005] .... 82316.304535: binder_transaction_received: transaction=1570151
66288<...>-770 ( 770) [005] ...1 82316.304552: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
66289<...>-770 ( 770) [005] d..2 82316.304609: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
66290          <idle>-0     (-----) [000] d.h5 82316.304620: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
66291<...>-770 ( 770) [005] ...1 82316.304642: tracing_mark_write: E|770
66292          <idle>-0     (-----) [000] d.h6 82316.304645: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
66293<...>-770 ( 770) [005] .... 82316.304650: binder_transaction: transaction=1570152 dest_node=0 dest_proc=27550 dest_thread=27657 reply=1 flags=0x0 code=0x0
66294          <idle>-0     (-----) [000] d.h5 82316.304650: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
66295<...>-770 ( 770) [005] .... 82316.304652: binder_transaction_alloc_buf: transaction=1570152 data_size=168 offsets_size=32
66296          <idle>-0     (-----) [003] .n.1 82316.304652: cpu_idle: state=4294967295 cpu_id=3
66297<...>-770 ( 770) [005] .... 82316.304658: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
66298          <idle>-0     (-----) [000] d.h6 82316.304664: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
66299          <idle>-0     (-----) [003] d..2 82316.304665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
66300          <idle>-0     (-----) [002] .n.1 82316.304669: cpu_idle: state=4294967295 cpu_id=2
66301          <idle>-0     (-----) [002] d..2 82316.304681: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
66302          <idle>-0     (-----) [000] dnh2 82316.304689: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
66303<...>-770 ( 770) [005] d..2 82316.304692: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27657 next_prio=110
66304          <idle>-0     (-----) [000] .n.1 82316.304697: cpu_idle: state=4294967295 cpu_id=0
66305  crtc_event:111-322   (  322) [003] d..2 82316.304702: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
66306           <...>-27657 (-----) [005] .... 82316.304703: binder_transaction_received: transaction=1570152
66307          <idle>-0     (-----) [000] d..2 82316.304710: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
66308          <idle>-0     (-----) [003] d..1 82316.304713: cpu_idle: state=0 cpu_id=3
66309<...>-581 ( 571) [000] d..2 82316.304777: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66310          <idle>-0     (-----) [000] d..1 82316.304795: cpu_idle: state=0 cpu_id=0
66311 crtc_commit:111-321   (  321) [002] d..2 82316.304834: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
66312          <idle>-0     (-----) [002] d..1 82316.304844: cpu_idle: state=0 cpu_id=2
66313           <...>-27657 (-----) [005] ...1 82316.304974: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
66314           <...>-27657 (-----) [005] ...1 82316.304985: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
66315           <...>-27657 (-----) [005] ...1 82316.304989: tracing_mark_write: E|27550
66316           <...>-27657 (-----) [005] .... 82316.305049: binder_transaction: transaction=1570153 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
66317           <...>-27657 (-----) [005] .... 82316.305052: binder_transaction_alloc_buf: transaction=1570153 data_size=556 offsets_size=104
66318           <...>-27657 (-----) [005] ...2 82316.305067: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
66319           <...>-27657 (-----) [005] d..4 82316.305069: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66320           <...>-27657 (-----) [005] dn.5 82316.305081: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66321           <...>-27657 (-----) [005] d..2 82316.305089: sched_switch: prev_comm=id.nn.benchmark prev_pid=27657 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66322<...>-5340 ( 788) [005] .... 82316.305099: binder_transaction_received: transaction=1570153
66323          <idle>-0     (-----) [002] d.s3 82316.305136: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
66324          <idle>-0     (-----) [001] d.s2 82316.305138: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
66325          <idle>-0     (-----) [002] d.s4 82316.305156: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
66326          <idle>-0     (-----) [001] dns3 82316.305156: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
66327          <idle>-0     (-----) [001] dns2 82316.305160: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
66328          <idle>-0     (-----) [003] .n.1 82316.305162: cpu_idle: state=4294967295 cpu_id=3
66329          <idle>-0     (-----) [003] d..2 82316.305174: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
66330<...>-5340 ( 788) [005] ...1 82316.305180: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
66331          <idle>-0     (-----) [002] ...1 82316.305183: cpu_idle: state=4294967295 cpu_id=2
66332          <idle>-0     (-----) [002] d..1 82316.305190: cpu_idle: state=0 cpu_id=2
66333          <idle>-0     (-----) [001] dns3 82316.305201: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
66334  crtc_event:111-322   (  322) [003] d..2 82316.305212: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
66335          <idle>-0     (-----) [001] .n.1 82316.305219: cpu_idle: state=4294967295 cpu_id=1
66336<...>-5340 ( 788) [005] d..2 82316.305222: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
66337<...>-8 ( 8) [003] d..2 82316.305225: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
66338          <idle>-0     (-----) [001] d..2 82316.305234: 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
66339     rcu_preempt-7     (    7) [001] d..2 82316.305244: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
66340<...>-5340 ( 788) [005] d..2 82316.305259: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27657 next_prio=110
66341<...>-8 ( 8) [003] d..3 82316.305271: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
66342           <...>-27657 (-----) [005] d..2 82316.305284: sched_switch: prev_comm=id.nn.benchmark prev_pid=27657 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
66343     rcu_preempt-7     (    7) [001] d..3 82316.305286: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
66344          <idle>-0     (-----) [005] d..1 82316.305302: cpu_idle: state=0 cpu_id=5
66345     rcu_preempt-7     (    7) [001] d.h2 82316.305309: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
66346<...>-8 ( 8) [003] d..2 82316.305313: 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
66347         rcuop/2-29    (   29) [003] d..2 82316.305320: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
66348     rcu_preempt-7     (    7) [001] d..2 82316.305328: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
66349<...>-87 ( 87) [001] d..2 82316.305366: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
66350         rcuop/2-29    (   29) [003] d..3 82316.305380: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
66351<...>-46 ( 46) [001] d..2 82316.305381: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
66352          <idle>-0     (-----) [002] d.h4 82316.305383: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66353         rcuop/2-29    (   29) [003] d..2 82316.305399: 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
66354          <idle>-0     (-----) [002] dnh5 82316.305401: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66355          <idle>-0     (-----) [002] .n.1 82316.305411: cpu_idle: state=4294967295 cpu_id=2
66356<...>-46 ( 46) [001] d..3 82316.305420: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
66357          <idle>-0     (-----) [002] d..2 82316.305424: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
66358<...>-46 ( 46) [001] d..2 82316.305432: 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
66359         rcuop/3-37    (   37) [003] d..2 82316.305447: 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
66360<...>-8 ( 8) [001] d..2 82316.305458: 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
66361          <idle>-0     (-----) [003] d..1 82316.305460: cpu_idle: state=0 cpu_id=3
66362<...>-86 ( 86) [002] d..2 82316.305464: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66363          <idle>-0     (-----) [001] d..1 82316.305476: cpu_idle: state=0 cpu_id=1
66364          <idle>-0     (-----) [002] d.h5 82316.305490: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66365          <idle>-0     (-----) [005] dnh2 82316.305512: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66366          <idle>-0     (-----) [005] .n.1 82316.305516: cpu_idle: state=4294967295 cpu_id=5
66367          <idle>-0     (-----) [005] d..2 82316.305525: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66368          <idle>-0     (-----) [002] d..1 82316.305540: cpu_idle: state=0 cpu_id=2
66369<...>-5340 ( 788) [005] d..1 82316.305579: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
66370          <idle>-0     (-----) [000] dnh2 82316.305608: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
66371          <idle>-0     (-----) [000] .n.1 82316.305616: cpu_idle: state=4294967295 cpu_id=0
66372          <idle>-0     (-----) [000] d..2 82316.305628: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
66373 neuralnetworks@-13088 (  788) [000] d..2 82316.305680: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66374          <idle>-0     (-----) [000] d..1 82316.305696: cpu_idle: state=0 cpu_id=0
66375<...>-5340 ( 788) [005] d..2 82316.305727: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
66376          <idle>-0     (-----) [001] dnh2 82316.305751: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
66377<...>-5340 ( 788) [005] d..2 82316.305755: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
66378          <idle>-0     (-----) [001] .n.1 82316.305758: cpu_idle: state=4294967295 cpu_id=1
66379          <idle>-0     (-----) [005] d..1 82316.305769: cpu_idle: state=0 cpu_id=5
66380          <idle>-0     (-----) [001] d..2 82316.305770: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
66381          <idle>-0     (-----) [002] d.h4 82316.305811: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66382<...>-87 ( 87) [001] d..2 82316.305812: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
66383          <idle>-0     (-----) [002] dnh5 82316.305822: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66384          <idle>-0     (-----) [001] d..1 82316.305824: cpu_idle: state=0 cpu_id=1
66385          <idle>-0     (-----) [002] .n.1 82316.305830: cpu_idle: state=4294967295 cpu_id=2
66386          <idle>-0     (-----) [002] d..2 82316.305843: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
66387<...>-86 ( 86) [002] d..2 82316.305880: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66388          <idle>-0     (-----) [002] d..1 82316.305893: cpu_idle: state=0 cpu_id=2
66389          <idle>-0     (-----) [005] ...1 82316.306112: cpu_idle: state=4294967295 cpu_id=5
66390          <idle>-0     (-----) [005] d..1 82316.306116: cpu_idle: state=0 cpu_id=5
66391          <idle>-0     (-----) [000] d.h5 82316.306948: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
66392          <idle>-0     (-----) [000] d.h6 82316.306968: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
66393          <idle>-0     (-----) [002] .n.1 82316.306975: cpu_idle: state=4294967295 cpu_id=2
66394          <idle>-0     (-----) [002] d..2 82316.306986: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
66395          <idle>-0     (-----) [000] ...1 82316.306986: cpu_idle: state=4294967295 cpu_id=0
66396          <idle>-0     (-----) [000] d..1 82316.306992: cpu_idle: state=0 cpu_id=0
66397 crtc_commit:111-321   (  321) [002] d..2 82316.307067: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66398          <idle>-0     (-----) [002] d..1 82316.307082: cpu_idle: state=0 cpu_id=2
66399          <idle>-0     (-----) [000] d.h5 82316.307237: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
66400          <idle>-0     (-----) [000] d.h6 82316.307253: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
66401          <idle>-0     (-----) [003] .n.1 82316.307260: cpu_idle: state=4294967295 cpu_id=3
66402          <idle>-0     (-----) [000] ...1 82316.307270: cpu_idle: state=4294967295 cpu_id=0
66403          <idle>-0     (-----) [003] d..2 82316.307271: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
66404          <idle>-0     (-----) [000] d..1 82316.307277: cpu_idle: state=0 cpu_id=0
66405  crtc_event:111-322   (  322) [003] d..2 82316.307301: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
66406          <idle>-0     (-----) [003] d..1 82316.307311: cpu_idle: state=0 cpu_id=3
66407          <idle>-0     (-----) [002] d.h4 82316.307558: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66408          <idle>-0     (-----) [005] dnh2 82316.307580: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66409          <idle>-0     (-----) [005] .n.1 82316.307583: cpu_idle: state=4294967295 cpu_id=5
66410          <idle>-0     (-----) [005] d..2 82316.307591: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66411          <idle>-0     (-----) [002] ...1 82316.307601: cpu_idle: state=4294967295 cpu_id=2
66412          <idle>-0     (-----) [002] d..1 82316.307607: cpu_idle: state=0 cpu_id=2
66413<...>-5340 ( 788) [005] d..1 82316.307641: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
66414          <idle>-0     (-----) [000] dnh2 82316.307667: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
66415          <idle>-0     (-----) [000] .n.1 82316.307674: cpu_idle: state=4294967295 cpu_id=0
66416          <idle>-0     (-----) [000] d..2 82316.307692: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
66417<...>-5340 ( 788) [005] ...1 82316.307734: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
66418<...>-5340 ( 788) [005] ...1 82316.307738: tracing_mark_write: E|788
66419<...>-5340 ( 788) [005] .... 82316.307754: binder_transaction: transaction=1570156 dest_node=1570154 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
66420<...>-5340 ( 788) [005] .... 82316.307757: binder_transaction_alloc_buf: transaction=1570156 data_size=60 offsets_size=0
66421 neuralnetworks@-13088 (  788) [000] d..2 82316.307758: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66422<...>-5340 ( 788) [005] d..4 82316.307760: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
66423          <idle>-0     (-----) [000] d..1 82316.307772: cpu_idle: state=0 cpu_id=0
66424<...>-5340 ( 788) [005] d..5 82316.307772: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
66425          <idle>-0     (-----) [004] .n.1 82316.307779: cpu_idle: state=4294967295 cpu_id=4
66426          <idle>-0     (-----) [004] d..2 82316.307788: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
66427           <...>-27571 (-----) [004] .... 82316.307793: binder_transaction_received: transaction=1570156
66428<...>-5340 ( 788) [005] ...1 82316.307795: tracing_mark_write: E|788
66429<...>-5340 ( 788) [005] .... 82316.307801: binder_transaction: transaction=1570157 dest_node=0 dest_proc=27550 dest_thread=27657 reply=1 flags=0x0 code=0x0
66430<...>-5340 ( 788) [005] .... 82316.307803: binder_transaction_alloc_buf: transaction=1570157 data_size=8 offsets_size=0
66431<...>-5340 ( 788) [005] d..2 82316.307805: sched_waking: comm=id.nn.benchmark pid=27657 prio=110 target_cpu=005
66432           <...>-27571 (-----) [004] ...1 82316.307811: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
66433<...>-5340 ( 788) [005] d..3 82316.307812: sched_wakeup: comm=id.nn.benchmark pid=27657 prio=110 target_cpu=005
66434<...>-5340 ( 788) [005] .... 82316.307814: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
66435           <...>-27571 (-----) [004] ...1 82316.307817: tracing_mark_write: E|27550
66436           <...>-27571 (-----) [004] d..2 82316.307845: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66437          <idle>-0     (-----) [004] d..1 82316.307853: cpu_idle: state=0 cpu_id=4
66438<...>-5340 ( 788) [005] d..2 82316.307855: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27657 next_prio=110
66439           <...>-27657 (-----) [005] .... 82316.307865: binder_transaction_received: transaction=1570157
66440           <...>-27657 (-----) [005] ...1 82316.307900: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
66441           <...>-27657 (-----) [005] ...1 82316.307906: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
66442           <...>-27657 (-----) [005] ...1 82316.307932: tracing_mark_write: E|27550
66443           <...>-27657 (-----) [005] ...1 82316.307936: tracing_mark_write: E|27550
66444           <...>-27657 (-----) [005] ...1 82316.307940: tracing_mark_write: E|27550
66445           <...>-27657 (-----) [005] ...1 82316.308130: tracing_mark_write: E|27550
66446           <...>-27657 (-----) [005] d..1 82316.308142: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66447           <...>-27657 (-----) [005] d..2 82316.308158: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66448          <idle>-0     (-----) [004] .n.1 82316.308164: cpu_idle: state=4294967295 cpu_id=4
66449          <idle>-0     (-----) [004] d..2 82316.308171: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
66450           <...>-27550 (-----) [004] d..2 82316.308191: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66451          <idle>-0     (-----) [004] d..1 82316.308200: cpu_idle: state=0 cpu_id=4
66452           <...>-27657 (-----) [005] d..1 82316.308246: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66453           <...>-27657 (-----) [005] d..2 82316.308255: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66454          <idle>-0     (-----) [004] .n.1 82316.308261: cpu_idle: state=4294967295 cpu_id=4
66455          <idle>-0     (-----) [004] d..2 82316.308269: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
66456           <...>-27657 (-----) [005] d..2 82316.308293: sched_switch: prev_comm=id.nn.benchmark prev_pid=27657 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
66457          <idle>-0     (-----) [005] d..1 82316.308314: cpu_idle: state=0 cpu_id=5
66458           <...>-27550 (-----) [004] ...1 82316.308319: tracing_mark_write: E|27550
66459           <...>-27550 (-----) [004] ...1 82316.308324: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
66460           <...>-27550 (-----) [004] ...1 82316.308330: tracing_mark_write: E|27550
66461           <...>-27550 (-----) [004] ...1 82316.308334: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
66462           <...>-27550 (-----) [004] ...1 82316.308338: tracing_mark_write: E|27550
66463           <...>-27550 (-----) [004] ...1 82316.308343: tracing_mark_write: E|27550
66464           <...>-27550 (-----) [004] d.s2 82316.308467: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
66465          <idle>-0     (-----) [000] dnh2 82316.308494: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
66466          <idle>-0     (-----) [000] .n.1 82316.308502: cpu_idle: state=4294967295 cpu_id=0
66467           <...>-27550 (-----) [004] ...1 82316.308510: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
66468          <idle>-0     (-----) [000] d..2 82316.308515: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
66469           <...>-27550 (-----) [004] ...1 82316.308585: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
66470           <...>-27550 (-----) [004] ...1 82316.308590: tracing_mark_write: E|27550
66471           <...>-27550 (-----) [004] ...1 82316.308594: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
66472           <...>-27550 (-----) [004] ...1 82316.308599: tracing_mark_write: E|27550
66473           <...>-27550 (-----) [004] ...1 82316.308603: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
66474           <...>-27550 (-----) [004] ...1 82316.308606: tracing_mark_write: E|27550
66475           <...>-27550 (-----) [004] ...1 82316.308610: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
66476          <idle>-0     (-----) [005] .n.1 82316.308695: cpu_idle: state=4294967295 cpu_id=5
66477           <...>-27550 (-----) [004] ...1 82316.308696: tracing_mark_write: E|27550
66478           <...>-27550 (-----) [004] ...1 82316.308700: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
66479          <idle>-0     (-----) [005] d..2 82316.308705: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27658 next_prio=110
66480           <...>-27550 (-----) [004] d..2 82316.308720: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66481          <idle>-0     (-----) [004] d..1 82316.308735: cpu_idle: state=0 cpu_id=4
66482           <...>-27658 (-----) [005] ...1 82316.308766: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
66483  kworker/u16:13-1147  ( 1147) [000] d..2 82316.308769: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
66484           <...>-27658 (-----) [005] ...1 82316.308780: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
66485           <...>-27658 (-----) [005] ...1 82316.308784: tracing_mark_write: E|27550
66486          <idle>-0     (-----) [000] d..1 82316.308787: cpu_idle: state=0 cpu_id=0
66487          <idle>-0     (-----) [001] d.s3 82316.308798: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
66488           <...>-27658 (-----) [005] .... 82316.308804: binder_transaction: transaction=1570158 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
66489           <...>-27658 (-----) [005] .... 82316.308808: binder_transaction_alloc_buf: transaction=1570158 data_size=48 offsets_size=0
66490          <idle>-0     (-----) [001] d.s4 82316.308810: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
66491           <...>-27658 (-----) [005] ...2 82316.308811: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
66492           <...>-27658 (-----) [005] d..4 82316.308813: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
66493          <idle>-0     (-----) [001] d.s4 82316.308819: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
66494           <...>-27658 (-----) [005] dn.5 82316.308823: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
66495          <idle>-0     (-----) [000] .n.1 82316.308827: cpu_idle: state=4294967295 cpu_id=0
66496          <idle>-0     (-----) [001] ...1 82316.308829: cpu_idle: state=4294967295 cpu_id=1
66497           <...>-27658 (-----) [005] d..2 82316.308830: sched_switch: prev_comm=id.nn.benchmark prev_pid=27658 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
66498          <idle>-0     (-----) [001] d..1 82316.308835: cpu_idle: state=0 cpu_id=1
66499<...>-770 ( 770) [005] .... 82316.308840: binder_transaction_received: transaction=1570158
66500          <idle>-0     (-----) [000] d..2 82316.308841: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
66501<...>-770 ( 770) [005] ...1 82316.308862: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
66502  kworker/u16:13-1147  ( 1147) [000] .... 82316.308923: clk_set_rate: l3_cluster0_vote_clk 300000000
66503<...>-770 ( 770) [005] d..2 82316.308948: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
66504  kworker/u16:13-1147  ( 1147) [000] d..2 82316.308953: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66505          <idle>-0     (-----) [000] d..1 82316.308968: cpu_idle: state=0 cpu_id=0
66506          <idle>-0     (-----) [000] dnh2 82316.308985: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
66507<...>-770 ( 770) [005] ...1 82316.308993: tracing_mark_write: E|770
66508          <idle>-0     (-----) [000] .n.1 82316.308993: cpu_idle: state=4294967295 cpu_id=0
66509<...>-770 ( 770) [005] .... 82316.309001: binder_transaction: transaction=1570159 dest_node=0 dest_proc=27550 dest_thread=27658 reply=1 flags=0x0 code=0x0
66510<...>-770 ( 770) [005] .... 82316.309003: binder_transaction_alloc_buf: transaction=1570159 data_size=168 offsets_size=32
66511          <idle>-0     (-----) [000] d..2 82316.309005: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
66512<...>-770 ( 770) [005] .... 82316.309010: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
66513<...>-770 ( 770) [005] d..2 82316.309046: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27658 next_prio=110
66514           <...>-27658 (-----) [005] .... 82316.309057: binder_transaction_received: transaction=1570159
66515          <idle>-0     (-----) [003] d.h2 82316.309084: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
66516<...>-581 ( 571) [000] d..2 82316.309092: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66517          <idle>-0     (-----) [003] dnh3 82316.309101: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
66518          <idle>-0     (-----) [000] d..1 82316.309109: cpu_idle: state=0 cpu_id=0
66519          <idle>-0     (-----) [003] .n.1 82316.309110: cpu_idle: state=4294967295 cpu_id=3
66520          <idle>-0     (-----) [003] d..2 82316.309120: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
66521           <...>-27658 (-----) [005] ...1 82316.309127: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
66522           <...>-27658 (-----) [005] ...1 82316.309132: tracing_mark_write: E|27550
66523        DispSync-8879  ( 8858) [003] d..1 82316.309140: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
66524           <...>-27658 (-----) [005] .... 82316.309147: binder_transaction: transaction=1570160 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
66525           <...>-27658 (-----) [005] .... 82316.309149: binder_transaction_alloc_buf: transaction=1570160 data_size=48 offsets_size=0
66526           <...>-27658 (-----) [005] ...2 82316.309152: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
66527           <...>-27658 (-----) [005] d..4 82316.309155: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
66528        DispSync-8879  ( 8858) [003] d..2 82316.309163: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
66529           <...>-27658 (-----) [005] dn.5 82316.309165: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
66530          <idle>-0     (-----) [002] .n.1 82316.309169: cpu_idle: state=4294967295 cpu_id=2
66531           <...>-27658 (-----) [005] d..2 82316.309171: sched_switch: prev_comm=id.nn.benchmark prev_pid=27658 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
66532<...>-770 ( 770) [005] .... 82316.309180: binder_transaction_received: transaction=1570160
66533          <idle>-0     (-----) [002] d..2 82316.309182: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
66534<...>-770 ( 770) [005] ...1 82316.309197: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
66535        DispSync-8879  ( 8858) [003] d..2 82316.309198: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
66536          <idle>-0     (-----) [003] d..1 82316.309212: cpu_idle: state=0 cpu_id=3
66537<...>-770 ( 770) [005] d..2 82316.309256: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
66538  appEventThread-8881  ( 8858) [002] d..3 82316.309257: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
66539          <idle>-0     (-----) [000] dnh2 82316.309287: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
66540<...>-770 ( 770) [005] ...1 82316.309289: tracing_mark_write: E|770
66541  appEventThread-8881  ( 8858) [002] d..4 82316.309292: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
66542          <idle>-0     (-----) [000] .n.1 82316.309295: cpu_idle: state=4294967295 cpu_id=0
66543<...>-770 ( 770) [005] .... 82316.309296: binder_transaction: transaction=1570161 dest_node=0 dest_proc=27550 dest_thread=27658 reply=1 flags=0x0 code=0x0
66544          <idle>-0     (-----) [001] .n.1 82316.309296: cpu_idle: state=4294967295 cpu_id=1
66545<...>-770 ( 770) [005] .... 82316.309299: binder_transaction_alloc_buf: transaction=1570161 data_size=168 offsets_size=32
66546<...>-770 ( 770) [005] .... 82316.309305: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
66547          <idle>-0     (-----) [000] d..2 82316.309307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
66548          <idle>-0     (-----) [001] d..2 82316.309311: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
66549<...>-770 ( 770) [005] d..2 82316.309339: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27658 next_prio=110
66550  appEventThread-8881  ( 8858) [002] d..2 82316.309342: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66551           <...>-27658 (-----) [005] .... 82316.309350: binder_transaction_received: transaction=1570161
66552          <idle>-0     (-----) [002] d..1 82316.309361: cpu_idle: state=0 cpu_id=2
66553<...>-581 ( 571) [000] d..2 82316.309368: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66554          <idle>-0     (-----) [000] d..1 82316.309384: cpu_idle: state=0 cpu_id=0
66555           <...>-27658 (-----) [005] ...1 82316.309620: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
66556           <...>-27658 (-----) [005] ...1 82316.309630: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
66557           <...>-27658 (-----) [005] ...1 82316.309634: tracing_mark_write: E|27550
66558<...>-9105 ( 9105) [001] .... 82316.309688: binder_transaction: transaction=1570162 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
66559           <...>-27658 (-----) [005] .... 82316.309692: binder_transaction: transaction=1570163 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
66560<...>-9105 ( 9105) [001] .... 82316.309696: binder_transaction_alloc_buf: transaction=1570162 data_size=80 offsets_size=0
66561           <...>-27658 (-----) [005] .... 82316.309696: binder_transaction_alloc_buf: transaction=1570163 data_size=556 offsets_size=104
66562<...>-9105 ( 9105) [001] d..4 82316.309703: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
66563           <...>-27658 (-----) [005] ...2 82316.309709: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
66564           <...>-27658 (-----) [005] d..4 82316.309712: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66565           <...>-27658 (-----) [005] dn.5 82316.309723: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66566           <...>-27658 (-----) [005] d..2 82316.309730: sched_switch: prev_comm=id.nn.benchmark prev_pid=27658 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66567<...>-9105 ( 9105) [001] d..5 82316.309736: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
66568<...>-5340 ( 788) [005] .... 82316.309740: binder_transaction_received: transaction=1570163
66569          <idle>-0     (-----) [000] .n.1 82316.309742: cpu_idle: state=4294967295 cpu_id=0
66570          <idle>-0     (-----) [000] d..2 82316.309755: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
66571<...>-13083 ( 8858) [000] .... 82316.309766: binder_transaction_received: transaction=1570162
66572<...>-9105 ( 9105) [001] d..3 82316.309779: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
66573<...>-5340 ( 788) [005] ...1 82316.309785: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
66574<...>-9105 ( 9105) [001] d..4 82316.309799: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
66575          <idle>-0     (-----) [002] .n.1 82316.309807: cpu_idle: state=4294967295 cpu_id=2
66576<...>-13083 ( 8858) [000] d..1 82316.309811: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
66577          <idle>-0     (-----) [002] d..2 82316.309820: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
66578<...>-5340 ( 788) [005] d..2 82316.309827: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
66579<...>-13083 ( 8858) [000] d..2 82316.309852: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
66580          <idle>-0     (-----) [003] .n.1 82316.309858: cpu_idle: state=4294967295 cpu_id=3
66581<...>-5340 ( 788) [005] d..2 82316.309865: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27658 next_prio=110
66582          <idle>-0     (-----) [003] d..2 82316.309869: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
66583<...>-13083 ( 8858) [000] d.h1 82316.309871: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
66584           <...>-27658 (-----) [005] d..2 82316.309888: sched_switch: prev_comm=id.nn.benchmark prev_pid=27658 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
66585    RenderThread-9436  ( 9105) [002] d..2 82316.309901: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
66586          <idle>-0     (-----) [005] d..1 82316.309906: cpu_idle: state=0 cpu_id=5
66587<...>-13083 ( 8858) [000] d..2 82316.309927: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66588  appEventThread-8881  ( 8858) [003] d..2 82316.309929: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
66589<...>-9105 ( 9105) [001] d..3 82316.309933: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
66590          <idle>-0     (-----) [003] d..1 82316.309941: cpu_idle: state=0 cpu_id=3
66591          <idle>-0     (-----) [000] d..1 82316.309946: cpu_idle: state=0 cpu_id=0
66592<...>-87 ( 87) [002] d..2 82316.309947: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66593<...>-9105 ( 9105) [001] d..4 82316.309967: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
66594          <idle>-0     (-----) [002] d.h5 82316.309971: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66595          <idle>-0     (-----) [000] .n.1 82316.309974: cpu_idle: state=4294967295 cpu_id=0
66596          <idle>-0     (-----) [000] d..2 82316.309988: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
66597          <idle>-0     (-----) [002] dnh6 82316.309989: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66598          <idle>-0     (-----) [002] d..2 82316.310005: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
66599<...>-9105 ( 9105) [001] d..2 82316.310006: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
66600          <idle>-0     (-----) [001] d..1 82316.310021: cpu_idle: state=0 cpu_id=1
66601<...>-86 ( 86) [002] d.h4 82316.310034: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66602          <idle>-0     (-----) [005] dnh2 82316.310056: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66603          <idle>-0     (-----) [005] .n.1 82316.310060: cpu_idle: state=4294967295 cpu_id=5
66604          <idle>-0     (-----) [005] d..2 82316.310068: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66605<...>-86 ( 86) [002] d..2 82316.310096: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66606          <idle>-0     (-----) [002] d..1 82316.310113: cpu_idle: state=0 cpu_id=2
66607<...>-5340 ( 788) [005] d..1 82316.310119: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
66608    RenderThread-9436  ( 9105) [000] d..1 82316.310135: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
66609          <idle>-0     (-----) [001] dnh2 82316.310154: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
66610          <idle>-0     (-----) [001] .n.1 82316.310167: cpu_idle: state=4294967295 cpu_id=1
66611    RenderThread-9436  ( 9105) [000] d..2 82316.310173: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
66612          <idle>-0     (-----) [001] d..2 82316.310177: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
66613          <idle>-0     (-----) [002] .n.1 82316.310180: cpu_idle: state=4294967295 cpu_id=2
66614          <idle>-0     (-----) [002] d..2 82316.310193: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
66615 neuralnetworks@-13088 (  788) [001] d..2 82316.310237: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
66616          <idle>-0     (-----) [001] d..1 82316.310248: cpu_idle: state=0 cpu_id=1
66617    RenderThread-9436  ( 9105) [000] .... 82316.310250: binder_transaction: transaction=1570166 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
66618    RenderThread-9436  ( 9105) [000] .... 82316.310255: binder_transaction_alloc_buf: transaction=1570166 data_size=104 offsets_size=0
66619    RenderThread-9436  ( 9105) [000] d..4 82316.310260: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
66620<...>-5340 ( 788) [005] d..2 82316.310272: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
66621    RenderThread-9436  ( 9105) [000] dn.5 82316.310275: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
66622    RenderThread-9436  ( 9105) [000] d..2 82316.310285: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
66623<...>-13083 ( 8858) [000] .... 82316.310294: binder_transaction_received: transaction=1570166
66624<...>-5340 ( 788) [005] d..2 82316.310301: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
66625<...>-9105 ( 9105) [002] d..2 82316.310308: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66626          <idle>-0     (-----) [005] d..1 82316.310316: cpu_idle: state=0 cpu_id=5
66627          <idle>-0     (-----) [002] dnh3 82316.310323: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
66628          <idle>-0     (-----) [002] d..2 82316.310335: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
66629<...>-13083 ( 8858) [000] .... 82316.310369: binder_transaction: transaction=1570167 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
66630<...>-87 ( 87) [002] d.h4 82316.310372: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66631<...>-13083 ( 8858) [000] .... 82316.310374: binder_transaction_alloc_buf: transaction=1570167 data_size=52 offsets_size=8
66632<...>-87 ( 87) [002] d.h5 82316.310391: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66633<...>-87 ( 87) [002] d..2 82316.310408: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
66634<...>-13083 ( 8858) [000] d..2 82316.310427: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
66635    RenderThread-9436  ( 9105) [000] .... 82316.310438: binder_transaction_received: transaction=1570167
66636<...>-86 ( 86) [002] d..2 82316.310443: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66637          <idle>-0     (-----) [002] d..1 82316.310461: cpu_idle: state=0 cpu_id=2
66638          <idle>-0     (-----) [005] ...1 82316.310681: cpu_idle: state=4294967295 cpu_id=5
66639          <idle>-0     (-----) [005] d..1 82316.310685: cpu_idle: state=0 cpu_id=5
66640    RenderThread-9436  ( 9105) [000] d..2 82316.311516: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
66641          <idle>-0     (-----) [000] d..1 82316.311534: cpu_idle: state=0 cpu_id=0
66642          <idle>-0     (-----) [000] d.h2 82316.311596: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
66643          <idle>-0     (-----) [000] d.h3 82316.311608: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
66644          <idle>-0     (-----) [000] dnh3 82316.311614: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
66645          <idle>-0     (-----) [000] dnh3 82316.311644: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
66646          <idle>-0     (-----) [000] dnh4 82316.311671: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
66647          <idle>-0     (-----) [003] .n.1 82316.311677: cpu_idle: state=4294967295 cpu_id=3
66648          <idle>-0     (-----) [000] .n.1 82316.311685: cpu_idle: state=4294967295 cpu_id=0
66649          <idle>-0     (-----) [003] d..2 82316.311688: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
66650          <idle>-0     (-----) [000] d..2 82316.311699: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
66651 kgsl_worker_thr-258   (  258) [003] d..2 82316.311713: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
66652    RenderThread-9436  ( 9105) [000] d..1 82316.311719: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
66653          <idle>-0     (-----) [003] d..1 82316.311723: cpu_idle: state=0 cpu_id=3
66654    RenderThread-9436  ( 9105) [000] d..2 82316.311735: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
66655          <idle>-0     (-----) [003] .n.1 82316.311740: cpu_idle: state=4294967295 cpu_id=3
66656          <idle>-0     (-----) [003] d..2 82316.311750: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
66657 kgsl_worker_thr-258   (  258) [003] d.s3 82316.311818: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
66658 kgsl_worker_thr-258   (  258) [003] d.s3 82316.311879: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
66659          <idle>-0     (-----) [005] dnh2 82316.311885: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
66660          <idle>-0     (-----) [005] .n.1 82316.311889: cpu_idle: state=4294967295 cpu_id=5
66661          <idle>-0     (-----) [001] d.H3 82316.311891: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
66662 kgsl_worker_thr-258   (  258) [003] d.s3 82316.311892: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
66663          <idle>-0     (-----) [005] d..2 82316.311899: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
66664          <idle>-0     (-----) [004] dnh2 82316.311901: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
66665          <idle>-0     (-----) [004] .n.1 82316.311906: cpu_idle: state=4294967295 cpu_id=4
66666          <idle>-0     (-----) [004] d..2 82316.311914: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
66667          <idle>-0     (-----) [001] dnH4 82316.311916: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
66668 kgsl_worker_thr-258   (  258) [003] d.s4 82316.311918: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
66669     kworker/5:0-23997 (23997) [005] d..2 82316.311920: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
66670          <idle>-0     (-----) [001] dns2 82316.311924: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
66671          <idle>-0     (-----) [005] d..1 82316.311927: cpu_idle: state=0 cpu_id=5
66672     kworker/4:1-25432 (25432) [004] d..2 82316.311931: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66673          <idle>-0     (-----) [004] d..1 82316.311937: cpu_idle: state=0 cpu_id=4
66674          <idle>-0     (-----) [001] dns3 82316.311944: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
66675          <idle>-0     (-----) [001] dns2 82316.311947: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
66676 kgsl_worker_thr-258   (  258) [003] d..2 82316.311964: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
66677          <idle>-0     (-----) [001] dns3 82316.311983: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
66678          <idle>-0     (-----) [002] ...1 82316.311984: cpu_idle: state=4294967295 cpu_id=2
66679          <idle>-0     (-----) [002] d..1 82316.311990: cpu_idle: state=0 cpu_id=2
66680          <idle>-0     (-----) [001] .n.1 82316.311996: cpu_idle: state=4294967295 cpu_id=1
66681          <idle>-0     (-----) [001] d..2 82316.312006: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
66682 kgsl_worker_thr-258   (  258) [003] d..3 82316.312013: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
66683          <idle>-0     (-----) [002] dnh4 82316.312014: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66684    RenderThread-9436  ( 9105) [000] .... 82316.312031: binder_transaction: transaction=1570168 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
66685 kgsl_worker_thr-258   (  258) [003] d..2 82316.312033: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
66686          <idle>-0     (-----) [005] dnh2 82316.312036: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66687    RenderThread-9436  ( 9105) [000] .... 82316.312037: binder_transaction_alloc_buf: transaction=1570168 data_size=192 offsets_size=8
66688          <idle>-0     (-----) [005] .n.1 82316.312039: cpu_idle: state=4294967295 cpu_id=5
66689         sugov:0-576   (  576) [001] .... 82316.312041: clk_set_rate: pwrcl_clk 902400000
66690          <idle>-0     (-----) [005] d..2 82316.312045: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66691    RenderThread-9436  ( 9105) [000] d..4 82316.312047: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
66692     kworker/3:1-25210 (25210) [003] d..2 82316.312057: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
66693          <idle>-0     (-----) [002] .n.1 82316.312058: cpu_idle: state=4294967295 cpu_id=2
66694         sugov:0-576   (  576) [001] .... 82316.312062: clk_set_rate: cpu3_pwrcl_clk 748800000
66695    RenderThread-9436  ( 9105) [000] dn.5 82316.312066: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
66696         sugov:0-576   (  576) [001] .... 82316.312072: clk_set_rate: cpu2_pwrcl_clk 748800000
66697          <idle>-0     (-----) [002] d..2 82316.312073: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
66698    RenderThread-9436  ( 9105) [000] d..2 82316.312078: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
66699         sugov:0-576   (  576) [001] .... 82316.312080: clk_set_rate: cpu1_pwrcl_clk 748800000
66700<...>-13083 ( 8858) [000] .... 82316.312087: binder_transaction_received: transaction=1570168
66701         sugov:0-576   (  576) [001] .... 82316.312088: clk_set_rate: cpu0_pwrcl_clk 902400000
66702     rcu_preempt-7     (    7) [003] d..2 82316.312097: 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
66703<...>-5340 ( 788) [005] d..1 82316.312097: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
66704         sugov:0-576   (  576) [001] .... 82316.312097: cpu_frequency: state=902400 cpu_id=0
66705          <idle>-0     (-----) [003] d..1 82316.312113: cpu_idle: state=0 cpu_id=3
66706         sugov:0-576   (  576) [001] .... 82316.312122: cpu_frequency: state=902400 cpu_id=1
66707         sugov:0-576   (  576) [001] .... 82316.312127: cpu_frequency: state=902400 cpu_id=2
66708         sugov:0-576   (  576) [001] .... 82316.312131: cpu_frequency: state=902400 cpu_id=3
66709  kworker/u16:13-1147  ( 1147) [002] d..2 82316.312132: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66710          <idle>-0     (-----) [003] dnh2 82316.312136: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
66711          <idle>-0     (-----) [003] .n.1 82316.312146: cpu_idle: state=4294967295 cpu_id=3
66712          <idle>-0     (-----) [002] d..1 82316.312147: cpu_idle: state=0 cpu_id=2
66713         sugov:0-576   (  576) [001] d..2 82316.312152: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
66714          <idle>-0     (-----) [003] d..2 82316.312155: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
66715<...>-8 ( 8) [001] d..2 82316.312208: 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
66716<...>-5340 ( 788) [005] ...1 82316.312209: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
66717<...>-5340 ( 788) [005] ...1 82316.312213: tracing_mark_write: E|788
66718          <idle>-0     (-----) [001] d..1 82316.312223: cpu_idle: state=0 cpu_id=1
66719 neuralnetworks@-13088 (  788) [003] d..2 82316.312228: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
66720<...>-5340 ( 788) [005] .... 82316.312231: binder_transaction: transaction=1570169 dest_node=1570164 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
66721<...>-5340 ( 788) [005] .... 82316.312234: binder_transaction_alloc_buf: transaction=1570169 data_size=60 offsets_size=0
66722<...>-5340 ( 788) [005] d..4 82316.312238: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
66723          <idle>-0     (-----) [003] d..1 82316.312238: cpu_idle: state=0 cpu_id=3
66724<...>-5340 ( 788) [005] d..5 82316.312252: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
66725          <idle>-0     (-----) [004] .n.1 82316.312257: cpu_idle: state=4294967295 cpu_id=4
66726          <idle>-0     (-----) [004] d..2 82316.312263: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
66727<...>-13083 ( 8858) [000] .... 82316.312264: binder_transaction: transaction=1570170 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
66728           <...>-27571 (-----) [004] .... 82316.312268: binder_transaction_received: transaction=1570169
66729<...>-13083 ( 8858) [000] .... 82316.312269: binder_transaction_alloc_buf: transaction=1570170 data_size=68 offsets_size=0
66730<...>-5340 ( 788) [005] ...1 82316.312276: tracing_mark_write: E|788
66731<...>-5340 ( 788) [005] .... 82316.312283: binder_transaction: transaction=1570171 dest_node=0 dest_proc=27550 dest_thread=27658 reply=1 flags=0x0 code=0x0
66732<...>-5340 ( 788) [005] .... 82316.312285: binder_transaction_alloc_buf: transaction=1570171 data_size=8 offsets_size=0
66733<...>-5340 ( 788) [005] d..2 82316.312287: sched_waking: comm=id.nn.benchmark pid=27658 prio=110 target_cpu=005
66734           <...>-27571 (-----) [004] ...1 82316.312290: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
66735<...>-5340 ( 788) [005] d..3 82316.312294: sched_wakeup: comm=id.nn.benchmark pid=27658 prio=110 target_cpu=005
66736<...>-5340 ( 788) [005] .... 82316.312296: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
66737           <...>-27571 (-----) [004] ...1 82316.312296: tracing_mark_write: E|27550
66738<...>-13083 ( 8858) [000] d..2 82316.312311: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
66739    RenderThread-9436  ( 9105) [000] .... 82316.312320: binder_transaction_received: transaction=1570170
66740           <...>-27571 (-----) [004] d..2 82316.312325: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66741          <idle>-0     (-----) [004] d..1 82316.312332: cpu_idle: state=0 cpu_id=4
66742<...>-5340 ( 788) [005] d..2 82316.312339: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27658 next_prio=110
66743           <...>-27658 (-----) [005] .... 82316.312349: binder_transaction_received: transaction=1570171
66744           <...>-27658 (-----) [005] ...1 82316.312388: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
66745           <...>-27658 (-----) [005] ...1 82316.312394: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
66746    RenderThread-9436  ( 9105) [000] d..2 82316.312410: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
66747           <...>-27658 (-----) [005] ...1 82316.312421: tracing_mark_write: E|27550
66748           <...>-27658 (-----) [005] ...1 82316.312424: tracing_mark_write: E|27550
66749           <...>-27658 (-----) [005] ...1 82316.312428: tracing_mark_write: E|27550
66750          <idle>-0     (-----) [000] d..1 82316.312430: cpu_idle: state=0 cpu_id=0
66751           <...>-27658 (-----) [005] ...1 82316.312624: tracing_mark_write: E|27550
66752           <...>-27658 (-----) [005] d..1 82316.312637: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66753           <...>-27658 (-----) [005] d..2 82316.312655: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66754          <idle>-0     (-----) [004] .n.1 82316.312660: cpu_idle: state=4294967295 cpu_id=4
66755          <idle>-0     (-----) [004] d..2 82316.312666: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
66756           <...>-27550 (-----) [004] d..2 82316.312686: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66757          <idle>-0     (-----) [004] d..1 82316.312695: cpu_idle: state=0 cpu_id=4
66758           <...>-27658 (-----) [005] d..1 82316.312760: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66759           <...>-27658 (-----) [005] d..2 82316.312770: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66760          <idle>-0     (-----) [004] .n.1 82316.312774: cpu_idle: state=4294967295 cpu_id=4
66761          <idle>-0     (-----) [004] d..2 82316.312782: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
66762           <...>-27658 (-----) [005] d..2 82316.312810: sched_switch: prev_comm=id.nn.benchmark prev_pid=27658 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
66763           <...>-27550 (-----) [004] ...1 82316.312816: tracing_mark_write: E|27550
66764           <...>-27550 (-----) [004] ...1 82316.312820: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
66765           <...>-27550 (-----) [004] ...1 82316.312827: tracing_mark_write: E|27550
66766          <idle>-0     (-----) [005] d..1 82316.312827: cpu_idle: state=0 cpu_id=5
66767           <...>-27550 (-----) [004] ...1 82316.312830: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
66768           <...>-27550 (-----) [004] ...1 82316.312834: tracing_mark_write: E|27550
66769           <...>-27550 (-----) [004] ...1 82316.312839: tracing_mark_write: E|27550
66770           <...>-27550 (-----) [004] ...1 82316.312953: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
66771           <...>-27550 (-----) [004] ...1 82316.313010: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
66772           <...>-27550 (-----) [004] ...1 82316.313016: tracing_mark_write: E|27550
66773           <...>-27550 (-----) [004] ...1 82316.313020: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
66774           <...>-27550 (-----) [004] ...1 82316.313025: tracing_mark_write: E|27550
66775           <...>-27550 (-----) [004] ...1 82316.313029: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
66776           <...>-27550 (-----) [004] ...1 82316.313034: tracing_mark_write: E|27550
66777           <...>-27550 (-----) [004] ...1 82316.313037: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
66778          <idle>-0     (-----) [003] d.h2 82316.313091: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
66779          <idle>-0     (-----) [003] dnh3 82316.313106: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
66780          <idle>-0     (-----) [003] .n.1 82316.313114: cpu_idle: state=4294967295 cpu_id=3
66781          <idle>-0     (-----) [003] d..2 82316.313124: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
66782          <idle>-0     (-----) [005] .n.1 82316.313137: cpu_idle: state=4294967295 cpu_id=5
66783           <...>-27550 (-----) [004] ...1 82316.313139: tracing_mark_write: E|27550
66784        DispSync-8879  ( 8858) [003] d..1 82316.313143: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
66785           <...>-27550 (-----) [004] ...1 82316.313144: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
66786          <idle>-0     (-----) [005] d..2 82316.313146: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27659 next_prio=110
66787        DispSync-8879  ( 8858) [003] d..2 82316.313159: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
66788           <...>-27550 (-----) [004] d..2 82316.313161: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66789          <idle>-0     (-----) [001] .n.1 82316.313165: cpu_idle: state=4294967295 cpu_id=1
66790          <idle>-0     (-----) [004] d..1 82316.313172: cpu_idle: state=0 cpu_id=4
66791          <idle>-0     (-----) [001] d..2 82316.313175: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
66792        DispSync-8879  ( 8858) [003] d..2 82316.313189: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
66793          <idle>-0     (-----) [003] d..1 82316.313201: cpu_idle: state=0 cpu_id=3
66794           <...>-27659 (-----) [005] ...1 82316.313207: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
66795           <...>-27659 (-----) [005] ...1 82316.313222: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
66796   sfEventThread-8882  ( 8858) [001] d..3 82316.313225: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
66797           <...>-27659 (-----) [005] ...1 82316.313225: tracing_mark_write: E|27550
66798   sfEventThread-8882  ( 8858) [001] d..4 82316.313248: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
66799           <...>-27659 (-----) [005] .... 82316.313248: binder_transaction: transaction=1570172 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
66800           <...>-27659 (-----) [005] .... 82316.313252: binder_transaction_alloc_buf: transaction=1570172 data_size=48 offsets_size=0
66801          <idle>-0     (-----) [003] .n.1 82316.313253: cpu_idle: state=4294967295 cpu_id=3
66802           <...>-27659 (-----) [005] ...2 82316.313255: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
66803           <...>-27659 (-----) [005] d..4 82316.313258: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
66804          <idle>-0     (-----) [003] d..2 82316.313263: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
66805           <...>-27659 (-----) [005] dn.5 82316.313269: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
66806           <...>-27659 (-----) [005] d..2 82316.313276: sched_switch: prev_comm=id.nn.benchmark prev_pid=27659 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
66807   sfEventThread-8882  ( 8858) [001] d..2 82316.313282: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
66808<...>-770 ( 770) [005] .... 82316.313286: binder_transaction_received: transaction=1570172
66809          <idle>-0     (-----) [001] d..1 82316.313295: cpu_idle: state=0 cpu_id=1
66810<...>-770 ( 770) [005] ...1 82316.313312: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
66811<...>-770 ( 770) [005] d..2 82316.313397: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
66812  surfaceflinger-8858  ( 8858) [003] d.h1 82316.313439: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
66813<...>-770 ( 770) [005] ...1 82316.313454: tracing_mark_write: E|770
66814<...>-770 ( 770) [005] .... 82316.313462: binder_transaction: transaction=1570173 dest_node=0 dest_proc=27550 dest_thread=27659 reply=1 flags=0x0 code=0x0
66815<...>-770 ( 770) [005] .... 82316.313465: binder_transaction_alloc_buf: transaction=1570173 data_size=168 offsets_size=32
66816<...>-770 ( 770) [005] .... 82316.313472: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
66817<...>-770 ( 770) [005] d..2 82316.313508: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27659 next_prio=110
66818           <...>-27659 (-----) [005] .... 82316.313519: binder_transaction_received: transaction=1570173
66819          <idle>-0     (-----) [000] ...1 82316.313562: cpu_idle: state=4294967295 cpu_id=0
66820          <idle>-0     (-----) [000] d..1 82316.313567: cpu_idle: state=0 cpu_id=0
66821           <...>-27659 (-----) [005] ...1 82316.313594: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
66822           <...>-27659 (-----) [005] ...1 82316.313599: tracing_mark_write: E|27550
66823  surfaceflinger-8858  ( 8858) [003] d..1 82316.313606: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
66824           <...>-27659 (-----) [005] .... 82316.313616: binder_transaction: transaction=1570174 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
66825           <...>-27659 (-----) [005] .... 82316.313618: binder_transaction_alloc_buf: transaction=1570174 data_size=48 offsets_size=0
66826           <...>-27659 (-----) [005] ...2 82316.313621: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
66827           <...>-27659 (-----) [005] d..4 82316.313623: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
66828  surfaceflinger-8858  ( 8858) [003] d..2 82316.313625: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
66829          <idle>-0     (-----) [001] .n.1 82316.313631: cpu_idle: state=4294967295 cpu_id=1
66830           <...>-27659 (-----) [005] dn.5 82316.313633: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
66831           <...>-27659 (-----) [005] d..2 82316.313639: sched_switch: prev_comm=id.nn.benchmark prev_pid=27659 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
66832          <idle>-0     (-----) [001] d..2 82316.313641: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
66833<...>-770 ( 770) [005] .... 82316.313647: binder_transaction_received: transaction=1570174
66834<...>-770 ( 770) [005] ...1 82316.313664: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
66835   sfEventThread-8882  ( 8858) [001] d..2 82316.313675: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
66836          <idle>-0     (-----) [001] d..1 82316.313684: cpu_idle: state=0 cpu_id=1
66837<...>-770 ( 770) [005] ...1 82316.313744: tracing_mark_write: E|770
66838<...>-770 ( 770) [005] .... 82316.313751: binder_transaction: transaction=1570175 dest_node=0 dest_proc=27550 dest_thread=27659 reply=1 flags=0x0 code=0x0
66839<...>-770 ( 770) [005] .... 82316.313754: binder_transaction_alloc_buf: transaction=1570175 data_size=168 offsets_size=32
66840<...>-770 ( 770) [005] .... 82316.313759: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
66841<...>-770 ( 770) [005] d..2 82316.313794: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27659 next_prio=110
66842           <...>-27659 (-----) [005] .... 82316.313804: binder_transaction_received: transaction=1570175
66843  surfaceflinger-8858  ( 8858) [003] ...1 82316.313814: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
66844  surfaceflinger-8858  ( 8858) [003] ...1 82316.313820: tracing_mark_write: E|8858
66845  surfaceflinger-8858  ( 8858) [003] .... 82316.313873: binder_transaction: transaction=1570176 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
66846  surfaceflinger-8858  ( 8858) [003] .... 82316.313878: binder_transaction_alloc_buf: transaction=1570176 data_size=540 offsets_size=96
66847  surfaceflinger-8858  ( 8858) [003] ...2 82316.313902: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
66848  surfaceflinger-8858  ( 8858) [003] d..4 82316.313910: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
66849  surfaceflinger-8858  ( 8858) [003] d..5 82316.313930: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
66850          <idle>-0     (-----) [001] .n.1 82316.313935: cpu_idle: state=4294967295 cpu_id=1
66851          <idle>-0     (-----) [001] d..2 82316.313945: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
66852  surfaceflinger-8858  ( 8858) [003] d..2 82316.313951: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
66853 [email protected]   (  619) [001] .... 82316.313954: binder_transaction_received: transaction=1570176
66854 [email protected]   (  619) [001] ...1 82316.314001: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
66855<...>-581 ( 571) [003] d..2 82316.314076: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
66856           <...>-27659 (-----) [005] ...1 82316.314077: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
66857           <...>-27659 (-----) [005] ...1 82316.314086: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
66858           <...>-27659 (-----) [005] ...1 82316.314089: tracing_mark_write: E|27550
66859          <idle>-0     (-----) [003] d..1 82316.314093: cpu_idle: state=0 cpu_id=3
66860 [email protected]   (  619) [001] ...1 82316.314104: tracing_mark_write: B|619|HWCSession::PresentDisplay::
66861           <...>-27659 (-----) [005] .... 82316.314151: binder_transaction: transaction=1570177 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
66862           <...>-27659 (-----) [005] .... 82316.314154: binder_transaction_alloc_buf: transaction=1570177 data_size=556 offsets_size=104
66863           <...>-27659 (-----) [005] ...2 82316.314169: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
66864           <...>-27659 (-----) [005] d..4 82316.314171: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66865           <...>-27659 (-----) [005] dn.5 82316.314182: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66866           <...>-27659 (-----) [005] d..2 82316.314189: sched_switch: prev_comm=id.nn.benchmark prev_pid=27659 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66867<...>-5340 ( 788) [005] .... 82316.314199: binder_transaction_received: transaction=1570177
66868<...>-5340 ( 788) [005] ...1 82316.314246: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
66869 [email protected]   (  619) [001] ...1 82316.314273: tracing_mark_write: B|619|HWDeviceDRM::Commit::
66870 [email protected]   (  619) [001] ...1 82316.314286: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
66871<...>-5340 ( 788) [005] d..2 82316.314293: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
66872<...>-5340 ( 788) [005] d..2 82316.314333: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27659 next_prio=110
66873 [email protected]   (  619) [001] d.h1 82316.314338: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
66874           <...>-27659 (-----) [005] d..2 82316.314356: sched_switch: prev_comm=id.nn.benchmark prev_pid=27659 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
66875          <idle>-0     (-----) [005] d..1 82316.314369: cpu_idle: state=0 cpu_id=5
66876 [email protected]   (  619) [001] d..2 82316.314904: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
66877 [email protected]   (  619) [001] d..3 82316.314928: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
66878          <idle>-0     (-----) [002] .n.1 82316.314934: cpu_idle: state=4294967295 cpu_id=2
66879          <idle>-0     (-----) [002] d..2 82316.314944: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
66880 [email protected]   (  619) [001] ...1 82316.315025: tracing_mark_write: E|619
66881 [email protected]   (  619) [001] ...1 82316.315031: tracing_mark_write: E|619
66882 [email protected]   (  619) [001] ...1 82316.315091: tracing_mark_write: E|619
66883 [email protected]   (  619) [001] ...1 82316.315179: tracing_mark_write: E|619
66884 [email protected]   (  619) [001] .... 82316.315194: binder_transaction: transaction=1570180 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
66885 [email protected]   (  619) [001] .... 82316.315198: binder_transaction_alloc_buf: transaction=1570180 data_size=576 offsets_size=112
66886 [email protected]   (  619) [001] d..2 82316.315218: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
66887 [email protected]   (  619) [001] d..3 82316.315235: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
66888 [email protected]   (  619) [001] .... 82316.315239: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
66889          <idle>-0     (-----) [003] .n.1 82316.315241: cpu_idle: state=4294967295 cpu_id=3
66890          <idle>-0     (-----) [003] d..2 82316.315254: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
66891  surfaceflinger-8858  ( 8858) [003] .... 82316.315263: binder_transaction_received: transaction=1570180
66892 [email protected]   (  619) [001] d..2 82316.315309: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
66893 crtc_commit:111-321   (  321) [002] d.h3 82316.315359: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
66894<...>-87 ( 87) [001] d..2 82316.315361: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
66895          <idle>-0     (-----) [001] d..1 82316.315373: cpu_idle: state=0 cpu_id=1
66896 crtc_commit:111-321   (  321) [002] d.h4 82316.315391: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
66897          <idle>-0     (-----) [001] .n.1 82316.315397: cpu_idle: state=4294967295 cpu_id=1
66898          <idle>-0     (-----) [001] d..2 82316.315406: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
66899<...>-86 ( 86) [001] d..3 82316.315439: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66900          <idle>-0     (-----) [005] dnh2 82316.315462: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66901          <idle>-0     (-----) [005] .n.1 82316.315466: cpu_idle: state=4294967295 cpu_id=5
66902          <idle>-0     (-----) [005] d..2 82316.315476: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66903<...>-86 ( 86) [001] d..2 82316.315490: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
66904          <idle>-0     (-----) [001] d..1 82316.315499: cpu_idle: state=0 cpu_id=1
66905<...>-5340 ( 788) [005] d..1 82316.315530: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
66906 crtc_commit:111-321   (  321) [002] d.h1 82316.315566: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
66907  surfaceflinger-8858  ( 8858) [003] d..2 82316.315681: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
66908<...>-5340 ( 788) [005] d..2 82316.315693: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
66909          <idle>-0     (-----) [003] d..1 82316.315695: cpu_idle: state=0 cpu_id=3
66910          <idle>-0     (-----) [001] dnh2 82316.315715: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
66911<...>-5340 ( 788) [005] d..2 82316.315719: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
66912          <idle>-0     (-----) [001] .n.1 82316.315721: cpu_idle: state=4294967295 cpu_id=1
66913          <idle>-0     (-----) [001] d..2 82316.315729: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
66914          <idle>-0     (-----) [005] d..1 82316.315733: cpu_idle: state=0 cpu_id=5
66915 crtc_commit:111-321   (  321) [002] d.h3 82316.315762: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
66916<...>-87 ( 87) [001] d..2 82316.315764: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
66917          <idle>-0     (-----) [001] d..1 82316.315772: cpu_idle: state=0 cpu_id=1
66918 crtc_commit:111-321   (  321) [002] d.h4 82316.315779: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
66919          <idle>-0     (-----) [001] .n.1 82316.315784: cpu_idle: state=4294967295 cpu_id=1
66920          <idle>-0     (-----) [001] d..2 82316.315792: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
66921<...>-86 ( 86) [001] d..2 82316.315823: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
66922          <idle>-0     (-----) [001] d..1 82316.315830: cpu_idle: state=0 cpu_id=1
66923 crtc_commit:111-321   (  321) [002] d..2 82316.315839: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
66924 neuralnetworks@-13088 (  788) [002] d..2 82316.315893: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66925          <idle>-0     (-----) [002] d..1 82316.315910: cpu_idle: state=0 cpu_id=2
66926          <idle>-0     (-----) [002] d.h4 82316.317462: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66927          <idle>-0     (-----) [005] dnh2 82316.317484: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
66928          <idle>-0     (-----) [005] .n.1 82316.317489: cpu_idle: state=4294967295 cpu_id=5
66929          <idle>-0     (-----) [005] d..2 82316.317497: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
66930          <idle>-0     (-----) [002] ...1 82316.317501: cpu_idle: state=4294967295 cpu_id=2
66931          <idle>-0     (-----) [002] d..1 82316.317507: cpu_idle: state=0 cpu_id=2
66932<...>-5340 ( 788) [005] d..1 82316.317549: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
66933          <idle>-0     (-----) [002] dnh2 82316.317575: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
66934          <idle>-0     (-----) [002] .n.1 82316.317580: cpu_idle: state=4294967295 cpu_id=2
66935          <idle>-0     (-----) [002] d..2 82316.317592: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
66936<...>-5340 ( 788) [005] ...1 82316.317641: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
66937<...>-5340 ( 788) [005] ...1 82316.317645: tracing_mark_write: E|788
66938 neuralnetworks@-13088 (  788) [002] d..2 82316.317653: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
66939<...>-5340 ( 788) [005] .... 82316.317661: binder_transaction: transaction=1570181 dest_node=1570178 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
66940<...>-5340 ( 788) [005] .... 82316.317663: binder_transaction_alloc_buf: transaction=1570181 data_size=60 offsets_size=0
66941          <idle>-0     (-----) [002] d..1 82316.317665: cpu_idle: state=0 cpu_id=2
66942<...>-5340 ( 788) [005] d..4 82316.317667: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
66943<...>-5340 ( 788) [005] d..5 82316.317679: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
66944          <idle>-0     (-----) [004] .n.1 82316.317686: cpu_idle: state=4294967295 cpu_id=4
66945          <idle>-0     (-----) [004] d..2 82316.317694: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
66946           <...>-27571 (-----) [004] .... 82316.317699: binder_transaction_received: transaction=1570181
66947<...>-5340 ( 788) [005] ...1 82316.317702: tracing_mark_write: E|788
66948<...>-5340 ( 788) [005] .... 82316.317708: binder_transaction: transaction=1570182 dest_node=0 dest_proc=27550 dest_thread=27659 reply=1 flags=0x0 code=0x0
66949<...>-5340 ( 788) [005] .... 82316.317710: binder_transaction_alloc_buf: transaction=1570182 data_size=8 offsets_size=0
66950<...>-5340 ( 788) [005] d..2 82316.317712: sched_waking: comm=id.nn.benchmark pid=27659 prio=110 target_cpu=005
66951           <...>-27571 (-----) [004] ...1 82316.317718: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
66952<...>-5340 ( 788) [005] d..3 82316.317719: sched_wakeup: comm=id.nn.benchmark pid=27659 prio=110 target_cpu=005
66953<...>-5340 ( 788) [005] .... 82316.317720: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
66954           <...>-27571 (-----) [004] ...1 82316.317724: tracing_mark_write: E|27550
66955           <...>-27571 (-----) [004] d..2 82316.317754: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66956          <idle>-0     (-----) [004] d..1 82316.317762: cpu_idle: state=0 cpu_id=4
66957<...>-5340 ( 788) [005] d..2 82316.317763: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27659 next_prio=110
66958           <...>-27659 (-----) [005] .... 82316.317772: binder_transaction_received: transaction=1570182
66959           <...>-27659 (-----) [005] ...1 82316.317809: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
66960           <...>-27659 (-----) [005] ...1 82316.317816: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
66961           <...>-27659 (-----) [005] ...1 82316.317842: tracing_mark_write: E|27550
66962           <...>-27659 (-----) [005] ...1 82316.317845: tracing_mark_write: E|27550
66963           <...>-27659 (-----) [005] ...1 82316.317849: tracing_mark_write: E|27550
66964           <...>-27659 (-----) [005] ...1 82316.318039: tracing_mark_write: E|27550
66965           <...>-27659 (-----) [005] d..1 82316.318053: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66966           <...>-27659 (-----) [005] d..2 82316.318069: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66967          <idle>-0     (-----) [004] .n.1 82316.318073: cpu_idle: state=4294967295 cpu_id=4
66968          <idle>-0     (-----) [004] d..2 82316.318080: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
66969           <...>-27550 (-----) [004] d..2 82316.318100: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
66970          <idle>-0     (-----) [004] d..1 82316.318109: cpu_idle: state=0 cpu_id=4
66971           <...>-27659 (-----) [005] d..1 82316.318159: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66972           <...>-27659 (-----) [005] d..2 82316.318168: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
66973          <idle>-0     (-----) [004] .n.1 82316.318174: cpu_idle: state=4294967295 cpu_id=4
66974          <idle>-0     (-----) [004] d..2 82316.318182: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
66975           <...>-27659 (-----) [005] d..2 82316.318208: sched_switch: prev_comm=id.nn.benchmark prev_pid=27659 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
66976           <...>-27550 (-----) [004] ...1 82316.318215: tracing_mark_write: E|27550
66977           <...>-27550 (-----) [004] ...1 82316.318219: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
66978          <idle>-0     (-----) [005] d..1 82316.318224: cpu_idle: state=0 cpu_id=5
66979           <...>-27550 (-----) [004] ...1 82316.318225: tracing_mark_write: E|27550
66980           <...>-27550 (-----) [004] ...1 82316.318229: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
66981           <...>-27550 (-----) [004] ...1 82316.318233: tracing_mark_write: E|27550
66982           <...>-27550 (-----) [004] ...1 82316.318238: tracing_mark_write: E|27550
66983           <...>-27550 (-----) [004] ...1 82316.318352: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
66984           <...>-27550 (-----) [004] ...1 82316.318410: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
66985           <...>-27550 (-----) [004] ...1 82316.318415: tracing_mark_write: E|27550
66986           <...>-27550 (-----) [004] ...1 82316.318419: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
66987           <...>-27550 (-----) [004] ...1 82316.318425: tracing_mark_write: E|27550
66988           <...>-27550 (-----) [004] ...1 82316.318429: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
66989           <...>-27550 (-----) [004] ...1 82316.318434: tracing_mark_write: E|27550
66990          <idle>-0     (-----) [001] d.s2 82316.318468: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
66991           <...>-27550 (-----) [004] d.s2 82316.318469: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
66992          <idle>-0     (-----) [003] d.s2 82316.318469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
66993          <idle>-0     (-----) [001] dns3 82316.318485: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
66994          <idle>-0     (-----) [003] dns3 82316.318490: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
66995          <idle>-0     (-----) [001] .n.1 82316.318494: cpu_idle: state=4294967295 cpu_id=1
66996          <idle>-0     (-----) [001] d..2 82316.318504: 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
66997           <...>-27550 (-----) [004] ...1 82316.318505: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
66998          <idle>-0     (-----) [000] dnh2 82316.318508: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
66999          <idle>-0     (-----) [003] .n.1 82316.318510: cpu_idle: state=4294967295 cpu_id=3
67000<...>-8 ( 8) [001] d..2 82316.318514: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
67001          <idle>-0     (-----) [000] .n.1 82316.318514: cpu_idle: state=4294967295 cpu_id=0
67002          <idle>-0     (-----) [003] d..2 82316.318520: 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
67003          <idle>-0     (-----) [000] d..2 82316.318527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
67004     rcu_preempt-7     (    7) [003] d..2 82316.318530: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
67005<...>-8 ( 8) [001] d..3 82316.318554: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
67006     rcu_preempt-7     (    7) [003] d..3 82316.318570: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
67007     rcu_preempt-7     (    7) [003] d..2 82316.318586: 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
67008<...>-8 ( 8) [001] d..2 82316.318588: 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
67009         rcuop/4-45    (   45) [003] d..2 82316.318592: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
67010          <idle>-0     (-----) [005] .n.1 82316.318597: cpu_idle: state=4294967295 cpu_id=5
67011           <...>-27550 (-----) [004] ...1 82316.318599: tracing_mark_write: E|27550
67012           <...>-27550 (-----) [004] ...1 82316.318603: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
67013          <idle>-0     (-----) [005] d..2 82316.318608: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27660 next_prio=110
67014         rcuop/4-45    (   45) [003] d..3 82316.318619: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
67015           <...>-27550 (-----) [004] d..2 82316.318620: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67016          <idle>-0     (-----) [004] d..1 82316.318631: cpu_idle: state=0 cpu_id=4
67017          <idle>-0     (-----) [001] d..2 82316.318635: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
67018         rcuop/4-45    (   45) [003] d..2 82316.318641: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
67019<...>-46 ( 46) [003] d..2 82316.318662: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
67020           <...>-27660 (-----) [005] ...1 82316.318668: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
67021  kworker/u16:13-1147  ( 1147) [000] .... 82316.318670: clk_set_rate: l3_cluster0_vote_clk 403200000
67022<...>-46 ( 46) [003] d..3 82316.318676: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
67023           <...>-27660 (-----) [005] ...1 82316.318682: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
67024           <...>-27660 (-----) [005] ...1 82316.318685: tracing_mark_write: E|27550
67025<...>-46 ( 46) [003] d..2 82316.318695: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67026          <idle>-0     (-----) [003] d..1 82316.318710: cpu_idle: state=0 cpu_id=3
67027           <...>-27660 (-----) [005] .... 82316.318721: binder_transaction: transaction=1570183 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
67028           <...>-27660 (-----) [005] .... 82316.318724: binder_transaction_alloc_buf: transaction=1570183 data_size=48 offsets_size=0
67029           <...>-27660 (-----) [005] ...2 82316.318727: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
67030           <...>-27660 (-----) [005] d..4 82316.318730: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
67031         rcuop/5-53    (   53) [001] d..2 82316.318740: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
67032           <...>-27660 (-----) [005] dn.5 82316.318740: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
67033           <...>-27660 (-----) [005] d..2 82316.318747: sched_switch: prev_comm=id.nn.benchmark prev_pid=27660 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
67034<...>-770 ( 770) [005] .... 82316.318757: binder_transaction_received: transaction=1570183
67035<...>-8 ( 8) [001] d..2 82316.318772: 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
67036<...>-770 ( 770) [005] ...1 82316.318782: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
67037          <idle>-0     (-----) [001] d..1 82316.318793: cpu_idle: state=0 cpu_id=1
67038<...>-770 ( 770) [005] d..2 82316.318862: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
67039<...>-770 ( 770) [005] ...1 82316.318917: tracing_mark_write: E|770
67040<...>-770 ( 770) [005] .... 82316.318925: binder_transaction: transaction=1570184 dest_node=0 dest_proc=27550 dest_thread=27660 reply=1 flags=0x0 code=0x0
67041<...>-770 ( 770) [005] .... 82316.318929: binder_transaction_alloc_buf: transaction=1570184 data_size=168 offsets_size=32
67042<...>-770 ( 770) [005] .... 82316.318935: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
67043  kworker/u16:13-1147  ( 1147) [000] d.h2 82316.318948: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
67044  kworker/u16:13-1147  ( 1147) [000] d..2 82316.318964: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
67045<...>-770 ( 770) [005] d..2 82316.318972: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27660 next_prio=110
67046           <...>-27660 (-----) [005] .... 82316.318983: binder_transaction_received: transaction=1570184
67047          <idle>-0     (-----) [001] d.s3 82316.318996: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
67048          <idle>-0     (-----) [001] d.s4 82316.319018: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
67049          <idle>-0     (-----) [001] dns4 82316.319024: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
67050          <idle>-0     (-----) [001] .n.1 82316.319032: cpu_idle: state=4294967295 cpu_id=1
67051          <idle>-0     (-----) [001] d..2 82316.319043: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
67052           <...>-27660 (-----) [005] ...1 82316.319055: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
67053           <...>-27660 (-----) [005] ...1 82316.319060: tracing_mark_write: E|27550
67054<...>-581 ( 571) [000] d..2 82316.319062: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67055          <idle>-0     (-----) [000] d..1 82316.319081: cpu_idle: state=0 cpu_id=0
67056           <...>-27660 (-----) [005] .... 82316.319081: binder_transaction: transaction=1570185 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
67057           <...>-27660 (-----) [005] .... 82316.319088: binder_transaction_alloc_buf: transaction=1570185 data_size=48 offsets_size=0
67058           <...>-27660 (-----) [005] ...2 82316.319094: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
67059           <...>-27660 (-----) [005] d..4 82316.319096: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
67060           <...>-27660 (-----) [005] dn.5 82316.319106: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
67061           <...>-27660 (-----) [005] d..2 82316.319114: sched_switch: prev_comm=id.nn.benchmark prev_pid=27660 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
67062<...>-770 ( 770) [005] .... 82316.319122: binder_transaction_received: transaction=1570185
67063  kworker/u16:13-1147  ( 1147) [001] d..2 82316.319127: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
67064<...>-770 ( 770) [005] ...1 82316.319139: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
67065          <idle>-0     (-----) [001] d..1 82316.319139: cpu_idle: state=0 cpu_id=1
67066<...>-770 ( 770) [005] d..2 82316.319198: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
67067          <idle>-0     (-----) [000] dnh2 82316.319222: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
67068          <idle>-0     (-----) [000] .n.1 82316.319229: cpu_idle: state=4294967295 cpu_id=0
67069<...>-770 ( 770) [005] ...1 82316.319231: tracing_mark_write: E|770
67070<...>-770 ( 770) [005] .... 82316.319239: binder_transaction: transaction=1570186 dest_node=0 dest_proc=27550 dest_thread=27660 reply=1 flags=0x0 code=0x0
67071          <idle>-0     (-----) [000] d..2 82316.319240: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
67072<...>-770 ( 770) [005] .... 82316.319241: binder_transaction_alloc_buf: transaction=1570186 data_size=168 offsets_size=32
67073<...>-770 ( 770) [005] .... 82316.319247: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
67074<...>-770 ( 770) [005] d..2 82316.319282: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27660 next_prio=110
67075           <...>-27660 (-----) [005] .... 82316.319292: binder_transaction_received: transaction=1570186
67076<...>-581 ( 571) [000] d..2 82316.319295: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67077          <idle>-0     (-----) [000] d..1 82316.319309: cpu_idle: state=0 cpu_id=0
67078           <...>-27660 (-----) [005] ...1 82316.319575: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
67079           <...>-27660 (-----) [005] ...1 82316.319585: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
67080           <...>-27660 (-----) [005] ...1 82316.319589: tracing_mark_write: E|27550
67081           <...>-27660 (-----) [005] .... 82316.319653: binder_transaction: transaction=1570187 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
67082           <...>-27660 (-----) [005] .... 82316.319656: binder_transaction_alloc_buf: transaction=1570187 data_size=556 offsets_size=104
67083           <...>-27660 (-----) [005] ...2 82316.319670: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
67084           <...>-27660 (-----) [005] d..4 82316.319673: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67085           <...>-27660 (-----) [005] dn.5 82316.319684: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67086           <...>-27660 (-----) [005] d..2 82316.319691: sched_switch: prev_comm=id.nn.benchmark prev_pid=27660 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67087<...>-5340 ( 788) [005] .... 82316.319701: binder_transaction_received: transaction=1570187
67088<...>-5340 ( 788) [005] ...1 82316.319749: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
67089<...>-5340 ( 788) [005] d..2 82316.319794: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
67090<...>-5340 ( 788) [005] d..2 82316.319829: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27660 next_prio=110
67091          <idle>-0     (-----) [000] dnh2 82316.319833: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67092          <idle>-0     (-----) [000] .n.1 82316.319840: cpu_idle: state=4294967295 cpu_id=0
67093          <idle>-0     (-----) [000] d..2 82316.319850: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
67094           <...>-27660 (-----) [005] d..2 82316.319852: sched_switch: prev_comm=id.nn.benchmark prev_pid=27660 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
67095          <idle>-0     (-----) [005] d..1 82316.319866: cpu_idle: state=0 cpu_id=5
67096<...>-87 ( 87) [000] d..2 82316.319890: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67097          <idle>-0     (-----) [000] d..1 82316.319902: cpu_idle: state=0 cpu_id=0
67098          <idle>-0     (-----) [002] d.h4 82316.319903: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
67099          <idle>-0     (-----) [002] dnh5 82316.319936: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67100          <idle>-0     (-----) [002] .n.1 82316.319951: cpu_idle: state=4294967295 cpu_id=2
67101          <idle>-0     (-----) [002] d..2 82316.319963: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
67102<...>-86 ( 86) [002] d.h4 82316.319991: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67103          <idle>-0     (-----) [005] dnh2 82316.320012: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67104          <idle>-0     (-----) [005] .n.1 82316.320017: cpu_idle: state=4294967295 cpu_id=5
67105          <idle>-0     (-----) [005] d..2 82316.320025: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67106<...>-86 ( 86) [002] d..2 82316.320048: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67107          <idle>-0     (-----) [002] d..1 82316.320062: cpu_idle: state=0 cpu_id=2
67108<...>-5340 ( 788) [005] d..1 82316.320077: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
67109          <idle>-0     (-----) [000] dnh2 82316.320114: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67110          <idle>-0     (-----) [000] .n.1 82316.320121: cpu_idle: state=4294967295 cpu_id=0
67111          <idle>-0     (-----) [000] d..2 82316.320130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
67112 neuralnetworks@-13088 (  788) [000] d..2 82316.320180: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67113          <idle>-0     (-----) [000] d..1 82316.320194: cpu_idle: state=0 cpu_id=0
67114<...>-5340 ( 788) [005] d..2 82316.320235: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67115          <idle>-0     (-----) [000] dnh2 82316.320257: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67116<...>-5340 ( 788) [005] d..2 82316.320261: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
67117          <idle>-0     (-----) [000] .n.1 82316.320264: cpu_idle: state=4294967295 cpu_id=0
67118          <idle>-0     (-----) [000] d..2 82316.320274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
67119          <idle>-0     (-----) [005] d..1 82316.320274: cpu_idle: state=0 cpu_id=5
67120<...>-87 ( 87) [000] d..2 82316.320311: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67121          <idle>-0     (-----) [002] d.h4 82316.320314: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67122          <idle>-0     (-----) [000] d..1 82316.320323: cpu_idle: state=0 cpu_id=0
67123          <idle>-0     (-----) [002] dnh5 82316.320324: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67124          <idle>-0     (-----) [002] .n.1 82316.320332: cpu_idle: state=4294967295 cpu_id=2
67125          <idle>-0     (-----) [002] d..2 82316.320343: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
67126<...>-86 ( 86) [002] d..2 82316.320374: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67127          <idle>-0     (-----) [002] d..1 82316.320386: cpu_idle: state=0 cpu_id=2
67128          <idle>-0     (-----) [000] d.h5 82316.321073: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
67129          <idle>-0     (-----) [000] d.h6 82316.321095: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
67130          <idle>-0     (-----) [000] d.h5 82316.321100: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
67131          <idle>-0     (-----) [003] .n.1 82316.321101: cpu_idle: state=4294967295 cpu_id=3
67132          <idle>-0     (-----) [003] d..2 82316.321111: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
67133          <idle>-0     (-----) [000] d.h6 82316.321111: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
67134          <idle>-0     (-----) [002] .n.1 82316.321118: cpu_idle: state=4294967295 cpu_id=2
67135          <idle>-0     (-----) [002] d..2 82316.321127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
67136          <idle>-0     (-----) [000] ...1 82316.321129: cpu_idle: state=4294967295 cpu_id=0
67137          <idle>-0     (-----) [000] d..1 82316.321134: cpu_idle: state=0 cpu_id=0
67138  crtc_event:111-322   (  322) [003] d..2 82316.321144: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67139          <idle>-0     (-----) [003] d..1 82316.321153: cpu_idle: state=0 cpu_id=3
67140 crtc_commit:111-321   (  321) [002] d..2 82316.321273: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
67141          <idle>-0     (-----) [002] d..1 82316.321282: cpu_idle: state=0 cpu_id=2
67142          <idle>-0     (-----) [002] d.s3 82316.321803: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
67143          <idle>-0     (-----) [002] d.s4 82316.321821: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
67144          <idle>-0     (-----) [003] .n.1 82316.321827: cpu_idle: state=4294967295 cpu_id=3
67145          <idle>-0     (-----) [003] d..2 82316.321838: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
67146          <idle>-0     (-----) [002] ...1 82316.321844: cpu_idle: state=4294967295 cpu_id=2
67147          <idle>-0     (-----) [002] d..1 82316.321851: cpu_idle: state=0 cpu_id=2
67148  crtc_event:111-322   (  322) [003] d..2 82316.321867: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67149          <idle>-0     (-----) [003] d..1 82316.321874: cpu_idle: state=0 cpu_id=3
67150          <idle>-0     (-----) [002] d.h4 82316.322066: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67151          <idle>-0     (-----) [005] dnh2 82316.322088: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67152          <idle>-0     (-----) [005] .n.1 82316.322093: cpu_idle: state=4294967295 cpu_id=5
67153          <idle>-0     (-----) [005] d..2 82316.322101: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67154          <idle>-0     (-----) [002] ...1 82316.322105: cpu_idle: state=4294967295 cpu_id=2
67155          <idle>-0     (-----) [002] d..1 82316.322110: cpu_idle: state=0 cpu_id=2
67156<...>-5340 ( 788) [005] d..1 82316.322151: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67157          <idle>-0     (-----) [000] dnh2 82316.322175: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67158          <idle>-0     (-----) [000] .n.1 82316.322181: cpu_idle: state=4294967295 cpu_id=0
67159          <idle>-0     (-----) [000] d..2 82316.322193: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
67160<...>-5340 ( 788) [005] ...1 82316.322240: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
67161<...>-5340 ( 788) [005] ...1 82316.322244: tracing_mark_write: E|788
67162 neuralnetworks@-13088 (  788) [000] d..2 82316.322253: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67163<...>-5340 ( 788) [005] .... 82316.322260: binder_transaction: transaction=1570190 dest_node=1570188 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
67164<...>-5340 ( 788) [005] .... 82316.322263: binder_transaction_alloc_buf: transaction=1570190 data_size=60 offsets_size=0
67165          <idle>-0     (-----) [000] d..1 82316.322266: cpu_idle: state=0 cpu_id=0
67166<...>-5340 ( 788) [005] d..4 82316.322266: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
67167<...>-5340 ( 788) [005] d..5 82316.322278: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
67168          <idle>-0     (-----) [004] .n.1 82316.322284: cpu_idle: state=4294967295 cpu_id=4
67169          <idle>-0     (-----) [004] d..2 82316.322292: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
67170           <...>-27571 (-----) [004] .... 82316.322298: binder_transaction_received: transaction=1570190
67171<...>-5340 ( 788) [005] ...1 82316.322301: tracing_mark_write: E|788
67172<...>-5340 ( 788) [005] .... 82316.322307: binder_transaction: transaction=1570191 dest_node=0 dest_proc=27550 dest_thread=27660 reply=1 flags=0x0 code=0x0
67173<...>-5340 ( 788) [005] .... 82316.322309: binder_transaction_alloc_buf: transaction=1570191 data_size=8 offsets_size=0
67174<...>-5340 ( 788) [005] d..2 82316.322311: sched_waking: comm=id.nn.benchmark pid=27660 prio=110 target_cpu=005
67175           <...>-27571 (-----) [004] ...1 82316.322317: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
67176<...>-5340 ( 788) [005] d..3 82316.322318: sched_wakeup: comm=id.nn.benchmark pid=27660 prio=110 target_cpu=005
67177<...>-5340 ( 788) [005] .... 82316.322320: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
67178           <...>-27571 (-----) [004] ...1 82316.322322: tracing_mark_write: E|27550
67179           <...>-27571 (-----) [004] d..2 82316.322353: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67180          <idle>-0     (-----) [004] d..1 82316.322360: cpu_idle: state=0 cpu_id=4
67181<...>-5340 ( 788) [005] d..2 82316.322361: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27660 next_prio=110
67182           <...>-27660 (-----) [005] .... 82316.322372: binder_transaction_received: transaction=1570191
67183           <...>-27660 (-----) [005] ...1 82316.322408: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
67184           <...>-27660 (-----) [005] ...1 82316.322414: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
67185           <...>-27660 (-----) [005] ...1 82316.322440: tracing_mark_write: E|27550
67186           <...>-27660 (-----) [005] ...1 82316.322444: tracing_mark_write: E|27550
67187           <...>-27660 (-----) [005] ...1 82316.322447: tracing_mark_write: E|27550
67188           <...>-27660 (-----) [005] ...1 82316.322636: tracing_mark_write: E|27550
67189           <...>-27660 (-----) [005] d..1 82316.322648: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67190           <...>-27660 (-----) [005] d..2 82316.322664: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67191          <idle>-0     (-----) [004] .n.1 82316.322670: cpu_idle: state=4294967295 cpu_id=4
67192          <idle>-0     (-----) [004] d..2 82316.322677: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
67193           <...>-27550 (-----) [004] d..2 82316.322696: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67194          <idle>-0     (-----) [004] d..1 82316.322705: cpu_idle: state=0 cpu_id=4
67195           <...>-27660 (-----) [005] d..1 82316.322753: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67196           <...>-27660 (-----) [005] d..2 82316.322763: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67197          <idle>-0     (-----) [004] .n.1 82316.322768: cpu_idle: state=4294967295 cpu_id=4
67198          <idle>-0     (-----) [004] d..2 82316.322776: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
67199           <...>-27660 (-----) [005] d..2 82316.322802: sched_switch: prev_comm=id.nn.benchmark prev_pid=27660 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
67200           <...>-27550 (-----) [004] ...1 82316.322807: tracing_mark_write: E|27550
67201           <...>-27550 (-----) [004] ...1 82316.322812: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
67202           <...>-27550 (-----) [004] ...1 82316.322818: tracing_mark_write: E|27550
67203          <idle>-0     (-----) [005] d..1 82316.322818: cpu_idle: state=0 cpu_id=5
67204           <...>-27550 (-----) [004] ...1 82316.322822: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
67205           <...>-27550 (-----) [004] ...1 82316.322826: tracing_mark_write: E|27550
67206           <...>-27550 (-----) [004] ...1 82316.322830: tracing_mark_write: E|27550
67207           <...>-27550 (-----) [004] ...1 82316.322943: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
67208           <...>-27550 (-----) [004] ...1 82316.323002: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
67209           <...>-27550 (-----) [004] ...1 82316.323007: tracing_mark_write: E|27550
67210           <...>-27550 (-----) [004] ...1 82316.323010: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
67211           <...>-27550 (-----) [004] ...1 82316.323016: tracing_mark_write: E|27550
67212           <...>-27550 (-----) [004] ...1 82316.323020: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
67213           <...>-27550 (-----) [004] ...1 82316.323024: tracing_mark_write: E|27550
67214           <...>-27550 (-----) [004] ...1 82316.323027: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
67215          <idle>-0     (-----) [005] .n.1 82316.323120: cpu_idle: state=4294967295 cpu_id=5
67216           <...>-27550 (-----) [004] ...1 82316.323121: tracing_mark_write: E|27550
67217           <...>-27550 (-----) [004] ...1 82316.323125: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
67218          <idle>-0     (-----) [005] d..2 82316.323129: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27661 next_prio=110
67219           <...>-27550 (-----) [004] d..2 82316.323142: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67220          <idle>-0     (-----) [004] d..1 82316.323153: cpu_idle: state=0 cpu_id=4
67221           <...>-27661 (-----) [005] ...1 82316.323190: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
67222           <...>-27661 (-----) [005] ...1 82316.323205: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
67223           <...>-27661 (-----) [005] ...1 82316.323209: tracing_mark_write: E|27550
67224           <...>-27661 (-----) [005] .... 82316.323230: binder_transaction: transaction=1570192 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
67225           <...>-27661 (-----) [005] .... 82316.323233: binder_transaction_alloc_buf: transaction=1570192 data_size=48 offsets_size=0
67226           <...>-27661 (-----) [005] ...2 82316.323236: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
67227           <...>-27661 (-----) [005] d..4 82316.323239: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
67228           <...>-27661 (-----) [005] dn.5 82316.323249: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
67229           <...>-27661 (-----) [005] d..2 82316.323256: sched_switch: prev_comm=id.nn.benchmark prev_pid=27661 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
67230<...>-770 ( 770) [005] .... 82316.323266: binder_transaction_received: transaction=1570192
67231<...>-770 ( 770) [005] ...1 82316.323288: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
67232<...>-770 ( 770) [005] d..2 82316.323377: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
67233          <idle>-0     (-----) [000] d.h5 82316.323400: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
67234<...>-770 ( 770) [005] ...1 82316.323415: tracing_mark_write: E|770
67235          <idle>-0     (-----) [000] d.h6 82316.323415: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
67236          <idle>-0     (-----) [002] .n.1 82316.323421: cpu_idle: state=4294967295 cpu_id=2
67237<...>-770 ( 770) [005] .... 82316.323422: binder_transaction: transaction=1570193 dest_node=0 dest_proc=27550 dest_thread=27661 reply=1 flags=0x0 code=0x0
67238<...>-770 ( 770) [005] .... 82316.323425: binder_transaction_alloc_buf: transaction=1570193 data_size=168 offsets_size=32
67239<...>-770 ( 770) [005] .... 82316.323432: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
67240          <idle>-0     (-----) [002] d..2 82316.323432: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
67241          <idle>-0     (-----) [000] dnh2 82316.323437: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
67242          <idle>-0     (-----) [000] .n.1 82316.323443: cpu_idle: state=4294967295 cpu_id=0
67243          <idle>-0     (-----) [000] d..2 82316.323455: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
67244<...>-770 ( 770) [005] d..2 82316.323467: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27661 next_prio=110
67245           <...>-27661 (-----) [005] .... 82316.323478: binder_transaction_received: transaction=1570193
67246 crtc_commit:111-321   (  321) [002] d..2 82316.323508: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67247          <idle>-0     (-----) [002] d..1 82316.323522: cpu_idle: state=0 cpu_id=2
67248<...>-581 ( 571) [000] d..2 82316.323532: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67249           <...>-27661 (-----) [005] ...1 82316.323546: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
67250          <idle>-0     (-----) [000] d..1 82316.323547: cpu_idle: state=0 cpu_id=0
67251           <...>-27661 (-----) [005] ...1 82316.323551: tracing_mark_write: E|27550
67252           <...>-27661 (-----) [005] .... 82316.323565: binder_transaction: transaction=1570194 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
67253           <...>-27661 (-----) [005] .... 82316.323567: binder_transaction_alloc_buf: transaction=1570194 data_size=48 offsets_size=0
67254           <...>-27661 (-----) [005] ...2 82316.323570: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
67255           <...>-27661 (-----) [005] d..4 82316.323572: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
67256           <...>-27661 (-----) [005] dn.5 82316.323582: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
67257           <...>-27661 (-----) [005] d..2 82316.323589: sched_switch: prev_comm=id.nn.benchmark prev_pid=27661 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
67258<...>-770 ( 770) [005] .... 82316.323597: binder_transaction_received: transaction=1570194
67259<...>-770 ( 770) [005] ...1 82316.323614: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
67260<...>-770 ( 770) [005] d..2 82316.323671: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
67261          <idle>-0     (-----) [000] d.h5 82316.323697: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
67262<...>-770 ( 770) [005] ...1 82316.323703: tracing_mark_write: E|770
67263<...>-770 ( 770) [005] .... 82316.323710: binder_transaction: transaction=1570195 dest_node=0 dest_proc=27550 dest_thread=27661 reply=1 flags=0x0 code=0x0
67264<...>-770 ( 770) [005] .... 82316.323713: binder_transaction_alloc_buf: transaction=1570195 data_size=168 offsets_size=32
67265          <idle>-0     (-----) [000] d.h6 82316.323716: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
67266<...>-770 ( 770) [005] .... 82316.323719: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
67267          <idle>-0     (-----) [003] .n.1 82316.323722: cpu_idle: state=4294967295 cpu_id=3
67268          <idle>-0     (-----) [003] d..2 82316.323729: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
67269          <idle>-0     (-----) [000] dnh2 82316.323740: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
67270          <idle>-0     (-----) [000] .n.1 82316.323747: cpu_idle: state=4294967295 cpu_id=0
67271  crtc_event:111-322   (  322) [003] d..2 82316.323751: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67272<...>-770 ( 770) [005] d..2 82316.323754: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27661 next_prio=110
67273          <idle>-0     (-----) [003] d..1 82316.323757: cpu_idle: state=0 cpu_id=3
67274          <idle>-0     (-----) [000] d..2 82316.323758: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
67275           <...>-27661 (-----) [005] .... 82316.323764: binder_transaction_received: transaction=1570195
67276<...>-581 ( 571) [000] d..2 82316.323814: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67277          <idle>-0     (-----) [000] d..1 82316.323828: cpu_idle: state=0 cpu_id=0
67278           <...>-27661 (-----) [005] ...1 82316.324032: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
67279           <...>-27661 (-----) [005] ...1 82316.324042: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
67280           <...>-27661 (-----) [005] ...1 82316.324047: tracing_mark_write: E|27550
67281           <...>-27661 (-----) [005] .... 82316.324104: binder_transaction: transaction=1570196 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
67282           <...>-27661 (-----) [005] .... 82316.324107: binder_transaction_alloc_buf: transaction=1570196 data_size=556 offsets_size=104
67283           <...>-27661 (-----) [005] ...2 82316.324120: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
67284           <...>-27661 (-----) [005] d..4 82316.324123: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67285           <...>-27661 (-----) [005] dn.5 82316.324135: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67286           <...>-27661 (-----) [005] d..2 82316.324142: sched_switch: prev_comm=id.nn.benchmark prev_pid=27661 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67287<...>-5340 ( 788) [005] .... 82316.324152: binder_transaction_received: transaction=1570196
67288<...>-5340 ( 788) [005] ...1 82316.324196: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
67289<...>-5340 ( 788) [005] d..2 82316.324242: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67290<...>-5340 ( 788) [005] d..2 82316.324266: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27661 next_prio=110
67291          <idle>-0     (-----) [000] dnh2 82316.324269: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67292          <idle>-0     (-----) [000] .n.1 82316.324276: cpu_idle: state=4294967295 cpu_id=0
67293          <idle>-0     (-----) [000] d..2 82316.324286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
67294           <...>-27661 (-----) [005] d..2 82316.324288: sched_switch: prev_comm=id.nn.benchmark prev_pid=27661 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
67295          <idle>-0     (-----) [005] d..1 82316.324301: cpu_idle: state=0 cpu_id=5
67296<...>-87 ( 87) [000] d..2 82316.324324: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67297          <idle>-0     (-----) [000] d..1 82316.324336: cpu_idle: state=0 cpu_id=0
67298          <idle>-0     (-----) [002] d.h4 82316.324337: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67299          <idle>-0     (-----) [002] dnh5 82316.324354: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67300          <idle>-0     (-----) [002] .n.1 82316.324364: cpu_idle: state=4294967295 cpu_id=2
67301          <idle>-0     (-----) [002] d..2 82316.324375: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
67302<...>-86 ( 86) [002] d..2 82316.324408: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67303          <idle>-0     (-----) [002] d.h5 82316.324428: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67304          <idle>-0     (-----) [005] dnh2 82316.324449: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67305          <idle>-0     (-----) [005] .n.1 82316.324454: cpu_idle: state=4294967295 cpu_id=5
67306          <idle>-0     (-----) [005] d..2 82316.324462: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67307          <idle>-0     (-----) [002] d..1 82316.324472: cpu_idle: state=0 cpu_id=2
67308<...>-5340 ( 788) [005] d..1 82316.324512: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67309          <idle>-0     (-----) [000] dnh2 82316.324536: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67310          <idle>-0     (-----) [000] .n.1 82316.324543: cpu_idle: state=4294967295 cpu_id=0
67311          <idle>-0     (-----) [000] d..2 82316.324552: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
67312 neuralnetworks@-13088 (  788) [000] d..2 82316.324593: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67313          <idle>-0     (-----) [000] d..1 82316.324606: cpu_idle: state=0 cpu_id=0
67314<...>-5340 ( 788) [005] d..2 82316.324655: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67315          <idle>-0     (-----) [000] dnh2 82316.324676: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67316<...>-5340 ( 788) [005] d..2 82316.324680: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
67317          <idle>-0     (-----) [000] .n.1 82316.324683: cpu_idle: state=4294967295 cpu_id=0
67318          <idle>-0     (-----) [000] d..2 82316.324693: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
67319          <idle>-0     (-----) [005] d..1 82316.324694: cpu_idle: state=0 cpu_id=5
67320<...>-87 ( 87) [000] d..2 82316.324728: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67321          <idle>-0     (-----) [002] d.h4 82316.324728: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67322          <idle>-0     (-----) [002] dnh5 82316.324739: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67323          <idle>-0     (-----) [000] d..1 82316.324739: cpu_idle: state=0 cpu_id=0
67324          <idle>-0     (-----) [002] .n.1 82316.324747: cpu_idle: state=4294967295 cpu_id=2
67325          <idle>-0     (-----) [002] d..2 82316.324758: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
67326<...>-86 ( 86) [002] d..2 82316.324789: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67327          <idle>-0     (-----) [002] d..1 82316.324800: cpu_idle: state=0 cpu_id=2
67328          <idle>-0     (-----) [005] ...1 82316.325041: cpu_idle: state=4294967295 cpu_id=5
67329          <idle>-0     (-----) [005] d..1 82316.325045: cpu_idle: state=0 cpu_id=5
67330          <idle>-0     (-----) [003] d.s2 82316.325132: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
67331          <idle>-0     (-----) [001] d.s2 82316.325134: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
67332          <idle>-0     (-----) [003] dns3 82316.325149: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
67333          <idle>-0     (-----) [001] dns3 82316.325150: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
67334          <idle>-0     (-----) [003] .n.1 82316.325160: cpu_idle: state=4294967295 cpu_id=3
67335          <idle>-0     (-----) [001] .n.1 82316.325169: cpu_idle: state=4294967295 cpu_id=1
67336          <idle>-0     (-----) [003] d..2 82316.325169: 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
67337          <idle>-0     (-----) [001] d..2 82316.325181: 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
67338     rcu_preempt-7     (    7) [003] d..2 82316.325201: 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
67339<...>-8 ( 8) [001] d..2 82316.325209: 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
67340          <idle>-0     (-----) [003] d..1 82316.325211: cpu_idle: state=0 cpu_id=3
67341          <idle>-0     (-----) [001] d..1 82316.325221: cpu_idle: state=0 cpu_id=1
67342          <idle>-0     (-----) [003] d.h2 82316.325543: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
67343          <idle>-0     (-----) [003] dnh3 82316.325556: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
67344          <idle>-0     (-----) [003] .n.1 82316.325563: cpu_idle: state=4294967295 cpu_id=3
67345          <idle>-0     (-----) [003] d..2 82316.325572: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
67346        DispSync-8879  ( 8858) [003] d..1 82316.325591: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
67347        DispSync-8879  ( 8858) [003] d..2 82316.325614: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
67348          <idle>-0     (-----) [002] .n.1 82316.325620: cpu_idle: state=4294967295 cpu_id=2
67349          <idle>-0     (-----) [002] d..2 82316.325630: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
67350        DispSync-8879  ( 8858) [003] d..2 82316.325646: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67351          <idle>-0     (-----) [003] d..1 82316.325657: cpu_idle: state=0 cpu_id=3
67352  appEventThread-8881  ( 8858) [002] d..3 82316.325692: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
67353  appEventThread-8881  ( 8858) [002] d..4 82316.325723: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
67354          <idle>-0     (-----) [000] .n.1 82316.325729: cpu_idle: state=4294967295 cpu_id=0
67355          <idle>-0     (-----) [000] d..2 82316.325742: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
67356  appEventThread-8881  ( 8858) [002] d..2 82316.325766: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67357          <idle>-0     (-----) [002] d..1 82316.325781: cpu_idle: state=0 cpu_id=2
67358<...>-9105 ( 9105) [000] .... 82316.326068: binder_transaction: transaction=1570199 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
67359<...>-9105 ( 9105) [000] .... 82316.326075: binder_transaction_alloc_buf: transaction=1570199 data_size=80 offsets_size=0
67360<...>-9105 ( 9105) [000] d..4 82316.326081: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
67361<...>-9105 ( 9105) [000] d..5 82316.326113: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
67362          <idle>-0     (-----) [001] .n.1 82316.326118: cpu_idle: state=4294967295 cpu_id=1
67363          <idle>-0     (-----) [001] d..2 82316.326129: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
67364<...>-13083 ( 8858) [001] .... 82316.326139: binder_transaction_received: transaction=1570199
67365<...>-9105 ( 9105) [000] d..3 82316.326149: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
67366<...>-9105 ( 9105) [000] d..4 82316.326174: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
67367<...>-13083 ( 8858) [001] d..1 82316.326179: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
67368          <idle>-0     (-----) [002] .n.1 82316.326181: cpu_idle: state=4294967295 cpu_id=2
67369          <idle>-0     (-----) [002] d..2 82316.326193: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
67370<...>-13083 ( 8858) [001] d..2 82316.326212: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
67371          <idle>-0     (-----) [003] .n.1 82316.326217: cpu_idle: state=4294967295 cpu_id=3
67372          <idle>-0     (-----) [003] d..2 82316.326227: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
67373    RenderThread-9436  ( 9105) [002] d..2 82316.326245: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67374<...>-13083 ( 8858) [001] d..2 82316.326257: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
67375          <idle>-0     (-----) [002] d..1 82316.326258: cpu_idle: state=0 cpu_id=2
67376          <idle>-0     (-----) [001] d..1 82316.326270: cpu_idle: state=0 cpu_id=1
67377  appEventThread-8881  ( 8858) [003] d..2 82316.326280: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67378          <idle>-0     (-----) [003] d..1 82316.326290: cpu_idle: state=0 cpu_id=3
67379<...>-9105 ( 9105) [000] d..3 82316.326300: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
67380<...>-9105 ( 9105) [000] d..4 82316.326317: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
67381          <idle>-0     (-----) [002] .n.1 82316.326323: cpu_idle: state=4294967295 cpu_id=2
67382          <idle>-0     (-----) [002] d..2 82316.326333: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
67383<...>-9105 ( 9105) [000] d..2 82316.326352: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67384    RenderThread-9436  ( 9105) [002] d.h3 82316.326363: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67385          <idle>-0     (-----) [000] d..1 82316.326372: cpu_idle: state=0 cpu_id=0
67386          <idle>-0     (-----) [005] dnh2 82316.326383: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67387          <idle>-0     (-----) [005] .n.1 82316.326387: cpu_idle: state=4294967295 cpu_id=5
67388          <idle>-0     (-----) [005] d..2 82316.326396: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67389<...>-5340 ( 788) [005] d..1 82316.326444: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67390          <idle>-0     (-----) [000] dnh2 82316.326470: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67391          <idle>-0     (-----) [000] .n.1 82316.326477: cpu_idle: state=4294967295 cpu_id=0
67392          <idle>-0     (-----) [000] d..2 82316.326488: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
67393<...>-5340 ( 788) [005] ...1 82316.326534: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
67394    RenderThread-9436  ( 9105) [002] d..1 82316.326535: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
67395<...>-5340 ( 788) [005] ...1 82316.326538: tracing_mark_write: E|788
67396<...>-5340 ( 788) [005] .... 82316.326554: binder_transaction: transaction=1570200 dest_node=1570197 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
67397<...>-5340 ( 788) [005] .... 82316.326557: binder_transaction_alloc_buf: transaction=1570200 data_size=60 offsets_size=0
67398<...>-5340 ( 788) [005] d..4 82316.326560: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
67399 neuralnetworks@-13088 (  788) [000] d..2 82316.326560: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67400    RenderThread-9436  ( 9105) [002] d..2 82316.326563: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
67401          <idle>-0     (-----) [001] .n.1 82316.326569: cpu_idle: state=4294967295 cpu_id=1
67402<...>-5340 ( 788) [005] d..5 82316.326572: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
67403          <idle>-0     (-----) [000] d..1 82316.326574: cpu_idle: state=0 cpu_id=0
67404          <idle>-0     (-----) [004] .n.1 82316.326578: cpu_idle: state=4294967295 cpu_id=4
67405          <idle>-0     (-----) [001] d..2 82316.326581: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
67406          <idle>-0     (-----) [004] d..2 82316.326587: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
67407           <...>-27571 (-----) [004] .... 82316.326592: binder_transaction_received: transaction=1570200
67408<...>-5340 ( 788) [005] ...1 82316.326597: tracing_mark_write: E|788
67409<...>-5340 ( 788) [005] .... 82316.326604: binder_transaction: transaction=1570201 dest_node=0 dest_proc=27550 dest_thread=27661 reply=1 flags=0x0 code=0x0
67410<...>-5340 ( 788) [005] .... 82316.326606: binder_transaction_alloc_buf: transaction=1570201 data_size=8 offsets_size=0
67411<...>-5340 ( 788) [005] d..2 82316.326608: sched_waking: comm=id.nn.benchmark pid=27661 prio=110 target_cpu=005
67412           <...>-27571 (-----) [004] ...1 82316.326611: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
67413<...>-5340 ( 788) [005] d..3 82316.326615: sched_wakeup: comm=id.nn.benchmark pid=27661 prio=110 target_cpu=005
67414           <...>-27571 (-----) [004] ...1 82316.326617: tracing_mark_write: E|27550
67415<...>-5340 ( 788) [005] .... 82316.326617: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
67416    RenderThread-9436  ( 9105) [002] .... 82316.326630: binder_transaction: transaction=1570202 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
67417    RenderThread-9436  ( 9105) [002] .... 82316.326636: binder_transaction_alloc_buf: transaction=1570202 data_size=104 offsets_size=0
67418    RenderThread-9436  ( 9105) [002] d..4 82316.326642: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
67419           <...>-27571 (-----) [004] d..2 82316.326644: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67420          <idle>-0     (-----) [004] d..1 82316.326652: cpu_idle: state=0 cpu_id=4
67421<...>-5340 ( 788) [005] d..2 82316.326659: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27661 next_prio=110
67422    RenderThread-9436  ( 9105) [002] dn.5 82316.326661: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
67423           <...>-27661 (-----) [005] .... 82316.326669: binder_transaction_received: transaction=1570201
67424    RenderThread-9436  ( 9105) [002] d..2 82316.326671: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
67425<...>-13083 ( 8858) [002] .... 82316.326679: binder_transaction_received: transaction=1570202
67426<...>-9105 ( 9105) [001] d..2 82316.326690: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
67427          <idle>-0     (-----) [001] d..1 82316.326704: cpu_idle: state=0 cpu_id=1
67428           <...>-27661 (-----) [005] ...1 82316.326706: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
67429           <...>-27661 (-----) [005] ...1 82316.326712: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
67430           <...>-27661 (-----) [005] ...1 82316.326738: tracing_mark_write: E|27550
67431           <...>-27661 (-----) [005] ...1 82316.326742: tracing_mark_write: E|27550
67432           <...>-27661 (-----) [005] ...1 82316.326745: tracing_mark_write: E|27550
67433<...>-13083 ( 8858) [002] .... 82316.326751: binder_transaction: transaction=1570203 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
67434<...>-13083 ( 8858) [002] .... 82316.326755: binder_transaction_alloc_buf: transaction=1570203 data_size=52 offsets_size=8
67435<...>-13083 ( 8858) [002] d..2 82316.326807: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
67436    RenderThread-9436  ( 9105) [002] .... 82316.326816: binder_transaction_received: transaction=1570203
67437           <...>-27661 (-----) [005] ...1 82316.326929: tracing_mark_write: E|27550
67438           <...>-27661 (-----) [005] d..1 82316.326942: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67439           <...>-27661 (-----) [005] d..2 82316.326958: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67440          <idle>-0     (-----) [004] .n.1 82316.326963: cpu_idle: state=4294967295 cpu_id=4
67441          <idle>-0     (-----) [004] d..2 82316.326970: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
67442           <...>-27550 (-----) [004] d..2 82316.326989: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67443          <idle>-0     (-----) [004] d..1 82316.326998: cpu_idle: state=0 cpu_id=4
67444           <...>-27661 (-----) [005] d..1 82316.327043: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67445           <...>-27661 (-----) [005] d..2 82316.327053: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67446          <idle>-0     (-----) [004] .n.1 82316.327058: cpu_idle: state=4294967295 cpu_id=4
67447          <idle>-0     (-----) [004] d..2 82316.327066: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
67448           <...>-27661 (-----) [005] d..2 82316.327090: sched_switch: prev_comm=id.nn.benchmark prev_pid=27661 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
67449          <idle>-0     (-----) [005] d..1 82316.327108: cpu_idle: state=0 cpu_id=5
67450           <...>-27550 (-----) [004] ...1 82316.327115: tracing_mark_write: E|27550
67451           <...>-27550 (-----) [004] ...1 82316.327119: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
67452           <...>-27550 (-----) [004] ...1 82316.327125: tracing_mark_write: E|27550
67453           <...>-27550 (-----) [004] ...1 82316.327129: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
67454           <...>-27550 (-----) [004] ...1 82316.327133: tracing_mark_write: E|27550
67455           <...>-27550 (-----) [004] ...1 82316.327137: tracing_mark_write: E|27550
67456           <...>-27550 (-----) [004] ...1 82316.327249: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
67457           <...>-27550 (-----) [004] ...1 82316.327307: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
67458           <...>-27550 (-----) [004] ...1 82316.327312: tracing_mark_write: E|27550
67459           <...>-27550 (-----) [004] ...1 82316.327315: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
67460           <...>-27550 (-----) [004] ...1 82316.327320: tracing_mark_write: E|27550
67461           <...>-27550 (-----) [004] ...1 82316.327324: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
67462           <...>-27550 (-----) [004] ...1 82316.327328: tracing_mark_write: E|27550
67463           <...>-27550 (-----) [004] ...1 82316.327331: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
67464          <idle>-0     (-----) [005] .n.1 82316.327418: cpu_idle: state=4294967295 cpu_id=5
67465           <...>-27550 (-----) [004] ...1 82316.327419: tracing_mark_write: E|27550
67466           <...>-27550 (-----) [004] ...1 82316.327423: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
67467          <idle>-0     (-----) [005] d..2 82316.327427: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27662 next_prio=110
67468           <...>-27550 (-----) [004] d..2 82316.327439: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67469          <idle>-0     (-----) [004] d..1 82316.327451: cpu_idle: state=0 cpu_id=4
67470           <...>-27662 (-----) [005] ...1 82316.327488: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
67471           <...>-27662 (-----) [005] ...1 82316.327502: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
67472           <...>-27662 (-----) [005] ...1 82316.327506: tracing_mark_write: E|27550
67473           <...>-27662 (-----) [005] .... 82316.327527: binder_transaction: transaction=1570204 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
67474           <...>-27662 (-----) [005] .... 82316.327530: binder_transaction_alloc_buf: transaction=1570204 data_size=48 offsets_size=0
67475           <...>-27662 (-----) [005] ...2 82316.327533: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
67476           <...>-27662 (-----) [005] d..4 82316.327536: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
67477           <...>-27662 (-----) [005] dn.5 82316.327546: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
67478           <...>-27662 (-----) [005] d..2 82316.327553: sched_switch: prev_comm=id.nn.benchmark prev_pid=27662 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
67479<...>-770 ( 770) [005] .... 82316.327562: binder_transaction_received: transaction=1570204
67480<...>-770 ( 770) [005] ...1 82316.327585: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
67481<...>-770 ( 770) [005] d..2 82316.327662: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
67482<...>-770 ( 770) [005] ...1 82316.327719: tracing_mark_write: E|770
67483<...>-770 ( 770) [005] .... 82316.327727: binder_transaction: transaction=1570205 dest_node=0 dest_proc=27550 dest_thread=27662 reply=1 flags=0x0 code=0x0
67484<...>-770 ( 770) [005] .... 82316.327730: binder_transaction_alloc_buf: transaction=1570205 data_size=168 offsets_size=32
67485<...>-770 ( 770) [005] .... 82316.327737: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
67486<...>-770 ( 770) [005] d..2 82316.327772: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27662 next_prio=110
67487           <...>-27662 (-----) [005] .... 82316.327783: binder_transaction_received: transaction=1570205
67488    RenderThread-9436  ( 9105) [002] d.h2 82316.327795: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
67489    RenderThread-9436  ( 9105) [002] d..2 82316.327829: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
67490           <...>-27662 (-----) [005] ...1 82316.327855: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
67491           <...>-27662 (-----) [005] ...1 82316.327860: tracing_mark_write: E|27550
67492           <...>-27662 (-----) [005] .... 82316.327875: binder_transaction: transaction=1570206 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
67493           <...>-27662 (-----) [005] .... 82316.327878: binder_transaction_alloc_buf: transaction=1570206 data_size=48 offsets_size=0
67494           <...>-27662 (-----) [005] ...2 82316.327880: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
67495           <...>-27662 (-----) [005] d..4 82316.327882: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
67496           <...>-27662 (-----) [005] dn.5 82316.327892: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
67497           <...>-27662 (-----) [005] d..2 82316.327898: sched_switch: prev_comm=id.nn.benchmark prev_pid=27662 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
67498<...>-770 ( 770) [005] .... 82316.327906: binder_transaction_received: transaction=1570206
67499<...>-770 ( 770) [005] ...1 82316.327923: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
67500<...>-581 ( 571) [002] d..2 82316.327925: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67501          <idle>-0     (-----) [002] d.h3 82316.327938: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
67502          <idle>-0     (-----) [002] d.h4 82316.327949: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
67503          <idle>-0     (-----) [002] dnh4 82316.327953: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
67504          <idle>-0     (-----) [000] d.h3 82316.327960: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
67505          <idle>-0     (-----) [002] d..2 82316.327967: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
67506          <idle>-0     (-----) [000] d.h4 82316.327980: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
67507<...>-770 ( 770) [005] d..2 82316.327981: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
67508          <idle>-0     (-----) [003] .n.1 82316.327986: cpu_idle: state=4294967295 cpu_id=3
67509          <idle>-0     (-----) [000] ...1 82316.327994: cpu_idle: state=4294967295 cpu_id=0
67510          <idle>-0     (-----) [003] d..2 82316.327995: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
67511          <idle>-0     (-----) [000] d..1 82316.327999: cpu_idle: state=0 cpu_id=0
67512 kgsl_worker_thr-258   (  258) [003] d.h2 82316.328019: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
67513<...>-770 ( 770) [005] ...1 82316.328032: tracing_mark_write: E|770
67514<...>-770 ( 770) [005] .... 82316.328040: binder_transaction: transaction=1570207 dest_node=0 dest_proc=27550 dest_thread=27662 reply=1 flags=0x0 code=0x0
67515<...>-770 ( 770) [005] .... 82316.328043: binder_transaction_alloc_buf: transaction=1570207 data_size=168 offsets_size=32
67516<...>-770 ( 770) [005] .... 82316.328049: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
67517 kgsl_worker_thr-258   (  258) [003] d..2 82316.328059: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
67518<...>-770 ( 770) [005] d..2 82316.328084: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27662 next_prio=110
67519           <...>-27662 (-----) [005] .... 82316.328094: binder_transaction_received: transaction=1570207
67520 kgsl_worker_thr-258   (  258) [003] d..3 82316.328097: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
67521 kgsl_worker_thr-258   (  258) [003] d..2 82316.328114: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
67522  kworker/u16:13-1147  ( 1147) [003] d..2 82316.328150: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
67523    RenderThread-9436  ( 9105) [002] .... 82316.328169: binder_transaction: transaction=1570208 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
67524    RenderThread-9436  ( 9105) [002] .... 82316.328175: binder_transaction_alloc_buf: transaction=1570208 data_size=192 offsets_size=8
67525    RenderThread-9436  ( 9105) [002] d..4 82316.328185: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
67526    RenderThread-9436  ( 9105) [002] dn.5 82316.328201: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
67527    RenderThread-9436  ( 9105) [002] d..2 82316.328210: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
67528<...>-13083 ( 8858) [002] .... 82316.328218: binder_transaction_received: transaction=1570208
67529<...>-581 ( 571) [003] d..2 82316.328221: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67530          <idle>-0     (-----) [003] d..1 82316.328236: cpu_idle: state=0 cpu_id=3
67531<...>-13083 ( 8858) [002] .... 82316.328369: binder_transaction: transaction=1570209 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
67532           <...>-27662 (-----) [005] ...1 82316.328369: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
67533<...>-13083 ( 8858) [002] .... 82316.328373: binder_transaction_alloc_buf: transaction=1570209 data_size=68 offsets_size=0
67534           <...>-27662 (-----) [005] ...1 82316.328379: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
67535           <...>-27662 (-----) [005] ...1 82316.328383: tracing_mark_write: E|27550
67536<...>-13083 ( 8858) [002] d..2 82316.328413: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
67537    RenderThread-9436  ( 9105) [002] .... 82316.328422: binder_transaction_received: transaction=1570209
67538           <...>-27662 (-----) [005] d.s2 82316.328474: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
67539           <...>-27662 (-----) [005] .... 82316.328498: binder_transaction: transaction=1570210 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
67540          <idle>-0     (-----) [003] dnh2 82316.328499: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
67541           <...>-27662 (-----) [005] .... 82316.328501: binder_transaction_alloc_buf: transaction=1570210 data_size=556 offsets_size=104
67542          <idle>-0     (-----) [003] .n.1 82316.328505: cpu_idle: state=4294967295 cpu_id=3
67543           <...>-27662 (-----) [005] ...2 82316.328515: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
67544          <idle>-0     (-----) [003] d..2 82316.328517: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
67545           <...>-27662 (-----) [005] d..4 82316.328517: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67546           <...>-27662 (-----) [005] dn.5 82316.328525: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67547           <...>-27662 (-----) [005] d..2 82316.328531: sched_switch: prev_comm=id.nn.benchmark prev_pid=27662 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67548<...>-5340 ( 788) [005] .... 82316.328548: binder_transaction_received: transaction=1570210
67549    RenderThread-9436  ( 9105) [002] d..2 82316.328558: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67550          <idle>-0     (-----) [002] d..1 82316.328578: cpu_idle: state=0 cpu_id=2
67551<...>-5340 ( 788) [005] ...1 82316.328611: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
67552<...>-5340 ( 788) [005] d..2 82316.328666: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67553  kworker/u16:13-1147  ( 1147) [003] d..2 82316.328674: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67554          <idle>-0     (-----) [003] d..1 82316.328684: cpu_idle: state=0 cpu_id=3
67555<...>-5340 ( 788) [005] d..2 82316.328701: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27662 next_prio=110
67556          <idle>-0     (-----) [003] dnh2 82316.328704: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
67557          <idle>-0     (-----) [003] .n.1 82316.328709: cpu_idle: state=4294967295 cpu_id=3
67558          <idle>-0     (-----) [003] d..2 82316.328717: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
67559           <...>-27662 (-----) [005] d..2 82316.328726: sched_switch: prev_comm=id.nn.benchmark prev_pid=27662 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
67560          <idle>-0     (-----) [005] d..1 82316.328739: cpu_idle: state=0 cpu_id=5
67561<...>-87 ( 87) [003] d..2 82316.328762: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67562          <idle>-0     (-----) [003] d..1 82316.328769: cpu_idle: state=0 cpu_id=3
67563          <idle>-0     (-----) [002] d.h4 82316.328773: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67564          <idle>-0     (-----) [002] dnh5 82316.328791: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67565          <idle>-0     (-----) [002] .n.1 82316.328802: cpu_idle: state=4294967295 cpu_id=2
67566          <idle>-0     (-----) [002] d..2 82316.328814: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
67567<...>-86 ( 86) [002] d..2 82316.328853: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67568          <idle>-0     (-----) [002] d.h5 82316.328876: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67569          <idle>-0     (-----) [005] dnh2 82316.328897: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67570          <idle>-0     (-----) [005] .n.1 82316.328901: cpu_idle: state=4294967295 cpu_id=5
67571          <idle>-0     (-----) [005] d..2 82316.328909: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67572          <idle>-0     (-----) [002] d..1 82316.328924: cpu_idle: state=0 cpu_id=2
67573<...>-5340 ( 788) [005] d..1 82316.328963: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67574          <idle>-0     (-----) [000] dnh2 82316.328989: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67575          <idle>-0     (-----) [000] .n.1 82316.328994: cpu_idle: state=4294967295 cpu_id=0
67576          <idle>-0     (-----) [000] d..2 82316.329007: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
67577 neuralnetworks@-13088 (  788) [000] d..2 82316.329048: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67578          <idle>-0     (-----) [000] d..1 82316.329061: cpu_idle: state=0 cpu_id=0
67579<...>-5340 ( 788) [005] d..2 82316.329113: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
67580          <idle>-0     (-----) [003] dnh2 82316.329134: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
67581          <idle>-0     (-----) [003] .n.1 82316.329139: cpu_idle: state=4294967295 cpu_id=3
67582<...>-5340 ( 788) [005] d..2 82316.329140: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
67583          <idle>-0     (-----) [003] d..2 82316.329146: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
67584          <idle>-0     (-----) [005] d..1 82316.329153: cpu_idle: state=0 cpu_id=5
67585<...>-87 ( 87) [003] d..2 82316.329181: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67586          <idle>-0     (-----) [002] d.h4 82316.329182: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67587          <idle>-0     (-----) [003] d..1 82316.329188: cpu_idle: state=0 cpu_id=3
67588          <idle>-0     (-----) [002] dnh5 82316.329192: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67589          <idle>-0     (-----) [002] .n.1 82316.329201: cpu_idle: state=4294967295 cpu_id=2
67590          <idle>-0     (-----) [002] d..2 82316.329211: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
67591<...>-86 ( 86) [002] d..2 82316.329243: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67592          <idle>-0     (-----) [002] d..1 82316.329256: cpu_idle: state=0 cpu_id=2
67593          <idle>-0     (-----) [005] ...1 82316.329487: cpu_idle: state=4294967295 cpu_id=5
67594          <idle>-0     (-----) [005] d..1 82316.329490: cpu_idle: state=0 cpu_id=5
67595          <idle>-0     (-----) [003] d.h2 82316.329553: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
67596          <idle>-0     (-----) [003] dnh3 82316.329566: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
67597          <idle>-0     (-----) [003] .n.1 82316.329574: cpu_idle: state=4294967295 cpu_id=3
67598          <idle>-0     (-----) [003] d..2 82316.329581: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
67599        DispSync-8879  ( 8858) [003] d..1 82316.329600: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
67600        DispSync-8879  ( 8858) [003] d..2 82316.329614: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
67601          <idle>-0     (-----) [001] .n.1 82316.329621: cpu_idle: state=4294967295 cpu_id=1
67602          <idle>-0     (-----) [001] d..2 82316.329632: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
67603        DispSync-8879  ( 8858) [003] d..2 82316.329644: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67604          <idle>-0     (-----) [003] d..1 82316.329654: cpu_idle: state=0 cpu_id=3
67605   sfEventThread-8882  ( 8858) [001] d..3 82316.329672: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
67606   sfEventThread-8882  ( 8858) [001] d..4 82316.329691: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
67607          <idle>-0     (-----) [003] .n.1 82316.329697: cpu_idle: state=4294967295 cpu_id=3
67608          <idle>-0     (-----) [003] d..2 82316.329704: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
67609   sfEventThread-8882  ( 8858) [001] d..2 82316.329725: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
67610          <idle>-0     (-----) [001] d..1 82316.329735: cpu_idle: state=0 cpu_id=1
67611  surfaceflinger-8858  ( 8858) [003] d..1 82316.330033: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
67612  surfaceflinger-8858  ( 8858) [003] d..2 82316.330053: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
67613          <idle>-0     (-----) [001] .n.1 82316.330059: cpu_idle: state=4294967295 cpu_id=1
67614          <idle>-0     (-----) [001] d..2 82316.330066: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
67615   sfEventThread-8882  ( 8858) [001] d..2 82316.330100: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
67616          <idle>-0     (-----) [001] d..1 82316.330107: cpu_idle: state=0 cpu_id=1
67617  surfaceflinger-8858  ( 8858) [003] ...1 82316.330228: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
67618  surfaceflinger-8858  ( 8858) [003] ...1 82316.330234: tracing_mark_write: E|8858
67619  surfaceflinger-8858  ( 8858) [003] .... 82316.330281: binder_transaction: transaction=1570213 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
67620  surfaceflinger-8858  ( 8858) [003] .... 82316.330286: binder_transaction_alloc_buf: transaction=1570213 data_size=540 offsets_size=96
67621  surfaceflinger-8858  ( 8858) [003] ...2 82316.330309: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
67622  surfaceflinger-8858  ( 8858) [003] d..4 82316.330317: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
67623  surfaceflinger-8858  ( 8858) [003] d..5 82316.330334: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
67624          <idle>-0     (-----) [001] .n.1 82316.330339: cpu_idle: state=4294967295 cpu_id=1
67625          <idle>-0     (-----) [001] d..2 82316.330347: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
67626 [email protected]   (  619) [001] .... 82316.330356: binder_transaction_received: transaction=1570213
67627  surfaceflinger-8858  ( 8858) [003] d..2 82316.330365: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67628          <idle>-0     (-----) [003] d..1 82316.330377: cpu_idle: state=0 cpu_id=3
67629 [email protected]   (  619) [001] ...1 82316.330398: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
67630          <idle>-0     (-----) [000] ...1 82316.330402: cpu_idle: state=4294967295 cpu_id=0
67631          <idle>-0     (-----) [000] d..1 82316.330406: cpu_idle: state=0 cpu_id=0
67632 [email protected]   (  619) [001] ...1 82316.330498: tracing_mark_write: B|619|HWCSession::PresentDisplay::
67633          <idle>-0     (-----) [002] ...1 82316.330606: cpu_idle: state=4294967295 cpu_id=2
67634          <idle>-0     (-----) [002] d..1 82316.330610: cpu_idle: state=0 cpu_id=2
67635 [email protected]   (  619) [001] ...1 82316.330661: tracing_mark_write: B|619|HWDeviceDRM::Commit::
67636 [email protected]   (  619) [001] ...1 82316.330674: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
67637          <idle>-0     (-----) [002] d.h4 82316.330824: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67638          <idle>-0     (-----) [005] dnh2 82316.330843: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67639          <idle>-0     (-----) [005] .n.1 82316.330847: cpu_idle: state=4294967295 cpu_id=5
67640          <idle>-0     (-----) [005] d..2 82316.330855: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67641          <idle>-0     (-----) [002] ...1 82316.330860: cpu_idle: state=4294967295 cpu_id=2
67642          <idle>-0     (-----) [002] d..1 82316.330867: cpu_idle: state=0 cpu_id=2
67643<...>-5340 ( 788) [005] d..1 82316.330912: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67644          <idle>-0     (-----) [000] dnh2 82316.330932: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67645          <idle>-0     (-----) [000] .n.1 82316.330940: cpu_idle: state=4294967295 cpu_id=0
67646          <idle>-0     (-----) [000] d..2 82316.330950: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
67647<...>-5340 ( 788) [005] ...1 82316.331003: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
67648 neuralnetworks@-13088 (  788) [000] d..2 82316.331004: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67649<...>-5340 ( 788) [005] ...1 82316.331008: tracing_mark_write: E|788
67650          <idle>-0     (-----) [000] d..1 82316.331015: cpu_idle: state=0 cpu_id=0
67651<...>-5340 ( 788) [005] .... 82316.331025: binder_transaction: transaction=1570214 dest_node=1570211 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
67652<...>-5340 ( 788) [005] .... 82316.331028: binder_transaction_alloc_buf: transaction=1570214 data_size=60 offsets_size=0
67653<...>-5340 ( 788) [005] d..4 82316.331031: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
67654<...>-5340 ( 788) [005] d..5 82316.331044: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
67655          <idle>-0     (-----) [004] .n.1 82316.331050: cpu_idle: state=4294967295 cpu_id=4
67656          <idle>-0     (-----) [004] d..2 82316.331059: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
67657           <...>-27571 (-----) [004] .... 82316.331064: binder_transaction_received: transaction=1570214
67658<...>-5340 ( 788) [005] ...1 82316.331067: tracing_mark_write: E|788
67659<...>-5340 ( 788) [005] .... 82316.331073: binder_transaction: transaction=1570215 dest_node=0 dest_proc=27550 dest_thread=27662 reply=1 flags=0x0 code=0x0
67660<...>-5340 ( 788) [005] .... 82316.331075: binder_transaction_alloc_buf: transaction=1570215 data_size=8 offsets_size=0
67661<...>-5340 ( 788) [005] d..2 82316.331077: sched_waking: comm=id.nn.benchmark pid=27662 prio=110 target_cpu=005
67662           <...>-27571 (-----) [004] ...1 82316.331082: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
67663<...>-5340 ( 788) [005] d..3 82316.331084: sched_wakeup: comm=id.nn.benchmark pid=27662 prio=110 target_cpu=005
67664<...>-5340 ( 788) [005] .... 82316.331086: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
67665           <...>-27571 (-----) [004] ...1 82316.331088: tracing_mark_write: E|27550
67666           <...>-27571 (-----) [004] d..2 82316.331118: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67667          <idle>-0     (-----) [004] d..1 82316.331125: cpu_idle: state=0 cpu_id=4
67668<...>-5340 ( 788) [005] d..2 82316.331128: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27662 next_prio=110
67669           <...>-27662 (-----) [005] .... 82316.331139: binder_transaction_received: transaction=1570215
67670           <...>-27662 (-----) [005] ...1 82316.331175: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
67671           <...>-27662 (-----) [005] ...1 82316.331182: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
67672           <...>-27662 (-----) [005] ...1 82316.331207: tracing_mark_write: E|27550
67673           <...>-27662 (-----) [005] ...1 82316.331211: tracing_mark_write: E|27550
67674           <...>-27662 (-----) [005] ...1 82316.331215: tracing_mark_write: E|27550
67675 [email protected]   (  619) [001] d..2 82316.331276: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
67676 [email protected]   (  619) [001] d..3 82316.331299: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
67677          <idle>-0     (-----) [002] .n.1 82316.331310: cpu_idle: state=4294967295 cpu_id=2
67678          <idle>-0     (-----) [002] d..2 82316.331342: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
67679           <...>-27662 (-----) [005] ...1 82316.331402: tracing_mark_write: E|27550
67680           <...>-27662 (-----) [005] d..1 82316.331415: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67681 [email protected]   (  619) [001] ...1 82316.331420: tracing_mark_write: E|619
67682 [email protected]   (  619) [001] ...1 82316.331426: tracing_mark_write: E|619
67683           <...>-27662 (-----) [005] d..2 82316.331431: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67684          <idle>-0     (-----) [004] .n.1 82316.331437: cpu_idle: state=4294967295 cpu_id=4
67685          <idle>-0     (-----) [004] d..2 82316.331444: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
67686           <...>-27550 (-----) [004] d..2 82316.331463: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67687          <idle>-0     (-----) [004] d..1 82316.331472: cpu_idle: state=0 cpu_id=4
67688 [email protected]   (  619) [001] ...1 82316.331486: tracing_mark_write: E|619
67689           <...>-27662 (-----) [005] d..1 82316.331519: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67690           <...>-27662 (-----) [005] d..2 82316.331528: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67691 [email protected]   (  619) [001] ...1 82316.331529: tracing_mark_write: E|619
67692          <idle>-0     (-----) [004] .n.1 82316.331533: cpu_idle: state=4294967295 cpu_id=4
67693          <idle>-0     (-----) [004] d..2 82316.331541: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
67694 [email protected]   (  619) [001] .... 82316.331544: binder_transaction: transaction=1570216 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
67695 [email protected]   (  619) [001] .... 82316.331548: binder_transaction_alloc_buf: transaction=1570216 data_size=576 offsets_size=112
67696           <...>-27662 (-----) [005] d..2 82316.331568: sched_switch: prev_comm=id.nn.benchmark prev_pid=27662 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
67697 [email protected]   (  619) [001] d..2 82316.331571: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
67698           <...>-27550 (-----) [004] ...1 82316.331576: tracing_mark_write: E|27550
67699           <...>-27550 (-----) [004] ...1 82316.331581: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
67700          <idle>-0     (-----) [005] d..1 82316.331585: cpu_idle: state=0 cpu_id=5
67701           <...>-27550 (-----) [004] ...1 82316.331587: tracing_mark_write: E|27550
67702 [email protected]   (  619) [001] d..3 82316.331589: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
67703           <...>-27550 (-----) [004] ...1 82316.331590: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
67704 [email protected]   (  619) [001] .... 82316.331593: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
67705           <...>-27550 (-----) [004] ...1 82316.331595: tracing_mark_write: E|27550
67706          <idle>-0     (-----) [003] .n.1 82316.331595: cpu_idle: state=4294967295 cpu_id=3
67707           <...>-27550 (-----) [004] ...1 82316.331599: tracing_mark_write: E|27550
67708          <idle>-0     (-----) [003] d..2 82316.331603: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
67709  surfaceflinger-8858  ( 8858) [003] .... 82316.331611: binder_transaction_received: transaction=1570216
67710 [email protected]   (  619) [001] d..2 82316.331676: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
67711          <idle>-0     (-----) [001] d..1 82316.331690: cpu_idle: state=0 cpu_id=1
67712           <...>-27550 (-----) [004] ...1 82316.331711: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
67713           <...>-27550 (-----) [004] ...1 82316.331768: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
67714           <...>-27550 (-----) [004] ...1 82316.331807: tracing_mark_write: E|27550
67715  surfaceflinger-8858  ( 8858) [003] d.s1 82316.331809: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
67716           <...>-27550 (-----) [004] ...1 82316.331813: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
67717           <...>-27550 (-----) [004] ...1 82316.331818: tracing_mark_write: E|27550
67718           <...>-27550 (-----) [004] ...1 82316.331822: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
67719           <...>-27550 (-----) [004] ...1 82316.331825: tracing_mark_write: E|27550
67720           <...>-27550 (-----) [004] ...1 82316.331829: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
67721          <idle>-0     (-----) [001] d.H3 82316.331885: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
67722          <idle>-0     (-----) [001] dnH4 82316.331899: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
67723  surfaceflinger-8858  ( 8858) [003] d.s2 82316.331902: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
67724          <idle>-0     (-----) [001] dns2 82316.331906: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
67725          <idle>-0     (-----) [001] dns3 82316.331924: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
67726          <idle>-0     (-----) [005] .n.1 82316.331924: cpu_idle: state=4294967295 cpu_id=5
67727           <...>-27550 (-----) [004] ...1 82316.331926: tracing_mark_write: E|27550
67728           <...>-27550 (-----) [004] ...1 82316.331930: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
67729          <idle>-0     (-----) [005] d..2 82316.331934: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27663 next_prio=110
67730          <idle>-0     (-----) [001] .n.1 82316.331936: cpu_idle: state=4294967295 cpu_id=1
67731          <idle>-0     (-----) [001] d..2 82316.331944: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
67732           <...>-27550 (-----) [004] d..2 82316.331949: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67733          <idle>-0     (-----) [004] d..1 82316.331961: cpu_idle: state=0 cpu_id=4
67734         sugov:0-576   (  576) [001] .... 82316.331978: clk_set_rate: pwrcl_clk 748800000
67735         sugov:0-576   (  576) [001] .... 82316.331996: clk_set_rate: cpu3_pwrcl_clk 902400000
67736           <...>-27663 (-----) [005] ...1 82316.331997: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
67737         sugov:0-576   (  576) [001] .... 82316.332006: clk_set_rate: cpu2_pwrcl_clk 902400000
67738           <...>-27663 (-----) [005] ...1 82316.332011: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
67739         sugov:0-576   (  576) [001] .... 82316.332013: clk_set_rate: cpu1_pwrcl_clk 902400000
67740           <...>-27663 (-----) [005] ...1 82316.332015: tracing_mark_write: E|27550
67741         sugov:0-576   (  576) [001] .... 82316.332020: clk_set_rate: cpu0_pwrcl_clk 748800000
67742           <...>-27663 (-----) [005] .... 82316.332037: binder_transaction: transaction=1570217 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
67743           <...>-27663 (-----) [005] .... 82316.332041: binder_transaction_alloc_buf: transaction=1570217 data_size=48 offsets_size=0
67744           <...>-27663 (-----) [005] ...2 82316.332044: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
67745           <...>-27663 (-----) [005] d..4 82316.332046: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
67746           <...>-27663 (-----) [005] dn.5 82316.332058: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
67747           <...>-27663 (-----) [005] d..2 82316.332065: sched_switch: prev_comm=id.nn.benchmark prev_pid=27663 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
67748<...>-770 ( 770) [005] .... 82316.332075: binder_transaction_received: transaction=1570217
67749<...>-770 ( 770) [005] ...1 82316.332099: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
67750         sugov:0-576   (  576) [001] .... 82316.332132: cpu_frequency: state=748800 cpu_id=0
67751 crtc_commit:111-321   (  321) [002] d..2 82316.332137: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
67752     rcu_preempt-7     (    7) [002] d..2 82316.332147: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
67753         sugov:0-576   (  576) [001] .... 82316.332154: cpu_frequency: state=748800 cpu_id=1
67754         sugov:0-576   (  576) [001] .... 82316.332160: cpu_frequency: state=748800 cpu_id=2
67755         sugov:0-576   (  576) [001] .... 82316.332164: cpu_frequency: state=748800 cpu_id=3
67756<...>-770 ( 770) [005] d..2 82316.332182: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
67757         sugov:0-576   (  576) [001] d..2 82316.332183: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
67758<...>-8 ( 8) [001] d..2 82316.332191: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
67759     rcu_preempt-7     (    7) [002] d..3 82316.332194: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
67760     rcu_preempt-7     (    7) [002] d..2 82316.332214: 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
67761<...>-8 ( 8) [001] d..3 82316.332218: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
67762         rcuop/2-29    (   29) [002] d..2 82316.332220: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
67763  surfaceflinger-8858  ( 8858) [003] d..2 82316.332231: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
67764<...>-770 ( 770) [005] ...1 82316.332234: tracing_mark_write: E|770
67765<...>-770 ( 770) [005] .... 82316.332242: binder_transaction: transaction=1570218 dest_node=0 dest_proc=27550 dest_thread=27663 reply=1 flags=0x0 code=0x0
67766<...>-8 ( 8) [001] d..2 82316.332245: 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
67767<...>-770 ( 770) [005] .... 82316.332245: binder_transaction_alloc_buf: transaction=1570218 data_size=168 offsets_size=32
67768<...>-46 ( 46) [003] d.h3 82316.332250: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
67769<...>-770 ( 770) [005] .... 82316.332252: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
67770          <idle>-0     (-----) [001] d..1 82316.332260: cpu_idle: state=0 cpu_id=1
67771<...>-46 ( 46) [003] d..2 82316.332267: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
67772         rcuop/2-29    (   29) [002] d..3 82316.332275: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
67773          <idle>-0     (-----) [001] .n.1 82316.332281: cpu_idle: state=4294967295 cpu_id=1
67774<...>-770 ( 770) [005] d..2 82316.332288: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27663 next_prio=110
67775          <idle>-0     (-----) [001] d..2 82316.332295: 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
67776           <...>-27663 (-----) [005] .... 82316.332299: binder_transaction_received: transaction=1570218
67777         rcuop/2-29    (   29) [002] d..2 82316.332309: 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
67778<...>-46 ( 46) [003] d..3 82316.332328: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
67779         rcuop/3-37    (   37) [001] d..2 82316.332339: 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
67780          <idle>-0     (-----) [002] d..2 82316.332342: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
67781<...>-46 ( 46) [003] d..2 82316.332343: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
67782          <idle>-0     (-----) [001] d..1 82316.332350: cpu_idle: state=0 cpu_id=1
67783<...>-8 ( 8) [002] d..2 82316.332368: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67784           <...>-27663 (-----) [005] ...1 82316.332373: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
67785           <...>-27663 (-----) [005] ...1 82316.332378: tracing_mark_write: E|27550
67786          <idle>-0     (-----) [002] d..1 82316.332380: cpu_idle: state=0 cpu_id=2
67787           <...>-27663 (-----) [005] .... 82316.332392: binder_transaction: transaction=1570219 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
67788           <...>-27663 (-----) [005] .... 82316.332394: binder_transaction_alloc_buf: transaction=1570219 data_size=48 offsets_size=0
67789           <...>-27663 (-----) [005] ...2 82316.332397: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
67790           <...>-27663 (-----) [005] d..4 82316.332399: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
67791           <...>-27663 (-----) [005] dn.5 82316.332409: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
67792           <...>-27663 (-----) [005] d..2 82316.332416: sched_switch: prev_comm=id.nn.benchmark prev_pid=27663 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
67793<...>-770 ( 770) [005] .... 82316.332424: binder_transaction_received: transaction=1570219
67794<...>-770 ( 770) [005] ...1 82316.332442: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
67795<...>-581 ( 571) [003] d..2 82316.332446: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67796          <idle>-0     (-----) [003] d..1 82316.332467: cpu_idle: state=0 cpu_id=3
67797<...>-770 ( 770) [005] d..2 82316.332501: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
67798          <idle>-0     (-----) [003] dnh2 82316.332527: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
67799          <idle>-0     (-----) [003] .n.1 82316.332535: cpu_idle: state=4294967295 cpu_id=3
67800<...>-770 ( 770) [005] ...1 82316.332535: tracing_mark_write: E|770
67801<...>-770 ( 770) [005] .... 82316.332542: binder_transaction: transaction=1570220 dest_node=0 dest_proc=27550 dest_thread=27663 reply=1 flags=0x0 code=0x0
67802<...>-770 ( 770) [005] .... 82316.332545: binder_transaction_alloc_buf: transaction=1570220 data_size=168 offsets_size=32
67803          <idle>-0     (-----) [003] d..2 82316.332547: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
67804<...>-770 ( 770) [005] .... 82316.332551: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
67805<...>-770 ( 770) [005] d..2 82316.332587: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27663 next_prio=110
67806           <...>-27663 (-----) [005] .... 82316.332597: binder_transaction_received: transaction=1570220
67807<...>-581 ( 571) [003] d..2 82316.332610: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
67808          <idle>-0     (-----) [003] d..1 82316.332625: cpu_idle: state=0 cpu_id=3
67809           <...>-27663 (-----) [005] ...1 82316.332881: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
67810           <...>-27663 (-----) [005] ...1 82316.332891: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
67811           <...>-27663 (-----) [005] ...1 82316.332895: tracing_mark_write: E|27550
67812           <...>-27663 (-----) [005] .... 82316.332960: binder_transaction: transaction=1570221 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
67813           <...>-27663 (-----) [005] .... 82316.332963: binder_transaction_alloc_buf: transaction=1570221 data_size=556 offsets_size=104
67814           <...>-27663 (-----) [005] ...2 82316.332978: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
67815           <...>-27663 (-----) [005] d..4 82316.332980: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67816           <...>-27663 (-----) [005] dn.5 82316.332993: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67817           <...>-27663 (-----) [005] d..2 82316.333000: sched_switch: prev_comm=id.nn.benchmark prev_pid=27663 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67818<...>-5340 ( 788) [005] .... 82316.333009: binder_transaction_received: transaction=1570221
67819<...>-5340 ( 788) [005] ...1 82316.333057: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
67820<...>-5340 ( 788) [005] d..2 82316.333108: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
67821<...>-5340 ( 788) [005] d..2 82316.333146: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27663 next_prio=110
67822          <idle>-0     (-----) [000] dnh2 82316.333150: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67823          <idle>-0     (-----) [000] .n.1 82316.333156: cpu_idle: state=4294967295 cpu_id=0
67824           <...>-27663 (-----) [005] d..2 82316.333169: sched_switch: prev_comm=id.nn.benchmark prev_pid=27663 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
67825          <idle>-0     (-----) [000] d..2 82316.333170: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
67826          <idle>-0     (-----) [005] d..1 82316.333183: cpu_idle: state=0 cpu_id=5
67827<...>-87 ( 87) [000] d..2 82316.333218: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67828          <idle>-0     (-----) [002] d.h4 82316.333227: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67829          <idle>-0     (-----) [000] d..1 82316.333231: cpu_idle: state=0 cpu_id=0
67830          <idle>-0     (-----) [002] dnh5 82316.333247: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67831          <idle>-0     (-----) [002] .n.1 82316.333259: cpu_idle: state=4294967295 cpu_id=2
67832          <idle>-0     (-----) [002] d..2 82316.333271: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
67833<...>-86 ( 86) [002] d.h4 82316.333306: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67834          <idle>-0     (-----) [005] dnh2 82316.333329: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67835          <idle>-0     (-----) [005] .n.1 82316.333333: cpu_idle: state=4294967295 cpu_id=5
67836          <idle>-0     (-----) [005] d..2 82316.333342: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67837<...>-86 ( 86) [002] d..2 82316.333369: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67838          <idle>-0     (-----) [002] d..1 82316.333382: cpu_idle: state=0 cpu_id=2
67839<...>-5340 ( 788) [005] d..1 82316.333396: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67840          <idle>-0     (-----) [000] dnh2 82316.333423: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67841          <idle>-0     (-----) [000] .n.1 82316.333429: cpu_idle: state=4294967295 cpu_id=0
67842          <idle>-0     (-----) [000] d..2 82316.333440: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
67843 neuralnetworks@-13088 (  788) [000] d..2 82316.333480: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67844          <idle>-0     (-----) [000] d..1 82316.333493: cpu_idle: state=0 cpu_id=0
67845<...>-5340 ( 788) [005] d..2 82316.333546: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67846          <idle>-0     (-----) [000] dnh2 82316.333567: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
67847<...>-5340 ( 788) [005] d..2 82316.333571: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
67848          <idle>-0     (-----) [000] .n.1 82316.333574: cpu_idle: state=4294967295 cpu_id=0
67849          <idle>-0     (-----) [000] d..2 82316.333585: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
67850          <idle>-0     (-----) [005] d..1 82316.333585: cpu_idle: state=0 cpu_id=5
67851<...>-87 ( 87) [000] d..2 82316.333625: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67852          <idle>-0     (-----) [002] d.h4 82316.333625: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67853          <idle>-0     (-----) [002] dnh5 82316.333637: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
67854          <idle>-0     (-----) [000] d..1 82316.333637: cpu_idle: state=0 cpu_id=0
67855          <idle>-0     (-----) [002] .n.1 82316.333646: cpu_idle: state=4294967295 cpu_id=2
67856          <idle>-0     (-----) [002] d..2 82316.333659: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
67857<...>-86 ( 86) [002] d..2 82316.333694: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67858          <idle>-0     (-----) [002] d..1 82316.333706: cpu_idle: state=0 cpu_id=2
67859          <idle>-0     (-----) [005] ...1 82316.333928: cpu_idle: state=4294967295 cpu_id=5
67860          <idle>-0     (-----) [005] d..1 82316.333932: cpu_idle: state=0 cpu_id=5
67861          <idle>-0     (-----) [003] ...1 82316.334044: cpu_idle: state=4294967295 cpu_id=3
67862          <idle>-0     (-----) [003] d..1 82316.334050: cpu_idle: state=0 cpu_id=3
67863          <idle>-0     (-----) [002] d.h4 82316.335327: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67864          <idle>-0     (-----) [005] dnh2 82316.335348: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
67865          <idle>-0     (-----) [005] .n.1 82316.335352: cpu_idle: state=4294967295 cpu_id=5
67866          <idle>-0     (-----) [005] d..2 82316.335360: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
67867          <idle>-0     (-----) [002] d..2 82316.335365: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
67868          <idle>-0     (-----) [002] dn.3 82316.335378: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
67869          <idle>-0     (-----) [002] .n.1 82316.335382: cpu_idle: state=4294967295 cpu_id=2
67870          <idle>-0     (-----) [002] d..2 82316.335397: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
67871<...>-5340 ( 788) [005] d..1 82316.335410: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67872     ksoftirqd/2-26    (   26) [002] d.s2 82316.335410: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
67873          <idle>-0     (-----) [000] dnh2 82316.335435: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
67874          <idle>-0     (-----) [000] .n.1 82316.335441: cpu_idle: state=4294967295 cpu_id=0
67875          <idle>-0     (-----) [000] d..2 82316.335454: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
67876     ksoftirqd/2-26    (   26) [002] d.s3 82316.335489: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
67877<...>-5340 ( 788) [005] ...1 82316.335503: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
67878     ksoftirqd/2-26    (   26) [002] d..2 82316.335504: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
67879<...>-5340 ( 788) [005] ...1 82316.335507: tracing_mark_write: E|788
67880<...>-5340 ( 788) [005] .... 82316.335523: binder_transaction: transaction=1570224 dest_node=1570222 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
67881 neuralnetworks@-13088 (  788) [000] d..2 82316.335525: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67882<...>-5340 ( 788) [005] .... 82316.335525: binder_transaction_alloc_buf: transaction=1570224 data_size=60 offsets_size=0
67883<...>-5340 ( 788) [005] d..4 82316.335528: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
67884          <idle>-0     (-----) [000] d..1 82316.335538: cpu_idle: state=0 cpu_id=0
67885<...>-5340 ( 788) [005] d..5 82316.335542: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
67886          <idle>-0     (-----) [004] .n.1 82316.335548: cpu_idle: state=4294967295 cpu_id=4
67887          <idle>-0     (-----) [004] d..2 82316.335556: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
67888           <...>-27571 (-----) [004] .... 82316.335561: binder_transaction_received: transaction=1570224
67889<...>-5340 ( 788) [005] ...1 82316.335566: tracing_mark_write: E|788
67890<...>-5340 ( 788) [005] .... 82316.335572: binder_transaction: transaction=1570225 dest_node=0 dest_proc=27550 dest_thread=27663 reply=1 flags=0x0 code=0x0
67891<...>-5340 ( 788) [005] .... 82316.335574: binder_transaction_alloc_buf: transaction=1570225 data_size=8 offsets_size=0
67892<...>-5340 ( 788) [005] d..2 82316.335576: sched_waking: comm=id.nn.benchmark pid=27663 prio=110 target_cpu=005
67893  kworker/u16:13-1147  ( 1147) [002] d..2 82316.335579: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
67894           <...>-27571 (-----) [004] ...1 82316.335580: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
67895<...>-5340 ( 788) [005] d..3 82316.335583: sched_wakeup: comm=id.nn.benchmark pid=27663 prio=110 target_cpu=005
67896<...>-5340 ( 788) [005] .... 82316.335585: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
67897           <...>-27571 (-----) [004] ...1 82316.335586: tracing_mark_write: E|27550
67898          <idle>-0     (-----) [002] d..1 82316.335590: cpu_idle: state=0 cpu_id=2
67899           <...>-27571 (-----) [004] d..2 82316.335615: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67900          <idle>-0     (-----) [004] d..1 82316.335622: cpu_idle: state=0 cpu_id=4
67901<...>-5340 ( 788) [005] d..2 82316.335627: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27663 next_prio=110
67902           <...>-27663 (-----) [005] .... 82316.335637: binder_transaction_received: transaction=1570225
67903           <...>-27663 (-----) [005] ...1 82316.335673: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
67904           <...>-27663 (-----) [005] ...1 82316.335679: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
67905           <...>-27663 (-----) [005] ...1 82316.335706: tracing_mark_write: E|27550
67906           <...>-27663 (-----) [005] ...1 82316.335709: tracing_mark_write: E|27550
67907           <...>-27663 (-----) [005] ...1 82316.335713: tracing_mark_write: E|27550
67908           <...>-27663 (-----) [005] ...1 82316.335903: tracing_mark_write: E|27550
67909           <...>-27663 (-----) [005] d..1 82316.335915: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67910           <...>-27663 (-----) [005] d..2 82316.335931: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67911          <idle>-0     (-----) [004] .n.1 82316.335937: cpu_idle: state=4294967295 cpu_id=4
67912          <idle>-0     (-----) [004] d..2 82316.335944: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
67913           <...>-27550 (-----) [004] d..2 82316.335963: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67914          <idle>-0     (-----) [004] d..1 82316.335972: cpu_idle: state=0 cpu_id=4
67915           <...>-27663 (-----) [005] d..1 82316.336021: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67916           <...>-27663 (-----) [005] d..2 82316.336030: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
67917          <idle>-0     (-----) [004] .n.1 82316.336036: cpu_idle: state=4294967295 cpu_id=4
67918          <idle>-0     (-----) [004] d..2 82316.336043: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
67919           <...>-27663 (-----) [005] d..2 82316.336068: sched_switch: prev_comm=id.nn.benchmark prev_pid=27663 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
67920          <idle>-0     (-----) [001] d.h2 82316.336075: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
67921           <...>-27550 (-----) [004] ...1 82316.336075: tracing_mark_write: E|27550
67922           <...>-27550 (-----) [004] ...1 82316.336080: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
67923          <idle>-0     (-----) [005] d..1 82316.336084: cpu_idle: state=0 cpu_id=5
67924           <...>-27550 (-----) [004] ...1 82316.336086: tracing_mark_write: E|27550
67925           <...>-27550 (-----) [004] ...1 82316.336089: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
67926          <idle>-0     (-----) [001] dnh3 82316.336092: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
67927           <...>-27550 (-----) [004] ...1 82316.336094: tracing_mark_write: E|27550
67928           <...>-27550 (-----) [004] ...1 82316.336098: tracing_mark_write: E|27550
67929          <idle>-0     (-----) [001] .n.1 82316.336101: cpu_idle: state=4294967295 cpu_id=1
67930          <idle>-0     (-----) [001] d..2 82316.336113: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
67931 [email protected]  (  776) [001] d..2 82316.336197: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
67932           <...>-27550 (-----) [004] ...1 82316.336210: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
67933          <idle>-0     (-----) [001] d..1 82316.336214: cpu_idle: state=0 cpu_id=1
67934           <...>-27550 (-----) [004] ...1 82316.336268: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
67935           <...>-27550 (-----) [004] ...1 82316.336272: tracing_mark_write: E|27550
67936           <...>-27550 (-----) [004] ...1 82316.336276: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
67937           <...>-27550 (-----) [004] ...1 82316.336282: tracing_mark_write: E|27550
67938           <...>-27550 (-----) [004] ...1 82316.336286: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
67939           <...>-27550 (-----) [004] ...1 82316.336290: tracing_mark_write: E|27550
67940           <...>-27550 (-----) [004] ...1 82316.336294: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
67941          <idle>-0     (-----) [005] .n.1 82316.336383: cpu_idle: state=4294967295 cpu_id=5
67942           <...>-27550 (-----) [004] ...1 82316.336385: tracing_mark_write: E|27550
67943           <...>-27550 (-----) [004] ...1 82316.336389: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
67944          <idle>-0     (-----) [005] d..2 82316.336392: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27664 next_prio=110
67945           <...>-27550 (-----) [004] d..2 82316.336405: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
67946          <idle>-0     (-----) [004] d..1 82316.336415: cpu_idle: state=0 cpu_id=4
67947           <...>-27664 (-----) [005] ...1 82316.336454: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
67948           <...>-27664 (-----) [005] ...1 82316.336468: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
67949           <...>-27664 (-----) [005] ...1 82316.336473: tracing_mark_write: E|27550
67950           <...>-27664 (-----) [005] .... 82316.336493: binder_transaction: transaction=1570226 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
67951           <...>-27664 (-----) [005] .... 82316.336496: binder_transaction_alloc_buf: transaction=1570226 data_size=48 offsets_size=0
67952           <...>-27664 (-----) [005] ...2 82316.336499: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
67953           <...>-27664 (-----) [005] d..4 82316.336502: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
67954           <...>-27664 (-----) [005] dn.5 82316.336512: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
67955           <...>-27664 (-----) [005] d..2 82316.336519: sched_switch: prev_comm=id.nn.benchmark prev_pid=27664 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
67956<...>-770 ( 770) [005] .... 82316.336529: binder_transaction_received: transaction=1570226
67957<...>-770 ( 770) [005] ...1 82316.336552: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
67958<...>-770 ( 770) [005] d..2 82316.336627: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
67959          <idle>-0     (-----) [000] dnh2 82316.336666: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
67960          <idle>-0     (-----) [000] .n.1 82316.336672: cpu_idle: state=4294967295 cpu_id=0
67961<...>-770 ( 770) [005] ...1 82316.336678: tracing_mark_write: E|770
67962          <idle>-0     (-----) [000] d..2 82316.336684: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
67963<...>-770 ( 770) [005] .... 82316.336686: binder_transaction: transaction=1570227 dest_node=0 dest_proc=27550 dest_thread=27664 reply=1 flags=0x0 code=0x0
67964<...>-770 ( 770) [005] .... 82316.336689: binder_transaction_alloc_buf: transaction=1570227 data_size=168 offsets_size=32
67965<...>-770 ( 770) [005] .... 82316.336695: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
67966<...>-770 ( 770) [005] d..2 82316.336731: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27664 next_prio=110
67967           <...>-27664 (-----) [005] .... 82316.336742: binder_transaction_received: transaction=1570227
67968<...>-581 ( 571) [000] d..2 82316.336784: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67969          <idle>-0     (-----) [000] d..1 82316.336801: cpu_idle: state=0 cpu_id=0
67970           <...>-27664 (-----) [005] ...1 82316.336809: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
67971           <...>-27664 (-----) [005] ...1 82316.336815: tracing_mark_write: E|27550
67972           <...>-27664 (-----) [005] .... 82316.336829: binder_transaction: transaction=1570228 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
67973           <...>-27664 (-----) [005] .... 82316.336831: binder_transaction_alloc_buf: transaction=1570228 data_size=48 offsets_size=0
67974           <...>-27664 (-----) [005] ...2 82316.336834: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
67975           <...>-27664 (-----) [005] d..4 82316.336836: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
67976           <...>-27664 (-----) [005] dn.5 82316.336846: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
67977           <...>-27664 (-----) [005] d..2 82316.336852: sched_switch: prev_comm=id.nn.benchmark prev_pid=27664 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
67978<...>-770 ( 770) [005] .... 82316.336861: binder_transaction_received: transaction=1570228
67979<...>-770 ( 770) [005] ...1 82316.336878: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
67980<...>-770 ( 770) [005] d..2 82316.336934: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
67981          <idle>-0     (-----) [000] dnh2 82316.336960: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
67982          <idle>-0     (-----) [000] .n.1 82316.336967: cpu_idle: state=4294967295 cpu_id=0
67983<...>-770 ( 770) [005] ...1 82316.336968: tracing_mark_write: E|770
67984<...>-770 ( 770) [005] .... 82316.336976: binder_transaction: transaction=1570229 dest_node=0 dest_proc=27550 dest_thread=27664 reply=1 flags=0x0 code=0x0
67985<...>-770 ( 770) [005] .... 82316.336979: binder_transaction_alloc_buf: transaction=1570229 data_size=168 offsets_size=32
67986          <idle>-0     (-----) [000] d..2 82316.336980: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
67987<...>-770 ( 770) [005] .... 82316.336984: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
67988<...>-770 ( 770) [005] d..2 82316.337018: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27664 next_prio=110
67989           <...>-27664 (-----) [005] .... 82316.337029: binder_transaction_received: transaction=1570229
67990<...>-581 ( 571) [000] d..2 82316.337041: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
67991          <idle>-0     (-----) [000] d..1 82316.337057: cpu_idle: state=0 cpu_id=0
67992           <...>-27664 (-----) [005] ...1 82316.337305: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
67993           <...>-27664 (-----) [005] ...1 82316.337315: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
67994           <...>-27664 (-----) [005] ...1 82316.337319: tracing_mark_write: E|27550
67995           <...>-27664 (-----) [005] .... 82316.337379: binder_transaction: transaction=1570230 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
67996           <...>-27664 (-----) [005] .... 82316.337382: binder_transaction_alloc_buf: transaction=1570230 data_size=556 offsets_size=104
67997          <idle>-0     (-----) [001] ...1 82316.337390: cpu_idle: state=4294967295 cpu_id=1
67998          <idle>-0     (-----) [001] d..1 82316.337395: cpu_idle: state=0 cpu_id=1
67999           <...>-27664 (-----) [005] ...2 82316.337396: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
68000           <...>-27664 (-----) [005] d..4 82316.337399: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68001           <...>-27664 (-----) [005] dn.5 82316.337409: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68002           <...>-27664 (-----) [005] d..2 82316.337416: sched_switch: prev_comm=id.nn.benchmark prev_pid=27664 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68003<...>-5340 ( 788) [005] .... 82316.337427: binder_transaction_received: transaction=1570230
68004<...>-5340 ( 788) [005] ...1 82316.337470: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
68005<...>-5340 ( 788) [005] d..2 82316.337511: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
68006          <idle>-0     (-----) [000] d.h5 82316.337534: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68007<...>-5340 ( 788) [005] d..2 82316.337535: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27664 next_prio=110
68008           <...>-27664 (-----) [005] d..2 82316.337557: sched_switch: prev_comm=id.nn.benchmark prev_pid=27664 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68009          <idle>-0     (-----) [000] d.h6 82316.337558: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68010          <idle>-0     (-----) [003] .n.1 82316.337563: cpu_idle: state=4294967295 cpu_id=3
68011          <idle>-0     (-----) [000] d.h5 82316.337563: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
68012          <idle>-0     (-----) [005] d..1 82316.337570: cpu_idle: state=0 cpu_id=5
68013          <idle>-0     (-----) [003] d..2 82316.337575: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
68014          <idle>-0     (-----) [000] d.h6 82316.337577: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
68015          <idle>-0     (-----) [002] .n.1 82316.337584: cpu_idle: state=4294967295 cpu_id=2
68016          <idle>-0     (-----) [002] d..2 82316.337593: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
68017          <idle>-0     (-----) [000] dnh2 82316.337603: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
68018          <idle>-0     (-----) [000] .n.1 82316.337610: cpu_idle: state=4294967295 cpu_id=0
68019  crtc_event:111-322   (  322) [003] d..2 82316.337614: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68020          <idle>-0     (-----) [003] d..1 82316.337625: cpu_idle: state=0 cpu_id=3
68021          <idle>-0     (-----) [000] d..2 82316.337625: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
68022<...>-87 ( 87) [000] d..2 82316.337671: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68023 crtc_commit:111-321   (  321) [002] d.h3 82316.337676: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
68024          <idle>-0     (-----) [000] d..1 82316.337686: cpu_idle: state=0 cpu_id=0
68025 crtc_commit:111-321   (  321) [002] d.h4 82316.337706: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
68026          <idle>-0     (-----) [000] .n.1 82316.337712: cpu_idle: state=4294967295 cpu_id=0
68027          <idle>-0     (-----) [000] d..2 82316.337724: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
68028<...>-86 ( 86) [000] d..3 82316.337760: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68029          <idle>-0     (-----) [005] dnh2 82316.337783: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68030          <idle>-0     (-----) [005] .n.1 82316.337787: cpu_idle: state=4294967295 cpu_id=5
68031          <idle>-0     (-----) [005] d..2 82316.337796: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68032<...>-86 ( 86) [000] d..2 82316.337815: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68033          <idle>-0     (-----) [000] d..1 82316.337831: cpu_idle: state=0 cpu_id=0
68034 crtc_commit:111-321   (  321) [002] d..2 82316.337843: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
68035<...>-5340 ( 788) [005] d..1 82316.337846: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68036          <idle>-0     (-----) [002] d..1 82316.337855: cpu_idle: state=0 cpu_id=2
68037          <idle>-0     (-----) [000] dnh2 82316.337874: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68038          <idle>-0     (-----) [000] .n.1 82316.337882: cpu_idle: state=4294967295 cpu_id=0
68039          <idle>-0     (-----) [000] d..2 82316.337893: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
68040 neuralnetworks@-13088 (  788) [000] d..2 82316.337942: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68041          <idle>-0     (-----) [000] d..1 82316.337958: cpu_idle: state=0 cpu_id=0
68042<...>-5340 ( 788) [005] d..2 82316.337992: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
68043          <idle>-0     (-----) [000] dnh2 82316.338015: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
68044<...>-5340 ( 788) [005] d..2 82316.338017: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68045          <idle>-0     (-----) [000] .n.1 82316.338022: cpu_idle: state=4294967295 cpu_id=0
68046          <idle>-0     (-----) [005] d..1 82316.338031: cpu_idle: state=0 cpu_id=5
68047          <idle>-0     (-----) [000] d..2 82316.338034: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
68048<...>-87 ( 87) [000] d..2 82316.338076: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68049          <idle>-0     (-----) [002] d.h4 82316.338076: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
68050          <idle>-0     (-----) [000] dn.1 82316.338089: cpu_idle: state=0 cpu_id=0
68051          <idle>-0     (-----) [002] d.h5 82316.338093: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
68052          <idle>-0     (-----) [000] .n.1 82316.338097: cpu_idle: state=4294967295 cpu_id=0
68053          <idle>-0     (-----) [002] ...1 82316.338104: cpu_idle: state=4294967295 cpu_id=2
68054          <idle>-0     (-----) [002] d..1 82316.338109: cpu_idle: state=0 cpu_id=2
68055          <idle>-0     (-----) [000] d..2 82316.338109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
68056<...>-86 ( 86) [000] d..2 82316.338147: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68057          <idle>-0     (-----) [000] d..1 82316.338160: cpu_idle: state=0 cpu_id=0
68058          <idle>-0     (-----) [005] ...1 82316.338385: cpu_idle: state=4294967295 cpu_id=5
68059          <idle>-0     (-----) [005] d..1 82316.338388: cpu_idle: state=0 cpu_id=5
68060          <idle>-0     (-----) [002] d.s3 82316.338473: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68061          <idle>-0     (-----) [002] d.s4 82316.338491: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68062          <idle>-0     (-----) [002] d.s2 82316.338494: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
68063          <idle>-0     (-----) [003] .n.1 82316.338497: cpu_idle: state=4294967295 cpu_id=3
68064          <idle>-0     (-----) [003] d..2 82316.338509: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
68065          <idle>-0     (-----) [002] dns3 82316.338510: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
68066          <idle>-0     (-----) [002] dns2 82316.338513: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
68067  crtc_event:111-322   (  322) [003] d..2 82316.338550: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68068          <idle>-0     (-----) [002] dns3 82316.338560: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
68069          <idle>-0     (-----) [003] d..2 82316.338568: 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
68070          <idle>-0     (-----) [002] dns3 82316.338577: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
68071          <idle>-0     (-----) [002] dns4 82316.338593: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
68072          <idle>-0     (-----) [002] dns3 82316.338600: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
68073          <idle>-0     (-----) [000] .n.1 82316.338601: cpu_idle: state=4294967295 cpu_id=0
68074     rcu_preempt-7     (    7) [003] d..2 82316.338608: 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
68075          <idle>-0     (-----) [002] dns4 82316.338615: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
68076          <idle>-0     (-----) [000] d..2 82316.338615: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
68077          <idle>-0     (-----) [003] d..1 82316.338618: cpu_idle: state=0 cpu_id=3
68078          <idle>-0     (-----) [001] .n.1 82316.338620: cpu_idle: state=4294967295 cpu_id=1
68079          <idle>-0     (-----) [002] dns3 82316.338620: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
68080          <idle>-0     (-----) [002] dns4 82316.338632: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
68081          <idle>-0     (-----) [001] d..2 82316.338635: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
68082          <idle>-0     (-----) [002] dns3 82316.338637: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
68083     kworker/0:1-25262 (25262) [000] d..2 82316.338652: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68084          <idle>-0     (-----) [000] d..1 82316.338664: cpu_idle: state=0 cpu_id=0
68085          <idle>-0     (-----) [002] dns4 82316.338680: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
68086          <idle>-0     (-----) [000] .n.1 82316.338687: cpu_idle: state=4294967295 cpu_id=0
68087     kworker/1:1-25249 (25249) [001] d..2 82316.338692: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
68088          <idle>-0     (-----) [000] d..2 82316.338699: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
68089          <idle>-0     (-----) [002] .n.1 82316.338710: cpu_idle: state=4294967295 cpu_id=2
68090          <idle>-0     (-----) [002] d..2 82316.338722: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
68091<...>-8 ( 8) [001] d..2 82316.338724: 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
68092     kworker/2:1-25259 (25259) [002] d..2 82316.338734: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
68093     kworker/2:1-25259 (25259) [002] d..2 82316.338749: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
68094          <idle>-0     (-----) [004] dnh2 82316.338757: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
68095          <idle>-0     (-----) [001] d..1 82316.338760: cpu_idle: state=0 cpu_id=1
68096          <idle>-0     (-----) [004] .n.1 82316.338761: cpu_idle: state=4294967295 cpu_id=4
68097          <idle>-0     (-----) [004] d..2 82316.338769: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
68098          <idle>-0     (-----) [005] dnh2 82316.338770: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
68099          <idle>-0     (-----) [005] .n.1 82316.338774: cpu_idle: state=4294967295 cpu_id=5
68100          <idle>-0     (-----) [001] ...1 82316.338775: cpu_idle: state=4294967295 cpu_id=1
68101          <idle>-0     (-----) [001] d..1 82316.338781: cpu_idle: state=0 cpu_id=1
68102          <idle>-0     (-----) [005] d..2 82316.338783: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
68103     kworker/4:1-25432 (25432) [004] d..2 82316.338788: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68104     kworker/2:1-25259 (25259) [002] d..2 82316.338791: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68105          <idle>-0     (-----) [004] d..1 82316.338795: cpu_idle: state=0 cpu_id=4
68106     kworker/5:0-23997 (23997) [005] d..2 82316.338803: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68107          <idle>-0     (-----) [005] d..1 82316.338810: cpu_idle: state=0 cpu_id=5
68108          <idle>-0     (-----) [002] d..1 82316.338828: cpu_idle: state=0 cpu_id=2
68109          <idle>-0     (-----) [002] ...1 82316.338844: cpu_idle: state=4294967295 cpu_id=2
68110          <idle>-0     (-----) [002] d..1 82316.338849: cpu_idle: state=0 cpu_id=2
68111  kworker/u16:13-1147  ( 1147) [000] .... 82316.338856: clk_set_rate: l3_cluster0_vote_clk 300000000
68112  kworker/u16:13-1147  ( 1147) [000] d..2 82316.339100: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
68113          <idle>-0     (-----) [000] d..1 82316.339118: cpu_idle: state=0 cpu_id=0
68114          <idle>-0     (-----) [001] d.s3 82316.339135: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
68115          <idle>-0     (-----) [001] d.s4 82316.339148: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
68116          <idle>-0     (-----) [001] d.s4 82316.339158: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
68117          <idle>-0     (-----) [000] .n.1 82316.339166: cpu_idle: state=4294967295 cpu_id=0
68118          <idle>-0     (-----) [001] ...1 82316.339169: cpu_idle: state=4294967295 cpu_id=1
68119          <idle>-0     (-----) [001] d..1 82316.339175: cpu_idle: state=0 cpu_id=1
68120          <idle>-0     (-----) [000] d..2 82316.339179: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
68121  kworker/u16:13-1147  ( 1147) [000] d..2 82316.339234: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68122          <idle>-0     (-----) [000] d..1 82316.339247: cpu_idle: state=0 cpu_id=0
68123          <idle>-0     (-----) [002] d.h4 82316.339839: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68124          <idle>-0     (-----) [005] dnh2 82316.339859: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68125          <idle>-0     (-----) [005] .n.1 82316.339863: cpu_idle: state=4294967295 cpu_id=5
68126          <idle>-0     (-----) [005] d..2 82316.339869: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68127          <idle>-0     (-----) [000] d.h5 82316.339871: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
68128          <idle>-0     (-----) [002] ...1 82316.339882: cpu_idle: state=4294967295 cpu_id=2
68129          <idle>-0     (-----) [000] d.h6 82316.339891: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
68130          <idle>-0     (-----) [002] d..2 82316.339904: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
68131          <idle>-0     (-----) [000] ...1 82316.339910: cpu_idle: state=4294967295 cpu_id=0
68132          <idle>-0     (-----) [000] d..1 82316.339915: cpu_idle: state=0 cpu_id=0
68133<...>-5340 ( 788) [005] d..1 82316.339919: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68134          <idle>-0     (-----) [000] dnh2 82316.339945: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68135          <idle>-0     (-----) [000] .n.1 82316.339951: cpu_idle: state=4294967295 cpu_id=0
68136          <idle>-0     (-----) [000] d..2 82316.339963: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
68137<...>-5340 ( 788) [005] ...1 82316.340013: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
68138<...>-5340 ( 788) [005] ...1 82316.340017: tracing_mark_write: E|788
68139 crtc_commit:111-321   (  321) [002] d..2 82316.340022: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68140<...>-5340 ( 788) [005] .... 82316.340033: binder_transaction: transaction=1570233 dest_node=1570231 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
68141 neuralnetworks@-13088 (  788) [000] d..2 82316.340033: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68142          <idle>-0     (-----) [002] d..1 82316.340034: cpu_idle: state=0 cpu_id=2
68143<...>-5340 ( 788) [005] .... 82316.340035: binder_transaction_alloc_buf: transaction=1570233 data_size=60 offsets_size=0
68144<...>-5340 ( 788) [005] d..4 82316.340039: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
68145          <idle>-0     (-----) [000] d..1 82316.340047: cpu_idle: state=0 cpu_id=0
68146<...>-5340 ( 788) [005] d..5 82316.340051: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
68147          <idle>-0     (-----) [004] .n.1 82316.340056: cpu_idle: state=4294967295 cpu_id=4
68148          <idle>-0     (-----) [004] d..2 82316.340062: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
68149           <...>-27571 (-----) [004] .... 82316.340066: binder_transaction_received: transaction=1570233
68150<...>-5340 ( 788) [005] ...1 82316.340074: tracing_mark_write: E|788
68151<...>-5340 ( 788) [005] .... 82316.340080: binder_transaction: transaction=1570234 dest_node=0 dest_proc=27550 dest_thread=27664 reply=1 flags=0x0 code=0x0
68152<...>-5340 ( 788) [005] .... 82316.340082: binder_transaction_alloc_buf: transaction=1570234 data_size=8 offsets_size=0
68153<...>-5340 ( 788) [005] d..2 82316.340084: sched_waking: comm=id.nn.benchmark pid=27664 prio=110 target_cpu=005
68154           <...>-27571 (-----) [004] ...1 82316.340085: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
68155<...>-5340 ( 788) [005] d..3 82316.340091: sched_wakeup: comm=id.nn.benchmark pid=27664 prio=110 target_cpu=005
68156           <...>-27571 (-----) [004] ...1 82316.340092: tracing_mark_write: E|27550
68157<...>-5340 ( 788) [005] .... 82316.340092: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
68158           <...>-27571 (-----) [004] d..2 82316.340120: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68159          <idle>-0     (-----) [004] d..1 82316.340128: cpu_idle: state=0 cpu_id=4
68160<...>-5340 ( 788) [005] d..2 82316.340134: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27664 next_prio=110
68161           <...>-27664 (-----) [005] .... 82316.340144: binder_transaction_received: transaction=1570234
68162          <idle>-0     (-----) [000] d.h5 82316.340158: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68163          <idle>-0     (-----) [000] d.h6 82316.340176: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68164           <...>-27664 (-----) [005] ...1 82316.340181: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
68165          <idle>-0     (-----) [003] .n.1 82316.340181: cpu_idle: state=4294967295 cpu_id=3
68166           <...>-27664 (-----) [005] ...1 82316.340187: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
68167          <idle>-0     (-----) [003] d..2 82316.340192: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
68168          <idle>-0     (-----) [000] ...1 82316.340198: cpu_idle: state=4294967295 cpu_id=0
68169          <idle>-0     (-----) [000] d..1 82316.340204: cpu_idle: state=0 cpu_id=0
68170           <...>-27664 (-----) [005] ...1 82316.340213: tracing_mark_write: E|27550
68171           <...>-27664 (-----) [005] ...1 82316.340216: tracing_mark_write: E|27550
68172  crtc_event:111-322   (  322) [003] d..2 82316.340219: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68173           <...>-27664 (-----) [005] ...1 82316.340220: tracing_mark_write: E|27550
68174          <idle>-0     (-----) [003] d..1 82316.340229: cpu_idle: state=0 cpu_id=3
68175           <...>-27664 (-----) [005] ...1 82316.340410: tracing_mark_write: E|27550
68176           <...>-27664 (-----) [005] d..1 82316.340423: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68177           <...>-27664 (-----) [005] d..2 82316.340439: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68178          <idle>-0     (-----) [004] .n.1 82316.340443: cpu_idle: state=4294967295 cpu_id=4
68179          <idle>-0     (-----) [004] d..2 82316.340450: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
68180           <...>-27550 (-----) [004] d..2 82316.340470: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68181          <idle>-0     (-----) [004] d..1 82316.340479: cpu_idle: state=0 cpu_id=4
68182           <...>-27664 (-----) [005] d..1 82316.340525: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68183           <...>-27664 (-----) [005] d..2 82316.340535: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68184          <idle>-0     (-----) [004] .n.1 82316.340540: cpu_idle: state=4294967295 cpu_id=4
68185          <idle>-0     (-----) [004] d..2 82316.340548: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
68186           <...>-27664 (-----) [005] d..2 82316.340572: sched_switch: prev_comm=id.nn.benchmark prev_pid=27664 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
68187           <...>-27550 (-----) [004] ...1 82316.340580: tracing_mark_write: E|27550
68188           <...>-27550 (-----) [004] ...1 82316.340585: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
68189           <...>-27550 (-----) [004] ...1 82316.340591: tracing_mark_write: E|27550
68190          <idle>-0     (-----) [005] d..1 82316.340593: cpu_idle: state=0 cpu_id=5
68191           <...>-27550 (-----) [004] ...1 82316.340595: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
68192           <...>-27550 (-----) [004] ...1 82316.340599: tracing_mark_write: E|27550
68193           <...>-27550 (-----) [004] ...1 82316.340603: tracing_mark_write: E|27550
68194           <...>-27550 (-----) [004] ...1 82316.340717: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
68195           <...>-27550 (-----) [004] ...1 82316.340774: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
68196           <...>-27550 (-----) [004] ...1 82316.340779: tracing_mark_write: E|27550
68197           <...>-27550 (-----) [004] ...1 82316.340782: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
68198           <...>-27550 (-----) [004] ...1 82316.340788: tracing_mark_write: E|27550
68199           <...>-27550 (-----) [004] ...1 82316.340791: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
68200           <...>-27550 (-----) [004] ...1 82316.340796: tracing_mark_write: E|27550
68201           <...>-27550 (-----) [004] ...1 82316.340800: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
68202          <idle>-0     (-----) [005] .n.1 82316.340888: cpu_idle: state=4294967295 cpu_id=5
68203           <...>-27550 (-----) [004] ...1 82316.340889: tracing_mark_write: E|27550
68204           <...>-27550 (-----) [004] ...1 82316.340893: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
68205          <idle>-0     (-----) [005] d..2 82316.340897: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27665 next_prio=110
68206           <...>-27550 (-----) [004] d..2 82316.340910: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68207          <idle>-0     (-----) [004] d..1 82316.340925: cpu_idle: state=0 cpu_id=4
68208           <...>-27665 (-----) [005] ...1 82316.340959: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
68209           <...>-27665 (-----) [005] ...1 82316.340973: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
68210           <...>-27665 (-----) [005] ...1 82316.340976: tracing_mark_write: E|27550
68211           <...>-27665 (-----) [005] .... 82316.340997: binder_transaction: transaction=1570235 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
68212           <...>-27665 (-----) [005] .... 82316.341001: binder_transaction_alloc_buf: transaction=1570235 data_size=48 offsets_size=0
68213           <...>-27665 (-----) [005] ...2 82316.341003: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
68214           <...>-27665 (-----) [005] d..4 82316.341006: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
68215           <...>-27665 (-----) [005] dn.5 82316.341017: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
68216           <...>-27665 (-----) [005] d..2 82316.341024: sched_switch: prev_comm=id.nn.benchmark prev_pid=27665 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
68217<...>-770 ( 770) [005] .... 82316.341033: binder_transaction_received: transaction=1570235
68218<...>-770 ( 770) [005] ...1 82316.341056: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
68219<...>-770 ( 770) [005] d..2 82316.341132: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
68220          <idle>-0     (-----) [000] dnh2 82316.341161: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
68221          <idle>-0     (-----) [000] .n.1 82316.341167: cpu_idle: state=4294967295 cpu_id=0
68222<...>-770 ( 770) [005] ...1 82316.341172: tracing_mark_write: E|770
68223          <idle>-0     (-----) [000] d..2 82316.341179: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
68224<...>-770 ( 770) [005] .... 82316.341180: binder_transaction: transaction=1570236 dest_node=0 dest_proc=27550 dest_thread=27665 reply=1 flags=0x0 code=0x0
68225<...>-770 ( 770) [005] .... 82316.341182: binder_transaction_alloc_buf: transaction=1570236 data_size=168 offsets_size=32
68226<...>-770 ( 770) [005] .... 82316.341189: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
68227<...>-770 ( 770) [005] d..2 82316.341224: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27665 next_prio=110
68228           <...>-27665 (-----) [005] .... 82316.341235: binder_transaction_received: transaction=1570236
68229<...>-581 ( 571) [000] d..2 82316.341275: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68230          <idle>-0     (-----) [002] ...1 82316.341282: cpu_idle: state=4294967295 cpu_id=2
68231          <idle>-0     (-----) [002] d..1 82316.341287: cpu_idle: state=0 cpu_id=2
68232          <idle>-0     (-----) [000] d..1 82316.341292: cpu_idle: state=0 cpu_id=0
68233           <...>-27665 (-----) [005] ...1 82316.341306: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
68234           <...>-27665 (-----) [005] ...1 82316.341311: tracing_mark_write: E|27550
68235           <...>-27665 (-----) [005] .... 82316.341326: binder_transaction: transaction=1570237 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
68236           <...>-27665 (-----) [005] .... 82316.341329: binder_transaction_alloc_buf: transaction=1570237 data_size=48 offsets_size=0
68237           <...>-27665 (-----) [005] ...2 82316.341332: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
68238           <...>-27665 (-----) [005] d..4 82316.341334: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
68239           <...>-27665 (-----) [005] dn.5 82316.341344: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
68240           <...>-27665 (-----) [005] d..2 82316.341351: sched_switch: prev_comm=id.nn.benchmark prev_pid=27665 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
68241<...>-770 ( 770) [005] .... 82316.341359: binder_transaction_received: transaction=1570237
68242<...>-770 ( 770) [005] ...1 82316.341375: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
68243<...>-770 ( 770) [005] d..2 82316.341434: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
68244          <idle>-0     (-----) [000] dnh2 82316.341459: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
68245          <idle>-0     (-----) [000] .n.1 82316.341467: cpu_idle: state=4294967295 cpu_id=0
68246<...>-770 ( 770) [005] ...1 82316.341467: tracing_mark_write: E|770
68247<...>-770 ( 770) [005] .... 82316.341474: binder_transaction: transaction=1570238 dest_node=0 dest_proc=27550 dest_thread=27665 reply=1 flags=0x0 code=0x0
68248<...>-770 ( 770) [005] .... 82316.341476: binder_transaction_alloc_buf: transaction=1570238 data_size=168 offsets_size=32
68249          <idle>-0     (-----) [000] d..2 82316.341479: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
68250<...>-770 ( 770) [005] .... 82316.341484: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
68251<...>-770 ( 770) [005] d..2 82316.341518: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27665 next_prio=110
68252           <...>-27665 (-----) [005] .... 82316.341528: binder_transaction_received: transaction=1570238
68253<...>-581 ( 571) [000] d..2 82316.341539: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68254          <idle>-0     (-----) [000] d..1 82316.341554: cpu_idle: state=0 cpu_id=0
68255           <...>-27665 (-----) [005] ...1 82316.341846: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
68256           <...>-27665 (-----) [005] ...1 82316.341856: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
68257           <...>-27665 (-----) [005] ...1 82316.341859: tracing_mark_write: E|27550
68258           <...>-27665 (-----) [005] .... 82316.341919: binder_transaction: transaction=1570239 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
68259           <...>-27665 (-----) [005] .... 82316.341923: binder_transaction_alloc_buf: transaction=1570239 data_size=556 offsets_size=104
68260           <...>-27665 (-----) [005] ...2 82316.341937: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
68261           <...>-27665 (-----) [005] d..4 82316.341939: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68262           <...>-27665 (-----) [005] dn.5 82316.341950: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68263           <...>-27665 (-----) [005] d..2 82316.341956: sched_switch: prev_comm=id.nn.benchmark prev_pid=27665 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68264<...>-5340 ( 788) [005] .... 82316.341966: binder_transaction_received: transaction=1570239
68265          <idle>-0     (-----) [003] d.h2 82316.342007: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
68266<...>-5340 ( 788) [005] ...1 82316.342009: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
68267          <idle>-0     (-----) [003] dnh3 82316.342024: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
68268          <idle>-0     (-----) [003] .n.1 82316.342032: cpu_idle: state=4294967295 cpu_id=3
68269          <idle>-0     (-----) [003] d..2 82316.342044: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
68270<...>-5340 ( 788) [005] d..2 82316.342050: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
68271        DispSync-8879  ( 8858) [003] d..1 82316.342068: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
68272        DispSync-8879  ( 8858) [003] d..2 82316.342096: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
68273<...>-5340 ( 788) [005] d..2 82316.342096: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27665 next_prio=110
68274          <idle>-0     (-----) [001] .n.1 82316.342101: cpu_idle: state=4294967295 cpu_id=1
68275        DispSync-8879  ( 8858) [003] d.h2 82316.342109: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
68276          <idle>-0     (-----) [001] d..2 82316.342115: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
68277           <...>-27665 (-----) [005] d..2 82316.342123: sched_switch: prev_comm=id.nn.benchmark prev_pid=27665 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68278          <idle>-0     (-----) [005] d..1 82316.342141: cpu_idle: state=0 cpu_id=5
68279        DispSync-8879  ( 8858) [003] d..2 82316.342145: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
68280  appEventThread-8881  ( 8858) [001] d..3 82316.342188: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
68281<...>-87 ( 87) [003] d..2 82316.342196: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68282          <idle>-0     (-----) [002] d.h4 82316.342198: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
68283          <idle>-0     (-----) [003] d..1 82316.342208: cpu_idle: state=0 cpu_id=3
68284  appEventThread-8881  ( 8858) [001] d..4 82316.342219: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
68285          <idle>-0     (-----) [000] .n.1 82316.342225: cpu_idle: state=4294967295 cpu_id=0
68286          <idle>-0     (-----) [002] dnh5 82316.342237: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
68287          <idle>-0     (-----) [000] d..2 82316.342243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
68288          <idle>-0     (-----) [002] .n.1 82316.342247: cpu_idle: state=4294967295 cpu_id=2
68289          <idle>-0     (-----) [002] d..2 82316.342261: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
68290  appEventThread-8881  ( 8858) [001] d..2 82316.342268: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
68291          <idle>-0     (-----) [001] d..1 82316.342280: cpu_idle: state=0 cpu_id=1
68292<...>-86 ( 86) [002] d.h5 82316.342283: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68293          <idle>-0     (-----) [005] dnh2 82316.342304: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68294          <idle>-0     (-----) [005] .n.1 82316.342309: cpu_idle: state=4294967295 cpu_id=5
68295          <idle>-0     (-----) [005] d..2 82316.342317: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68296<...>-86 ( 86) [002] d..2 82316.342355: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68297<...>-5340 ( 788) [005] d..1 82316.342368: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68298          <idle>-0     (-----) [002] d..1 82316.342371: cpu_idle: state=0 cpu_id=2
68299<...>-9105 ( 9105) [000] dnh1 82316.342398: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68300<...>-9105 ( 9105) [000] d..2 82316.342412: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
68301 neuralnetworks@-13088 (  788) [000] d..2 82316.342454: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
68302<...>-5340 ( 788) [005] d..2 82316.342513: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
68303          <idle>-0     (-----) [003] dnh2 82316.342535: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
68304<...>-5340 ( 788) [005] d..2 82316.342539: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68305          <idle>-0     (-----) [003] .n.1 82316.342542: cpu_idle: state=4294967295 cpu_id=3
68306          <idle>-0     (-----) [003] d..2 82316.342551: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
68307          <idle>-0     (-----) [005] d..1 82316.342553: cpu_idle: state=0 cpu_id=5
68308<...>-87 ( 87) [003] d..2 82316.342591: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68309          <idle>-0     (-----) [002] d.h4 82316.342591: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
68310          <idle>-0     (-----) [003] d..1 82316.342599: cpu_idle: state=0 cpu_id=3
68311          <idle>-0     (-----) [002] dnh5 82316.342603: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
68312          <idle>-0     (-----) [002] .n.1 82316.342613: cpu_idle: state=4294967295 cpu_id=2
68313          <idle>-0     (-----) [002] d..2 82316.342625: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
68314<...>-86 ( 86) [002] d..2 82316.342662: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68315<...>-9105 ( 9105) [000] .... 82316.342669: binder_transaction: transaction=1570242 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
68316          <idle>-0     (-----) [002] d..1 82316.342675: cpu_idle: state=0 cpu_id=2
68317<...>-9105 ( 9105) [000] .... 82316.342675: binder_transaction_alloc_buf: transaction=1570242 data_size=80 offsets_size=0
68318<...>-9105 ( 9105) [000] d..4 82316.342683: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
68319<...>-9105 ( 9105) [000] d..5 82316.342717: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
68320          <idle>-0     (-----) [001] .n.1 82316.342724: cpu_idle: state=4294967295 cpu_id=1
68321          <idle>-0     (-----) [001] d..2 82316.342735: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
68322<...>-13083 ( 8858) [001] .... 82316.342743: binder_transaction_received: transaction=1570242
68323<...>-9105 ( 9105) [000] d..3 82316.342757: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
68324<...>-9105 ( 9105) [000] d..4 82316.342778: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
68325<...>-13083 ( 8858) [001] d..1 82316.342780: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
68326          <idle>-0     (-----) [002] .n.1 82316.342785: cpu_idle: state=4294967295 cpu_id=2
68327          <idle>-0     (-----) [002] d..2 82316.342798: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
68328<...>-13083 ( 8858) [001] d..2 82316.342806: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
68329          <idle>-0     (-----) [003] .n.1 82316.342811: cpu_idle: state=4294967295 cpu_id=3
68330          <idle>-0     (-----) [003] d..2 82316.342819: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
68331    RenderThread-9436  ( 9105) [002] d..2 82316.342851: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68332<...>-13083 ( 8858) [001] d..2 82316.342854: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
68333          <idle>-0     (-----) [001] d..1 82316.342864: cpu_idle: state=0 cpu_id=1
68334          <idle>-0     (-----) [002] d..1 82316.342865: cpu_idle: state=0 cpu_id=2
68335  appEventThread-8881  ( 8858) [003] d..2 82316.342879: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68336          <idle>-0     (-----) [003] d..1 82316.342889: cpu_idle: state=0 cpu_id=3
68337<...>-9105 ( 9105) [000] d..3 82316.342905: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
68338<...>-9105 ( 9105) [000] d..4 82316.342924: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
68339          <idle>-0     (-----) [002] .n.1 82316.342930: cpu_idle: state=4294967295 cpu_id=2
68340          <idle>-0     (-----) [002] d..2 82316.342942: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
68341<...>-9105 ( 9105) [000] d..2 82316.342962: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68342          <idle>-0     (-----) [000] d..1 82316.342984: cpu_idle: state=0 cpu_id=0
68343    RenderThread-9436  ( 9105) [002] d..1 82316.343076: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
68344    RenderThread-9436  ( 9105) [002] d..2 82316.343097: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
68345          <idle>-0     (-----) [000] .n.1 82316.343105: cpu_idle: state=4294967295 cpu_id=0
68346          <idle>-0     (-----) [000] d..2 82316.343120: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
68347    RenderThread-9436  ( 9105) [002] .... 82316.343168: binder_transaction: transaction=1570243 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
68348    RenderThread-9436  ( 9105) [002] .... 82316.343175: binder_transaction_alloc_buf: transaction=1570243 data_size=104 offsets_size=0
68349    RenderThread-9436  ( 9105) [002] d..4 82316.343181: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
68350    RenderThread-9436  ( 9105) [002] dn.5 82316.343203: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
68351<...>-9105 ( 9105) [000] d..2 82316.343209: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68352    RenderThread-9436  ( 9105) [002] d..2 82316.343215: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
68353<...>-13083 ( 8858) [002] .... 82316.343224: binder_transaction_received: transaction=1570243
68354          <idle>-0     (-----) [000] d..1 82316.343226: cpu_idle: state=0 cpu_id=0
68355<...>-13083 ( 8858) [002] .... 82316.343305: binder_transaction: transaction=1570244 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
68356<...>-13083 ( 8858) [002] .... 82316.343311: binder_transaction_alloc_buf: transaction=1570244 data_size=52 offsets_size=8
68357<...>-13083 ( 8858) [002] d..2 82316.343366: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
68358    RenderThread-9436  ( 9105) [002] .... 82316.343375: binder_transaction_received: transaction=1570244
68359    RenderThread-9436  ( 9105) [002] d.h3 82316.344219: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68360          <idle>-0     (-----) [005] dnh2 82316.344245: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68361          <idle>-0     (-----) [005] .n.1 82316.344249: cpu_idle: state=4294967295 cpu_id=5
68362          <idle>-0     (-----) [005] d..2 82316.344257: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68363<...>-5340 ( 788) [005] d..1 82316.344309: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68364          <idle>-0     (-----) [000] dnh2 82316.344337: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68365          <idle>-0     (-----) [000] .n.1 82316.344346: cpu_idle: state=4294967295 cpu_id=0
68366          <idle>-0     (-----) [000] d..2 82316.344390: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
68367<...>-5340 ( 788) [005] ...1 82316.344406: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
68368<...>-5340 ( 788) [005] ...1 82316.344410: tracing_mark_write: E|788
68369<...>-5340 ( 788) [005] .... 82316.344427: binder_transaction: transaction=1570245 dest_node=1570240 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
68370<...>-5340 ( 788) [005] .... 82316.344430: binder_transaction_alloc_buf: transaction=1570245 data_size=60 offsets_size=0
68371<...>-5340 ( 788) [005] d..4 82316.344433: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
68372 neuralnetworks@-13088 (  788) [000] d..2 82316.344436: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68373<...>-5340 ( 788) [005] d..5 82316.344446: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
68374          <idle>-0     (-----) [004] .n.1 82316.344451: cpu_idle: state=4294967295 cpu_id=4
68375          <idle>-0     (-----) [000] d..1 82316.344452: cpu_idle: state=0 cpu_id=0
68376          <idle>-0     (-----) [004] d..2 82316.344461: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
68377           <...>-27571 (-----) [004] .... 82316.344465: binder_transaction_received: transaction=1570245
68378<...>-5340 ( 788) [005] ...1 82316.344469: tracing_mark_write: E|788
68379<...>-5340 ( 788) [005] .... 82316.344475: binder_transaction: transaction=1570246 dest_node=0 dest_proc=27550 dest_thread=27665 reply=1 flags=0x0 code=0x0
68380<...>-5340 ( 788) [005] .... 82316.344476: binder_transaction_alloc_buf: transaction=1570246 data_size=8 offsets_size=0
68381<...>-5340 ( 788) [005] d..2 82316.344478: sched_waking: comm=id.nn.benchmark pid=27665 prio=110 target_cpu=005
68382           <...>-27571 (-----) [004] ...1 82316.344485: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
68383<...>-5340 ( 788) [005] d..3 82316.344486: sched_wakeup: comm=id.nn.benchmark pid=27665 prio=110 target_cpu=005
68384<...>-5340 ( 788) [005] .... 82316.344487: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
68385           <...>-27571 (-----) [004] ...1 82316.344492: tracing_mark_write: E|27550
68386           <...>-27571 (-----) [004] d..2 82316.344521: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68387          <idle>-0     (-----) [004] d..1 82316.344528: cpu_idle: state=0 cpu_id=4
68388<...>-5340 ( 788) [005] d..2 82316.344529: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27665 next_prio=110
68389    RenderThread-9436  ( 9105) [002] d..2 82316.344534: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
68390           <...>-27665 (-----) [005] .... 82316.344539: binder_transaction_received: transaction=1570246
68391          <idle>-0     (-----) [002] d..1 82316.344552: cpu_idle: state=0 cpu_id=2
68392           <...>-27665 (-----) [005] ...1 82316.344578: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
68393           <...>-27665 (-----) [005] ...1 82316.344584: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
68394           <...>-27665 (-----) [005] ...1 82316.344611: tracing_mark_write: E|27550
68395           <...>-27665 (-----) [005] ...1 82316.344615: tracing_mark_write: E|27550
68396          <idle>-0     (-----) [002] d.h2 82316.344615: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
68397           <...>-27665 (-----) [005] ...1 82316.344618: tracing_mark_write: E|27550
68398          <idle>-0     (-----) [002] d.h3 82316.344627: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
68399          <idle>-0     (-----) [002] dnh3 82316.344637: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
68400          <idle>-0     (-----) [002] .n.1 82316.344647: cpu_idle: state=4294967295 cpu_id=2
68401          <idle>-0     (-----) [000] d.h3 82316.344656: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
68402          <idle>-0     (-----) [002] d..2 82316.344660: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
68403          <idle>-0     (-----) [000] d.h4 82316.344679: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
68404          <idle>-0     (-----) [003] .n.1 82316.344685: cpu_idle: state=4294967295 cpu_id=3
68405          <idle>-0     (-----) [003] d..2 82316.344694: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
68406          <idle>-0     (-----) [000] ...1 82316.344698: cpu_idle: state=4294967295 cpu_id=0
68407          <idle>-0     (-----) [000] d..1 82316.344703: cpu_idle: state=0 cpu_id=0
68408 kgsl_worker_thr-258   (  258) [003] d..2 82316.344780: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
68409           <...>-27665 (-----) [005] ...1 82316.344810: tracing_mark_write: E|27550
68410           <...>-27665 (-----) [005] d..1 82316.344822: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68411 kgsl_worker_thr-258   (  258) [003] d..3 82316.344823: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
68412           <...>-27665 (-----) [005] d..2 82316.344839: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68413 kgsl_worker_thr-258   (  258) [003] d..2 82316.344840: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
68414          <idle>-0     (-----) [004] .n.1 82316.344843: cpu_idle: state=4294967295 cpu_id=4
68415          <idle>-0     (-----) [004] d..2 82316.344850: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
68416           <...>-27550 (-----) [004] d..2 82316.344869: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68417          <idle>-0     (-----) [004] d..1 82316.344878: cpu_idle: state=0 cpu_id=4
68418  kworker/u16:13-1147  ( 1147) [003] d..2 82316.344889: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68419          <idle>-0     (-----) [003] d..1 82316.344900: cpu_idle: state=0 cpu_id=3
68420    RenderThread-9436  ( 9105) [002] .... 82316.344907: binder_transaction: transaction=1570247 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
68421    RenderThread-9436  ( 9105) [002] .... 82316.344913: binder_transaction_alloc_buf: transaction=1570247 data_size=192 offsets_size=8
68422    RenderThread-9436  ( 9105) [002] d..4 82316.344924: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
68423           <...>-27665 (-----) [005] d..1 82316.344932: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68424    RenderThread-9436  ( 9105) [002] dn.5 82316.344941: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
68425           <...>-27665 (-----) [005] d..2 82316.344941: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68426          <idle>-0     (-----) [004] .n.1 82316.344946: cpu_idle: state=4294967295 cpu_id=4
68427    RenderThread-9436  ( 9105) [002] d..2 82316.344951: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
68428          <idle>-0     (-----) [004] d..2 82316.344954: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
68429<...>-13083 ( 8858) [002] .... 82316.344961: binder_transaction_received: transaction=1570247
68430           <...>-27665 (-----) [005] d..2 82316.344981: sched_switch: prev_comm=id.nn.benchmark prev_pid=27665 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
68431           <...>-27550 (-----) [004] ...1 82316.345005: tracing_mark_write: E|27550
68432           <...>-27550 (-----) [004] ...1 82316.345010: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
68433          <idle>-0     (-----) [005] d..1 82316.345013: cpu_idle: state=0 cpu_id=5
68434           <...>-27550 (-----) [004] ...1 82316.345016: tracing_mark_write: E|27550
68435           <...>-27550 (-----) [004] ...1 82316.345020: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
68436           <...>-27550 (-----) [004] ...1 82316.345024: tracing_mark_write: E|27550
68437           <...>-27550 (-----) [004] ...1 82316.345028: tracing_mark_write: E|27550
68438           <...>-27550 (-----) [004] d.s2 82316.345136: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
68439          <idle>-0     (-----) [003] d.s2 82316.345140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
68440          <idle>-0     (-----) [001] d.s2 82316.345141: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
68441          <idle>-0     (-----) [003] dns3 82316.345159: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
68442          <idle>-0     (-----) [001] dns3 82316.345160: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
68443          <idle>-0     (-----) [003] dnH3 82316.345170: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
68444<...>-13083 ( 8858) [002] .... 82316.345180: binder_transaction: transaction=1570248 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
68445          <idle>-0     (-----) [001] .n.1 82316.345182: cpu_idle: state=4294967295 cpu_id=1
68446<...>-13083 ( 8858) [002] .... 82316.345187: binder_transaction_alloc_buf: transaction=1570248 data_size=68 offsets_size=0
68447           <...>-27550 (-----) [004] ...1 82316.345191: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
68448          <idle>-0     (-----) [003] .n.1 82316.345193: cpu_idle: state=4294967295 cpu_id=3
68449          <idle>-0     (-----) [001] d..2 82316.345193: 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
68450          <idle>-0     (-----) [003] d..2 82316.345203: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
68451<...>-8 ( 8) [001] d..2 82316.345205: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
68452<...>-13083 ( 8858) [002] d..2 82316.345234: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
68453<...>-8 ( 8) [001] d..3 82316.345245: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
68454    RenderThread-9436  ( 9105) [002] .... 82316.345246: binder_transaction_received: transaction=1570248
68455           <...>-27550 (-----) [004] ...1 82316.345250: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
68456           <...>-27550 (-----) [004] ...1 82316.345255: tracing_mark_write: E|27550
68457<...>-8 ( 8) [001] d..2 82316.345258: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
68458           <...>-27550 (-----) [004] ...1 82316.345258: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
68459           <...>-27550 (-----) [004] ...1 82316.345263: tracing_mark_write: E|27550
68460           <...>-27550 (-----) [004] ...1 82316.345267: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
68461           <...>-27550 (-----) [004] ...1 82316.345271: tracing_mark_write: E|27550
68462<...>-46 ( 46) [001] d..2 82316.345271: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
68463           <...>-27550 (-----) [004] ...1 82316.345274: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
68464<...>-46 ( 46) [001] d..3 82316.345285: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
68465<...>-46 ( 46) [001] d..2 82316.345295: 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
68466<...>-8 ( 8) [001] d..2 82316.345324: 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
68467          <idle>-0     (-----) [001] d..1 82316.345340: cpu_idle: state=0 cpu_id=1
68468    RenderThread-9436  ( 9105) [002] d..2 82316.345352: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68469          <idle>-0     (-----) [005] .n.1 82316.345363: cpu_idle: state=4294967295 cpu_id=5
68470           <...>-27550 (-----) [004] ...1 82316.345365: tracing_mark_write: E|27550
68471           <...>-27550 (-----) [004] ...1 82316.345369: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
68472          <idle>-0     (-----) [002] d..1 82316.345373: cpu_idle: state=0 cpu_id=2
68473          <idle>-0     (-----) [005] d..2 82316.345373: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27666 next_prio=110
68474           <...>-27550 (-----) [004] d..2 82316.345387: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68475  kworker/u16:13-1147  ( 1147) [003] d..2 82316.345393: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
68476          <idle>-0     (-----) [004] d..1 82316.345402: cpu_idle: state=0 cpu_id=4
68477     rcu_preempt-7     (    7) [003] d..2 82316.345403: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
68478     rcu_preempt-7     (    7) [003] d..3 82316.345426: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
68479          <idle>-0     (-----) [001] d.s3 82316.345430: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
68480           <...>-27666 (-----) [005] ...1 82316.345434: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
68481     rcu_preempt-7     (    7) [003] d..2 82316.345444: 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
68482           <...>-27666 (-----) [005] ...1 82316.345449: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
68483         rcuop/4-45    (   45) [003] d..2 82316.345451: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
68484           <...>-27666 (-----) [005] ...1 82316.345453: tracing_mark_write: E|27550
68485          <idle>-0     (-----) [001] d.s4 82316.345462: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
68486          <idle>-0     (-----) [001] dns4 82316.345467: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
68487           <...>-27666 (-----) [005] .... 82316.345475: binder_transaction: transaction=1570249 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
68488          <idle>-0     (-----) [001] .n.1 82316.345476: cpu_idle: state=4294967295 cpu_id=1
68489           <...>-27666 (-----) [005] .... 82316.345479: binder_transaction_alloc_buf: transaction=1570249 data_size=48 offsets_size=0
68490           <...>-27666 (-----) [005] ...2 82316.345482: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
68491           <...>-27666 (-----) [005] d..4 82316.345485: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
68492         rcuop/4-45    (   45) [003] d..3 82316.345493: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
68493          <idle>-0     (-----) [001] d..2 82316.345494: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
68494           <...>-27666 (-----) [005] dn.5 82316.345495: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
68495           <...>-27666 (-----) [005] d..2 82316.345502: sched_switch: prev_comm=id.nn.benchmark prev_pid=27666 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
68496         rcuop/4-45    (   45) [003] d..2 82316.345505: 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
68497<...>-770 ( 770) [005] .... 82316.345512: binder_transaction_received: transaction=1570249
68498  kworker/u16:13-1147  ( 1147) [001] d..2 82316.345532: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
68499<...>-770 ( 770) [005] ...1 82316.345538: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
68500          <idle>-0     (-----) [001] d..1 82316.345546: cpu_idle: state=0 cpu_id=1
68501<...>-770 ( 770) [005] d..2 82316.345622: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
68502         rcuop/5-53    (   53) [003] d..2 82316.345631: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68503          <idle>-0     (-----) [003] d..1 82316.345647: cpu_idle: state=0 cpu_id=3
68504          <idle>-0     (-----) [003] dnh2 82316.345663: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
68505          <idle>-0     (-----) [003] .n.1 82316.345670: cpu_idle: state=4294967295 cpu_id=3
68506<...>-770 ( 770) [005] ...1 82316.345676: tracing_mark_write: E|770
68507          <idle>-0     (-----) [003] d..2 82316.345681: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
68508<...>-770 ( 770) [005] .... 82316.345684: binder_transaction: transaction=1570250 dest_node=0 dest_proc=27550 dest_thread=27666 reply=1 flags=0x0 code=0x0
68509<...>-770 ( 770) [005] .... 82316.345687: binder_transaction_alloc_buf: transaction=1570250 data_size=168 offsets_size=32
68510<...>-770 ( 770) [005] .... 82316.345694: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
68511<...>-770 ( 770) [005] d..2 82316.345730: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27666 next_prio=110
68512           <...>-27666 (-----) [005] .... 82316.345741: binder_transaction_received: transaction=1570250
68513<...>-581 ( 571) [003] d..2 82316.345783: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68514          <idle>-0     (-----) [003] d..1 82316.345797: cpu_idle: state=0 cpu_id=3
68515           <...>-27666 (-----) [005] ...1 82316.345816: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
68516           <...>-27666 (-----) [005] ...1 82316.345821: tracing_mark_write: E|27550
68517           <...>-27666 (-----) [005] .... 82316.345835: binder_transaction: transaction=1570251 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
68518           <...>-27666 (-----) [005] .... 82316.345838: binder_transaction_alloc_buf: transaction=1570251 data_size=48 offsets_size=0
68519           <...>-27666 (-----) [005] ...2 82316.345840: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
68520           <...>-27666 (-----) [005] d..4 82316.345843: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
68521           <...>-27666 (-----) [005] dn.5 82316.345853: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
68522           <...>-27666 (-----) [005] d..2 82316.345860: sched_switch: prev_comm=id.nn.benchmark prev_pid=27666 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
68523<...>-770 ( 770) [005] .... 82316.345867: binder_transaction_received: transaction=1570251
68524<...>-770 ( 770) [005] ...1 82316.345885: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
68525<...>-770 ( 770) [005] d..2 82316.345943: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
68526          <idle>-0     (-----) [003] dnh2 82316.345968: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
68527          <idle>-0     (-----) [003] .n.1 82316.345975: cpu_idle: state=4294967295 cpu_id=3
68528<...>-770 ( 770) [005] ...1 82316.345976: tracing_mark_write: E|770
68529<...>-770 ( 770) [005] .... 82316.345983: binder_transaction: transaction=1570252 dest_node=0 dest_proc=27550 dest_thread=27666 reply=1 flags=0x0 code=0x0
68530<...>-770 ( 770) [005] .... 82316.345986: binder_transaction_alloc_buf: transaction=1570252 data_size=168 offsets_size=32
68531          <idle>-0     (-----) [003] d..2 82316.345986: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
68532<...>-770 ( 770) [005] .... 82316.345992: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
68533<...>-770 ( 770) [005] d..2 82316.346026: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27666 next_prio=110
68534           <...>-27666 (-----) [005] .... 82316.346036: binder_transaction_received: transaction=1570252
68535<...>-581 ( 571) [003] d..2 82316.346047: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68536          <idle>-0     (-----) [003] d.h3 82316.346059: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
68537          <idle>-0     (-----) [003] dnh4 82316.346074: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
68538          <idle>-0     (-----) [003] d..2 82316.346086: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
68539        DispSync-8879  ( 8858) [003] d..1 82316.346109: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
68540        DispSync-8879  ( 8858) [003] d..2 82316.346127: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
68541          <idle>-0     (-----) [001] .n.1 82316.346133: cpu_idle: state=4294967295 cpu_id=1
68542          <idle>-0     (-----) [001] d..2 82316.346145: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
68543        DispSync-8879  ( 8858) [003] d..2 82316.346162: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68544          <idle>-0     (-----) [003] d..1 82316.346177: cpu_idle: state=0 cpu_id=3
68545   sfEventThread-8882  ( 8858) [001] d..3 82316.346185: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
68546   sfEventThread-8882  ( 8858) [001] d..4 82316.346205: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
68547          <idle>-0     (-----) [003] .n.1 82316.346211: cpu_idle: state=4294967295 cpu_id=3
68548          <idle>-0     (-----) [003] d..2 82316.346223: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
68549   sfEventThread-8882  ( 8858) [001] d..2 82316.346243: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
68550          <idle>-0     (-----) [001] d..1 82316.346257: cpu_idle: state=0 cpu_id=1
68551           <...>-27666 (-----) [005] ...1 82316.346310: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
68552           <...>-27666 (-----) [005] ...1 82316.346320: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
68553           <...>-27666 (-----) [005] ...1 82316.346324: tracing_mark_write: E|27550
68554           <...>-27666 (-----) [005] .... 82316.346385: binder_transaction: transaction=1570253 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
68555           <...>-27666 (-----) [005] .... 82316.346388: binder_transaction_alloc_buf: transaction=1570253 data_size=556 offsets_size=104
68556           <...>-27666 (-----) [005] ...2 82316.346402: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
68557           <...>-27666 (-----) [005] d..4 82316.346405: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68558           <...>-27666 (-----) [005] dn.5 82316.346416: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68559           <...>-27666 (-----) [005] d..2 82316.346423: sched_switch: prev_comm=id.nn.benchmark prev_pid=27666 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68560<...>-5340 ( 788) [005] .... 82316.346433: binder_transaction_received: transaction=1570253
68561<...>-5340 ( 788) [005] ...1 82316.346481: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
68562          <idle>-0     (-----) [002] ...1 82316.346494: cpu_idle: state=4294967295 cpu_id=2
68563          <idle>-0     (-----) [002] d..1 82316.346500: cpu_idle: state=0 cpu_id=2
68564<...>-5340 ( 788) [005] d..2 82316.346528: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
68565<...>-5340 ( 788) [005] d..2 82316.346553: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27666 next_prio=110
68566  surfaceflinger-8858  ( 8858) [003] d.h2 82316.346560: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
68567           <...>-27666 (-----) [005] d..2 82316.346576: sched_switch: prev_comm=id.nn.benchmark prev_pid=27666 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68568          <idle>-0     (-----) [005] d..1 82316.346595: cpu_idle: state=0 cpu_id=5
68569  surfaceflinger-8858  ( 8858) [003] d..1 82316.346610: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
68570  surfaceflinger-8858  ( 8858) [003] d..2 82316.346630: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
68571          <idle>-0     (-----) [001] .n.1 82316.346636: cpu_idle: state=4294967295 cpu_id=1
68572          <idle>-0     (-----) [001] d..2 82316.346647: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
68573   sfEventThread-8882  ( 8858) [001] d..2 82316.346704: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
68574<...>-87 ( 87) [001] d..2 82316.346752: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
68575          <idle>-0     (-----) [002] d.h4 82316.346760: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
68576          <idle>-0     (-----) [001] d..1 82316.346764: cpu_idle: state=0 cpu_id=1
68577          <idle>-0     (-----) [002] dnh5 82316.346783: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
68578          <idle>-0     (-----) [002] .n.1 82316.346793: cpu_idle: state=4294967295 cpu_id=2
68579          <idle>-0     (-----) [002] d..2 82316.346807: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
68580  surfaceflinger-8858  ( 8858) [003] ...1 82316.346834: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
68581  surfaceflinger-8858  ( 8858) [003] ...1 82316.346842: tracing_mark_write: E|8858
68582<...>-86 ( 86) [002] d.h4 82316.346845: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68583          <idle>-0     (-----) [005] dnh2 82316.346869: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68584          <idle>-0     (-----) [005] .n.1 82316.346874: cpu_idle: state=4294967295 cpu_id=5
68585          <idle>-0     (-----) [005] d..2 82316.346881: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68586  surfaceflinger-8858  ( 8858) [003] .... 82316.346899: binder_transaction: transaction=1570256 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
68587  surfaceflinger-8858  ( 8858) [003] .... 82316.346905: binder_transaction_alloc_buf: transaction=1570256 data_size=540 offsets_size=96
68588<...>-86 ( 86) [002] d..2 82316.346909: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68589          <idle>-0     (-----) [002] d..1 82316.346924: cpu_idle: state=0 cpu_id=2
68590  surfaceflinger-8858  ( 8858) [003] ...2 82316.346932: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
68591<...>-5340 ( 788) [005] d..1 82316.346936: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68592  surfaceflinger-8858  ( 8858) [003] d..4 82316.346940: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
68593  surfaceflinger-8858  ( 8858) [003] d..5 82316.346961: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
68594          <idle>-0     (-----) [001] .n.1 82316.346968: cpu_idle: state=4294967295 cpu_id=1
68595  surfaceflinger-8858  ( 8858) [003] d.h4 82316.346977: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
68596          <idle>-0     (-----) [001] d..2 82316.346979: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
68597 [email protected]   (  619) [001] .... 82316.346991: binder_transaction_received: transaction=1570256
68598  surfaceflinger-8858  ( 8858) [003] d..2 82316.346998: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
68599 [email protected]   (  619) [001] ...1 82316.347039: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
68600 neuralnetworks@-13088 (  788) [003] d..2 82316.347064: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68601          <idle>-0     (-----) [003] d..1 82316.347082: cpu_idle: state=0 cpu_id=3
68602<...>-5340 ( 788) [005] d..2 82316.347097: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
68603 [email protected]   (  619) [001] d.h1 82316.347124: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
68604<...>-5340 ( 788) [005] d..2 82316.347127: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68605          <idle>-0     (-----) [005] d..1 82316.347141: cpu_idle: state=0 cpu_id=5
68606 [email protected]   (  619) [001] ...1 82316.347181: tracing_mark_write: B|619|HWCSession::PresentDisplay::
68607 [email protected]   (  619) [001] ...1 82316.347379: tracing_mark_write: B|619|HWDeviceDRM::Commit::
68608 [email protected]   (  619) [001] ...1 82316.347394: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
68609          <idle>-0     (-----) [005] ...1 82316.347518: cpu_idle: state=4294967295 cpu_id=5
68610          <idle>-0     (-----) [005] d..1 82316.347521: cpu_idle: state=0 cpu_id=5
68611 [email protected]   (  619) [001] d..2 82316.348080: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
68612 [email protected]   (  619) [001] d..3 82316.348106: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
68613          <idle>-0     (-----) [002] .n.1 82316.348112: cpu_idle: state=4294967295 cpu_id=2
68614          <idle>-0     (-----) [002] d..2 82316.348123: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
68615 [email protected]   (  619) [001] ...1 82316.348217: tracing_mark_write: E|619
68616 [email protected]   (  619) [001] ...1 82316.348225: tracing_mark_write: E|619
68617 [email protected]   (  619) [001] ...1 82316.348290: tracing_mark_write: E|619
68618 [email protected]   (  619) [001] ...1 82316.348339: tracing_mark_write: E|619
68619 [email protected]   (  619) [001] .... 82316.348355: binder_transaction: transaction=1570257 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
68620 [email protected]   (  619) [001] .... 82316.348360: binder_transaction_alloc_buf: transaction=1570257 data_size=576 offsets_size=112
68621 [email protected]   (  619) [001] d..2 82316.348382: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
68622 [email protected]   (  619) [001] d..3 82316.348401: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
68623 [email protected]   (  619) [001] .... 82316.348407: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
68624          <idle>-0     (-----) [003] .n.1 82316.348407: cpu_idle: state=4294967295 cpu_id=3
68625          <idle>-0     (-----) [003] d..2 82316.348419: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
68626  surfaceflinger-8858  ( 8858) [003] .... 82316.348430: binder_transaction_received: transaction=1570257
68627  surfaceflinger-8858  ( 8858) [003] d.s2 82316.348480: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
68628  surfaceflinger-8858  ( 8858) [003] d.s3 82316.348524: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
68629 [email protected]   (  619) [001] d..2 82316.348531: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
68630 crtc_commit:111-321   (  321) [002] d.h3 82316.348572: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
68631<...>-87 ( 87) [001] d..2 82316.348593: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
68632          <idle>-0     (-----) [001] d..1 82316.348607: cpu_idle: state=0 cpu_id=1
68633 crtc_commit:111-321   (  321) [002] d.h4 82316.348619: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
68634          <idle>-0     (-----) [001] .n.1 82316.348625: cpu_idle: state=4294967295 cpu_id=1
68635          <idle>-0     (-----) [001] d..2 82316.348636: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
68636<...>-86 ( 86) [001] d..2 82316.348678: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
68637          <idle>-0     (-----) [001] d..1 82316.348687: cpu_idle: state=0 cpu_id=1
68638 crtc_commit:111-321   (  321) [002] d..2 82316.348957: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
68639  surfaceflinger-8858  ( 8858) [003] d..2 82316.348996: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68640          <idle>-0     (-----) [003] d..1 82316.349012: cpu_idle: state=0 cpu_id=3
68641  kworker/u16:13-1147  ( 1147) [002] d..2 82316.349201: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
68642          <idle>-0     (-----) [002] d..1 82316.349221: cpu_idle: state=0 cpu_id=2
68643          <idle>-0     (-----) [001] d.s3 82316.349230: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
68644          <idle>-0     (-----) [001] d.s4 82316.349242: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
68645          <idle>-0     (-----) [001] d.s4 82316.349252: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
68646          <idle>-0     (-----) [002] .n.1 82316.349260: cpu_idle: state=4294967295 cpu_id=2
68647          <idle>-0     (-----) [001] ...1 82316.349263: cpu_idle: state=4294967295 cpu_id=1
68648          <idle>-0     (-----) [001] d..1 82316.349268: cpu_idle: state=0 cpu_id=1
68649          <idle>-0     (-----) [002] d..2 82316.349274: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
68650  kworker/u16:13-1147  ( 1147) [002] .... 82316.349334: clk_set_rate: l3_cluster0_vote_clk 403200000
68651  kworker/u16:13-1147  ( 1147) [002] d..2 82316.349367: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68652          <idle>-0     (-----) [002] d..1 82316.349381: cpu_idle: state=0 cpu_id=2
68653          <idle>-0     (-----) [002] d.h4 82316.350276: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68654          <idle>-0     (-----) [002] d.h5 82316.350310: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
68655          <idle>-0     (-----) [000] .n.1 82316.350316: cpu_idle: state=4294967295 cpu_id=0
68656          <idle>-0     (-----) [000] d..2 82316.350332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68657          <idle>-0     (-----) [002] d.h3 82316.350411: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
68658          <idle>-0     (-----) [002] d.h4 82316.350428: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
68659          <idle>-0     (-----) [001] .n.1 82316.350434: cpu_idle: state=4294967295 cpu_id=1
68660<...>-5340 ( 788) [000] d..1 82316.350437: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
68661          <idle>-0     (-----) [002] ...1 82316.350440: cpu_idle: state=4294967295 cpu_id=2
68662          <idle>-0     (-----) [001] d..2 82316.350443: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
68663          <idle>-0     (-----) [002] d..1 82316.350447: cpu_idle: state=0 cpu_id=2
68664         sugov:0-576   (  576) [001] .... 82316.350477: clk_set_rate: pwrcl_clk 979200000
68665<...>-5340 ( 788) [000] d..2 82316.350485: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
68666         sugov:0-576   (  576) [001] .... 82316.350495: clk_set_rate: cpu3_pwrcl_clk 748800000
68667         sugov:0-576   (  576) [001] .... 82316.350504: clk_set_rate: cpu2_pwrcl_clk 748800000
68668         sugov:0-576   (  576) [001] .... 82316.350512: clk_set_rate: cpu1_pwrcl_clk 748800000
68669         sugov:0-576   (  576) [001] .... 82316.350523: clk_set_rate: cpu0_pwrcl_clk 979200000
68670         sugov:0-576   (  576) [001] .... 82316.350532: cpu_frequency: state=979200 cpu_id=0
68671         sugov:0-576   (  576) [001] .... 82316.350556: cpu_frequency: state=979200 cpu_id=1
68672         sugov:0-576   (  576) [001] .... 82316.350561: cpu_frequency: state=979200 cpu_id=2
68673         sugov:0-576   (  576) [001] .... 82316.350568: cpu_frequency: state=979200 cpu_id=3
68674         sugov:0-576   (  576) [001] d..2 82316.350616: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
68675<...>-5340 ( 788) [000] ...1 82316.350623: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
68676<...>-5340 ( 788) [000] ...1 82316.350629: tracing_mark_write: E|788
68677<...>-5340 ( 788) [000] .... 82316.350653: binder_transaction: transaction=1570258 dest_node=1570254 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
68678<...>-5340 ( 788) [000] .... 82316.350658: binder_transaction_alloc_buf: transaction=1570258 data_size=60 offsets_size=0
68679 neuralnetworks@-13088 (  788) [001] d..2 82316.350662: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
68680<...>-5340 ( 788) [000] d..4 82316.350665: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
68681          <idle>-0     (-----) [001] d..1 82316.350672: cpu_idle: state=0 cpu_id=1
68682          <idle>-0     (-----) [004] dnh2 82316.350689: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
68683          <idle>-0     (-----) [004] .n.1 82316.350693: cpu_idle: state=4294967295 cpu_id=4
68684          <idle>-0     (-----) [004] d..2 82316.350701: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
68685           <...>-27571 (-----) [004] .... 82316.350707: binder_transaction_received: transaction=1570258
68686<...>-5340 ( 788) [000] ...1 82316.350712: tracing_mark_write: E|788
68687<...>-5340 ( 788) [000] .... 82316.350722: binder_transaction: transaction=1570259 dest_node=0 dest_proc=27550 dest_thread=27666 reply=1 flags=0x0 code=0x0
68688<...>-5340 ( 788) [000] .... 82316.350725: binder_transaction_alloc_buf: transaction=1570259 data_size=8 offsets_size=0
68689           <...>-27571 (-----) [004] ...1 82316.350727: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
68690<...>-5340 ( 788) [000] d..2 82316.350728: sched_waking: comm=id.nn.benchmark pid=27666 prio=110 target_cpu=005
68691           <...>-27571 (-----) [004] ...1 82316.350733: tracing_mark_write: E|27550
68692<...>-5340 ( 788) [000] d..3 82316.350752: sched_wakeup: comm=id.nn.benchmark pid=27666 prio=110 target_cpu=000
68693           <...>-27571 (-----) [004] d..2 82316.350759: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68694          <idle>-0     (-----) [004] d..1 82316.350766: cpu_idle: state=0 cpu_id=4
68695<...>-5340 ( 788) [000] .... 82316.350794: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
68696<...>-5340 ( 788) [000] d..2 82316.350866: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27666 next_prio=110
68697           <...>-27666 (-----) [000] .... 82316.350876: binder_transaction_received: transaction=1570259
68698           <...>-27666 (-----) [000] ...1 82316.350930: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
68699           <...>-27666 (-----) [000] ...1 82316.350938: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
68700           <...>-27666 (-----) [000] ...1 82316.350977: tracing_mark_write: E|27550
68701           <...>-27666 (-----) [000] ...1 82316.350983: tracing_mark_write: E|27550
68702           <...>-27666 (-----) [000] ...1 82316.350988: tracing_mark_write: E|27550
68703           <...>-27666 (-----) [000] d..2 82316.351038: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
68704           <...>-27666 (-----) [000] d..3 82316.351067: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
68705          <idle>-0     (-----) [001] .n.1 82316.351073: cpu_idle: state=4294967295 cpu_id=1
68706          <idle>-0     (-----) [001] d..2 82316.351082: 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
68707         rcuop/0-10    (   10) [001] d..2 82316.351104: 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
68708          <idle>-0     (-----) [001] d..1 82316.351110: cpu_idle: state=0 cpu_id=1
68709           <...>-27666 (-----) [000] ...1 82316.351292: tracing_mark_write: E|27550
68710           <...>-27666 (-----) [000] d..1 82316.351311: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68711          <idle>-0     (-----) [004] dnh2 82316.351334: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68712          <idle>-0     (-----) [004] .n.1 82316.351338: cpu_idle: state=4294967295 cpu_id=4
68713          <idle>-0     (-----) [004] d..2 82316.351344: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
68714           <...>-27550 (-----) [004] d..2 82316.351364: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68715          <idle>-0     (-----) [004] d..1 82316.351373: cpu_idle: state=0 cpu_id=4
68716           <...>-27666 (-----) [000] d..1 82316.351455: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68717          <idle>-0     (-----) [004] dnh2 82316.351475: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68718          <idle>-0     (-----) [004] .n.1 82316.351479: cpu_idle: state=4294967295 cpu_id=4
68719          <idle>-0     (-----) [004] d..2 82316.351486: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
68720           <...>-27550 (-----) [004] ...1 82316.351518: tracing_mark_write: E|27550
68721           <...>-27666 (-----) [000] d..2 82316.351521: sched_switch: prev_comm=id.nn.benchmark prev_pid=27666 prev_prio=110 prev_state=x ==> next_comm=swapper/0 next_pid=0 next_prio=120
68722           <...>-27550 (-----) [004] ...1 82316.351522: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
68723           <...>-27550 (-----) [004] ...1 82316.351528: tracing_mark_write: E|27550
68724           <...>-27550 (-----) [004] ...1 82316.351532: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
68725           <...>-27550 (-----) [004] ...1 82316.351536: tracing_mark_write: E|27550
68726           <...>-27550 (-----) [004] ...1 82316.351540: tracing_mark_write: E|27550
68727          <idle>-0     (-----) [000] d..1 82316.351549: cpu_idle: state=0 cpu_id=0
68728           <...>-27550 (-----) [004] ...1 82316.351652: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
68729           <...>-27550 (-----) [004] ...1 82316.351711: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
68730           <...>-27550 (-----) [004] ...1 82316.351716: tracing_mark_write: E|27550
68731           <...>-27550 (-----) [004] ...1 82316.351720: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
68732           <...>-27550 (-----) [004] ...1 82316.351726: tracing_mark_write: E|27550
68733           <...>-27550 (-----) [004] ...1 82316.351729: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
68734           <...>-27550 (-----) [004] ...1 82316.351733: tracing_mark_write: E|27550
68735           <...>-27550 (-----) [004] ...1 82316.351737: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
68736          <idle>-0     (-----) [003] d.s2 82316.351805: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
68737          <idle>-0     (-----) [003] dns3 82316.351860: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
68738          <idle>-0     (-----) [001] d.H3 82316.351864: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
68739          <idle>-0     (-----) [005] .n.1 82316.351867: cpu_idle: state=4294967295 cpu_id=5
68740           <...>-27550 (-----) [004] ...1 82316.351870: tracing_mark_write: E|27550
68741          <idle>-0     (-----) [003] .n.1 82316.351872: cpu_idle: state=4294967295 cpu_id=3
68742           <...>-27550 (-----) [004] ...1 82316.351875: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
68743          <idle>-0     (-----) [005] d..2 82316.351877: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27667 next_prio=110
68744          <idle>-0     (-----) [001] dnH4 82316.351878: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
68745          <idle>-0     (-----) [003] d..2 82316.351881: 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
68746           <...>-27550 (-----) [004] d..2 82316.351895: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68747          <idle>-0     (-----) [001] .n.1 82316.351896: cpu_idle: state=4294967295 cpu_id=1
68748          <idle>-0     (-----) [001] d..2 82316.351903: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
68749          <idle>-0     (-----) [004] d..1 82316.351910: cpu_idle: state=0 cpu_id=4
68750     rcu_preempt-7     (    7) [003] d..2 82316.351910: 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
68751         sugov:0-576   (  576) [001] .... 82316.351923: clk_set_rate: pwrcl_clk 1056000000
68752          <idle>-0     (-----) [003] d..1 82316.351923: cpu_idle: state=0 cpu_id=3
68753         sugov:0-576   (  576) [001] .... 82316.351932: clk_set_rate: cpu3_pwrcl_clk 979200000
68754         sugov:0-576   (  576) [001] .... 82316.351940: clk_set_rate: cpu2_pwrcl_clk 979200000
68755         sugov:0-576   (  576) [001] .... 82316.351947: clk_set_rate: cpu1_pwrcl_clk 979200000
68756           <...>-27667 (-----) [005] ...1 82316.351953: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
68757         sugov:0-576   (  576) [001] .... 82316.351953: clk_set_rate: cpu0_pwrcl_clk 1056000000
68758         sugov:0-576   (  576) [001] .... 82316.351961: cpu_frequency: state=1056000 cpu_id=0
68759           <...>-27667 (-----) [005] ...1 82316.351967: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
68760           <...>-27667 (-----) [005] ...1 82316.351970: tracing_mark_write: E|27550
68761         sugov:0-576   (  576) [001] .... 82316.351975: cpu_frequency: state=1056000 cpu_id=1
68762         sugov:0-576   (  576) [001] .... 82316.351979: cpu_frequency: state=1056000 cpu_id=2
68763         sugov:0-576   (  576) [001] .... 82316.351983: cpu_frequency: state=1056000 cpu_id=3
68764           <...>-27667 (-----) [005] .... 82316.351997: binder_transaction: transaction=1570260 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
68765           <...>-27667 (-----) [005] .... 82316.352001: binder_transaction_alloc_buf: transaction=1570260 data_size=48 offsets_size=0
68766           <...>-27667 (-----) [005] ...2 82316.352004: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
68767           <...>-27667 (-----) [005] d..4 82316.352007: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
68768         sugov:0-576   (  576) [001] d..2 82316.352011: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
68769          <idle>-0     (-----) [001] d..1 82316.352018: cpu_idle: state=0 cpu_id=1
68770           <...>-27667 (-----) [005] dn.5 82316.352019: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
68771           <...>-27667 (-----) [005] d..2 82316.352026: sched_switch: prev_comm=id.nn.benchmark prev_pid=27667 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
68772<...>-770 ( 770) [005] .... 82316.352035: binder_transaction_received: transaction=1570260
68773<...>-770 ( 770) [005] ...1 82316.352063: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
68774<...>-770 ( 770) [005] d..2 82316.352153: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
68775          <idle>-0     (-----) [000] dnh2 82316.352193: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
68776          <idle>-0     (-----) [000] .n.1 82316.352200: cpu_idle: state=4294967295 cpu_id=0
68777<...>-770 ( 770) [005] ...1 82316.352209: tracing_mark_write: E|770
68778          <idle>-0     (-----) [000] d..2 82316.352212: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
68779<...>-770 ( 770) [005] .... 82316.352217: binder_transaction: transaction=1570261 dest_node=0 dest_proc=27550 dest_thread=27667 reply=1 flags=0x0 code=0x0
68780<...>-770 ( 770) [005] .... 82316.352219: binder_transaction_alloc_buf: transaction=1570261 data_size=168 offsets_size=32
68781<...>-770 ( 770) [005] .... 82316.352226: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
68782<...>-770 ( 770) [005] d..2 82316.352262: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27667 next_prio=110
68783           <...>-27667 (-----) [005] .... 82316.352272: binder_transaction_received: transaction=1570261
68784<...>-581 ( 571) [000] d..2 82316.352306: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68785          <idle>-0     (-----) [000] d..1 82316.352321: cpu_idle: state=0 cpu_id=0
68786           <...>-27667 (-----) [005] ...1 82316.352348: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
68787           <...>-27667 (-----) [005] ...1 82316.352352: tracing_mark_write: E|27550
68788           <...>-27667 (-----) [005] .... 82316.352368: binder_transaction: transaction=1570262 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
68789           <...>-27667 (-----) [005] .... 82316.352371: binder_transaction_alloc_buf: transaction=1570262 data_size=48 offsets_size=0
68790           <...>-27667 (-----) [005] ...2 82316.352373: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
68791           <...>-27667 (-----) [005] d..4 82316.352375: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
68792           <...>-27667 (-----) [005] dn.5 82316.352385: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
68793           <...>-27667 (-----) [005] d..2 82316.352392: sched_switch: prev_comm=id.nn.benchmark prev_pid=27667 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
68794<...>-770 ( 770) [005] .... 82316.352400: binder_transaction_received: transaction=1570262
68795<...>-770 ( 770) [005] ...1 82316.352417: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
68796<...>-770 ( 770) [005] d..2 82316.352478: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
68797          <idle>-0     (-----) [000] dnh2 82316.352501: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
68798          <idle>-0     (-----) [000] .n.1 82316.352508: cpu_idle: state=4294967295 cpu_id=0
68799<...>-770 ( 770) [005] ...1 82316.352512: tracing_mark_write: E|770
68800          <idle>-0     (-----) [000] d..2 82316.352517: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
68801<...>-770 ( 770) [005] .... 82316.352519: binder_transaction: transaction=1570263 dest_node=0 dest_proc=27550 dest_thread=27667 reply=1 flags=0x0 code=0x0
68802<...>-770 ( 770) [005] .... 82316.352522: binder_transaction_alloc_buf: transaction=1570263 data_size=168 offsets_size=32
68803<...>-770 ( 770) [005] .... 82316.352527: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
68804<...>-770 ( 770) [005] d..2 82316.352562: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27667 next_prio=110
68805<...>-581 ( 571) [000] d..2 82316.352564: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68806           <...>-27667 (-----) [005] .... 82316.352573: binder_transaction_received: transaction=1570263
68807          <idle>-0     (-----) [000] d..1 82316.352577: cpu_idle: state=0 cpu_id=0
68808           <...>-27667 (-----) [005] ...1 82316.352881: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
68809           <...>-27667 (-----) [005] ...1 82316.352892: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
68810           <...>-27667 (-----) [005] ...1 82316.352896: tracing_mark_write: E|27550
68811           <...>-27667 (-----) [005] .... 82316.352965: binder_transaction: transaction=1570264 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
68812           <...>-27667 (-----) [005] .... 82316.352969: binder_transaction_alloc_buf: transaction=1570264 data_size=556 offsets_size=104
68813           <...>-27667 (-----) [005] ...2 82316.352984: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
68814           <...>-27667 (-----) [005] d..4 82316.352986: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=000
68815           <...>-27667 (-----) [005] dn.5 82316.353008: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68816           <...>-27667 (-----) [005] d..2 82316.353045: sched_switch: prev_comm=id.nn.benchmark prev_pid=27667 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68817<...>-5340 ( 788) [005] .... 82316.353055: binder_transaction_received: transaction=1570264
68818<...>-5340 ( 788) [005] ...1 82316.353104: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
68819<...>-5340 ( 788) [005] d..2 82316.353151: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
68820<...>-5340 ( 788) [005] d..2 82316.353186: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27667 next_prio=110
68821          <idle>-0     (-----) [000] dnh2 82316.353188: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
68822          <idle>-0     (-----) [000] .n.1 82316.353194: cpu_idle: state=4294967295 cpu_id=0
68823          <idle>-0     (-----) [000] d..2 82316.353203: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
68824           <...>-27667 (-----) [005] d..2 82316.353210: sched_switch: prev_comm=id.nn.benchmark prev_pid=27667 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68825          <idle>-0     (-----) [005] d..1 82316.353227: cpu_idle: state=0 cpu_id=5
68826<...>-87 ( 87) [000] d..2 82316.353241: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68827          <idle>-0     (-----) [000] d..1 82316.353251: cpu_idle: state=0 cpu_id=0
68828          <idle>-0     (-----) [002] d.h4 82316.353253: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
68829          <idle>-0     (-----) [002] dnh5 82316.353284: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
68830          <idle>-0     (-----) [002] .n.1 82316.353292: cpu_idle: state=4294967295 cpu_id=2
68831          <idle>-0     (-----) [002] d..2 82316.353303: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
68832<...>-86 ( 86) [002] d..3 82316.353331: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68833          <idle>-0     (-----) [005] dnh2 82316.353352: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68834          <idle>-0     (-----) [005] .n.1 82316.353356: cpu_idle: state=4294967295 cpu_id=5
68835          <idle>-0     (-----) [005] d..2 82316.353364: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68836<...>-86 ( 86) [002] d..2 82316.353383: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68837          <idle>-0     (-----) [002] d..1 82316.353395: cpu_idle: state=0 cpu_id=2
68838<...>-5340 ( 788) [005] d..1 82316.353418: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
68839          <idle>-0     (-----) [000] dnh2 82316.353454: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68840          <idle>-0     (-----) [000] .n.1 82316.353460: cpu_idle: state=4294967295 cpu_id=0
68841          <idle>-0     (-----) [000] d..2 82316.353468: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
68842 neuralnetworks@-13088 (  788) [000] d..2 82316.353514: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68843          <idle>-0     (-----) [000] d..1 82316.353525: cpu_idle: state=0 cpu_id=0
68844<...>-5340 ( 788) [005] d..2 82316.353581: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
68845          <idle>-0     (-----) [000] dnh2 82316.353602: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
68846<...>-5340 ( 788) [005] d..2 82316.353606: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
68847          <idle>-0     (-----) [000] .n.1 82316.353608: cpu_idle: state=4294967295 cpu_id=0
68848          <idle>-0     (-----) [000] d..2 82316.353617: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
68849          <idle>-0     (-----) [005] d..1 82316.353620: cpu_idle: state=0 cpu_id=5
68850<...>-87 ( 87) [000] d..2 82316.353650: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68851          <idle>-0     (-----) [002] d.h4 82316.353654: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
68852          <idle>-0     (-----) [000] d..1 82316.353660: cpu_idle: state=0 cpu_id=0
68853          <idle>-0     (-----) [002] dnh5 82316.353663: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
68854          <idle>-0     (-----) [002] .n.1 82316.353670: cpu_idle: state=4294967295 cpu_id=2
68855          <idle>-0     (-----) [002] d..2 82316.353680: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
68856<...>-86 ( 86) [002] d..2 82316.353707: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68857          <idle>-0     (-----) [002] d..1 82316.353718: cpu_idle: state=0 cpu_id=2
68858          <idle>-0     (-----) [000] d.h5 82316.353989: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68859          <idle>-0     (-----) [000] d.h6 82316.354008: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68860          <idle>-0     (-----) [000] d.h5 82316.354012: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
68861          <idle>-0     (-----) [003] .n.1 82316.354013: cpu_idle: state=4294967295 cpu_id=3
68862          <idle>-0     (-----) [003] d..2 82316.354023: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
68863          <idle>-0     (-----) [000] d.h6 82316.354024: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
68864          <idle>-0     (-----) [002] .n.1 82316.354030: cpu_idle: state=4294967295 cpu_id=2
68865          <idle>-0     (-----) [002] d..2 82316.354039: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
68866          <idle>-0     (-----) [000] ...1 82316.354040: cpu_idle: state=4294967295 cpu_id=0
68867          <idle>-0     (-----) [000] d..1 82316.354044: cpu_idle: state=0 cpu_id=0
68868  crtc_event:111-322   (  322) [003] d..2 82316.354052: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68869          <idle>-0     (-----) [003] d..1 82316.354060: cpu_idle: state=0 cpu_id=3
68870 crtc_commit:111-321   (  321) [002] d..2 82316.354177: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
68871          <idle>-0     (-----) [002] d..1 82316.354184: cpu_idle: state=0 cpu_id=2
68872          <idle>-0     (-----) [001] d.s2 82316.355130: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
68873          <idle>-0     (-----) [002] d.s3 82316.355135: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68874          <idle>-0     (-----) [001] dns3 82316.355148: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
68875          <idle>-0     (-----) [002] d.s4 82316.355150: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68876          <idle>-0     (-----) [001] .n.1 82316.355155: cpu_idle: state=4294967295 cpu_id=1
68877          <idle>-0     (-----) [003] .n.1 82316.355156: cpu_idle: state=4294967295 cpu_id=3
68878          <idle>-0     (-----) [001] d..2 82316.355162: 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
68879          <idle>-0     (-----) [003] d..2 82316.355165: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
68880          <idle>-0     (-----) [002] ...1 82316.355171: cpu_idle: state=4294967295 cpu_id=2
68881          <idle>-0     (-----) [002] d..1 82316.355177: cpu_idle: state=0 cpu_id=2
68882  crtc_event:111-322   (  322) [003] d..2 82316.355191: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68883<...>-8 ( 8) [001] d..2 82316.355193: 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
68884          <idle>-0     (-----) [003] d..1 82316.355198: cpu_idle: state=0 cpu_id=3
68885          <idle>-0     (-----) [001] d..1 82316.355204: cpu_idle: state=0 cpu_id=1
68886          <idle>-0     (-----) [002] d.h4 82316.355408: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68887          <idle>-0     (-----) [005] dnh2 82316.355429: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
68888          <idle>-0     (-----) [005] .n.1 82316.355434: cpu_idle: state=4294967295 cpu_id=5
68889          <idle>-0     (-----) [005] d..2 82316.355443: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
68890          <idle>-0     (-----) [002] ...1 82316.355444: cpu_idle: state=4294967295 cpu_id=2
68891          <idle>-0     (-----) [002] d..1 82316.355448: cpu_idle: state=0 cpu_id=2
68892<...>-5340 ( 788) [005] d..1 82316.355492: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68893          <idle>-0     (-----) [000] dnh2 82316.355512: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
68894          <idle>-0     (-----) [000] .n.1 82316.355519: cpu_idle: state=4294967295 cpu_id=0
68895          <idle>-0     (-----) [000] d..2 82316.355531: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
68896 neuralnetworks@-13088 (  788) [000] d..2 82316.355582: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68897<...>-5340 ( 788) [005] ...1 82316.355584: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
68898<...>-5340 ( 788) [005] ...1 82316.355588: tracing_mark_write: E|788
68899          <idle>-0     (-----) [000] d..1 82316.355593: cpu_idle: state=0 cpu_id=0
68900<...>-5340 ( 788) [005] .... 82316.355603: binder_transaction: transaction=1570267 dest_node=1570265 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
68901<...>-5340 ( 788) [005] .... 82316.355607: binder_transaction_alloc_buf: transaction=1570267 data_size=60 offsets_size=0
68902<...>-5340 ( 788) [005] d..4 82316.355612: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
68903<...>-5340 ( 788) [005] d..5 82316.355625: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
68904          <idle>-0     (-----) [004] .n.1 82316.355632: cpu_idle: state=4294967295 cpu_id=4
68905          <idle>-0     (-----) [004] d..2 82316.355641: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
68906           <...>-27571 (-----) [004] .... 82316.355646: binder_transaction_received: transaction=1570267
68907<...>-5340 ( 788) [005] ...1 82316.355648: tracing_mark_write: E|788
68908<...>-5340 ( 788) [005] .... 82316.355654: binder_transaction: transaction=1570268 dest_node=0 dest_proc=27550 dest_thread=27667 reply=1 flags=0x0 code=0x0
68909<...>-5340 ( 788) [005] .... 82316.355656: binder_transaction_alloc_buf: transaction=1570268 data_size=8 offsets_size=0
68910<...>-5340 ( 788) [005] d..2 82316.355658: sched_waking: comm=id.nn.benchmark pid=27667 prio=110 target_cpu=005
68911           <...>-27571 (-----) [004] ...1 82316.355664: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
68912<...>-5340 ( 788) [005] d..3 82316.355665: sched_wakeup: comm=id.nn.benchmark pid=27667 prio=110 target_cpu=005
68913<...>-5340 ( 788) [005] .... 82316.355667: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
68914           <...>-27571 (-----) [004] ...1 82316.355670: tracing_mark_write: E|27550
68915           <...>-27571 (-----) [004] d..2 82316.355699: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68916          <idle>-0     (-----) [004] d..1 82316.355706: cpu_idle: state=0 cpu_id=4
68917<...>-5340 ( 788) [005] d..2 82316.355710: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27667 next_prio=110
68918           <...>-27667 (-----) [005] .... 82316.355719: binder_transaction_received: transaction=1570268
68919           <...>-27667 (-----) [005] ...1 82316.355754: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
68920           <...>-27667 (-----) [005] ...1 82316.355761: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
68921           <...>-27667 (-----) [005] ...1 82316.355788: tracing_mark_write: E|27550
68922           <...>-27667 (-----) [005] ...1 82316.355791: tracing_mark_write: E|27550
68923           <...>-27667 (-----) [005] ...1 82316.355795: tracing_mark_write: E|27550
68924           <...>-27667 (-----) [005] ...1 82316.355983: tracing_mark_write: E|27550
68925           <...>-27667 (-----) [005] d..1 82316.355996: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68926           <...>-27667 (-----) [005] d..2 82316.356012: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68927          <idle>-0     (-----) [004] .n.1 82316.356017: cpu_idle: state=4294967295 cpu_id=4
68928          <idle>-0     (-----) [004] d..2 82316.356024: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
68929           <...>-27550 (-----) [004] d..2 82316.356044: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68930          <idle>-0     (-----) [004] d..1 82316.356053: cpu_idle: state=0 cpu_id=4
68931           <...>-27667 (-----) [005] d..1 82316.356102: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68932           <...>-27667 (-----) [005] d..2 82316.356112: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
68933          <idle>-0     (-----) [004] .n.1 82316.356117: cpu_idle: state=4294967295 cpu_id=4
68934          <idle>-0     (-----) [004] d..2 82316.356124: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
68935           <...>-27667 (-----) [005] d..2 82316.356150: sched_switch: prev_comm=id.nn.benchmark prev_pid=27667 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
68936           <...>-27550 (-----) [004] ...1 82316.356157: tracing_mark_write: E|27550
68937           <...>-27550 (-----) [004] ...1 82316.356162: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
68938           <...>-27550 (-----) [004] ...1 82316.356168: tracing_mark_write: E|27550
68939          <idle>-0     (-----) [005] d..1 82316.356171: cpu_idle: state=0 cpu_id=5
68940           <...>-27550 (-----) [004] ...1 82316.356172: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
68941           <...>-27550 (-----) [004] ...1 82316.356176: tracing_mark_write: E|27550
68942           <...>-27550 (-----) [004] ...1 82316.356180: tracing_mark_write: E|27550
68943           <...>-27550 (-----) [004] ...1 82316.356295: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
68944          <idle>-0     (-----) [000] d.h5 82316.356331: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
68945          <idle>-0     (-----) [000] d.h6 82316.356346: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
68946          <idle>-0     (-----) [002] .n.1 82316.356351: cpu_idle: state=4294967295 cpu_id=2
68947           <...>-27550 (-----) [004] ...1 82316.356352: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
68948           <...>-27550 (-----) [004] ...1 82316.356356: tracing_mark_write: E|27550
68949          <idle>-0     (-----) [000] ...1 82316.356359: cpu_idle: state=4294967295 cpu_id=0
68950           <...>-27550 (-----) [004] ...1 82316.356360: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
68951          <idle>-0     (-----) [002] d..2 82316.356360: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
68952          <idle>-0     (-----) [000] d..1 82316.356363: cpu_idle: state=0 cpu_id=0
68953           <...>-27550 (-----) [004] ...1 82316.356365: tracing_mark_write: E|27550
68954           <...>-27550 (-----) [004] ...1 82316.356369: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
68955           <...>-27550 (-----) [004] ...1 82316.356372: tracing_mark_write: E|27550
68956           <...>-27550 (-----) [004] ...1 82316.356375: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
68957 crtc_commit:111-321   (  321) [002] d..2 82316.356431: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
68958          <idle>-0     (-----) [002] d..1 82316.356442: cpu_idle: state=0 cpu_id=2
68959          <idle>-0     (-----) [005] .n.1 82316.356461: cpu_idle: state=4294967295 cpu_id=5
68960           <...>-27550 (-----) [004] ...1 82316.356463: tracing_mark_write: E|27550
68961           <...>-27550 (-----) [004] ...1 82316.356467: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
68962          <idle>-0     (-----) [005] d..2 82316.356471: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27668 next_prio=110
68963           <...>-27550 (-----) [004] d..2 82316.356483: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
68964          <idle>-0     (-----) [004] d..1 82316.356498: cpu_idle: state=0 cpu_id=4
68965           <...>-27668 (-----) [005] ...1 82316.356532: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
68966           <...>-27668 (-----) [005] ...1 82316.356547: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
68967           <...>-27668 (-----) [005] ...1 82316.356551: tracing_mark_write: E|27550
68968           <...>-27668 (-----) [005] .... 82316.356571: binder_transaction: transaction=1570269 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
68969           <...>-27668 (-----) [005] .... 82316.356575: binder_transaction_alloc_buf: transaction=1570269 data_size=48 offsets_size=0
68970           <...>-27668 (-----) [005] ...2 82316.356578: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
68971           <...>-27668 (-----) [005] d..4 82316.356580: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
68972           <...>-27668 (-----) [005] dn.5 82316.356591: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
68973           <...>-27668 (-----) [005] d..2 82316.356597: sched_switch: prev_comm=id.nn.benchmark prev_pid=27668 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
68974<...>-770 ( 770) [005] .... 82316.356607: binder_transaction_received: transaction=1570269
68975          <idle>-0     (-----) [000] d.h5 82316.356615: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68976          <idle>-0     (-----) [000] d.h6 82316.356628: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
68977<...>-770 ( 770) [005] ...1 82316.356629: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
68978          <idle>-0     (-----) [003] .n.1 82316.356633: cpu_idle: state=4294967295 cpu_id=3
68979          <idle>-0     (-----) [003] d..2 82316.356640: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
68980          <idle>-0     (-----) [000] ...1 82316.356643: cpu_idle: state=4294967295 cpu_id=0
68981          <idle>-0     (-----) [000] d..1 82316.356649: cpu_idle: state=0 cpu_id=0
68982  crtc_event:111-322   (  322) [003] d..2 82316.356659: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
68983          <idle>-0     (-----) [003] d..1 82316.356665: cpu_idle: state=0 cpu_id=3
68984<...>-770 ( 770) [005] d..2 82316.356700: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
68985          <idle>-0     (-----) [000] dnh2 82316.356725: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
68986          <idle>-0     (-----) [000] .n.1 82316.356730: cpu_idle: state=4294967295 cpu_id=0
68987          <idle>-0     (-----) [000] d..2 82316.356740: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
68988<...>-770 ( 770) [005] ...1 82316.356740: tracing_mark_write: E|770
68989<...>-770 ( 770) [005] .... 82316.356747: binder_transaction: transaction=1570270 dest_node=0 dest_proc=27550 dest_thread=27668 reply=1 flags=0x0 code=0x0
68990<...>-770 ( 770) [005] .... 82316.356750: binder_transaction_alloc_buf: transaction=1570270 data_size=168 offsets_size=32
68991<...>-770 ( 770) [005] .... 82316.356756: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
68992<...>-770 ( 770) [005] d..2 82316.356792: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27668 next_prio=110
68993           <...>-27668 (-----) [005] .... 82316.356803: binder_transaction_received: transaction=1570270
68994<...>-581 ( 571) [000] d..2 82316.356812: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
68995          <idle>-0     (-----) [000] d..1 82316.356826: cpu_idle: state=0 cpu_id=0
68996           <...>-27668 (-----) [005] ...1 82316.356871: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
68997           <...>-27668 (-----) [005] ...1 82316.356876: tracing_mark_write: E|27550
68998           <...>-27668 (-----) [005] .... 82316.356890: binder_transaction: transaction=1570271 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
68999           <...>-27668 (-----) [005] .... 82316.356893: binder_transaction_alloc_buf: transaction=1570271 data_size=48 offsets_size=0
69000           <...>-27668 (-----) [005] ...2 82316.356895: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
69001           <...>-27668 (-----) [005] d..4 82316.356897: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
69002           <...>-27668 (-----) [005] dn.5 82316.356908: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
69003           <...>-27668 (-----) [005] d..2 82316.356914: sched_switch: prev_comm=id.nn.benchmark prev_pid=27668 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
69004<...>-770 ( 770) [005] .... 82316.356922: binder_transaction_received: transaction=1570271
69005<...>-770 ( 770) [005] ...1 82316.356939: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
69006<...>-770 ( 770) [005] d..2 82316.356999: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
69007          <idle>-0     (-----) [000] dnh2 82316.357022: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
69008          <idle>-0     (-----) [000] .n.1 82316.357028: cpu_idle: state=4294967295 cpu_id=0
69009<...>-770 ( 770) [005] ...1 82316.357032: tracing_mark_write: E|770
69010          <idle>-0     (-----) [000] d..2 82316.357037: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
69011<...>-770 ( 770) [005] .... 82316.357040: binder_transaction: transaction=1570272 dest_node=0 dest_proc=27550 dest_thread=27668 reply=1 flags=0x0 code=0x0
69012<...>-770 ( 770) [005] .... 82316.357042: binder_transaction_alloc_buf: transaction=1570272 data_size=168 offsets_size=32
69013<...>-770 ( 770) [005] .... 82316.357048: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
69014<...>-770 ( 770) [005] d..2 82316.357082: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27668 next_prio=110
69015<...>-581 ( 571) [000] d..2 82316.357085: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69016           <...>-27668 (-----) [005] .... 82316.357092: binder_transaction_received: transaction=1570272
69017          <idle>-0     (-----) [000] d..1 82316.357097: cpu_idle: state=0 cpu_id=0
69018           <...>-27668 (-----) [005] ...1 82316.357365: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
69019           <...>-27668 (-----) [005] ...1 82316.357375: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
69020           <...>-27668 (-----) [005] ...1 82316.357379: tracing_mark_write: E|27550
69021           <...>-27668 (-----) [005] .... 82316.357443: binder_transaction: transaction=1570273 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
69022           <...>-27668 (-----) [005] .... 82316.357446: binder_transaction_alloc_buf: transaction=1570273 data_size=556 offsets_size=104
69023           <...>-27668 (-----) [005] ...2 82316.357460: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
69024           <...>-27668 (-----) [005] d..4 82316.357462: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69025           <...>-27668 (-----) [005] dn.5 82316.357474: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69026           <...>-27668 (-----) [005] d..2 82316.357481: sched_switch: prev_comm=id.nn.benchmark prev_pid=27668 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69027<...>-5340 ( 788) [005] .... 82316.357490: binder_transaction_received: transaction=1570273
69028<...>-5340 ( 788) [005] ...1 82316.357534: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
69029<...>-5340 ( 788) [005] d..2 82316.357577: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69030<...>-5340 ( 788) [005] d..2 82316.357602: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27668 next_prio=110
69031          <idle>-0     (-----) [000] dnh2 82316.357604: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69032          <idle>-0     (-----) [000] .n.1 82316.357610: cpu_idle: state=4294967295 cpu_id=0
69033          <idle>-0     (-----) [000] d..2 82316.357619: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
69034           <...>-27668 (-----) [005] d..2 82316.357624: sched_switch: prev_comm=id.nn.benchmark prev_pid=27668 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69035          <idle>-0     (-----) [005] d..1 82316.357641: cpu_idle: state=0 cpu_id=5
69036<...>-87 ( 87) [000] d..2 82316.357655: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69037          <idle>-0     (-----) [000] d..1 82316.357665: cpu_idle: state=0 cpu_id=0
69038          <idle>-0     (-----) [002] d.h4 82316.357666: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69039          <idle>-0     (-----) [002] dnh5 82316.357682: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69040          <idle>-0     (-----) [002] .n.1 82316.357691: cpu_idle: state=4294967295 cpu_id=2
69041          <idle>-0     (-----) [002] d..2 82316.357700: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
69042<...>-86 ( 86) [002] d..2 82316.357730: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69043          <idle>-0     (-----) [002] d.h4 82316.357753: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69044          <idle>-0     (-----) [005] dnh2 82316.357775: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69045          <idle>-0     (-----) [005] .n.1 82316.357779: cpu_idle: state=4294967295 cpu_id=5
69046          <idle>-0     (-----) [005] d..2 82316.357787: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69047          <idle>-0     (-----) [002] d..1 82316.357792: cpu_idle: state=0 cpu_id=2
69048<...>-5340 ( 788) [005] d..1 82316.357839: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69049          <idle>-0     (-----) [000] dnh2 82316.357863: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69050          <idle>-0     (-----) [000] .n.1 82316.357868: cpu_idle: state=4294967295 cpu_id=0
69051          <idle>-0     (-----) [000] d..2 82316.357877: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
69052 neuralnetworks@-13088 (  788) [000] d..2 82316.357915: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69053          <idle>-0     (-----) [000] d..1 82316.357926: cpu_idle: state=0 cpu_id=0
69054<...>-5340 ( 788) [005] d..2 82316.357984: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69055          <idle>-0     (-----) [000] dnh2 82316.358004: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69056<...>-5340 ( 788) [005] d..2 82316.358010: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69057          <idle>-0     (-----) [000] .n.1 82316.358010: cpu_idle: state=4294967295 cpu_id=0
69058          <idle>-0     (-----) [000] d..2 82316.358019: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
69059          <idle>-0     (-----) [005] d..1 82316.358023: cpu_idle: state=0 cpu_id=5
69060<...>-87 ( 87) [000] d..2 82316.358051: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69061          <idle>-0     (-----) [002] d.h4 82316.358053: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69062          <idle>-0     (-----) [000] d..1 82316.358061: cpu_idle: state=0 cpu_id=0
69063          <idle>-0     (-----) [002] dnh5 82316.358061: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69064          <idle>-0     (-----) [002] .n.1 82316.358069: cpu_idle: state=4294967295 cpu_id=2
69065          <idle>-0     (-----) [002] d..2 82316.358078: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
69066<...>-86 ( 86) [002] d..2 82316.358105: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69067          <idle>-0     (-----) [002] d..1 82316.358115: cpu_idle: state=0 cpu_id=2
69068          <idle>-0     (-----) [003] d.h2 82316.358460: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
69069          <idle>-0     (-----) [003] dnh3 82316.358473: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
69070          <idle>-0     (-----) [003] dns2 82316.358483: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
69071          <idle>-0     (-----) [003] dns3 82316.358496: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
69072          <idle>-0     (-----) [003] dns3 82316.358502: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
69073          <idle>-0     (-----) [003] dns4 82316.358531: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
69074          <idle>-0     (-----) [003] .n.1 82316.358546: cpu_idle: state=4294967295 cpu_id=3
69075          <idle>-0     (-----) [003] d..2 82316.358553: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
69076        DispSync-8879  ( 8858) [003] d..1 82316.358572: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
69077        DispSync-8879  ( 8858) [003] d..2 82316.358592: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
69078          <idle>-0     (-----) [001] .n.1 82316.358598: cpu_idle: state=4294967295 cpu_id=1
69079          <idle>-0     (-----) [001] d..2 82316.358608: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
69080        DispSync-8879  ( 8858) [003] d..2 82316.358612: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
69081     rcu_preempt-7     (    7) [003] d..2 82316.358621: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
69082     rcu_preempt-7     (    7) [003] d..3 82316.358651: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
69083  appEventThread-8881  ( 8858) [001] d..3 82316.358666: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
69084     rcu_preempt-7     (    7) [003] d..2 82316.358666: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
69085  appEventThread-8881  ( 8858) [001] d..4 82316.358686: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
69086          <idle>-0     (-----) [000] .n.1 82316.358692: cpu_idle: state=4294967295 cpu_id=0
69087          <idle>-0     (-----) [000] d..2 82316.358704: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
69088  kworker/u16:13-1147  ( 1147) [003] .... 82316.358729: clk_set_rate: l3_cluster0_vote_clk 300000000
69089  appEventThread-8881  ( 8858) [001] d..2 82316.358731: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
69090         rcuop/2-29    (   29) [001] d..2 82316.358737: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
69091         rcuop/2-29    (   29) [001] d..3 82316.358754: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
69092         rcuop/2-29    (   29) [001] d..2 82316.358764: 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
69093         rcuop/3-37    (   37) [001] d..2 82316.358799: 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
69094          <idle>-0     (-----) [001] d..1 82316.358826: cpu_idle: state=0 cpu_id=1
69095          <idle>-0     (-----) [001] ...1 82316.358838: cpu_idle: state=4294967295 cpu_id=1
69096          <idle>-0     (-----) [001] d..1 82316.358841: cpu_idle: state=0 cpu_id=1
69097  kworker/u16:13-1147  ( 1147) [003] d..2 82316.358991: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
69098          <idle>-0     (-----) [003] d..1 82316.359004: cpu_idle: state=0 cpu_id=3
69099          <idle>-0     (-----) [001] d.s3 82316.359022: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
69100<...>-9105 ( 9105) [000] .... 82316.359026: binder_transaction: transaction=1570276 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
69101<...>-9105 ( 9105) [000] .... 82316.359031: binder_transaction_alloc_buf: transaction=1570276 data_size=80 offsets_size=0
69102          <idle>-0     (-----) [001] d.s4 82316.359032: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
69103<...>-9105 ( 9105) [000] d..4 82316.359037: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
69104          <idle>-0     (-----) [001] d.s4 82316.359040: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
69105          <idle>-0     (-----) [003] .n.1 82316.359047: cpu_idle: state=4294967295 cpu_id=3
69106          <idle>-0     (-----) [001] ...1 82316.359048: cpu_idle: state=4294967295 cpu_id=1
69107          <idle>-0     (-----) [001] d..1 82316.359052: cpu_idle: state=0 cpu_id=1
69108          <idle>-0     (-----) [003] d..2 82316.359058: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
69109<...>-9105 ( 9105) [000] d..5 82316.359066: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
69110          <idle>-0     (-----) [001] .n.1 82316.359071: cpu_idle: state=4294967295 cpu_id=1
69111          <idle>-0     (-----) [001] d..2 82316.359080: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
69112<...>-13083 ( 8858) [001] .... 82316.359087: binder_transaction_received: transaction=1570276
69113  kworker/u16:13-1147  ( 1147) [003] d..2 82316.359101: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69114<...>-9105 ( 9105) [000] d..3 82316.359102: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
69115          <idle>-0     (-----) [003] d..1 82316.359110: cpu_idle: state=0 cpu_id=3
69116<...>-13083 ( 8858) [001] d..1 82316.359119: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
69117<...>-9105 ( 9105) [000] d..4 82316.359119: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
69118          <idle>-0     (-----) [002] .n.1 82316.359125: cpu_idle: state=4294967295 cpu_id=2
69119          <idle>-0     (-----) [002] d..2 82316.359135: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
69120<...>-13083 ( 8858) [001] d..2 82316.359140: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
69121          <idle>-0     (-----) [003] .n.1 82316.359145: cpu_idle: state=4294967295 cpu_id=3
69122          <idle>-0     (-----) [003] d..2 82316.359154: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
69123    RenderThread-9436  ( 9105) [002] d..2 82316.359179: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69124<...>-13083 ( 8858) [001] d..2 82316.359181: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
69125          <idle>-0     (-----) [001] d..1 82316.359189: cpu_idle: state=0 cpu_id=1
69126          <idle>-0     (-----) [002] d..1 82316.359190: cpu_idle: state=0 cpu_id=2
69127  appEventThread-8881  ( 8858) [003] d..2 82316.359201: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69128          <idle>-0     (-----) [003] d..1 82316.359210: cpu_idle: state=0 cpu_id=3
69129<...>-9105 ( 9105) [000] d..3 82316.359237: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
69130<...>-9105 ( 9105) [000] d..4 82316.359254: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
69131          <idle>-0     (-----) [002] .n.1 82316.359259: cpu_idle: state=4294967295 cpu_id=2
69132          <idle>-0     (-----) [002] d..2 82316.359269: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
69133<...>-9105 ( 9105) [000] d..2 82316.359286: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69134          <idle>-0     (-----) [000] d..1 82316.359304: cpu_idle: state=0 cpu_id=0
69135    RenderThread-9436  ( 9105) [002] d..1 82316.359383: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
69136    RenderThread-9436  ( 9105) [002] d..2 82316.359399: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
69137          <idle>-0     (-----) [000] .n.1 82316.359407: cpu_idle: state=4294967295 cpu_id=0
69138          <idle>-0     (-----) [000] d..2 82316.359418: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
69139    RenderThread-9436  ( 9105) [002] .... 82316.359462: binder_transaction: transaction=1570277 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
69140    RenderThread-9436  ( 9105) [002] .... 82316.359469: binder_transaction_alloc_buf: transaction=1570277 data_size=104 offsets_size=0
69141    RenderThread-9436  ( 9105) [002] d..4 82316.359473: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
69142<...>-9105 ( 9105) [000] d..2 82316.359490: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69143    RenderThread-9436  ( 9105) [002] dn.5 82316.359491: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
69144    RenderThread-9436  ( 9105) [002] d..2 82316.359500: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
69145          <idle>-0     (-----) [000] d..1 82316.359504: cpu_idle: state=0 cpu_id=0
69146<...>-13083 ( 8858) [002] .... 82316.359507: binder_transaction_received: transaction=1570277
69147<...>-13083 ( 8858) [002] .... 82316.359576: binder_transaction: transaction=1570278 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
69148<...>-13083 ( 8858) [002] .... 82316.359580: binder_transaction_alloc_buf: transaction=1570278 data_size=52 offsets_size=8
69149<...>-13083 ( 8858) [002] d..2 82316.359623: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
69150    RenderThread-9436  ( 9105) [002] .... 82316.359632: binder_transaction_received: transaction=1570278
69151    RenderThread-9436  ( 9105) [002] d.h3 82316.359727: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69152          <idle>-0     (-----) [005] dnh2 82316.359750: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69153          <idle>-0     (-----) [005] .n.1 82316.359754: cpu_idle: state=4294967295 cpu_id=5
69154          <idle>-0     (-----) [005] d..2 82316.359763: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69155<...>-5340 ( 788) [005] d..1 82316.359814: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69156          <idle>-0     (-----) [000] dnh2 82316.359835: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69157          <idle>-0     (-----) [000] .n.1 82316.359844: cpu_idle: state=4294967295 cpu_id=0
69158          <idle>-0     (-----) [000] d..2 82316.359854: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
69159<...>-5340 ( 788) [005] ...1 82316.359904: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
69160<...>-5340 ( 788) [005] ...1 82316.359908: tracing_mark_write: E|788
69161 neuralnetworks@-13088 (  788) [000] d..2 82316.359910: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69162          <idle>-0     (-----) [000] d..1 82316.359922: cpu_idle: state=0 cpu_id=0
69163<...>-5340 ( 788) [005] .... 82316.359923: binder_transaction: transaction=1570279 dest_node=1570274 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
69164<...>-5340 ( 788) [005] .... 82316.359926: binder_transaction_alloc_buf: transaction=1570279 data_size=60 offsets_size=0
69165<...>-5340 ( 788) [005] d..4 82316.359929: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
69166<...>-5340 ( 788) [005] d..5 82316.359941: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
69167          <idle>-0     (-----) [004] .n.1 82316.359947: cpu_idle: state=4294967295 cpu_id=4
69168          <idle>-0     (-----) [004] d..2 82316.359956: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
69169           <...>-27571 (-----) [004] .... 82316.359961: binder_transaction_received: transaction=1570279
69170<...>-5340 ( 788) [005] ...1 82316.359964: tracing_mark_write: E|788
69171<...>-5340 ( 788) [005] .... 82316.359970: binder_transaction: transaction=1570280 dest_node=0 dest_proc=27550 dest_thread=27668 reply=1 flags=0x0 code=0x0
69172<...>-5340 ( 788) [005] .... 82316.359974: binder_transaction_alloc_buf: transaction=1570280 data_size=8 offsets_size=0
69173<...>-5340 ( 788) [005] d..2 82316.359976: sched_waking: comm=id.nn.benchmark pid=27668 prio=110 target_cpu=005
69174           <...>-27571 (-----) [004] ...1 82316.359981: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
69175<...>-5340 ( 788) [005] d..3 82316.359983: sched_wakeup: comm=id.nn.benchmark pid=27668 prio=110 target_cpu=005
69176<...>-5340 ( 788) [005] .... 82316.359985: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
69177           <...>-27571 (-----) [004] ...1 82316.359987: tracing_mark_write: E|27550
69178           <...>-27571 (-----) [004] d..2 82316.360017: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69179          <idle>-0     (-----) [004] d..1 82316.360024: cpu_idle: state=0 cpu_id=4
69180<...>-5340 ( 788) [005] d..2 82316.360026: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27668 next_prio=110
69181           <...>-27668 (-----) [005] .... 82316.360036: binder_transaction_received: transaction=1570280
69182           <...>-27668 (-----) [005] ...1 82316.360074: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
69183           <...>-27668 (-----) [005] ...1 82316.360081: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
69184           <...>-27668 (-----) [005] ...1 82316.360106: tracing_mark_write: E|27550
69185           <...>-27668 (-----) [005] ...1 82316.360110: tracing_mark_write: E|27550
69186           <...>-27668 (-----) [005] ...1 82316.360114: tracing_mark_write: E|27550
69187           <...>-27668 (-----) [005] ...1 82316.360298: tracing_mark_write: E|27550
69188           <...>-27668 (-----) [005] d..1 82316.360311: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69189           <...>-27668 (-----) [005] d..2 82316.360327: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69190          <idle>-0     (-----) [004] .n.1 82316.360333: cpu_idle: state=4294967295 cpu_id=4
69191          <idle>-0     (-----) [004] d..2 82316.360339: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
69192           <...>-27550 (-----) [004] d..2 82316.360359: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69193          <idle>-0     (-----) [004] d..1 82316.360367: cpu_idle: state=0 cpu_id=4
69194           <...>-27668 (-----) [005] d..1 82316.360416: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69195           <...>-27668 (-----) [005] d..2 82316.360425: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69196          <idle>-0     (-----) [004] .n.1 82316.360430: cpu_idle: state=4294967295 cpu_id=4
69197          <idle>-0     (-----) [004] d..2 82316.360438: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
69198           <...>-27668 (-----) [005] d..2 82316.360466: sched_switch: prev_comm=id.nn.benchmark prev_pid=27668 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
69199           <...>-27550 (-----) [004] ...1 82316.360471: tracing_mark_write: E|27550
69200           <...>-27550 (-----) [004] ...1 82316.360475: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
69201           <...>-27550 (-----) [004] ...1 82316.360481: tracing_mark_write: E|27550
69202           <...>-27550 (-----) [004] ...1 82316.360485: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
69203          <idle>-0     (-----) [005] d..1 82316.360486: cpu_idle: state=0 cpu_id=5
69204           <...>-27550 (-----) [004] ...1 82316.360494: tracing_mark_write: E|27550
69205           <...>-27550 (-----) [004] ...1 82316.360499: tracing_mark_write: E|27550
69206           <...>-27550 (-----) [004] ...1 82316.360611: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
69207           <...>-27550 (-----) [004] ...1 82316.360668: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
69208           <...>-27550 (-----) [004] ...1 82316.360673: tracing_mark_write: E|27550
69209    RenderThread-9436  ( 9105) [002] d..2 82316.360676: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
69210           <...>-27550 (-----) [004] ...1 82316.360676: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
69211           <...>-27550 (-----) [004] ...1 82316.360681: tracing_mark_write: E|27550
69212           <...>-27550 (-----) [004] ...1 82316.360685: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
69213           <...>-27550 (-----) [004] ...1 82316.360689: tracing_mark_write: E|27550
69214          <idle>-0     (-----) [002] d..1 82316.360690: cpu_idle: state=0 cpu_id=2
69215           <...>-27550 (-----) [004] ...1 82316.360692: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
69216          <idle>-0     (-----) [002] d.h2 82316.360760: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
69217          <idle>-0     (-----) [002] d.h3 82316.360769: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
69218          <idle>-0     (-----) [002] dnh3 82316.360774: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
69219          <idle>-0     (-----) [002] .n.1 82316.360781: cpu_idle: state=4294967295 cpu_id=2
69220          <idle>-0     (-----) [005] .n.1 82316.360784: cpu_idle: state=4294967295 cpu_id=5
69221           <...>-27550 (-----) [004] ...1 82316.360785: tracing_mark_write: E|27550
69222           <...>-27550 (-----) [004] ...1 82316.360790: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
69223          <idle>-0     (-----) [002] d..2 82316.360792: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
69224          <idle>-0     (-----) [005] d..2 82316.360793: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27669 next_prio=110
69225          <idle>-0     (-----) [000] d.h3 82316.360799: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
69226           <...>-27550 (-----) [004] d..2 82316.360807: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69227          <idle>-0     (-----) [000] d.h4 82316.360819: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
69228          <idle>-0     (-----) [004] d..1 82316.360821: cpu_idle: state=0 cpu_id=4
69229          <idle>-0     (-----) [003] .n.1 82316.360824: cpu_idle: state=4294967295 cpu_id=3
69230          <idle>-0     (-----) [003] d..2 82316.360833: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
69231          <idle>-0     (-----) [000] ...1 82316.360839: cpu_idle: state=4294967295 cpu_id=0
69232          <idle>-0     (-----) [000] d..1 82316.360843: cpu_idle: state=0 cpu_id=0
69233           <...>-27669 (-----) [005] ...1 82316.360855: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
69234           <...>-27669 (-----) [005] ...1 82316.360870: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
69235           <...>-27669 (-----) [005] ...1 82316.360873: tracing_mark_write: E|27550
69236 kgsl_worker_thr-258   (  258) [003] d..2 82316.360883: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
69237           <...>-27669 (-----) [005] .... 82316.360895: binder_transaction: transaction=1570281 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
69238           <...>-27669 (-----) [005] .... 82316.360899: binder_transaction_alloc_buf: transaction=1570281 data_size=48 offsets_size=0
69239 kgsl_worker_thr-258   (  258) [003] d..3 82316.360900: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
69240           <...>-27669 (-----) [005] ...2 82316.360902: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
69241           <...>-27669 (-----) [005] d..4 82316.360905: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
69242 kgsl_worker_thr-258   (  258) [003] d..2 82316.360913: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
69243           <...>-27669 (-----) [005] dn.5 82316.360915: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
69244           <...>-27669 (-----) [005] d..2 82316.360922: sched_switch: prev_comm=id.nn.benchmark prev_pid=27669 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
69245<...>-770 ( 770) [005] .... 82316.360932: binder_transaction_received: transaction=1570281
69246<...>-770 ( 770) [005] ...1 82316.360956: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
69247    RenderThread-9436  ( 9105) [002] .... 82316.360977: binder_transaction: transaction=1570282 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
69248    RenderThread-9436  ( 9105) [002] .... 82316.360982: binder_transaction_alloc_buf: transaction=1570282 data_size=192 offsets_size=8
69249    RenderThread-9436  ( 9105) [002] d..4 82316.360991: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
69250    RenderThread-9436  ( 9105) [002] dn.5 82316.361005: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
69251    RenderThread-9436  ( 9105) [002] d..2 82316.361014: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
69252<...>-13083 ( 8858) [002] .... 82316.361021: binder_transaction_received: transaction=1570282
69253<...>-770 ( 770) [005] d..2 82316.361038: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
69254  kworker/u16:13-1147  ( 1147) [003] d.h1 82316.361090: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
69255<...>-770 ( 770) [005] ...1 82316.361093: tracing_mark_write: E|770
69256<...>-770 ( 770) [005] .... 82316.361101: binder_transaction: transaction=1570283 dest_node=0 dest_proc=27550 dest_thread=27669 reply=1 flags=0x0 code=0x0
69257<...>-770 ( 770) [005] .... 82316.361105: binder_transaction_alloc_buf: transaction=1570283 data_size=168 offsets_size=32
69258  kworker/u16:13-1147  ( 1147) [003] d..2 82316.361111: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
69259<...>-770 ( 770) [005] .... 82316.361111: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
69260<...>-770 ( 770) [005] d..2 82316.361147: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27669 next_prio=110
69261           <...>-27669 (-----) [005] .... 82316.361158: binder_transaction_received: transaction=1570283
69262<...>-13083 ( 8858) [002] .... 82316.361158: binder_transaction: transaction=1570284 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
69263<...>-13083 ( 8858) [002] .... 82316.361163: binder_transaction_alloc_buf: transaction=1570284 data_size=68 offsets_size=0
69264<...>-13083 ( 8858) [002] d..2 82316.361202: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
69265    RenderThread-9436  ( 9105) [002] .... 82316.361210: binder_transaction_received: transaction=1570284
69266<...>-581 ( 571) [003] d..2 82316.361217: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69267          <idle>-0     (-----) [003] d..1 82316.361231: cpu_idle: state=0 cpu_id=3
69268           <...>-27669 (-----) [005] ...1 82316.361233: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
69269           <...>-27669 (-----) [005] ...1 82316.361238: tracing_mark_write: E|27550
69270           <...>-27669 (-----) [005] .... 82316.361252: binder_transaction: transaction=1570285 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
69271           <...>-27669 (-----) [005] .... 82316.361255: binder_transaction_alloc_buf: transaction=1570285 data_size=48 offsets_size=0
69272           <...>-27669 (-----) [005] ...2 82316.361257: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
69273           <...>-27669 (-----) [005] d..4 82316.361260: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
69274           <...>-27669 (-----) [005] dn.5 82316.361269: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
69275           <...>-27669 (-----) [005] d..2 82316.361276: sched_switch: prev_comm=id.nn.benchmark prev_pid=27669 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
69276<...>-770 ( 770) [005] .... 82316.361284: binder_transaction_received: transaction=1570285
69277    RenderThread-9436  ( 9105) [002] d..2 82316.361288: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69278<...>-770 ( 770) [005] ...1 82316.361300: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
69279          <idle>-0     (-----) [002] d..1 82316.361304: cpu_idle: state=0 cpu_id=2
69280<...>-770 ( 770) [005] d..2 82316.361360: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
69281          <idle>-0     (-----) [003] dnh2 82316.361383: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
69282          <idle>-0     (-----) [003] .n.1 82316.361389: cpu_idle: state=4294967295 cpu_id=3
69283<...>-770 ( 770) [005] ...1 82316.361393: tracing_mark_write: E|770
69284          <idle>-0     (-----) [003] d..2 82316.361398: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
69285<...>-770 ( 770) [005] .... 82316.361400: binder_transaction: transaction=1570286 dest_node=0 dest_proc=27550 dest_thread=27669 reply=1 flags=0x0 code=0x0
69286<...>-770 ( 770) [005] .... 82316.361402: binder_transaction_alloc_buf: transaction=1570286 data_size=168 offsets_size=32
69287<...>-770 ( 770) [005] .... 82316.361409: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
69288<...>-770 ( 770) [005] d..2 82316.361443: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27669 next_prio=110
69289<...>-581 ( 571) [003] d..2 82316.361447: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69290           <...>-27669 (-----) [005] .... 82316.361454: binder_transaction_received: transaction=1570286
69291          <idle>-0     (-----) [003] d..1 82316.361457: cpu_idle: state=0 cpu_id=3
69292           <...>-27669 (-----) [005] ...1 82316.361732: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
69293           <...>-27669 (-----) [005] ...1 82316.361742: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
69294           <...>-27669 (-----) [005] ...1 82316.361746: tracing_mark_write: E|27550
69295          <idle>-0     (-----) [001] d.s2 82316.361801: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
69296          <idle>-0     (-----) [001] dns3 82316.361816: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
69297          <idle>-0     (-----) [001] .n.1 82316.361833: cpu_idle: state=4294967295 cpu_id=1
69298          <idle>-0     (-----) [001] d..2 82316.361841: 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
69299<...>-8 ( 8) [001] d..2 82316.361849: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
69300           <...>-27669 (-----) [005] .... 82316.361853: binder_transaction: transaction=1570287 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
69301           <...>-27669 (-----) [005] .... 82316.361856: binder_transaction_alloc_buf: transaction=1570287 data_size=556 offsets_size=104
69302<...>-8 ( 8) [001] d..3 82316.361866: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
69303           <...>-27669 (-----) [005] ...2 82316.361870: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
69304           <...>-27669 (-----) [005] d..4 82316.361872: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69305<...>-8 ( 8) [001] d..2 82316.361875: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
69306           <...>-27669 (-----) [005] dn.5 82316.361882: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69307<...>-46 ( 46) [001] d..2 82316.361887: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
69308           <...>-27669 (-----) [005] d..2 82316.361888: sched_switch: prev_comm=id.nn.benchmark prev_pid=27669 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69309<...>-5340 ( 788) [005] .... 82316.361898: binder_transaction_received: transaction=1570287
69310<...>-46 ( 46) [001] d..3 82316.361898: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
69311<...>-46 ( 46) [001] d..2 82316.361906: 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
69312<...>-8 ( 8) [001] d..2 82316.361929: 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
69313          <idle>-0     (-----) [001] d..1 82316.361941: cpu_idle: state=0 cpu_id=1
69314<...>-5340 ( 788) [005] ...1 82316.361947: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
69315<...>-5340 ( 788) [005] d..2 82316.361996: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69316<...>-5340 ( 788) [005] d..2 82316.362020: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27669 next_prio=110
69317          <idle>-0     (-----) [000] dnh2 82316.362022: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69318          <idle>-0     (-----) [000] .n.1 82316.362026: cpu_idle: state=4294967295 cpu_id=0
69319          <idle>-0     (-----) [000] d..2 82316.362038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
69320           <...>-27669 (-----) [005] d..2 82316.362043: sched_switch: prev_comm=id.nn.benchmark prev_pid=27669 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69321          <idle>-0     (-----) [005] d..1 82316.362061: cpu_idle: state=0 cpu_id=5
69322<...>-87 ( 87) [000] d..2 82316.362078: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69323          <idle>-0     (-----) [000] d..1 82316.362088: cpu_idle: state=0 cpu_id=0
69324          <idle>-0     (-----) [002] d.h4 82316.362093: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69325          <idle>-0     (-----) [002] dnh5 82316.362110: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69326          <idle>-0     (-----) [002] .n.1 82316.362120: cpu_idle: state=4294967295 cpu_id=2
69327          <idle>-0     (-----) [002] d..2 82316.362131: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
69328<...>-86 ( 86) [002] d..2 82316.362165: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69329          <idle>-0     (-----) [002] d.h5 82316.362186: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69330          <idle>-0     (-----) [005] dnh2 82316.362206: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69331          <idle>-0     (-----) [005] .n.1 82316.362210: cpu_idle: state=4294967295 cpu_id=5
69332          <idle>-0     (-----) [005] d..2 82316.362219: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69333          <idle>-0     (-----) [002] d..1 82316.362228: cpu_idle: state=0 cpu_id=2
69334<...>-5340 ( 788) [005] d..1 82316.362274: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69335          <idle>-0     (-----) [000] dnh2 82316.362298: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69336          <idle>-0     (-----) [000] .n.1 82316.362304: cpu_idle: state=4294967295 cpu_id=0
69337          <idle>-0     (-----) [000] d..2 82316.362313: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
69338 neuralnetworks@-13088 (  788) [000] d..2 82316.362349: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69339          <idle>-0     (-----) [000] d..1 82316.362360: cpu_idle: state=0 cpu_id=0
69340<...>-5340 ( 788) [005] d..2 82316.362421: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69341          <idle>-0     (-----) [000] dnh2 82316.362440: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69342          <idle>-0     (-----) [000] .n.1 82316.362446: cpu_idle: state=4294967295 cpu_id=0
69343<...>-5340 ( 788) [005] d..2 82316.362447: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69344          <idle>-0     (-----) [000] d..2 82316.362454: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
69345          <idle>-0     (-----) [005] d..1 82316.362461: cpu_idle: state=0 cpu_id=5
69346          <idle>-0     (-----) [003] d.h2 82316.362474: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
69347<...>-87 ( 87) [000] d..2 82316.362487: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69348          <idle>-0     (-----) [003] dnh3 82316.362488: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
69349          <idle>-0     (-----) [002] d.h4 82316.362489: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69350          <idle>-0     (-----) [003] .n.1 82316.362495: cpu_idle: state=4294967295 cpu_id=3
69351          <idle>-0     (-----) [000] d..1 82316.362497: cpu_idle: state=0 cpu_id=0
69352          <idle>-0     (-----) [002] dnh5 82316.362498: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69353          <idle>-0     (-----) [003] d..2 82316.362505: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
69354          <idle>-0     (-----) [002] .n.1 82316.362508: cpu_idle: state=4294967295 cpu_id=2
69355          <idle>-0     (-----) [002] d..2 82316.362517: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
69356        DispSync-8879  ( 8858) [003] d..1 82316.362525: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
69357        DispSync-8879  ( 8858) [003] d..2 82316.362541: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
69358<...>-86 ( 86) [002] d..2 82316.362545: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69359          <idle>-0     (-----) [001] .n.1 82316.362546: cpu_idle: state=4294967295 cpu_id=1
69360          <idle>-0     (-----) [001] d..2 82316.362555: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
69361          <idle>-0     (-----) [002] d..1 82316.362556: cpu_idle: state=0 cpu_id=2
69362        DispSync-8879  ( 8858) [003] d..2 82316.362569: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69363          <idle>-0     (-----) [003] d..1 82316.362578: cpu_idle: state=0 cpu_id=3
69364   sfEventThread-8882  ( 8858) [001] d..3 82316.362591: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
69365   sfEventThread-8882  ( 8858) [001] d..4 82316.362609: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
69366          <idle>-0     (-----) [003] .n.1 82316.362615: cpu_idle: state=4294967295 cpu_id=3
69367          <idle>-0     (-----) [003] d..2 82316.362622: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
69368   sfEventThread-8882  ( 8858) [001] d..2 82316.362637: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
69369          <idle>-0     (-----) [001] d..1 82316.362648: cpu_idle: state=0 cpu_id=1
69370          <idle>-0     (-----) [005] ...1 82316.362783: cpu_idle: state=4294967295 cpu_id=5
69371          <idle>-0     (-----) [005] d..1 82316.362787: cpu_idle: state=0 cpu_id=5
69372  surfaceflinger-8858  ( 8858) [003] d..1 82316.362933: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
69373  surfaceflinger-8858  ( 8858) [003] d..2 82316.362952: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
69374          <idle>-0     (-----) [001] .n.1 82316.362957: cpu_idle: state=4294967295 cpu_id=1
69375          <idle>-0     (-----) [001] d..2 82316.362965: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
69376   sfEventThread-8882  ( 8858) [001] d..2 82316.362995: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
69377          <idle>-0     (-----) [001] d..1 82316.363003: cpu_idle: state=0 cpu_id=1
69378  surfaceflinger-8858  ( 8858) [003] ...1 82316.363120: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
69379  surfaceflinger-8858  ( 8858) [003] ...1 82316.363125: tracing_mark_write: E|8858
69380  surfaceflinger-8858  ( 8858) [003] .... 82316.363173: binder_transaction: transaction=1570290 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
69381  surfaceflinger-8858  ( 8858) [003] .... 82316.363177: binder_transaction_alloc_buf: transaction=1570290 data_size=540 offsets_size=96
69382  surfaceflinger-8858  ( 8858) [003] ...2 82316.363201: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
69383  surfaceflinger-8858  ( 8858) [003] d..4 82316.363208: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
69384  surfaceflinger-8858  ( 8858) [003] d..5 82316.363225: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
69385          <idle>-0     (-----) [001] .n.1 82316.363230: cpu_idle: state=4294967295 cpu_id=1
69386          <idle>-0     (-----) [001] d..2 82316.363239: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
69387 [email protected]   (  619) [001] .... 82316.363248: binder_transaction_received: transaction=1570290
69388  surfaceflinger-8858  ( 8858) [003] d..2 82316.363253: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69389          <idle>-0     (-----) [003] d..1 82316.363264: cpu_idle: state=0 cpu_id=3
69390 [email protected]   (  619) [001] ...1 82316.363288: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
69391 [email protected]   (  619) [001] ...1 82316.363388: tracing_mark_write: B|619|HWCSession::PresentDisplay::
69392 [email protected]   (  619) [001] ...1 82316.363541: tracing_mark_write: B|619|HWDeviceDRM::Commit::
69393 [email protected]   (  619) [001] ...1 82316.363554: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
69394          <idle>-0     (-----) [002] ...1 82316.363998: cpu_idle: state=4294967295 cpu_id=2
69395          <idle>-0     (-----) [002] d..1 82316.364002: cpu_idle: state=0 cpu_id=2
69396          <idle>-0     (-----) [000] ...1 82316.364032: cpu_idle: state=4294967295 cpu_id=0
69397          <idle>-0     (-----) [000] d..1 82316.364036: cpu_idle: state=0 cpu_id=0
69398 [email protected]   (  619) [001] d..2 82316.364079: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
69399 [email protected]   (  619) [001] d..3 82316.364101: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
69400          <idle>-0     (-----) [002] dnh4 82316.364119: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69401          <idle>-0     (-----) [005] dnh2 82316.364138: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69402          <idle>-0     (-----) [005] .n.1 82316.364142: cpu_idle: state=4294967295 cpu_id=5
69403          <idle>-0     (-----) [005] d..2 82316.364150: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69404          <idle>-0     (-----) [002] .n.1 82316.364153: cpu_idle: state=4294967295 cpu_id=2
69405          <idle>-0     (-----) [002] d..2 82316.364162: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
69406 [email protected]   (  619) [001] ...1 82316.364184: tracing_mark_write: E|619
69407 [email protected]   (  619) [001] ...1 82316.364190: tracing_mark_write: E|619
69408<...>-5340 ( 788) [005] d..1 82316.364200: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69409          <idle>-0     (-----) [000] dnh2 82316.364219: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69410          <idle>-0     (-----) [000] .n.1 82316.364226: cpu_idle: state=4294967295 cpu_id=0
69411          <idle>-0     (-----) [000] d..2 82316.364235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
69412 [email protected]   (  619) [001] ...1 82316.364246: tracing_mark_write: E|619
69413 neuralnetworks@-13088 (  788) [000] d..2 82316.364284: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69414<...>-5340 ( 788) [005] ...1 82316.364294: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
69415          <idle>-0     (-----) [000] d..1 82316.364294: cpu_idle: state=0 cpu_id=0
69416<...>-5340 ( 788) [005] ...1 82316.364299: tracing_mark_write: E|788
69417 [email protected]   (  619) [001] ...1 82316.364305: tracing_mark_write: E|619
69418<...>-5340 ( 788) [005] .... 82316.364315: binder_transaction: transaction=1570291 dest_node=1570288 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
69419<...>-5340 ( 788) [005] .... 82316.364318: binder_transaction_alloc_buf: transaction=1570291 data_size=60 offsets_size=0
69420 [email protected]   (  619) [001] .... 82316.364319: binder_transaction: transaction=1570292 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
69421<...>-5340 ( 788) [005] d..4 82316.364322: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
69422 [email protected]   (  619) [001] .... 82316.364323: binder_transaction_alloc_buf: transaction=1570292 data_size=576 offsets_size=112
69423<...>-5340 ( 788) [005] d..5 82316.364334: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
69424          <idle>-0     (-----) [004] .n.1 82316.364340: cpu_idle: state=4294967295 cpu_id=4
69425 [email protected]   (  619) [001] d..2 82316.364341: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
69426          <idle>-0     (-----) [004] d..2 82316.364350: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
69427           <...>-27571 (-----) [004] .... 82316.364355: binder_transaction_received: transaction=1570291
69428<...>-5340 ( 788) [005] ...1 82316.364358: tracing_mark_write: E|788
69429 [email protected]   (  619) [001] d..3 82316.364358: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
69430 [email protected]   (  619) [001] .... 82316.364362: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
69431<...>-5340 ( 788) [005] .... 82316.364364: binder_transaction: transaction=1570293 dest_node=0 dest_proc=27550 dest_thread=27669 reply=1 flags=0x0 code=0x0
69432          <idle>-0     (-----) [003] .n.1 82316.364364: cpu_idle: state=4294967295 cpu_id=3
69433<...>-5340 ( 788) [005] .... 82316.364366: binder_transaction_alloc_buf: transaction=1570293 data_size=8 offsets_size=0
69434<...>-5340 ( 788) [005] d..2 82316.364368: sched_waking: comm=id.nn.benchmark pid=27669 prio=110 target_cpu=005
69435          <idle>-0     (-----) [003] d..2 82316.364371: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
69436           <...>-27571 (-----) [004] ...1 82316.364374: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
69437<...>-5340 ( 788) [005] d..3 82316.364376: sched_wakeup: comm=id.nn.benchmark pid=27669 prio=110 target_cpu=005
69438<...>-5340 ( 788) [005] .... 82316.364378: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
69439  surfaceflinger-8858  ( 8858) [003] .... 82316.364379: binder_transaction_received: transaction=1570292
69440           <...>-27571 (-----) [004] ...1 82316.364380: tracing_mark_write: E|27550
69441           <...>-27571 (-----) [004] d..2 82316.364409: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69442          <idle>-0     (-----) [004] d..1 82316.364416: cpu_idle: state=0 cpu_id=4
69443<...>-5340 ( 788) [005] d..2 82316.364420: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27669 next_prio=110
69444           <...>-27669 (-----) [005] .... 82316.364431: binder_transaction_received: transaction=1570293
69445 [email protected]   (  619) [001] d..2 82316.364440: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
69446          <idle>-0     (-----) [001] d..1 82316.364456: cpu_idle: state=0 cpu_id=1
69447           <...>-27669 (-----) [005] ...1 82316.364467: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
69448           <...>-27669 (-----) [005] ...1 82316.364473: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
69449           <...>-27669 (-----) [005] ...1 82316.364499: tracing_mark_write: E|27550
69450           <...>-27669 (-----) [005] ...1 82316.364503: tracing_mark_write: E|27550
69451           <...>-27669 (-----) [005] ...1 82316.364506: tracing_mark_write: E|27550
69452           <...>-27669 (-----) [005] ...1 82316.364694: tracing_mark_write: E|27550
69453           <...>-27669 (-----) [005] d..1 82316.364707: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69454           <...>-27669 (-----) [005] d..2 82316.364722: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69455          <idle>-0     (-----) [004] .n.1 82316.364727: cpu_idle: state=4294967295 cpu_id=4
69456          <idle>-0     (-----) [004] d..2 82316.364733: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
69457           <...>-27550 (-----) [004] d..2 82316.364754: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69458  surfaceflinger-8858  ( 8858) [003] d..2 82316.364760: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69459          <idle>-0     (-----) [004] d..1 82316.364763: cpu_idle: state=0 cpu_id=4
69460          <idle>-0     (-----) [003] d..1 82316.364772: cpu_idle: state=0 cpu_id=3
69461           <...>-27669 (-----) [005] d..1 82316.364815: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69462           <...>-27669 (-----) [005] d..2 82316.364824: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69463          <idle>-0     (-----) [004] .n.1 82316.364830: cpu_idle: state=4294967295 cpu_id=4
69464          <idle>-0     (-----) [004] d..2 82316.364837: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
69465           <...>-27669 (-----) [005] d..2 82316.364864: sched_switch: prev_comm=id.nn.benchmark prev_pid=27669 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
69466 crtc_commit:111-321   (  321) [002] d..2 82316.364865: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
69467          <idle>-0     (-----) [002] d..1 82316.364879: cpu_idle: state=0 cpu_id=2
69468           <...>-27550 (-----) [004] ...1 82316.364887: tracing_mark_write: E|27550
69469           <...>-27550 (-----) [004] ...1 82316.364892: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
69470          <idle>-0     (-----) [005] d..1 82316.364894: cpu_idle: state=0 cpu_id=5
69471           <...>-27550 (-----) [004] ...1 82316.364898: tracing_mark_write: E|27550
69472           <...>-27550 (-----) [004] ...1 82316.364902: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
69473           <...>-27550 (-----) [004] ...1 82316.364906: tracing_mark_write: E|27550
69474           <...>-27550 (-----) [004] ...1 82316.364911: tracing_mark_write: E|27550
69475           <...>-27550 (-----) [004] ...1 82316.365024: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
69476           <...>-27550 (-----) [004] ...1 82316.365081: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
69477           <...>-27550 (-----) [004] ...1 82316.365086: tracing_mark_write: E|27550
69478           <...>-27550 (-----) [004] ...1 82316.365090: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
69479           <...>-27550 (-----) [004] ...1 82316.365096: tracing_mark_write: E|27550
69480           <...>-27550 (-----) [004] ...1 82316.365099: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
69481          <idle>-0     (-----) [003] d.s2 82316.365135: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
69482           <...>-27550 (-----) [004] ...1 82316.365140: tracing_mark_write: E|27550
69483           <...>-27550 (-----) [004] ...1 82316.365146: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
69484          <idle>-0     (-----) [003] dns3 82316.365153: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
69485          <idle>-0     (-----) [003] .n.1 82316.365168: cpu_idle: state=4294967295 cpu_id=3
69486          <idle>-0     (-----) [003] d..2 82316.365176: 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
69487     rcu_preempt-7     (    7) [003] d..2 82316.365208: 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
69488          <idle>-0     (-----) [003] d..1 82316.365220: cpu_idle: state=0 cpu_id=3
69489          <idle>-0     (-----) [005] .n.1 82316.365236: cpu_idle: state=4294967295 cpu_id=5
69490           <...>-27550 (-----) [004] ...1 82316.365237: tracing_mark_write: E|27550
69491           <...>-27550 (-----) [004] ...1 82316.365241: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
69492          <idle>-0     (-----) [005] d..2 82316.365246: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27670 next_prio=110
69493           <...>-27550 (-----) [004] d..2 82316.365259: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69494          <idle>-0     (-----) [004] d..1 82316.365273: cpu_idle: state=0 cpu_id=4
69495           <...>-27670 (-----) [005] ...1 82316.365308: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
69496           <...>-27670 (-----) [005] ...1 82316.365322: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
69497           <...>-27670 (-----) [005] ...1 82316.365325: tracing_mark_write: E|27550
69498           <...>-27670 (-----) [005] .... 82316.365347: binder_transaction: transaction=1570294 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
69499           <...>-27670 (-----) [005] .... 82316.365350: binder_transaction_alloc_buf: transaction=1570294 data_size=48 offsets_size=0
69500           <...>-27670 (-----) [005] ...2 82316.365353: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
69501           <...>-27670 (-----) [005] d..4 82316.365356: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
69502           <...>-27670 (-----) [005] dn.5 82316.365366: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
69503           <...>-27670 (-----) [005] d..2 82316.365373: sched_switch: prev_comm=id.nn.benchmark prev_pid=27670 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
69504<...>-770 ( 770) [005] .... 82316.365383: binder_transaction_received: transaction=1570294
69505<...>-770 ( 770) [005] ...1 82316.365408: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
69506<...>-770 ( 770) [005] d..2 82316.365492: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
69507          <idle>-0     (-----) [000] dnh2 82316.365530: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
69508          <idle>-0     (-----) [000] .n.1 82316.365536: cpu_idle: state=4294967295 cpu_id=0
69509<...>-770 ( 770) [005] ...1 82316.365546: tracing_mark_write: E|770
69510          <idle>-0     (-----) [000] d..2 82316.365546: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
69511<...>-770 ( 770) [005] .... 82316.365554: binder_transaction: transaction=1570295 dest_node=0 dest_proc=27550 dest_thread=27670 reply=1 flags=0x0 code=0x0
69512<...>-770 ( 770) [005] .... 82316.365556: binder_transaction_alloc_buf: transaction=1570295 data_size=168 offsets_size=32
69513<...>-770 ( 770) [005] .... 82316.365563: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
69514<...>-770 ( 770) [005] d..2 82316.365599: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27670 next_prio=110
69515           <...>-27670 (-----) [005] .... 82316.365610: binder_transaction_received: transaction=1570295
69516<...>-581 ( 571) [000] d..2 82316.365635: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69517          <idle>-0     (-----) [000] d..1 82316.365649: cpu_idle: state=0 cpu_id=0
69518           <...>-27670 (-----) [005] ...1 82316.365683: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
69519           <...>-27670 (-----) [005] ...1 82316.365688: tracing_mark_write: E|27550
69520           <...>-27670 (-----) [005] .... 82316.365703: binder_transaction: transaction=1570296 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
69521           <...>-27670 (-----) [005] .... 82316.365705: binder_transaction_alloc_buf: transaction=1570296 data_size=48 offsets_size=0
69522           <...>-27670 (-----) [005] ...2 82316.365708: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
69523           <...>-27670 (-----) [005] d..4 82316.365710: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
69524           <...>-27670 (-----) [005] dn.5 82316.365720: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
69525           <...>-27670 (-----) [005] d..2 82316.365727: sched_switch: prev_comm=id.nn.benchmark prev_pid=27670 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
69526<...>-770 ( 770) [005] .... 82316.365734: binder_transaction_received: transaction=1570296
69527<...>-770 ( 770) [005] ...1 82316.365751: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
69528<...>-770 ( 770) [005] d..2 82316.365810: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
69529          <idle>-0     (-----) [000] dnh2 82316.365833: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
69530          <idle>-0     (-----) [000] .n.1 82316.365838: cpu_idle: state=4294967295 cpu_id=0
69531<...>-770 ( 770) [005] ...1 82316.365843: tracing_mark_write: E|770
69532          <idle>-0     (-----) [000] d..2 82316.365848: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
69533<...>-770 ( 770) [005] .... 82316.365851: binder_transaction: transaction=1570297 dest_node=0 dest_proc=27550 dest_thread=27670 reply=1 flags=0x0 code=0x0
69534<...>-770 ( 770) [005] .... 82316.365854: binder_transaction_alloc_buf: transaction=1570297 data_size=168 offsets_size=32
69535<...>-770 ( 770) [005] .... 82316.365860: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
69536<...>-770 ( 770) [005] d..2 82316.365894: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27670 next_prio=110
69537<...>-581 ( 571) [000] d..2 82316.365898: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69538           <...>-27670 (-----) [005] .... 82316.365905: binder_transaction_received: transaction=1570297
69539          <idle>-0     (-----) [000] d..1 82316.365910: cpu_idle: state=0 cpu_id=0
69540          <idle>-0     (-----) [002] ...1 82316.366175: cpu_idle: state=4294967295 cpu_id=2
69541          <idle>-0     (-----) [002] d..1 82316.366179: cpu_idle: state=0 cpu_id=2
69542           <...>-27670 (-----) [005] ...1 82316.366186: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
69543           <...>-27670 (-----) [005] ...1 82316.366196: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
69544           <...>-27670 (-----) [005] ...1 82316.366200: tracing_mark_write: E|27550
69545           <...>-27670 (-----) [005] .... 82316.366264: binder_transaction: transaction=1570298 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
69546           <...>-27670 (-----) [005] .... 82316.366267: binder_transaction_alloc_buf: transaction=1570298 data_size=556 offsets_size=104
69547           <...>-27670 (-----) [005] ...2 82316.366281: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
69548           <...>-27670 (-----) [005] d..4 82316.366284: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69549           <...>-27670 (-----) [005] dn.5 82316.366296: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69550           <...>-27670 (-----) [005] d..2 82316.366303: sched_switch: prev_comm=id.nn.benchmark prev_pid=27670 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69551<...>-5340 ( 788) [005] .... 82316.366313: binder_transaction_received: transaction=1570298
69552<...>-5340 ( 788) [005] ...1 82316.366360: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
69553<...>-5340 ( 788) [005] d..2 82316.366406: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69554<...>-5340 ( 788) [005] d..2 82316.366430: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27670 next_prio=110
69555          <idle>-0     (-----) [000] dnh2 82316.366433: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69556          <idle>-0     (-----) [000] .n.1 82316.366439: cpu_idle: state=4294967295 cpu_id=0
69557          <idle>-0     (-----) [000] d..2 82316.366448: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
69558           <...>-27670 (-----) [005] d..2 82316.366453: sched_switch: prev_comm=id.nn.benchmark prev_pid=27670 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69559          <idle>-0     (-----) [005] d..1 82316.366471: cpu_idle: state=0 cpu_id=5
69560<...>-87 ( 87) [000] d..2 82316.366485: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69561          <idle>-0     (-----) [000] d..1 82316.366495: cpu_idle: state=0 cpu_id=0
69562          <idle>-0     (-----) [002] d.h4 82316.366496: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69563          <idle>-0     (-----) [002] dnh5 82316.366513: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69564          <idle>-0     (-----) [002] .n.1 82316.366521: cpu_idle: state=4294967295 cpu_id=2
69565          <idle>-0     (-----) [002] d..2 82316.366532: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
69566<...>-86 ( 86) [002] d..2 82316.366564: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69567          <idle>-0     (-----) [002] d.h5 82316.366583: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69568          <idle>-0     (-----) [005] dnh2 82316.366604: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69569          <idle>-0     (-----) [005] .n.1 82316.366608: cpu_idle: state=4294967295 cpu_id=5
69570          <idle>-0     (-----) [005] d..2 82316.366616: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69571          <idle>-0     (-----) [002] d..1 82316.366624: cpu_idle: state=0 cpu_id=2
69572<...>-5340 ( 788) [005] d..1 82316.366672: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69573          <idle>-0     (-----) [000] dnh2 82316.366697: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69574          <idle>-0     (-----) [000] .n.1 82316.366702: cpu_idle: state=4294967295 cpu_id=0
69575          <idle>-0     (-----) [000] d..2 82316.366711: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
69576 neuralnetworks@-13088 (  788) [000] d..2 82316.366748: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69577          <idle>-0     (-----) [000] d..1 82316.366760: cpu_idle: state=0 cpu_id=0
69578<...>-5340 ( 788) [005] d..2 82316.366820: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69579          <idle>-0     (-----) [000] dnh2 82316.366839: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69580          <idle>-0     (-----) [000] .n.1 82316.366845: cpu_idle: state=4294967295 cpu_id=0
69581<...>-5340 ( 788) [005] d..2 82316.366845: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69582          <idle>-0     (-----) [000] d..2 82316.366854: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
69583          <idle>-0     (-----) [005] d..1 82316.366860: cpu_idle: state=0 cpu_id=5
69584<...>-87 ( 87) [000] d..2 82316.366887: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69585          <idle>-0     (-----) [002] d.h4 82316.366889: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69586          <idle>-0     (-----) [000] d..1 82316.366897: cpu_idle: state=0 cpu_id=0
69587          <idle>-0     (-----) [002] dnh5 82316.366898: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69588          <idle>-0     (-----) [002] .n.1 82316.366905: cpu_idle: state=4294967295 cpu_id=2
69589          <idle>-0     (-----) [002] d..2 82316.366915: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
69590<...>-86 ( 86) [002] d..2 82316.366942: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69591          <idle>-0     (-----) [002] d..1 82316.366951: cpu_idle: state=0 cpu_id=2
69592          <idle>-0     (-----) [005] ...1 82316.367194: cpu_idle: state=4294967295 cpu_id=5
69593          <idle>-0     (-----) [005] d..1 82316.367197: cpu_idle: state=0 cpu_id=5
69594          <idle>-0     (-----) [000] ...1 82316.368345: cpu_idle: state=4294967295 cpu_id=0
69595          <idle>-0     (-----) [000] d..1 82316.368349: cpu_idle: state=0 cpu_id=0
69596          <idle>-0     (-----) [001] d.s2 82316.368471: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
69597          <idle>-0     (-----) [001] dns3 82316.368487: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
69598          <idle>-0     (-----) [001] dns3 82316.368495: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
69599          <idle>-0     (-----) [001] dns4 82316.368525: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
69600          <idle>-0     (-----) [001] .n.1 82316.368537: cpu_idle: state=4294967295 cpu_id=1
69601          <idle>-0     (-----) [001] d..2 82316.368549: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
69602          <idle>-0     (-----) [002] d.h4 82316.368582: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69603          <idle>-0     (-----) [005] dnh2 82316.368602: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69604          <idle>-0     (-----) [005] .n.1 82316.368606: cpu_idle: state=4294967295 cpu_id=5
69605          <idle>-0     (-----) [005] d..2 82316.368614: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69606          <idle>-0     (-----) [002] ...1 82316.368615: cpu_idle: state=4294967295 cpu_id=2
69607          <idle>-0     (-----) [002] d..1 82316.368620: cpu_idle: state=0 cpu_id=2
69608<...>-5340 ( 788) [005] d..1 82316.368665: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69609          <idle>-0     (-----) [000] dnh2 82316.368683: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69610          <idle>-0     (-----) [000] .n.1 82316.368690: cpu_idle: state=4294967295 cpu_id=0
69611          <idle>-0     (-----) [000] d..2 82316.368700: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
69612 neuralnetworks@-13088 (  788) [000] d..2 82316.368753: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69613<...>-5340 ( 788) [005] ...1 82316.368756: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
69614<...>-5340 ( 788) [005] ...1 82316.368760: tracing_mark_write: E|788
69615          <idle>-0     (-----) [000] d..1 82316.368765: cpu_idle: state=0 cpu_id=0
69616  kworker/u16:13-1147  ( 1147) [001] d..2 82316.368771: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=rcu_sched next_pid=8 next_prio=120
69617<...>-5340 ( 788) [005] .... 82316.368775: binder_transaction: transaction=1570301 dest_node=1570299 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
69618<...>-5340 ( 788) [005] .... 82316.368778: binder_transaction_alloc_buf: transaction=1570301 data_size=60 offsets_size=0
69619<...>-5340 ( 788) [005] d..4 82316.368781: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
69620<...>-5340 ( 788) [005] d..5 82316.368795: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
69621          <idle>-0     (-----) [004] .n.1 82316.368800: cpu_idle: state=4294967295 cpu_id=4
69622<...>-8 ( 8) [001] d.s4 82316.368806: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
69623          <idle>-0     (-----) [004] d..2 82316.368810: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
69624           <...>-27571 (-----) [004] .... 82316.368815: binder_transaction_received: transaction=1570301
69625<...>-5340 ( 788) [005] ...1 82316.368817: tracing_mark_write: E|788
69626<...>-8 ( 8) [001] d.s5 82316.368820: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
69627<...>-5340 ( 788) [005] .... 82316.368824: binder_transaction: transaction=1570302 dest_node=0 dest_proc=27550 dest_thread=27670 reply=1 flags=0x0 code=0x0
69628<...>-8 ( 8) [001] d.s5 82316.368825: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
69629<...>-5340 ( 788) [005] .... 82316.368826: binder_transaction_alloc_buf: transaction=1570302 data_size=8 offsets_size=0
69630<...>-5340 ( 788) [005] d..2 82316.368827: sched_waking: comm=id.nn.benchmark pid=27670 prio=110 target_cpu=005
69631           <...>-27571 (-----) [004] ...1 82316.368833: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
69632<...>-5340 ( 788) [005] d..3 82316.368834: sched_wakeup: comm=id.nn.benchmark pid=27670 prio=110 target_cpu=005
69633<...>-5340 ( 788) [005] .... 82316.368836: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
69634           <...>-27571 (-----) [004] ...1 82316.368840: tracing_mark_write: E|27550
69635<...>-8 ( 8) [001] d..2 82316.368843: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
69636           <...>-27571 (-----) [004] d..2 82316.368870: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69637<...>-5340 ( 788) [005] d..2 82316.368879: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27670 next_prio=110
69638           <...>-27670 (-----) [005] .... 82316.368889: binder_transaction_received: transaction=1570302
69639          <idle>-0     (-----) [004] d..1 82316.368895: cpu_idle: state=0 cpu_id=4
69640          <idle>-0     (-----) [004] ...1 82316.368905: cpu_idle: state=4294967295 cpu_id=4
69641          <idle>-0     (-----) [004] d..1 82316.368909: cpu_idle: state=0 cpu_id=4
69642           <...>-27670 (-----) [005] ...1 82316.368940: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
69643           <...>-27670 (-----) [005] ...1 82316.368946: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
69644  kworker/u16:13-1147  ( 1147) [001] .... 82316.368962: clk_set_rate: l3_cluster0_vote_clk 403200000
69645           <...>-27670 (-----) [005] ...1 82316.368970: tracing_mark_write: E|27550
69646           <...>-27670 (-----) [005] ...1 82316.368974: tracing_mark_write: E|27550
69647           <...>-27670 (-----) [005] ...1 82316.368977: tracing_mark_write: E|27550
69648  kworker/u16:13-1147  ( 1147) [001] d..2 82316.368989: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
69649          <idle>-0     (-----) [001] d..1 82316.369005: cpu_idle: state=0 cpu_id=1
69650           <...>-27670 (-----) [005] ...1 82316.369166: tracing_mark_write: E|27550
69651           <...>-27670 (-----) [005] d..1 82316.369179: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69652           <...>-27670 (-----) [005] d..2 82316.369195: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69653          <idle>-0     (-----) [004] .n.1 82316.369200: cpu_idle: state=4294967295 cpu_id=4
69654          <idle>-0     (-----) [004] d..2 82316.369206: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
69655           <...>-27550 (-----) [004] d..2 82316.369227: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69656          <idle>-0     (-----) [004] d..1 82316.369236: cpu_idle: state=0 cpu_id=4
69657           <...>-27670 (-----) [005] d..1 82316.369285: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69658           <...>-27670 (-----) [005] d..2 82316.369295: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69659          <idle>-0     (-----) [004] .n.1 82316.369300: cpu_idle: state=4294967295 cpu_id=4
69660          <idle>-0     (-----) [004] d..2 82316.369308: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
69661           <...>-27670 (-----) [005] d..2 82316.369335: sched_switch: prev_comm=id.nn.benchmark prev_pid=27670 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
69662           <...>-27550 (-----) [004] ...1 82316.369340: tracing_mark_write: E|27550
69663           <...>-27550 (-----) [004] ...1 82316.369345: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
69664           <...>-27550 (-----) [004] ...1 82316.369351: tracing_mark_write: E|27550
69665           <...>-27550 (-----) [004] ...1 82316.369355: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
69666          <idle>-0     (-----) [005] d..1 82316.369355: cpu_idle: state=0 cpu_id=5
69667           <...>-27550 (-----) [004] ...1 82316.369359: tracing_mark_write: E|27550
69668           <...>-27550 (-----) [004] ...1 82316.369363: tracing_mark_write: E|27550
69669           <...>-27550 (-----) [004] ...1 82316.369476: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
69670           <...>-27550 (-----) [004] ...1 82316.369535: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
69671           <...>-27550 (-----) [004] ...1 82316.369540: tracing_mark_write: E|27550
69672           <...>-27550 (-----) [004] ...1 82316.369544: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
69673           <...>-27550 (-----) [004] ...1 82316.369550: tracing_mark_write: E|27550
69674           <...>-27550 (-----) [004] ...1 82316.369555: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
69675           <...>-27550 (-----) [004] ...1 82316.369560: tracing_mark_write: E|27550
69676           <...>-27550 (-----) [004] ...1 82316.369563: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
69677          <idle>-0     (-----) [005] .n.1 82316.369654: cpu_idle: state=4294967295 cpu_id=5
69678           <...>-27550 (-----) [004] ...1 82316.369655: tracing_mark_write: E|27550
69679           <...>-27550 (-----) [004] ...1 82316.369659: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
69680          <idle>-0     (-----) [005] d..2 82316.369663: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27671 next_prio=110
69681           <...>-27550 (-----) [004] d..2 82316.369676: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69682          <idle>-0     (-----) [004] d..1 82316.369690: cpu_idle: state=0 cpu_id=4
69683           <...>-27671 (-----) [005] ...1 82316.369724: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
69684           <...>-27671 (-----) [005] ...1 82316.369737: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
69685           <...>-27671 (-----) [005] ...1 82316.369741: tracing_mark_write: E|27550
69686           <...>-27671 (-----) [005] .... 82316.369762: binder_transaction: transaction=1570303 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
69687           <...>-27671 (-----) [005] .... 82316.369765: binder_transaction_alloc_buf: transaction=1570303 data_size=48 offsets_size=0
69688           <...>-27671 (-----) [005] ...2 82316.369769: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
69689           <...>-27671 (-----) [005] d..4 82316.369771: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
69690           <...>-27671 (-----) [005] dn.5 82316.369782: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
69691           <...>-27671 (-----) [005] d..2 82316.369789: sched_switch: prev_comm=id.nn.benchmark prev_pid=27671 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
69692<...>-770 ( 770) [005] .... 82316.369799: binder_transaction_received: transaction=1570303
69693<...>-770 ( 770) [005] ...1 82316.369821: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
69694<...>-770 ( 770) [005] d..2 82316.369892: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
69695          <idle>-0     (-----) [000] dnh2 82316.369918: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
69696          <idle>-0     (-----) [000] .n.1 82316.369924: cpu_idle: state=4294967295 cpu_id=0
69697<...>-770 ( 770) [005] ...1 82316.369932: tracing_mark_write: E|770
69698          <idle>-0     (-----) [000] d..2 82316.369933: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
69699<...>-770 ( 770) [005] .... 82316.369940: binder_transaction: transaction=1570304 dest_node=0 dest_proc=27550 dest_thread=27671 reply=1 flags=0x0 code=0x0
69700<...>-770 ( 770) [005] .... 82316.369942: binder_transaction_alloc_buf: transaction=1570304 data_size=168 offsets_size=32
69701<...>-770 ( 770) [005] .... 82316.369949: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
69702<...>-770 ( 770) [005] d..2 82316.369985: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27671 next_prio=110
69703           <...>-27671 (-----) [005] .... 82316.369996: binder_transaction_received: transaction=1570304
69704<...>-581 ( 571) [000] d..2 82316.370005: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69705          <idle>-0     (-----) [000] d..1 82316.370019: cpu_idle: state=0 cpu_id=0
69706           <...>-27671 (-----) [005] ...1 82316.370064: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
69707           <...>-27671 (-----) [005] ...1 82316.370069: tracing_mark_write: E|27550
69708           <...>-27671 (-----) [005] .... 82316.370084: binder_transaction: transaction=1570305 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
69709           <...>-27671 (-----) [005] .... 82316.370086: binder_transaction_alloc_buf: transaction=1570305 data_size=48 offsets_size=0
69710           <...>-27671 (-----) [005] ...2 82316.370090: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
69711           <...>-27671 (-----) [005] d..4 82316.370092: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
69712           <...>-27671 (-----) [005] dn.5 82316.370102: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
69713           <...>-27671 (-----) [005] d..2 82316.370108: sched_switch: prev_comm=id.nn.benchmark prev_pid=27671 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
69714<...>-770 ( 770) [005] .... 82316.370117: binder_transaction_received: transaction=1570305
69715<...>-770 ( 770) [005] ...1 82316.370134: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
69716<...>-770 ( 770) [005] d..2 82316.370192: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
69717          <idle>-0     (-----) [000] dnh2 82316.370214: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
69718          <idle>-0     (-----) [000] .n.1 82316.370220: cpu_idle: state=4294967295 cpu_id=0
69719<...>-770 ( 770) [005] ...1 82316.370225: tracing_mark_write: E|770
69720          <idle>-0     (-----) [000] d..2 82316.370229: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
69721<...>-770 ( 770) [005] .... 82316.370232: binder_transaction: transaction=1570306 dest_node=0 dest_proc=27550 dest_thread=27671 reply=1 flags=0x0 code=0x0
69722<...>-770 ( 770) [005] .... 82316.370235: binder_transaction_alloc_buf: transaction=1570306 data_size=168 offsets_size=32
69723<...>-770 ( 770) [005] .... 82316.370241: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
69724<...>-770 ( 770) [005] d..2 82316.370276: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27671 next_prio=110
69725<...>-581 ( 571) [000] d..2 82316.370278: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69726           <...>-27671 (-----) [005] .... 82316.370286: binder_transaction_received: transaction=1570306
69727          <idle>-0     (-----) [000] d..1 82316.370291: cpu_idle: state=0 cpu_id=0
69728          <idle>-0     (-----) [000] d.h5 82316.370453: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
69729          <idle>-0     (-----) [000] d.h6 82316.370471: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
69730          <idle>-0     (-----) [000] d.h5 82316.370475: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
69731          <idle>-0     (-----) [003] .n.1 82316.370477: cpu_idle: state=4294967295 cpu_id=3
69732          <idle>-0     (-----) [000] d.h6 82316.370486: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
69733          <idle>-0     (-----) [003] d..2 82316.370486: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
69734          <idle>-0     (-----) [002] .n.1 82316.370492: cpu_idle: state=4294967295 cpu_id=2
69735          <idle>-0     (-----) [000] ...1 82316.370502: cpu_idle: state=4294967295 cpu_id=0
69736          <idle>-0     (-----) [002] d..2 82316.370503: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
69737          <idle>-0     (-----) [000] d..1 82316.370506: cpu_idle: state=0 cpu_id=0
69738  crtc_event:111-322   (  322) [003] d..2 82316.370518: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69739          <idle>-0     (-----) [003] d..1 82316.370525: cpu_idle: state=0 cpu_id=3
69740           <...>-27671 (-----) [005] ...1 82316.370556: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
69741           <...>-27671 (-----) [005] ...1 82316.370565: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
69742           <...>-27671 (-----) [005] ...1 82316.370569: tracing_mark_write: E|27550
69743           <...>-27671 (-----) [005] .... 82316.370628: binder_transaction: transaction=1570307 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
69744           <...>-27671 (-----) [005] .... 82316.370631: binder_transaction_alloc_buf: transaction=1570307 data_size=556 offsets_size=104
69745 crtc_commit:111-321   (  321) [002] d..2 82316.370644: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
69746           <...>-27671 (-----) [005] ...2 82316.370645: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
69747           <...>-27671 (-----) [005] d..4 82316.370648: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69748          <idle>-0     (-----) [002] d..1 82316.370652: cpu_idle: state=0 cpu_id=2
69749           <...>-27671 (-----) [005] dn.5 82316.370659: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69750           <...>-27671 (-----) [005] d..2 82316.370666: sched_switch: prev_comm=id.nn.benchmark prev_pid=27671 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69751<...>-5340 ( 788) [005] .... 82316.370676: binder_transaction_received: transaction=1570307
69752<...>-5340 ( 788) [005] ...1 82316.370722: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
69753<...>-5340 ( 788) [005] d..2 82316.370766: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69754<...>-5340 ( 788) [005] d..2 82316.370791: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27671 next_prio=110
69755          <idle>-0     (-----) [000] dnh2 82316.370793: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69756          <idle>-0     (-----) [000] .n.1 82316.370798: cpu_idle: state=4294967295 cpu_id=0
69757          <idle>-0     (-----) [000] d..2 82316.370807: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
69758           <...>-27671 (-----) [005] d..2 82316.370814: sched_switch: prev_comm=id.nn.benchmark prev_pid=27671 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69759          <idle>-0     (-----) [005] d..1 82316.370832: cpu_idle: state=0 cpu_id=5
69760<...>-87 ( 87) [000] d..2 82316.370845: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69761          <idle>-0     (-----) [000] d..1 82316.370856: cpu_idle: state=0 cpu_id=0
69762          <idle>-0     (-----) [002] d.h4 82316.370857: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69763          <idle>-0     (-----) [002] dnh5 82316.370872: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69764          <idle>-0     (-----) [002] .n.1 82316.370879: cpu_idle: state=4294967295 cpu_id=2
69765          <idle>-0     (-----) [002] d..2 82316.370887: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
69766<...>-86 ( 86) [002] d..2 82316.370915: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69767          <idle>-0     (-----) [002] d..1 82316.370922: cpu_idle: state=0 cpu_id=2
69768          <idle>-0     (-----) [002] d.h4 82316.370946: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69769          <idle>-0     (-----) [005] dnh2 82316.370967: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69770          <idle>-0     (-----) [005] .n.1 82316.370971: cpu_idle: state=4294967295 cpu_id=5
69771          <idle>-0     (-----) [002] ...1 82316.370979: cpu_idle: state=4294967295 cpu_id=2
69772          <idle>-0     (-----) [005] d..2 82316.370979: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69773          <idle>-0     (-----) [002] d..1 82316.370982: cpu_idle: state=0 cpu_id=2
69774<...>-5340 ( 788) [005] d..1 82316.371032: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69775          <idle>-0     (-----) [000] dnh2 82316.371056: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69776          <idle>-0     (-----) [000] .n.1 82316.371062: cpu_idle: state=4294967295 cpu_id=0
69777          <idle>-0     (-----) [000] d..2 82316.371070: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
69778 neuralnetworks@-13088 (  788) [000] d..2 82316.371110: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69779          <idle>-0     (-----) [000] d..1 82316.371121: cpu_idle: state=0 cpu_id=0
69780<...>-5340 ( 788) [005] d..2 82316.371179: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69781          <idle>-0     (-----) [000] dnh2 82316.371199: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69782<...>-5340 ( 788) [005] d..2 82316.371204: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69783          <idle>-0     (-----) [000] .n.1 82316.371205: cpu_idle: state=4294967295 cpu_id=0
69784          <idle>-0     (-----) [000] d..2 82316.371213: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
69785          <idle>-0     (-----) [005] d..1 82316.371219: cpu_idle: state=0 cpu_id=5
69786<...>-87 ( 87) [000] d..2 82316.371246: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69787          <idle>-0     (-----) [002] d.h4 82316.371249: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69788          <idle>-0     (-----) [000] d..1 82316.371256: cpu_idle: state=0 cpu_id=0
69789          <idle>-0     (-----) [002] dnh5 82316.371258: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
69790          <idle>-0     (-----) [002] .n.1 82316.371265: cpu_idle: state=4294967295 cpu_id=2
69791          <idle>-0     (-----) [002] d..2 82316.371272: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
69792<...>-86 ( 86) [002] d..2 82316.371299: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69793          <idle>-0     (-----) [002] d..1 82316.371305: cpu_idle: state=0 cpu_id=2
69794          <idle>-0     (-----) [005] ...1 82316.371550: cpu_idle: state=4294967295 cpu_id=5
69795          <idle>-0     (-----) [005] d..1 82316.371553: cpu_idle: state=0 cpu_id=5
69796          <idle>-0     (-----) [002] d.s3 82316.371804: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
69797          <idle>-0     (-----) [002] d.s4 82316.371866: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
69798          <idle>-0     (-----) [003] dnH3 82316.371876: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
69799          <idle>-0     (-----) [002] ...1 82316.371892: cpu_idle: state=4294967295 cpu_id=2
69800          <idle>-0     (-----) [003] dnH4 82316.371893: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
69801          <idle>-0     (-----) [002] d..1 82316.371899: cpu_idle: state=0 cpu_id=2
69802          <idle>-0     (-----) [001] .n.1 82316.371900: cpu_idle: state=4294967295 cpu_id=1
69803          <idle>-0     (-----) [003] dns2 82316.371903: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
69804          <idle>-0     (-----) [001] d..2 82316.371911: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
69805          <idle>-0     (-----) [003] dns3 82316.371917: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
69806          <idle>-0     (-----) [003] .n.1 82316.371933: cpu_idle: state=4294967295 cpu_id=3
69807         sugov:0-576   (  576) [001] .... 82316.371938: clk_set_rate: pwrcl_clk 748800000
69808          <idle>-0     (-----) [003] d..2 82316.371940: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
69809         sugov:0-576   (  576) [001] .... 82316.371955: clk_set_rate: cpu3_pwrcl_clk 1056000000
69810  crtc_event:111-322   (  322) [003] d..2 82316.371956: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
69811         sugov:0-576   (  576) [001] .... 82316.371964: clk_set_rate: cpu2_pwrcl_clk 1056000000
69812     rcu_preempt-7     (    7) [003] d..2 82316.371964: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
69813         sugov:0-576   (  576) [001] .... 82316.371971: clk_set_rate: cpu1_pwrcl_clk 1056000000
69814         sugov:0-576   (  576) [001] .... 82316.371978: clk_set_rate: cpu0_pwrcl_clk 748800000
69815     rcu_preempt-7     (    7) [003] d..3 82316.371980: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
69816     rcu_preempt-7     (    7) [003] d..2 82316.371984: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
69817     rcu_preempt-7     (    7) [003] d..3 82316.372006: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
69818     rcu_preempt-7     (    7) [003] d..2 82316.372026: 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
69819         rcuop/4-45    (   45) [003] d..2 82316.372034: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
69820         rcuop/4-45    (   45) [003] d..3 82316.372054: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
69821         rcuop/4-45    (   45) [003] d..2 82316.372066: 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
69822         sugov:0-576   (  576) [001] .... 82316.372090: cpu_frequency: state=748800 cpu_id=0
69823         sugov:0-576   (  576) [001] .... 82316.372111: cpu_frequency: state=748800 cpu_id=1
69824         sugov:0-576   (  576) [001] .... 82316.372116: cpu_frequency: state=748800 cpu_id=2
69825         sugov:0-576   (  576) [001] .... 82316.372121: cpu_frequency: state=748800 cpu_id=3
69826         sugov:0-576   (  576) [001] d..2 82316.372142: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
69827         rcuop/0-10    (   10) [001] d..2 82316.372181: 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
69828          <idle>-0     (-----) [001] d..1 82316.372191: cpu_idle: state=0 cpu_id=1
69829         rcuop/5-53    (   53) [003] d..2 82316.372215: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69830          <idle>-0     (-----) [003] d..1 82316.372230: cpu_idle: state=0 cpu_id=3
69831          <idle>-0     (-----) [000] ...1 82316.372432: cpu_idle: state=4294967295 cpu_id=0
69832          <idle>-0     (-----) [000] d..1 82316.372437: cpu_idle: state=0 cpu_id=0
69833          <idle>-0     (-----) [000] d.h5 82316.372785: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
69834          <idle>-0     (-----) [000] d.h6 82316.372805: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
69835          <idle>-0     (-----) [002] .n.1 82316.372812: cpu_idle: state=4294967295 cpu_id=2
69836          <idle>-0     (-----) [000] ...1 82316.372822: cpu_idle: state=4294967295 cpu_id=0
69837          <idle>-0     (-----) [002] d..2 82316.372824: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
69838          <idle>-0     (-----) [000] d..1 82316.372829: cpu_idle: state=0 cpu_id=0
69839 crtc_commit:111-321   (  321) [002] d..2 82316.372909: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
69840          <idle>-0     (-----) [002] d..1 82316.372923: cpu_idle: state=0 cpu_id=2
69841          <idle>-0     (-----) [002] d.h4 82316.372995: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69842          <idle>-0     (-----) [005] dnh2 82316.373019: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69843          <idle>-0     (-----) [005] .n.1 82316.373022: cpu_idle: state=4294967295 cpu_id=5
69844          <idle>-0     (-----) [005] d..2 82316.373031: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69845          <idle>-0     (-----) [002] ...1 82316.373041: cpu_idle: state=4294967295 cpu_id=2
69846          <idle>-0     (-----) [002] d..1 82316.373047: cpu_idle: state=0 cpu_id=2
69847          <idle>-0     (-----) [000] d.h5 82316.373080: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
69848<...>-5340 ( 788) [005] d..1 82316.373082: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69849          <idle>-0     (-----) [000] d.h6 82316.373097: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
69850          <idle>-0     (-----) [003] .n.1 82316.373103: cpu_idle: state=4294967295 cpu_id=3
69851          <idle>-0     (-----) [003] d..2 82316.373118: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
69852          <idle>-0     (-----) [000] dnh2 82316.373126: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
69853          <idle>-0     (-----) [000] .n.1 82316.373165: cpu_idle: state=4294967295 cpu_id=0
69854<...>-5340 ( 788) [005] ...1 82316.373178: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
69855          <idle>-0     (-----) [000] d..2 82316.373180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
69856  crtc_event:111-322   (  322) [003] d..2 82316.373182: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69857<...>-5340 ( 788) [005] ...1 82316.373182: tracing_mark_write: E|788
69858          <idle>-0     (-----) [003] d..1 82316.373191: cpu_idle: state=0 cpu_id=3
69859<...>-5340 ( 788) [005] .... 82316.373197: binder_transaction: transaction=1570310 dest_node=1570308 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
69860<...>-5340 ( 788) [005] .... 82316.373201: binder_transaction_alloc_buf: transaction=1570310 data_size=60 offsets_size=0
69861<...>-5340 ( 788) [005] d..4 82316.373204: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
69862<...>-5340 ( 788) [005] d..5 82316.373217: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
69863 neuralnetworks@-13088 (  788) [000] d..2 82316.373217: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69864          <idle>-0     (-----) [004] .n.1 82316.373223: cpu_idle: state=4294967295 cpu_id=4
69865          <idle>-0     (-----) [004] d..2 82316.373231: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
69866          <idle>-0     (-----) [000] d..1 82316.373232: cpu_idle: state=0 cpu_id=0
69867           <...>-27571 (-----) [004] .... 82316.373236: binder_transaction_received: transaction=1570310
69868<...>-5340 ( 788) [005] ...1 82316.373239: tracing_mark_write: E|788
69869<...>-5340 ( 788) [005] .... 82316.373245: binder_transaction: transaction=1570311 dest_node=0 dest_proc=27550 dest_thread=27671 reply=1 flags=0x0 code=0x0
69870<...>-5340 ( 788) [005] .... 82316.373248: binder_transaction_alloc_buf: transaction=1570311 data_size=8 offsets_size=0
69871<...>-5340 ( 788) [005] d..2 82316.373250: sched_waking: comm=id.nn.benchmark pid=27671 prio=110 target_cpu=005
69872           <...>-27571 (-----) [004] ...1 82316.373254: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
69873<...>-5340 ( 788) [005] d..3 82316.373258: sched_wakeup: comm=id.nn.benchmark pid=27671 prio=110 target_cpu=005
69874<...>-5340 ( 788) [005] .... 82316.373260: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
69875           <...>-27571 (-----) [004] ...1 82316.373260: tracing_mark_write: E|27550
69876           <...>-27571 (-----) [004] d..2 82316.373289: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69877          <idle>-0     (-----) [004] d..1 82316.373296: cpu_idle: state=0 cpu_id=4
69878<...>-5340 ( 788) [005] d..2 82316.373302: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27671 next_prio=110
69879           <...>-27671 (-----) [005] .... 82316.373312: binder_transaction_received: transaction=1570311
69880           <...>-27671 (-----) [005] ...1 82316.373348: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
69881           <...>-27671 (-----) [005] ...1 82316.373354: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
69882           <...>-27671 (-----) [005] ...1 82316.373380: tracing_mark_write: E|27550
69883           <...>-27671 (-----) [005] ...1 82316.373384: tracing_mark_write: E|27550
69884           <...>-27671 (-----) [005] ...1 82316.373388: tracing_mark_write: E|27550
69885           <...>-27671 (-----) [005] ...1 82316.373580: tracing_mark_write: E|27550
69886           <...>-27671 (-----) [005] d..1 82316.373592: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69887           <...>-27671 (-----) [005] d..2 82316.373609: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69888          <idle>-0     (-----) [004] .n.1 82316.373614: cpu_idle: state=4294967295 cpu_id=4
69889          <idle>-0     (-----) [004] d..2 82316.373620: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
69890           <...>-27550 (-----) [004] d..2 82316.373640: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69891          <idle>-0     (-----) [004] d..1 82316.373648: cpu_idle: state=0 cpu_id=4
69892           <...>-27671 (-----) [005] d..1 82316.373695: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69893           <...>-27671 (-----) [005] d..2 82316.373704: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
69894          <idle>-0     (-----) [004] .n.1 82316.373710: cpu_idle: state=4294967295 cpu_id=4
69895          <idle>-0     (-----) [004] d..2 82316.373717: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
69896           <...>-27671 (-----) [005] d..2 82316.373742: sched_switch: prev_comm=id.nn.benchmark prev_pid=27671 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
69897           <...>-27550 (-----) [004] ...1 82316.373750: tracing_mark_write: E|27550
69898           <...>-27550 (-----) [004] ...1 82316.373755: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
69899           <...>-27550 (-----) [004] ...1 82316.373760: tracing_mark_write: E|27550
69900          <idle>-0     (-----) [005] d..1 82316.373762: cpu_idle: state=0 cpu_id=5
69901           <...>-27550 (-----) [004] ...1 82316.373764: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
69902           <...>-27550 (-----) [004] ...1 82316.373768: tracing_mark_write: E|27550
69903           <...>-27550 (-----) [004] ...1 82316.373772: tracing_mark_write: E|27550
69904           <...>-27550 (-----) [004] ...1 82316.373885: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
69905           <...>-27550 (-----) [004] ...1 82316.373943: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
69906           <...>-27550 (-----) [004] ...1 82316.373947: tracing_mark_write: E|27550
69907           <...>-27550 (-----) [004] ...1 82316.373951: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
69908           <...>-27550 (-----) [004] ...1 82316.373957: tracing_mark_write: E|27550
69909           <...>-27550 (-----) [004] ...1 82316.373961: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
69910           <...>-27550 (-----) [004] ...1 82316.373965: tracing_mark_write: E|27550
69911           <...>-27550 (-----) [004] ...1 82316.373968: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
69912          <idle>-0     (-----) [005] .n.1 82316.374057: cpu_idle: state=4294967295 cpu_id=5
69913           <...>-27550 (-----) [004] ...1 82316.374058: tracing_mark_write: E|27550
69914           <...>-27550 (-----) [004] ...1 82316.374063: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
69915          <idle>-0     (-----) [005] d..2 82316.374066: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27672 next_prio=110
69916           <...>-27550 (-----) [004] d..2 82316.374079: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
69917          <idle>-0     (-----) [004] d..1 82316.374093: cpu_idle: state=0 cpu_id=4
69918           <...>-27672 (-----) [005] ...1 82316.374126: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
69919           <...>-27672 (-----) [005] ...1 82316.374140: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
69920           <...>-27672 (-----) [005] ...1 82316.374144: tracing_mark_write: E|27550
69921           <...>-27672 (-----) [005] .... 82316.374164: binder_transaction: transaction=1570312 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
69922           <...>-27672 (-----) [005] .... 82316.374168: binder_transaction_alloc_buf: transaction=1570312 data_size=48 offsets_size=0
69923           <...>-27672 (-----) [005] ...2 82316.374171: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
69924           <...>-27672 (-----) [005] d..4 82316.374173: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
69925           <...>-27672 (-----) [005] dn.5 82316.374185: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
69926           <...>-27672 (-----) [005] d..2 82316.374191: sched_switch: prev_comm=id.nn.benchmark prev_pid=27672 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
69927<...>-770 ( 770) [005] .... 82316.374201: binder_transaction_received: transaction=1570312
69928<...>-770 ( 770) [005] ...1 82316.374222: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
69929<...>-770 ( 770) [005] d..2 82316.374293: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
69930          <idle>-0     (-----) [000] dnh2 82316.374322: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
69931          <idle>-0     (-----) [000] .n.1 82316.374330: cpu_idle: state=4294967295 cpu_id=0
69932<...>-770 ( 770) [005] ...1 82316.374334: tracing_mark_write: E|770
69933          <idle>-0     (-----) [000] d..2 82316.374341: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
69934<...>-770 ( 770) [005] .... 82316.374341: binder_transaction: transaction=1570313 dest_node=0 dest_proc=27550 dest_thread=27672 reply=1 flags=0x0 code=0x0
69935<...>-770 ( 770) [005] .... 82316.374344: binder_transaction_alloc_buf: transaction=1570313 data_size=168 offsets_size=32
69936<...>-770 ( 770) [005] .... 82316.374351: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
69937<...>-770 ( 770) [005] d..2 82316.374386: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27672 next_prio=110
69938           <...>-27672 (-----) [005] .... 82316.374397: binder_transaction_received: transaction=1570313
69939<...>-581 ( 571) [000] d..2 82316.374426: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69940          <idle>-0     (-----) [000] d..1 82316.374443: cpu_idle: state=0 cpu_id=0
69941           <...>-27672 (-----) [005] ...1 82316.374465: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
69942           <...>-27672 (-----) [005] ...1 82316.374470: tracing_mark_write: E|27550
69943           <...>-27672 (-----) [005] .... 82316.374485: binder_transaction: transaction=1570314 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
69944           <...>-27672 (-----) [005] .... 82316.374487: binder_transaction_alloc_buf: transaction=1570314 data_size=48 offsets_size=0
69945           <...>-27672 (-----) [005] ...2 82316.374489: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
69946           <...>-27672 (-----) [005] d..4 82316.374492: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
69947           <...>-27672 (-----) [005] dn.5 82316.374502: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
69948           <...>-27672 (-----) [005] d..2 82316.374508: sched_switch: prev_comm=id.nn.benchmark prev_pid=27672 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
69949<...>-770 ( 770) [005] .... 82316.374516: binder_transaction_received: transaction=1570314
69950<...>-770 ( 770) [005] ...1 82316.374533: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
69951<...>-770 ( 770) [005] d..2 82316.374589: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
69952          <idle>-0     (-----) [000] dnh2 82316.374614: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
69953          <idle>-0     (-----) [000] .n.1 82316.374621: cpu_idle: state=4294967295 cpu_id=0
69954<...>-770 ( 770) [005] ...1 82316.374623: tracing_mark_write: E|770
69955<...>-770 ( 770) [005] .... 82316.374630: binder_transaction: transaction=1570315 dest_node=0 dest_proc=27550 dest_thread=27672 reply=1 flags=0x0 code=0x0
69956<...>-770 ( 770) [005] .... 82316.374633: binder_transaction_alloc_buf: transaction=1570315 data_size=168 offsets_size=32
69957          <idle>-0     (-----) [000] d..2 82316.374633: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
69958<...>-770 ( 770) [005] .... 82316.374639: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
69959<...>-770 ( 770) [005] d..2 82316.374672: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27672 next_prio=110
69960           <...>-27672 (-----) [005] .... 82316.374683: binder_transaction_received: transaction=1570315
69961<...>-581 ( 571) [000] d..2 82316.374694: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
69962          <idle>-0     (-----) [000] d..1 82316.374710: cpu_idle: state=0 cpu_id=0
69963          <idle>-0     (-----) [003] d.h2 82316.374934: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
69964          <idle>-0     (-----) [003] dnh3 82316.374950: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
69965           <...>-27672 (-----) [005] ...1 82316.374954: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
69966          <idle>-0     (-----) [003] .n.1 82316.374959: cpu_idle: state=4294967295 cpu_id=3
69967           <...>-27672 (-----) [005] ...1 82316.374963: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
69968           <...>-27672 (-----) [005] ...1 82316.374967: tracing_mark_write: E|27550
69969          <idle>-0     (-----) [003] d..2 82316.374970: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
69970        DispSync-8879  ( 8858) [003] d..1 82316.374991: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
69971        DispSync-8879  ( 8858) [003] d..2 82316.375015: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
69972          <idle>-0     (-----) [001] .n.1 82316.375021: cpu_idle: state=4294967295 cpu_id=1
69973           <...>-27672 (-----) [005] .... 82316.375026: binder_transaction: transaction=1570316 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
69974           <...>-27672 (-----) [005] .... 82316.375029: binder_transaction_alloc_buf: transaction=1570316 data_size=556 offsets_size=104
69975          <idle>-0     (-----) [001] d..2 82316.375030: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
69976           <...>-27672 (-----) [005] ...2 82316.375042: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
69977           <...>-27672 (-----) [005] d..4 82316.375045: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69978        DispSync-8879  ( 8858) [003] d..2 82316.375049: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
69979           <...>-27672 (-----) [005] dn.5 82316.375056: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
69980           <...>-27672 (-----) [005] d..2 82316.375063: sched_switch: prev_comm=id.nn.benchmark prev_pid=27672 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
69981          <idle>-0     (-----) [003] d..1 82316.375063: cpu_idle: state=0 cpu_id=3
69982<...>-5340 ( 788) [005] .... 82316.375072: binder_transaction_received: transaction=1570316
69983  appEventThread-8881  ( 8858) [001] d..3 82316.375096: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
69984  appEventThread-8881  ( 8858) [001] d..4 82316.375121: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
69985          <idle>-0     (-----) [000] .n.1 82316.375128: cpu_idle: state=4294967295 cpu_id=0
69986          <idle>-0     (-----) [000] d..2 82316.375143: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
69987<...>-5340 ( 788) [005] ...1 82316.375154: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
69988  appEventThread-8881  ( 8858) [001] d.s2 82316.375160: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
69989  appEventThread-8881  ( 8858) [001] d.s3 82316.375179: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
69990<...>-5340 ( 788) [005] d..2 82316.375195: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69991  appEventThread-8881  ( 8858) [001] d..2 82316.375218: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
69992<...>-5340 ( 788) [005] d..2 82316.375218: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27672 next_prio=110
69993<...>-9105 ( 9105) [000] d.h1 82316.375225: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
69994<...>-8 ( 8) [001] d..2 82316.375228: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
69995           <...>-27672 (-----) [005] d..2 82316.375244: sched_switch: prev_comm=id.nn.benchmark prev_pid=27672 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
69996<...>-8 ( 8) [001] d..3 82316.375247: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
69997<...>-8 ( 8) [001] d..2 82316.375260: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
69998          <idle>-0     (-----) [005] d..1 82316.375261: cpu_idle: state=0 cpu_id=5
69999<...>-46 ( 46) [001] d..2 82316.375272: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
70000<...>-46 ( 46) [001] d..3 82316.375286: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
70001<...>-46 ( 46) [001] d..2 82316.375296: 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
70002<...>-8 ( 8) [001] d..2 82316.375339: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
70003<...>-87 ( 87) [001] d..2 82316.375385: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
70004          <idle>-0     (-----) [002] d.h4 82316.375390: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
70005          <idle>-0     (-----) [001] d..1 82316.375403: cpu_idle: state=0 cpu_id=1
70006          <idle>-0     (-----) [002] d.h5 82316.375433: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
70007          <idle>-0     (-----) [001] .n.1 82316.375440: cpu_idle: state=4294967295 cpu_id=1
70008          <idle>-0     (-----) [002] ...1 82316.375445: cpu_idle: state=4294967295 cpu_id=2
70009          <idle>-0     (-----) [002] d..1 82316.375453: cpu_idle: state=0 cpu_id=2
70010          <idle>-0     (-----) [001] d..2 82316.375453: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
70011          <idle>-0     (-----) [002] d.h4 82316.375482: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70012<...>-9105 ( 9105) [000] .... 82316.375494: binder_transaction: transaction=1570319 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
70013<...>-9105 ( 9105) [000] .... 82316.375501: binder_transaction_alloc_buf: transaction=1570319 data_size=80 offsets_size=0
70014          <idle>-0     (-----) [005] dnh2 82316.375504: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70015<...>-9105 ( 9105) [000] d..4 82316.375507: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
70016          <idle>-0     (-----) [005] .n.1 82316.375509: cpu_idle: state=4294967295 cpu_id=5
70017          <idle>-0     (-----) [005] d..2 82316.375517: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70018          <idle>-0     (-----) [002] ...1 82316.375525: cpu_idle: state=4294967295 cpu_id=2
70019          <idle>-0     (-----) [002] d..1 82316.375530: cpu_idle: state=0 cpu_id=2
70020          <idle>-0     (-----) [002] .n.1 82316.375533: cpu_idle: state=4294967295 cpu_id=2
70021<...>-9105 ( 9105) [000] d..5 82316.375535: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
70022<...>-86 ( 86) [001] d..2 82316.375546: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
70023          <idle>-0     (-----) [002] d..2 82316.375553: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
70024          <idle>-0     (-----) [001] d..1 82316.375559: cpu_idle: state=0 cpu_id=1
70025<...>-13083 ( 8858) [002] .... 82316.375562: binder_transaction_received: transaction=1570319
70026<...>-5340 ( 788) [005] d..1 82316.375568: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
70027<...>-9105 ( 9105) [000] d..3 82316.375576: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
70028<...>-9105 ( 9105) [000] d..4 82316.375609: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
70029<...>-13083 ( 8858) [002] d.h1 82316.375611: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
70030          <idle>-0     (-----) [001] .n.1 82316.375615: cpu_idle: state=4294967295 cpu_id=1
70031<...>-13083 ( 8858) [002] d..1 82316.375621: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
70032          <idle>-0     (-----) [001] d..2 82316.375627: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
70033<...>-13083 ( 8858) [002] d..2 82316.375658: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
70034          <idle>-0     (-----) [003] .n.1 82316.375664: cpu_idle: state=4294967295 cpu_id=3
70035          <idle>-0     (-----) [003] d..2 82316.375676: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
70036    RenderThread-9436  ( 9105) [001] d..2 82316.375692: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
70037<...>-13083 ( 8858) [002] d..2 82316.375696: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
70038          <idle>-0     (-----) [001] d..1 82316.375707: cpu_idle: state=0 cpu_id=1
70039<...>-5340 ( 788) [005] d..2 82316.375731: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
70040  appEventThread-8881  ( 8858) [003] d..2 82316.375734: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70041<...>-9105 ( 9105) [000] d..3 82316.375738: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
70042          <idle>-0     (-----) [003] d..1 82316.375744: cpu_idle: state=0 cpu_id=3
70043          <idle>-0     (-----) [001] dnh2 82316.375756: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
70044 neuralnetworks@-13088 (  788) [002] d..2 82316.375756: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70045<...>-5340 ( 788) [005] d..2 82316.375758: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70046          <idle>-0     (-----) [001] .n.1 82316.375769: cpu_idle: state=4294967295 cpu_id=1
70047          <idle>-0     (-----) [005] d..1 82316.375772: cpu_idle: state=0 cpu_id=5
70048          <idle>-0     (-----) [002] d..1 82316.375774: cpu_idle: state=0 cpu_id=2
70049<...>-9105 ( 9105) [000] d..4 82316.375774: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
70050          <idle>-0     (-----) [003] .n.1 82316.375780: cpu_idle: state=4294967295 cpu_id=3
70051          <idle>-0     (-----) [001] d..2 82316.375782: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
70052          <idle>-0     (-----) [003] d..2 82316.375791: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
70053<...>-9105 ( 9105) [000] d..2 82316.375812: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70054<...>-87 ( 87) [001] d..2 82316.375824: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
70055          <idle>-0     (-----) [002] d.h4 82316.375828: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
70056          <idle>-0     (-----) [000] d..1 82316.375835: cpu_idle: state=0 cpu_id=0
70057          <idle>-0     (-----) [001] d..1 82316.375835: cpu_idle: state=0 cpu_id=1
70058          <idle>-0     (-----) [002] d.h5 82316.375845: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
70059          <idle>-0     (-----) [001] .n.1 82316.375851: cpu_idle: state=4294967295 cpu_id=1
70060          <idle>-0     (-----) [002] ...1 82316.375861: cpu_idle: state=4294967295 cpu_id=2
70061          <idle>-0     (-----) [001] d..2 82316.375863: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
70062          <idle>-0     (-----) [002] d..1 82316.375866: cpu_idle: state=0 cpu_id=2
70063<...>-86 ( 86) [001] d..2 82316.375900: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
70064          <idle>-0     (-----) [001] d..1 82316.375911: cpu_idle: state=0 cpu_id=1
70065    RenderThread-9436  ( 9105) [003] d..1 82316.375940: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
70066    RenderThread-9436  ( 9105) [003] d..2 82316.375962: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
70067          <idle>-0     (-----) [000] .n.1 82316.375970: cpu_idle: state=4294967295 cpu_id=0
70068          <idle>-0     (-----) [000] d..2 82316.375984: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
70069    RenderThread-9436  ( 9105) [003] .... 82316.376037: binder_transaction: transaction=1570320 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
70070    RenderThread-9436  ( 9105) [003] .... 82316.376042: binder_transaction_alloc_buf: transaction=1570320 data_size=104 offsets_size=0
70071    RenderThread-9436  ( 9105) [003] d..4 82316.376048: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
70072<...>-9105 ( 9105) [000] d..2 82316.376072: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70073    RenderThread-9436  ( 9105) [003] dn.5 82316.376072: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
70074    RenderThread-9436  ( 9105) [003] d..2 82316.376083: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
70075          <idle>-0     (-----) [000] d..1 82316.376089: cpu_idle: state=0 cpu_id=0
70076<...>-13083 ( 8858) [003] .... 82316.376091: binder_transaction_received: transaction=1570320
70077          <idle>-0     (-----) [005] ...1 82316.376119: cpu_idle: state=4294967295 cpu_id=5
70078          <idle>-0     (-----) [005] d..1 82316.376123: cpu_idle: state=0 cpu_id=5
70079<...>-13083 ( 8858) [003] .... 82316.376173: binder_transaction: transaction=1570321 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
70080<...>-13083 ( 8858) [003] .... 82316.376178: binder_transaction_alloc_buf: transaction=1570321 data_size=52 offsets_size=8
70081<...>-13083 ( 8858) [003] d..2 82316.376231: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
70082    RenderThread-9436  ( 9105) [003] .... 82316.376241: binder_transaction_received: transaction=1570321
70083    RenderThread-9436  ( 9105) [003] d..2 82316.377307: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
70084          <idle>-0     (-----) [003] d..1 82316.377323: cpu_idle: state=0 cpu_id=3
70085          <idle>-0     (-----) [003] d.h2 82316.377388: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
70086          <idle>-0     (-----) [003] d.h3 82316.377400: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
70087          <idle>-0     (-----) [003] dnh3 82316.377406: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
70088          <idle>-0     (-----) [003] .n.1 82316.377415: cpu_idle: state=4294967295 cpu_id=3
70089          <idle>-0     (-----) [003] d..2 82316.377426: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
70090          <idle>-0     (-----) [000] d.h3 82316.377426: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
70091          <idle>-0     (-----) [000] dnh4 82316.377453: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
70092          <idle>-0     (-----) [002] d.h4 82316.377468: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70093          <idle>-0     (-----) [000] .n.1 82316.377468: cpu_idle: state=4294967295 cpu_id=0
70094          <idle>-0     (-----) [000] d..2 82316.377480: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
70095          <idle>-0     (-----) [005] dnh2 82316.377488: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70096          <idle>-0     (-----) [005] .n.1 82316.377492: cpu_idle: state=4294967295 cpu_id=5
70097          <idle>-0     (-----) [005] d..2 82316.377500: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70098          <idle>-0     (-----) [002] ...1 82316.377510: cpu_idle: state=4294967295 cpu_id=2
70099          <idle>-0     (-----) [002] d..1 82316.377517: cpu_idle: state=0 cpu_id=2
70100 kgsl_worker_thr-258   (  258) [000] d..2 82316.377535: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
70101<...>-5340 ( 788) [005] d..1 82316.377553: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
70102          <idle>-0     (-----) [002] dnh2 82316.377579: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
70103 kgsl_worker_thr-258   (  258) [000] d..3 82316.377582: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
70104          <idle>-0     (-----) [002] .n.1 82316.377585: cpu_idle: state=4294967295 cpu_id=2
70105          <idle>-0     (-----) [002] d..2 82316.377598: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
70106 kgsl_worker_thr-258   (  258) [000] d..2 82316.377634: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
70107<...>-5340 ( 788) [005] ...1 82316.377648: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
70108<...>-5340 ( 788) [005] ...1 82316.377653: tracing_mark_write: E|788
70109    RenderThread-9436  ( 9105) [003] .... 82316.377665: binder_transaction: transaction=1570322 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
70110 neuralnetworks@-13088 (  788) [002] d..2 82316.377668: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70111<...>-5340 ( 788) [005] .... 82316.377671: binder_transaction: transaction=1570323 dest_node=1570317 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
70112    RenderThread-9436  ( 9105) [003] .... 82316.377671: binder_transaction_alloc_buf: transaction=1570322 data_size=192 offsets_size=8
70113<...>-5340 ( 788) [005] .... 82316.377674: binder_transaction_alloc_buf: transaction=1570323 data_size=60 offsets_size=0
70114<...>-5340 ( 788) [005] d..4 82316.377677: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
70115    RenderThread-9436  ( 9105) [003] d..4 82316.377682: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
70116          <idle>-0     (-----) [002] d..1 82316.377682: cpu_idle: state=0 cpu_id=2
70117  kworker/u16:13-1147  ( 1147) [000] d..2 82316.377686: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70118<...>-5340 ( 788) [005] d..5 82316.377690: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
70119          <idle>-0     (-----) [004] .n.1 82316.377696: cpu_idle: state=4294967295 cpu_id=4
70120    RenderThread-9436  ( 9105) [003] dn.5 82316.377699: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
70121          <idle>-0     (-----) [000] d..1 82316.377704: cpu_idle: state=0 cpu_id=0
70122          <idle>-0     (-----) [004] d..2 82316.377705: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
70123    RenderThread-9436  ( 9105) [003] d..2 82316.377709: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
70124           <...>-27571 (-----) [004] .... 82316.377710: binder_transaction_received: transaction=1570323
70125<...>-5340 ( 788) [005] ...1 82316.377714: tracing_mark_write: E|788
70126<...>-13083 ( 8858) [003] .... 82316.377719: binder_transaction_received: transaction=1570322
70127<...>-5340 ( 788) [005] .... 82316.377721: binder_transaction: transaction=1570324 dest_node=0 dest_proc=27550 dest_thread=27672 reply=1 flags=0x0 code=0x0
70128<...>-5340 ( 788) [005] .... 82316.377723: binder_transaction_alloc_buf: transaction=1570324 data_size=8 offsets_size=0
70129<...>-5340 ( 788) [005] d..2 82316.377725: sched_waking: comm=id.nn.benchmark pid=27672 prio=110 target_cpu=005
70130           <...>-27571 (-----) [004] ...1 82316.377730: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
70131<...>-5340 ( 788) [005] d..3 82316.377732: sched_wakeup: comm=id.nn.benchmark pid=27672 prio=110 target_cpu=005
70132<...>-5340 ( 788) [005] .... 82316.377734: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
70133           <...>-27571 (-----) [004] ...1 82316.377736: tracing_mark_write: E|27550
70134           <...>-27571 (-----) [004] d..2 82316.377765: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70135          <idle>-0     (-----) [004] d..1 82316.377773: cpu_idle: state=0 cpu_id=4
70136<...>-5340 ( 788) [005] d..2 82316.377776: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27672 next_prio=110
70137           <...>-27672 (-----) [005] .... 82316.377786: binder_transaction_received: transaction=1570324
70138           <...>-27672 (-----) [005] ...1 82316.377824: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
70139           <...>-27672 (-----) [005] ...1 82316.377832: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
70140           <...>-27672 (-----) [005] ...1 82316.377858: tracing_mark_write: E|27550
70141           <...>-27672 (-----) [005] ...1 82316.377862: tracing_mark_write: E|27550
70142           <...>-27672 (-----) [005] ...1 82316.377865: tracing_mark_write: E|27550
70143<...>-13083 ( 8858) [003] .... 82316.377887: binder_transaction: transaction=1570325 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
70144<...>-13083 ( 8858) [003] .... 82316.377892: binder_transaction_alloc_buf: transaction=1570325 data_size=68 offsets_size=0
70145<...>-13083 ( 8858) [003] d..2 82316.377938: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
70146    RenderThread-9436  ( 9105) [003] .... 82316.377948: binder_transaction_received: transaction=1570325
70147           <...>-27672 (-----) [005] ...1 82316.378058: tracing_mark_write: E|27550
70148           <...>-27672 (-----) [005] d..1 82316.378072: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70149    RenderThread-9436  ( 9105) [003] d..2 82316.378081: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70150           <...>-27672 (-----) [005] d..2 82316.378088: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70151          <idle>-0     (-----) [004] .n.1 82316.378093: cpu_idle: state=4294967295 cpu_id=4
70152          <idle>-0     (-----) [003] d..1 82316.378096: cpu_idle: state=0 cpu_id=3
70153          <idle>-0     (-----) [004] d..2 82316.378100: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
70154           <...>-27550 (-----) [004] d..2 82316.378119: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70155          <idle>-0     (-----) [004] d..1 82316.378128: cpu_idle: state=0 cpu_id=4
70156           <...>-27672 (-----) [005] d..1 82316.378183: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70157           <...>-27672 (-----) [005] d..2 82316.378193: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70158          <idle>-0     (-----) [004] .n.1 82316.378198: cpu_idle: state=4294967295 cpu_id=4
70159          <idle>-0     (-----) [004] d..2 82316.378205: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
70160           <...>-27672 (-----) [005] d..2 82316.378232: sched_switch: prev_comm=id.nn.benchmark prev_pid=27672 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
70161           <...>-27550 (-----) [004] ...1 82316.378240: tracing_mark_write: E|27550
70162           <...>-27550 (-----) [004] ...1 82316.378244: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
70163           <...>-27550 (-----) [004] ...1 82316.378250: tracing_mark_write: E|27550
70164          <idle>-0     (-----) [005] d..1 82316.378253: cpu_idle: state=0 cpu_id=5
70165           <...>-27550 (-----) [004] ...1 82316.378254: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
70166           <...>-27550 (-----) [004] ...1 82316.378258: tracing_mark_write: E|27550
70167           <...>-27550 (-----) [004] ...1 82316.378262: tracing_mark_write: E|27550
70168           <...>-27550 (-----) [004] ...1 82316.378375: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
70169           <...>-27550 (-----) [004] ...1 82316.378433: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
70170           <...>-27550 (-----) [004] d.s2 82316.378470: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
70171          <idle>-0     (-----) [003] d.s2 82316.378472: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
70172           <...>-27550 (-----) [004] ...1 82316.378491: tracing_mark_write: E|27550
70173          <idle>-0     (-----) [000] dnh2 82316.378495: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
70174          <idle>-0     (-----) [003] dns3 82316.378495: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
70175           <...>-27550 (-----) [004] ...1 82316.378496: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
70176           <...>-27550 (-----) [004] ...1 82316.378502: tracing_mark_write: E|27550
70177          <idle>-0     (-----) [000] .n.1 82316.378502: cpu_idle: state=4294967295 cpu_id=0
70178           <...>-27550 (-----) [004] ...1 82316.378505: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
70179          <idle>-0     (-----) [003] .n.1 82316.378509: cpu_idle: state=4294967295 cpu_id=3
70180           <...>-27550 (-----) [004] ...1 82316.378509: tracing_mark_write: E|27550
70181           <...>-27550 (-----) [004] ...1 82316.378513: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
70182          <idle>-0     (-----) [000] d..2 82316.378516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
70183          <idle>-0     (-----) [003] d..2 82316.378519: 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
70184     rcu_preempt-7     (    7) [003] d..2 82316.378558: 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
70185          <idle>-0     (-----) [003] d..1 82316.378603: cpu_idle: state=0 cpu_id=3
70186          <idle>-0     (-----) [005] .n.1 82316.378607: cpu_idle: state=4294967295 cpu_id=5
70187           <...>-27550 (-----) [004] ...1 82316.378608: tracing_mark_write: E|27550
70188  kworker/u16:13-1147  ( 1147) [000] .... 82316.378608: clk_set_rate: l3_cluster0_vote_clk 300000000
70189           <...>-27550 (-----) [004] ...1 82316.378612: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
70190          <idle>-0     (-----) [005] d..2 82316.378617: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27673 next_prio=110
70191           <...>-27550 (-----) [004] d..2 82316.378630: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70192          <idle>-0     (-----) [004] d..1 82316.378668: cpu_idle: state=0 cpu_id=4
70193           <...>-27673 (-----) [005] ...1 82316.378693: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
70194           <...>-27673 (-----) [005] ...1 82316.378708: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
70195           <...>-27673 (-----) [005] ...1 82316.378711: tracing_mark_write: E|27550
70196           <...>-27673 (-----) [005] .... 82316.378733: binder_transaction: transaction=1570326 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
70197           <...>-27673 (-----) [005] .... 82316.378736: binder_transaction_alloc_buf: transaction=1570326 data_size=48 offsets_size=0
70198           <...>-27673 (-----) [005] ...2 82316.378739: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
70199           <...>-27673 (-----) [005] d..4 82316.378742: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
70200           <...>-27673 (-----) [005] dn.5 82316.378753: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
70201           <...>-27673 (-----) [005] d..2 82316.378759: sched_switch: prev_comm=id.nn.benchmark prev_pid=27673 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
70202<...>-770 ( 770) [005] .... 82316.378770: binder_transaction_received: transaction=1570326
70203<...>-770 ( 770) [005] ...1 82316.378795: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
70204          <idle>-0     (-----) [002] ...1 82316.378800: cpu_idle: state=4294967295 cpu_id=2
70205          <idle>-0     (-----) [002] d..1 82316.378805: cpu_idle: state=0 cpu_id=2
70206<...>-770 ( 770) [005] d..2 82316.378881: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
70207  kworker/u16:13-1147  ( 1147) [000] d..2 82316.378901: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
70208          <idle>-0     (-----) [000] dnh3 82316.378916: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
70209          <idle>-0     (-----) [000] d..2 82316.378929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
70210<...>-770 ( 770) [005] ...1 82316.378932: tracing_mark_write: E|770
70211          <idle>-0     (-----) [001] d.s3 82316.378933: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
70212<...>-770 ( 770) [005] .... 82316.378940: binder_transaction: transaction=1570327 dest_node=0 dest_proc=27550 dest_thread=27673 reply=1 flags=0x0 code=0x0
70213<...>-770 ( 770) [005] .... 82316.378942: binder_transaction_alloc_buf: transaction=1570327 data_size=168 offsets_size=32
70214          <idle>-0     (-----) [003] d.h2 82316.378945: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
70215<...>-770 ( 770) [005] .... 82316.378949: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
70216          <idle>-0     (-----) [001] d.s4 82316.378959: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
70217          <idle>-0     (-----) [003] dnh3 82316.378959: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
70218          <idle>-0     (-----) [001] dns4 82316.378965: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
70219          <idle>-0     (-----) [003] .n.1 82316.378968: cpu_idle: state=4294967295 cpu_id=3
70220          <idle>-0     (-----) [001] .n.1 82316.378973: cpu_idle: state=4294967295 cpu_id=1
70221          <idle>-0     (-----) [003] d..2 82316.378979: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
70222<...>-770 ( 770) [005] d..2 82316.378985: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27673 next_prio=110
70223          <idle>-0     (-----) [001] d..2 82316.378987: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
70224           <...>-27673 (-----) [005] .... 82316.378996: binder_transaction_received: transaction=1570327
70225        DispSync-8879  ( 8858) [003] d..1 82316.379002: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
70226        DispSync-8879  ( 8858) [003] d..2 82316.379030: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
70227          <idle>-0     (-----) [002] .n.1 82316.379035: cpu_idle: state=4294967295 cpu_id=2
70228<...>-581 ( 571) [000] d..2 82316.379048: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70229          <idle>-0     (-----) [002] d..2 82316.379048: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
70230        DispSync-8879  ( 8858) [003] d..2 82316.379068: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70231          <idle>-0     (-----) [000] d..1 82316.379069: cpu_idle: state=0 cpu_id=0
70232  kworker/u16:13-1147  ( 1147) [001] d..2 82316.379076: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
70233          <idle>-0     (-----) [003] d..1 82316.379084: cpu_idle: state=0 cpu_id=3
70234           <...>-27673 (-----) [005] ...1 82316.379087: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
70235          <idle>-0     (-----) [001] d..1 82316.379087: cpu_idle: state=0 cpu_id=1
70236           <...>-27673 (-----) [005] ...1 82316.379092: tracing_mark_write: E|27550
70237   sfEventThread-8882  ( 8858) [002] d..3 82316.379095: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
70238           <...>-27673 (-----) [005] .... 82316.379107: binder_transaction: transaction=1570328 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
70239           <...>-27673 (-----) [005] .... 82316.379110: binder_transaction_alloc_buf: transaction=1570328 data_size=48 offsets_size=0
70240           <...>-27673 (-----) [005] ...2 82316.379112: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
70241           <...>-27673 (-----) [005] d..4 82316.379114: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
70242   sfEventThread-8882  ( 8858) [002] d..4 82316.379120: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
70243           <...>-27673 (-----) [005] dn.5 82316.379124: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
70244          <idle>-0     (-----) [003] .n.1 82316.379127: cpu_idle: state=4294967295 cpu_id=3
70245           <...>-27673 (-----) [005] d..2 82316.379131: sched_switch: prev_comm=id.nn.benchmark prev_pid=27673 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
70246          <idle>-0     (-----) [003] d..2 82316.379138: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
70247<...>-770 ( 770) [005] .... 82316.379139: binder_transaction_received: transaction=1570328
70248<...>-770 ( 770) [005] ...1 82316.379156: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
70249   sfEventThread-8882  ( 8858) [002] d..2 82316.379159: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70250          <idle>-0     (-----) [002] d..1 82316.379174: cpu_idle: state=0 cpu_id=2
70251<...>-770 ( 770) [005] d..2 82316.379217: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
70252          <idle>-0     (-----) [000] dnh2 82316.379241: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
70253          <idle>-0     (-----) [000] .n.1 82316.379250: cpu_idle: state=4294967295 cpu_id=0
70254<...>-770 ( 770) [005] ...1 82316.379250: tracing_mark_write: E|770
70255<...>-770 ( 770) [005] .... 82316.379257: binder_transaction: transaction=1570329 dest_node=0 dest_proc=27550 dest_thread=27673 reply=1 flags=0x0 code=0x0
70256<...>-770 ( 770) [005] .... 82316.379260: binder_transaction_alloc_buf: transaction=1570329 data_size=168 offsets_size=32
70257          <idle>-0     (-----) [000] d..2 82316.379262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
70258<...>-770 ( 770) [005] .... 82316.379266: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
70259<...>-770 ( 770) [005] d..2 82316.379301: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27673 next_prio=110
70260           <...>-27673 (-----) [005] .... 82316.379311: binder_transaction_received: transaction=1570329
70261<...>-581 ( 571) [000] d..2 82316.379325: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70262          <idle>-0     (-----) [000] d..1 82316.379342: cpu_idle: state=0 cpu_id=0
70263  surfaceflinger-8858  ( 8858) [003] d..1 82316.379514: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
70264  surfaceflinger-8858  ( 8858) [003] d..2 82316.379538: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
70265          <idle>-0     (-----) [002] .n.1 82316.379544: cpu_idle: state=4294967295 cpu_id=2
70266          <idle>-0     (-----) [002] d..2 82316.379555: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
70267           <...>-27673 (-----) [005] ...1 82316.379583: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
70268           <...>-27673 (-----) [005] ...1 82316.379593: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
70269   sfEventThread-8882  ( 8858) [002] d..2 82316.379594: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70270           <...>-27673 (-----) [005] ...1 82316.379596: tracing_mark_write: E|27550
70271          <idle>-0     (-----) [002] d..1 82316.379605: cpu_idle: state=0 cpu_id=2
70272           <...>-27673 (-----) [005] .... 82316.379662: binder_transaction: transaction=1570330 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
70273           <...>-27673 (-----) [005] .... 82316.379665: binder_transaction_alloc_buf: transaction=1570330 data_size=556 offsets_size=104
70274           <...>-27673 (-----) [005] ...2 82316.379679: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
70275           <...>-27673 (-----) [005] d..4 82316.379681: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70276           <...>-27673 (-----) [005] dn.5 82316.379693: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70277           <...>-27673 (-----) [005] d..2 82316.379699: sched_switch: prev_comm=id.nn.benchmark prev_pid=27673 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70278<...>-5340 ( 788) [005] .... 82316.379709: binder_transaction_received: transaction=1570330
70279  surfaceflinger-8858  ( 8858) [003] ...1 82316.379750: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
70280<...>-5340 ( 788) [005] ...1 82316.379756: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
70281  surfaceflinger-8858  ( 8858) [003] ...1 82316.379758: tracing_mark_write: E|8858
70282<...>-5340 ( 788) [005] d..2 82316.379803: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
70283  surfaceflinger-8858  ( 8858) [003] .... 82316.379813: binder_transaction: transaction=1570333 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
70284  surfaceflinger-8858  ( 8858) [003] .... 82316.379819: binder_transaction_alloc_buf: transaction=1570333 data_size=540 offsets_size=96
70285<...>-5340 ( 788) [005] d..2 82316.379842: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27673 next_prio=110
70286  surfaceflinger-8858  ( 8858) [003] d.h1 82316.379846: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
70287           <...>-27673 (-----) [005] d..2 82316.379865: sched_switch: prev_comm=id.nn.benchmark prev_pid=27673 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70288  surfaceflinger-8858  ( 8858) [003] ...2 82316.379866: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
70289  surfaceflinger-8858  ( 8858) [003] d..4 82316.379876: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
70290          <idle>-0     (-----) [005] d..1 82316.379883: cpu_idle: state=0 cpu_id=5
70291  surfaceflinger-8858  ( 8858) [003] d..5 82316.379896: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
70292          <idle>-0     (-----) [001] .n.1 82316.379903: cpu_idle: state=4294967295 cpu_id=1
70293          <idle>-0     (-----) [001] d..2 82316.379911: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
70294  surfaceflinger-8858  ( 8858) [003] d..2 82316.379919: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
70295 [email protected]   (  619) [001] .... 82316.379923: binder_transaction_received: transaction=1570333
70296<...>-87 ( 87) [003] d..2 82316.379971: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70297 [email protected]   (  619) [001] ...1 82316.379972: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
70298          <idle>-0     (-----) [002] d.h4 82316.379977: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
70299          <idle>-0     (-----) [003] d..1 82316.379988: cpu_idle: state=0 cpu_id=3
70300          <idle>-0     (-----) [002] dnh5 82316.380005: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
70301          <idle>-0     (-----) [002] .n.1 82316.380016: cpu_idle: state=4294967295 cpu_id=2
70302          <idle>-0     (-----) [002] d..2 82316.380029: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
70303<...>-86 ( 86) [002] d.h4 82316.380060: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70304          <idle>-0     (-----) [005] dnh2 82316.380082: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70305          <idle>-0     (-----) [005] .n.1 82316.380086: cpu_idle: state=4294967295 cpu_id=5
70306 [email protected]   (  619) [001] ...1 82316.380088: tracing_mark_write: B|619|HWCSession::PresentDisplay::
70307          <idle>-0     (-----) [005] d..2 82316.380095: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70308<...>-86 ( 86) [002] d..2 82316.380126: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70309          <idle>-0     (-----) [002] d..1 82316.380141: cpu_idle: state=0 cpu_id=2
70310<...>-5340 ( 788) [005] d..1 82316.380150: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
70311 [email protected]   (  619) [001] d.h1 82316.380192: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
70312 [email protected]   (  619) [001] ...1 82316.380297: tracing_mark_write: B|619|HWDeviceDRM::Commit::
70313 [email protected]   (  619) [001] ...1 82316.380312: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
70314<...>-5340 ( 788) [005] d..2 82316.380312: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
70315          <idle>-0     (-----) [003] dnh2 82316.380336: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
70316<...>-5340 ( 788) [005] d..2 82316.380337: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70317          <idle>-0     (-----) [003] .n.1 82316.380342: cpu_idle: state=4294967295 cpu_id=3
70318          <idle>-0     (-----) [005] d..1 82316.380352: cpu_idle: state=0 cpu_id=5
70319          <idle>-0     (-----) [003] d..2 82316.380355: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
70320          <idle>-0     (-----) [002] d.h4 82316.380395: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
70321<...>-87 ( 87) [003] d..2 82316.380395: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70322          <idle>-0     (-----) [003] d..1 82316.380407: cpu_idle: state=0 cpu_id=3
70323          <idle>-0     (-----) [002] dnh5 82316.380407: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
70324          <idle>-0     (-----) [002] .n.1 82316.380417: cpu_idle: state=4294967295 cpu_id=2
70325          <idle>-0     (-----) [002] d..2 82316.380429: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
70326<...>-86 ( 86) [002] d..2 82316.380470: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70327          <idle>-0     (-----) [002] d..1 82316.380483: cpu_idle: state=0 cpu_id=2
70328          <idle>-0     (-----) [005] ...1 82316.380729: cpu_idle: state=4294967295 cpu_id=5
70329          <idle>-0     (-----) [005] d..1 82316.380733: cpu_idle: state=0 cpu_id=5
70330          <idle>-0     (-----) [000] ...1 82316.380917: cpu_idle: state=4294967295 cpu_id=0
70331          <idle>-0     (-----) [000] d..1 82316.380922: cpu_idle: state=0 cpu_id=0
70332 [email protected]   (  619) [001] d..2 82316.380969: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
70333 [email protected]   (  619) [001] d..3 82316.380994: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
70334          <idle>-0     (-----) [002] .n.1 82316.381000: cpu_idle: state=4294967295 cpu_id=2
70335          <idle>-0     (-----) [002] d..2 82316.381011: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
70336 [email protected]   (  619) [001] ...1 82316.381102: tracing_mark_write: E|619
70337 [email protected]   (  619) [001] ...1 82316.381109: tracing_mark_write: E|619
70338 [email protected]   (  619) [001] ...1 82316.381175: tracing_mark_write: E|619
70339 [email protected]   (  619) [001] ...1 82316.381223: tracing_mark_write: E|619
70340 [email protected]   (  619) [001] .... 82316.381239: binder_transaction: transaction=1570334 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
70341 [email protected]   (  619) [001] .... 82316.381243: binder_transaction_alloc_buf: transaction=1570334 data_size=576 offsets_size=112
70342 [email protected]   (  619) [001] d..2 82316.381266: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
70343 [email protected]   (  619) [001] d..3 82316.381285: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
70344          <idle>-0     (-----) [003] .n.1 82316.381290: cpu_idle: state=4294967295 cpu_id=3
70345 [email protected]   (  619) [001] .... 82316.381290: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
70346          <idle>-0     (-----) [003] d..2 82316.381301: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
70347  surfaceflinger-8858  ( 8858) [003] .... 82316.381310: binder_transaction_received: transaction=1570334
70348 [email protected]   (  619) [001] d..2 82316.381372: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
70349 neuralnetworks@-13088 (  788) [001] d..2 82316.381434: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
70350          <idle>-0     (-----) [001] d..1 82316.381448: cpu_idle: state=0 cpu_id=1
70351 crtc_commit:111-321   (  321) [002] d..2 82316.381735: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
70352          <idle>-0     (-----) [002] d..1 82316.381752: cpu_idle: state=0 cpu_id=2
70353  surfaceflinger-8858  ( 8858) [003] d..2 82316.381775: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70354          <idle>-0     (-----) [001] d.s2 82316.381811: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
70355          <idle>-0     (-----) [001] dns3 82316.381832: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
70356          <idle>-0     (-----) [003] d..1 82316.381837: cpu_idle: state=0 cpu_id=3
70357          <idle>-0     (-----) [001] .n.1 82316.381854: cpu_idle: state=4294967295 cpu_id=1
70358          <idle>-0     (-----) [001] d..2 82316.381866: 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
70359<...>-8 ( 8) [001] d..2 82316.381879: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
70360<...>-8 ( 8) [001] d..3 82316.381896: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
70361<...>-8 ( 8) [001] d..2 82316.381909: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
70362<...>-46 ( 46) [001] d..2 82316.381942: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
70363<...>-46 ( 46) [001] d..3 82316.381957: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
70364<...>-46 ( 46) [001] d..2 82316.381968: 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
70365<...>-8 ( 8) [001] d..2 82316.381999: 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
70366          <idle>-0     (-----) [001] d..1 82316.382015: cpu_idle: state=0 cpu_id=1
70367          <idle>-0     (-----) [002] d.h4 82316.382024: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70368          <idle>-0     (-----) [005] dnh2 82316.382046: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70369          <idle>-0     (-----) [005] .n.1 82316.382050: cpu_idle: state=4294967295 cpu_id=5
70370          <idle>-0     (-----) [005] d..2 82316.382059: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70371          <idle>-0     (-----) [002] ...1 82316.382070: cpu_idle: state=4294967295 cpu_id=2
70372          <idle>-0     (-----) [002] d..1 82316.382076: cpu_idle: state=0 cpu_id=2
70373<...>-5340 ( 788) [005] d..1 82316.382119: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
70374          <idle>-0     (-----) [001] dnh2 82316.382140: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
70375          <idle>-0     (-----) [001] .n.1 82316.382151: cpu_idle: state=4294967295 cpu_id=1
70376          <idle>-0     (-----) [001] d..2 82316.382163: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
70377<...>-5340 ( 788) [005] ...1 82316.382214: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
70378<...>-5340 ( 788) [005] ...1 82316.382218: tracing_mark_write: E|788
70379<...>-5340 ( 788) [005] .... 82316.382234: binder_transaction: transaction=1570335 dest_node=1570331 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
70380 neuralnetworks@-13088 (  788) [001] d..2 82316.382234: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
70381<...>-5340 ( 788) [005] .... 82316.382237: binder_transaction_alloc_buf: transaction=1570335 data_size=60 offsets_size=0
70382<...>-5340 ( 788) [005] d..4 82316.382240: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
70383          <idle>-0     (-----) [001] d..1 82316.382247: cpu_idle: state=0 cpu_id=1
70384<...>-5340 ( 788) [005] d..5 82316.382253: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
70385          <idle>-0     (-----) [004] .n.1 82316.382258: cpu_idle: state=4294967295 cpu_id=4
70386          <idle>-0     (-----) [004] d..2 82316.382266: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
70387           <...>-27571 (-----) [004] .... 82316.382271: binder_transaction_received: transaction=1570335
70388<...>-5340 ( 788) [005] ...1 82316.382276: tracing_mark_write: E|788
70389<...>-5340 ( 788) [005] .... 82316.382282: binder_transaction: transaction=1570336 dest_node=0 dest_proc=27550 dest_thread=27673 reply=1 flags=0x0 code=0x0
70390<...>-5340 ( 788) [005] .... 82316.382284: binder_transaction_alloc_buf: transaction=1570336 data_size=8 offsets_size=0
70391<...>-5340 ( 788) [005] d..2 82316.382286: sched_waking: comm=id.nn.benchmark pid=27673 prio=110 target_cpu=005
70392           <...>-27571 (-----) [004] ...1 82316.382291: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
70393<...>-5340 ( 788) [005] d..3 82316.382293: sched_wakeup: comm=id.nn.benchmark pid=27673 prio=110 target_cpu=005
70394<...>-5340 ( 788) [005] .... 82316.382295: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
70395           <...>-27571 (-----) [004] ...1 82316.382297: tracing_mark_write: E|27550
70396           <...>-27571 (-----) [004] d..2 82316.382327: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70397          <idle>-0     (-----) [004] d..1 82316.382335: cpu_idle: state=0 cpu_id=4
70398<...>-5340 ( 788) [005] d..2 82316.382338: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27673 next_prio=110
70399           <...>-27673 (-----) [005] .... 82316.382348: binder_transaction_received: transaction=1570336
70400           <...>-27673 (-----) [005] ...1 82316.382385: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
70401           <...>-27673 (-----) [005] ...1 82316.382391: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
70402           <...>-27673 (-----) [005] ...1 82316.382417: tracing_mark_write: E|27550
70403           <...>-27673 (-----) [005] ...1 82316.382422: tracing_mark_write: E|27550
70404           <...>-27673 (-----) [005] ...1 82316.382425: tracing_mark_write: E|27550
70405           <...>-27673 (-----) [005] ...1 82316.382618: tracing_mark_write: E|27550
70406           <...>-27673 (-----) [005] d..1 82316.382632: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70407           <...>-27673 (-----) [005] d..2 82316.382648: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70408          <idle>-0     (-----) [004] .n.1 82316.382653: cpu_idle: state=4294967295 cpu_id=4
70409          <idle>-0     (-----) [004] d..2 82316.382660: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
70410           <...>-27550 (-----) [004] d..2 82316.382680: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70411          <idle>-0     (-----) [004] d..1 82316.382689: cpu_idle: state=0 cpu_id=4
70412           <...>-27673 (-----) [005] d..1 82316.382741: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70413           <...>-27673 (-----) [005] d..2 82316.382750: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70414          <idle>-0     (-----) [004] .n.1 82316.382756: cpu_idle: state=4294967295 cpu_id=4
70415          <idle>-0     (-----) [004] d..2 82316.382763: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
70416           <...>-27673 (-----) [005] d..2 82316.382792: sched_switch: prev_comm=id.nn.benchmark prev_pid=27673 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
70417           <...>-27550 (-----) [004] ...1 82316.382811: tracing_mark_write: E|27550
70418           <...>-27550 (-----) [004] ...1 82316.382815: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
70419          <idle>-0     (-----) [005] d..1 82316.382818: cpu_idle: state=0 cpu_id=5
70420           <...>-27550 (-----) [004] ...1 82316.382821: tracing_mark_write: E|27550
70421           <...>-27550 (-----) [004] ...1 82316.382826: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
70422           <...>-27550 (-----) [004] ...1 82316.382830: tracing_mark_write: E|27550
70423           <...>-27550 (-----) [004] ...1 82316.382835: tracing_mark_write: E|27550
70424           <...>-27550 (-----) [004] ...1 82316.382948: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
70425           <...>-27550 (-----) [004] ...1 82316.383006: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
70426           <...>-27550 (-----) [004] ...1 82316.383011: tracing_mark_write: E|27550
70427           <...>-27550 (-----) [004] ...1 82316.383014: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
70428           <...>-27550 (-----) [004] ...1 82316.383020: tracing_mark_write: E|27550
70429           <...>-27550 (-----) [004] ...1 82316.383024: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
70430           <...>-27550 (-----) [004] ...1 82316.383028: tracing_mark_write: E|27550
70431           <...>-27550 (-----) [004] ...1 82316.383031: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
70432          <idle>-0     (-----) [005] .n.1 82316.383119: cpu_idle: state=4294967295 cpu_id=5
70433           <...>-27550 (-----) [004] ...1 82316.383121: tracing_mark_write: E|27550
70434           <...>-27550 (-----) [004] ...1 82316.383125: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
70435          <idle>-0     (-----) [005] d..2 82316.383128: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27674 next_prio=110
70436           <...>-27550 (-----) [004] d..2 82316.383142: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70437          <idle>-0     (-----) [004] d..1 82316.383157: cpu_idle: state=0 cpu_id=4
70438           <...>-27674 (-----) [005] ...1 82316.383189: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
70439           <...>-27674 (-----) [005] ...1 82316.383204: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
70440           <...>-27674 (-----) [005] ...1 82316.383207: tracing_mark_write: E|27550
70441           <...>-27674 (-----) [005] .... 82316.383229: binder_transaction: transaction=1570337 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
70442           <...>-27674 (-----) [005] .... 82316.383232: binder_transaction_alloc_buf: transaction=1570337 data_size=48 offsets_size=0
70443           <...>-27674 (-----) [005] ...2 82316.383235: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
70444           <...>-27674 (-----) [005] d..4 82316.383238: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
70445           <...>-27674 (-----) [005] dn.5 82316.383248: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
70446           <...>-27674 (-----) [005] d..2 82316.383255: sched_switch: prev_comm=id.nn.benchmark prev_pid=27674 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
70447<...>-770 ( 770) [005] .... 82316.383265: binder_transaction_received: transaction=1570337
70448<...>-770 ( 770) [005] ...1 82316.383289: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
70449<...>-770 ( 770) [005] d..2 82316.383369: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
70450          <idle>-0     (-----) [000] dnh2 82316.383398: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
70451          <idle>-0     (-----) [000] .n.1 82316.383403: cpu_idle: state=4294967295 cpu_id=0
70452<...>-770 ( 770) [005] ...1 82316.383410: tracing_mark_write: E|770
70453          <idle>-0     (-----) [000] d..2 82316.383416: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
70454<...>-770 ( 770) [005] .... 82316.383418: binder_transaction: transaction=1570338 dest_node=0 dest_proc=27550 dest_thread=27674 reply=1 flags=0x0 code=0x0
70455<...>-770 ( 770) [005] .... 82316.383421: binder_transaction_alloc_buf: transaction=1570338 data_size=168 offsets_size=32
70456<...>-770 ( 770) [005] .... 82316.383427: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
70457<...>-770 ( 770) [005] d..2 82316.383463: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27674 next_prio=110
70458           <...>-27674 (-----) [005] .... 82316.383474: binder_transaction_received: transaction=1570338
70459<...>-581 ( 571) [000] d..2 82316.383489: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70460          <idle>-0     (-----) [000] d..1 82316.383506: cpu_idle: state=0 cpu_id=0
70461           <...>-27674 (-----) [005] ...1 82316.383544: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
70462           <...>-27674 (-----) [005] ...1 82316.383549: tracing_mark_write: E|27550
70463           <...>-27674 (-----) [005] .... 82316.383563: binder_transaction: transaction=1570339 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
70464           <...>-27674 (-----) [005] .... 82316.383566: binder_transaction_alloc_buf: transaction=1570339 data_size=48 offsets_size=0
70465           <...>-27674 (-----) [005] ...2 82316.383568: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
70466           <...>-27674 (-----) [005] d..4 82316.383571: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
70467           <...>-27674 (-----) [005] dn.5 82316.383581: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
70468           <...>-27674 (-----) [005] d..2 82316.383588: sched_switch: prev_comm=id.nn.benchmark prev_pid=27674 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
70469<...>-770 ( 770) [005] .... 82316.383596: binder_transaction_received: transaction=1570339
70470<...>-770 ( 770) [005] ...1 82316.383613: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
70471<...>-770 ( 770) [005] d..2 82316.383670: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
70472          <idle>-0     (-----) [000] dnh2 82316.383694: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
70473          <idle>-0     (-----) [000] .n.1 82316.383702: cpu_idle: state=4294967295 cpu_id=0
70474<...>-770 ( 770) [005] ...1 82316.383704: tracing_mark_write: E|770
70475<...>-770 ( 770) [005] .... 82316.383711: binder_transaction: transaction=1570340 dest_node=0 dest_proc=27550 dest_thread=27674 reply=1 flags=0x0 code=0x0
70476<...>-770 ( 770) [005] .... 82316.383713: binder_transaction_alloc_buf: transaction=1570340 data_size=168 offsets_size=32
70477          <idle>-0     (-----) [000] d..2 82316.383713: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
70478<...>-770 ( 770) [005] .... 82316.383719: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
70479<...>-770 ( 770) [005] d..2 82316.383753: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27674 next_prio=110
70480           <...>-27674 (-----) [005] .... 82316.383764: binder_transaction_received: transaction=1570340
70481<...>-581 ( 571) [000] d..2 82316.383774: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70482          <idle>-0     (-----) [000] d..1 82316.383790: cpu_idle: state=0 cpu_id=0
70483           <...>-27674 (-----) [005] ...1 82316.384039: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
70484           <...>-27674 (-----) [005] ...1 82316.384049: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
70485           <...>-27674 (-----) [005] ...1 82316.384052: tracing_mark_write: E|27550
70486           <...>-27674 (-----) [005] .... 82316.384114: binder_transaction: transaction=1570341 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
70487           <...>-27674 (-----) [005] .... 82316.384117: binder_transaction_alloc_buf: transaction=1570341 data_size=556 offsets_size=104
70488           <...>-27674 (-----) [005] ...2 82316.384131: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
70489           <...>-27674 (-----) [005] d..4 82316.384133: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70490           <...>-27674 (-----) [005] dn.5 82316.384144: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70491           <...>-27674 (-----) [005] d..2 82316.384152: sched_switch: prev_comm=id.nn.benchmark prev_pid=27674 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70492<...>-5340 ( 788) [005] .... 82316.384161: binder_transaction_received: transaction=1570341
70493<...>-5340 ( 788) [005] ...1 82316.384205: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
70494<...>-5340 ( 788) [005] d..2 82316.384249: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
70495<...>-5340 ( 788) [005] d..2 82316.384285: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27674 next_prio=110
70496          <idle>-0     (-----) [000] dnh2 82316.384290: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
70497          <idle>-0     (-----) [000] .n.1 82316.384298: cpu_idle: state=4294967295 cpu_id=0
70498           <...>-27674 (-----) [005] d..2 82316.384308: sched_switch: prev_comm=id.nn.benchmark prev_pid=27674 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70499          <idle>-0     (-----) [000] d..2 82316.384310: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
70500          <idle>-0     (-----) [005] d..1 82316.384326: cpu_idle: state=0 cpu_id=5
70501<...>-87 ( 87) [000] d..2 82316.384357: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70502          <idle>-0     (-----) [002] d.h4 82316.384360: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
70503          <idle>-0     (-----) [000] d..1 82316.384371: cpu_idle: state=0 cpu_id=0
70504          <idle>-0     (-----) [002] d.h5 82316.384402: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
70505          <idle>-0     (-----) [000] .n.1 82316.384408: cpu_idle: state=4294967295 cpu_id=0
70506          <idle>-0     (-----) [002] ...1 82316.384413: cpu_idle: state=4294967295 cpu_id=2
70507          <idle>-0     (-----) [000] d..2 82316.384420: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
70508          <idle>-0     (-----) [002] d..1 82316.384422: cpu_idle: state=0 cpu_id=2
70509          <idle>-0     (-----) [002] d.h4 82316.384449: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70510          <idle>-0     (-----) [005] dnh2 82316.384471: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70511          <idle>-0     (-----) [005] .n.1 82316.384475: cpu_idle: state=4294967295 cpu_id=5
70512          <idle>-0     (-----) [005] d..2 82316.384483: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70513          <idle>-0     (-----) [002] ...1 82316.384491: cpu_idle: state=4294967295 cpu_id=2
70514          <idle>-0     (-----) [002] d..1 82316.384496: cpu_idle: state=0 cpu_id=2
70515<...>-86 ( 86) [000] d..2 82316.384502: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70516          <idle>-0     (-----) [000] d..1 82316.384516: cpu_idle: state=0 cpu_id=0
70517<...>-5340 ( 788) [005] d..1 82316.384535: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
70518          <idle>-0     (-----) [000] dnh2 82316.384573: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
70519          <idle>-0     (-----) [000] .n.1 82316.384580: cpu_idle: state=4294967295 cpu_id=0
70520          <idle>-0     (-----) [000] d..2 82316.384592: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
70521 neuralnetworks@-13088 (  788) [000] d..2 82316.384651: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70522          <idle>-0     (-----) [000] d..1 82316.384667: cpu_idle: state=0 cpu_id=0
70523<...>-5340 ( 788) [005] d..2 82316.384692: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
70524          <idle>-0     (-----) [000] dnh2 82316.384715: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
70525<...>-5340 ( 788) [005] d..2 82316.384718: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70526          <idle>-0     (-----) [000] .n.1 82316.384723: cpu_idle: state=4294967295 cpu_id=0
70527          <idle>-0     (-----) [005] d..1 82316.384733: cpu_idle: state=0 cpu_id=5
70528          <idle>-0     (-----) [000] d..2 82316.384735: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
70529          <idle>-0     (-----) [002] d.h4 82316.384773: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
70530<...>-87 ( 87) [000] d..2 82316.384777: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70531          <idle>-0     (-----) [002] d.h5 82316.384793: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
70532          <idle>-0     (-----) [000] d..2 82316.384802: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
70533          <idle>-0     (-----) [002] ...1 82316.384813: cpu_idle: state=4294967295 cpu_id=2
70534          <idle>-0     (-----) [002] d..1 82316.384821: cpu_idle: state=0 cpu_id=2
70535<...>-86 ( 86) [000] d..2 82316.384844: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70536          <idle>-0     (-----) [000] d..1 82316.384855: cpu_idle: state=0 cpu_id=0
70537          <idle>-0     (-----) [005] ...1 82316.385087: cpu_idle: state=4294967295 cpu_id=5
70538          <idle>-0     (-----) [005] d..1 82316.385091: cpu_idle: state=0 cpu_id=5
70539          <idle>-0     (-----) [003] d.s2 82316.385135: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
70540          <idle>-0     (-----) [003] dns3 82316.385157: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
70541          <idle>-0     (-----) [003] dns3 82316.385165: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
70542          <idle>-0     (-----) [003] dns4 82316.385201: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
70543          <idle>-0     (-----) [003] .n.1 82316.385212: cpu_idle: state=4294967295 cpu_id=3
70544          <idle>-0     (-----) [003] d..2 82316.385223: 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
70545     rcu_preempt-7     (    7) [003] d..2 82316.385234: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
70546     rcu_preempt-7     (    7) [003] d..3 82316.385271: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
70547     rcu_preempt-7     (    7) [003] d..2 82316.385289: 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
70548         rcuop/2-29    (   29) [003] d..2 82316.385296: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
70549         rcuop/2-29    (   29) [003] d..3 82316.385336: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
70550          <idle>-0     (-----) [000] .n.1 82316.385342: cpu_idle: state=4294967295 cpu_id=0
70551         rcuop/2-29    (   29) [003] d..2 82316.385349: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
70552          <idle>-0     (-----) [000] d..2 82316.385357: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
70553         rcuop/3-37    (   37) [000] d..2 82316.385396: 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
70554          <idle>-0     (-----) [000] d..1 82316.385409: cpu_idle: state=0 cpu_id=0
70555  kworker/u16:13-1147  ( 1147) [003] d..2 82316.385427: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70556          <idle>-0     (-----) [003] d..1 82316.385442: cpu_idle: state=0 cpu_id=3
70557          <idle>-0     (-----) [002] ...1 82316.386090: cpu_idle: state=4294967295 cpu_id=2
70558          <idle>-0     (-----) [002] d..1 82316.386095: cpu_idle: state=0 cpu_id=2
70559          <idle>-0     (-----) [002] d.h4 82316.386513: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70560          <idle>-0     (-----) [005] dnh2 82316.386534: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70561          <idle>-0     (-----) [005] .n.1 82316.386537: cpu_idle: state=4294967295 cpu_id=5
70562          <idle>-0     (-----) [005] d..2 82316.386545: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70563          <idle>-0     (-----) [002] ...1 82316.386552: cpu_idle: state=4294967295 cpu_id=2
70564          <idle>-0     (-----) [002] d..1 82316.386558: cpu_idle: state=0 cpu_id=2
70565<...>-5340 ( 788) [005] d..1 82316.386595: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
70566          <idle>-0     (-----) [000] dnh2 82316.386622: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
70567          <idle>-0     (-----) [000] .n.1 82316.386643: cpu_idle: state=4294967295 cpu_id=0
70568          <idle>-0     (-----) [000] d..2 82316.386686: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
70569<...>-5340 ( 788) [005] ...1 82316.386689: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
70570<...>-5340 ( 788) [005] ...1 82316.386693: tracing_mark_write: E|788
70571<...>-5340 ( 788) [005] .... 82316.386709: binder_transaction: transaction=1570344 dest_node=1570342 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
70572<...>-5340 ( 788) [005] .... 82316.386711: binder_transaction_alloc_buf: transaction=1570344 data_size=60 offsets_size=0
70573<...>-5340 ( 788) [005] d..4 82316.386714: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
70574 neuralnetworks@-13088 (  788) [000] d..2 82316.386724: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70575<...>-5340 ( 788) [005] d..5 82316.386727: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
70576          <idle>-0     (-----) [004] .n.1 82316.386733: cpu_idle: state=4294967295 cpu_id=4
70577          <idle>-0     (-----) [000] d..1 82316.386737: cpu_idle: state=0 cpu_id=0
70578          <idle>-0     (-----) [004] d..2 82316.386742: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
70579           <...>-27571 (-----) [004] .... 82316.386747: binder_transaction_received: transaction=1570344
70580<...>-5340 ( 788) [005] ...1 82316.386749: tracing_mark_write: E|788
70581<...>-5340 ( 788) [005] .... 82316.386755: binder_transaction: transaction=1570345 dest_node=0 dest_proc=27550 dest_thread=27674 reply=1 flags=0x0 code=0x0
70582<...>-5340 ( 788) [005] .... 82316.386757: binder_transaction_alloc_buf: transaction=1570345 data_size=8 offsets_size=0
70583<...>-5340 ( 788) [005] d..2 82316.386759: sched_waking: comm=id.nn.benchmark pid=27674 prio=110 target_cpu=005
70584           <...>-27571 (-----) [004] ...1 82316.386765: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
70585<...>-5340 ( 788) [005] d..3 82316.386766: sched_wakeup: comm=id.nn.benchmark pid=27674 prio=110 target_cpu=005
70586<...>-5340 ( 788) [005] .... 82316.386767: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
70587           <...>-27571 (-----) [004] ...1 82316.386771: tracing_mark_write: E|27550
70588           <...>-27571 (-----) [004] d..2 82316.386800: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70589          <idle>-0     (-----) [004] d..1 82316.386808: cpu_idle: state=0 cpu_id=4
70590<...>-5340 ( 788) [005] d..2 82316.386809: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27674 next_prio=110
70591           <...>-27674 (-----) [005] .... 82316.386819: binder_transaction_received: transaction=1570345
70592           <...>-27674 (-----) [005] ...1 82316.386855: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
70593           <...>-27674 (-----) [005] ...1 82316.386861: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
70594           <...>-27674 (-----) [005] ...1 82316.386887: tracing_mark_write: E|27550
70595           <...>-27674 (-----) [005] ...1 82316.386890: tracing_mark_write: E|27550
70596           <...>-27674 (-----) [005] ...1 82316.386894: tracing_mark_write: E|27550
70597          <idle>-0     (-----) [000] d.h5 82316.386928: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
70598          <idle>-0     (-----) [000] d.h6 82316.386949: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
70599          <idle>-0     (-----) [000] d.h5 82316.386955: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
70600          <idle>-0     (-----) [003] .n.1 82316.386956: cpu_idle: state=4294967295 cpu_id=3
70601          <idle>-0     (-----) [003] d..2 82316.386968: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
70602          <idle>-0     (-----) [000] d.h6 82316.386969: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
70603          <idle>-0     (-----) [002] .n.1 82316.386975: cpu_idle: state=4294967295 cpu_id=2
70604          <idle>-0     (-----) [000] ...1 82316.387018: cpu_idle: state=4294967295 cpu_id=0
70605          <idle>-0     (-----) [002] d..2 82316.387021: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
70606          <idle>-0     (-----) [000] d..1 82316.387027: cpu_idle: state=0 cpu_id=0
70607  crtc_event:111-322   (  322) [003] d..2 82316.387041: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70608          <idle>-0     (-----) [003] d..1 82316.387052: cpu_idle: state=0 cpu_id=3
70609           <...>-27674 (-----) [005] ...1 82316.387082: tracing_mark_write: E|27550
70610           <...>-27674 (-----) [005] d..1 82316.387095: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70611           <...>-27674 (-----) [005] d..2 82316.387111: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70612          <idle>-0     (-----) [004] .n.1 82316.387115: cpu_idle: state=4294967295 cpu_id=4
70613          <idle>-0     (-----) [004] d..2 82316.387122: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
70614           <...>-27550 (-----) [004] d..2 82316.387142: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70615          <idle>-0     (-----) [004] d..1 82316.387151: cpu_idle: state=0 cpu_id=4
70616 crtc_commit:111-321   (  321) [002] d..2 82316.387180: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
70617          <idle>-0     (-----) [002] d..1 82316.387190: cpu_idle: state=0 cpu_id=2
70618           <...>-27674 (-----) [005] d..1 82316.387195: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70619           <...>-27674 (-----) [005] d..2 82316.387204: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70620          <idle>-0     (-----) [004] .n.1 82316.387210: cpu_idle: state=4294967295 cpu_id=4
70621          <idle>-0     (-----) [004] d..2 82316.387217: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
70622           <...>-27674 (-----) [005] d..2 82316.387244: sched_switch: prev_comm=id.nn.benchmark prev_pid=27674 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
70623           <...>-27550 (-----) [004] ...1 82316.387250: tracing_mark_write: E|27550
70624           <...>-27550 (-----) [004] ...1 82316.387254: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
70625           <...>-27550 (-----) [004] ...1 82316.387260: tracing_mark_write: E|27550
70626           <...>-27550 (-----) [004] ...1 82316.387263: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
70627          <idle>-0     (-----) [005] d..1 82316.387264: cpu_idle: state=0 cpu_id=5
70628           <...>-27550 (-----) [004] ...1 82316.387267: tracing_mark_write: E|27550
70629           <...>-27550 (-----) [004] ...1 82316.387272: tracing_mark_write: E|27550
70630           <...>-27550 (-----) [004] ...1 82316.387385: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
70631           <...>-27550 (-----) [004] ...1 82316.387443: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
70632           <...>-27550 (-----) [004] ...1 82316.387449: tracing_mark_write: E|27550
70633           <...>-27550 (-----) [004] ...1 82316.387453: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
70634           <...>-27550 (-----) [004] ...1 82316.387459: tracing_mark_write: E|27550
70635           <...>-27550 (-----) [004] ...1 82316.387463: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
70636           <...>-27550 (-----) [004] ...1 82316.387467: tracing_mark_write: E|27550
70637           <...>-27550 (-----) [004] ...1 82316.387470: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
70638          <idle>-0     (-----) [005] .n.1 82316.387564: cpu_idle: state=4294967295 cpu_id=5
70639           <...>-27550 (-----) [004] ...1 82316.387567: tracing_mark_write: E|27550
70640           <...>-27550 (-----) [004] ...1 82316.387571: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
70641          <idle>-0     (-----) [005] d..2 82316.387574: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27675 next_prio=110
70642           <...>-27550 (-----) [004] d..2 82316.387588: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70643          <idle>-0     (-----) [004] d..1 82316.387603: cpu_idle: state=0 cpu_id=4
70644           <...>-27675 (-----) [005] ...1 82316.387635: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
70645           <...>-27675 (-----) [005] ...1 82316.387649: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
70646           <...>-27675 (-----) [005] ...1 82316.387654: tracing_mark_write: E|27550
70647           <...>-27675 (-----) [005] .... 82316.387675: binder_transaction: transaction=1570346 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
70648           <...>-27675 (-----) [005] .... 82316.387679: binder_transaction_alloc_buf: transaction=1570346 data_size=48 offsets_size=0
70649           <...>-27675 (-----) [005] ...2 82316.387682: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
70650           <...>-27675 (-----) [005] d..4 82316.387685: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
70651           <...>-27675 (-----) [005] dn.5 82316.387695: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
70652           <...>-27675 (-----) [005] d..2 82316.387702: sched_switch: prev_comm=id.nn.benchmark prev_pid=27675 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
70653<...>-770 ( 770) [005] .... 82316.387712: binder_transaction_received: transaction=1570346
70654<...>-770 ( 770) [005] ...1 82316.387735: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
70655<...>-770 ( 770) [005] d..2 82316.387806: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
70656          <idle>-0     (-----) [000] dnh2 82316.387834: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
70657          <idle>-0     (-----) [000] .n.1 82316.387841: cpu_idle: state=4294967295 cpu_id=0
70658<...>-770 ( 770) [005] ...1 82316.387847: tracing_mark_write: E|770
70659          <idle>-0     (-----) [000] d..2 82316.387853: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
70660<...>-770 ( 770) [005] .... 82316.387855: binder_transaction: transaction=1570347 dest_node=0 dest_proc=27550 dest_thread=27675 reply=1 flags=0x0 code=0x0
70661<...>-770 ( 770) [005] .... 82316.387857: binder_transaction_alloc_buf: transaction=1570347 data_size=168 offsets_size=32
70662<...>-770 ( 770) [005] .... 82316.387864: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
70663<...>-770 ( 770) [005] d..2 82316.387900: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27675 next_prio=110
70664           <...>-27675 (-----) [005] .... 82316.387911: binder_transaction_received: transaction=1570347
70665<...>-581 ( 571) [000] d..2 82316.387947: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70666          <idle>-0     (-----) [000] d..1 82316.387964: cpu_idle: state=0 cpu_id=0
70667           <...>-27675 (-----) [005] ...1 82316.387979: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
70668           <...>-27675 (-----) [005] ...1 82316.387984: tracing_mark_write: E|27550
70669           <...>-27675 (-----) [005] .... 82316.387999: binder_transaction: transaction=1570348 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
70670           <...>-27675 (-----) [005] .... 82316.388002: binder_transaction_alloc_buf: transaction=1570348 data_size=48 offsets_size=0
70671           <...>-27675 (-----) [005] ...2 82316.388005: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
70672           <...>-27675 (-----) [005] d..4 82316.388007: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
70673           <...>-27675 (-----) [005] dn.5 82316.388017: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
70674           <...>-27675 (-----) [005] d..2 82316.388024: sched_switch: prev_comm=id.nn.benchmark prev_pid=27675 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
70675<...>-770 ( 770) [005] .... 82316.388033: binder_transaction_received: transaction=1570348
70676<...>-770 ( 770) [005] ...1 82316.388049: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
70677<...>-770 ( 770) [005] d..2 82316.388107: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
70678          <idle>-0     (-----) [000] dnh2 82316.388132: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
70679          <idle>-0     (-----) [000] .n.1 82316.388139: cpu_idle: state=4294967295 cpu_id=0
70680<...>-770 ( 770) [005] ...1 82316.388140: tracing_mark_write: E|770
70681<...>-770 ( 770) [005] .... 82316.388147: binder_transaction: transaction=1570349 dest_node=0 dest_proc=27550 dest_thread=27675 reply=1 flags=0x0 code=0x0
70682<...>-770 ( 770) [005] .... 82316.388149: binder_transaction_alloc_buf: transaction=1570349 data_size=168 offsets_size=32
70683          <idle>-0     (-----) [000] d..2 82316.388152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
70684<...>-770 ( 770) [005] .... 82316.388155: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
70685<...>-770 ( 770) [005] d..2 82316.388189: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27675 next_prio=110
70686           <...>-27675 (-----) [005] .... 82316.388199: binder_transaction_received: transaction=1570349
70687<...>-581 ( 571) [000] d..2 82316.388215: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70688          <idle>-0     (-----) [000] d..1 82316.388231: cpu_idle: state=0 cpu_id=0
70689           <...>-27675 (-----) [005] d.s2 82316.388471: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
70690          <idle>-0     (-----) [001] d.s2 82316.388472: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
70691          <idle>-0     (-----) [002] d.s3 82316.388474: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
70692          <idle>-0     (-----) [001] dns3 82316.388492: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
70693          <idle>-0     (-----) [002] d.s4 82316.388495: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
70694          <idle>-0     (-----) [003] .n.1 82316.388501: cpu_idle: state=4294967295 cpu_id=3
70695          <idle>-0     (-----) [001] .n.1 82316.388505: cpu_idle: state=4294967295 cpu_id=1
70696          <idle>-0     (-----) [003] d..2 82316.388512: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
70697          <idle>-0     (-----) [001] d..2 82316.388518: 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
70698          <idle>-0     (-----) [000] dnh2 82316.388519: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
70699          <idle>-0     (-----) [000] .n.1 82316.388527: cpu_idle: state=4294967295 cpu_id=0
70700          <idle>-0     (-----) [002] ...1 82316.388527: cpu_idle: state=4294967295 cpu_id=2
70701          <idle>-0     (-----) [002] d..1 82316.388536: cpu_idle: state=0 cpu_id=2
70702          <idle>-0     (-----) [000] d..2 82316.388542: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
70703  crtc_event:111-322   (  322) [003] d..2 82316.388547: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70704<...>-8 ( 8) [001] d..2 82316.388549: 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
70705          <idle>-0     (-----) [003] d..1 82316.388556: cpu_idle: state=0 cpu_id=3
70706           <...>-27675 (-----) [005] ...1 82316.388556: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
70707          <idle>-0     (-----) [001] d..1 82316.388561: cpu_idle: state=0 cpu_id=1
70708           <...>-27675 (-----) [005] ...1 82316.388576: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
70709           <...>-27675 (-----) [005] ...1 82316.388585: tracing_mark_write: E|27550
70710           <...>-27675 (-----) [005] .... 82316.388660: binder_transaction: transaction=1570350 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
70711           <...>-27675 (-----) [005] .... 82316.388663: binder_transaction_alloc_buf: transaction=1570350 data_size=556 offsets_size=104
70712           <...>-27675 (-----) [005] ...2 82316.388677: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
70713           <...>-27675 (-----) [005] d..4 82316.388679: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70714           <...>-27675 (-----) [005] dn.5 82316.388690: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70715           <...>-27675 (-----) [005] d..2 82316.388697: sched_switch: prev_comm=id.nn.benchmark prev_pid=27675 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70716<...>-5340 ( 788) [005] .... 82316.388707: binder_transaction_received: transaction=1570350
70717  kworker/u16:13-1147  ( 1147) [000] d..2 82316.388712: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70718          <idle>-0     (-----) [000] d..1 82316.388728: cpu_idle: state=0 cpu_id=0
70719<...>-5340 ( 788) [005] ...1 82316.388750: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
70720<...>-5340 ( 788) [005] d..2 82316.388796: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
70721<...>-5340 ( 788) [005] d..2 82316.388822: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27675 next_prio=110
70722          <idle>-0     (-----) [000] dnh2 82316.388825: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
70723          <idle>-0     (-----) [000] .n.1 82316.388833: cpu_idle: state=4294967295 cpu_id=0
70724           <...>-27675 (-----) [005] d..2 82316.388843: sched_switch: prev_comm=id.nn.benchmark prev_pid=27675 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70725          <idle>-0     (-----) [000] d..2 82316.388845: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
70726          <idle>-0     (-----) [005] d..1 82316.388861: cpu_idle: state=0 cpu_id=5
70727<...>-87 ( 87) [000] d..2 82316.388891: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70728          <idle>-0     (-----) [002] d.h4 82316.388901: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
70729          <idle>-0     (-----) [000] d..1 82316.388904: cpu_idle: state=0 cpu_id=0
70730          <idle>-0     (-----) [002] dnh5 82316.388937: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
70731          <idle>-0     (-----) [002] .n.1 82316.388948: cpu_idle: state=4294967295 cpu_id=2
70732          <idle>-0     (-----) [002] d..2 82316.388961: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
70733<...>-86 ( 86) [002] d.h4 82316.388992: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70734          <idle>-0     (-----) [005] dnh2 82316.389013: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70735          <idle>-0     (-----) [005] .n.1 82316.389018: cpu_idle: state=4294967295 cpu_id=5
70736          <idle>-0     (-----) [005] d..2 82316.389026: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70737<...>-86 ( 86) [002] d..2 82316.389056: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70738          <idle>-0     (-----) [002] d..1 82316.389072: cpu_idle: state=0 cpu_id=2
70739<...>-5340 ( 788) [005] d..1 82316.389079: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
70740          <idle>-0     (-----) [000] dnh2 82316.389106: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
70741          <idle>-0     (-----) [000] .n.1 82316.389113: cpu_idle: state=4294967295 cpu_id=0
70742          <idle>-0     (-----) [000] d..2 82316.389124: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
70743 neuralnetworks@-13088 (  788) [000] d..2 82316.389178: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70744<...>-5340 ( 788) [005] d..2 82316.389247: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
70745          <idle>-0     (-----) [000] d.h6 82316.389265: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
70746<...>-5340 ( 788) [005] d..2 82316.389272: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70747          <idle>-0     (-----) [000] d.h7 82316.389285: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
70748          <idle>-0     (-----) [005] d..1 82316.389287: cpu_idle: state=0 cpu_id=5
70749          <idle>-0     (-----) [002] .n.1 82316.389292: cpu_idle: state=4294967295 cpu_id=2
70750          <idle>-0     (-----) [002] d..2 82316.389303: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
70751          <idle>-0     (-----) [000] dnh3 82316.389308: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
70752          <idle>-0     (-----) [000] d..2 82316.389319: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
70753 crtc_commit:111-321   (  321) [002] d.h3 82316.389356: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
70754<...>-87 ( 87) [000] d..2 82316.389360: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70755          <idle>-0     (-----) [000] d..1 82316.389377: cpu_idle: state=0 cpu_id=0
70756 crtc_commit:111-321   (  321) [002] d.h4 82316.389385: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
70757          <idle>-0     (-----) [000] .n.1 82316.389392: cpu_idle: state=4294967295 cpu_id=0
70758          <idle>-0     (-----) [000] d..2 82316.389404: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
70759 crtc_commit:111-321   (  321) [002] d..2 82316.389438: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70760<...>-86 ( 86) [000] d..2 82316.389443: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70761          <idle>-0     (-----) [002] d..1 82316.389455: cpu_idle: state=0 cpu_id=2
70762          <idle>-0     (-----) [000] d..1 82316.389457: cpu_idle: state=0 cpu_id=0
70763          <idle>-0     (-----) [000] d.h5 82316.389542: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
70764          <idle>-0     (-----) [000] d.h6 82316.389560: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
70765          <idle>-0     (-----) [003] .n.1 82316.389565: cpu_idle: state=4294967295 cpu_id=3
70766          <idle>-0     (-----) [003] d..2 82316.389573: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
70767          <idle>-0     (-----) [000] ...1 82316.389580: cpu_idle: state=4294967295 cpu_id=0
70768          <idle>-0     (-----) [000] d..1 82316.389586: cpu_idle: state=0 cpu_id=0
70769  crtc_event:111-322   (  322) [003] d..2 82316.389597: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70770          <idle>-0     (-----) [003] d..1 82316.389605: cpu_idle: state=0 cpu_id=3
70771          <idle>-0     (-----) [005] ...1 82316.389616: cpu_idle: state=4294967295 cpu_id=5
70772          <idle>-0     (-----) [005] d..1 82316.389620: cpu_idle: state=0 cpu_id=5
70773          <idle>-0     (-----) [002] d.h4 82316.391047: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70774          <idle>-0     (-----) [005] dnh2 82316.391068: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70775          <idle>-0     (-----) [005] .n.1 82316.391072: cpu_idle: state=4294967295 cpu_id=5
70776          <idle>-0     (-----) [005] d..2 82316.391079: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70777          <idle>-0     (-----) [002] ...1 82316.391089: cpu_idle: state=4294967295 cpu_id=2
70778          <idle>-0     (-----) [002] d..1 82316.391095: cpu_idle: state=0 cpu_id=2
70779<...>-5340 ( 788) [005] d..1 82316.391129: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
70780          <idle>-0     (-----) [000] dnh2 82316.391155: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
70781          <idle>-0     (-----) [000] .n.1 82316.391161: cpu_idle: state=4294967295 cpu_id=0
70782          <idle>-0     (-----) [000] d..2 82316.391173: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
70783<...>-5340 ( 788) [005] ...1 82316.391222: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
70784<...>-5340 ( 788) [005] ...1 82316.391226: tracing_mark_write: E|788
70785<...>-5340 ( 788) [005] .... 82316.391242: binder_transaction: transaction=1570353 dest_node=1570351 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
70786 neuralnetworks@-13088 (  788) [000] d..2 82316.391243: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70787<...>-5340 ( 788) [005] .... 82316.391244: binder_transaction_alloc_buf: transaction=1570353 data_size=60 offsets_size=0
70788<...>-5340 ( 788) [005] d..4 82316.391247: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
70789          <idle>-0     (-----) [000] d..1 82316.391258: cpu_idle: state=0 cpu_id=0
70790<...>-5340 ( 788) [005] d..5 82316.391259: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
70791          <idle>-0     (-----) [004] .n.1 82316.391265: cpu_idle: state=4294967295 cpu_id=4
70792          <idle>-0     (-----) [004] d..2 82316.391273: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
70793           <...>-27571 (-----) [004] .... 82316.391278: binder_transaction_received: transaction=1570353
70794<...>-5340 ( 788) [005] ...1 82316.391282: tracing_mark_write: E|788
70795<...>-5340 ( 788) [005] .... 82316.391288: binder_transaction: transaction=1570354 dest_node=0 dest_proc=27550 dest_thread=27675 reply=1 flags=0x0 code=0x0
70796<...>-5340 ( 788) [005] .... 82316.391290: binder_transaction_alloc_buf: transaction=1570354 data_size=8 offsets_size=0
70797<...>-5340 ( 788) [005] d..2 82316.391292: sched_waking: comm=id.nn.benchmark pid=27675 prio=110 target_cpu=005
70798           <...>-27571 (-----) [004] ...1 82316.391296: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
70799<...>-5340 ( 788) [005] d..3 82316.391299: sched_wakeup: comm=id.nn.benchmark pid=27675 prio=110 target_cpu=005
70800<...>-5340 ( 788) [005] .... 82316.391301: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
70801           <...>-27571 (-----) [004] ...1 82316.391302: tracing_mark_write: E|27550
70802           <...>-27571 (-----) [004] d..2 82316.391331: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70803          <idle>-0     (-----) [004] d..1 82316.391339: cpu_idle: state=0 cpu_id=4
70804<...>-5340 ( 788) [005] d..2 82316.391343: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27675 next_prio=110
70805           <...>-27675 (-----) [005] .... 82316.391353: binder_transaction_received: transaction=1570354
70806           <...>-27675 (-----) [005] ...1 82316.391388: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
70807           <...>-27675 (-----) [005] ...1 82316.391395: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
70808          <idle>-0     (-----) [003] d.h2 82316.391413: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
70809           <...>-27675 (-----) [005] ...1 82316.391421: tracing_mark_write: E|27550
70810           <...>-27675 (-----) [005] ...1 82316.391425: tracing_mark_write: E|27550
70811          <idle>-0     (-----) [003] dnh3 82316.391427: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
70812           <...>-27675 (-----) [005] ...1 82316.391428: tracing_mark_write: E|27550
70813          <idle>-0     (-----) [003] .n.1 82316.391436: cpu_idle: state=4294967295 cpu_id=3
70814          <idle>-0     (-----) [003] d..2 82316.391447: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
70815        DispSync-8879  ( 8858) [003] d..1 82316.391469: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
70816        DispSync-8879  ( 8858) [003] d..2 82316.391493: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
70817          <idle>-0     (-----) [002] .n.1 82316.391498: cpu_idle: state=4294967295 cpu_id=2
70818          <idle>-0     (-----) [002] d..2 82316.391510: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
70819        DispSync-8879  ( 8858) [003] d..2 82316.391560: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70820          <idle>-0     (-----) [003] d..1 82316.391571: cpu_idle: state=0 cpu_id=3
70821  appEventThread-8881  ( 8858) [002] d..3 82316.391608: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
70822           <...>-27675 (-----) [005] ...1 82316.391613: tracing_mark_write: E|27550
70823           <...>-27675 (-----) [005] d..1 82316.391625: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70824  appEventThread-8881  ( 8858) [002] d..4 82316.391629: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
70825          <idle>-0     (-----) [000] .n.1 82316.391635: cpu_idle: state=4294967295 cpu_id=0
70826           <...>-27675 (-----) [005] d..2 82316.391641: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70827          <idle>-0     (-----) [004] .n.1 82316.391646: cpu_idle: state=4294967295 cpu_id=4
70828          <idle>-0     (-----) [000] d..2 82316.391648: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
70829          <idle>-0     (-----) [004] d..2 82316.391652: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
70830           <...>-27550 (-----) [004] d..2 82316.391671: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70831  appEventThread-8881  ( 8858) [002] d..2 82316.391675: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70832          <idle>-0     (-----) [004] d..1 82316.391681: cpu_idle: state=0 cpu_id=4
70833          <idle>-0     (-----) [002] d..1 82316.391692: cpu_idle: state=0 cpu_id=2
70834           <...>-27675 (-----) [005] d..1 82316.391725: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70835           <...>-27675 (-----) [005] d..2 82316.391735: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
70836          <idle>-0     (-----) [004] .n.1 82316.391740: cpu_idle: state=4294967295 cpu_id=4
70837          <idle>-0     (-----) [004] d..2 82316.391748: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
70838           <...>-27675 (-----) [005] d..2 82316.391777: sched_switch: prev_comm=id.nn.benchmark prev_pid=27675 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
70839          <idle>-0     (-----) [003] d.s2 82316.391802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
70840           <...>-27550 (-----) [004] ...1 82316.391815: tracing_mark_write: E|27550
70841           <...>-27550 (-----) [004] ...1 82316.391819: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
70842           <...>-27550 (-----) [004] ...1 82316.391825: tracing_mark_write: E|27550
70843           <...>-27550 (-----) [004] ...1 82316.391828: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
70844           <...>-27550 (-----) [004] ...1 82316.391832: tracing_mark_write: E|27550
70845           <...>-27550 (-----) [004] ...1 82316.391836: tracing_mark_write: E|27550
70846          <idle>-0     (-----) [003] dns3 82316.391847: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
70847          <idle>-0     (-----) [003] .n.1 82316.391866: cpu_idle: state=4294967295 cpu_id=3
70848          <idle>-0     (-----) [003] d..2 82316.391877: 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
70849          <idle>-0     (-----) [005] d..1 82316.391889: cpu_idle: state=0 cpu_id=5
70850     rcu_preempt-7     (    7) [003] d..2 82316.391911: 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
70851          <idle>-0     (-----) [003] d..1 82316.391923: cpu_idle: state=0 cpu_id=3
70852           <...>-27550 (-----) [004] ...1 82316.391948: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
70853           <...>-27550 (-----) [004] ...1 82316.392005: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
70854           <...>-27550 (-----) [004] ...1 82316.392011: tracing_mark_write: E|27550
70855           <...>-27550 (-----) [004] ...1 82316.392014: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
70856           <...>-27550 (-----) [004] ...1 82316.392019: tracing_mark_write: E|27550
70857           <...>-27550 (-----) [004] ...1 82316.392023: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
70858           <...>-27550 (-----) [004] ...1 82316.392027: tracing_mark_write: E|27550
70859           <...>-27550 (-----) [004] ...1 82316.392031: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
70860<...>-9105 ( 9105) [000] .... 82316.392078: binder_transaction: transaction=1570355 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
70861<...>-9105 ( 9105) [000] .... 82316.392085: binder_transaction_alloc_buf: transaction=1570355 data_size=80 offsets_size=0
70862<...>-9105 ( 9105) [000] d..4 82316.392092: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
70863          <idle>-0     (-----) [005] .n.1 82316.392120: cpu_idle: state=4294967295 cpu_id=5
70864           <...>-27550 (-----) [004] ...1 82316.392122: tracing_mark_write: E|27550
70865           <...>-27550 (-----) [004] ...1 82316.392126: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
70866<...>-9105 ( 9105) [000] d..5 82316.392127: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
70867          <idle>-0     (-----) [005] d..2 82316.392129: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27676 next_prio=110
70868          <idle>-0     (-----) [001] .n.1 82316.392132: cpu_idle: state=4294967295 cpu_id=1
70869           <...>-27550 (-----) [004] d..2 82316.392144: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
70870          <idle>-0     (-----) [001] d..2 82316.392147: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
70871<...>-13083 ( 8858) [001] .... 82316.392158: binder_transaction_received: transaction=1570355
70872          <idle>-0     (-----) [004] d..1 82316.392159: cpu_idle: state=0 cpu_id=4
70873<...>-9105 ( 9105) [000] d..3 82316.392169: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
70874           <...>-27676 (-----) [005] ...1 82316.392193: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
70875<...>-9105 ( 9105) [000] d..4 82316.392197: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
70876<...>-13083 ( 8858) [001] d..1 82316.392202: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
70877          <idle>-0     (-----) [002] .n.1 82316.392204: cpu_idle: state=4294967295 cpu_id=2
70878           <...>-27676 (-----) [005] ...1 82316.392206: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
70879           <...>-27676 (-----) [005] ...1 82316.392210: tracing_mark_write: E|27550
70880          <idle>-0     (-----) [002] d..2 82316.392219: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
70881           <...>-27676 (-----) [005] .... 82316.392231: binder_transaction: transaction=1570356 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
70882           <...>-27676 (-----) [005] .... 82316.392235: binder_transaction_alloc_buf: transaction=1570356 data_size=48 offsets_size=0
70883           <...>-27676 (-----) [005] ...2 82316.392238: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
70884<...>-13083 ( 8858) [001] d..2 82316.392240: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
70885           <...>-27676 (-----) [005] d..4 82316.392241: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
70886          <idle>-0     (-----) [003] .n.1 82316.392246: cpu_idle: state=4294967295 cpu_id=3
70887           <...>-27676 (-----) [005] dn.5 82316.392252: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
70888          <idle>-0     (-----) [003] d..2 82316.392258: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
70889           <...>-27676 (-----) [005] d..2 82316.392259: sched_switch: prev_comm=id.nn.benchmark prev_pid=27676 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
70890<...>-770 ( 770) [005] .... 82316.392269: binder_transaction_received: transaction=1570356
70891    RenderThread-9436  ( 9105) [002] d..2 82316.392282: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
70892<...>-770 ( 770) [005] ...1 82316.392291: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
70893<...>-13083 ( 8858) [001] d..2 82316.392292: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
70894          <idle>-0     (-----) [002] d..1 82316.392298: cpu_idle: state=0 cpu_id=2
70895          <idle>-0     (-----) [001] d..1 82316.392304: cpu_idle: state=0 cpu_id=1
70896  appEventThread-8881  ( 8858) [003] d..2 82316.392319: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
70897          <idle>-0     (-----) [003] d..1 82316.392330: cpu_idle: state=0 cpu_id=3
70898<...>-9105 ( 9105) [000] d..3 82316.392332: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
70899<...>-9105 ( 9105) [000] d..4 82316.392352: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
70900          <idle>-0     (-----) [002] .n.1 82316.392359: cpu_idle: state=4294967295 cpu_id=2
70901<...>-770 ( 770) [005] d..2 82316.392363: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
70902          <idle>-0     (-----) [002] d..2 82316.392371: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
70903<...>-9105 ( 9105) [000] d..2 82316.392394: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70904<...>-770 ( 770) [005] ...1 82316.392408: tracing_mark_write: E|770
70905          <idle>-0     (-----) [000] dnh3 82316.392409: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
70906<...>-770 ( 770) [005] .... 82316.392416: binder_transaction: transaction=1570357 dest_node=0 dest_proc=27550 dest_thread=27676 reply=1 flags=0x0 code=0x0
70907<...>-770 ( 770) [005] .... 82316.392418: binder_transaction_alloc_buf: transaction=1570357 data_size=168 offsets_size=32
70908          <idle>-0     (-----) [000] d..2 82316.392421: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
70909<...>-770 ( 770) [005] .... 82316.392425: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
70910<...>-770 ( 770) [005] d..2 82316.392462: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27676 next_prio=110
70911           <...>-27676 (-----) [005] .... 82316.392473: binder_transaction_received: transaction=1570357
70912    RenderThread-9436  ( 9105) [002] d..1 82316.392498: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
70913<...>-581 ( 571) [000] d..2 82316.392512: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70914    RenderThread-9436  ( 9105) [002] d..2 82316.392533: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
70915          <idle>-0     (-----) [000] d..1 82316.392535: cpu_idle: state=0 cpu_id=0
70916          <idle>-0     (-----) [001] .n.1 82316.392539: cpu_idle: state=4294967295 cpu_id=1
70917           <...>-27676 (-----) [005] ...1 82316.392543: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
70918           <...>-27676 (-----) [005] ...1 82316.392548: tracing_mark_write: E|27550
70919          <idle>-0     (-----) [001] d..2 82316.392550: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
70920           <...>-27676 (-----) [005] .... 82316.392562: binder_transaction: transaction=1570358 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
70921           <...>-27676 (-----) [005] .... 82316.392565: binder_transaction_alloc_buf: transaction=1570358 data_size=48 offsets_size=0
70922           <...>-27676 (-----) [005] ...2 82316.392567: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
70923           <...>-27676 (-----) [005] d..4 82316.392570: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
70924           <...>-27676 (-----) [005] dn.5 82316.392579: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
70925           <...>-27676 (-----) [005] d..2 82316.392585: sched_switch: prev_comm=id.nn.benchmark prev_pid=27676 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
70926<...>-770 ( 770) [005] .... 82316.392594: binder_transaction_received: transaction=1570358
70927    RenderThread-9436  ( 9105) [002] .... 82316.392608: binder_transaction: transaction=1570359 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
70928<...>-770 ( 770) [005] ...1 82316.392610: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
70929    RenderThread-9436  ( 9105) [002] .... 82316.392614: binder_transaction_alloc_buf: transaction=1570359 data_size=104 offsets_size=0
70930    RenderThread-9436  ( 9105) [002] d..4 82316.392620: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
70931    RenderThread-9436  ( 9105) [002] dn.5 82316.392642: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
70932    RenderThread-9436  ( 9105) [002] d..2 82316.392654: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
70933<...>-13083 ( 8858) [002] .... 82316.392663: binder_transaction_received: transaction=1570359
70934<...>-770 ( 770) [005] d..2 82316.392669: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
70935<...>-9105 ( 9105) [001] d..2 82316.392673: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
70936          <idle>-0     (-----) [001] d..1 82316.392686: cpu_idle: state=0 cpu_id=1
70937          <idle>-0     (-----) [000] dnh2 82316.392694: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
70938<...>-770 ( 770) [005] ...1 82316.392702: tracing_mark_write: E|770
70939          <idle>-0     (-----) [000] .n.1 82316.392703: cpu_idle: state=4294967295 cpu_id=0
70940<...>-770 ( 770) [005] .... 82316.392710: binder_transaction: transaction=1570360 dest_node=0 dest_proc=27550 dest_thread=27676 reply=1 flags=0x0 code=0x0
70941<...>-770 ( 770) [005] .... 82316.392713: binder_transaction_alloc_buf: transaction=1570360 data_size=168 offsets_size=32
70942          <idle>-0     (-----) [000] d..2 82316.392715: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
70943<...>-770 ( 770) [005] .... 82316.392718: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
70944<...>-13083 ( 8858) [002] .... 82316.392743: binder_transaction: transaction=1570361 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
70945<...>-13083 ( 8858) [002] .... 82316.392749: binder_transaction_alloc_buf: transaction=1570361 data_size=52 offsets_size=8
70946<...>-770 ( 770) [005] d..2 82316.392753: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27676 next_prio=110
70947           <...>-27676 (-----) [005] .... 82316.392764: binder_transaction_received: transaction=1570360
70948<...>-581 ( 571) [000] d..2 82316.392782: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
70949          <idle>-0     (-----) [000] d..1 82316.392799: cpu_idle: state=0 cpu_id=0
70950<...>-13083 ( 8858) [002] d..2 82316.392806: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
70951    RenderThread-9436  ( 9105) [002] .... 82316.392816: binder_transaction_received: transaction=1570361
70952           <...>-27676 (-----) [005] ...1 82316.393037: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
70953           <...>-27676 (-----) [005] ...1 82316.393046: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
70954           <...>-27676 (-----) [005] ...1 82316.393050: tracing_mark_write: E|27550
70955           <...>-27676 (-----) [005] .... 82316.393108: binder_transaction: transaction=1570362 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
70956           <...>-27676 (-----) [005] .... 82316.393111: binder_transaction_alloc_buf: transaction=1570362 data_size=556 offsets_size=104
70957           <...>-27676 (-----) [005] ...2 82316.393125: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
70958           <...>-27676 (-----) [005] d..4 82316.393127: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70959           <...>-27676 (-----) [005] dn.5 82316.393140: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70960           <...>-27676 (-----) [005] d..2 82316.393147: sched_switch: prev_comm=id.nn.benchmark prev_pid=27676 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70961<...>-5340 ( 788) [005] .... 82316.393157: binder_transaction_received: transaction=1570362
70962<...>-5340 ( 788) [005] ...1 82316.393202: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
70963<...>-5340 ( 788) [005] d..2 82316.393248: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
70964<...>-5340 ( 788) [005] d..2 82316.393287: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27676 next_prio=110
70965    RenderThread-9436  ( 9105) [002] dnh1 82316.393298: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
70966           <...>-27676 (-----) [005] d..2 82316.393310: sched_switch: prev_comm=id.nn.benchmark prev_pid=27676 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70967    RenderThread-9436  ( 9105) [002] d..2 82316.393314: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
70968          <idle>-0     (-----) [005] d..1 82316.393327: cpu_idle: state=0 cpu_id=5
70969<...>-87 ( 87) [002] d..2 82316.393353: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
70970    RenderThread-9436  ( 9105) [002] d.h5 82316.393372: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
70971    RenderThread-9436  ( 9105) [002] dnh6 82316.393419: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
70972    RenderThread-9436  ( 9105) [002] d..2 82316.393438: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
70973<...>-86 ( 86) [002] d.h5 82316.393461: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70974          <idle>-0     (-----) [005] dnh2 82316.393485: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
70975          <idle>-0     (-----) [005] .n.1 82316.393489: cpu_idle: state=4294967295 cpu_id=5
70976          <idle>-0     (-----) [005] d..2 82316.393497: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
70977<...>-86 ( 86) [002] d..2 82316.393525: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
70978<...>-5340 ( 788) [005] d..1 82316.393550: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
70979    RenderThread-9436  ( 9105) [002] dnh1 82316.393589: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
70980    RenderThread-9436  ( 9105) [002] d..2 82316.393599: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
70981 neuralnetworks@-13088 (  788) [002] d..2 82316.393647: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
70982<...>-5340 ( 788) [005] d..2 82316.393709: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
70983    RenderThread-9436  ( 9105) [002] dnh1 82316.393734: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
70984<...>-5340 ( 788) [005] d..2 82316.393737: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
70985    RenderThread-9436  ( 9105) [002] d..2 82316.393745: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
70986          <idle>-0     (-----) [005] d..1 82316.393751: cpu_idle: state=0 cpu_id=5
70987<...>-87 ( 87) [002] d.h4 82316.393782: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
70988<...>-87 ( 87) [002] d.h5 82316.393801: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
70989<...>-87 ( 87) [002] d..2 82316.393819: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
70990<...>-86 ( 86) [002] d..2 82316.393845: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
70991          <idle>-0     (-----) [000] ...1 82316.393950: cpu_idle: state=4294967295 cpu_id=0
70992          <idle>-0     (-----) [000] d..1 82316.393955: cpu_idle: state=0 cpu_id=0
70993          <idle>-0     (-----) [005] ...1 82316.394067: cpu_idle: state=4294967295 cpu_id=5
70994          <idle>-0     (-----) [005] d..1 82316.394071: cpu_idle: state=0 cpu_id=5
70995    RenderThread-9436  ( 9105) [002] d..2 82316.394338: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
70996          <idle>-0     (-----) [002] d..1 82316.394355: cpu_idle: state=0 cpu_id=2
70997          <idle>-0     (-----) [002] d.h2 82316.394420: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
70998          <idle>-0     (-----) [002] d.h3 82316.394431: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
70999          <idle>-0     (-----) [002] dnh3 82316.394437: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
71000          <idle>-0     (-----) [002] .n.1 82316.394447: cpu_idle: state=4294967295 cpu_id=2
71001          <idle>-0     (-----) [000] d.h3 82316.394457: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
71002          <idle>-0     (-----) [002] d..2 82316.394460: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
71003          <idle>-0     (-----) [000] dnh4 82316.394476: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
71004          <idle>-0     (-----) [000] .n.1 82316.394488: cpu_idle: state=4294967295 cpu_id=0
71005          <idle>-0     (-----) [000] d..2 82316.394499: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
71006 kgsl_worker_thr-258   (  258) [000] d..2 82316.394555: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
71007 kgsl_worker_thr-258   (  258) [000] d..3 82316.394577: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
71008 kgsl_worker_thr-258   (  258) [000] d..2 82316.394595: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
71009  kworker/u16:13-1147  ( 1147) [000] d..2 82316.394643: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71010          <idle>-0     (-----) [000] d..1 82316.394658: cpu_idle: state=0 cpu_id=0
71011    RenderThread-9436  ( 9105) [002] .... 82316.394669: binder_transaction: transaction=1570365 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
71012    RenderThread-9436  ( 9105) [002] .... 82316.394675: binder_transaction_alloc_buf: transaction=1570365 data_size=192 offsets_size=8
71013    RenderThread-9436  ( 9105) [002] d..4 82316.394685: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
71014    RenderThread-9436  ( 9105) [002] dn.5 82316.394703: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
71015    RenderThread-9436  ( 9105) [002] d..2 82316.394714: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
71016<...>-13083 ( 8858) [002] .... 82316.394723: binder_transaction_received: transaction=1570365
71017<...>-13083 ( 8858) [002] .... 82316.394892: binder_transaction: transaction=1570366 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
71018<...>-13083 ( 8858) [002] .... 82316.394902: binder_transaction_alloc_buf: transaction=1570366 data_size=68 offsets_size=0
71019<...>-13083 ( 8858) [002] d..2 82316.394950: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
71020    RenderThread-9436  ( 9105) [002] .... 82316.394960: binder_transaction_received: transaction=1570366
71021    RenderThread-9436  ( 9105) [002] d..2 82316.395056: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71022          <idle>-0     (-----) [002] d..1 82316.395076: cpu_idle: state=0 cpu_id=2
71023          <idle>-0     (-----) [001] d.s2 82316.395144: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
71024          <idle>-0     (-----) [001] dns3 82316.395166: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
71025          <idle>-0     (-----) [001] dns3 82316.395173: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
71026          <idle>-0     (-----) [001] dns4 82316.395189: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
71027          <idle>-0     (-----) [000] .n.1 82316.395195: cpu_idle: state=4294967295 cpu_id=0
71028          <idle>-0     (-----) [001] .n.1 82316.395209: cpu_idle: state=4294967295 cpu_id=1
71029          <idle>-0     (-----) [000] d..2 82316.395211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
71030          <idle>-0     (-----) [001] d..2 82316.395220: 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
71031<...>-8 ( 8) [001] d..2 82316.395231: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
71032<...>-8 ( 8) [001] d..3 82316.395249: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
71033<...>-8 ( 8) [001] d..2 82316.395260: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
71034<...>-46 ( 46) [001] d..2 82316.395271: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
71035  kworker/u16:13-1147  ( 1147) [000] d..2 82316.395288: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71036          <idle>-0     (-----) [000] d..1 82316.395300: cpu_idle: state=0 cpu_id=0
71037<...>-46 ( 46) [001] d..3 82316.395310: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
71038          <idle>-0     (-----) [000] .n.1 82316.395317: cpu_idle: state=4294967295 cpu_id=0
71039          <idle>-0     (-----) [000] d..2 82316.395329: 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
71040<...>-46 ( 46) [001] d..2 82316.395336: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71041          <idle>-0     (-----) [001] d..1 82316.395352: cpu_idle: state=0 cpu_id=1
71042<...>-8 ( 8) [000] d..2 82316.395358: 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
71043          <idle>-0     (-----) [000] d..1 82316.395370: cpu_idle: state=0 cpu_id=0
71044          <idle>-0     (-----) [003] d.h2 82316.395408: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
71045          <idle>-0     (-----) [003] dnh3 82316.395425: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
71046          <idle>-0     (-----) [003] .n.1 82316.395433: cpu_idle: state=4294967295 cpu_id=3
71047          <idle>-0     (-----) [003] d..2 82316.395446: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
71048          <idle>-0     (-----) [002] d.h4 82316.395460: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71049        DispSync-8879  ( 8858) [003] d..1 82316.395463: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
71050        DispSync-8879  ( 8858) [003] d..2 82316.395478: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
71051          <idle>-0     (-----) [005] dnh2 82316.395482: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71052          <idle>-0     (-----) [005] .n.1 82316.395486: cpu_idle: state=4294967295 cpu_id=5
71053          <idle>-0     (-----) [005] d..2 82316.395495: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71054          <idle>-0     (-----) [002] .n.1 82316.395509: cpu_idle: state=4294967295 cpu_id=2
71055        DispSync-8879  ( 8858) [003] d..2 82316.395511: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71056          <idle>-0     (-----) [003] d..1 82316.395522: cpu_idle: state=0 cpu_id=3
71057          <idle>-0     (-----) [002] d..2 82316.395523: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
71058<...>-5340 ( 788) [005] d..1 82316.395547: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
71059   sfEventThread-8882  ( 8858) [002] d.h1 82316.395571: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
71060   sfEventThread-8882  ( 8858) [002] d..3 82316.395587: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
71061   sfEventThread-8882  ( 8858) [002] d..4 82316.395642: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
71062<...>-5340 ( 788) [005] ...1 82316.395648: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
71063          <idle>-0     (-----) [003] .n.1 82316.395648: cpu_idle: state=4294967295 cpu_id=3
71064<...>-5340 ( 788) [005] ...1 82316.395652: tracing_mark_write: E|788
71065          <idle>-0     (-----) [003] d..2 82316.395657: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
71066<...>-5340 ( 788) [005] .... 82316.395669: binder_transaction: transaction=1570367 dest_node=1570363 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
71067   sfEventThread-8882  ( 8858) [002] d..2 82316.395670: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
71068<...>-5340 ( 788) [005] .... 82316.395672: binder_transaction_alloc_buf: transaction=1570367 data_size=60 offsets_size=0
71069<...>-5340 ( 788) [005] d..4 82316.395675: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
71070<...>-5340 ( 788) [005] d..5 82316.395689: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
71071          <idle>-0     (-----) [004] .n.1 82316.395695: cpu_idle: state=4294967295 cpu_id=4
71072          <idle>-0     (-----) [004] d..2 82316.395703: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
71073           <...>-27571 (-----) [004] .... 82316.395708: binder_transaction_received: transaction=1570367
71074<...>-5340 ( 788) [005] ...1 82316.395713: tracing_mark_write: E|788
71075 neuralnetworks@-13088 (  788) [002] d..2 82316.395718: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71076<...>-5340 ( 788) [005] .... 82316.395719: binder_transaction: transaction=1570368 dest_node=0 dest_proc=27550 dest_thread=27676 reply=1 flags=0x0 code=0x0
71077<...>-5340 ( 788) [005] .... 82316.395721: binder_transaction_alloc_buf: transaction=1570368 data_size=8 offsets_size=0
71078<...>-5340 ( 788) [005] d..2 82316.395723: sched_waking: comm=id.nn.benchmark pid=27676 prio=110 target_cpu=005
71079           <...>-27571 (-----) [004] ...1 82316.395727: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
71080<...>-5340 ( 788) [005] d..3 82316.395730: sched_wakeup: comm=id.nn.benchmark pid=27676 prio=110 target_cpu=005
71081<...>-5340 ( 788) [005] .... 82316.395732: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
71082           <...>-27571 (-----) [004] ...1 82316.395733: tracing_mark_write: E|27550
71083          <idle>-0     (-----) [002] d..1 82316.395736: cpu_idle: state=0 cpu_id=2
71084           <...>-27571 (-----) [004] d..2 82316.395763: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71085          <idle>-0     (-----) [004] d..1 82316.395770: cpu_idle: state=0 cpu_id=4
71086<...>-5340 ( 788) [005] d..2 82316.395773: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27676 next_prio=110
71087           <...>-27676 (-----) [005] .... 82316.395783: binder_transaction_received: transaction=1570368
71088           <...>-27676 (-----) [005] ...1 82316.395820: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
71089           <...>-27676 (-----) [005] ...1 82316.395826: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
71090           <...>-27676 (-----) [005] ...1 82316.395853: tracing_mark_write: E|27550
71091           <...>-27676 (-----) [005] ...1 82316.395856: tracing_mark_write: E|27550
71092           <...>-27676 (-----) [005] ...1 82316.395860: tracing_mark_write: E|27550
71093  surfaceflinger-8858  ( 8858) [003] d..1 82316.396047: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
71094           <...>-27676 (-----) [005] ...1 82316.396054: tracing_mark_write: E|27550
71095           <...>-27676 (-----) [005] d..1 82316.396067: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71096  surfaceflinger-8858  ( 8858) [003] d..2 82316.396068: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
71097          <idle>-0     (-----) [002] .n.1 82316.396075: cpu_idle: state=4294967295 cpu_id=2
71098           <...>-27676 (-----) [005] d..2 82316.396083: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71099          <idle>-0     (-----) [002] d..2 82316.396087: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
71100          <idle>-0     (-----) [004] .n.1 82316.396089: cpu_idle: state=4294967295 cpu_id=4
71101          <idle>-0     (-----) [004] d..2 82316.396096: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
71102           <...>-27550 (-----) [004] d..2 82316.396117: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71103          <idle>-0     (-----) [004] d..1 82316.396126: cpu_idle: state=0 cpu_id=4
71104   sfEventThread-8882  ( 8858) [002] d..2 82316.396129: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71105          <idle>-0     (-----) [002] d..1 82316.396142: cpu_idle: state=0 cpu_id=2
71106           <...>-27676 (-----) [005] d..1 82316.396176: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71107           <...>-27676 (-----) [005] d..2 82316.396186: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71108          <idle>-0     (-----) [004] .n.1 82316.396190: cpu_idle: state=4294967295 cpu_id=4
71109          <idle>-0     (-----) [004] d..2 82316.396198: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
71110           <...>-27676 (-----) [005] d..2 82316.396226: sched_switch: prev_comm=id.nn.benchmark prev_pid=27676 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
71111           <...>-27550 (-----) [004] ...1 82316.396232: tracing_mark_write: E|27550
71112           <...>-27550 (-----) [004] ...1 82316.396236: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
71113           <...>-27550 (-----) [004] ...1 82316.396242: tracing_mark_write: E|27550
71114           <...>-27550 (-----) [004] ...1 82316.396246: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
71115          <idle>-0     (-----) [005] d..1 82316.396247: cpu_idle: state=0 cpu_id=5
71116           <...>-27550 (-----) [004] ...1 82316.396250: tracing_mark_write: E|27550
71117           <...>-27550 (-----) [004] ...1 82316.396254: tracing_mark_write: E|27550
71118  surfaceflinger-8858  ( 8858) [003] ...1 82316.396271: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
71119  surfaceflinger-8858  ( 8858) [003] ...1 82316.396279: tracing_mark_write: E|8858
71120  surfaceflinger-8858  ( 8858) [003] .... 82316.396333: binder_transaction: transaction=1570369 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
71121  surfaceflinger-8858  ( 8858) [003] .... 82316.396339: binder_transaction_alloc_buf: transaction=1570369 data_size=540 offsets_size=96
71122  surfaceflinger-8858  ( 8858) [003] ...2 82316.396365: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
71123           <...>-27550 (-----) [004] ...1 82316.396366: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
71124  surfaceflinger-8858  ( 8858) [003] d..4 82316.396374: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
71125  surfaceflinger-8858  ( 8858) [003] d..5 82316.396396: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
71126          <idle>-0     (-----) [001] .n.1 82316.396401: cpu_idle: state=4294967295 cpu_id=1
71127          <idle>-0     (-----) [001] d..2 82316.396413: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
71128           <...>-27550 (-----) [004] ...1 82316.396423: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
71129 [email protected]   (  619) [001] .... 82316.396425: binder_transaction_received: transaction=1570369
71130           <...>-27550 (-----) [004] ...1 82316.396428: tracing_mark_write: E|27550
71131  surfaceflinger-8858  ( 8858) [003] d..2 82316.396430: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71132           <...>-27550 (-----) [004] ...1 82316.396432: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
71133           <...>-27550 (-----) [004] ...1 82316.396437: tracing_mark_write: E|27550
71134           <...>-27550 (-----) [004] ...1 82316.396441: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
71135           <...>-27550 (-----) [004] ...1 82316.396445: tracing_mark_write: E|27550
71136          <idle>-0     (-----) [003] d..1 82316.396445: cpu_idle: state=0 cpu_id=3
71137           <...>-27550 (-----) [004] ...1 82316.396448: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
71138 [email protected]   (  619) [001] ...1 82316.396473: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
71139          <idle>-0     (-----) [005] .n.1 82316.396544: cpu_idle: state=4294967295 cpu_id=5
71140           <...>-27550 (-----) [004] ...1 82316.396545: tracing_mark_write: E|27550
71141           <...>-27550 (-----) [004] ...1 82316.396550: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
71142          <idle>-0     (-----) [005] d..2 82316.396552: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27677 next_prio=110
71143           <...>-27550 (-----) [004] d..2 82316.396567: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71144          <idle>-0     (-----) [004] d..1 82316.396581: cpu_idle: state=0 cpu_id=4
71145 [email protected]   (  619) [001] ...1 82316.396585: tracing_mark_write: B|619|HWCSession::PresentDisplay::
71146           <...>-27677 (-----) [005] ...1 82316.396611: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
71147           <...>-27677 (-----) [005] ...1 82316.396625: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
71148           <...>-27677 (-----) [005] ...1 82316.396629: tracing_mark_write: E|27550
71149           <...>-27677 (-----) [005] .... 82316.396652: binder_transaction: transaction=1570370 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
71150           <...>-27677 (-----) [005] .... 82316.396655: binder_transaction_alloc_buf: transaction=1570370 data_size=48 offsets_size=0
71151           <...>-27677 (-----) [005] ...2 82316.396659: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
71152           <...>-27677 (-----) [005] d..4 82316.396662: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
71153           <...>-27677 (-----) [005] dn.5 82316.396672: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
71154           <...>-27677 (-----) [005] d..2 82316.396679: sched_switch: prev_comm=id.nn.benchmark prev_pid=27677 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
71155<...>-770 ( 770) [005] .... 82316.396690: binder_transaction_received: transaction=1570370
71156<...>-770 ( 770) [005] ...1 82316.396713: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
71157 [email protected]   (  619) [001] ...1 82316.396770: tracing_mark_write: B|619|HWDeviceDRM::Commit::
71158 [email protected]   (  619) [001] ...1 82316.396784: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
71159<...>-770 ( 770) [005] d..2 82316.396793: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
71160 [email protected]   (  619) [001] d.h1 82316.396838: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
71161<...>-770 ( 770) [005] ...1 82316.396849: tracing_mark_write: E|770
71162<...>-770 ( 770) [005] .... 82316.396857: binder_transaction: transaction=1570371 dest_node=0 dest_proc=27550 dest_thread=27677 reply=1 flags=0x0 code=0x0
71163<...>-770 ( 770) [005] .... 82316.396860: binder_transaction_alloc_buf: transaction=1570371 data_size=168 offsets_size=32
71164<...>-770 ( 770) [005] .... 82316.396867: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
71165<...>-770 ( 770) [005] d..2 82316.396903: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27677 next_prio=110
71166           <...>-27677 (-----) [005] .... 82316.396914: binder_transaction_received: transaction=1570371
71167           <...>-27677 (-----) [005] ...1 82316.396992: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
71168           <...>-27677 (-----) [005] ...1 82316.396997: tracing_mark_write: E|27550
71169           <...>-27677 (-----) [005] .... 82316.397012: binder_transaction: transaction=1570372 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
71170           <...>-27677 (-----) [005] .... 82316.397015: binder_transaction_alloc_buf: transaction=1570372 data_size=48 offsets_size=0
71171           <...>-27677 (-----) [005] ...2 82316.397018: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
71172           <...>-27677 (-----) [005] d..4 82316.397020: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
71173           <...>-27677 (-----) [005] dn.5 82316.397030: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
71174           <...>-27677 (-----) [005] d..2 82316.397036: sched_switch: prev_comm=id.nn.benchmark prev_pid=27677 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
71175<...>-770 ( 770) [005] .... 82316.397044: binder_transaction_received: transaction=1570372
71176<...>-770 ( 770) [005] ...1 82316.397061: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
71177<...>-770 ( 770) [005] ...1 82316.397144: tracing_mark_write: E|770
71178<...>-770 ( 770) [005] .... 82316.397151: binder_transaction: transaction=1570373 dest_node=0 dest_proc=27550 dest_thread=27677 reply=1 flags=0x0 code=0x0
71179<...>-770 ( 770) [005] .... 82316.397154: binder_transaction_alloc_buf: transaction=1570373 data_size=168 offsets_size=32
71180<...>-770 ( 770) [005] .... 82316.397160: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
71181<...>-770 ( 770) [005] d..2 82316.397195: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27677 next_prio=110
71182           <...>-27677 (-----) [005] .... 82316.397205: binder_transaction_received: transaction=1570373
71183          <idle>-0     (-----) [002] ...1 82316.397419: cpu_idle: state=4294967295 cpu_id=2
71184          <idle>-0     (-----) [002] d..1 82316.397425: cpu_idle: state=0 cpu_id=2
71185 [email protected]   (  619) [001] d..2 82316.397467: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
71186           <...>-27677 (-----) [005] ...1 82316.397477: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
71187           <...>-27677 (-----) [005] ...1 82316.397487: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
71188           <...>-27677 (-----) [005] ...1 82316.397491: tracing_mark_write: E|27550
71189 [email protected]   (  619) [001] d..3 82316.397495: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
71190          <idle>-0     (-----) [002] .n.1 82316.397500: cpu_idle: state=4294967295 cpu_id=2
71191          <idle>-0     (-----) [002] d..2 82316.397511: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
71192           <...>-27677 (-----) [005] .... 82316.397551: binder_transaction: transaction=1570374 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
71193           <...>-27677 (-----) [005] .... 82316.397554: binder_transaction_alloc_buf: transaction=1570374 data_size=556 offsets_size=104
71194           <...>-27677 (-----) [005] ...2 82316.397567: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
71195           <...>-27677 (-----) [005] d..4 82316.397570: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71196           <...>-27677 (-----) [005] dn.5 82316.397581: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71197           <...>-27677 (-----) [005] d..2 82316.397588: sched_switch: prev_comm=id.nn.benchmark prev_pid=27677 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71198<...>-5340 ( 788) [005] .... 82316.397598: binder_transaction_received: transaction=1570374
71199 [email protected]   (  619) [001] ...1 82316.397611: tracing_mark_write: E|619
71200 [email protected]   (  619) [001] ...1 82316.397619: tracing_mark_write: E|619
71201<...>-5340 ( 788) [005] ...1 82316.397643: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
71202<...>-5340 ( 788) [005] d..2 82316.397689: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
71203 [email protected]   (  619) [001] ...1 82316.397689: tracing_mark_write: E|619
71204<...>-5340 ( 788) [005] d..2 82316.397713: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27677 next_prio=110
71205 crtc_commit:111-321   (  321) [002] d.h1 82316.397716: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
71206           <...>-27677 (-----) [005] d..2 82316.397735: sched_switch: prev_comm=id.nn.benchmark prev_pid=27677 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71207 [email protected]   (  619) [001] ...1 82316.397739: tracing_mark_write: E|619
71208          <idle>-0     (-----) [005] d..1 82316.397753: cpu_idle: state=0 cpu_id=5
71209 [email protected]   (  619) [001] .... 82316.397756: binder_transaction: transaction=1570377 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
71210 [email protected]   (  619) [001] .... 82316.397760: binder_transaction_alloc_buf: transaction=1570377 data_size=576 offsets_size=112
71211 [email protected]   (  619) [001] d..2 82316.397783: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
71212 [email protected]   (  619) [001] d..3 82316.397803: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
71213 [email protected]   (  619) [001] .... 82316.397808: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
71214          <idle>-0     (-----) [003] .n.1 82316.397810: cpu_idle: state=4294967295 cpu_id=3
71215          <idle>-0     (-----) [003] d..2 82316.397819: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
71216  surfaceflinger-8858  ( 8858) [003] .... 82316.397829: binder_transaction_received: transaction=1570377
71217 [email protected]   (  619) [001] d..2 82316.397892: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
71218<...>-581 ( 571) [001] d..2 82316.398029: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71219          <idle>-0     (-----) [001] d..1 82316.398050: cpu_idle: state=0 cpu_id=1
71220 crtc_commit:111-321   (  321) [002] d..2 82316.398246: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
71221  surfaceflinger-8858  ( 8858) [003] d..2 82316.398280: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71222          <idle>-0     (-----) [003] d..1 82316.398294: cpu_idle: state=0 cpu_id=3
71223<...>-87 ( 87) [002] d..2 82316.398297: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71224          <idle>-0     (-----) [002] d.h5 82316.398320: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71225          <idle>-0     (-----) [002] dnh6 82316.398340: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71226          <idle>-0     (-----) [002] d..2 82316.398355: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
71227<...>-86 ( 86) [002] d.h4 82316.398385: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71228          <idle>-0     (-----) [005] dnh2 82316.398408: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71229          <idle>-0     (-----) [005] .n.1 82316.398412: cpu_idle: state=4294967295 cpu_id=5
71230          <idle>-0     (-----) [005] d..2 82316.398420: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71231<...>-86 ( 86) [002] d..2 82316.398454: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71232<...>-5340 ( 788) [005] d.s2 82316.398472: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
71233          <idle>-0     (-----) [003] d.s2 82316.398473: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
71234          <idle>-0     (-----) [003] d.s3 82316.398520: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
71235          <idle>-0     (-----) [002] dnh3 82316.398528: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
71236<...>-5340 ( 788) [005] d..1 82316.398543: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
71237          <idle>-0     (-----) [002] d..2 82316.398545: 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
71238          <idle>-0     (-----) [003] ...1 82316.398549: cpu_idle: state=4294967295 cpu_id=3
71239     rcu_preempt-7     (    7) [002] d..2 82316.398556: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
71240          <idle>-0     (-----) [003] d..1 82316.398557: cpu_idle: state=0 cpu_id=3
71241          <idle>-0     (-----) [003] dnh2 82316.398574: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
71242          <idle>-0     (-----) [003] .n.1 82316.398580: cpu_idle: state=4294967295 cpu_id=3
71243          <idle>-0     (-----) [003] d..2 82316.398594: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
71244     rcu_preempt-7     (    7) [002] d..3 82316.398602: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
71245     rcu_preempt-7     (    7) [002] d..2 82316.398606: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
71246     rcu_preempt-7     (    7) [002] d..3 82316.398626: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
71247     rcu_preempt-7     (    7) [002] d..2 82316.398643: 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
71248 neuralnetworks@-13088 (  788) [003] d..2 82316.398647: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
71249         rcuop/4-45    (   45) [003] d..2 82316.398657: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
71250         rcuop/4-45    (   45) [003] d..3 82316.398680: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
71251         rcuop/0-10    (   10) [002] d..2 82316.398682: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
71252         rcuop/4-45    (   45) [003] d..2 82316.398693: 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
71253<...>-5340 ( 788) [005] d..2 82316.398695: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
71254         rcuop/5-53    (   53) [003] d.h2 82316.398730: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
71255<...>-5340 ( 788) [005] d..2 82316.398736: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71256          <idle>-0     (-----) [005] d..1 82316.398750: cpu_idle: state=0 cpu_id=5
71257  kworker/u16:13-1147  ( 1147) [002] .... 82316.398764: clk_set_rate: l3_cluster0_vote_clk 403200000
71258         rcuop/5-53    (   53) [003] d..2 82316.398808: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
71259  kworker/u16:13-1147  ( 1147) [002] d.h5 82316.398855: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71260<...>-87 ( 87) [003] d..2 82316.398871: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71261          <idle>-0     (-----) [003] d..1 82316.398888: cpu_idle: state=0 cpu_id=3
71262  kworker/u16:13-1147  ( 1147) [002] d.h6 82316.398901: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
71263          <idle>-0     (-----) [003] .n.1 82316.398907: cpu_idle: state=4294967295 cpu_id=3
71264          <idle>-0     (-----) [003] d..2 82316.398921: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
71265<...>-86 ( 86) [003] d..2 82316.398970: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71266          <idle>-0     (-----) [003] d..1 82316.398984: cpu_idle: state=0 cpu_id=3
71267  kworker/u16:13-1147  ( 1147) [002] d..2 82316.399124: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
71268          <idle>-0     (-----) [002] d..1 82316.399141: cpu_idle: state=0 cpu_id=2
71269          <idle>-0     (-----) [001] d.s3 82316.399162: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
71270          <idle>-0     (-----) [001] d.s4 82316.399176: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
71271          <idle>-0     (-----) [001] d.s4 82316.399187: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
71272          <idle>-0     (-----) [002] .n.1 82316.399193: cpu_idle: state=4294967295 cpu_id=2
71273          <idle>-0     (-----) [001] ...1 82316.399198: cpu_idle: state=4294967295 cpu_id=1
71274          <idle>-0     (-----) [001] d..1 82316.399206: cpu_idle: state=0 cpu_id=1
71275          <idle>-0     (-----) [002] d..2 82316.399207: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
71276  kworker/u16:13-1147  ( 1147) [002] d..2 82316.399265: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71277          <idle>-0     (-----) [002] d..1 82316.399276: cpu_idle: state=0 cpu_id=2
71278          <idle>-0     (-----) [003] ...1 82316.400103: cpu_idle: state=4294967295 cpu_id=3
71279          <idle>-0     (-----) [003] d..1 82316.400108: cpu_idle: state=0 cpu_id=3
71280          <idle>-0     (-----) [002] d.h4 82316.400528: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71281          <idle>-0     (-----) [005] dnh2 82316.400550: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71282          <idle>-0     (-----) [005] .n.1 82316.400555: cpu_idle: state=4294967295 cpu_id=5
71283          <idle>-0     (-----) [005] d..2 82316.400563: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71284          <idle>-0     (-----) [002] ...1 82316.400571: cpu_idle: state=4294967295 cpu_id=2
71285          <idle>-0     (-----) [002] d..1 82316.400578: cpu_idle: state=0 cpu_id=2
71286<...>-5340 ( 788) [005] d..1 82316.400614: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
71287          <idle>-0     (-----) [003] dnh2 82316.400635: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
71288          <idle>-0     (-----) [003] .n.1 82316.400645: cpu_idle: state=4294967295 cpu_id=3
71289          <idle>-0     (-----) [003] d..2 82316.400656: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
71290<...>-5340 ( 788) [005] ...1 82316.400711: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
71291<...>-5340 ( 788) [005] ...1 82316.400715: tracing_mark_write: E|788
71292 neuralnetworks@-13088 (  788) [003] d..2 82316.400730: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71293<...>-5340 ( 788) [005] .... 82316.400732: binder_transaction: transaction=1570378 dest_node=1570375 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
71294<...>-5340 ( 788) [005] .... 82316.400735: binder_transaction_alloc_buf: transaction=1570378 data_size=60 offsets_size=0
71295<...>-5340 ( 788) [005] d..4 82316.400738: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
71296          <idle>-0     (-----) [003] d..1 82316.400743: cpu_idle: state=0 cpu_id=3
71297<...>-5340 ( 788) [005] d..5 82316.400750: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
71298          <idle>-0     (-----) [004] .n.1 82316.400756: cpu_idle: state=4294967295 cpu_id=4
71299          <idle>-0     (-----) [004] d..2 82316.400766: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
71300           <...>-27571 (-----) [004] .... 82316.400771: binder_transaction_received: transaction=1570378
71301<...>-5340 ( 788) [005] ...1 82316.400774: tracing_mark_write: E|788
71302<...>-5340 ( 788) [005] .... 82316.400780: binder_transaction: transaction=1570379 dest_node=0 dest_proc=27550 dest_thread=27677 reply=1 flags=0x0 code=0x0
71303<...>-5340 ( 788) [005] .... 82316.400782: binder_transaction_alloc_buf: transaction=1570379 data_size=8 offsets_size=0
71304<...>-5340 ( 788) [005] d..2 82316.400784: sched_waking: comm=id.nn.benchmark pid=27677 prio=110 target_cpu=005
71305           <...>-27571 (-----) [004] ...1 82316.400790: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
71306<...>-5340 ( 788) [005] d..3 82316.400791: sched_wakeup: comm=id.nn.benchmark pid=27677 prio=110 target_cpu=005
71307<...>-5340 ( 788) [005] .... 82316.400793: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
71308           <...>-27571 (-----) [004] ...1 82316.400796: tracing_mark_write: E|27550
71309           <...>-27571 (-----) [004] d..2 82316.400826: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71310          <idle>-0     (-----) [004] d..1 82316.400834: cpu_idle: state=0 cpu_id=4
71311<...>-5340 ( 788) [005] d..2 82316.400834: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27677 next_prio=110
71312           <...>-27677 (-----) [005] .... 82316.400844: binder_transaction_received: transaction=1570379
71313           <...>-27677 (-----) [005] ...1 82316.400881: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
71314           <...>-27677 (-----) [005] ...1 82316.400887: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
71315           <...>-27677 (-----) [005] ...1 82316.400914: tracing_mark_write: E|27550
71316           <...>-27677 (-----) [005] ...1 82316.400917: tracing_mark_write: E|27550
71317           <...>-27677 (-----) [005] ...1 82316.400921: tracing_mark_write: E|27550
71318           <...>-27677 (-----) [005] ...1 82316.401117: tracing_mark_write: E|27550
71319           <...>-27677 (-----) [005] d..1 82316.401130: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71320           <...>-27677 (-----) [005] d..2 82316.401146: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71321          <idle>-0     (-----) [004] .n.1 82316.401151: cpu_idle: state=4294967295 cpu_id=4
71322          <idle>-0     (-----) [004] d..2 82316.401157: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
71323           <...>-27550 (-----) [004] d..2 82316.401177: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71324          <idle>-0     (-----) [004] d..1 82316.401186: cpu_idle: state=0 cpu_id=4
71325           <...>-27677 (-----) [005] d..1 82316.401238: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71326           <...>-27677 (-----) [005] d..2 82316.401247: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71327          <idle>-0     (-----) [004] .n.1 82316.401252: cpu_idle: state=4294967295 cpu_id=4
71328          <idle>-0     (-----) [004] d..2 82316.401260: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
71329           <...>-27677 (-----) [005] d..2 82316.401287: sched_switch: prev_comm=id.nn.benchmark prev_pid=27677 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
71330           <...>-27550 (-----) [004] ...1 82316.401309: tracing_mark_write: E|27550
71331           <...>-27550 (-----) [004] ...1 82316.401314: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
71332          <idle>-0     (-----) [005] d..1 82316.401316: cpu_idle: state=0 cpu_id=5
71333           <...>-27550 (-----) [004] ...1 82316.401319: tracing_mark_write: E|27550
71334           <...>-27550 (-----) [004] ...1 82316.401324: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
71335           <...>-27550 (-----) [004] ...1 82316.401328: tracing_mark_write: E|27550
71336           <...>-27550 (-----) [004] ...1 82316.401332: tracing_mark_write: E|27550
71337           <...>-27550 (-----) [004] ...1 82316.401446: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
71338           <...>-27550 (-----) [004] ...1 82316.401504: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
71339           <...>-27550 (-----) [004] ...1 82316.401510: tracing_mark_write: E|27550
71340           <...>-27550 (-----) [004] ...1 82316.401513: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
71341           <...>-27550 (-----) [004] ...1 82316.401519: tracing_mark_write: E|27550
71342           <...>-27550 (-----) [004] ...1 82316.401523: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
71343           <...>-27550 (-----) [004] ...1 82316.401527: tracing_mark_write: E|27550
71344           <...>-27550 (-----) [004] ...1 82316.401532: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
71345          <idle>-0     (-----) [005] .n.1 82316.401621: cpu_idle: state=4294967295 cpu_id=5
71346           <...>-27550 (-----) [004] ...1 82316.401623: tracing_mark_write: E|27550
71347           <...>-27550 (-----) [004] ...1 82316.401627: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
71348          <idle>-0     (-----) [005] d..2 82316.401631: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27678 next_prio=110
71349           <...>-27550 (-----) [004] d..2 82316.401644: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71350          <idle>-0     (-----) [004] d..1 82316.401658: cpu_idle: state=0 cpu_id=4
71351           <...>-27678 (-----) [005] ...1 82316.401693: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
71352           <...>-27678 (-----) [005] ...1 82316.401707: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
71353           <...>-27678 (-----) [005] ...1 82316.401711: tracing_mark_write: E|27550
71354           <...>-27678 (-----) [005] .... 82316.401732: binder_transaction: transaction=1570380 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
71355           <...>-27678 (-----) [005] .... 82316.401735: binder_transaction_alloc_buf: transaction=1570380 data_size=48 offsets_size=0
71356           <...>-27678 (-----) [005] ...2 82316.401738: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
71357           <...>-27678 (-----) [005] d..4 82316.401741: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
71358           <...>-27678 (-----) [005] dn.5 82316.401751: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
71359           <...>-27678 (-----) [005] d..2 82316.401758: sched_switch: prev_comm=id.nn.benchmark prev_pid=27678 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
71360<...>-770 ( 770) [005] .... 82316.401768: binder_transaction_received: transaction=1570380
71361          <idle>-0     (-----) [000] d.s2 82316.401806: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
71362<...>-770 ( 770) [005] ...1 82316.401820: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
71363          <idle>-0     (-----) [000] dns3 82316.401825: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
71364          <idle>-0     (-----) [000] .n.1 82316.401845: cpu_idle: state=4294967295 cpu_id=0
71365          <idle>-0     (-----) [000] d..2 82316.401858: 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
71366<...>-8 ( 8) [000] d..2 82316.401869: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
71367<...>-770 ( 770) [005] d..2 82316.401896: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
71368<...>-8 ( 8) [000] d..3 82316.401908: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
71369<...>-8 ( 8) [000] d..2 82316.401921: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
71370<...>-46 ( 46) [000] d.h2 82316.401942: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
71371<...>-46 ( 46) [000] d..2 82316.401946: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
71372<...>-770 ( 770) [005] ...1 82316.401959: tracing_mark_write: E|770
71373<...>-46 ( 46) [000] d..3 82316.401960: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
71374<...>-770 ( 770) [005] .... 82316.401967: binder_transaction: transaction=1570381 dest_node=0 dest_proc=27550 dest_thread=27678 reply=1 flags=0x0 code=0x0
71375<...>-770 ( 770) [005] .... 82316.401969: binder_transaction_alloc_buf: transaction=1570381 data_size=168 offsets_size=32
71376<...>-46 ( 46) [000] d..2 82316.401971: 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
71377<...>-770 ( 770) [005] .... 82316.401977: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
71378<...>-8 ( 8) [000] d..2 82316.401983: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
71379<...>-770 ( 770) [005] d..2 82316.402011: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27678 next_prio=110
71380           <...>-27678 (-----) [005] .... 82316.402023: binder_transaction_received: transaction=1570381
71381<...>-581 ( 571) [000] d..2 82316.402079: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71382           <...>-27678 (-----) [005] ...1 82316.402095: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
71383          <idle>-0     (-----) [000] d..1 82316.402097: cpu_idle: state=0 cpu_id=0
71384           <...>-27678 (-----) [005] ...1 82316.402100: tracing_mark_write: E|27550
71385           <...>-27678 (-----) [005] .... 82316.402114: binder_transaction: transaction=1570382 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
71386           <...>-27678 (-----) [005] .... 82316.402117: binder_transaction_alloc_buf: transaction=1570382 data_size=48 offsets_size=0
71387           <...>-27678 (-----) [005] ...2 82316.402119: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
71388           <...>-27678 (-----) [005] d..4 82316.402121: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
71389           <...>-27678 (-----) [005] dn.5 82316.402132: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
71390           <...>-27678 (-----) [005] d..2 82316.402138: sched_switch: prev_comm=id.nn.benchmark prev_pid=27678 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
71391<...>-770 ( 770) [005] .... 82316.402146: binder_transaction_received: transaction=1570382
71392<...>-770 ( 770) [005] ...1 82316.402163: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
71393<...>-770 ( 770) [005] d..2 82316.402221: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
71394          <idle>-0     (-----) [000] dnh2 82316.402247: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
71395          <idle>-0     (-----) [000] .n.1 82316.402254: cpu_idle: state=4294967295 cpu_id=0
71396<...>-770 ( 770) [005] ...1 82316.402255: tracing_mark_write: E|770
71397<...>-770 ( 770) [005] .... 82316.402262: binder_transaction: transaction=1570383 dest_node=0 dest_proc=27550 dest_thread=27678 reply=1 flags=0x0 code=0x0
71398<...>-770 ( 770) [005] .... 82316.402264: binder_transaction_alloc_buf: transaction=1570383 data_size=168 offsets_size=32
71399          <idle>-0     (-----) [000] d..2 82316.402267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
71400<...>-770 ( 770) [005] .... 82316.402270: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
71401<...>-770 ( 770) [005] d..2 82316.402304: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27678 next_prio=110
71402           <...>-27678 (-----) [005] .... 82316.402315: binder_transaction_received: transaction=1570383
71403<...>-581 ( 571) [000] d..2 82316.402330: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71404          <idle>-0     (-----) [000] d..1 82316.402345: cpu_idle: state=0 cpu_id=0
71405           <...>-27678 (-----) [005] ...1 82316.402591: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
71406           <...>-27678 (-----) [005] ...1 82316.402601: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
71407           <...>-27678 (-----) [005] ...1 82316.402605: tracing_mark_write: E|27550
71408           <...>-27678 (-----) [005] .... 82316.402666: binder_transaction: transaction=1570384 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
71409           <...>-27678 (-----) [005] .... 82316.402669: binder_transaction_alloc_buf: transaction=1570384 data_size=556 offsets_size=104
71410           <...>-27678 (-----) [005] ...2 82316.402683: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
71411           <...>-27678 (-----) [005] d..4 82316.402686: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71412           <...>-27678 (-----) [005] dn.5 82316.402697: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71413           <...>-27678 (-----) [005] d..2 82316.402704: sched_switch: prev_comm=id.nn.benchmark prev_pid=27678 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71414<...>-5340 ( 788) [005] .... 82316.402714: binder_transaction_received: transaction=1570384
71415<...>-5340 ( 788) [005] ...1 82316.402760: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
71416<...>-5340 ( 788) [005] d..2 82316.402804: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
71417<...>-5340 ( 788) [005] d..2 82316.402841: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27678 next_prio=110
71418          <idle>-0     (-----) [000] dnh2 82316.402845: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71419          <idle>-0     (-----) [000] .n.1 82316.402851: cpu_idle: state=4294967295 cpu_id=0
71420          <idle>-0     (-----) [000] d..2 82316.402863: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
71421           <...>-27678 (-----) [005] d..2 82316.402864: sched_switch: prev_comm=id.nn.benchmark prev_pid=27678 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71422          <idle>-0     (-----) [005] d..1 82316.402882: cpu_idle: state=0 cpu_id=5
71423<...>-87 ( 87) [000] d..2 82316.402910: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71424          <idle>-0     (-----) [002] d.h4 82316.402916: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
71425          <idle>-0     (-----) [000] d..1 82316.402922: cpu_idle: state=0 cpu_id=0
71426          <idle>-0     (-----) [002] dnh5 82316.402954: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71427          <idle>-0     (-----) [002] .n.1 82316.402963: cpu_idle: state=4294967295 cpu_id=2
71428          <idle>-0     (-----) [002] d..2 82316.402978: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
71429<...>-86 ( 86) [002] d.h4 82316.403008: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71430          <idle>-0     (-----) [005] dnh2 82316.403030: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71431          <idle>-0     (-----) [005] .n.1 82316.403035: cpu_idle: state=4294967295 cpu_id=5
71432          <idle>-0     (-----) [005] d..2 82316.403043: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71433<...>-86 ( 86) [002] d..2 82316.403072: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71434          <idle>-0     (-----) [002] d..1 82316.403083: cpu_idle: state=0 cpu_id=2
71435<...>-5340 ( 788) [005] d..1 82316.403097: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
71436          <idle>-0     (-----) [000] dnh2 82316.403134: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
71437          <idle>-0     (-----) [000] .n.1 82316.403140: cpu_idle: state=4294967295 cpu_id=0
71438          <idle>-0     (-----) [000] d..2 82316.403152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
71439 neuralnetworks@-13088 (  788) [000] d..2 82316.403213: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71440          <idle>-0     (-----) [000] d..1 82316.403227: cpu_idle: state=0 cpu_id=0
71441<...>-5340 ( 788) [005] d..2 82316.403254: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71442          <idle>-0     (-----) [000] dnh2 82316.403276: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71443<...>-5340 ( 788) [005] d..2 82316.403281: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71444          <idle>-0     (-----) [000] .n.1 82316.403283: cpu_idle: state=4294967295 cpu_id=0
71445          <idle>-0     (-----) [000] dnh7 82316.403283: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
71446          <idle>-0     (-----) [000] dnh8 82316.403283: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
71447          <idle>-0     (-----) [000] dnh7 82316.403283: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
71448          <idle>-0     (-----) [000] dnh8 82316.403283: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
71449          <idle>-0     (-----) [005] d..1 82316.403294: cpu_idle: state=0 cpu_id=5
71450          <idle>-0     (-----) [003] .n.1 82316.403410: cpu_idle: state=4294967295 cpu_id=3
71451          <idle>-0     (-----) [003] d..2 82316.403421: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
71452          <idle>-0     (-----) [002] .n.1 82316.403430: cpu_idle: state=4294967295 cpu_id=2
71453          <idle>-0     (-----) [002] d..2 82316.403439: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
71454          <idle>-0     (-----) [000] d..2 82316.403451: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
71455  crtc_event:111-322   (  322) [003] d..2 82316.403463: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71456          <idle>-0     (-----) [003] d..1 82316.403474: cpu_idle: state=0 cpu_id=3
71457 crtc_commit:111-321   (  321) [002] d.h3 82316.403489: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71458<...>-87 ( 87) [000] d..2 82316.403497: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71459          <idle>-0     (-----) [000] d..1 82316.403510: cpu_idle: state=0 cpu_id=0
71460 crtc_commit:111-321   (  321) [002] d.h4 82316.403518: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
71461          <idle>-0     (-----) [000] .n.1 82316.403523: cpu_idle: state=4294967295 cpu_id=0
71462          <idle>-0     (-----) [000] d..2 82316.403536: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
71463<...>-86 ( 86) [000] d..2 82316.403576: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71464          <idle>-0     (-----) [000] d..1 82316.403588: cpu_idle: state=0 cpu_id=0
71465 crtc_commit:111-321   (  321) [002] d..2 82316.403646: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
71466          <idle>-0     (-----) [002] d..1 82316.403657: cpu_idle: state=0 cpu_id=2
71467          <idle>-0     (-----) [002] d.s3 82316.405139: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
71468          <idle>-0     (-----) [002] d.s4 82316.405158: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
71469          <idle>-0     (-----) [002] d.s2 82316.405161: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
71470          <idle>-0     (-----) [003] .n.1 82316.405163: cpu_idle: state=4294967295 cpu_id=3
71471          <idle>-0     (-----) [003] d..2 82316.405175: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
71472          <idle>-0     (-----) [002] dns3 82316.405178: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
71473          <idle>-0     (-----) [002] dns3 82316.405185: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
71474          <idle>-0     (-----) [002] dns4 82316.405198: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
71475  crtc_event:111-322   (  322) [003] d..2 82316.405227: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
71476          <idle>-0     (-----) [002] dnH4 82316.405246: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71477     rcu_preempt-7     (    7) [003] d..2 82316.405260: 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
71478          <idle>-0     (-----) [005] dnh2 82316.405268: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71479          <idle>-0     (-----) [003] d..1 82316.405271: cpu_idle: state=0 cpu_id=3
71480          <idle>-0     (-----) [005] .n.1 82316.405272: cpu_idle: state=4294967295 cpu_id=5
71481          <idle>-0     (-----) [005] d..2 82316.405281: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71482          <idle>-0     (-----) [002] .n.1 82316.405290: cpu_idle: state=4294967295 cpu_id=2
71483          <idle>-0     (-----) [002] d..2 82316.405302: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
71484<...>-5340 ( 788) [005] d..1 82316.405331: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
71485     kworker/2:1-25259 (25259) [002] d..2 82316.405352: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71486          <idle>-0     (-----) [002] d..1 82316.405367: cpu_idle: state=0 cpu_id=2
71487          <idle>-0     (-----) [002] dnh2 82316.405387: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
71488          <idle>-0     (-----) [002] .n.1 82316.405394: cpu_idle: state=4294967295 cpu_id=2
71489          <idle>-0     (-----) [002] d..2 82316.405439: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
71490<...>-5340 ( 788) [005] ...1 82316.405447: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
71491<...>-5340 ( 788) [005] ...1 82316.405451: tracing_mark_write: E|788
71492<...>-5340 ( 788) [005] .... 82316.405467: binder_transaction: transaction=1570387 dest_node=1570385 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
71493<...>-5340 ( 788) [005] .... 82316.405471: binder_transaction_alloc_buf: transaction=1570387 data_size=60 offsets_size=0
71494<...>-5340 ( 788) [005] d..4 82316.405474: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
71495 neuralnetworks@-13088 (  788) [002] d..2 82316.405486: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71496<...>-5340 ( 788) [005] d..5 82316.405486: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
71497          <idle>-0     (-----) [004] .n.1 82316.405492: cpu_idle: state=4294967295 cpu_id=4
71498          <idle>-0     (-----) [002] d..1 82316.405500: cpu_idle: state=0 cpu_id=2
71499          <idle>-0     (-----) [004] d..2 82316.405501: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
71500           <...>-27571 (-----) [004] .... 82316.405506: binder_transaction_received: transaction=1570387
71501<...>-5340 ( 788) [005] ...1 82316.405508: tracing_mark_write: E|788
71502<...>-5340 ( 788) [005] .... 82316.405514: binder_transaction: transaction=1570388 dest_node=0 dest_proc=27550 dest_thread=27678 reply=1 flags=0x0 code=0x0
71503<...>-5340 ( 788) [005] .... 82316.405516: binder_transaction_alloc_buf: transaction=1570388 data_size=8 offsets_size=0
71504<...>-5340 ( 788) [005] d..2 82316.405518: sched_waking: comm=id.nn.benchmark pid=27678 prio=110 target_cpu=005
71505           <...>-27571 (-----) [004] ...1 82316.405524: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
71506<...>-5340 ( 788) [005] d..3 82316.405525: sched_wakeup: comm=id.nn.benchmark pid=27678 prio=110 target_cpu=005
71507<...>-5340 ( 788) [005] .... 82316.405527: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
71508           <...>-27571 (-----) [004] ...1 82316.405531: tracing_mark_write: E|27550
71509           <...>-27571 (-----) [004] d..2 82316.405560: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71510          <idle>-0     (-----) [004] d..1 82316.405567: cpu_idle: state=0 cpu_id=4
71511<...>-5340 ( 788) [005] d..2 82316.405568: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27678 next_prio=110
71512           <...>-27678 (-----) [005] .... 82316.405578: binder_transaction_received: transaction=1570388
71513           <...>-27678 (-----) [005] ...1 82316.405616: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
71514           <...>-27678 (-----) [005] ...1 82316.405622: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
71515           <...>-27678 (-----) [005] ...1 82316.405661: tracing_mark_write: E|27550
71516           <...>-27678 (-----) [005] ...1 82316.405664: tracing_mark_write: E|27550
71517           <...>-27678 (-----) [005] ...1 82316.405668: tracing_mark_write: E|27550
71518          <idle>-0     (-----) [000] d.h5 82316.405725: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
71519          <idle>-0     (-----) [000] d.h6 82316.405743: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
71520          <idle>-0     (-----) [002] .n.1 82316.405749: cpu_idle: state=4294967295 cpu_id=2
71521          <idle>-0     (-----) [000] ...1 82316.405790: cpu_idle: state=4294967295 cpu_id=0
71522          <idle>-0     (-----) [002] d..2 82316.405794: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
71523          <idle>-0     (-----) [000] d..1 82316.405796: cpu_idle: state=0 cpu_id=0
71524           <...>-27678 (-----) [005] ...1 82316.405854: tracing_mark_write: E|27550
71525           <...>-27678 (-----) [005] d..1 82316.405866: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71526 crtc_commit:111-321   (  321) [002] d..2 82316.405881: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71527           <...>-27678 (-----) [005] d..2 82316.405882: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71528          <idle>-0     (-----) [004] .n.1 82316.405887: cpu_idle: state=4294967295 cpu_id=4
71529          <idle>-0     (-----) [004] d..2 82316.405894: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
71530          <idle>-0     (-----) [002] d..1 82316.405894: cpu_idle: state=0 cpu_id=2
71531           <...>-27550 (-----) [004] d..2 82316.405915: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71532          <idle>-0     (-----) [004] d..1 82316.405924: cpu_idle: state=0 cpu_id=4
71533           <...>-27678 (-----) [005] d..1 82316.405971: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71534           <...>-27678 (-----) [005] d..2 82316.405981: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71535          <idle>-0     (-----) [004] .n.1 82316.405986: cpu_idle: state=4294967295 cpu_id=4
71536          <idle>-0     (-----) [004] d..2 82316.405993: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
71537          <idle>-0     (-----) [000] d.h5 82316.405996: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
71538          <idle>-0     (-----) [000] d.h6 82316.406015: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
71539           <...>-27678 (-----) [005] d..2 82316.406020: sched_switch: prev_comm=id.nn.benchmark prev_pid=27678 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
71540          <idle>-0     (-----) [003] .n.1 82316.406021: cpu_idle: state=4294967295 cpu_id=3
71541           <...>-27550 (-----) [004] ...1 82316.406026: tracing_mark_write: E|27550
71542           <...>-27550 (-----) [004] ...1 82316.406030: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
71543          <idle>-0     (-----) [000] ...1 82316.406031: cpu_idle: state=4294967295 cpu_id=0
71544          <idle>-0     (-----) [003] d..2 82316.406031: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
71545          <idle>-0     (-----) [000] d..1 82316.406036: cpu_idle: state=0 cpu_id=0
71546           <...>-27550 (-----) [004] ...1 82316.406036: tracing_mark_write: E|27550
71547           <...>-27550 (-----) [004] ...1 82316.406040: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
71548          <idle>-0     (-----) [005] d..1 82316.406040: cpu_idle: state=0 cpu_id=5
71549           <...>-27550 (-----) [004] ...1 82316.406044: tracing_mark_write: E|27550
71550           <...>-27550 (-----) [004] ...1 82316.406048: tracing_mark_write: E|27550
71551  crtc_event:111-322   (  322) [003] d..2 82316.406060: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71552          <idle>-0     (-----) [003] d..1 82316.406069: cpu_idle: state=0 cpu_id=3
71553           <...>-27550 (-----) [004] ...1 82316.406160: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
71554           <...>-27550 (-----) [004] ...1 82316.406218: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
71555           <...>-27550 (-----) [004] ...1 82316.406222: tracing_mark_write: E|27550
71556           <...>-27550 (-----) [004] ...1 82316.406226: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
71557           <...>-27550 (-----) [004] ...1 82316.406232: tracing_mark_write: E|27550
71558           <...>-27550 (-----) [004] ...1 82316.406235: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
71559           <...>-27550 (-----) [004] ...1 82316.406239: tracing_mark_write: E|27550
71560           <...>-27550 (-----) [004] ...1 82316.406243: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
71561          <idle>-0     (-----) [005] .n.1 82316.406332: cpu_idle: state=4294967295 cpu_id=5
71562           <...>-27550 (-----) [004] ...1 82316.406334: tracing_mark_write: E|27550
71563           <...>-27550 (-----) [004] ...1 82316.406338: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
71564          <idle>-0     (-----) [005] d..2 82316.406341: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27679 next_prio=110
71565           <...>-27550 (-----) [004] d..2 82316.406356: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71566          <idle>-0     (-----) [004] d..1 82316.406370: cpu_idle: state=0 cpu_id=4
71567           <...>-27679 (-----) [005] ...1 82316.406402: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
71568           <...>-27679 (-----) [005] ...1 82316.406416: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
71569           <...>-27679 (-----) [005] ...1 82316.406420: tracing_mark_write: E|27550
71570           <...>-27679 (-----) [005] .... 82316.406440: binder_transaction: transaction=1570389 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
71571           <...>-27679 (-----) [005] .... 82316.406444: binder_transaction_alloc_buf: transaction=1570389 data_size=48 offsets_size=0
71572           <...>-27679 (-----) [005] ...2 82316.406447: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
71573           <...>-27679 (-----) [005] d..4 82316.406449: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
71574           <...>-27679 (-----) [005] dn.5 82316.406460: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
71575           <...>-27679 (-----) [005] d..2 82316.406467: sched_switch: prev_comm=id.nn.benchmark prev_pid=27679 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
71576<...>-770 ( 770) [005] .... 82316.406477: binder_transaction_received: transaction=1570389
71577<...>-770 ( 770) [005] ...1 82316.406500: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
71578<...>-770 ( 770) [005] d..2 82316.406573: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
71579          <idle>-0     (-----) [000] dnh2 82316.406601: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
71580          <idle>-0     (-----) [000] .n.1 82316.406607: cpu_idle: state=4294967295 cpu_id=0
71581<...>-770 ( 770) [005] ...1 82316.406613: tracing_mark_write: E|770
71582<...>-770 ( 770) [005] .... 82316.406621: binder_transaction: transaction=1570390 dest_node=0 dest_proc=27550 dest_thread=27679 reply=1 flags=0x0 code=0x0
71583          <idle>-0     (-----) [000] d..2 82316.406621: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
71584<...>-770 ( 770) [005] .... 82316.406623: binder_transaction_alloc_buf: transaction=1570390 data_size=168 offsets_size=32
71585<...>-770 ( 770) [005] .... 82316.406630: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
71586<...>-770 ( 770) [005] d..2 82316.406666: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27679 next_prio=110
71587           <...>-27679 (-----) [005] .... 82316.406676: binder_transaction_received: transaction=1570390
71588<...>-581 ( 571) [000] d..2 82316.406708: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71589          <idle>-0     (-----) [000] d..1 82316.406720: cpu_idle: state=0 cpu_id=0
71590           <...>-27679 (-----) [005] ...1 82316.406745: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
71591           <...>-27679 (-----) [005] ...1 82316.406750: tracing_mark_write: E|27550
71592           <...>-27679 (-----) [005] .... 82316.406763: binder_transaction: transaction=1570391 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
71593           <...>-27679 (-----) [005] .... 82316.406766: binder_transaction_alloc_buf: transaction=1570391 data_size=48 offsets_size=0
71594           <...>-27679 (-----) [005] ...2 82316.406768: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
71595           <...>-27679 (-----) [005] d..4 82316.406771: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
71596           <...>-27679 (-----) [005] dn.5 82316.406781: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
71597           <...>-27679 (-----) [005] d..2 82316.406788: sched_switch: prev_comm=id.nn.benchmark prev_pid=27679 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
71598<...>-770 ( 770) [005] .... 82316.406796: binder_transaction_received: transaction=1570391
71599<...>-770 ( 770) [005] ...1 82316.406812: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
71600<...>-770 ( 770) [005] d..2 82316.406869: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
71601          <idle>-0     (-----) [000] dnh2 82316.406894: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
71602          <idle>-0     (-----) [000] .n.1 82316.406901: cpu_idle: state=4294967295 cpu_id=0
71603<...>-770 ( 770) [005] ...1 82316.406903: tracing_mark_write: E|770
71604          <idle>-0     (-----) [000] d..2 82316.406909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
71605<...>-770 ( 770) [005] .... 82316.406910: binder_transaction: transaction=1570392 dest_node=0 dest_proc=27550 dest_thread=27679 reply=1 flags=0x0 code=0x0
71606<...>-770 ( 770) [005] .... 82316.406913: binder_transaction_alloc_buf: transaction=1570392 data_size=168 offsets_size=32
71607<...>-770 ( 770) [005] .... 82316.406919: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
71608<...>-770 ( 770) [005] d..2 82316.406952: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27679 next_prio=110
71609           <...>-27679 (-----) [005] .... 82316.406963: binder_transaction_received: transaction=1570392
71610<...>-581 ( 571) [000] d..2 82316.406970: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71611          <idle>-0     (-----) [000] d..1 82316.406980: cpu_idle: state=0 cpu_id=0
71612           <...>-27679 (-----) [005] ...1 82316.407238: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
71613           <...>-27679 (-----) [005] ...1 82316.407248: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
71614           <...>-27679 (-----) [005] ...1 82316.407252: tracing_mark_write: E|27550
71615           <...>-27679 (-----) [005] .... 82316.407312: binder_transaction: transaction=1570393 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
71616           <...>-27679 (-----) [005] .... 82316.407316: binder_transaction_alloc_buf: transaction=1570393 data_size=556 offsets_size=104
71617           <...>-27679 (-----) [005] ...2 82316.407330: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
71618           <...>-27679 (-----) [005] d..4 82316.407332: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71619           <...>-27679 (-----) [005] dn.5 82316.407344: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71620           <...>-27679 (-----) [005] d..2 82316.407350: sched_switch: prev_comm=id.nn.benchmark prev_pid=27679 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71621<...>-5340 ( 788) [005] .... 82316.407360: binder_transaction_received: transaction=1570393
71622<...>-5340 ( 788) [005] ...1 82316.407403: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
71623<...>-5340 ( 788) [005] d..2 82316.407446: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71624<...>-5340 ( 788) [005] d..2 82316.407470: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27679 next_prio=110
71625          <idle>-0     (-----) [000] dnh2 82316.407474: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71626          <idle>-0     (-----) [000] .n.1 82316.407480: cpu_idle: state=4294967295 cpu_id=0
71627          <idle>-0     (-----) [000] d..2 82316.407489: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
71628           <...>-27679 (-----) [005] d..2 82316.407493: sched_switch: prev_comm=id.nn.benchmark prev_pid=27679 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71629          <idle>-0     (-----) [005] d..1 82316.407511: cpu_idle: state=0 cpu_id=5
71630<...>-87 ( 87) [000] d..2 82316.407532: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71631          <idle>-0     (-----) [000] d..1 82316.407541: cpu_idle: state=0 cpu_id=0
71632          <idle>-0     (-----) [002] d.h4 82316.407544: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
71633          <idle>-0     (-----) [002] dnh5 82316.407583: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71634          <idle>-0     (-----) [002] .n.1 82316.407594: cpu_idle: state=4294967295 cpu_id=2
71635          <idle>-0     (-----) [002] d..2 82316.407607: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
71636<...>-86 ( 86) [002] d.h5 82316.407630: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71637          <idle>-0     (-----) [005] dnh2 82316.407653: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71638          <idle>-0     (-----) [005] .n.1 82316.407658: cpu_idle: state=4294967295 cpu_id=5
71639          <idle>-0     (-----) [005] d..2 82316.407666: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71640<...>-86 ( 86) [002] d..2 82316.407704: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71641<...>-5340 ( 788) [005] d..1 82316.407717: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
71642          <idle>-0     (-----) [002] d..1 82316.407719: cpu_idle: state=0 cpu_id=2
71643          <idle>-0     (-----) [000] dnh2 82316.407754: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
71644          <idle>-0     (-----) [000] .n.1 82316.407760: cpu_idle: state=4294967295 cpu_id=0
71645          <idle>-0     (-----) [000] d..2 82316.407769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
71646 neuralnetworks@-13088 (  788) [000] d..2 82316.407820: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71647          <idle>-0     (-----) [000] d..1 82316.407830: cpu_idle: state=0 cpu_id=0
71648          <idle>-0     (-----) [003] d.h2 82316.407859: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
71649<...>-5340 ( 788) [005] d..2 82316.407873: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71650          <idle>-0     (-----) [003] dnh3 82316.407874: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
71651          <idle>-0     (-----) [003] .n.1 82316.407883: cpu_idle: state=4294967295 cpu_id=3
71652          <idle>-0     (-----) [000] dnh2 82316.407894: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71653          <idle>-0     (-----) [003] d..2 82316.407894: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
71654<...>-5340 ( 788) [005] d..2 82316.407898: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71655          <idle>-0     (-----) [000] .n.1 82316.407900: cpu_idle: state=4294967295 cpu_id=0
71656          <idle>-0     (-----) [000] d..2 82316.407909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
71657          <idle>-0     (-----) [005] d..1 82316.407913: cpu_idle: state=0 cpu_id=5
71658        DispSync-8879  ( 8858) [003] d..1 82316.407919: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
71659        DispSync-8879  ( 8858) [003] d..2 82316.407943: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
71660          <idle>-0     (-----) [001] .n.1 82316.407949: cpu_idle: state=4294967295 cpu_id=1
71661          <idle>-0     (-----) [002] d.h4 82316.407949: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71662<...>-87 ( 87) [000] d..2 82316.407958: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71663          <idle>-0     (-----) [002] dnh5 82316.407961: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71664          <idle>-0     (-----) [001] d..2 82316.407964: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
71665          <idle>-0     (-----) [000] d..1 82316.407967: cpu_idle: state=0 cpu_id=0
71666          <idle>-0     (-----) [002] .n.1 82316.407970: cpu_idle: state=4294967295 cpu_id=2
71667        DispSync-8879  ( 8858) [003] d..2 82316.407981: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71668          <idle>-0     (-----) [002] d..2 82316.407984: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
71669          <idle>-0     (-----) [003] d..1 82316.407994: cpu_idle: state=0 cpu_id=3
71670<...>-86 ( 86) [002] d..2 82316.408019: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71671          <idle>-0     (-----) [002] d..1 82316.408032: cpu_idle: state=0 cpu_id=2
71672  appEventThread-8881  ( 8858) [001] d..3 82316.408033: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
71673  appEventThread-8881  ( 8858) [001] d..4 82316.408064: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
71674          <idle>-0     (-----) [000] .n.1 82316.408070: cpu_idle: state=4294967295 cpu_id=0
71675          <idle>-0     (-----) [000] d..2 82316.408080: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
71676  appEventThread-8881  ( 8858) [001] d..2 82316.408114: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71677          <idle>-0     (-----) [001] d..1 82316.408132: cpu_idle: state=0 cpu_id=1
71678          <idle>-0     (-----) [005] ...1 82316.408240: cpu_idle: state=4294967295 cpu_id=5
71679          <idle>-0     (-----) [005] d..1 82316.408243: cpu_idle: state=0 cpu_id=5
71680<...>-9105 ( 9105) [000] .... 82316.408410: binder_transaction: transaction=1570396 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
71681<...>-9105 ( 9105) [000] .... 82316.408417: binder_transaction_alloc_buf: transaction=1570396 data_size=80 offsets_size=0
71682<...>-9105 ( 9105) [000] d..4 82316.408424: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
71683<...>-9105 ( 9105) [000] d..5 82316.408458: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
71684          <idle>-0     (-----) [001] .n.1 82316.408463: cpu_idle: state=4294967295 cpu_id=1
71685          <idle>-0     (-----) [001] d..2 82316.408484: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
71686<...>-9105 ( 9105) [000] d.s4 82316.408505: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
71687<...>-9105 ( 9105) [000] d.s5 82316.408548: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
71688<...>-9105 ( 9105) [000] d.s5 82316.408556: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
71689<...>-9105 ( 9105) [000] d.s6 82316.408589: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
71690<...>-13083 ( 8858) [001] .... 82316.408605: binder_transaction_received: transaction=1570396
71691<...>-13083 ( 8858) [001] d..1 82316.408642: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
71692<...>-9105 ( 9105) [000] d..3 82316.408643: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
71693<...>-9105 ( 9105) [000] d..4 82316.408664: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
71694          <idle>-0     (-----) [002] .n.1 82316.408670: cpu_idle: state=4294967295 cpu_id=2
71695<...>-13083 ( 8858) [001] d..2 82316.408672: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
71696          <idle>-0     (-----) [003] .n.1 82316.408678: cpu_idle: state=4294967295 cpu_id=3
71697          <idle>-0     (-----) [002] d..2 82316.408685: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
71698          <idle>-0     (-----) [003] d..2 82316.408691: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
71699<...>-13083 ( 8858) [001] d..2 82316.408709: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
71700  appEventThread-8881  ( 8858) [003] d..2 82316.408757: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71701    RenderThread-9436  ( 9105) [002] d..2 82316.408759: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71702<...>-8 ( 8) [001] d..2 82316.408761: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
71703          <idle>-0     (-----) [003] d..1 82316.408767: cpu_idle: state=0 cpu_id=3
71704          <idle>-0     (-----) [002] d..1 82316.408775: cpu_idle: state=0 cpu_id=2
71705<...>-9105 ( 9105) [000] d..3 82316.408791: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
71706<...>-9105 ( 9105) [000] d..4 82316.408811: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
71707          <idle>-0     (-----) [002] .n.1 82316.408818: cpu_idle: state=4294967295 cpu_id=2
71708          <idle>-0     (-----) [002] d..2 82316.408831: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
71709<...>-9105 ( 9105) [000] d..2 82316.408871: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71710          <idle>-0     (-----) [000] d..1 82316.408892: cpu_idle: state=0 cpu_id=0
71711    RenderThread-9436  ( 9105) [002] d..1 82316.408973: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
71712    RenderThread-9436  ( 9105) [002] d..2 82316.408993: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
71713          <idle>-0     (-----) [000] .n.1 82316.408999: cpu_idle: state=4294967295 cpu_id=0
71714          <idle>-0     (-----) [000] d..2 82316.409014: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
71715  kworker/u16:13-1147  ( 1147) [001] d..2 82316.409055: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
71716    RenderThread-9436  ( 9105) [002] .... 82316.409064: binder_transaction: transaction=1570397 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
71717    RenderThread-9436  ( 9105) [002] .... 82316.409069: binder_transaction_alloc_buf: transaction=1570397 data_size=104 offsets_size=0
71718    RenderThread-9436  ( 9105) [002] d..4 82316.409075: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
71719    RenderThread-9436  ( 9105) [002] dn.5 82316.409097: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
71720          <idle>-0     (-----) [001] d.s4 82316.409101: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
71721<...>-9105 ( 9105) [000] d..2 82316.409105: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71722    RenderThread-9436  ( 9105) [002] d..2 82316.409108: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
71723          <idle>-0     (-----) [001] d.s5 82316.409113: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
71724<...>-13083 ( 8858) [002] .... 82316.409117: binder_transaction_received: transaction=1570397
71725          <idle>-0     (-----) [001] dns5 82316.409119: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
71726          <idle>-0     (-----) [000] d..1 82316.409123: cpu_idle: state=0 cpu_id=0
71727          <idle>-0     (-----) [001] d..2 82316.409133: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
71728  kworker/u16:13-1147  ( 1147) [001] .... 82316.409216: clk_set_rate: l3_cluster0_vote_clk 300000000
71729<...>-13083 ( 8858) [002] .... 82316.409218: binder_transaction: transaction=1570398 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
71730<...>-13083 ( 8858) [002] .... 82316.409224: binder_transaction_alloc_buf: transaction=1570398 data_size=52 offsets_size=8
71731  kworker/u16:13-1147  ( 1147) [001] d..2 82316.409253: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71732          <idle>-0     (-----) [001] d..1 82316.409268: cpu_idle: state=0 cpu_id=1
71733<...>-13083 ( 8858) [002] d..2 82316.409280: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
71734    RenderThread-9436  ( 9105) [002] .... 82316.409290: binder_transaction_received: transaction=1570398
71735    RenderThread-9436  ( 9105) [002] d.h3 82316.409589: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71736          <idle>-0     (-----) [005] dnh2 82316.409614: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71737          <idle>-0     (-----) [005] .n.1 82316.409617: cpu_idle: state=4294967295 cpu_id=5
71738          <idle>-0     (-----) [005] d..2 82316.409626: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71739<...>-5340 ( 788) [005] d..1 82316.409677: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
71740          <idle>-0     (-----) [000] dnh2 82316.409704: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
71741          <idle>-0     (-----) [000] .n.1 82316.409712: cpu_idle: state=4294967295 cpu_id=0
71742          <idle>-0     (-----) [000] d..2 82316.409757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
71743<...>-5340 ( 788) [005] ...1 82316.409771: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
71744<...>-5340 ( 788) [005] ...1 82316.409775: tracing_mark_write: E|788
71745<...>-5340 ( 788) [005] .... 82316.409791: binder_transaction: transaction=1570399 dest_node=1570394 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
71746<...>-5340 ( 788) [005] .... 82316.409794: binder_transaction_alloc_buf: transaction=1570399 data_size=60 offsets_size=0
71747<...>-5340 ( 788) [005] d..4 82316.409797: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
71748 neuralnetworks@-13088 (  788) [000] d..2 82316.409805: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71749<...>-5340 ( 788) [005] d..5 82316.409810: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
71750          <idle>-0     (-----) [004] .n.1 82316.409816: cpu_idle: state=4294967295 cpu_id=4
71751          <idle>-0     (-----) [000] d..1 82316.409822: cpu_idle: state=0 cpu_id=0
71752          <idle>-0     (-----) [004] d..2 82316.409825: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
71753           <...>-27571 (-----) [004] .... 82316.409830: binder_transaction_received: transaction=1570399
71754<...>-5340 ( 788) [005] ...1 82316.409832: tracing_mark_write: E|788
71755<...>-5340 ( 788) [005] .... 82316.409838: binder_transaction: transaction=1570400 dest_node=0 dest_proc=27550 dest_thread=27679 reply=1 flags=0x0 code=0x0
71756<...>-5340 ( 788) [005] .... 82316.409840: binder_transaction_alloc_buf: transaction=1570400 data_size=8 offsets_size=0
71757<...>-5340 ( 788) [005] d..2 82316.409842: sched_waking: comm=id.nn.benchmark pid=27679 prio=110 target_cpu=005
71758           <...>-27571 (-----) [004] ...1 82316.409848: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
71759<...>-5340 ( 788) [005] d..3 82316.409850: sched_wakeup: comm=id.nn.benchmark pid=27679 prio=110 target_cpu=005
71760<...>-5340 ( 788) [005] .... 82316.409852: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
71761           <...>-27571 (-----) [004] ...1 82316.409854: tracing_mark_write: E|27550
71762           <...>-27571 (-----) [004] d..2 82316.409884: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71763          <idle>-0     (-----) [004] d..1 82316.409892: cpu_idle: state=0 cpu_id=4
71764<...>-5340 ( 788) [005] d..2 82316.409894: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27679 next_prio=110
71765           <...>-27679 (-----) [005] .... 82316.409904: binder_transaction_received: transaction=1570400
71766           <...>-27679 (-----) [005] ...1 82316.409941: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
71767           <...>-27679 (-----) [005] ...1 82316.409948: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
71768           <...>-27679 (-----) [005] ...1 82316.409973: tracing_mark_write: E|27550
71769           <...>-27679 (-----) [005] ...1 82316.409976: tracing_mark_write: E|27550
71770           <...>-27679 (-----) [005] ...1 82316.409980: tracing_mark_write: E|27550
71771           <...>-27679 (-----) [005] ...1 82316.410169: tracing_mark_write: E|27550
71772           <...>-27679 (-----) [005] d..1 82316.410182: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71773           <...>-27679 (-----) [005] d..2 82316.410198: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71774          <idle>-0     (-----) [004] .n.1 82316.410203: cpu_idle: state=4294967295 cpu_id=4
71775          <idle>-0     (-----) [004] d..2 82316.410210: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
71776           <...>-27550 (-----) [004] d..2 82316.410229: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71777          <idle>-0     (-----) [004] d..1 82316.410238: cpu_idle: state=0 cpu_id=4
71778           <...>-27679 (-----) [005] d..1 82316.410287: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71779           <...>-27679 (-----) [005] d..2 82316.410296: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
71780          <idle>-0     (-----) [004] .n.1 82316.410301: cpu_idle: state=4294967295 cpu_id=4
71781          <idle>-0     (-----) [004] d..2 82316.410309: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
71782           <...>-27679 (-----) [005] d..2 82316.410337: sched_switch: prev_comm=id.nn.benchmark prev_pid=27679 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
71783           <...>-27550 (-----) [004] ...1 82316.410343: tracing_mark_write: E|27550
71784           <...>-27550 (-----) [004] ...1 82316.410347: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
71785           <...>-27550 (-----) [004] ...1 82316.410353: tracing_mark_write: E|27550
71786           <...>-27550 (-----) [004] ...1 82316.410356: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
71787          <idle>-0     (-----) [005] d..1 82316.410358: cpu_idle: state=0 cpu_id=5
71788           <...>-27550 (-----) [004] ...1 82316.410360: tracing_mark_write: E|27550
71789           <...>-27550 (-----) [004] ...1 82316.410365: tracing_mark_write: E|27550
71790           <...>-27550 (-----) [004] ...1 82316.410477: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
71791    RenderThread-9436  ( 9105) [002] d..2 82316.410485: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
71792          <idle>-0     (-----) [002] d..1 82316.410503: cpu_idle: state=0 cpu_id=2
71793           <...>-27550 (-----) [004] ...1 82316.410535: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
71794           <...>-27550 (-----) [004] ...1 82316.410540: tracing_mark_write: E|27550
71795           <...>-27550 (-----) [004] ...1 82316.410544: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
71796           <...>-27550 (-----) [004] ...1 82316.410550: tracing_mark_write: E|27550
71797           <...>-27550 (-----) [004] ...1 82316.410554: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
71798           <...>-27550 (-----) [004] ...1 82316.410558: tracing_mark_write: E|27550
71799           <...>-27550 (-----) [004] ...1 82316.410561: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
71800          <idle>-0     (-----) [002] d.h2 82316.410564: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
71801          <idle>-0     (-----) [002] d.h3 82316.410576: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
71802          <idle>-0     (-----) [002] dnh3 82316.410582: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
71803          <idle>-0     (-----) [002] .n.1 82316.410592: cpu_idle: state=4294967295 cpu_id=2
71804          <idle>-0     (-----) [000] d.h3 82316.410604: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
71805          <idle>-0     (-----) [002] d..2 82316.410605: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
71806          <idle>-0     (-----) [000] dnh4 82316.410620: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
71807          <idle>-0     (-----) [000] .n.1 82316.410634: cpu_idle: state=4294967295 cpu_id=0
71808          <idle>-0     (-----) [000] d..2 82316.410645: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
71809          <idle>-0     (-----) [005] .n.1 82316.410652: cpu_idle: state=4294967295 cpu_id=5
71810           <...>-27550 (-----) [004] ...1 82316.410654: tracing_mark_write: E|27550
71811           <...>-27550 (-----) [004] ...1 82316.410658: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
71812          <idle>-0     (-----) [005] d..2 82316.410661: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27680 next_prio=110
71813           <...>-27550 (-----) [004] d..2 82316.410675: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
71814          <idle>-0     (-----) [004] d..1 82316.410689: cpu_idle: state=0 cpu_id=4
71815 kgsl_worker_thr-258   (  258) [000] d..2 82316.410698: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
71816 kgsl_worker_thr-258   (  258) [000] d..3 82316.410717: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
71817           <...>-27680 (-----) [005] ...1 82316.410722: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
71818          <idle>-0     (-----) [001] .n.1 82316.410724: cpu_idle: state=4294967295 cpu_id=1
71819           <...>-27680 (-----) [005] ...1 82316.410737: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
71820          <idle>-0     (-----) [001] d..2 82316.410738: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
71821           <...>-27680 (-----) [005] ...1 82316.410741: tracing_mark_write: E|27550
71822 kgsl_worker_thr-258   (  258) [000] d..2 82316.410747: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71823          <idle>-0     (-----) [000] d..1 82316.410763: cpu_idle: state=0 cpu_id=0
71824           <...>-27680 (-----) [005] .... 82316.410763: binder_transaction: transaction=1570401 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
71825           <...>-27680 (-----) [005] .... 82316.410767: binder_transaction_alloc_buf: transaction=1570401 data_size=48 offsets_size=0
71826           <...>-27680 (-----) [005] ...2 82316.410769: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
71827           <...>-27680 (-----) [005] d..4 82316.410772: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
71828           <...>-27680 (-----) [005] dn.5 82316.410783: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
71829  kworker/u16:13-1147  ( 1147) [001] d..2 82316.410786: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
71830           <...>-27680 (-----) [005] d..2 82316.410790: sched_switch: prev_comm=id.nn.benchmark prev_pid=27680 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
71831          <idle>-0     (-----) [001] d..1 82316.410797: cpu_idle: state=0 cpu_id=1
71832<...>-770 ( 770) [005] .... 82316.410801: binder_transaction_received: transaction=1570401
71833    RenderThread-9436  ( 9105) [002] .... 82316.410819: binder_transaction: transaction=1570402 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
71834<...>-770 ( 770) [005] ...1 82316.410824: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
71835    RenderThread-9436  ( 9105) [002] .... 82316.410827: binder_transaction_alloc_buf: transaction=1570402 data_size=192 offsets_size=8
71836    RenderThread-9436  ( 9105) [002] d..4 82316.410839: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
71837    RenderThread-9436  ( 9105) [002] dn.5 82316.410857: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
71838    RenderThread-9436  ( 9105) [002] d..2 82316.410868: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
71839<...>-13083 ( 8858) [002] .... 82316.410878: binder_transaction_received: transaction=1570402
71840<...>-770 ( 770) [005] d..2 82316.410903: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
71841<...>-13083 ( 8858) [002] d.h1 82316.410947: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
71842<...>-770 ( 770) [005] ...1 82316.410961: tracing_mark_write: E|770
71843<...>-770 ( 770) [005] .... 82316.410970: binder_transaction: transaction=1570403 dest_node=0 dest_proc=27550 dest_thread=27680 reply=1 flags=0x0 code=0x0
71844<...>-770 ( 770) [005] .... 82316.410973: binder_transaction_alloc_buf: transaction=1570403 data_size=168 offsets_size=32
71845<...>-770 ( 770) [005] .... 82316.410980: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
71846<...>-770 ( 770) [005] d..2 82316.411017: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27680 next_prio=110
71847           <...>-27680 (-----) [005] .... 82316.411028: binder_transaction_received: transaction=1570403
71848<...>-13083 ( 8858) [002] .... 82316.411069: binder_transaction: transaction=1570404 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
71849<...>-13083 ( 8858) [002] .... 82316.411075: binder_transaction_alloc_buf: transaction=1570404 data_size=68 offsets_size=0
71850           <...>-27680 (-----) [005] ...1 82316.411102: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
71851           <...>-27680 (-----) [005] ...1 82316.411108: tracing_mark_write: E|27550
71852           <...>-27680 (-----) [005] .... 82316.411123: binder_transaction: transaction=1570405 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
71853<...>-13083 ( 8858) [002] d..2 82316.411124: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
71854           <...>-27680 (-----) [005] .... 82316.411126: binder_transaction_alloc_buf: transaction=1570405 data_size=48 offsets_size=0
71855           <...>-27680 (-----) [005] ...2 82316.411128: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
71856           <...>-27680 (-----) [005] d..4 82316.411131: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
71857    RenderThread-9436  ( 9105) [002] .... 82316.411135: binder_transaction_received: transaction=1570404
71858           <...>-27680 (-----) [005] dn.5 82316.411140: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
71859           <...>-27680 (-----) [005] d..2 82316.411147: sched_switch: prev_comm=id.nn.benchmark prev_pid=27680 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
71860<...>-770 ( 770) [005] .... 82316.411155: binder_transaction_received: transaction=1570405
71861<...>-770 ( 770) [005] ...1 82316.411172: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
71862    RenderThread-9436  ( 9105) [002] d..2 82316.411226: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
71863<...>-770 ( 770) [005] ...1 82316.411251: tracing_mark_write: E|770
71864<...>-770 ( 770) [005] .... 82316.411258: binder_transaction: transaction=1570406 dest_node=0 dest_proc=27550 dest_thread=27680 reply=1 flags=0x0 code=0x0
71865<...>-770 ( 770) [005] .... 82316.411262: binder_transaction_alloc_buf: transaction=1570406 data_size=168 offsets_size=32
71866<...>-770 ( 770) [005] .... 82316.411268: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
71867<...>-770 ( 770) [005] d..2 82316.411303: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27680 next_prio=110
71868           <...>-27680 (-----) [005] .... 82316.411313: binder_transaction_received: transaction=1570406
71869<...>-581 ( 571) [002] d..2 82316.411366: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71870          <idle>-0     (-----) [002] d..1 82316.411388: cpu_idle: state=0 cpu_id=2
71871           <...>-27680 (-----) [005] ...1 82316.411600: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
71872           <...>-27680 (-----) [005] ...1 82316.411611: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
71873           <...>-27680 (-----) [005] ...1 82316.411615: tracing_mark_write: E|27550
71874           <...>-27680 (-----) [005] .... 82316.411682: binder_transaction: transaction=1570407 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
71875           <...>-27680 (-----) [005] .... 82316.411685: binder_transaction_alloc_buf: transaction=1570407 data_size=556 offsets_size=104
71876           <...>-27680 (-----) [005] ...2 82316.411700: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
71877           <...>-27680 (-----) [005] d..4 82316.411703: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71878           <...>-27680 (-----) [005] dn.5 82316.411714: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71879           <...>-27680 (-----) [005] d..2 82316.411721: sched_switch: prev_comm=id.nn.benchmark prev_pid=27680 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71880<...>-5340 ( 788) [005] .... 82316.411731: binder_transaction_received: transaction=1570407
71881<...>-5340 ( 788) [005] ...1 82316.411822: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
71882<...>-5340 ( 788) [005] d..2 82316.411868: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71883          <idle>-0     (-----) [003] d.H2 82316.411887: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
71884<...>-5340 ( 788) [005] d..2 82316.411892: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27680 next_prio=110
71885          <idle>-0     (-----) [000] dnh2 82316.411899: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71886          <idle>-0     (-----) [003] dnH3 82316.411903: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
71887          <idle>-0     (-----) [000] .n.1 82316.411907: cpu_idle: state=4294967295 cpu_id=0
71888          <idle>-0     (-----) [003] dns2 82316.411913: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
71889           <...>-27680 (-----) [005] d..2 82316.411919: sched_switch: prev_comm=id.nn.benchmark prev_pid=27680 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71890          <idle>-0     (-----) [000] d..2 82316.411921: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
71891          <idle>-0     (-----) [003] dns3 82316.411933: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
71892          <idle>-0     (-----) [005] d..1 82316.411936: cpu_idle: state=0 cpu_id=5
71893          <idle>-0     (-----) [003] .n.1 82316.411956: cpu_idle: state=4294967295 cpu_id=3
71894          <idle>-0     (-----) [003] d..2 82316.411965: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
71895<...>-87 ( 87) [000] d..2 82316.411972: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71896          <idle>-0     (-----) [002] d.h4 82316.411981: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71897        DispSync-8879  ( 8858) [003] d..1 82316.411983: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
71898          <idle>-0     (-----) [000] d..1 82316.411987: cpu_idle: state=0 cpu_id=0
71899        DispSync-8879  ( 8858) [003] d..2 82316.412003: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
71900          <idle>-0     (-----) [002] dnh5 82316.412012: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71901          <idle>-0     (-----) [002] .n.1 82316.412028: cpu_idle: state=4294967295 cpu_id=2
71902        DispSync-8879  ( 8858) [003] d..2 82316.412035: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
71903          <idle>-0     (-----) [002] d..2 82316.412042: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
71904     rcu_preempt-7     (    7) [003] d..2 82316.412046: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
71905     rcu_preempt-7     (    7) [003] d..3 82316.412066: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
71906   sfEventThread-8882  ( 8858) [002] d.h5 82316.412068: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71907     rcu_preempt-7     (    7) [003] d..2 82316.412083: 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
71908         rcuop/2-29    (   29) [003] d..2 82316.412089: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
71909          <idle>-0     (-----) [005] dnh2 82316.412092: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71910          <idle>-0     (-----) [005] .n.1 82316.412096: cpu_idle: state=4294967295 cpu_id=5
71911          <idle>-0     (-----) [005] d..2 82316.412104: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71912         rcuop/2-29    (   29) [003] d..3 82316.412129: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
71913         rcuop/2-29    (   29) [003] d..2 82316.412141: 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
71914   sfEventThread-8882  ( 8858) [002] d..3 82316.412146: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
71915<...>-5340 ( 788) [005] d..1 82316.412159: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
71916   sfEventThread-8882  ( 8858) [002] d..4 82316.412170: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
71917         rcuop/3-37    (   37) [003] d..2 82316.412186: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
71918   sfEventThread-8882  ( 8858) [002] d..2 82316.412201: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
71919<...>-86 ( 86) [002] d.h3 82316.412215: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
71920<...>-86 ( 86) [002] d..2 82316.412248: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
71921 neuralnetworks@-13088 (  788) [002] d..2 82316.412310: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71922          <idle>-0     (-----) [002] d..1 82316.412328: cpu_idle: state=0 cpu_id=2
71923<...>-5340 ( 788) [005] d..2 82316.412339: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71924          <idle>-0     (-----) [000] dnh2 82316.412362: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
71925<...>-5340 ( 788) [005] d..2 82316.412366: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
71926          <idle>-0     (-----) [000] .n.1 82316.412369: cpu_idle: state=4294967295 cpu_id=0
71927          <idle>-0     (-----) [000] d..2 82316.412380: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
71928          <idle>-0     (-----) [005] d..1 82316.412381: cpu_idle: state=0 cpu_id=5
71929<...>-87 ( 87) [000] d..2 82316.412421: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
71930          <idle>-0     (-----) [002] d.h4 82316.412422: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71931          <idle>-0     (-----) [000] d..1 82316.412435: cpu_idle: state=0 cpu_id=0
71932          <idle>-0     (-----) [002] dnh5 82316.412436: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
71933          <idle>-0     (-----) [002] .n.1 82316.412447: cpu_idle: state=4294967295 cpu_id=2
71934          <idle>-0     (-----) [002] d..2 82316.412460: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
71935<...>-86 ( 86) [002] d..2 82316.412500: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71936          <idle>-0     (-----) [002] d..1 82316.412514: cpu_idle: state=0 cpu_id=2
71937  surfaceflinger-8858  ( 8858) [003] d..1 82316.412546: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
71938  surfaceflinger-8858  ( 8858) [003] d..2 82316.412568: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
71939          <idle>-0     (-----) [002] .n.1 82316.412575: cpu_idle: state=4294967295 cpu_id=2
71940          <idle>-0     (-----) [002] d..2 82316.412585: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
71941   sfEventThread-8882  ( 8858) [002] d..2 82316.412633: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
71942          <idle>-0     (-----) [002] d..1 82316.412647: cpu_idle: state=0 cpu_id=2
71943          <idle>-0     (-----) [005] ...1 82316.412707: cpu_idle: state=4294967295 cpu_id=5
71944          <idle>-0     (-----) [005] d..1 82316.412710: cpu_idle: state=0 cpu_id=5
71945  surfaceflinger-8858  ( 8858) [003] ...1 82316.412769: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
71946  surfaceflinger-8858  ( 8858) [003] ...1 82316.412777: tracing_mark_write: E|8858
71947  surfaceflinger-8858  ( 8858) [003] .... 82316.412833: binder_transaction: transaction=1570410 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
71948  surfaceflinger-8858  ( 8858) [003] .... 82316.412839: binder_transaction_alloc_buf: transaction=1570410 data_size=540 offsets_size=96
71949  surfaceflinger-8858  ( 8858) [003] ...2 82316.412865: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
71950  surfaceflinger-8858  ( 8858) [003] d..4 82316.412873: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
71951  surfaceflinger-8858  ( 8858) [003] d..5 82316.412895: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
71952          <idle>-0     (-----) [001] .n.1 82316.412900: cpu_idle: state=4294967295 cpu_id=1
71953          <idle>-0     (-----) [001] d..2 82316.412912: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
71954 [email protected]   (  619) [001] .... 82316.412924: binder_transaction_received: transaction=1570410
71955  surfaceflinger-8858  ( 8858) [003] d..2 82316.412930: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
71956          <idle>-0     (-----) [003] d..1 82316.412949: cpu_idle: state=0 cpu_id=3
71957 [email protected]   (  619) [001] ...1 82316.412970: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
71958 [email protected]   (  619) [001] ...1 82316.413093: tracing_mark_write: B|619|HWCSession::PresentDisplay::
71959 [email protected]   (  619) [001] ...1 82316.413285: tracing_mark_write: B|619|HWDeviceDRM::Commit::
71960 [email protected]   (  619) [001] ...1 82316.413299: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
71961          <idle>-0     (-----) [002] ...1 82316.413821: cpu_idle: state=4294967295 cpu_id=2
71962          <idle>-0     (-----) [002] d..1 82316.413826: cpu_idle: state=0 cpu_id=2
71963 [email protected]   (  619) [001] d..2 82316.413973: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
71964 [email protected]   (  619) [001] d..3 82316.414002: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
71965          <idle>-0     (-----) [002] .n.1 82316.414006: cpu_idle: state=4294967295 cpu_id=2
71966          <idle>-0     (-----) [002] d..2 82316.414017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
71967          <idle>-0     (-----) [000] ...1 82316.414029: cpu_idle: state=4294967295 cpu_id=0
71968          <idle>-0     (-----) [000] d..1 82316.414034: cpu_idle: state=0 cpu_id=0
71969 crtc_commit:111-321   (  321) [002] d.h3 82316.414065: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71970          <idle>-0     (-----) [005] dnh2 82316.414086: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
71971          <idle>-0     (-----) [005] .n.1 82316.414089: cpu_idle: state=4294967295 cpu_id=5
71972          <idle>-0     (-----) [005] d..2 82316.414097: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
71973 [email protected]   (  619) [001] ...1 82316.414116: tracing_mark_write: E|619
71974 [email protected]   (  619) [001] ...1 82316.414124: tracing_mark_write: E|619
71975<...>-5340 ( 788) [005] d..1 82316.414150: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
71976 crtc_commit:111-321   (  321) [002] d.h1 82316.414180: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
71977 [email protected]   (  619) [001] ...1 82316.414197: tracing_mark_write: E|619
71978<...>-5340 ( 788) [005] ...1 82316.414249: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
71979<...>-5340 ( 788) [005] ...1 82316.414253: tracing_mark_write: E|788
71980<...>-5340 ( 788) [005] .... 82316.414271: binder_transaction: transaction=1570411 dest_node=1570408 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
71981<...>-5340 ( 788) [005] .... 82316.414274: binder_transaction_alloc_buf: transaction=1570411 data_size=60 offsets_size=0
71982<...>-5340 ( 788) [005] d..4 82316.414277: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
71983 [email protected]   (  619) [001] ...1 82316.414281: tracing_mark_write: E|619
71984<...>-5340 ( 788) [005] d..5 82316.414290: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
71985          <idle>-0     (-----) [004] .n.1 82316.414296: cpu_idle: state=4294967295 cpu_id=4
71986 [email protected]   (  619) [001] .... 82316.414298: binder_transaction: transaction=1570412 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
71987 [email protected]   (  619) [001] .... 82316.414303: binder_transaction_alloc_buf: transaction=1570412 data_size=576 offsets_size=112
71988          <idle>-0     (-----) [004] d..2 82316.414304: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
71989           <...>-27571 (-----) [004] .... 82316.414309: binder_transaction_received: transaction=1570411
71990<...>-5340 ( 788) [005] ...1 82316.414314: tracing_mark_write: E|788
71991<...>-5340 ( 788) [005] .... 82316.414321: binder_transaction: transaction=1570413 dest_node=0 dest_proc=27550 dest_thread=27680 reply=1 flags=0x0 code=0x0
71992<...>-5340 ( 788) [005] .... 82316.414323: binder_transaction_alloc_buf: transaction=1570413 data_size=8 offsets_size=0
71993<...>-5340 ( 788) [005] d..2 82316.414325: sched_waking: comm=id.nn.benchmark pid=27680 prio=110 target_cpu=005
71994 [email protected]   (  619) [001] d..2 82316.414327: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
71995           <...>-27571 (-----) [004] ...1 82316.414329: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
71996<...>-5340 ( 788) [005] d..3 82316.414332: sched_wakeup: comm=id.nn.benchmark pid=27680 prio=110 target_cpu=005
71997<...>-5340 ( 788) [005] .... 82316.414334: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
71998           <...>-27571 (-----) [004] ...1 82316.414335: tracing_mark_write: E|27550
71999 [email protected]   (  619) [001] d..3 82316.414347: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
72000 [email protected]   (  619) [001] .... 82316.414352: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
72001          <idle>-0     (-----) [003] .n.1 82316.414353: cpu_idle: state=4294967295 cpu_id=3
72002           <...>-27571 (-----) [004] d..2 82316.414364: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72003          <idle>-0     (-----) [003] d..2 82316.414365: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
72004          <idle>-0     (-----) [004] d..1 82316.414372: cpu_idle: state=0 cpu_id=4
72005  surfaceflinger-8858  ( 8858) [003] .... 82316.414374: binder_transaction_received: transaction=1570412
72006<...>-5340 ( 788) [005] d..2 82316.414376: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27680 next_prio=110
72007           <...>-27680 (-----) [005] .... 82316.414386: binder_transaction_received: transaction=1570413
72008           <...>-27680 (-----) [005] ...1 82316.414422: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
72009           <...>-27680 (-----) [005] ...1 82316.414428: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
72010 [email protected]   (  619) [001] d..2 82316.414453: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72011           <...>-27680 (-----) [005] ...1 82316.414454: tracing_mark_write: E|27550
72012           <...>-27680 (-----) [005] ...1 82316.414457: tracing_mark_write: E|27550
72013           <...>-27680 (-----) [005] ...1 82316.414461: tracing_mark_write: E|27550
72014          <idle>-0     (-----) [001] d..1 82316.414468: cpu_idle: state=0 cpu_id=1
72015           <...>-27680 (-----) [005] ...1 82316.414651: tracing_mark_write: E|27550
72016           <...>-27680 (-----) [005] d..1 82316.414664: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72017           <...>-27680 (-----) [005] d..2 82316.414680: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72018          <idle>-0     (-----) [004] .n.1 82316.414685: cpu_idle: state=4294967295 cpu_id=4
72019          <idle>-0     (-----) [004] d..2 82316.414692: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
72020           <...>-27550 (-----) [004] d..2 82316.414712: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72021          <idle>-0     (-----) [004] d..1 82316.414721: cpu_idle: state=0 cpu_id=4
72022           <...>-27680 (-----) [005] d..1 82316.414773: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72023           <...>-27680 (-----) [005] d..2 82316.414782: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72024          <idle>-0     (-----) [004] .n.1 82316.414788: cpu_idle: state=4294967295 cpu_id=4
72025          <idle>-0     (-----) [004] d..2 82316.414796: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
72026           <...>-27680 (-----) [005] d..2 82316.414822: sched_switch: prev_comm=id.nn.benchmark prev_pid=27680 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
72027           <...>-27550 (-----) [004] ...1 82316.414830: tracing_mark_write: E|27550
72028           <...>-27550 (-----) [004] ...1 82316.414834: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
72029           <...>-27550 (-----) [004] ...1 82316.414840: tracing_mark_write: E|27550
72030          <idle>-0     (-----) [005] d..1 82316.414843: cpu_idle: state=0 cpu_id=5
72031           <...>-27550 (-----) [004] ...1 82316.414844: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
72032           <...>-27550 (-----) [004] ...1 82316.414848: tracing_mark_write: E|27550
72033           <...>-27550 (-----) [004] ...1 82316.414852: tracing_mark_write: E|27550
72034  surfaceflinger-8858  ( 8858) [003] d..2 82316.414865: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72035 crtc_commit:111-321   (  321) [002] d..2 82316.414880: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
72036          <idle>-0     (-----) [003] d..1 82316.414884: cpu_idle: state=0 cpu_id=3
72037 neuralnetworks@-13088 (  788) [002] d..2 82316.414929: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72038          <idle>-0     (-----) [002] d..1 82316.414947: cpu_idle: state=0 cpu_id=2
72039           <...>-27550 (-----) [004] ...1 82316.414964: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
72040           <...>-27550 (-----) [004] ...1 82316.415022: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
72041           <...>-27550 (-----) [004] ...1 82316.415027: tracing_mark_write: E|27550
72042           <...>-27550 (-----) [004] ...1 82316.415030: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
72043           <...>-27550 (-----) [004] ...1 82316.415036: tracing_mark_write: E|27550
72044           <...>-27550 (-----) [004] ...1 82316.415040: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
72045           <...>-27550 (-----) [004] ...1 82316.415044: tracing_mark_write: E|27550
72046           <...>-27550 (-----) [004] ...1 82316.415048: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
72047          <idle>-0     (-----) [001] d.s2 82316.415140: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
72048          <idle>-0     (-----) [001] dns3 82316.415163: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
72049          <idle>-0     (-----) [005] .n.1 82316.415176: cpu_idle: state=4294967295 cpu_id=5
72050           <...>-27550 (-----) [004] ...1 82316.415179: tracing_mark_write: E|27550
72051           <...>-27550 (-----) [004] ...1 82316.415184: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
72052          <idle>-0     (-----) [001] .n.1 82316.415185: cpu_idle: state=4294967295 cpu_id=1
72053          <idle>-0     (-----) [005] d..2 82316.415187: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27681 next_prio=110
72054          <idle>-0     (-----) [001] d..2 82316.415197: 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
72055           <...>-27550 (-----) [004] d..2 82316.415203: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72056<...>-8 ( 8) [001] d..2 82316.415208: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
72057          <idle>-0     (-----) [004] d..1 82316.415218: cpu_idle: state=0 cpu_id=4
72058           <...>-27681 (-----) [005] ...1 82316.415247: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
72059<...>-8 ( 8) [001] d..3 82316.415251: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
72060           <...>-27681 (-----) [005] ...1 82316.415261: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
72061<...>-8 ( 8) [001] d..2 82316.415264: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
72062           <...>-27681 (-----) [005] ...1 82316.415265: tracing_mark_write: E|27550
72063<...>-46 ( 46) [001] d..2 82316.415277: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
72064           <...>-27681 (-----) [005] .... 82316.415284: binder_transaction: transaction=1570414 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
72065           <...>-27681 (-----) [005] .... 82316.415288: binder_transaction_alloc_buf: transaction=1570414 data_size=48 offsets_size=0
72066           <...>-27681 (-----) [005] ...2 82316.415291: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
72067<...>-46 ( 46) [001] d..3 82316.415292: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
72068           <...>-27681 (-----) [005] d..4 82316.415294: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
72069<...>-46 ( 46) [001] d..2 82316.415301: 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
72070           <...>-27681 (-----) [005] dn.5 82316.415307: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
72071           <...>-27681 (-----) [005] d..2 82316.415314: sched_switch: prev_comm=id.nn.benchmark prev_pid=27681 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
72072<...>-770 ( 770) [005] .... 82316.415324: binder_transaction_received: transaction=1570414
72073<...>-8 ( 8) [001] d..2 82316.415327: 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
72074          <idle>-0     (-----) [001] d..1 82316.415343: cpu_idle: state=0 cpu_id=1
72075<...>-770 ( 770) [005] ...1 82316.415349: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
72076<...>-770 ( 770) [005] d..2 82316.415431: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
72077          <idle>-0     (-----) [000] dnh2 82316.415472: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
72078          <idle>-0     (-----) [000] .n.1 82316.415478: cpu_idle: state=4294967295 cpu_id=0
72079<...>-770 ( 770) [005] ...1 82316.415487: tracing_mark_write: E|770
72080          <idle>-0     (-----) [000] d..2 82316.415490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
72081<...>-770 ( 770) [005] .... 82316.415496: binder_transaction: transaction=1570415 dest_node=0 dest_proc=27550 dest_thread=27681 reply=1 flags=0x0 code=0x0
72082<...>-770 ( 770) [005] .... 82316.415498: binder_transaction_alloc_buf: transaction=1570415 data_size=168 offsets_size=32
72083<...>-770 ( 770) [005] .... 82316.415505: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
72084<...>-770 ( 770) [005] d..2 82316.415541: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27681 next_prio=110
72085           <...>-27681 (-----) [005] .... 82316.415552: binder_transaction_received: transaction=1570415
72086<...>-581 ( 571) [000] d..2 82316.415597: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72087          <idle>-0     (-----) [000] d..1 82316.415616: cpu_idle: state=0 cpu_id=0
72088           <...>-27681 (-----) [005] ...1 82316.415626: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
72089           <...>-27681 (-----) [005] ...1 82316.415631: tracing_mark_write: E|27550
72090           <...>-27681 (-----) [005] .... 82316.415645: binder_transaction: transaction=1570416 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
72091           <...>-27681 (-----) [005] .... 82316.415648: binder_transaction_alloc_buf: transaction=1570416 data_size=48 offsets_size=0
72092           <...>-27681 (-----) [005] ...2 82316.415650: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
72093           <...>-27681 (-----) [005] d..4 82316.415652: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
72094           <...>-27681 (-----) [005] dn.5 82316.415663: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
72095           <...>-27681 (-----) [005] d..2 82316.415669: sched_switch: prev_comm=id.nn.benchmark prev_pid=27681 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
72096<...>-770 ( 770) [005] .... 82316.415677: binder_transaction_received: transaction=1570416
72097<...>-770 ( 770) [005] ...1 82316.415694: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
72098<...>-770 ( 770) [005] d..2 82316.415752: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
72099          <idle>-0     (-----) [000] dnh2 82316.415778: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
72100<...>-770 ( 770) [005] ...1 82316.415785: tracing_mark_write: E|770
72101          <idle>-0     (-----) [000] .n.1 82316.415786: cpu_idle: state=4294967295 cpu_id=0
72102<...>-770 ( 770) [005] .... 82316.415792: binder_transaction: transaction=1570417 dest_node=0 dest_proc=27550 dest_thread=27681 reply=1 flags=0x0 code=0x0
72103<...>-770 ( 770) [005] .... 82316.415796: binder_transaction_alloc_buf: transaction=1570417 data_size=168 offsets_size=32
72104          <idle>-0     (-----) [000] d..2 82316.415798: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
72105<...>-770 ( 770) [005] .... 82316.415801: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
72106<...>-770 ( 770) [005] d..2 82316.415835: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27681 next_prio=110
72107           <...>-27681 (-----) [005] .... 82316.415846: binder_transaction_received: transaction=1570417
72108<...>-581 ( 571) [000] d..2 82316.415861: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72109          <idle>-0     (-----) [000] d..1 82316.415876: cpu_idle: state=0 cpu_id=0
72110           <...>-27681 (-----) [005] ...1 82316.416124: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
72111           <...>-27681 (-----) [005] ...1 82316.416134: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
72112           <...>-27681 (-----) [005] ...1 82316.416138: tracing_mark_write: E|27550
72113           <...>-27681 (-----) [005] .... 82316.416203: binder_transaction: transaction=1570418 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
72114           <...>-27681 (-----) [005] .... 82316.416206: binder_transaction_alloc_buf: transaction=1570418 data_size=556 offsets_size=104
72115           <...>-27681 (-----) [005] ...2 82316.416220: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
72116           <...>-27681 (-----) [005] d..4 82316.416223: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72117           <...>-27681 (-----) [005] dn.5 82316.416234: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72118           <...>-27681 (-----) [005] d..2 82316.416241: sched_switch: prev_comm=id.nn.benchmark prev_pid=27681 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72119<...>-5340 ( 788) [005] .... 82316.416251: binder_transaction_received: transaction=1570418
72120<...>-5340 ( 788) [005] ...1 82316.416296: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
72121<...>-5340 ( 788) [005] d..2 82316.416343: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
72122<...>-5340 ( 788) [005] d..2 82316.416368: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27681 next_prio=110
72123          <idle>-0     (-----) [000] dnh2 82316.416372: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
72124          <idle>-0     (-----) [002] ...1 82316.416376: cpu_idle: state=4294967295 cpu_id=2
72125          <idle>-0     (-----) [000] .n.1 82316.416380: cpu_idle: state=4294967295 cpu_id=0
72126          <idle>-0     (-----) [002] d..1 82316.416381: cpu_idle: state=0 cpu_id=2
72127           <...>-27681 (-----) [005] d..2 82316.416391: sched_switch: prev_comm=id.nn.benchmark prev_pid=27681 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72128          <idle>-0     (-----) [000] d..2 82316.416392: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
72129          <idle>-0     (-----) [005] d..1 82316.416409: cpu_idle: state=0 cpu_id=5
72130<...>-87 ( 87) [000] d..2 82316.416438: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72131          <idle>-0     (-----) [002] d.h4 82316.416446: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
72132          <idle>-0     (-----) [000] d..1 82316.416452: cpu_idle: state=0 cpu_id=0
72133          <idle>-0     (-----) [002] dnh5 82316.416467: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
72134          <idle>-0     (-----) [002] .n.1 82316.416478: cpu_idle: state=4294967295 cpu_id=2
72135          <idle>-0     (-----) [002] d..2 82316.416493: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
72136<...>-86 ( 86) [002] d.h4 82316.416527: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72137          <idle>-0     (-----) [005] dnh2 82316.416551: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72138          <idle>-0     (-----) [005] .n.1 82316.416555: cpu_idle: state=4294967295 cpu_id=5
72139          <idle>-0     (-----) [005] d..2 82316.416563: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72140<...>-86 ( 86) [002] d..2 82316.416590: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72141          <idle>-0     (-----) [002] d..1 82316.416604: cpu_idle: state=0 cpu_id=2
72142<...>-5340 ( 788) [005] d..1 82316.416619: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
72143          <idle>-0     (-----) [002] dnh2 82316.416643: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
72144          <idle>-0     (-----) [002] .n.1 82316.416650: cpu_idle: state=4294967295 cpu_id=2
72145          <idle>-0     (-----) [002] d..2 82316.416662: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
72146 neuralnetworks@-13088 (  788) [002] d..2 82316.416706: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72147          <idle>-0     (-----) [002] d..1 82316.416719: cpu_idle: state=0 cpu_id=2
72148<...>-5340 ( 788) [005] d..2 82316.416763: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
72149          <idle>-0     (-----) [000] dnh2 82316.416784: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
72150<...>-5340 ( 788) [005] d..2 82316.416789: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72151          <idle>-0     (-----) [000] .n.1 82316.416791: cpu_idle: state=4294967295 cpu_id=0
72152          <idle>-0     (-----) [000] d..2 82316.416803: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
72153          <idle>-0     (-----) [005] d..1 82316.416803: cpu_idle: state=0 cpu_id=5
72154<...>-87 ( 87) [000] d..2 82316.416840: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72155          <idle>-0     (-----) [002] d.h4 82316.416844: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
72156          <idle>-0     (-----) [000] d..1 82316.416854: cpu_idle: state=0 cpu_id=0
72157          <idle>-0     (-----) [002] dnh5 82316.416856: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
72158          <idle>-0     (-----) [002] .n.1 82316.416866: cpu_idle: state=4294967295 cpu_id=2
72159          <idle>-0     (-----) [002] d..2 82316.416879: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
72160<...>-86 ( 86) [002] d..2 82316.416914: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72161          <idle>-0     (-----) [002] d..1 82316.416927: cpu_idle: state=0 cpu_id=2
72162          <idle>-0     (-----) [005] ...1 82316.417140: cpu_idle: state=4294967295 cpu_id=5
72163          <idle>-0     (-----) [005] d..1 82316.417143: cpu_idle: state=0 cpu_id=5
72164          <idle>-0     (-----) [000] ...1 82316.418197: cpu_idle: state=4294967295 cpu_id=0
72165          <idle>-0     (-----) [000] d..1 82316.418203: cpu_idle: state=0 cpu_id=0
72166          <idle>-0     (-----) [003] d.s2 82316.418475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
72167          <idle>-0     (-----) [003] dns3 82316.418496: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
72168          <idle>-0     (-----) [003] dns3 82316.418504: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
72169          <idle>-0     (-----) [002] d.h4 82316.418538: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72170          <idle>-0     (-----) [003] dns4 82316.418542: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
72171          <idle>-0     (-----) [005] dnh2 82316.418559: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72172          <idle>-0     (-----) [003] .n.1 82316.418561: cpu_idle: state=4294967295 cpu_id=3
72173          <idle>-0     (-----) [005] .n.1 82316.418563: cpu_idle: state=4294967295 cpu_id=5
72174          <idle>-0     (-----) [005] d..2 82316.418572: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72175          <idle>-0     (-----) [003] d..2 82316.418575: 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
72176          <idle>-0     (-----) [002] ...1 82316.418579: cpu_idle: state=4294967295 cpu_id=2
72177          <idle>-0     (-----) [002] d..1 82316.418586: cpu_idle: state=0 cpu_id=2
72178     rcu_preempt-7     (    7) [003] d..2 82316.418597: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
72179<...>-5340 ( 788) [005] d..1 82316.418620: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
72180  kworker/u16:13-1147  ( 1147) [003] .... 82316.418639: clk_set_rate: l3_cluster0_vote_clk 403200000
72181          <idle>-0     (-----) [002] dnh2 82316.418647: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
72182          <idle>-0     (-----) [002] .n.1 82316.418653: cpu_idle: state=4294967295 cpu_id=2
72183          <idle>-0     (-----) [002] d..2 82316.418667: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
72184<...>-5340 ( 788) [005] ...1 82316.418726: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
72185<...>-5340 ( 788) [005] ...1 82316.418730: tracing_mark_write: E|788
72186 neuralnetworks@-13088 (  788) [002] d..2 82316.418742: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72187<...>-5340 ( 788) [005] .... 82316.418746: binder_transaction: transaction=1570421 dest_node=1570419 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
72188<...>-5340 ( 788) [005] .... 82316.418749: binder_transaction_alloc_buf: transaction=1570421 data_size=60 offsets_size=0
72189<...>-5340 ( 788) [005] d..4 82316.418752: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
72190<...>-5340 ( 788) [005] d..5 82316.418764: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
72191          <idle>-0     (-----) [004] .n.1 82316.418770: cpu_idle: state=4294967295 cpu_id=4
72192          <idle>-0     (-----) [002] d..1 82316.418779: cpu_idle: state=0 cpu_id=2
72193          <idle>-0     (-----) [004] d..2 82316.418780: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
72194           <...>-27571 (-----) [004] .... 82316.418785: binder_transaction_received: transaction=1570421
72195<...>-5340 ( 788) [005] ...1 82316.418787: tracing_mark_write: E|788
72196<...>-5340 ( 788) [005] .... 82316.418793: binder_transaction: transaction=1570422 dest_node=0 dest_proc=27550 dest_thread=27681 reply=1 flags=0x0 code=0x0
72197          <idle>-0     (-----) [002] ...1 82316.418794: cpu_idle: state=4294967295 cpu_id=2
72198<...>-5340 ( 788) [005] .... 82316.418795: binder_transaction_alloc_buf: transaction=1570422 data_size=8 offsets_size=0
72199<...>-5340 ( 788) [005] d..2 82316.418797: sched_waking: comm=id.nn.benchmark pid=27681 prio=110 target_cpu=005
72200          <idle>-0     (-----) [002] d..1 82316.418801: cpu_idle: state=0 cpu_id=2
72201           <...>-27571 (-----) [004] ...1 82316.418802: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
72202<...>-5340 ( 788) [005] d..3 82316.418804: sched_wakeup: comm=id.nn.benchmark pid=27681 prio=110 target_cpu=005
72203<...>-5340 ( 788) [005] .... 82316.418805: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
72204           <...>-27571 (-----) [004] ...1 82316.418808: tracing_mark_write: E|27550
72205           <...>-27571 (-----) [004] d..2 82316.418838: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72206          <idle>-0     (-----) [004] d..1 82316.418847: cpu_idle: state=0 cpu_id=4
72207<...>-5340 ( 788) [005] d..2 82316.418848: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27681 next_prio=110
72208           <...>-27681 (-----) [005] .... 82316.418857: binder_transaction_received: transaction=1570422
72209           <...>-27681 (-----) [005] ...1 82316.418893: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
72210           <...>-27681 (-----) [005] ...1 82316.418899: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
72211           <...>-27681 (-----) [005] ...1 82316.418925: tracing_mark_write: E|27550
72212           <...>-27681 (-----) [005] ...1 82316.418928: tracing_mark_write: E|27550
72213           <...>-27681 (-----) [005] ...1 82316.418931: tracing_mark_write: E|27550
72214  kworker/u16:13-1147  ( 1147) [003] d..2 82316.418988: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
72215          <idle>-0     (-----) [003] d..1 82316.419003: cpu_idle: state=0 cpu_id=3
72216          <idle>-0     (-----) [001] d.s3 82316.419056: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
72217          <idle>-0     (-----) [001] d.s4 82316.419069: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
72218          <idle>-0     (-----) [001] d.s4 82316.419079: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
72219          <idle>-0     (-----) [003] .n.1 82316.419086: cpu_idle: state=4294967295 cpu_id=3
72220          <idle>-0     (-----) [001] ...1 82316.419090: cpu_idle: state=4294967295 cpu_id=1
72221          <idle>-0     (-----) [001] d..1 82316.419096: cpu_idle: state=0 cpu_id=1
72222          <idle>-0     (-----) [003] d..2 82316.419099: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
72223           <...>-27681 (-----) [005] ...1 82316.419119: tracing_mark_write: E|27550
72224           <...>-27681 (-----) [005] d..1 82316.419143: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72225           <...>-27681 (-----) [005] d..2 82316.419160: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72226          <idle>-0     (-----) [004] .n.1 82316.419165: cpu_idle: state=4294967295 cpu_id=4
72227          <idle>-0     (-----) [004] d..2 82316.419172: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
72228           <...>-27550 (-----) [004] d..2 82316.419192: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72229  kworker/u16:13-1147  ( 1147) [003] d..2 82316.419201: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72230          <idle>-0     (-----) [004] d..1 82316.419202: cpu_idle: state=0 cpu_id=4
72231          <idle>-0     (-----) [003] d..1 82316.419213: cpu_idle: state=0 cpu_id=3
72232           <...>-27681 (-----) [005] d..1 82316.419251: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72233           <...>-27681 (-----) [005] d..2 82316.419261: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72234          <idle>-0     (-----) [004] .n.1 82316.419266: cpu_idle: state=4294967295 cpu_id=4
72235          <idle>-0     (-----) [004] d..2 82316.419273: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
72236           <...>-27681 (-----) [005] d..2 82316.419299: sched_switch: prev_comm=id.nn.benchmark prev_pid=27681 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
72237           <...>-27550 (-----) [004] ...1 82316.419323: tracing_mark_write: E|27550
72238           <...>-27550 (-----) [004] ...1 82316.419328: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
72239          <idle>-0     (-----) [005] d..1 82316.419330: cpu_idle: state=0 cpu_id=5
72240           <...>-27550 (-----) [004] ...1 82316.419334: tracing_mark_write: E|27550
72241           <...>-27550 (-----) [004] ...1 82316.419337: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
72242           <...>-27550 (-----) [004] ...1 82316.419341: tracing_mark_write: E|27550
72243           <...>-27550 (-----) [004] ...1 82316.419346: tracing_mark_write: E|27550
72244           <...>-27550 (-----) [004] ...1 82316.419460: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
72245           <...>-27550 (-----) [004] ...1 82316.419519: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
72246           <...>-27550 (-----) [004] ...1 82316.419525: tracing_mark_write: E|27550
72247           <...>-27550 (-----) [004] ...1 82316.419531: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
72248           <...>-27550 (-----) [004] ...1 82316.419536: tracing_mark_write: E|27550
72249           <...>-27550 (-----) [004] ...1 82316.419540: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
72250           <...>-27550 (-----) [004] ...1 82316.419545: tracing_mark_write: E|27550
72251           <...>-27550 (-----) [004] ...1 82316.419548: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
72252          <idle>-0     (-----) [005] .n.1 82316.419637: cpu_idle: state=4294967295 cpu_id=5
72253           <...>-27550 (-----) [004] ...1 82316.419638: tracing_mark_write: E|27550
72254           <...>-27550 (-----) [004] ...1 82316.419642: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
72255          <idle>-0     (-----) [005] d..2 82316.419646: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27682 next_prio=110
72256           <...>-27550 (-----) [004] d..2 82316.419659: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72257          <idle>-0     (-----) [004] d..1 82316.419674: cpu_idle: state=0 cpu_id=4
72258           <...>-27682 (-----) [005] ...1 82316.419707: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
72259           <...>-27682 (-----) [005] ...1 82316.419721: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
72260           <...>-27682 (-----) [005] ...1 82316.419725: tracing_mark_write: E|27550
72261           <...>-27682 (-----) [005] .... 82316.419744: binder_transaction: transaction=1570423 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
72262           <...>-27682 (-----) [005] .... 82316.419747: binder_transaction_alloc_buf: transaction=1570423 data_size=48 offsets_size=0
72263           <...>-27682 (-----) [005] ...2 82316.419750: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
72264           <...>-27682 (-----) [005] d..4 82316.419752: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
72265           <...>-27682 (-----) [005] dn.5 82316.419762: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
72266           <...>-27682 (-----) [005] d..2 82316.419769: sched_switch: prev_comm=id.nn.benchmark prev_pid=27682 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
72267<...>-770 ( 770) [005] .... 82316.419780: binder_transaction_received: transaction=1570423
72268<...>-770 ( 770) [005] ...1 82316.419801: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
72269          <idle>-0     (-----) [000] d.h5 82316.419836: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
72270          <idle>-0     (-----) [000] d.h6 82316.419859: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
72271          <idle>-0     (-----) [000] d.h5 82316.419865: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
72272          <idle>-0     (-----) [003] .n.1 82316.419865: cpu_idle: state=4294967295 cpu_id=3
72273<...>-770 ( 770) [005] d..2 82316.419869: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
72274          <idle>-0     (-----) [000] d.h6 82316.419878: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
72275          <idle>-0     (-----) [003] d..2 82316.419878: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
72276          <idle>-0     (-----) [002] .n.1 82316.419884: cpu_idle: state=4294967295 cpu_id=2
72277          <idle>-0     (-----) [000] ...1 82316.419895: cpu_idle: state=4294967295 cpu_id=0
72278          <idle>-0     (-----) [002] d..2 82316.419896: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
72279          <idle>-0     (-----) [000] d..1 82316.419902: cpu_idle: state=0 cpu_id=0
72280  crtc_event:111-322   (  322) [003] d..2 82316.419920: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72281<...>-770 ( 770) [005] ...1 82316.419929: tracing_mark_write: E|770
72282          <idle>-0     (-----) [003] dnh3 82316.419934: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
72283<...>-770 ( 770) [005] .... 82316.419937: binder_transaction: transaction=1570424 dest_node=0 dest_proc=27550 dest_thread=27682 reply=1 flags=0x0 code=0x0
72284<...>-770 ( 770) [005] .... 82316.419939: binder_transaction_alloc_buf: transaction=1570424 data_size=168 offsets_size=32
72285          <idle>-0     (-----) [003] d..2 82316.419945: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
72286<...>-770 ( 770) [005] .... 82316.419946: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
72287<...>-770 ( 770) [005] d..2 82316.419982: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27682 next_prio=110
72288           <...>-27682 (-----) [005] .... 82316.419993: binder_transaction_received: transaction=1570424
72289<...>-581 ( 571) [003] d..2 82316.420044: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72290 crtc_commit:111-321   (  321) [002] d..2 82316.420047: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
72291          <idle>-0     (-----) [002] d..1 82316.420056: cpu_idle: state=0 cpu_id=2
72292          <idle>-0     (-----) [003] d..1 82316.420060: cpu_idle: state=0 cpu_id=3
72293           <...>-27682 (-----) [005] ...1 82316.420062: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
72294           <...>-27682 (-----) [005] ...1 82316.420067: tracing_mark_write: E|27550
72295           <...>-27682 (-----) [005] .... 82316.420082: binder_transaction: transaction=1570425 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
72296           <...>-27682 (-----) [005] .... 82316.420084: binder_transaction_alloc_buf: transaction=1570425 data_size=48 offsets_size=0
72297           <...>-27682 (-----) [005] ...2 82316.420087: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
72298           <...>-27682 (-----) [005] d..4 82316.420089: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
72299           <...>-27682 (-----) [005] dn.5 82316.420099: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
72300           <...>-27682 (-----) [005] d..2 82316.420105: sched_switch: prev_comm=id.nn.benchmark prev_pid=27682 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
72301<...>-770 ( 770) [005] .... 82316.420113: binder_transaction_received: transaction=1570425
72302<...>-770 ( 770) [005] ...1 82316.420130: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
72303<...>-770 ( 770) [005] d..2 82316.420186: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
72304          <idle>-0     (-----) [003] dnh2 82316.420211: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
72305          <idle>-0     (-----) [003] .n.1 82316.420218: cpu_idle: state=4294967295 cpu_id=3
72306<...>-770 ( 770) [005] ...1 82316.420219: tracing_mark_write: E|770
72307<...>-770 ( 770) [005] .... 82316.420226: binder_transaction: transaction=1570426 dest_node=0 dest_proc=27550 dest_thread=27682 reply=1 flags=0x0 code=0x0
72308<...>-770 ( 770) [005] .... 82316.420229: binder_transaction_alloc_buf: transaction=1570426 data_size=168 offsets_size=32
72309          <idle>-0     (-----) [003] d..2 82316.420230: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
72310<...>-770 ( 770) [005] .... 82316.420235: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
72311<...>-770 ( 770) [005] d..2 82316.420269: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27682 next_prio=110
72312           <...>-27682 (-----) [005] .... 82316.420279: binder_transaction_received: transaction=1570426
72313<...>-581 ( 571) [003] d..2 82316.420292: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72314          <idle>-0     (-----) [003] d..1 82316.420305: cpu_idle: state=0 cpu_id=3
72315           <...>-27682 (-----) [005] ...1 82316.420555: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
72316           <...>-27682 (-----) [005] ...1 82316.420564: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
72317           <...>-27682 (-----) [005] ...1 82316.420569: tracing_mark_write: E|27550
72318           <...>-27682 (-----) [005] .... 82316.420629: binder_transaction: transaction=1570427 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
72319           <...>-27682 (-----) [005] .... 82316.420632: binder_transaction_alloc_buf: transaction=1570427 data_size=556 offsets_size=104
72320           <...>-27682 (-----) [005] ...2 82316.420646: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
72321           <...>-27682 (-----) [005] d..4 82316.420648: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72322           <...>-27682 (-----) [005] dn.5 82316.420660: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72323           <...>-27682 (-----) [005] d..2 82316.420667: sched_switch: prev_comm=id.nn.benchmark prev_pid=27682 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72324<...>-5340 ( 788) [005] .... 82316.420677: binder_transaction_received: transaction=1570427
72325<...>-5340 ( 788) [005] ...1 82316.420723: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
72326<...>-5340 ( 788) [005] d..2 82316.420769: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
72327<...>-5340 ( 788) [005] d..2 82316.420793: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27682 next_prio=110
72328          <idle>-0     (-----) [000] dnh2 82316.420797: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
72329          <idle>-0     (-----) [000] .n.1 82316.420803: cpu_idle: state=4294967295 cpu_id=0
72330           <...>-27682 (-----) [005] d..2 82316.420816: sched_switch: prev_comm=id.nn.benchmark prev_pid=27682 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72331          <idle>-0     (-----) [000] d..2 82316.420817: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
72332          <idle>-0     (-----) [005] d..1 82316.420833: cpu_idle: state=0 cpu_id=5
72333<...>-87 ( 87) [000] d..2 82316.420862: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72334          <idle>-0     (-----) [002] d.h4 82316.420871: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
72335          <idle>-0     (-----) [000] d..1 82316.420877: cpu_idle: state=0 cpu_id=0
72336          <idle>-0     (-----) [002] dnh5 82316.420891: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
72337          <idle>-0     (-----) [002] .n.1 82316.420901: cpu_idle: state=4294967295 cpu_id=2
72338          <idle>-0     (-----) [002] d..2 82316.420911: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
72339<...>-86 ( 86) [002] d..2 82316.420948: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72340          <idle>-0     (-----) [002] d.h5 82316.420972: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72341          <idle>-0     (-----) [005] dnh2 82316.420994: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72342          <idle>-0     (-----) [005] .n.1 82316.420999: cpu_idle: state=4294967295 cpu_id=5
72343          <idle>-0     (-----) [005] d..2 82316.421008: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72344          <idle>-0     (-----) [002] d..1 82316.421017: cpu_idle: state=0 cpu_id=2
72345<...>-5340 ( 788) [005] d..1 82316.421062: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
72346          <idle>-0     (-----) [000] dnh2 82316.421102: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
72347          <idle>-0     (-----) [000] .n.1 82316.421109: cpu_idle: state=4294967295 cpu_id=0
72348          <idle>-0     (-----) [000] d..2 82316.421120: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
72349 neuralnetworks@-13088 (  788) [000] d..2 82316.421175: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72350          <idle>-0     (-----) [000] d..1 82316.421190: cpu_idle: state=0 cpu_id=0
72351<...>-5340 ( 788) [005] d..2 82316.421222: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
72352          <idle>-0     (-----) [000] dnh2 82316.421246: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
72353<...>-5340 ( 788) [005] d..2 82316.421249: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72354          <idle>-0     (-----) [000] .n.1 82316.421253: cpu_idle: state=4294967295 cpu_id=0
72355          <idle>-0     (-----) [005] d..1 82316.421264: cpu_idle: state=0 cpu_id=5
72356          <idle>-0     (-----) [000] d..2 82316.421265: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
72357          <idle>-0     (-----) [002] d.h4 82316.421303: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
72358<...>-87 ( 87) [000] d..2 82316.421306: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72359          <idle>-0     (-----) [002] dnh5 82316.421314: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
72360          <idle>-0     (-----) [000] d..1 82316.421321: cpu_idle: state=0 cpu_id=0
72361          <idle>-0     (-----) [002] .n.1 82316.421323: cpu_idle: state=4294967295 cpu_id=2
72362          <idle>-0     (-----) [002] d..2 82316.421332: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
72363<...>-86 ( 86) [002] d..2 82316.421369: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72364          <idle>-0     (-----) [002] d..1 82316.421377: cpu_idle: state=0 cpu_id=2
72365          <idle>-0     (-----) [005] ...1 82316.421605: cpu_idle: state=4294967295 cpu_id=5
72366          <idle>-0     (-----) [005] d..1 82316.421609: cpu_idle: state=0 cpu_id=5
72367          <idle>-0     (-----) [001] d.s2 82316.421802: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
72368          <idle>-0     (-----) [002] d.s3 82316.421806: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
72369          <idle>-0     (-----) [001] dns3 82316.421818: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
72370          <idle>-0     (-----) [002] d.s4 82316.421825: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
72371          <idle>-0     (-----) [001] .n.1 82316.421829: cpu_idle: state=4294967295 cpu_id=1
72372          <idle>-0     (-----) [003] .n.1 82316.421831: cpu_idle: state=4294967295 cpu_id=3
72373          <idle>-0     (-----) [001] d..2 82316.421842: 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
72374          <idle>-0     (-----) [003] d..2 82316.421843: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
72375          <idle>-0     (-----) [002] ...1 82316.421853: cpu_idle: state=4294967295 cpu_id=2
72376          <idle>-0     (-----) [002] d..1 82316.421861: cpu_idle: state=0 cpu_id=2
72377<...>-8 ( 8) [001] d..2 82316.421879: 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
72378  crtc_event:111-322   (  322) [003] d..2 82316.421881: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72379          <idle>-0     (-----) [003] d..1 82316.421890: cpu_idle: state=0 cpu_id=3
72380          <idle>-0     (-----) [001] d..1 82316.421892: cpu_idle: state=0 cpu_id=1
72381          <idle>-0     (-----) [000] d.h5 82316.422164: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
72382          <idle>-0     (-----) [000] d.h6 82316.422183: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
72383          <idle>-0     (-----) [002] .n.1 82316.422190: cpu_idle: state=4294967295 cpu_id=2
72384          <idle>-0     (-----) [000] ...1 82316.422201: cpu_idle: state=4294967295 cpu_id=0
72385          <idle>-0     (-----) [002] d..2 82316.422202: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
72386          <idle>-0     (-----) [000] d..1 82316.422206: cpu_idle: state=0 cpu_id=0
72387 crtc_commit:111-321   (  321) [002] d..2 82316.422288: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72388          <idle>-0     (-----) [002] d..1 82316.422303: cpu_idle: state=0 cpu_id=2
72389          <idle>-0     (-----) [000] d.h5 82316.422456: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
72390          <idle>-0     (-----) [000] d.h6 82316.422472: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
72391          <idle>-0     (-----) [003] .n.1 82316.422478: cpu_idle: state=4294967295 cpu_id=3
72392          <idle>-0     (-----) [003] d..2 82316.422486: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
72393          <idle>-0     (-----) [000] ...1 82316.422490: cpu_idle: state=4294967295 cpu_id=0
72394          <idle>-0     (-----) [000] d..1 82316.422497: cpu_idle: state=0 cpu_id=0
72395  crtc_event:111-322   (  322) [003] d..2 82316.422514: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72396          <idle>-0     (-----) [003] d..1 82316.422522: cpu_idle: state=0 cpu_id=3
72397          <idle>-0     (-----) [002] d.h4 82316.423031: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72398          <idle>-0     (-----) [005] dnh2 82316.423053: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72399          <idle>-0     (-----) [005] .n.1 82316.423057: cpu_idle: state=4294967295 cpu_id=5
72400          <idle>-0     (-----) [005] d..2 82316.423065: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72401          <idle>-0     (-----) [002] ...1 82316.423075: cpu_idle: state=4294967295 cpu_id=2
72402          <idle>-0     (-----) [002] d..1 82316.423081: cpu_idle: state=0 cpu_id=2
72403<...>-5340 ( 788) [005] d..1 82316.423116: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
72404          <idle>-0     (-----) [000] dnh2 82316.423142: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
72405          <idle>-0     (-----) [000] .n.1 82316.423149: cpu_idle: state=4294967295 cpu_id=0
72406          <idle>-0     (-----) [000] d..2 82316.423161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
72407<...>-5340 ( 788) [005] ...1 82316.423210: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
72408<...>-5340 ( 788) [005] ...1 82316.423214: tracing_mark_write: E|788
72409<...>-5340 ( 788) [005] .... 82316.423229: binder_transaction: transaction=1570430 dest_node=1570428 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
72410<...>-5340 ( 788) [005] .... 82316.423231: binder_transaction_alloc_buf: transaction=1570430 data_size=60 offsets_size=0
72411 neuralnetworks@-13088 (  788) [000] d..2 82316.423234: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72412<...>-5340 ( 788) [005] d..4 82316.423235: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
72413<...>-5340 ( 788) [005] d..5 82316.423247: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
72414          <idle>-0     (-----) [000] d..1 82316.423248: cpu_idle: state=0 cpu_id=0
72415          <idle>-0     (-----) [004] .n.1 82316.423253: cpu_idle: state=4294967295 cpu_id=4
72416          <idle>-0     (-----) [004] d..2 82316.423262: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
72417           <...>-27571 (-----) [004] .... 82316.423267: binder_transaction_received: transaction=1570430
72418<...>-5340 ( 788) [005] ...1 82316.423269: tracing_mark_write: E|788
72419<...>-5340 ( 788) [005] .... 82316.423275: binder_transaction: transaction=1570431 dest_node=0 dest_proc=27550 dest_thread=27682 reply=1 flags=0x0 code=0x0
72420<...>-5340 ( 788) [005] .... 82316.423277: binder_transaction_alloc_buf: transaction=1570431 data_size=8 offsets_size=0
72421<...>-5340 ( 788) [005] d..2 82316.423279: sched_waking: comm=id.nn.benchmark pid=27682 prio=110 target_cpu=005
72422           <...>-27571 (-----) [004] ...1 82316.423285: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
72423<...>-5340 ( 788) [005] d..3 82316.423286: sched_wakeup: comm=id.nn.benchmark pid=27682 prio=110 target_cpu=005
72424<...>-5340 ( 788) [005] .... 82316.423288: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
72425           <...>-27571 (-----) [004] ...1 82316.423291: tracing_mark_write: E|27550
72426           <...>-27571 (-----) [004] d..2 82316.423319: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72427          <idle>-0     (-----) [004] d..1 82316.423326: cpu_idle: state=0 cpu_id=4
72428<...>-5340 ( 788) [005] d..2 82316.423328: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27682 next_prio=110
72429           <...>-27682 (-----) [005] .... 82316.423338: binder_transaction_received: transaction=1570431
72430           <...>-27682 (-----) [005] ...1 82316.423373: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
72431           <...>-27682 (-----) [005] ...1 82316.423379: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
72432           <...>-27682 (-----) [005] ...1 82316.423404: tracing_mark_write: E|27550
72433           <...>-27682 (-----) [005] ...1 82316.423408: tracing_mark_write: E|27550
72434           <...>-27682 (-----) [005] ...1 82316.423411: tracing_mark_write: E|27550
72435           <...>-27682 (-----) [005] ...1 82316.423598: tracing_mark_write: E|27550
72436           <...>-27682 (-----) [005] d..1 82316.423610: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72437           <...>-27682 (-----) [005] d..2 82316.423626: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72438          <idle>-0     (-----) [004] .n.1 82316.423631: cpu_idle: state=4294967295 cpu_id=4
72439          <idle>-0     (-----) [004] d..2 82316.423638: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
72440           <...>-27550 (-----) [004] d..2 82316.423657: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72441          <idle>-0     (-----) [004] d..1 82316.423666: cpu_idle: state=0 cpu_id=4
72442           <...>-27682 (-----) [005] d..1 82316.423714: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72443           <...>-27682 (-----) [005] d..2 82316.423723: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72444          <idle>-0     (-----) [004] .n.1 82316.423728: cpu_idle: state=4294967295 cpu_id=4
72445          <idle>-0     (-----) [004] d..2 82316.423736: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
72446           <...>-27682 (-----) [005] d..2 82316.423760: sched_switch: prev_comm=id.nn.benchmark prev_pid=27682 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
72447           <...>-27550 (-----) [004] ...1 82316.423769: tracing_mark_write: E|27550
72448           <...>-27550 (-----) [004] ...1 82316.423773: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
72449           <...>-27550 (-----) [004] ...1 82316.423779: tracing_mark_write: E|27550
72450          <idle>-0     (-----) [005] d..1 82316.423781: cpu_idle: state=0 cpu_id=5
72451           <...>-27550 (-----) [004] ...1 82316.423783: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
72452           <...>-27550 (-----) [004] ...1 82316.423787: tracing_mark_write: E|27550
72453           <...>-27550 (-----) [004] ...1 82316.423792: tracing_mark_write: E|27550
72454           <...>-27550 (-----) [004] ...1 82316.423905: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
72455           <...>-27550 (-----) [004] ...1 82316.423962: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
72456           <...>-27550 (-----) [004] ...1 82316.423966: tracing_mark_write: E|27550
72457           <...>-27550 (-----) [004] ...1 82316.423970: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
72458           <...>-27550 (-----) [004] ...1 82316.423975: tracing_mark_write: E|27550
72459           <...>-27550 (-----) [004] ...1 82316.423979: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
72460           <...>-27550 (-----) [004] ...1 82316.423983: tracing_mark_write: E|27550
72461           <...>-27550 (-----) [004] ...1 82316.423986: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
72462          <idle>-0     (-----) [005] .n.1 82316.424072: cpu_idle: state=4294967295 cpu_id=5
72463           <...>-27550 (-----) [004] ...1 82316.424073: tracing_mark_write: E|27550
72464           <...>-27550 (-----) [004] ...1 82316.424077: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
72465          <idle>-0     (-----) [005] d..2 82316.424081: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27683 next_prio=110
72466           <...>-27550 (-----) [004] d..2 82316.424094: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72467          <idle>-0     (-----) [004] d..1 82316.424108: cpu_idle: state=0 cpu_id=4
72468           <...>-27683 (-----) [005] ...1 82316.424142: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
72469           <...>-27683 (-----) [005] ...1 82316.424155: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
72470           <...>-27683 (-----) [005] ...1 82316.424158: tracing_mark_write: E|27550
72471           <...>-27683 (-----) [005] .... 82316.424179: binder_transaction: transaction=1570432 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
72472           <...>-27683 (-----) [005] .... 82316.424183: binder_transaction_alloc_buf: transaction=1570432 data_size=48 offsets_size=0
72473           <...>-27683 (-----) [005] ...2 82316.424185: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
72474           <...>-27683 (-----) [005] d..4 82316.424188: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
72475           <...>-27683 (-----) [005] dn.5 82316.424198: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
72476           <...>-27683 (-----) [005] d..2 82316.424205: sched_switch: prev_comm=id.nn.benchmark prev_pid=27683 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
72477<...>-770 ( 770) [005] .... 82316.424215: binder_transaction_received: transaction=1570432
72478<...>-770 ( 770) [005] ...1 82316.424236: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
72479<...>-770 ( 770) [005] d..2 82316.424303: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
72480          <idle>-0     (-----) [003] d.h2 82316.424336: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
72481          <idle>-0     (-----) [000] dnh2 82316.424341: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
72482          <idle>-0     (-----) [000] .n.1 82316.424349: cpu_idle: state=4294967295 cpu_id=0
72483          <idle>-0     (-----) [003] dnh3 82316.424351: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
72484<...>-770 ( 770) [005] ...1 82316.424353: tracing_mark_write: E|770
72485          <idle>-0     (-----) [003] .n.1 82316.424360: cpu_idle: state=4294967295 cpu_id=3
72486<...>-770 ( 770) [005] .... 82316.424361: binder_transaction: transaction=1570433 dest_node=0 dest_proc=27550 dest_thread=27683 reply=1 flags=0x0 code=0x0
72487          <idle>-0     (-----) [000] d..2 82316.424362: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
72488<...>-770 ( 770) [005] .... 82316.424364: binder_transaction_alloc_buf: transaction=1570433 data_size=168 offsets_size=32
72489          <idle>-0     (-----) [003] d..2 82316.424367: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
72490<...>-770 ( 770) [005] .... 82316.424371: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
72491        DispSync-8879  ( 8858) [003] d..1 82316.424391: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
72492<...>-770 ( 770) [005] d..2 82316.424406: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27683 next_prio=110
72493        DispSync-8879  ( 8858) [003] d..2 82316.424417: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
72494           <...>-27683 (-----) [005] .... 82316.424417: binder_transaction_received: transaction=1570433
72495          <idle>-0     (-----) [002] .n.1 82316.424422: cpu_idle: state=4294967295 cpu_id=2
72496          <idle>-0     (-----) [002] d..2 82316.424435: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
72497<...>-581 ( 571) [000] d..2 82316.424453: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72498        DispSync-8879  ( 8858) [003] d..2 82316.424453: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72499          <idle>-0     (-----) [003] d..1 82316.424464: cpu_idle: state=0 cpu_id=3
72500          <idle>-0     (-----) [000] d..1 82316.424470: cpu_idle: state=0 cpu_id=0
72501           <...>-27683 (-----) [005] ...1 82316.424484: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
72502           <...>-27683 (-----) [005] ...1 82316.424489: tracing_mark_write: E|27550
72503  appEventThread-8881  ( 8858) [002] d..3 82316.424504: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
72504           <...>-27683 (-----) [005] .... 82316.424504: binder_transaction: transaction=1570434 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
72505           <...>-27683 (-----) [005] .... 82316.424506: binder_transaction_alloc_buf: transaction=1570434 data_size=48 offsets_size=0
72506           <...>-27683 (-----) [005] ...2 82316.424509: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
72507           <...>-27683 (-----) [005] d..4 82316.424511: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
72508           <...>-27683 (-----) [005] dn.5 82316.424521: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
72509           <...>-27683 (-----) [005] d..2 82316.424527: sched_switch: prev_comm=id.nn.benchmark prev_pid=27683 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
72510  appEventThread-8881  ( 8858) [002] d..4 82316.424528: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
72511<...>-770 ( 770) [005] .... 82316.424535: binder_transaction_received: transaction=1570434
72512          <idle>-0     (-----) [000] .n.1 82316.424536: cpu_idle: state=4294967295 cpu_id=0
72513          <idle>-0     (-----) [000] d..2 82316.424550: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
72514<...>-770 ( 770) [005] ...1 82316.424552: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
72515  appEventThread-8881  ( 8858) [002] d..2 82316.424573: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72516          <idle>-0     (-----) [002] d..1 82316.424590: cpu_idle: state=0 cpu_id=2
72517<...>-770 ( 770) [005] d..2 82316.424610: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
72518<...>-9105 ( 9105) [000] d.h1 82316.424637: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
72519<...>-770 ( 770) [005] ...1 82316.424646: tracing_mark_write: E|770
72520<...>-770 ( 770) [005] .... 82316.424653: binder_transaction: transaction=1570435 dest_node=0 dest_proc=27550 dest_thread=27683 reply=1 flags=0x0 code=0x0
72521<...>-770 ( 770) [005] .... 82316.424656: binder_transaction_alloc_buf: transaction=1570435 data_size=168 offsets_size=32
72522<...>-770 ( 770) [005] .... 82316.424662: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
72523<...>-770 ( 770) [005] d..2 82316.424695: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27683 next_prio=110
72524           <...>-27683 (-----) [005] .... 82316.424705: binder_transaction_received: transaction=1570435
72525<...>-9105 ( 9105) [000] .... 82316.424900: binder_transaction: transaction=1570436 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
72526<...>-9105 ( 9105) [000] .... 82316.424907: binder_transaction_alloc_buf: transaction=1570436 data_size=80 offsets_size=0
72527<...>-9105 ( 9105) [000] d..4 82316.424913: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
72528<...>-9105 ( 9105) [000] d..5 82316.424946: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
72529          <idle>-0     (-----) [001] .n.1 82316.424952: cpu_idle: state=4294967295 cpu_id=1
72530          <idle>-0     (-----) [001] d..2 82316.424965: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
72531<...>-13083 ( 8858) [001] .... 82316.424976: binder_transaction_received: transaction=1570436
72532           <...>-27683 (-----) [005] ...1 82316.424976: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
72533           <...>-27683 (-----) [005] ...1 82316.424985: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
72534<...>-9105 ( 9105) [000] d..3 82316.424987: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
72535           <...>-27683 (-----) [005] ...1 82316.424989: tracing_mark_write: E|27550
72536<...>-9105 ( 9105) [000] d..4 82316.425008: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
72537          <idle>-0     (-----) [002] .n.1 82316.425016: cpu_idle: state=4294967295 cpu_id=2
72538<...>-13083 ( 8858) [001] d..1 82316.425017: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
72539          <idle>-0     (-----) [002] d..2 82316.425030: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
72540           <...>-27683 (-----) [005] .... 82316.425048: binder_transaction: transaction=1570437 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
72541           <...>-27683 (-----) [005] .... 82316.425051: binder_transaction_alloc_buf: transaction=1570437 data_size=556 offsets_size=104
72542<...>-13083 ( 8858) [001] d..2 82316.425051: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
72543          <idle>-0     (-----) [003] .n.1 82316.425057: cpu_idle: state=4294967295 cpu_id=3
72544           <...>-27683 (-----) [005] ...2 82316.425064: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
72545          <idle>-0     (-----) [003] d..2 82316.425066: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
72546           <...>-27683 (-----) [005] d..4 82316.425067: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72547           <...>-27683 (-----) [005] dn.5 82316.425078: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72548           <...>-27683 (-----) [005] d..2 82316.425085: sched_switch: prev_comm=id.nn.benchmark prev_pid=27683 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72549    RenderThread-9436  ( 9105) [002] d..2 82316.425094: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72550<...>-5340 ( 788) [005] .... 82316.425095: binder_transaction_received: transaction=1570437
72551<...>-13083 ( 8858) [001] d..2 82316.425108: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72552          <idle>-0     (-----) [002] d..1 82316.425109: cpu_idle: state=0 cpu_id=2
72553  appEventThread-8881  ( 8858) [003] d..2 82316.425143: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72554          <idle>-0     (-----) [001] d..1 82316.425156: cpu_idle: state=0 cpu_id=1
72555          <idle>-0     (-----) [003] d.s3 82316.425172: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
72556<...>-5340 ( 788) [005] ...1 82316.425177: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
72557          <idle>-0     (-----) [003] dns4 82316.425192: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
72558<...>-9105 ( 9105) [000] d..3 82316.425196: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
72559          <idle>-0     (-----) [003] d..2 82316.425209: 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
72560<...>-9105 ( 9105) [000] d..4 82316.425216: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
72561<...>-5340 ( 788) [005] d..2 82316.425219: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
72562     rcu_preempt-7     (    7) [003] d..2 82316.425220: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
72563          <idle>-0     (-----) [002] .n.1 82316.425223: cpu_idle: state=4294967295 cpu_id=2
72564          <idle>-0     (-----) [002] d..2 82316.425238: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
72565<...>-9105 ( 9105) [000] d..2 82316.425240: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
72566     rcu_preempt-7     (    7) [003] d..3 82316.425241: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
72567     rcu_preempt-7     (    7) [003] d..2 82316.425258: 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
72568<...>-5340 ( 788) [005] d..2 82316.425263: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27683 next_prio=110
72569         rcuop/4-45    (   45) [003] d..2 82316.425263: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
72570          <idle>-0     (-----) [001] dnh2 82316.425268: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
72571          <idle>-0     (-----) [001] .n.1 82316.425274: cpu_idle: state=4294967295 cpu_id=1
72572         rcuop/4-45    (   45) [003] d..3 82316.425281: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
72573          <idle>-0     (-----) [001] d..2 82316.425284: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
72574           <...>-27683 (-----) [005] d..2 82316.425289: sched_switch: prev_comm=id.nn.benchmark prev_pid=27683 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72575         rcuop/4-45    (   45) [003] d..2 82316.425292: 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
72576          <idle>-0     (-----) [005] d..1 82316.425306: cpu_idle: state=0 cpu_id=5
72577<...>-581 ( 571) [000] d..2 82316.425328: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72578<...>-87 ( 87) [001] d..2 82316.425331: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72579    RenderThread-9436  ( 9105) [002] d.h3 82316.425338: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
72580          <idle>-0     (-----) [001] d..1 82316.425340: cpu_idle: state=0 cpu_id=1
72581          <idle>-0     (-----) [000] d..1 82316.425350: cpu_idle: state=0 cpu_id=0
72582    RenderThread-9436  ( 9105) [002] d.h4 82316.425384: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
72583          <idle>-0     (-----) [000] .n.1 82316.425391: cpu_idle: state=4294967295 cpu_id=0
72584          <idle>-0     (-----) [000] d..2 82316.425406: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
72585         rcuop/5-53    (   53) [003] d..2 82316.425409: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72586    RenderThread-9436  ( 9105) [002] d.h3 82316.425415: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72587          <idle>-0     (-----) [003] d..1 82316.425424: cpu_idle: state=0 cpu_id=3
72588          <idle>-0     (-----) [005] dnh2 82316.425437: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72589          <idle>-0     (-----) [005] .n.1 82316.425442: cpu_idle: state=4294967295 cpu_id=5
72590          <idle>-0     (-----) [005] d..2 82316.425450: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72591<...>-86 ( 86) [000] d..2 82316.425491: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72592<...>-5340 ( 788) [005] d..1 82316.425500: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
72593    RenderThread-9436  ( 9105) [002] d..1 82316.425503: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
72594          <idle>-0     (-----) [000] d..1 82316.425506: cpu_idle: state=0 cpu_id=0
72595    RenderThread-9436  ( 9105) [002] d..2 82316.425520: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
72596          <idle>-0     (-----) [000] .n.1 82316.425527: cpu_idle: state=4294967295 cpu_id=0
72597          <idle>-0     (-----) [000] d..2 82316.425540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
72598    RenderThread-9436  ( 9105) [002] dnh1 82316.425542: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
72599    RenderThread-9436  ( 9105) [002] d..2 82316.425554: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
72600 neuralnetworks@-13088 (  788) [002] d..2 82316.425598: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
72601<...>-9105 ( 9105) [000] d..2 82316.425641: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72602          <idle>-0     (-----) [000] d..1 82316.425660: cpu_idle: state=0 cpu_id=0
72603<...>-5340 ( 788) [005] d..2 82316.425666: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
72604    RenderThread-9436  ( 9105) [002] .... 82316.425675: binder_transaction: transaction=1570440 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
72605    RenderThread-9436  ( 9105) [002] .... 82316.425681: binder_transaction_alloc_buf: transaction=1570440 data_size=104 offsets_size=0
72606    RenderThread-9436  ( 9105) [002] d..4 82316.425686: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
72607          <idle>-0     (-----) [001] dnh2 82316.425688: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
72608<...>-5340 ( 788) [005] d..2 82316.425693: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72609          <idle>-0     (-----) [001] .n.1 82316.425698: cpu_idle: state=4294967295 cpu_id=1
72610          <idle>-0     (-----) [005] d..1 82316.425708: cpu_idle: state=0 cpu_id=5
72611          <idle>-0     (-----) [001] d..2 82316.425709: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
72612    RenderThread-9436  ( 9105) [002] dn.5 82316.425711: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
72613    RenderThread-9436  ( 9105) [002] d..2 82316.425720: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
72614<...>-13083 ( 8858) [002] d.h3 82316.425748: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
72615<...>-87 ( 87) [001] d..2 82316.425750: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72616          <idle>-0     (-----) [001] d..1 82316.425759: cpu_idle: state=0 cpu_id=1
72617<...>-13083 ( 8858) [002] d.h4 82316.425765: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
72618          <idle>-0     (-----) [000] .n.1 82316.425772: cpu_idle: state=4294967295 cpu_id=0
72619<...>-13083 ( 8858) [002] .... 82316.425773: binder_transaction_received: transaction=1570440
72620          <idle>-0     (-----) [000] d..2 82316.425786: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
72621<...>-86 ( 86) [000] d..2 82316.425832: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72622          <idle>-0     (-----) [000] d..1 82316.425846: cpu_idle: state=0 cpu_id=0
72623<...>-13083 ( 8858) [002] .... 82316.425855: binder_transaction: transaction=1570441 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
72624<...>-13083 ( 8858) [002] .... 82316.425860: binder_transaction_alloc_buf: transaction=1570441 data_size=52 offsets_size=8
72625<...>-13083 ( 8858) [002] d..2 82316.425915: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
72626    RenderThread-9436  ( 9105) [002] .... 82316.425926: binder_transaction_received: transaction=1570441
72627          <idle>-0     (-----) [005] ...1 82316.426035: cpu_idle: state=4294967295 cpu_id=5
72628          <idle>-0     (-----) [005] d..1 82316.426039: cpu_idle: state=0 cpu_id=5
72629    RenderThread-9436  ( 9105) [002] d..2 82316.426970: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
72630          <idle>-0     (-----) [002] d..1 82316.426987: cpu_idle: state=0 cpu_id=2
72631          <idle>-0     (-----) [002] d.h2 82316.427049: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
72632          <idle>-0     (-----) [002] d.h3 82316.427060: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
72633          <idle>-0     (-----) [002] dnh3 82316.427066: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
72634          <idle>-0     (-----) [002] .n.1 82316.427076: cpu_idle: state=4294967295 cpu_id=2
72635          <idle>-0     (-----) [000] d.h3 82316.427086: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
72636          <idle>-0     (-----) [002] d..2 82316.427088: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
72637          <idle>-0     (-----) [000] dnh4 82316.427104: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
72638          <idle>-0     (-----) [000] .n.1 82316.427129: cpu_idle: state=4294967295 cpu_id=0
72639          <idle>-0     (-----) [000] d..2 82316.427140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
72640 kgsl_worker_thr-258   (  258) [000] d..2 82316.427193: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
72641 kgsl_worker_thr-258   (  258) [000] d..3 82316.427235: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
72642 kgsl_worker_thr-258   (  258) [000] d..2 82316.427253: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
72643    RenderThread-9436  ( 9105) [002] .... 82316.427294: binder_transaction: transaction=1570442 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
72644    RenderThread-9436  ( 9105) [002] .... 82316.427300: binder_transaction_alloc_buf: transaction=1570442 data_size=192 offsets_size=8
72645  kworker/u16:13-1147  ( 1147) [000] d..2 82316.427304: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72646    RenderThread-9436  ( 9105) [002] d..4 82316.427310: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
72647          <idle>-0     (-----) [000] d..1 82316.427319: cpu_idle: state=0 cpu_id=0
72648    RenderThread-9436  ( 9105) [002] dn.5 82316.427328: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
72649    RenderThread-9436  ( 9105) [002] d..2 82316.427338: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
72650<...>-13083 ( 8858) [002] d.h3 82316.427372: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72651          <idle>-0     (-----) [005] dnh2 82316.427393: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72652          <idle>-0     (-----) [005] .n.1 82316.427397: cpu_idle: state=4294967295 cpu_id=5
72653          <idle>-0     (-----) [005] d..2 82316.427405: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72654<...>-13083 ( 8858) [002] .... 82316.427412: binder_transaction_received: transaction=1570442
72655<...>-5340 ( 788) [005] d..1 82316.427459: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
72656<...>-13083 ( 8858) [002] d.h1 82316.427489: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
72657<...>-5340 ( 788) [005] ...1 82316.427560: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
72658<...>-5340 ( 788) [005] ...1 82316.427564: tracing_mark_write: E|788
72659<...>-5340 ( 788) [005] .... 82316.427580: binder_transaction: transaction=1570443 dest_node=1570438 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
72660<...>-5340 ( 788) [005] .... 82316.427583: binder_transaction_alloc_buf: transaction=1570443 data_size=60 offsets_size=0
72661<...>-5340 ( 788) [005] d..4 82316.427586: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
72662<...>-5340 ( 788) [005] d..5 82316.427600: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
72663          <idle>-0     (-----) [004] .n.1 82316.427606: cpu_idle: state=4294967295 cpu_id=4
72664          <idle>-0     (-----) [004] d..2 82316.427615: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
72665           <...>-27571 (-----) [004] .... 82316.427620: binder_transaction_received: transaction=1570443
72666<...>-5340 ( 788) [005] ...1 82316.427624: tracing_mark_write: E|788
72667<...>-5340 ( 788) [005] .... 82316.427630: binder_transaction: transaction=1570444 dest_node=0 dest_proc=27550 dest_thread=27683 reply=1 flags=0x0 code=0x0
72668<...>-5340 ( 788) [005] .... 82316.427632: binder_transaction_alloc_buf: transaction=1570444 data_size=8 offsets_size=0
72669<...>-5340 ( 788) [005] d..2 82316.427634: sched_waking: comm=id.nn.benchmark pid=27683 prio=110 target_cpu=005
72670<...>-13083 ( 8858) [002] .... 82316.427635: binder_transaction: transaction=1570445 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
72671           <...>-27571 (-----) [004] ...1 82316.427640: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
72672<...>-13083 ( 8858) [002] .... 82316.427641: binder_transaction_alloc_buf: transaction=1570445 data_size=68 offsets_size=0
72673<...>-5340 ( 788) [005] d..3 82316.427641: sched_wakeup: comm=id.nn.benchmark pid=27683 prio=110 target_cpu=005
72674<...>-5340 ( 788) [005] .... 82316.427643: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
72675           <...>-27571 (-----) [004] ...1 82316.427646: tracing_mark_write: E|27550
72676           <...>-27571 (-----) [004] d..2 82316.427674: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72677          <idle>-0     (-----) [004] d..1 82316.427682: cpu_idle: state=0 cpu_id=4
72678<...>-5340 ( 788) [005] d..2 82316.427685: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27683 next_prio=110
72679<...>-13083 ( 8858) [002] d..2 82316.427689: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
72680           <...>-27683 (-----) [005] .... 82316.427696: binder_transaction_received: transaction=1570444
72681 neuralnetworks@-13088 (  788) [002] d..2 82316.427727: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
72682           <...>-27683 (-----) [005] ...1 82316.427734: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
72683    RenderThread-9436  ( 9105) [002] .... 82316.427739: binder_transaction_received: transaction=1570445
72684           <...>-27683 (-----) [005] ...1 82316.427740: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
72685           <...>-27683 (-----) [005] ...1 82316.427767: tracing_mark_write: E|27550
72686           <...>-27683 (-----) [005] ...1 82316.427770: tracing_mark_write: E|27550
72687           <...>-27683 (-----) [005] ...1 82316.427774: tracing_mark_write: E|27550
72688    RenderThread-9436  ( 9105) [002] d..2 82316.427840: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72689          <idle>-0     (-----) [002] d..1 82316.427860: cpu_idle: state=0 cpu_id=2
72690           <...>-27683 (-----) [005] ...1 82316.427968: tracing_mark_write: E|27550
72691           <...>-27683 (-----) [005] d..1 82316.427981: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72692           <...>-27683 (-----) [005] d..2 82316.427997: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72693          <idle>-0     (-----) [004] .n.1 82316.428003: cpu_idle: state=4294967295 cpu_id=4
72694          <idle>-0     (-----) [004] d..2 82316.428009: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
72695           <...>-27550 (-----) [004] d..2 82316.428029: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72696          <idle>-0     (-----) [004] d..1 82316.428038: cpu_idle: state=0 cpu_id=4
72697           <...>-27683 (-----) [005] d..1 82316.428089: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72698           <...>-27683 (-----) [005] d..2 82316.428098: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72699          <idle>-0     (-----) [004] .n.1 82316.428103: cpu_idle: state=4294967295 cpu_id=4
72700          <idle>-0     (-----) [004] d..2 82316.428110: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
72701           <...>-27683 (-----) [005] d..2 82316.428138: sched_switch: prev_comm=id.nn.benchmark prev_pid=27683 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
72702           <...>-27550 (-----) [004] ...1 82316.428145: tracing_mark_write: E|27550
72703           <...>-27550 (-----) [004] ...1 82316.428149: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
72704           <...>-27550 (-----) [004] ...1 82316.428155: tracing_mark_write: E|27550
72705           <...>-27550 (-----) [004] ...1 82316.428159: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
72706          <idle>-0     (-----) [005] d..1 82316.428159: cpu_idle: state=0 cpu_id=5
72707           <...>-27550 (-----) [004] ...1 82316.428163: tracing_mark_write: E|27550
72708           <...>-27550 (-----) [004] ...1 82316.428167: tracing_mark_write: E|27550
72709           <...>-27550 (-----) [004] ...1 82316.428281: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
72710          <idle>-0     (-----) [003] d.h2 82316.428337: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
72711           <...>-27550 (-----) [004] ...1 82316.428338: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
72712           <...>-27550 (-----) [004] ...1 82316.428343: tracing_mark_write: E|27550
72713           <...>-27550 (-----) [004] ...1 82316.428347: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
72714           <...>-27550 (-----) [004] ...1 82316.428352: tracing_mark_write: E|27550
72715          <idle>-0     (-----) [003] dnh3 82316.428352: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
72716           <...>-27550 (-----) [004] ...1 82316.428355: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
72717           <...>-27550 (-----) [004] ...1 82316.428359: tracing_mark_write: E|27550
72718          <idle>-0     (-----) [003] .n.1 82316.428361: cpu_idle: state=4294967295 cpu_id=3
72719           <...>-27550 (-----) [004] ...1 82316.428362: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
72720          <idle>-0     (-----) [003] d..2 82316.428372: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
72721        DispSync-8879  ( 8858) [003] d..1 82316.428391: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
72722        DispSync-8879  ( 8858) [003] d..2 82316.428406: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
72723          <idle>-0     (-----) [002] .n.1 82316.428415: cpu_idle: state=4294967295 cpu_id=2
72724          <idle>-0     (-----) [002] d..2 82316.428427: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
72725        DispSync-8879  ( 8858) [003] d..2 82316.428441: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72726          <idle>-0     (-----) [005] .n.1 82316.428456: cpu_idle: state=4294967295 cpu_id=5
72727          <idle>-0     (-----) [001] d.s2 82316.428465: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
72728          <idle>-0     (-----) [005] d..2 82316.428467: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27684 next_prio=110
72729   sfEventThread-8882  ( 8858) [002] d.s2 82316.428476: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
72730           <...>-27550 (-----) [004] d..1 82316.428483: sched_waking: comm=id.nn.benchmark pid=27684 prio=110 target_cpu=005
72731          <idle>-0     (-----) [001] dns3 82316.428485: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
72732           <...>-27684 (-----) [005] d..2 82316.428487: sched_switch: prev_comm=id.nn.benchmark prev_pid=27684 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72733          <idle>-0     (-----) [003] d..1 82316.428493: cpu_idle: state=0 cpu_id=3
72734          <idle>-0     (-----) [005] d..1 82316.428494: cpu_idle: state=0 cpu_id=5
72735          <idle>-0     (-----) [005] .n.1 82316.428496: cpu_idle: state=4294967295 cpu_id=5
72736   sfEventThread-8882  ( 8858) [002] d.s3 82316.428497: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
72737           <...>-27550 (-----) [004] d..2 82316.428497: sched_wakeup: comm=id.nn.benchmark pid=27684 prio=110 target_cpu=005
72738          <idle>-0     (-----) [000] .n.1 82316.428502: cpu_idle: state=4294967295 cpu_id=0
72739          <idle>-0     (-----) [001] .n.1 82316.428504: cpu_idle: state=4294967295 cpu_id=1
72740          <idle>-0     (-----) [005] d..2 82316.428506: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27684 next_prio=110
72741           <...>-27550 (-----) [004] ...1 82316.428507: tracing_mark_write: E|27550
72742           <...>-27550 (-----) [004] ...1 82316.428511: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
72743          <idle>-0     (-----) [001] d..2 82316.428514: 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
72744          <idle>-0     (-----) [000] d..2 82316.428516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
72745<...>-8 ( 8) [001] d..2 82316.428521: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
72746           <...>-27550 (-----) [004] d..2 82316.428527: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72747   sfEventThread-8882  ( 8858) [002] d..3 82316.428547: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
72748<...>-8 ( 8) [001] d..3 82316.428562: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
72749          <idle>-0     (-----) [004] d..1 82316.428565: cpu_idle: state=0 cpu_id=4
72750   sfEventThread-8882  ( 8858) [002] d..4 82316.428567: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
72751           <...>-27684 (-----) [005] ...1 82316.428569: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
72752          <idle>-0     (-----) [003] .n.1 82316.428573: cpu_idle: state=4294967295 cpu_id=3
72753          <idle>-0     (-----) [003] d..2 82316.428581: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
72754<...>-8 ( 8) [001] d..2 82316.428585: 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
72755           <...>-27684 (-----) [005] ...1 82316.428592: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
72756   sfEventThread-8882  ( 8858) [002] d..2 82316.428595: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
72757           <...>-27684 (-----) [005] ...1 82316.428596: tracing_mark_write: E|27550
72758          <idle>-0     (-----) [001] d..1 82316.428600: cpu_idle: state=0 cpu_id=1
72759<...>-46 ( 46) [002] d..2 82316.428610: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
72760           <...>-27684 (-----) [005] .... 82316.428619: binder_transaction: transaction=1570446 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
72761           <...>-27684 (-----) [005] .... 82316.428622: binder_transaction_alloc_buf: transaction=1570446 data_size=48 offsets_size=0
72762           <...>-27684 (-----) [005] ...2 82316.428625: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
72763<...>-46 ( 46) [002] d..3 82316.428626: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
72764           <...>-27684 (-----) [005] d..4 82316.428628: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
72765          <idle>-0     (-----) [001] .n.1 82316.428633: cpu_idle: state=4294967295 cpu_id=1
72766           <...>-27684 (-----) [005] dn.5 82316.428638: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
72767           <...>-27684 (-----) [005] d..2 82316.428645: sched_switch: prev_comm=id.nn.benchmark prev_pid=27684 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
72768          <idle>-0     (-----) [001] d..2 82316.428646: 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
72769<...>-770 ( 770) [005] .... 82316.428656: binder_transaction_received: transaction=1570446
72770<...>-46 ( 46) [002] d..2 82316.428660: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72771<...>-8 ( 8) [001] d..2 82316.428671: 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
72772<...>-770 ( 770) [005] ...1 82316.428681: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
72773          <idle>-0     (-----) [001] d..1 82316.428682: cpu_idle: state=0 cpu_id=1
72774          <idle>-0     (-----) [002] d..1 82316.428698: cpu_idle: state=0 cpu_id=2
72775<...>-770 ( 770) [005] d..2 82316.428780: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
72776  surfaceflinger-8858  ( 8858) [003] d.h1 82316.428823: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
72777  kworker/u16:13-1147  ( 1147) [000] d..2 82316.428830: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
72778<...>-770 ( 770) [005] ...1 82316.428838: tracing_mark_write: E|770
72779          <idle>-0     (-----) [000] d..1 82316.428846: cpu_idle: state=0 cpu_id=0
72780<...>-770 ( 770) [005] .... 82316.428846: binder_transaction: transaction=1570447 dest_node=0 dest_proc=27550 dest_thread=27684 reply=1 flags=0x0 code=0x0
72781<...>-770 ( 770) [005] .... 82316.428848: binder_transaction_alloc_buf: transaction=1570447 data_size=168 offsets_size=32
72782<...>-770 ( 770) [005] .... 82316.428855: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
72783<...>-770 ( 770) [005] d..2 82316.428891: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27684 next_prio=110
72784           <...>-27684 (-----) [005] .... 82316.428902: binder_transaction_received: transaction=1570447
72785           <...>-27684 (-----) [005] ...1 82316.428977: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
72786           <...>-27684 (-----) [005] ...1 82316.428982: tracing_mark_write: E|27550
72787  surfaceflinger-8858  ( 8858) [003] d..1 82316.428993: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
72788           <...>-27684 (-----) [005] .... 82316.428997: binder_transaction: transaction=1570448 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
72789           <...>-27684 (-----) [005] .... 82316.429000: binder_transaction_alloc_buf: transaction=1570448 data_size=48 offsets_size=0
72790           <...>-27684 (-----) [005] ...2 82316.429002: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
72791           <...>-27684 (-----) [005] d..4 82316.429004: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
72792           <...>-27684 (-----) [005] dn.5 82316.429014: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
72793  surfaceflinger-8858  ( 8858) [003] d..2 82316.429015: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
72794           <...>-27684 (-----) [005] d..2 82316.429020: sched_switch: prev_comm=id.nn.benchmark prev_pid=27684 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
72795          <idle>-0     (-----) [002] .n.1 82316.429022: cpu_idle: state=4294967295 cpu_id=2
72796<...>-770 ( 770) [005] .... 82316.429028: binder_transaction_received: transaction=1570448
72797          <idle>-0     (-----) [002] d..2 82316.429033: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
72798<...>-770 ( 770) [005] ...1 82316.429046: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
72799   sfEventThread-8882  ( 8858) [002] d..2 82316.429075: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
72800          <idle>-0     (-----) [002] d..1 82316.429088: cpu_idle: state=0 cpu_id=2
72801<...>-770 ( 770) [005] ...1 82316.429127: tracing_mark_write: E|770
72802<...>-770 ( 770) [005] .... 82316.429134: binder_transaction: transaction=1570449 dest_node=0 dest_proc=27550 dest_thread=27684 reply=1 flags=0x0 code=0x0
72803<...>-770 ( 770) [005] .... 82316.429137: binder_transaction_alloc_buf: transaction=1570449 data_size=168 offsets_size=32
72804<...>-770 ( 770) [005] .... 82316.429142: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
72805<...>-770 ( 770) [005] d..2 82316.429177: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27684 next_prio=110
72806           <...>-27684 (-----) [005] .... 82316.429188: binder_transaction_received: transaction=1570449
72807  surfaceflinger-8858  ( 8858) [003] ...1 82316.429215: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
72808  surfaceflinger-8858  ( 8858) [003] ...1 82316.429223: tracing_mark_write: E|8858
72809  surfaceflinger-8858  ( 8858) [003] .... 82316.429279: binder_transaction: transaction=1570450 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
72810  surfaceflinger-8858  ( 8858) [003] .... 82316.429285: binder_transaction_alloc_buf: transaction=1570450 data_size=540 offsets_size=96
72811  surfaceflinger-8858  ( 8858) [003] ...2 82316.429313: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
72812  surfaceflinger-8858  ( 8858) [003] d..4 82316.429322: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
72813  surfaceflinger-8858  ( 8858) [003] d..5 82316.429341: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
72814          <idle>-0     (-----) [001] .n.1 82316.429347: cpu_idle: state=4294967295 cpu_id=1
72815          <idle>-0     (-----) [001] d..2 82316.429358: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
72816  surfaceflinger-8858  ( 8858) [003] d..2 82316.429365: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
72817 [email protected]   (  619) [001] .... 82316.429368: binder_transaction_received: transaction=1570450
72818 [email protected]   (  619) [001] ...1 82316.429415: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
72819           <...>-27684 (-----) [005] ...1 82316.429468: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
72820           <...>-27684 (-----) [005] ...1 82316.429477: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
72821           <...>-27684 (-----) [005] ...1 82316.429481: tracing_mark_write: E|27550
72822<...>-581 ( 571) [003] d..2 82316.429497: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72823          <idle>-0     (-----) [003] d..1 82316.429512: cpu_idle: state=0 cpu_id=3
72824 [email protected]   (  619) [001] ...1 82316.429525: tracing_mark_write: B|619|HWCSession::PresentDisplay::
72825           <...>-27684 (-----) [005] .... 82316.429542: binder_transaction: transaction=1570451 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
72826           <...>-27684 (-----) [005] .... 82316.429545: binder_transaction_alloc_buf: transaction=1570451 data_size=556 offsets_size=104
72827           <...>-27684 (-----) [005] ...2 82316.429559: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
72828           <...>-27684 (-----) [005] d..4 82316.429562: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72829           <...>-27684 (-----) [005] dn.5 82316.429574: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72830           <...>-27684 (-----) [005] d..2 82316.429581: sched_switch: prev_comm=id.nn.benchmark prev_pid=27684 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72831<...>-5340 ( 788) [005] .... 82316.429591: binder_transaction_received: transaction=1570451
72832<...>-5340 ( 788) [005] ...1 82316.429640: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
72833<...>-5340 ( 788) [005] d..2 82316.429690: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
72834<...>-5340 ( 788) [005] d..2 82316.429715: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27684 next_prio=110
72835 [email protected]   (  619) [001] d.h1 82316.429721: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
72836           <...>-27684 (-----) [005] d..2 82316.429737: sched_switch: prev_comm=id.nn.benchmark prev_pid=27684 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72837          <idle>-0     (-----) [005] d..1 82316.429755: cpu_idle: state=0 cpu_id=5
72838 [email protected]   (  619) [001] ...1 82316.429779: tracing_mark_write: B|619|HWDeviceDRM::Commit::
72839 [email protected]   (  619) [001] ...1 82316.429795: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
72840          <idle>-0     (-----) [000] ...1 82316.429965: cpu_idle: state=4294967295 cpu_id=0
72841          <idle>-0     (-----) [000] d..1 82316.429970: cpu_idle: state=0 cpu_id=0
72842          <idle>-0     (-----) [002] ...1 82316.430392: cpu_idle: state=4294967295 cpu_id=2
72843          <idle>-0     (-----) [002] d..1 82316.430398: cpu_idle: state=0 cpu_id=2
72844 [email protected]   (  619) [001] d..2 82316.430475: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
72845 [email protected]   (  619) [001] d..3 82316.430499: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
72846          <idle>-0     (-----) [002] .n.1 82316.430504: cpu_idle: state=4294967295 cpu_id=2
72847          <idle>-0     (-----) [002] d..2 82316.430515: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
72848 [email protected]   (  619) [001] ...1 82316.430613: tracing_mark_write: E|619
72849 [email protected]   (  619) [001] ...1 82316.430620: tracing_mark_write: E|619
72850 [email protected]   (  619) [001] ...1 82316.430690: tracing_mark_write: E|619
72851 [email protected]   (  619) [001] ...1 82316.430739: tracing_mark_write: E|619
72852 [email protected]   (  619) [001] .... 82316.430756: binder_transaction: transaction=1570454 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
72853 [email protected]   (  619) [001] .... 82316.430761: binder_transaction_alloc_buf: transaction=1570454 data_size=576 offsets_size=112
72854 [email protected]   (  619) [001] d..2 82316.430783: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
72855 [email protected]   (  619) [001] d..3 82316.430803: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
72856 [email protected]   (  619) [001] .... 82316.430808: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
72857          <idle>-0     (-----) [003] .n.1 82316.430809: cpu_idle: state=4294967295 cpu_id=3
72858          <idle>-0     (-----) [003] d..2 82316.430818: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
72859  surfaceflinger-8858  ( 8858) [003] .... 82316.430829: binder_transaction_received: transaction=1570454
72860 [email protected]   (  619) [001] d..2 82316.430892: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
72861<...>-87 ( 87) [001] d..2 82316.430943: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72862 crtc_commit:111-321   (  321) [002] d.h3 82316.430948: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
72863          <idle>-0     (-----) [001] d..1 82316.430961: cpu_idle: state=0 cpu_id=1
72864 crtc_commit:111-321   (  321) [002] d.h4 82316.430993: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
72865          <idle>-0     (-----) [001] .n.1 82316.431000: cpu_idle: state=4294967295 cpu_id=1
72866          <idle>-0     (-----) [001] d..2 82316.431013: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
72867 crtc_commit:111-321   (  321) [002] d.h3 82316.431028: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72868          <idle>-0     (-----) [005] dnh2 82316.431050: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72869          <idle>-0     (-----) [005] .n.1 82316.431055: cpu_idle: state=4294967295 cpu_id=5
72870          <idle>-0     (-----) [005] d..2 82316.431063: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72871<...>-86 ( 86) [001] d..2 82316.431102: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72872          <idle>-0     (-----) [001] d..1 82316.431113: cpu_idle: state=0 cpu_id=1
72873<...>-5340 ( 788) [005] d..1 82316.431117: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
72874 crtc_commit:111-321   (  321) [002] d.h1 82316.431141: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
72875<...>-5340 ( 788) [005] d..2 82316.431267: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
72876          <idle>-0     (-----) [001] dnh2 82316.431290: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
72877<...>-5340 ( 788) [005] d..2 82316.431293: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
72878          <idle>-0     (-----) [001] .n.1 82316.431297: cpu_idle: state=4294967295 cpu_id=1
72879  surfaceflinger-8858  ( 8858) [003] d..2 82316.431302: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
72880          <idle>-0     (-----) [005] d..1 82316.431307: cpu_idle: state=0 cpu_id=5
72881          <idle>-0     (-----) [001] d..2 82316.431308: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
72882 crtc_commit:111-321   (  321) [002] d.h3 82316.431345: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
72883<...>-87 ( 87) [001] d..2 82316.431346: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72884          <idle>-0     (-----) [001] d..1 82316.431357: cpu_idle: state=0 cpu_id=1
72885          <idle>-0     (-----) [001] .n.1 82316.431361: cpu_idle: state=4294967295 cpu_id=1
72886 neuralnetworks@-13088 (  788) [003] d..2 82316.431363: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72887 crtc_commit:111-321   (  321) [002] d.h4 82316.431363: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
72888          <idle>-0     (-----) [001] d..2 82316.431377: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
72889          <idle>-0     (-----) [003] d..1 82316.431377: cpu_idle: state=0 cpu_id=3
72890<...>-86 ( 86) [001] d..2 82316.431412: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
72891          <idle>-0     (-----) [001] d..1 82316.431423: cpu_idle: state=0 cpu_id=1
72892 crtc_commit:111-321   (  321) [002] d..2 82316.431438: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
72893          <idle>-0     (-----) [002] d..1 82316.431456: cpu_idle: state=0 cpu_id=2
72894          <idle>-0     (-----) [003] d.s2 82316.431893: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
72895          <idle>-0     (-----) [003] dns3 82316.431916: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
72896          <idle>-0     (-----) [003] .n.1 82316.431928: cpu_idle: state=4294967295 cpu_id=3
72897          <idle>-0     (-----) [003] d..2 82316.431940: 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
72898     rcu_preempt-7     (    7) [003] d..2 82316.431954: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
72899     rcu_preempt-7     (    7) [003] d..3 82316.431974: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
72900     rcu_preempt-7     (    7) [003] d..2 82316.431991: 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
72901         rcuop/2-29    (   29) [003] d..2 82316.431997: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
72902         rcuop/2-29    (   29) [003] d..3 82316.432016: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
72903         rcuop/2-29    (   29) [003] d..2 82316.432027: 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
72904         rcuop/3-37    (   37) [003] d..2 82316.432065: 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
72905          <idle>-0     (-----) [003] d..1 82316.432081: cpu_idle: state=0 cpu_id=3
72906          <idle>-0     (-----) [002] ...1 82316.432955: cpu_idle: state=4294967295 cpu_id=2
72907          <idle>-0     (-----) [002] d..1 82316.432960: cpu_idle: state=0 cpu_id=2
72908          <idle>-0     (-----) [002] d.h4 82316.433039: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72909          <idle>-0     (-----) [005] dnh2 82316.433064: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
72910          <idle>-0     (-----) [005] .n.1 82316.433069: cpu_idle: state=4294967295 cpu_id=5
72911          <idle>-0     (-----) [005] d..2 82316.433078: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
72912          <idle>-0     (-----) [002] ...1 82316.433082: cpu_idle: state=4294967295 cpu_id=2
72913          <idle>-0     (-----) [002] d..1 82316.433091: cpu_idle: state=0 cpu_id=2
72914<...>-5340 ( 788) [005] d..1 82316.433129: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
72915          <idle>-0     (-----) [003] dnh2 82316.433158: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
72916          <idle>-0     (-----) [003] .n.1 82316.433165: cpu_idle: state=4294967295 cpu_id=3
72917          <idle>-0     (-----) [003] d..2 82316.433186: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
72918<...>-5340 ( 788) [005] ...1 82316.433225: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
72919<...>-5340 ( 788) [005] ...1 82316.433228: tracing_mark_write: E|788
72920<...>-5340 ( 788) [005] .... 82316.433244: binder_transaction: transaction=1570455 dest_node=1570452 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
72921<...>-5340 ( 788) [005] .... 82316.433247: binder_transaction_alloc_buf: transaction=1570455 data_size=60 offsets_size=0
72922 neuralnetworks@-13088 (  788) [003] d..2 82316.433249: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
72923<...>-5340 ( 788) [005] d..4 82316.433251: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
72924          <idle>-0     (-----) [003] d..1 82316.433262: cpu_idle: state=0 cpu_id=3
72925<...>-5340 ( 788) [005] d..5 82316.433263: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
72926          <idle>-0     (-----) [004] .n.1 82316.433269: cpu_idle: state=4294967295 cpu_id=4
72927          <idle>-0     (-----) [004] d..2 82316.433277: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
72928           <...>-27571 (-----) [004] .... 82316.433283: binder_transaction_received: transaction=1570455
72929<...>-5340 ( 788) [005] ...1 82316.433286: tracing_mark_write: E|788
72930<...>-5340 ( 788) [005] .... 82316.433292: binder_transaction: transaction=1570456 dest_node=0 dest_proc=27550 dest_thread=27684 reply=1 flags=0x0 code=0x0
72931<...>-5340 ( 788) [005] .... 82316.433294: binder_transaction_alloc_buf: transaction=1570456 data_size=8 offsets_size=0
72932<...>-5340 ( 788) [005] d..2 82316.433296: sched_waking: comm=id.nn.benchmark pid=27684 prio=110 target_cpu=005
72933           <...>-27571 (-----) [004] ...1 82316.433301: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
72934<...>-5340 ( 788) [005] d..3 82316.433303: sched_wakeup: comm=id.nn.benchmark pid=27684 prio=110 target_cpu=005
72935<...>-5340 ( 788) [005] .... 82316.433305: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
72936           <...>-27571 (-----) [004] ...1 82316.433308: tracing_mark_write: E|27550
72937           <...>-27571 (-----) [004] d..2 82316.433339: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72938          <idle>-0     (-----) [004] d..1 82316.433347: cpu_idle: state=0 cpu_id=4
72939<...>-5340 ( 788) [005] d..2 82316.433348: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27684 next_prio=110
72940           <...>-27684 (-----) [005] .... 82316.433358: binder_transaction_received: transaction=1570456
72941           <...>-27684 (-----) [005] ...1 82316.433395: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
72942           <...>-27684 (-----) [005] ...1 82316.433402: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
72943           <...>-27684 (-----) [005] ...1 82316.433429: tracing_mark_write: E|27550
72944           <...>-27684 (-----) [005] ...1 82316.433432: tracing_mark_write: E|27550
72945           <...>-27684 (-----) [005] ...1 82316.433436: tracing_mark_write: E|27550
72946           <...>-27684 (-----) [005] ...1 82316.433631: tracing_mark_write: E|27550
72947           <...>-27684 (-----) [005] d..1 82316.433643: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72948           <...>-27684 (-----) [005] d..2 82316.433660: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72949          <idle>-0     (-----) [004] .n.1 82316.433665: cpu_idle: state=4294967295 cpu_id=4
72950          <idle>-0     (-----) [004] d..2 82316.433671: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
72951           <...>-27550 (-----) [004] d..2 82316.433691: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72952          <idle>-0     (-----) [004] d..1 82316.433701: cpu_idle: state=0 cpu_id=4
72953           <...>-27684 (-----) [005] d..1 82316.433751: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72954           <...>-27684 (-----) [005] d..2 82316.433760: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
72955          <idle>-0     (-----) [004] .n.1 82316.433765: cpu_idle: state=4294967295 cpu_id=4
72956          <idle>-0     (-----) [004] d..2 82316.433774: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
72957           <...>-27684 (-----) [005] d..2 82316.433802: sched_switch: prev_comm=id.nn.benchmark prev_pid=27684 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
72958           <...>-27550 (-----) [004] ...1 82316.433807: tracing_mark_write: E|27550
72959           <...>-27550 (-----) [004] ...1 82316.433812: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
72960           <...>-27550 (-----) [004] ...1 82316.433818: tracing_mark_write: E|27550
72961           <...>-27550 (-----) [004] ...1 82316.433821: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
72962          <idle>-0     (-----) [005] d..1 82316.433823: cpu_idle: state=0 cpu_id=5
72963           <...>-27550 (-----) [004] ...1 82316.433825: tracing_mark_write: E|27550
72964           <...>-27550 (-----) [004] ...1 82316.433829: tracing_mark_write: E|27550
72965           <...>-27550 (-----) [004] ...1 82316.433942: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
72966           <...>-27550 (-----) [004] ...1 82316.434000: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
72967           <...>-27550 (-----) [004] ...1 82316.434005: tracing_mark_write: E|27550
72968           <...>-27550 (-----) [004] ...1 82316.434009: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
72969           <...>-27550 (-----) [004] ...1 82316.434014: tracing_mark_write: E|27550
72970           <...>-27550 (-----) [004] ...1 82316.434017: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
72971           <...>-27550 (-----) [004] ...1 82316.434021: tracing_mark_write: E|27550
72972           <...>-27550 (-----) [004] ...1 82316.434025: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
72973          <idle>-0     (-----) [005] .n.1 82316.434115: cpu_idle: state=4294967295 cpu_id=5
72974           <...>-27550 (-----) [004] ...1 82316.434116: tracing_mark_write: E|27550
72975           <...>-27550 (-----) [004] ...1 82316.434120: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
72976          <idle>-0     (-----) [005] d..2 82316.434123: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27685 next_prio=110
72977           <...>-27550 (-----) [004] d..2 82316.434138: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
72978          <idle>-0     (-----) [004] d..1 82316.434152: cpu_idle: state=0 cpu_id=4
72979           <...>-27685 (-----) [005] ...1 82316.434186: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
72980           <...>-27685 (-----) [005] ...1 82316.434201: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
72981           <...>-27685 (-----) [005] ...1 82316.434205: tracing_mark_write: E|27550
72982           <...>-27685 (-----) [005] .... 82316.434226: binder_transaction: transaction=1570457 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
72983           <...>-27685 (-----) [005] .... 82316.434229: binder_transaction_alloc_buf: transaction=1570457 data_size=48 offsets_size=0
72984           <...>-27685 (-----) [005] ...2 82316.434232: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
72985           <...>-27685 (-----) [005] d..4 82316.434235: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
72986           <...>-27685 (-----) [005] dn.5 82316.434246: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
72987           <...>-27685 (-----) [005] d..2 82316.434253: sched_switch: prev_comm=id.nn.benchmark prev_pid=27685 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
72988<...>-770 ( 770) [005] .... 82316.434263: binder_transaction_received: transaction=1570457
72989<...>-770 ( 770) [005] ...1 82316.434286: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
72990<...>-770 ( 770) [005] d..2 82316.434363: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
72991          <idle>-0     (-----) [000] dnh2 82316.434404: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
72992          <idle>-0     (-----) [000] .n.1 82316.434410: cpu_idle: state=4294967295 cpu_id=0
72993<...>-770 ( 770) [005] ...1 82316.434418: tracing_mark_write: E|770
72994          <idle>-0     (-----) [000] d..2 82316.434423: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
72995<...>-770 ( 770) [005] .... 82316.434426: binder_transaction: transaction=1570458 dest_node=0 dest_proc=27550 dest_thread=27685 reply=1 flags=0x0 code=0x0
72996<...>-770 ( 770) [005] .... 82316.434430: binder_transaction_alloc_buf: transaction=1570458 data_size=168 offsets_size=32
72997<...>-770 ( 770) [005] .... 82316.434437: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
72998<...>-770 ( 770) [005] d..2 82316.434472: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27685 next_prio=110
72999           <...>-27685 (-----) [005] .... 82316.434483: binder_transaction_received: transaction=1570458
73000<...>-581 ( 571) [000] d..2 82316.434523: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73001          <idle>-0     (-----) [000] d..1 82316.434540: cpu_idle: state=0 cpu_id=0
73002           <...>-27685 (-----) [005] ...1 82316.434553: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
73003           <...>-27685 (-----) [005] ...1 82316.434558: tracing_mark_write: E|27550
73004           <...>-27685 (-----) [005] .... 82316.434573: binder_transaction: transaction=1570459 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
73005           <...>-27685 (-----) [005] .... 82316.434576: binder_transaction_alloc_buf: transaction=1570459 data_size=48 offsets_size=0
73006           <...>-27685 (-----) [005] ...2 82316.434578: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
73007           <...>-27685 (-----) [005] d..4 82316.434580: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
73008           <...>-27685 (-----) [005] dn.5 82316.434590: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
73009           <...>-27685 (-----) [005] d..2 82316.434597: sched_switch: prev_comm=id.nn.benchmark prev_pid=27685 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
73010<...>-770 ( 770) [005] .... 82316.434605: binder_transaction_received: transaction=1570459
73011<...>-770 ( 770) [005] ...1 82316.434621: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
73012          <idle>-0     (-----) [002] ...1 82316.434677: cpu_idle: state=4294967295 cpu_id=2
73013<...>-770 ( 770) [005] d..2 82316.434678: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
73014          <idle>-0     (-----) [002] d..1 82316.434682: cpu_idle: state=0 cpu_id=2
73015          <idle>-0     (-----) [000] dnh2 82316.434703: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
73016          <idle>-0     (-----) [000] .n.1 82316.434710: cpu_idle: state=4294967295 cpu_id=0
73017<...>-770 ( 770) [005] ...1 82316.434712: tracing_mark_write: E|770
73018<...>-770 ( 770) [005] .... 82316.434719: binder_transaction: transaction=1570460 dest_node=0 dest_proc=27550 dest_thread=27685 reply=1 flags=0x0 code=0x0
73019<...>-770 ( 770) [005] .... 82316.434722: binder_transaction_alloc_buf: transaction=1570460 data_size=168 offsets_size=32
73020          <idle>-0     (-----) [000] d..2 82316.434723: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
73021<...>-770 ( 770) [005] .... 82316.434728: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
73022<...>-770 ( 770) [005] d..2 82316.434762: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27685 next_prio=110
73023           <...>-27685 (-----) [005] .... 82316.434772: binder_transaction_received: transaction=1570460
73024<...>-581 ( 571) [000] d..2 82316.434787: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73025          <idle>-0     (-----) [000] d..1 82316.434802: cpu_idle: state=0 cpu_id=0
73026           <...>-27685 (-----) [005] ...1 82316.435042: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
73027           <...>-27685 (-----) [005] ...1 82316.435051: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
73028           <...>-27685 (-----) [005] ...1 82316.435055: tracing_mark_write: E|27550
73029           <...>-27685 (-----) [005] d.s2 82316.435137: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73030          <idle>-0     (-----) [001] d.s2 82316.435138: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
73031          <idle>-0     (-----) [001] dns3 82316.435161: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
73032          <idle>-0     (-----) [000] dnh2 82316.435167: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73033           <...>-27685 (-----) [005] .... 82316.435169: binder_transaction: transaction=1570461 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
73034           <...>-27685 (-----) [005] .... 82316.435172: binder_transaction_alloc_buf: transaction=1570461 data_size=556 offsets_size=104
73035          <idle>-0     (-----) [000] .n.1 82316.435174: cpu_idle: state=4294967295 cpu_id=0
73036          <idle>-0     (-----) [001] .n.1 82316.435178: cpu_idle: state=4294967295 cpu_id=1
73037           <...>-27685 (-----) [005] ...2 82316.435186: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
73038          <idle>-0     (-----) [000] d..2 82316.435188: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
73039           <...>-27685 (-----) [005] d..4 82316.435188: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73040          <idle>-0     (-----) [001] d..2 82316.435190: 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
73041           <...>-27685 (-----) [005] dn.5 82316.435196: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73042           <...>-27685 (-----) [005] d..2 82316.435203: sched_switch: prev_comm=id.nn.benchmark prev_pid=27685 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73043<...>-5340 ( 788) [005] .... 82316.435212: binder_transaction_received: transaction=1570461
73044<...>-8 ( 8) [001] d..2 82316.435228: 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
73045          <idle>-0     (-----) [001] d..1 82316.435241: cpu_idle: state=0 cpu_id=1
73046<...>-5340 ( 788) [005] ...1 82316.435258: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
73047  kworker/u16:13-1147  ( 1147) [000] d..2 82316.435263: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73048          <idle>-0     (-----) [000] d..1 82316.435276: cpu_idle: state=0 cpu_id=0
73049<...>-5340 ( 788) [005] d..2 82316.435332: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
73050<...>-5340 ( 788) [005] d..2 82316.435368: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27685 next_prio=110
73051          <idle>-0     (-----) [000] dnh2 82316.435371: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73052          <idle>-0     (-----) [000] .n.1 82316.435377: cpu_idle: state=4294967295 cpu_id=0
73053          <idle>-0     (-----) [000] d..2 82316.435389: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
73054           <...>-27685 (-----) [005] d..2 82316.435392: sched_switch: prev_comm=id.nn.benchmark prev_pid=27685 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73055          <idle>-0     (-----) [005] d..1 82316.435408: cpu_idle: state=0 cpu_id=5
73056<...>-87 ( 87) [000] d..2 82316.435437: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73057          <idle>-0     (-----) [002] d.h4 82316.435442: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
73058          <idle>-0     (-----) [000] d..1 82316.435450: cpu_idle: state=0 cpu_id=0
73059          <idle>-0     (-----) [002] dnh5 82316.435482: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73060          <idle>-0     (-----) [002] .n.1 82316.435491: cpu_idle: state=4294967295 cpu_id=2
73061          <idle>-0     (-----) [002] d..2 82316.435506: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
73062<...>-86 ( 86) [002] d.h5 82316.435528: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73063          <idle>-0     (-----) [005] dnh2 82316.435550: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73064          <idle>-0     (-----) [005] .n.1 82316.435554: cpu_idle: state=4294967295 cpu_id=5
73065          <idle>-0     (-----) [005] d..2 82316.435562: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73066<...>-86 ( 86) [002] d..2 82316.435601: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73067<...>-5340 ( 788) [005] d..1 82316.435613: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
73068          <idle>-0     (-----) [002] d..1 82316.435615: cpu_idle: state=0 cpu_id=2
73069          <idle>-0     (-----) [000] dnh2 82316.435650: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73070          <idle>-0     (-----) [000] .n.1 82316.435656: cpu_idle: state=4294967295 cpu_id=0
73071          <idle>-0     (-----) [000] d..2 82316.435668: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
73072 neuralnetworks@-13088 (  788) [000] d..2 82316.435727: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73073          <idle>-0     (-----) [000] d..1 82316.435744: cpu_idle: state=0 cpu_id=0
73074<...>-5340 ( 788) [005] d..2 82316.435771: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73075          <idle>-0     (-----) [000] dnh2 82316.435794: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73076<...>-5340 ( 788) [005] d..2 82316.435798: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73077          <idle>-0     (-----) [000] .n.1 82316.435802: cpu_idle: state=4294967295 cpu_id=0
73078          <idle>-0     (-----) [005] d..1 82316.435812: cpu_idle: state=0 cpu_id=5
73079          <idle>-0     (-----) [000] d..2 82316.435814: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
73080          <idle>-0     (-----) [002] d.h4 82316.435856: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73081<...>-87 ( 87) [000] d..2 82316.435857: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73082          <idle>-0     (-----) [002] dnh5 82316.435868: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73083          <idle>-0     (-----) [000] d..1 82316.435871: cpu_idle: state=0 cpu_id=0
73084          <idle>-0     (-----) [002] .n.1 82316.435877: cpu_idle: state=4294967295 cpu_id=2
73085          <idle>-0     (-----) [002] d..2 82316.435890: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
73086<...>-86 ( 86) [002] d..2 82316.435927: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73087          <idle>-0     (-----) [002] d..1 82316.435939: cpu_idle: state=0 cpu_id=2
73088          <idle>-0     (-----) [000] d.h5 82316.436295: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
73089          <idle>-0     (-----) [000] d.h6 82316.436318: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
73090          <idle>-0     (-----) [000] d.h5 82316.436323: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
73091          <idle>-0     (-----) [003] .n.1 82316.436324: cpu_idle: state=4294967295 cpu_id=3
73092          <idle>-0     (-----) [003] d..2 82316.436337: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
73093          <idle>-0     (-----) [000] d.h6 82316.436337: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
73094          <idle>-0     (-----) [002] .n.1 82316.436343: cpu_idle: state=4294967295 cpu_id=2
73095          <idle>-0     (-----) [002] d..2 82316.436355: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
73096          <idle>-0     (-----) [000] ...1 82316.436357: cpu_idle: state=4294967295 cpu_id=0
73097          <idle>-0     (-----) [000] d..1 82316.436363: cpu_idle: state=0 cpu_id=0
73098  crtc_event:111-322   (  322) [003] d..2 82316.436374: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73099          <idle>-0     (-----) [003] d..1 82316.436383: cpu_idle: state=0 cpu_id=3
73100 crtc_commit:111-321   (  321) [002] d..2 82316.436504: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
73101          <idle>-0     (-----) [002] d..1 82316.436513: cpu_idle: state=0 cpu_id=2
73102          <idle>-0     (-----) [002] d.h4 82316.437621: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73103          <idle>-0     (-----) [005] dnh2 82316.437645: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73104          <idle>-0     (-----) [005] .n.1 82316.437650: cpu_idle: state=4294967295 cpu_id=5
73105          <idle>-0     (-----) [005] d..2 82316.437658: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73106          <idle>-0     (-----) [002] ...1 82316.437663: cpu_idle: state=4294967295 cpu_id=2
73107          <idle>-0     (-----) [002] d..1 82316.437669: cpu_idle: state=0 cpu_id=2
73108<...>-5340 ( 788) [005] d..1 82316.437703: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73109          <idle>-0     (-----) [000] dnh2 82316.437730: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73110          <idle>-0     (-----) [000] .n.1 82316.437737: cpu_idle: state=4294967295 cpu_id=0
73111          <idle>-0     (-----) [000] d..2 82316.437749: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
73112<...>-5340 ( 788) [005] ...1 82316.437798: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
73113<...>-5340 ( 788) [005] ...1 82316.437802: tracing_mark_write: E|788
73114<...>-5340 ( 788) [005] .... 82316.437818: binder_transaction: transaction=1570464 dest_node=1570462 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
73115<...>-5340 ( 788) [005] .... 82316.437820: binder_transaction_alloc_buf: transaction=1570464 data_size=60 offsets_size=0
73116 neuralnetworks@-13088 (  788) [000] d..2 82316.437821: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73117<...>-5340 ( 788) [005] d..4 82316.437823: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
73118          <idle>-0     (-----) [000] d..1 82316.437835: cpu_idle: state=0 cpu_id=0
73119<...>-5340 ( 788) [005] d..5 82316.437835: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
73120          <idle>-0     (-----) [004] .n.1 82316.437841: cpu_idle: state=4294967295 cpu_id=4
73121          <idle>-0     (-----) [004] d..2 82316.437850: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
73122           <...>-27571 (-----) [004] .... 82316.437855: binder_transaction_received: transaction=1570464
73123<...>-5340 ( 788) [005] ...1 82316.437858: tracing_mark_write: E|788
73124<...>-5340 ( 788) [005] .... 82316.437864: binder_transaction: transaction=1570465 dest_node=0 dest_proc=27550 dest_thread=27685 reply=1 flags=0x0 code=0x0
73125<...>-5340 ( 788) [005] .... 82316.437866: binder_transaction_alloc_buf: transaction=1570465 data_size=8 offsets_size=0
73126<...>-5340 ( 788) [005] d..2 82316.437868: sched_waking: comm=id.nn.benchmark pid=27685 prio=110 target_cpu=005
73127           <...>-27571 (-----) [004] ...1 82316.437873: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
73128<...>-5340 ( 788) [005] d..3 82316.437875: sched_wakeup: comm=id.nn.benchmark pid=27685 prio=110 target_cpu=005
73129<...>-5340 ( 788) [005] .... 82316.437878: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
73130           <...>-27571 (-----) [004] ...1 82316.437879: tracing_mark_write: E|27550
73131           <...>-27571 (-----) [004] d..2 82316.437908: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73132          <idle>-0     (-----) [004] d..1 82316.437916: cpu_idle: state=0 cpu_id=4
73133<...>-5340 ( 788) [005] d..2 82316.437918: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27685 next_prio=110
73134           <...>-27685 (-----) [005] .... 82316.437928: binder_transaction_received: transaction=1570465
73135           <...>-27685 (-----) [005] ...1 82316.437966: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
73136           <...>-27685 (-----) [005] ...1 82316.437972: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
73137           <...>-27685 (-----) [005] ...1 82316.437998: tracing_mark_write: E|27550
73138           <...>-27685 (-----) [005] ...1 82316.438002: tracing_mark_write: E|27550
73139           <...>-27685 (-----) [005] ...1 82316.438005: tracing_mark_write: E|27550
73140           <...>-27685 (-----) [005] ...1 82316.438199: tracing_mark_write: E|27550
73141           <...>-27685 (-----) [005] d..1 82316.438212: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73142           <...>-27685 (-----) [005] d..2 82316.438227: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73143          <idle>-0     (-----) [004] .n.1 82316.438233: cpu_idle: state=4294967295 cpu_id=4
73144          <idle>-0     (-----) [004] d..2 82316.438239: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
73145           <...>-27550 (-----) [004] d..2 82316.438259: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73146          <idle>-0     (-----) [004] d..1 82316.438268: cpu_idle: state=0 cpu_id=4
73147           <...>-27685 (-----) [005] d..1 82316.438312: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73148           <...>-27685 (-----) [005] d..2 82316.438321: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73149          <idle>-0     (-----) [004] .n.1 82316.438326: cpu_idle: state=4294967295 cpu_id=4
73150          <idle>-0     (-----) [004] d..2 82316.438334: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
73151           <...>-27685 (-----) [005] d..2 82316.438358: sched_switch: prev_comm=id.nn.benchmark prev_pid=27685 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
73152          <idle>-0     (-----) [005] d..1 82316.438379: cpu_idle: state=0 cpu_id=5
73153           <...>-27550 (-----) [004] ...1 82316.438382: tracing_mark_write: E|27550
73154           <...>-27550 (-----) [004] ...1 82316.438387: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
73155           <...>-27550 (-----) [004] ...1 82316.438393: tracing_mark_write: E|27550
73156           <...>-27550 (-----) [004] ...1 82316.438396: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
73157           <...>-27550 (-----) [004] ...1 82316.438400: tracing_mark_write: E|27550
73158           <...>-27550 (-----) [004] ...1 82316.438405: tracing_mark_write: E|27550
73159           <...>-27550 (-----) [004] d.s2 82316.438465: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73160          <idle>-0     (-----) [003] d.s2 82316.438468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
73161          <idle>-0     (-----) [002] d.s3 82316.438470: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
73162          <idle>-0     (-----) [003] dns3 82316.438486: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
73163          <idle>-0     (-----) [000] dnh2 82316.438491: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73164          <idle>-0     (-----) [002] d.s4 82316.438493: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
73165          <idle>-0     (-----) [000] .n.1 82316.438498: cpu_idle: state=4294967295 cpu_id=0
73166          <idle>-0     (-----) [000] d..2 82316.438512: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
73167          <idle>-0     (-----) [003] .n.1 82316.438514: cpu_idle: state=4294967295 cpu_id=3
73168          <idle>-0     (-----) [002] ...1 82316.438520: cpu_idle: state=4294967295 cpu_id=2
73169          <idle>-0     (-----) [003] d..2 82316.438523: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
73170          <idle>-0     (-----) [002] d..1 82316.438529: cpu_idle: state=0 cpu_id=2
73171  crtc_event:111-322   (  322) [003] d..2 82316.438543: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
73172           <...>-27550 (-----) [004] ...1 82316.438576: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
73173     rcu_preempt-7     (    7) [003] d..2 82316.438596: 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
73174          <idle>-0     (-----) [003] d..1 82316.438608: cpu_idle: state=0 cpu_id=3
73175  kworker/u16:13-1147  ( 1147) [000] d.h6 82316.438632: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
73176           <...>-27550 (-----) [004] ...1 82316.438634: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
73177           <...>-27550 (-----) [004] ...1 82316.438639: tracing_mark_write: E|27550
73178           <...>-27550 (-----) [004] ...1 82316.438643: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
73179           <...>-27550 (-----) [004] ...1 82316.438648: tracing_mark_write: E|27550
73180  kworker/u16:13-1147  ( 1147) [000] d.h7 82316.438651: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
73181           <...>-27550 (-----) [004] ...1 82316.438652: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
73182           <...>-27550 (-----) [004] ...1 82316.438655: tracing_mark_write: E|27550
73183          <idle>-0     (-----) [002] .n.1 82316.438658: cpu_idle: state=4294967295 cpu_id=2
73184           <...>-27550 (-----) [004] ...1 82316.438659: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
73185          <idle>-0     (-----) [002] d..2 82316.438671: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
73186  kworker/u16:13-1147  ( 1147) [000] .... 82316.438679: clk_set_rate: l3_cluster0_vote_clk 300000000
73187          <idle>-0     (-----) [005] .n.1 82316.438754: cpu_idle: state=4294967295 cpu_id=5
73188           <...>-27550 (-----) [004] ...1 82316.438756: tracing_mark_write: E|27550
73189 crtc_commit:111-321   (  321) [002] d..2 82316.438758: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73190           <...>-27550 (-----) [004] ...1 82316.438760: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
73191          <idle>-0     (-----) [005] d..2 82316.438765: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27686 next_prio=110
73192           <...>-27550 (-----) [004] d..2 82316.438778: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73193          <idle>-0     (-----) [004] d..1 82316.438793: cpu_idle: state=0 cpu_id=4
73194          <idle>-0     (-----) [002] d..1 82316.438805: cpu_idle: state=0 cpu_id=2
73195           <...>-27686 (-----) [005] ...1 82316.438826: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
73196           <...>-27686 (-----) [005] ...1 82316.438839: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
73197           <...>-27686 (-----) [005] ...1 82316.438843: tracing_mark_write: E|27550
73198           <...>-27686 (-----) [005] .... 82316.438863: binder_transaction: transaction=1570466 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
73199           <...>-27686 (-----) [005] .... 82316.438867: binder_transaction_alloc_buf: transaction=1570466 data_size=48 offsets_size=0
73200           <...>-27686 (-----) [005] ...2 82316.438870: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
73201           <...>-27686 (-----) [005] d..4 82316.438872: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
73202           <...>-27686 (-----) [005] dn.5 82316.438882: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
73203           <...>-27686 (-----) [005] d..2 82316.438889: sched_switch: prev_comm=id.nn.benchmark prev_pid=27686 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
73204<...>-770 ( 770) [005] .... 82316.438899: binder_transaction_received: transaction=1570466
73205  kworker/u16:13-1147  ( 1147) [000] d.h4 82316.438915: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
73206<...>-770 ( 770) [005] ...1 82316.438920: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
73207  kworker/u16:13-1147  ( 1147) [000] d.h5 82316.438934: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
73208          <idle>-0     (-----) [003] .n.1 82316.438939: cpu_idle: state=4294967295 cpu_id=3
73209          <idle>-0     (-----) [003] d..2 82316.438950: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
73210  crtc_event:111-322   (  322) [003] d..2 82316.438977: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73211          <idle>-0     (-----) [003] d..1 82316.438987: cpu_idle: state=0 cpu_id=3
73212<...>-770 ( 770) [005] d..2 82316.438990: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
73213<...>-770 ( 770) [005] ...1 82316.439029: tracing_mark_write: E|770
73214<...>-770 ( 770) [005] .... 82316.439037: binder_transaction: transaction=1570467 dest_node=0 dest_proc=27550 dest_thread=27686 reply=1 flags=0x0 code=0x0
73215<...>-770 ( 770) [005] .... 82316.439039: binder_transaction_alloc_buf: transaction=1570467 data_size=168 offsets_size=32
73216<...>-770 ( 770) [005] .... 82316.439046: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
73217  kworker/u16:13-1147  ( 1147) [000] d.h2 82316.439078: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
73218<...>-770 ( 770) [005] d..2 82316.439082: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27686 next_prio=110
73219           <...>-27686 (-----) [005] .... 82316.439093: binder_transaction_received: transaction=1570467
73220  kworker/u16:13-1147  ( 1147) [000] d..2 82316.439096: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
73221          <idle>-0     (-----) [001] d.s3 82316.439128: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73222          <idle>-0     (-----) [001] d.s4 82316.439152: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
73223          <idle>-0     (-----) [001] dns4 82316.439158: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
73224           <...>-27686 (-----) [005] ...1 82316.439160: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
73225           <...>-27686 (-----) [005] ...1 82316.439165: tracing_mark_write: E|27550
73226          <idle>-0     (-----) [001] .n.1 82316.439166: cpu_idle: state=4294967295 cpu_id=1
73227           <...>-27686 (-----) [005] .... 82316.439179: binder_transaction: transaction=1570468 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
73228          <idle>-0     (-----) [001] d..2 82316.439180: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
73229           <...>-27686 (-----) [005] .... 82316.439182: binder_transaction_alloc_buf: transaction=1570468 data_size=48 offsets_size=0
73230           <...>-27686 (-----) [005] ...2 82316.439184: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
73231           <...>-27686 (-----) [005] d..4 82316.439186: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
73232<...>-581 ( 571) [000] d..2 82316.439187: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73233           <...>-27686 (-----) [005] dn.5 82316.439196: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
73234           <...>-27686 (-----) [005] d..2 82316.439203: sched_switch: prev_comm=id.nn.benchmark prev_pid=27686 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
73235          <idle>-0     (-----) [000] d..1 82316.439207: cpu_idle: state=0 cpu_id=0
73236<...>-770 ( 770) [005] .... 82316.439218: binder_transaction_received: transaction=1570468
73237<...>-770 ( 770) [005] ...1 82316.439243: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
73238  kworker/u16:13-1147  ( 1147) [001] d..2 82316.439269: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73239          <idle>-0     (-----) [001] d..1 82316.439280: cpu_idle: state=0 cpu_id=1
73240<...>-770 ( 770) [005] d..2 82316.439300: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
73241          <idle>-0     (-----) [000] dnh2 82316.439325: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
73242          <idle>-0     (-----) [000] .n.1 82316.439333: cpu_idle: state=4294967295 cpu_id=0
73243<...>-770 ( 770) [005] ...1 82316.439334: tracing_mark_write: E|770
73244<...>-770 ( 770) [005] .... 82316.439341: binder_transaction: transaction=1570469 dest_node=0 dest_proc=27550 dest_thread=27686 reply=1 flags=0x0 code=0x0
73245<...>-770 ( 770) [005] .... 82316.439344: binder_transaction_alloc_buf: transaction=1570469 data_size=168 offsets_size=32
73246          <idle>-0     (-----) [000] d..2 82316.439346: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
73247<...>-770 ( 770) [005] .... 82316.439350: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
73248<...>-770 ( 770) [005] d..2 82316.439385: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27686 next_prio=110
73249           <...>-27686 (-----) [005] .... 82316.439395: binder_transaction_received: transaction=1570469
73250<...>-581 ( 571) [000] d..2 82316.439408: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73251          <idle>-0     (-----) [000] d..1 82316.439425: cpu_idle: state=0 cpu_id=0
73252           <...>-27686 (-----) [005] ...1 82316.439672: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
73253           <...>-27686 (-----) [005] ...1 82316.439682: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
73254           <...>-27686 (-----) [005] ...1 82316.439686: tracing_mark_write: E|27550
73255           <...>-27686 (-----) [005] .... 82316.439746: binder_transaction: transaction=1570470 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
73256           <...>-27686 (-----) [005] .... 82316.439749: binder_transaction_alloc_buf: transaction=1570470 data_size=556 offsets_size=104
73257           <...>-27686 (-----) [005] ...2 82316.439763: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
73258           <...>-27686 (-----) [005] d..4 82316.439765: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73259           <...>-27686 (-----) [005] dn.5 82316.439776: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73260           <...>-27686 (-----) [005] d..2 82316.439783: sched_switch: prev_comm=id.nn.benchmark prev_pid=27686 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73261<...>-5340 ( 788) [005] .... 82316.439793: binder_transaction_received: transaction=1570470
73262<...>-5340 ( 788) [005] ...1 82316.439836: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
73263<...>-5340 ( 788) [005] d..2 82316.439881: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73264<...>-5340 ( 788) [005] d..2 82316.439905: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27686 next_prio=110
73265          <idle>-0     (-----) [000] dnh2 82316.439910: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73266          <idle>-0     (-----) [000] .n.1 82316.439918: cpu_idle: state=4294967295 cpu_id=0
73267           <...>-27686 (-----) [005] d..2 82316.439927: sched_switch: prev_comm=id.nn.benchmark prev_pid=27686 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73268          <idle>-0     (-----) [000] d..2 82316.439929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
73269          <idle>-0     (-----) [005] d..1 82316.439946: cpu_idle: state=0 cpu_id=5
73270<...>-87 ( 87) [000] d..2 82316.439973: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73271          <idle>-0     (-----) [002] d.h4 82316.439983: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73272          <idle>-0     (-----) [000] d..1 82316.439987: cpu_idle: state=0 cpu_id=0
73273          <idle>-0     (-----) [002] dnh5 82316.440003: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73274          <idle>-0     (-----) [002] .n.1 82316.440014: cpu_idle: state=4294967295 cpu_id=2
73275          <idle>-0     (-----) [002] d..2 82316.440027: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
73276<...>-86 ( 86) [002] d..3 82316.440059: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73277          <idle>-0     (-----) [005] dnh2 82316.440081: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73278          <idle>-0     (-----) [005] .n.1 82316.440085: cpu_idle: state=4294967295 cpu_id=5
73279          <idle>-0     (-----) [005] d..2 82316.440093: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73280<...>-86 ( 86) [002] d..2 82316.440121: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73281          <idle>-0     (-----) [002] d..1 82316.440135: cpu_idle: state=0 cpu_id=2
73282<...>-5340 ( 788) [005] d..1 82316.440144: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73283          <idle>-0     (-----) [000] dnh2 82316.440170: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73284          <idle>-0     (-----) [000] .n.1 82316.440178: cpu_idle: state=4294967295 cpu_id=0
73285          <idle>-0     (-----) [000] d..2 82316.440189: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
73286 neuralnetworks@-13088 (  788) [000] d..2 82316.440238: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73287          <idle>-0     (-----) [000] d..1 82316.440253: cpu_idle: state=0 cpu_id=0
73288<...>-5340 ( 788) [005] d..2 82316.440290: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73289          <idle>-0     (-----) [000] dnh2 82316.440313: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73290<...>-5340 ( 788) [005] d..2 82316.440316: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73291          <idle>-0     (-----) [000] .n.1 82316.440320: cpu_idle: state=4294967295 cpu_id=0
73292          <idle>-0     (-----) [005] d..1 82316.440330: cpu_idle: state=0 cpu_id=5
73293          <idle>-0     (-----) [000] d..2 82316.440332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
73294          <idle>-0     (-----) [002] d.h4 82316.440372: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73295<...>-87 ( 87) [000] d..2 82316.440374: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73296          <idle>-0     (-----) [002] dnh5 82316.440384: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73297          <idle>-0     (-----) [000] d..1 82316.440387: cpu_idle: state=0 cpu_id=0
73298          <idle>-0     (-----) [002] .n.1 82316.440394: cpu_idle: state=4294967295 cpu_id=2
73299          <idle>-0     (-----) [002] d..2 82316.440406: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
73300<...>-86 ( 86) [002] d..2 82316.440442: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73301          <idle>-0     (-----) [002] d..1 82316.440455: cpu_idle: state=0 cpu_id=2
73302          <idle>-0     (-----) [003] d.h2 82316.440785: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
73303          <idle>-0     (-----) [003] dnh3 82316.440802: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
73304          <idle>-0     (-----) [003] .n.1 82316.440811: cpu_idle: state=4294967295 cpu_id=3
73305          <idle>-0     (-----) [003] d..2 82316.440822: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
73306        DispSync-8879  ( 8858) [003] d..1 82316.440846: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
73307        DispSync-8879  ( 8858) [003] d..2 82316.440872: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
73308          <idle>-0     (-----) [001] .n.1 82316.440878: cpu_idle: state=4294967295 cpu_id=1
73309          <idle>-0     (-----) [001] d..2 82316.440887: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
73310        DispSync-8879  ( 8858) [003] d..2 82316.440907: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73311          <idle>-0     (-----) [003] d..1 82316.440922: cpu_idle: state=0 cpu_id=3
73312  appEventThread-8881  ( 8858) [001] d..3 82316.440954: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
73313  appEventThread-8881  ( 8858) [001] d..4 82316.440979: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
73314          <idle>-0     (-----) [000] .n.1 82316.440985: cpu_idle: state=4294967295 cpu_id=0
73315          <idle>-0     (-----) [000] d..2 82316.440998: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
73316  appEventThread-8881  ( 8858) [001] d..2 82316.441025: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73317          <idle>-0     (-----) [001] d..1 82316.441036: cpu_idle: state=0 cpu_id=1
73318<...>-9105 ( 9105) [000] .... 82316.441338: binder_transaction: transaction=1570473 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
73319<...>-9105 ( 9105) [000] .... 82316.441345: binder_transaction_alloc_buf: transaction=1570473 data_size=80 offsets_size=0
73320<...>-9105 ( 9105) [000] d..4 82316.441351: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
73321<...>-9105 ( 9105) [000] d..5 82316.441387: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
73322          <idle>-0     (-----) [001] .n.1 82316.441393: cpu_idle: state=4294967295 cpu_id=1
73323          <idle>-0     (-----) [001] d..2 82316.441404: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
73324<...>-13083 ( 8858) [001] .... 82316.441412: binder_transaction_received: transaction=1570473
73325<...>-9105 ( 9105) [000] d..3 82316.441429: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
73326<...>-13083 ( 8858) [001] d..1 82316.441449: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
73327<...>-9105 ( 9105) [000] d..4 82316.441451: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
73328          <idle>-0     (-----) [002] .n.1 82316.441457: cpu_idle: state=4294967295 cpu_id=2
73329          <idle>-0     (-----) [002] d..2 82316.441470: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
73330<...>-13083 ( 8858) [001] d..2 82316.441476: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
73331          <idle>-0     (-----) [003] .n.1 82316.441482: cpu_idle: state=4294967295 cpu_id=3
73332          <idle>-0     (-----) [003] d..2 82316.441493: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
73333<...>-13083 ( 8858) [001] d..2 82316.441523: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73334    RenderThread-9436  ( 9105) [002] d..2 82316.441529: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73335          <idle>-0     (-----) [001] d..1 82316.441534: cpu_idle: state=0 cpu_id=1
73336          <idle>-0     (-----) [002] d..1 82316.441544: cpu_idle: state=0 cpu_id=2
73337  appEventThread-8881  ( 8858) [003] d..2 82316.441551: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73338          <idle>-0     (-----) [003] d..1 82316.441562: cpu_idle: state=0 cpu_id=3
73339<...>-9105 ( 9105) [000] d..3 82316.441578: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
73340<...>-9105 ( 9105) [000] d..4 82316.441597: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
73341          <idle>-0     (-----) [002] .n.1 82316.441604: cpu_idle: state=4294967295 cpu_id=2
73342          <idle>-0     (-----) [002] d..2 82316.441617: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
73343<...>-9105 ( 9105) [000] d..2 82316.441634: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73344          <idle>-0     (-----) [000] d..1 82316.441655: cpu_idle: state=0 cpu_id=0
73345    RenderThread-9436  ( 9105) [002] d..1 82316.441740: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
73346    RenderThread-9436  ( 9105) [002] d..2 82316.441760: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
73347          <idle>-0     (-----) [000] .n.1 82316.441768: cpu_idle: state=4294967295 cpu_id=0
73348          <idle>-0     (-----) [000] d..2 82316.441789: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
73349          <idle>-0     (-----) [001] d.s2 82316.441804: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
73350          <idle>-0     (-----) [001] dns3 82316.441822: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
73351          <idle>-0     (-----) [001] .n.1 82316.441841: cpu_idle: state=4294967295 cpu_id=1
73352          <idle>-0     (-----) [001] d..2 82316.441851: 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
73353<...>-8 ( 8) [001] d..2 82316.441862: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
73354    RenderThread-9436  ( 9105) [002] .... 82316.441877: binder_transaction: transaction=1570474 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
73355    RenderThread-9436  ( 9105) [002] .... 82316.441882: binder_transaction_alloc_buf: transaction=1570474 data_size=104 offsets_size=0
73356<...>-9105 ( 9105) [000] d..2 82316.441883: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73357    RenderThread-9436  ( 9105) [002] d..4 82316.441888: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
73358          <idle>-0     (-----) [000] d..1 82316.441900: cpu_idle: state=0 cpu_id=0
73359<...>-8 ( 8) [001] d..3 82316.441908: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
73360    RenderThread-9436  ( 9105) [002] dn.5 82316.441913: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
73361          <idle>-0     (-----) [000] .n.1 82316.441915: cpu_idle: state=4294967295 cpu_id=0
73362    RenderThread-9436  ( 9105) [002] d..2 82316.441923: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
73363          <idle>-0     (-----) [000] d..2 82316.441929: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
73364<...>-13083 ( 8858) [002] .... 82316.441932: binder_transaction_received: transaction=1570474
73365<...>-8 ( 8) [001] d..2 82316.441942: 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
73366<...>-46 ( 46) [000] d..2 82316.441944: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
73367          <idle>-0     (-----) [001] dn.1 82316.441957: cpu_idle: state=0 cpu_id=1
73368          <idle>-0     (-----) [001] .n.1 82316.441961: cpu_idle: state=4294967295 cpu_id=1
73369<...>-46 ( 46) [000] d..3 82316.441961: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
73370          <idle>-0     (-----) [001] d..2 82316.441978: 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
73371<...>-46 ( 46) [000] d..2 82316.441986: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73372          <idle>-0     (-----) [000] d..1 82316.442000: cpu_idle: state=0 cpu_id=0
73373<...>-8 ( 8) [001] d..2 82316.442007: 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
73374          <idle>-0     (-----) [001] d..1 82316.442019: cpu_idle: state=0 cpu_id=1
73375<...>-13083 ( 8858) [002] d.h3 82316.442022: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73376          <idle>-0     (-----) [005] dnh2 82316.442047: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73377          <idle>-0     (-----) [005] .n.1 82316.442052: cpu_idle: state=4294967295 cpu_id=5
73378          <idle>-0     (-----) [005] d..2 82316.442060: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73379<...>-13083 ( 8858) [002] .... 82316.442076: binder_transaction: transaction=1570475 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
73380<...>-13083 ( 8858) [002] .... 82316.442081: binder_transaction_alloc_buf: transaction=1570475 data_size=52 offsets_size=8
73381<...>-5340 ( 788) [005] d..1 82316.442110: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73382          <idle>-0     (-----) [000] dnh2 82316.442136: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73383<...>-13083 ( 8858) [002] d..2 82316.442141: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
73384          <idle>-0     (-----) [000] .n.1 82316.442145: cpu_idle: state=4294967295 cpu_id=0
73385    RenderThread-9436  ( 9105) [002] .... 82316.442151: binder_transaction_received: transaction=1570475
73386          <idle>-0     (-----) [000] d..2 82316.442175: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
73387<...>-5340 ( 788) [005] ...1 82316.442204: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
73388<...>-5340 ( 788) [005] ...1 82316.442208: tracing_mark_write: E|788
73389<...>-5340 ( 788) [005] .... 82316.442224: binder_transaction: transaction=1570476 dest_node=1570471 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
73390<...>-5340 ( 788) [005] .... 82316.442227: binder_transaction_alloc_buf: transaction=1570476 data_size=60 offsets_size=0
73391<...>-5340 ( 788) [005] d..4 82316.442231: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
73392 neuralnetworks@-13088 (  788) [000] d..2 82316.442235: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73393<...>-5340 ( 788) [005] d..5 82316.442243: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
73394          <idle>-0     (-----) [004] .n.1 82316.442249: cpu_idle: state=4294967295 cpu_id=4
73395          <idle>-0     (-----) [000] d..1 82316.442250: cpu_idle: state=0 cpu_id=0
73396          <idle>-0     (-----) [004] d..2 82316.442258: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
73397           <...>-27571 (-----) [004] .... 82316.442262: binder_transaction_received: transaction=1570476
73398<...>-5340 ( 788) [005] ...1 82316.442266: tracing_mark_write: E|788
73399<...>-5340 ( 788) [005] .... 82316.442272: binder_transaction: transaction=1570477 dest_node=0 dest_proc=27550 dest_thread=27686 reply=1 flags=0x0 code=0x0
73400<...>-5340 ( 788) [005] .... 82316.442274: binder_transaction_alloc_buf: transaction=1570477 data_size=8 offsets_size=0
73401<...>-5340 ( 788) [005] d..2 82316.442276: sched_waking: comm=id.nn.benchmark pid=27686 prio=110 target_cpu=005
73402           <...>-27571 (-----) [004] ...1 82316.442281: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
73403<...>-5340 ( 788) [005] d..3 82316.442283: sched_wakeup: comm=id.nn.benchmark pid=27686 prio=110 target_cpu=005
73404<...>-5340 ( 788) [005] .... 82316.442285: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
73405           <...>-27571 (-----) [004] ...1 82316.442288: tracing_mark_write: E|27550
73406           <...>-27571 (-----) [004] d..2 82316.442316: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73407          <idle>-0     (-----) [004] d..1 82316.442324: cpu_idle: state=0 cpu_id=4
73408<...>-5340 ( 788) [005] d..2 82316.442327: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27686 next_prio=110
73409           <...>-27686 (-----) [005] .... 82316.442336: binder_transaction_received: transaction=1570477
73410           <...>-27686 (-----) [005] ...1 82316.442373: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
73411           <...>-27686 (-----) [005] ...1 82316.442379: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
73412           <...>-27686 (-----) [005] ...1 82316.442405: tracing_mark_write: E|27550
73413           <...>-27686 (-----) [005] ...1 82316.442409: tracing_mark_write: E|27550
73414           <...>-27686 (-----) [005] ...1 82316.442412: tracing_mark_write: E|27550
73415           <...>-27686 (-----) [005] ...1 82316.442603: tracing_mark_write: E|27550
73416           <...>-27686 (-----) [005] d..1 82316.442615: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73417           <...>-27686 (-----) [005] d..2 82316.442630: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73418          <idle>-0     (-----) [004] .n.1 82316.442635: cpu_idle: state=4294967295 cpu_id=4
73419          <idle>-0     (-----) [004] d..2 82316.442642: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
73420           <...>-27550 (-----) [004] d..2 82316.442661: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73421          <idle>-0     (-----) [004] d..1 82316.442670: cpu_idle: state=0 cpu_id=4
73422           <...>-27686 (-----) [005] d..1 82316.442720: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73423           <...>-27686 (-----) [005] d..2 82316.442729: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73424          <idle>-0     (-----) [004] .n.1 82316.442734: cpu_idle: state=4294967295 cpu_id=4
73425          <idle>-0     (-----) [004] d..2 82316.442742: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
73426           <...>-27686 (-----) [005] d..2 82316.442768: sched_switch: prev_comm=id.nn.benchmark prev_pid=27686 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
73427           <...>-27550 (-----) [004] ...1 82316.442776: tracing_mark_write: E|27550
73428           <...>-27550 (-----) [004] ...1 82316.442780: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
73429           <...>-27550 (-----) [004] ...1 82316.442786: tracing_mark_write: E|27550
73430          <idle>-0     (-----) [005] d..1 82316.442789: cpu_idle: state=0 cpu_id=5
73431           <...>-27550 (-----) [004] ...1 82316.442789: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
73432           <...>-27550 (-----) [004] ...1 82316.442794: tracing_mark_write: E|27550
73433           <...>-27550 (-----) [004] ...1 82316.442798: tracing_mark_write: E|27550
73434           <...>-27550 (-----) [004] ...1 82316.442910: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
73435           <...>-27550 (-----) [004] ...1 82316.442967: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
73436           <...>-27550 (-----) [004] ...1 82316.442972: tracing_mark_write: E|27550
73437           <...>-27550 (-----) [004] ...1 82316.442976: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
73438           <...>-27550 (-----) [004] ...1 82316.442981: tracing_mark_write: E|27550
73439           <...>-27550 (-----) [004] ...1 82316.442985: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
73440           <...>-27550 (-----) [004] ...1 82316.442989: tracing_mark_write: E|27550
73441           <...>-27550 (-----) [004] ...1 82316.442992: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
73442          <idle>-0     (-----) [005] .n.1 82316.443087: cpu_idle: state=4294967295 cpu_id=5
73443           <...>-27550 (-----) [004] ...1 82316.443090: tracing_mark_write: E|27550
73444           <...>-27550 (-----) [004] ...1 82316.443094: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
73445          <idle>-0     (-----) [005] d..2 82316.443096: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27687 next_prio=110
73446           <...>-27550 (-----) [004] d..2 82316.443110: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73447          <idle>-0     (-----) [004] d..1 82316.443125: cpu_idle: state=0 cpu_id=4
73448           <...>-27687 (-----) [005] ...1 82316.443157: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
73449           <...>-27687 (-----) [005] ...1 82316.443172: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
73450           <...>-27687 (-----) [005] ...1 82316.443176: tracing_mark_write: E|27550
73451           <...>-27687 (-----) [005] .... 82316.443197: binder_transaction: transaction=1570478 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
73452           <...>-27687 (-----) [005] .... 82316.443201: binder_transaction_alloc_buf: transaction=1570478 data_size=48 offsets_size=0
73453           <...>-27687 (-----) [005] ...2 82316.443204: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
73454           <...>-27687 (-----) [005] d..4 82316.443207: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
73455           <...>-27687 (-----) [005] dn.5 82316.443217: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
73456           <...>-27687 (-----) [005] d..2 82316.443224: sched_switch: prev_comm=id.nn.benchmark prev_pid=27687 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
73457<...>-770 ( 770) [005] .... 82316.443234: binder_transaction_received: transaction=1570478
73458    RenderThread-9436  ( 9105) [002] d..2 82316.443256: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
73459<...>-770 ( 770) [005] ...1 82316.443259: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
73460          <idle>-0     (-----) [002] d..1 82316.443273: cpu_idle: state=0 cpu_id=2
73461          <idle>-0     (-----) [002] d.h2 82316.443334: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
73462<...>-770 ( 770) [005] d..2 82316.443339: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
73463          <idle>-0     (-----) [002] d.h3 82316.443346: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
73464          <idle>-0     (-----) [002] dnh3 82316.443351: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
73465          <idle>-0     (-----) [002] .n.1 82316.443361: cpu_idle: state=4294967295 cpu_id=2
73466          <idle>-0     (-----) [002] d..2 82316.443374: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
73467          <idle>-0     (-----) [000] d.h3 82316.443375: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
73468<...>-770 ( 770) [005] ...1 82316.443380: tracing_mark_write: E|770
73469<...>-770 ( 770) [005] .... 82316.443388: binder_transaction: transaction=1570479 dest_node=0 dest_proc=27550 dest_thread=27687 reply=1 flags=0x0 code=0x0
73470<...>-770 ( 770) [005] .... 82316.443390: binder_transaction_alloc_buf: transaction=1570479 data_size=168 offsets_size=32
73471          <idle>-0     (-----) [000] dnh4 82316.443394: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
73472<...>-770 ( 770) [005] .... 82316.443397: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
73473          <idle>-0     (-----) [000] dnh2 82316.443416: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
73474<...>-770 ( 770) [005] d..2 82316.443433: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27687 next_prio=110
73475          <idle>-0     (-----) [000] .n.1 82316.443434: cpu_idle: state=4294967295 cpu_id=0
73476           <...>-27687 (-----) [005] .... 82316.443443: binder_transaction_received: transaction=1570479
73477          <idle>-0     (-----) [000] d..2 82316.443446: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
73478 kgsl_worker_thr-258   (  258) [000] d..2 82316.443499: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
73479           <...>-27687 (-----) [005] ...1 82316.443518: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
73480           <...>-27687 (-----) [005] ...1 82316.443524: tracing_mark_write: E|27550
73481           <...>-27687 (-----) [005] .... 82316.443539: binder_transaction: transaction=1570480 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
73482 kgsl_worker_thr-258   (  258) [000] d..3 82316.443541: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73483           <...>-27687 (-----) [005] .... 82316.443542: binder_transaction_alloc_buf: transaction=1570480 data_size=48 offsets_size=0
73484           <...>-27687 (-----) [005] ...2 82316.443545: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
73485           <...>-27687 (-----) [005] d..4 82316.443547: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
73486           <...>-27687 (-----) [005] dn.5 82316.443557: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
73487 kgsl_worker_thr-258   (  258) [000] d..2 82316.443560: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
73488           <...>-27687 (-----) [005] d..2 82316.443564: sched_switch: prev_comm=id.nn.benchmark prev_pid=27687 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
73489<...>-770 ( 770) [005] .... 82316.443571: binder_transaction_received: transaction=1570480
73490<...>-770 ( 770) [005] ...1 82316.443589: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
73491    RenderThread-9436  ( 9105) [002] .... 82316.443589: binder_transaction: transaction=1570481 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
73492    RenderThread-9436  ( 9105) [002] .... 82316.443595: binder_transaction_alloc_buf: transaction=1570481 data_size=192 offsets_size=8
73493    RenderThread-9436  ( 9105) [002] d..4 82316.443607: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
73494    RenderThread-9436  ( 9105) [002] dn.5 82316.443624: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
73495    RenderThread-9436  ( 9105) [002] d..2 82316.443635: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
73496<...>-13083 ( 8858) [002] .... 82316.443644: binder_transaction_received: transaction=1570481
73497<...>-770 ( 770) [005] ...1 82316.443670: tracing_mark_write: E|770
73498<...>-770 ( 770) [005] .... 82316.443678: binder_transaction: transaction=1570482 dest_node=0 dest_proc=27550 dest_thread=27687 reply=1 flags=0x0 code=0x0
73499<...>-770 ( 770) [005] .... 82316.443681: binder_transaction_alloc_buf: transaction=1570482 data_size=168 offsets_size=32
73500<...>-770 ( 770) [005] .... 82316.443686: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
73501<...>-770 ( 770) [005] d..2 82316.443721: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27687 next_prio=110
73502           <...>-27687 (-----) [005] .... 82316.443731: binder_transaction_received: transaction=1570482
73503  kworker/u16:13-1147  ( 1147) [000] d..2 82316.443760: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
73504<...>-13083 ( 8858) [002] .... 82316.443812: binder_transaction: transaction=1570483 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
73505<...>-13083 ( 8858) [002] .... 82316.443818: binder_transaction_alloc_buf: transaction=1570483 data_size=68 offsets_size=0
73506<...>-13083 ( 8858) [002] d..2 82316.443865: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
73507    RenderThread-9436  ( 9105) [002] .... 82316.443876: binder_transaction_received: transaction=1570483
73508<...>-581 ( 571) [000] d..2 82316.443895: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73509          <idle>-0     (-----) [000] d..1 82316.443914: cpu_idle: state=0 cpu_id=0
73510    RenderThread-9436  ( 9105) [002] d..2 82316.443981: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73511          <idle>-0     (-----) [002] d..1 82316.444001: cpu_idle: state=0 cpu_id=2
73512           <...>-27687 (-----) [005] ...1 82316.444005: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
73513           <...>-27687 (-----) [005] ...1 82316.444015: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
73514           <...>-27687 (-----) [005] ...1 82316.444019: tracing_mark_write: E|27550
73515           <...>-27687 (-----) [005] .... 82316.444083: binder_transaction: transaction=1570484 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
73516           <...>-27687 (-----) [005] .... 82316.444086: binder_transaction_alloc_buf: transaction=1570484 data_size=556 offsets_size=104
73517           <...>-27687 (-----) [005] ...2 82316.444100: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
73518           <...>-27687 (-----) [005] d..4 82316.444102: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73519           <...>-27687 (-----) [005] dn.5 82316.444114: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73520           <...>-27687 (-----) [005] d..2 82316.444121: sched_switch: prev_comm=id.nn.benchmark prev_pid=27687 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73521<...>-5340 ( 788) [005] .... 82316.444130: binder_transaction_received: transaction=1570484
73522<...>-5340 ( 788) [005] ...1 82316.444178: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
73523<...>-5340 ( 788) [005] d..2 82316.444226: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73524<...>-5340 ( 788) [005] d..2 82316.444250: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27687 next_prio=110
73525          <idle>-0     (-----) [000] dnh2 82316.444257: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73526          <idle>-0     (-----) [000] .n.1 82316.444264: cpu_idle: state=4294967295 cpu_id=0
73527           <...>-27687 (-----) [005] d..2 82316.444273: sched_switch: prev_comm=id.nn.benchmark prev_pid=27687 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73528          <idle>-0     (-----) [000] d..2 82316.444277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
73529          <idle>-0     (-----) [005] d..1 82316.444291: cpu_idle: state=0 cpu_id=5
73530<...>-87 ( 87) [000] d..2 82316.444325: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73531          <idle>-0     (-----) [002] d.h4 82316.444337: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73532          <idle>-0     (-----) [000] d..1 82316.444340: cpu_idle: state=0 cpu_id=0
73533          <idle>-0     (-----) [002] dnh5 82316.444358: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73534          <idle>-0     (-----) [002] .n.1 82316.444371: cpu_idle: state=4294967295 cpu_id=2
73535          <idle>-0     (-----) [002] d..2 82316.444385: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
73536<...>-86 ( 86) [002] d.h4 82316.444417: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73537          <idle>-0     (-----) [005] dnh2 82316.444440: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73538          <idle>-0     (-----) [005] .n.1 82316.444445: cpu_idle: state=4294967295 cpu_id=5
73539          <idle>-0     (-----) [005] d..2 82316.444453: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73540<...>-86 ( 86) [002] d..2 82316.444485: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73541          <idle>-0     (-----) [002] d..1 82316.444500: cpu_idle: state=0 cpu_id=2
73542<...>-5340 ( 788) [005] d..1 82316.444506: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73543          <idle>-0     (-----) [000] dnh2 82316.444532: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73544          <idle>-0     (-----) [000] .n.1 82316.444539: cpu_idle: state=4294967295 cpu_id=0
73545          <idle>-0     (-----) [000] d..2 82316.444551: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
73546 neuralnetworks@-13088 (  788) [000] d..2 82316.444603: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73547          <idle>-0     (-----) [000] d..1 82316.444618: cpu_idle: state=0 cpu_id=0
73548<...>-5340 ( 788) [005] d..2 82316.444652: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73549          <idle>-0     (-----) [000] dnh2 82316.444674: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73550<...>-5340 ( 788) [005] d..2 82316.444678: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73551          <idle>-0     (-----) [000] .n.1 82316.444682: cpu_idle: state=4294967295 cpu_id=0
73552          <idle>-0     (-----) [005] d..1 82316.444691: cpu_idle: state=0 cpu_id=5
73553          <idle>-0     (-----) [000] d..2 82316.444693: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
73554          <idle>-0     (-----) [002] d.h4 82316.444733: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73555<...>-87 ( 87) [000] d..2 82316.444735: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73556          <idle>-0     (-----) [002] dnh5 82316.444745: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73557          <idle>-0     (-----) [000] d..1 82316.444749: cpu_idle: state=0 cpu_id=0
73558          <idle>-0     (-----) [002] .n.1 82316.444755: cpu_idle: state=4294967295 cpu_id=2
73559          <idle>-0     (-----) [002] d..2 82316.444767: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
73560          <idle>-0     (-----) [003] d.h2 82316.444798: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
73561<...>-86 ( 86) [002] d..2 82316.444803: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73562          <idle>-0     (-----) [003] dnh3 82316.444813: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
73563          <idle>-0     (-----) [002] d..1 82316.444817: cpu_idle: state=0 cpu_id=2
73564          <idle>-0     (-----) [003] .n.1 82316.444821: cpu_idle: state=4294967295 cpu_id=3
73565          <idle>-0     (-----) [003] d..2 82316.444833: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
73566        DispSync-8879  ( 8858) [003] d..1 82316.444848: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
73567        DispSync-8879  ( 8858) [003] d..2 82316.444866: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
73568          <idle>-0     (-----) [002] .n.1 82316.444872: cpu_idle: state=4294967295 cpu_id=2
73569          <idle>-0     (-----) [002] d..2 82316.444883: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
73570        DispSync-8879  ( 8858) [003] d..2 82316.444897: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73571          <idle>-0     (-----) [003] d..1 82316.444908: cpu_idle: state=0 cpu_id=3
73572   sfEventThread-8882  ( 8858) [002] d..3 82316.444926: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
73573   sfEventThread-8882  ( 8858) [002] d..4 82316.444950: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
73574          <idle>-0     (-----) [003] .n.1 82316.444956: cpu_idle: state=4294967295 cpu_id=3
73575          <idle>-0     (-----) [003] d..2 82316.444965: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
73576   sfEventThread-8882  ( 8858) [002] d..2 82316.444988: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73577          <idle>-0     (-----) [002] d..1 82316.445005: cpu_idle: state=0 cpu_id=2
73578  surfaceflinger-8858  ( 8858) [003] d.s1 82316.445149: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
73579  surfaceflinger-8858  ( 8858) [003] d.s2 82316.445172: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
73580  surfaceflinger-8858  ( 8858) [003] d.s2 82316.445179: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73581  surfaceflinger-8858  ( 8858) [003] d.s3 82316.445194: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73582          <idle>-0     (-----) [000] .n.1 82316.445201: cpu_idle: state=4294967295 cpu_id=0
73583          <idle>-0     (-----) [000] d..2 82316.445216: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
73584  kworker/u16:13-1147  ( 1147) [000] d..2 82316.445295: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73585          <idle>-0     (-----) [000] d..1 82316.445309: cpu_idle: state=0 cpu_id=0
73586  surfaceflinger-8858  ( 8858) [003] d..1 82316.445418: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
73587  surfaceflinger-8858  ( 8858) [003] d..2 82316.445439: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
73588          <idle>-0     (-----) [002] .n.1 82316.445446: cpu_idle: state=4294967295 cpu_id=2
73589          <idle>-0     (-----) [002] d..2 82316.445458: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
73590   sfEventThread-8882  ( 8858) [002] d..2 82316.445498: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73591          <idle>-0     (-----) [002] d..1 82316.445511: cpu_idle: state=0 cpu_id=2
73592  surfaceflinger-8858  ( 8858) [003] ...1 82316.445644: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
73593  surfaceflinger-8858  ( 8858) [003] ...1 82316.445651: tracing_mark_write: E|8858
73594  surfaceflinger-8858  ( 8858) [003] .... 82316.445707: binder_transaction: transaction=1570487 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
73595  surfaceflinger-8858  ( 8858) [003] .... 82316.445712: binder_transaction_alloc_buf: transaction=1570487 data_size=540 offsets_size=96
73596  surfaceflinger-8858  ( 8858) [003] ...2 82316.445741: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
73597  surfaceflinger-8858  ( 8858) [003] d..4 82316.445750: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
73598  surfaceflinger-8858  ( 8858) [003] d..5 82316.445771: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
73599          <idle>-0     (-----) [001] .n.1 82316.445775: cpu_idle: state=4294967295 cpu_id=1
73600          <idle>-0     (-----) [001] d..2 82316.445787: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
73601  surfaceflinger-8858  ( 8858) [003] d..2 82316.445793: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
73602 [email protected]   (  619) [001] .... 82316.445798: binder_transaction_received: transaction=1570487
73603     rcu_preempt-7     (    7) [003] d..2 82316.445805: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
73604     rcu_preempt-7     (    7) [003] d..3 82316.445827: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
73605 [email protected]   (  619) [001] ...1 82316.445842: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
73606     rcu_preempt-7     (    7) [003] d..2 82316.445844: 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
73607         rcuop/4-45    (   45) [003] d..2 82316.445849: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
73608         rcuop/4-45    (   45) [003] d..3 82316.445866: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
73609         rcuop/4-45    (   45) [003] d..2 82316.445877: 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
73610 [email protected]   (  619) [001] ...1 82316.445955: tracing_mark_write: B|619|HWCSession::PresentDisplay::
73611         rcuop/5-53    (   53) [003] d..2 82316.445996: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73612          <idle>-0     (-----) [003] d..1 82316.446015: cpu_idle: state=0 cpu_id=3
73613 [email protected]   (  619) [001] ...1 82316.446142: tracing_mark_write: B|619|HWDeviceDRM::Commit::
73614 [email protected]   (  619) [001] ...1 82316.446155: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
73615          <idle>-0     (-----) [002] d.h4 82316.446376: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73616          <idle>-0     (-----) [005] dnh2 82316.446400: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73617          <idle>-0     (-----) [005] .n.1 82316.446405: cpu_idle: state=4294967295 cpu_id=5
73618          <idle>-0     (-----) [005] d..2 82316.446414: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73619          <idle>-0     (-----) [002] ...1 82316.446422: cpu_idle: state=4294967295 cpu_id=2
73620          <idle>-0     (-----) [002] d..1 82316.446428: cpu_idle: state=0 cpu_id=2
73621<...>-5340 ( 788) [005] d..1 82316.446467: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73622          <idle>-0     (-----) [000] dnh2 82316.446493: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73623          <idle>-0     (-----) [000] .n.1 82316.446501: cpu_idle: state=4294967295 cpu_id=0
73624          <idle>-0     (-----) [000] d..2 82316.446512: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
73625<...>-5340 ( 788) [005] ...1 82316.446564: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
73626<...>-5340 ( 788) [005] ...1 82316.446567: tracing_mark_write: E|788
73627 neuralnetworks@-13088 (  788) [000] d..2 82316.446579: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73628<...>-5340 ( 788) [005] .... 82316.446584: binder_transaction: transaction=1570488 dest_node=1570485 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
73629<...>-5340 ( 788) [005] .... 82316.446587: binder_transaction_alloc_buf: transaction=1570488 data_size=60 offsets_size=0
73630<...>-5340 ( 788) [005] d..4 82316.446590: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
73631          <idle>-0     (-----) [000] d..1 82316.446593: cpu_idle: state=0 cpu_id=0
73632<...>-5340 ( 788) [005] d..5 82316.446603: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
73633          <idle>-0     (-----) [004] .n.1 82316.446609: cpu_idle: state=4294967295 cpu_id=4
73634          <idle>-0     (-----) [004] d..2 82316.446618: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
73635           <...>-27571 (-----) [004] .... 82316.446624: binder_transaction_received: transaction=1570488
73636<...>-5340 ( 788) [005] ...1 82316.446627: tracing_mark_write: E|788
73637<...>-5340 ( 788) [005] .... 82316.446633: binder_transaction: transaction=1570489 dest_node=0 dest_proc=27550 dest_thread=27687 reply=1 flags=0x0 code=0x0
73638<...>-5340 ( 788) [005] .... 82316.446635: binder_transaction_alloc_buf: transaction=1570489 data_size=8 offsets_size=0
73639<...>-5340 ( 788) [005] d..2 82316.446637: sched_waking: comm=id.nn.benchmark pid=27687 prio=110 target_cpu=005
73640           <...>-27571 (-----) [004] ...1 82316.446642: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
73641<...>-5340 ( 788) [005] d..3 82316.446644: sched_wakeup: comm=id.nn.benchmark pid=27687 prio=110 target_cpu=005
73642<...>-5340 ( 788) [005] .... 82316.446646: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
73643           <...>-27571 (-----) [004] ...1 82316.446648: tracing_mark_write: E|27550
73644           <...>-27571 (-----) [004] d..2 82316.446677: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73645          <idle>-0     (-----) [004] d..1 82316.446685: cpu_idle: state=0 cpu_id=4
73646<...>-5340 ( 788) [005] d..2 82316.446687: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27687 next_prio=110
73647           <...>-27687 (-----) [005] .... 82316.446697: binder_transaction_received: transaction=1570489
73648           <...>-27687 (-----) [005] ...1 82316.446734: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
73649           <...>-27687 (-----) [005] ...1 82316.446740: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
73650           <...>-27687 (-----) [005] ...1 82316.446766: tracing_mark_write: E|27550
73651           <...>-27687 (-----) [005] ...1 82316.446770: tracing_mark_write: E|27550
73652           <...>-27687 (-----) [005] ...1 82316.446773: tracing_mark_write: E|27550
73653 [email protected]   (  619) [001] d..2 82316.446851: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
73654 [email protected]   (  619) [001] d..3 82316.446907: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
73655          <idle>-0     (-----) [002] .n.1 82316.446911: cpu_idle: state=4294967295 cpu_id=2
73656          <idle>-0     (-----) [002] d..2 82316.446924: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
73657           <...>-27687 (-----) [005] ...1 82316.446963: tracing_mark_write: E|27550
73658           <...>-27687 (-----) [005] d..1 82316.446975: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73659           <...>-27687 (-----) [005] d..2 82316.446991: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73660          <idle>-0     (-----) [004] .n.1 82316.446996: cpu_idle: state=4294967295 cpu_id=4
73661          <idle>-0     (-----) [004] d..2 82316.447003: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
73662           <...>-27550 (-----) [004] d..2 82316.447023: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73663 [email protected]   (  619) [001] ...1 82316.447023: tracing_mark_write: E|619
73664 [email protected]   (  619) [001] ...1 82316.447030: tracing_mark_write: E|619
73665          <idle>-0     (-----) [004] d..1 82316.447032: cpu_idle: state=0 cpu_id=4
73666           <...>-27687 (-----) [005] d..1 82316.447079: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73667           <...>-27687 (-----) [005] d..2 82316.447089: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73668          <idle>-0     (-----) [004] .n.1 82316.447094: cpu_idle: state=4294967295 cpu_id=4
73669 [email protected]   (  619) [001] ...1 82316.447098: tracing_mark_write: E|619
73670          <idle>-0     (-----) [004] d..2 82316.447101: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
73671           <...>-27687 (-----) [005] d..2 82316.447128: sched_switch: prev_comm=id.nn.benchmark prev_pid=27687 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
73672           <...>-27550 (-----) [004] ...1 82316.447136: tracing_mark_write: E|27550
73673           <...>-27550 (-----) [004] ...1 82316.447141: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
73674           <...>-27550 (-----) [004] ...1 82316.447146: tracing_mark_write: E|27550
73675          <idle>-0     (-----) [005] d..1 82316.447148: cpu_idle: state=0 cpu_id=5
73676 [email protected]   (  619) [001] ...1 82316.447150: tracing_mark_write: E|619
73677           <...>-27550 (-----) [004] ...1 82316.447150: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
73678           <...>-27550 (-----) [004] ...1 82316.447154: tracing_mark_write: E|27550
73679           <...>-27550 (-----) [004] ...1 82316.447158: tracing_mark_write: E|27550
73680 [email protected]   (  619) [001] .... 82316.447166: binder_transaction: transaction=1570490 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
73681 [email protected]   (  619) [001] .... 82316.447170: binder_transaction_alloc_buf: transaction=1570490 data_size=576 offsets_size=112
73682 [email protected]   (  619) [001] d..2 82316.447193: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
73683 [email protected]   (  619) [001] d..3 82316.447212: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
73684 [email protected]   (  619) [001] .... 82316.447217: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
73685          <idle>-0     (-----) [003] .n.1 82316.447219: cpu_idle: state=4294967295 cpu_id=3
73686          <idle>-0     (-----) [003] d..2 82316.447231: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
73687  surfaceflinger-8858  ( 8858) [003] .... 82316.447240: binder_transaction_received: transaction=1570490
73688           <...>-27550 (-----) [004] ...1 82316.447271: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
73689 [email protected]   (  619) [001] d..2 82316.447309: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73690          <idle>-0     (-----) [001] d..1 82316.447324: cpu_idle: state=0 cpu_id=1
73691           <...>-27550 (-----) [004] ...1 82316.447328: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
73692           <...>-27550 (-----) [004] ...1 82316.447333: tracing_mark_write: E|27550
73693           <...>-27550 (-----) [004] ...1 82316.447337: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
73694           <...>-27550 (-----) [004] ...1 82316.447342: tracing_mark_write: E|27550
73695           <...>-27550 (-----) [004] ...1 82316.447346: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
73696           <...>-27550 (-----) [004] ...1 82316.447350: tracing_mark_write: E|27550
73697           <...>-27550 (-----) [004] ...1 82316.447353: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
73698          <idle>-0     (-----) [005] .n.1 82316.447443: cpu_idle: state=4294967295 cpu_id=5
73699           <...>-27550 (-----) [004] ...1 82316.447444: tracing_mark_write: E|27550
73700           <...>-27550 (-----) [004] ...1 82316.447448: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
73701          <idle>-0     (-----) [005] d..2 82316.447452: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27688 next_prio=110
73702           <...>-27550 (-----) [004] d..2 82316.447465: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73703          <idle>-0     (-----) [004] d..1 82316.447479: cpu_idle: state=0 cpu_id=4
73704           <...>-27688 (-----) [005] ...1 82316.447512: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
73705           <...>-27688 (-----) [005] ...1 82316.447526: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
73706           <...>-27688 (-----) [005] ...1 82316.447529: tracing_mark_write: E|27550
73707           <...>-27688 (-----) [005] .... 82316.447550: binder_transaction: transaction=1570491 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
73708           <...>-27688 (-----) [005] .... 82316.447554: binder_transaction_alloc_buf: transaction=1570491 data_size=48 offsets_size=0
73709           <...>-27688 (-----) [005] ...2 82316.447557: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
73710           <...>-27688 (-----) [005] d..4 82316.447560: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
73711           <...>-27688 (-----) [005] dn.5 82316.447570: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
73712           <...>-27688 (-----) [005] d..2 82316.447577: sched_switch: prev_comm=id.nn.benchmark prev_pid=27688 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
73713<...>-770 ( 770) [005] .... 82316.447587: binder_transaction_received: transaction=1570491
73714<...>-770 ( 770) [005] ...1 82316.447609: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
73715 crtc_commit:111-321   (  321) [002] d..2 82316.447654: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
73716          <idle>-0     (-----) [002] d..1 82316.447671: cpu_idle: state=0 cpu_id=2
73717<...>-770 ( 770) [005] d..2 82316.447687: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
73718  surfaceflinger-8858  ( 8858) [003] d..2 82316.447692: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73719          <idle>-0     (-----) [003] d..1 82316.447710: cpu_idle: state=0 cpu_id=3
73720          <idle>-0     (-----) [003] dnh2 82316.447731: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
73721          <idle>-0     (-----) [003] .n.1 82316.447738: cpu_idle: state=4294967295 cpu_id=3
73722<...>-770 ( 770) [005] ...1 82316.447741: tracing_mark_write: E|770
73723<...>-770 ( 770) [005] .... 82316.447749: binder_transaction: transaction=1570492 dest_node=0 dest_proc=27550 dest_thread=27688 reply=1 flags=0x0 code=0x0
73724          <idle>-0     (-----) [003] d..2 82316.447751: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
73725<...>-770 ( 770) [005] .... 82316.447752: binder_transaction_alloc_buf: transaction=1570492 data_size=168 offsets_size=32
73726<...>-770 ( 770) [005] .... 82316.447759: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
73727<...>-770 ( 770) [005] d..2 82316.447797: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27688 next_prio=110
73728           <...>-27688 (-----) [005] .... 82316.447808: binder_transaction_received: transaction=1570492
73729<...>-581 ( 571) [003] d..2 82316.447857: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73730          <idle>-0     (-----) [003] d..1 82316.447873: cpu_idle: state=0 cpu_id=3
73731           <...>-27688 (-----) [005] ...1 82316.447879: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
73732           <...>-27688 (-----) [005] ...1 82316.447884: tracing_mark_write: E|27550
73733           <...>-27688 (-----) [005] .... 82316.447898: binder_transaction: transaction=1570493 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
73734           <...>-27688 (-----) [005] .... 82316.447901: binder_transaction_alloc_buf: transaction=1570493 data_size=48 offsets_size=0
73735           <...>-27688 (-----) [005] ...2 82316.447903: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
73736           <...>-27688 (-----) [005] d..4 82316.447906: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
73737           <...>-27688 (-----) [005] dn.5 82316.447917: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
73738           <...>-27688 (-----) [005] d..2 82316.447924: sched_switch: prev_comm=id.nn.benchmark prev_pid=27688 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
73739<...>-770 ( 770) [005] .... 82316.447932: binder_transaction_received: transaction=1570493
73740<...>-770 ( 770) [005] ...1 82316.447948: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
73741<...>-770 ( 770) [005] d..2 82316.448006: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
73742          <idle>-0     (-----) [003] dnh2 82316.448032: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
73743          <idle>-0     (-----) [003] .n.1 82316.448039: cpu_idle: state=4294967295 cpu_id=3
73744<...>-770 ( 770) [005] ...1 82316.448039: tracing_mark_write: E|770
73745<...>-770 ( 770) [005] .... 82316.448047: binder_transaction: transaction=1570494 dest_node=0 dest_proc=27550 dest_thread=27688 reply=1 flags=0x0 code=0x0
73746<...>-770 ( 770) [005] .... 82316.448050: binder_transaction_alloc_buf: transaction=1570494 data_size=168 offsets_size=32
73747          <idle>-0     (-----) [003] d..2 82316.448052: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
73748<...>-770 ( 770) [005] .... 82316.448056: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
73749          <idle>-0     (-----) [000] ...1 82316.448068: cpu_idle: state=4294967295 cpu_id=0
73750          <idle>-0     (-----) [000] d..1 82316.448073: cpu_idle: state=0 cpu_id=0
73751<...>-770 ( 770) [005] d..2 82316.448090: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27688 next_prio=110
73752           <...>-27688 (-----) [005] .... 82316.448100: binder_transaction_received: transaction=1570494
73753<...>-581 ( 571) [003] d..2 82316.448112: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73754          <idle>-0     (-----) [003] d..1 82316.448126: cpu_idle: state=0 cpu_id=3
73755           <...>-27688 (-----) [005] ...1 82316.448381: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
73756           <...>-27688 (-----) [005] ...1 82316.448392: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
73757           <...>-27688 (-----) [005] ...1 82316.448396: tracing_mark_write: E|27550
73758          <idle>-0     (-----) [001] d.s2 82316.448473: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
73759           <...>-27688 (-----) [005] d.s2 82316.448476: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73760          <idle>-0     (-----) [001] dns3 82316.448493: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
73761          <idle>-0     (-----) [000] dnh2 82316.448503: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73762          <idle>-0     (-----) [000] .n.1 82316.448509: cpu_idle: state=4294967295 cpu_id=0
73763          <idle>-0     (-----) [001] .n.1 82316.448511: cpu_idle: state=4294967295 cpu_id=1
73764           <...>-27688 (-----) [005] .... 82316.448519: binder_transaction: transaction=1570495 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
73765          <idle>-0     (-----) [001] d..2 82316.448522: 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
73766           <...>-27688 (-----) [005] .... 82316.448523: binder_transaction_alloc_buf: transaction=1570495 data_size=556 offsets_size=104
73767          <idle>-0     (-----) [000] d..2 82316.448523: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
73768           <...>-27688 (-----) [005] ...2 82316.448537: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
73769           <...>-27688 (-----) [005] d..4 82316.448539: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73770           <...>-27688 (-----) [005] dn.5 82316.448547: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73771           <...>-27688 (-----) [005] d..2 82316.448560: sched_switch: prev_comm=id.nn.benchmark prev_pid=27688 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73772<...>-8 ( 8) [001] d..2 82316.448560: 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
73773          <idle>-0     (-----) [001] d..1 82316.448574: cpu_idle: state=0 cpu_id=1
73774<...>-5340 ( 788) [005] .... 82316.448575: binder_transaction_received: transaction=1570495
73775<...>-5340 ( 788) [005] ...1 82316.448625: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
73776<...>-5340 ( 788) [005] d..2 82316.448670: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73777<...>-5340 ( 788) [005] d..2 82316.448694: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27688 next_prio=110
73778  kworker/u16:13-1147  ( 1147) [000] d.h2 82316.448717: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73779           <...>-27688 (-----) [005] d..2 82316.448718: sched_switch: prev_comm=id.nn.benchmark prev_pid=27688 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73780          <idle>-0     (-----) [005] d..1 82316.448735: cpu_idle: state=0 cpu_id=5
73781  kworker/u16:13-1147  ( 1147) [000] d..2 82316.448816: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
73782<...>-87 ( 87) [000] d..2 82316.448862: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73783          <idle>-0     (-----) [001] d.s3 82316.448862: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73784          <idle>-0     (-----) [002] d.h4 82316.448871: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73785          <idle>-0     (-----) [001] d.s4 82316.448876: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
73786          <idle>-0     (-----) [000] d..1 82316.448880: cpu_idle: state=0 cpu_id=0
73787          <idle>-0     (-----) [001] d.s4 82316.448885: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
73788          <idle>-0     (-----) [000] .n.1 82316.448890: cpu_idle: state=4294967295 cpu_id=0
73789          <idle>-0     (-----) [002] dnh5 82316.448893: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73790          <idle>-0     (-----) [001] ...1 82316.448896: cpu_idle: state=4294967295 cpu_id=1
73791          <idle>-0     (-----) [001] d..1 82316.448903: cpu_idle: state=0 cpu_id=1
73792          <idle>-0     (-----) [000] d..2 82316.448904: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
73793          <idle>-0     (-----) [002] .n.1 82316.448905: cpu_idle: state=4294967295 cpu_id=2
73794          <idle>-0     (-----) [002] d..2 82316.448920: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
73795<...>-86 ( 86) [002] d.h4 82316.448949: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73796          <idle>-0     (-----) [005] dnh2 82316.448971: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73797          <idle>-0     (-----) [005] .n.1 82316.448976: cpu_idle: state=4294967295 cpu_id=5
73798          <idle>-0     (-----) [005] d..2 82316.448984: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73799  kworker/u16:13-1147  ( 1147) [000] .... 82316.449023: clk_set_rate: l3_cluster0_vote_clk 403200000
73800<...>-86 ( 86) [002] d..2 82316.449032: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73801<...>-5340 ( 788) [005] d..1 82316.449037: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
73802          <idle>-0     (-----) [002] d..1 82316.449048: cpu_idle: state=0 cpu_id=2
73803  kworker/u16:13-1147  ( 1147) [000] d..2 82316.449058: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73804          <idle>-0     (-----) [002] dnh2 82316.449070: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
73805          <idle>-0     (-----) [000] d..1 82316.449074: cpu_idle: state=0 cpu_id=0
73806          <idle>-0     (-----) [002] .n.1 82316.449078: cpu_idle: state=4294967295 cpu_id=2
73807          <idle>-0     (-----) [002] d..2 82316.449090: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
73808 neuralnetworks@-13088 (  788) [002] d..2 82316.449149: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73809          <idle>-0     (-----) [002] d..1 82316.449165: cpu_idle: state=0 cpu_id=2
73810<...>-5340 ( 788) [005] d..2 82316.449190: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73811          <idle>-0     (-----) [000] dnh2 82316.449215: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73812<...>-5340 ( 788) [005] d..2 82316.449217: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73813          <idle>-0     (-----) [000] .n.1 82316.449223: cpu_idle: state=4294967295 cpu_id=0
73814          <idle>-0     (-----) [005] d..1 82316.449231: cpu_idle: state=0 cpu_id=5
73815          <idle>-0     (-----) [000] d..2 82316.449234: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
73816<...>-87 ( 87) [000] d..2 82316.449275: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73817          <idle>-0     (-----) [002] d.h4 82316.449277: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73818          <idle>-0     (-----) [000] d..1 82316.449290: cpu_idle: state=0 cpu_id=0
73819          <idle>-0     (-----) [002] dnh5 82316.449290: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
73820          <idle>-0     (-----) [002] .n.1 82316.449301: cpu_idle: state=4294967295 cpu_id=2
73821          <idle>-0     (-----) [002] d..2 82316.449314: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
73822<...>-86 ( 86) [002] d..2 82316.449352: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73823          <idle>-0     (-----) [002] d..1 82316.449366: cpu_idle: state=0 cpu_id=2
73824          <idle>-0     (-----) [005] ...1 82316.449581: cpu_idle: state=4294967295 cpu_id=5
73825          <idle>-0     (-----) [005] d..1 82316.449585: cpu_idle: state=0 cpu_id=5
73826          <idle>-0     (-----) [000] ...1 82316.450742: cpu_idle: state=4294967295 cpu_id=0
73827          <idle>-0     (-----) [000] d..1 82316.450747: cpu_idle: state=0 cpu_id=0
73828          <idle>-0     (-----) [002] ...1 82316.450900: cpu_idle: state=4294967295 cpu_id=2
73829          <idle>-0     (-----) [002] d..1 82316.450905: cpu_idle: state=0 cpu_id=2
73830          <idle>-0     (-----) [002] d.h4 82316.450975: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73831          <idle>-0     (-----) [005] dnh2 82316.450997: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73832          <idle>-0     (-----) [005] .n.1 82316.451000: cpu_idle: state=4294967295 cpu_id=5
73833          <idle>-0     (-----) [005] d..2 82316.451008: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73834          <idle>-0     (-----) [002] ...1 82316.451017: cpu_idle: state=4294967295 cpu_id=2
73835          <idle>-0     (-----) [002] d..1 82316.451026: cpu_idle: state=0 cpu_id=2
73836<...>-5340 ( 788) [005] d..1 82316.451058: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
73837          <idle>-0     (-----) [002] dnh2 82316.451086: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
73838          <idle>-0     (-----) [002] .n.1 82316.451093: cpu_idle: state=4294967295 cpu_id=2
73839          <idle>-0     (-----) [002] d..2 82316.451117: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
73840<...>-5340 ( 788) [005] ...1 82316.451153: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
73841<...>-5340 ( 788) [005] ...1 82316.451157: tracing_mark_write: E|788
73842<...>-5340 ( 788) [005] .... 82316.451173: binder_transaction: transaction=1570498 dest_node=1570496 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
73843 neuralnetworks@-13088 (  788) [002] d..2 82316.451175: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
73844<...>-5340 ( 788) [005] .... 82316.451176: binder_transaction_alloc_buf: transaction=1570498 data_size=60 offsets_size=0
73845<...>-5340 ( 788) [005] d..4 82316.451180: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
73846          <idle>-0     (-----) [002] d..1 82316.451190: cpu_idle: state=0 cpu_id=2
73847<...>-5340 ( 788) [005] d..5 82316.451192: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
73848          <idle>-0     (-----) [004] .n.1 82316.451198: cpu_idle: state=4294967295 cpu_id=4
73849          <idle>-0     (-----) [004] d..2 82316.451206: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
73850           <...>-27571 (-----) [004] .... 82316.451210: binder_transaction_received: transaction=1570498
73851<...>-5340 ( 788) [005] ...1 82316.451214: tracing_mark_write: E|788
73852<...>-5340 ( 788) [005] .... 82316.451220: binder_transaction: transaction=1570499 dest_node=0 dest_proc=27550 dest_thread=27688 reply=1 flags=0x0 code=0x0
73853<...>-5340 ( 788) [005] .... 82316.451222: binder_transaction_alloc_buf: transaction=1570499 data_size=8 offsets_size=0
73854<...>-5340 ( 788) [005] d..2 82316.451224: sched_waking: comm=id.nn.benchmark pid=27688 prio=110 target_cpu=005
73855           <...>-27571 (-----) [004] ...1 82316.451229: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
73856<...>-5340 ( 788) [005] d..3 82316.451231: sched_wakeup: comm=id.nn.benchmark pid=27688 prio=110 target_cpu=005
73857<...>-5340 ( 788) [005] .... 82316.451233: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
73858           <...>-27571 (-----) [004] ...1 82316.451235: tracing_mark_write: E|27550
73859           <...>-27571 (-----) [004] d..2 82316.451263: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73860          <idle>-0     (-----) [004] d..1 82316.451271: cpu_idle: state=0 cpu_id=4
73861<...>-5340 ( 788) [005] d..2 82316.451274: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27688 next_prio=110
73862           <...>-27688 (-----) [005] .... 82316.451284: binder_transaction_received: transaction=1570499
73863           <...>-27688 (-----) [005] ...1 82316.451319: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
73864           <...>-27688 (-----) [005] ...1 82316.451326: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
73865           <...>-27688 (-----) [005] ...1 82316.451352: tracing_mark_write: E|27550
73866           <...>-27688 (-----) [005] ...1 82316.451355: tracing_mark_write: E|27550
73867           <...>-27688 (-----) [005] ...1 82316.451359: tracing_mark_write: E|27550
73868           <...>-27688 (-----) [005] ...1 82316.451549: tracing_mark_write: E|27550
73869           <...>-27688 (-----) [005] d..1 82316.451563: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73870           <...>-27688 (-----) [005] d..2 82316.451579: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73871          <idle>-0     (-----) [004] .n.1 82316.451585: cpu_idle: state=4294967295 cpu_id=4
73872          <idle>-0     (-----) [004] d..2 82316.451591: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
73873           <...>-27550 (-----) [004] d..2 82316.451610: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73874          <idle>-0     (-----) [004] d..1 82316.451620: cpu_idle: state=0 cpu_id=4
73875           <...>-27688 (-----) [005] d..1 82316.451667: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73876           <...>-27688 (-----) [005] d..2 82316.451677: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
73877          <idle>-0     (-----) [004] .n.1 82316.451682: cpu_idle: state=4294967295 cpu_id=4
73878          <idle>-0     (-----) [004] d..2 82316.451689: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
73879           <...>-27688 (-----) [005] d..2 82316.451715: sched_switch: prev_comm=id.nn.benchmark prev_pid=27688 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
73880           <...>-27550 (-----) [004] ...1 82316.451723: tracing_mark_write: E|27550
73881           <...>-27550 (-----) [004] ...1 82316.451727: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
73882           <...>-27550 (-----) [004] ...1 82316.451733: tracing_mark_write: E|27550
73883          <idle>-0     (-----) [005] d..1 82316.451736: cpu_idle: state=0 cpu_id=5
73884           <...>-27550 (-----) [004] ...1 82316.451736: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
73885           <...>-27550 (-----) [004] ...1 82316.451741: tracing_mark_write: E|27550
73886           <...>-27550 (-----) [004] ...1 82316.451745: tracing_mark_write: E|27550
73887          <idle>-0     (-----) [003] d.s2 82316.451807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
73888           <...>-27550 (-----) [004] d.H2 82316.451857: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
73889          <idle>-0     (-----) [003] dns3 82316.451859: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
73890          <idle>-0     (-----) [003] .n.1 82316.451881: cpu_idle: state=4294967295 cpu_id=3
73891          <idle>-0     (-----) [001] dnh2 82316.451883: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
73892          <idle>-0     (-----) [001] .n.1 82316.451889: cpu_idle: state=4294967295 cpu_id=1
73893          <idle>-0     (-----) [003] d..2 82316.451894: 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
73894          <idle>-0     (-----) [001] d..2 82316.451903: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
73895     rcu_preempt-7     (    7) [003] d..2 82316.451932: 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
73896         sugov:0-576   (  576) [001] .... 82316.451942: clk_set_rate: pwrcl_clk 825600000
73897          <idle>-0     (-----) [003] d..1 82316.451945: cpu_idle: state=0 cpu_id=3
73898           <...>-27550 (-----) [004] ...1 82316.451966: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
73899         sugov:0-576   (  576) [001] .... 82316.451966: clk_set_rate: cpu3_pwrcl_clk 748800000
73900         sugov:0-576   (  576) [001] .... 82316.451977: clk_set_rate: cpu2_pwrcl_clk 748800000
73901         sugov:0-576   (  576) [001] .... 82316.451984: clk_set_rate: cpu1_pwrcl_clk 748800000
73902         sugov:0-576   (  576) [001] .... 82316.451992: clk_set_rate: cpu0_pwrcl_clk 825600000
73903         sugov:0-576   (  576) [001] .... 82316.452002: cpu_frequency: state=825600 cpu_id=0
73904           <...>-27550 (-----) [004] ...1 82316.452026: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
73905         sugov:0-576   (  576) [001] .... 82316.452031: cpu_frequency: state=825600 cpu_id=1
73906           <...>-27550 (-----) [004] ...1 82316.452031: tracing_mark_write: E|27550
73907           <...>-27550 (-----) [004] ...1 82316.452035: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
73908         sugov:0-576   (  576) [001] .... 82316.452035: cpu_frequency: state=825600 cpu_id=2
73909         sugov:0-576   (  576) [001] .... 82316.452040: cpu_frequency: state=825600 cpu_id=3
73910           <...>-27550 (-----) [004] ...1 82316.452040: tracing_mark_write: E|27550
73911           <...>-27550 (-----) [004] ...1 82316.452044: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
73912           <...>-27550 (-----) [004] ...1 82316.452047: tracing_mark_write: E|27550
73913           <...>-27550 (-----) [004] ...1 82316.452051: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
73914         sugov:0-576   (  576) [001] d..2 82316.452074: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
73915          <idle>-0     (-----) [001] d..1 82316.452084: cpu_idle: state=0 cpu_id=1
73916          <idle>-0     (-----) [005] .n.1 82316.452141: cpu_idle: state=4294967295 cpu_id=5
73917           <...>-27550 (-----) [004] ...1 82316.452141: tracing_mark_write: E|27550
73918           <...>-27550 (-----) [004] ...1 82316.452146: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
73919          <idle>-0     (-----) [005] d..2 82316.452151: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27689 next_prio=110
73920           <...>-27550 (-----) [004] d..2 82316.452164: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
73921          <idle>-0     (-----) [004] d..1 82316.452179: cpu_idle: state=0 cpu_id=4
73922           <...>-27689 (-----) [005] ...1 82316.452214: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
73923           <...>-27689 (-----) [005] ...1 82316.452229: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
73924           <...>-27689 (-----) [005] ...1 82316.452233: tracing_mark_write: E|27550
73925           <...>-27689 (-----) [005] .... 82316.452254: binder_transaction: transaction=1570500 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
73926           <...>-27689 (-----) [005] .... 82316.452258: binder_transaction_alloc_buf: transaction=1570500 data_size=48 offsets_size=0
73927           <...>-27689 (-----) [005] ...2 82316.452261: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
73928           <...>-27689 (-----) [005] d..4 82316.452264: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
73929           <...>-27689 (-----) [005] dn.5 82316.452275: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
73930           <...>-27689 (-----) [005] d..2 82316.452282: sched_switch: prev_comm=id.nn.benchmark prev_pid=27689 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
73931<...>-770 ( 770) [005] .... 82316.452292: binder_transaction_received: transaction=1570500
73932<...>-770 ( 770) [005] ...1 82316.452316: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
73933<...>-770 ( 770) [005] d..2 82316.452392: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
73934          <idle>-0     (-----) [000] dnh2 82316.452435: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
73935          <idle>-0     (-----) [000] .n.1 82316.452440: cpu_idle: state=4294967295 cpu_id=0
73936<...>-770 ( 770) [005] ...1 82316.452447: tracing_mark_write: E|770
73937          <idle>-0     (-----) [000] d..2 82316.452454: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
73938<...>-770 ( 770) [005] .... 82316.452455: binder_transaction: transaction=1570501 dest_node=0 dest_proc=27550 dest_thread=27689 reply=1 flags=0x0 code=0x0
73939<...>-770 ( 770) [005] .... 82316.452458: binder_transaction_alloc_buf: transaction=1570501 data_size=168 offsets_size=32
73940<...>-770 ( 770) [005] .... 82316.452464: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
73941<...>-770 ( 770) [005] d..2 82316.452500: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27689 next_prio=110
73942           <...>-27689 (-----) [005] .... 82316.452512: binder_transaction_received: transaction=1570501
73943          <idle>-0     (-----) [002] ...1 82316.452533: cpu_idle: state=4294967295 cpu_id=2
73944          <idle>-0     (-----) [002] d..1 82316.452538: cpu_idle: state=0 cpu_id=2
73945<...>-581 ( 571) [000] d..2 82316.452545: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73946          <idle>-0     (-----) [000] d..1 82316.452561: cpu_idle: state=0 cpu_id=0
73947           <...>-27689 (-----) [005] ...1 82316.452582: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
73948           <...>-27689 (-----) [005] ...1 82316.452587: tracing_mark_write: E|27550
73949           <...>-27689 (-----) [005] .... 82316.452603: binder_transaction: transaction=1570502 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
73950           <...>-27689 (-----) [005] .... 82316.452605: binder_transaction_alloc_buf: transaction=1570502 data_size=48 offsets_size=0
73951           <...>-27689 (-----) [005] ...2 82316.452608: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
73952           <...>-27689 (-----) [005] d..4 82316.452610: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
73953           <...>-27689 (-----) [005] dn.5 82316.452620: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
73954           <...>-27689 (-----) [005] d..2 82316.452628: sched_switch: prev_comm=id.nn.benchmark prev_pid=27689 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
73955<...>-770 ( 770) [005] .... 82316.452636: binder_transaction_received: transaction=1570502
73956<...>-770 ( 770) [005] ...1 82316.452653: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
73957<...>-770 ( 770) [005] d..2 82316.452710: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
73958<...>-770 ( 770) [005] ...1 82316.452742: tracing_mark_write: E|770
73959<...>-770 ( 770) [005] .... 82316.452749: binder_transaction: transaction=1570503 dest_node=0 dest_proc=27550 dest_thread=27689 reply=1 flags=0x0 code=0x0
73960<...>-770 ( 770) [005] .... 82316.452752: binder_transaction_alloc_buf: transaction=1570503 data_size=168 offsets_size=32
73961          <idle>-0     (-----) [000] d.h5 82316.452755: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
73962<...>-770 ( 770) [005] .... 82316.452757: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
73963          <idle>-0     (-----) [000] d.h6 82316.452777: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
73964          <idle>-0     (-----) [000] d.h5 82316.452783: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
73965          <idle>-0     (-----) [003] .n.1 82316.452784: cpu_idle: state=4294967295 cpu_id=3
73966<...>-770 ( 770) [005] d..2 82316.452791: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27689 next_prio=110
73967          <idle>-0     (-----) [003] d..2 82316.452794: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
73968          <idle>-0     (-----) [000] d.h6 82316.452797: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
73969          <idle>-0     (-----) [002] .n.1 82316.452802: cpu_idle: state=4294967295 cpu_id=2
73970           <...>-27689 (-----) [005] .... 82316.452802: binder_transaction_received: transaction=1570503
73971          <idle>-0     (-----) [002] d..2 82316.452814: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
73972          <idle>-0     (-----) [000] dnh2 82316.452819: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
73973          <idle>-0     (-----) [000] .n.1 82316.452825: cpu_idle: state=4294967295 cpu_id=0
73974  crtc_event:111-322   (  322) [003] d..2 82316.452831: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
73975          <idle>-0     (-----) [000] d..2 82316.452838: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
73976          <idle>-0     (-----) [003] d..1 82316.452841: cpu_idle: state=0 cpu_id=3
73977<...>-581 ( 571) [000] d..2 82316.452902: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
73978          <idle>-0     (-----) [000] d..1 82316.452917: cpu_idle: state=0 cpu_id=0
73979 crtc_commit:111-321   (  321) [002] d..2 82316.452963: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
73980          <idle>-0     (-----) [002] d..1 82316.452972: cpu_idle: state=0 cpu_id=2
73981           <...>-27689 (-----) [005] ...1 82316.453083: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
73982           <...>-27689 (-----) [005] ...1 82316.453094: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
73983           <...>-27689 (-----) [005] ...1 82316.453098: tracing_mark_write: E|27550
73984           <...>-27689 (-----) [005] .... 82316.453159: binder_transaction: transaction=1570504 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
73985           <...>-27689 (-----) [005] .... 82316.453163: binder_transaction_alloc_buf: transaction=1570504 data_size=556 offsets_size=104
73986           <...>-27689 (-----) [005] ...2 82316.453177: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
73987           <...>-27689 (-----) [005] d..4 82316.453180: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73988           <...>-27689 (-----) [005] dn.5 82316.453192: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
73989           <...>-27689 (-----) [005] d..2 82316.453200: sched_switch: prev_comm=id.nn.benchmark prev_pid=27689 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
73990<...>-5340 ( 788) [005] .... 82316.453210: binder_transaction_received: transaction=1570504
73991<...>-5340 ( 788) [005] ...1 82316.453254: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
73992<...>-5340 ( 788) [005] d..2 82316.453300: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73993<...>-5340 ( 788) [005] d..2 82316.453325: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27689 next_prio=110
73994          <idle>-0     (-----) [000] dnh2 82316.453330: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
73995          <idle>-0     (-----) [000] .n.1 82316.453337: cpu_idle: state=4294967295 cpu_id=0
73996           <...>-27689 (-----) [005] d..2 82316.453348: sched_switch: prev_comm=id.nn.benchmark prev_pid=27689 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
73997          <idle>-0     (-----) [000] d..2 82316.453348: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
73998          <idle>-0     (-----) [005] d..1 82316.453366: cpu_idle: state=0 cpu_id=5
73999<...>-87 ( 87) [000] d..2 82316.453391: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74000          <idle>-0     (-----) [002] d.h4 82316.453401: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74001          <idle>-0     (-----) [000] d..1 82316.453405: cpu_idle: state=0 cpu_id=0
74002          <idle>-0     (-----) [002] dnh5 82316.453421: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74003          <idle>-0     (-----) [002] .n.1 82316.453431: cpu_idle: state=4294967295 cpu_id=2
74004          <idle>-0     (-----) [002] d..2 82316.453440: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
74005<...>-86 ( 86) [002] d..2 82316.453475: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74006          <idle>-0     (-----) [002] d.h5 82316.453497: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74007          <idle>-0     (-----) [005] dnh2 82316.453518: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74008          <idle>-0     (-----) [005] .n.1 82316.453523: cpu_idle: state=4294967295 cpu_id=5
74009          <idle>-0     (-----) [005] d..2 82316.453531: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74010          <idle>-0     (-----) [002] d..1 82316.453540: cpu_idle: state=0 cpu_id=2
74011<...>-5340 ( 788) [005] d..1 82316.453582: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
74012          <idle>-0     (-----) [000] dnh2 82316.453621: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
74013          <idle>-0     (-----) [000] .n.1 82316.453628: cpu_idle: state=4294967295 cpu_id=0
74014          <idle>-0     (-----) [000] d..2 82316.453639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
74015 neuralnetworks@-13088 (  788) [000] d..2 82316.453686: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74016          <idle>-0     (-----) [000] d..1 82316.453700: cpu_idle: state=0 cpu_id=0
74017<...>-5340 ( 788) [005] d..2 82316.453741: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74018          <idle>-0     (-----) [000] dnh2 82316.453763: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74019<...>-5340 ( 788) [005] d..2 82316.453766: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74020          <idle>-0     (-----) [000] .n.1 82316.453770: cpu_idle: state=4294967295 cpu_id=0
74021          <idle>-0     (-----) [000] d..2 82316.453780: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
74022          <idle>-0     (-----) [005] d..1 82316.453781: cpu_idle: state=0 cpu_id=5
74023          <idle>-0     (-----) [002] d.h4 82316.453818: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74024<...>-87 ( 87) [000] d..2 82316.453819: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74025          <idle>-0     (-----) [002] dnh5 82316.453829: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74026          <idle>-0     (-----) [000] d..1 82316.453832: cpu_idle: state=0 cpu_id=0
74027          <idle>-0     (-----) [002] .n.1 82316.453837: cpu_idle: state=4294967295 cpu_id=2
74028          <idle>-0     (-----) [002] d..2 82316.453846: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
74029<...>-86 ( 86) [002] d..2 82316.453879: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74030          <idle>-0     (-----) [002] d..1 82316.453887: cpu_idle: state=0 cpu_id=2
74031          <idle>-0     (-----) [005] ...1 82316.454158: cpu_idle: state=4294967295 cpu_id=5
74032          <idle>-0     (-----) [005] d..1 82316.454162: cpu_idle: state=0 cpu_id=5
74033          <idle>-0     (-----) [000] d.h5 82316.455085: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
74034          <idle>-0     (-----) [000] d.h6 82316.455103: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
74035          <idle>-0     (-----) [000] ...1 82316.455133: cpu_idle: state=4294967295 cpu_id=0
74036          <idle>-0     (-----) [002] dns3 82316.455136: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
74037          <idle>-0     (-----) [000] d..1 82316.455138: cpu_idle: state=0 cpu_id=0
74038          <idle>-0     (-----) [001] d.s2 82316.455139: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
74039          <idle>-0     (-----) [002] dns4 82316.455155: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
74040          <idle>-0     (-----) [001] dns3 82316.455158: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
74041          <idle>-0     (-----) [003] .n.1 82316.455161: cpu_idle: state=4294967295 cpu_id=3
74042          <idle>-0     (-----) [002] .n.1 82316.455170: cpu_idle: state=4294967295 cpu_id=2
74043          <idle>-0     (-----) [003] d..2 82316.455172: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
74044          <idle>-0     (-----) [001] .n.1 82316.455176: cpu_idle: state=4294967295 cpu_id=1
74045          <idle>-0     (-----) [002] d..2 82316.455179: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
74046          <idle>-0     (-----) [001] d..2 82316.455186: 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
74047<...>-8 ( 8) [001] d..2 82316.455195: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
74048  crtc_event:111-322   (  322) [003] d..2 82316.455203: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74049          <idle>-0     (-----) [003] d..1 82316.455211: cpu_idle: state=0 cpu_id=3
74050<...>-8 ( 8) [001] d..3 82316.455233: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
74051          <idle>-0     (-----) [003] .n.1 82316.455238: cpu_idle: state=4294967295 cpu_id=3
74052          <idle>-0     (-----) [003] d..2 82316.455247: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
74053<...>-8 ( 8) [001] d..2 82316.455258: 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
74054<...>-46 ( 46) [003] d..2 82316.455260: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
74055 crtc_commit:111-321   (  321) [002] d..2 82316.455260: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74056          <idle>-0     (-----) [001] dn.1 82316.455272: cpu_idle: state=0 cpu_id=1
74057          <idle>-0     (-----) [002] d..1 82316.455275: cpu_idle: state=0 cpu_id=2
74058          <idle>-0     (-----) [001] .n.1 82316.455276: cpu_idle: state=4294967295 cpu_id=1
74059<...>-46 ( 46) [003] d..3 82316.455278: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
74060          <idle>-0     (-----) [001] d..2 82316.455292: 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
74061<...>-46 ( 46) [003] d..2 82316.455300: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74062          <idle>-0     (-----) [003] d..1 82316.455308: cpu_idle: state=0 cpu_id=3
74063<...>-8 ( 8) [001] d..2 82316.455316: 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
74064          <idle>-0     (-----) [001] d..1 82316.455326: cpu_idle: state=0 cpu_id=1
74065          <idle>-0     (-----) [000] d.h5 82316.455379: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
74066          <idle>-0     (-----) [000] d.h6 82316.455395: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
74067          <idle>-0     (-----) [003] .n.1 82316.455400: cpu_idle: state=4294967295 cpu_id=3
74068          <idle>-0     (-----) [003] d..2 82316.455408: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
74069          <idle>-0     (-----) [000] ...1 82316.455411: cpu_idle: state=4294967295 cpu_id=0
74070          <idle>-0     (-----) [000] d..1 82316.455418: cpu_idle: state=0 cpu_id=0
74071  crtc_event:111-322   (  322) [003] d..2 82316.455432: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74072          <idle>-0     (-----) [003] d..1 82316.455440: cpu_idle: state=0 cpu_id=3
74073          <idle>-0     (-----) [002] d.h4 82316.455546: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74074          <idle>-0     (-----) [005] dnh2 82316.455566: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74075          <idle>-0     (-----) [005] .n.1 82316.455570: cpu_idle: state=4294967295 cpu_id=5
74076          <idle>-0     (-----) [005] d..2 82316.455578: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74077          <idle>-0     (-----) [002] ...1 82316.455587: cpu_idle: state=4294967295 cpu_id=2
74078          <idle>-0     (-----) [002] d..1 82316.455593: cpu_idle: state=0 cpu_id=2
74079<...>-5340 ( 788) [005] d..1 82316.455638: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
74080          <idle>-0     (-----) [000] dnh2 82316.455660: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
74081          <idle>-0     (-----) [000] .n.1 82316.455670: cpu_idle: state=4294967295 cpu_id=0
74082          <idle>-0     (-----) [000] d..2 82316.455683: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
74083<...>-5340 ( 788) [005] ...1 82316.455729: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
74084<...>-5340 ( 788) [005] ...1 82316.455734: tracing_mark_write: E|788
74085 neuralnetworks@-13088 (  788) [000] d..2 82316.455747: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74086<...>-5340 ( 788) [005] .... 82316.455749: binder_transaction: transaction=1570507 dest_node=1570505 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
74087<...>-5340 ( 788) [005] .... 82316.455752: binder_transaction_alloc_buf: transaction=1570507 data_size=60 offsets_size=0
74088<...>-5340 ( 788) [005] d..4 82316.455755: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
74089          <idle>-0     (-----) [000] d..1 82316.455761: cpu_idle: state=0 cpu_id=0
74090<...>-5340 ( 788) [005] d..5 82316.455769: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
74091          <idle>-0     (-----) [004] .n.1 82316.455774: cpu_idle: state=4294967295 cpu_id=4
74092          <idle>-0     (-----) [004] d..2 82316.455783: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
74093           <...>-27571 (-----) [004] .... 82316.455787: binder_transaction_received: transaction=1570507
74094<...>-5340 ( 788) [005] ...1 82316.455791: tracing_mark_write: E|788
74095<...>-5340 ( 788) [005] .... 82316.455798: binder_transaction: transaction=1570508 dest_node=0 dest_proc=27550 dest_thread=27689 reply=1 flags=0x0 code=0x0
74096<...>-5340 ( 788) [005] .... 82316.455800: binder_transaction_alloc_buf: transaction=1570508 data_size=8 offsets_size=0
74097<...>-5340 ( 788) [005] d..2 82316.455802: sched_waking: comm=id.nn.benchmark pid=27689 prio=110 target_cpu=005
74098           <...>-27571 (-----) [004] ...1 82316.455806: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
74099<...>-5340 ( 788) [005] d..3 82316.455808: sched_wakeup: comm=id.nn.benchmark pid=27689 prio=110 target_cpu=005
74100<...>-5340 ( 788) [005] .... 82316.455810: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
74101           <...>-27571 (-----) [004] ...1 82316.455811: tracing_mark_write: E|27550
74102           <...>-27571 (-----) [004] d..2 82316.455840: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74103          <idle>-0     (-----) [004] d..1 82316.455847: cpu_idle: state=0 cpu_id=4
74104<...>-5340 ( 788) [005] d..2 82316.455852: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27689 next_prio=110
74105           <...>-27689 (-----) [005] .... 82316.455862: binder_transaction_received: transaction=1570508
74106           <...>-27689 (-----) [005] ...1 82316.455898: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
74107           <...>-27689 (-----) [005] ...1 82316.455904: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
74108           <...>-27689 (-----) [005] ...1 82316.455930: tracing_mark_write: E|27550
74109           <...>-27689 (-----) [005] ...1 82316.455933: tracing_mark_write: E|27550
74110           <...>-27689 (-----) [005] ...1 82316.455937: tracing_mark_write: E|27550
74111           <...>-27689 (-----) [005] ...1 82316.456126: tracing_mark_write: E|27550
74112           <...>-27689 (-----) [005] d..1 82316.456138: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74113           <...>-27689 (-----) [005] d..2 82316.456154: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74114          <idle>-0     (-----) [004] .n.1 82316.456160: cpu_idle: state=4294967295 cpu_id=4
74115          <idle>-0     (-----) [004] d..2 82316.456167: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
74116           <...>-27550 (-----) [004] d..2 82316.456186: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74117          <idle>-0     (-----) [004] d..1 82316.456195: cpu_idle: state=0 cpu_id=4
74118           <...>-27689 (-----) [005] d..1 82316.456243: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74119           <...>-27689 (-----) [005] d..2 82316.456252: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74120          <idle>-0     (-----) [004] .n.1 82316.456258: cpu_idle: state=4294967295 cpu_id=4
74121          <idle>-0     (-----) [004] d..2 82316.456265: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
74122           <...>-27689 (-----) [005] d..2 82316.456290: sched_switch: prev_comm=id.nn.benchmark prev_pid=27689 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
74123           <...>-27550 (-----) [004] ...1 82316.456311: tracing_mark_write: E|27550
74124           <...>-27550 (-----) [004] ...1 82316.456316: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
74125          <idle>-0     (-----) [005] d..1 82316.456319: cpu_idle: state=0 cpu_id=5
74126           <...>-27550 (-----) [004] ...1 82316.456322: tracing_mark_write: E|27550
74127           <...>-27550 (-----) [004] ...1 82316.456325: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
74128           <...>-27550 (-----) [004] ...1 82316.456334: tracing_mark_write: E|27550
74129           <...>-27550 (-----) [004] ...1 82316.456339: tracing_mark_write: E|27550
74130           <...>-27550 (-----) [004] ...1 82316.456452: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
74131           <...>-27550 (-----) [004] ...1 82316.456510: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
74132           <...>-27550 (-----) [004] ...1 82316.456515: tracing_mark_write: E|27550
74133           <...>-27550 (-----) [004] ...1 82316.456519: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
74134           <...>-27550 (-----) [004] ...1 82316.456525: tracing_mark_write: E|27550
74135           <...>-27550 (-----) [004] ...1 82316.456529: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
74136           <...>-27550 (-----) [004] ...1 82316.456532: tracing_mark_write: E|27550
74137           <...>-27550 (-----) [004] ...1 82316.456536: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
74138          <idle>-0     (-----) [005] .n.1 82316.456622: cpu_idle: state=4294967295 cpu_id=5
74139           <...>-27550 (-----) [004] ...1 82316.456622: tracing_mark_write: E|27550
74140           <...>-27550 (-----) [004] ...1 82316.456626: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
74141          <idle>-0     (-----) [005] d..2 82316.456631: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27690 next_prio=110
74142           <...>-27550 (-----) [004] d..2 82316.456643: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74143          <idle>-0     (-----) [004] d..1 82316.456658: cpu_idle: state=0 cpu_id=4
74144           <...>-27690 (-----) [005] ...1 82316.456691: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
74145           <...>-27690 (-----) [005] ...1 82316.456704: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
74146           <...>-27690 (-----) [005] ...1 82316.456708: tracing_mark_write: E|27550
74147           <...>-27690 (-----) [005] .... 82316.456729: binder_transaction: transaction=1570509 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
74148           <...>-27690 (-----) [005] .... 82316.456733: binder_transaction_alloc_buf: transaction=1570509 data_size=48 offsets_size=0
74149           <...>-27690 (-----) [005] ...2 82316.456736: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
74150           <...>-27690 (-----) [005] d..4 82316.456739: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
74151           <...>-27690 (-----) [005] dn.5 82316.456749: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
74152           <...>-27690 (-----) [005] d..2 82316.456756: sched_switch: prev_comm=id.nn.benchmark prev_pid=27690 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
74153<...>-770 ( 770) [005] .... 82316.456766: binder_transaction_received: transaction=1570509
74154<...>-770 ( 770) [005] ...1 82316.456787: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
74155<...>-770 ( 770) [005] d..2 82316.456857: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
74156          <idle>-0     (-----) [000] dnh2 82316.456884: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
74157          <idle>-0     (-----) [000] .n.1 82316.456891: cpu_idle: state=4294967295 cpu_id=0
74158<...>-770 ( 770) [005] ...1 82316.456896: tracing_mark_write: E|770
74159          <idle>-0     (-----) [000] d..2 82316.456902: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
74160<...>-770 ( 770) [005] .... 82316.456904: binder_transaction: transaction=1570510 dest_node=0 dest_proc=27550 dest_thread=27690 reply=1 flags=0x0 code=0x0
74161<...>-770 ( 770) [005] .... 82316.456906: binder_transaction_alloc_buf: transaction=1570510 data_size=168 offsets_size=32
74162<...>-770 ( 770) [005] .... 82316.456913: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
74163<...>-770 ( 770) [005] d..2 82316.456948: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27690 next_prio=110
74164           <...>-27690 (-----) [005] .... 82316.456959: binder_transaction_received: transaction=1570510
74165<...>-581 ( 571) [000] d..2 82316.456980: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74166          <idle>-0     (-----) [000] d..1 82316.456996: cpu_idle: state=0 cpu_id=0
74167           <...>-27690 (-----) [005] ...1 82316.457026: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
74168           <...>-27690 (-----) [005] ...1 82316.457031: tracing_mark_write: E|27550
74169           <...>-27690 (-----) [005] .... 82316.457046: binder_transaction: transaction=1570511 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
74170           <...>-27690 (-----) [005] .... 82316.457049: binder_transaction_alloc_buf: transaction=1570511 data_size=48 offsets_size=0
74171           <...>-27690 (-----) [005] ...2 82316.457051: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
74172           <...>-27690 (-----) [005] d..4 82316.457053: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
74173           <...>-27690 (-----) [005] dn.5 82316.457064: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
74174           <...>-27690 (-----) [005] d..2 82316.457070: sched_switch: prev_comm=id.nn.benchmark prev_pid=27690 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
74175<...>-770 ( 770) [005] .... 82316.457078: binder_transaction_received: transaction=1570511
74176<...>-770 ( 770) [005] ...1 82316.457096: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
74177<...>-770 ( 770) [005] d..2 82316.457153: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
74178          <idle>-0     (-----) [000] dnh2 82316.457178: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
74179          <idle>-0     (-----) [000] .n.1 82316.457185: cpu_idle: state=4294967295 cpu_id=0
74180<...>-770 ( 770) [005] ...1 82316.457188: tracing_mark_write: E|770
74181<...>-770 ( 770) [005] .... 82316.457195: binder_transaction: transaction=1570512 dest_node=0 dest_proc=27550 dest_thread=27690 reply=1 flags=0x0 code=0x0
74182          <idle>-0     (-----) [000] d..2 82316.457196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
74183<...>-770 ( 770) [005] .... 82316.457198: binder_transaction_alloc_buf: transaction=1570512 data_size=168 offsets_size=32
74184<...>-770 ( 770) [005] .... 82316.457205: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
74185<...>-770 ( 770) [005] d..2 82316.457239: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27690 next_prio=110
74186          <idle>-0     (-----) [003] d.h2 82316.457247: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
74187           <...>-27690 (-----) [005] .... 82316.457249: binder_transaction_received: transaction=1570512
74188<...>-581 ( 571) [000] d..2 82316.457253: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74189          <idle>-0     (-----) [003] dnh3 82316.457264: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
74190          <idle>-0     (-----) [000] d..1 82316.457268: cpu_idle: state=0 cpu_id=0
74191          <idle>-0     (-----) [003] .n.1 82316.457272: cpu_idle: state=4294967295 cpu_id=3
74192          <idle>-0     (-----) [003] d..2 82316.457279: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
74193        DispSync-8879  ( 8858) [003] d..1 82316.457303: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
74194        DispSync-8879  ( 8858) [003] d..2 82316.457328: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
74195          <idle>-0     (-----) [001] .n.1 82316.457333: cpu_idle: state=4294967295 cpu_id=1
74196          <idle>-0     (-----) [001] d..2 82316.457343: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
74197        DispSync-8879  ( 8858) [003] d..2 82316.457361: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74198          <idle>-0     (-----) [003] d..1 82316.457372: cpu_idle: state=0 cpu_id=3
74199  appEventThread-8881  ( 8858) [001] d..3 82316.457408: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
74200  appEventThread-8881  ( 8858) [001] d..4 82316.457431: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
74201          <idle>-0     (-----) [000] .n.1 82316.457437: cpu_idle: state=4294967295 cpu_id=0
74202          <idle>-0     (-----) [000] d..2 82316.457450: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
74203  appEventThread-8881  ( 8858) [001] d..2 82316.457473: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74204          <idle>-0     (-----) [001] d..1 82316.457487: cpu_idle: state=0 cpu_id=1
74205           <...>-27690 (-----) [005] ...1 82316.457517: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
74206           <...>-27690 (-----) [005] ...1 82316.457526: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
74207           <...>-27690 (-----) [005] ...1 82316.457530: tracing_mark_write: E|27550
74208           <...>-27690 (-----) [005] .... 82316.457588: binder_transaction: transaction=1570513 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
74209           <...>-27690 (-----) [005] .... 82316.457591: binder_transaction_alloc_buf: transaction=1570513 data_size=556 offsets_size=104
74210           <...>-27690 (-----) [005] ...2 82316.457604: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
74211           <...>-27690 (-----) [005] d..4 82316.457607: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74212           <...>-27690 (-----) [005] dn.5 82316.457619: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74213           <...>-27690 (-----) [005] d..2 82316.457625: sched_switch: prev_comm=id.nn.benchmark prev_pid=27690 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74214<...>-5340 ( 788) [005] .... 82316.457635: binder_transaction_received: transaction=1570513
74215<...>-5340 ( 788) [005] ...1 82316.457677: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
74216<...>-5340 ( 788) [005] d..2 82316.457719: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74217<...>-5340 ( 788) [005] d..2 82316.457743: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27690 next_prio=110
74218<...>-9105 ( 9105) [000] d.h1 82316.457751: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74219           <...>-27690 (-----) [005] d..2 82316.457765: sched_switch: prev_comm=id.nn.benchmark prev_pid=27690 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74220          <idle>-0     (-----) [005] d..1 82316.457783: cpu_idle: state=0 cpu_id=5
74221<...>-9105 ( 9105) [000] .... 82316.457805: binder_transaction: transaction=1570516 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
74222<...>-9105 ( 9105) [000] .... 82316.457811: binder_transaction_alloc_buf: transaction=1570516 data_size=80 offsets_size=0
74223<...>-9105 ( 9105) [000] d..4 82316.457817: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
74224<...>-9105 ( 9105) [000] d..5 82316.457849: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
74225          <idle>-0     (-----) [001] .n.1 82316.457855: cpu_idle: state=4294967295 cpu_id=1
74226          <idle>-0     (-----) [001] d..2 82316.457867: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
74227<...>-13083 ( 8858) [001] .... 82316.457875: binder_transaction_received: transaction=1570516
74228<...>-9105 ( 9105) [000] d..3 82316.457889: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
74229<...>-9105 ( 9105) [000] d..4 82316.457909: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
74230<...>-13083 ( 8858) [001] d..1 82316.457910: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
74231          <idle>-0     (-----) [002] .n.1 82316.457914: cpu_idle: state=4294967295 cpu_id=2
74232          <idle>-0     (-----) [002] d..2 82316.457928: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
74233<...>-13083 ( 8858) [001] d..2 82316.457935: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
74234          <idle>-0     (-----) [003] .n.1 82316.457940: cpu_idle: state=4294967295 cpu_id=3
74235          <idle>-0     (-----) [003] d..2 82316.457948: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
74236<...>-13083 ( 8858) [001] d..2 82316.457978: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74237          <idle>-0     (-----) [001] d..1 82316.457991: cpu_idle: state=0 cpu_id=1
74238    RenderThread-9436  ( 9105) [002] d..2 82316.457992: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74239          <idle>-0     (-----) [002] d..1 82316.458007: cpu_idle: state=0 cpu_id=2
74240  appEventThread-8881  ( 8858) [003] d..2 82316.458021: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
74241<...>-9105 ( 9105) [000] d..3 82316.458039: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
74242<...>-9105 ( 9105) [000] d..4 82316.458058: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
74243<...>-87 ( 87) [003] d..2 82316.458063: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74244          <idle>-0     (-----) [003] d..1 82316.458074: cpu_idle: state=0 cpu_id=3
74245          <idle>-0     (-----) [002] dnh4 82316.458077: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74246<...>-9105 ( 9105) [000] d..2 82316.458095: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74247          <idle>-0     (-----) [000] dn.1 82316.458116: cpu_idle: state=0 cpu_id=0
74248          <idle>-0     (-----) [002] dnh5 82316.458120: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
74249          <idle>-0     (-----) [000] .n.1 82316.458125: cpu_idle: state=4294967295 cpu_id=0
74250          <idle>-0     (-----) [002] .n.1 82316.458134: cpu_idle: state=4294967295 cpu_id=2
74251          <idle>-0     (-----) [000] d..2 82316.458139: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
74252          <idle>-0     (-----) [002] dnh4 82316.458170: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74253          <idle>-0     (-----) [005] dnh2 82316.458191: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74254          <idle>-0     (-----) [005] .n.1 82316.458196: cpu_idle: state=4294967295 cpu_id=5
74255          <idle>-0     (-----) [005] d..2 82316.458204: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74256          <idle>-0     (-----) [002] d..2 82316.458213: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
74257<...>-86 ( 86) [000] d..2 82316.458221: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74258          <idle>-0     (-----) [000] d..1 82316.458234: cpu_idle: state=0 cpu_id=0
74259<...>-5340 ( 788) [005] d..1 82316.458254: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
74260    RenderThread-9436  ( 9105) [002] dnh1 82316.458295: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
74261    RenderThread-9436  ( 9105) [002] d..2 82316.458306: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
74262 neuralnetworks@-13088 (  788) [002] d..2 82316.458346: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
74263    RenderThread-9436  ( 9105) [002] d..1 82316.458414: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
74264<...>-5340 ( 788) [005] d..2 82316.458414: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
74265    RenderThread-9436  ( 9105) [002] d..2 82316.458433: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
74266          <idle>-0     (-----) [003] dnh2 82316.458437: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
74267          <idle>-0     (-----) [000] .n.1 82316.458440: cpu_idle: state=4294967295 cpu_id=0
74268<...>-5340 ( 788) [005] d..2 82316.458441: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74269          <idle>-0     (-----) [000] d..2 82316.458458: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
74270          <idle>-0     (-----) [003] dns2 82316.458472: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
74271    RenderThread-9436  ( 9105) [002] d.s2 82316.458477: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
74272          <idle>-0     (-----) [005] d..1 82316.458486: cpu_idle: state=0 cpu_id=5
74273    RenderThread-9436  ( 9105) [002] d.s3 82316.458498: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
74274          <idle>-0     (-----) [003] dns3 82316.458512: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
74275          <idle>-0     (-----) [003] .n.1 82316.458525: cpu_idle: state=4294967295 cpu_id=3
74276          <idle>-0     (-----) [003] d..2 82316.458535: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
74277<...>-9105 ( 9105) [000] d..2 82316.458538: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
74278    RenderThread-9436  ( 9105) [002] d.h3 82316.458574: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
74279<...>-87 ( 87) [003] d..2 82316.458579: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74280          <idle>-0     (-----) [003] d..1 82316.458590: cpu_idle: state=0 cpu_id=3
74281    RenderThread-9436  ( 9105) [002] d.h4 82316.458602: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
74282          <idle>-0     (-----) [003] .n.1 82316.458607: cpu_idle: state=4294967295 cpu_id=3
74283          <idle>-0     (-----) [003] d..2 82316.458618: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
74284    RenderThread-9436  ( 9105) [002] .... 82316.458656: binder_transaction: transaction=1570517 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
74285    RenderThread-9436  ( 9105) [002] .... 82316.458661: binder_transaction_alloc_buf: transaction=1570517 data_size=104 offsets_size=0
74286<...>-86 ( 86) [003] d..2 82316.458664: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74287    RenderThread-9436  ( 9105) [002] d..4 82316.458666: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
74288    RenderThread-9436  ( 9105) [002] dn.5 82316.458686: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
74289          <idle>-0     (-----) [003] d..1 82316.458693: cpu_idle: state=0 cpu_id=3
74290    RenderThread-9436  ( 9105) [002] d..2 82316.458696: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
74291  kworker/u16:13-1147  ( 1147) [000] .... 82316.458697: clk_set_rate: l3_cluster0_vote_clk 300000000
74292<...>-13083 ( 8858) [002] .... 82316.458705: binder_transaction_received: transaction=1570517
74293<...>-13083 ( 8858) [002] .... 82316.458800: binder_transaction: transaction=1570518 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
74294<...>-13083 ( 8858) [002] .... 82316.458804: binder_transaction_alloc_buf: transaction=1570518 data_size=52 offsets_size=8
74295<...>-13083 ( 8858) [002] d..2 82316.458855: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
74296    RenderThread-9436  ( 9105) [002] .... 82316.458865: binder_transaction_received: transaction=1570518
74297  kworker/u16:13-1147  ( 1147) [000] d..2 82316.458922: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
74298     rcu_preempt-7     (    7) [000] d..2 82316.458933: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
74299          <idle>-0     (-----) [001] d.s3 82316.458965: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
74300     rcu_preempt-7     (    7) [000] d..3 82316.458980: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
74301          <idle>-0     (-----) [001] dns4 82316.459004: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
74302          <idle>-0     (-----) [001] dns4 82316.459011: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
74303          <idle>-0     (-----) [001] .n.1 82316.459023: cpu_idle: state=4294967295 cpu_id=1
74304     rcu_preempt-7     (    7) [000] d..2 82316.459024: 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
74305          <idle>-0     (-----) [001] d..2 82316.459038: 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
74306          <idle>-0     (-----) [000] d..1 82316.459041: cpu_idle: state=0 cpu_id=0
74307         rcuop/2-29    (   29) [001] d..2 82316.459045: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
74308         rcuop/2-29    (   29) [001] d..3 82316.459085: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
74309          <idle>-0     (-----) [000] .n.1 82316.459091: cpu_idle: state=4294967295 cpu_id=0
74310         rcuop/2-29    (   29) [001] d..2 82316.459098: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
74311          <idle>-0     (-----) [000] d..2 82316.459106: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
74312         rcuop/3-37    (   37) [000] d..2 82316.459139: 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
74313          <idle>-0     (-----) [000] d..1 82316.459149: cpu_idle: state=0 cpu_id=0
74314  kworker/u16:13-1147  ( 1147) [001] d..2 82316.459156: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74315          <idle>-0     (-----) [001] d..1 82316.459167: cpu_idle: state=0 cpu_id=1
74316    RenderThread-9436  ( 9105) [002] d..2 82316.459883: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
74317          <idle>-0     (-----) [002] d..1 82316.459900: cpu_idle: state=0 cpu_id=2
74318          <idle>-0     (-----) [002] d.h2 82316.459961: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
74319          <idle>-0     (-----) [002] d.h3 82316.459972: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
74320          <idle>-0     (-----) [002] dnh3 82316.459977: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
74321          <idle>-0     (-----) [002] .n.1 82316.459986: cpu_idle: state=4294967295 cpu_id=2
74322          <idle>-0     (-----) [002] d..2 82316.459998: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
74323          <idle>-0     (-----) [000] d.h3 82316.460001: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
74324          <idle>-0     (-----) [000] dnh4 82316.460018: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
74325          <idle>-0     (-----) [000] .n.1 82316.460031: cpu_idle: state=4294967295 cpu_id=0
74326          <idle>-0     (-----) [000] d..2 82316.460041: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
74327 kgsl_worker_thr-258   (  258) [000] d..2 82316.460091: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
74328 kgsl_worker_thr-258   (  258) [000] d..3 82316.460107: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
74329          <idle>-0     (-----) [001] .n.1 82316.460114: cpu_idle: state=4294967295 cpu_id=1
74330          <idle>-0     (-----) [001] d..2 82316.460124: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
74331 kgsl_worker_thr-258   (  258) [000] d..2 82316.460134: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74332          <idle>-0     (-----) [000] d..1 82316.460146: cpu_idle: state=0 cpu_id=0
74333  kworker/u16:13-1147  ( 1147) [001] d..2 82316.460169: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74334          <idle>-0     (-----) [001] d..1 82316.460176: cpu_idle: state=0 cpu_id=1
74335    RenderThread-9436  ( 9105) [002] .... 82316.460192: binder_transaction: transaction=1570519 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
74336    RenderThread-9436  ( 9105) [002] .... 82316.460197: binder_transaction_alloc_buf: transaction=1570519 data_size=192 offsets_size=8
74337    RenderThread-9436  ( 9105) [002] d.h3 82316.460224: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74338          <idle>-0     (-----) [005] dnh2 82316.460247: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74339          <idle>-0     (-----) [005] .n.1 82316.460251: cpu_idle: state=4294967295 cpu_id=5
74340          <idle>-0     (-----) [005] d..2 82316.460259: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74341    RenderThread-9436  ( 9105) [002] d..4 82316.460268: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
74342    RenderThread-9436  ( 9105) [002] dn.5 82316.460283: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
74343    RenderThread-9436  ( 9105) [002] d..2 82316.460292: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
74344<...>-13083 ( 8858) [002] .... 82316.460301: binder_transaction_received: transaction=1570519
74345<...>-5340 ( 788) [005] d..1 82316.460311: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
74346<...>-13083 ( 8858) [002] d.h1 82316.460336: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
74347<...>-5340 ( 788) [005] ...1 82316.460409: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
74348<...>-5340 ( 788) [005] ...1 82316.460413: tracing_mark_write: E|788
74349<...>-5340 ( 788) [005] .... 82316.460429: binder_transaction: transaction=1570520 dest_node=1570514 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
74350<...>-5340 ( 788) [005] .... 82316.460432: binder_transaction_alloc_buf: transaction=1570520 data_size=60 offsets_size=0
74351<...>-5340 ( 788) [005] d..4 82316.460435: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
74352<...>-5340 ( 788) [005] d..5 82316.460449: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
74353          <idle>-0     (-----) [004] .n.1 82316.460455: cpu_idle: state=4294967295 cpu_id=4
74354          <idle>-0     (-----) [004] d..2 82316.460464: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
74355           <...>-27571 (-----) [004] .... 82316.460469: binder_transaction_received: transaction=1570520
74356<...>-5340 ( 788) [005] ...1 82316.460472: tracing_mark_write: E|788
74357<...>-5340 ( 788) [005] .... 82316.460478: binder_transaction: transaction=1570521 dest_node=0 dest_proc=27550 dest_thread=27690 reply=1 flags=0x0 code=0x0
74358<...>-5340 ( 788) [005] .... 82316.460480: binder_transaction_alloc_buf: transaction=1570521 data_size=8 offsets_size=0
74359<...>-5340 ( 788) [005] d..2 82316.460482: sched_waking: comm=id.nn.benchmark pid=27690 prio=110 target_cpu=005
74360           <...>-27571 (-----) [004] ...1 82316.460488: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
74361<...>-5340 ( 788) [005] d..3 82316.460489: sched_wakeup: comm=id.nn.benchmark pid=27690 prio=110 target_cpu=005
74362<...>-5340 ( 788) [005] .... 82316.460491: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
74363           <...>-27571 (-----) [004] ...1 82316.460495: tracing_mark_write: E|27550
74364<...>-13083 ( 8858) [002] .... 82316.460510: binder_transaction: transaction=1570522 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
74365<...>-13083 ( 8858) [002] .... 82316.460515: binder_transaction_alloc_buf: transaction=1570522 data_size=68 offsets_size=0
74366           <...>-27571 (-----) [004] d..2 82316.460524: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74367          <idle>-0     (-----) [004] d..1 82316.460532: cpu_idle: state=0 cpu_id=4
74368<...>-5340 ( 788) [005] d..2 82316.460533: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27690 next_prio=110
74369           <...>-27690 (-----) [005] .... 82316.460544: binder_transaction_received: transaction=1570521
74370<...>-13083 ( 8858) [002] d..2 82316.460560: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
74371           <...>-27690 (-----) [005] ...1 82316.460585: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
74372           <...>-27690 (-----) [005] ...1 82316.460591: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
74373 neuralnetworks@-13088 (  788) [002] d..2 82316.460595: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
74374    RenderThread-9436  ( 9105) [002] .... 82316.460606: binder_transaction_received: transaction=1570522
74375           <...>-27690 (-----) [005] ...1 82316.460617: tracing_mark_write: E|27550
74376           <...>-27690 (-----) [005] ...1 82316.460621: tracing_mark_write: E|27550
74377           <...>-27690 (-----) [005] ...1 82316.460624: tracing_mark_write: E|27550
74378    RenderThread-9436  ( 9105) [002] d..2 82316.460700: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74379          <idle>-0     (-----) [002] d..1 82316.460750: cpu_idle: state=0 cpu_id=2
74380           <...>-27690 (-----) [005] ...1 82316.460818: tracing_mark_write: E|27550
74381           <...>-27690 (-----) [005] d..1 82316.460831: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74382           <...>-27690 (-----) [005] d..2 82316.460847: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74383          <idle>-0     (-----) [004] .n.1 82316.460852: cpu_idle: state=4294967295 cpu_id=4
74384          <idle>-0     (-----) [004] d..2 82316.460859: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
74385           <...>-27550 (-----) [004] d..2 82316.460878: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74386          <idle>-0     (-----) [004] d..1 82316.460888: cpu_idle: state=0 cpu_id=4
74387           <...>-27690 (-----) [005] d..1 82316.460944: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74388           <...>-27690 (-----) [005] d..2 82316.460953: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74389          <idle>-0     (-----) [004] .n.1 82316.460959: cpu_idle: state=4294967295 cpu_id=4
74390          <idle>-0     (-----) [004] d..2 82316.460967: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
74391           <...>-27690 (-----) [005] d..2 82316.460994: sched_switch: prev_comm=id.nn.benchmark prev_pid=27690 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
74392           <...>-27550 (-----) [004] ...1 82316.460999: tracing_mark_write: E|27550
74393           <...>-27550 (-----) [004] ...1 82316.461004: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
74394           <...>-27550 (-----) [004] ...1 82316.461010: tracing_mark_write: E|27550
74395           <...>-27550 (-----) [004] ...1 82316.461013: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
74396          <idle>-0     (-----) [005] d..1 82316.461016: cpu_idle: state=0 cpu_id=5
74397           <...>-27550 (-----) [004] ...1 82316.461017: tracing_mark_write: E|27550
74398           <...>-27550 (-----) [004] ...1 82316.461022: tracing_mark_write: E|27550
74399           <...>-27550 (-----) [004] ...1 82316.461134: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
74400           <...>-27550 (-----) [004] ...1 82316.461193: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
74401           <...>-27550 (-----) [004] ...1 82316.461197: tracing_mark_write: E|27550
74402           <...>-27550 (-----) [004] ...1 82316.461201: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
74403           <...>-27550 (-----) [004] ...1 82316.461207: tracing_mark_write: E|27550
74404           <...>-27550 (-----) [004] ...1 82316.461211: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
74405           <...>-27550 (-----) [004] ...1 82316.461215: tracing_mark_write: E|27550
74406           <...>-27550 (-----) [004] ...1 82316.461218: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
74407          <idle>-0     (-----) [003] d.h2 82316.461260: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
74408          <idle>-0     (-----) [003] dnh3 82316.461274: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
74409          <idle>-0     (-----) [003] .n.1 82316.461282: cpu_idle: state=4294967295 cpu_id=3
74410          <idle>-0     (-----) [003] d..2 82316.461291: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
74411        DispSync-8879  ( 8858) [003] d..1 82316.461309: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
74412          <idle>-0     (-----) [005] .n.1 82316.461319: cpu_idle: state=4294967295 cpu_id=5
74413           <...>-27550 (-----) [004] ...1 82316.461321: tracing_mark_write: E|27550
74414        DispSync-8879  ( 8858) [003] d..2 82316.461325: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
74415           <...>-27550 (-----) [004] ...1 82316.461325: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
74416          <idle>-0     (-----) [005] d..2 82316.461328: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27691 next_prio=110
74417          <idle>-0     (-----) [002] .n.1 82316.461332: cpu_idle: state=4294967295 cpu_id=2
74418           <...>-27550 (-----) [004] d..2 82316.461342: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74419          <idle>-0     (-----) [002] d..2 82316.461345: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
74420          <idle>-0     (-----) [004] d..1 82316.461356: cpu_idle: state=0 cpu_id=4
74421        DispSync-8879  ( 8858) [003] d..2 82316.461358: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74422          <idle>-0     (-----) [003] d..1 82316.461371: cpu_idle: state=0 cpu_id=3
74423           <...>-27691 (-----) [005] ...1 82316.461391: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
74424   sfEventThread-8882  ( 8858) [002] d..3 82316.461391: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
74425           <...>-27691 (-----) [005] ...1 82316.461406: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
74426           <...>-27691 (-----) [005] ...1 82316.461409: tracing_mark_write: E|27550
74427   sfEventThread-8882  ( 8858) [002] d..4 82316.461415: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
74428          <idle>-0     (-----) [003] .n.1 82316.461421: cpu_idle: state=4294967295 cpu_id=3
74429          <idle>-0     (-----) [003] d..2 82316.461431: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
74430           <...>-27691 (-----) [005] .... 82316.461431: binder_transaction: transaction=1570523 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
74431           <...>-27691 (-----) [005] .... 82316.461434: binder_transaction_alloc_buf: transaction=1570523 data_size=48 offsets_size=0
74432           <...>-27691 (-----) [005] ...2 82316.461437: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
74433           <...>-27691 (-----) [005] d..4 82316.461440: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
74434           <...>-27691 (-----) [005] dn.5 82316.461450: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
74435   sfEventThread-8882  ( 8858) [002] d..2 82316.461451: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74436           <...>-27691 (-----) [005] d..2 82316.461457: sched_switch: prev_comm=id.nn.benchmark prev_pid=27691 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
74437          <idle>-0     (-----) [002] d..1 82316.461467: cpu_idle: state=0 cpu_id=2
74438<...>-770 ( 770) [005] .... 82316.461468: binder_transaction_received: transaction=1570523
74439<...>-770 ( 770) [005] ...1 82316.461494: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
74440<...>-770 ( 770) [005] d..2 82316.461578: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
74441  surfaceflinger-8858  ( 8858) [003] d.h1 82316.461620: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
74442<...>-770 ( 770) [005] ...1 82316.461636: tracing_mark_write: E|770
74443<...>-770 ( 770) [005] .... 82316.461644: binder_transaction: transaction=1570524 dest_node=0 dest_proc=27550 dest_thread=27691 reply=1 flags=0x0 code=0x0
74444<...>-770 ( 770) [005] .... 82316.461646: binder_transaction_alloc_buf: transaction=1570524 data_size=168 offsets_size=32
74445<...>-770 ( 770) [005] .... 82316.461653: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
74446<...>-770 ( 770) [005] d..2 82316.461690: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27691 next_prio=110
74447           <...>-27691 (-----) [005] .... 82316.461701: binder_transaction_received: transaction=1570524
74448          <idle>-0     (-----) [001] d.s2 82316.461802: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
74449           <...>-27691 (-----) [005] ...1 82316.461807: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
74450           <...>-27691 (-----) [005] ...1 82316.461813: tracing_mark_write: E|27550
74451          <idle>-0     (-----) [001] dns3 82316.461819: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
74452           <...>-27691 (-----) [005] .... 82316.461828: binder_transaction: transaction=1570525 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
74453          <idle>-0     (-----) [001] .n.1 82316.461830: cpu_idle: state=4294967295 cpu_id=1
74454           <...>-27691 (-----) [005] .... 82316.461831: binder_transaction_alloc_buf: transaction=1570525 data_size=48 offsets_size=0
74455           <...>-27691 (-----) [005] ...2 82316.461833: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
74456           <...>-27691 (-----) [005] d..4 82316.461836: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
74457          <idle>-0     (-----) [001] d..2 82316.461839: 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
74458  surfaceflinger-8858  ( 8858) [003] d..1 82316.461843: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
74459           <...>-27691 (-----) [005] dn.5 82316.461844: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
74460           <...>-27691 (-----) [005] d..2 82316.461850: sched_switch: prev_comm=id.nn.benchmark prev_pid=27691 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
74461<...>-8 ( 8) [001] d..2 82316.461850: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
74462<...>-770 ( 770) [005] .... 82316.461859: binder_transaction_received: transaction=1570525
74463  surfaceflinger-8858  ( 8858) [003] d..2 82316.461863: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
74464          <idle>-0     (-----) [002] .n.1 82316.461870: cpu_idle: state=4294967295 cpu_id=2
74465<...>-770 ( 770) [005] ...1 82316.461876: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
74466          <idle>-0     (-----) [002] d..2 82316.461886: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
74467<...>-8 ( 8) [001] d..3 82316.461894: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
74468   sfEventThread-8882  ( 8858) [002] d..2 82316.461915: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
74469<...>-8 ( 8) [001] d..2 82316.461920: 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
74470<...>-46 ( 46) [002] d..2 82316.461928: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
74471          <idle>-0     (-----) [001] d..1 82316.461935: cpu_idle: state=0 cpu_id=1
74472<...>-46 ( 46) [002] d..3 82316.461945: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
74473          <idle>-0     (-----) [001] .n.1 82316.461952: cpu_idle: state=4294967295 cpu_id=1
74474<...>-770 ( 770) [005] ...1 82316.461960: tracing_mark_write: E|770
74475          <idle>-0     (-----) [001] d..2 82316.461964: 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
74476<...>-770 ( 770) [005] .... 82316.461968: binder_transaction: transaction=1570526 dest_node=0 dest_proc=27550 dest_thread=27691 reply=1 flags=0x0 code=0x0
74477<...>-46 ( 46) [002] d..2 82316.461969: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74478<...>-770 ( 770) [005] .... 82316.461972: binder_transaction_alloc_buf: transaction=1570526 data_size=168 offsets_size=32
74479<...>-770 ( 770) [005] .... 82316.461978: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
74480          <idle>-0     (-----) [002] d..1 82316.461983: cpu_idle: state=0 cpu_id=2
74481<...>-8 ( 8) [001] d..2 82316.461989: 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
74482          <idle>-0     (-----) [001] d..1 82316.462000: cpu_idle: state=0 cpu_id=1
74483<...>-770 ( 770) [005] d..2 82316.462012: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27691 next_prio=110
74484           <...>-27691 (-----) [005] .... 82316.462023: binder_transaction_received: transaction=1570526
74485  surfaceflinger-8858  ( 8858) [003] ...1 82316.462064: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
74486  surfaceflinger-8858  ( 8858) [003] ...1 82316.462071: tracing_mark_write: E|8858
74487  surfaceflinger-8858  ( 8858) [003] .... 82316.462126: binder_transaction: transaction=1570527 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
74488  surfaceflinger-8858  ( 8858) [003] .... 82316.462131: binder_transaction_alloc_buf: transaction=1570527 data_size=540 offsets_size=96
74489  surfaceflinger-8858  ( 8858) [003] ...2 82316.462158: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
74490  surfaceflinger-8858  ( 8858) [003] d..4 82316.462166: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
74491  surfaceflinger-8858  ( 8858) [003] d..5 82316.462187: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
74492          <idle>-0     (-----) [001] .n.1 82316.462192: cpu_idle: state=4294967295 cpu_id=1
74493          <idle>-0     (-----) [001] d..2 82316.462202: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
74494  surfaceflinger-8858  ( 8858) [003] d..2 82316.462208: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
74495 [email protected]   (  619) [001] .... 82316.462213: binder_transaction_received: transaction=1570527
74496 [email protected]   (  619) [001] ...1 82316.462259: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
74497           <...>-27691 (-----) [005] ...1 82316.462299: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
74498           <...>-27691 (-----) [005] ...1 82316.462309: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
74499           <...>-27691 (-----) [005] ...1 82316.462313: tracing_mark_write: E|27550
74500<...>-581 ( 571) [003] d..2 82316.462335: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74501          <idle>-0     (-----) [003] d..1 82316.462355: cpu_idle: state=0 cpu_id=3
74502 [email protected]   (  619) [001] ...1 82316.462365: tracing_mark_write: B|619|HWCSession::PresentDisplay::
74503           <...>-27691 (-----) [005] .... 82316.462375: binder_transaction: transaction=1570528 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
74504           <...>-27691 (-----) [005] .... 82316.462379: binder_transaction_alloc_buf: transaction=1570528 data_size=556 offsets_size=104
74505           <...>-27691 (-----) [005] ...2 82316.462393: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
74506           <...>-27691 (-----) [005] d..4 82316.462396: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74507           <...>-27691 (-----) [005] dn.5 82316.462407: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74508           <...>-27691 (-----) [005] d..2 82316.462414: sched_switch: prev_comm=id.nn.benchmark prev_pid=27691 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74509<...>-5340 ( 788) [005] .... 82316.462424: binder_transaction_received: transaction=1570528
74510<...>-5340 ( 788) [005] ...1 82316.462473: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
74511<...>-5340 ( 788) [005] d..2 82316.462518: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
74512 [email protected]   (  619) [001] ...1 82316.462540: tracing_mark_write: B|619|HWDeviceDRM::Commit::
74513<...>-5340 ( 788) [005] d..2 82316.462557: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27691 next_prio=110
74514 [email protected]   (  619) [001] d.h1 82316.462562: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
74515 [email protected]   (  619) [001] ...1 82316.462573: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
74516           <...>-27691 (-----) [005] d..2 82316.462582: sched_switch: prev_comm=id.nn.benchmark prev_pid=27691 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74517          <idle>-0     (-----) [005] d..1 82316.462600: cpu_idle: state=0 cpu_id=5
74518 [email protected]   (  619) [001] d..2 82316.463214: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
74519 [email protected]   (  619) [001] d..3 82316.463237: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
74520          <idle>-0     (-----) [002] .n.1 82316.463244: cpu_idle: state=4294967295 cpu_id=2
74521          <idle>-0     (-----) [002] d..2 82316.463254: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
74522 [email protected]   (  619) [001] ...1 82316.463347: tracing_mark_write: E|619
74523 [email protected]   (  619) [001] ...1 82316.463354: tracing_mark_write: E|619
74524 [email protected]   (  619) [001] ...1 82316.463418: tracing_mark_write: E|619
74525 [email protected]   (  619) [001] ...1 82316.463467: tracing_mark_write: E|619
74526 [email protected]   (  619) [001] .... 82316.463482: binder_transaction: transaction=1570531 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
74527 [email protected]   (  619) [001] .... 82316.463486: binder_transaction_alloc_buf: transaction=1570531 data_size=576 offsets_size=112
74528 [email protected]   (  619) [001] d..2 82316.463507: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
74529 [email protected]   (  619) [001] d..3 82316.463525: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
74530 [email protected]   (  619) [001] .... 82316.463529: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
74531          <idle>-0     (-----) [003] .n.1 82316.463532: cpu_idle: state=4294967295 cpu_id=3
74532          <idle>-0     (-----) [003] d..2 82316.463543: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
74533  surfaceflinger-8858  ( 8858) [003] .... 82316.463552: binder_transaction_received: transaction=1570531
74534 [email protected]   (  619) [001] d..2 82316.463604: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
74535<...>-87 ( 87) [001] d..2 82316.463655: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74536 crtc_commit:111-321   (  321) [002] d.h3 82316.463659: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
74537          <idle>-0     (-----) [001] d..1 82316.463671: cpu_idle: state=0 cpu_id=1
74538 crtc_commit:111-321   (  321) [002] d.h4 82316.463701: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
74539          <idle>-0     (-----) [001] .n.1 82316.463708: cpu_idle: state=4294967295 cpu_id=1
74540          <idle>-0     (-----) [001] d..2 82316.463720: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
74541 crtc_commit:111-321   (  321) [002] d.h3 82316.463738: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74542          <idle>-0     (-----) [005] dnh2 82316.463761: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74543          <idle>-0     (-----) [005] .n.1 82316.463766: cpu_idle: state=4294967295 cpu_id=5
74544          <idle>-0     (-----) [005] d..2 82316.463774: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74545<...>-86 ( 86) [001] d..2 82316.463809: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74546          <idle>-0     (-----) [001] d..1 82316.463820: cpu_idle: state=0 cpu_id=1
74547<...>-5340 ( 788) [005] d..1 82316.463827: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
74548 crtc_commit:111-321   (  321) [002] d.h1 82316.463851: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
74549<...>-5340 ( 788) [005] d..2 82316.463977: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
74550  surfaceflinger-8858  ( 8858) [003] d..2 82316.463998: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
74551          <idle>-0     (-----) [001] dnh2 82316.464000: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
74552<...>-5340 ( 788) [005] d..2 82316.464003: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74553          <idle>-0     (-----) [001] .n.1 82316.464006: cpu_idle: state=4294967295 cpu_id=1
74554          <idle>-0     (-----) [001] d..2 82316.464017: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
74555          <idle>-0     (-----) [005] d..1 82316.464017: cpu_idle: state=0 cpu_id=5
74556 crtc_commit:111-321   (  321) [002] d.h3 82316.464051: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
74557<...>-87 ( 87) [001] d..2 82316.464057: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74558 neuralnetworks@-13088 (  788) [003] d..2 82316.464059: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74559          <idle>-0     (-----) [001] d..1 82316.464067: cpu_idle: state=0 cpu_id=1
74560 crtc_commit:111-321   (  321) [002] d.h4 82316.464073: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
74561          <idle>-0     (-----) [003] d..1 82316.464078: cpu_idle: state=0 cpu_id=3
74562          <idle>-0     (-----) [001] .n.1 82316.464078: cpu_idle: state=4294967295 cpu_id=1
74563          <idle>-0     (-----) [001] d..2 82316.464089: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
74564<...>-86 ( 86) [001] d..2 82316.464124: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74565          <idle>-0     (-----) [001] d..1 82316.464133: cpu_idle: state=0 cpu_id=1
74566 crtc_commit:111-321   (  321) [002] d..2 82316.464158: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
74567          <idle>-0     (-----) [002] d..1 82316.464176: cpu_idle: state=0 cpu_id=2
74568          <idle>-0     (-----) [000] d.s2 82316.465139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
74569          <idle>-0     (-----) [000] dns3 82316.465156: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
74570          <idle>-0     (-----) [000] .n.1 82316.465177: cpu_idle: state=4294967295 cpu_id=0
74571          <idle>-0     (-----) [000] d..2 82316.465189: 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
74572     rcu_preempt-7     (    7) [000] d..2 82316.465201: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
74573     rcu_preempt-7     (    7) [000] d..3 82316.465240: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
74574     rcu_preempt-7     (    7) [000] d..2 82316.465256: 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
74575         rcuop/4-45    (   45) [000] d..2 82316.465262: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
74576         rcuop/4-45    (   45) [000] d..3 82316.465295: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
74577         rcuop/4-45    (   45) [000] d..2 82316.465307: 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
74578         rcuop/5-53    (   53) [000] d..2 82316.465410: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74579          <idle>-0     (-----) [000] d..1 82316.465425: cpu_idle: state=0 cpu_id=0
74580          <idle>-0     (-----) [003] ...1 82316.465491: cpu_idle: state=4294967295 cpu_id=3
74581          <idle>-0     (-----) [003] d..1 82316.465496: cpu_idle: state=0 cpu_id=3
74582          <idle>-0     (-----) [002] ...1 82316.465658: cpu_idle: state=4294967295 cpu_id=2
74583          <idle>-0     (-----) [002] d..1 82316.465664: cpu_idle: state=0 cpu_id=2
74584          <idle>-0     (-----) [002] d.h4 82316.465745: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74585          <idle>-0     (-----) [005] dnh2 82316.465767: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74586          <idle>-0     (-----) [005] .n.1 82316.465771: cpu_idle: state=4294967295 cpu_id=5
74587          <idle>-0     (-----) [005] d..2 82316.465780: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74588          <idle>-0     (-----) [002] ...1 82316.465784: cpu_idle: state=4294967295 cpu_id=2
74589          <idle>-0     (-----) [002] d..1 82316.465791: cpu_idle: state=0 cpu_id=2
74590<...>-5340 ( 788) [005] d..1 82316.465830: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
74591          <idle>-0     (-----) [003] dnh2 82316.465856: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
74592          <idle>-0     (-----) [003] .n.1 82316.465862: cpu_idle: state=4294967295 cpu_id=3
74593          <idle>-0     (-----) [003] d..2 82316.465873: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
74594<...>-5340 ( 788) [005] ...1 82316.465921: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
74595<...>-5340 ( 788) [005] ...1 82316.465925: tracing_mark_write: E|788
74596 neuralnetworks@-13088 (  788) [003] d..2 82316.465938: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74597<...>-5340 ( 788) [005] .... 82316.465941: binder_transaction: transaction=1570532 dest_node=1570529 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
74598<...>-5340 ( 788) [005] .... 82316.465944: binder_transaction_alloc_buf: transaction=1570532 data_size=60 offsets_size=0
74599<...>-5340 ( 788) [005] d..4 82316.465948: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
74600          <idle>-0     (-----) [003] d..1 82316.465950: cpu_idle: state=0 cpu_id=3
74601<...>-5340 ( 788) [005] d..5 82316.465960: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
74602          <idle>-0     (-----) [004] .n.1 82316.465966: cpu_idle: state=4294967295 cpu_id=4
74603          <idle>-0     (-----) [004] d..2 82316.465975: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
74604           <...>-27571 (-----) [004] .... 82316.465980: binder_transaction_received: transaction=1570532
74605<...>-5340 ( 788) [005] ...1 82316.465982: tracing_mark_write: E|788
74606<...>-5340 ( 788) [005] .... 82316.465988: binder_transaction: transaction=1570533 dest_node=0 dest_proc=27550 dest_thread=27691 reply=1 flags=0x0 code=0x0
74607<...>-5340 ( 788) [005] .... 82316.465990: binder_transaction_alloc_buf: transaction=1570533 data_size=8 offsets_size=0
74608<...>-5340 ( 788) [005] d..2 82316.465992: sched_waking: comm=id.nn.benchmark pid=27691 prio=110 target_cpu=005
74609           <...>-27571 (-----) [004] ...1 82316.465999: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
74610<...>-5340 ( 788) [005] d..3 82316.466000: sched_wakeup: comm=id.nn.benchmark pid=27691 prio=110 target_cpu=005
74611<...>-5340 ( 788) [005] .... 82316.466002: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
74612           <...>-27571 (-----) [004] ...1 82316.466005: tracing_mark_write: E|27550
74613           <...>-27571 (-----) [004] d..2 82316.466034: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74614          <idle>-0     (-----) [004] d..1 82316.466041: cpu_idle: state=0 cpu_id=4
74615<...>-5340 ( 788) [005] d..2 82316.466043: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27691 next_prio=110
74616           <...>-27691 (-----) [005] .... 82316.466053: binder_transaction_received: transaction=1570533
74617           <...>-27691 (-----) [005] ...1 82316.466090: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
74618           <...>-27691 (-----) [005] ...1 82316.466096: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
74619           <...>-27691 (-----) [005] ...1 82316.466123: tracing_mark_write: E|27550
74620           <...>-27691 (-----) [005] ...1 82316.466126: tracing_mark_write: E|27550
74621           <...>-27691 (-----) [005] ...1 82316.466131: tracing_mark_write: E|27550
74622           <...>-27691 (-----) [005] ...1 82316.466323: tracing_mark_write: E|27550
74623           <...>-27691 (-----) [005] d..1 82316.466336: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74624           <...>-27691 (-----) [005] d..2 82316.466352: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74625          <idle>-0     (-----) [004] .n.1 82316.466357: cpu_idle: state=4294967295 cpu_id=4
74626          <idle>-0     (-----) [004] d..2 82316.466364: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
74627           <...>-27550 (-----) [004] d..2 82316.466383: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74628          <idle>-0     (-----) [004] d..1 82316.466392: cpu_idle: state=0 cpu_id=4
74629           <...>-27691 (-----) [005] d..1 82316.466443: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74630           <...>-27691 (-----) [005] d..2 82316.466453: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74631          <idle>-0     (-----) [004] .n.1 82316.466458: cpu_idle: state=4294967295 cpu_id=4
74632          <idle>-0     (-----) [004] d..2 82316.466465: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
74633           <...>-27691 (-----) [005] d..2 82316.466493: sched_switch: prev_comm=id.nn.benchmark prev_pid=27691 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
74634           <...>-27550 (-----) [004] ...1 82316.466498: tracing_mark_write: E|27550
74635           <...>-27550 (-----) [004] ...1 82316.466503: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
74636           <...>-27550 (-----) [004] ...1 82316.466509: tracing_mark_write: E|27550
74637           <...>-27550 (-----) [004] ...1 82316.466512: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
74638          <idle>-0     (-----) [005] d..1 82316.466513: cpu_idle: state=0 cpu_id=5
74639           <...>-27550 (-----) [004] ...1 82316.466516: tracing_mark_write: E|27550
74640           <...>-27550 (-----) [004] ...1 82316.466520: tracing_mark_write: E|27550
74641           <...>-27550 (-----) [004] ...1 82316.466634: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
74642           <...>-27550 (-----) [004] ...1 82316.466692: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
74643           <...>-27550 (-----) [004] ...1 82316.466697: tracing_mark_write: E|27550
74644           <...>-27550 (-----) [004] ...1 82316.466701: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
74645           <...>-27550 (-----) [004] ...1 82316.466707: tracing_mark_write: E|27550
74646           <...>-27550 (-----) [004] ...1 82316.466710: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
74647           <...>-27550 (-----) [004] ...1 82316.466715: tracing_mark_write: E|27550
74648           <...>-27550 (-----) [004] ...1 82316.466718: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
74649          <idle>-0     (-----) [005] .n.1 82316.466813: cpu_idle: state=4294967295 cpu_id=5
74650           <...>-27550 (-----) [004] ...1 82316.466814: tracing_mark_write: E|27550
74651           <...>-27550 (-----) [004] ...1 82316.466819: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
74652          <idle>-0     (-----) [005] d..2 82316.466822: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27692 next_prio=110
74653           <...>-27550 (-----) [004] d..2 82316.466835: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74654          <idle>-0     (-----) [004] d..1 82316.466850: cpu_idle: state=0 cpu_id=4
74655           <...>-27692 (-----) [005] ...1 82316.466884: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
74656           <...>-27692 (-----) [005] ...1 82316.466898: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
74657           <...>-27692 (-----) [005] ...1 82316.466902: tracing_mark_write: E|27550
74658           <...>-27692 (-----) [005] .... 82316.466924: binder_transaction: transaction=1570534 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
74659           <...>-27692 (-----) [005] .... 82316.466928: binder_transaction_alloc_buf: transaction=1570534 data_size=48 offsets_size=0
74660           <...>-27692 (-----) [005] ...2 82316.466931: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
74661           <...>-27692 (-----) [005] d..4 82316.466934: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
74662           <...>-27692 (-----) [005] dn.5 82316.466945: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
74663           <...>-27692 (-----) [005] d..2 82316.466951: sched_switch: prev_comm=id.nn.benchmark prev_pid=27692 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
74664<...>-770 ( 770) [005] .... 82316.466961: binder_transaction_received: transaction=1570534
74665<...>-770 ( 770) [005] ...1 82316.466985: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
74666<...>-770 ( 770) [005] d..2 82316.467062: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
74667          <idle>-0     (-----) [000] dnh2 82316.467101: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
74668          <idle>-0     (-----) [000] .n.1 82316.467108: cpu_idle: state=4294967295 cpu_id=0
74669<...>-770 ( 770) [005] ...1 82316.467114: tracing_mark_write: E|770
74670          <idle>-0     (-----) [000] d..2 82316.467120: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
74671<...>-770 ( 770) [005] .... 82316.467122: binder_transaction: transaction=1570535 dest_node=0 dest_proc=27550 dest_thread=27692 reply=1 flags=0x0 code=0x0
74672<...>-770 ( 770) [005] .... 82316.467125: binder_transaction_alloc_buf: transaction=1570535 data_size=168 offsets_size=32
74673<...>-770 ( 770) [005] .... 82316.467132: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
74674<...>-770 ( 770) [005] d..2 82316.467167: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27692 next_prio=110
74675           <...>-27692 (-----) [005] .... 82316.467178: binder_transaction_received: transaction=1570535
74676<...>-581 ( 571) [000] d..2 82316.467217: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74677          <idle>-0     (-----) [000] d..1 82316.467231: cpu_idle: state=0 cpu_id=0
74678           <...>-27692 (-----) [005] ...1 82316.467248: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
74679           <...>-27692 (-----) [005] ...1 82316.467253: tracing_mark_write: E|27550
74680           <...>-27692 (-----) [005] .... 82316.467267: binder_transaction: transaction=1570536 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
74681           <...>-27692 (-----) [005] .... 82316.467270: binder_transaction_alloc_buf: transaction=1570536 data_size=48 offsets_size=0
74682           <...>-27692 (-----) [005] ...2 82316.467273: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
74683           <...>-27692 (-----) [005] d..4 82316.467275: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
74684           <...>-27692 (-----) [005] dn.5 82316.467286: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
74685           <...>-27692 (-----) [005] d..2 82316.467292: sched_switch: prev_comm=id.nn.benchmark prev_pid=27692 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
74686<...>-770 ( 770) [005] .... 82316.467300: binder_transaction_received: transaction=1570536
74687<...>-770 ( 770) [005] ...1 82316.467317: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
74688          <idle>-0     (-----) [002] ...1 82316.467373: cpu_idle: state=4294967295 cpu_id=2
74689<...>-770 ( 770) [005] d..2 82316.467375: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
74690          <idle>-0     (-----) [002] d..1 82316.467377: cpu_idle: state=0 cpu_id=2
74691          <idle>-0     (-----) [000] dnh2 82316.467398: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
74692          <idle>-0     (-----) [000] .n.1 82316.467405: cpu_idle: state=4294967295 cpu_id=0
74693<...>-770 ( 770) [005] ...1 82316.467407: tracing_mark_write: E|770
74694<...>-770 ( 770) [005] .... 82316.467414: binder_transaction: transaction=1570537 dest_node=0 dest_proc=27550 dest_thread=27692 reply=1 flags=0x0 code=0x0
74695          <idle>-0     (-----) [000] d..2 82316.467416: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
74696<...>-770 ( 770) [005] .... 82316.467417: binder_transaction_alloc_buf: transaction=1570537 data_size=168 offsets_size=32
74697<...>-770 ( 770) [005] .... 82316.467423: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
74698<...>-770 ( 770) [005] d..2 82316.467457: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27692 next_prio=110
74699           <...>-27692 (-----) [005] .... 82316.467467: binder_transaction_received: transaction=1570537
74700<...>-581 ( 571) [000] d..2 82316.467472: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74701          <idle>-0     (-----) [000] d..1 82316.467485: cpu_idle: state=0 cpu_id=0
74702           <...>-27692 (-----) [005] ...1 82316.467745: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
74703           <...>-27692 (-----) [005] ...1 82316.467755: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
74704           <...>-27692 (-----) [005] ...1 82316.467759: tracing_mark_write: E|27550
74705           <...>-27692 (-----) [005] .... 82316.467822: binder_transaction: transaction=1570538 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
74706           <...>-27692 (-----) [005] .... 82316.467826: binder_transaction_alloc_buf: transaction=1570538 data_size=556 offsets_size=104
74707           <...>-27692 (-----) [005] ...2 82316.467839: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
74708           <...>-27692 (-----) [005] d..4 82316.467842: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74709           <...>-27692 (-----) [005] dn.5 82316.467854: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74710           <...>-27692 (-----) [005] d..2 82316.467861: sched_switch: prev_comm=id.nn.benchmark prev_pid=27692 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74711<...>-5340 ( 788) [005] .... 82316.467871: binder_transaction_received: transaction=1570538
74712<...>-5340 ( 788) [005] ...1 82316.467916: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
74713<...>-5340 ( 788) [005] d..2 82316.467961: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
74714<...>-5340 ( 788) [005] d..2 82316.467997: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27692 next_prio=110
74715          <idle>-0     (-----) [000] dnh2 82316.468001: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74716          <idle>-0     (-----) [000] .n.1 82316.468007: cpu_idle: state=4294967295 cpu_id=0
74717          <idle>-0     (-----) [000] d..2 82316.468019: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
74718           <...>-27692 (-----) [005] d..2 82316.468020: sched_switch: prev_comm=id.nn.benchmark prev_pid=27692 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74719          <idle>-0     (-----) [005] d..1 82316.468038: cpu_idle: state=0 cpu_id=5
74720<...>-87 ( 87) [000] d..2 82316.468062: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74721          <idle>-0     (-----) [002] d.h4 82316.468069: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
74722          <idle>-0     (-----) [000] d..1 82316.468073: cpu_idle: state=0 cpu_id=0
74723          <idle>-0     (-----) [002] dnh5 82316.468105: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74724          <idle>-0     (-----) [002] .n.1 82316.468119: cpu_idle: state=4294967295 cpu_id=2
74725          <idle>-0     (-----) [002] d..2 82316.468132: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
74726<...>-86 ( 86) [002] d.h4 82316.468162: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74727          <idle>-0     (-----) [005] dnh2 82316.468184: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74728          <idle>-0     (-----) [005] .n.1 82316.468188: cpu_idle: state=4294967295 cpu_id=5
74729          <idle>-0     (-----) [005] d..2 82316.468196: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74730<...>-86 ( 86) [002] d..2 82316.468223: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74731          <idle>-0     (-----) [002] d..1 82316.468238: cpu_idle: state=0 cpu_id=2
74732<...>-5340 ( 788) [005] d..1 82316.468248: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
74733          <idle>-0     (-----) [000] dnh2 82316.468284: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
74734          <idle>-0     (-----) [000] .n.1 82316.468290: cpu_idle: state=4294967295 cpu_id=0
74735          <idle>-0     (-----) [000] d..2 82316.468301: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
74736 neuralnetworks@-13088 (  788) [000] d..2 82316.468354: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74737          <idle>-0     (-----) [000] d..1 82316.468366: cpu_idle: state=0 cpu_id=0
74738<...>-5340 ( 788) [005] d..2 82316.468405: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74739          <idle>-0     (-----) [000] dnh2 82316.468427: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74740<...>-5340 ( 788) [005] d..2 82316.468431: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74741          <idle>-0     (-----) [000] .n.1 82316.468433: cpu_idle: state=4294967295 cpu_id=0
74742          <idle>-0     (-----) [005] d..1 82316.468445: cpu_idle: state=0 cpu_id=5
74743          <idle>-0     (-----) [000] d..2 82316.468446: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
74744          <idle>-0     (-----) [001] d.s2 82316.468471: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
74745          <idle>-0     (-----) [001] dns3 82316.468490: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
74746          <idle>-0     (-----) [001] dns3 82316.468496: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
74747          <idle>-0     (-----) [001] dns4 82316.468508: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
74748          <idle>-0     (-----) [002] d.h4 82316.468522: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74749<...>-87 ( 87) [000] d..2 82316.468530: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74750          <idle>-0     (-----) [002] dnh5 82316.468532: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74751          <idle>-0     (-----) [001] .n.1 82316.468533: cpu_idle: state=4294967295 cpu_id=1
74752          <idle>-0     (-----) [000] d..1 82316.468540: cpu_idle: state=0 cpu_id=0
74753          <idle>-0     (-----) [002] .n.1 82316.468542: cpu_idle: state=4294967295 cpu_id=2
74754          <idle>-0     (-----) [001] d..2 82316.468546: 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
74755          <idle>-0     (-----) [002] d..2 82316.468554: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
74756<...>-8 ( 8) [001] d..2 82316.468565: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
74757<...>-86 ( 86) [002] d..2 82316.468589: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74758          <idle>-0     (-----) [002] d..1 82316.468601: cpu_idle: state=0 cpu_id=2
74759  kworker/u16:13-1147  ( 1147) [001] d..2 82316.468799: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
74760          <idle>-0     (-----) [001] d.s4 82316.468843: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
74761          <idle>-0     (-----) [001] d.s5 82316.468853: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
74762          <idle>-0     (-----) [001] dns5 82316.468859: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
74763          <idle>-0     (-----) [001] d..2 82316.468871: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
74764  kworker/u16:13-1147  ( 1147) [001] .... 82316.468928: clk_set_rate: l3_cluster0_vote_clk 403200000
74765  kworker/u16:13-1147  ( 1147) [001] d..2 82316.468955: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74766          <idle>-0     (-----) [001] d..1 82316.468970: cpu_idle: state=0 cpu_id=1
74767          <idle>-0     (-----) [000] d.h5 82316.469215: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
74768          <idle>-0     (-----) [000] d.h6 82316.469235: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
74769          <idle>-0     (-----) [000] d.h5 82316.469240: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
74770          <idle>-0     (-----) [003] .n.1 82316.469241: cpu_idle: state=4294967295 cpu_id=3
74771          <idle>-0     (-----) [003] d..2 82316.469252: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
74772          <idle>-0     (-----) [000] d.h6 82316.469253: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
74773          <idle>-0     (-----) [002] .n.1 82316.469258: cpu_idle: state=4294967295 cpu_id=2
74774          <idle>-0     (-----) [000] ...1 82316.469268: cpu_idle: state=4294967295 cpu_id=0
74775          <idle>-0     (-----) [002] d..2 82316.469269: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
74776          <idle>-0     (-----) [000] d..1 82316.469274: cpu_idle: state=0 cpu_id=0
74777  crtc_event:111-322   (  322) [003] d..2 82316.469288: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74778          <idle>-0     (-----) [003] d..1 82316.469298: cpu_idle: state=0 cpu_id=3
74779 crtc_commit:111-321   (  321) [002] d..2 82316.469414: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
74780          <idle>-0     (-----) [002] d..1 82316.469423: cpu_idle: state=0 cpu_id=2
74781          <idle>-0     (-----) [002] d.h4 82316.470263: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74782          <idle>-0     (-----) [005] dnh2 82316.470286: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74783          <idle>-0     (-----) [005] .n.1 82316.470290: cpu_idle: state=4294967295 cpu_id=5
74784          <idle>-0     (-----) [005] d..2 82316.470299: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74785          <idle>-0     (-----) [002] ...1 82316.470302: cpu_idle: state=4294967295 cpu_id=2
74786          <idle>-0     (-----) [002] d..1 82316.470307: cpu_idle: state=0 cpu_id=2
74787<...>-5340 ( 788) [005] d..1 82316.470349: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
74788          <idle>-0     (-----) [000] dnh2 82316.470377: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
74789          <idle>-0     (-----) [000] .n.1 82316.470383: cpu_idle: state=4294967295 cpu_id=0
74790          <idle>-0     (-----) [000] d..2 82316.470392: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
74791<...>-5340 ( 788) [005] ...1 82316.470443: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
74792<...>-5340 ( 788) [005] ...1 82316.470447: tracing_mark_write: E|788
74793 neuralnetworks@-13088 (  788) [000] d..2 82316.470458: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74794<...>-5340 ( 788) [005] .... 82316.470462: binder_transaction: transaction=1570541 dest_node=1570539 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
74795<...>-5340 ( 788) [005] .... 82316.470465: binder_transaction_alloc_buf: transaction=1570541 data_size=60 offsets_size=0
74796          <idle>-0     (-----) [000] d..1 82316.470467: cpu_idle: state=0 cpu_id=0
74797<...>-5340 ( 788) [005] d..4 82316.470468: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
74798<...>-5340 ( 788) [005] d..5 82316.470480: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
74799          <idle>-0     (-----) [004] .n.1 82316.470486: cpu_idle: state=4294967295 cpu_id=4
74800          <idle>-0     (-----) [004] d..2 82316.470494: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
74801           <...>-27571 (-----) [004] .... 82316.470499: binder_transaction_received: transaction=1570541
74802<...>-5340 ( 788) [005] ...1 82316.470503: tracing_mark_write: E|788
74803<...>-5340 ( 788) [005] .... 82316.470509: binder_transaction: transaction=1570542 dest_node=0 dest_proc=27550 dest_thread=27692 reply=1 flags=0x0 code=0x0
74804<...>-5340 ( 788) [005] .... 82316.470512: binder_transaction_alloc_buf: transaction=1570542 data_size=8 offsets_size=0
74805<...>-5340 ( 788) [005] d..2 82316.470514: sched_waking: comm=id.nn.benchmark pid=27692 prio=110 target_cpu=005
74806           <...>-27571 (-----) [004] ...1 82316.470517: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
74807<...>-5340 ( 788) [005] d..3 82316.470521: sched_wakeup: comm=id.nn.benchmark pid=27692 prio=110 target_cpu=005
74808<...>-5340 ( 788) [005] .... 82316.470523: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
74809           <...>-27571 (-----) [004] ...1 82316.470524: tracing_mark_write: E|27550
74810           <...>-27571 (-----) [004] d..2 82316.470553: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74811          <idle>-0     (-----) [004] d..1 82316.470561: cpu_idle: state=0 cpu_id=4
74812<...>-5340 ( 788) [005] d..2 82316.470565: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27692 next_prio=110
74813           <...>-27692 (-----) [005] .... 82316.470575: binder_transaction_received: transaction=1570542
74814           <...>-27692 (-----) [005] ...1 82316.470611: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
74815           <...>-27692 (-----) [005] ...1 82316.470617: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
74816           <...>-27692 (-----) [005] ...1 82316.470643: tracing_mark_write: E|27550
74817           <...>-27692 (-----) [005] ...1 82316.470647: tracing_mark_write: E|27550
74818           <...>-27692 (-----) [005] ...1 82316.470650: tracing_mark_write: E|27550
74819           <...>-27692 (-----) [005] ...1 82316.470839: tracing_mark_write: E|27550
74820           <...>-27692 (-----) [005] d..1 82316.470852: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74821           <...>-27692 (-----) [005] d..2 82316.470868: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74822          <idle>-0     (-----) [004] .n.1 82316.470873: cpu_idle: state=4294967295 cpu_id=4
74823          <idle>-0     (-----) [004] d..2 82316.470879: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
74824           <...>-27550 (-----) [004] d..2 82316.470899: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74825          <idle>-0     (-----) [004] d..1 82316.470908: cpu_idle: state=0 cpu_id=4
74826           <...>-27692 (-----) [005] d..1 82316.470960: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74827           <...>-27692 (-----) [005] d..2 82316.470969: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
74828          <idle>-0     (-----) [004] .n.1 82316.470975: cpu_idle: state=4294967295 cpu_id=4
74829          <idle>-0     (-----) [004] d..2 82316.470982: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
74830           <...>-27692 (-----) [005] d..2 82316.471007: sched_switch: prev_comm=id.nn.benchmark prev_pid=27692 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
74831           <...>-27550 (-----) [004] ...1 82316.471015: tracing_mark_write: E|27550
74832           <...>-27550 (-----) [004] ...1 82316.471019: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
74833           <...>-27550 (-----) [004] ...1 82316.471025: tracing_mark_write: E|27550
74834          <idle>-0     (-----) [005] d..1 82316.471028: cpu_idle: state=0 cpu_id=5
74835           <...>-27550 (-----) [004] ...1 82316.471029: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
74836           <...>-27550 (-----) [004] ...1 82316.471033: tracing_mark_write: E|27550
74837           <...>-27550 (-----) [004] ...1 82316.471037: tracing_mark_write: E|27550
74838           <...>-27550 (-----) [004] ...1 82316.471152: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
74839           <...>-27550 (-----) [004] ...1 82316.471210: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
74840           <...>-27550 (-----) [004] ...1 82316.471215: tracing_mark_write: E|27550
74841           <...>-27550 (-----) [004] ...1 82316.471219: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
74842           <...>-27550 (-----) [004] ...1 82316.471226: tracing_mark_write: E|27550
74843           <...>-27550 (-----) [004] ...1 82316.471229: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
74844           <...>-27550 (-----) [004] ...1 82316.471233: tracing_mark_write: E|27550
74845           <...>-27550 (-----) [004] ...1 82316.471237: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
74846          <idle>-0     (-----) [005] .n.1 82316.471330: cpu_idle: state=4294967295 cpu_id=5
74847           <...>-27550 (-----) [004] ...1 82316.471331: tracing_mark_write: E|27550
74848           <...>-27550 (-----) [004] ...1 82316.471336: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
74849          <idle>-0     (-----) [005] d..2 82316.471339: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27693 next_prio=110
74850           <...>-27550 (-----) [004] d..2 82316.471352: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
74851          <idle>-0     (-----) [004] d..1 82316.471367: cpu_idle: state=0 cpu_id=4
74852           <...>-27693 (-----) [005] ...1 82316.471402: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
74853           <...>-27693 (-----) [005] ...1 82316.471416: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
74854           <...>-27693 (-----) [005] ...1 82316.471420: tracing_mark_write: E|27550
74855           <...>-27693 (-----) [005] .... 82316.471442: binder_transaction: transaction=1570543 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
74856           <...>-27693 (-----) [005] .... 82316.471445: binder_transaction_alloc_buf: transaction=1570543 data_size=48 offsets_size=0
74857           <...>-27693 (-----) [005] ...2 82316.471448: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
74858           <...>-27693 (-----) [005] d..4 82316.471451: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
74859           <...>-27693 (-----) [005] dn.5 82316.471462: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
74860           <...>-27693 (-----) [005] d..2 82316.471469: sched_switch: prev_comm=id.nn.benchmark prev_pid=27693 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
74861<...>-770 ( 770) [005] .... 82316.471485: binder_transaction_received: transaction=1570543
74862<...>-770 ( 770) [005] ...1 82316.471511: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
74863          <idle>-0     (-----) [000] d.h5 82316.471557: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
74864          <idle>-0     (-----) [000] d.h6 82316.471573: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
74865<...>-770 ( 770) [005] d..2 82316.471578: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
74866          <idle>-0     (-----) [002] .n.1 82316.471579: cpu_idle: state=4294967295 cpu_id=2
74867          <idle>-0     (-----) [002] d..2 82316.471588: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
74868          <idle>-0     (-----) [000] ...1 82316.471591: cpu_idle: state=4294967295 cpu_id=0
74869          <idle>-0     (-----) [000] d..1 82316.471596: cpu_idle: state=0 cpu_id=0
74870 crtc_commit:111-321   (  321) [002] d.h1 82316.471618: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
74871<...>-770 ( 770) [005] ...1 82316.471632: tracing_mark_write: E|770
74872<...>-770 ( 770) [005] .... 82316.471640: binder_transaction: transaction=1570544 dest_node=0 dest_proc=27550 dest_thread=27693 reply=1 flags=0x0 code=0x0
74873<...>-770 ( 770) [005] .... 82316.471643: binder_transaction_alloc_buf: transaction=1570544 data_size=168 offsets_size=32
74874<...>-770 ( 770) [005] .... 82316.471649: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
74875 crtc_commit:111-321   (  321) [002] d..2 82316.471675: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
74876<...>-770 ( 770) [005] d..2 82316.471686: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27693 next_prio=110
74877           <...>-27693 (-----) [005] .... 82316.471697: binder_transaction_received: transaction=1570544
74878           <...>-27693 (-----) [005] ...1 82316.471765: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
74879           <...>-27693 (-----) [005] ...1 82316.471770: tracing_mark_write: E|27550
74880<...>-581 ( 571) [002] d..2 82316.471773: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74881          <idle>-0     (-----) [002] d.s4 82316.471808: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
74882           <...>-27693 (-----) [005] .... 82316.471821: binder_transaction: transaction=1570545 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
74883           <...>-27693 (-----) [005] .... 82316.471824: binder_transaction_alloc_buf: transaction=1570545 data_size=48 offsets_size=0
74884           <...>-27693 (-----) [005] ...2 82316.471827: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
74885           <...>-27693 (-----) [005] d..4 82316.471829: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
74886          <idle>-0     (-----) [002] d.s5 82316.471830: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
74887          <idle>-0     (-----) [003] .n.1 82316.471835: cpu_idle: state=4294967295 cpu_id=3
74888           <...>-27693 (-----) [005] dn.5 82316.471837: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
74889           <...>-27693 (-----) [005] d..2 82316.471844: sched_switch: prev_comm=id.nn.benchmark prev_pid=27693 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
74890          <idle>-0     (-----) [003] d..2 82316.471846: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
74891<...>-770 ( 770) [005] .... 82316.471852: binder_transaction_received: transaction=1570545
74892          <idle>-0     (-----) [002] d..1 82316.471864: cpu_idle: state=0 cpu_id=2
74893          <idle>-0     (-----) [000] d.H5 82316.471869: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
74894<...>-770 ( 770) [005] ...1 82316.471870: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
74895  crtc_event:111-322   (  322) [003] d..2 82316.471877: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74896          <idle>-0     (-----) [003] d..1 82316.471886: cpu_idle: state=0 cpu_id=3
74897          <idle>-0     (-----) [000] d.H6 82316.471894: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
74898          <idle>-0     (-----) [003] .n.1 82316.471899: cpu_idle: state=4294967295 cpu_id=3
74899          <idle>-0     (-----) [003] d..2 82316.471908: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
74900<...>-770 ( 770) [005] d..2 82316.471928: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
74901  crtc_event:111-322   (  322) [003] d..2 82316.471981: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74902          <idle>-0     (-----) [002] dnh2 82316.471987: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
74903          <idle>-0     (-----) [003] d..1 82316.471990: cpu_idle: state=0 cpu_id=3
74904          <idle>-0     (-----) [000] d.H3 82316.471991: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
74905          <idle>-0     (-----) [002] .n.1 82316.471994: cpu_idle: state=4294967295 cpu_id=2
74906<...>-770 ( 770) [005] ...1 82316.471996: tracing_mark_write: E|770
74907<...>-770 ( 770) [005] .... 82316.472003: binder_transaction: transaction=1570546 dest_node=0 dest_proc=27550 dest_thread=27693 reply=1 flags=0x0 code=0x0
74908<...>-770 ( 770) [005] .... 82316.472006: binder_transaction_alloc_buf: transaction=1570546 data_size=168 offsets_size=32
74909          <idle>-0     (-----) [002] d..2 82316.472006: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
74910          <idle>-0     (-----) [000] d.H4 82316.472007: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
74911<...>-770 ( 770) [005] .... 82316.472011: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
74912          <idle>-0     (-----) [001] .n.1 82316.472014: cpu_idle: state=4294967295 cpu_id=1
74913          <idle>-0     (-----) [000] d.s2 82316.472015: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
74914          <idle>-0     (-----) [001] d..2 82316.472026: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
74915          <idle>-0     (-----) [000] dns3 82316.472033: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
74916          <idle>-0     (-----) [000] .n.1 82316.472042: cpu_idle: state=4294967295 cpu_id=0
74917<...>-770 ( 770) [005] d..2 82316.472046: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27693 next_prio=110
74918          <idle>-0     (-----) [000] d..2 82316.472052: 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
74919           <...>-27693 (-----) [005] .... 82316.472056: binder_transaction_received: transaction=1570546
74920         sugov:0-576   (  576) [001] .... 82316.472058: clk_set_rate: pwrcl_clk 748800000
74921<...>-581 ( 571) [002] d..2 82316.472073: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74922         sugov:0-576   (  576) [001] .... 82316.472075: clk_set_rate: cpu3_pwrcl_clk 825600000
74923     rcu_preempt-7     (    7) [000] d..2 82316.472083: 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
74924         sugov:0-576   (  576) [001] .... 82316.472085: clk_set_rate: cpu2_pwrcl_clk 825600000
74925          <idle>-0     (-----) [002] d..1 82316.472087: cpu_idle: state=0 cpu_id=2
74926         sugov:0-576   (  576) [001] .... 82316.472092: clk_set_rate: cpu1_pwrcl_clk 825600000
74927          <idle>-0     (-----) [000] d..1 82316.472097: cpu_idle: state=0 cpu_id=0
74928         sugov:0-576   (  576) [001] .... 82316.472100: clk_set_rate: cpu0_pwrcl_clk 748800000
74929         sugov:0-576   (  576) [001] .... 82316.472213: cpu_frequency: state=748800 cpu_id=0
74930         sugov:0-576   (  576) [001] .... 82316.472235: cpu_frequency: state=748800 cpu_id=1
74931         sugov:0-576   (  576) [001] .... 82316.472240: cpu_frequency: state=748800 cpu_id=2
74932         sugov:0-576   (  576) [001] .... 82316.472244: cpu_frequency: state=748800 cpu_id=3
74933         sugov:0-576   (  576) [001] d..2 82316.472276: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
74934          <idle>-0     (-----) [001] d..1 82316.472286: cpu_idle: state=0 cpu_id=1
74935           <...>-27693 (-----) [005] ...1 82316.472334: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
74936           <...>-27693 (-----) [005] ...1 82316.472344: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
74937           <...>-27693 (-----) [005] ...1 82316.472349: tracing_mark_write: E|27550
74938           <...>-27693 (-----) [005] .... 82316.472413: binder_transaction: transaction=1570547 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
74939           <...>-27693 (-----) [005] .... 82316.472416: binder_transaction_alloc_buf: transaction=1570547 data_size=556 offsets_size=104
74940           <...>-27693 (-----) [005] ...2 82316.472430: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
74941           <...>-27693 (-----) [005] d..4 82316.472433: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74942           <...>-27693 (-----) [005] dn.5 82316.472445: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74943           <...>-27693 (-----) [005] d..2 82316.472453: sched_switch: prev_comm=id.nn.benchmark prev_pid=27693 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74944<...>-5340 ( 788) [005] .... 82316.472462: binder_transaction_received: transaction=1570547
74945<...>-5340 ( 788) [005] ...1 82316.472507: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
74946<...>-5340 ( 788) [005] d..2 82316.472550: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74947<...>-5340 ( 788) [005] d..2 82316.472576: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27693 next_prio=110
74948          <idle>-0     (-----) [000] dnh2 82316.472581: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74949          <idle>-0     (-----) [000] .n.1 82316.472587: cpu_idle: state=4294967295 cpu_id=0
74950          <idle>-0     (-----) [000] d..2 82316.472599: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
74951           <...>-27693 (-----) [005] d..2 82316.472600: sched_switch: prev_comm=id.nn.benchmark prev_pid=27693 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74952          <idle>-0     (-----) [005] d..1 82316.472618: cpu_idle: state=0 cpu_id=5
74953<...>-87 ( 87) [000] d..2 82316.472644: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74954          <idle>-0     (-----) [002] d.h4 82316.472655: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74955          <idle>-0     (-----) [000] d..1 82316.472655: cpu_idle: state=0 cpu_id=0
74956          <idle>-0     (-----) [002] dnh5 82316.472677: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74957          <idle>-0     (-----) [002] .n.1 82316.472689: cpu_idle: state=4294967295 cpu_id=2
74958          <idle>-0     (-----) [002] d..2 82316.472702: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
74959<...>-86 ( 86) [002] d.h4 82316.472733: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74960          <idle>-0     (-----) [005] dnh2 82316.472756: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
74961          <idle>-0     (-----) [005] .n.1 82316.472760: cpu_idle: state=4294967295 cpu_id=5
74962          <idle>-0     (-----) [005] d..2 82316.472769: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
74963<...>-86 ( 86) [002] d..2 82316.472800: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74964          <idle>-0     (-----) [002] d..1 82316.472815: cpu_idle: state=0 cpu_id=2
74965<...>-5340 ( 788) [005] d..1 82316.472820: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
74966          <idle>-0     (-----) [000] dnh2 82316.472847: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
74967          <idle>-0     (-----) [000] .n.1 82316.472853: cpu_idle: state=4294967295 cpu_id=0
74968          <idle>-0     (-----) [000] d..2 82316.472865: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
74969 neuralnetworks@-13088 (  788) [000] d..2 82316.472908: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74970          <idle>-0     (-----) [000] d..1 82316.472920: cpu_idle: state=0 cpu_id=0
74971<...>-5340 ( 788) [005] d..2 82316.472967: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74972          <idle>-0     (-----) [000] dnh2 82316.472989: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
74973<...>-5340 ( 788) [005] d..2 82316.472994: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
74974          <idle>-0     (-----) [000] .n.1 82316.472996: cpu_idle: state=4294967295 cpu_id=0
74975          <idle>-0     (-----) [000] d..2 82316.473007: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
74976          <idle>-0     (-----) [005] d..1 82316.473008: cpu_idle: state=0 cpu_id=5
74977          <idle>-0     (-----) [002] d.h4 82316.473048: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74978<...>-87 ( 87) [000] d..2 82316.473049: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
74979          <idle>-0     (-----) [002] dnh5 82316.473059: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
74980          <idle>-0     (-----) [000] d..1 82316.473061: cpu_idle: state=0 cpu_id=0
74981          <idle>-0     (-----) [002] .n.1 82316.473069: cpu_idle: state=4294967295 cpu_id=2
74982          <idle>-0     (-----) [002] d..2 82316.473082: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
74983<...>-86 ( 86) [002] d..2 82316.473118: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
74984          <idle>-0     (-----) [002] d..1 82316.473132: cpu_idle: state=0 cpu_id=2
74985          <idle>-0     (-----) [005] ...1 82316.473335: cpu_idle: state=4294967295 cpu_id=5
74986          <idle>-0     (-----) [005] d..1 82316.473339: cpu_idle: state=0 cpu_id=5
74987          <idle>-0     (-----) [003] d.h2 82316.473712: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
74988          <idle>-0     (-----) [003] dnh3 82316.473730: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
74989          <idle>-0     (-----) [003] .n.1 82316.473739: cpu_idle: state=4294967295 cpu_id=3
74990          <idle>-0     (-----) [003] d..2 82316.473749: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
74991        DispSync-8879  ( 8858) [003] d..1 82316.473772: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
74992        DispSync-8879  ( 8858) [003] d..2 82316.473798: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
74993          <idle>-0     (-----) [001] .n.1 82316.473804: cpu_idle: state=4294967295 cpu_id=1
74994          <idle>-0     (-----) [001] d..2 82316.473812: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
74995        DispSync-8879  ( 8858) [003] d..2 82316.473834: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
74996          <idle>-0     (-----) [003] d..1 82316.473848: cpu_idle: state=0 cpu_id=3
74997  appEventThread-8881  ( 8858) [001] d..3 82316.473877: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
74998  appEventThread-8881  ( 8858) [001] d..4 82316.473903: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
74999          <idle>-0     (-----) [000] .n.1 82316.473908: cpu_idle: state=4294967295 cpu_id=0
75000          <idle>-0     (-----) [000] d..2 82316.473921: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
75001  appEventThread-8881  ( 8858) [001] d..2 82316.473949: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75002          <idle>-0     (-----) [001] d..1 82316.473961: cpu_idle: state=0 cpu_id=1
75003<...>-9105 ( 9105) [000] .... 82316.474258: binder_transaction: transaction=1570550 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
75004<...>-9105 ( 9105) [000] .... 82316.474265: binder_transaction_alloc_buf: transaction=1570550 data_size=80 offsets_size=0
75005<...>-9105 ( 9105) [000] d..4 82316.474271: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
75006<...>-9105 ( 9105) [000] d..5 82316.474308: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
75007          <idle>-0     (-----) [001] .n.1 82316.474312: cpu_idle: state=4294967295 cpu_id=1
75008          <idle>-0     (-----) [001] d..2 82316.474323: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
75009<...>-13083 ( 8858) [001] .... 82316.474331: binder_transaction_received: transaction=1570550
75010<...>-9105 ( 9105) [000] d..3 82316.474348: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
75011<...>-13083 ( 8858) [001] d..1 82316.474368: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
75012<...>-9105 ( 9105) [000] d..4 82316.474369: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
75013          <idle>-0     (-----) [002] .n.1 82316.474376: cpu_idle: state=4294967295 cpu_id=2
75014          <idle>-0     (-----) [002] d..2 82316.474389: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
75015<...>-13083 ( 8858) [001] d..2 82316.474395: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
75016          <idle>-0     (-----) [003] .n.1 82316.474401: cpu_idle: state=4294967295 cpu_id=3
75017          <idle>-0     (-----) [003] d..2 82316.474412: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
75018<...>-13083 ( 8858) [001] d..2 82316.474443: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75019    RenderThread-9436  ( 9105) [002] d..2 82316.474450: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75020          <idle>-0     (-----) [001] d..1 82316.474454: cpu_idle: state=0 cpu_id=1
75021          <idle>-0     (-----) [002] d..1 82316.474465: cpu_idle: state=0 cpu_id=2
75022  appEventThread-8881  ( 8858) [003] d..2 82316.474470: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75023          <idle>-0     (-----) [003] d..1 82316.474482: cpu_idle: state=0 cpu_id=3
75024<...>-9105 ( 9105) [000] d..3 82316.474496: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
75025<...>-9105 ( 9105) [000] d..4 82316.474515: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
75026          <idle>-0     (-----) [002] .n.1 82316.474522: cpu_idle: state=4294967295 cpu_id=2
75027          <idle>-0     (-----) [002] d..2 82316.474534: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
75028<...>-9105 ( 9105) [000] d..2 82316.474553: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75029          <idle>-0     (-----) [000] d..1 82316.474572: cpu_idle: state=0 cpu_id=0
75030    RenderThread-9436  ( 9105) [002] d..1 82316.474658: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
75031    RenderThread-9436  ( 9105) [002] d..2 82316.474678: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
75032          <idle>-0     (-----) [000] .n.1 82316.474685: cpu_idle: state=4294967295 cpu_id=0
75033          <idle>-0     (-----) [000] d..2 82316.474700: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
75034    RenderThread-9436  ( 9105) [002] d.h3 82316.474712: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75035          <idle>-0     (-----) [005] dnh2 82316.474732: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75036          <idle>-0     (-----) [005] .n.1 82316.474736: cpu_idle: state=4294967295 cpu_id=5
75037          <idle>-0     (-----) [005] d..2 82316.474744: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75038<...>-9105 ( 9105) [000] d..2 82316.474788: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75039<...>-5340 ( 788) [005] d..1 82316.474793: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75040          <idle>-0     (-----) [000] d..1 82316.474804: cpu_idle: state=0 cpu_id=0
75041    RenderThread-9436  ( 9105) [002] .... 82316.474817: binder_transaction: transaction=1570551 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
75042    RenderThread-9436  ( 9105) [002] .... 82316.474823: binder_transaction_alloc_buf: transaction=1570551 data_size=104 offsets_size=0
75043          <idle>-0     (-----) [000] dnh2 82316.474824: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75044    RenderThread-9436  ( 9105) [002] d..4 82316.474829: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
75045          <idle>-0     (-----) [000] .n.1 82316.474831: cpu_idle: state=4294967295 cpu_id=0
75046          <idle>-0     (-----) [000] d..2 82316.474876: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
75047    RenderThread-9436  ( 9105) [002] dn.5 82316.474883: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
75048<...>-5340 ( 788) [005] ...1 82316.474887: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
75049<...>-5340 ( 788) [005] ...1 82316.474891: tracing_mark_write: E|788
75050    RenderThread-9436  ( 9105) [002] d..2 82316.474894: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
75051<...>-13083 ( 8858) [002] .... 82316.474903: binder_transaction_received: transaction=1570551
75052<...>-5340 ( 788) [005] .... 82316.474907: binder_transaction: transaction=1570552 dest_node=1570548 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
75053<...>-5340 ( 788) [005] .... 82316.474910: binder_transaction_alloc_buf: transaction=1570552 data_size=60 offsets_size=0
75054<...>-5340 ( 788) [005] d..4 82316.474913: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
75055<...>-5340 ( 788) [005] d..5 82316.474926: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
75056          <idle>-0     (-----) [004] .n.1 82316.474932: cpu_idle: state=4294967295 cpu_id=4
75057 neuralnetworks@-13088 (  788) [000] d..2 82316.474937: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75058          <idle>-0     (-----) [004] d..2 82316.474941: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
75059           <...>-27571 (-----) [004] .... 82316.474946: binder_transaction_received: transaction=1570552
75060          <idle>-0     (-----) [000] d..1 82316.474950: cpu_idle: state=0 cpu_id=0
75061<...>-5340 ( 788) [005] ...1 82316.474951: tracing_mark_write: E|788
75062<...>-5340 ( 788) [005] .... 82316.474957: binder_transaction: transaction=1570553 dest_node=0 dest_proc=27550 dest_thread=27693 reply=1 flags=0x0 code=0x0
75063<...>-5340 ( 788) [005] .... 82316.474960: binder_transaction_alloc_buf: transaction=1570553 data_size=8 offsets_size=0
75064<...>-5340 ( 788) [005] d..2 82316.474961: sched_waking: comm=id.nn.benchmark pid=27693 prio=110 target_cpu=005
75065           <...>-27571 (-----) [004] ...1 82316.474964: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
75066<...>-5340 ( 788) [005] d..3 82316.474969: sched_wakeup: comm=id.nn.benchmark pid=27693 prio=110 target_cpu=005
75067           <...>-27571 (-----) [004] ...1 82316.474970: tracing_mark_write: E|27550
75068<...>-5340 ( 788) [005] .... 82316.474971: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
75069<...>-13083 ( 8858) [002] .... 82316.474986: binder_transaction: transaction=1570554 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
75070<...>-13083 ( 8858) [002] .... 82316.474991: binder_transaction_alloc_buf: transaction=1570554 data_size=52 offsets_size=8
75071           <...>-27571 (-----) [004] d..2 82316.474999: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75072          <idle>-0     (-----) [004] d..1 82316.475006: cpu_idle: state=0 cpu_id=4
75073<...>-5340 ( 788) [005] d..2 82316.475014: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27693 next_prio=110
75074           <...>-27693 (-----) [005] .... 82316.475024: binder_transaction_received: transaction=1570553
75075<...>-13083 ( 8858) [002] d..2 82316.475046: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
75076    RenderThread-9436  ( 9105) [002] .... 82316.475056: binder_transaction_received: transaction=1570554
75077           <...>-27693 (-----) [005] ...1 82316.475061: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
75078           <...>-27693 (-----) [005] ...1 82316.475066: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
75079           <...>-27693 (-----) [005] ...1 82316.475092: tracing_mark_write: E|27550
75080           <...>-27693 (-----) [005] ...1 82316.475096: tracing_mark_write: E|27550
75081           <...>-27693 (-----) [005] ...1 82316.475100: tracing_mark_write: E|27550
75082          <idle>-0     (-----) [001] d.s2 82316.475135: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
75083          <idle>-0     (-----) [001] dns3 82316.475159: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
75084          <idle>-0     (-----) [001] dns3 82316.475168: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
75085          <idle>-0     (-----) [001] dns4 82316.475203: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75086          <idle>-0     (-----) [001] .n.1 82316.475212: cpu_idle: state=4294967295 cpu_id=1
75087          <idle>-0     (-----) [001] d..2 82316.475222: 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
75088     rcu_preempt-7     (    7) [001] d..2 82316.475261: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
75089     rcu_preempt-7     (    7) [001] d..3 82316.475278: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
75090     rcu_preempt-7     (    7) [001] d..2 82316.475295: 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
75091         rcuop/2-29    (   29) [001] d..2 82316.475301: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
75092           <...>-27693 (-----) [005] ...1 82316.475326: tracing_mark_write: E|27550
75093         rcuop/2-29    (   29) [001] d..3 82316.475335: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
75094           <...>-27693 (-----) [005] d..1 82316.475339: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75095         rcuop/2-29    (   29) [001] d..2 82316.475348: 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
75096           <...>-27693 (-----) [005] d..2 82316.475355: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75097          <idle>-0     (-----) [004] .n.1 82316.475360: cpu_idle: state=4294967295 cpu_id=4
75098         rcuop/3-37    (   37) [001] d..2 82316.475367: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
75099          <idle>-0     (-----) [004] d..2 82316.475367: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
75100<...>-8 ( 8) [001] d..2 82316.475373: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
75101           <...>-27550 (-----) [004] d..2 82316.475390: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75102          <idle>-0     (-----) [004] d..1 82316.475399: cpu_idle: state=0 cpu_id=4
75103<...>-8 ( 8) [001] d..3 82316.475410: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
75104<...>-8 ( 8) [001] d..2 82316.475421: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
75105<...>-46 ( 46) [001] d..2 82316.475432: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
75106           <...>-27693 (-----) [005] d..1 82316.475445: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75107<...>-46 ( 46) [001] d..3 82316.475446: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
75108           <...>-27693 (-----) [005] d..2 82316.475454: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75109<...>-46 ( 46) [001] d..2 82316.475456: 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
75110          <idle>-0     (-----) [004] .n.1 82316.475460: cpu_idle: state=4294967295 cpu_id=4
75111          <idle>-0     (-----) [004] d..2 82316.475468: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
75112<...>-8 ( 8) [001] d..2 82316.475484: 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
75113           <...>-27693 (-----) [005] d..2 82316.475494: sched_switch: prev_comm=id.nn.benchmark prev_pid=27693 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
75114          <idle>-0     (-----) [001] d..1 82316.475501: cpu_idle: state=0 cpu_id=1
75115           <...>-27550 (-----) [004] ...1 82316.475516: tracing_mark_write: E|27550
75116           <...>-27550 (-----) [004] ...1 82316.475521: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
75117          <idle>-0     (-----) [005] d..1 82316.475523: cpu_idle: state=0 cpu_id=5
75118           <...>-27550 (-----) [004] ...1 82316.475526: tracing_mark_write: E|27550
75119           <...>-27550 (-----) [004] ...1 82316.475530: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
75120           <...>-27550 (-----) [004] ...1 82316.475534: tracing_mark_write: E|27550
75121           <...>-27550 (-----) [004] ...1 82316.475538: tracing_mark_write: E|27550
75122           <...>-27550 (-----) [004] ...1 82316.475650: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
75123           <...>-27550 (-----) [004] ...1 82316.475707: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
75124           <...>-27550 (-----) [004] ...1 82316.475712: tracing_mark_write: E|27550
75125           <...>-27550 (-----) [004] ...1 82316.475716: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
75126           <...>-27550 (-----) [004] ...1 82316.475721: tracing_mark_write: E|27550
75127           <...>-27550 (-----) [004] ...1 82316.475724: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
75128           <...>-27550 (-----) [004] ...1 82316.475728: tracing_mark_write: E|27550
75129           <...>-27550 (-----) [004] ...1 82316.475732: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
75130          <idle>-0     (-----) [005] .n.1 82316.475819: cpu_idle: state=4294967295 cpu_id=5
75131           <...>-27550 (-----) [004] ...1 82316.475820: tracing_mark_write: E|27550
75132           <...>-27550 (-----) [004] ...1 82316.475825: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
75133          <idle>-0     (-----) [005] d..2 82316.475828: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27694 next_prio=110
75134           <...>-27550 (-----) [004] d..2 82316.475842: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75135          <idle>-0     (-----) [004] d..1 82316.475856: cpu_idle: state=0 cpu_id=4
75136           <...>-27694 (-----) [005] ...1 82316.475889: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
75137           <...>-27694 (-----) [005] ...1 82316.475904: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
75138           <...>-27694 (-----) [005] ...1 82316.475908: tracing_mark_write: E|27550
75139           <...>-27694 (-----) [005] .... 82316.475929: binder_transaction: transaction=1570555 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
75140           <...>-27694 (-----) [005] .... 82316.475933: binder_transaction_alloc_buf: transaction=1570555 data_size=48 offsets_size=0
75141           <...>-27694 (-----) [005] ...2 82316.475936: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
75142           <...>-27694 (-----) [005] d..4 82316.475938: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
75143           <...>-27694 (-----) [005] dn.5 82316.475949: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
75144           <...>-27694 (-----) [005] d..2 82316.475956: sched_switch: prev_comm=id.nn.benchmark prev_pid=27694 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
75145<...>-770 ( 770) [005] .... 82316.475966: binder_transaction_received: transaction=1570555
75146<...>-770 ( 770) [005] ...1 82316.475989: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
75147<...>-770 ( 770) [005] d..2 82316.476066: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
75148<...>-770 ( 770) [005] ...1 82316.476108: tracing_mark_write: E|770
75149<...>-770 ( 770) [005] .... 82316.476116: binder_transaction: transaction=1570556 dest_node=0 dest_proc=27550 dest_thread=27694 reply=1 flags=0x0 code=0x0
75150<...>-770 ( 770) [005] .... 82316.476118: binder_transaction_alloc_buf: transaction=1570556 data_size=168 offsets_size=32
75151<...>-770 ( 770) [005] .... 82316.476125: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
75152<...>-770 ( 770) [005] d..2 82316.476161: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27694 next_prio=110
75153    RenderThread-9436  ( 9105) [002] d.h2 82316.476164: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
75154           <...>-27694 (-----) [005] .... 82316.476172: binder_transaction_received: transaction=1570556
75155    RenderThread-9436  ( 9105) [002] d..2 82316.476203: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
75156           <...>-27694 (-----) [005] ...1 82316.476245: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
75157           <...>-27694 (-----) [005] ...1 82316.476250: tracing_mark_write: E|27550
75158           <...>-27694 (-----) [005] .... 82316.476264: binder_transaction: transaction=1570557 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
75159           <...>-27694 (-----) [005] .... 82316.476267: binder_transaction_alloc_buf: transaction=1570557 data_size=48 offsets_size=0
75160           <...>-27694 (-----) [005] ...2 82316.476269: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
75161           <...>-27694 (-----) [005] d..4 82316.476271: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
75162           <...>-27694 (-----) [005] dn.5 82316.476281: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
75163           <...>-27694 (-----) [005] d..2 82316.476288: sched_switch: prev_comm=id.nn.benchmark prev_pid=27694 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
75164<...>-770 ( 770) [005] .... 82316.476296: binder_transaction_received: transaction=1570557
75165<...>-581 ( 571) [002] d..2 82316.476306: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75166<...>-770 ( 770) [005] ...1 82316.476313: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
75167          <idle>-0     (-----) [000] d.h3 82316.476316: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
75168          <idle>-0     (-----) [002] d.h3 82316.476319: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
75169          <idle>-0     (-----) [002] d.h4 82316.476331: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
75170          <idle>-0     (-----) [000] dnh4 82316.476336: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
75171          <idle>-0     (-----) [002] dnh4 82316.476336: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
75172          <idle>-0     (-----) [000] .n.1 82316.476349: cpu_idle: state=4294967295 cpu_id=0
75173          <idle>-0     (-----) [002] d..2 82316.476352: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
75174          <idle>-0     (-----) [000] d..2 82316.476363: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
75175<...>-770 ( 770) [005] d..2 82316.476372: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
75176 kgsl_worker_thr-258   (  258) [000] d.h2 82316.476411: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
75177<...>-770 ( 770) [005] ...1 82316.476423: tracing_mark_write: E|770
75178<...>-770 ( 770) [005] .... 82316.476430: binder_transaction: transaction=1570558 dest_node=0 dest_proc=27550 dest_thread=27694 reply=1 flags=0x0 code=0x0
75179<...>-770 ( 770) [005] .... 82316.476433: binder_transaction_alloc_buf: transaction=1570558 data_size=168 offsets_size=32
75180 kgsl_worker_thr-258   (  258) [000] d..2 82316.476439: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
75181<...>-770 ( 770) [005] .... 82316.476439: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
75182<...>-770 ( 770) [005] d..2 82316.476474: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27694 next_prio=110
75183 kgsl_worker_thr-258   (  258) [000] d..3 82316.476482: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
75184           <...>-27694 (-----) [005] .... 82316.476485: binder_transaction_received: transaction=1570558
75185 kgsl_worker_thr-258   (  258) [000] d..2 82316.476501: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
75186  kworker/u16:13-1147  ( 1147) [000] d..2 82316.476540: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
75187    RenderThread-9436  ( 9105) [002] .... 82316.476573: binder_transaction: transaction=1570559 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
75188    RenderThread-9436  ( 9105) [002] .... 82316.476579: binder_transaction_alloc_buf: transaction=1570559 data_size=192 offsets_size=8
75189    RenderThread-9436  ( 9105) [002] d..4 82316.476592: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
75190    RenderThread-9436  ( 9105) [002] dn.5 82316.476609: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
75191    RenderThread-9436  ( 9105) [002] d..2 82316.476620: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
75192<...>-581 ( 571) [000] d..2 82316.476627: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75193<...>-13083 ( 8858) [002] .... 82316.476630: binder_transaction_received: transaction=1570559
75194          <idle>-0     (-----) [000] d..1 82316.476648: cpu_idle: state=0 cpu_id=0
75195           <...>-27694 (-----) [005] ...1 82316.476760: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
75196           <...>-27694 (-----) [005] ...1 82316.476771: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
75197           <...>-27694 (-----) [005] ...1 82316.476775: tracing_mark_write: E|27550
75198<...>-13083 ( 8858) [002] .... 82316.476799: binder_transaction: transaction=1570560 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
75199<...>-13083 ( 8858) [002] .... 82316.476805: binder_transaction_alloc_buf: transaction=1570560 data_size=68 offsets_size=0
75200           <...>-27694 (-----) [005] .... 82316.476837: binder_transaction: transaction=1570561 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
75201           <...>-27694 (-----) [005] .... 82316.476841: binder_transaction_alloc_buf: transaction=1570561 data_size=556 offsets_size=104
75202<...>-13083 ( 8858) [002] d..2 82316.476853: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
75203           <...>-27694 (-----) [005] ...2 82316.476857: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
75204           <...>-27694 (-----) [005] d..4 82316.476859: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75205    RenderThread-9436  ( 9105) [002] .... 82316.476864: binder_transaction_received: transaction=1570560
75206           <...>-27694 (-----) [005] dn.5 82316.476870: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75207           <...>-27694 (-----) [005] d..2 82316.476877: sched_switch: prev_comm=id.nn.benchmark prev_pid=27694 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75208<...>-5340 ( 788) [005] .... 82316.476887: binder_transaction_received: transaction=1570561
75209<...>-5340 ( 788) [005] ...1 82316.476934: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
75210    RenderThread-9436  ( 9105) [002] d..2 82316.476966: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75211<...>-5340 ( 788) [005] d..2 82316.476981: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75212          <idle>-0     (-----) [002] d..1 82316.476989: cpu_idle: state=0 cpu_id=2
75213<...>-5340 ( 788) [005] d..2 82316.477006: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27694 next_prio=110
75214          <idle>-0     (-----) [000] dnh2 82316.477011: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75215          <idle>-0     (-----) [000] .n.1 82316.477019: cpu_idle: state=4294967295 cpu_id=0
75216           <...>-27694 (-----) [005] d..2 82316.477028: sched_switch: prev_comm=id.nn.benchmark prev_pid=27694 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75217          <idle>-0     (-----) [000] d..2 82316.477032: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
75218          <idle>-0     (-----) [005] d..1 82316.477046: cpu_idle: state=0 cpu_id=5
75219<...>-87 ( 87) [000] d..2 82316.477080: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75220          <idle>-0     (-----) [002] d.h4 82316.477091: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75221          <idle>-0     (-----) [000] d..1 82316.477095: cpu_idle: state=0 cpu_id=0
75222          <idle>-0     (-----) [002] dnh5 82316.477112: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75223          <idle>-0     (-----) [002] .n.1 82316.477125: cpu_idle: state=4294967295 cpu_id=2
75224          <idle>-0     (-----) [002] d..2 82316.477139: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
75225<...>-86 ( 86) [002] d.h4 82316.477172: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75226          <idle>-0     (-----) [005] dnh2 82316.477194: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75227          <idle>-0     (-----) [005] .n.1 82316.477198: cpu_idle: state=4294967295 cpu_id=5
75228          <idle>-0     (-----) [005] d..2 82316.477207: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75229<...>-86 ( 86) [002] d..2 82316.477239: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75230          <idle>-0     (-----) [002] d..1 82316.477255: cpu_idle: state=0 cpu_id=2
75231<...>-5340 ( 788) [005] d..1 82316.477260: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75232          <idle>-0     (-----) [000] dnh2 82316.477286: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75233          <idle>-0     (-----) [000] .n.1 82316.477294: cpu_idle: state=4294967295 cpu_id=0
75234          <idle>-0     (-----) [000] d..2 82316.477305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
75235 neuralnetworks@-13088 (  788) [000] d..2 82316.477357: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75236          <idle>-0     (-----) [000] d..1 82316.477372: cpu_idle: state=0 cpu_id=0
75237<...>-5340 ( 788) [005] d..2 82316.477408: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75238          <idle>-0     (-----) [000] dnh2 82316.477431: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75239<...>-5340 ( 788) [005] d..2 82316.477435: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75240          <idle>-0     (-----) [000] .n.1 82316.477439: cpu_idle: state=4294967295 cpu_id=0
75241          <idle>-0     (-----) [005] d..1 82316.477449: cpu_idle: state=0 cpu_id=5
75242          <idle>-0     (-----) [000] d..2 82316.477450: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
75243          <idle>-0     (-----) [002] d.h4 82316.477491: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75244<...>-87 ( 87) [000] d..2 82316.477491: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75245          <idle>-0     (-----) [002] dnh5 82316.477502: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75246          <idle>-0     (-----) [000] d..1 82316.477505: cpu_idle: state=0 cpu_id=0
75247          <idle>-0     (-----) [002] .n.1 82316.477513: cpu_idle: state=4294967295 cpu_id=2
75248          <idle>-0     (-----) [002] d..2 82316.477525: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
75249<...>-86 ( 86) [002] d..2 82316.477560: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75250          <idle>-0     (-----) [002] d..1 82316.477574: cpu_idle: state=0 cpu_id=2
75251          <idle>-0     (-----) [003] d.h2 82316.477725: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
75252          <idle>-0     (-----) [003] dnh3 82316.477741: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
75253          <idle>-0     (-----) [003] .n.1 82316.477750: cpu_idle: state=4294967295 cpu_id=3
75254          <idle>-0     (-----) [003] d..2 82316.477761: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
75255          <idle>-0     (-----) [005] ...1 82316.477775: cpu_idle: state=4294967295 cpu_id=5
75256        DispSync-8879  ( 8858) [003] d..1 82316.477776: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
75257          <idle>-0     (-----) [005] d..1 82316.477779: cpu_idle: state=0 cpu_id=5
75258        DispSync-8879  ( 8858) [003] d..2 82316.477793: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
75259          <idle>-0     (-----) [002] .n.1 82316.477800: cpu_idle: state=4294967295 cpu_id=2
75260          <idle>-0     (-----) [002] d..2 82316.477811: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
75261        DispSync-8879  ( 8858) [003] d..2 82316.477823: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75262          <idle>-0     (-----) [003] d..1 82316.477837: cpu_idle: state=0 cpu_id=3
75263   sfEventThread-8882  ( 8858) [002] d..3 82316.477856: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
75264   sfEventThread-8882  ( 8858) [002] d..4 82316.477880: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
75265          <idle>-0     (-----) [003] .n.1 82316.477885: cpu_idle: state=4294967295 cpu_id=3
75266          <idle>-0     (-----) [003] d..2 82316.477896: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
75267   sfEventThread-8882  ( 8858) [002] d..2 82316.477918: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75268          <idle>-0     (-----) [002] d..1 82316.477935: cpu_idle: state=0 cpu_id=2
75269  surfaceflinger-8858  ( 8858) [003] d..1 82316.478262: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
75270  surfaceflinger-8858  ( 8858) [003] d..2 82316.478284: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
75271          <idle>-0     (-----) [002] .n.1 82316.478292: cpu_idle: state=4294967295 cpu_id=2
75272          <idle>-0     (-----) [002] d..2 82316.478302: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
75273   sfEventThread-8882  ( 8858) [002] d..2 82316.478340: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75274          <idle>-0     (-----) [002] d..1 82316.478352: cpu_idle: state=0 cpu_id=2
75275  surfaceflinger-8858  ( 8858) [003] d.s2 82316.478489: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
75276  surfaceflinger-8858  ( 8858) [003] d.s3 82316.478509: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
75277          <idle>-0     (-----) [000] .n.1 82316.478515: cpu_idle: state=4294967295 cpu_id=0
75278          <idle>-0     (-----) [000] d..2 82316.478530: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
75279  surfaceflinger-8858  ( 8858) [003] ...1 82316.478598: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
75280  surfaceflinger-8858  ( 8858) [003] ...1 82316.478606: tracing_mark_write: E|8858
75281  surfaceflinger-8858  ( 8858) [003] .... 82316.478675: binder_transaction: transaction=1570564 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
75282  surfaceflinger-8858  ( 8858) [003] .... 82316.478680: binder_transaction_alloc_buf: transaction=1570564 data_size=540 offsets_size=96
75283  kworker/u16:13-1147  ( 1147) [000] d..2 82316.478705: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75284  surfaceflinger-8858  ( 8858) [003] ...2 82316.478707: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
75285  surfaceflinger-8858  ( 8858) [003] d..4 82316.478715: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
75286          <idle>-0     (-----) [000] d..1 82316.478721: cpu_idle: state=0 cpu_id=0
75287  surfaceflinger-8858  ( 8858) [003] d..5 82316.478736: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
75288          <idle>-0     (-----) [001] .n.1 82316.478743: cpu_idle: state=4294967295 cpu_id=1
75289          <idle>-0     (-----) [001] d..2 82316.478756: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
75290 [email protected]   (  619) [001] .... 82316.478767: binder_transaction_received: transaction=1570564
75291  surfaceflinger-8858  ( 8858) [003] d..2 82316.478771: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75292          <idle>-0     (-----) [003] d..1 82316.478790: cpu_idle: state=0 cpu_id=3
75293 [email protected]   (  619) [001] ...1 82316.478813: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
75294 [email protected]   (  619) [001] ...1 82316.478935: tracing_mark_write: B|619|HWCSession::PresentDisplay::
75295 [email protected]   (  619) [001] ...1 82316.479126: tracing_mark_write: B|619|HWDeviceDRM::Commit::
75296 [email protected]   (  619) [001] ...1 82316.479140: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
75297          <idle>-0     (-----) [002] d.h4 82316.479158: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75298          <idle>-0     (-----) [005] dnh2 82316.479180: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75299          <idle>-0     (-----) [005] .n.1 82316.479184: cpu_idle: state=4294967295 cpu_id=5
75300          <idle>-0     (-----) [005] d..2 82316.479193: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75301          <idle>-0     (-----) [002] ...1 82316.479204: cpu_idle: state=4294967295 cpu_id=2
75302          <idle>-0     (-----) [002] d..1 82316.479211: cpu_idle: state=0 cpu_id=2
75303<...>-5340 ( 788) [005] d..1 82316.479242: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75304          <idle>-0     (-----) [000] dnh2 82316.479270: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75305          <idle>-0     (-----) [000] .n.1 82316.479278: cpu_idle: state=4294967295 cpu_id=0
75306          <idle>-0     (-----) [000] d..2 82316.479313: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
75307<...>-5340 ( 788) [005] ...1 82316.479338: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
75308<...>-5340 ( 788) [005] ...1 82316.479342: tracing_mark_write: E|788
75309<...>-5340 ( 788) [005] .... 82316.479359: binder_transaction: transaction=1570565 dest_node=1570562 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
75310 neuralnetworks@-13088 (  788) [000] d..2 82316.479361: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75311<...>-5340 ( 788) [005] .... 82316.479362: binder_transaction_alloc_buf: transaction=1570565 data_size=60 offsets_size=0
75312<...>-5340 ( 788) [005] d..4 82316.479366: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
75313          <idle>-0     (-----) [000] d..1 82316.479375: cpu_idle: state=0 cpu_id=0
75314<...>-5340 ( 788) [005] d..5 82316.479379: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
75315          <idle>-0     (-----) [004] .n.1 82316.479385: cpu_idle: state=4294967295 cpu_id=4
75316          <idle>-0     (-----) [004] d..2 82316.479394: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
75317           <...>-27571 (-----) [004] .... 82316.479399: binder_transaction_received: transaction=1570565
75318           <...>-27571 (-----) [004] ...1 82316.479419: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
75319           <...>-27571 (-----) [004] ...1 82316.479426: tracing_mark_write: E|27550
75320<...>-5340 ( 788) [005] ...1 82316.479426: tracing_mark_write: E|788
75321<...>-5340 ( 788) [005] .... 82316.479433: binder_transaction: transaction=1570566 dest_node=0 dest_proc=27550 dest_thread=27694 reply=1 flags=0x0 code=0x0
75322<...>-5340 ( 788) [005] .... 82316.479435: binder_transaction_alloc_buf: transaction=1570566 data_size=8 offsets_size=0
75323<...>-5340 ( 788) [005] d..2 82316.479437: sched_waking: comm=id.nn.benchmark pid=27694 prio=110 target_cpu=005
75324<...>-5340 ( 788) [005] d..3 82316.479445: sched_wakeup: comm=id.nn.benchmark pid=27694 prio=110 target_cpu=005
75325<...>-5340 ( 788) [005] .... 82316.479447: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
75326           <...>-27571 (-----) [004] d..2 82316.479456: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75327          <idle>-0     (-----) [004] d..1 82316.479463: cpu_idle: state=0 cpu_id=4
75328<...>-5340 ( 788) [005] d..2 82316.479491: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27694 next_prio=110
75329           <...>-27694 (-----) [005] .... 82316.479501: binder_transaction_received: transaction=1570566
75330           <...>-27694 (-----) [005] ...1 82316.479537: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
75331           <...>-27694 (-----) [005] ...1 82316.479543: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
75332           <...>-27694 (-----) [005] ...1 82316.479569: tracing_mark_write: E|27550
75333           <...>-27694 (-----) [005] ...1 82316.479573: tracing_mark_write: E|27550
75334           <...>-27694 (-----) [005] ...1 82316.479576: tracing_mark_write: E|27550
75335           <...>-27694 (-----) [005] ...1 82316.479769: tracing_mark_write: E|27550
75336           <...>-27694 (-----) [005] d..1 82316.479781: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75337           <...>-27694 (-----) [005] d..2 82316.479797: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75338          <idle>-0     (-----) [004] .n.1 82316.479803: cpu_idle: state=4294967295 cpu_id=4
75339          <idle>-0     (-----) [004] d..2 82316.479809: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
75340           <...>-27550 (-----) [004] d..2 82316.479829: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75341          <idle>-0     (-----) [004] d..1 82316.479838: cpu_idle: state=0 cpu_id=4
75342 [email protected]   (  619) [001] d..2 82316.479877: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
75343           <...>-27694 (-----) [005] d..1 82316.479889: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75344           <...>-27694 (-----) [005] d..2 82316.479898: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75345          <idle>-0     (-----) [004] .n.1 82316.479903: cpu_idle: state=4294967295 cpu_id=4
75346 [email protected]   (  619) [001] d..3 82316.479904: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
75347          <idle>-0     (-----) [002] .n.1 82316.479909: cpu_idle: state=4294967295 cpu_id=2
75348          <idle>-0     (-----) [004] d..2 82316.479911: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
75349          <idle>-0     (-----) [002] d..2 82316.479921: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
75350           <...>-27694 (-----) [005] d..2 82316.479938: sched_switch: prev_comm=id.nn.benchmark prev_pid=27694 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
75351           <...>-27550 (-----) [004] ...1 82316.479945: tracing_mark_write: E|27550
75352           <...>-27550 (-----) [004] ...1 82316.479949: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
75353           <...>-27550 (-----) [004] ...1 82316.479955: tracing_mark_write: E|27550
75354           <...>-27550 (-----) [004] ...1 82316.479959: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
75355          <idle>-0     (-----) [005] d..1 82316.479959: cpu_idle: state=0 cpu_id=5
75356           <...>-27550 (-----) [004] ...1 82316.479963: tracing_mark_write: E|27550
75357           <...>-27550 (-----) [004] ...1 82316.479967: tracing_mark_write: E|27550
75358 [email protected]   (  619) [001] ...1 82316.480027: tracing_mark_write: E|619
75359 [email protected]   (  619) [001] ...1 82316.480035: tracing_mark_write: E|619
75360           <...>-27550 (-----) [004] ...1 82316.480079: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
75361 [email protected]   (  619) [001] ...1 82316.480104: tracing_mark_write: E|619
75362           <...>-27550 (-----) [004] ...1 82316.480137: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
75363           <...>-27550 (-----) [004] ...1 82316.480141: tracing_mark_write: E|27550
75364           <...>-27550 (-----) [004] ...1 82316.480145: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
75365           <...>-27550 (-----) [004] ...1 82316.480150: tracing_mark_write: E|27550
75366 [email protected]   (  619) [001] ...1 82316.480153: tracing_mark_write: E|619
75367           <...>-27550 (-----) [004] ...1 82316.480153: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
75368           <...>-27550 (-----) [004] ...1 82316.480157: tracing_mark_write: E|27550
75369           <...>-27550 (-----) [004] ...1 82316.480161: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
75370 [email protected]   (  619) [001] .... 82316.480170: binder_transaction: transaction=1570567 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
75371 [email protected]   (  619) [001] .... 82316.480174: binder_transaction_alloc_buf: transaction=1570567 data_size=576 offsets_size=112
75372 [email protected]   (  619) [001] d..2 82316.480197: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
75373 [email protected]   (  619) [001] d..3 82316.480217: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
75374 [email protected]   (  619) [001] .... 82316.480222: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
75375          <idle>-0     (-----) [003] .n.1 82316.480223: cpu_idle: state=4294967295 cpu_id=3
75376          <idle>-0     (-----) [003] d..2 82316.480235: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
75377  surfaceflinger-8858  ( 8858) [003] .... 82316.480244: binder_transaction_received: transaction=1570567
75378          <idle>-0     (-----) [005] .n.1 82316.480251: cpu_idle: state=4294967295 cpu_id=5
75379           <...>-27550 (-----) [004] ...1 82316.480252: tracing_mark_write: E|27550
75380           <...>-27550 (-----) [004] ...1 82316.480256: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
75381          <idle>-0     (-----) [005] d..2 82316.480260: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27695 next_prio=110
75382           <...>-27550 (-----) [004] d..2 82316.480272: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75383          <idle>-0     (-----) [004] d..1 82316.480287: cpu_idle: state=0 cpu_id=4
75384 [email protected]   (  619) [001] d..2 82316.480313: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75385           <...>-27695 (-----) [005] ...1 82316.480320: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
75386          <idle>-0     (-----) [001] d..1 82316.480327: cpu_idle: state=0 cpu_id=1
75387           <...>-27695 (-----) [005] ...1 82316.480335: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
75388           <...>-27695 (-----) [005] ...1 82316.480339: tracing_mark_write: E|27550
75389           <...>-27695 (-----) [005] .... 82316.480360: binder_transaction: transaction=1570568 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
75390           <...>-27695 (-----) [005] .... 82316.480363: binder_transaction_alloc_buf: transaction=1570568 data_size=48 offsets_size=0
75391           <...>-27695 (-----) [005] ...2 82316.480367: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
75392           <...>-27695 (-----) [005] d..4 82316.480369: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
75393           <...>-27695 (-----) [005] dn.5 82316.480379: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
75394           <...>-27695 (-----) [005] d..2 82316.480386: sched_switch: prev_comm=id.nn.benchmark prev_pid=27695 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
75395<...>-770 ( 770) [005] .... 82316.480396: binder_transaction_received: transaction=1570568
75396<...>-770 ( 770) [005] ...1 82316.480418: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
75397<...>-770 ( 770) [005] d..2 82316.480493: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
75398  surfaceflinger-8858  ( 8858) [003] d.h1 82316.480535: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
75399<...>-770 ( 770) [005] ...1 82316.480547: tracing_mark_write: E|770
75400<...>-770 ( 770) [005] .... 82316.480555: binder_transaction: transaction=1570569 dest_node=0 dest_proc=27550 dest_thread=27695 reply=1 flags=0x0 code=0x0
75401<...>-770 ( 770) [005] .... 82316.480558: binder_transaction_alloc_buf: transaction=1570569 data_size=168 offsets_size=32
75402<...>-770 ( 770) [005] .... 82316.480565: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
75403<...>-770 ( 770) [005] d..2 82316.480602: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27695 next_prio=110
75404           <...>-27695 (-----) [005] .... 82316.480612: binder_transaction_received: transaction=1570569
75405 crtc_commit:111-321   (  321) [002] d..2 82316.480656: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
75406          <idle>-0     (-----) [002] d..1 82316.480673: cpu_idle: state=0 cpu_id=2
75407           <...>-27695 (-----) [005] ...1 82316.480684: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
75408           <...>-27695 (-----) [005] ...1 82316.480689: tracing_mark_write: E|27550
75409           <...>-27695 (-----) [005] .... 82316.480704: binder_transaction: transaction=1570570 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
75410           <...>-27695 (-----) [005] .... 82316.480706: binder_transaction_alloc_buf: transaction=1570570 data_size=48 offsets_size=0
75411           <...>-27695 (-----) [005] ...2 82316.480708: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
75412  surfaceflinger-8858  ( 8858) [003] d..2 82316.480709: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
75413           <...>-27695 (-----) [005] d..4 82316.480711: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
75414           <...>-27695 (-----) [005] dn.5 82316.480721: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
75415           <...>-27695 (-----) [005] d..2 82316.480727: sched_switch: prev_comm=id.nn.benchmark prev_pid=27695 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
75416<...>-770 ( 770) [005] .... 82316.480736: binder_transaction_received: transaction=1570570
75417<...>-770 ( 770) [005] ...1 82316.480753: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
75418<...>-581 ( 571) [003] d..2 82316.480808: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75419<...>-770 ( 770) [005] d..2 82316.480811: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
75420          <idle>-0     (-----) [000] ...1 82316.480814: cpu_idle: state=4294967295 cpu_id=0
75421          <idle>-0     (-----) [000] d..1 82316.480819: cpu_idle: state=0 cpu_id=0
75422          <idle>-0     (-----) [003] d..1 82316.480829: cpu_idle: state=0 cpu_id=3
75423<...>-770 ( 770) [005] ...1 82316.480843: tracing_mark_write: E|770
75424          <idle>-0     (-----) [003] dnh2 82316.480847: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
75425<...>-770 ( 770) [005] .... 82316.480851: binder_transaction: transaction=1570571 dest_node=0 dest_proc=27550 dest_thread=27695 reply=1 flags=0x0 code=0x0
75426<...>-770 ( 770) [005] .... 82316.480853: binder_transaction_alloc_buf: transaction=1570571 data_size=168 offsets_size=32
75427          <idle>-0     (-----) [003] .n.1 82316.480854: cpu_idle: state=4294967295 cpu_id=3
75428<...>-770 ( 770) [005] .... 82316.480859: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
75429          <idle>-0     (-----) [003] d..2 82316.480867: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
75430<...>-770 ( 770) [005] d..2 82316.480893: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27695 next_prio=110
75431           <...>-27695 (-----) [005] .... 82316.480904: binder_transaction_received: transaction=1570571
75432<...>-581 ( 571) [003] d..2 82316.480929: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75433          <idle>-0     (-----) [003] d..1 82316.480944: cpu_idle: state=0 cpu_id=3
75434           <...>-27695 (-----) [005] ...1 82316.481181: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
75435           <...>-27695 (-----) [005] ...1 82316.481191: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
75436           <...>-27695 (-----) [005] ...1 82316.481195: tracing_mark_write: E|27550
75437           <...>-27695 (-----) [005] .... 82316.481260: binder_transaction: transaction=1570572 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
75438           <...>-27695 (-----) [005] .... 82316.481264: binder_transaction_alloc_buf: transaction=1570572 data_size=556 offsets_size=104
75439           <...>-27695 (-----) [005] ...2 82316.481278: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
75440           <...>-27695 (-----) [005] d..4 82316.481281: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75441           <...>-27695 (-----) [005] dn.5 82316.481292: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75442           <...>-27695 (-----) [005] d..2 82316.481300: sched_switch: prev_comm=id.nn.benchmark prev_pid=27695 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75443<...>-5340 ( 788) [005] .... 82316.481310: binder_transaction_received: transaction=1570572
75444<...>-5340 ( 788) [005] ...1 82316.481357: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
75445<...>-5340 ( 788) [005] d..2 82316.481402: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75446<...>-5340 ( 788) [005] d..2 82316.481427: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27695 next_prio=110
75447          <idle>-0     (-----) [000] dnh2 82316.481430: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75448          <idle>-0     (-----) [000] .n.1 82316.481436: cpu_idle: state=4294967295 cpu_id=0
75449          <idle>-0     (-----) [000] d..2 82316.481447: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
75450           <...>-27695 (-----) [005] d..2 82316.481449: sched_switch: prev_comm=id.nn.benchmark prev_pid=27695 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75451          <idle>-0     (-----) [005] d..1 82316.481466: cpu_idle: state=0 cpu_id=5
75452<...>-87 ( 87) [000] d..2 82316.481491: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75453          <idle>-0     (-----) [002] d.h4 82316.481502: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75454          <idle>-0     (-----) [000] d..1 82316.481505: cpu_idle: state=0 cpu_id=0
75455          <idle>-0     (-----) [002] dnh5 82316.481523: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75456          <idle>-0     (-----) [002] .n.1 82316.481536: cpu_idle: state=4294967295 cpu_id=2
75457          <idle>-0     (-----) [002] d..2 82316.481549: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
75458<...>-86 ( 86) [002] d.h4 82316.481584: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75459          <idle>-0     (-----) [005] dnh2 82316.481605: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75460          <idle>-0     (-----) [005] .n.1 82316.481610: cpu_idle: state=4294967295 cpu_id=5
75461          <idle>-0     (-----) [005] d..2 82316.481618: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75462<...>-86 ( 86) [002] d..2 82316.481646: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75463          <idle>-0     (-----) [002] d..1 82316.481662: cpu_idle: state=0 cpu_id=2
75464<...>-5340 ( 788) [005] d..1 82316.481671: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75465          <idle>-0     (-----) [000] dnh2 82316.481698: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75466          <idle>-0     (-----) [000] .n.1 82316.481705: cpu_idle: state=4294967295 cpu_id=0
75467          <idle>-0     (-----) [000] d..2 82316.481716: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
75468 neuralnetworks@-13088 (  788) [000] d..2 82316.481758: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75469          <idle>-0     (-----) [000] d..1 82316.481773: cpu_idle: state=0 cpu_id=0
75470          <idle>-0     (-----) [001] d.s2 82316.481806: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
75471          <idle>-0     (-----) [001] dns3 82316.481826: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
75472          <idle>-0     (-----) [001] dns2 82316.481829: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75473          <idle>-0     (-----) [001] dns3 82316.481843: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75474          <idle>-0     (-----) [001] .n.1 82316.481864: cpu_idle: state=4294967295 cpu_id=1
75475<...>-5340 ( 788) [005] d..2 82316.481866: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75476          <idle>-0     (-----) [001] d..2 82316.481875: 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
75477          <idle>-0     (-----) [000] dnh2 82316.481888: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75478          <idle>-0     (-----) [000] .n.1 82316.481896: cpu_idle: state=4294967295 cpu_id=0
75479<...>-5340 ( 788) [005] d..2 82316.481896: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75480     rcu_preempt-7     (    7) [001] d..2 82316.481898: 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
75481          <idle>-0     (-----) [000] d..2 82316.481909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
75482          <idle>-0     (-----) [005] d..1 82316.481909: cpu_idle: state=0 cpu_id=5
75483<...>-8 ( 8) [001] d..2 82316.481926: 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
75484          <idle>-0     (-----) [001] d..1 82316.481941: cpu_idle: state=0 cpu_id=1
75485          <idle>-0     (-----) [002] d.h4 82316.481949: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75486<...>-87 ( 87) [000] d..2 82316.481950: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75487          <idle>-0     (-----) [002] dnh5 82316.481961: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75488          <idle>-0     (-----) [000] d..1 82316.481964: cpu_idle: state=0 cpu_id=0
75489          <idle>-0     (-----) [002] .n.1 82316.481971: cpu_idle: state=4294967295 cpu_id=2
75490          <idle>-0     (-----) [002] d..2 82316.481984: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
75491<...>-86 ( 86) [002] d..2 82316.482020: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75492          <idle>-0     (-----) [002] d..1 82316.482034: cpu_idle: state=0 cpu_id=2
75493          <idle>-0     (-----) [005] ...1 82316.482231: cpu_idle: state=4294967295 cpu_id=5
75494          <idle>-0     (-----) [005] d..1 82316.482234: cpu_idle: state=0 cpu_id=5
75495          <idle>-0     (-----) [000] ...1 82316.483434: cpu_idle: state=4294967295 cpu_id=0
75496          <idle>-0     (-----) [000] d..1 82316.483440: cpu_idle: state=0 cpu_id=0
75497          <idle>-0     (-----) [002] d.h4 82316.483647: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75498          <idle>-0     (-----) [005] dnh2 82316.483667: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75499          <idle>-0     (-----) [005] .n.1 82316.483671: cpu_idle: state=4294967295 cpu_id=5
75500          <idle>-0     (-----) [005] d..2 82316.483679: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75501          <idle>-0     (-----) [002] ...1 82316.483687: cpu_idle: state=4294967295 cpu_id=2
75502          <idle>-0     (-----) [002] d..1 82316.483693: cpu_idle: state=0 cpu_id=2
75503<...>-5340 ( 788) [005] d..1 82316.483729: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75504          <idle>-0     (-----) [000] dnh2 82316.483752: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75505          <idle>-0     (-----) [000] .n.1 82316.483760: cpu_idle: state=4294967295 cpu_id=0
75506          <idle>-0     (-----) [000] d..2 82316.483771: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
75507<...>-5340 ( 788) [005] ...1 82316.483822: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
75508<...>-5340 ( 788) [005] ...1 82316.483826: tracing_mark_write: E|788
75509 neuralnetworks@-13088 (  788) [000] d..2 82316.483839: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75510<...>-5340 ( 788) [005] .... 82316.483843: binder_transaction: transaction=1570575 dest_node=1570573 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
75511<...>-5340 ( 788) [005] .... 82316.483846: binder_transaction_alloc_buf: transaction=1570575 data_size=60 offsets_size=0
75512<...>-5340 ( 788) [005] d..4 82316.483849: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
75513          <idle>-0     (-----) [000] d..1 82316.483852: cpu_idle: state=0 cpu_id=0
75514<...>-5340 ( 788) [005] d..5 82316.483861: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
75515          <idle>-0     (-----) [004] .n.1 82316.483867: cpu_idle: state=4294967295 cpu_id=4
75516          <idle>-0     (-----) [004] d..2 82316.483876: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
75517           <...>-27571 (-----) [004] .... 82316.483881: binder_transaction_received: transaction=1570575
75518<...>-5340 ( 788) [005] ...1 82316.483884: tracing_mark_write: E|788
75519<...>-5340 ( 788) [005] .... 82316.483890: binder_transaction: transaction=1570576 dest_node=0 dest_proc=27550 dest_thread=27695 reply=1 flags=0x0 code=0x0
75520<...>-5340 ( 788) [005] .... 82316.483892: binder_transaction_alloc_buf: transaction=1570576 data_size=8 offsets_size=0
75521<...>-5340 ( 788) [005] d..2 82316.483894: sched_waking: comm=id.nn.benchmark pid=27695 prio=110 target_cpu=005
75522           <...>-27571 (-----) [004] ...1 82316.483899: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
75523<...>-5340 ( 788) [005] d..3 82316.483901: sched_wakeup: comm=id.nn.benchmark pid=27695 prio=110 target_cpu=005
75524<...>-5340 ( 788) [005] .... 82316.483903: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
75525           <...>-27571 (-----) [004] ...1 82316.483905: tracing_mark_write: E|27550
75526           <...>-27571 (-----) [004] d..2 82316.483934: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75527          <idle>-0     (-----) [004] d..1 82316.483941: cpu_idle: state=0 cpu_id=4
75528<...>-5340 ( 788) [005] d..2 82316.483945: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27695 next_prio=110
75529           <...>-27695 (-----) [005] .... 82316.483955: binder_transaction_received: transaction=1570576
75530           <...>-27695 (-----) [005] ...1 82316.483990: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
75531           <...>-27695 (-----) [005] ...1 82316.483997: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
75532           <...>-27695 (-----) [005] ...1 82316.484023: tracing_mark_write: E|27550
75533           <...>-27695 (-----) [005] ...1 82316.484027: tracing_mark_write: E|27550
75534           <...>-27695 (-----) [005] ...1 82316.484031: tracing_mark_write: E|27550
75535           <...>-27695 (-----) [005] ...1 82316.484221: tracing_mark_write: E|27550
75536           <...>-27695 (-----) [005] d..1 82316.484234: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75537           <...>-27695 (-----) [005] d..2 82316.484250: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75538          <idle>-0     (-----) [004] .n.1 82316.484254: cpu_idle: state=4294967295 cpu_id=4
75539          <idle>-0     (-----) [004] d..2 82316.484262: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
75540           <...>-27550 (-----) [004] d..2 82316.484282: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75541          <idle>-0     (-----) [004] d..1 82316.484291: cpu_idle: state=0 cpu_id=4
75542           <...>-27695 (-----) [005] d..1 82316.484337: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75543           <...>-27695 (-----) [005] d..2 82316.484346: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75544          <idle>-0     (-----) [004] .n.1 82316.484352: cpu_idle: state=4294967295 cpu_id=4
75545          <idle>-0     (-----) [004] d..2 82316.484359: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
75546           <...>-27695 (-----) [005] d..2 82316.484384: sched_switch: prev_comm=id.nn.benchmark prev_pid=27695 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
75547           <...>-27550 (-----) [004] ...1 82316.484392: tracing_mark_write: E|27550
75548           <...>-27550 (-----) [004] ...1 82316.484397: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
75549           <...>-27550 (-----) [004] ...1 82316.484402: tracing_mark_write: E|27550
75550          <idle>-0     (-----) [005] d..1 82316.484404: cpu_idle: state=0 cpu_id=5
75551           <...>-27550 (-----) [004] ...1 82316.484406: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
75552           <...>-27550 (-----) [004] ...1 82316.484410: tracing_mark_write: E|27550
75553           <...>-27550 (-----) [004] ...1 82316.484414: tracing_mark_write: E|27550
75554           <...>-27550 (-----) [004] ...1 82316.484528: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
75555           <...>-27550 (-----) [004] ...1 82316.484586: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
75556           <...>-27550 (-----) [004] ...1 82316.484592: tracing_mark_write: E|27550
75557           <...>-27550 (-----) [004] ...1 82316.484595: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
75558           <...>-27550 (-----) [004] ...1 82316.484601: tracing_mark_write: E|27550
75559           <...>-27550 (-----) [004] ...1 82316.484605: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
75560           <...>-27550 (-----) [004] ...1 82316.484609: tracing_mark_write: E|27550
75561           <...>-27550 (-----) [004] ...1 82316.484613: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
75562          <idle>-0     (-----) [005] .n.1 82316.484704: cpu_idle: state=4294967295 cpu_id=5
75563           <...>-27550 (-----) [004] ...1 82316.484704: tracing_mark_write: E|27550
75564           <...>-27550 (-----) [004] ...1 82316.484709: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
75565          <idle>-0     (-----) [005] d..2 82316.484712: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27696 next_prio=110
75566           <...>-27550 (-----) [004] d..2 82316.484725: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75567          <idle>-0     (-----) [004] d..1 82316.484740: cpu_idle: state=0 cpu_id=4
75568           <...>-27696 (-----) [005] ...1 82316.484777: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
75569           <...>-27696 (-----) [005] ...1 82316.484790: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
75570           <...>-27696 (-----) [005] ...1 82316.484795: tracing_mark_write: E|27550
75571           <...>-27696 (-----) [005] .... 82316.484814: binder_transaction: transaction=1570577 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
75572           <...>-27696 (-----) [005] .... 82316.484818: binder_transaction_alloc_buf: transaction=1570577 data_size=48 offsets_size=0
75573           <...>-27696 (-----) [005] ...2 82316.484821: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
75574           <...>-27696 (-----) [005] d..4 82316.484824: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
75575           <...>-27696 (-----) [005] dn.5 82316.484834: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
75576           <...>-27696 (-----) [005] d..2 82316.484841: sched_switch: prev_comm=id.nn.benchmark prev_pid=27696 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
75577<...>-770 ( 770) [005] .... 82316.484852: binder_transaction_received: transaction=1570577
75578<...>-770 ( 770) [005] ...1 82316.484874: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
75579<...>-770 ( 770) [005] d..2 82316.484946: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
75580          <idle>-0     (-----) [000] dnh2 82316.484986: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
75581          <idle>-0     (-----) [000] .n.1 82316.484993: cpu_idle: state=4294967295 cpu_id=0
75582<...>-770 ( 770) [005] ...1 82316.485000: tracing_mark_write: E|770
75583          <idle>-0     (-----) [000] d..2 82316.485004: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
75584<...>-770 ( 770) [005] .... 82316.485008: binder_transaction: transaction=1570578 dest_node=0 dest_proc=27550 dest_thread=27696 reply=1 flags=0x0 code=0x0
75585<...>-770 ( 770) [005] .... 82316.485011: binder_transaction_alloc_buf: transaction=1570578 data_size=168 offsets_size=32
75586<...>-770 ( 770) [005] .... 82316.485017: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
75587<...>-770 ( 770) [005] d..2 82316.485053: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27696 next_prio=110
75588           <...>-27696 (-----) [005] .... 82316.485064: binder_transaction_received: transaction=1570578
75589<...>-581 ( 571) [000] d..2 82316.485097: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75590          <idle>-0     (-----) [000] d..1 82316.485113: cpu_idle: state=0 cpu_id=0
75591           <...>-27696 (-----) [005] d.s3 82316.485138: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
75592          <idle>-0     (-----) [000] dnh2 82316.485167: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
75593          <idle>-0     (-----) [000] .n.1 82316.485174: cpu_idle: state=4294967295 cpu_id=0
75594          <idle>-0     (-----) [000] d..2 82316.485188: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
75595           <...>-27696 (-----) [005] ...1 82316.485191: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
75596           <...>-27696 (-----) [005] ...1 82316.485196: tracing_mark_write: E|27550
75597           <...>-27696 (-----) [005] .... 82316.485211: binder_transaction: transaction=1570579 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
75598           <...>-27696 (-----) [005] .... 82316.485214: binder_transaction_alloc_buf: transaction=1570579 data_size=48 offsets_size=0
75599           <...>-27696 (-----) [005] ...2 82316.485217: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
75600           <...>-27696 (-----) [005] d..4 82316.485219: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
75601           <...>-27696 (-----) [005] dn.5 82316.485227: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
75602           <...>-27696 (-----) [005] d..2 82316.485234: sched_switch: prev_comm=id.nn.benchmark prev_pid=27696 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
75603<...>-770 ( 770) [005] .... 82316.485243: binder_transaction_received: transaction=1570579
75604<...>-770 ( 770) [005] ...1 82316.485261: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
75605  kworker/u16:13-1147  ( 1147) [000] d..2 82316.485271: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75606          <idle>-0     (-----) [000] d..1 82316.485285: cpu_idle: state=0 cpu_id=0
75607<...>-770 ( 770) [005] d..2 82316.485319: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
75608          <idle>-0     (-----) [000] dnh2 82316.485344: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
75609          <idle>-0     (-----) [000] .n.1 82316.485351: cpu_idle: state=4294967295 cpu_id=0
75610<...>-770 ( 770) [005] ...1 82316.485354: tracing_mark_write: E|770
75611<...>-770 ( 770) [005] .... 82316.485361: binder_transaction: transaction=1570580 dest_node=0 dest_proc=27550 dest_thread=27696 reply=1 flags=0x0 code=0x0
75612          <idle>-0     (-----) [000] d..2 82316.485362: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
75613<...>-770 ( 770) [005] .... 82316.485364: binder_transaction_alloc_buf: transaction=1570580 data_size=168 offsets_size=32
75614<...>-770 ( 770) [005] .... 82316.485370: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
75615<...>-770 ( 770) [005] d..2 82316.485405: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27696 next_prio=110
75616           <...>-27696 (-----) [005] .... 82316.485415: binder_transaction_received: transaction=1570580
75617<...>-581 ( 571) [000] d..2 82316.485425: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75618          <idle>-0     (-----) [000] d..1 82316.485442: cpu_idle: state=0 cpu_id=0
75619          <idle>-0     (-----) [000] d.h5 82316.485683: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
75620           <...>-27696 (-----) [005] ...1 82316.485691: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
75621           <...>-27696 (-----) [005] ...1 82316.485701: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
75622          <idle>-0     (-----) [000] d.h6 82316.485704: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
75623           <...>-27696 (-----) [005] ...1 82316.485704: tracing_mark_write: E|27550
75624          <idle>-0     (-----) [000] d.h5 82316.485710: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
75625          <idle>-0     (-----) [003] .n.1 82316.485711: cpu_idle: state=4294967295 cpu_id=3
75626          <idle>-0     (-----) [003] d..2 82316.485724: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
75627          <idle>-0     (-----) [000] d.h6 82316.485725: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
75628          <idle>-0     (-----) [002] .n.1 82316.485729: cpu_idle: state=4294967295 cpu_id=2
75629          <idle>-0     (-----) [002] d..2 82316.485742: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
75630          <idle>-0     (-----) [000] ...1 82316.485744: cpu_idle: state=4294967295 cpu_id=0
75631          <idle>-0     (-----) [000] d..1 82316.485750: cpu_idle: state=0 cpu_id=0
75632  crtc_event:111-322   (  322) [003] d..2 82316.485763: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75633           <...>-27696 (-----) [005] .... 82316.485764: binder_transaction: transaction=1570581 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
75634           <...>-27696 (-----) [005] .... 82316.485767: binder_transaction_alloc_buf: transaction=1570581 data_size=556 offsets_size=104
75635          <idle>-0     (-----) [003] d..1 82316.485773: cpu_idle: state=0 cpu_id=3
75636           <...>-27696 (-----) [005] ...2 82316.485780: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
75637           <...>-27696 (-----) [005] d..4 82316.485783: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75638           <...>-27696 (-----) [005] dn.5 82316.485794: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75639           <...>-27696 (-----) [005] d..2 82316.485801: sched_switch: prev_comm=id.nn.benchmark prev_pid=27696 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75640<...>-5340 ( 788) [005] .... 82316.485812: binder_transaction_received: transaction=1570581
75641<...>-5340 ( 788) [005] ...1 82316.485854: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
75642 crtc_commit:111-321   (  321) [002] d..2 82316.485894: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
75643<...>-5340 ( 788) [005] d..2 82316.485895: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75644          <idle>-0     (-----) [002] d..1 82316.485904: cpu_idle: state=0 cpu_id=2
75645<...>-5340 ( 788) [005] d..2 82316.485919: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27696 next_prio=110
75646          <idle>-0     (-----) [000] dnh2 82316.485923: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75647          <idle>-0     (-----) [000] .n.1 82316.485929: cpu_idle: state=4294967295 cpu_id=0
75648          <idle>-0     (-----) [000] d..2 82316.485941: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
75649           <...>-27696 (-----) [005] d..2 82316.485942: sched_switch: prev_comm=id.nn.benchmark prev_pid=27696 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75650          <idle>-0     (-----) [005] d..1 82316.485960: cpu_idle: state=0 cpu_id=5
75651<...>-87 ( 87) [000] d..2 82316.485988: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75652          <idle>-0     (-----) [002] d.h4 82316.485994: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75653          <idle>-0     (-----) [000] d..1 82316.486002: cpu_idle: state=0 cpu_id=0
75654          <idle>-0     (-----) [002] dnh5 82316.486012: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75655          <idle>-0     (-----) [002] .n.1 82316.486022: cpu_idle: state=4294967295 cpu_id=2
75656          <idle>-0     (-----) [002] d..2 82316.486032: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
75657<...>-86 ( 86) [002] d..2 82316.486067: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75658          <idle>-0     (-----) [002] d.h5 82316.486090: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75659          <idle>-0     (-----) [005] dnh2 82316.486112: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75660          <idle>-0     (-----) [005] .n.1 82316.486116: cpu_idle: state=4294967295 cpu_id=5
75661          <idle>-0     (-----) [005] d..2 82316.486124: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75662          <idle>-0     (-----) [002] d..1 82316.486134: cpu_idle: state=0 cpu_id=2
75663<...>-5340 ( 788) [005] d..1 82316.486177: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75664          <idle>-0     (-----) [000] dnh2 82316.486203: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75665          <idle>-0     (-----) [000] .n.1 82316.486211: cpu_idle: state=4294967295 cpu_id=0
75666          <idle>-0     (-----) [000] d..2 82316.486223: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
75667 neuralnetworks@-13088 (  788) [000] d..2 82316.486273: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75668          <idle>-0     (-----) [000] d..1 82316.486288: cpu_idle: state=0 cpu_id=0
75669<...>-5340 ( 788) [005] d..2 82316.486324: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75670          <idle>-0     (-----) [000] dnh2 82316.486346: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75671<...>-5340 ( 788) [005] d..2 82316.486350: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75672          <idle>-0     (-----) [000] .n.1 82316.486354: cpu_idle: state=4294967295 cpu_id=0
75673          <idle>-0     (-----) [005] d..1 82316.486364: cpu_idle: state=0 cpu_id=5
75674          <idle>-0     (-----) [000] d..2 82316.486365: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
75675          <idle>-0     (-----) [002] d.h4 82316.486407: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75676<...>-87 ( 87) [000] d..2 82316.486408: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75677          <idle>-0     (-----) [002] dnh5 82316.486418: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75678          <idle>-0     (-----) [000] d..1 82316.486422: cpu_idle: state=0 cpu_id=0
75679          <idle>-0     (-----) [002] .n.1 82316.486426: cpu_idle: state=4294967295 cpu_id=2
75680          <idle>-0     (-----) [002] d..2 82316.486436: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
75681<...>-86 ( 86) [002] d..2 82316.486471: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75682          <idle>-0     (-----) [002] d..1 82316.486479: cpu_idle: state=0 cpu_id=2
75683          <idle>-0     (-----) [005] ...1 82316.486690: cpu_idle: state=4294967295 cpu_id=5
75684          <idle>-0     (-----) [005] d..1 82316.486693: cpu_idle: state=0 cpu_id=5
75685          <idle>-0     (-----) [000] ...1 82316.487555: cpu_idle: state=4294967295 cpu_id=0
75686          <idle>-0     (-----) [000] d..1 82316.487560: cpu_idle: state=0 cpu_id=0
75687          <idle>-0     (-----) [000] d.h5 82316.488006: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
75688          <idle>-0     (-----) [000] d.h6 82316.488025: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
75689          <idle>-0     (-----) [002] .n.1 82316.488031: cpu_idle: state=4294967295 cpu_id=2
75690          <idle>-0     (-----) [002] d..2 82316.488039: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
75691          <idle>-0     (-----) [000] ...1 82316.488040: cpu_idle: state=4294967295 cpu_id=0
75692          <idle>-0     (-----) [000] d..1 82316.488048: cpu_idle: state=0 cpu_id=0
75693 crtc_commit:111-321   (  321) [002] d..2 82316.488119: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75694          <idle>-0     (-----) [002] d..1 82316.488129: cpu_idle: state=0 cpu_id=2
75695          <idle>-0     (-----) [002] d.h4 82316.488156: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75696          <idle>-0     (-----) [005] dnh2 82316.488177: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75697          <idle>-0     (-----) [005] .n.1 82316.488181: cpu_idle: state=4294967295 cpu_id=5
75698          <idle>-0     (-----) [005] d..2 82316.488189: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75699          <idle>-0     (-----) [002] ...1 82316.488198: cpu_idle: state=4294967295 cpu_id=2
75700          <idle>-0     (-----) [002] d..1 82316.488204: cpu_idle: state=0 cpu_id=2
75701<...>-5340 ( 788) [005] d..1 82316.488238: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75702<...>-5340 ( 788) [005] ...1 82316.488330: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
75703<...>-5340 ( 788) [005] ...1 82316.488334: tracing_mark_write: E|788
75704          <idle>-0     (-----) [000] d.h5 82316.488334: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
75705<...>-5340 ( 788) [005] .... 82316.488349: binder_transaction: transaction=1570584 dest_node=1570582 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
75706          <idle>-0     (-----) [000] d.h6 82316.488350: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
75707<...>-5340 ( 788) [005] .... 82316.488352: binder_transaction_alloc_buf: transaction=1570584 data_size=60 offsets_size=0
75708<...>-5340 ( 788) [005] d..4 82316.488355: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
75709          <idle>-0     (-----) [003] .n.1 82316.488356: cpu_idle: state=4294967295 cpu_id=3
75710          <idle>-0     (-----) [003] d..2 82316.488366: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
75711<...>-5340 ( 788) [005] d..5 82316.488368: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
75712          <idle>-0     (-----) [004] .n.1 82316.488374: cpu_idle: state=4294967295 cpu_id=4
75713          <idle>-0     (-----) [000] dnh2 82316.488375: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75714          <idle>-0     (-----) [004] d..2 82316.488382: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
75715          <idle>-0     (-----) [000] .n.1 82316.488382: cpu_idle: state=4294967295 cpu_id=0
75716           <...>-27571 (-----) [004] .... 82316.488387: binder_transaction_received: transaction=1570584
75717<...>-5340 ( 788) [005] ...1 82316.488391: tracing_mark_write: E|788
75718  crtc_event:111-322   (  322) [003] d..2 82316.488392: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75719          <idle>-0     (-----) [000] d..2 82316.488395: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
75720<...>-5340 ( 788) [005] .... 82316.488397: binder_transaction: transaction=1570585 dest_node=0 dest_proc=27550 dest_thread=27696 reply=1 flags=0x0 code=0x0
75721<...>-5340 ( 788) [005] .... 82316.488399: binder_transaction_alloc_buf: transaction=1570585 data_size=8 offsets_size=0
75722          <idle>-0     (-----) [003] d..1 82316.488401: cpu_idle: state=0 cpu_id=3
75723<...>-5340 ( 788) [005] d..2 82316.488401: sched_waking: comm=id.nn.benchmark pid=27696 prio=110 target_cpu=005
75724           <...>-27571 (-----) [004] ...1 82316.488405: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
75725<...>-5340 ( 788) [005] d..3 82316.488408: sched_wakeup: comm=id.nn.benchmark pid=27696 prio=110 target_cpu=005
75726<...>-5340 ( 788) [005] .... 82316.488410: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
75727           <...>-27571 (-----) [004] ...1 82316.488411: tracing_mark_write: E|27550
75728 neuralnetworks@-13088 (  788) [000] d..2 82316.488432: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75729           <...>-27571 (-----) [004] d..2 82316.488439: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75730          <idle>-0     (-----) [000] d..1 82316.488449: cpu_idle: state=0 cpu_id=0
75731<...>-5340 ( 788) [005] d.s2 82316.488463: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
75732          <idle>-0     (-----) [002] d.s3 82316.488469: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
75733          <idle>-0     (-----) [001] d.s2 82316.488470: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
75734          <idle>-0     (-----) [004] d..1 82316.488479: cpu_idle: state=0 cpu_id=4
75735          <idle>-0     (-----) [000] dnh2 82316.488488: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
75736          <idle>-0     (-----) [001] dns3 82316.488488: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
75737          <idle>-0     (-----) [002] d.s4 82316.488489: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
75738          <idle>-0     (-----) [001] dns2 82316.488491: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
75739<...>-5340 ( 788) [005] d..2 82316.488493: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27696 next_prio=110
75740          <idle>-0     (-----) [003] .n.1 82316.488494: cpu_idle: state=4294967295 cpu_id=3
75741          <idle>-0     (-----) [000] .n.1 82316.488496: cpu_idle: state=4294967295 cpu_id=0
75742           <...>-27696 (-----) [005] .... 82316.488503: binder_transaction_received: transaction=1570585
75743          <idle>-0     (-----) [003] d..2 82316.488506: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
75744          <idle>-0     (-----) [000] d..2 82316.488509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
75745          <idle>-0     (-----) [002] ...1 82316.488522: cpu_idle: state=4294967295 cpu_id=2
75746          <idle>-0     (-----) [002] d..1 82316.488531: cpu_idle: state=0 cpu_id=2
75747          <idle>-0     (-----) [001] dns3 82316.488532: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
75748  crtc_event:111-322   (  322) [003] d..2 82316.488541: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
75749          <idle>-0     (-----) [001] .n.1 82316.488550: cpu_idle: state=4294967295 cpu_id=1
75750     rcu_preempt-7     (    7) [003] d..2 82316.488552: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
75751           <...>-27696 (-----) [005] ...1 82316.488553: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
75752           <...>-27696 (-----) [005] ...1 82316.488559: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
75753          <idle>-0     (-----) [001] d..2 82316.488565: 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
75754<...>-8 ( 8) [001] d..2 82316.488574: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
75755           <...>-27696 (-----) [005] ...1 82316.488585: tracing_mark_write: E|27550
75756           <...>-27696 (-----) [005] ...1 82316.488589: tracing_mark_write: E|27550
75757<...>-8 ( 8) [001] d..3 82316.488590: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
75758           <...>-27696 (-----) [005] ...1 82316.488592: tracing_mark_write: E|27550
75759     rcu_preempt-7     (    7) [003] d..3 82316.488613: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
75760<...>-8 ( 8) [001] d..2 82316.488633: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
75761     rcu_preempt-7     (    7) [003] d..2 82316.488644: 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
75762         rcuop/4-45    (   45) [001] d..2 82316.488645: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
75763         rcuop/4-45    (   45) [001] d..3 82316.488720: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
75764         rcuop/4-45    (   45) [001] d..2 82316.488736: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
75765          <idle>-0     (-----) [003] d..2 82316.488741: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
75766<...>-46 ( 46) [001] d..2 82316.488748: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
75767           <...>-27696 (-----) [005] ...1 82316.488780: tracing_mark_write: E|27550
75768<...>-46 ( 46) [001] d..3 82316.488782: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
75769           <...>-27696 (-----) [005] d..1 82316.488792: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75770<...>-46 ( 46) [001] d..2 82316.488803: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75771           <...>-27696 (-----) [005] d..2 82316.488808: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75772          <idle>-0     (-----) [004] .n.1 82316.488813: cpu_idle: state=4294967295 cpu_id=4
75773          <idle>-0     (-----) [001] d..1 82316.488818: cpu_idle: state=0 cpu_id=1
75774          <idle>-0     (-----) [004] d..2 82316.488820: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
75775         rcuop/5-53    (   53) [003] d..2 82316.488838: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
75776           <...>-27550 (-----) [004] d..2 82316.488841: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75777          <idle>-0     (-----) [004] d..1 82316.488850: cpu_idle: state=0 cpu_id=4
75778<...>-8 ( 8) [003] d..2 82316.488862: 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
75779          <idle>-0     (-----) [003] d..1 82316.488874: cpu_idle: state=0 cpu_id=3
75780           <...>-27696 (-----) [005] d..1 82316.488897: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75781           <...>-27696 (-----) [005] d..2 82316.488907: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
75782          <idle>-0     (-----) [004] .n.1 82316.488912: cpu_idle: state=4294967295 cpu_id=4
75783          <idle>-0     (-----) [004] d..2 82316.488920: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
75784  kworker/u16:13-1147  ( 1147) [000] d..2 82316.488920: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
75785          <idle>-0     (-----) [000] d..1 82316.488941: cpu_idle: state=0 cpu_id=0
75786           <...>-27696 (-----) [005] d..2 82316.488945: sched_switch: prev_comm=id.nn.benchmark prev_pid=27696 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
75787           <...>-27550 (-----) [004] ...1 82316.488953: tracing_mark_write: E|27550
75788           <...>-27550 (-----) [004] ...1 82316.488958: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
75789          <idle>-0     (-----) [001] d.s3 82316.488959: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
75790           <...>-27550 (-----) [004] ...1 82316.488964: tracing_mark_write: E|27550
75791          <idle>-0     (-----) [005] d..1 82316.488965: cpu_idle: state=0 cpu_id=5
75792           <...>-27550 (-----) [004] ...1 82316.488967: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
75793           <...>-27550 (-----) [004] ...1 82316.488971: tracing_mark_write: E|27550
75794          <idle>-0     (-----) [001] d.s4 82316.488972: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
75795           <...>-27550 (-----) [004] ...1 82316.488975: tracing_mark_write: E|27550
75796          <idle>-0     (-----) [001] d.s4 82316.488981: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
75797          <idle>-0     (-----) [000] .n.1 82316.488989: cpu_idle: state=4294967295 cpu_id=0
75798          <idle>-0     (-----) [001] ...1 82316.488991: cpu_idle: state=4294967295 cpu_id=1
75799          <idle>-0     (-----) [001] d..1 82316.488998: cpu_idle: state=0 cpu_id=1
75800          <idle>-0     (-----) [000] d..2 82316.489002: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
75801  kworker/u16:13-1147  ( 1147) [000] .... 82316.489090: clk_set_rate: l3_cluster0_vote_clk 300000000
75802           <...>-27550 (-----) [004] ...1 82316.489104: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
75803  kworker/u16:13-1147  ( 1147) [000] d..2 82316.489120: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75804          <idle>-0     (-----) [000] d..1 82316.489136: cpu_idle: state=0 cpu_id=0
75805           <...>-27550 (-----) [004] ...1 82316.489161: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
75806           <...>-27550 (-----) [004] ...1 82316.489167: tracing_mark_write: E|27550
75807           <...>-27550 (-----) [004] ...1 82316.489171: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
75808           <...>-27550 (-----) [004] ...1 82316.489176: tracing_mark_write: E|27550
75809           <...>-27550 (-----) [004] ...1 82316.489180: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
75810           <...>-27550 (-----) [004] ...1 82316.489184: tracing_mark_write: E|27550
75811           <...>-27550 (-----) [004] ...1 82316.489188: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
75812          <idle>-0     (-----) [005] .n.1 82316.489277: cpu_idle: state=4294967295 cpu_id=5
75813           <...>-27550 (-----) [004] ...1 82316.489279: tracing_mark_write: E|27550
75814           <...>-27550 (-----) [004] ...1 82316.489283: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
75815          <idle>-0     (-----) [005] d..2 82316.489286: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27697 next_prio=110
75816           <...>-27550 (-----) [004] d..2 82316.489299: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
75817          <idle>-0     (-----) [004] d..1 82316.489314: cpu_idle: state=0 cpu_id=4
75818           <...>-27697 (-----) [005] ...1 82316.489347: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
75819           <...>-27697 (-----) [005] ...1 82316.489362: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
75820           <...>-27697 (-----) [005] ...1 82316.489366: tracing_mark_write: E|27550
75821           <...>-27697 (-----) [005] .... 82316.489387: binder_transaction: transaction=1570586 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
75822           <...>-27697 (-----) [005] .... 82316.489390: binder_transaction_alloc_buf: transaction=1570586 data_size=48 offsets_size=0
75823           <...>-27697 (-----) [005] ...2 82316.489393: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
75824           <...>-27697 (-----) [005] d..4 82316.489395: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
75825           <...>-27697 (-----) [005] dn.5 82316.489406: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
75826           <...>-27697 (-----) [005] d..2 82316.489413: sched_switch: prev_comm=id.nn.benchmark prev_pid=27697 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
75827<...>-770 ( 770) [005] .... 82316.489423: binder_transaction_received: transaction=1570586
75828<...>-770 ( 770) [005] ...1 82316.489444: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
75829<...>-770 ( 770) [005] d..2 82316.489519: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
75830          <idle>-0     (-----) [000] dnh2 82316.489549: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
75831          <idle>-0     (-----) [000] .n.1 82316.489556: cpu_idle: state=4294967295 cpu_id=0
75832<...>-770 ( 770) [005] ...1 82316.489559: tracing_mark_write: E|770
75833<...>-770 ( 770) [005] .... 82316.489567: binder_transaction: transaction=1570587 dest_node=0 dest_proc=27550 dest_thread=27697 reply=1 flags=0x0 code=0x0
75834          <idle>-0     (-----) [000] d..2 82316.489568: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
75835<...>-770 ( 770) [005] .... 82316.489569: binder_transaction_alloc_buf: transaction=1570587 data_size=168 offsets_size=32
75836<...>-770 ( 770) [005] .... 82316.489576: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
75837<...>-770 ( 770) [005] d..2 82316.489612: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27697 next_prio=110
75838           <...>-27697 (-----) [005] .... 82316.489623: binder_transaction_received: transaction=1570587
75839<...>-581 ( 571) [000] d..2 82316.489655: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75840          <idle>-0     (-----) [000] d..1 82316.489673: cpu_idle: state=0 cpu_id=0
75841          <idle>-0     (-----) [002] ...1 82316.489685: cpu_idle: state=4294967295 cpu_id=2
75842          <idle>-0     (-----) [002] d..1 82316.489691: cpu_idle: state=0 cpu_id=2
75843           <...>-27697 (-----) [005] ...1 82316.489693: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
75844           <...>-27697 (-----) [005] ...1 82316.489698: tracing_mark_write: E|27550
75845           <...>-27697 (-----) [005] .... 82316.489712: binder_transaction: transaction=1570588 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
75846           <...>-27697 (-----) [005] .... 82316.489715: binder_transaction_alloc_buf: transaction=1570588 data_size=48 offsets_size=0
75847           <...>-27697 (-----) [005] ...2 82316.489718: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
75848           <...>-27697 (-----) [005] d..4 82316.489720: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
75849           <...>-27697 (-----) [005] dn.5 82316.489730: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
75850           <...>-27697 (-----) [005] d..2 82316.489737: sched_switch: prev_comm=id.nn.benchmark prev_pid=27697 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
75851<...>-770 ( 770) [005] .... 82316.489746: binder_transaction_received: transaction=1570588
75852<...>-770 ( 770) [005] ...1 82316.489763: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
75853<...>-770 ( 770) [005] d..2 82316.489822: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
75854          <idle>-0     (-----) [000] dnh2 82316.489847: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
75855          <idle>-0     (-----) [000] .n.1 82316.489855: cpu_idle: state=4294967295 cpu_id=0
75856<...>-770 ( 770) [005] ...1 82316.489855: tracing_mark_write: E|770
75857<...>-770 ( 770) [005] .... 82316.489863: binder_transaction: transaction=1570589 dest_node=0 dest_proc=27550 dest_thread=27697 reply=1 flags=0x0 code=0x0
75858<...>-770 ( 770) [005] .... 82316.489866: binder_transaction_alloc_buf: transaction=1570589 data_size=168 offsets_size=32
75859          <idle>-0     (-----) [000] d..2 82316.489867: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
75860<...>-770 ( 770) [005] .... 82316.489871: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
75861<...>-770 ( 770) [005] d..2 82316.489905: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27697 next_prio=110
75862           <...>-27697 (-----) [005] .... 82316.489916: binder_transaction_received: transaction=1570589
75863<...>-581 ( 571) [000] d..2 82316.489926: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75864          <idle>-0     (-----) [000] d..1 82316.489942: cpu_idle: state=0 cpu_id=0
75865          <idle>-0     (-----) [003] d.h2 82316.490174: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
75866           <...>-27697 (-----) [005] ...1 82316.490189: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
75867          <idle>-0     (-----) [003] dnh3 82316.490190: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
75868           <...>-27697 (-----) [005] ...1 82316.490198: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
75869          <idle>-0     (-----) [003] .n.1 82316.490199: cpu_idle: state=4294967295 cpu_id=3
75870           <...>-27697 (-----) [005] ...1 82316.490202: tracing_mark_write: E|27550
75871          <idle>-0     (-----) [003] d..2 82316.490210: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
75872        DispSync-8879  ( 8858) [003] d..1 82316.490235: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
75873           <...>-27697 (-----) [005] .... 82316.490258: binder_transaction: transaction=1570590 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
75874        DispSync-8879  ( 8858) [003] d..2 82316.490259: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
75875           <...>-27697 (-----) [005] .... 82316.490261: binder_transaction_alloc_buf: transaction=1570590 data_size=556 offsets_size=104
75876          <idle>-0     (-----) [001] .n.1 82316.490265: cpu_idle: state=4294967295 cpu_id=1
75877           <...>-27697 (-----) [005] ...2 82316.490274: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
75878           <...>-27697 (-----) [005] d..4 82316.490276: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75879          <idle>-0     (-----) [001] d..2 82316.490278: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
75880           <...>-27697 (-----) [005] dn.5 82316.490287: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75881           <...>-27697 (-----) [005] d..2 82316.490294: sched_switch: prev_comm=id.nn.benchmark prev_pid=27697 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75882        DispSync-8879  ( 8858) [003] d..2 82316.490296: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75883<...>-5340 ( 788) [005] .... 82316.490304: binder_transaction_received: transaction=1570590
75884          <idle>-0     (-----) [003] d..1 82316.490311: cpu_idle: state=0 cpu_id=3
75885  appEventThread-8881  ( 8858) [001] d..3 82316.490344: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
75886<...>-5340 ( 788) [005] ...1 82316.490348: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
75887  appEventThread-8881  ( 8858) [001] d..4 82316.490366: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
75888          <idle>-0     (-----) [000] .n.1 82316.490372: cpu_idle: state=4294967295 cpu_id=0
75889          <idle>-0     (-----) [000] d..2 82316.490385: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
75890<...>-5340 ( 788) [005] d..2 82316.490390: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
75891  appEventThread-8881  ( 8858) [001] d..2 82316.490412: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75892          <idle>-0     (-----) [001] d..1 82316.490428: cpu_idle: state=0 cpu_id=1
75893<...>-5340 ( 788) [005] d..2 82316.490433: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27697 next_prio=110
75894          <idle>-0     (-----) [001] dnh2 82316.490445: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
75895          <idle>-0     (-----) [001] .n.1 82316.490452: cpu_idle: state=4294967295 cpu_id=1
75896           <...>-27697 (-----) [005] d..2 82316.490456: sched_switch: prev_comm=id.nn.benchmark prev_pid=27697 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75897          <idle>-0     (-----) [001] d..2 82316.490464: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
75898          <idle>-0     (-----) [005] d..1 82316.490473: cpu_idle: state=0 cpu_id=5
75899<...>-87 ( 87) [001] d..2 82316.490510: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75900          <idle>-0     (-----) [002] d.h4 82316.490515: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75901          <idle>-0     (-----) [001] d..1 82316.490522: cpu_idle: state=0 cpu_id=1
75902          <idle>-0     (-----) [002] dnh5 82316.490534: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75903          <idle>-0     (-----) [002] .n.1 82316.490543: cpu_idle: state=4294967295 cpu_id=2
75904          <idle>-0     (-----) [002] d..2 82316.490559: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
75905<...>-86 ( 86) [002] d.h4 82316.490593: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75906          <idle>-0     (-----) [005] dnh2 82316.490615: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75907          <idle>-0     (-----) [005] .n.1 82316.490620: cpu_idle: state=4294967295 cpu_id=5
75908          <idle>-0     (-----) [005] d..2 82316.490628: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75909<...>-86 ( 86) [002] d..2 82316.490652: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75910          <idle>-0     (-----) [002] d..1 82316.490666: cpu_idle: state=0 cpu_id=2
75911<...>-5340 ( 788) [005] d..1 82316.490679: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75912<...>-9105 ( 9105) [000] dnh1 82316.490711: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75913<...>-9105 ( 9105) [000] d..2 82316.490728: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
75914 neuralnetworks@-13088 (  788) [000] d..2 82316.490774: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
75915<...>-9105 ( 9105) [000] .... 82316.490808: binder_transaction: transaction=1570593 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
75916<...>-9105 ( 9105) [000] .... 82316.490814: binder_transaction_alloc_buf: transaction=1570593 data_size=80 offsets_size=0
75917<...>-9105 ( 9105) [000] d..4 82316.490821: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
75918<...>-5340 ( 788) [005] d..2 82316.490825: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
75919<...>-9105 ( 9105) [000] d..5 82316.490844: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
75920          <idle>-0     (-----) [001] dnh2 82316.490847: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
75921          <idle>-0     (-----) [002] .n.1 82316.490850: cpu_idle: state=4294967295 cpu_id=2
75922<...>-5340 ( 788) [005] d..2 82316.490850: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
75923          <idle>-0     (-----) [001] .n.1 82316.490853: cpu_idle: state=4294967295 cpu_id=1
75924          <idle>-0     (-----) [002] d..2 82316.490862: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
75925          <idle>-0     (-----) [001] d..2 82316.490864: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
75926          <idle>-0     (-----) [005] d..1 82316.490865: cpu_idle: state=0 cpu_id=5
75927<...>-13083 ( 8858) [002] .... 82316.490871: binder_transaction_received: transaction=1570593
75928<...>-9105 ( 9105) [000] d..3 82316.490886: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
75929<...>-87 ( 87) [001] d..2 82316.490904: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75930<...>-13083 ( 8858) [002] d.h3 82316.490907: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75931<...>-9105 ( 9105) [000] d..4 82316.490916: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
75932          <idle>-0     (-----) [001] d..1 82316.490916: cpu_idle: state=0 cpu_id=1
75933          <idle>-0     (-----) [003] .n.1 82316.490923: cpu_idle: state=4294967295 cpu_id=3
75934<...>-13083 ( 8858) [002] d.h4 82316.490927: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
75935          <idle>-0     (-----) [003] d..2 82316.490936: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
75936<...>-13083 ( 8858) [002] d..1 82316.490962: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
75937<...>-13083 ( 8858) [002] d..2 82316.490979: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
75938          <idle>-0     (-----) [001] .n.1 82316.490985: cpu_idle: state=4294967295 cpu_id=1
75939          <idle>-0     (-----) [001] d..2 82316.490996: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
75940    RenderThread-9436  ( 9105) [003] d..2 82316.490999: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
75941          <idle>-0     (-----) [003] d..1 82316.491013: cpu_idle: state=0 cpu_id=3
75942<...>-13083 ( 8858) [002] d..2 82316.491016: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
75943  appEventThread-8881  ( 8858) [001] d..2 82316.491047: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75944<...>-9105 ( 9105) [000] d..3 82316.491053: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
75945<...>-86 ( 86) [002] d..2 82316.491055: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
75946          <idle>-0     (-----) [001] d..1 82316.491061: cpu_idle: state=0 cpu_id=1
75947          <idle>-0     (-----) [002] d..1 82316.491071: cpu_idle: state=0 cpu_id=2
75948<...>-9105 ( 9105) [000] d..4 82316.491072: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
75949          <idle>-0     (-----) [003] .n.1 82316.491078: cpu_idle: state=4294967295 cpu_id=3
75950          <idle>-0     (-----) [003] d..2 82316.491091: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
75951<...>-9105 ( 9105) [000] d..2 82316.491108: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75952          <idle>-0     (-----) [000] d..1 82316.491130: cpu_idle: state=0 cpu_id=0
75953          <idle>-0     (-----) [005] ...1 82316.491196: cpu_idle: state=4294967295 cpu_id=5
75954          <idle>-0     (-----) [005] d..1 82316.491200: cpu_idle: state=0 cpu_id=5
75955    RenderThread-9436  ( 9105) [003] d..1 82316.491220: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
75956    RenderThread-9436  ( 9105) [003] d..2 82316.491241: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
75957          <idle>-0     (-----) [000] .n.1 82316.491249: cpu_idle: state=4294967295 cpu_id=0
75958          <idle>-0     (-----) [000] d..2 82316.491264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
75959    RenderThread-9436  ( 9105) [003] .... 82316.491316: binder_transaction: transaction=1570594 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
75960    RenderThread-9436  ( 9105) [003] .... 82316.491322: binder_transaction_alloc_buf: transaction=1570594 data_size=104 offsets_size=0
75961    RenderThread-9436  ( 9105) [003] d..4 82316.491328: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
75962    RenderThread-9436  ( 9105) [003] dn.5 82316.491350: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
75963<...>-9105 ( 9105) [000] d..2 82316.491351: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
75964    RenderThread-9436  ( 9105) [003] d..2 82316.491361: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
75965          <idle>-0     (-----) [000] d..1 82316.491369: cpu_idle: state=0 cpu_id=0
75966<...>-13083 ( 8858) [003] .... 82316.491370: binder_transaction_received: transaction=1570594
75967<...>-13083 ( 8858) [003] .... 82316.491450: binder_transaction: transaction=1570595 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
75968<...>-13083 ( 8858) [003] .... 82316.491455: binder_transaction_alloc_buf: transaction=1570595 data_size=52 offsets_size=8
75969<...>-13083 ( 8858) [003] d..2 82316.491510: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
75970    RenderThread-9436  ( 9105) [003] .... 82316.491520: binder_transaction_received: transaction=1570595
75971    RenderThread-9436  ( 9105) [003] d.H2 82316.491910: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
75972    RenderThread-9436  ( 9105) [003] d.H3 82316.491931: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
75973          <idle>-0     (-----) [001] .n.1 82316.491937: cpu_idle: state=4294967295 cpu_id=1
75974          <idle>-0     (-----) [001] d..2 82316.491950: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
75975         sugov:0-576   (  576) [001] .... 82316.491983: clk_set_rate: pwrcl_clk 825600000
75976         sugov:0-576   (  576) [001] .... 82316.492001: clk_set_rate: cpu3_pwrcl_clk 748800000
75977         sugov:0-576   (  576) [001] .... 82316.492010: clk_set_rate: cpu2_pwrcl_clk 748800000
75978         sugov:0-576   (  576) [001] .... 82316.492018: clk_set_rate: cpu1_pwrcl_clk 748800000
75979         sugov:0-576   (  576) [001] .... 82316.492026: clk_set_rate: cpu0_pwrcl_clk 825600000
75980         sugov:0-576   (  576) [001] .... 82316.492035: cpu_frequency: state=825600 cpu_id=0
75981         sugov:0-576   (  576) [001] .... 82316.492058: cpu_frequency: state=825600 cpu_id=1
75982         sugov:0-576   (  576) [001] .... 82316.492063: cpu_frequency: state=825600 cpu_id=2
75983         sugov:0-576   (  576) [001] .... 82316.492067: cpu_frequency: state=825600 cpu_id=3
75984         sugov:0-576   (  576) [001] d..2 82316.492100: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
75985          <idle>-0     (-----) [001] d..1 82316.492114: cpu_idle: state=0 cpu_id=1
75986          <idle>-0     (-----) [002] d.h4 82316.492514: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75987          <idle>-0     (-----) [005] dnh2 82316.492537: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
75988          <idle>-0     (-----) [005] .n.1 82316.492540: cpu_idle: state=4294967295 cpu_id=5
75989          <idle>-0     (-----) [005] d..2 82316.492549: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
75990          <idle>-0     (-----) [002] ...1 82316.492556: cpu_idle: state=4294967295 cpu_id=2
75991          <idle>-0     (-----) [002] d..1 82316.492563: cpu_idle: state=0 cpu_id=2
75992<...>-5340 ( 788) [005] d..1 82316.492600: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75993          <idle>-0     (-----) [000] dnh3 82316.492622: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
75994          <idle>-0     (-----) [000] .n.1 82316.492631: cpu_idle: state=4294967295 cpu_id=0
75995          <idle>-0     (-----) [000] d..2 82316.492644: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
75996<...>-5340 ( 788) [005] ...1 82316.492694: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
75997<...>-5340 ( 788) [005] ...1 82316.492698: tracing_mark_write: E|788
75998<...>-5340 ( 788) [005] .... 82316.492714: binder_transaction: transaction=1570596 dest_node=1570591 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
75999<...>-5340 ( 788) [005] .... 82316.492717: binder_transaction_alloc_buf: transaction=1570596 data_size=60 offsets_size=0
76000 neuralnetworks@-13088 (  788) [000] d..2 82316.492719: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76001<...>-5340 ( 788) [005] d..4 82316.492720: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
76002    RenderThread-9436  ( 9105) [003] d..2 82316.492729: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
76003          <idle>-0     (-----) [000] d..1 82316.492733: cpu_idle: state=0 cpu_id=0
76004<...>-5340 ( 788) [005] d..5 82316.492733: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
76005          <idle>-0     (-----) [004] .n.1 82316.492739: cpu_idle: state=4294967295 cpu_id=4
76006          <idle>-0     (-----) [003] d..1 82316.492744: cpu_idle: state=0 cpu_id=3
76007          <idle>-0     (-----) [004] d..2 82316.492747: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
76008           <...>-27571 (-----) [004] .... 82316.492752: binder_transaction_received: transaction=1570596
76009<...>-5340 ( 788) [005] ...1 82316.492757: tracing_mark_write: E|788
76010<...>-5340 ( 788) [005] .... 82316.492762: binder_transaction: transaction=1570597 dest_node=0 dest_proc=27550 dest_thread=27697 reply=1 flags=0x0 code=0x0
76011<...>-5340 ( 788) [005] .... 82316.492765: binder_transaction_alloc_buf: transaction=1570597 data_size=8 offsets_size=0
76012<...>-5340 ( 788) [005] d..2 82316.492766: sched_waking: comm=id.nn.benchmark pid=27697 prio=110 target_cpu=005
76013           <...>-27571 (-----) [004] ...1 82316.492772: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
76014<...>-5340 ( 788) [005] d..3 82316.492774: sched_wakeup: comm=id.nn.benchmark pid=27697 prio=110 target_cpu=005
76015<...>-5340 ( 788) [005] .... 82316.492776: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
76016           <...>-27571 (-----) [004] ...1 82316.492778: tracing_mark_write: E|27550
76017           <...>-27571 (-----) [004] d..2 82316.492807: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76018          <idle>-0     (-----) [003] d.h2 82316.492810: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
76019          <idle>-0     (-----) [004] d..1 82316.492815: cpu_idle: state=0 cpu_id=4
76020<...>-5340 ( 788) [005] d..2 82316.492818: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27697 next_prio=110
76021          <idle>-0     (-----) [003] d.h3 82316.492821: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
76022          <idle>-0     (-----) [003] dnh3 82316.492826: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
76023           <...>-27697 (-----) [005] .... 82316.492829: binder_transaction_received: transaction=1570597
76024          <idle>-0     (-----) [003] .n.1 82316.492835: cpu_idle: state=4294967295 cpu_id=3
76025          <idle>-0     (-----) [000] d.h3 82316.492841: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
76026          <idle>-0     (-----) [003] d..2 82316.492844: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
76027          <idle>-0     (-----) [000] dnh4 82316.492858: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
76028           <...>-27697 (-----) [005] ...1 82316.492868: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
76029          <idle>-0     (-----) [000] .n.1 82316.492871: cpu_idle: state=4294967295 cpu_id=0
76030           <...>-27697 (-----) [005] ...1 82316.492874: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
76031          <idle>-0     (-----) [000] d..2 82316.492881: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
76032           <...>-27697 (-----) [005] ...1 82316.492900: tracing_mark_write: E|27550
76033           <...>-27697 (-----) [005] ...1 82316.492903: tracing_mark_write: E|27550
76034           <...>-27697 (-----) [005] ...1 82316.492907: tracing_mark_write: E|27550
76035 kgsl_worker_thr-258   (  258) [000] d..2 82316.492936: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
76036 kgsl_worker_thr-258   (  258) [000] d..3 82316.492956: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
76037 kgsl_worker_thr-258   (  258) [000] d..2 82316.492973: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
76038  kworker/u16:13-1147  ( 1147) [000] d..2 82316.493047: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76039          <idle>-0     (-----) [000] d..1 82316.493063: cpu_idle: state=0 cpu_id=0
76040    RenderThread-9436  ( 9105) [003] .... 82316.493075: binder_transaction: transaction=1570598 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
76041    RenderThread-9436  ( 9105) [003] .... 82316.493081: binder_transaction_alloc_buf: transaction=1570598 data_size=192 offsets_size=8
76042    RenderThread-9436  ( 9105) [003] d..4 82316.493091: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
76043           <...>-27697 (-----) [005] ...1 82316.493096: tracing_mark_write: E|27550
76044           <...>-27697 (-----) [005] d..1 82316.493108: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76045    RenderThread-9436  ( 9105) [003] dn.5 82316.493109: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
76046    RenderThread-9436  ( 9105) [003] d..2 82316.493121: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
76047           <...>-27697 (-----) [005] d..2 82316.493125: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76048<...>-13083 ( 8858) [003] .... 82316.493130: binder_transaction_received: transaction=1570598
76049          <idle>-0     (-----) [004] .n.1 82316.493131: cpu_idle: state=4294967295 cpu_id=4
76050          <idle>-0     (-----) [004] d..2 82316.493138: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
76051           <...>-27550 (-----) [004] d..2 82316.493158: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76052          <idle>-0     (-----) [004] d..1 82316.493166: cpu_idle: state=0 cpu_id=4
76053           <...>-27697 (-----) [005] d..1 82316.493215: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76054           <...>-27697 (-----) [005] d..2 82316.493224: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76055          <idle>-0     (-----) [004] .n.1 82316.493229: cpu_idle: state=4294967295 cpu_id=4
76056          <idle>-0     (-----) [004] d..2 82316.493237: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
76057           <...>-27697 (-----) [005] d..2 82316.493264: sched_switch: prev_comm=id.nn.benchmark prev_pid=27697 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
76058<...>-13083 ( 8858) [003] .... 82316.493286: binder_transaction: transaction=1570599 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
76059           <...>-27550 (-----) [004] ...1 82316.493287: tracing_mark_write: E|27550
76060           <...>-27550 (-----) [004] ...1 82316.493291: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
76061<...>-13083 ( 8858) [003] .... 82316.493292: binder_transaction_alloc_buf: transaction=1570599 data_size=68 offsets_size=0
76062          <idle>-0     (-----) [005] d..1 82316.493294: cpu_idle: state=0 cpu_id=5
76063           <...>-27550 (-----) [004] ...1 82316.493297: tracing_mark_write: E|27550
76064           <...>-27550 (-----) [004] ...1 82316.493301: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
76065           <...>-27550 (-----) [004] ...1 82316.493305: tracing_mark_write: E|27550
76066           <...>-27550 (-----) [004] ...1 82316.493309: tracing_mark_write: E|27550
76067<...>-13083 ( 8858) [003] d..2 82316.493335: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
76068    RenderThread-9436  ( 9105) [003] .... 82316.493345: binder_transaction_received: transaction=1570599
76069           <...>-27550 (-----) [004] ...1 82316.493421: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
76070    RenderThread-9436  ( 9105) [003] d..2 82316.493434: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76071          <idle>-0     (-----) [003] d..1 82316.493448: cpu_idle: state=0 cpu_id=3
76072           <...>-27550 (-----) [004] ...1 82316.493478: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
76073           <...>-27550 (-----) [004] ...1 82316.493483: tracing_mark_write: E|27550
76074           <...>-27550 (-----) [004] ...1 82316.493487: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
76075           <...>-27550 (-----) [004] ...1 82316.493492: tracing_mark_write: E|27550
76076           <...>-27550 (-----) [004] ...1 82316.493496: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
76077           <...>-27550 (-----) [004] ...1 82316.493500: tracing_mark_write: E|27550
76078           <...>-27550 (-----) [004] ...1 82316.493503: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
76079          <idle>-0     (-----) [005] .n.1 82316.493596: cpu_idle: state=4294967295 cpu_id=5
76080           <...>-27550 (-----) [004] ...1 82316.493597: tracing_mark_write: E|27550
76081           <...>-27550 (-----) [004] ...1 82316.493601: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
76082          <idle>-0     (-----) [005] d..2 82316.493606: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27698 next_prio=110
76083           <...>-27550 (-----) [004] d..2 82316.493619: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76084          <idle>-0     (-----) [001] ...1 82316.493632: cpu_idle: state=4294967295 cpu_id=1
76085          <idle>-0     (-----) [004] d..1 82316.493633: cpu_idle: state=0 cpu_id=4
76086          <idle>-0     (-----) [001] d..1 82316.493636: cpu_idle: state=0 cpu_id=1
76087           <...>-27698 (-----) [005] ...1 82316.493668: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
76088           <...>-27698 (-----) [005] ...1 82316.493682: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
76089           <...>-27698 (-----) [005] ...1 82316.493686: tracing_mark_write: E|27550
76090           <...>-27698 (-----) [005] .... 82316.493707: binder_transaction: transaction=1570600 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
76091           <...>-27698 (-----) [005] .... 82316.493711: binder_transaction_alloc_buf: transaction=1570600 data_size=48 offsets_size=0
76092           <...>-27698 (-----) [005] ...2 82316.493714: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
76093           <...>-27698 (-----) [005] d..4 82316.493717: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
76094           <...>-27698 (-----) [005] dn.5 82316.493728: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
76095           <...>-27698 (-----) [005] d..2 82316.493735: sched_switch: prev_comm=id.nn.benchmark prev_pid=27698 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
76096<...>-770 ( 770) [005] .... 82316.493745: binder_transaction_received: transaction=1570600
76097<...>-770 ( 770) [005] ...1 82316.493769: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
76098<...>-770 ( 770) [005] d..2 82316.493853: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
76099          <idle>-0     (-----) [000] dnh2 82316.493883: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
76100          <idle>-0     (-----) [000] .n.1 82316.493890: cpu_idle: state=4294967295 cpu_id=0
76101<...>-770 ( 770) [005] ...1 82316.493898: tracing_mark_write: E|770
76102          <idle>-0     (-----) [000] d..2 82316.493901: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
76103<...>-770 ( 770) [005] .... 82316.493906: binder_transaction: transaction=1570601 dest_node=0 dest_proc=27550 dest_thread=27698 reply=1 flags=0x0 code=0x0
76104<...>-770 ( 770) [005] .... 82316.493908: binder_transaction_alloc_buf: transaction=1570601 data_size=168 offsets_size=32
76105<...>-770 ( 770) [005] .... 82316.493915: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
76106<...>-770 ( 770) [005] d..2 82316.493952: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27698 next_prio=110
76107           <...>-27698 (-----) [005] .... 82316.493963: binder_transaction_received: transaction=1570601
76108<...>-581 ( 571) [000] d..2 82316.494005: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76109          <idle>-0     (-----) [000] d..1 82316.494021: cpu_idle: state=0 cpu_id=0
76110           <...>-27698 (-----) [005] ...1 82316.494037: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
76111           <...>-27698 (-----) [005] ...1 82316.494042: tracing_mark_write: E|27550
76112           <...>-27698 (-----) [005] .... 82316.494057: binder_transaction: transaction=1570602 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
76113           <...>-27698 (-----) [005] .... 82316.494060: binder_transaction_alloc_buf: transaction=1570602 data_size=48 offsets_size=0
76114           <...>-27698 (-----) [005] ...2 82316.494062: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
76115           <...>-27698 (-----) [005] d..4 82316.494065: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
76116           <...>-27698 (-----) [005] dn.5 82316.494074: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
76117           <...>-27698 (-----) [005] d..2 82316.494081: sched_switch: prev_comm=id.nn.benchmark prev_pid=27698 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
76118<...>-770 ( 770) [005] .... 82316.494089: binder_transaction_received: transaction=1570602
76119<...>-770 ( 770) [005] ...1 82316.494106: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
76120<...>-770 ( 770) [005] d..2 82316.494165: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
76121          <idle>-0     (-----) [003] d.h2 82316.494187: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
76122          <idle>-0     (-----) [000] dnh2 82316.494189: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
76123          <idle>-0     (-----) [000] .n.1 82316.494197: cpu_idle: state=4294967295 cpu_id=0
76124<...>-770 ( 770) [005] ...1 82316.494198: tracing_mark_write: E|770
76125          <idle>-0     (-----) [003] dnh3 82316.494204: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
76126<...>-770 ( 770) [005] .... 82316.494205: binder_transaction: transaction=1570603 dest_node=0 dest_proc=27550 dest_thread=27698 reply=1 flags=0x0 code=0x0
76127<...>-770 ( 770) [005] .... 82316.494208: binder_transaction_alloc_buf: transaction=1570603 data_size=168 offsets_size=32
76128          <idle>-0     (-----) [000] d..2 82316.494208: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
76129          <idle>-0     (-----) [003] .n.1 82316.494213: cpu_idle: state=4294967295 cpu_id=3
76130<...>-770 ( 770) [005] .... 82316.494214: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
76131          <idle>-0     (-----) [003] d..2 82316.494221: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
76132        DispSync-8879  ( 8858) [003] d..1 82316.494242: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
76133<...>-770 ( 770) [005] d..2 82316.494248: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27698 next_prio=110
76134           <...>-27698 (-----) [005] .... 82316.494259: binder_transaction_received: transaction=1570603
76135        DispSync-8879  ( 8858) [003] d..2 82316.494259: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
76136          <idle>-0     (-----) [002] .n.1 82316.494264: cpu_idle: state=4294967295 cpu_id=2
76137<...>-581 ( 571) [000] d..2 82316.494266: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76138          <idle>-0     (-----) [002] d..2 82316.494276: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
76139          <idle>-0     (-----) [000] d..1 82316.494281: cpu_idle: state=0 cpu_id=0
76140        DispSync-8879  ( 8858) [003] d..2 82316.494294: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76141          <idle>-0     (-----) [003] d..1 82316.494305: cpu_idle: state=0 cpu_id=3
76142   sfEventThread-8882  ( 8858) [002] d..3 82316.494316: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
76143   sfEventThread-8882  ( 8858) [002] d..4 82316.494336: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
76144          <idle>-0     (-----) [003] .n.1 82316.494342: cpu_idle: state=4294967295 cpu_id=3
76145          <idle>-0     (-----) [003] d..2 82316.494350: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
76146   sfEventThread-8882  ( 8858) [002] d..2 82316.494369: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76147          <idle>-0     (-----) [002] d..1 82316.494383: cpu_idle: state=0 cpu_id=2
76148           <...>-27698 (-----) [005] ...1 82316.494530: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
76149           <...>-27698 (-----) [005] ...1 82316.494541: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
76150           <...>-27698 (-----) [005] ...1 82316.494544: tracing_mark_write: E|27550
76151           <...>-27698 (-----) [005] .... 82316.494605: binder_transaction: transaction=1570604 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
76152           <...>-27698 (-----) [005] .... 82316.494608: binder_transaction_alloc_buf: transaction=1570604 data_size=556 offsets_size=104
76153           <...>-27698 (-----) [005] ...2 82316.494622: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
76154           <...>-27698 (-----) [005] d..4 82316.494624: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76155           <...>-27698 (-----) [005] dn.5 82316.494636: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76156           <...>-27698 (-----) [005] d..2 82316.494642: sched_switch: prev_comm=id.nn.benchmark prev_pid=27698 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76157<...>-5340 ( 788) [005] .... 82316.494652: binder_transaction_received: transaction=1570604
76158<...>-5340 ( 788) [005] ...1 82316.494698: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
76159  surfaceflinger-8858  ( 8858) [003] d..1 82316.494701: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
76160  surfaceflinger-8858  ( 8858) [003] d..2 82316.494722: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
76161          <idle>-0     (-----) [002] .n.1 82316.494727: cpu_idle: state=4294967295 cpu_id=2
76162          <idle>-0     (-----) [002] d..2 82316.494737: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
76163<...>-5340 ( 788) [005] d..2 82316.494745: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
76164   sfEventThread-8882  ( 8858) [002] d..2 82316.494777: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76165          <idle>-0     (-----) [002] dnh3 82316.494791: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
76166<...>-5340 ( 788) [005] d..2 82316.494791: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27698 next_prio=110
76167          <idle>-0     (-----) [002] d..2 82316.494802: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
76168           <...>-27698 (-----) [005] d..2 82316.494814: sched_switch: prev_comm=id.nn.benchmark prev_pid=27698 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76169          <idle>-0     (-----) [005] d..1 82316.494831: cpu_idle: state=0 cpu_id=5
76170<...>-87 ( 87) [002] d..2 82316.494842: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76171          <idle>-0     (-----) [002] d.h5 82316.494862: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76172          <idle>-0     (-----) [002] dnh6 82316.494880: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76173          <idle>-0     (-----) [002] d..2 82316.494893: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
76174  surfaceflinger-8858  ( 8858) [003] ...1 82316.494912: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
76175  surfaceflinger-8858  ( 8858) [003] ...1 82316.494918: tracing_mark_write: E|8858
76176<...>-86 ( 86) [002] d..2 82316.494923: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76177          <idle>-0     (-----) [002] d.h5 82316.494945: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76178          <idle>-0     (-----) [005] dnh2 82316.494966: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76179          <idle>-0     (-----) [005] .n.1 82316.494970: cpu_idle: state=4294967295 cpu_id=5
76180  surfaceflinger-8858  ( 8858) [003] .... 82316.494977: binder_transaction: transaction=1570607 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
76181          <idle>-0     (-----) [005] d..2 82316.494979: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76182  surfaceflinger-8858  ( 8858) [003] .... 82316.494982: binder_transaction_alloc_buf: transaction=1570607 data_size=540 offsets_size=96
76183          <idle>-0     (-----) [002] d..1 82316.494990: cpu_idle: state=0 cpu_id=2
76184  surfaceflinger-8858  ( 8858) [003] ...2 82316.495008: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
76185  surfaceflinger-8858  ( 8858) [003] d..4 82316.495017: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
76186<...>-5340 ( 788) [005] d..1 82316.495032: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
76187  surfaceflinger-8858  ( 8858) [003] d..5 82316.495037: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
76188          <idle>-0     (-----) [001] .n.1 82316.495042: cpu_idle: state=4294967295 cpu_id=1
76189          <idle>-0     (-----) [001] d..2 82316.495052: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
76190 [email protected]   (  619) [001] .... 82316.495063: binder_transaction_received: transaction=1570607
76191  surfaceflinger-8858  ( 8858) [003] d..2 82316.495070: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76192          <idle>-0     (-----) [003] dnh3 82316.495086: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
76193          <idle>-0     (-----) [003] d..2 82316.495097: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
76194 [email protected]   (  619) [001] ...1 82316.495145: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
76195 neuralnetworks@-13088 (  788) [003] d.s1 82316.495147: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
76196 neuralnetworks@-13088 (  788) [003] d.s2 82316.495168: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
76197 neuralnetworks@-13088 (  788) [003] d.s1 82316.495171: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
76198 neuralnetworks@-13088 (  788) [003] d.s2 82316.495186: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
76199 neuralnetworks@-13088 (  788) [003] d.s2 82316.495192: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
76200 neuralnetworks@-13088 (  788) [003] d.s3 82316.495226: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76201<...>-5340 ( 788) [005] d..2 82316.495229: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
76202 [email protected]   (  619) [001] ...1 82316.495251: tracing_mark_write: B|619|HWCSession::PresentDisplay::
76203          <idle>-0     (-----) [002] dnh2 82316.495252: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
76204          <idle>-0     (-----) [002] .n.1 82316.495258: cpu_idle: state=4294967295 cpu_id=2
76205<...>-5340 ( 788) [005] d..2 82316.495258: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76206 neuralnetworks@-13088 (  788) [003] d..2 82316.495270: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
76207          <idle>-0     (-----) [002] d..2 82316.495271: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
76208          <idle>-0     (-----) [005] d..1 82316.495272: cpu_idle: state=0 cpu_id=5
76209<...>-8 ( 8) [003] d..2 82316.495292: 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
76210<...>-87 ( 87) [002] d..2 82316.495318: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76211     rcu_preempt-7     (    7) [003] d..2 82316.495320: 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
76212          <idle>-0     (-----) [002] d.h5 82316.495336: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76213          <idle>-0     (-----) [003] d..1 82316.495337: cpu_idle: state=0 cpu_id=3
76214          <idle>-0     (-----) [002] dnh6 82316.495346: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76215          <idle>-0     (-----) [002] d..2 82316.495359: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
76216<...>-86 ( 86) [002] d..2 82316.495395: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76217          <idle>-0     (-----) [002] d..1 82316.495408: cpu_idle: state=0 cpu_id=2
76218 [email protected]   (  619) [001] ...1 82316.495426: tracing_mark_write: B|619|HWDeviceDRM::Commit::
76219 [email protected]   (  619) [001] ...1 82316.495441: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
76220          <idle>-0     (-----) [005] ...1 82316.495598: cpu_idle: state=4294967295 cpu_id=5
76221          <idle>-0     (-----) [005] d..1 82316.495602: cpu_idle: state=0 cpu_id=5
76222          <idle>-0     (-----) [000] ...1 82316.495858: cpu_idle: state=4294967295 cpu_id=0
76223          <idle>-0     (-----) [000] d..1 82316.495864: cpu_idle: state=0 cpu_id=0
76224 [email protected]   (  619) [001] d..2 82316.496052: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
76225 [email protected]   (  619) [001] d..3 82316.496076: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
76226          <idle>-0     (-----) [002] .n.1 82316.496081: cpu_idle: state=4294967295 cpu_id=2
76227          <idle>-0     (-----) [002] d..2 82316.496092: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
76228 [email protected]   (  619) [001] ...1 82316.496184: tracing_mark_write: E|619
76229 [email protected]   (  619) [001] ...1 82316.496192: tracing_mark_write: E|619
76230 [email protected]   (  619) [001] ...1 82316.496255: tracing_mark_write: E|619
76231 [email protected]   (  619) [001] ...1 82316.496300: tracing_mark_write: E|619
76232 [email protected]   (  619) [001] .... 82316.496315: binder_transaction: transaction=1570608 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
76233 [email protected]   (  619) [001] .... 82316.496319: binder_transaction_alloc_buf: transaction=1570608 data_size=576 offsets_size=112
76234 [email protected]   (  619) [001] d..2 82316.496338: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
76235 [email protected]   (  619) [001] d..3 82316.496356: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
76236 [email protected]   (  619) [001] .... 82316.496361: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
76237          <idle>-0     (-----) [003] .n.1 82316.496362: cpu_idle: state=4294967295 cpu_id=3
76238          <idle>-0     (-----) [003] d..2 82316.496373: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
76239  surfaceflinger-8858  ( 8858) [003] .... 82316.496383: binder_transaction_received: transaction=1570608
76240 [email protected]   (  619) [001] d..2 82316.496435: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
76241  kworker/u16:13-1147  ( 1147) [001] d..2 82316.496637: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
76242          <idle>-0     (-----) [001] d.s4 82316.496676: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76243          <idle>-0     (-----) [001] d.s5 82316.496687: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
76244          <idle>-0     (-----) [001] dns5 82316.496692: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76245          <idle>-0     (-----) [001] d..2 82316.496705: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
76246  kworker/u16:13-1147  ( 1147) [001] d..2 82316.496734: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76247          <idle>-0     (-----) [001] d..1 82316.496752: cpu_idle: state=0 cpu_id=1
76248 crtc_commit:111-321   (  321) [002] d..2 82316.496800: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
76249  surfaceflinger-8858  ( 8858) [003] d..2 82316.496815: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76250          <idle>-0     (-----) [002] d..1 82316.496817: cpu_idle: state=0 cpu_id=2
76251          <idle>-0     (-----) [003] d..1 82316.496834: cpu_idle: state=0 cpu_id=3
76252          <idle>-0     (-----) [002] d.h4 82316.496954: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76253          <idle>-0     (-----) [005] dnh2 82316.496975: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76254          <idle>-0     (-----) [005] .n.1 82316.496979: cpu_idle: state=4294967295 cpu_id=5
76255          <idle>-0     (-----) [005] d..2 82316.496987: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76256          <idle>-0     (-----) [002] ...1 82316.496996: cpu_idle: state=4294967295 cpu_id=2
76257          <idle>-0     (-----) [002] d..1 82316.497002: cpu_idle: state=0 cpu_id=2
76258<...>-5340 ( 788) [005] d..1 82316.497039: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
76259          <idle>-0     (-----) [003] dnh2 82316.497067: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
76260          <idle>-0     (-----) [003] .n.1 82316.497074: cpu_idle: state=4294967295 cpu_id=3
76261          <idle>-0     (-----) [003] d..2 82316.497108: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
76262<...>-5340 ( 788) [005] ...1 82316.497131: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
76263<...>-5340 ( 788) [005] ...1 82316.497135: tracing_mark_write: E|788
76264<...>-5340 ( 788) [005] .... 82316.497152: binder_transaction: transaction=1570609 dest_node=1570605 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
76265<...>-5340 ( 788) [005] .... 82316.497155: binder_transaction_alloc_buf: transaction=1570609 data_size=60 offsets_size=0
76266<...>-5340 ( 788) [005] d..4 82316.497158: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
76267 neuralnetworks@-13088 (  788) [003] d..2 82316.497158: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76268          <idle>-0     (-----) [003] d..1 82316.497171: cpu_idle: state=0 cpu_id=3
76269<...>-5340 ( 788) [005] d..5 82316.497171: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
76270          <idle>-0     (-----) [004] .n.1 82316.497177: cpu_idle: state=4294967295 cpu_id=4
76271          <idle>-0     (-----) [004] d..2 82316.497186: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
76272           <...>-27571 (-----) [004] .... 82316.497191: binder_transaction_received: transaction=1570609
76273<...>-5340 ( 788) [005] ...1 82316.497194: tracing_mark_write: E|788
76274<...>-5340 ( 788) [005] .... 82316.497200: binder_transaction: transaction=1570610 dest_node=0 dest_proc=27550 dest_thread=27698 reply=1 flags=0x0 code=0x0
76275<...>-5340 ( 788) [005] .... 82316.497202: binder_transaction_alloc_buf: transaction=1570610 data_size=8 offsets_size=0
76276<...>-5340 ( 788) [005] d..2 82316.497204: sched_waking: comm=id.nn.benchmark pid=27698 prio=110 target_cpu=005
76277           <...>-27571 (-----) [004] ...1 82316.497210: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
76278<...>-5340 ( 788) [005] d..3 82316.497211: sched_wakeup: comm=id.nn.benchmark pid=27698 prio=110 target_cpu=005
76279<...>-5340 ( 788) [005] .... 82316.497213: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
76280           <...>-27571 (-----) [004] ...1 82316.497216: tracing_mark_write: E|27550
76281           <...>-27571 (-----) [004] d..2 82316.497246: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76282          <idle>-0     (-----) [004] d..1 82316.497254: cpu_idle: state=0 cpu_id=4
76283<...>-5340 ( 788) [005] d..2 82316.497256: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27698 next_prio=110
76284           <...>-27698 (-----) [005] .... 82316.497266: binder_transaction_received: transaction=1570610
76285           <...>-27698 (-----) [005] ...1 82316.497303: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
76286           <...>-27698 (-----) [005] ...1 82316.497310: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
76287           <...>-27698 (-----) [005] ...1 82316.497337: tracing_mark_write: E|27550
76288           <...>-27698 (-----) [005] ...1 82316.497341: tracing_mark_write: E|27550
76289           <...>-27698 (-----) [005] ...1 82316.497345: tracing_mark_write: E|27550
76290           <...>-27698 (-----) [005] ...1 82316.497535: tracing_mark_write: E|27550
76291           <...>-27698 (-----) [005] d..1 82316.497549: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76292           <...>-27698 (-----) [005] d..2 82316.497565: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76293          <idle>-0     (-----) [004] .n.1 82316.497570: cpu_idle: state=4294967295 cpu_id=4
76294          <idle>-0     (-----) [004] d..2 82316.497577: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
76295           <...>-27550 (-----) [004] d..2 82316.497597: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76296          <idle>-0     (-----) [004] d..1 82316.497606: cpu_idle: state=0 cpu_id=4
76297           <...>-27698 (-----) [005] d..1 82316.497659: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76298           <...>-27698 (-----) [005] d..2 82316.497669: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76299          <idle>-0     (-----) [004] .n.1 82316.497674: cpu_idle: state=4294967295 cpu_id=4
76300          <idle>-0     (-----) [004] d..2 82316.497682: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
76301           <...>-27698 (-----) [005] d..2 82316.497709: sched_switch: prev_comm=id.nn.benchmark prev_pid=27698 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
76302           <...>-27550 (-----) [004] ...1 82316.497714: tracing_mark_write: E|27550
76303           <...>-27550 (-----) [004] ...1 82316.497719: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
76304           <...>-27550 (-----) [004] ...1 82316.497725: tracing_mark_write: E|27550
76305           <...>-27550 (-----) [004] ...1 82316.497728: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
76306          <idle>-0     (-----) [005] d..1 82316.497730: cpu_idle: state=0 cpu_id=5
76307           <...>-27550 (-----) [004] ...1 82316.497733: tracing_mark_write: E|27550
76308           <...>-27550 (-----) [004] ...1 82316.497737: tracing_mark_write: E|27550
76309           <...>-27550 (-----) [004] ...1 82316.497850: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
76310           <...>-27550 (-----) [004] ...1 82316.497908: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
76311           <...>-27550 (-----) [004] ...1 82316.497913: tracing_mark_write: E|27550
76312           <...>-27550 (-----) [004] ...1 82316.497916: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
76313           <...>-27550 (-----) [004] ...1 82316.497922: tracing_mark_write: E|27550
76314           <...>-27550 (-----) [004] ...1 82316.497926: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
76315           <...>-27550 (-----) [004] ...1 82316.497930: tracing_mark_write: E|27550
76316           <...>-27550 (-----) [004] ...1 82316.497934: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
76317          <idle>-0     (-----) [005] .n.1 82316.498031: cpu_idle: state=4294967295 cpu_id=5
76318           <...>-27550 (-----) [004] ...1 82316.498032: tracing_mark_write: E|27550
76319           <...>-27550 (-----) [004] ...1 82316.498037: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
76320          <idle>-0     (-----) [005] d..2 82316.498040: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27699 next_prio=110
76321           <...>-27550 (-----) [004] d..2 82316.498054: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76322          <idle>-0     (-----) [004] d..1 82316.498068: cpu_idle: state=0 cpu_id=4
76323          <idle>-0     (-----) [001] ...1 82316.498079: cpu_idle: state=4294967295 cpu_id=1
76324          <idle>-0     (-----) [001] d..1 82316.498084: cpu_idle: state=0 cpu_id=1
76325           <...>-27699 (-----) [005] ...1 82316.498101: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
76326           <...>-27699 (-----) [005] ...1 82316.498116: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
76327           <...>-27699 (-----) [005] ...1 82316.498120: tracing_mark_write: E|27550
76328           <...>-27699 (-----) [005] .... 82316.498141: binder_transaction: transaction=1570611 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
76329           <...>-27699 (-----) [005] .... 82316.498145: binder_transaction_alloc_buf: transaction=1570611 data_size=48 offsets_size=0
76330           <...>-27699 (-----) [005] ...2 82316.498148: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
76331           <...>-27699 (-----) [005] d..4 82316.498150: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
76332           <...>-27699 (-----) [005] dn.5 82316.498161: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
76333           <...>-27699 (-----) [005] d..2 82316.498168: sched_switch: prev_comm=id.nn.benchmark prev_pid=27699 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
76334<...>-770 ( 770) [005] .... 82316.498177: binder_transaction_received: transaction=1570611
76335<...>-770 ( 770) [005] ...1 82316.498202: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
76336<...>-770 ( 770) [005] d..2 82316.498286: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
76337          <idle>-0     (-----) [000] dnh2 82316.498312: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
76338          <idle>-0     (-----) [000] .n.1 82316.498318: cpu_idle: state=4294967295 cpu_id=0
76339<...>-770 ( 770) [005] ...1 82316.498327: tracing_mark_write: E|770
76340          <idle>-0     (-----) [000] d..2 82316.498330: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
76341<...>-770 ( 770) [005] .... 82316.498335: binder_transaction: transaction=1570612 dest_node=0 dest_proc=27550 dest_thread=27699 reply=1 flags=0x0 code=0x0
76342<...>-770 ( 770) [005] .... 82316.498338: binder_transaction_alloc_buf: transaction=1570612 data_size=168 offsets_size=32
76343<...>-770 ( 770) [005] .... 82316.498345: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
76344<...>-770 ( 770) [005] d..2 82316.498381: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27699 next_prio=110
76345           <...>-27699 (-----) [005] .... 82316.498393: binder_transaction_received: transaction=1570612
76346<...>-581 ( 571) [000] d..2 82316.498395: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76347          <idle>-0     (-----) [000] d..1 82316.498410: cpu_idle: state=0 cpu_id=0
76348           <...>-27699 (-----) [005] d.s3 82316.498469: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76349          <idle>-0     (-----) [001] dnh2 82316.498492: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76350          <idle>-0     (-----) [001] .n.1 82316.498498: cpu_idle: state=4294967295 cpu_id=1
76351          <idle>-0     (-----) [001] d..2 82316.498511: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
76352           <...>-27699 (-----) [005] ...1 82316.498519: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
76353           <...>-27699 (-----) [005] ...1 82316.498523: tracing_mark_write: E|27550
76354           <...>-27699 (-----) [005] .... 82316.498538: binder_transaction: transaction=1570613 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
76355           <...>-27699 (-----) [005] .... 82316.498541: binder_transaction_alloc_buf: transaction=1570613 data_size=48 offsets_size=0
76356           <...>-27699 (-----) [005] ...2 82316.498543: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
76357           <...>-27699 (-----) [005] d..4 82316.498545: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
76358  kworker/u16:13-1147  ( 1147) [001] .... 82316.498552: clk_set_rate: l3_cluster0_vote_clk 403200000
76359           <...>-27699 (-----) [005] dn.5 82316.498553: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
76360           <...>-27699 (-----) [005] d..2 82316.498560: sched_switch: prev_comm=id.nn.benchmark prev_pid=27699 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
76361<...>-770 ( 770) [005] .... 82316.498568: binder_transaction_received: transaction=1570613
76362<...>-770 ( 770) [005] ...1 82316.498602: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
76363<...>-770 ( 770) [005] d..2 82316.498662: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
76364          <idle>-0     (-----) [000] dnh2 82316.498686: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
76365          <idle>-0     (-----) [000] .n.1 82316.498693: cpu_idle: state=4294967295 cpu_id=0
76366<...>-770 ( 770) [005] ...1 82316.498695: tracing_mark_write: E|770
76367<...>-770 ( 770) [005] .... 82316.498703: binder_transaction: transaction=1570614 dest_node=0 dest_proc=27550 dest_thread=27699 reply=1 flags=0x0 code=0x0
76368          <idle>-0     (-----) [000] d..2 82316.498705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
76369<...>-770 ( 770) [005] .... 82316.498705: binder_transaction_alloc_buf: transaction=1570614 data_size=168 offsets_size=32
76370<...>-770 ( 770) [005] .... 82316.498711: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
76371<...>-770 ( 770) [005] d..2 82316.498746: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27699 next_prio=110
76372           <...>-27699 (-----) [005] .... 82316.498756: binder_transaction_received: transaction=1570614
76373<...>-581 ( 571) [000] d..2 82316.498767: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76374  kworker/u16:13-1147  ( 1147) [001] d..2 82316.498783: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
76375          <idle>-0     (-----) [000] d..1 82316.498783: cpu_idle: state=0 cpu_id=0
76376          <idle>-0     (-----) [001] d.s4 82316.498823: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76377          <idle>-0     (-----) [001] d.s5 82316.498832: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
76378          <idle>-0     (-----) [001] dns5 82316.498837: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76379          <idle>-0     (-----) [001] d..2 82316.498850: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
76380  kworker/u16:13-1147  ( 1147) [001] d..2 82316.498931: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76381          <idle>-0     (-----) [001] d..1 82316.498946: cpu_idle: state=0 cpu_id=1
76382           <...>-27699 (-----) [005] ...1 82316.499048: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
76383           <...>-27699 (-----) [005] ...1 82316.499058: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
76384           <...>-27699 (-----) [005] ...1 82316.499061: tracing_mark_write: E|27550
76385           <...>-27699 (-----) [005] .... 82316.499125: binder_transaction: transaction=1570615 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
76386           <...>-27699 (-----) [005] .... 82316.499128: binder_transaction_alloc_buf: transaction=1570615 data_size=556 offsets_size=104
76387           <...>-27699 (-----) [005] ...2 82316.499142: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
76388           <...>-27699 (-----) [005] d..4 82316.499145: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76389           <...>-27699 (-----) [005] dn.5 82316.499157: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76390           <...>-27699 (-----) [005] d..2 82316.499163: sched_switch: prev_comm=id.nn.benchmark prev_pid=27699 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76391<...>-5340 ( 788) [005] .... 82316.499173: binder_transaction_received: transaction=1570615
76392<...>-5340 ( 788) [005] ...1 82316.499220: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
76393<...>-5340 ( 788) [005] d..2 82316.499265: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
76394<...>-5340 ( 788) [005] d..2 82316.499301: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27699 next_prio=110
76395          <idle>-0     (-----) [000] dnh2 82316.499304: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
76396          <idle>-0     (-----) [000] .n.1 82316.499311: cpu_idle: state=4294967295 cpu_id=0
76397          <idle>-0     (-----) [000] d..2 82316.499322: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
76398           <...>-27699 (-----) [005] d..2 82316.499326: sched_switch: prev_comm=id.nn.benchmark prev_pid=27699 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76399          <idle>-0     (-----) [005] d..1 82316.499343: cpu_idle: state=0 cpu_id=5
76400<...>-87 ( 87) [000] d..2 82316.499367: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76401          <idle>-0     (-----) [002] d.h4 82316.499374: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76402          <idle>-0     (-----) [000] d..1 82316.499381: cpu_idle: state=0 cpu_id=0
76403          <idle>-0     (-----) [002] dnh5 82316.499393: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76404          <idle>-0     (-----) [002] .n.1 82316.499402: cpu_idle: state=4294967295 cpu_id=2
76405          <idle>-0     (-----) [002] d..2 82316.499415: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
76406<...>-86 ( 86) [002] d..2 82316.499452: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76407          <idle>-0     (-----) [002] d.h5 82316.499474: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76408          <idle>-0     (-----) [005] dnh2 82316.499495: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76409          <idle>-0     (-----) [005] .n.1 82316.499500: cpu_idle: state=4294967295 cpu_id=5
76410          <idle>-0     (-----) [005] d..2 82316.499508: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76411          <idle>-0     (-----) [002] d..1 82316.499520: cpu_idle: state=0 cpu_id=2
76412<...>-5340 ( 788) [005] d..1 82316.499560: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
76413          <idle>-0     (-----) [000] dnh2 82316.499597: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
76414          <idle>-0     (-----) [000] .n.1 82316.499604: cpu_idle: state=4294967295 cpu_id=0
76415          <idle>-0     (-----) [000] d..2 82316.499614: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
76416 neuralnetworks@-13088 (  788) [000] d..2 82316.499666: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76417          <idle>-0     (-----) [000] d..1 82316.499681: cpu_idle: state=0 cpu_id=0
76418<...>-5340 ( 788) [005] d..2 82316.499718: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
76419          <idle>-0     (-----) [000] dnh2 82316.499740: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
76420<...>-5340 ( 788) [005] d..2 82316.499744: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76421          <idle>-0     (-----) [000] .n.1 82316.499747: cpu_idle: state=4294967295 cpu_id=0
76422          <idle>-0     (-----) [000] d..2 82316.499757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
76423          <idle>-0     (-----) [005] d..1 82316.499758: cpu_idle: state=0 cpu_id=5
76424          <idle>-0     (-----) [002] d.h4 82316.499795: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76425<...>-87 ( 87) [000] d..2 82316.499798: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76426          <idle>-0     (-----) [002] dnh5 82316.499806: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76427          <idle>-0     (-----) [000] d..1 82316.499811: cpu_idle: state=0 cpu_id=0
76428          <idle>-0     (-----) [002] .n.1 82316.499816: cpu_idle: state=4294967295 cpu_id=2
76429          <idle>-0     (-----) [002] d..2 82316.499827: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
76430<...>-86 ( 86) [002] d..2 82316.499862: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76431          <idle>-0     (-----) [002] d..1 82316.499874: cpu_idle: state=0 cpu_id=2
76432          <idle>-0     (-----) [005] ...1 82316.500085: cpu_idle: state=4294967295 cpu_id=5
76433          <idle>-0     (-----) [005] d..1 82316.500089: cpu_idle: state=0 cpu_id=5
76434          <idle>-0     (-----) [000] ...1 82316.501083: cpu_idle: state=4294967295 cpu_id=0
76435          <idle>-0     (-----) [000] d..1 82316.501088: cpu_idle: state=0 cpu_id=0
76436          <idle>-0     (-----) [002] ...1 82316.501210: cpu_idle: state=4294967295 cpu_id=2
76437          <idle>-0     (-----) [002] d..1 82316.501215: cpu_idle: state=0 cpu_id=2
76438          <idle>-0     (-----) [002] d.h4 82316.501531: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76439          <idle>-0     (-----) [005] dnh2 82316.501551: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76440          <idle>-0     (-----) [005] .n.1 82316.501555: cpu_idle: state=4294967295 cpu_id=5
76441          <idle>-0     (-----) [005] d..2 82316.501563: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76442          <idle>-0     (-----) [002] ...1 82316.501568: cpu_idle: state=4294967295 cpu_id=2
76443          <idle>-0     (-----) [002] d..1 82316.501574: cpu_idle: state=0 cpu_id=2
76444<...>-5340 ( 788) [005] d..1 82316.501611: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
76445          <idle>-0     (-----) [000] dnh2 82316.501636: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
76446          <idle>-0     (-----) [000] .n.1 82316.501641: cpu_idle: state=4294967295 cpu_id=0
76447          <idle>-0     (-----) [000] d..2 82316.501652: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
76448<...>-5340 ( 788) [005] ...1 82316.501700: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
76449<...>-5340 ( 788) [005] ...1 82316.501705: tracing_mark_write: E|788
76450 neuralnetworks@-13088 (  788) [000] d..2 82316.501716: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76451<...>-5340 ( 788) [005] .... 82316.501721: binder_transaction: transaction=1570618 dest_node=1570616 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
76452<...>-5340 ( 788) [005] .... 82316.501724: binder_transaction_alloc_buf: transaction=1570618 data_size=60 offsets_size=0
76453<...>-5340 ( 788) [005] d..4 82316.501727: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
76454          <idle>-0     (-----) [000] d..1 82316.501730: cpu_idle: state=0 cpu_id=0
76455<...>-5340 ( 788) [005] d..5 82316.501739: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
76456          <idle>-0     (-----) [004] .n.1 82316.501745: cpu_idle: state=4294967295 cpu_id=4
76457          <idle>-0     (-----) [004] d..2 82316.501753: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
76458           <...>-27571 (-----) [004] .... 82316.501758: binder_transaction_received: transaction=1570618
76459<...>-5340 ( 788) [005] ...1 82316.501761: tracing_mark_write: E|788
76460<...>-5340 ( 788) [005] .... 82316.501767: binder_transaction: transaction=1570619 dest_node=0 dest_proc=27550 dest_thread=27699 reply=1 flags=0x0 code=0x0
76461<...>-5340 ( 788) [005] .... 82316.501769: binder_transaction_alloc_buf: transaction=1570619 data_size=8 offsets_size=0
76462<...>-5340 ( 788) [005] d..2 82316.501798: sched_waking: comm=id.nn.benchmark pid=27699 prio=110 target_cpu=005
76463          <idle>-0     (-----) [003] d.s2 82316.501803: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
76464<...>-5340 ( 788) [005] d..3 82316.501805: sched_wakeup: comm=id.nn.benchmark pid=27699 prio=110 target_cpu=005
76465<...>-5340 ( 788) [005] .... 82316.501806: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
76466           <...>-27571 (-----) [004] ...1 82316.501807: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
76467           <...>-27571 (-----) [004] ...1 82316.501814: tracing_mark_write: E|27550
76468          <idle>-0     (-----) [003] dns3 82316.501821: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
76469          <idle>-0     (-----) [003] dns2 82316.501824: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
76470          <idle>-0     (-----) [003] dns3 82316.501836: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
76471           <...>-27571 (-----) [004] d..2 82316.501847: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76472<...>-5340 ( 788) [005] d..2 82316.501850: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27699 next_prio=110
76473          <idle>-0     (-----) [003] .n.1 82316.501852: cpu_idle: state=4294967295 cpu_id=3
76474          <idle>-0     (-----) [004] d..1 82316.501855: cpu_idle: state=0 cpu_id=4
76475           <...>-27699 (-----) [005] .... 82316.501859: binder_transaction_received: transaction=1570619
76476          <idle>-0     (-----) [003] d..2 82316.501864: 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
76477     rcu_preempt-7     (    7) [003] d..2 82316.501876: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
76478           <...>-27699 (-----) [005] ...1 82316.501894: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
76479           <...>-27699 (-----) [005] ...1 82316.501900: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
76480     rcu_preempt-7     (    7) [003] d..3 82316.501916: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
76481           <...>-27699 (-----) [005] ...1 82316.501926: tracing_mark_write: E|27550
76482           <...>-27699 (-----) [005] ...1 82316.501930: tracing_mark_write: E|27550
76483           <...>-27699 (-----) [005] ...1 82316.501933: tracing_mark_write: E|27550
76484     rcu_preempt-7     (    7) [003] d..2 82316.501933: 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
76485<...>-8 ( 8) [003] d..2 82316.501941: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
76486<...>-8 ( 8) [003] d..3 82316.501978: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
76487<...>-8 ( 8) [003] d..2 82316.501989: 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
76488         rcuop/2-29    (   29) [003] d..2 82316.501995: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
76489         rcuop/2-29    (   29) [003] d..3 82316.502059: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
76490         rcuop/2-29    (   29) [003] d..2 82316.502071: 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
76491         rcuop/3-37    (   37) [003] d..2 82316.502090: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
76492<...>-46 ( 46) [003] d..2 82316.502102: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
76493<...>-46 ( 46) [003] d..3 82316.502115: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
76494           <...>-27699 (-----) [005] ...1 82316.502118: tracing_mark_write: E|27550
76495<...>-46 ( 46) [003] d..2 82316.502124: 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
76496           <...>-27699 (-----) [005] d..1 82316.502130: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76497          <idle>-0     (-----) [000] d.h5 82316.502143: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
76498           <...>-27699 (-----) [005] d..2 82316.502145: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76499<...>-8 ( 8) [003] d..2 82316.502147: 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
76500          <idle>-0     (-----) [004] .n.1 82316.502150: cpu_idle: state=4294967295 cpu_id=4
76501          <idle>-0     (-----) [004] d..2 82316.502157: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
76502          <idle>-0     (-----) [003] d..1 82316.502160: cpu_idle: state=0 cpu_id=3
76503          <idle>-0     (-----) [000] d.h6 82316.502170: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
76504          <idle>-0     (-----) [000] d.h5 82316.502175: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
76505          <idle>-0     (-----) [003] .n.1 82316.502177: cpu_idle: state=4294967295 cpu_id=3
76506           <...>-27550 (-----) [004] d..2 82316.502178: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76507          <idle>-0     (-----) [004] d..1 82316.502187: cpu_idle: state=0 cpu_id=4
76508          <idle>-0     (-----) [003] d..2 82316.502188: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
76509          <idle>-0     (-----) [000] d.h6 82316.502188: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
76510          <idle>-0     (-----) [002] .n.1 82316.502194: cpu_idle: state=4294967295 cpu_id=2
76511          <idle>-0     (-----) [002] d..2 82316.502206: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
76512          <idle>-0     (-----) [000] ...1 82316.502206: cpu_idle: state=4294967295 cpu_id=0
76513          <idle>-0     (-----) [000] d..1 82316.502212: cpu_idle: state=0 cpu_id=0
76514  crtc_event:111-322   (  322) [003] d..2 82316.502226: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76515           <...>-27699 (-----) [005] d..1 82316.502235: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76516          <idle>-0     (-----) [003] d..1 82316.502236: cpu_idle: state=0 cpu_id=3
76517           <...>-27699 (-----) [005] d..2 82316.502244: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76518          <idle>-0     (-----) [004] .n.1 82316.502249: cpu_idle: state=4294967295 cpu_id=4
76519          <idle>-0     (-----) [004] d..2 82316.502257: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
76520           <...>-27699 (-----) [005] d..2 82316.502282: sched_switch: prev_comm=id.nn.benchmark prev_pid=27699 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
76521           <...>-27550 (-----) [004] ...1 82316.502290: tracing_mark_write: E|27550
76522           <...>-27550 (-----) [004] ...1 82316.502294: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
76523           <...>-27550 (-----) [004] ...1 82316.502300: tracing_mark_write: E|27550
76524          <idle>-0     (-----) [005] d..1 82316.502303: cpu_idle: state=0 cpu_id=5
76525           <...>-27550 (-----) [004] ...1 82316.502304: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
76526           <...>-27550 (-----) [004] ...1 82316.502308: tracing_mark_write: E|27550
76527           <...>-27550 (-----) [004] ...1 82316.502312: tracing_mark_write: E|27550
76528 crtc_commit:111-321   (  321) [002] d..2 82316.502357: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
76529          <idle>-0     (-----) [002] d..1 82316.502366: cpu_idle: state=0 cpu_id=2
76530           <...>-27550 (-----) [004] ...1 82316.502424: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
76531           <...>-27550 (-----) [004] ...1 82316.502481: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
76532           <...>-27550 (-----) [004] ...1 82316.502486: tracing_mark_write: E|27550
76533           <...>-27550 (-----) [004] ...1 82316.502490: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
76534           <...>-27550 (-----) [004] ...1 82316.502495: tracing_mark_write: E|27550
76535           <...>-27550 (-----) [004] ...1 82316.502499: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
76536           <...>-27550 (-----) [004] ...1 82316.502503: tracing_mark_write: E|27550
76537           <...>-27550 (-----) [004] ...1 82316.502507: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
76538          <idle>-0     (-----) [005] .n.1 82316.502598: cpu_idle: state=4294967295 cpu_id=5
76539           <...>-27550 (-----) [004] ...1 82316.502599: tracing_mark_write: E|27550
76540           <...>-27550 (-----) [004] ...1 82316.502604: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
76541          <idle>-0     (-----) [005] d..2 82316.502607: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27700 next_prio=110
76542           <...>-27550 (-----) [004] d..2 82316.502621: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76543          <idle>-0     (-----) [004] d..1 82316.502635: cpu_idle: state=0 cpu_id=4
76544           <...>-27700 (-----) [005] ...1 82316.502668: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
76545           <...>-27700 (-----) [005] ...1 82316.502682: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
76546           <...>-27700 (-----) [005] ...1 82316.502686: tracing_mark_write: E|27550
76547           <...>-27700 (-----) [005] .... 82316.502706: binder_transaction: transaction=1570620 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
76548           <...>-27700 (-----) [005] .... 82316.502709: binder_transaction_alloc_buf: transaction=1570620 data_size=48 offsets_size=0
76549           <...>-27700 (-----) [005] ...2 82316.502712: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
76550           <...>-27700 (-----) [005] d..4 82316.502715: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
76551           <...>-27700 (-----) [005] dn.5 82316.502726: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
76552           <...>-27700 (-----) [005] d..2 82316.502732: sched_switch: prev_comm=id.nn.benchmark prev_pid=27700 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
76553<...>-770 ( 770) [005] .... 82316.502743: binder_transaction_received: transaction=1570620
76554<...>-770 ( 770) [005] ...1 82316.502765: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
76555<...>-770 ( 770) [005] d..2 82316.502834: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
76556          <idle>-0     (-----) [000] dnh2 82316.502861: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
76557          <idle>-0     (-----) [000] .n.1 82316.502867: cpu_idle: state=4294967295 cpu_id=0
76558<...>-770 ( 770) [005] ...1 82316.502874: tracing_mark_write: E|770
76559          <idle>-0     (-----) [000] d..2 82316.502881: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
76560<...>-770 ( 770) [005] .... 82316.502882: binder_transaction: transaction=1570621 dest_node=0 dest_proc=27550 dest_thread=27700 reply=1 flags=0x0 code=0x0
76561<...>-770 ( 770) [005] .... 82316.502884: binder_transaction_alloc_buf: transaction=1570621 data_size=168 offsets_size=32
76562<...>-770 ( 770) [005] .... 82316.502891: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
76563<...>-770 ( 770) [005] d..2 82316.502927: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27700 next_prio=110
76564           <...>-27700 (-----) [005] .... 82316.502938: binder_transaction_received: transaction=1570621
76565<...>-581 ( 571) [000] d..2 82316.502965: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76566          <idle>-0     (-----) [000] d..1 82316.502981: cpu_idle: state=0 cpu_id=0
76567           <...>-27700 (-----) [005] ...1 82316.503007: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
76568           <...>-27700 (-----) [005] ...1 82316.503012: tracing_mark_write: E|27550
76569           <...>-27700 (-----) [005] .... 82316.503027: binder_transaction: transaction=1570622 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
76570           <...>-27700 (-----) [005] .... 82316.503030: binder_transaction_alloc_buf: transaction=1570622 data_size=48 offsets_size=0
76571           <...>-27700 (-----) [005] ...2 82316.503032: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
76572           <...>-27700 (-----) [005] d..4 82316.503035: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
76573           <...>-27700 (-----) [005] dn.5 82316.503044: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
76574           <...>-27700 (-----) [005] d..2 82316.503050: sched_switch: prev_comm=id.nn.benchmark prev_pid=27700 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
76575<...>-770 ( 770) [005] .... 82316.503058: binder_transaction_received: transaction=1570622
76576<...>-770 ( 770) [005] ...1 82316.503076: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
76577<...>-770 ( 770) [005] d..2 82316.503132: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
76578          <idle>-0     (-----) [000] dnh2 82316.503156: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
76579          <idle>-0     (-----) [000] .n.1 82316.503163: cpu_idle: state=4294967295 cpu_id=0
76580<...>-770 ( 770) [005] ...1 82316.503165: tracing_mark_write: E|770
76581<...>-770 ( 770) [005] .... 82316.503172: binder_transaction: transaction=1570623 dest_node=0 dest_proc=27550 dest_thread=27700 reply=1 flags=0x0 code=0x0
76582          <idle>-0     (-----) [000] d..2 82316.503174: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
76583<...>-770 ( 770) [005] .... 82316.503175: binder_transaction_alloc_buf: transaction=1570623 data_size=168 offsets_size=32
76584<...>-770 ( 770) [005] .... 82316.503181: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
76585<...>-770 ( 770) [005] d..2 82316.503215: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27700 next_prio=110
76586           <...>-27700 (-----) [005] .... 82316.503226: binder_transaction_received: transaction=1570623
76587<...>-581 ( 571) [000] d..2 82316.503231: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76588          <idle>-0     (-----) [000] d..1 82316.503245: cpu_idle: state=0 cpu_id=0
76589           <...>-27700 (-----) [005] ...1 82316.503498: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
76590           <...>-27700 (-----) [005] ...1 82316.503508: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
76591           <...>-27700 (-----) [005] ...1 82316.503512: tracing_mark_write: E|27550
76592           <...>-27700 (-----) [005] .... 82316.503572: binder_transaction: transaction=1570624 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
76593           <...>-27700 (-----) [005] .... 82316.503575: binder_transaction_alloc_buf: transaction=1570624 data_size=556 offsets_size=104
76594           <...>-27700 (-----) [005] ...2 82316.503588: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
76595           <...>-27700 (-----) [005] d..4 82316.503591: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76596           <...>-27700 (-----) [005] dn.5 82316.503603: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76597           <...>-27700 (-----) [005] d..2 82316.503610: sched_switch: prev_comm=id.nn.benchmark prev_pid=27700 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76598<...>-5340 ( 788) [005] .... 82316.503620: binder_transaction_received: transaction=1570624
76599<...>-5340 ( 788) [005] ...1 82316.503663: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
76600<...>-5340 ( 788) [005] d..2 82316.503705: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
76601<...>-5340 ( 788) [005] d..2 82316.503729: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27700 next_prio=110
76602          <idle>-0     (-----) [000] dnh2 82316.503732: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
76603          <idle>-0     (-----) [000] .n.1 82316.503739: cpu_idle: state=4294967295 cpu_id=0
76604          <idle>-0     (-----) [000] d..2 82316.503751: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
76605           <...>-27700 (-----) [005] d..2 82316.503751: sched_switch: prev_comm=id.nn.benchmark prev_pid=27700 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76606          <idle>-0     (-----) [005] d..1 82316.503769: cpu_idle: state=0 cpu_id=5
76607<...>-87 ( 87) [000] d..2 82316.503793: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76608          <idle>-0     (-----) [002] d.h4 82316.503802: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76609          <idle>-0     (-----) [000] d..1 82316.503807: cpu_idle: state=0 cpu_id=0
76610          <idle>-0     (-----) [002] dnh5 82316.503821: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76611          <idle>-0     (-----) [002] .n.1 82316.503830: cpu_idle: state=4294967295 cpu_id=2
76612          <idle>-0     (-----) [002] d..2 82316.503839: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
76613<...>-86 ( 86) [002] d..2 82316.503873: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76614          <idle>-0     (-----) [002] d.h5 82316.503894: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76615          <idle>-0     (-----) [005] dnh2 82316.503916: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76616          <idle>-0     (-----) [005] .n.1 82316.503921: cpu_idle: state=4294967295 cpu_id=5
76617          <idle>-0     (-----) [005] d..2 82316.503929: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76618          <idle>-0     (-----) [002] d..1 82316.503934: cpu_idle: state=0 cpu_id=2
76619<...>-5340 ( 788) [005] d..1 82316.503982: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
76620          <idle>-0     (-----) [000] dnh2 82316.504007: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
76621          <idle>-0     (-----) [000] .n.1 82316.504014: cpu_idle: state=4294967295 cpu_id=0
76622          <idle>-0     (-----) [000] d..2 82316.504024: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
76623 neuralnetworks@-13088 (  788) [000] d..2 82316.504070: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76624          <idle>-0     (-----) [000] d..1 82316.504084: cpu_idle: state=0 cpu_id=0
76625<...>-5340 ( 788) [005] d..2 82316.504126: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
76626          <idle>-0     (-----) [000] dnh2 82316.504149: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
76627<...>-5340 ( 788) [005] d..2 82316.504152: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76628          <idle>-0     (-----) [000] .n.1 82316.504156: cpu_idle: state=4294967295 cpu_id=0
76629          <idle>-0     (-----) [000] d..2 82316.504167: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
76630          <idle>-0     (-----) [005] d..1 82316.504167: cpu_idle: state=0 cpu_id=5
76631          <idle>-0     (-----) [002] d.h4 82316.504204: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76632<...>-87 ( 87) [000] d..2 82316.504205: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76633          <idle>-0     (-----) [002] dnh5 82316.504214: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76634          <idle>-0     (-----) [000] d..1 82316.504218: cpu_idle: state=0 cpu_id=0
76635          <idle>-0     (-----) [002] .n.1 82316.504222: cpu_idle: state=4294967295 cpu_id=2
76636          <idle>-0     (-----) [002] d..2 82316.504230: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
76637<...>-86 ( 86) [002] d..2 82316.504264: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76638          <idle>-0     (-----) [002] d..1 82316.504272: cpu_idle: state=0 cpu_id=2
76639          <idle>-0     (-----) [000] d.h5 82316.504482: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
76640          <idle>-0     (-----) [005] ...1 82316.504496: cpu_idle: state=4294967295 cpu_id=5
76641          <idle>-0     (-----) [005] d..1 82316.504500: cpu_idle: state=0 cpu_id=5
76642          <idle>-0     (-----) [000] d.h6 82316.504501: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
76643          <idle>-0     (-----) [002] .n.1 82316.504507: cpu_idle: state=4294967295 cpu_id=2
76644          <idle>-0     (-----) [002] d..2 82316.504514: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
76645          <idle>-0     (-----) [000] ...1 82316.504517: cpu_idle: state=4294967295 cpu_id=0
76646          <idle>-0     (-----) [000] d..1 82316.504523: cpu_idle: state=0 cpu_id=0
76647 crtc_commit:111-321   (  321) [002] d..2 82316.504589: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76648          <idle>-0     (-----) [002] d..1 82316.504597: cpu_idle: state=0 cpu_id=2
76649          <idle>-0     (-----) [000] d.h5 82316.504771: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
76650          <idle>-0     (-----) [000] d.h6 82316.504786: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
76651          <idle>-0     (-----) [003] .n.1 82316.504792: cpu_idle: state=4294967295 cpu_id=3
76652          <idle>-0     (-----) [000] ...1 82316.504801: cpu_idle: state=4294967295 cpu_id=0
76653          <idle>-0     (-----) [003] d..2 82316.504801: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
76654          <idle>-0     (-----) [000] d..1 82316.504808: cpu_idle: state=0 cpu_id=0
76655  crtc_event:111-322   (  322) [003] d..2 82316.504824: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76656          <idle>-0     (-----) [003] d..1 82316.504833: cpu_idle: state=0 cpu_id=3
76657          <idle>-0     (-----) [002] d.s3 82316.505139: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
76658          <idle>-0     (-----) [002] d.s4 82316.505159: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
76659          <idle>-0     (-----) [003] .n.1 82316.505165: cpu_idle: state=4294967295 cpu_id=3
76660          <idle>-0     (-----) [003] d..2 82316.505175: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
76661          <idle>-0     (-----) [002] ...1 82316.505183: cpu_idle: state=4294967295 cpu_id=2
76662          <idle>-0     (-----) [002] d..1 82316.505191: cpu_idle: state=0 cpu_id=2
76663  crtc_event:111-322   (  322) [003] d..2 82316.505206: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76664          <idle>-0     (-----) [003] d..1 82316.505214: cpu_idle: state=0 cpu_id=3
76665          <idle>-0     (-----) [002] d.h4 82316.505928: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76666          <idle>-0     (-----) [005] dnh2 82316.505948: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76667          <idle>-0     (-----) [005] .n.1 82316.505952: cpu_idle: state=4294967295 cpu_id=5
76668          <idle>-0     (-----) [005] d..2 82316.505960: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76669          <idle>-0     (-----) [002] ...1 82316.505968: cpu_idle: state=4294967295 cpu_id=2
76670          <idle>-0     (-----) [002] d..1 82316.505973: cpu_idle: state=0 cpu_id=2
76671<...>-5340 ( 788) [005] d..1 82316.506009: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
76672          <idle>-0     (-----) [000] dnh2 82316.506030: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
76673          <idle>-0     (-----) [000] .n.1 82316.506049: cpu_idle: state=4294967295 cpu_id=0
76674          <idle>-0     (-----) [000] d..2 82316.506067: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
76675<...>-5340 ( 788) [005] ...1 82316.506126: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
76676<...>-5340 ( 788) [005] ...1 82316.506130: tracing_mark_write: E|788
76677 neuralnetworks@-13088 (  788) [000] d..2 82316.506133: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76678          <idle>-0     (-----) [000] d..1 82316.506144: cpu_idle: state=0 cpu_id=0
76679<...>-5340 ( 788) [005] .... 82316.506146: binder_transaction: transaction=1570627 dest_node=1570625 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
76680<...>-5340 ( 788) [005] .... 82316.506149: binder_transaction_alloc_buf: transaction=1570627 data_size=60 offsets_size=0
76681<...>-5340 ( 788) [005] d..4 82316.506152: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
76682<...>-5340 ( 788) [005] d..5 82316.506165: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
76683          <idle>-0     (-----) [004] .n.1 82316.506170: cpu_idle: state=4294967295 cpu_id=4
76684          <idle>-0     (-----) [004] d..2 82316.506179: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
76685           <...>-27571 (-----) [004] .... 82316.506184: binder_transaction_received: transaction=1570627
76686<...>-5340 ( 788) [005] ...1 82316.506187: tracing_mark_write: E|788
76687<...>-5340 ( 788) [005] .... 82316.506193: binder_transaction: transaction=1570628 dest_node=0 dest_proc=27550 dest_thread=27700 reply=1 flags=0x0 code=0x0
76688<...>-5340 ( 788) [005] .... 82316.506195: binder_transaction_alloc_buf: transaction=1570628 data_size=8 offsets_size=0
76689<...>-5340 ( 788) [005] d..2 82316.506197: sched_waking: comm=id.nn.benchmark pid=27700 prio=110 target_cpu=005
76690           <...>-27571 (-----) [004] ...1 82316.506201: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
76691<...>-5340 ( 788) [005] d..3 82316.506204: sched_wakeup: comm=id.nn.benchmark pid=27700 prio=110 target_cpu=005
76692<...>-5340 ( 788) [005] .... 82316.506206: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
76693           <...>-27571 (-----) [004] ...1 82316.506208: tracing_mark_write: E|27550
76694           <...>-27571 (-----) [004] d..2 82316.506237: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76695          <idle>-0     (-----) [004] d..1 82316.506244: cpu_idle: state=0 cpu_id=4
76696<...>-5340 ( 788) [005] d..2 82316.506248: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27700 next_prio=110
76697           <...>-27700 (-----) [005] .... 82316.506259: binder_transaction_received: transaction=1570628
76698           <...>-27700 (-----) [005] ...1 82316.506295: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
76699           <...>-27700 (-----) [005] ...1 82316.506301: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
76700           <...>-27700 (-----) [005] ...1 82316.506327: tracing_mark_write: E|27550
76701           <...>-27700 (-----) [005] ...1 82316.506331: tracing_mark_write: E|27550
76702           <...>-27700 (-----) [005] ...1 82316.506334: tracing_mark_write: E|27550
76703           <...>-27700 (-----) [005] ...1 82316.506520: tracing_mark_write: E|27550
76704           <...>-27700 (-----) [005] d..1 82316.506532: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76705           <...>-27700 (-----) [005] d..2 82316.506548: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76706          <idle>-0     (-----) [004] .n.1 82316.506554: cpu_idle: state=4294967295 cpu_id=4
76707          <idle>-0     (-----) [004] d..2 82316.506560: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
76708           <...>-27550 (-----) [004] d..2 82316.506579: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76709          <idle>-0     (-----) [004] d..1 82316.506588: cpu_idle: state=0 cpu_id=4
76710           <...>-27700 (-----) [005] d..1 82316.506634: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76711          <idle>-0     (-----) [003] d.h2 82316.506638: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
76712           <...>-27700 (-----) [005] d..2 82316.506643: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76713          <idle>-0     (-----) [004] .n.1 82316.506649: cpu_idle: state=4294967295 cpu_id=4
76714          <idle>-0     (-----) [003] dnh3 82316.506651: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
76715          <idle>-0     (-----) [004] d..2 82316.506656: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
76716          <idle>-0     (-----) [003] .n.1 82316.506659: cpu_idle: state=4294967295 cpu_id=3
76717          <idle>-0     (-----) [003] d..2 82316.506666: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
76718           <...>-27700 (-----) [005] d..2 82316.506680: sched_switch: prev_comm=id.nn.benchmark prev_pid=27700 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
76719           <...>-27550 (-----) [004] ...1 82316.506687: tracing_mark_write: E|27550
76720        DispSync-8879  ( 8858) [003] d..1 82316.506690: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
76721           <...>-27550 (-----) [004] ...1 82316.506692: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
76722           <...>-27550 (-----) [004] ...1 82316.506698: tracing_mark_write: E|27550
76723          <idle>-0     (-----) [005] d..1 82316.506700: cpu_idle: state=0 cpu_id=5
76724           <...>-27550 (-----) [004] ...1 82316.506701: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
76725           <...>-27550 (-----) [004] ...1 82316.506705: tracing_mark_write: E|27550
76726        DispSync-8879  ( 8858) [003] d..2 82316.506708: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
76727           <...>-27550 (-----) [004] ...1 82316.506710: tracing_mark_write: E|27550
76728          <idle>-0     (-----) [001] .n.1 82316.506715: cpu_idle: state=4294967295 cpu_id=1
76729          <idle>-0     (-----) [001] d..2 82316.506727: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
76730        DispSync-8879  ( 8858) [003] d..2 82316.506742: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76731          <idle>-0     (-----) [003] d..1 82316.506752: cpu_idle: state=0 cpu_id=3
76732  appEventThread-8881  ( 8858) [001] d..3 82316.506792: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
76733  appEventThread-8881  ( 8858) [001] d..4 82316.506816: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
76734          <idle>-0     (-----) [000] .n.1 82316.506822: cpu_idle: state=4294967295 cpu_id=0
76735           <...>-27550 (-----) [004] ...1 82316.506822: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
76736          <idle>-0     (-----) [000] d..2 82316.506834: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
76737  appEventThread-8881  ( 8858) [001] d..2 82316.506862: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76738          <idle>-0     (-----) [001] d..1 82316.506877: cpu_idle: state=0 cpu_id=1
76739           <...>-27550 (-----) [004] ...1 82316.506879: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
76740           <...>-27550 (-----) [004] ...1 82316.506884: tracing_mark_write: E|27550
76741           <...>-27550 (-----) [004] ...1 82316.506888: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
76742           <...>-27550 (-----) [004] ...1 82316.506894: tracing_mark_write: E|27550
76743           <...>-27550 (-----) [004] ...1 82316.506897: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
76744           <...>-27550 (-----) [004] ...1 82316.506901: tracing_mark_write: E|27550
76745           <...>-27550 (-----) [004] ...1 82316.506904: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
76746          <idle>-0     (-----) [005] .n.1 82316.506988: cpu_idle: state=4294967295 cpu_id=5
76747           <...>-27550 (-----) [004] ...1 82316.506989: tracing_mark_write: E|27550
76748           <...>-27550 (-----) [004] ...1 82316.506994: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
76749          <idle>-0     (-----) [005] d..2 82316.506997: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27701 next_prio=110
76750           <...>-27550 (-----) [004] d..2 82316.507010: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76751          <idle>-0     (-----) [004] d..1 82316.507025: cpu_idle: state=0 cpu_id=4
76752           <...>-27701 (-----) [005] ...1 82316.507058: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
76753           <...>-27701 (-----) [005] ...1 82316.507073: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
76754           <...>-27701 (-----) [005] ...1 82316.507076: tracing_mark_write: E|27550
76755           <...>-27701 (-----) [005] .... 82316.507096: binder_transaction: transaction=1570629 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
76756           <...>-27701 (-----) [005] .... 82316.507100: binder_transaction_alloc_buf: transaction=1570629 data_size=48 offsets_size=0
76757           <...>-27701 (-----) [005] ...2 82316.507103: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
76758           <...>-27701 (-----) [005] d..4 82316.507106: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
76759           <...>-27701 (-----) [005] dn.5 82316.507116: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
76760           <...>-27701 (-----) [005] d..2 82316.507123: sched_switch: prev_comm=id.nn.benchmark prev_pid=27701 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
76761<...>-770 ( 770) [005] .... 82316.507133: binder_transaction_received: transaction=1570629
76762<...>-770 ( 770) [005] ...1 82316.507154: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
76763<...>-9105 ( 9105) [000] .... 82316.507159: binder_transaction: transaction=1570630 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
76764<...>-9105 ( 9105) [000] .... 82316.507167: binder_transaction_alloc_buf: transaction=1570630 data_size=80 offsets_size=0
76765<...>-9105 ( 9105) [000] d..4 82316.507174: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
76766<...>-9105 ( 9105) [000] d..5 82316.507206: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
76767          <idle>-0     (-----) [001] .n.1 82316.507212: cpu_idle: state=4294967295 cpu_id=1
76768          <idle>-0     (-----) [001] d..2 82316.507225: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
76769<...>-770 ( 770) [005] d..2 82316.507226: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
76770<...>-13083 ( 8858) [001] .... 82316.507232: binder_transaction_received: transaction=1570630
76771<...>-9105 ( 9105) [000] d..3 82316.507243: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
76772<...>-13083 ( 8858) [001] d.h1 82316.507267: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
76773<...>-9105 ( 9105) [000] d..4 82316.507269: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
76774          <idle>-0     (-----) [002] .n.1 82316.507274: cpu_idle: state=4294967295 cpu_id=2
76775<...>-770 ( 770) [005] ...1 82316.507281: tracing_mark_write: E|770
76776<...>-13083 ( 8858) [001] d..1 82316.507282: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
76777          <idle>-0     (-----) [002] d..2 82316.507288: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
76778<...>-770 ( 770) [005] .... 82316.507290: binder_transaction: transaction=1570631 dest_node=0 dest_proc=27550 dest_thread=27701 reply=1 flags=0x0 code=0x0
76779<...>-770 ( 770) [005] .... 82316.507292: binder_transaction_alloc_buf: transaction=1570631 data_size=168 offsets_size=32
76780<...>-770 ( 770) [005] .... 82316.507299: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
76781<...>-13083 ( 8858) [001] d..2 82316.507308: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
76782          <idle>-0     (-----) [003] .n.1 82316.507313: cpu_idle: state=4294967295 cpu_id=3
76783          <idle>-0     (-----) [003] d..2 82316.507321: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
76784<...>-770 ( 770) [005] d..2 82316.507336: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27701 next_prio=110
76785<...>-13083 ( 8858) [001] d..2 82316.507342: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
76786           <...>-27701 (-----) [005] .... 82316.507347: binder_transaction_received: transaction=1570631
76787    RenderThread-9436  ( 9105) [002] d..2 82316.507348: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76788          <idle>-0     (-----) [002] d..1 82316.507362: cpu_idle: state=0 cpu_id=2
76789  appEventThread-8881  ( 8858) [003] d..2 82316.507379: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76790          <idle>-0     (-----) [003] d..1 82316.507388: cpu_idle: state=0 cpu_id=3
76791<...>-9105 ( 9105) [000] d..3 82316.507388: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
76792<...>-9105 ( 9105) [000] d..4 82316.507407: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
76793          <idle>-0     (-----) [002] .n.1 82316.507413: cpu_idle: state=4294967295 cpu_id=2
76794           <...>-27701 (-----) [005] ...1 82316.507416: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
76795           <...>-27701 (-----) [005] ...1 82316.507421: tracing_mark_write: E|27550
76796          <idle>-0     (-----) [002] d..2 82316.507425: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
76797           <...>-27701 (-----) [005] .... 82316.507435: binder_transaction: transaction=1570632 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
76798<...>-581 ( 571) [001] d..2 82316.507436: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76799           <...>-27701 (-----) [005] .... 82316.507438: binder_transaction_alloc_buf: transaction=1570632 data_size=48 offsets_size=0
76800           <...>-27701 (-----) [005] ...2 82316.507440: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
76801<...>-9105 ( 9105) [000] d..2 82316.507441: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76802           <...>-27701 (-----) [005] d..4 82316.507442: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
76803           <...>-27701 (-----) [005] dn.5 82316.507452: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
76804          <idle>-0     (-----) [001] d..1 82316.507453: cpu_idle: state=0 cpu_id=1
76805           <...>-27701 (-----) [005] d..2 82316.507459: sched_switch: prev_comm=id.nn.benchmark prev_pid=27701 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
76806          <idle>-0     (-----) [000] d..1 82316.507462: cpu_idle: state=0 cpu_id=0
76807<...>-770 ( 770) [005] .... 82316.507466: binder_transaction_received: transaction=1570632
76808<...>-770 ( 770) [005] ...1 82316.507483: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
76809<...>-770 ( 770) [005] d..2 82316.507542: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
76810    RenderThread-9436  ( 9105) [002] d..1 82316.507546: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
76811    RenderThread-9436  ( 9105) [002] d..2 82316.507566: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
76812          <idle>-0     (-----) [001] dnh2 82316.507569: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
76813          <idle>-0     (-----) [000] .n.1 82316.507573: cpu_idle: state=4294967295 cpu_id=0
76814          <idle>-0     (-----) [001] .n.1 82316.507575: cpu_idle: state=4294967295 cpu_id=1
76815<...>-770 ( 770) [005] ...1 82316.507576: tracing_mark_write: E|770
76816<...>-770 ( 770) [005] .... 82316.507584: binder_transaction: transaction=1570633 dest_node=0 dest_proc=27550 dest_thread=27701 reply=1 flags=0x0 code=0x0
76817<...>-770 ( 770) [005] .... 82316.507586: binder_transaction_alloc_buf: transaction=1570633 data_size=168 offsets_size=32
76818          <idle>-0     (-----) [000] d..2 82316.507586: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
76819          <idle>-0     (-----) [001] d..2 82316.507587: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
76820<...>-770 ( 770) [005] .... 82316.507592: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
76821<...>-770 ( 770) [005] d..2 82316.507626: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27701 next_prio=110
76822           <...>-27701 (-----) [005] .... 82316.507637: binder_transaction_received: transaction=1570633
76823    RenderThread-9436  ( 9105) [002] .... 82316.507638: binder_transaction: transaction=1570634 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
76824    RenderThread-9436  ( 9105) [002] .... 82316.507643: binder_transaction_alloc_buf: transaction=1570634 data_size=104 offsets_size=0
76825<...>-581 ( 571) [001] d..2 82316.507646: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76826    RenderThread-9436  ( 9105) [002] d..4 82316.507649: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
76827          <idle>-0     (-----) [001] d..1 82316.507659: cpu_idle: state=0 cpu_id=1
76828<...>-9105 ( 9105) [000] d..2 82316.507668: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76829    RenderThread-9436  ( 9105) [002] dn.5 82316.507669: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
76830    RenderThread-9436  ( 9105) [002] d..2 82316.507679: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
76831          <idle>-0     (-----) [000] d..1 82316.507684: cpu_idle: state=0 cpu_id=0
76832<...>-13083 ( 8858) [002] .... 82316.507687: binder_transaction_received: transaction=1570634
76833<...>-13083 ( 8858) [002] .... 82316.507761: binder_transaction: transaction=1570635 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
76834<...>-13083 ( 8858) [002] .... 82316.507765: binder_transaction_alloc_buf: transaction=1570635 data_size=52 offsets_size=8
76835<...>-13083 ( 8858) [002] d..2 82316.507815: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
76836    RenderThread-9436  ( 9105) [002] .... 82316.507824: binder_transaction_received: transaction=1570635
76837           <...>-27701 (-----) [005] ...1 82316.507911: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
76838           <...>-27701 (-----) [005] ...1 82316.507922: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
76839           <...>-27701 (-----) [005] ...1 82316.507926: tracing_mark_write: E|27550
76840           <...>-27701 (-----) [005] .... 82316.507984: binder_transaction: transaction=1570636 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
76841           <...>-27701 (-----) [005] .... 82316.507987: binder_transaction_alloc_buf: transaction=1570636 data_size=556 offsets_size=104
76842           <...>-27701 (-----) [005] ...2 82316.508000: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
76843           <...>-27701 (-----) [005] d..4 82316.508003: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76844           <...>-27701 (-----) [005] dn.5 82316.508014: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76845           <...>-27701 (-----) [005] d..2 82316.508021: sched_switch: prev_comm=id.nn.benchmark prev_pid=27701 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76846<...>-5340 ( 788) [005] .... 82316.508031: binder_transaction_received: transaction=1570636
76847<...>-5340 ( 788) [005] ...1 82316.508075: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
76848<...>-5340 ( 788) [005] d..2 82316.508119: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
76849<...>-5340 ( 788) [005] d..2 82316.508157: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27701 next_prio=110
76850    RenderThread-9436  ( 9105) [002] dnh1 82316.508165: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
76851           <...>-27701 (-----) [005] d..2 82316.508179: sched_switch: prev_comm=id.nn.benchmark prev_pid=27701 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76852    RenderThread-9436  ( 9105) [002] d..2 82316.508179: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
76853          <idle>-0     (-----) [005] d..1 82316.508197: cpu_idle: state=0 cpu_id=5
76854<...>-87 ( 87) [002] d..2 82316.508215: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
76855    RenderThread-9436  ( 9105) [002] d.h5 82316.508233: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76856    RenderThread-9436  ( 9105) [002] dnh6 82316.508253: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76857    RenderThread-9436  ( 9105) [002] d..2 82316.508265: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
76858<...>-86 ( 86) [002] d..2 82316.508291: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
76859    RenderThread-9436  ( 9105) [002] d.h3 82316.508314: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76860          <idle>-0     (-----) [005] dnh2 82316.508336: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76861          <idle>-0     (-----) [005] .n.1 82316.508340: cpu_idle: state=4294967295 cpu_id=5
76862          <idle>-0     (-----) [005] d..2 82316.508350: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76863<...>-5340 ( 788) [005] d..1 82316.508402: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
76864    RenderThread-9436  ( 9105) [002] dnh1 82316.508441: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
76865          <idle>-0     (-----) [003] d.s2 82316.508466: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
76866<...>-5340 ( 788) [005] d.s2 82316.508467: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76867          <idle>-0     (-----) [003] dns3 82316.508485: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
76868          <idle>-0     (-----) [003] dns2 82316.508489: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
76869    RenderThread-9436  ( 9105) [002] d..2 82316.508496: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
76870          <idle>-0     (-----) [003] dns3 82316.508501: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
76871 neuralnetworks@-13088 (  788) [002] d.h3 82316.508512: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
76872          <idle>-0     (-----) [003] .n.1 82316.508512: cpu_idle: state=4294967295 cpu_id=3
76873          <idle>-0     (-----) [003] d..2 82316.508521: 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
76874     rcu_preempt-7     (    7) [003] d..2 82316.508542: 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
76875 neuralnetworks@-13088 (  788) [002] d..2 82316.508553: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
76876<...>-8 ( 8) [003] d..2 82316.508576: 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
76877          <idle>-0     (-----) [003] d..1 82316.508586: cpu_idle: state=0 cpu_id=3
76878<...>-5340 ( 788) [005] d..2 82316.508649: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
76879  kworker/u16:13-1147  ( 1147) [002] d.h1 82316.508673: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
76880<...>-5340 ( 788) [005] d..2 82316.508677: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
76881          <idle>-0     (-----) [005] d..1 82316.508691: cpu_idle: state=0 cpu_id=5
76882  kworker/u16:13-1147  ( 1147) [002] d..2 82316.508809: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
76883          <idle>-0     (-----) [000] ...1 82316.508830: cpu_idle: state=4294967295 cpu_id=0
76884          <idle>-0     (-----) [000] d..1 82316.508836: cpu_idle: state=0 cpu_id=0
76885<...>-87 ( 87) [002] d..2 82316.508838: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
76886          <idle>-0     (-----) [001] d.s3 82316.508856: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
76887    RenderThread-9436  ( 9105) [002] d.h5 82316.508857: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76888          <idle>-0     (-----) [001] d.s4 82316.508883: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
76889    RenderThread-9436  ( 9105) [002] dnh6 82316.508884: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
76890          <idle>-0     (-----) [001] dns4 82316.508888: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76891          <idle>-0     (-----) [001] .n.1 82316.508896: cpu_idle: state=4294967295 cpu_id=1
76892    RenderThread-9436  ( 9105) [002] d..2 82316.508898: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
76893          <idle>-0     (-----) [001] d..2 82316.508910: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
76894<...>-86 ( 86) [002] d..2 82316.508923: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
76895  kworker/u16:13-1147  ( 1147) [001] .... 82316.508996: clk_set_rate: l3_cluster0_vote_clk 300000000
76896          <idle>-0     (-----) [005] ...1 82316.509012: cpu_idle: state=4294967295 cpu_id=5
76897          <idle>-0     (-----) [005] d..1 82316.509016: cpu_idle: state=0 cpu_id=5
76898  kworker/u16:13-1147  ( 1147) [001] d..2 82316.509025: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76899          <idle>-0     (-----) [001] d..1 82316.509039: cpu_idle: state=0 cpu_id=1
76900    RenderThread-9436  ( 9105) [002] d..2 82316.509556: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
76901          <idle>-0     (-----) [002] d..1 82316.509573: cpu_idle: state=0 cpu_id=2
76902          <idle>-0     (-----) [002] d.h2 82316.509638: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
76903          <idle>-0     (-----) [002] d.h3 82316.509648: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
76904          <idle>-0     (-----) [002] dnh3 82316.509654: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
76905          <idle>-0     (-----) [002] .n.1 82316.509662: cpu_idle: state=4294967295 cpu_id=2
76906          <idle>-0     (-----) [002] d..2 82316.509674: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
76907          <idle>-0     (-----) [000] d.h3 82316.509675: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
76908          <idle>-0     (-----) [000] dnh4 82316.509690: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
76909          <idle>-0     (-----) [000] .n.1 82316.509702: cpu_idle: state=4294967295 cpu_id=0
76910          <idle>-0     (-----) [000] d..2 82316.509714: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
76911 kgsl_worker_thr-258   (  258) [000] d..2 82316.509766: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76912 kgsl_worker_thr-258   (  258) [000] d..3 82316.509783: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
76913          <idle>-0     (-----) [001] .n.1 82316.509790: cpu_idle: state=4294967295 cpu_id=1
76914          <idle>-0     (-----) [001] d..2 82316.509802: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
76915 kgsl_worker_thr-258   (  258) [000] d..2 82316.509812: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76916          <idle>-0     (-----) [000] d..1 82316.509826: cpu_idle: state=0 cpu_id=0
76917  kworker/u16:13-1147  ( 1147) [001] d..2 82316.509847: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
76918          <idle>-0     (-----) [001] d..1 82316.509860: cpu_idle: state=0 cpu_id=1
76919    RenderThread-9436  ( 9105) [002] .... 82316.509876: binder_transaction: transaction=1570639 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
76920    RenderThread-9436  ( 9105) [002] .... 82316.509882: binder_transaction_alloc_buf: transaction=1570639 data_size=192 offsets_size=8
76921    RenderThread-9436  ( 9105) [002] d..4 82316.509892: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
76922    RenderThread-9436  ( 9105) [002] dn.5 82316.509909: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
76923    RenderThread-9436  ( 9105) [002] d..2 82316.509919: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
76924<...>-13083 ( 8858) [002] .... 82316.509928: binder_transaction_received: transaction=1570639
76925<...>-13083 ( 8858) [002] .... 82316.510088: binder_transaction: transaction=1570640 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
76926<...>-13083 ( 8858) [002] .... 82316.510093: binder_transaction_alloc_buf: transaction=1570640 data_size=68 offsets_size=0
76927<...>-13083 ( 8858) [002] d..2 82316.510135: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
76928    RenderThread-9436  ( 9105) [002] .... 82316.510145: binder_transaction_received: transaction=1570640
76929    RenderThread-9436  ( 9105) [002] d..2 82316.510241: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76930          <idle>-0     (-----) [002] d..1 82316.510259: cpu_idle: state=0 cpu_id=2
76931          <idle>-0     (-----) [002] d.h4 82316.510512: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76932          <idle>-0     (-----) [005] dnh2 82316.510533: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
76933          <idle>-0     (-----) [005] .n.1 82316.510537: cpu_idle: state=4294967295 cpu_id=5
76934          <idle>-0     (-----) [005] d..2 82316.510545: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
76935          <idle>-0     (-----) [002] ...1 82316.510556: cpu_idle: state=4294967295 cpu_id=2
76936          <idle>-0     (-----) [002] d..1 82316.510562: cpu_idle: state=0 cpu_id=2
76937<...>-5340 ( 788) [005] d..1 82316.510601: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
76938          <idle>-0     (-----) [000] dnh2 82316.510636: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
76939          <idle>-0     (-----) [003] d.h2 82316.510642: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
76940          <idle>-0     (-----) [000] .n.1 82316.510646: cpu_idle: state=4294967295 cpu_id=0
76941          <idle>-0     (-----) [003] dnh3 82316.510656: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
76942          <idle>-0     (-----) [000] d..2 82316.510658: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
76943          <idle>-0     (-----) [003] .n.1 82316.510693: cpu_idle: state=4294967295 cpu_id=3
76944          <idle>-0     (-----) [003] d..2 82316.510704: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
76945<...>-5340 ( 788) [005] ...1 82316.510710: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
76946<...>-5340 ( 788) [005] ...1 82316.510714: tracing_mark_write: E|788
76947        DispSync-8879  ( 8858) [003] d..1 82316.510721: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
76948<...>-5340 ( 788) [005] .... 82316.510731: binder_transaction: transaction=1570641 dest_node=1570637 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
76949<...>-5340 ( 788) [005] .... 82316.510733: binder_transaction_alloc_buf: transaction=1570641 data_size=60 offsets_size=0
76950 neuralnetworks@-13088 (  788) [000] d..2 82316.510735: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
76951        DispSync-8879  ( 8858) [003] d..2 82316.510736: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
76952<...>-5340 ( 788) [005] d..4 82316.510737: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
76953          <idle>-0     (-----) [002] .n.1 82316.510741: cpu_idle: state=4294967295 cpu_id=2
76954          <idle>-0     (-----) [000] d..1 82316.510749: cpu_idle: state=0 cpu_id=0
76955<...>-5340 ( 788) [005] d..5 82316.510750: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
76956          <idle>-0     (-----) [002] d..2 82316.510753: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
76957          <idle>-0     (-----) [004] .n.1 82316.510756: cpu_idle: state=4294967295 cpu_id=4
76958          <idle>-0     (-----) [004] d..2 82316.510764: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
76959        DispSync-8879  ( 8858) [003] d..2 82316.510767: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
76960           <...>-27571 (-----) [004] .... 82316.510769: binder_transaction_received: transaction=1570641
76961<...>-5340 ( 788) [005] ...1 82316.510774: tracing_mark_write: E|788
76962          <idle>-0     (-----) [003] d..1 82316.510779: cpu_idle: state=0 cpu_id=3
76963<...>-5340 ( 788) [005] .... 82316.510780: binder_transaction: transaction=1570642 dest_node=0 dest_proc=27550 dest_thread=27701 reply=1 flags=0x0 code=0x0
76964<...>-5340 ( 788) [005] .... 82316.510782: binder_transaction_alloc_buf: transaction=1570642 data_size=8 offsets_size=0
76965<...>-5340 ( 788) [005] d..2 82316.510784: sched_waking: comm=id.nn.benchmark pid=27701 prio=110 target_cpu=005
76966           <...>-27571 (-----) [004] ...1 82316.510789: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
76967<...>-5340 ( 788) [005] d..3 82316.510791: sched_wakeup: comm=id.nn.benchmark pid=27701 prio=110 target_cpu=005
76968<...>-5340 ( 788) [005] .... 82316.510793: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
76969           <...>-27571 (-----) [004] ...1 82316.510796: tracing_mark_write: E|27550
76970   sfEventThread-8882  ( 8858) [002] d..3 82316.510796: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
76971   sfEventThread-8882  ( 8858) [002] d..4 82316.510817: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
76972          <idle>-0     (-----) [003] .n.1 82316.510822: cpu_idle: state=4294967295 cpu_id=3
76973           <...>-27571 (-----) [004] d..2 82316.510825: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76974          <idle>-0     (-----) [003] d..2 82316.510832: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
76975          <idle>-0     (-----) [004] d..1 82316.510832: cpu_idle: state=0 cpu_id=4
76976<...>-5340 ( 788) [005] d..2 82316.510835: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27701 next_prio=110
76977           <...>-27701 (-----) [005] .... 82316.510845: binder_transaction_received: transaction=1570642
76978   sfEventThread-8882  ( 8858) [002] d..2 82316.510855: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
76979          <idle>-0     (-----) [002] d..1 82316.510870: cpu_idle: state=0 cpu_id=2
76980           <...>-27701 (-----) [005] ...1 82316.510883: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
76981           <...>-27701 (-----) [005] ...1 82316.510889: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
76982           <...>-27701 (-----) [005] ...1 82316.510915: tracing_mark_write: E|27550
76983           <...>-27701 (-----) [005] ...1 82316.510919: tracing_mark_write: E|27550
76984           <...>-27701 (-----) [005] ...1 82316.510922: tracing_mark_write: E|27550
76985           <...>-27701 (-----) [005] ...1 82316.511112: tracing_mark_write: E|27550
76986           <...>-27701 (-----) [005] d..1 82316.511125: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76987           <...>-27701 (-----) [005] d..2 82316.511141: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76988          <idle>-0     (-----) [004] .n.1 82316.511147: cpu_idle: state=4294967295 cpu_id=4
76989          <idle>-0     (-----) [004] d..2 82316.511153: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
76990           <...>-27550 (-----) [004] d..2 82316.511173: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
76991          <idle>-0     (-----) [004] d..1 82316.511182: cpu_idle: state=0 cpu_id=4
76992  surfaceflinger-8858  ( 8858) [003] d..1 82316.511203: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
76993  surfaceflinger-8858  ( 8858) [003] d..2 82316.511224: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
76994           <...>-27701 (-----) [005] d..1 82316.511229: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76995          <idle>-0     (-----) [002] .n.1 82316.511231: cpu_idle: state=4294967295 cpu_id=2
76996           <...>-27701 (-----) [005] d..2 82316.511239: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
76997          <idle>-0     (-----) [002] d..2 82316.511241: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
76998          <idle>-0     (-----) [004] .n.1 82316.511245: cpu_idle: state=4294967295 cpu_id=4
76999          <idle>-0     (-----) [004] d..2 82316.511252: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
77000           <...>-27701 (-----) [005] d..2 82316.511280: sched_switch: prev_comm=id.nn.benchmark prev_pid=27701 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
77001   sfEventThread-8882  ( 8858) [002] d..2 82316.511280: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77002          <idle>-0     (-----) [002] d..1 82316.511292: cpu_idle: state=0 cpu_id=2
77003           <...>-27550 (-----) [004] ...1 82316.511301: tracing_mark_write: E|27550
77004           <...>-27550 (-----) [004] ...1 82316.511306: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
77005          <idle>-0     (-----) [005] d..1 82316.511308: cpu_idle: state=0 cpu_id=5
77006           <...>-27550 (-----) [004] ...1 82316.511311: tracing_mark_write: E|27550
77007           <...>-27550 (-----) [004] ...1 82316.511315: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
77008           <...>-27550 (-----) [004] ...1 82316.511319: tracing_mark_write: E|27550
77009           <...>-27550 (-----) [004] ...1 82316.511324: tracing_mark_write: E|27550
77010  surfaceflinger-8858  ( 8858) [003] ...1 82316.511419: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
77011  surfaceflinger-8858  ( 8858) [003] ...1 82316.511427: tracing_mark_write: E|8858
77012           <...>-27550 (-----) [004] ...1 82316.511436: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
77013          <idle>-0     (-----) [001] ...1 82316.511456: cpu_idle: state=4294967295 cpu_id=1
77014          <idle>-0     (-----) [001] d..1 82316.511460: cpu_idle: state=0 cpu_id=1
77015  surfaceflinger-8858  ( 8858) [003] .... 82316.511478: binder_transaction: transaction=1570643 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
77016  surfaceflinger-8858  ( 8858) [003] .... 82316.511484: binder_transaction_alloc_buf: transaction=1570643 data_size=540 offsets_size=96
77017           <...>-27550 (-----) [004] ...1 82316.511494: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
77018           <...>-27550 (-----) [004] ...1 82316.511499: tracing_mark_write: E|27550
77019           <...>-27550 (-----) [004] ...1 82316.511503: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
77020           <...>-27550 (-----) [004] ...1 82316.511509: tracing_mark_write: E|27550
77021  surfaceflinger-8858  ( 8858) [003] ...2 82316.511510: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
77022           <...>-27550 (-----) [004] ...1 82316.511512: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
77023           <...>-27550 (-----) [004] ...1 82316.511516: tracing_mark_write: E|27550
77024  surfaceflinger-8858  ( 8858) [003] d..4 82316.511518: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
77025           <...>-27550 (-----) [004] ...1 82316.511519: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
77026  surfaceflinger-8858  ( 8858) [003] d..5 82316.511537: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
77027          <idle>-0     (-----) [001] .n.1 82316.511541: cpu_idle: state=4294967295 cpu_id=1
77028          <idle>-0     (-----) [001] d..2 82316.511552: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
77029 [email protected]   (  619) [001] .... 82316.511563: binder_transaction_received: transaction=1570643
77030  surfaceflinger-8858  ( 8858) [003] d..2 82316.511570: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
77031          <idle>-0     (-----) [003] d..1 82316.511587: cpu_idle: state=0 cpu_id=3
77032 [email protected]   (  619) [001] ...1 82316.511608: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
77033          <idle>-0     (-----) [005] .n.1 82316.511613: cpu_idle: state=4294967295 cpu_id=5
77034           <...>-27550 (-----) [004] ...1 82316.511615: tracing_mark_write: E|27550
77035           <...>-27550 (-----) [004] ...1 82316.511620: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
77036          <idle>-0     (-----) [005] d..2 82316.511622: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27702 next_prio=110
77037           <...>-27550 (-----) [004] d..2 82316.511637: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77038          <idle>-0     (-----) [004] d..1 82316.511652: cpu_idle: state=0 cpu_id=4
77039           <...>-27702 (-----) [005] ...1 82316.511683: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
77040           <...>-27702 (-----) [005] ...1 82316.511698: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
77041           <...>-27702 (-----) [005] ...1 82316.511702: tracing_mark_write: E|27550
77042 [email protected]   (  619) [001] ...1 82316.511718: tracing_mark_write: B|619|HWCSession::PresentDisplay::
77043           <...>-27702 (-----) [005] .... 82316.511722: binder_transaction: transaction=1570644 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
77044           <...>-27702 (-----) [005] .... 82316.511726: binder_transaction_alloc_buf: transaction=1570644 data_size=48 offsets_size=0
77045           <...>-27702 (-----) [005] ...2 82316.511730: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
77046           <...>-27702 (-----) [005] d..4 82316.511733: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
77047           <...>-27702 (-----) [005] dn.5 82316.511743: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
77048           <...>-27702 (-----) [005] d..2 82316.511750: sched_switch: prev_comm=id.nn.benchmark prev_pid=27702 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
77049<...>-770 ( 770) [005] .... 82316.511760: binder_transaction_received: transaction=1570644
77050<...>-770 ( 770) [005] ...1 82316.511875: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
77051<...>-770 ( 770) [005] d..2 82316.511961: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
77052 [email protected]   (  619) [001] d.h1 82316.511989: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
77053 [email protected]   (  619) [001] ...1 82316.511996: tracing_mark_write: B|619|HWDeviceDRM::Commit::
77054<...>-770 ( 770) [005] ...1 82316.512004: tracing_mark_write: E|770
77055 [email protected]   (  619) [001] ...1 82316.512011: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
77056<...>-770 ( 770) [005] .... 82316.512012: binder_transaction: transaction=1570645 dest_node=0 dest_proc=27550 dest_thread=27702 reply=1 flags=0x0 code=0x0
77057<...>-770 ( 770) [005] .... 82316.512015: binder_transaction_alloc_buf: transaction=1570645 data_size=168 offsets_size=32
77058<...>-770 ( 770) [005] .... 82316.512021: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
77059<...>-770 ( 770) [005] d..2 82316.512058: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27702 next_prio=110
77060           <...>-27702 (-----) [005] .... 82316.512070: binder_transaction_received: transaction=1570645
77061           <...>-27702 (-----) [005] ...1 82316.512145: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
77062           <...>-27702 (-----) [005] ...1 82316.512150: tracing_mark_write: E|27550
77063           <...>-27702 (-----) [005] .... 82316.512165: binder_transaction: transaction=1570646 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
77064           <...>-27702 (-----) [005] .... 82316.512167: binder_transaction_alloc_buf: transaction=1570646 data_size=48 offsets_size=0
77065           <...>-27702 (-----) [005] ...2 82316.512170: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
77066           <...>-27702 (-----) [005] d..4 82316.512172: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
77067           <...>-27702 (-----) [005] dn.5 82316.512182: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
77068           <...>-27702 (-----) [005] d..2 82316.512188: sched_switch: prev_comm=id.nn.benchmark prev_pid=27702 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
77069<...>-770 ( 770) [005] .... 82316.512196: binder_transaction_received: transaction=1570646
77070<...>-770 ( 770) [005] ...1 82316.512213: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
77071<...>-770 ( 770) [005] ...1 82316.512291: tracing_mark_write: E|770
77072<...>-770 ( 770) [005] .... 82316.512299: binder_transaction: transaction=1570647 dest_node=0 dest_proc=27550 dest_thread=27702 reply=1 flags=0x0 code=0x0
77073<...>-770 ( 770) [005] .... 82316.512302: binder_transaction_alloc_buf: transaction=1570647 data_size=168 offsets_size=32
77074<...>-770 ( 770) [005] .... 82316.512307: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
77075<...>-770 ( 770) [005] d..2 82316.512342: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27702 next_prio=110
77076           <...>-27702 (-----) [005] .... 82316.512353: binder_transaction_received: transaction=1570647
77077          <idle>-0     (-----) [002] ...1 82316.512478: cpu_idle: state=4294967295 cpu_id=2
77078          <idle>-0     (-----) [002] d..1 82316.512483: cpu_idle: state=0 cpu_id=2
77079           <...>-27702 (-----) [005] ...1 82316.512626: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
77080 [email protected]   (  619) [001] d..2 82316.512631: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
77081           <...>-27702 (-----) [005] ...1 82316.512636: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
77082           <...>-27702 (-----) [005] ...1 82316.512640: tracing_mark_write: E|27550
77083 [email protected]   (  619) [001] d..3 82316.512655: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
77084          <idle>-0     (-----) [002] .n.1 82316.512660: cpu_idle: state=4294967295 cpu_id=2
77085          <idle>-0     (-----) [002] d..2 82316.512672: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
77086           <...>-27702 (-----) [005] .... 82316.512701: binder_transaction: transaction=1570648 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
77087           <...>-27702 (-----) [005] .... 82316.512704: binder_transaction_alloc_buf: transaction=1570648 data_size=556 offsets_size=104
77088           <...>-27702 (-----) [005] ...2 82316.512718: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
77089           <...>-27702 (-----) [005] d..4 82316.512720: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77090           <...>-27702 (-----) [005] dn.5 82316.512733: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77091           <...>-27702 (-----) [005] d..2 82316.512740: sched_switch: prev_comm=id.nn.benchmark prev_pid=27702 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77092<...>-5340 ( 788) [005] .... 82316.512750: binder_transaction_received: transaction=1570648
77093 [email protected]   (  619) [001] ...1 82316.512764: tracing_mark_write: E|619
77094 [email protected]   (  619) [001] ...1 82316.512771: tracing_mark_write: E|619
77095<...>-5340 ( 788) [005] ...1 82316.512797: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
77096 [email protected]   (  619) [001] ...1 82316.512838: tracing_mark_write: E|619
77097<...>-5340 ( 788) [005] d..2 82316.512844: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
77098<...>-5340 ( 788) [005] d..2 82316.512870: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27702 next_prio=110
77099 crtc_commit:111-321   (  321) [002] d.h1 82316.512872: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
77100 [email protected]   (  619) [001] ...1 82316.512886: tracing_mark_write: E|619
77101           <...>-27702 (-----) [005] d..2 82316.512895: sched_switch: prev_comm=id.nn.benchmark prev_pid=27702 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77102 [email protected]   (  619) [001] .... 82316.512902: binder_transaction: transaction=1570651 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
77103 [email protected]   (  619) [001] .... 82316.512906: binder_transaction_alloc_buf: transaction=1570651 data_size=576 offsets_size=112
77104          <idle>-0     (-----) [005] d..1 82316.512913: cpu_idle: state=0 cpu_id=5
77105 [email protected]   (  619) [001] d..2 82316.512927: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
77106 [email protected]   (  619) [001] d..3 82316.512948: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
77107 [email protected]   (  619) [001] .... 82316.512953: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
77108          <idle>-0     (-----) [003] .n.1 82316.512954: cpu_idle: state=4294967295 cpu_id=3
77109          <idle>-0     (-----) [003] d..2 82316.512966: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
77110  surfaceflinger-8858  ( 8858) [003] .... 82316.512975: binder_transaction_received: transaction=1570651
77111 [email protected]   (  619) [001] d..2 82316.513029: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
77112<...>-581 ( 571) [001] d..2 82316.513150: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77113          <idle>-0     (-----) [001] d..1 82316.513170: cpu_idle: state=0 cpu_id=1
77114 crtc_commit:111-321   (  321) [002] d..2 82316.513392: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
77115  surfaceflinger-8858  ( 8858) [003] d..2 82316.513409: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
77116          <idle>-0     (-----) [003] d..1 82316.513423: cpu_idle: state=0 cpu_id=3
77117<...>-87 ( 87) [002] d..2 82316.513443: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77118          <idle>-0     (-----) [002] d.h5 82316.513463: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77119          <idle>-0     (-----) [002] dnh6 82316.513483: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77120          <idle>-0     (-----) [002] d..2 82316.513498: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
77121<...>-86 ( 86) [002] d.h4 82316.513531: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77122          <idle>-0     (-----) [005] dnh2 82316.513553: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77123          <idle>-0     (-----) [005] .n.1 82316.513558: cpu_idle: state=4294967295 cpu_id=5
77124          <idle>-0     (-----) [005] d..2 82316.513566: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77125<...>-86 ( 86) [002] d..2 82316.513590: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77126          <idle>-0     (-----) [002] d..1 82316.513607: cpu_idle: state=0 cpu_id=2
77127<...>-5340 ( 788) [005] d..1 82316.513622: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77128          <idle>-0     (-----) [000] dnh2 82316.513650: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77129          <idle>-0     (-----) [000] .n.1 82316.513656: cpu_idle: state=4294967295 cpu_id=0
77130          <idle>-0     (-----) [000] d..2 82316.513669: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
77131 neuralnetworks@-13088 (  788) [000] d..2 82316.513709: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77132          <idle>-0     (-----) [000] d..1 82316.513721: cpu_idle: state=0 cpu_id=0
77133<...>-5340 ( 788) [005] d..2 82316.513775: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
77134          <idle>-0     (-----) [002] dnh2 82316.513797: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
77135<...>-5340 ( 788) [005] d..2 82316.513801: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77136          <idle>-0     (-----) [002] .n.1 82316.513804: cpu_idle: state=4294967295 cpu_id=2
77137          <idle>-0     (-----) [005] d..1 82316.513815: cpu_idle: state=0 cpu_id=5
77138          <idle>-0     (-----) [002] d..2 82316.513815: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
77139<...>-87 ( 87) [002] d.h3 82316.513849: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77140<...>-87 ( 87) [002] d.h4 82316.513865: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77141<...>-87 ( 87) [002] d..2 82316.513881: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
77142<...>-86 ( 86) [002] d..2 82316.513913: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77143          <idle>-0     (-----) [002] d..1 82316.513927: cpu_idle: state=0 cpu_id=2
77144          <idle>-0     (-----) [001] ...1 82316.514769: cpu_idle: state=4294967295 cpu_id=1
77145          <idle>-0     (-----) [001] d..1 82316.514774: cpu_idle: state=0 cpu_id=1
77146          <idle>-0     (-----) [003] d.s2 82316.515143: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
77147          <idle>-0     (-----) [003] dns3 82316.515164: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
77148          <idle>-0     (-----) [003] dns2 82316.515167: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
77149          <idle>-0     (-----) [003] dns3 82316.515181: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
77150          <idle>-0     (-----) [003] .n.1 82316.515197: cpu_idle: state=4294967295 cpu_id=3
77151          <idle>-0     (-----) [003] d..2 82316.515207: 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
77152     rcu_preempt-7     (    7) [003] d..2 82316.515219: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
77153     rcu_preempt-7     (    7) [003] d..3 82316.515261: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
77154     rcu_preempt-7     (    7) [003] d..2 82316.515278: 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
77155         rcuop/4-45    (   45) [003] d..2 82316.515284: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
77156         rcuop/4-45    (   45) [003] d..3 82316.515301: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
77157         rcuop/4-45    (   45) [003] d..2 82316.515313: 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
77158          <idle>-0     (-----) [002] ...1 82316.515395: cpu_idle: state=4294967295 cpu_id=2
77159          <idle>-0     (-----) [002] d..1 82316.515400: cpu_idle: state=0 cpu_id=2
77160         rcuop/5-53    (   53) [003] d..2 82316.515417: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
77161<...>-8 ( 8) [003] d..2 82316.515424: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
77162<...>-8 ( 8) [003] d..3 82316.515441: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
77163<...>-8 ( 8) [003] d..2 82316.515451: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
77164<...>-46 ( 46) [003] d..2 82316.515464: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
77165<...>-46 ( 46) [003] d..3 82316.515476: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
77166<...>-46 ( 46) [003] d..2 82316.515486: 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
77167<...>-8 ( 8) [003] d..2 82316.515514: 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
77168          <idle>-0     (-----) [003] d..1 82316.515530: cpu_idle: state=0 cpu_id=3
77169          <idle>-0     (-----) [002] d.h4 82316.515536: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77170          <idle>-0     (-----) [005] dnh2 82316.515558: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77171          <idle>-0     (-----) [005] .n.1 82316.515562: cpu_idle: state=4294967295 cpu_id=5
77172          <idle>-0     (-----) [005] d..2 82316.515570: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77173          <idle>-0     (-----) [002] ...1 82316.515575: cpu_idle: state=4294967295 cpu_id=2
77174          <idle>-0     (-----) [002] d..1 82316.515583: cpu_idle: state=0 cpu_id=2
77175<...>-5340 ( 788) [005] d..1 82316.515622: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77176          <idle>-0     (-----) [000] dnh2 82316.515643: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77177          <idle>-0     (-----) [000] .n.1 82316.515652: cpu_idle: state=4294967295 cpu_id=0
77178          <idle>-0     (-----) [000] d..2 82316.515664: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
77179 neuralnetworks@-13088 (  788) [000] d..2 82316.515733: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77180<...>-5340 ( 788) [005] ...1 82316.515742: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
77181          <idle>-0     (-----) [000] d..1 82316.515745: cpu_idle: state=0 cpu_id=0
77182<...>-5340 ( 788) [005] ...1 82316.515746: tracing_mark_write: E|788
77183<...>-5340 ( 788) [005] .... 82316.515763: binder_transaction: transaction=1570652 dest_node=1570649 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
77184<...>-5340 ( 788) [005] .... 82316.515766: binder_transaction_alloc_buf: transaction=1570652 data_size=60 offsets_size=0
77185<...>-5340 ( 788) [005] d..4 82316.515769: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
77186<...>-5340 ( 788) [005] d..5 82316.515783: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
77187          <idle>-0     (-----) [004] .n.1 82316.515789: cpu_idle: state=4294967295 cpu_id=4
77188          <idle>-0     (-----) [004] d..2 82316.515798: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
77189           <...>-27571 (-----) [004] .... 82316.515803: binder_transaction_received: transaction=1570652
77190<...>-5340 ( 788) [005] ...1 82316.515805: tracing_mark_write: E|788
77191<...>-5340 ( 788) [005] .... 82316.515811: binder_transaction: transaction=1570653 dest_node=0 dest_proc=27550 dest_thread=27702 reply=1 flags=0x0 code=0x0
77192<...>-5340 ( 788) [005] .... 82316.515813: binder_transaction_alloc_buf: transaction=1570653 data_size=8 offsets_size=0
77193<...>-5340 ( 788) [005] d..2 82316.515815: sched_waking: comm=id.nn.benchmark pid=27702 prio=110 target_cpu=005
77194           <...>-27571 (-----) [004] ...1 82316.515821: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
77195<...>-5340 ( 788) [005] d..3 82316.515822: sched_wakeup: comm=id.nn.benchmark pid=27702 prio=110 target_cpu=005
77196<...>-5340 ( 788) [005] .... 82316.515824: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
77197           <...>-27571 (-----) [004] ...1 82316.515827: tracing_mark_write: E|27550
77198           <...>-27571 (-----) [004] d..2 82316.515858: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77199          <idle>-0     (-----) [004] d..1 82316.515865: cpu_idle: state=0 cpu_id=4
77200<...>-5340 ( 788) [005] d..2 82316.515866: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27702 next_prio=110
77201           <...>-27702 (-----) [005] .... 82316.515876: binder_transaction_received: transaction=1570653
77202           <...>-27702 (-----) [005] ...1 82316.515913: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
77203           <...>-27702 (-----) [005] ...1 82316.515919: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
77204           <...>-27702 (-----) [005] ...1 82316.515945: tracing_mark_write: E|27550
77205           <...>-27702 (-----) [005] ...1 82316.515949: tracing_mark_write: E|27550
77206           <...>-27702 (-----) [005] ...1 82316.515953: tracing_mark_write: E|27550
77207           <...>-27702 (-----) [005] ...1 82316.516143: tracing_mark_write: E|27550
77208           <...>-27702 (-----) [005] d..1 82316.516155: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77209           <...>-27702 (-----) [005] d..2 82316.516173: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77210          <idle>-0     (-----) [004] .n.1 82316.516178: cpu_idle: state=4294967295 cpu_id=4
77211          <idle>-0     (-----) [004] d..2 82316.516185: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
77212           <...>-27550 (-----) [004] d..2 82316.516206: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77213          <idle>-0     (-----) [004] d..1 82316.516215: cpu_idle: state=0 cpu_id=4
77214           <...>-27702 (-----) [005] d..1 82316.516264: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77215           <...>-27702 (-----) [005] d..2 82316.516273: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77216          <idle>-0     (-----) [004] .n.1 82316.516278: cpu_idle: state=4294967295 cpu_id=4
77217          <idle>-0     (-----) [004] d..2 82316.516286: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
77218           <...>-27702 (-----) [005] d..2 82316.516313: sched_switch: prev_comm=id.nn.benchmark prev_pid=27702 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
77219           <...>-27550 (-----) [004] ...1 82316.516319: tracing_mark_write: E|27550
77220           <...>-27550 (-----) [004] ...1 82316.516323: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
77221           <...>-27550 (-----) [004] ...1 82316.516329: tracing_mark_write: E|27550
77222           <...>-27550 (-----) [004] ...1 82316.516333: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
77223          <idle>-0     (-----) [005] d..1 82316.516334: cpu_idle: state=0 cpu_id=5
77224           <...>-27550 (-----) [004] ...1 82316.516336: tracing_mark_write: E|27550
77225           <...>-27550 (-----) [004] ...1 82316.516341: tracing_mark_write: E|27550
77226           <...>-27550 (-----) [004] ...1 82316.516453: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
77227           <...>-27550 (-----) [004] ...1 82316.516511: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
77228           <...>-27550 (-----) [004] ...1 82316.516517: tracing_mark_write: E|27550
77229           <...>-27550 (-----) [004] ...1 82316.516520: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
77230           <...>-27550 (-----) [004] ...1 82316.516525: tracing_mark_write: E|27550
77231           <...>-27550 (-----) [004] ...1 82316.516529: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
77232           <...>-27550 (-----) [004] ...1 82316.516533: tracing_mark_write: E|27550
77233           <...>-27550 (-----) [004] ...1 82316.516536: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
77234          <idle>-0     (-----) [005] .n.1 82316.516624: cpu_idle: state=4294967295 cpu_id=5
77235           <...>-27550 (-----) [004] ...1 82316.516626: tracing_mark_write: E|27550
77236           <...>-27550 (-----) [004] ...1 82316.516630: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
77237          <idle>-0     (-----) [005] d..2 82316.516633: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27703 next_prio=110
77238           <...>-27550 (-----) [004] d..2 82316.516647: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77239          <idle>-0     (-----) [004] d..1 82316.516661: cpu_idle: state=0 cpu_id=4
77240           <...>-27703 (-----) [005] ...1 82316.516694: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
77241           <...>-27703 (-----) [005] ...1 82316.516709: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
77242           <...>-27703 (-----) [005] ...1 82316.516713: tracing_mark_write: E|27550
77243           <...>-27703 (-----) [005] .... 82316.516734: binder_transaction: transaction=1570654 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
77244           <...>-27703 (-----) [005] .... 82316.516737: binder_transaction_alloc_buf: transaction=1570654 data_size=48 offsets_size=0
77245           <...>-27703 (-----) [005] ...2 82316.516740: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
77246           <...>-27703 (-----) [005] d..4 82316.516742: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
77247           <...>-27703 (-----) [005] dn.5 82316.516752: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
77248           <...>-27703 (-----) [005] d..2 82316.516759: sched_switch: prev_comm=id.nn.benchmark prev_pid=27703 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
77249<...>-770 ( 770) [005] .... 82316.516769: binder_transaction_received: transaction=1570654
77250<...>-770 ( 770) [005] ...1 82316.516791: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
77251<...>-770 ( 770) [005] d..2 82316.516865: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
77252          <idle>-0     (-----) [000] dnh2 82316.516902: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
77253          <idle>-0     (-----) [000] .n.1 82316.516908: cpu_idle: state=4294967295 cpu_id=0
77254<...>-770 ( 770) [005] ...1 82316.516917: tracing_mark_write: E|770
77255          <idle>-0     (-----) [000] d..2 82316.516920: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
77256<...>-770 ( 770) [005] .... 82316.516925: binder_transaction: transaction=1570655 dest_node=0 dest_proc=27550 dest_thread=27703 reply=1 flags=0x0 code=0x0
77257<...>-770 ( 770) [005] .... 82316.516928: binder_transaction_alloc_buf: transaction=1570655 data_size=168 offsets_size=32
77258<...>-770 ( 770) [005] .... 82316.516934: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
77259<...>-770 ( 770) [005] d..2 82316.516970: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27703 next_prio=110
77260           <...>-27703 (-----) [005] .... 82316.516981: binder_transaction_received: transaction=1570655
77261<...>-581 ( 571) [000] d..2 82316.517019: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77262          <idle>-0     (-----) [000] d..1 82316.517037: cpu_idle: state=0 cpu_id=0
77263           <...>-27703 (-----) [005] ...1 82316.517051: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
77264           <...>-27703 (-----) [005] ...1 82316.517056: tracing_mark_write: E|27550
77265           <...>-27703 (-----) [005] .... 82316.517070: binder_transaction: transaction=1570656 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
77266           <...>-27703 (-----) [005] .... 82316.517073: binder_transaction_alloc_buf: transaction=1570656 data_size=48 offsets_size=0
77267           <...>-27703 (-----) [005] ...2 82316.517075: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
77268           <...>-27703 (-----) [005] d..4 82316.517077: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
77269           <...>-27703 (-----) [005] dn.5 82316.517087: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
77270           <...>-27703 (-----) [005] d..2 82316.517093: sched_switch: prev_comm=id.nn.benchmark prev_pid=27703 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
77271<...>-770 ( 770) [005] .... 82316.517101: binder_transaction_received: transaction=1570656
77272          <idle>-0     (-----) [002] ...1 82316.517106: cpu_idle: state=4294967295 cpu_id=2
77273          <idle>-0     (-----) [002] d..1 82316.517110: cpu_idle: state=0 cpu_id=2
77274<...>-770 ( 770) [005] ...1 82316.517118: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
77275<...>-770 ( 770) [005] d..2 82316.517176: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
77276          <idle>-0     (-----) [000] dnh2 82316.517200: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
77277          <idle>-0     (-----) [000] .n.1 82316.517207: cpu_idle: state=4294967295 cpu_id=0
77278<...>-770 ( 770) [005] ...1 82316.517210: tracing_mark_write: E|770
77279<...>-770 ( 770) [005] .... 82316.517217: binder_transaction: transaction=1570657 dest_node=0 dest_proc=27550 dest_thread=27703 reply=1 flags=0x0 code=0x0
77280          <idle>-0     (-----) [000] d..2 82316.517218: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
77281<...>-770 ( 770) [005] .... 82316.517220: binder_transaction_alloc_buf: transaction=1570657 data_size=168 offsets_size=32
77282<...>-770 ( 770) [005] .... 82316.517225: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
77283<...>-770 ( 770) [005] d..2 82316.517260: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27703 next_prio=110
77284           <...>-27703 (-----) [005] .... 82316.517270: binder_transaction_received: transaction=1570657
77285<...>-581 ( 571) [000] d..2 82316.517275: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77286          <idle>-0     (-----) [000] d..1 82316.517289: cpu_idle: state=0 cpu_id=0
77287           <...>-27703 (-----) [005] ...1 82316.517544: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
77288           <...>-27703 (-----) [005] ...1 82316.517555: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
77289           <...>-27703 (-----) [005] ...1 82316.517559: tracing_mark_write: E|27550
77290           <...>-27703 (-----) [005] .... 82316.517620: binder_transaction: transaction=1570658 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
77291           <...>-27703 (-----) [005] .... 82316.517623: binder_transaction_alloc_buf: transaction=1570658 data_size=556 offsets_size=104
77292           <...>-27703 (-----) [005] ...2 82316.517637: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
77293           <...>-27703 (-----) [005] d..4 82316.517640: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77294           <...>-27703 (-----) [005] dn.5 82316.517651: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77295           <...>-27703 (-----) [005] d..2 82316.517657: sched_switch: prev_comm=id.nn.benchmark prev_pid=27703 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77296<...>-5340 ( 788) [005] .... 82316.517668: binder_transaction_received: transaction=1570658
77297<...>-5340 ( 788) [005] ...1 82316.517714: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
77298<...>-5340 ( 788) [005] d..2 82316.517757: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
77299<...>-5340 ( 788) [005] d..2 82316.517794: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27703 next_prio=110
77300          <idle>-0     (-----) [000] dnh2 82316.517797: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77301          <idle>-0     (-----) [000] .n.1 82316.517803: cpu_idle: state=4294967295 cpu_id=0
77302          <idle>-0     (-----) [000] d..2 82316.517815: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
77303           <...>-27703 (-----) [005] d..2 82316.517817: sched_switch: prev_comm=id.nn.benchmark prev_pid=27703 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77304          <idle>-0     (-----) [005] d..1 82316.517835: cpu_idle: state=0 cpu_id=5
77305<...>-87 ( 87) [000] d..2 82316.517859: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77306          <idle>-0     (-----) [002] d.h4 82316.517865: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77307          <idle>-0     (-----) [000] d..1 82316.517871: cpu_idle: state=0 cpu_id=0
77308          <idle>-0     (-----) [002] dnh5 82316.517881: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77309          <idle>-0     (-----) [002] .n.1 82316.517889: cpu_idle: state=4294967295 cpu_id=2
77310          <idle>-0     (-----) [002] d..2 82316.517903: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
77311<...>-86 ( 86) [002] d..2 82316.517937: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77312          <idle>-0     (-----) [002] d.h5 82316.517959: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77313          <idle>-0     (-----) [005] dnh2 82316.517980: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77314          <idle>-0     (-----) [005] .n.1 82316.517985: cpu_idle: state=4294967295 cpu_id=5
77315          <idle>-0     (-----) [005] d..2 82316.517992: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77316          <idle>-0     (-----) [002] d..1 82316.518004: cpu_idle: state=0 cpu_id=2
77317<...>-5340 ( 788) [005] d..1 82316.518045: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77318          <idle>-0     (-----) [000] dnh2 82316.518070: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77319          <idle>-0     (-----) [000] .n.1 82316.518076: cpu_idle: state=4294967295 cpu_id=0
77320          <idle>-0     (-----) [000] d..2 82316.518087: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
77321 neuralnetworks@-13088 (  788) [000] d..2 82316.518134: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77322          <idle>-0     (-----) [000] d..1 82316.518149: cpu_idle: state=0 cpu_id=0
77323<...>-5340 ( 788) [005] d..2 82316.518191: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77324          <idle>-0     (-----) [000] dnh2 82316.518214: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77325<...>-5340 ( 788) [005] d..2 82316.518217: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77326          <idle>-0     (-----) [000] .n.1 82316.518220: cpu_idle: state=4294967295 cpu_id=0
77327          <idle>-0     (-----) [005] d..1 82316.518231: cpu_idle: state=0 cpu_id=5
77328          <idle>-0     (-----) [000] d..2 82316.518231: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
77329          <idle>-0     (-----) [002] d.h4 82316.518268: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77330<...>-87 ( 87) [000] d..2 82316.518269: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77331          <idle>-0     (-----) [002] dnh5 82316.518279: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77332          <idle>-0     (-----) [000] d..1 82316.518281: cpu_idle: state=0 cpu_id=0
77333          <idle>-0     (-----) [002] .n.1 82316.518287: cpu_idle: state=4294967295 cpu_id=2
77334          <idle>-0     (-----) [002] d..2 82316.518299: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
77335<...>-86 ( 86) [002] d..2 82316.518332: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77336          <idle>-0     (-----) [002] d..1 82316.518344: cpu_idle: state=0 cpu_id=2
77337          <idle>-0     (-----) [000] d.h5 82316.518613: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
77338          <idle>-0     (-----) [000] d.h6 82316.518634: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
77339          <idle>-0     (-----) [000] d.h5 82316.518639: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
77340          <idle>-0     (-----) [003] .n.1 82316.518641: cpu_idle: state=4294967295 cpu_id=3
77341          <idle>-0     (-----) [000] d.h6 82316.518651: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
77342          <idle>-0     (-----) [003] d..2 82316.518654: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
77343          <idle>-0     (-----) [002] .n.1 82316.518658: cpu_idle: state=4294967295 cpu_id=2
77344          <idle>-0     (-----) [000] d..2 82316.518665: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
77345          <idle>-0     (-----) [002] d..2 82316.518670: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
77346          <idle>-0     (-----) [000] dn.3 82316.518677: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
77347          <idle>-0     (-----) [000] .n.1 82316.518683: cpu_idle: state=4294967295 cpu_id=0
77348  crtc_event:111-322   (  322) [003] d..2 82316.518696: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
77349          <idle>-0     (-----) [000] d..2 82316.518698: 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
77350          <idle>-0     (-----) [003] d..1 82316.518704: cpu_idle: state=0 cpu_id=3
77351     ksoftirqd/0-3     (    3) [000] d.s2 82316.518711: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
77352     ksoftirqd/0-3     (    3) [000] d.s3 82316.518750: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
77353     ksoftirqd/0-3     (    3) [000] d..2 82316.518767: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
77354 crtc_commit:111-321   (  321) [002] d..2 82316.518814: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
77355          <idle>-0     (-----) [002] d..1 82316.518844: cpu_idle: state=0 cpu_id=2
77356          <idle>-0     (-----) [002] ...1 82316.518858: cpu_idle: state=4294967295 cpu_id=2
77357          <idle>-0     (-----) [002] d..1 82316.518863: cpu_idle: state=0 cpu_id=2
77358  kworker/u16:13-1147  ( 1147) [000] d..2 82316.519088: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
77359          <idle>-0     (-----) [000] d..1 82316.519105: cpu_idle: state=0 cpu_id=0
77360          <idle>-0     (-----) [001] d.s3 82316.519122: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
77361          <idle>-0     (-----) [001] d.s4 82316.519135: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
77362          <idle>-0     (-----) [001] d.s4 82316.519145: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
77363          <idle>-0     (-----) [000] .n.1 82316.519152: cpu_idle: state=4294967295 cpu_id=0
77364          <idle>-0     (-----) [001] ...1 82316.519155: cpu_idle: state=4294967295 cpu_id=1
77365          <idle>-0     (-----) [001] d..1 82316.519161: cpu_idle: state=0 cpu_id=1
77366          <idle>-0     (-----) [000] d..2 82316.519165: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
77367  kworker/u16:13-1147  ( 1147) [000] d..2 82316.519218: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77368          <idle>-0     (-----) [000] d..1 82316.519232: cpu_idle: state=0 cpu_id=0
77369          <idle>-0     (-----) [002] d.h4 82316.520020: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77370          <idle>-0     (-----) [005] dnh2 82316.520043: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77371          <idle>-0     (-----) [005] .n.1 82316.520048: cpu_idle: state=4294967295 cpu_id=5
77372          <idle>-0     (-----) [005] d..2 82316.520057: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77373          <idle>-0     (-----) [002] ...1 82316.520058: cpu_idle: state=4294967295 cpu_id=2
77374          <idle>-0     (-----) [002] d..1 82316.520063: cpu_idle: state=0 cpu_id=2
77375<...>-5340 ( 788) [005] d..1 82316.520109: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77376          <idle>-0     (-----) [000] dnh2 82316.520136: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77377          <idle>-0     (-----) [000] .n.1 82316.520143: cpu_idle: state=4294967295 cpu_id=0
77378          <idle>-0     (-----) [000] d..2 82316.520165: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
77379<...>-5340 ( 788) [005] ...1 82316.520200: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
77380<...>-5340 ( 788) [005] ...1 82316.520204: tracing_mark_write: E|788
77381<...>-5340 ( 788) [005] .... 82316.520219: binder_transaction: transaction=1570661 dest_node=1570659 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
77382 neuralnetworks@-13088 (  788) [000] d..2 82316.520220: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77383<...>-5340 ( 788) [005] .... 82316.520222: binder_transaction_alloc_buf: transaction=1570661 data_size=60 offsets_size=0
77384<...>-5340 ( 788) [005] d..4 82316.520225: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
77385          <idle>-0     (-----) [000] d..1 82316.520233: cpu_idle: state=0 cpu_id=0
77386<...>-5340 ( 788) [005] d..5 82316.520238: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
77387          <idle>-0     (-----) [004] .n.1 82316.520244: cpu_idle: state=4294967295 cpu_id=4
77388          <idle>-0     (-----) [004] d..2 82316.520253: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
77389           <...>-27571 (-----) [004] .... 82316.520257: binder_transaction_received: transaction=1570661
77390<...>-5340 ( 788) [005] ...1 82316.520260: tracing_mark_write: E|788
77391<...>-5340 ( 788) [005] .... 82316.520266: binder_transaction: transaction=1570662 dest_node=0 dest_proc=27550 dest_thread=27703 reply=1 flags=0x0 code=0x0
77392<...>-5340 ( 788) [005] .... 82316.520268: binder_transaction_alloc_buf: transaction=1570662 data_size=8 offsets_size=0
77393<...>-5340 ( 788) [005] d..2 82316.520270: sched_waking: comm=id.nn.benchmark pid=27703 prio=110 target_cpu=005
77394           <...>-27571 (-----) [004] ...1 82316.520275: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
77395<...>-5340 ( 788) [005] d..3 82316.520277: sched_wakeup: comm=id.nn.benchmark pid=27703 prio=110 target_cpu=005
77396<...>-5340 ( 788) [005] .... 82316.520279: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
77397           <...>-27571 (-----) [004] ...1 82316.520281: tracing_mark_write: E|27550
77398           <...>-27571 (-----) [004] d..2 82316.520309: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77399          <idle>-0     (-----) [004] d..1 82316.520317: cpu_idle: state=0 cpu_id=4
77400<...>-5340 ( 788) [005] d..2 82316.520321: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27703 next_prio=110
77401           <...>-27703 (-----) [005] .... 82316.520330: binder_transaction_received: transaction=1570662
77402           <...>-27703 (-----) [005] ...1 82316.520365: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
77403           <...>-27703 (-----) [005] ...1 82316.520372: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
77404           <...>-27703 (-----) [005] ...1 82316.520398: tracing_mark_write: E|27550
77405           <...>-27703 (-----) [005] ...1 82316.520402: tracing_mark_write: E|27550
77406           <...>-27703 (-----) [005] ...1 82316.520407: tracing_mark_write: E|27550
77407           <...>-27703 (-----) [005] ...1 82316.520596: tracing_mark_write: E|27550
77408           <...>-27703 (-----) [005] d..1 82316.520609: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77409           <...>-27703 (-----) [005] d..2 82316.520625: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77410          <idle>-0     (-----) [004] .n.1 82316.520631: cpu_idle: state=4294967295 cpu_id=4
77411          <idle>-0     (-----) [004] d..2 82316.520637: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
77412           <...>-27550 (-----) [004] d..2 82316.520657: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77413          <idle>-0     (-----) [004] d..1 82316.520665: cpu_idle: state=0 cpu_id=4
77414           <...>-27703 (-----) [005] d..1 82316.520715: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77415           <...>-27703 (-----) [005] d..2 82316.520725: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77416          <idle>-0     (-----) [004] .n.1 82316.520730: cpu_idle: state=4294967295 cpu_id=4
77417          <idle>-0     (-----) [004] d..2 82316.520737: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
77418           <...>-27703 (-----) [005] d..2 82316.520763: sched_switch: prev_comm=id.nn.benchmark prev_pid=27703 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
77419           <...>-27550 (-----) [004] ...1 82316.520770: tracing_mark_write: E|27550
77420           <...>-27550 (-----) [004] ...1 82316.520775: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
77421           <...>-27550 (-----) [004] ...1 82316.520781: tracing_mark_write: E|27550
77422          <idle>-0     (-----) [005] d..1 82316.520784: cpu_idle: state=0 cpu_id=5
77423           <...>-27550 (-----) [004] ...1 82316.520784: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
77424           <...>-27550 (-----) [004] ...1 82316.520789: tracing_mark_write: E|27550
77425           <...>-27550 (-----) [004] ...1 82316.520793: tracing_mark_write: E|27550
77426           <...>-27550 (-----) [004] ...1 82316.520905: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
77427          <idle>-0     (-----) [000] d.h5 82316.520947: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
77428           <...>-27550 (-----) [004] ...1 82316.520962: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
77429          <idle>-0     (-----) [000] d.h6 82316.520965: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
77430           <...>-27550 (-----) [004] ...1 82316.520967: tracing_mark_write: E|27550
77431           <...>-27550 (-----) [004] ...1 82316.520971: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
77432          <idle>-0     (-----) [002] .n.1 82316.520971: cpu_idle: state=4294967295 cpu_id=2
77433           <...>-27550 (-----) [004] ...1 82316.520976: tracing_mark_write: E|27550
77434          <idle>-0     (-----) [002] d..2 82316.520979: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
77435           <...>-27550 (-----) [004] ...1 82316.520980: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
77436          <idle>-0     (-----) [000] ...1 82316.520983: cpu_idle: state=4294967295 cpu_id=0
77437           <...>-27550 (-----) [004] ...1 82316.520983: tracing_mark_write: E|27550
77438           <...>-27550 (-----) [004] ...1 82316.520987: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
77439          <idle>-0     (-----) [000] d..1 82316.520988: cpu_idle: state=0 cpu_id=0
77440 crtc_commit:111-321   (  321) [002] d..2 82316.521058: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77441          <idle>-0     (-----) [002] d..1 82316.521067: cpu_idle: state=0 cpu_id=2
77442          <idle>-0     (-----) [005] .n.1 82316.521073: cpu_idle: state=4294967295 cpu_id=5
77443           <...>-27550 (-----) [004] ...1 82316.521074: tracing_mark_write: E|27550
77444           <...>-27550 (-----) [004] ...1 82316.521078: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
77445          <idle>-0     (-----) [005] d..2 82316.521082: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27704 next_prio=110
77446           <...>-27550 (-----) [004] d..2 82316.521094: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77447          <idle>-0     (-----) [004] d..1 82316.521108: cpu_idle: state=0 cpu_id=4
77448           <...>-27704 (-----) [005] ...1 82316.521144: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
77449           <...>-27704 (-----) [005] ...1 82316.521159: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
77450           <...>-27704 (-----) [005] ...1 82316.521163: tracing_mark_write: E|27550
77451           <...>-27704 (-----) [005] .... 82316.521183: binder_transaction: transaction=1570663 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
77452           <...>-27704 (-----) [005] .... 82316.521186: binder_transaction_alloc_buf: transaction=1570663 data_size=48 offsets_size=0
77453           <...>-27704 (-----) [005] ...2 82316.521189: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
77454           <...>-27704 (-----) [005] d..4 82316.521191: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
77455           <...>-27704 (-----) [005] dn.5 82316.521201: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
77456           <...>-27704 (-----) [005] d..2 82316.521208: sched_switch: prev_comm=id.nn.benchmark prev_pid=27704 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
77457<...>-770 ( 770) [005] .... 82316.521218: binder_transaction_received: transaction=1570663
77458          <idle>-0     (-----) [000] d.h5 82316.521234: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
77459<...>-770 ( 770) [005] ...1 82316.521239: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
77460          <idle>-0     (-----) [000] d.h6 82316.521249: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
77461          <idle>-0     (-----) [003] .n.1 82316.521255: cpu_idle: state=4294967295 cpu_id=3
77462          <idle>-0     (-----) [003] d..2 82316.521262: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
77463          <idle>-0     (-----) [000] ...1 82316.521265: cpu_idle: state=4294967295 cpu_id=0
77464          <idle>-0     (-----) [000] d..1 82316.521272: cpu_idle: state=0 cpu_id=0
77465  crtc_event:111-322   (  322) [003] d..2 82316.521285: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
77466          <idle>-0     (-----) [003] d..1 82316.521293: cpu_idle: state=0 cpu_id=3
77467<...>-770 ( 770) [005] d..2 82316.521309: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
77468          <idle>-0     (-----) [000] dnh2 82316.521336: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
77469          <idle>-0     (-----) [000] .n.1 82316.521343: cpu_idle: state=4294967295 cpu_id=0
77470<...>-770 ( 770) [005] ...1 82316.521348: tracing_mark_write: E|770
77471          <idle>-0     (-----) [000] d..2 82316.521354: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
77472<...>-770 ( 770) [005] .... 82316.521356: binder_transaction: transaction=1570664 dest_node=0 dest_proc=27550 dest_thread=27704 reply=1 flags=0x0 code=0x0
77473<...>-770 ( 770) [005] .... 82316.521359: binder_transaction_alloc_buf: transaction=1570664 data_size=168 offsets_size=32
77474<...>-770 ( 770) [005] .... 82316.521365: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
77475<...>-770 ( 770) [005] d..2 82316.521401: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27704 next_prio=110
77476           <...>-27704 (-----) [005] .... 82316.521412: binder_transaction_received: transaction=1570664
77477<...>-581 ( 571) [000] d..2 82316.521443: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77478          <idle>-0     (-----) [000] d..1 82316.521460: cpu_idle: state=0 cpu_id=0
77479           <...>-27704 (-----) [005] ...1 82316.521480: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
77480           <...>-27704 (-----) [005] ...1 82316.521485: tracing_mark_write: E|27550
77481           <...>-27704 (-----) [005] .... 82316.521500: binder_transaction: transaction=1570665 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
77482           <...>-27704 (-----) [005] .... 82316.521502: binder_transaction_alloc_buf: transaction=1570665 data_size=48 offsets_size=0
77483           <...>-27704 (-----) [005] ...2 82316.521505: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
77484           <...>-27704 (-----) [005] d..4 82316.521507: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
77485           <...>-27704 (-----) [005] dn.5 82316.521518: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
77486           <...>-27704 (-----) [005] d..2 82316.521524: sched_switch: prev_comm=id.nn.benchmark prev_pid=27704 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
77487<...>-770 ( 770) [005] .... 82316.521532: binder_transaction_received: transaction=1570665
77488<...>-770 ( 770) [005] ...1 82316.521548: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
77489<...>-770 ( 770) [005] d..2 82316.521606: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
77490          <idle>-0     (-----) [000] dnh2 82316.521631: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
77491          <idle>-0     (-----) [000] .n.1 82316.521639: cpu_idle: state=4294967295 cpu_id=0
77492<...>-770 ( 770) [005] ...1 82316.521640: tracing_mark_write: E|770
77493<...>-770 ( 770) [005] .... 82316.521647: binder_transaction: transaction=1570666 dest_node=0 dest_proc=27550 dest_thread=27704 reply=1 flags=0x0 code=0x0
77494          <idle>-0     (-----) [000] d..2 82316.521649: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
77495<...>-770 ( 770) [005] .... 82316.521650: binder_transaction_alloc_buf: transaction=1570666 data_size=168 offsets_size=32
77496<...>-770 ( 770) [005] .... 82316.521656: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
77497<...>-770 ( 770) [005] d..2 82316.521690: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27704 next_prio=110
77498           <...>-27704 (-----) [005] .... 82316.521700: binder_transaction_received: transaction=1570666
77499<...>-581 ( 571) [000] d..2 82316.521706: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77500          <idle>-0     (-----) [000] d..1 82316.521721: cpu_idle: state=0 cpu_id=0
77501          <idle>-0     (-----) [003] d.s2 82316.521803: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
77502          <idle>-0     (-----) [002] d.s3 82316.521803: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
77503          <idle>-0     (-----) [003] dns3 82316.521820: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
77504          <idle>-0     (-----) [002] d.s4 82316.521827: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
77505          <idle>-0     (-----) [003] dns2 82316.521829: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
77506          <idle>-0     (-----) [003] dns3 82316.521842: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
77507          <idle>-0     (-----) [002] ...1 82316.521851: cpu_idle: state=4294967295 cpu_id=2
77508          <idle>-0     (-----) [003] .n.1 82316.521855: cpu_idle: state=4294967295 cpu_id=3
77509          <idle>-0     (-----) [002] d..1 82316.521860: cpu_idle: state=0 cpu_id=2
77510          <idle>-0     (-----) [003] d..2 82316.521862: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
77511  crtc_event:111-322   (  322) [003] d..2 82316.521880: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
77512     rcu_preempt-7     (    7) [003] d..2 82316.521899: 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
77513<...>-8 ( 8) [003] d..2 82316.521926: 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
77514          <idle>-0     (-----) [003] d..1 82316.521938: cpu_idle: state=0 cpu_id=3
77515           <...>-27704 (-----) [005] ...1 82316.522009: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
77516           <...>-27704 (-----) [005] ...1 82316.522019: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
77517           <...>-27704 (-----) [005] ...1 82316.522023: tracing_mark_write: E|27550
77518           <...>-27704 (-----) [005] .... 82316.522081: binder_transaction: transaction=1570667 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
77519           <...>-27704 (-----) [005] .... 82316.522085: binder_transaction_alloc_buf: transaction=1570667 data_size=556 offsets_size=104
77520           <...>-27704 (-----) [005] ...2 82316.522098: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
77521           <...>-27704 (-----) [005] d..4 82316.522101: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77522           <...>-27704 (-----) [005] dn.5 82316.522111: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77523           <...>-27704 (-----) [005] d..2 82316.522118: sched_switch: prev_comm=id.nn.benchmark prev_pid=27704 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77524<...>-5340 ( 788) [005] .... 82316.522127: binder_transaction_received: transaction=1570667
77525<...>-5340 ( 788) [005] ...1 82316.522170: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
77526<...>-5340 ( 788) [005] d..2 82316.522213: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77527<...>-5340 ( 788) [005] d..2 82316.522237: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27704 next_prio=110
77528          <idle>-0     (-----) [000] dnh2 82316.522241: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77529          <idle>-0     (-----) [000] .n.1 82316.522248: cpu_idle: state=4294967295 cpu_id=0
77530          <idle>-0     (-----) [000] d..2 82316.522259: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
77531           <...>-27704 (-----) [005] d..2 82316.522261: sched_switch: prev_comm=id.nn.benchmark prev_pid=27704 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77532          <idle>-0     (-----) [005] d..1 82316.522278: cpu_idle: state=0 cpu_id=5
77533<...>-87 ( 87) [000] d..2 82316.522302: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77534          <idle>-0     (-----) [002] d.h4 82316.522310: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77535          <idle>-0     (-----) [000] d..1 82316.522315: cpu_idle: state=0 cpu_id=0
77536          <idle>-0     (-----) [002] dnh5 82316.522328: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77537          <idle>-0     (-----) [002] .n.1 82316.522337: cpu_idle: state=4294967295 cpu_id=2
77538          <idle>-0     (-----) [002] d..2 82316.522350: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
77539<...>-86 ( 86) [002] d..2 82316.522387: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77540          <idle>-0     (-----) [002] d.h5 82316.522409: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77541          <idle>-0     (-----) [005] dnh2 82316.522431: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77542          <idle>-0     (-----) [005] .n.1 82316.522436: cpu_idle: state=4294967295 cpu_id=5
77543          <idle>-0     (-----) [005] d..2 82316.522444: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77544          <idle>-0     (-----) [002] d..1 82316.522457: cpu_idle: state=0 cpu_id=2
77545<...>-5340 ( 788) [005] d..1 82316.522496: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77546          <idle>-0     (-----) [000] dnh2 82316.522521: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77547          <idle>-0     (-----) [000] .n.1 82316.522528: cpu_idle: state=4294967295 cpu_id=0
77548          <idle>-0     (-----) [000] d..2 82316.522538: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
77549 neuralnetworks@-13088 (  788) [000] d..2 82316.522585: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77550          <idle>-0     (-----) [000] d..1 82316.522599: cpu_idle: state=0 cpu_id=0
77551<...>-5340 ( 788) [005] d..2 82316.522640: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77552          <idle>-0     (-----) [000] dnh2 82316.522663: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77553<...>-5340 ( 788) [005] d..2 82316.522667: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77554          <idle>-0     (-----) [000] .n.1 82316.522670: cpu_idle: state=4294967295 cpu_id=0
77555          <idle>-0     (-----) [000] d..2 82316.522681: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
77556          <idle>-0     (-----) [005] d..1 82316.522681: cpu_idle: state=0 cpu_id=5
77557          <idle>-0     (-----) [002] d.h4 82316.522719: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77558<...>-87 ( 87) [000] d..2 82316.522720: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77559          <idle>-0     (-----) [002] dnh5 82316.522729: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77560          <idle>-0     (-----) [000] d..1 82316.522732: cpu_idle: state=0 cpu_id=0
77561          <idle>-0     (-----) [002] .n.1 82316.522738: cpu_idle: state=4294967295 cpu_id=2
77562          <idle>-0     (-----) [002] d..2 82316.522750: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
77563<...>-86 ( 86) [002] d..2 82316.522785: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77564          <idle>-0     (-----) [002] d..1 82316.522797: cpu_idle: state=0 cpu_id=2
77565          <idle>-0     (-----) [005] ...1 82316.523004: cpu_idle: state=4294967295 cpu_id=5
77566          <idle>-0     (-----) [005] d..1 82316.523008: cpu_idle: state=0 cpu_id=5
77567          <idle>-0     (-----) [003] d.h2 82316.523096: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
77568          <idle>-0     (-----) [003] dnh3 82316.523112: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
77569          <idle>-0     (-----) [003] .n.1 82316.523120: cpu_idle: state=4294967295 cpu_id=3
77570          <idle>-0     (-----) [003] d..2 82316.523130: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
77571        DispSync-8879  ( 8858) [003] d..1 82316.523152: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
77572        DispSync-8879  ( 8858) [003] d..2 82316.523175: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
77573          <idle>-0     (-----) [001] .n.1 82316.523180: cpu_idle: state=4294967295 cpu_id=1
77574          <idle>-0     (-----) [001] d..2 82316.523194: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
77575        DispSync-8879  ( 8858) [003] d..2 82316.523207: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
77576          <idle>-0     (-----) [003] d..1 82316.523220: cpu_idle: state=0 cpu_id=3
77577  appEventThread-8881  ( 8858) [001] d..3 82316.523258: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
77578  appEventThread-8881  ( 8858) [001] d..4 82316.523281: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
77579          <idle>-0     (-----) [000] .n.1 82316.523287: cpu_idle: state=4294967295 cpu_id=0
77580          <idle>-0     (-----) [000] d..2 82316.523299: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
77581  appEventThread-8881  ( 8858) [001] d..2 82316.523327: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77582          <idle>-0     (-----) [001] d..1 82316.523342: cpu_idle: state=0 cpu_id=1
77583<...>-9105 ( 9105) [000] .... 82316.523618: binder_transaction: transaction=1570670 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
77584<...>-9105 ( 9105) [000] .... 82316.523625: binder_transaction_alloc_buf: transaction=1570670 data_size=80 offsets_size=0
77585<...>-9105 ( 9105) [000] d..4 82316.523631: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
77586<...>-9105 ( 9105) [000] d..5 82316.523664: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
77587          <idle>-0     (-----) [001] .n.1 82316.523670: cpu_idle: state=4294967295 cpu_id=1
77588          <idle>-0     (-----) [001] d..2 82316.523682: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
77589<...>-13083 ( 8858) [001] .... 82316.523690: binder_transaction_received: transaction=1570670
77590<...>-9105 ( 9105) [000] d..3 82316.523701: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
77591<...>-9105 ( 9105) [000] d..4 82316.523722: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
77592<...>-13083 ( 8858) [001] d..1 82316.523725: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
77593          <idle>-0     (-----) [002] .n.1 82316.523728: cpu_idle: state=4294967295 cpu_id=2
77594          <idle>-0     (-----) [002] d..2 82316.523741: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
77595<...>-13083 ( 8858) [001] d..2 82316.523751: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
77596          <idle>-0     (-----) [003] .n.1 82316.523757: cpu_idle: state=4294967295 cpu_id=3
77597          <idle>-0     (-----) [003] d..2 82316.523768: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
77598<...>-13083 ( 8858) [001] d..2 82316.523797: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77599    RenderThread-9436  ( 9105) [002] d..2 82316.523798: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77600          <idle>-0     (-----) [001] d..1 82316.523811: cpu_idle: state=0 cpu_id=1
77601          <idle>-0     (-----) [002] d..1 82316.523812: cpu_idle: state=0 cpu_id=2
77602  appEventThread-8881  ( 8858) [003] d..2 82316.523823: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
77603          <idle>-0     (-----) [003] d..1 82316.523833: cpu_idle: state=0 cpu_id=3
77604<...>-9105 ( 9105) [000] d..3 82316.523846: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
77605<...>-9105 ( 9105) [000] d..4 82316.523864: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
77606          <idle>-0     (-----) [002] .n.1 82316.523870: cpu_idle: state=4294967295 cpu_id=2
77607          <idle>-0     (-----) [002] d..2 82316.523882: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
77608<...>-9105 ( 9105) [000] d..2 82316.523900: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77609          <idle>-0     (-----) [000] d..1 82316.523920: cpu_idle: state=0 cpu_id=0
77610    RenderThread-9436  ( 9105) [002] d..1 82316.524004: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
77611    RenderThread-9436  ( 9105) [002] d..2 82316.524024: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
77612          <idle>-0     (-----) [000] .n.1 82316.524031: cpu_idle: state=4294967295 cpu_id=0
77613          <idle>-0     (-----) [000] d..2 82316.524044: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
77614    RenderThread-9436  ( 9105) [002] .... 82316.524090: binder_transaction: transaction=1570671 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
77615    RenderThread-9436  ( 9105) [002] .... 82316.524095: binder_transaction_alloc_buf: transaction=1570671 data_size=104 offsets_size=0
77616    RenderThread-9436  ( 9105) [002] d..4 82316.524100: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
77617    RenderThread-9436  ( 9105) [002] dn.5 82316.524121: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
77618<...>-9105 ( 9105) [000] d..2 82316.524125: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77619    RenderThread-9436  ( 9105) [002] d..2 82316.524130: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
77620<...>-13083 ( 8858) [002] .... 82316.524139: binder_transaction_received: transaction=1570671
77621          <idle>-0     (-----) [000] d..1 82316.524141: cpu_idle: state=0 cpu_id=0
77622<...>-13083 ( 8858) [002] .... 82316.524212: binder_transaction: transaction=1570672 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
77623<...>-13083 ( 8858) [002] .... 82316.524216: binder_transaction_alloc_buf: transaction=1570672 data_size=52 offsets_size=8
77624<...>-13083 ( 8858) [002] d..2 82316.524266: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
77625    RenderThread-9436  ( 9105) [002] .... 82316.524275: binder_transaction_received: transaction=1570672
77626    RenderThread-9436  ( 9105) [002] d.h3 82316.524369: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77627          <idle>-0     (-----) [005] dnh2 82316.524391: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77628          <idle>-0     (-----) [005] .n.1 82316.524395: cpu_idle: state=4294967295 cpu_id=5
77629          <idle>-0     (-----) [005] d..2 82316.524404: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77630<...>-5340 ( 788) [005] d..1 82316.524453: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77631          <idle>-0     (-----) [000] dnh2 82316.524480: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77632          <idle>-0     (-----) [000] .n.1 82316.524487: cpu_idle: state=4294967295 cpu_id=0
77633          <idle>-0     (-----) [000] d..2 82316.524506: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
77634<...>-5340 ( 788) [005] ...1 82316.524544: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
77635<...>-5340 ( 788) [005] ...1 82316.524549: tracing_mark_write: E|788
77636<...>-5340 ( 788) [005] .... 82316.524565: binder_transaction: transaction=1570673 dest_node=1570668 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
77637<...>-5340 ( 788) [005] .... 82316.524567: binder_transaction_alloc_buf: transaction=1570673 data_size=60 offsets_size=0
77638 neuralnetworks@-13088 (  788) [000] d..2 82316.524570: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77639<...>-5340 ( 788) [005] d..4 82316.524570: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
77640<...>-5340 ( 788) [005] d..5 82316.524582: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
77641          <idle>-0     (-----) [000] d..1 82316.524585: cpu_idle: state=0 cpu_id=0
77642          <idle>-0     (-----) [004] .n.1 82316.524589: cpu_idle: state=4294967295 cpu_id=4
77643          <idle>-0     (-----) [004] d..2 82316.524597: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
77644           <...>-27571 (-----) [004] .... 82316.524602: binder_transaction_received: transaction=1570673
77645<...>-5340 ( 788) [005] ...1 82316.524605: tracing_mark_write: E|788
77646<...>-5340 ( 788) [005] .... 82316.524611: binder_transaction: transaction=1570674 dest_node=0 dest_proc=27550 dest_thread=27704 reply=1 flags=0x0 code=0x0
77647<...>-5340 ( 788) [005] .... 82316.524613: binder_transaction_alloc_buf: transaction=1570674 data_size=8 offsets_size=0
77648<...>-5340 ( 788) [005] d..2 82316.524615: sched_waking: comm=id.nn.benchmark pid=27704 prio=110 target_cpu=005
77649           <...>-27571 (-----) [004] ...1 82316.524620: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
77650<...>-5340 ( 788) [005] d..3 82316.524622: sched_wakeup: comm=id.nn.benchmark pid=27704 prio=110 target_cpu=005
77651<...>-5340 ( 788) [005] .... 82316.524623: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
77652           <...>-27571 (-----) [004] ...1 82316.524627: tracing_mark_write: E|27550
77653           <...>-27571 (-----) [004] d..2 82316.524654: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77654          <idle>-0     (-----) [004] d..1 82316.524661: cpu_idle: state=0 cpu_id=4
77655<...>-5340 ( 788) [005] d..2 82316.524665: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27704 next_prio=110
77656           <...>-27704 (-----) [005] .... 82316.524674: binder_transaction_received: transaction=1570674
77657           <...>-27704 (-----) [005] ...1 82316.524710: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
77658           <...>-27704 (-----) [005] ...1 82316.524717: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
77659           <...>-27704 (-----) [005] ...1 82316.524743: tracing_mark_write: E|27550
77660           <...>-27704 (-----) [005] ...1 82316.524747: tracing_mark_write: E|27550
77661           <...>-27704 (-----) [005] ...1 82316.524750: tracing_mark_write: E|27550
77662           <...>-27704 (-----) [005] ...1 82316.524937: tracing_mark_write: E|27550
77663           <...>-27704 (-----) [005] d..1 82316.524949: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77664           <...>-27704 (-----) [005] d..2 82316.524965: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77665          <idle>-0     (-----) [004] .n.1 82316.524970: cpu_idle: state=4294967295 cpu_id=4
77666          <idle>-0     (-----) [004] d..2 82316.524977: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
77667           <...>-27550 (-----) [004] d..2 82316.524997: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77668          <idle>-0     (-----) [004] d..1 82316.525006: cpu_idle: state=0 cpu_id=4
77669           <...>-27704 (-----) [005] d..1 82316.525052: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77670           <...>-27704 (-----) [005] d..2 82316.525061: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77671          <idle>-0     (-----) [004] .n.1 82316.525067: cpu_idle: state=4294967295 cpu_id=4
77672          <idle>-0     (-----) [004] d..2 82316.525074: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
77673           <...>-27704 (-----) [005] d..2 82316.525101: sched_switch: prev_comm=id.nn.benchmark prev_pid=27704 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
77674          <idle>-0     (-----) [005] d.s3 82316.525135: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
77675           <...>-27550 (-----) [004] ...1 82316.525143: tracing_mark_write: E|27550
77676           <...>-27550 (-----) [004] ...1 82316.525149: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
77677           <...>-27550 (-----) [004] ...1 82316.525154: tracing_mark_write: E|27550
77678           <...>-27550 (-----) [004] ...1 82316.525158: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
77679          <idle>-0     (-----) [005] d.s3 82316.525162: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
77680           <...>-27550 (-----) [004] ...1 82316.525162: tracing_mark_write: E|27550
77681           <...>-27550 (-----) [004] ...1 82316.525166: tracing_mark_write: E|27550
77682          <idle>-0     (-----) [000] dnh2 82316.525175: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
77683          <idle>-0     (-----) [000] dnh2 82316.525191: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
77684          <idle>-0     (-----) [000] .n.1 82316.525198: cpu_idle: state=4294967295 cpu_id=0
77685          <idle>-0     (-----) [005] d..1 82316.525203: cpu_idle: state=0 cpu_id=5
77686          <idle>-0     (-----) [000] d..2 82316.525211: 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
77687     rcu_preempt-7     (    7) [000] d..2 82316.525218: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
77688     rcu_preempt-7     (    7) [000] d..3 82316.525261: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
77689     rcu_preempt-7     (    7) [000] d..2 82316.525278: 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
77690           <...>-27550 (-----) [004] ...1 82316.525279: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
77691<...>-8 ( 8) [000] d..2 82316.525284: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
77692<...>-8 ( 8) [000] d..3 82316.525316: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
77693<...>-8 ( 8) [000] d..2 82316.525327: 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
77694         rcuop/2-29    (   29) [000] d..2 82316.525332: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
77695           <...>-27550 (-----) [004] ...1 82316.525337: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
77696           <...>-27550 (-----) [004] ...1 82316.525342: tracing_mark_write: E|27550
77697           <...>-27550 (-----) [004] ...1 82316.525345: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
77698           <...>-27550 (-----) [004] ...1 82316.525351: tracing_mark_write: E|27550
77699           <...>-27550 (-----) [004] ...1 82316.525354: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
77700           <...>-27550 (-----) [004] ...1 82316.525358: tracing_mark_write: E|27550
77701           <...>-27550 (-----) [004] ...1 82316.525361: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
77702         rcuop/2-29    (   29) [000] d..3 82316.525365: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
77703         rcuop/2-29    (   29) [000] d..2 82316.525376: 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
77704         rcuop/3-37    (   37) [000] d..2 82316.525399: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
77705<...>-46 ( 46) [000] d..2 82316.525429: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
77706    RenderThread-9436  ( 9105) [002] d..2 82316.525444: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
77707          <idle>-0     (-----) [002] dn.1 82316.525461: cpu_idle: state=0 cpu_id=2
77708<...>-46 ( 46) [000] d..3 82316.525465: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
77709          <idle>-0     (-----) [005] .n.1 82316.525467: cpu_idle: state=4294967295 cpu_id=5
77710           <...>-27550 (-----) [004] ...1 82316.525468: tracing_mark_write: E|27550
77711          <idle>-0     (-----) [002] .n.1 82316.525469: cpu_idle: state=4294967295 cpu_id=2
77712           <...>-27550 (-----) [004] ...1 82316.525473: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
77713          <idle>-0     (-----) [005] d..2 82316.525476: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27705 next_prio=110
77714          <idle>-0     (-----) [002] d..2 82316.525482: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
77715<...>-46 ( 46) [000] d..2 82316.525487: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77716           <...>-27550 (-----) [004] d..2 82316.525490: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77717          <idle>-0     (-----) [000] d..1 82316.525505: cpu_idle: state=0 cpu_id=0
77718          <idle>-0     (-----) [004] d..1 82316.525506: cpu_idle: state=0 cpu_id=4
77719<...>-8 ( 8) [002] d..2 82316.525507: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77720          <idle>-0     (-----) [002] d.h2 82316.525521: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
77721          <idle>-0     (-----) [002] d.h3 82316.525531: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
77722          <idle>-0     (-----) [002] dnh3 82316.525537: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
77723           <...>-27705 (-----) [005] ...1 82316.525540: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
77724          <idle>-0     (-----) [002] d..2 82316.525553: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
77725           <...>-27705 (-----) [005] ...1 82316.525555: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
77726           <...>-27705 (-----) [005] ...1 82316.525559: tracing_mark_write: E|27550
77727          <idle>-0     (-----) [000] d.h3 82316.525563: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
77728          <idle>-0     (-----) [000] dnh4 82316.525579: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
77729           <...>-27705 (-----) [005] .... 82316.525581: binder_transaction: transaction=1570675 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
77730           <...>-27705 (-----) [005] .... 82316.525585: binder_transaction_alloc_buf: transaction=1570675 data_size=48 offsets_size=0
77731           <...>-27705 (-----) [005] ...2 82316.525588: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
77732           <...>-27705 (-----) [005] d..4 82316.525591: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
77733          <idle>-0     (-----) [000] .n.1 82316.525592: cpu_idle: state=4294967295 cpu_id=0
77734           <...>-27705 (-----) [005] dn.5 82316.525601: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
77735          <idle>-0     (-----) [000] d..2 82316.525603: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
77736           <...>-27705 (-----) [005] d..2 82316.525608: sched_switch: prev_comm=id.nn.benchmark prev_pid=27705 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
77737<...>-770 ( 770) [005] .... 82316.525618: binder_transaction_received: transaction=1570675
77738<...>-770 ( 770) [005] ...1 82316.525642: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
77739 kgsl_worker_thr-258   (  258) [000] d..2 82316.525655: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
77740 kgsl_worker_thr-258   (  258) [000] d..3 82316.525673: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
77741 kgsl_worker_thr-258   (  258) [000] d..2 82316.525689: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
77742<...>-770 ( 770) [005] d..2 82316.525722: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
77743    RenderThread-9436  ( 9105) [002] .... 82316.525754: binder_transaction: transaction=1570676 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
77744    RenderThread-9436  ( 9105) [002] .... 82316.525760: binder_transaction_alloc_buf: transaction=1570676 data_size=192 offsets_size=8
77745<...>-770 ( 770) [005] ...1 82316.525763: tracing_mark_write: E|770
77746    RenderThread-9436  ( 9105) [002] d..4 82316.525771: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
77747<...>-770 ( 770) [005] .... 82316.525772: binder_transaction: transaction=1570677 dest_node=0 dest_proc=27550 dest_thread=27705 reply=1 flags=0x0 code=0x0
77748<...>-770 ( 770) [005] .... 82316.525775: binder_transaction_alloc_buf: transaction=1570677 data_size=168 offsets_size=32
77749<...>-770 ( 770) [005] .... 82316.525782: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
77750    RenderThread-9436  ( 9105) [002] dn.5 82316.525787: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
77751    RenderThread-9436  ( 9105) [002] d..2 82316.525797: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
77752<...>-13083 ( 8858) [002] .... 82316.525805: binder_transaction_received: transaction=1570676
77753<...>-770 ( 770) [005] d..2 82316.525818: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27705 next_prio=110
77754           <...>-27705 (-----) [005] .... 82316.525830: binder_transaction_received: transaction=1570677
77755  kworker/u16:13-1147  ( 1147) [000] d.h1 82316.525872: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
77756  kworker/u16:13-1147  ( 1147) [000] d..2 82316.525896: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
77757           <...>-27705 (-----) [005] ...1 82316.525904: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
77758           <...>-27705 (-----) [005] ...1 82316.525909: tracing_mark_write: E|27550
77759           <...>-27705 (-----) [005] .... 82316.525923: binder_transaction: transaction=1570678 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
77760           <...>-27705 (-----) [005] .... 82316.525926: binder_transaction_alloc_buf: transaction=1570678 data_size=48 offsets_size=0
77761           <...>-27705 (-----) [005] ...2 82316.525928: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
77762           <...>-27705 (-----) [005] d..4 82316.525931: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
77763           <...>-27705 (-----) [005] dn.5 82316.525940: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
77764           <...>-27705 (-----) [005] d..2 82316.525947: sched_switch: prev_comm=id.nn.benchmark prev_pid=27705 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
77765<...>-770 ( 770) [005] .... 82316.525955: binder_transaction_received: transaction=1570678
77766<...>-13083 ( 8858) [002] .... 82316.525966: binder_transaction: transaction=1570679 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
77767<...>-13083 ( 8858) [002] .... 82316.525971: binder_transaction_alloc_buf: transaction=1570679 data_size=68 offsets_size=0
77768<...>-770 ( 770) [005] ...1 82316.525972: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
77769<...>-581 ( 571) [000] d..2 82316.525997: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77770          <idle>-0     (-----) [000] d..1 82316.526015: cpu_idle: state=0 cpu_id=0
77771<...>-13083 ( 8858) [002] d..2 82316.526016: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
77772    RenderThread-9436  ( 9105) [002] .... 82316.526027: binder_transaction_received: transaction=1570679
77773<...>-770 ( 770) [005] d..2 82316.526031: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
77774          <idle>-0     (-----) [000] dnh2 82316.526056: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
77775          <idle>-0     (-----) [000] .n.1 82316.526062: cpu_idle: state=4294967295 cpu_id=0
77776<...>-770 ( 770) [005] ...1 82316.526064: tracing_mark_write: E|770
77777<...>-770 ( 770) [005] .... 82316.526071: binder_transaction: transaction=1570680 dest_node=0 dest_proc=27550 dest_thread=27705 reply=1 flags=0x0 code=0x0
77778<...>-770 ( 770) [005] .... 82316.526074: binder_transaction_alloc_buf: transaction=1570680 data_size=168 offsets_size=32
77779          <idle>-0     (-----) [000] d..2 82316.526075: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
77780<...>-770 ( 770) [005] .... 82316.526080: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
77781<...>-770 ( 770) [005] d..2 82316.526115: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27705 next_prio=110
77782    RenderThread-9436  ( 9105) [002] d..2 82316.526118: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77783           <...>-27705 (-----) [005] .... 82316.526125: binder_transaction_received: transaction=1570680
77784<...>-581 ( 571) [000] d..2 82316.526132: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77785          <idle>-0     (-----) [002] d..1 82316.526134: cpu_idle: state=0 cpu_id=2
77786          <idle>-0     (-----) [000] d..1 82316.526145: cpu_idle: state=0 cpu_id=0
77787           <...>-27705 (-----) [005] ...1 82316.526405: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
77788           <...>-27705 (-----) [005] ...1 82316.526415: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
77789           <...>-27705 (-----) [005] ...1 82316.526418: tracing_mark_write: E|27550
77790           <...>-27705 (-----) [005] .... 82316.526482: binder_transaction: transaction=1570681 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
77791           <...>-27705 (-----) [005] .... 82316.526485: binder_transaction_alloc_buf: transaction=1570681 data_size=556 offsets_size=104
77792           <...>-27705 (-----) [005] ...2 82316.526500: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
77793           <...>-27705 (-----) [005] d..4 82316.526502: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77794           <...>-27705 (-----) [005] dn.5 82316.526513: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77795           <...>-27705 (-----) [005] d..2 82316.526520: sched_switch: prev_comm=id.nn.benchmark prev_pid=27705 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77796<...>-5340 ( 788) [005] .... 82316.526530: binder_transaction_received: transaction=1570681
77797<...>-5340 ( 788) [005] ...1 82316.526578: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
77798<...>-5340 ( 788) [005] d..2 82316.526626: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77799<...>-5340 ( 788) [005] d..2 82316.526651: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27705 next_prio=110
77800          <idle>-0     (-----) [000] dnh2 82316.526654: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77801          <idle>-0     (-----) [000] .n.1 82316.526660: cpu_idle: state=4294967295 cpu_id=0
77802          <idle>-0     (-----) [000] d..2 82316.526671: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
77803           <...>-27705 (-----) [005] d..2 82316.526673: sched_switch: prev_comm=id.nn.benchmark prev_pid=27705 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77804          <idle>-0     (-----) [005] d..1 82316.526691: cpu_idle: state=0 cpu_id=5
77805<...>-87 ( 87) [000] d..2 82316.526717: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77806          <idle>-0     (-----) [000] d..1 82316.526728: cpu_idle: state=0 cpu_id=0
77807          <idle>-0     (-----) [002] d.h4 82316.526729: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77808          <idle>-0     (-----) [002] dnh5 82316.526750: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77809          <idle>-0     (-----) [002] .n.1 82316.526760: cpu_idle: state=4294967295 cpu_id=2
77810          <idle>-0     (-----) [002] d..2 82316.526774: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
77811<...>-86 ( 86) [002] d.h4 82316.526809: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77812          <idle>-0     (-----) [005] dnh2 82316.526832: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77813          <idle>-0     (-----) [005] .n.1 82316.526836: cpu_idle: state=4294967295 cpu_id=5
77814          <idle>-0     (-----) [005] d..2 82316.526844: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77815<...>-86 ( 86) [002] d..2 82316.526871: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77816          <idle>-0     (-----) [002] d..1 82316.526883: cpu_idle: state=0 cpu_id=2
77817<...>-5340 ( 788) [005] d..1 82316.526898: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77818          <idle>-0     (-----) [000] dnh2 82316.526923: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77819          <idle>-0     (-----) [000] .n.1 82316.526930: cpu_idle: state=4294967295 cpu_id=0
77820          <idle>-0     (-----) [000] d..2 82316.526940: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
77821 neuralnetworks@-13088 (  788) [000] d..2 82316.526989: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77822          <idle>-0     (-----) [000] d..1 82316.527001: cpu_idle: state=0 cpu_id=0
77823<...>-5340 ( 788) [005] d..2 82316.527044: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77824          <idle>-0     (-----) [000] dnh2 82316.527066: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
77825<...>-5340 ( 788) [005] d..2 82316.527069: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
77826          <idle>-0     (-----) [000] .n.1 82316.527072: cpu_idle: state=4294967295 cpu_id=0
77827          <idle>-0     (-----) [000] d..2 82316.527083: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
77828          <idle>-0     (-----) [005] d..1 82316.527084: cpu_idle: state=0 cpu_id=5
77829          <idle>-0     (-----) [003] d.h2 82316.527109: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
77830<...>-87 ( 87) [000] d..2 82316.527121: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77831          <idle>-0     (-----) [003] dnh3 82316.527122: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
77832          <idle>-0     (-----) [002] d.h4 82316.527122: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77833          <idle>-0     (-----) [003] .n.1 82316.527130: cpu_idle: state=4294967295 cpu_id=3
77834          <idle>-0     (-----) [000] d..1 82316.527132: cpu_idle: state=0 cpu_id=0
77835          <idle>-0     (-----) [002] dnh5 82316.527133: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
77836          <idle>-0     (-----) [003] d..2 82316.527141: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
77837          <idle>-0     (-----) [002] .n.1 82316.527143: cpu_idle: state=4294967295 cpu_id=2
77838          <idle>-0     (-----) [002] d..2 82316.527155: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
77839        DispSync-8879  ( 8858) [003] d..1 82316.527155: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
77840        DispSync-8879  ( 8858) [003] d..2 82316.527181: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
77841          <idle>-0     (-----) [001] .n.1 82316.527187: cpu_idle: state=4294967295 cpu_id=1
77842<...>-86 ( 86) [002] d..2 82316.527189: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
77843          <idle>-0     (-----) [001] d..2 82316.527198: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
77844          <idle>-0     (-----) [002] d..1 82316.527200: cpu_idle: state=0 cpu_id=2
77845        DispSync-8879  ( 8858) [003] d..2 82316.527211: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
77846          <idle>-0     (-----) [003] d..1 82316.527224: cpu_idle: state=0 cpu_id=3
77847   sfEventThread-8882  ( 8858) [001] d..3 82316.527236: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
77848   sfEventThread-8882  ( 8858) [001] d..4 82316.527255: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
77849          <idle>-0     (-----) [003] .n.1 82316.527261: cpu_idle: state=4294967295 cpu_id=3
77850          <idle>-0     (-----) [003] d..2 82316.527271: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
77851   sfEventThread-8882  ( 8858) [001] d..2 82316.527288: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77852          <idle>-0     (-----) [001] d..1 82316.527301: cpu_idle: state=0 cpu_id=1
77853          <idle>-0     (-----) [005] ...1 82316.527399: cpu_idle: state=4294967295 cpu_id=5
77854          <idle>-0     (-----) [005] d..1 82316.527403: cpu_idle: state=0 cpu_id=5
77855  surfaceflinger-8858  ( 8858) [003] d..1 82316.527616: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
77856  surfaceflinger-8858  ( 8858) [003] d..2 82316.527637: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
77857          <idle>-0     (-----) [001] .n.1 82316.527642: cpu_idle: state=4294967295 cpu_id=1
77858          <idle>-0     (-----) [001] d..2 82316.527653: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
77859   sfEventThread-8882  ( 8858) [001] d..2 82316.527687: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77860          <idle>-0     (-----) [001] d..1 82316.527698: cpu_idle: state=0 cpu_id=1
77861  surfaceflinger-8858  ( 8858) [003] ...1 82316.527829: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
77862  surfaceflinger-8858  ( 8858) [003] ...1 82316.527836: tracing_mark_write: E|8858
77863  surfaceflinger-8858  ( 8858) [003] .... 82316.527885: binder_transaction: transaction=1570684 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
77864  surfaceflinger-8858  ( 8858) [003] .... 82316.527890: binder_transaction_alloc_buf: transaction=1570684 data_size=540 offsets_size=96
77865  surfaceflinger-8858  ( 8858) [003] ...2 82316.527914: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
77866  surfaceflinger-8858  ( 8858) [003] d..4 82316.527922: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
77867  surfaceflinger-8858  ( 8858) [003] d..5 82316.527941: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
77868          <idle>-0     (-----) [001] .n.1 82316.527945: cpu_idle: state=4294967295 cpu_id=1
77869          <idle>-0     (-----) [001] d..2 82316.527955: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
77870 [email protected]   (  619) [001] .... 82316.527965: binder_transaction_received: transaction=1570684
77871  surfaceflinger-8858  ( 8858) [003] d..2 82316.527972: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
77872          <idle>-0     (-----) [003] d..1 82316.527991: cpu_idle: state=0 cpu_id=3
77873 [email protected]   (  619) [001] ...1 82316.528007: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
77874 [email protected]   (  619) [001] ...1 82316.528124: tracing_mark_write: B|619|HWCSession::PresentDisplay::
77875 [email protected]   (  619) [001] ...1 82316.528303: tracing_mark_write: B|619|HWDeviceDRM::Commit::
77876 [email protected]   (  619) [001] ...1 82316.528317: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
77877 [email protected]   (  619) [001] d.s2 82316.528492: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
77878 [email protected]   (  619) [001] d.s3 82316.528536: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
77879 [email protected]   (  619) [001] d.s2 82316.528546: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
77880 [email protected]   (  619) [001] d.s3 82316.528560: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
77881          <idle>-0     (-----) [002] d.h4 82316.528767: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77882          <idle>-0     (-----) [005] dnh2 82316.528787: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
77883          <idle>-0     (-----) [005] .n.1 82316.528791: cpu_idle: state=4294967295 cpu_id=5
77884          <idle>-0     (-----) [005] d..2 82316.528800: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
77885          <idle>-0     (-----) [002] ...1 82316.528805: cpu_idle: state=4294967295 cpu_id=2
77886          <idle>-0     (-----) [002] d..1 82316.528810: cpu_idle: state=0 cpu_id=2
77887<...>-5340 ( 788) [005] d..1 82316.528850: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77888          <idle>-0     (-----) [000] dnh2 82316.528871: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
77889          <idle>-0     (-----) [000] .n.1 82316.528880: cpu_idle: state=4294967295 cpu_id=0
77890          <idle>-0     (-----) [000] d..2 82316.528892: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
77891<...>-5340 ( 788) [005] ...1 82316.528941: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
77892<...>-5340 ( 788) [005] ...1 82316.528946: tracing_mark_write: E|788
77893 neuralnetworks@-13088 (  788) [000] d..2 82316.528960: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77894<...>-5340 ( 788) [005] .... 82316.528963: binder_transaction: transaction=1570685 dest_node=1570682 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
77895<...>-5340 ( 788) [005] .... 82316.528966: binder_transaction_alloc_buf: transaction=1570685 data_size=60 offsets_size=0
77896          <idle>-0     (-----) [000] d..1 82316.528969: cpu_idle: state=0 cpu_id=0
77897<...>-5340 ( 788) [005] d..4 82316.528969: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
77898<...>-5340 ( 788) [005] d..5 82316.528982: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
77899          <idle>-0     (-----) [004] .n.1 82316.528987: cpu_idle: state=4294967295 cpu_id=4
77900          <idle>-0     (-----) [004] d..2 82316.528996: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
77901           <...>-27571 (-----) [004] .... 82316.529001: binder_transaction_received: transaction=1570685
77902<...>-5340 ( 788) [005] ...1 82316.529005: tracing_mark_write: E|788
77903<...>-5340 ( 788) [005] .... 82316.529011: binder_transaction: transaction=1570686 dest_node=0 dest_proc=27550 dest_thread=27705 reply=1 flags=0x0 code=0x0
77904<...>-5340 ( 788) [005] .... 82316.529013: binder_transaction_alloc_buf: transaction=1570686 data_size=8 offsets_size=0
77905<...>-5340 ( 788) [005] d..2 82316.529015: sched_waking: comm=id.nn.benchmark pid=27705 prio=110 target_cpu=005
77906           <...>-27571 (-----) [004] ...1 82316.529020: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
77907<...>-5340 ( 788) [005] d..3 82316.529022: sched_wakeup: comm=id.nn.benchmark pid=27705 prio=110 target_cpu=005
77908<...>-5340 ( 788) [005] .... 82316.529024: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
77909           <...>-27571 (-----) [004] ...1 82316.529026: tracing_mark_write: E|27550
77910           <...>-27571 (-----) [004] d..2 82316.529056: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77911          <idle>-0     (-----) [004] d..1 82316.529063: cpu_idle: state=0 cpu_id=4
77912<...>-5340 ( 788) [005] d..2 82316.529065: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27705 next_prio=110
77913           <...>-27705 (-----) [005] .... 82316.529075: binder_transaction_received: transaction=1570686
77914 [email protected]   (  619) [001] d..2 82316.529108: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
77915           <...>-27705 (-----) [005] ...1 82316.529112: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
77916           <...>-27705 (-----) [005] ...1 82316.529118: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
77917 [email protected]   (  619) [001] d..3 82316.529129: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
77918          <idle>-0     (-----) [002] .n.1 82316.529134: cpu_idle: state=4294967295 cpu_id=2
77919           <...>-27705 (-----) [005] ...1 82316.529144: tracing_mark_write: E|27550
77920          <idle>-0     (-----) [002] d..2 82316.529148: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
77921           <...>-27705 (-----) [005] ...1 82316.529148: tracing_mark_write: E|27550
77922           <...>-27705 (-----) [005] ...1 82316.529151: tracing_mark_write: E|27550
77923 [email protected]   (  619) [001] ...1 82316.529267: tracing_mark_write: E|619
77924 [email protected]   (  619) [001] ...1 82316.529279: tracing_mark_write: E|619
77925           <...>-27705 (-----) [005] ...1 82316.529338: tracing_mark_write: E|27550
77926 [email protected]   (  619) [001] ...1 82316.529346: tracing_mark_write: E|619
77927           <...>-27705 (-----) [005] d..1 82316.529351: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77928           <...>-27705 (-----) [005] d..2 82316.529366: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77929          <idle>-0     (-----) [004] .n.1 82316.529372: cpu_idle: state=4294967295 cpu_id=4
77930          <idle>-0     (-----) [004] d..2 82316.529378: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
77931 [email protected]   (  619) [001] ...1 82316.529393: tracing_mark_write: E|619
77932           <...>-27550 (-----) [004] d..2 82316.529398: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77933          <idle>-0     (-----) [004] d..1 82316.529407: cpu_idle: state=0 cpu_id=4
77934 [email protected]   (  619) [001] .... 82316.529408: binder_transaction: transaction=1570687 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
77935 [email protected]   (  619) [001] .... 82316.529413: binder_transaction_alloc_buf: transaction=1570687 data_size=576 offsets_size=112
77936 [email protected]   (  619) [001] d..2 82316.529435: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
77937 [email protected]   (  619) [001] d..3 82316.529453: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
77938           <...>-27705 (-----) [005] d..1 82316.529456: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77939 [email protected]   (  619) [001] .... 82316.529458: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
77940          <idle>-0     (-----) [003] .n.1 82316.529459: cpu_idle: state=4294967295 cpu_id=3
77941           <...>-27705 (-----) [005] d..2 82316.529466: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
77942          <idle>-0     (-----) [004] .n.1 82316.529470: cpu_idle: state=4294967295 cpu_id=4
77943          <idle>-0     (-----) [003] d..2 82316.529471: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
77944          <idle>-0     (-----) [004] d..2 82316.529478: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
77945  surfaceflinger-8858  ( 8858) [003] .... 82316.529479: binder_transaction_received: transaction=1570687
77946           <...>-27705 (-----) [005] d..2 82316.529505: sched_switch: prev_comm=id.nn.benchmark prev_pid=27705 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
77947           <...>-27550 (-----) [004] ...1 82316.529525: tracing_mark_write: E|27550
77948           <...>-27550 (-----) [004] ...1 82316.529529: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
77949          <idle>-0     (-----) [005] d..1 82316.529532: cpu_idle: state=0 cpu_id=5
77950           <...>-27550 (-----) [004] ...1 82316.529535: tracing_mark_write: E|27550
77951 [email protected]   (  619) [001] d..2 82316.529536: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
77952           <...>-27550 (-----) [004] ...1 82316.529539: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
77953           <...>-27550 (-----) [004] ...1 82316.529543: tracing_mark_write: E|27550
77954           <...>-27550 (-----) [004] ...1 82316.529547: tracing_mark_write: E|27550
77955           <...>-27550 (-----) [004] ...1 82316.529675: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
77956           <...>-27550 (-----) [004] ...1 82316.529745: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
77957           <...>-27550 (-----) [004] ...1 82316.529750: tracing_mark_write: E|27550
77958           <...>-27550 (-----) [004] ...1 82316.529754: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
77959           <...>-27550 (-----) [004] ...1 82316.529759: tracing_mark_write: E|27550
77960           <...>-27550 (-----) [004] ...1 82316.529763: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
77961           <...>-27550 (-----) [004] ...1 82316.529766: tracing_mark_write: E|27550
77962           <...>-27550 (-----) [004] ...1 82316.529770: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
77963  kworker/u16:13-1147  ( 1147) [001] .... 82316.529785: clk_set_rate: l3_cluster0_vote_clk 403200000
77964  kworker/u16:13-1147  ( 1147) [001] d..2 82316.529807: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
77965     kworker/1:1-25249 (25249) [001] d..2 82316.529852: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
77966          <idle>-0     (-----) [005] .n.1 82316.529857: cpu_idle: state=4294967295 cpu_id=5
77967           <...>-27550 (-----) [004] ...1 82316.529859: tracing_mark_write: E|27550
77968           <...>-27550 (-----) [004] ...1 82316.529863: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
77969          <idle>-0     (-----) [005] d..2 82316.529866: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27706 next_prio=110
77970          <idle>-0     (-----) [001] d..1 82316.529869: cpu_idle: state=0 cpu_id=1
77971           <...>-27550 (-----) [004] d..2 82316.529879: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
77972          <idle>-0     (-----) [004] d..1 82316.529894: cpu_idle: state=0 cpu_id=4
77973 crtc_commit:111-321   (  321) [002] d..2 82316.529923: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
77974           <...>-27706 (-----) [005] ...1 82316.529927: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
77975          <idle>-0     (-----) [002] d..1 82316.529933: cpu_idle: state=0 cpu_id=2
77976           <...>-27706 (-----) [005] ...1 82316.529941: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
77977           <...>-27706 (-----) [005] ...1 82316.529945: tracing_mark_write: E|27550
77978           <...>-27706 (-----) [005] .... 82316.529965: binder_transaction: transaction=1570688 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
77979           <...>-27706 (-----) [005] .... 82316.529968: binder_transaction_alloc_buf: transaction=1570688 data_size=48 offsets_size=0
77980           <...>-27706 (-----) [005] ...2 82316.529971: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
77981           <...>-27706 (-----) [005] d..4 82316.529974: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
77982           <...>-27706 (-----) [005] dn.5 82316.529984: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
77983           <...>-27706 (-----) [005] d..2 82316.529991: sched_switch: prev_comm=id.nn.benchmark prev_pid=27706 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
77984  surfaceflinger-8858  ( 8858) [003] d..2 82316.529999: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
77985<...>-770 ( 770) [005] .... 82316.530001: binder_transaction_received: transaction=1570688
77986          <idle>-0     (-----) [003] d..1 82316.530022: cpu_idle: state=0 cpu_id=3
77987<...>-770 ( 770) [005] ...1 82316.530026: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
77988<...>-770 ( 770) [005] d..2 82316.530104: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
77989          <idle>-0     (-----) [000] dnh2 82316.530130: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
77990          <idle>-0     (-----) [000] .n.1 82316.530136: cpu_idle: state=4294967295 cpu_id=0
77991          <idle>-0     (-----) [000] d..2 82316.530145: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
77992<...>-770 ( 770) [005] ...1 82316.530145: tracing_mark_write: E|770
77993<...>-770 ( 770) [005] .... 82316.530153: binder_transaction: transaction=1570689 dest_node=0 dest_proc=27550 dest_thread=27706 reply=1 flags=0x0 code=0x0
77994<...>-770 ( 770) [005] .... 82316.530156: binder_transaction_alloc_buf: transaction=1570689 data_size=168 offsets_size=32
77995<...>-770 ( 770) [005] .... 82316.530163: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
77996<...>-770 ( 770) [005] d..2 82316.530199: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27706 next_prio=110
77997           <...>-27706 (-----) [005] .... 82316.530210: binder_transaction_received: transaction=1570689
77998<...>-581 ( 571) [000] d..2 82316.530221: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
77999          <idle>-0     (-----) [000] d..1 82316.530232: cpu_idle: state=0 cpu_id=0
78000           <...>-27706 (-----) [005] ...1 82316.530281: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
78001           <...>-27706 (-----) [005] ...1 82316.530286: tracing_mark_write: E|27550
78002           <...>-27706 (-----) [005] .... 82316.530301: binder_transaction: transaction=1570690 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
78003           <...>-27706 (-----) [005] .... 82316.530304: binder_transaction_alloc_buf: transaction=1570690 data_size=48 offsets_size=0
78004           <...>-27706 (-----) [005] ...2 82316.530306: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
78005           <...>-27706 (-----) [005] d..4 82316.530308: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
78006           <...>-27706 (-----) [005] dn.5 82316.530318: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
78007           <...>-27706 (-----) [005] d..2 82316.530325: sched_switch: prev_comm=id.nn.benchmark prev_pid=27706 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
78008<...>-770 ( 770) [005] .... 82316.530333: binder_transaction_received: transaction=1570690
78009<...>-770 ( 770) [005] ...1 82316.530350: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
78010<...>-770 ( 770) [005] d..2 82316.530409: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
78011          <idle>-0     (-----) [000] dnh2 82316.530433: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
78012          <idle>-0     (-----) [000] .n.1 82316.530439: cpu_idle: state=4294967295 cpu_id=0
78013<...>-770 ( 770) [005] ...1 82316.530443: tracing_mark_write: E|770
78014          <idle>-0     (-----) [000] d..2 82316.530447: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
78015<...>-770 ( 770) [005] .... 82316.530450: binder_transaction: transaction=1570691 dest_node=0 dest_proc=27550 dest_thread=27706 reply=1 flags=0x0 code=0x0
78016<...>-770 ( 770) [005] .... 82316.530453: binder_transaction_alloc_buf: transaction=1570691 data_size=168 offsets_size=32
78017<...>-770 ( 770) [005] .... 82316.530459: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
78018<...>-770 ( 770) [005] d..2 82316.530493: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27706 next_prio=110
78019<...>-581 ( 571) [000] d..2 82316.530501: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78020           <...>-27706 (-----) [005] .... 82316.530504: binder_transaction_received: transaction=1570691
78021          <idle>-0     (-----) [000] d..1 82316.530512: cpu_idle: state=0 cpu_id=0
78022           <...>-27706 (-----) [005] ...1 82316.530779: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
78023           <...>-27706 (-----) [005] ...1 82316.530788: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
78024           <...>-27706 (-----) [005] ...1 82316.530792: tracing_mark_write: E|27550
78025           <...>-27706 (-----) [005] .... 82316.530855: binder_transaction: transaction=1570692 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
78026           <...>-27706 (-----) [005] .... 82316.530858: binder_transaction_alloc_buf: transaction=1570692 data_size=556 offsets_size=104
78027           <...>-27706 (-----) [005] ...2 82316.530871: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
78028           <...>-27706 (-----) [005] d..4 82316.530874: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78029           <...>-27706 (-----) [005] dn.5 82316.530885: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78030           <...>-27706 (-----) [005] d..2 82316.530892: sched_switch: prev_comm=id.nn.benchmark prev_pid=27706 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78031<...>-5340 ( 788) [005] .... 82316.530901: binder_transaction_received: transaction=1570692
78032<...>-5340 ( 788) [005] ...1 82316.530947: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
78033<...>-5340 ( 788) [005] d..2 82316.530993: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78034<...>-5340 ( 788) [005] d..2 82316.531017: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27706 next_prio=110
78035          <idle>-0     (-----) [000] dnh2 82316.531020: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78036          <idle>-0     (-----) [000] .n.1 82316.531026: cpu_idle: state=4294967295 cpu_id=0
78037          <idle>-0     (-----) [000] d..2 82316.531034: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
78038           <...>-27706 (-----) [005] d..2 82316.531040: sched_switch: prev_comm=id.nn.benchmark prev_pid=27706 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78039          <idle>-0     (-----) [005] d..1 82316.531058: cpu_idle: state=0 cpu_id=5
78040<...>-87 ( 87) [000] d..2 82316.531075: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78041          <idle>-0     (-----) [000] d..1 82316.531084: cpu_idle: state=0 cpu_id=0
78042          <idle>-0     (-----) [002] d.h4 82316.531085: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78043          <idle>-0     (-----) [002] dnh5 82316.531104: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78044          <idle>-0     (-----) [002] .n.1 82316.531114: cpu_idle: state=4294967295 cpu_id=2
78045          <idle>-0     (-----) [002] d..2 82316.531123: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
78046<...>-86 ( 86) [002] d..2 82316.531158: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78047          <idle>-0     (-----) [002] d.h5 82316.531181: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78048          <idle>-0     (-----) [005] dnh2 82316.531202: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78049          <idle>-0     (-----) [005] .n.1 82316.531207: cpu_idle: state=4294967295 cpu_id=5
78050          <idle>-0     (-----) [005] d..2 82316.531215: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78051          <idle>-0     (-----) [002] d..1 82316.531223: cpu_idle: state=0 cpu_id=2
78052<...>-5340 ( 788) [005] d..1 82316.531268: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
78053          <idle>-0     (-----) [000] dnh2 82316.531292: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
78054          <idle>-0     (-----) [000] .n.1 82316.531299: cpu_idle: state=4294967295 cpu_id=0
78055          <idle>-0     (-----) [000] d..2 82316.531306: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
78056 neuralnetworks@-13088 (  788) [000] d..2 82316.531352: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78057          <idle>-0     (-----) [000] d..1 82316.531361: cpu_idle: state=0 cpu_id=0
78058<...>-5340 ( 788) [005] d..2 82316.531415: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78059          <idle>-0     (-----) [000] dnh2 82316.531436: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78060<...>-5340 ( 788) [005] d..2 82316.531441: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78061          <idle>-0     (-----) [000] .n.1 82316.531442: cpu_idle: state=4294967295 cpu_id=0
78062          <idle>-0     (-----) [000] d..2 82316.531450: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
78063          <idle>-0     (-----) [005] d..1 82316.531456: cpu_idle: state=0 cpu_id=5
78064          <idle>-0     (-----) [002] d.h4 82316.531487: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78065<...>-87 ( 87) [000] d..2 82316.531488: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78066          <idle>-0     (-----) [000] d..1 82316.531496: cpu_idle: state=0 cpu_id=0
78067          <idle>-0     (-----) [002] dnh5 82316.531498: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78068          <idle>-0     (-----) [002] .n.1 82316.531506: cpu_idle: state=4294967295 cpu_id=2
78069          <idle>-0     (-----) [002] d..2 82316.531515: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
78070<...>-86 ( 86) [002] d..2 82316.531546: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78071          <idle>-0     (-----) [002] d..1 82316.531554: cpu_idle: state=0 cpu_id=2
78072          <idle>-0     (-----) [000] d.s2 82316.531832: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
78073          <idle>-0     (-----) [002] d.s2 82316.531833: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
78074          <idle>-0     (-----) [005] ...1 82316.531840: cpu_idle: state=4294967295 cpu_id=5
78075          <idle>-0     (-----) [005] d..1 82316.531844: cpu_idle: state=0 cpu_id=5
78076          <idle>-0     (-----) [002] dns3 82316.531852: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
78077          <idle>-0     (-----) [000] dns3 82316.531853: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
78078          <idle>-0     (-----) [002] .n.1 82316.531866: cpu_idle: state=4294967295 cpu_id=2
78079          <idle>-0     (-----) [000] .n.1 82316.531875: cpu_idle: state=4294967295 cpu_id=0
78080          <idle>-0     (-----) [002] d..2 82316.531875: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
78081          <idle>-0     (-----) [000] d..2 82316.531884: 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
78082<...>-8 ( 8) [002] d..2 82316.531912: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78083     rcu_preempt-7     (    7) [000] d..2 82316.531913: 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
78084          <idle>-0     (-----) [002] d..1 82316.531925: cpu_idle: state=0 cpu_id=2
78085          <idle>-0     (-----) [000] d..1 82316.531925: cpu_idle: state=0 cpu_id=0
78086          <idle>-0     (-----) [002] d.h4 82316.533191: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78087          <idle>-0     (-----) [005] dnh2 82316.533213: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78088          <idle>-0     (-----) [005] .n.1 82316.533216: cpu_idle: state=4294967295 cpu_id=5
78089          <idle>-0     (-----) [005] d..2 82316.533225: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78090          <idle>-0     (-----) [002] ...1 82316.533231: cpu_idle: state=4294967295 cpu_id=2
78091          <idle>-0     (-----) [002] d..1 82316.533236: cpu_idle: state=0 cpu_id=2
78092<...>-5340 ( 788) [005] d..1 82316.533276: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
78093          <idle>-0     (-----) [000] dnh2 82316.533302: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
78094          <idle>-0     (-----) [000] .n.1 82316.533309: cpu_idle: state=4294967295 cpu_id=0
78095          <idle>-0     (-----) [000] d..2 82316.533319: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
78096<...>-5340 ( 788) [005] ...1 82316.533369: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
78097<...>-5340 ( 788) [005] ...1 82316.533373: tracing_mark_write: E|788
78098 neuralnetworks@-13088 (  788) [000] d..2 82316.533382: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78099<...>-5340 ( 788) [005] .... 82316.533390: binder_transaction: transaction=1570695 dest_node=1570693 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
78100<...>-5340 ( 788) [005] .... 82316.533392: binder_transaction_alloc_buf: transaction=1570695 data_size=60 offsets_size=0
78101          <idle>-0     (-----) [000] d..1 82316.533393: cpu_idle: state=0 cpu_id=0
78102<...>-5340 ( 788) [005] d..4 82316.533396: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
78103<...>-5340 ( 788) [005] d..5 82316.533409: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
78104          <idle>-0     (-----) [004] .n.1 82316.533414: cpu_idle: state=4294967295 cpu_id=4
78105          <idle>-0     (-----) [004] d..2 82316.533422: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
78106           <...>-27571 (-----) [004] .... 82316.533427: binder_transaction_received: transaction=1570695
78107<...>-5340 ( 788) [005] ...1 82316.533431: tracing_mark_write: E|788
78108<...>-5340 ( 788) [005] .... 82316.533437: binder_transaction: transaction=1570696 dest_node=0 dest_proc=27550 dest_thread=27706 reply=1 flags=0x0 code=0x0
78109<...>-5340 ( 788) [005] .... 82316.533439: binder_transaction_alloc_buf: transaction=1570696 data_size=8 offsets_size=0
78110<...>-5340 ( 788) [005] d..2 82316.533441: sched_waking: comm=id.nn.benchmark pid=27706 prio=110 target_cpu=005
78111           <...>-27571 (-----) [004] ...1 82316.533446: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
78112<...>-5340 ( 788) [005] d..3 82316.533449: sched_wakeup: comm=id.nn.benchmark pid=27706 prio=110 target_cpu=005
78113<...>-5340 ( 788) [005] .... 82316.533451: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
78114           <...>-27571 (-----) [004] ...1 82316.533452: tracing_mark_write: E|27550
78115           <...>-27571 (-----) [004] d..2 82316.533481: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78116          <idle>-0     (-----) [004] d..1 82316.533488: cpu_idle: state=0 cpu_id=4
78117<...>-5340 ( 788) [005] d..2 82316.533493: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27706 next_prio=110
78118           <...>-27706 (-----) [005] .... 82316.533503: binder_transaction_received: transaction=1570696
78119           <...>-27706 (-----) [005] ...1 82316.533539: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
78120           <...>-27706 (-----) [005] ...1 82316.533546: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
78121           <...>-27706 (-----) [005] ...1 82316.533573: tracing_mark_write: E|27550
78122           <...>-27706 (-----) [005] ...1 82316.533577: tracing_mark_write: E|27550
78123           <...>-27706 (-----) [005] ...1 82316.533580: tracing_mark_write: E|27550
78124           <...>-27706 (-----) [005] ...1 82316.533769: tracing_mark_write: E|27550
78125           <...>-27706 (-----) [005] d..1 82316.533781: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78126           <...>-27706 (-----) [005] d..2 82316.533799: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78127          <idle>-0     (-----) [004] .n.1 82316.533804: cpu_idle: state=4294967295 cpu_id=4
78128          <idle>-0     (-----) [004] d..2 82316.533810: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
78129           <...>-27550 (-----) [004] d..2 82316.533830: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78130          <idle>-0     (-----) [004] d..1 82316.533839: cpu_idle: state=0 cpu_id=4
78131           <...>-27706 (-----) [005] d..1 82316.533887: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78132           <...>-27706 (-----) [005] d..2 82316.533896: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78133          <idle>-0     (-----) [004] .n.1 82316.533902: cpu_idle: state=4294967295 cpu_id=4
78134          <idle>-0     (-----) [004] d..2 82316.533909: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
78135           <...>-27706 (-----) [005] d..2 82316.533934: sched_switch: prev_comm=id.nn.benchmark prev_pid=27706 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
78136           <...>-27550 (-----) [004] ...1 82316.533943: tracing_mark_write: E|27550
78137           <...>-27550 (-----) [004] ...1 82316.533948: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
78138           <...>-27550 (-----) [004] ...1 82316.533954: tracing_mark_write: E|27550
78139          <idle>-0     (-----) [005] d..1 82316.533955: cpu_idle: state=0 cpu_id=5
78140           <...>-27550 (-----) [004] ...1 82316.533957: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
78141           <...>-27550 (-----) [004] ...1 82316.533961: tracing_mark_write: E|27550
78142           <...>-27550 (-----) [004] ...1 82316.533966: tracing_mark_write: E|27550
78143           <...>-27550 (-----) [004] ...1 82316.534079: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
78144           <...>-27550 (-----) [004] ...1 82316.534137: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
78145           <...>-27550 (-----) [004] ...1 82316.534142: tracing_mark_write: E|27550
78146           <...>-27550 (-----) [004] ...1 82316.534146: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
78147           <...>-27550 (-----) [004] ...1 82316.534152: tracing_mark_write: E|27550
78148           <...>-27550 (-----) [004] ...1 82316.534155: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
78149           <...>-27550 (-----) [004] ...1 82316.534160: tracing_mark_write: E|27550
78150           <...>-27550 (-----) [004] ...1 82316.534163: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
78151          <idle>-0     (-----) [005] .n.1 82316.534258: cpu_idle: state=4294967295 cpu_id=5
78152           <...>-27550 (-----) [004] ...1 82316.534259: tracing_mark_write: E|27550
78153           <...>-27550 (-----) [004] ...1 82316.534263: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
78154          <idle>-0     (-----) [005] d..2 82316.534267: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27707 next_prio=110
78155           <...>-27550 (-----) [004] d..2 82316.534279: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78156          <idle>-0     (-----) [004] d..1 82316.534293: cpu_idle: state=0 cpu_id=4
78157           <...>-27707 (-----) [005] ...1 82316.534327: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
78158           <...>-27707 (-----) [005] ...1 82316.534341: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
78159           <...>-27707 (-----) [005] ...1 82316.534344: tracing_mark_write: E|27550
78160           <...>-27707 (-----) [005] .... 82316.534364: binder_transaction: transaction=1570697 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
78161           <...>-27707 (-----) [005] .... 82316.534367: binder_transaction_alloc_buf: transaction=1570697 data_size=48 offsets_size=0
78162           <...>-27707 (-----) [005] ...2 82316.534370: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
78163           <...>-27707 (-----) [005] d..4 82316.534372: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
78164           <...>-27707 (-----) [005] dn.5 82316.534385: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
78165           <...>-27707 (-----) [005] d..2 82316.534392: sched_switch: prev_comm=id.nn.benchmark prev_pid=27707 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
78166<...>-770 ( 770) [005] .... 82316.534403: binder_transaction_received: transaction=1570697
78167<...>-770 ( 770) [005] ...1 82316.534425: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
78168<...>-770 ( 770) [005] d..2 82316.534494: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
78169          <idle>-0     (-----) [000] dnh2 82316.534522: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
78170          <idle>-0     (-----) [000] .n.1 82316.534528: cpu_idle: state=4294967295 cpu_id=0
78171<...>-770 ( 770) [005] ...1 82316.534535: tracing_mark_write: E|770
78172          <idle>-0     (-----) [000] d..2 82316.534539: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
78173<...>-770 ( 770) [005] .... 82316.534543: binder_transaction: transaction=1570698 dest_node=0 dest_proc=27550 dest_thread=27707 reply=1 flags=0x0 code=0x0
78174<...>-770 ( 770) [005] .... 82316.534546: binder_transaction_alloc_buf: transaction=1570698 data_size=168 offsets_size=32
78175<...>-770 ( 770) [005] .... 82316.534552: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
78176<...>-770 ( 770) [005] d..2 82316.534588: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27707 next_prio=110
78177           <...>-27707 (-----) [005] .... 82316.534599: binder_transaction_received: transaction=1570698
78178<...>-581 ( 571) [000] d..2 82316.534618: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78179          <idle>-0     (-----) [000] d..1 82316.534632: cpu_idle: state=0 cpu_id=0
78180           <...>-27707 (-----) [005] ...1 82316.534666: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
78181           <...>-27707 (-----) [005] ...1 82316.534672: tracing_mark_write: E|27550
78182           <...>-27707 (-----) [005] .... 82316.534686: binder_transaction: transaction=1570699 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
78183           <...>-27707 (-----) [005] .... 82316.534689: binder_transaction_alloc_buf: transaction=1570699 data_size=48 offsets_size=0
78184           <...>-27707 (-----) [005] ...2 82316.534691: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
78185           <...>-27707 (-----) [005] d..4 82316.534693: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
78186           <...>-27707 (-----) [005] dn.5 82316.534703: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
78187           <...>-27707 (-----) [005] d..2 82316.534710: sched_switch: prev_comm=id.nn.benchmark prev_pid=27707 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
78188<...>-770 ( 770) [005] .... 82316.534719: binder_transaction_received: transaction=1570699
78189<...>-770 ( 770) [005] ...1 82316.534736: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
78190<...>-770 ( 770) [005] d..2 82316.534794: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
78191          <idle>-0     (-----) [000] dnh2 82316.534818: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
78192          <idle>-0     (-----) [000] .n.1 82316.534825: cpu_idle: state=4294967295 cpu_id=0
78193<...>-770 ( 770) [005] ...1 82316.534827: tracing_mark_write: E|770
78194<...>-770 ( 770) [005] .... 82316.534834: binder_transaction: transaction=1570700 dest_node=0 dest_proc=27550 dest_thread=27707 reply=1 flags=0x0 code=0x0
78195          <idle>-0     (-----) [000] d..2 82316.534836: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
78196<...>-770 ( 770) [005] .... 82316.534837: binder_transaction_alloc_buf: transaction=1570700 data_size=168 offsets_size=32
78197<...>-770 ( 770) [005] .... 82316.534843: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
78198<...>-770 ( 770) [005] d..2 82316.534877: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27707 next_prio=110
78199           <...>-27707 (-----) [005] .... 82316.534887: binder_transaction_received: transaction=1570700
78200<...>-581 ( 571) [000] d..2 82316.534892: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78201          <idle>-0     (-----) [000] d..1 82316.534905: cpu_idle: state=0 cpu_id=0
78202          <idle>-0     (-----) [000] d.h5 82316.535074: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
78203          <idle>-0     (-----) [000] d.h6 82316.535096: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
78204          <idle>-0     (-----) [000] d.h5 82316.535102: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
78205          <idle>-0     (-----) [003] .n.1 82316.535104: cpu_idle: state=4294967295 cpu_id=3
78206          <idle>-0     (-----) [000] d.h6 82316.535115: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
78207          <idle>-0     (-----) [003] d..2 82316.535121: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
78208          <idle>-0     (-----) [002] .n.1 82316.535121: cpu_idle: state=4294967295 cpu_id=2
78209          <idle>-0     (-----) [000] ...1 82316.535132: cpu_idle: state=4294967295 cpu_id=0
78210          <idle>-0     (-----) [002] d..2 82316.535135: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
78211           <...>-27707 (-----) [005] d.s2 82316.535137: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
78212          <idle>-0     (-----) [000] d..1 82316.535137: cpu_idle: state=0 cpu_id=0
78213  crtc_event:111-322   (  322) [003] d..2 82316.535161: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78214          <idle>-0     (-----) [003] d..1 82316.535172: cpu_idle: state=0 cpu_id=3
78215          <idle>-0     (-----) [003] dnh2 82316.535188: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
78216          <idle>-0     (-----) [003] .n.1 82316.535194: cpu_idle: state=4294967295 cpu_id=3
78217          <idle>-0     (-----) [003] d..2 82316.535205: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
78218           <...>-27707 (-----) [005] ...1 82316.535233: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
78219           <...>-27707 (-----) [005] ...1 82316.535242: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
78220           <...>-27707 (-----) [005] ...1 82316.535246: tracing_mark_write: E|27550
78221  kworker/u16:13-1147  ( 1147) [003] d..2 82316.535274: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78222 crtc_commit:111-321   (  321) [002] d..2 82316.535282: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
78223          <idle>-0     (-----) [003] d..1 82316.535285: cpu_idle: state=0 cpu_id=3
78224          <idle>-0     (-----) [002] d..1 82316.535290: cpu_idle: state=0 cpu_id=2
78225           <...>-27707 (-----) [005] .... 82316.535307: binder_transaction: transaction=1570701 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
78226           <...>-27707 (-----) [005] .... 82316.535311: binder_transaction_alloc_buf: transaction=1570701 data_size=556 offsets_size=104
78227           <...>-27707 (-----) [005] ...2 82316.535326: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
78228           <...>-27707 (-----) [005] d..4 82316.535328: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78229           <...>-27707 (-----) [005] dn.5 82316.535338: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78230           <...>-27707 (-----) [005] d..2 82316.535345: sched_switch: prev_comm=id.nn.benchmark prev_pid=27707 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78231<...>-5340 ( 788) [005] .... 82316.535355: binder_transaction_received: transaction=1570701
78232<...>-5340 ( 788) [005] ...1 82316.535401: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
78233<...>-5340 ( 788) [005] d..2 82316.535446: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78234<...>-5340 ( 788) [005] d..2 82316.535471: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27707 next_prio=110
78235          <idle>-0     (-----) [000] dnh2 82316.535475: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78236          <idle>-0     (-----) [000] .n.1 82316.535481: cpu_idle: state=4294967295 cpu_id=0
78237           <...>-27707 (-----) [005] d..2 82316.535493: sched_switch: prev_comm=id.nn.benchmark prev_pid=27707 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78238          <idle>-0     (-----) [000] d..2 82316.535494: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
78239          <idle>-0     (-----) [005] d..1 82316.535511: cpu_idle: state=0 cpu_id=5
78240<...>-87 ( 87) [000] d..2 82316.535538: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78241          <idle>-0     (-----) [000] d..1 82316.535546: cpu_idle: state=0 cpu_id=0
78242          <idle>-0     (-----) [002] d.h4 82316.535546: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78243          <idle>-0     (-----) [002] dnh5 82316.535565: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78244          <idle>-0     (-----) [002] .n.1 82316.535575: cpu_idle: state=4294967295 cpu_id=2
78245          <idle>-0     (-----) [002] d..2 82316.535584: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
78246<...>-86 ( 86) [002] d..2 82316.535617: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78247          <idle>-0     (-----) [002] d.h5 82316.535639: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78248          <idle>-0     (-----) [005] dnh2 82316.535661: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78249          <idle>-0     (-----) [005] .n.1 82316.535665: cpu_idle: state=4294967295 cpu_id=5
78250          <idle>-0     (-----) [005] d..2 82316.535673: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78251          <idle>-0     (-----) [002] d..1 82316.535681: cpu_idle: state=0 cpu_id=2
78252<...>-5340 ( 788) [005] d..1 82316.535726: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
78253          <idle>-0     (-----) [000] dnh2 82316.535751: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
78254          <idle>-0     (-----) [000] .n.1 82316.535757: cpu_idle: state=4294967295 cpu_id=0
78255          <idle>-0     (-----) [000] d..2 82316.535766: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
78256 neuralnetworks@-13088 (  788) [000] d..2 82316.535812: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78257          <idle>-0     (-----) [000] d..1 82316.535821: cpu_idle: state=0 cpu_id=0
78258<...>-5340 ( 788) [005] d..2 82316.535872: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78259          <idle>-0     (-----) [000] dnh2 82316.535895: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78260<...>-5340 ( 788) [005] d..2 82316.535899: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78261          <idle>-0     (-----) [000] .n.1 82316.535901: cpu_idle: state=4294967295 cpu_id=0
78262          <idle>-0     (-----) [000] d..2 82316.535909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
78263          <idle>-0     (-----) [005] d..1 82316.535914: cpu_idle: state=0 cpu_id=5
78264<...>-87 ( 87) [000] d..2 82316.535945: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78265          <idle>-0     (-----) [002] d.h4 82316.535946: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78266          <idle>-0     (-----) [000] d..1 82316.535954: cpu_idle: state=0 cpu_id=0
78267          <idle>-0     (-----) [002] dnh5 82316.535957: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78268          <idle>-0     (-----) [002] .n.1 82316.535965: cpu_idle: state=4294967295 cpu_id=2
78269          <idle>-0     (-----) [002] d..2 82316.535974: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
78270<...>-86 ( 86) [002] d..2 82316.536007: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78271          <idle>-0     (-----) [002] d..1 82316.536015: cpu_idle: state=0 cpu_id=2
78272          <idle>-0     (-----) [005] ...1 82316.536249: cpu_idle: state=4294967295 cpu_id=5
78273          <idle>-0     (-----) [005] d..1 82316.536252: cpu_idle: state=0 cpu_id=5
78274          <idle>-0     (-----) [000] d.h5 82316.537401: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
78275          <idle>-0     (-----) [000] d.h6 82316.537419: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
78276          <idle>-0     (-----) [002] .n.1 82316.537425: cpu_idle: state=4294967295 cpu_id=2
78277          <idle>-0     (-----) [002] d..2 82316.537433: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
78278          <idle>-0     (-----) [000] ...1 82316.537434: cpu_idle: state=4294967295 cpu_id=0
78279          <idle>-0     (-----) [000] d..1 82316.537438: cpu_idle: state=0 cpu_id=0
78280 crtc_commit:111-321   (  321) [002] d..2 82316.537506: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78281          <idle>-0     (-----) [002] d..1 82316.537515: cpu_idle: state=0 cpu_id=2
78282          <idle>-0     (-----) [002] d.h4 82316.537690: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78283          <idle>-0     (-----) [000] d.h5 82316.537701: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
78284          <idle>-0     (-----) [005] dnh2 82316.537710: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78285          <idle>-0     (-----) [005] .n.1 82316.537714: cpu_idle: state=4294967295 cpu_id=5
78286          <idle>-0     (-----) [000] d.h6 82316.537715: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
78287          <idle>-0     (-----) [003] .n.1 82316.537721: cpu_idle: state=4294967295 cpu_id=3
78288          <idle>-0     (-----) [005] d..2 82316.537722: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78289          <idle>-0     (-----) [002] ...1 82316.537729: cpu_idle: state=4294967295 cpu_id=2
78290          <idle>-0     (-----) [000] ...1 82316.537730: cpu_idle: state=4294967295 cpu_id=0
78291          <idle>-0     (-----) [003] d..2 82316.537731: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
78292          <idle>-0     (-----) [002] d..1 82316.537734: cpu_idle: state=0 cpu_id=2
78293          <idle>-0     (-----) [000] d..1 82316.537735: cpu_idle: state=0 cpu_id=0
78294  crtc_event:111-322   (  322) [003] d..2 82316.537756: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78295          <idle>-0     (-----) [003] d..1 82316.537765: cpu_idle: state=0 cpu_id=3
78296<...>-5340 ( 788) [005] d..1 82316.537770: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
78297          <idle>-0     (-----) [000] dnh2 82316.537794: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
78298          <idle>-0     (-----) [000] .n.1 82316.537800: cpu_idle: state=4294967295 cpu_id=0
78299          <idle>-0     (-----) [000] d..2 82316.537808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
78300<...>-5340 ( 788) [005] ...1 82316.537859: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
78301<...>-5340 ( 788) [005] ...1 82316.537864: tracing_mark_write: E|788
78302 neuralnetworks@-13088 (  788) [000] d..2 82316.537873: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78303<...>-5340 ( 788) [005] .... 82316.537880: binder_transaction: transaction=1570704 dest_node=1570702 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
78304          <idle>-0     (-----) [000] d..1 82316.537882: cpu_idle: state=0 cpu_id=0
78305<...>-5340 ( 788) [005] .... 82316.537883: binder_transaction_alloc_buf: transaction=1570704 data_size=60 offsets_size=0
78306<...>-5340 ( 788) [005] d..4 82316.537886: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
78307<...>-5340 ( 788) [005] d..5 82316.537899: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
78308          <idle>-0     (-----) [004] .n.1 82316.537905: cpu_idle: state=4294967295 cpu_id=4
78309          <idle>-0     (-----) [004] d..2 82316.537913: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
78310           <...>-27571 (-----) [004] .... 82316.537918: binder_transaction_received: transaction=1570704
78311<...>-5340 ( 788) [005] ...1 82316.537921: tracing_mark_write: E|788
78312<...>-5340 ( 788) [005] .... 82316.537927: binder_transaction: transaction=1570705 dest_node=0 dest_proc=27550 dest_thread=27707 reply=1 flags=0x0 code=0x0
78313<...>-5340 ( 788) [005] .... 82316.537929: binder_transaction_alloc_buf: transaction=1570705 data_size=8 offsets_size=0
78314<...>-5340 ( 788) [005] d..2 82316.537931: sched_waking: comm=id.nn.benchmark pid=27707 prio=110 target_cpu=005
78315           <...>-27571 (-----) [004] ...1 82316.537936: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
78316<...>-5340 ( 788) [005] d..3 82316.537938: sched_wakeup: comm=id.nn.benchmark pid=27707 prio=110 target_cpu=005
78317<...>-5340 ( 788) [005] .... 82316.537940: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
78318           <...>-27571 (-----) [004] ...1 82316.537942: tracing_mark_write: E|27550
78319           <...>-27571 (-----) [004] d..2 82316.537970: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78320          <idle>-0     (-----) [004] d..1 82316.537977: cpu_idle: state=0 cpu_id=4
78321<...>-5340 ( 788) [005] d..2 82316.537980: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27707 next_prio=110
78322           <...>-27707 (-----) [005] .... 82316.537989: binder_transaction_received: transaction=1570705
78323           <...>-27707 (-----) [005] ...1 82316.538024: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
78324           <...>-27707 (-----) [005] ...1 82316.538030: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
78325           <...>-27707 (-----) [005] ...1 82316.538056: tracing_mark_write: E|27550
78326           <...>-27707 (-----) [005] ...1 82316.538060: tracing_mark_write: E|27550
78327           <...>-27707 (-----) [005] ...1 82316.538064: tracing_mark_write: E|27550
78328           <...>-27707 (-----) [005] ...1 82316.538251: tracing_mark_write: E|27550
78329           <...>-27707 (-----) [005] d..1 82316.538264: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78330           <...>-27707 (-----) [005] d..2 82316.538280: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78331          <idle>-0     (-----) [004] .n.1 82316.538285: cpu_idle: state=4294967295 cpu_id=4
78332          <idle>-0     (-----) [004] d..2 82316.538292: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
78333           <...>-27550 (-----) [004] d..2 82316.538312: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78334          <idle>-0     (-----) [004] d..1 82316.538321: cpu_idle: state=0 cpu_id=4
78335           <...>-27707 (-----) [005] d..1 82316.538369: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78336           <...>-27707 (-----) [005] d..2 82316.538379: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78337          <idle>-0     (-----) [004] .n.1 82316.538384: cpu_idle: state=4294967295 cpu_id=4
78338          <idle>-0     (-----) [004] d..2 82316.538392: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
78339           <...>-27707 (-----) [005] d..2 82316.538416: sched_switch: prev_comm=id.nn.benchmark prev_pid=27707 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
78340           <...>-27550 (-----) [004] ...1 82316.538424: tracing_mark_write: E|27550
78341           <...>-27550 (-----) [004] ...1 82316.538428: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
78342           <...>-27550 (-----) [004] ...1 82316.538434: tracing_mark_write: E|27550
78343          <idle>-0     (-----) [005] d..1 82316.538436: cpu_idle: state=0 cpu_id=5
78344           <...>-27550 (-----) [004] d.s2 82316.538465: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
78345          <idle>-0     (-----) [002] d.s3 82316.538468: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
78346          <idle>-0     (-----) [000] d.s2 82316.538468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
78347          <idle>-0     (-----) [002] d.s4 82316.538486: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
78348          <idle>-0     (-----) [003] .n.1 82316.538492: cpu_idle: state=4294967295 cpu_id=3
78349          <idle>-0     (-----) [002] d.s2 82316.538494: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
78350          <idle>-0     (-----) [000] dns3 82316.538498: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
78351          <idle>-0     (-----) [003] d..2 82316.538502: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
78352           <...>-27550 (-----) [004] ...1 82316.538507: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
78353          <idle>-0     (-----) [000] dnH3 82316.538509: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
78354          <idle>-0     (-----) [002] dns3 82316.538510: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
78355           <...>-27550 (-----) [004] ...1 82316.538513: tracing_mark_write: E|27550
78356           <...>-27550 (-----) [004] ...1 82316.538517: tracing_mark_write: E|27550
78357          <idle>-0     (-----) [000] .n.1 82316.538522: cpu_idle: state=4294967295 cpu_id=0
78358          <idle>-0     (-----) [002] .n.1 82316.538530: cpu_idle: state=4294967295 cpu_id=2
78359          <idle>-0     (-----) [000] d..2 82316.538535: 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
78360          <idle>-0     (-----) [002] d..2 82316.538540: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
78361     rcu_preempt-7     (    7) [000] d..2 82316.538542: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
78362<...>-8 ( 8) [002] d..2 82316.538547: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
78363  crtc_event:111-322   (  322) [003] d..2 82316.538562: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
78364<...>-8 ( 8) [002] d..3 82316.538567: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
78365     rcu_preempt-7     (    7) [000] d..3 82316.538590: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
78366<...>-8 ( 8) [002] d..2 82316.538591: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78367          <idle>-0     (-----) [002] d..1 82316.538606: cpu_idle: state=0 cpu_id=2
78368     rcu_preempt-7     (    7) [000] d..2 82316.538618: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
78369           <...>-27550 (-----) [004] ...1 82316.538629: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
78370<...>-46 ( 46) [000] d..2 82316.538636: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
78371<...>-46 ( 46) [000] d..3 82316.538651: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
78372  kworker/u16:13-1147  ( 1147) [003] .... 82316.538651: clk_set_rate: l3_cluster0_vote_clk 300000000
78373          <idle>-0     (-----) [002] .n.1 82316.538658: cpu_idle: state=4294967295 cpu_id=2
78374<...>-46 ( 46) [000] d..2 82316.538661: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
78375         rcuop/4-45    (   45) [000] d..2 82316.538667: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
78376          <idle>-0     (-----) [002] d..2 82316.538669: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
78377<...>-8 ( 8) [002] d..2 82316.538692: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78378           <...>-27550 (-----) [004] ...1 82316.538701: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
78379          <idle>-0     (-----) [002] d..1 82316.538702: cpu_idle: state=0 cpu_id=2
78380         rcuop/4-45    (   45) [000] d..3 82316.538702: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
78381           <...>-27550 (-----) [004] ...1 82316.538706: tracing_mark_write: E|27550
78382           <...>-27550 (-----) [004] ...1 82316.538710: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
78383         rcuop/4-45    (   45) [000] d..2 82316.538713: 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
78384           <...>-27550 (-----) [004] ...1 82316.538715: tracing_mark_write: E|27550
78385           <...>-27550 (-----) [004] ...1 82316.538718: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
78386           <...>-27550 (-----) [004] ...1 82316.538722: tracing_mark_write: E|27550
78387           <...>-27550 (-----) [004] ...1 82316.538726: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
78388          <idle>-0     (-----) [005] .n.1 82316.538812: cpu_idle: state=4294967295 cpu_id=5
78389           <...>-27550 (-----) [004] ...1 82316.538813: tracing_mark_write: E|27550
78390           <...>-27550 (-----) [004] ...1 82316.538818: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
78391          <idle>-0     (-----) [005] d..2 82316.538822: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27708 next_prio=110
78392           <...>-27550 (-----) [004] d..2 82316.538835: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78393         rcuop/5-53    (   53) [000] d..2 82316.538849: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78394          <idle>-0     (-----) [004] d..1 82316.538850: cpu_idle: state=0 cpu_id=4
78395          <idle>-0     (-----) [000] d..1 82316.538865: cpu_idle: state=0 cpu_id=0
78396           <...>-27708 (-----) [005] ...1 82316.538882: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
78397           <...>-27708 (-----) [005] ...1 82316.538896: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
78398           <...>-27708 (-----) [005] ...1 82316.538900: tracing_mark_write: E|27550
78399           <...>-27708 (-----) [005] .... 82316.538920: binder_transaction: transaction=1570706 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
78400           <...>-27708 (-----) [005] .... 82316.538923: binder_transaction_alloc_buf: transaction=1570706 data_size=48 offsets_size=0
78401           <...>-27708 (-----) [005] ...2 82316.538926: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
78402           <...>-27708 (-----) [005] d..4 82316.538929: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
78403  kworker/u16:13-1147  ( 1147) [003] d..2 82316.538930: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
78404           <...>-27708 (-----) [005] dn.5 82316.538939: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
78405          <idle>-0     (-----) [003] d..1 82316.538944: cpu_idle: state=0 cpu_id=3
78406           <...>-27708 (-----) [005] d..2 82316.538946: sched_switch: prev_comm=id.nn.benchmark prev_pid=27708 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
78407<...>-770 ( 770) [005] .... 82316.538955: binder_transaction_received: transaction=1570706
78408          <idle>-0     (-----) [001] d.s3 82316.538970: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
78409<...>-770 ( 770) [005] ...1 82316.538978: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
78410          <idle>-0     (-----) [001] d.s4 82316.538982: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
78411          <idle>-0     (-----) [001] d.s4 82316.538992: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
78412          <idle>-0     (-----) [003] .n.1 82316.538998: cpu_idle: state=4294967295 cpu_id=3
78413          <idle>-0     (-----) [001] ...1 82316.539002: cpu_idle: state=4294967295 cpu_id=1
78414          <idle>-0     (-----) [001] d..1 82316.539009: cpu_idle: state=0 cpu_id=1
78415          <idle>-0     (-----) [003] d..2 82316.539011: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
78416<...>-770 ( 770) [005] d..2 82316.539066: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
78417  kworker/u16:13-1147  ( 1147) [003] d..2 82316.539089: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78418          <idle>-0     (-----) [003] d..1 82316.539099: cpu_idle: state=0 cpu_id=3
78419          <idle>-0     (-----) [003] dnh2 82316.539114: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
78420          <idle>-0     (-----) [003] .n.1 82316.539120: cpu_idle: state=4294967295 cpu_id=3
78421<...>-770 ( 770) [005] ...1 82316.539125: tracing_mark_write: E|770
78422          <idle>-0     (-----) [003] d..2 82316.539130: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
78423<...>-770 ( 770) [005] .... 82316.539134: binder_transaction: transaction=1570707 dest_node=0 dest_proc=27550 dest_thread=27708 reply=1 flags=0x0 code=0x0
78424<...>-770 ( 770) [005] .... 82316.539136: binder_transaction_alloc_buf: transaction=1570707 data_size=168 offsets_size=32
78425<...>-770 ( 770) [005] .... 82316.539143: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
78426<...>-770 ( 770) [005] d..2 82316.539179: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27708 next_prio=110
78427           <...>-27708 (-----) [005] .... 82316.539190: binder_transaction_received: transaction=1570707
78428<...>-581 ( 571) [003] d..2 82316.539231: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78429          <idle>-0     (-----) [003] d..1 82316.539244: cpu_idle: state=0 cpu_id=3
78430           <...>-27708 (-----) [005] ...1 82316.539260: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
78431           <...>-27708 (-----) [005] ...1 82316.539265: tracing_mark_write: E|27550
78432           <...>-27708 (-----) [005] .... 82316.539279: binder_transaction: transaction=1570708 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
78433           <...>-27708 (-----) [005] .... 82316.539282: binder_transaction_alloc_buf: transaction=1570708 data_size=48 offsets_size=0
78434           <...>-27708 (-----) [005] ...2 82316.539284: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
78435           <...>-27708 (-----) [005] d..4 82316.539286: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
78436           <...>-27708 (-----) [005] dn.5 82316.539296: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
78437           <...>-27708 (-----) [005] d..2 82316.539303: sched_switch: prev_comm=id.nn.benchmark prev_pid=27708 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
78438<...>-770 ( 770) [005] .... 82316.539311: binder_transaction_received: transaction=1570708
78439<...>-770 ( 770) [005] ...1 82316.539328: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
78440<...>-770 ( 770) [005] d..2 82316.539385: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
78441          <idle>-0     (-----) [003] dnh2 82316.539409: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
78442          <idle>-0     (-----) [003] .n.1 82316.539416: cpu_idle: state=4294967295 cpu_id=3
78443<...>-770 ( 770) [005] ...1 82316.539418: tracing_mark_write: E|770
78444<...>-770 ( 770) [005] .... 82316.539425: binder_transaction: transaction=1570709 dest_node=0 dest_proc=27550 dest_thread=27708 reply=1 flags=0x0 code=0x0
78445          <idle>-0     (-----) [003] d..2 82316.539426: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
78446<...>-770 ( 770) [005] .... 82316.539428: binder_transaction_alloc_buf: transaction=1570709 data_size=168 offsets_size=32
78447<...>-770 ( 770) [005] .... 82316.539434: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
78448<...>-770 ( 770) [005] d..2 82316.539468: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27708 next_prio=110
78449           <...>-27708 (-----) [005] .... 82316.539479: binder_transaction_received: transaction=1570709
78450<...>-581 ( 571) [003] d..2 82316.539483: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78451          <idle>-0     (-----) [003] d..1 82316.539495: cpu_idle: state=0 cpu_id=3
78452          <idle>-0     (-----) [003] d.h2 82316.539570: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
78453          <idle>-0     (-----) [003] dnh3 82316.539587: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
78454          <idle>-0     (-----) [003] .n.1 82316.539595: cpu_idle: state=4294967295 cpu_id=3
78455          <idle>-0     (-----) [003] d..2 82316.539605: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
78456        DispSync-8879  ( 8858) [003] d..1 82316.539628: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
78457        DispSync-8879  ( 8858) [003] d..2 82316.539653: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
78458          <idle>-0     (-----) [001] .n.1 82316.539658: cpu_idle: state=4294967295 cpu_id=1
78459          <idle>-0     (-----) [001] d..2 82316.539671: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
78460        DispSync-8879  ( 8858) [003] d..2 82316.539687: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78461          <idle>-0     (-----) [003] d..1 82316.539700: cpu_idle: state=0 cpu_id=3
78462  appEventThread-8881  ( 8858) [001] d..3 82316.539738: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
78463           <...>-27708 (-----) [005] ...1 82316.539747: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
78464           <...>-27708 (-----) [005] ...1 82316.539757: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
78465           <...>-27708 (-----) [005] ...1 82316.539760: tracing_mark_write: E|27550
78466  appEventThread-8881  ( 8858) [001] d..4 82316.539762: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
78467          <idle>-0     (-----) [000] .n.1 82316.539767: cpu_idle: state=4294967295 cpu_id=0
78468          <idle>-0     (-----) [000] d..2 82316.539781: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
78469  appEventThread-8881  ( 8858) [001] d..2 82316.539808: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78470           <...>-27708 (-----) [005] .... 82316.539819: binder_transaction: transaction=1570710 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
78471           <...>-27708 (-----) [005] .... 82316.539823: binder_transaction_alloc_buf: transaction=1570710 data_size=556 offsets_size=104
78472          <idle>-0     (-----) [001] d..1 82316.539823: cpu_idle: state=0 cpu_id=1
78473           <...>-27708 (-----) [005] ...2 82316.539836: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
78474           <...>-27708 (-----) [005] d..4 82316.539838: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78475           <...>-27708 (-----) [005] dn.5 82316.539850: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78476           <...>-27708 (-----) [005] d..2 82316.539856: sched_switch: prev_comm=id.nn.benchmark prev_pid=27708 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78477<...>-5340 ( 788) [005] .... 82316.539866: binder_transaction_received: transaction=1570710
78478<...>-5340 ( 788) [005] ...1 82316.539910: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
78479<...>-5340 ( 788) [005] d..2 82316.539952: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78480<...>-5340 ( 788) [005] d..2 82316.539977: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27708 next_prio=110
78481<...>-9105 ( 9105) [000] d.h1 82316.539983: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78482           <...>-27708 (-----) [005] d..2 82316.540000: sched_switch: prev_comm=id.nn.benchmark prev_pid=27708 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78483          <idle>-0     (-----) [005] d..1 82316.540018: cpu_idle: state=0 cpu_id=5
78484<...>-9105 ( 9105) [000] .... 82316.540136: binder_transaction: transaction=1570713 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
78485<...>-9105 ( 9105) [000] .... 82316.540142: binder_transaction_alloc_buf: transaction=1570713 data_size=80 offsets_size=0
78486<...>-9105 ( 9105) [000] d..4 82316.540149: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
78487<...>-9105 ( 9105) [000] d..5 82316.540180: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
78488          <idle>-0     (-----) [001] .n.1 82316.540186: cpu_idle: state=4294967295 cpu_id=1
78489          <idle>-0     (-----) [001] d..2 82316.540199: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
78490<...>-13083 ( 8858) [001] .... 82316.540207: binder_transaction_received: transaction=1570713
78491<...>-9105 ( 9105) [000] d..3 82316.540221: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
78492<...>-9105 ( 9105) [000] d..4 82316.540242: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
78493<...>-13083 ( 8858) [001] d..1 82316.540243: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
78494          <idle>-0     (-----) [002] .n.1 82316.540246: cpu_idle: state=4294967295 cpu_id=2
78495          <idle>-0     (-----) [002] d..2 82316.540258: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
78496<...>-13083 ( 8858) [001] d..2 82316.540268: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
78497          <idle>-0     (-----) [003] .n.1 82316.540275: cpu_idle: state=4294967295 cpu_id=3
78498          <idle>-0     (-----) [003] d..2 82316.540285: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
78499    RenderThread-9436  ( 9105) [002] d..2 82316.540308: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78500          <idle>-0     (-----) [002] d..1 82316.540319: cpu_idle: state=0 cpu_id=2
78501<...>-13083 ( 8858) [001] d..2 82316.540328: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
78502  appEventThread-8881  ( 8858) [003] d..2 82316.540342: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78503          <idle>-0     (-----) [003] d..1 82316.540353: cpu_idle: state=0 cpu_id=3
78504<...>-9105 ( 9105) [000] d..3 82316.540368: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
78505<...>-87 ( 87) [001] d..2 82316.540373: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78506          <idle>-0     (-----) [002] dnh4 82316.540383: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78507<...>-9105 ( 9105) [000] d..4 82316.540385: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
78508          <idle>-0     (-----) [001] d..1 82316.540390: cpu_idle: state=0 cpu_id=1
78509<...>-9105 ( 9105) [000] d..2 82316.540426: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78510          <idle>-0     (-----) [002] dnh5 82316.540438: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
78511          <idle>-0     (-----) [000] d..2 82316.540453: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
78512          <idle>-0     (-----) [002] dnh4 82316.540484: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78513          <idle>-0     (-----) [005] dnh2 82316.540506: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78514          <idle>-0     (-----) [005] .n.1 82316.540510: cpu_idle: state=4294967295 cpu_id=5
78515          <idle>-0     (-----) [005] d..2 82316.540518: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78516          <idle>-0     (-----) [002] .n.1 82316.540521: cpu_idle: state=4294967295 cpu_id=2
78517<...>-86 ( 86) [000] d..2 82316.540533: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78518          <idle>-0     (-----) [002] d..2 82316.540535: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
78519          <idle>-0     (-----) [000] d..1 82316.540547: cpu_idle: state=0 cpu_id=0
78520<...>-5340 ( 788) [005] d..1 82316.540571: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
78521    RenderThread-9436  ( 9105) [002] dnh1 82316.540610: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
78522    RenderThread-9436  ( 9105) [002] d..2 82316.540622: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
78523 neuralnetworks@-13088 (  788) [002] d..2 82316.540668: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
78524<...>-5340 ( 788) [005] d..2 82316.540731: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
78525    RenderThread-9436  ( 9105) [002] d..1 82316.540736: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
78526    RenderThread-9436  ( 9105) [002] d..2 82316.540753: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
78527          <idle>-0     (-----) [001] dnh2 82316.540754: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
78528<...>-5340 ( 788) [005] d..2 82316.540756: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78529          <idle>-0     (-----) [000] .n.1 82316.540759: cpu_idle: state=4294967295 cpu_id=0
78530          <idle>-0     (-----) [001] .n.1 82316.540761: cpu_idle: state=4294967295 cpu_id=1
78531          <idle>-0     (-----) [005] d..1 82316.540770: cpu_idle: state=0 cpu_id=5
78532          <idle>-0     (-----) [000] d..2 82316.540771: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
78533          <idle>-0     (-----) [001] d..2 82316.540773: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
78534<...>-87 ( 87) [001] d..2 82316.540809: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78535    RenderThread-9436  ( 9105) [002] d.h3 82316.540812: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
78536          <idle>-0     (-----) [001] d..1 82316.540822: cpu_idle: state=0 cpu_id=1
78537    RenderThread-9436  ( 9105) [002] d.h4 82316.540831: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
78538<...>-9105 ( 9105) [000] d..2 82316.540849: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
78539    RenderThread-9436  ( 9105) [002] .... 82316.540868: binder_transaction: transaction=1570714 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
78540    RenderThread-9436  ( 9105) [002] .... 82316.540872: binder_transaction_alloc_buf: transaction=1570714 data_size=104 offsets_size=0
78541    RenderThread-9436  ( 9105) [002] d..4 82316.540877: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
78542<...>-86 ( 86) [000] d..2 82316.540887: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78543    RenderThread-9436  ( 9105) [002] dn.5 82316.540896: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
78544          <idle>-0     (-----) [000] d..1 82316.540902: cpu_idle: state=0 cpu_id=0
78545    RenderThread-9436  ( 9105) [002] d..2 82316.540907: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
78546<...>-13083 ( 8858) [002] .... 82316.540916: binder_transaction_received: transaction=1570714
78547<...>-13083 ( 8858) [002] .... 82316.540993: binder_transaction: transaction=1570715 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
78548<...>-13083 ( 8858) [002] .... 82316.540998: binder_transaction_alloc_buf: transaction=1570715 data_size=52 offsets_size=8
78549<...>-13083 ( 8858) [002] d..2 82316.541048: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
78550    RenderThread-9436  ( 9105) [002] .... 82316.541057: binder_transaction_received: transaction=1570715
78551    RenderThread-9436  ( 9105) [002] d..2 82316.542107: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
78552          <idle>-0     (-----) [002] d..1 82316.542121: cpu_idle: state=0 cpu_id=2
78553          <idle>-0     (-----) [002] d.h2 82316.542183: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
78554          <idle>-0     (-----) [002] d.h3 82316.542194: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
78555          <idle>-0     (-----) [002] dnh3 82316.542199: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
78556          <idle>-0     (-----) [002] .n.1 82316.542208: cpu_idle: state=4294967295 cpu_id=2
78557          <idle>-0     (-----) [002] d..2 82316.542217: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
78558          <idle>-0     (-----) [000] d.h3 82316.542226: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
78559          <idle>-0     (-----) [001] ...1 82316.542236: cpu_idle: state=4294967295 cpu_id=1
78560          <idle>-0     (-----) [001] d..1 82316.542240: cpu_idle: state=0 cpu_id=1
78561          <idle>-0     (-----) [000] dnh4 82316.542244: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
78562          <idle>-0     (-----) [000] .n.1 82316.542257: cpu_idle: state=4294967295 cpu_id=0
78563          <idle>-0     (-----) [000] d..2 82316.542269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
78564 kgsl_worker_thr-258   (  258) [000] d..2 82316.542320: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
78565 kgsl_worker_thr-258   (  258) [000] d..3 82316.542360: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
78566 kgsl_worker_thr-258   (  258) [000] d..2 82316.542378: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
78567    RenderThread-9436  ( 9105) [002] .... 82316.542408: binder_transaction: transaction=1570716 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
78568    RenderThread-9436  ( 9105) [002] .... 82316.542413: binder_transaction_alloc_buf: transaction=1570716 data_size=192 offsets_size=8
78569    RenderThread-9436  ( 9105) [002] d..4 82316.542423: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
78570  kworker/u16:13-1147  ( 1147) [000] d..2 82316.542425: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78571          <idle>-0     (-----) [000] d..1 82316.542435: cpu_idle: state=0 cpu_id=0
78572    RenderThread-9436  ( 9105) [002] dn.5 82316.542439: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
78573    RenderThread-9436  ( 9105) [002] dnh6 82316.542465: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78574          <idle>-0     (-----) [005] dnh2 82316.542488: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78575          <idle>-0     (-----) [005] .n.1 82316.542492: cpu_idle: state=4294967295 cpu_id=5
78576          <idle>-0     (-----) [005] d..2 82316.542501: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78577    RenderThread-9436  ( 9105) [002] d..2 82316.542511: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
78578<...>-13083 ( 8858) [002] .... 82316.542520: binder_transaction_received: transaction=1570716
78579<...>-5340 ( 788) [005] d..1 82316.542554: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
78580<...>-13083 ( 8858) [002] d.h1 82316.542580: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
78581<...>-5340 ( 788) [005] ...1 82316.542651: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
78582<...>-5340 ( 788) [005] ...1 82316.542655: tracing_mark_write: E|788
78583<...>-5340 ( 788) [005] .... 82316.542672: binder_transaction: transaction=1570717 dest_node=1570711 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
78584<...>-5340 ( 788) [005] .... 82316.542675: binder_transaction_alloc_buf: transaction=1570717 data_size=60 offsets_size=0
78585<...>-5340 ( 788) [005] d..4 82316.542678: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
78586<...>-5340 ( 788) [005] d..5 82316.542691: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
78587          <idle>-0     (-----) [004] .n.1 82316.542696: cpu_idle: state=4294967295 cpu_id=4
78588          <idle>-0     (-----) [004] d..2 82316.542705: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
78589           <...>-27571 (-----) [004] .... 82316.542710: binder_transaction_received: transaction=1570717
78590<...>-5340 ( 788) [005] ...1 82316.542715: tracing_mark_write: E|788
78591<...>-5340 ( 788) [005] .... 82316.542722: binder_transaction: transaction=1570718 dest_node=0 dest_proc=27550 dest_thread=27708 reply=1 flags=0x0 code=0x0
78592<...>-5340 ( 788) [005] .... 82316.542724: binder_transaction_alloc_buf: transaction=1570718 data_size=8 offsets_size=0
78593<...>-5340 ( 788) [005] d..2 82316.542726: sched_waking: comm=id.nn.benchmark pid=27708 prio=110 target_cpu=005
78594<...>-13083 ( 8858) [002] .... 82316.542727: binder_transaction: transaction=1570719 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
78595           <...>-27571 (-----) [004] ...1 82316.542730: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
78596<...>-5340 ( 788) [005] d..3 82316.542732: sched_wakeup: comm=id.nn.benchmark pid=27708 prio=110 target_cpu=005
78597<...>-13083 ( 8858) [002] .... 82316.542733: binder_transaction_alloc_buf: transaction=1570719 data_size=68 offsets_size=0
78598<...>-5340 ( 788) [005] .... 82316.542734: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
78599           <...>-27571 (-----) [004] ...1 82316.542737: tracing_mark_write: E|27550
78600           <...>-27571 (-----) [004] d..2 82316.542765: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78601          <idle>-0     (-----) [004] d..1 82316.542773: cpu_idle: state=0 cpu_id=4
78602<...>-5340 ( 788) [005] d..2 82316.542776: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27708 next_prio=110
78603<...>-13083 ( 8858) [002] d..2 82316.542778: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
78604           <...>-27708 (-----) [005] .... 82316.542786: binder_transaction_received: transaction=1570718
78605 neuralnetworks@-13088 (  788) [002] d..2 82316.542814: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
78606    RenderThread-9436  ( 9105) [002] .... 82316.542824: binder_transaction_received: transaction=1570719
78607           <...>-27708 (-----) [005] ...1 82316.542825: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
78608           <...>-27708 (-----) [005] ...1 82316.542831: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
78609           <...>-27708 (-----) [005] ...1 82316.542858: tracing_mark_write: E|27550
78610           <...>-27708 (-----) [005] ...1 82316.542862: tracing_mark_write: E|27550
78611           <...>-27708 (-----) [005] ...1 82316.542865: tracing_mark_write: E|27550
78612    RenderThread-9436  ( 9105) [002] d..2 82316.542925: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78613          <idle>-0     (-----) [002] d..1 82316.542938: cpu_idle: state=0 cpu_id=2
78614           <...>-27708 (-----) [005] ...1 82316.543058: tracing_mark_write: E|27550
78615           <...>-27708 (-----) [005] d..1 82316.543071: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78616           <...>-27708 (-----) [005] d..2 82316.543087: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78617          <idle>-0     (-----) [004] .n.1 82316.543092: cpu_idle: state=4294967295 cpu_id=4
78618          <idle>-0     (-----) [004] d..2 82316.543099: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
78619           <...>-27550 (-----) [004] d..2 82316.543119: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78620          <idle>-0     (-----) [004] d..1 82316.543128: cpu_idle: state=0 cpu_id=4
78621           <...>-27708 (-----) [005] d..1 82316.543182: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78622           <...>-27708 (-----) [005] d..2 82316.543192: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78623          <idle>-0     (-----) [004] .n.1 82316.543197: cpu_idle: state=4294967295 cpu_id=4
78624          <idle>-0     (-----) [004] d..2 82316.543205: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
78625           <...>-27708 (-----) [005] d..2 82316.543233: sched_switch: prev_comm=id.nn.benchmark prev_pid=27708 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
78626           <...>-27550 (-----) [004] ...1 82316.543238: tracing_mark_write: E|27550
78627           <...>-27550 (-----) [004] ...1 82316.543242: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
78628           <...>-27550 (-----) [004] ...1 82316.543248: tracing_mark_write: E|27550
78629           <...>-27550 (-----) [004] ...1 82316.543251: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
78630          <idle>-0     (-----) [005] d..1 82316.543253: cpu_idle: state=0 cpu_id=5
78631           <...>-27550 (-----) [004] ...1 82316.543256: tracing_mark_write: E|27550
78632           <...>-27550 (-----) [004] ...1 82316.543261: tracing_mark_write: E|27550
78633           <...>-27550 (-----) [004] ...1 82316.543374: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
78634           <...>-27550 (-----) [004] ...1 82316.543431: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
78635           <...>-27550 (-----) [004] ...1 82316.543436: tracing_mark_write: E|27550
78636           <...>-27550 (-----) [004] ...1 82316.543440: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
78637           <...>-27550 (-----) [004] ...1 82316.543445: tracing_mark_write: E|27550
78638           <...>-27550 (-----) [004] ...1 82316.543449: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
78639           <...>-27550 (-----) [004] ...1 82316.543454: tracing_mark_write: E|27550
78640           <...>-27550 (-----) [004] ...1 82316.543459: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
78641          <idle>-0     (-----) [005] .n.1 82316.543558: cpu_idle: state=4294967295 cpu_id=5
78642           <...>-27550 (-----) [004] ...1 82316.543559: tracing_mark_write: E|27550
78643           <...>-27550 (-----) [004] ...1 82316.543563: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
78644          <idle>-0     (-----) [005] d..2 82316.543567: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27709 next_prio=110
78645          <idle>-0     (-----) [003] d.h2 82316.543574: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
78646           <...>-27550 (-----) [004] d..2 82316.543579: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78647          <idle>-0     (-----) [003] dnh3 82316.543587: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
78648          <idle>-0     (-----) [004] d..1 82316.543594: cpu_idle: state=0 cpu_id=4
78649          <idle>-0     (-----) [003] .n.1 82316.543595: cpu_idle: state=4294967295 cpu_id=3
78650          <idle>-0     (-----) [003] d..2 82316.543605: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
78651        DispSync-8879  ( 8858) [003] d..1 82316.543620: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
78652           <...>-27709 (-----) [005] ...1 82316.543628: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
78653        DispSync-8879  ( 8858) [003] d..2 82316.543636: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
78654          <idle>-0     (-----) [001] .n.1 82316.543640: cpu_idle: state=4294967295 cpu_id=1
78655           <...>-27709 (-----) [005] ...1 82316.543643: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
78656           <...>-27709 (-----) [005] ...1 82316.543646: tracing_mark_write: E|27550
78657          <idle>-0     (-----) [001] d..2 82316.543651: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
78658        DispSync-8879  ( 8858) [003] d..2 82316.543665: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78659           <...>-27709 (-----) [005] .... 82316.543668: binder_transaction: transaction=1570720 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
78660           <...>-27709 (-----) [005] .... 82316.543671: binder_transaction_alloc_buf: transaction=1570720 data_size=48 offsets_size=0
78661           <...>-27709 (-----) [005] ...2 82316.543674: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
78662           <...>-27709 (-----) [005] d..4 82316.543677: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
78663          <idle>-0     (-----) [003] d..1 82316.543679: cpu_idle: state=0 cpu_id=3
78664           <...>-27709 (-----) [005] dn.5 82316.543687: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
78665   sfEventThread-8882  ( 8858) [001] d..3 82316.543693: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
78666           <...>-27709 (-----) [005] d..2 82316.543694: sched_switch: prev_comm=id.nn.benchmark prev_pid=27709 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
78667<...>-770 ( 770) [005] .... 82316.543704: binder_transaction_received: transaction=1570720
78668   sfEventThread-8882  ( 8858) [001] d..4 82316.543714: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
78669          <idle>-0     (-----) [003] .n.1 82316.543720: cpu_idle: state=4294967295 cpu_id=3
78670<...>-770 ( 770) [005] ...1 82316.543729: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
78671          <idle>-0     (-----) [003] d..2 82316.543730: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
78672   sfEventThread-8882  ( 8858) [001] d..2 82316.543747: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78673          <idle>-0     (-----) [001] d..1 82316.543761: cpu_idle: state=0 cpu_id=1
78674<...>-770 ( 770) [005] d..2 82316.543811: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
78675  surfaceflinger-8858  ( 8858) [003] d.h1 82316.543839: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
78676<...>-770 ( 770) [005] ...1 82316.543853: tracing_mark_write: E|770
78677<...>-770 ( 770) [005] .... 82316.543862: binder_transaction: transaction=1570721 dest_node=0 dest_proc=27550 dest_thread=27709 reply=1 flags=0x0 code=0x0
78678<...>-770 ( 770) [005] .... 82316.543865: binder_transaction_alloc_buf: transaction=1570721 data_size=168 offsets_size=32
78679<...>-770 ( 770) [005] .... 82316.543872: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
78680<...>-770 ( 770) [005] d..2 82316.543908: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27709 next_prio=110
78681           <...>-27709 (-----) [005] .... 82316.543919: binder_transaction_received: transaction=1570721
78682           <...>-27709 (-----) [005] ...1 82316.543994: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
78683           <...>-27709 (-----) [005] ...1 82316.543999: tracing_mark_write: E|27550
78684           <...>-27709 (-----) [005] .... 82316.544013: binder_transaction: transaction=1570722 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
78685           <...>-27709 (-----) [005] .... 82316.544016: binder_transaction_alloc_buf: transaction=1570722 data_size=48 offsets_size=0
78686           <...>-27709 (-----) [005] ...2 82316.544018: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
78687           <...>-27709 (-----) [005] d..4 82316.544021: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
78688           <...>-27709 (-----) [005] dn.5 82316.544031: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
78689           <...>-27709 (-----) [005] d..2 82316.544037: sched_switch: prev_comm=id.nn.benchmark prev_pid=27709 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
78690<...>-770 ( 770) [005] .... 82316.544045: binder_transaction_received: transaction=1570722
78691<...>-770 ( 770) [005] ...1 82316.544062: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
78692  surfaceflinger-8858  ( 8858) [003] d..1 82316.544088: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
78693  surfaceflinger-8858  ( 8858) [003] d..2 82316.544109: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
78694          <idle>-0     (-----) [001] .n.1 82316.544115: cpu_idle: state=4294967295 cpu_id=1
78695          <idle>-0     (-----) [001] d..2 82316.544126: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
78696<...>-770 ( 770) [005] ...1 82316.544142: tracing_mark_write: E|770
78697<...>-770 ( 770) [005] .... 82316.544149: binder_transaction: transaction=1570723 dest_node=0 dest_proc=27550 dest_thread=27709 reply=1 flags=0x0 code=0x0
78698<...>-770 ( 770) [005] .... 82316.544152: binder_transaction_alloc_buf: transaction=1570723 data_size=168 offsets_size=32
78699<...>-770 ( 770) [005] .... 82316.544158: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
78700   sfEventThread-8882  ( 8858) [001] d..2 82316.544160: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78701          <idle>-0     (-----) [001] d..1 82316.544172: cpu_idle: state=0 cpu_id=1
78702<...>-770 ( 770) [005] d..2 82316.544191: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27709 next_prio=110
78703           <...>-27709 (-----) [005] .... 82316.544202: binder_transaction_received: transaction=1570723
78704  surfaceflinger-8858  ( 8858) [003] ...1 82316.544302: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
78705  surfaceflinger-8858  ( 8858) [003] ...1 82316.544309: tracing_mark_write: E|8858
78706  surfaceflinger-8858  ( 8858) [003] .... 82316.544360: binder_transaction: transaction=1570724 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
78707  surfaceflinger-8858  ( 8858) [003] .... 82316.544366: binder_transaction_alloc_buf: transaction=1570724 data_size=540 offsets_size=96
78708  surfaceflinger-8858  ( 8858) [003] ...2 82316.544393: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
78709  surfaceflinger-8858  ( 8858) [003] d..4 82316.544402: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
78710  surfaceflinger-8858  ( 8858) [003] d..5 82316.544423: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
78711          <idle>-0     (-----) [001] .n.1 82316.544428: cpu_idle: state=4294967295 cpu_id=1
78712          <idle>-0     (-----) [001] d..2 82316.544438: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
78713  surfaceflinger-8858  ( 8858) [003] d..2 82316.544444: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
78714 [email protected]   (  619) [001] .... 82316.544448: binder_transaction_received: transaction=1570724
78715           <...>-27709 (-----) [005] ...1 82316.544477: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
78716           <...>-27709 (-----) [005] ...1 82316.544487: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
78717           <...>-27709 (-----) [005] ...1 82316.544490: tracing_mark_write: E|27550
78718 [email protected]   (  619) [001] ...1 82316.544491: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
78719           <...>-27709 (-----) [005] .... 82316.544551: binder_transaction: transaction=1570725 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
78720           <...>-27709 (-----) [005] .... 82316.544555: binder_transaction_alloc_buf: transaction=1570725 data_size=556 offsets_size=104
78721<...>-581 ( 571) [003] d..2 82316.544561: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78722           <...>-27709 (-----) [005] ...2 82316.544570: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
78723           <...>-27709 (-----) [005] d..4 82316.544572: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78724          <idle>-0     (-----) [003] d..1 82316.544581: cpu_idle: state=0 cpu_id=3
78725           <...>-27709 (-----) [005] dn.5 82316.544583: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78726           <...>-27709 (-----) [005] d..2 82316.544591: sched_switch: prev_comm=id.nn.benchmark prev_pid=27709 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78727 [email protected]   (  619) [001] ...1 82316.544596: tracing_mark_write: B|619|HWCSession::PresentDisplay::
78728<...>-5340 ( 788) [005] .... 82316.544601: binder_transaction_received: transaction=1570725
78729<...>-5340 ( 788) [005] ...1 82316.544647: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
78730<...>-5340 ( 788) [005] d..2 82316.544693: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
78731<...>-5340 ( 788) [005] d..2 82316.544717: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27709 next_prio=110
78732 [email protected]   (  619) [001] d.h1 82316.544722: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
78733           <...>-27709 (-----) [005] d..2 82316.544740: sched_switch: prev_comm=id.nn.benchmark prev_pid=27709 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78734          <idle>-0     (-----) [005] d..1 82316.544758: cpu_idle: state=0 cpu_id=5
78735 [email protected]   (  619) [001] ...1 82316.544792: tracing_mark_write: B|619|HWDeviceDRM::Commit::
78736 [email protected]   (  619) [001] ...1 82316.544806: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
78737          <idle>-0     (-----) [000] d.s2 82316.545139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
78738          <idle>-0     (-----) [002] d.s2 82316.545143: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
78739          <idle>-0     (-----) [000] dns3 82316.545156: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
78740          <idle>-0     (-----) [002] dns3 82316.545162: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
78741          <idle>-0     (-----) [002] dns3 82316.545169: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
78742          <idle>-0     (-----) [000] .n.1 82316.545169: cpu_idle: state=4294967295 cpu_id=0
78743          <idle>-0     (-----) [000] d..2 82316.545179: 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
78744          <idle>-0     (-----) [002] dns4 82316.545187: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
78745          <idle>-0     (-----) [002] .n.1 82316.545198: cpu_idle: state=4294967295 cpu_id=2
78746     rcu_preempt-7     (    7) [000] d..2 82316.545202: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
78747          <idle>-0     (-----) [002] d..2 82316.545207: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
78748<...>-8 ( 8) [002] d..2 82316.545243: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78749          <idle>-0     (-----) [002] d..1 82316.545257: cpu_idle: state=0 cpu_id=2
78750  kworker/u16:13-1147  ( 1147) [000] d..2 82316.545401: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
78751 [email protected]   (  619) [001] d.s1 82316.545412: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
78752          <idle>-0     (-----) [000] d..1 82316.545418: cpu_idle: state=0 cpu_id=0
78753 [email protected]   (  619) [001] d.s2 82316.545431: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
78754 [email protected]   (  619) [001] d..2 82316.545546: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
78755 [email protected]   (  619) [001] d..3 82316.545566: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
78756          <idle>-0     (-----) [002] .n.1 82316.545571: cpu_idle: state=4294967295 cpu_id=2
78757          <idle>-0     (-----) [002] d..2 82316.545583: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
78758 [email protected]   (  619) [001] ...1 82316.545675: tracing_mark_write: E|619
78759 [email protected]   (  619) [001] ...1 82316.545682: tracing_mark_write: E|619
78760 [email protected]   (  619) [001] ...1 82316.545747: tracing_mark_write: E|619
78761 [email protected]   (  619) [001] ...1 82316.545793: tracing_mark_write: E|619
78762          <idle>-0     (-----) [003] ...1 82316.545803: cpu_idle: state=4294967295 cpu_id=3
78763 [email protected]   (  619) [001] .... 82316.545808: binder_transaction: transaction=1570728 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
78764          <idle>-0     (-----) [003] d..1 82316.545808: cpu_idle: state=0 cpu_id=3
78765 [email protected]   (  619) [001] .... 82316.545813: binder_transaction_alloc_buf: transaction=1570728 data_size=576 offsets_size=112
78766 [email protected]   (  619) [001] d..2 82316.545834: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
78767 [email protected]   (  619) [001] d..3 82316.545852: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
78768          <idle>-0     (-----) [003] .n.1 82316.545856: cpu_idle: state=4294967295 cpu_id=3
78769 [email protected]   (  619) [001] .... 82316.545857: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
78770          <idle>-0     (-----) [003] d..2 82316.545867: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
78771  surfaceflinger-8858  ( 8858) [003] .... 82316.545877: binder_transaction_received: transaction=1570728
78772 [email protected]   (  619) [001] d..2 82316.545932: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
78773     ksoftirqd/1-18    (   18) [001] d.s2 82316.545950: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
78774     ksoftirqd/1-18    (   18) [001] d.s3 82316.545962: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
78775     ksoftirqd/1-18    (   18) [001] d.s3 82316.545972: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
78776          <idle>-0     (-----) [000] .n.1 82316.545978: cpu_idle: state=4294967295 cpu_id=0
78777     ksoftirqd/1-18    (   18) [001] d..2 82316.545986: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
78778          <idle>-0     (-----) [000] d..2 82316.545990: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
78779  kworker/u16:13-1147  ( 1147) [000] d..2 82316.546021: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78780          <idle>-0     (-----) [000] d..1 82316.546031: cpu_idle: state=0 cpu_id=0
78781<...>-87 ( 87) [001] d..2 82316.546032: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78782 crtc_commit:111-321   (  321) [002] d.h3 82316.546039: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
78783          <idle>-0     (-----) [001] d..1 82316.546051: cpu_idle: state=0 cpu_id=1
78784 crtc_commit:111-321   (  321) [002] d.h4 82316.546080: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
78785          <idle>-0     (-----) [001] .n.1 82316.546087: cpu_idle: state=4294967295 cpu_id=1
78786          <idle>-0     (-----) [001] d..2 82316.546100: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
78787 crtc_commit:111-321   (  321) [002] d.h3 82316.546129: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78788          <idle>-0     (-----) [005] dnh2 82316.546151: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78789          <idle>-0     (-----) [005] .n.1 82316.546155: cpu_idle: state=4294967295 cpu_id=5
78790          <idle>-0     (-----) [005] d..2 82316.546164: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78791<...>-86 ( 86) [001] d..2 82316.546180: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78792          <idle>-0     (-----) [001] d..1 82316.546193: cpu_idle: state=0 cpu_id=1
78793<...>-5340 ( 788) [005] d..1 82316.546220: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
78794  surfaceflinger-8858  ( 8858) [003] d.h1 82316.546262: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
78795  surfaceflinger-8858  ( 8858) [003] d..2 82316.546311: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
78796 neuralnetworks@-13088 (  788) [003] d..2 82316.546371: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78797<...>-5340 ( 788) [005] d..2 82316.546382: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
78798          <idle>-0     (-----) [003] d..1 82316.546390: cpu_idle: state=0 cpu_id=3
78799          <idle>-0     (-----) [001] dnh2 82316.546405: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
78800<...>-5340 ( 788) [005] d..2 82316.546409: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78801          <idle>-0     (-----) [001] .n.1 82316.546412: cpu_idle: state=4294967295 cpu_id=1
78802          <idle>-0     (-----) [001] d..2 82316.546422: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
78803          <idle>-0     (-----) [005] d..1 82316.546423: cpu_idle: state=0 cpu_id=5
78804 crtc_commit:111-321   (  321) [002] d..2 82316.546435: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
78805<...>-87 ( 87) [001] d..2 82316.546460: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78806          <idle>-0     (-----) [002] d.h4 82316.546464: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
78807          <idle>-0     (-----) [001] d..1 82316.546472: cpu_idle: state=0 cpu_id=1
78808          <idle>-0     (-----) [002] d.h5 82316.546480: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
78809          <idle>-0     (-----) [001] .n.1 82316.546487: cpu_idle: state=4294967295 cpu_id=1
78810          <idle>-0     (-----) [002] d..1 82316.546495: cpu_idle: state=0 cpu_id=2
78811          <idle>-0     (-----) [001] d..2 82316.546498: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
78812<...>-86 ( 86) [001] d..2 82316.546531: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
78813          <idle>-0     (-----) [001] d..1 82316.546542: cpu_idle: state=0 cpu_id=1
78814          <idle>-0     (-----) [001] ...1 82316.547724: cpu_idle: state=4294967295 cpu_id=1
78815          <idle>-0     (-----) [001] d..1 82316.547728: cpu_idle: state=0 cpu_id=1
78816          <idle>-0     (-----) [003] ...1 82316.547887: cpu_idle: state=4294967295 cpu_id=3
78817          <idle>-0     (-----) [003] d..1 82316.547892: cpu_idle: state=0 cpu_id=3
78818          <idle>-0     (-----) [002] d.h4 82316.548156: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78819          <idle>-0     (-----) [005] dnh2 82316.548178: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78820          <idle>-0     (-----) [005] .n.1 82316.548182: cpu_idle: state=4294967295 cpu_id=5
78821          <idle>-0     (-----) [005] d..2 82316.548190: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78822          <idle>-0     (-----) [002] ...1 82316.548193: cpu_idle: state=4294967295 cpu_id=2
78823          <idle>-0     (-----) [002] d..1 82316.548198: cpu_idle: state=0 cpu_id=2
78824<...>-5340 ( 788) [005] d..1 82316.548243: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
78825          <idle>-0     (-----) [003] dnh2 82316.548269: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
78826          <idle>-0     (-----) [003] .n.1 82316.548275: cpu_idle: state=4294967295 cpu_id=3
78827          <idle>-0     (-----) [003] d..2 82316.548286: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
78828<...>-5340 ( 788) [005] ...1 82316.548334: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
78829<...>-5340 ( 788) [005] ...1 82316.548338: tracing_mark_write: E|788
78830 neuralnetworks@-13088 (  788) [003] d..2 82316.548350: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
78831<...>-5340 ( 788) [005] .... 82316.548355: binder_transaction: transaction=1570729 dest_node=1570726 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
78832<...>-5340 ( 788) [005] .... 82316.548358: binder_transaction_alloc_buf: transaction=1570729 data_size=60 offsets_size=0
78833<...>-5340 ( 788) [005] d..4 82316.548361: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
78834          <idle>-0     (-----) [003] d..1 82316.548362: cpu_idle: state=0 cpu_id=3
78835<...>-5340 ( 788) [005] d..5 82316.548373: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
78836          <idle>-0     (-----) [004] .n.1 82316.548379: cpu_idle: state=4294967295 cpu_id=4
78837          <idle>-0     (-----) [004] d..2 82316.548387: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
78838           <...>-27571 (-----) [004] .... 82316.548392: binder_transaction_received: transaction=1570729
78839<...>-5340 ( 788) [005] ...1 82316.548396: tracing_mark_write: E|788
78840<...>-5340 ( 788) [005] .... 82316.548402: binder_transaction: transaction=1570730 dest_node=0 dest_proc=27550 dest_thread=27709 reply=1 flags=0x0 code=0x0
78841<...>-5340 ( 788) [005] .... 82316.548404: binder_transaction_alloc_buf: transaction=1570730 data_size=8 offsets_size=0
78842<...>-5340 ( 788) [005] d..2 82316.548406: sched_waking: comm=id.nn.benchmark pid=27709 prio=110 target_cpu=005
78843           <...>-27571 (-----) [004] ...1 82316.548412: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
78844<...>-5340 ( 788) [005] d..3 82316.548414: sched_wakeup: comm=id.nn.benchmark pid=27709 prio=110 target_cpu=005
78845<...>-5340 ( 788) [005] .... 82316.548416: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
78846           <...>-27571 (-----) [004] ...1 82316.548418: tracing_mark_write: E|27550
78847           <...>-27571 (-----) [004] d..2 82316.548451: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78848<...>-5340 ( 788) [005] d.s2 82316.548468: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
78849          <idle>-0     (-----) [004] d..1 82316.548490: cpu_idle: state=0 cpu_id=4
78850          <idle>-0     (-----) [000] dnh2 82316.548492: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
78851          <idle>-0     (-----) [000] .n.1 82316.548498: cpu_idle: state=4294967295 cpu_id=0
78852          <idle>-0     (-----) [000] d..2 82316.548509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
78853<...>-5340 ( 788) [005] d..2 82316.548510: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27709 next_prio=110
78854           <...>-27709 (-----) [005] .... 82316.548520: binder_transaction_received: transaction=1570730
78855           <...>-27709 (-----) [005] ...1 82316.548573: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
78856           <...>-27709 (-----) [005] ...1 82316.548579: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
78857           <...>-27709 (-----) [005] ...1 82316.548606: tracing_mark_write: E|27550
78858           <...>-27709 (-----) [005] ...1 82316.548609: tracing_mark_write: E|27550
78859           <...>-27709 (-----) [005] ...1 82316.548613: tracing_mark_write: E|27550
78860  kworker/u16:13-1147  ( 1147) [000] d..2 82316.548782: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
78861          <idle>-0     (-----) [000] d..1 82316.548793: cpu_idle: state=0 cpu_id=0
78862           <...>-27709 (-----) [005] ...1 82316.548802: tracing_mark_write: E|27550
78863          <idle>-0     (-----) [001] d.s3 82316.548810: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
78864           <...>-27709 (-----) [005] d..1 82316.548815: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78865          <idle>-0     (-----) [001] d.s4 82316.548822: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
78866          <idle>-0     (-----) [001] d.s4 82316.548831: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
78867           <...>-27709 (-----) [005] d..2 82316.548831: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78868          <idle>-0     (-----) [004] .n.1 82316.548837: cpu_idle: state=4294967295 cpu_id=4
78869          <idle>-0     (-----) [000] .n.1 82316.548837: cpu_idle: state=4294967295 cpu_id=0
78870          <idle>-0     (-----) [001] ...1 82316.548840: cpu_idle: state=4294967295 cpu_id=1
78871          <idle>-0     (-----) [004] d..2 82316.548844: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
78872          <idle>-0     (-----) [000] d..2 82316.548847: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
78873          <idle>-0     (-----) [001] d..1 82316.548848: cpu_idle: state=0 cpu_id=1
78874           <...>-27550 (-----) [004] d..2 82316.548866: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78875          <idle>-0     (-----) [004] d..1 82316.548892: cpu_idle: state=0 cpu_id=4
78876          <idle>-0     (-----) [004] ...1 82316.548902: cpu_idle: state=4294967295 cpu_id=4
78877          <idle>-0     (-----) [004] d..1 82316.548906: cpu_idle: state=0 cpu_id=4
78878           <...>-27709 (-----) [005] d..1 82316.548932: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78879           <...>-27709 (-----) [005] d..2 82316.548942: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
78880          <idle>-0     (-----) [004] .n.1 82316.548947: cpu_idle: state=4294967295 cpu_id=4
78881          <idle>-0     (-----) [004] d..2 82316.548954: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
78882  kworker/u16:13-1147  ( 1147) [000] .... 82316.548965: clk_set_rate: l3_cluster0_vote_clk 403200000
78883           <...>-27709 (-----) [005] d..2 82316.548982: sched_switch: prev_comm=id.nn.benchmark prev_pid=27709 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
78884  kworker/u16:13-1147  ( 1147) [000] d..2 82316.548996: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78885           <...>-27550 (-----) [004] ...1 82316.549003: tracing_mark_write: E|27550
78886          <idle>-0     (-----) [000] d..1 82316.549005: cpu_idle: state=0 cpu_id=0
78887           <...>-27550 (-----) [004] ...1 82316.549007: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
78888          <idle>-0     (-----) [005] d..1 82316.549009: cpu_idle: state=0 cpu_id=5
78889           <...>-27550 (-----) [004] ...1 82316.549013: tracing_mark_write: E|27550
78890           <...>-27550 (-----) [004] ...1 82316.549017: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
78891           <...>-27550 (-----) [004] ...1 82316.549021: tracing_mark_write: E|27550
78892           <...>-27550 (-----) [004] ...1 82316.549026: tracing_mark_write: E|27550
78893           <...>-27550 (-----) [004] ...1 82316.549140: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
78894           <...>-27550 (-----) [004] ...1 82316.549198: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
78895           <...>-27550 (-----) [004] ...1 82316.549203: tracing_mark_write: E|27550
78896           <...>-27550 (-----) [004] ...1 82316.549206: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
78897           <...>-27550 (-----) [004] ...1 82316.549212: tracing_mark_write: E|27550
78898           <...>-27550 (-----) [004] ...1 82316.549216: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
78899           <...>-27550 (-----) [004] ...1 82316.549221: tracing_mark_write: E|27550
78900           <...>-27550 (-----) [004] ...1 82316.549225: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
78901          <idle>-0     (-----) [005] .n.1 82316.549318: cpu_idle: state=4294967295 cpu_id=5
78902           <...>-27550 (-----) [004] ...1 82316.549320: tracing_mark_write: E|27550
78903           <...>-27550 (-----) [004] ...1 82316.549325: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
78904          <idle>-0     (-----) [005] d..2 82316.549327: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27710 next_prio=110
78905           <...>-27550 (-----) [004] d..2 82316.549342: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
78906          <idle>-0     (-----) [004] d..1 82316.549356: cpu_idle: state=0 cpu_id=4
78907           <...>-27710 (-----) [005] ...1 82316.549389: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
78908           <...>-27710 (-----) [005] ...1 82316.549404: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
78909           <...>-27710 (-----) [005] ...1 82316.549407: tracing_mark_write: E|27550
78910           <...>-27710 (-----) [005] .... 82316.549429: binder_transaction: transaction=1570731 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
78911           <...>-27710 (-----) [005] .... 82316.549434: binder_transaction_alloc_buf: transaction=1570731 data_size=48 offsets_size=0
78912           <...>-27710 (-----) [005] ...2 82316.549437: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
78913           <...>-27710 (-----) [005] d..4 82316.549439: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
78914           <...>-27710 (-----) [005] dn.5 82316.549450: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
78915           <...>-27710 (-----) [005] d..2 82316.549457: sched_switch: prev_comm=id.nn.benchmark prev_pid=27710 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
78916<...>-770 ( 770) [005] .... 82316.549467: binder_transaction_received: transaction=1570731
78917<...>-770 ( 770) [005] ...1 82316.549491: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
78918<...>-770 ( 770) [005] d..2 82316.549575: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
78919          <idle>-0     (-----) [000] dnh2 82316.549615: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
78920          <idle>-0     (-----) [000] .n.1 82316.549621: cpu_idle: state=4294967295 cpu_id=0
78921<...>-770 ( 770) [005] ...1 82316.549628: tracing_mark_write: E|770
78922          <idle>-0     (-----) [000] d..2 82316.549630: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
78923<...>-770 ( 770) [005] .... 82316.549636: binder_transaction: transaction=1570732 dest_node=0 dest_proc=27550 dest_thread=27710 reply=1 flags=0x0 code=0x0
78924<...>-770 ( 770) [005] .... 82316.549638: binder_transaction_alloc_buf: transaction=1570732 data_size=168 offsets_size=32
78925<...>-770 ( 770) [005] .... 82316.549645: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
78926<...>-770 ( 770) [005] d..2 82316.549681: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27710 next_prio=110
78927           <...>-27710 (-----) [005] .... 82316.549692: binder_transaction_received: transaction=1570732
78928<...>-581 ( 571) [000] d..2 82316.549728: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78929          <idle>-0     (-----) [000] d..1 82316.549739: cpu_idle: state=0 cpu_id=0
78930           <...>-27710 (-----) [005] ...1 82316.549764: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
78931           <...>-27710 (-----) [005] ...1 82316.549769: tracing_mark_write: E|27550
78932           <...>-27710 (-----) [005] .... 82316.549784: binder_transaction: transaction=1570733 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
78933           <...>-27710 (-----) [005] .... 82316.549787: binder_transaction_alloc_buf: transaction=1570733 data_size=48 offsets_size=0
78934           <...>-27710 (-----) [005] ...2 82316.549789: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
78935           <...>-27710 (-----) [005] d..4 82316.549791: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
78936           <...>-27710 (-----) [005] dn.5 82316.549801: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
78937           <...>-27710 (-----) [005] d..2 82316.549807: sched_switch: prev_comm=id.nn.benchmark prev_pid=27710 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
78938<...>-770 ( 770) [005] .... 82316.549815: binder_transaction_received: transaction=1570733
78939<...>-770 ( 770) [005] ...1 82316.549832: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
78940<...>-770 ( 770) [005] d..2 82316.549890: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
78941          <idle>-0     (-----) [000] dnh2 82316.549915: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
78942          <idle>-0     (-----) [000] .n.1 82316.549921: cpu_idle: state=4294967295 cpu_id=0
78943<...>-770 ( 770) [005] ...1 82316.549925: tracing_mark_write: E|770
78944          <idle>-0     (-----) [000] d..2 82316.549930: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
78945<...>-770 ( 770) [005] .... 82316.549932: binder_transaction: transaction=1570734 dest_node=0 dest_proc=27550 dest_thread=27710 reply=1 flags=0x0 code=0x0
78946<...>-770 ( 770) [005] .... 82316.549935: binder_transaction_alloc_buf: transaction=1570734 data_size=168 offsets_size=32
78947<...>-770 ( 770) [005] .... 82316.549940: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
78948<...>-770 ( 770) [005] d..2 82316.549975: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27710 next_prio=110
78949          <idle>-0     (-----) [001] ...1 82316.549982: cpu_idle: state=4294967295 cpu_id=1
78950           <...>-27710 (-----) [005] .... 82316.549986: binder_transaction_received: transaction=1570734
78951          <idle>-0     (-----) [001] d..1 82316.549987: cpu_idle: state=0 cpu_id=1
78952<...>-581 ( 571) [000] d..2 82316.549988: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78953          <idle>-0     (-----) [000] d..1 82316.549997: cpu_idle: state=0 cpu_id=0
78954           <...>-27710 (-----) [005] ...1 82316.550263: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
78955           <...>-27710 (-----) [005] ...1 82316.550273: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
78956           <...>-27710 (-----) [005] ...1 82316.550277: tracing_mark_write: E|27550
78957           <...>-27710 (-----) [005] .... 82316.550339: binder_transaction: transaction=1570735 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
78958           <...>-27710 (-----) [005] .... 82316.550343: binder_transaction_alloc_buf: transaction=1570735 data_size=556 offsets_size=104
78959           <...>-27710 (-----) [005] ...2 82316.550357: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
78960           <...>-27710 (-----) [005] d..4 82316.550360: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78961           <...>-27710 (-----) [005] dn.5 82316.550371: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78962           <...>-27710 (-----) [005] d..2 82316.550378: sched_switch: prev_comm=id.nn.benchmark prev_pid=27710 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78963<...>-5340 ( 788) [005] .... 82316.550388: binder_transaction_received: transaction=1570735
78964<...>-5340 ( 788) [005] ...1 82316.550434: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
78965<...>-5340 ( 788) [005] d..2 82316.550481: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
78966<...>-5340 ( 788) [005] d..2 82316.550517: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27710 next_prio=110
78967          <idle>-0     (-----) [000] dnh2 82316.550520: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78968          <idle>-0     (-----) [000] .n.1 82316.550526: cpu_idle: state=4294967295 cpu_id=0
78969          <idle>-0     (-----) [000] d..2 82316.550535: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
78970           <...>-27710 (-----) [005] d..2 82316.550541: sched_switch: prev_comm=id.nn.benchmark prev_pid=27710 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78971          <idle>-0     (-----) [005] d..1 82316.550558: cpu_idle: state=0 cpu_id=5
78972<...>-87 ( 87) [000] d..2 82316.550579: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78973          <idle>-0     (-----) [002] d.h4 82316.550585: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
78974          <idle>-0     (-----) [000] d..1 82316.550587: cpu_idle: state=0 cpu_id=0
78975          <idle>-0     (-----) [002] dnh5 82316.550620: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78976          <idle>-0     (-----) [002] .n.1 82316.550628: cpu_idle: state=4294967295 cpu_id=2
78977          <idle>-0     (-----) [002] d..2 82316.550643: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
78978<...>-86 ( 86) [002] d.h4 82316.550678: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78979          <idle>-0     (-----) [005] dnh2 82316.550700: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
78980          <idle>-0     (-----) [005] .n.1 82316.550704: cpu_idle: state=4294967295 cpu_id=5
78981          <idle>-0     (-----) [005] d..2 82316.550713: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
78982<...>-86 ( 86) [002] d..2 82316.550734: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
78983          <idle>-0     (-----) [002] d..1 82316.550744: cpu_idle: state=0 cpu_id=2
78984<...>-5340 ( 788) [005] d..1 82316.550766: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
78985          <idle>-0     (-----) [000] dnh2 82316.550802: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
78986          <idle>-0     (-----) [000] .n.1 82316.550808: cpu_idle: state=4294967295 cpu_id=0
78987          <idle>-0     (-----) [000] d..2 82316.550816: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
78988 neuralnetworks@-13088 (  788) [000] d..2 82316.550871: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78989          <idle>-0     (-----) [000] d..1 82316.550881: cpu_idle: state=0 cpu_id=0
78990<...>-5340 ( 788) [005] d..2 82316.550925: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78991          <idle>-0     (-----) [000] dnh2 82316.550947: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
78992<...>-5340 ( 788) [005] d..2 82316.550951: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
78993          <idle>-0     (-----) [000] .n.1 82316.550954: cpu_idle: state=4294967295 cpu_id=0
78994          <idle>-0     (-----) [000] d..2 82316.550962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
78995          <idle>-0     (-----) [005] d..1 82316.550964: cpu_idle: state=0 cpu_id=5
78996<...>-87 ( 87) [000] d..2 82316.551000: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
78997          <idle>-0     (-----) [002] d.h4 82316.551003: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
78998          <idle>-0     (-----) [000] d..1 82316.551008: cpu_idle: state=0 cpu_id=0
78999          <idle>-0     (-----) [002] dnh5 82316.551013: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79000          <idle>-0     (-----) [002] .n.1 82316.551022: cpu_idle: state=4294967295 cpu_id=2
79001          <idle>-0     (-----) [002] d..2 82316.551031: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
79002<...>-86 ( 86) [002] d..2 82316.551063: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79003          <idle>-0     (-----) [002] d..1 82316.551071: cpu_idle: state=0 cpu_id=2
79004          <idle>-0     (-----) [000] d.h5 82316.551538: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79005          <idle>-0     (-----) [000] d.h6 82316.551558: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79006          <idle>-0     (-----) [000] d.h5 82316.551563: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
79007          <idle>-0     (-----) [003] .n.1 82316.551564: cpu_idle: state=4294967295 cpu_id=3
79008          <idle>-0     (-----) [003] d..2 82316.551575: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
79009          <idle>-0     (-----) [000] d.h6 82316.551576: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
79010          <idle>-0     (-----) [002] .n.1 82316.551582: cpu_idle: state=4294967295 cpu_id=2
79011          <idle>-0     (-----) [002] d..2 82316.551590: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
79012          <idle>-0     (-----) [000] ...1 82316.551591: cpu_idle: state=4294967295 cpu_id=0
79013          <idle>-0     (-----) [000] d..1 82316.551597: cpu_idle: state=0 cpu_id=0
79014  crtc_event:111-322   (  322) [003] d..2 82316.551611: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79015          <idle>-0     (-----) [003] d..1 82316.551621: cpu_idle: state=0 cpu_id=3
79016 crtc_commit:111-321   (  321) [002] d..2 82316.551736: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
79017          <idle>-0     (-----) [002] d..1 82316.551745: cpu_idle: state=0 cpu_id=2
79018          <idle>-0     (-----) [000] d.s2 82316.551808: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
79019          <idle>-0     (-----) [000] dns3 82316.551878: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
79020          <idle>-0     (-----) [002] d.H3 82316.551886: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
79021          <idle>-0     (-----) [000] .n.1 82316.551898: cpu_idle: state=4294967295 cpu_id=0
79022          <idle>-0     (-----) [002] d.H4 82316.551906: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
79023          <idle>-0     (-----) [000] d..2 82316.551908: 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
79024          <idle>-0     (-----) [001] .n.1 82316.551911: cpu_idle: state=4294967295 cpu_id=1
79025          <idle>-0     (-----) [002] d.s3 82316.551915: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79026     rcu_preempt-7     (    7) [000] d..2 82316.551918: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
79027          <idle>-0     (-----) [001] d..2 82316.551925: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
79028          <idle>-0     (-----) [002] d.s4 82316.551928: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79029          <idle>-0     (-----) [002] d.s2 82316.551931: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
79030          <idle>-0     (-----) [003] .n.1 82316.551934: cpu_idle: state=4294967295 cpu_id=3
79031          <idle>-0     (-----) [003] d..2 82316.551945: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
79032          <idle>-0     (-----) [002] dns3 82316.551949: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
79033          <idle>-0     (-----) [002] .n.1 82316.551957: cpu_idle: state=4294967295 cpu_id=2
79034     rcu_preempt-7     (    7) [000] d..3 82316.551959: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
79035         sugov:0-576   (  576) [001] .... 82316.551961: clk_set_rate: pwrcl_clk 748800000
79036          <idle>-0     (-----) [002] d..2 82316.551967: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
79037<...>-8 ( 8) [002] d..2 82316.551976: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
79038  crtc_event:111-322   (  322) [003] d..2 82316.551976: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79039         sugov:0-576   (  576) [001] .... 82316.551981: clk_set_rate: cpu3_pwrcl_clk 825600000
79040          <idle>-0     (-----) [003] d..1 82316.551985: cpu_idle: state=0 cpu_id=3
79041     rcu_preempt-7     (    7) [000] d..2 82316.551988: 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
79042         sugov:0-576   (  576) [001] .... 82316.551991: clk_set_rate: cpu2_pwrcl_clk 825600000
79043         sugov:0-576   (  576) [001] .... 82316.551998: clk_set_rate: cpu1_pwrcl_clk 825600000
79044<...>-8 ( 8) [002] d..3 82316.551999: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
79045         sugov:0-576   (  576) [001] .... 82316.552005: clk_set_rate: cpu0_pwrcl_clk 748800000
79046          <idle>-0     (-----) [000] d..2 82316.552012: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
79047<...>-8 ( 8) [002] d..2 82316.552027: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79048<...>-46 ( 46) [000] d..2 82316.552030: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
79049          <idle>-0     (-----) [002] dn.1 82316.552045: cpu_idle: state=0 cpu_id=2
79050<...>-46 ( 46) [000] d..3 82316.552050: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
79051          <idle>-0     (-----) [002] .n.1 82316.552054: cpu_idle: state=4294967295 cpu_id=2
79052          <idle>-0     (-----) [002] d..2 82316.552068: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
79053<...>-46 ( 46) [000] d..2 82316.552073: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79054          <idle>-0     (-----) [000] d..1 82316.552087: cpu_idle: state=0 cpu_id=0
79055<...>-8 ( 8) [002] d..2 82316.552093: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79056          <idle>-0     (-----) [002] d..1 82316.552105: cpu_idle: state=0 cpu_id=2
79057         sugov:0-576   (  576) [001] .... 82316.552119: cpu_frequency: state=748800 cpu_id=0
79058         sugov:0-576   (  576) [001] .... 82316.552144: cpu_frequency: state=748800 cpu_id=1
79059         sugov:0-576   (  576) [001] .... 82316.552150: cpu_frequency: state=748800 cpu_id=2
79060         sugov:0-576   (  576) [001] .... 82316.552154: cpu_frequency: state=748800 cpu_id=3
79061         sugov:0-576   (  576) [001] d..2 82316.552178: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
79062         rcuop/2-29    (   29) [001] d..2 82316.552185: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
79063         rcuop/2-29    (   29) [001] d..3 82316.552230: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
79064         rcuop/2-29    (   29) [001] d..2 82316.552245: 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
79065         rcuop/3-37    (   37) [001] d..2 82316.552280: 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
79066          <idle>-0     (-----) [001] d..1 82316.552295: cpu_idle: state=0 cpu_id=1
79067          <idle>-0     (-----) [002] d.h4 82316.552755: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79068          <idle>-0     (-----) [005] dnh2 82316.552779: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79069          <idle>-0     (-----) [005] .n.1 82316.552784: cpu_idle: state=4294967295 cpu_id=5
79070          <idle>-0     (-----) [005] d..2 82316.552793: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79071          <idle>-0     (-----) [002] ...1 82316.552798: cpu_idle: state=4294967295 cpu_id=2
79072          <idle>-0     (-----) [002] d..1 82316.552804: cpu_idle: state=0 cpu_id=2
79073<...>-5340 ( 788) [005] d..1 82316.552843: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
79074          <idle>-0     (-----) [000] dnh2 82316.552869: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
79075          <idle>-0     (-----) [000] .n.1 82316.552876: cpu_idle: state=4294967295 cpu_id=0
79076          <idle>-0     (-----) [000] d..2 82316.552887: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
79077<...>-5340 ( 788) [005] ...1 82316.552937: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
79078<...>-5340 ( 788) [005] ...1 82316.552941: tracing_mark_write: E|788
79079<...>-5340 ( 788) [005] .... 82316.552957: binder_transaction: transaction=1570738 dest_node=1570736 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
79080 neuralnetworks@-13088 (  788) [000] d..2 82316.552958: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79081<...>-5340 ( 788) [005] .... 82316.552960: binder_transaction_alloc_buf: transaction=1570738 data_size=60 offsets_size=0
79082<...>-5340 ( 788) [005] d..4 82316.552963: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
79083          <idle>-0     (-----) [000] d..1 82316.552972: cpu_idle: state=0 cpu_id=0
79084<...>-5340 ( 788) [005] d..5 82316.552975: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
79085          <idle>-0     (-----) [004] .n.1 82316.552981: cpu_idle: state=4294967295 cpu_id=4
79086          <idle>-0     (-----) [004] d..2 82316.552989: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
79087           <...>-27571 (-----) [004] .... 82316.552995: binder_transaction_received: transaction=1570738
79088<...>-5340 ( 788) [005] ...1 82316.552997: tracing_mark_write: E|788
79089<...>-5340 ( 788) [005] .... 82316.553004: binder_transaction: transaction=1570739 dest_node=0 dest_proc=27550 dest_thread=27710 reply=1 flags=0x0 code=0x0
79090<...>-5340 ( 788) [005] .... 82316.553006: binder_transaction_alloc_buf: transaction=1570739 data_size=8 offsets_size=0
79091<...>-5340 ( 788) [005] d..2 82316.553008: sched_waking: comm=id.nn.benchmark pid=27710 prio=110 target_cpu=005
79092           <...>-27571 (-----) [004] ...1 82316.553013: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
79093<...>-5340 ( 788) [005] d..3 82316.553015: sched_wakeup: comm=id.nn.benchmark pid=27710 prio=110 target_cpu=005
79094<...>-5340 ( 788) [005] .... 82316.553017: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
79095           <...>-27571 (-----) [004] ...1 82316.553019: tracing_mark_write: E|27550
79096           <...>-27571 (-----) [004] d..2 82316.553048: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79097          <idle>-0     (-----) [004] d..1 82316.553056: cpu_idle: state=0 cpu_id=4
79098<...>-5340 ( 788) [005] d..2 82316.553059: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27710 next_prio=110
79099           <...>-27710 (-----) [005] .... 82316.553069: binder_transaction_received: transaction=1570739
79100           <...>-27710 (-----) [005] ...1 82316.553106: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
79101           <...>-27710 (-----) [005] ...1 82316.553112: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
79102           <...>-27710 (-----) [005] ...1 82316.553138: tracing_mark_write: E|27550
79103           <...>-27710 (-----) [005] ...1 82316.553142: tracing_mark_write: E|27550
79104           <...>-27710 (-----) [005] ...1 82316.553146: tracing_mark_write: E|27550
79105           <...>-27710 (-----) [005] ...1 82316.553334: tracing_mark_write: E|27550
79106           <...>-27710 (-----) [005] d..1 82316.553346: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79107           <...>-27710 (-----) [005] d..2 82316.553362: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79108          <idle>-0     (-----) [004] .n.1 82316.553367: cpu_idle: state=4294967295 cpu_id=4
79109          <idle>-0     (-----) [004] d..2 82316.553374: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
79110           <...>-27550 (-----) [004] d..2 82316.553392: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79111          <idle>-0     (-----) [004] d..1 82316.553401: cpu_idle: state=0 cpu_id=4
79112           <...>-27710 (-----) [005] d..1 82316.553453: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79113           <...>-27710 (-----) [005] d..2 82316.553463: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79114          <idle>-0     (-----) [004] .n.1 82316.553469: cpu_idle: state=4294967295 cpu_id=4
79115          <idle>-0     (-----) [004] d..2 82316.553476: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
79116           <...>-27710 (-----) [005] d..2 82316.553502: sched_switch: prev_comm=id.nn.benchmark prev_pid=27710 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
79117           <...>-27550 (-----) [004] ...1 82316.553509: tracing_mark_write: E|27550
79118           <...>-27550 (-----) [004] ...1 82316.553514: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
79119           <...>-27550 (-----) [004] ...1 82316.553520: tracing_mark_write: E|27550
79120          <idle>-0     (-----) [005] d..1 82316.553522: cpu_idle: state=0 cpu_id=5
79121           <...>-27550 (-----) [004] ...1 82316.553523: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
79122           <...>-27550 (-----) [004] ...1 82316.553527: tracing_mark_write: E|27550
79123           <...>-27550 (-----) [004] ...1 82316.553531: tracing_mark_write: E|27550
79124           <...>-27550 (-----) [004] ...1 82316.553645: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
79125           <...>-27550 (-----) [004] ...1 82316.553703: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
79126           <...>-27550 (-----) [004] ...1 82316.553708: tracing_mark_write: E|27550
79127           <...>-27550 (-----) [004] ...1 82316.553712: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
79128           <...>-27550 (-----) [004] ...1 82316.553717: tracing_mark_write: E|27550
79129           <...>-27550 (-----) [004] ...1 82316.553721: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
79130           <...>-27550 (-----) [004] ...1 82316.553725: tracing_mark_write: E|27550
79131           <...>-27550 (-----) [004] ...1 82316.553729: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
79132          <idle>-0     (-----) [005] .n.1 82316.553829: cpu_idle: state=4294967295 cpu_id=5
79133           <...>-27550 (-----) [004] ...1 82316.553830: tracing_mark_write: E|27550
79134           <...>-27550 (-----) [004] ...1 82316.553835: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
79135          <idle>-0     (-----) [005] d..2 82316.553838: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27711 next_prio=110
79136           <...>-27550 (-----) [004] d..2 82316.553851: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79137          <idle>-0     (-----) [004] d..1 82316.553866: cpu_idle: state=0 cpu_id=4
79138          <idle>-0     (-----) [000] d.h5 82316.553881: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
79139           <...>-27711 (-----) [005] ...1 82316.553898: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
79140          <idle>-0     (-----) [000] d.h6 82316.553901: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
79141          <idle>-0     (-----) [002] .n.1 82316.553906: cpu_idle: state=4294967295 cpu_id=2
79142           <...>-27711 (-----) [005] ...1 82316.553912: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
79143          <idle>-0     (-----) [000] ...1 82316.553916: cpu_idle: state=4294967295 cpu_id=0
79144           <...>-27711 (-----) [005] ...1 82316.553917: tracing_mark_write: E|27550
79145          <idle>-0     (-----) [002] d..2 82316.553918: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
79146          <idle>-0     (-----) [000] d..1 82316.553921: cpu_idle: state=0 cpu_id=0
79147           <...>-27711 (-----) [005] .... 82316.553937: binder_transaction: transaction=1570740 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
79148           <...>-27711 (-----) [005] .... 82316.553941: binder_transaction_alloc_buf: transaction=1570740 data_size=48 offsets_size=0
79149           <...>-27711 (-----) [005] ...2 82316.553944: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
79150           <...>-27711 (-----) [005] d..4 82316.553946: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
79151           <...>-27711 (-----) [005] dn.5 82316.553958: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
79152           <...>-27711 (-----) [005] d..2 82316.553964: sched_switch: prev_comm=id.nn.benchmark prev_pid=27711 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
79153<...>-770 ( 770) [005] .... 82316.553974: binder_transaction_received: transaction=1570740
79154<...>-770 ( 770) [005] ...1 82316.553995: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
79155 crtc_commit:111-321   (  321) [002] d..2 82316.554004: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79156          <idle>-0     (-----) [002] d..1 82316.554017: cpu_idle: state=0 cpu_id=2
79157<...>-770 ( 770) [005] d..2 82316.554066: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
79158          <idle>-0     (-----) [000] dnh2 82316.554094: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
79159<...>-770 ( 770) [005] ...1 82316.554107: tracing_mark_write: E|770
79160<...>-770 ( 770) [005] .... 82316.554114: binder_transaction: transaction=1570741 dest_node=0 dest_proc=27550 dest_thread=27711 reply=1 flags=0x0 code=0x0
79161<...>-770 ( 770) [005] .... 82316.554117: binder_transaction_alloc_buf: transaction=1570741 data_size=168 offsets_size=32
79162<...>-770 ( 770) [005] .... 82316.554123: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
79163<...>-770 ( 770) [005] d..2 82316.554158: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27711 next_prio=110
79164          <idle>-0     (-----) [000] dnh5 82316.554167: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79165           <...>-27711 (-----) [005] .... 82316.554169: binder_transaction_received: transaction=1570741
79166          <idle>-0     (-----) [000] dnh6 82316.554182: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79167          <idle>-0     (-----) [003] .n.1 82316.554188: cpu_idle: state=4294967295 cpu_id=3
79168          <idle>-0     (-----) [000] .n.1 82316.554197: cpu_idle: state=4294967295 cpu_id=0
79169          <idle>-0     (-----) [003] d..2 82316.554199: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
79170          <idle>-0     (-----) [000] d..2 82316.554211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
79171  crtc_event:111-322   (  322) [003] d..2 82316.554224: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79172          <idle>-0     (-----) [003] d..1 82316.554234: cpu_idle: state=0 cpu_id=3
79173           <...>-27711 (-----) [005] ...1 82316.554238: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
79174           <...>-27711 (-----) [005] ...1 82316.554243: tracing_mark_write: E|27550
79175           <...>-27711 (-----) [005] .... 82316.554257: binder_transaction: transaction=1570742 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
79176           <...>-27711 (-----) [005] .... 82316.554260: binder_transaction_alloc_buf: transaction=1570742 data_size=48 offsets_size=0
79177           <...>-27711 (-----) [005] ...2 82316.554262: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
79178           <...>-27711 (-----) [005] d..4 82316.554265: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
79179           <...>-27711 (-----) [005] dn.5 82316.554274: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
79180           <...>-27711 (-----) [005] d..2 82316.554281: sched_switch: prev_comm=id.nn.benchmark prev_pid=27711 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
79181<...>-770 ( 770) [005] .... 82316.554289: binder_transaction_received: transaction=1570742
79182<...>-581 ( 571) [000] d..2 82316.554299: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79183<...>-770 ( 770) [005] ...1 82316.554305: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
79184          <idle>-0     (-----) [000] d..1 82316.554315: cpu_idle: state=0 cpu_id=0
79185<...>-770 ( 770) [005] d..2 82316.554365: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
79186          <idle>-0     (-----) [000] dnh2 82316.554390: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
79187          <idle>-0     (-----) [000] .n.1 82316.554397: cpu_idle: state=4294967295 cpu_id=0
79188<...>-770 ( 770) [005] ...1 82316.554399: tracing_mark_write: E|770
79189<...>-770 ( 770) [005] .... 82316.554406: binder_transaction: transaction=1570743 dest_node=0 dest_proc=27550 dest_thread=27711 reply=1 flags=0x0 code=0x0
79190<...>-770 ( 770) [005] .... 82316.554409: binder_transaction_alloc_buf: transaction=1570743 data_size=168 offsets_size=32
79191          <idle>-0     (-----) [000] d..2 82316.554409: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
79192<...>-770 ( 770) [005] .... 82316.554415: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
79193<...>-770 ( 770) [005] d..2 82316.554448: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27711 next_prio=110
79194           <...>-27711 (-----) [005] .... 82316.554459: binder_transaction_received: transaction=1570743
79195<...>-581 ( 571) [000] d..2 82316.554471: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79196          <idle>-0     (-----) [000] d..1 82316.554484: cpu_idle: state=0 cpu_id=0
79197           <...>-27711 (-----) [005] ...1 82316.554727: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
79198           <...>-27711 (-----) [005] ...1 82316.554737: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
79199           <...>-27711 (-----) [005] ...1 82316.554741: tracing_mark_write: E|27550
79200           <...>-27711 (-----) [005] .... 82316.554801: binder_transaction: transaction=1570744 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
79201           <...>-27711 (-----) [005] .... 82316.554804: binder_transaction_alloc_buf: transaction=1570744 data_size=556 offsets_size=104
79202           <...>-27711 (-----) [005] ...2 82316.554817: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
79203           <...>-27711 (-----) [005] d..4 82316.554820: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79204           <...>-27711 (-----) [005] dn.5 82316.554831: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79205           <...>-27711 (-----) [005] d..2 82316.554838: sched_switch: prev_comm=id.nn.benchmark prev_pid=27711 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79206<...>-5340 ( 788) [005] .... 82316.554848: binder_transaction_received: transaction=1570744
79207<...>-5340 ( 788) [005] ...1 82316.554892: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
79208<...>-5340 ( 788) [005] d..2 82316.554934: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79209<...>-5340 ( 788) [005] d..2 82316.554960: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27711 next_prio=110
79210          <idle>-0     (-----) [000] dnh2 82316.554963: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79211          <idle>-0     (-----) [000] .n.1 82316.554970: cpu_idle: state=4294967295 cpu_id=0
79212          <idle>-0     (-----) [000] d..2 82316.554982: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
79213           <...>-27711 (-----) [005] d..2 82316.554983: sched_switch: prev_comm=id.nn.benchmark prev_pid=27711 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79214          <idle>-0     (-----) [005] d..1 82316.555001: cpu_idle: state=0 cpu_id=5
79215<...>-87 ( 87) [000] d..2 82316.555027: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79216          <idle>-0     (-----) [002] d.h4 82316.555036: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79217          <idle>-0     (-----) [000] d..1 82316.555039: cpu_idle: state=0 cpu_id=0
79218          <idle>-0     (-----) [002] dnh5 82316.555058: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79219          <idle>-0     (-----) [002] .n.1 82316.555069: cpu_idle: state=4294967295 cpu_id=2
79220          <idle>-0     (-----) [002] d..2 82316.555082: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
79221<...>-86 ( 86) [002] d.h3 82316.555115: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79222          <idle>-0     (-----) [005] dnh2 82316.555138: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79223          <idle>-0     (-----) [005] .n.1 82316.555143: cpu_idle: state=4294967295 cpu_id=5
79224          <idle>-0     (-----) [005] d..2 82316.555152: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79225<...>-5340 ( 788) [005] d..1 82316.555203: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
79226<...>-86 ( 86) [002] d..2 82316.555221: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79227          <idle>-0     (-----) [002] d..1 82316.555233: cpu_idle: state=0 cpu_id=2
79228          <idle>-0     (-----) [002] dnh2 82316.555250: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
79229          <idle>-0     (-----) [002] .n.1 82316.555257: cpu_idle: state=4294967295 cpu_id=2
79230          <idle>-0     (-----) [002] d..2 82316.555266: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
79231 neuralnetworks@-13088 (  788) [002] d..2 82316.555322: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79232          <idle>-0     (-----) [002] d..1 82316.555333: cpu_idle: state=0 cpu_id=2
79233<...>-5340 ( 788) [005] d..2 82316.555365: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79234          <idle>-0     (-----) [000] dnh2 82316.555387: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79235<...>-5340 ( 788) [005] d..2 82316.555392: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79236          <idle>-0     (-----) [000] .n.1 82316.555393: cpu_idle: state=4294967295 cpu_id=0
79237          <idle>-0     (-----) [000] d..2 82316.555406: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
79238          <idle>-0     (-----) [005] d..1 82316.555406: cpu_idle: state=0 cpu_id=5
79239<...>-87 ( 87) [000] d..2 82316.555447: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79240          <idle>-0     (-----) [002] d.h4 82316.555448: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79241          <idle>-0     (-----) [000] d..1 82316.555456: cpu_idle: state=0 cpu_id=0
79242          <idle>-0     (-----) [002] dnh5 82316.555461: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79243          <idle>-0     (-----) [002] .n.1 82316.555470: cpu_idle: state=4294967295 cpu_id=2
79244          <idle>-0     (-----) [002] d..2 82316.555480: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
79245<...>-86 ( 86) [002] d..2 82316.555519: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79246          <idle>-0     (-----) [002] d..1 82316.555528: cpu_idle: state=0 cpu_id=2
79247          <idle>-0     (-----) [005] ...1 82316.555734: cpu_idle: state=4294967295 cpu_id=5
79248          <idle>-0     (-----) [005] d..1 82316.555738: cpu_idle: state=0 cpu_id=5
79249          <idle>-0     (-----) [003] d.h2 82316.556023: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
79250          <idle>-0     (-----) [003] dnh3 82316.556041: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
79251          <idle>-0     (-----) [003] .n.1 82316.556050: cpu_idle: state=4294967295 cpu_id=3
79252          <idle>-0     (-----) [003] d..2 82316.556061: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
79253        DispSync-8879  ( 8858) [003] d..1 82316.556084: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
79254        DispSync-8879  ( 8858) [003] d..2 82316.556109: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
79255          <idle>-0     (-----) [001] .n.1 82316.556115: cpu_idle: state=4294967295 cpu_id=1
79256          <idle>-0     (-----) [001] d..2 82316.556127: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
79257        DispSync-8879  ( 8858) [003] d..2 82316.556145: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79258          <idle>-0     (-----) [003] d..1 82316.556159: cpu_idle: state=0 cpu_id=3
79259  appEventThread-8881  ( 8858) [001] d..3 82316.556192: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
79260  appEventThread-8881  ( 8858) [001] d..4 82316.556216: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
79261          <idle>-0     (-----) [000] .n.1 82316.556221: cpu_idle: state=4294967295 cpu_id=0
79262          <idle>-0     (-----) [000] d..2 82316.556232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
79263  appEventThread-8881  ( 8858) [001] d..2 82316.556263: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79264          <idle>-0     (-----) [001] d..1 82316.556279: cpu_idle: state=0 cpu_id=1
79265<...>-9105 ( 9105) [000] .... 82316.556555: binder_transaction: transaction=1570747 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
79266<...>-9105 ( 9105) [000] .... 82316.556562: binder_transaction_alloc_buf: transaction=1570747 data_size=80 offsets_size=0
79267<...>-9105 ( 9105) [000] d..4 82316.556568: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
79268<...>-9105 ( 9105) [000] d..5 82316.556603: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
79269          <idle>-0     (-----) [001] .n.1 82316.556609: cpu_idle: state=4294967295 cpu_id=1
79270          <idle>-0     (-----) [001] d..2 82316.556622: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
79271<...>-13083 ( 8858) [001] .... 82316.556630: binder_transaction_received: transaction=1570747
79272<...>-9105 ( 9105) [000] d..3 82316.556644: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
79273<...>-9105 ( 9105) [000] d..4 82316.556666: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
79274<...>-13083 ( 8858) [001] d..1 82316.556666: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
79275          <idle>-0     (-----) [002] .n.1 82316.556671: cpu_idle: state=4294967295 cpu_id=2
79276          <idle>-0     (-----) [002] d..2 82316.556683: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
79277<...>-13083 ( 8858) [001] d..2 82316.556693: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
79278          <idle>-0     (-----) [003] .n.1 82316.556699: cpu_idle: state=4294967295 cpu_id=3
79279          <idle>-0     (-----) [003] d..2 82316.556710: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
79280    RenderThread-9436  ( 9105) [002] d..2 82316.556740: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79281<...>-13083 ( 8858) [001] d..2 82316.556741: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79282          <idle>-0     (-----) [002] d..1 82316.556750: cpu_idle: state=0 cpu_id=2
79283          <idle>-0     (-----) [001] d..1 82316.556757: cpu_idle: state=0 cpu_id=1
79284  appEventThread-8881  ( 8858) [003] d..2 82316.556770: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79285          <idle>-0     (-----) [003] d..1 82316.556781: cpu_idle: state=0 cpu_id=3
79286<...>-9105 ( 9105) [000] d..3 82316.556794: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
79287<...>-9105 ( 9105) [000] d..4 82316.556813: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
79288          <idle>-0     (-----) [002] .n.1 82316.556819: cpu_idle: state=4294967295 cpu_id=2
79289          <idle>-0     (-----) [002] d..2 82316.556829: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
79290<...>-9105 ( 9105) [000] d..2 82316.556851: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79291          <idle>-0     (-----) [000] d..1 82316.556866: cpu_idle: state=0 cpu_id=0
79292    RenderThread-9436  ( 9105) [002] d..1 82316.556955: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
79293    RenderThread-9436  ( 9105) [002] d..2 82316.556975: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
79294          <idle>-0     (-----) [000] .n.1 82316.556981: cpu_idle: state=4294967295 cpu_id=0
79295          <idle>-0     (-----) [000] d..2 82316.556993: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
79296    RenderThread-9436  ( 9105) [002] .... 82316.557046: binder_transaction: transaction=1570748 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
79297    RenderThread-9436  ( 9105) [002] .... 82316.557052: binder_transaction_alloc_buf: transaction=1570748 data_size=104 offsets_size=0
79298    RenderThread-9436  ( 9105) [002] d..4 82316.557058: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
79299<...>-9105 ( 9105) [000] d..2 82316.557078: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79300    RenderThread-9436  ( 9105) [002] dn.5 82316.557080: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
79301          <idle>-0     (-----) [000] d..1 82316.557090: cpu_idle: state=0 cpu_id=0
79302    RenderThread-9436  ( 9105) [002] dnh6 82316.557105: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79303          <idle>-0     (-----) [005] dnh2 82316.557126: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79304          <idle>-0     (-----) [005] .n.1 82316.557130: cpu_idle: state=4294967295 cpu_id=5
79305          <idle>-0     (-----) [005] d..2 82316.557137: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79306    RenderThread-9436  ( 9105) [002] d..2 82316.557152: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
79307<...>-13083 ( 8858) [002] .... 82316.557162: binder_transaction_received: transaction=1570748
79308<...>-5340 ( 788) [005] d..1 82316.557188: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
79309<...>-13083 ( 8858) [002] dnh1 82316.557219: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
79310<...>-13083 ( 8858) [002] d..2 82316.557232: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
79311<...>-5340 ( 788) [005] ...1 82316.557286: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
79312<...>-5340 ( 788) [005] ...1 82316.557290: tracing_mark_write: E|788
79313 neuralnetworks@-13088 (  788) [002] d..2 82316.557298: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
79314<...>-5340 ( 788) [005] .... 82316.557306: binder_transaction: transaction=1570749 dest_node=1570745 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
79315<...>-5340 ( 788) [005] .... 82316.557309: binder_transaction_alloc_buf: transaction=1570749 data_size=60 offsets_size=0
79316<...>-5340 ( 788) [005] d..4 82316.557312: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
79317<...>-5340 ( 788) [005] d..5 82316.557324: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
79318          <idle>-0     (-----) [004] .n.1 82316.557331: cpu_idle: state=4294967295 cpu_id=4
79319          <idle>-0     (-----) [004] d..2 82316.557340: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
79320           <...>-27571 (-----) [004] .... 82316.557344: binder_transaction_received: transaction=1570749
79321<...>-5340 ( 788) [005] ...1 82316.557347: tracing_mark_write: E|788
79322<...>-13083 ( 8858) [002] .... 82316.557350: binder_transaction: transaction=1570750 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
79323<...>-5340 ( 788) [005] .... 82316.557353: binder_transaction: transaction=1570751 dest_node=0 dest_proc=27550 dest_thread=27711 reply=1 flags=0x0 code=0x0
79324<...>-13083 ( 8858) [002] .... 82316.557355: binder_transaction_alloc_buf: transaction=1570750 data_size=52 offsets_size=8
79325<...>-5340 ( 788) [005] .... 82316.557355: binder_transaction_alloc_buf: transaction=1570751 data_size=8 offsets_size=0
79326<...>-5340 ( 788) [005] d..2 82316.557357: sched_waking: comm=id.nn.benchmark pid=27711 prio=110 target_cpu=005
79327           <...>-27571 (-----) [004] ...1 82316.557364: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
79328<...>-5340 ( 788) [005] d..3 82316.557364: sched_wakeup: comm=id.nn.benchmark pid=27711 prio=110 target_cpu=005
79329<...>-5340 ( 788) [005] .... 82316.557366: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
79330           <...>-27571 (-----) [004] ...1 82316.557370: tracing_mark_write: E|27550
79331           <...>-27571 (-----) [004] d..2 82316.557398: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79332          <idle>-0     (-----) [004] d..1 82316.557406: cpu_idle: state=0 cpu_id=4
79333<...>-5340 ( 788) [005] d..2 82316.557409: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27711 next_prio=110
79334<...>-13083 ( 8858) [002] d..2 82316.557410: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
79335           <...>-27711 (-----) [005] .... 82316.557418: binder_transaction_received: transaction=1570751
79336    RenderThread-9436  ( 9105) [002] .... 82316.557421: binder_transaction_received: transaction=1570750
79337           <...>-27711 (-----) [005] ...1 82316.557457: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
79338           <...>-27711 (-----) [005] ...1 82316.557463: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
79339           <...>-27711 (-----) [005] ...1 82316.557488: tracing_mark_write: E|27550
79340           <...>-27711 (-----) [005] ...1 82316.557492: tracing_mark_write: E|27550
79341           <...>-27711 (-----) [005] ...1 82316.557496: tracing_mark_write: E|27550
79342           <...>-27711 (-----) [005] ...1 82316.557684: tracing_mark_write: E|27550
79343           <...>-27711 (-----) [005] d..1 82316.557696: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79344           <...>-27711 (-----) [005] d..2 82316.557712: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79345          <idle>-0     (-----) [004] .n.1 82316.557717: cpu_idle: state=4294967295 cpu_id=4
79346          <idle>-0     (-----) [004] d..2 82316.557724: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
79347           <...>-27550 (-----) [004] d..2 82316.557744: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79348          <idle>-0     (-----) [004] d..1 82316.557753: cpu_idle: state=0 cpu_id=4
79349           <...>-27711 (-----) [005] d..1 82316.557799: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79350           <...>-27711 (-----) [005] d..2 82316.557808: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79351          <idle>-0     (-----) [004] .n.1 82316.557814: cpu_idle: state=4294967295 cpu_id=4
79352          <idle>-0     (-----) [004] d..2 82316.557822: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
79353           <...>-27711 (-----) [005] d..2 82316.557847: sched_switch: prev_comm=id.nn.benchmark prev_pid=27711 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
79354           <...>-27550 (-----) [004] ...1 82316.557855: tracing_mark_write: E|27550
79355           <...>-27550 (-----) [004] ...1 82316.557860: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
79356           <...>-27550 (-----) [004] ...1 82316.557866: tracing_mark_write: E|27550
79357          <idle>-0     (-----) [005] d..1 82316.557868: cpu_idle: state=0 cpu_id=5
79358           <...>-27550 (-----) [004] ...1 82316.557870: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
79359           <...>-27550 (-----) [004] ...1 82316.557873: tracing_mark_write: E|27550
79360           <...>-27550 (-----) [004] ...1 82316.557878: tracing_mark_write: E|27550
79361           <...>-27550 (-----) [004] ...1 82316.557990: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
79362           <...>-27550 (-----) [004] ...1 82316.558048: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
79363           <...>-27550 (-----) [004] ...1 82316.558053: tracing_mark_write: E|27550
79364           <...>-27550 (-----) [004] ...1 82316.558057: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
79365           <...>-27550 (-----) [004] ...1 82316.558062: tracing_mark_write: E|27550
79366           <...>-27550 (-----) [004] ...1 82316.558066: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
79367           <...>-27550 (-----) [004] ...1 82316.558070: tracing_mark_write: E|27550
79368           <...>-27550 (-----) [004] ...1 82316.558073: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
79369          <idle>-0     (-----) [005] .n.1 82316.558163: cpu_idle: state=4294967295 cpu_id=5
79370           <...>-27550 (-----) [004] ...1 82316.558164: tracing_mark_write: E|27550
79371           <...>-27550 (-----) [004] ...1 82316.558168: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
79372          <idle>-0     (-----) [005] d..2 82316.558172: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27712 next_prio=110
79373           <...>-27550 (-----) [004] d..2 82316.558185: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79374          <idle>-0     (-----) [004] d..1 82316.558199: cpu_idle: state=0 cpu_id=4
79375           <...>-27712 (-----) [005] ...1 82316.558233: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
79376           <...>-27712 (-----) [005] ...1 82316.558247: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
79377           <...>-27712 (-----) [005] ...1 82316.558251: tracing_mark_write: E|27550
79378           <...>-27712 (-----) [005] .... 82316.558272: binder_transaction: transaction=1570752 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
79379           <...>-27712 (-----) [005] .... 82316.558276: binder_transaction_alloc_buf: transaction=1570752 data_size=48 offsets_size=0
79380           <...>-27712 (-----) [005] ...2 82316.558279: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
79381           <...>-27712 (-----) [005] d..4 82316.558282: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
79382           <...>-27712 (-----) [005] dn.5 82316.558293: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
79383           <...>-27712 (-----) [005] d..2 82316.558300: sched_switch: prev_comm=id.nn.benchmark prev_pid=27712 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
79384<...>-770 ( 770) [005] .... 82316.558310: binder_transaction_received: transaction=1570752
79385<...>-770 ( 770) [005] ...1 82316.558333: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
79386<...>-770 ( 770) [005] d..2 82316.558412: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
79387          <idle>-0     (-----) [000] ...1 82316.558481: cpu_idle: state=4294967295 cpu_id=0
79388          <idle>-0     (-----) [000] d..1 82316.558487: cpu_idle: state=0 cpu_id=0
79389<...>-770 ( 770) [005] ...1 82316.558502: tracing_mark_write: E|770
79390<...>-770 ( 770) [005] .... 82316.558511: binder_transaction: transaction=1570753 dest_node=0 dest_proc=27550 dest_thread=27712 reply=1 flags=0x0 code=0x0
79391<...>-770 ( 770) [005] .... 82316.558513: binder_transaction_alloc_buf: transaction=1570753 data_size=168 offsets_size=32
79392<...>-770 ( 770) [005] .... 82316.558520: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
79393    RenderThread-9436  ( 9105) [002] d.H2 82316.558527: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
79394    RenderThread-9436  ( 9105) [002] d.s2 82316.558534: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
79395    RenderThread-9436  ( 9105) [002] dns3 82316.558553: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
79396<...>-770 ( 770) [005] d..2 82316.558556: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27712 next_prio=110
79397    RenderThread-9436  ( 9105) [002] dns3 82316.558560: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
79398           <...>-27712 (-----) [005] .... 82316.558566: binder_transaction_received: transaction=1570753
79399    RenderThread-9436  ( 9105) [002] dns4 82316.558601: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
79400    RenderThread-9436  ( 9105) [002] d..2 82316.558623: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=rcu_sched next_pid=8 next_prio=120
79401           <...>-27712 (-----) [005] ...1 82316.558640: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
79402          <idle>-0     (-----) [000] d.h3 82316.558642: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
79403           <...>-27712 (-----) [005] ...1 82316.558645: tracing_mark_write: E|27550
79404<...>-8 ( 8) [002] d..2 82316.558646: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
79405           <...>-27712 (-----) [005] .... 82316.558660: binder_transaction: transaction=1570754 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
79406          <idle>-0     (-----) [000] dnh4 82316.558661: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
79407           <...>-27712 (-----) [005] .... 82316.558663: binder_transaction_alloc_buf: transaction=1570754 data_size=48 offsets_size=0
79408           <...>-27712 (-----) [005] ...2 82316.558665: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
79409           <...>-27712 (-----) [005] d..4 82316.558667: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
79410          <idle>-0     (-----) [000] .n.1 82316.558674: cpu_idle: state=4294967295 cpu_id=0
79411           <...>-27712 (-----) [005] dn.5 82316.558677: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
79412          <idle>-0     (-----) [000] d..2 82316.558682: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
79413           <...>-27712 (-----) [005] d..2 82316.558684: sched_switch: prev_comm=id.nn.benchmark prev_pid=27712 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
79414  kworker/u16:13-1147  ( 1147) [002] .... 82316.558688: clk_set_rate: l3_cluster0_vote_clk 300000000
79415<...>-770 ( 770) [005] .... 82316.558692: binder_transaction_received: transaction=1570754
79416<...>-770 ( 770) [005] ...1 82316.558709: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
79417 kgsl_worker_thr-258   (  258) [000] d..2 82316.558733: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
79418<...>-770 ( 770) [005] ...1 82316.558803: tracing_mark_write: E|770
79419<...>-770 ( 770) [005] .... 82316.558811: binder_transaction: transaction=1570755 dest_node=0 dest_proc=27550 dest_thread=27712 reply=1 flags=0x0 code=0x0
79420<...>-770 ( 770) [005] .... 82316.558814: binder_transaction_alloc_buf: transaction=1570755 data_size=168 offsets_size=32
79421<...>-770 ( 770) [005] .... 82316.558819: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
79422<...>-770 ( 770) [005] d..2 82316.558854: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27712 next_prio=110
79423           <...>-27712 (-----) [005] .... 82316.558865: binder_transaction_received: transaction=1570755
79424<...>-581 ( 571) [000] d..2 82316.558886: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79425          <idle>-0     (-----) [000] d..1 82316.558899: cpu_idle: state=0 cpu_id=0
79426  kworker/u16:13-1147  ( 1147) [002] d..2 82316.558958: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=RenderThread next_pid=9436 next_prio=120
79427    RenderThread-9436  ( 9105) [002] d..1 82316.558976: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
79428    RenderThread-9436  ( 9105) [002] d..2 82316.558995: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
79429          <idle>-0     (-----) [000] .n.1 82316.559002: cpu_idle: state=4294967295 cpu_id=0
79430          <idle>-0     (-----) [001] d.s3 82316.559006: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
79431          <idle>-0     (-----) [000] d..2 82316.559012: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
79432          <idle>-0     (-----) [001] d.s4 82316.559043: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
79433          <idle>-0     (-----) [001] dns4 82316.559049: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
79434          <idle>-0     (-----) [001] .n.1 82316.559058: cpu_idle: state=4294967295 cpu_id=1
79435 kgsl_worker_thr-258   (  258) [000] d..2 82316.559066: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
79436          <idle>-0     (-----) [001] d..2 82316.559072: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
79437 kgsl_worker_thr-258   (  258) [000] d..3 82316.559116: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
79438 kgsl_worker_thr-258   (  258) [000] d..2 82316.559134: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
79439           <...>-27712 (-----) [005] ...1 82316.559137: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
79440           <...>-27712 (-----) [005] ...1 82316.559147: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
79441           <...>-27712 (-----) [005] ...1 82316.559150: tracing_mark_write: E|27550
79442  kworker/u16:13-1147  ( 1147) [001] d..2 82316.559169: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79443          <idle>-0     (-----) [001] d..1 82316.559183: cpu_idle: state=0 cpu_id=1
79444    RenderThread-9436  ( 9105) [002] .... 82316.559200: binder_transaction: transaction=1570756 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
79445    RenderThread-9436  ( 9105) [002] .... 82316.559206: binder_transaction_alloc_buf: transaction=1570756 data_size=192 offsets_size=8
79446    RenderThread-9436  ( 9105) [002] d..4 82316.559217: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
79447  kworker/u16:15-1311  ( 1311) [000] d..2 82316.559218: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79448          <idle>-0     (-----) [000] d..1 82316.559229: cpu_idle: state=0 cpu_id=0
79449           <...>-27712 (-----) [005] .... 82316.559233: binder_transaction: transaction=1570757 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
79450    RenderThread-9436  ( 9105) [002] dn.5 82316.559235: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
79451           <...>-27712 (-----) [005] .... 82316.559237: binder_transaction_alloc_buf: transaction=1570757 data_size=556 offsets_size=104
79452    RenderThread-9436  ( 9105) [002] d..2 82316.559246: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
79453           <...>-27712 (-----) [005] ...2 82316.559252: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
79454           <...>-27712 (-----) [005] d..4 82316.559255: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79455<...>-13083 ( 8858) [002] .... 82316.559256: binder_transaction_received: transaction=1570756
79456           <...>-27712 (-----) [005] dn.5 82316.559266: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79457           <...>-27712 (-----) [005] d..2 82316.559273: sched_switch: prev_comm=id.nn.benchmark prev_pid=27712 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79458<...>-5340 ( 788) [005] .... 82316.559283: binder_transaction_received: transaction=1570757
79459<...>-5340 ( 788) [005] ...1 82316.559333: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
79460<...>-5340 ( 788) [005] d..2 82316.559380: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79461<...>-5340 ( 788) [005] d..2 82316.559418: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27712 next_prio=110
79462<...>-13083 ( 8858) [002] d.h1 82316.559425: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
79463           <...>-27712 (-----) [005] d..2 82316.559443: sched_switch: prev_comm=id.nn.benchmark prev_pid=27712 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79464<...>-13083 ( 8858) [002] .... 82316.559447: binder_transaction: transaction=1570760 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
79465<...>-13083 ( 8858) [002] .... 82316.559452: binder_transaction_alloc_buf: transaction=1570760 data_size=68 offsets_size=0
79466          <idle>-0     (-----) [005] d..1 82316.559461: cpu_idle: state=0 cpu_id=5
79467<...>-13083 ( 8858) [002] d..2 82316.559497: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
79468<...>-87 ( 87) [002] d..2 82316.559537: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
79469    RenderThread-9436  ( 9105) [002] d.h5 82316.559558: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79470    RenderThread-9436  ( 9105) [002] dnh6 82316.559581: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79471    RenderThread-9436  ( 9105) [002] d..2 82316.559595: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=smem_native_cds next_pid=86 next_prio=120
79472<...>-86 ( 86) [002] d.h4 82316.559635: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79473          <idle>-0     (-----) [005] dnh2 82316.559658: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79474          <idle>-0     (-----) [005] .n.1 82316.559662: cpu_idle: state=4294967295 cpu_id=5
79475          <idle>-0     (-----) [005] d..2 82316.559671: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79476<...>-86 ( 86) [002] d..2 82316.559684: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
79477    RenderThread-9436  ( 9105) [002] .... 82316.559695: binder_transaction_received: transaction=1570760
79478<...>-5340 ( 788) [005] d..1 82316.559727: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
79479    RenderThread-9436  ( 9105) [002] dnh1 82316.559752: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
79480    RenderThread-9436  ( 9105) [002] d..2 82316.559764: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
79481 neuralnetworks@-13088 (  788) [002] d..2 82316.559810: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
79482<...>-5340 ( 788) [005] d..2 82316.559874: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
79483    RenderThread-9436  ( 9105) [002] d..2 82316.559876: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79484          <idle>-0     (-----) [002] dnh2 82316.559900: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
79485<...>-5340 ( 788) [005] d..2 82316.559904: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79486          <idle>-0     (-----) [002] d..2 82316.559917: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
79487          <idle>-0     (-----) [005] d..1 82316.559919: cpu_idle: state=0 cpu_id=5
79488<...>-87 ( 87) [002] d.h4 82316.559954: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79489<...>-87 ( 87) [002] d.h5 82316.559973: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79490<...>-87 ( 87) [002] d..2 82316.559990: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
79491<...>-86 ( 86) [002] d..2 82316.560028: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79492          <idle>-0     (-----) [003] d.h2 82316.560037: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
79493          <idle>-0     (-----) [002] d..1 82316.560044: cpu_idle: state=0 cpu_id=2
79494          <idle>-0     (-----) [003] dnh3 82316.560050: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
79495          <idle>-0     (-----) [003] .n.1 82316.560059: cpu_idle: state=4294967295 cpu_id=3
79496          <idle>-0     (-----) [003] d..2 82316.560071: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
79497        DispSync-8879  ( 8858) [003] d..1 82316.560086: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
79498        DispSync-8879  ( 8858) [003] d..2 82316.560103: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
79499          <idle>-0     (-----) [001] .n.1 82316.560109: cpu_idle: state=4294967295 cpu_id=1
79500          <idle>-0     (-----) [001] d..2 82316.560121: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
79501        DispSync-8879  ( 8858) [003] d..2 82316.560134: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79502          <idle>-0     (-----) [003] d..1 82316.560148: cpu_idle: state=0 cpu_id=3
79503   sfEventThread-8882  ( 8858) [001] d..3 82316.560162: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
79504   sfEventThread-8882  ( 8858) [001] d..4 82316.560184: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
79505          <idle>-0     (-----) [003] .n.1 82316.560190: cpu_idle: state=4294967295 cpu_id=3
79506          <idle>-0     (-----) [003] d..2 82316.560201: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
79507   sfEventThread-8882  ( 8858) [001] d..2 82316.560220: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79508          <idle>-0     (-----) [001] d..1 82316.560234: cpu_idle: state=0 cpu_id=1
79509          <idle>-0     (-----) [005] ...1 82316.560257: cpu_idle: state=4294967295 cpu_id=5
79510          <idle>-0     (-----) [005] d..1 82316.560261: cpu_idle: state=0 cpu_id=5
79511  surfaceflinger-8858  ( 8858) [003] d..1 82316.560559: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
79512  surfaceflinger-8858  ( 8858) [003] d..2 82316.560581: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
79513          <idle>-0     (-----) [001] .n.1 82316.560587: cpu_idle: state=4294967295 cpu_id=1
79514          <idle>-0     (-----) [001] d..2 82316.560598: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
79515   sfEventThread-8882  ( 8858) [001] d..2 82316.560635: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79516          <idle>-0     (-----) [001] d..1 82316.560647: cpu_idle: state=0 cpu_id=1
79517  surfaceflinger-8858  ( 8858) [003] ...1 82316.560792: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
79518  surfaceflinger-8858  ( 8858) [003] ...1 82316.560800: tracing_mark_write: E|8858
79519  surfaceflinger-8858  ( 8858) [003] .... 82316.560856: binder_transaction: transaction=1570761 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
79520  surfaceflinger-8858  ( 8858) [003] .... 82316.560861: binder_transaction_alloc_buf: transaction=1570761 data_size=540 offsets_size=96
79521  surfaceflinger-8858  ( 8858) [003] ...2 82316.560889: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
79522  surfaceflinger-8858  ( 8858) [003] d..4 82316.560897: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
79523  surfaceflinger-8858  ( 8858) [003] d..5 82316.560920: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
79524          <idle>-0     (-----) [001] .n.1 82316.560925: cpu_idle: state=4294967295 cpu_id=1
79525          <idle>-0     (-----) [001] d..2 82316.560936: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
79526 [email protected]   (  619) [001] .... 82316.560946: binder_transaction_received: transaction=1570761
79527  surfaceflinger-8858  ( 8858) [003] d..2 82316.560954: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79528          <idle>-0     (-----) [003] d..1 82316.560973: cpu_idle: state=0 cpu_id=3
79529 [email protected]   (  619) [001] ...1 82316.560992: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
79530 [email protected]   (  619) [001] ...1 82316.561115: tracing_mark_write: B|619|HWCSession::PresentDisplay::
79531 [email protected]   (  619) [001] ...1 82316.561305: tracing_mark_write: B|619|HWDeviceDRM::Commit::
79532 [email protected]   (  619) [001] ...1 82316.561320: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
79533          <idle>-0     (-----) [002] d.h4 82316.561618: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79534          <idle>-0     (-----) [005] dnh2 82316.561640: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79535          <idle>-0     (-----) [005] .n.1 82316.561644: cpu_idle: state=4294967295 cpu_id=5
79536          <idle>-0     (-----) [005] d..2 82316.561652: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79537          <idle>-0     (-----) [002] ...1 82316.561660: cpu_idle: state=4294967295 cpu_id=2
79538          <idle>-0     (-----) [002] d..1 82316.561666: cpu_idle: state=0 cpu_id=2
79539<...>-5340 ( 788) [005] d..1 82316.561700: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
79540          <idle>-0     (-----) [002] dnh2 82316.561727: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
79541          <idle>-0     (-----) [002] .n.1 82316.561733: cpu_idle: state=4294967295 cpu_id=2
79542          <idle>-0     (-----) [002] d..2 82316.561746: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
79543          <idle>-0     (-----) [000] d.s2 82316.561815: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
79544<...>-5340 ( 788) [005] ...1 82316.561828: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
79545<...>-5340 ( 788) [005] ...1 82316.561832: tracing_mark_write: E|788
79546          <idle>-0     (-----) [000] dns3 82316.561834: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
79547          <idle>-0     (-----) [000] dns3 82316.561849: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
79548<...>-5340 ( 788) [005] .... 82316.561850: binder_transaction: transaction=1570762 dest_node=1570758 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
79549<...>-5340 ( 788) [005] .... 82316.561854: binder_transaction_alloc_buf: transaction=1570762 data_size=60 offsets_size=0
79550<...>-5340 ( 788) [005] d..4 82316.561857: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
79551 neuralnetworks@-13088 (  788) [002] d..2 82316.561864: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79552<...>-5340 ( 788) [005] d..5 82316.561870: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
79553          <idle>-0     (-----) [000] dns4 82316.561875: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
79554          <idle>-0     (-----) [004] .n.1 82316.561876: cpu_idle: state=4294967295 cpu_id=4
79555          <idle>-0     (-----) [002] d..2 82316.561884: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
79556          <idle>-0     (-----) [004] d..2 82316.561884: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
79557           <...>-27571 (-----) [004] .... 82316.561889: binder_transaction_received: transaction=1570762
79558          <idle>-0     (-----) [000] .n.1 82316.561893: cpu_idle: state=4294967295 cpu_id=0
79559<...>-5340 ( 788) [005] ...1 82316.561894: tracing_mark_write: E|788
79560<...>-8 ( 8) [002] d..2 82316.561896: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
79561<...>-5340 ( 788) [005] .... 82316.561900: binder_transaction: transaction=1570763 dest_node=0 dest_proc=27550 dest_thread=27712 reply=1 flags=0x0 code=0x0
79562<...>-5340 ( 788) [005] .... 82316.561902: binder_transaction_alloc_buf: transaction=1570763 data_size=8 offsets_size=0
79563          <idle>-0     (-----) [000] d..2 82316.561903: 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
79564<...>-5340 ( 788) [005] d..2 82316.561904: sched_waking: comm=id.nn.benchmark pid=27712 prio=110 target_cpu=005
79565           <...>-27571 (-----) [004] ...1 82316.561908: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
79566<...>-5340 ( 788) [005] d..3 82316.561911: sched_wakeup: comm=id.nn.benchmark pid=27712 prio=110 target_cpu=005
79567<...>-5340 ( 788) [005] .... 82316.561913: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
79568           <...>-27571 (-----) [004] ...1 82316.561915: tracing_mark_write: E|27550
79569<...>-8 ( 8) [002] d..3 82316.561927: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
79570     rcu_preempt-7     (    7) [000] d..2 82316.561941: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
79571           <...>-27571 (-----) [004] d..2 82316.561944: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79572<...>-8 ( 8) [002] d..2 82316.561952: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79573          <idle>-0     (-----) [004] d..1 82316.561952: cpu_idle: state=0 cpu_id=4
79574<...>-46 ( 46) [000] d..2 82316.561954: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
79575<...>-5340 ( 788) [005] d..2 82316.561955: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27712 next_prio=110
79576           <...>-27712 (-----) [005] .... 82316.561965: binder_transaction_received: transaction=1570763
79577<...>-46 ( 46) [000] d..3 82316.561969: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
79578          <idle>-0     (-----) [002] d..2 82316.561980: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
79579<...>-46 ( 46) [000] d..2 82316.561991: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79580           <...>-27712 (-----) [005] ...1 82316.562002: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
79581          <idle>-0     (-----) [000] d..1 82316.562007: cpu_idle: state=0 cpu_id=0
79582<...>-8 ( 8) [002] d..2 82316.562007: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79583           <...>-27712 (-----) [005] ...1 82316.562009: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
79584          <idle>-0     (-----) [002] d..1 82316.562017: cpu_idle: state=0 cpu_id=2
79585           <...>-27712 (-----) [005] ...1 82316.562036: tracing_mark_write: E|27550
79586           <...>-27712 (-----) [005] ...1 82316.562040: tracing_mark_write: E|27550
79587           <...>-27712 (-----) [005] ...1 82316.562043: tracing_mark_write: E|27550
79588 [email protected]   (  619) [001] d..2 82316.562086: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
79589 [email protected]   (  619) [001] d..3 82316.562110: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
79590          <idle>-0     (-----) [002] .n.1 82316.562116: cpu_idle: state=4294967295 cpu_id=2
79591          <idle>-0     (-----) [002] d..2 82316.562127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
79592           <...>-27712 (-----) [005] ...1 82316.562236: tracing_mark_write: E|27550
79593           <...>-27712 (-----) [005] d..1 82316.562248: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79594           <...>-27712 (-----) [005] d..2 82316.562264: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79595 [email protected]   (  619) [001] ...1 82316.562264: tracing_mark_write: E|619
79596          <idle>-0     (-----) [004] .n.1 82316.562269: cpu_idle: state=4294967295 cpu_id=4
79597 [email protected]   (  619) [001] ...1 82316.562272: tracing_mark_write: E|619
79598          <idle>-0     (-----) [004] d..2 82316.562276: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
79599           <...>-27550 (-----) [004] d..2 82316.562297: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79600          <idle>-0     (-----) [004] d..1 82316.562306: cpu_idle: state=0 cpu_id=4
79601 [email protected]   (  619) [001] ...1 82316.562341: tracing_mark_write: E|619
79602           <...>-27712 (-----) [005] d..1 82316.562358: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79603           <...>-27712 (-----) [005] d..2 82316.562367: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79604          <idle>-0     (-----) [004] .n.1 82316.562373: cpu_idle: state=4294967295 cpu_id=4
79605          <idle>-0     (-----) [004] d..2 82316.562380: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
79606 [email protected]   (  619) [001] ...1 82316.562390: tracing_mark_write: E|619
79607           <...>-27712 (-----) [005] d..2 82316.562408: sched_switch: prev_comm=id.nn.benchmark prev_pid=27712 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
79608 [email protected]   (  619) [001] .... 82316.562409: binder_transaction: transaction=1570764 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
79609           <...>-27550 (-----) [004] ...1 82316.562414: tracing_mark_write: E|27550
79610 [email protected]   (  619) [001] .... 82316.562414: binder_transaction_alloc_buf: transaction=1570764 data_size=576 offsets_size=112
79611           <...>-27550 (-----) [004] ...1 82316.562418: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
79612           <...>-27550 (-----) [004] ...1 82316.562424: tracing_mark_write: E|27550
79613           <...>-27550 (-----) [004] ...1 82316.562427: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
79614          <idle>-0     (-----) [005] d..1 82316.562429: cpu_idle: state=0 cpu_id=5
79615           <...>-27550 (-----) [004] ...1 82316.562431: tracing_mark_write: E|27550
79616           <...>-27550 (-----) [004] ...1 82316.562435: tracing_mark_write: E|27550
79617 [email protected]   (  619) [001] d..2 82316.562437: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
79618 [email protected]   (  619) [001] d..3 82316.562456: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
79619 [email protected]   (  619) [001] .... 82316.562461: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
79620          <idle>-0     (-----) [003] .n.1 82316.562463: cpu_idle: state=4294967295 cpu_id=3
79621          <idle>-0     (-----) [003] d..2 82316.562477: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
79622  surfaceflinger-8858  ( 8858) [003] .... 82316.562485: binder_transaction_received: transaction=1570764
79623           <...>-27550 (-----) [004] ...1 82316.562548: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
79624 [email protected]   (  619) [001] d..2 82316.562552: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
79625          <idle>-0     (-----) [001] d..1 82316.562574: cpu_idle: state=0 cpu_id=1
79626           <...>-27550 (-----) [004] ...1 82316.562606: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
79627           <...>-27550 (-----) [004] ...1 82316.562611: tracing_mark_write: E|27550
79628           <...>-27550 (-----) [004] ...1 82316.562614: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
79629           <...>-27550 (-----) [004] ...1 82316.562620: tracing_mark_write: E|27550
79630           <...>-27550 (-----) [004] ...1 82316.562623: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
79631           <...>-27550 (-----) [004] ...1 82316.562627: tracing_mark_write: E|27550
79632           <...>-27550 (-----) [004] ...1 82316.562630: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
79633          <idle>-0     (-----) [005] .n.1 82316.562722: cpu_idle: state=4294967295 cpu_id=5
79634           <...>-27550 (-----) [004] ...1 82316.562723: tracing_mark_write: E|27550
79635           <...>-27550 (-----) [004] ...1 82316.562728: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
79636          <idle>-0     (-----) [005] d..2 82316.562731: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27713 next_prio=110
79637           <...>-27550 (-----) [004] d..2 82316.562744: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79638          <idle>-0     (-----) [004] d..1 82316.562758: cpu_idle: state=0 cpu_id=4
79639           <...>-27713 (-----) [005] ...1 82316.562793: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
79640           <...>-27713 (-----) [005] ...1 82316.562807: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
79641           <...>-27713 (-----) [005] ...1 82316.562811: tracing_mark_write: E|27550
79642           <...>-27713 (-----) [005] .... 82316.562832: binder_transaction: transaction=1570765 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
79643           <...>-27713 (-----) [005] .... 82316.562836: binder_transaction_alloc_buf: transaction=1570765 data_size=48 offsets_size=0
79644           <...>-27713 (-----) [005] ...2 82316.562839: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
79645           <...>-27713 (-----) [005] d..4 82316.562842: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
79646           <...>-27713 (-----) [005] dn.5 82316.562852: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
79647           <...>-27713 (-----) [005] d..2 82316.562859: sched_switch: prev_comm=id.nn.benchmark prev_pid=27713 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
79648<...>-770 ( 770) [005] .... 82316.562868: binder_transaction_received: transaction=1570765
79649<...>-770 ( 770) [005] ...1 82316.562891: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
79650 crtc_commit:111-321   (  321) [002] d..2 82316.562897: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
79651          <idle>-0     (-----) [002] d..1 82316.562911: cpu_idle: state=0 cpu_id=2
79652  surfaceflinger-8858  ( 8858) [003] d..2 82316.562940: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79653          <idle>-0     (-----) [003] d..1 82316.562959: cpu_idle: state=0 cpu_id=3
79654<...>-770 ( 770) [005] d..2 82316.562975: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
79655          <idle>-0     (-----) [000] dnh2 82316.563003: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
79656          <idle>-0     (-----) [000] .n.1 82316.563010: cpu_idle: state=4294967295 cpu_id=0
79657<...>-770 ( 770) [005] ...1 82316.563017: tracing_mark_write: E|770
79658          <idle>-0     (-----) [000] d..2 82316.563022: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
79659<...>-770 ( 770) [005] .... 82316.563026: binder_transaction: transaction=1570766 dest_node=0 dest_proc=27550 dest_thread=27713 reply=1 flags=0x0 code=0x0
79660<...>-770 ( 770) [005] .... 82316.563029: binder_transaction_alloc_buf: transaction=1570766 data_size=168 offsets_size=32
79661<...>-770 ( 770) [005] .... 82316.563036: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
79662<...>-770 ( 770) [005] d..2 82316.563072: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27713 next_prio=110
79663           <...>-27713 (-----) [005] .... 82316.563083: binder_transaction_received: transaction=1570766
79664<...>-581 ( 571) [000] d..2 82316.563115: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79665          <idle>-0     (-----) [000] d..1 82316.563130: cpu_idle: state=0 cpu_id=0
79666           <...>-27713 (-----) [005] ...1 82316.563154: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
79667           <...>-27713 (-----) [005] ...1 82316.563159: tracing_mark_write: E|27550
79668           <...>-27713 (-----) [005] .... 82316.563174: binder_transaction: transaction=1570767 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
79669           <...>-27713 (-----) [005] .... 82316.563176: binder_transaction_alloc_buf: transaction=1570767 data_size=48 offsets_size=0
79670           <...>-27713 (-----) [005] ...2 82316.563178: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
79671           <...>-27713 (-----) [005] d..4 82316.563181: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
79672           <...>-27713 (-----) [005] dn.5 82316.563191: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
79673           <...>-27713 (-----) [005] d..2 82316.563197: sched_switch: prev_comm=id.nn.benchmark prev_pid=27713 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
79674<...>-770 ( 770) [005] .... 82316.563205: binder_transaction_received: transaction=1570767
79675<...>-770 ( 770) [005] ...1 82316.563223: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
79676<...>-770 ( 770) [005] d..2 82316.563282: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
79677          <idle>-0     (-----) [000] dnh2 82316.563307: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
79678          <idle>-0     (-----) [000] .n.1 82316.563313: cpu_idle: state=4294967295 cpu_id=0
79679<...>-770 ( 770) [005] ...1 82316.563315: tracing_mark_write: E|770
79680<...>-770 ( 770) [005] .... 82316.563322: binder_transaction: transaction=1570768 dest_node=0 dest_proc=27550 dest_thread=27713 reply=1 flags=0x0 code=0x0
79681<...>-770 ( 770) [005] .... 82316.563324: binder_transaction_alloc_buf: transaction=1570768 data_size=168 offsets_size=32
79682          <idle>-0     (-----) [000] d..2 82316.563325: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
79683<...>-770 ( 770) [005] .... 82316.563330: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
79684<...>-770 ( 770) [005] d..2 82316.563364: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27713 next_prio=110
79685           <...>-27713 (-----) [005] .... 82316.563375: binder_transaction_received: transaction=1570768
79686<...>-581 ( 571) [000] d..2 82316.563384: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79687          <idle>-0     (-----) [000] d..1 82316.563397: cpu_idle: state=0 cpu_id=0
79688           <...>-27713 (-----) [005] ...1 82316.563654: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
79689           <...>-27713 (-----) [005] ...1 82316.563664: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
79690           <...>-27713 (-----) [005] ...1 82316.563668: tracing_mark_write: E|27550
79691           <...>-27713 (-----) [005] .... 82316.563733: binder_transaction: transaction=1570769 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
79692           <...>-27713 (-----) [005] .... 82316.563737: binder_transaction_alloc_buf: transaction=1570769 data_size=556 offsets_size=104
79693           <...>-27713 (-----) [005] ...2 82316.563750: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
79694           <...>-27713 (-----) [005] d..4 82316.563753: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79695           <...>-27713 (-----) [005] dn.5 82316.563764: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79696           <...>-27713 (-----) [005] d..2 82316.563771: sched_switch: prev_comm=id.nn.benchmark prev_pid=27713 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79697<...>-5340 ( 788) [005] .... 82316.563781: binder_transaction_received: transaction=1570769
79698<...>-5340 ( 788) [005] ...1 82316.563827: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
79699<...>-5340 ( 788) [005] d..2 82316.563873: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
79700<...>-5340 ( 788) [005] d..2 82316.563910: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27713 next_prio=110
79701          <idle>-0     (-----) [000] dnh2 82316.563915: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79702          <idle>-0     (-----) [000] .n.1 82316.563922: cpu_idle: state=4294967295 cpu_id=0
79703           <...>-27713 (-----) [005] d..2 82316.563932: sched_switch: prev_comm=id.nn.benchmark prev_pid=27713 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79704          <idle>-0     (-----) [000] d..2 82316.563934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
79705          <idle>-0     (-----) [005] d..1 82316.563950: cpu_idle: state=0 cpu_id=5
79706<...>-87 ( 87) [000] d..2 82316.563978: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79707          <idle>-0     (-----) [000] d..1 82316.563990: cpu_idle: state=0 cpu_id=0
79708          <idle>-0     (-----) [002] d.h4 82316.563992: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79709          <idle>-0     (-----) [002] dnh5 82316.564013: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79710          <idle>-0     (-----) [002] .n.1 82316.564023: cpu_idle: state=4294967295 cpu_id=2
79711          <idle>-0     (-----) [002] d..2 82316.564037: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
79712          <idle>-0     (-----) [001] ...1 82316.564058: cpu_idle: state=4294967295 cpu_id=1
79713          <idle>-0     (-----) [001] d..1 82316.564064: cpu_idle: state=0 cpu_id=1
79714<...>-86 ( 86) [002] d.h4 82316.564073: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79715          <idle>-0     (-----) [005] dnh2 82316.564095: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79716          <idle>-0     (-----) [005] .n.1 82316.564099: cpu_idle: state=4294967295 cpu_id=5
79717          <idle>-0     (-----) [005] d..2 82316.564107: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79718<...>-86 ( 86) [002] d..2 82316.564137: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79719          <idle>-0     (-----) [002] d..1 82316.564151: cpu_idle: state=0 cpu_id=2
79720<...>-5340 ( 788) [005] d..1 82316.564161: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
79721          <idle>-0     (-----) [000] dnh2 82316.564198: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
79722          <idle>-0     (-----) [000] .n.1 82316.564204: cpu_idle: state=4294967295 cpu_id=0
79723          <idle>-0     (-----) [000] d..2 82316.564216: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
79724 neuralnetworks@-13088 (  788) [000] d..2 82316.564275: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79725          <idle>-0     (-----) [000] d..1 82316.564289: cpu_idle: state=0 cpu_id=0
79726<...>-5340 ( 788) [005] d..2 82316.564318: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79727          <idle>-0     (-----) [000] dnh2 82316.564342: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79728<...>-5340 ( 788) [005] d..2 82316.564344: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79729          <idle>-0     (-----) [000] .n.1 82316.564348: cpu_idle: state=4294967295 cpu_id=0
79730          <idle>-0     (-----) [005] d..1 82316.564359: cpu_idle: state=0 cpu_id=5
79731          <idle>-0     (-----) [000] d..2 82316.564360: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
79732          <idle>-0     (-----) [002] d.h4 82316.564402: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79733<...>-87 ( 87) [000] d..2 82316.564403: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79734          <idle>-0     (-----) [002] dnh5 82316.564414: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79735          <idle>-0     (-----) [000] d..1 82316.564415: cpu_idle: state=0 cpu_id=0
79736          <idle>-0     (-----) [002] .n.1 82316.564423: cpu_idle: state=4294967295 cpu_id=2
79737          <idle>-0     (-----) [002] d..2 82316.564435: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
79738<...>-86 ( 86) [002] d..2 82316.564471: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79739          <idle>-0     (-----) [002] d..1 82316.564482: cpu_idle: state=0 cpu_id=2
79740          <idle>-0     (-----) [005] ...1 82316.564698: cpu_idle: state=4294967295 cpu_id=5
79741          <idle>-0     (-----) [005] d..1 82316.564701: cpu_idle: state=0 cpu_id=5
79742          <idle>-0     (-----) [002] d.h4 82316.566106: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79743          <idle>-0     (-----) [005] dnh2 82316.566127: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79744          <idle>-0     (-----) [005] .n.1 82316.566131: cpu_idle: state=4294967295 cpu_id=5
79745          <idle>-0     (-----) [005] d..2 82316.566140: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79746          <idle>-0     (-----) [002] d..2 82316.566144: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
79747          <idle>-0     (-----) [002] dn.3 82316.566159: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
79748          <idle>-0     (-----) [002] .n.1 82316.566164: cpu_idle: state=4294967295 cpu_id=2
79749          <idle>-0     (-----) [002] d..2 82316.566179: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
79750<...>-5340 ( 788) [005] d..1 82316.566192: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
79751          <idle>-0     (-----) [000] dnh2 82316.566217: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
79752     ksoftirqd/2-26    (   26) [002] d..2 82316.566218: 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
79753          <idle>-0     (-----) [000] .n.1 82316.566223: cpu_idle: state=4294967295 cpu_id=0
79754          <idle>-0     (-----) [002] d..1 82316.566227: cpu_idle: state=0 cpu_id=2
79755          <idle>-0     (-----) [000] d..2 82316.566235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
79756<...>-5340 ( 788) [005] ...1 82316.566286: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
79757<...>-5340 ( 788) [005] ...1 82316.566290: tracing_mark_write: E|788
79758 neuralnetworks@-13088 (  788) [000] d..2 82316.566305: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79759<...>-5340 ( 788) [005] .... 82316.566307: binder_transaction: transaction=1570772 dest_node=1570770 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
79760<...>-5340 ( 788) [005] .... 82316.566310: binder_transaction_alloc_buf: transaction=1570772 data_size=60 offsets_size=0
79761<...>-5340 ( 788) [005] d..4 82316.566313: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
79762          <idle>-0     (-----) [000] d..1 82316.566314: cpu_idle: state=0 cpu_id=0
79763<...>-5340 ( 788) [005] d..5 82316.566326: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
79764          <idle>-0     (-----) [004] .n.1 82316.566331: cpu_idle: state=4294967295 cpu_id=4
79765          <idle>-0     (-----) [004] d..2 82316.566339: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
79766           <...>-27571 (-----) [004] .... 82316.566344: binder_transaction_received: transaction=1570772
79767<...>-5340 ( 788) [005] ...1 82316.566348: tracing_mark_write: E|788
79768<...>-5340 ( 788) [005] .... 82316.566355: binder_transaction: transaction=1570773 dest_node=0 dest_proc=27550 dest_thread=27713 reply=1 flags=0x0 code=0x0
79769<...>-5340 ( 788) [005] .... 82316.566357: binder_transaction_alloc_buf: transaction=1570773 data_size=8 offsets_size=0
79770<...>-5340 ( 788) [005] d..2 82316.566359: sched_waking: comm=id.nn.benchmark pid=27713 prio=110 target_cpu=005
79771           <...>-27571 (-----) [004] ...1 82316.566362: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
79772<...>-5340 ( 788) [005] d..3 82316.566366: sched_wakeup: comm=id.nn.benchmark pid=27713 prio=110 target_cpu=005
79773           <...>-27571 (-----) [004] ...1 82316.566368: tracing_mark_write: E|27550
79774<...>-5340 ( 788) [005] .... 82316.566368: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
79775           <...>-27571 (-----) [004] d..2 82316.566397: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79776          <idle>-0     (-----) [004] d..1 82316.566404: cpu_idle: state=0 cpu_id=4
79777<...>-5340 ( 788) [005] d..2 82316.566410: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27713 next_prio=110
79778           <...>-27713 (-----) [005] .... 82316.566420: binder_transaction_received: transaction=1570773
79779           <...>-27713 (-----) [005] ...1 82316.566455: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
79780           <...>-27713 (-----) [005] ...1 82316.566461: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
79781           <...>-27713 (-----) [005] ...1 82316.566487: tracing_mark_write: E|27550
79782           <...>-27713 (-----) [005] ...1 82316.566492: tracing_mark_write: E|27550
79783           <...>-27713 (-----) [005] ...1 82316.566496: tracing_mark_write: E|27550
79784           <...>-27713 (-----) [005] ...1 82316.566686: tracing_mark_write: E|27550
79785           <...>-27713 (-----) [005] d..1 82316.566698: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79786           <...>-27713 (-----) [005] d..2 82316.566714: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79787          <idle>-0     (-----) [004] .n.1 82316.566719: cpu_idle: state=4294967295 cpu_id=4
79788          <idle>-0     (-----) [004] d..2 82316.566726: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
79789           <...>-27550 (-----) [004] d..2 82316.566746: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79790          <idle>-0     (-----) [004] d..1 82316.566755: cpu_idle: state=0 cpu_id=4
79791           <...>-27713 (-----) [005] d..1 82316.566801: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79792           <...>-27713 (-----) [005] d..2 82316.566810: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
79793          <idle>-0     (-----) [004] .n.1 82316.566815: cpu_idle: state=4294967295 cpu_id=4
79794          <idle>-0     (-----) [004] d..2 82316.566823: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
79795           <...>-27713 (-----) [005] d..2 82316.566848: sched_switch: prev_comm=id.nn.benchmark prev_pid=27713 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
79796           <...>-27550 (-----) [004] ...1 82316.566869: tracing_mark_write: E|27550
79797           <...>-27550 (-----) [004] ...1 82316.566874: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
79798          <idle>-0     (-----) [005] d..1 82316.566876: cpu_idle: state=0 cpu_id=5
79799           <...>-27550 (-----) [004] ...1 82316.566880: tracing_mark_write: E|27550
79800           <...>-27550 (-----) [004] ...1 82316.566884: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
79801           <...>-27550 (-----) [004] ...1 82316.566889: tracing_mark_write: E|27550
79802           <...>-27550 (-----) [004] ...1 82316.566893: tracing_mark_write: E|27550
79803           <...>-27550 (-----) [004] ...1 82316.567007: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
79804           <...>-27550 (-----) [004] ...1 82316.567064: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
79805           <...>-27550 (-----) [004] ...1 82316.567070: tracing_mark_write: E|27550
79806           <...>-27550 (-----) [004] ...1 82316.567074: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
79807           <...>-27550 (-----) [004] ...1 82316.567080: tracing_mark_write: E|27550
79808           <...>-27550 (-----) [004] ...1 82316.567084: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
79809           <...>-27550 (-----) [004] ...1 82316.567088: tracing_mark_write: E|27550
79810           <...>-27550 (-----) [004] ...1 82316.567093: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
79811          <idle>-0     (-----) [005] .n.1 82316.567183: cpu_idle: state=4294967295 cpu_id=5
79812           <...>-27550 (-----) [004] ...1 82316.567185: tracing_mark_write: E|27550
79813           <...>-27550 (-----) [004] ...1 82316.567189: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
79814          <idle>-0     (-----) [005] d..2 82316.567192: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27714 next_prio=110
79815           <...>-27550 (-----) [004] d..2 82316.567206: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79816          <idle>-0     (-----) [004] d..1 82316.567221: cpu_idle: state=0 cpu_id=4
79817           <...>-27714 (-----) [005] ...1 82316.567254: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
79818           <...>-27714 (-----) [005] ...1 82316.567269: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
79819           <...>-27714 (-----) [005] ...1 82316.567273: tracing_mark_write: E|27550
79820           <...>-27714 (-----) [005] .... 82316.567293: binder_transaction: transaction=1570774 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
79821           <...>-27714 (-----) [005] .... 82316.567297: binder_transaction_alloc_buf: transaction=1570774 data_size=48 offsets_size=0
79822           <...>-27714 (-----) [005] ...2 82316.567300: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
79823           <...>-27714 (-----) [005] d..4 82316.567302: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
79824           <...>-27714 (-----) [005] dn.5 82316.567313: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
79825           <...>-27714 (-----) [005] d..2 82316.567319: sched_switch: prev_comm=id.nn.benchmark prev_pid=27714 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
79826<...>-770 ( 770) [005] .... 82316.567329: binder_transaction_received: transaction=1570774
79827<...>-770 ( 770) [005] ...1 82316.567350: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
79828<...>-770 ( 770) [005] d..2 82316.567422: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
79829          <idle>-0     (-----) [000] dnh2 82316.567450: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
79830          <idle>-0     (-----) [000] .n.1 82316.567457: cpu_idle: state=4294967295 cpu_id=0
79831<...>-770 ( 770) [005] ...1 82316.567462: tracing_mark_write: E|770
79832          <idle>-0     (-----) [000] d..2 82316.567466: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
79833<...>-770 ( 770) [005] .... 82316.567470: binder_transaction: transaction=1570775 dest_node=0 dest_proc=27550 dest_thread=27714 reply=1 flags=0x0 code=0x0
79834<...>-770 ( 770) [005] .... 82316.567473: binder_transaction_alloc_buf: transaction=1570775 data_size=168 offsets_size=32
79835<...>-770 ( 770) [005] .... 82316.567479: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
79836<...>-770 ( 770) [005] d..2 82316.567515: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27714 next_prio=110
79837           <...>-27714 (-----) [005] .... 82316.567526: binder_transaction_received: transaction=1570775
79838<...>-581 ( 571) [000] d..2 82316.567551: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79839          <idle>-0     (-----) [000] d..1 82316.567562: cpu_idle: state=0 cpu_id=0
79840           <...>-27714 (-----) [005] ...1 82316.567595: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
79841           <...>-27714 (-----) [005] ...1 82316.567600: tracing_mark_write: E|27550
79842           <...>-27714 (-----) [005] .... 82316.567615: binder_transaction: transaction=1570776 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
79843           <...>-27714 (-----) [005] .... 82316.567618: binder_transaction_alloc_buf: transaction=1570776 data_size=48 offsets_size=0
79844           <...>-27714 (-----) [005] ...2 82316.567620: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
79845           <...>-27714 (-----) [005] d..4 82316.567623: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
79846           <...>-27714 (-----) [005] dn.5 82316.567633: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
79847           <...>-27714 (-----) [005] d..2 82316.567639: sched_switch: prev_comm=id.nn.benchmark prev_pid=27714 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
79848<...>-770 ( 770) [005] .... 82316.567648: binder_transaction_received: transaction=1570776
79849<...>-770 ( 770) [005] ...1 82316.567665: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
79850<...>-770 ( 770) [005] d..2 82316.567724: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
79851          <idle>-0     (-----) [000] dnh2 82316.567748: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
79852          <idle>-0     (-----) [000] .n.1 82316.567755: cpu_idle: state=4294967295 cpu_id=0
79853<...>-770 ( 770) [005] ...1 82316.567758: tracing_mark_write: E|770
79854          <idle>-0     (-----) [000] d..2 82316.567764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
79855<...>-770 ( 770) [005] .... 82316.567766: binder_transaction: transaction=1570777 dest_node=0 dest_proc=27550 dest_thread=27714 reply=1 flags=0x0 code=0x0
79856<...>-770 ( 770) [005] .... 82316.567769: binder_transaction_alloc_buf: transaction=1570777 data_size=168 offsets_size=32
79857<...>-770 ( 770) [005] .... 82316.567774: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
79858<...>-770 ( 770) [005] d..2 82316.567808: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27714 next_prio=110
79859           <...>-27714 (-----) [005] .... 82316.567818: binder_transaction_received: transaction=1570777
79860<...>-581 ( 571) [000] d..2 82316.567825: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79861          <idle>-0     (-----) [000] d..1 82316.567836: cpu_idle: state=0 cpu_id=0
79862          <idle>-0     (-----) [000] d.h5 82316.568006: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79863          <idle>-0     (-----) [000] d.h6 82316.568027: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79864          <idle>-0     (-----) [000] d.h5 82316.568032: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
79865          <idle>-0     (-----) [003] .n.1 82316.568035: cpu_idle: state=4294967295 cpu_id=3
79866          <idle>-0     (-----) [000] d.h6 82316.568046: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
79867          <idle>-0     (-----) [003] d..2 82316.568048: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
79868          <idle>-0     (-----) [002] .n.1 82316.568052: cpu_idle: state=4294967295 cpu_id=2
79869          <idle>-0     (-----) [002] d..2 82316.568061: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
79870          <idle>-0     (-----) [000] ...1 82316.568063: cpu_idle: state=4294967295 cpu_id=0
79871          <idle>-0     (-----) [000] d..1 82316.568069: cpu_idle: state=0 cpu_id=0
79872  crtc_event:111-322   (  322) [003] d..2 82316.568086: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79873           <...>-27714 (-----) [005] ...1 82316.568088: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
79874          <idle>-0     (-----) [003] d..1 82316.568097: cpu_idle: state=0 cpu_id=3
79875           <...>-27714 (-----) [005] ...1 82316.568098: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
79876           <...>-27714 (-----) [005] ...1 82316.568102: tracing_mark_write: E|27550
79877           <...>-27714 (-----) [005] .... 82316.568161: binder_transaction: transaction=1570778 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
79878           <...>-27714 (-----) [005] .... 82316.568164: binder_transaction_alloc_buf: transaction=1570778 data_size=556 offsets_size=104
79879           <...>-27714 (-----) [005] ...2 82316.568177: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
79880           <...>-27714 (-----) [005] d..4 82316.568180: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79881           <...>-27714 (-----) [005] dn.5 82316.568191: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79882           <...>-27714 (-----) [005] d..2 82316.568198: sched_switch: prev_comm=id.nn.benchmark prev_pid=27714 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79883<...>-5340 ( 788) [005] .... 82316.568208: binder_transaction_received: transaction=1570778
79884 crtc_commit:111-321   (  321) [002] d..2 82316.568215: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
79885          <idle>-0     (-----) [002] d..1 82316.568224: cpu_idle: state=0 cpu_id=2
79886<...>-5340 ( 788) [005] ...1 82316.568253: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
79887<...>-5340 ( 788) [005] d..2 82316.568297: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79888<...>-5340 ( 788) [005] d..2 82316.568323: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27714 next_prio=110
79889          <idle>-0     (-----) [000] dnh2 82316.568326: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79890          <idle>-0     (-----) [000] .n.1 82316.568332: cpu_idle: state=4294967295 cpu_id=0
79891          <idle>-0     (-----) [000] d..2 82316.568342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
79892           <...>-27714 (-----) [005] d..2 82316.568345: sched_switch: prev_comm=id.nn.benchmark prev_pid=27714 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79893          <idle>-0     (-----) [005] d..1 82316.568363: cpu_idle: state=0 cpu_id=5
79894<...>-87 ( 87) [000] d..2 82316.568388: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79895          <idle>-0     (-----) [002] d.h4 82316.568396: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79896          <idle>-0     (-----) [000] d..1 82316.568397: cpu_idle: state=0 cpu_id=0
79897          <idle>-0     (-----) [002] dnh5 82316.568415: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79898          <idle>-0     (-----) [002] .n.1 82316.568425: cpu_idle: state=4294967295 cpu_id=2
79899          <idle>-0     (-----) [002] d..2 82316.568435: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
79900          <idle>-0     (-----) [000] d.s2 82316.568468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
79901          <idle>-0     (-----) [000] dns3 82316.568486: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
79902<...>-86 ( 86) [002] d.H5 82316.568491: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79903          <idle>-0     (-----) [000] .n.1 82316.568502: cpu_idle: state=4294967295 cpu_id=0
79904          <idle>-0     (-----) [000] d..2 82316.568512: 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
79905          <idle>-0     (-----) [005] dnh2 82316.568513: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79906          <idle>-0     (-----) [005] .n.1 82316.568518: cpu_idle: state=4294967295 cpu_id=5
79907     rcu_preempt-7     (    7) [000] d..2 82316.568524: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
79908          <idle>-0     (-----) [005] d..2 82316.568527: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79909<...>-86 ( 86) [002] d.s4 82316.568531: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79910     rcu_preempt-7     (    7) [000] d..3 82316.568546: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
79911<...>-86 ( 86) [002] d.s5 82316.568549: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79912<...>-86 ( 86) [002] d.s3 82316.568552: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
79913          <idle>-0     (-----) [003] .n.1 82316.568554: cpu_idle: state=4294967295 cpu_id=3
79914     rcu_preempt-7     (    7) [000] d..2 82316.568562: 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
79915          <idle>-0     (-----) [003] d..2 82316.568566: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
79916         rcuop/4-45    (   45) [000] d..2 82316.568568: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
79917<...>-5340 ( 788) [005] d..1 82316.568579: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
79918         rcuop/4-45    (   45) [000] d..3 82316.568585: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
79919  crtc_event:111-322   (  322) [003] d..2 82316.568600: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79920<...>-86 ( 86) [002] d.s4 82316.568606: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
79921          <idle>-0     (-----) [003] d..1 82316.568610: cpu_idle: state=0 cpu_id=3
79922         rcuop/4-45    (   45) [000] d..2 82316.568617: 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
79923<...>-86 ( 86) [002] d.s4 82316.568632: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
79924          <idle>-0     (-----) [003] dnh2 82316.568646: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
79925          <idle>-0     (-----) [003] .n.1 82316.568652: cpu_idle: state=4294967295 cpu_id=3
79926          <idle>-0     (-----) [003] d..2 82316.568664: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
79927<...>-86 ( 86) [002] d.s5 82316.568667: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
79928<...>-86 ( 86) [002] d..2 82316.568709: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
79929 neuralnetworks@-13088 (  788) [003] d..2 82316.568736: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
79930         rcuop/5-53    (   53) [000] d..2 82316.568755: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79931<...>-8 ( 8) [003] d..2 82316.568770: 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
79932          <idle>-0     (-----) [000] d..1 82316.568771: cpu_idle: state=0 cpu_id=0
79933<...>-5340 ( 788) [005] d..2 82316.568779: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79934          <idle>-0     (-----) [003] d..1 82316.568784: cpu_idle: state=0 cpu_id=3
79935          <idle>-0     (-----) [000] dnh2 82316.568803: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
79936<...>-5340 ( 788) [005] d..2 82316.568806: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
79937          <idle>-0     (-----) [000] .n.1 82316.568810: cpu_idle: state=4294967295 cpu_id=0
79938          <idle>-0     (-----) [000] d..2 82316.568822: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
79939          <idle>-0     (-----) [005] d..1 82316.568836: cpu_idle: state=0 cpu_id=5
79940          <idle>-0     (-----) [005] ...1 82316.568848: cpu_idle: state=4294967295 cpu_id=5
79941          <idle>-0     (-----) [005] d..1 82316.568851: cpu_idle: state=0 cpu_id=5
79942  kworker/u16:15-1311  ( 1311) [002] d.h5 82316.568859: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
79943<...>-87 ( 87) [000] d..2 82316.568865: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79944          <idle>-0     (-----) [000] d..1 82316.568878: cpu_idle: state=0 cpu_id=0
79945  kworker/u16:15-1311  ( 1311) [002] d.h6 82316.568889: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
79946          <idle>-0     (-----) [000] .n.1 82316.568894: cpu_idle: state=4294967295 cpu_id=0
79947          <idle>-0     (-----) [000] d..2 82316.568906: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
79948<...>-86 ( 86) [000] d..2 82316.568960: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
79949          <idle>-0     (-----) [000] d..1 82316.568983: cpu_idle: state=0 cpu_id=0
79950  kworker/u16:15-1311  ( 1311) [002] d..2 82316.569012: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79951          <idle>-0     (-----) [002] d..1 82316.569029: cpu_idle: state=0 cpu_id=2
79952          <idle>-0     (-----) [000] d.h5 82316.570333: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
79953          <idle>-0     (-----) [000] d.h6 82316.570352: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
79954          <idle>-0     (-----) [002] .n.1 82316.570358: cpu_idle: state=4294967295 cpu_id=2
79955          <idle>-0     (-----) [000] ...1 82316.570367: cpu_idle: state=4294967295 cpu_id=0
79956          <idle>-0     (-----) [002] d..2 82316.570370: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
79957          <idle>-0     (-----) [000] d..1 82316.570372: cpu_idle: state=0 cpu_id=0
79958 crtc_commit:111-321   (  321) [002] d..2 82316.570455: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
79959          <idle>-0     (-----) [002] d..1 82316.570469: cpu_idle: state=0 cpu_id=2
79960          <idle>-0     (-----) [002] d.h4 82316.570592: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79961          <idle>-0     (-----) [005] dnh2 82316.570612: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
79962          <idle>-0     (-----) [005] .n.1 82316.570616: cpu_idle: state=4294967295 cpu_id=5
79963          <idle>-0     (-----) [005] d..2 82316.570624: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
79964          <idle>-0     (-----) [000] d.h5 82316.570632: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79965          <idle>-0     (-----) [002] ...1 82316.570636: cpu_idle: state=4294967295 cpu_id=2
79966          <idle>-0     (-----) [002] d..1 82316.570642: cpu_idle: state=0 cpu_id=2
79967          <idle>-0     (-----) [000] d.h6 82316.570647: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
79968          <idle>-0     (-----) [003] .n.1 82316.570653: cpu_idle: state=4294967295 cpu_id=3
79969          <idle>-0     (-----) [000] ...1 82316.570663: cpu_idle: state=4294967295 cpu_id=0
79970          <idle>-0     (-----) [003] d..2 82316.570665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
79971          <idle>-0     (-----) [000] d..1 82316.570668: cpu_idle: state=0 cpu_id=0
79972<...>-5340 ( 788) [005] d..1 82316.570672: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
79973  crtc_event:111-322   (  322) [003] d..2 82316.570701: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79974          <idle>-0     (-----) [003] dnh3 82316.570714: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
79975          <idle>-0     (-----) [003] d..2 82316.570757: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
79976<...>-5340 ( 788) [005] ...1 82316.570769: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
79977<...>-5340 ( 788) [005] ...1 82316.570773: tracing_mark_write: E|788
79978<...>-5340 ( 788) [005] .... 82316.570788: binder_transaction: transaction=1570781 dest_node=1570779 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
79979<...>-5340 ( 788) [005] .... 82316.570791: binder_transaction_alloc_buf: transaction=1570781 data_size=60 offsets_size=0
79980 neuralnetworks@-13088 (  788) [003] d..2 82316.570792: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
79981<...>-5340 ( 788) [005] d..4 82316.570794: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
79982          <idle>-0     (-----) [003] d..1 82316.570805: cpu_idle: state=0 cpu_id=3
79983<...>-5340 ( 788) [005] d..5 82316.570806: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
79984          <idle>-0     (-----) [004] .n.1 82316.570812: cpu_idle: state=4294967295 cpu_id=4
79985          <idle>-0     (-----) [004] d..2 82316.570821: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
79986           <...>-27571 (-----) [004] .... 82316.570826: binder_transaction_received: transaction=1570781
79987<...>-5340 ( 788) [005] ...1 82316.570829: tracing_mark_write: E|788
79988<...>-5340 ( 788) [005] .... 82316.570835: binder_transaction: transaction=1570782 dest_node=0 dest_proc=27550 dest_thread=27714 reply=1 flags=0x0 code=0x0
79989<...>-5340 ( 788) [005] .... 82316.570837: binder_transaction_alloc_buf: transaction=1570782 data_size=8 offsets_size=0
79990<...>-5340 ( 788) [005] d..2 82316.570839: sched_waking: comm=id.nn.benchmark pid=27714 prio=110 target_cpu=005
79991           <...>-27571 (-----) [004] ...1 82316.570844: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
79992<...>-5340 ( 788) [005] d..3 82316.570846: sched_wakeup: comm=id.nn.benchmark pid=27714 prio=110 target_cpu=005
79993<...>-5340 ( 788) [005] .... 82316.570847: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
79994           <...>-27571 (-----) [004] ...1 82316.570850: tracing_mark_write: E|27550
79995           <...>-27571 (-----) [004] d..2 82316.570878: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
79996          <idle>-0     (-----) [004] d..1 82316.570885: cpu_idle: state=0 cpu_id=4
79997<...>-5340 ( 788) [005] d..2 82316.570889: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27714 next_prio=110
79998           <...>-27714 (-----) [005] .... 82316.570899: binder_transaction_received: transaction=1570782
79999           <...>-27714 (-----) [005] ...1 82316.570935: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
80000           <...>-27714 (-----) [005] ...1 82316.570942: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
80001           <...>-27714 (-----) [005] ...1 82316.570968: tracing_mark_write: E|27550
80002           <...>-27714 (-----) [005] ...1 82316.570972: tracing_mark_write: E|27550
80003           <...>-27714 (-----) [005] ...1 82316.570976: tracing_mark_write: E|27550
80004           <...>-27714 (-----) [005] ...1 82316.571167: tracing_mark_write: E|27550
80005           <...>-27714 (-----) [005] d..1 82316.571181: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80006           <...>-27714 (-----) [005] d..2 82316.571197: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80007          <idle>-0     (-----) [004] .n.1 82316.571202: cpu_idle: state=4294967295 cpu_id=4
80008          <idle>-0     (-----) [004] d..2 82316.571209: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
80009           <...>-27550 (-----) [004] d..2 82316.571229: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80010          <idle>-0     (-----) [004] d..1 82316.571238: cpu_idle: state=0 cpu_id=4
80011           <...>-27714 (-----) [005] d..1 82316.571284: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80012           <...>-27714 (-----) [005] d..2 82316.571293: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80013          <idle>-0     (-----) [004] .n.1 82316.571299: cpu_idle: state=4294967295 cpu_id=4
80014          <idle>-0     (-----) [004] d..2 82316.571306: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
80015           <...>-27714 (-----) [005] d..2 82316.571331: sched_switch: prev_comm=id.nn.benchmark prev_pid=27714 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
80016           <...>-27550 (-----) [004] ...1 82316.571340: tracing_mark_write: E|27550
80017           <...>-27550 (-----) [004] ...1 82316.571345: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
80018           <...>-27550 (-----) [004] ...1 82316.571350: tracing_mark_write: E|27550
80019          <idle>-0     (-----) [005] d..1 82316.571352: cpu_idle: state=0 cpu_id=5
80020           <...>-27550 (-----) [004] ...1 82316.571354: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
80021           <...>-27550 (-----) [004] ...1 82316.571358: tracing_mark_write: E|27550
80022           <...>-27550 (-----) [004] ...1 82316.571362: tracing_mark_write: E|27550
80023           <...>-27550 (-----) [004] ...1 82316.571475: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
80024           <...>-27550 (-----) [004] ...1 82316.571533: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
80025           <...>-27550 (-----) [004] ...1 82316.571539: tracing_mark_write: E|27550
80026           <...>-27550 (-----) [004] ...1 82316.571542: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
80027           <...>-27550 (-----) [004] ...1 82316.571548: tracing_mark_write: E|27550
80028           <...>-27550 (-----) [004] ...1 82316.571551: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
80029           <...>-27550 (-----) [004] ...1 82316.571556: tracing_mark_write: E|27550
80030           <...>-27550 (-----) [004] ...1 82316.571559: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
80031          <idle>-0     (-----) [005] .n.1 82316.571650: cpu_idle: state=4294967295 cpu_id=5
80032           <...>-27550 (-----) [004] ...1 82316.571652: tracing_mark_write: E|27550
80033           <...>-27550 (-----) [004] ...1 82316.571656: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
80034          <idle>-0     (-----) [005] d..2 82316.571659: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27715 next_prio=110
80035           <...>-27550 (-----) [004] d..2 82316.571673: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80036          <idle>-0     (-----) [004] d..1 82316.571687: cpu_idle: state=0 cpu_id=4
80037           <...>-27715 (-----) [005] ...1 82316.571719: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
80038           <...>-27715 (-----) [005] ...1 82316.571733: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
80039           <...>-27715 (-----) [005] ...1 82316.571737: tracing_mark_write: E|27550
80040           <...>-27715 (-----) [005] .... 82316.571758: binder_transaction: transaction=1570783 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
80041           <...>-27715 (-----) [005] .... 82316.571761: binder_transaction_alloc_buf: transaction=1570783 data_size=48 offsets_size=0
80042           <...>-27715 (-----) [005] ...2 82316.571764: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
80043           <...>-27715 (-----) [005] d..4 82316.571767: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
80044           <...>-27715 (-----) [005] dn.5 82316.571778: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
80045           <...>-27715 (-----) [005] d..2 82316.571871: sched_switch: prev_comm=id.nn.benchmark prev_pid=27715 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
80046<...>-770 ( 770) [005] .... 82316.571881: binder_transaction_received: transaction=1570783
80047<...>-770 ( 770) [005] ...1 82316.571904: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
80048<...>-770 ( 770) [005] d..2 82316.571977: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
80049          <idle>-0     (-----) [006] d.h2 82316.572006: sched_waking: comm=main pid=27541 prio=120 target_cpu=006
80050          <idle>-0     (-----) [000] dnh2 82316.572006: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
80051          <idle>-0     (-----) [000] .n.1 82316.572012: cpu_idle: state=4294967295 cpu_id=0
80052<...>-770 ( 770) [005] ...1 82316.572018: tracing_mark_write: E|770
80053          <idle>-0     (-----) [006] dnh3 82316.572020: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=006
80054<...>-770 ( 770) [005] .... 82316.572026: binder_transaction: transaction=1570784 dest_node=0 dest_proc=27550 dest_thread=27715 reply=1 flags=0x0 code=0x0
80055          <idle>-0     (-----) [006] .n.1 82316.572026: cpu_idle: state=4294967295 cpu_id=6
80056          <idle>-0     (-----) [000] d..2 82316.572027: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
80057<...>-770 ( 770) [005] .... 82316.572028: binder_transaction_alloc_buf: transaction=1570784 data_size=168 offsets_size=32
80058          <idle>-0     (-----) [006] d..2 82316.572034: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
80059<...>-770 ( 770) [005] .... 82316.572035: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
80060<...>-770 ( 770) [005] d..2 82316.572072: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27715 next_prio=110
80061           <...>-27715 (-----) [005] .... 82316.572082: binder_transaction_received: transaction=1570784
80062<...>-581 ( 571) [000] d..2 82316.572120: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80063          <idle>-0     (-----) [000] d..1 82316.572131: cpu_idle: state=0 cpu_id=0
80064           <...>-27715 (-----) [005] ...1 82316.572152: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
80065           <...>-27541 (-----) [006] .... 82316.572155: binder_transaction: transaction=1570785 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
80066           <...>-27715 (-----) [005] ...1 82316.572157: tracing_mark_write: E|27550
80067           <...>-27541 (-----) [006] .... 82316.572159: binder_transaction_alloc_buf: transaction=1570785 data_size=0 offsets_size=0
80068           <...>-27541 (-----) [006] d..4 82316.572164: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
80069           <...>-27715 (-----) [005] .... 82316.572173: binder_transaction: transaction=1570786 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
80070           <...>-27715 (-----) [005] .... 82316.572176: binder_transaction_alloc_buf: transaction=1570786 data_size=48 offsets_size=0
80071           <...>-27715 (-----) [005] ...2 82316.572179: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
80072           <...>-27715 (-----) [005] d..4 82316.572181: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
80073           <...>-27541 (-----) [006] d..5 82316.572187: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
80074           <...>-27715 (-----) [005] dn.5 82316.572191: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
80075           <...>-27715 (-----) [005] d..2 82316.572221: sched_switch: prev_comm=id.nn.benchmark prev_pid=27715 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
80076           <...>-27541 (-----) [006] d..2 82316.572227: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
80077<...>-770 ( 770) [005] .... 82316.572228: binder_transaction_received: transaction=1570786
80078<...>-9062 ( 8943) [006] .... 82316.572238: binder_transaction_received: transaction=1570785
80079<...>-770 ( 770) [005] ...1 82316.572245: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
80080<...>-9062 ( 8943) [006] .... 82316.572283: binder_transaction: transaction=1570787 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
80081<...>-9062 ( 8943) [006] .... 82316.572287: binder_transaction_alloc_buf: transaction=1570787 data_size=4 offsets_size=0
80082<...>-9062 ( 8943) [006] d..2 82316.572289: sched_waking: comm=main pid=27541 prio=120 target_cpu=006
80083<...>-9062 ( 8943) [006] d..3 82316.572299: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=006
80084<...>-770 ( 770) [005] d..2 82316.572306: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
80085<...>-9062 ( 8943) [006] d..2 82316.572324: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=main next_pid=27541 next_prio=120
80086          <idle>-0     (-----) [000] dnh2 82316.572330: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
80087           <...>-27541 (-----) [006] .... 82316.572331: binder_transaction_received: transaction=1570787
80088          <idle>-0     (-----) [000] .n.1 82316.572337: cpu_idle: state=4294967295 cpu_id=0
80089<...>-770 ( 770) [005] ...1 82316.572338: tracing_mark_write: E|770
80090<...>-770 ( 770) [005] .... 82316.572346: binder_transaction: transaction=1570788 dest_node=0 dest_proc=27550 dest_thread=27715 reply=1 flags=0x0 code=0x0
80091          <idle>-0     (-----) [000] d..2 82316.572346: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
80092<...>-770 ( 770) [005] .... 82316.572348: binder_transaction_alloc_buf: transaction=1570788 data_size=168 offsets_size=32
80093<...>-770 ( 770) [005] .... 82316.572354: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
80094           <...>-27541 (-----) [006] d..2 82316.572383: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
80095<...>-770 ( 770) [005] d..2 82316.572389: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27715 next_prio=110
80096          <idle>-0     (-----) [006] d..1 82316.572396: cpu_idle: state=0 cpu_id=6
80097           <...>-27715 (-----) [005] .... 82316.572400: binder_transaction_received: transaction=1570788
80098<...>-581 ( 571) [000] d..2 82316.572409: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80099          <idle>-0     (-----) [000] d..1 82316.572419: cpu_idle: state=0 cpu_id=0
80100          <idle>-0     (-----) [003] d.h2 82316.572488: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
80101          <idle>-0     (-----) [003] dnh3 82316.572507: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
80102          <idle>-0     (-----) [003] .n.1 82316.572516: cpu_idle: state=4294967295 cpu_id=3
80103          <idle>-0     (-----) [003] d..2 82316.572528: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
80104        DispSync-8879  ( 8858) [003] d..1 82316.572552: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
80105        DispSync-8879  ( 8858) [003] d..2 82316.572577: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
80106          <idle>-0     (-----) [002] .n.1 82316.572583: cpu_idle: state=4294967295 cpu_id=2
80107          <idle>-0     (-----) [002] d..2 82316.572596: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
80108        DispSync-8879  ( 8858) [003] d..2 82316.572613: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80109          <idle>-0     (-----) [003] d..1 82316.572624: cpu_idle: state=0 cpu_id=3
80110  appEventThread-8881  ( 8858) [002] d..3 82316.572669: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
80111           <...>-27715 (-----) [005] ...1 82316.572672: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
80112           <...>-27715 (-----) [005] ...1 82316.572681: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
80113           <...>-27715 (-----) [005] ...1 82316.572685: tracing_mark_write: E|27550
80114  appEventThread-8881  ( 8858) [002] d..4 82316.572695: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
80115          <idle>-0     (-----) [000] .n.1 82316.572701: cpu_idle: state=4294967295 cpu_id=0
80116          <idle>-0     (-----) [000] d..2 82316.572712: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
80117  appEventThread-8881  ( 8858) [002] d..2 82316.572745: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80118           <...>-27715 (-----) [005] .... 82316.572749: binder_transaction: transaction=1570789 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
80119           <...>-27715 (-----) [005] .... 82316.572754: binder_transaction_alloc_buf: transaction=1570789 data_size=556 offsets_size=104
80120          <idle>-0     (-----) [002] d..1 82316.572762: cpu_idle: state=0 cpu_id=2
80121           <...>-27715 (-----) [005] ...2 82316.572767: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
80122           <...>-27715 (-----) [005] d..4 82316.572770: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80123           <...>-27715 (-----) [005] dn.5 82316.572782: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80124           <...>-27715 (-----) [005] d..2 82316.572789: sched_switch: prev_comm=id.nn.benchmark prev_pid=27715 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80125<...>-5340 ( 788) [005] .... 82316.572799: binder_transaction_received: transaction=1570789
80126<...>-5340 ( 788) [005] ...1 82316.572844: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
80127<...>-5340 ( 788) [005] d..2 82316.572887: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
80128<...>-5340 ( 788) [005] d..2 82316.572912: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27715 next_prio=110
80129<...>-9105 ( 9105) [000] d.h1 82316.572921: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
80130           <...>-27715 (-----) [005] d..2 82316.572936: sched_switch: prev_comm=id.nn.benchmark prev_pid=27715 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80131          <idle>-0     (-----) [005] d..1 82316.572954: cpu_idle: state=0 cpu_id=5
80132<...>-9105 ( 9105) [000] .... 82316.573075: binder_transaction: transaction=1570792 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
80133<...>-9105 ( 9105) [000] .... 82316.573082: binder_transaction_alloc_buf: transaction=1570792 data_size=80 offsets_size=0
80134<...>-9105 ( 9105) [000] d..4 82316.573090: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
80135<...>-9105 ( 9105) [000] d..5 82316.573124: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
80136          <idle>-0     (-----) [001] .n.1 82316.573129: cpu_idle: state=4294967295 cpu_id=1
80137          <idle>-0     (-----) [001] d..2 82316.573145: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
80138<...>-13083 ( 8858) [001] .... 82316.573155: binder_transaction_received: transaction=1570792
80139<...>-9105 ( 9105) [000] d..3 82316.573165: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
80140<...>-9105 ( 9105) [000] d..4 82316.573186: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
80141          <idle>-0     (-----) [002] .n.1 82316.573193: cpu_idle: state=4294967295 cpu_id=2
80142<...>-13083 ( 8858) [001] d..1 82316.573196: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
80143          <idle>-0     (-----) [002] d..2 82316.573209: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
80144<...>-13083 ( 8858) [001] d..2 82316.573230: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
80145          <idle>-0     (-----) [003] .n.1 82316.573236: cpu_idle: state=4294967295 cpu_id=3
80146          <idle>-0     (-----) [003] d..2 82316.573244: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
80147    RenderThread-9436  ( 9105) [002] d..2 82316.573277: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80148          <idle>-0     (-----) [002] d..1 82316.573292: cpu_idle: state=0 cpu_id=2
80149<...>-13083 ( 8858) [001] d..2 82316.573297: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
80150  appEventThread-8881  ( 8858) [003] d..2 82316.573305: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80151          <idle>-0     (-----) [003] d..1 82316.573314: cpu_idle: state=0 cpu_id=3
80152<...>-9105 ( 9105) [000] d..3 82316.573317: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
80153<...>-9105 ( 9105) [000] d..4 82316.573337: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
80154<...>-87 ( 87) [001] d..2 82316.573346: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80155          <idle>-0     (-----) [002] dnh4 82316.573357: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
80156          <idle>-0     (-----) [001] d..1 82316.573364: cpu_idle: state=0 cpu_id=1
80157<...>-9105 ( 9105) [000] d..2 82316.573377: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80158          <idle>-0     (-----) [002] dnh5 82316.573390: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
80159          <idle>-0     (-----) [000] d..2 82316.573400: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
80160          <idle>-0     (-----) [002] dnh4 82316.573435: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80161          <idle>-0     (-----) [005] dnh2 82316.573457: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80162          <idle>-0     (-----) [005] .n.1 82316.573462: cpu_idle: state=4294967295 cpu_id=5
80163          <idle>-0     (-----) [005] d..2 82316.573470: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80164          <idle>-0     (-----) [002] .n.1 82316.573475: cpu_idle: state=4294967295 cpu_id=2
80165<...>-86 ( 86) [000] d..2 82316.573489: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80166          <idle>-0     (-----) [002] d..2 82316.573490: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
80167          <idle>-0     (-----) [000] d..1 82316.573500: cpu_idle: state=0 cpu_id=0
80168<...>-5340 ( 788) [005] d..1 82316.573522: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
80169    RenderThread-9436  ( 9105) [002] dnh1 82316.573564: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
80170    RenderThread-9436  ( 9105) [002] d..2 82316.573576: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
80171 neuralnetworks@-13088 (  788) [002] d..2 82316.573620: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
80172<...>-5340 ( 788) [005] d..2 82316.573685: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
80173    RenderThread-9436  ( 9105) [002] d..1 82316.573697: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
80174          <idle>-0     (-----) [001] dnh2 82316.573709: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
80175<...>-5340 ( 788) [005] d..2 82316.573711: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80176    RenderThread-9436  ( 9105) [002] d..2 82316.573715: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
80177          <idle>-0     (-----) [001] .n.1 82316.573716: cpu_idle: state=4294967295 cpu_id=1
80178          <idle>-0     (-----) [000] .n.1 82316.573721: cpu_idle: state=4294967295 cpu_id=0
80179          <idle>-0     (-----) [005] d..1 82316.573725: cpu_idle: state=0 cpu_id=5
80180          <idle>-0     (-----) [001] d..2 82316.573729: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
80181          <idle>-0     (-----) [000] d..2 82316.573732: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
80182<...>-87 ( 87) [001] d..2 82316.573769: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80183    RenderThread-9436  ( 9105) [002] d.h3 82316.573770: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
80184          <idle>-0     (-----) [001] d..1 82316.573783: cpu_idle: state=0 cpu_id=1
80185    RenderThread-9436  ( 9105) [002] d.h4 82316.573799: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
80186          <idle>-0     (-----) [001] .n.1 82316.573806: cpu_idle: state=4294967295 cpu_id=1
80187          <idle>-0     (-----) [001] d..2 82316.573818: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
80188<...>-9105 ( 9105) [000] d..2 82316.573823: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80189          <idle>-0     (-----) [000] d..1 82316.573835: cpu_idle: state=0 cpu_id=0
80190    RenderThread-9436  ( 9105) [002] .... 82316.573852: binder_transaction: transaction=1570793 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
80191    RenderThread-9436  ( 9105) [002] .... 82316.573857: binder_transaction_alloc_buf: transaction=1570793 data_size=104 offsets_size=0
80192<...>-86 ( 86) [001] d..2 82316.573859: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80193    RenderThread-9436  ( 9105) [002] d..4 82316.573862: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
80194          <idle>-0     (-----) [001] d..1 82316.573873: cpu_idle: state=0 cpu_id=1
80195    RenderThread-9436  ( 9105) [002] dn.5 82316.573881: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
80196    RenderThread-9436  ( 9105) [002] d..2 82316.573892: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
80197<...>-13083 ( 8858) [002] .... 82316.573900: binder_transaction_received: transaction=1570793
80198<...>-13083 ( 8858) [002] .... 82316.573981: binder_transaction: transaction=1570794 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
80199<...>-13083 ( 8858) [002] .... 82316.573986: binder_transaction_alloc_buf: transaction=1570794 data_size=52 offsets_size=8
80200<...>-13083 ( 8858) [002] d..2 82316.574040: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
80201    RenderThread-9436  ( 9105) [002] .... 82316.574050: binder_transaction_received: transaction=1570794
80202    RenderThread-9436  ( 9105) [002] d..2 82316.575083: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80203          <idle>-0     (-----) [002] d..1 82316.575101: cpu_idle: state=0 cpu_id=2
80204          <idle>-0     (-----) [001] ...1 82316.575130: cpu_idle: state=4294967295 cpu_id=1
80205          <idle>-0     (-----) [001] d..1 82316.575135: cpu_idle: state=0 cpu_id=1
80206          <idle>-0     (-----) [000] d.s2 82316.575141: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
80207          <idle>-0     (-----) [003] d.s2 82316.575144: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
80208          <idle>-0     (-----) [002] d.h2 82316.575162: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
80209          <idle>-0     (-----) [000] dns3 82316.575163: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
80210          <idle>-0     (-----) [003] dns3 82316.575167: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
80211          <idle>-0     (-----) [002] d.h3 82316.575174: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
80212          <idle>-0     (-----) [002] dnh3 82316.575180: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
80213          <idle>-0     (-----) [002] .n.1 82316.575190: cpu_idle: state=4294967295 cpu_id=2
80214          <idle>-0     (-----) [003] .n.1 82316.575191: cpu_idle: state=4294967295 cpu_id=3
80215          <idle>-0     (-----) [000] dnH3 82316.575196: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
80216          <idle>-0     (-----) [003] d..2 82316.575202: 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
80217          <idle>-0     (-----) [002] d..2 82316.575205: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
80218<...>-8 ( 8) [003] d..2 82316.575213: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
80219          <idle>-0     (-----) [000] dnH4 82316.575225: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
80220          <idle>-0     (-----) [001] .n.1 82316.575230: cpu_idle: state=4294967295 cpu_id=1
80221          <idle>-0     (-----) [001] d..2 82316.575243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
80222          <idle>-0     (-----) [000] .n.1 82316.575258: cpu_idle: state=4294967295 cpu_id=0
80223<...>-8 ( 8) [003] d..3 82316.575260: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
80224          <idle>-0     (-----) [000] d..2 82316.575269: 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
80225<...>-8 ( 8) [003] d..2 82316.575286: 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
80226 kgsl_worker_thr-258   (  258) [001] d..2 82316.575296: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
80227          <idle>-0     (-----) [003] d..1 82316.575298: cpu_idle: state=0 cpu_id=3
80228     rcu_preempt-7     (    7) [000] d..2 82316.575303: 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
80229          <idle>-0     (-----) [000] d..1 82316.575319: cpu_idle: state=0 cpu_id=0
80230 kgsl_worker_thr-258   (  258) [001] d..3 82316.575342: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
80231          <idle>-0     (-----) [000] .n.1 82316.575349: cpu_idle: state=4294967295 cpu_id=0
80232          <idle>-0     (-----) [000] d..2 82316.575363: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
80233 kgsl_worker_thr-258   (  258) [001] d..2 82316.575365: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
80234<...>-46 ( 46) [001] d..2 82316.575380: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
80235    RenderThread-9436  ( 9105) [002] d.h3 82316.575389: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80236<...>-46 ( 46) [001] d..3 82316.575395: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
80237          <idle>-0     (-----) [003] .n.1 82316.575402: cpu_idle: state=4294967295 cpu_id=3
80238          <idle>-0     (-----) [003] d..2 82316.575414: 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
80239          <idle>-0     (-----) [005] dnh2 82316.575415: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80240  kworker/u16:15-1311  ( 1311) [000] d..2 82316.575416: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80241          <idle>-0     (-----) [005] .n.1 82316.575420: cpu_idle: state=4294967295 cpu_id=5
80242<...>-46 ( 46) [001] d..2 82316.575424: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80243          <idle>-0     (-----) [000] d..1 82316.575428: cpu_idle: state=0 cpu_id=0
80244          <idle>-0     (-----) [005] d..2 82316.575429: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80245          <idle>-0     (-----) [001] d..1 82316.575440: cpu_idle: state=0 cpu_id=1
80246<...>-8 ( 8) [003] d..2 82316.575441: 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
80247          <idle>-0     (-----) [003] d..1 82316.575451: cpu_idle: state=0 cpu_id=3
80248<...>-5340 ( 788) [005] d..1 82316.575481: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
80249    RenderThread-9436  ( 9105) [002] .... 82316.575482: binder_transaction: transaction=1570795 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
80250    RenderThread-9436  ( 9105) [002] .... 82316.575488: binder_transaction_alloc_buf: transaction=1570795 data_size=192 offsets_size=8
80251    RenderThread-9436  ( 9105) [002] dnh1 82316.575512: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
80252    RenderThread-9436  ( 9105) [002] d..2 82316.575525: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
80253<...>-5340 ( 788) [005] ...1 82316.575583: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
80254<...>-5340 ( 788) [005] ...1 82316.575587: tracing_mark_write: E|788
80255 neuralnetworks@-13088 (  788) [002] d..2 82316.575596: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
80256<...>-5340 ( 788) [005] .... 82316.575604: binder_transaction: transaction=1570796 dest_node=1570790 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
80257    RenderThread-9436  ( 9105) [002] d..4 82316.575606: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
80258<...>-5340 ( 788) [005] .... 82316.575607: binder_transaction_alloc_buf: transaction=1570796 data_size=60 offsets_size=0
80259<...>-5340 ( 788) [005] d..4 82316.575610: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
80260    RenderThread-9436  ( 9105) [002] dn.5 82316.575618: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
80261<...>-5340 ( 788) [005] d..5 82316.575623: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
80262    RenderThread-9436  ( 9105) [002] d..2 82316.575626: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
80263          <idle>-0     (-----) [004] .n.1 82316.575629: cpu_idle: state=4294967295 cpu_id=4
80264<...>-13083 ( 8858) [002] .... 82316.575635: binder_transaction_received: transaction=1570795
80265          <idle>-0     (-----) [004] d..2 82316.575639: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
80266           <...>-27571 (-----) [004] .... 82316.575644: binder_transaction_received: transaction=1570796
80267<...>-5340 ( 788) [005] ...1 82316.575647: tracing_mark_write: E|788
80268<...>-5340 ( 788) [005] .... 82316.575653: binder_transaction: transaction=1570797 dest_node=0 dest_proc=27550 dest_thread=27715 reply=1 flags=0x0 code=0x0
80269<...>-5340 ( 788) [005] .... 82316.575655: binder_transaction_alloc_buf: transaction=1570797 data_size=8 offsets_size=0
80270<...>-5340 ( 788) [005] d..2 82316.575657: sched_waking: comm=id.nn.benchmark pid=27715 prio=110 target_cpu=005
80271           <...>-27571 (-----) [004] ...1 82316.575663: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
80272<...>-5340 ( 788) [005] d..3 82316.575664: sched_wakeup: comm=id.nn.benchmark pid=27715 prio=110 target_cpu=005
80273<...>-5340 ( 788) [005] .... 82316.575666: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
80274           <...>-27571 (-----) [004] ...1 82316.575670: tracing_mark_write: E|27550
80275           <...>-27571 (-----) [004] d..2 82316.575699: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80276          <idle>-0     (-----) [004] d..1 82316.575706: cpu_idle: state=0 cpu_id=4
80277<...>-5340 ( 788) [005] d..2 82316.575709: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27715 next_prio=110
80278           <...>-27715 (-----) [005] .... 82316.575719: binder_transaction_received: transaction=1570797
80279           <...>-27715 (-----) [005] ...1 82316.575756: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
80280           <...>-27715 (-----) [005] ...1 82316.575762: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
80281           <...>-27715 (-----) [005] ...1 82316.575789: tracing_mark_write: E|27550
80282           <...>-27715 (-----) [005] ...1 82316.575792: tracing_mark_write: E|27550
80283           <...>-27715 (-----) [005] ...1 82316.575796: tracing_mark_write: E|27550
80284<...>-13083 ( 8858) [002] .... 82316.575806: binder_transaction: transaction=1570798 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
80285<...>-13083 ( 8858) [002] .... 82316.575815: binder_transaction_alloc_buf: transaction=1570798 data_size=68 offsets_size=0
80286<...>-13083 ( 8858) [002] d..2 82316.575862: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
80287    RenderThread-9436  ( 9105) [002] .... 82316.575872: binder_transaction_received: transaction=1570798
80288           <...>-27715 (-----) [005] ...1 82316.575987: tracing_mark_write: E|27550
80289           <...>-27715 (-----) [005] d..1 82316.576000: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80290    RenderThread-9436  ( 9105) [002] d..2 82316.576012: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80291           <...>-27715 (-----) [005] d..2 82316.576018: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80292          <idle>-0     (-----) [004] .n.1 82316.576023: cpu_idle: state=4294967295 cpu_id=4
80293          <idle>-0     (-----) [004] d..2 82316.576029: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
80294          <idle>-0     (-----) [002] d..1 82316.576032: cpu_idle: state=0 cpu_id=2
80295           <...>-27550 (-----) [004] d..2 82316.576049: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80296          <idle>-0     (-----) [004] d..1 82316.576058: cpu_idle: state=0 cpu_id=4
80297           <...>-27715 (-----) [005] d..1 82316.576113: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80298           <...>-27715 (-----) [005] d..2 82316.576123: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80299          <idle>-0     (-----) [004] .n.1 82316.576127: cpu_idle: state=4294967295 cpu_id=4
80300          <idle>-0     (-----) [004] d..2 82316.576135: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
80301           <...>-27715 (-----) [005] d..2 82316.576164: sched_switch: prev_comm=id.nn.benchmark prev_pid=27715 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
80302           <...>-27550 (-----) [004] ...1 82316.576169: tracing_mark_write: E|27550
80303           <...>-27550 (-----) [004] ...1 82316.576174: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
80304           <...>-27550 (-----) [004] ...1 82316.576179: tracing_mark_write: E|27550
80305           <...>-27550 (-----) [004] ...1 82316.576183: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
80306          <idle>-0     (-----) [005] d..1 82316.576184: cpu_idle: state=0 cpu_id=5
80307           <...>-27550 (-----) [004] ...1 82316.576187: tracing_mark_write: E|27550
80308           <...>-27550 (-----) [004] ...1 82316.576192: tracing_mark_write: E|27550
80309           <...>-27550 (-----) [004] ...1 82316.576305: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
80310           <...>-27550 (-----) [004] ...1 82316.576363: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
80311           <...>-27550 (-----) [004] ...1 82316.576368: tracing_mark_write: E|27550
80312           <...>-27550 (-----) [004] ...1 82316.576371: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
80313           <...>-27550 (-----) [004] ...1 82316.576376: tracing_mark_write: E|27550
80314           <...>-27550 (-----) [004] ...1 82316.576380: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
80315           <...>-27550 (-----) [004] ...1 82316.576384: tracing_mark_write: E|27550
80316           <...>-27550 (-----) [004] ...1 82316.576388: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
80317          <idle>-0     (-----) [005] .n.1 82316.576485: cpu_idle: state=4294967295 cpu_id=5
80318           <...>-27550 (-----) [004] ...1 82316.576486: tracing_mark_write: E|27550
80319           <...>-27550 (-----) [004] ...1 82316.576491: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
80320          <idle>-0     (-----) [005] d..2 82316.576494: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27716 next_prio=110
80321          <idle>-0     (-----) [003] d.h2 82316.576498: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
80322           <...>-27550 (-----) [004] d..2 82316.576508: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80323          <idle>-0     (-----) [003] dnh3 82316.576512: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
80324          <idle>-0     (-----) [003] .n.1 82316.576521: cpu_idle: state=4294967295 cpu_id=3
80325          <idle>-0     (-----) [004] d..1 82316.576522: cpu_idle: state=0 cpu_id=4
80326          <idle>-0     (-----) [003] d..2 82316.576531: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
80327        DispSync-8879  ( 8858) [003] d..1 82316.576548: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
80328           <...>-27716 (-----) [005] ...1 82316.576554: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
80329        DispSync-8879  ( 8858) [003] d..2 82316.576566: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
80330           <...>-27716 (-----) [005] ...1 82316.576569: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
80331           <...>-27716 (-----) [005] ...1 82316.576573: tracing_mark_write: E|27550
80332          <idle>-0     (-----) [001] .n.1 82316.576573: cpu_idle: state=4294967295 cpu_id=1
80333          <idle>-0     (-----) [001] d..2 82316.576586: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
80334           <...>-27716 (-----) [005] .... 82316.576594: binder_transaction: transaction=1570799 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
80335        DispSync-8879  ( 8858) [003] d..2 82316.576598: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80336           <...>-27716 (-----) [005] .... 82316.576598: binder_transaction_alloc_buf: transaction=1570799 data_size=48 offsets_size=0
80337           <...>-27716 (-----) [005] ...2 82316.576602: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
80338           <...>-27716 (-----) [005] d..4 82316.576604: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
80339          <idle>-0     (-----) [003] d..1 82316.576611: cpu_idle: state=0 cpu_id=3
80340           <...>-27716 (-----) [005] dn.5 82316.576615: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
80341           <...>-27716 (-----) [005] d..2 82316.576622: sched_switch: prev_comm=id.nn.benchmark prev_pid=27716 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
80342   sfEventThread-8882  ( 8858) [001] d..3 82316.576632: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
80343<...>-770 ( 770) [005] .... 82316.576632: binder_transaction_received: transaction=1570799
80344   sfEventThread-8882  ( 8858) [001] d..4 82316.576653: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
80345<...>-770 ( 770) [005] ...1 82316.576658: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
80346          <idle>-0     (-----) [003] .n.1 82316.576659: cpu_idle: state=4294967295 cpu_id=3
80347          <idle>-0     (-----) [003] d..2 82316.576670: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
80348   sfEventThread-8882  ( 8858) [001] d..2 82316.576690: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80349          <idle>-0     (-----) [001] d..1 82316.576706: cpu_idle: state=0 cpu_id=1
80350<...>-770 ( 770) [005] d..2 82316.576741: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
80351  surfaceflinger-8858  ( 8858) [003] d.h1 82316.576784: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
80352<...>-770 ( 770) [005] ...1 82316.576797: tracing_mark_write: E|770
80353<...>-770 ( 770) [005] .... 82316.576805: binder_transaction: transaction=1570800 dest_node=0 dest_proc=27550 dest_thread=27716 reply=1 flags=0x0 code=0x0
80354<...>-770 ( 770) [005] .... 82316.576807: binder_transaction_alloc_buf: transaction=1570800 data_size=168 offsets_size=32
80355<...>-770 ( 770) [005] .... 82316.576814: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
80356<...>-770 ( 770) [005] d..2 82316.576850: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27716 next_prio=110
80357           <...>-27716 (-----) [005] .... 82316.576861: binder_transaction_received: transaction=1570800
80358           <...>-27716 (-----) [005] ...1 82316.576937: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
80359           <...>-27716 (-----) [005] ...1 82316.576943: tracing_mark_write: E|27550
80360           <...>-27716 (-----) [005] .... 82316.576957: binder_transaction: transaction=1570801 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
80361           <...>-27716 (-----) [005] .... 82316.576961: binder_transaction_alloc_buf: transaction=1570801 data_size=48 offsets_size=0
80362           <...>-27716 (-----) [005] ...2 82316.576963: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
80363           <...>-27716 (-----) [005] d..4 82316.576965: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
80364           <...>-27716 (-----) [005] dn.5 82316.576975: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
80365           <...>-27716 (-----) [005] d..2 82316.576982: sched_switch: prev_comm=id.nn.benchmark prev_pid=27716 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
80366<...>-770 ( 770) [005] .... 82316.576990: binder_transaction_received: transaction=1570801
80367<...>-770 ( 770) [005] ...1 82316.577007: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
80368  surfaceflinger-8858  ( 8858) [003] d..1 82316.577048: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
80369  surfaceflinger-8858  ( 8858) [003] d..2 82316.577069: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
80370          <idle>-0     (-----) [001] .n.1 82316.577076: cpu_idle: state=4294967295 cpu_id=1
80371<...>-770 ( 770) [005] ...1 82316.577086: tracing_mark_write: E|770
80372          <idle>-0     (-----) [001] d..2 82316.577087: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
80373<...>-770 ( 770) [005] .... 82316.577094: binder_transaction: transaction=1570802 dest_node=0 dest_proc=27550 dest_thread=27716 reply=1 flags=0x0 code=0x0
80374<...>-770 ( 770) [005] .... 82316.577096: binder_transaction_alloc_buf: transaction=1570802 data_size=168 offsets_size=32
80375<...>-770 ( 770) [005] .... 82316.577102: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
80376   sfEventThread-8882  ( 8858) [001] d..2 82316.577129: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80377<...>-770 ( 770) [005] d..2 82316.577137: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27716 next_prio=110
80378          <idle>-0     (-----) [001] d..1 82316.577143: cpu_idle: state=0 cpu_id=1
80379           <...>-27716 (-----) [005] .... 82316.577147: binder_transaction_received: transaction=1570802
80380          <idle>-0     (-----) [002] ...1 82316.577203: cpu_idle: state=4294967295 cpu_id=2
80381          <idle>-0     (-----) [002] d..1 82316.577208: cpu_idle: state=0 cpu_id=2
80382  surfaceflinger-8858  ( 8858) [003] ...1 82316.577279: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
80383  surfaceflinger-8858  ( 8858) [003] ...1 82316.577286: tracing_mark_write: E|8858
80384  surfaceflinger-8858  ( 8858) [003] .... 82316.577340: binder_transaction: transaction=1570803 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
80385  surfaceflinger-8858  ( 8858) [003] .... 82316.577345: binder_transaction_alloc_buf: transaction=1570803 data_size=540 offsets_size=96
80386  surfaceflinger-8858  ( 8858) [003] ...2 82316.577372: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
80387  surfaceflinger-8858  ( 8858) [003] d..4 82316.577380: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
80388  surfaceflinger-8858  ( 8858) [003] d..5 82316.577402: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
80389          <idle>-0     (-----) [001] .n.1 82316.577408: cpu_idle: state=4294967295 cpu_id=1
80390          <idle>-0     (-----) [001] d..2 82316.577419: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
80391           <...>-27716 (-----) [005] ...1 82316.577423: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
80392  surfaceflinger-8858  ( 8858) [003] d..2 82316.577425: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
80393 [email protected]   (  619) [001] .... 82316.577429: binder_transaction_received: transaction=1570803
80394           <...>-27716 (-----) [005] ...1 82316.577432: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
80395           <...>-27716 (-----) [005] ...1 82316.577436: tracing_mark_write: E|27550
80396 [email protected]   (  619) [001] ...1 82316.577474: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
80397           <...>-27716 (-----) [005] .... 82316.577497: binder_transaction: transaction=1570804 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
80398           <...>-27716 (-----) [005] .... 82316.577500: binder_transaction_alloc_buf: transaction=1570804 data_size=556 offsets_size=104
80399           <...>-27716 (-----) [005] ...2 82316.577515: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
80400           <...>-27716 (-----) [005] d..4 82316.577517: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80401           <...>-27716 (-----) [005] dn.5 82316.577529: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80402           <...>-27716 (-----) [005] d..2 82316.577536: sched_switch: prev_comm=id.nn.benchmark prev_pid=27716 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80403<...>-5340 ( 788) [005] .... 82316.577546: binder_transaction_received: transaction=1570804
80404<...>-581 ( 571) [003] d..2 82316.577558: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80405          <idle>-0     (-----) [003] d..1 82316.577578: cpu_idle: state=0 cpu_id=3
80406 [email protected]   (  619) [001] ...1 82316.577583: tracing_mark_write: B|619|HWCSession::PresentDisplay::
80407<...>-5340 ( 788) [005] ...1 82316.577592: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
80408<...>-5340 ( 788) [005] d..2 82316.577638: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
80409<...>-5340 ( 788) [005] d..2 82316.577663: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27716 next_prio=110
80410 [email protected]   (  619) [001] d.h1 82316.577669: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
80411           <...>-27716 (-----) [005] d..2 82316.577685: sched_switch: prev_comm=id.nn.benchmark prev_pid=27716 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80412          <idle>-0     (-----) [005] d..1 82316.577702: cpu_idle: state=0 cpu_id=5
80413 [email protected]   (  619) [001] ...1 82316.577796: tracing_mark_write: B|619|HWDeviceDRM::Commit::
80414 [email protected]   (  619) [001] ...1 82316.577812: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
80415 [email protected]   (  619) [001] d.s2 82316.578493: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
80416 [email protected]   (  619) [001] d.s3 82316.578538: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
80417 [email protected]   (  619) [001] d..2 82316.578617: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
80418 [email protected]   (  619) [001] d..3 82316.578638: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
80419          <idle>-0     (-----) [002] .n.1 82316.578644: cpu_idle: state=4294967295 cpu_id=2
80420          <idle>-0     (-----) [002] d..2 82316.578659: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
80421 [email protected]   (  619) [001] ...1 82316.578756: tracing_mark_write: E|619
80422 [email protected]   (  619) [001] ...1 82316.578764: tracing_mark_write: E|619
80423 [email protected]   (  619) [001] ...1 82316.578831: tracing_mark_write: E|619
80424 [email protected]   (  619) [001] ...1 82316.578882: tracing_mark_write: E|619
80425 [email protected]   (  619) [001] .... 82316.578898: binder_transaction: transaction=1570807 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
80426 [email protected]   (  619) [001] .... 82316.578903: binder_transaction_alloc_buf: transaction=1570807 data_size=576 offsets_size=112
80427 [email protected]   (  619) [001] d..2 82316.578925: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
80428 [email protected]   (  619) [001] d..3 82316.578944: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
80429 [email protected]   (  619) [001] .... 82316.578949: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
80430          <idle>-0     (-----) [003] .n.1 82316.578951: cpu_idle: state=4294967295 cpu_id=3
80431          <idle>-0     (-----) [003] d..2 82316.578965: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
80432  surfaceflinger-8858  ( 8858) [003] .... 82316.578974: binder_transaction_received: transaction=1570807
80433 [email protected]   (  619) [001] d..2 82316.579026: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
80434  kworker/u16:15-1311  ( 1311) [001] d..2 82316.579328: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
80435<...>-87 ( 87) [001] d.s4 82316.579369: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
80436<...>-87 ( 87) [001] d.s5 82316.579387: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
80437<...>-87 ( 87) [001] d.s5 82316.579393: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
80438 crtc_commit:111-321   (  321) [002] d..2 82316.579413: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80439          <idle>-0     (-----) [002] d..1 82316.579429: cpu_idle: state=0 cpu_id=2
80440<...>-87 ( 87) [001] d..2 82316.579431: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
80441  surfaceflinger-8858  ( 8858) [003] d..2 82316.579454: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80442          <idle>-0     (-----) [002] d.h4 82316.579457: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
80443          <idle>-0     (-----) [003] d..1 82316.579469: cpu_idle: state=0 cpu_id=3
80444          <idle>-0     (-----) [002] dnh5 82316.579485: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
80445          <idle>-0     (-----) [003] ...1 82316.579489: cpu_idle: state=4294967295 cpu_id=3
80446          <idle>-0     (-----) [003] d..1 82316.579495: cpu_idle: state=0 cpu_id=3
80447          <idle>-0     (-----) [002] .n.1 82316.579496: cpu_idle: state=4294967295 cpu_id=2
80448          <idle>-0     (-----) [002] d..2 82316.579510: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
80449<...>-86 ( 86) [002] d.h5 82316.579533: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80450  kworker/u16:15-1311  ( 1311) [001] d..2 82316.579537: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80451          <idle>-0     (-----) [005] dnh2 82316.579556: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80452          <idle>-0     (-----) [001] d..1 82316.579556: cpu_idle: state=0 cpu_id=1
80453          <idle>-0     (-----) [005] .n.1 82316.579560: cpu_idle: state=4294967295 cpu_id=5
80454          <idle>-0     (-----) [005] d..2 82316.579568: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80455<...>-86 ( 86) [002] d..2 82316.579609: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80456<...>-5340 ( 788) [005] d..1 82316.579624: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
80457          <idle>-0     (-----) [002] d..1 82316.579625: cpu_idle: state=0 cpu_id=2
80458          <idle>-0     (-----) [000] dnh2 82316.579663: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80459          <idle>-0     (-----) [000] .n.1 82316.579670: cpu_idle: state=4294967295 cpu_id=0
80460          <idle>-0     (-----) [000] d..2 82316.579682: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
80461 neuralnetworks@-13088 (  788) [000] d..2 82316.579743: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80462          <idle>-0     (-----) [000] d..1 82316.579755: cpu_idle: state=0 cpu_id=0
80463<...>-5340 ( 788) [005] d..2 82316.579785: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
80464          <idle>-0     (-----) [001] dnh2 82316.579809: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
80465<...>-5340 ( 788) [005] d..2 82316.579811: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80466          <idle>-0     (-----) [001] .n.1 82316.579817: cpu_idle: state=4294967295 cpu_id=1
80467          <idle>-0     (-----) [005] d..1 82316.579825: cpu_idle: state=0 cpu_id=5
80468          <idle>-0     (-----) [001] d..2 82316.579830: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
80469          <idle>-0     (-----) [002] d.h4 82316.579871: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
80470<...>-87 ( 87) [001] d..2 82316.579872: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80471          <idle>-0     (-----) [002] dnh5 82316.579884: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
80472          <idle>-0     (-----) [001] d..1 82316.579886: cpu_idle: state=0 cpu_id=1
80473          <idle>-0     (-----) [002] .n.1 82316.579894: cpu_idle: state=4294967295 cpu_id=2
80474          <idle>-0     (-----) [002] d..2 82316.579907: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
80475<...>-86 ( 86) [002] d..2 82316.579942: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80476          <idle>-0     (-----) [002] d..1 82316.579956: cpu_idle: state=0 cpu_id=2
80477          <idle>-0     (-----) [002] ...1 82316.581073: cpu_idle: state=4294967295 cpu_id=2
80478          <idle>-0     (-----) [002] d..1 82316.581078: cpu_idle: state=0 cpu_id=2
80479          <idle>-0     (-----) [001] ...1 82316.581566: cpu_idle: state=4294967295 cpu_id=1
80480          <idle>-0     (-----) [001] d..1 82316.581571: cpu_idle: state=0 cpu_id=1
80481          <idle>-0     (-----) [002] d.h4 82316.581593: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80482          <idle>-0     (-----) [005] dnh2 82316.581616: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80483          <idle>-0     (-----) [005] .n.1 82316.581620: cpu_idle: state=4294967295 cpu_id=5
80484          <idle>-0     (-----) [005] d..2 82316.581628: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80485          <idle>-0     (-----) [002] ...1 82316.581633: cpu_idle: state=4294967295 cpu_id=2
80486          <idle>-0     (-----) [002] d..1 82316.581640: cpu_idle: state=0 cpu_id=2
80487<...>-5340 ( 788) [005] d..1 82316.581687: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80488          <idle>-0     (-----) [000] dnh2 82316.581714: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80489          <idle>-0     (-----) [000] .n.1 82316.581720: cpu_idle: state=4294967295 cpu_id=0
80490          <idle>-0     (-----) [000] d..2 82316.581729: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
80491          <idle>-0     (-----) [003] d.s2 82316.581802: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
80492 neuralnetworks@-13088 (  788) [000] d.s1 82316.581807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
80493<...>-5340 ( 788) [005] ...1 82316.581819: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
80494          <idle>-0     (-----) [003] dns3 82316.581822: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
80495<...>-5340 ( 788) [005] ...1 82316.581824: tracing_mark_write: E|788
80496 neuralnetworks@-13088 (  788) [000] d.s2 82316.581826: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
80497          <idle>-0     (-----) [003] .n.1 82316.581834: cpu_idle: state=4294967295 cpu_id=3
80498<...>-5340 ( 788) [005] .... 82316.581840: binder_transaction: transaction=1570808 dest_node=1570805 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
80499<...>-5340 ( 788) [005] .... 82316.581843: binder_transaction_alloc_buf: transaction=1570808 data_size=60 offsets_size=0
80500          <idle>-0     (-----) [003] d..2 82316.581845: 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
80501<...>-5340 ( 788) [005] d..4 82316.581846: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
80502 neuralnetworks@-13088 (  788) [000] d..2 82316.581852: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
80503<...>-5340 ( 788) [005] d..5 82316.581859: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
80504     rcu_preempt-7     (    7) [000] d..2 82316.581863: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
80505          <idle>-0     (-----) [004] .n.1 82316.581865: cpu_idle: state=4294967295 cpu_id=4
80506          <idle>-0     (-----) [004] d..2 82316.581873: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
80507           <...>-27571 (-----) [004] .... 82316.581878: binder_transaction_received: transaction=1570808
80508<...>-5340 ( 788) [005] ...1 82316.581881: tracing_mark_write: E|788
80509<...>-8 ( 8) [003] d..2 82316.581887: 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
80510<...>-5340 ( 788) [005] .... 82316.581887: binder_transaction: transaction=1570809 dest_node=0 dest_proc=27550 dest_thread=27716 reply=1 flags=0x0 code=0x0
80511<...>-5340 ( 788) [005] .... 82316.581890: binder_transaction_alloc_buf: transaction=1570809 data_size=8 offsets_size=0
80512<...>-5340 ( 788) [005] d..2 82316.581892: sched_waking: comm=id.nn.benchmark pid=27716 prio=110 target_cpu=005
80513           <...>-27571 (-----) [004] ...1 82316.581897: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
80514<...>-5340 ( 788) [005] d..3 82316.581899: sched_wakeup: comm=id.nn.benchmark pid=27716 prio=110 target_cpu=005
80515<...>-5340 ( 788) [005] .... 82316.581901: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
80516          <idle>-0     (-----) [003] d..1 82316.581901: cpu_idle: state=0 cpu_id=3
80517           <...>-27571 (-----) [004] ...1 82316.581903: tracing_mark_write: E|27550
80518     rcu_preempt-7     (    7) [000] d..3 82316.581909: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
80519          <idle>-0     (-----) [003] .n.1 82316.581915: cpu_idle: state=4294967295 cpu_id=3
80520          <idle>-0     (-----) [003] d..2 82316.581928: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
80521           <...>-27571 (-----) [004] d..2 82316.581933: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80522         rcuop/2-29    (   29) [003] d..2 82316.581935: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
80523     rcu_preempt-7     (    7) [000] d..2 82316.581940: 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
80524          <idle>-0     (-----) [004] d..1 82316.581941: cpu_idle: state=0 cpu_id=4
80525<...>-5340 ( 788) [005] d..2 82316.581942: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27716 next_prio=110
80526           <...>-27716 (-----) [005] .... 82316.581952: binder_transaction_received: transaction=1570809
80527          <idle>-0     (-----) [000] d..1 82316.581956: cpu_idle: state=0 cpu_id=0
80528         rcuop/2-29    (   29) [003] d..3 82316.581979: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
80529          <idle>-0     (-----) [000] .n.1 82316.581985: cpu_idle: state=4294967295 cpu_id=0
80530           <...>-27716 (-----) [005] ...1 82316.581990: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
80531           <...>-27716 (-----) [005] ...1 82316.581996: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
80532          <idle>-0     (-----) [000] d..2 82316.581999: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/3 next_pid=37 next_prio=120
80533         rcuop/2-29    (   29) [003] d..2 82316.582004: 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
80534          <idle>-0     (-----) [003] d..1 82316.582017: cpu_idle: state=0 cpu_id=3
80535           <...>-27716 (-----) [005] ...1 82316.582022: tracing_mark_write: E|27550
80536           <...>-27716 (-----) [005] ...1 82316.582026: tracing_mark_write: E|27550
80537           <...>-27716 (-----) [005] ...1 82316.582029: tracing_mark_write: E|27550
80538         rcuop/3-37    (   37) [000] d..2 82316.582038: 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
80539          <idle>-0     (-----) [000] d..1 82316.582054: cpu_idle: state=0 cpu_id=0
80540           <...>-27716 (-----) [005] ...1 82316.582224: tracing_mark_write: E|27550
80541           <...>-27716 (-----) [005] d..1 82316.582237: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80542           <...>-27716 (-----) [005] d..2 82316.582253: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80543          <idle>-0     (-----) [004] .n.1 82316.582258: cpu_idle: state=4294967295 cpu_id=4
80544          <idle>-0     (-----) [004] d..2 82316.582265: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
80545           <...>-27550 (-----) [004] d..2 82316.582286: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80546          <idle>-0     (-----) [004] d..1 82316.582295: cpu_idle: state=0 cpu_id=4
80547           <...>-27716 (-----) [005] d..1 82316.582348: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80548           <...>-27716 (-----) [005] d..2 82316.582357: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80549          <idle>-0     (-----) [004] .n.1 82316.582362: cpu_idle: state=4294967295 cpu_id=4
80550          <idle>-0     (-----) [004] d..2 82316.582370: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
80551           <...>-27716 (-----) [005] d..2 82316.582397: sched_switch: prev_comm=id.nn.benchmark prev_pid=27716 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
80552           <...>-27550 (-----) [004] ...1 82316.582403: tracing_mark_write: E|27550
80553           <...>-27550 (-----) [004] ...1 82316.582408: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
80554           <...>-27550 (-----) [004] ...1 82316.582413: tracing_mark_write: E|27550
80555           <...>-27550 (-----) [004] ...1 82316.582417: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
80556          <idle>-0     (-----) [005] d..1 82316.582418: cpu_idle: state=0 cpu_id=5
80557           <...>-27550 (-----) [004] ...1 82316.582421: tracing_mark_write: E|27550
80558           <...>-27550 (-----) [004] ...1 82316.582425: tracing_mark_write: E|27550
80559           <...>-27550 (-----) [004] ...1 82316.582549: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
80560           <...>-27550 (-----) [004] ...1 82316.582607: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
80561           <...>-27550 (-----) [004] ...1 82316.582612: tracing_mark_write: E|27550
80562           <...>-27550 (-----) [004] ...1 82316.582617: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
80563           <...>-27550 (-----) [004] ...1 82316.582622: tracing_mark_write: E|27550
80564           <...>-27550 (-----) [004] ...1 82316.582626: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
80565           <...>-27550 (-----) [004] ...1 82316.582630: tracing_mark_write: E|27550
80566           <...>-27550 (-----) [004] ...1 82316.582634: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
80567          <idle>-0     (-----) [005] .n.1 82316.582727: cpu_idle: state=4294967295 cpu_id=5
80568           <...>-27550 (-----) [004] ...1 82316.582728: tracing_mark_write: E|27550
80569           <...>-27550 (-----) [004] ...1 82316.582733: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
80570          <idle>-0     (-----) [005] d..2 82316.582737: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27717 next_prio=110
80571           <...>-27550 (-----) [004] d..2 82316.582750: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80572          <idle>-0     (-----) [004] d..1 82316.582764: cpu_idle: state=0 cpu_id=4
80573           <...>-27717 (-----) [005] ...1 82316.582798: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
80574           <...>-27717 (-----) [005] ...1 82316.582813: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
80575           <...>-27717 (-----) [005] ...1 82316.582817: tracing_mark_write: E|27550
80576           <...>-27717 (-----) [005] .... 82316.582837: binder_transaction: transaction=1570810 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
80577           <...>-27717 (-----) [005] .... 82316.582842: binder_transaction_alloc_buf: transaction=1570810 data_size=48 offsets_size=0
80578           <...>-27717 (-----) [005] ...2 82316.582845: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
80579           <...>-27717 (-----) [005] d..4 82316.582847: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
80580           <...>-27717 (-----) [005] dn.5 82316.582858: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
80581           <...>-27717 (-----) [005] d..2 82316.582865: sched_switch: prev_comm=id.nn.benchmark prev_pid=27717 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
80582<...>-770 ( 770) [005] .... 82316.582874: binder_transaction_received: transaction=1570810
80583<...>-770 ( 770) [005] ...1 82316.582899: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
80584<...>-770 ( 770) [005] d..2 82316.582980: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
80585          <idle>-0     (-----) [000] dnh2 82316.583020: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
80586          <idle>-0     (-----) [000] .n.1 82316.583026: cpu_idle: state=4294967295 cpu_id=0
80587<...>-770 ( 770) [005] ...1 82316.583034: tracing_mark_write: E|770
80588          <idle>-0     (-----) [000] d..2 82316.583038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
80589<...>-770 ( 770) [005] .... 82316.583041: binder_transaction: transaction=1570811 dest_node=0 dest_proc=27550 dest_thread=27717 reply=1 flags=0x0 code=0x0
80590<...>-770 ( 770) [005] .... 82316.583044: binder_transaction_alloc_buf: transaction=1570811 data_size=168 offsets_size=32
80591<...>-770 ( 770) [005] .... 82316.583051: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
80592<...>-770 ( 770) [005] d..2 82316.583087: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27717 next_prio=110
80593           <...>-27717 (-----) [005] .... 82316.583098: binder_transaction_received: transaction=1570811
80594<...>-581 ( 571) [000] d..2 82316.583141: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80595          <idle>-0     (-----) [000] d..1 82316.583157: cpu_idle: state=0 cpu_id=0
80596           <...>-27717 (-----) [005] ...1 82316.583169: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
80597           <...>-27717 (-----) [005] ...1 82316.583174: tracing_mark_write: E|27550
80598           <...>-27717 (-----) [005] .... 82316.583189: binder_transaction: transaction=1570812 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
80599           <...>-27717 (-----) [005] .... 82316.583193: binder_transaction_alloc_buf: transaction=1570812 data_size=48 offsets_size=0
80600           <...>-27717 (-----) [005] ...2 82316.583195: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
80601           <...>-27717 (-----) [005] d..4 82316.583197: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
80602           <...>-27717 (-----) [005] dn.5 82316.583208: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
80603           <...>-27717 (-----) [005] d..2 82316.583214: sched_switch: prev_comm=id.nn.benchmark prev_pid=27717 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
80604<...>-770 ( 770) [005] .... 82316.583222: binder_transaction_received: transaction=1570812
80605<...>-770 ( 770) [005] ...1 82316.583239: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
80606<...>-770 ( 770) [005] d..2 82316.583297: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
80607          <idle>-0     (-----) [000] dnh2 82316.583322: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
80608          <idle>-0     (-----) [000] .n.1 82316.583329: cpu_idle: state=4294967295 cpu_id=0
80609<...>-770 ( 770) [005] ...1 82316.583330: tracing_mark_write: E|770
80610<...>-770 ( 770) [005] .... 82316.583338: binder_transaction: transaction=1570813 dest_node=0 dest_proc=27550 dest_thread=27717 reply=1 flags=0x0 code=0x0
80611<...>-770 ( 770) [005] .... 82316.583341: binder_transaction_alloc_buf: transaction=1570813 data_size=168 offsets_size=32
80612          <idle>-0     (-----) [000] d..2 82316.583342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
80613<...>-770 ( 770) [005] .... 82316.583347: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
80614<...>-770 ( 770) [005] d..2 82316.583381: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27717 next_prio=110
80615           <...>-27717 (-----) [005] .... 82316.583392: binder_transaction_received: transaction=1570813
80616<...>-581 ( 571) [000] d..2 82316.583403: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80617          <idle>-0     (-----) [000] d..1 82316.583416: cpu_idle: state=0 cpu_id=0
80618           <...>-27717 (-----) [005] ...1 82316.583669: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
80619           <...>-27717 (-----) [005] ...1 82316.583679: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
80620           <...>-27717 (-----) [005] ...1 82316.583683: tracing_mark_write: E|27550
80621           <...>-27717 (-----) [005] .... 82316.583747: binder_transaction: transaction=1570814 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
80622           <...>-27717 (-----) [005] .... 82316.583750: binder_transaction_alloc_buf: transaction=1570814 data_size=556 offsets_size=104
80623           <...>-27717 (-----) [005] ...2 82316.583763: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
80624           <...>-27717 (-----) [005] d..4 82316.583766: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80625           <...>-27717 (-----) [005] dn.5 82316.583777: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80626           <...>-27717 (-----) [005] d..2 82316.583784: sched_switch: prev_comm=id.nn.benchmark prev_pid=27717 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80627<...>-5340 ( 788) [005] .... 82316.583794: binder_transaction_received: transaction=1570814
80628<...>-5340 ( 788) [005] ...1 82316.583840: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
80629<...>-5340 ( 788) [005] d..2 82316.583884: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
80630<...>-5340 ( 788) [005] d..2 82316.583920: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27717 next_prio=110
80631          <idle>-0     (-----) [000] dnh2 82316.583925: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
80632          <idle>-0     (-----) [000] .n.1 82316.583932: cpu_idle: state=4294967295 cpu_id=0
80633           <...>-27717 (-----) [005] d..2 82316.583943: sched_switch: prev_comm=id.nn.benchmark prev_pid=27717 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80634          <idle>-0     (-----) [000] d..2 82316.583945: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
80635          <idle>-0     (-----) [005] d..1 82316.583960: cpu_idle: state=0 cpu_id=5
80636<...>-87 ( 87) [000] d..2 82316.583992: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80637          <idle>-0     (-----) [002] d.h4 82316.583997: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
80638          <idle>-0     (-----) [000] d..1 82316.584004: cpu_idle: state=0 cpu_id=0
80639          <idle>-0     (-----) [002] dnh5 82316.584014: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
80640          <idle>-0     (-----) [002] .n.1 82316.584022: cpu_idle: state=4294967295 cpu_id=2
80641          <idle>-0     (-----) [002] d..2 82316.584037: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
80642<...>-86 ( 86) [002] d..2 82316.584074: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80643          <idle>-0     (-----) [002] d.h5 82316.584097: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80644          <idle>-0     (-----) [005] dnh2 82316.584119: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80645          <idle>-0     (-----) [005] .n.1 82316.584124: cpu_idle: state=4294967295 cpu_id=5
80646          <idle>-0     (-----) [005] d..2 82316.584132: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80647          <idle>-0     (-----) [002] d..1 82316.584145: cpu_idle: state=0 cpu_id=2
80648<...>-5340 ( 788) [005] d..1 82316.584187: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80649          <idle>-0     (-----) [000] dnh2 82316.584213: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80650          <idle>-0     (-----) [000] .n.1 82316.584220: cpu_idle: state=4294967295 cpu_id=0
80651          <idle>-0     (-----) [000] d..2 82316.584231: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
80652 neuralnetworks@-13088 (  788) [000] d..2 82316.584282: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80653          <idle>-0     (-----) [000] d..1 82316.584294: cpu_idle: state=0 cpu_id=0
80654<...>-5340 ( 788) [005] d..2 82316.584334: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
80655          <idle>-0     (-----) [000] dnh2 82316.584357: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
80656<...>-5340 ( 788) [005] d..2 82316.584360: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80657          <idle>-0     (-----) [000] .n.1 82316.584363: cpu_idle: state=4294967295 cpu_id=0
80658          <idle>-0     (-----) [005] d..1 82316.584374: cpu_idle: state=0 cpu_id=5
80659          <idle>-0     (-----) [000] d..2 82316.584376: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
80660<...>-87 ( 87) [000] d.h6 82316.584470: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
80661<...>-87 ( 87) [000] d.h7 82316.584494: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
80662<...>-87 ( 87) [000] d.h6 82316.584500: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
80663          <idle>-0     (-----) [003] .n.1 82316.584500: cpu_idle: state=4294967295 cpu_id=3
80664          <idle>-0     (-----) [003] d..2 82316.584511: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
80665<...>-87 ( 87) [000] d.h7 82316.584514: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
80666          <idle>-0     (-----) [002] .n.1 82316.584520: cpu_idle: state=4294967295 cpu_id=2
80667          <idle>-0     (-----) [002] d..2 82316.584532: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
80668  crtc_event:111-322   (  322) [003] d..2 82316.584547: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80669          <idle>-0     (-----) [003] d..1 82316.584558: cpu_idle: state=0 cpu_id=3
80670 crtc_commit:111-321   (  321) [002] d.h3 82316.584560: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
80671<...>-87 ( 87) [000] d..2 82316.584567: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80672          <idle>-0     (-----) [000] d..1 82316.584582: cpu_idle: state=0 cpu_id=0
80673          <idle>-0     (-----) [000] .n.1 82316.584586: cpu_idle: state=4294967295 cpu_id=0
80674 crtc_commit:111-321   (  321) [002] d.h4 82316.584588: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
80675          <idle>-0     (-----) [000] d..2 82316.584603: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
80676<...>-86 ( 86) [000] d..2 82316.584643: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80677          <idle>-0     (-----) [000] d..1 82316.584654: cpu_idle: state=0 cpu_id=0
80678 crtc_commit:111-321   (  321) [002] d..2 82316.584732: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
80679          <idle>-0     (-----) [002] d..1 82316.584743: cpu_idle: state=0 cpu_id=2
80680          <idle>-0     (-----) [002] d.s3 82316.585141: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
80681          <idle>-0     (-----) [002] d.s4 82316.585159: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
80682          <idle>-0     (-----) [003] .n.1 82316.585165: cpu_idle: state=4294967295 cpu_id=3
80683          <idle>-0     (-----) [002] d.s3 82316.585168: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
80684          <idle>-0     (-----) [003] d..2 82316.585177: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
80685          <idle>-0     (-----) [002] dns4 82316.585203: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
80686  crtc_event:111-322   (  322) [003] d..2 82316.585212: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80687          <idle>-0     (-----) [003] d..1 82316.585220: cpu_idle: state=0 cpu_id=3
80688          <idle>-0     (-----) [002] .n.1 82316.585225: cpu_idle: state=4294967295 cpu_id=2
80689          <idle>-0     (-----) [002] d..2 82316.585235: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
80690  kworker/u16:15-1311  ( 1311) [002] d..2 82316.585308: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80691          <idle>-0     (-----) [002] d..1 82316.585322: cpu_idle: state=0 cpu_id=2
80692          <idle>-0     (-----) [002] d.h4 82316.586304: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80693          <idle>-0     (-----) [005] dnh2 82316.586326: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80694          <idle>-0     (-----) [005] .n.1 82316.586331: cpu_idle: state=4294967295 cpu_id=5
80695          <idle>-0     (-----) [005] d..2 82316.586339: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80696          <idle>-0     (-----) [002] ...1 82316.586344: cpu_idle: state=4294967295 cpu_id=2
80697          <idle>-0     (-----) [002] d..1 82316.586351: cpu_idle: state=0 cpu_id=2
80698<...>-5340 ( 788) [005] d..1 82316.586389: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80699          <idle>-0     (-----) [000] dnh2 82316.586419: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80700          <idle>-0     (-----) [000] .n.1 82316.586426: cpu_idle: state=4294967295 cpu_id=0
80701          <idle>-0     (-----) [000] d..2 82316.586447: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
80702<...>-5340 ( 788) [005] ...1 82316.586485: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
80703<...>-5340 ( 788) [005] ...1 82316.586489: tracing_mark_write: E|788
80704<...>-5340 ( 788) [005] .... 82316.586505: binder_transaction: transaction=1570817 dest_node=1570815 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
80705<...>-5340 ( 788) [005] .... 82316.586508: binder_transaction_alloc_buf: transaction=1570817 data_size=60 offsets_size=0
80706 neuralnetworks@-13088 (  788) [000] d..2 82316.586509: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80707<...>-5340 ( 788) [005] d..4 82316.586511: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
80708          <idle>-0     (-----) [000] d..1 82316.586519: cpu_idle: state=0 cpu_id=0
80709<...>-5340 ( 788) [005] d..5 82316.586523: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
80710          <idle>-0     (-----) [004] .n.1 82316.586530: cpu_idle: state=4294967295 cpu_id=4
80711          <idle>-0     (-----) [004] d..2 82316.586539: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
80712           <...>-27571 (-----) [004] .... 82316.586543: binder_transaction_received: transaction=1570817
80713<...>-5340 ( 788) [005] ...1 82316.586545: tracing_mark_write: E|788
80714<...>-5340 ( 788) [005] .... 82316.586552: binder_transaction: transaction=1570818 dest_node=0 dest_proc=27550 dest_thread=27717 reply=1 flags=0x0 code=0x0
80715<...>-5340 ( 788) [005] .... 82316.586554: binder_transaction_alloc_buf: transaction=1570818 data_size=8 offsets_size=0
80716<...>-5340 ( 788) [005] d..2 82316.586556: sched_waking: comm=id.nn.benchmark pid=27717 prio=110 target_cpu=005
80717           <...>-27571 (-----) [004] ...1 82316.586561: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
80718<...>-5340 ( 788) [005] d..3 82316.586562: sched_wakeup: comm=id.nn.benchmark pid=27717 prio=110 target_cpu=005
80719<...>-5340 ( 788) [005] .... 82316.586564: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
80720           <...>-27571 (-----) [004] ...1 82316.586567: tracing_mark_write: E|27550
80721           <...>-27571 (-----) [004] d..2 82316.586596: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80722          <idle>-0     (-----) [004] d..1 82316.586604: cpu_idle: state=0 cpu_id=4
80723<...>-5340 ( 788) [005] d..2 82316.586605: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27717 next_prio=110
80724           <...>-27717 (-----) [005] .... 82316.586615: binder_transaction_received: transaction=1570818
80725           <...>-27717 (-----) [005] ...1 82316.586651: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
80726           <...>-27717 (-----) [005] ...1 82316.586658: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
80727           <...>-27717 (-----) [005] ...1 82316.586684: tracing_mark_write: E|27550
80728           <...>-27717 (-----) [005] ...1 82316.586688: tracing_mark_write: E|27550
80729           <...>-27717 (-----) [005] ...1 82316.586691: tracing_mark_write: E|27550
80730          <idle>-0     (-----) [000] d.h5 82316.586796: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
80731          <idle>-0     (-----) [000] d.h6 82316.586845: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
80732          <idle>-0     (-----) [002] .n.1 82316.586851: cpu_idle: state=4294967295 cpu_id=2
80733          <idle>-0     (-----) [000] ...1 82316.586860: cpu_idle: state=4294967295 cpu_id=0
80734          <idle>-0     (-----) [002] d..2 82316.586863: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
80735          <idle>-0     (-----) [000] d..1 82316.586866: cpu_idle: state=0 cpu_id=0
80736           <...>-27717 (-----) [005] ...1 82316.586897: tracing_mark_write: E|27550
80737           <...>-27717 (-----) [005] d..1 82316.586909: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80738           <...>-27717 (-----) [005] d..2 82316.586925: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80739          <idle>-0     (-----) [004] .n.1 82316.586930: cpu_idle: state=4294967295 cpu_id=4
80740          <idle>-0     (-----) [004] d..2 82316.586936: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
80741 crtc_commit:111-321   (  321) [002] d..2 82316.586945: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80742           <...>-27550 (-----) [004] d..2 82316.586956: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80743          <idle>-0     (-----) [002] d..1 82316.586960: cpu_idle: state=0 cpu_id=2
80744          <idle>-0     (-----) [004] d..1 82316.586965: cpu_idle: state=0 cpu_id=4
80745           <...>-27717 (-----) [005] d..1 82316.587011: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80746           <...>-27717 (-----) [005] d..2 82316.587020: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80747          <idle>-0     (-----) [004] .n.1 82316.587025: cpu_idle: state=4294967295 cpu_id=4
80748          <idle>-0     (-----) [004] d..2 82316.587033: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
80749           <...>-27717 (-----) [005] d..2 82316.587059: sched_switch: prev_comm=id.nn.benchmark prev_pid=27717 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
80750           <...>-27550 (-----) [004] ...1 82316.587079: tracing_mark_write: E|27550
80751           <...>-27550 (-----) [004] ...1 82316.587084: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
80752          <idle>-0     (-----) [005] d..1 82316.587087: cpu_idle: state=0 cpu_id=5
80753           <...>-27550 (-----) [004] ...1 82316.587090: tracing_mark_write: E|27550
80754           <...>-27550 (-----) [004] ...1 82316.587094: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
80755           <...>-27550 (-----) [004] ...1 82316.587098: tracing_mark_write: E|27550
80756          <idle>-0     (-----) [000] d.h5 82316.587098: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
80757           <...>-27550 (-----) [004] ...1 82316.587102: tracing_mark_write: E|27550
80758          <idle>-0     (-----) [000] d.h6 82316.587113: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
80759          <idle>-0     (-----) [003] .n.1 82316.587119: cpu_idle: state=4294967295 cpu_id=3
80760          <idle>-0     (-----) [003] d..2 82316.587129: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
80761          <idle>-0     (-----) [000] ...1 82316.587130: cpu_idle: state=4294967295 cpu_id=0
80762          <idle>-0     (-----) [000] d..1 82316.587134: cpu_idle: state=0 cpu_id=0
80763  crtc_event:111-322   (  322) [003] d..2 82316.587153: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80764          <idle>-0     (-----) [003] d..1 82316.587161: cpu_idle: state=0 cpu_id=3
80765           <...>-27550 (-----) [004] ...1 82316.587215: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
80766           <...>-27550 (-----) [004] ...1 82316.587273: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
80767           <...>-27550 (-----) [004] ...1 82316.587278: tracing_mark_write: E|27550
80768           <...>-27550 (-----) [004] ...1 82316.587281: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
80769           <...>-27550 (-----) [004] ...1 82316.587287: tracing_mark_write: E|27550
80770           <...>-27550 (-----) [004] ...1 82316.587291: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
80771           <...>-27550 (-----) [004] ...1 82316.587295: tracing_mark_write: E|27550
80772           <...>-27550 (-----) [004] ...1 82316.587299: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
80773          <idle>-0     (-----) [005] .n.1 82316.587382: cpu_idle: state=4294967295 cpu_id=5
80774           <...>-27550 (-----) [004] ...1 82316.587383: tracing_mark_write: E|27550
80775           <...>-27550 (-----) [004] ...1 82316.587387: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
80776          <idle>-0     (-----) [005] d..2 82316.587392: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27718 next_prio=110
80777           <...>-27550 (-----) [004] d..2 82316.587403: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80778          <idle>-0     (-----) [004] d..1 82316.587418: cpu_idle: state=0 cpu_id=4
80779           <...>-27718 (-----) [005] ...1 82316.587452: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
80780           <...>-27718 (-----) [005] ...1 82316.587467: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
80781           <...>-27718 (-----) [005] ...1 82316.587471: tracing_mark_write: E|27550
80782           <...>-27718 (-----) [005] .... 82316.587492: binder_transaction: transaction=1570819 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
80783           <...>-27718 (-----) [005] .... 82316.587495: binder_transaction_alloc_buf: transaction=1570819 data_size=48 offsets_size=0
80784           <...>-27718 (-----) [005] ...2 82316.587498: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
80785           <...>-27718 (-----) [005] d..4 82316.587501: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
80786           <...>-27718 (-----) [005] dn.5 82316.587512: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
80787           <...>-27718 (-----) [005] d..2 82316.587518: sched_switch: prev_comm=id.nn.benchmark prev_pid=27718 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
80788<...>-770 ( 770) [005] .... 82316.587528: binder_transaction_received: transaction=1570819
80789<...>-770 ( 770) [005] ...1 82316.587550: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
80790<...>-770 ( 770) [005] d..2 82316.587622: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
80791          <idle>-0     (-----) [000] dnh2 82316.587650: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
80792          <idle>-0     (-----) [000] .n.1 82316.587656: cpu_idle: state=4294967295 cpu_id=0
80793<...>-770 ( 770) [005] ...1 82316.587662: tracing_mark_write: E|770
80794          <idle>-0     (-----) [000] d..2 82316.587665: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
80795<...>-770 ( 770) [005] .... 82316.587670: binder_transaction: transaction=1570820 dest_node=0 dest_proc=27550 dest_thread=27718 reply=1 flags=0x0 code=0x0
80796<...>-770 ( 770) [005] .... 82316.587673: binder_transaction_alloc_buf: transaction=1570820 data_size=168 offsets_size=32
80797<...>-770 ( 770) [005] .... 82316.587679: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
80798<...>-770 ( 770) [005] d..2 82316.587714: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27718 next_prio=110
80799           <...>-27718 (-----) [005] .... 82316.587725: binder_transaction_received: transaction=1570820
80800<...>-581 ( 571) [000] d..2 82316.587753: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80801          <idle>-0     (-----) [000] d..1 82316.587764: cpu_idle: state=0 cpu_id=0
80802           <...>-27718 (-----) [005] ...1 82316.587793: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
80803           <...>-27718 (-----) [005] ...1 82316.587798: tracing_mark_write: E|27550
80804           <...>-27718 (-----) [005] .... 82316.587812: binder_transaction: transaction=1570821 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
80805           <...>-27718 (-----) [005] .... 82316.587815: binder_transaction_alloc_buf: transaction=1570821 data_size=48 offsets_size=0
80806           <...>-27718 (-----) [005] ...2 82316.587817: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
80807           <...>-27718 (-----) [005] d..4 82316.587820: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
80808           <...>-27718 (-----) [005] dn.5 82316.587830: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
80809           <...>-27718 (-----) [005] d..2 82316.587836: sched_switch: prev_comm=id.nn.benchmark prev_pid=27718 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
80810<...>-770 ( 770) [005] .... 82316.587844: binder_transaction_received: transaction=1570821
80811<...>-770 ( 770) [005] ...1 82316.587861: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
80812<...>-770 ( 770) [005] d..2 82316.587918: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
80813          <idle>-0     (-----) [000] dnh2 82316.587942: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
80814          <idle>-0     (-----) [000] .n.1 82316.587950: cpu_idle: state=4294967295 cpu_id=0
80815<...>-770 ( 770) [005] ...1 82316.587951: tracing_mark_write: E|770
80816<...>-770 ( 770) [005] .... 82316.587958: binder_transaction: transaction=1570822 dest_node=0 dest_proc=27550 dest_thread=27718 reply=1 flags=0x0 code=0x0
80817          <idle>-0     (-----) [000] d..2 82316.587959: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
80818<...>-770 ( 770) [005] .... 82316.587961: binder_transaction_alloc_buf: transaction=1570822 data_size=168 offsets_size=32
80819<...>-770 ( 770) [005] .... 82316.587967: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
80820<...>-770 ( 770) [005] d..2 82316.588001: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27718 next_prio=110
80821           <...>-27718 (-----) [005] .... 82316.588011: binder_transaction_received: transaction=1570822
80822<...>-581 ( 571) [000] d..2 82316.588018: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80823          <idle>-0     (-----) [000] d..1 82316.588028: cpu_idle: state=0 cpu_id=0
80824           <...>-27718 (-----) [005] ...1 82316.588284: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
80825           <...>-27718 (-----) [005] ...1 82316.588294: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
80826           <...>-27718 (-----) [005] ...1 82316.588298: tracing_mark_write: E|27550
80827           <...>-27718 (-----) [005] .... 82316.588360: binder_transaction: transaction=1570823 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
80828           <...>-27718 (-----) [005] .... 82316.588363: binder_transaction_alloc_buf: transaction=1570823 data_size=556 offsets_size=104
80829           <...>-27718 (-----) [005] ...2 82316.588376: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
80830           <...>-27718 (-----) [005] d..4 82316.588379: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80831           <...>-27718 (-----) [005] dn.5 82316.588390: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80832           <...>-27718 (-----) [005] d..2 82316.588397: sched_switch: prev_comm=id.nn.benchmark prev_pid=27718 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80833<...>-5340 ( 788) [005] .... 82316.588407: binder_transaction_received: transaction=1570823
80834          <idle>-0     (-----) [003] d.s2 82316.588466: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
80835<...>-5340 ( 788) [005] d.s2 82316.588470: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
80836          <idle>-0     (-----) [000] d.s2 82316.588470: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
80837          <idle>-0     (-----) [003] dns3 82316.588485: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
80838          <idle>-0     (-----) [000] dns3 82316.588489: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
80839          <idle>-0     (-----) [003] .n.1 82316.588505: cpu_idle: state=4294967295 cpu_id=3
80840          <idle>-0     (-----) [000] dnH2 82316.588510: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
80841          <idle>-0     (-----) [003] d..2 82316.588515: 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
80842<...>-5340 ( 788) [005] ...1 82316.588522: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
80843          <idle>-0     (-----) [002] ...1 82316.588522: cpu_idle: state=4294967295 cpu_id=2
80844<...>-8 ( 8) [003] d..2 82316.588525: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
80845          <idle>-0     (-----) [002] d..1 82316.588527: cpu_idle: state=0 cpu_id=2
80846          <idle>-0     (-----) [000] .n.1 82316.588531: cpu_idle: state=4294967295 cpu_id=0
80847          <idle>-0     (-----) [000] d..2 82316.588541: 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
80848     rcu_preempt-7     (    7) [000] d..2 82316.588562: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
80849<...>-8 ( 8) [003] d..3 82316.588565: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
80850<...>-5340 ( 788) [005] d..2 82316.588565: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
80851<...>-8 ( 8) [003] d..2 82316.588577: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
80852<...>-46 ( 46) [003] d.h2 82316.588600: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
80853<...>-46 ( 46) [003] d..2 82316.588604: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
80854<...>-5340 ( 788) [005] d..2 82316.588605: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27718 next_prio=110
80855<...>-46 ( 46) [003] d..3 82316.588618: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
80856<...>-46 ( 46) [003] d..2 82316.588628: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
80857           <...>-27718 (-----) [005] d..2 82316.588638: sched_switch: prev_comm=id.nn.benchmark prev_pid=27718 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80858<...>-87 ( 87) [003] d..2 82316.588662: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
80859          <idle>-0     (-----) [005] d..1 82316.588662: cpu_idle: state=0 cpu_id=5
80860          <idle>-0     (-----) [002] d.h4 82316.588680: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
80861<...>-8 ( 8) [003] d..2 82316.588690: 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
80862          <idle>-0     (-----) [002] dnh5 82316.588708: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
80863          <idle>-0     (-----) [002] .n.1 82316.588717: cpu_idle: state=4294967295 cpu_id=2
80864          <idle>-0     (-----) [002] d..2 82316.588732: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
80865          <idle>-0     (-----) [003] d..1 82316.588735: cpu_idle: state=0 cpu_id=3
80866<...>-86 ( 86) [002] d.h4 82316.588761: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80867          <idle>-0     (-----) [005] dnh2 82316.588781: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80868          <idle>-0     (-----) [005] .n.1 82316.588785: cpu_idle: state=4294967295 cpu_id=5
80869          <idle>-0     (-----) [005] d..2 82316.588793: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80870<...>-86 ( 86) [002] d..2 82316.588825: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80871          <idle>-0     (-----) [002] d..1 82316.588841: cpu_idle: state=0 cpu_id=2
80872<...>-5340 ( 788) [005] d..1 82316.588845: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80873  kworker/u16:15-1311  ( 1311) [000] dnh2 82316.588904: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80874  kworker/u16:15-1311  ( 1311) [000] d..2 82316.588918: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
80875          <idle>-0     (-----) [003] d.h2 82316.588950: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
80876          <idle>-0     (-----) [001] ...1 82316.588955: cpu_idle: state=4294967295 cpu_id=1
80877 neuralnetworks@-13088 (  788) [000] d..2 82316.588960: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
80878          <idle>-0     (-----) [001] d..1 82316.588963: cpu_idle: state=0 cpu_id=1
80879          <idle>-0     (-----) [003] dnh3 82316.588966: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
80880          <idle>-0     (-----) [003] .n.1 82316.588974: cpu_idle: state=4294967295 cpu_id=3
80881          <idle>-0     (-----) [003] d..2 82316.588985: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
80882<...>-5340 ( 788) [005] d..2 82316.588992: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
80883        DispSync-8879  ( 8858) [003] d.h1 82316.589017: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
80884<...>-5340 ( 788) [005] d..2 82316.589021: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
80885          <idle>-0     (-----) [005] d..1 82316.589035: cpu_idle: state=0 cpu_id=5
80886        DispSync-8879  ( 8858) [003] d..1 82316.589036: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
80887  kworker/u16:15-1311  ( 1311) [000] d..2 82316.589060: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80888        DispSync-8879  ( 8858) [003] d..2 82316.589070: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
80889          <idle>-0     (-----) [000] d..2 82316.589084: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
80890        DispSync-8879  ( 8858) [003] d..2 82316.589095: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
80891          <idle>-0     (-----) [002] d.h4 82316.589135: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
80892<...>-87 ( 87) [003] d..2 82316.589139: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80893          <idle>-0     (-----) [002] dnh5 82316.589147: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
80894          <idle>-0     (-----) [003] d..1 82316.589153: cpu_idle: state=0 cpu_id=3
80895  appEventThread-8881  ( 8858) [000] d..3 82316.589157: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
80896          <idle>-0     (-----) [002] .n.1 82316.589157: cpu_idle: state=4294967295 cpu_id=2
80897          <idle>-0     (-----) [002] d..2 82316.589169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
80898  appEventThread-8881  ( 8858) [000] d..4 82316.589190: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
80899          <idle>-0     (-----) [001] .n.1 82316.589194: cpu_idle: state=4294967295 cpu_id=1
80900<...>-86 ( 86) [002] d..2 82316.589207: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80901          <idle>-0     (-----) [001] d..2 82316.589208: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
80902          <idle>-0     (-----) [002] d..1 82316.589221: cpu_idle: state=0 cpu_id=2
80903  appEventThread-8881  ( 8858) [000] d..2 82316.589239: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80904          <idle>-0     (-----) [000] d..1 82316.589257: cpu_idle: state=0 cpu_id=0
80905          <idle>-0     (-----) [005] ...1 82316.589361: cpu_idle: state=4294967295 cpu_id=5
80906          <idle>-0     (-----) [005] d..1 82316.589365: cpu_idle: state=0 cpu_id=5
80907<...>-9105 ( 9105) [001] .... 82316.589561: binder_transaction: transaction=1570826 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
80908<...>-9105 ( 9105) [001] .... 82316.589568: binder_transaction_alloc_buf: transaction=1570826 data_size=80 offsets_size=0
80909<...>-9105 ( 9105) [001] d..4 82316.589575: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
80910<...>-9105 ( 9105) [001] d..5 82316.589609: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
80911          <idle>-0     (-----) [000] .n.1 82316.589616: cpu_idle: state=4294967295 cpu_id=0
80912          <idle>-0     (-----) [000] d..2 82316.589630: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
80913<...>-13083 ( 8858) [000] .... 82316.589639: binder_transaction_received: transaction=1570826
80914<...>-9105 ( 9105) [001] d..3 82316.589650: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
80915<...>-9105 ( 9105) [001] d..4 82316.589670: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
80916          <idle>-0     (-----) [002] .n.1 82316.589676: cpu_idle: state=4294967295 cpu_id=2
80917<...>-13083 ( 8858) [000] d..1 82316.589678: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
80918          <idle>-0     (-----) [002] d..2 82316.589689: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
80919<...>-13083 ( 8858) [000] d..2 82316.589705: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
80920          <idle>-0     (-----) [003] .n.1 82316.589711: cpu_idle: state=4294967295 cpu_id=3
80921          <idle>-0     (-----) [003] d..2 82316.589722: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
80922    RenderThread-9436  ( 9105) [002] d..2 82316.589742: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80923<...>-13083 ( 8858) [000] d..2 82316.589753: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80924          <idle>-0     (-----) [002] d..1 82316.589756: cpu_idle: state=0 cpu_id=2
80925          <idle>-0     (-----) [000] d..1 82316.589769: cpu_idle: state=0 cpu_id=0
80926  appEventThread-8881  ( 8858) [003] d..2 82316.589782: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
80927          <idle>-0     (-----) [003] d..1 82316.589794: cpu_idle: state=0 cpu_id=3
80928<...>-9105 ( 9105) [001] d..3 82316.589810: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
80929<...>-9105 ( 9105) [001] d..4 82316.589830: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
80930          <idle>-0     (-----) [002] .n.1 82316.589836: cpu_idle: state=4294967295 cpu_id=2
80931          <idle>-0     (-----) [002] d..2 82316.589848: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
80932<...>-9105 ( 9105) [001] d..2 82316.589870: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
80933          <idle>-0     (-----) [001] d..1 82316.589891: cpu_idle: state=0 cpu_id=1
80934    RenderThread-9436  ( 9105) [002] d..1 82316.589974: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
80935    RenderThread-9436  ( 9105) [002] d..2 82316.589994: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
80936          <idle>-0     (-----) [001] .n.1 82316.590002: cpu_idle: state=4294967295 cpu_id=1
80937          <idle>-0     (-----) [001] d..2 82316.590017: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
80938    RenderThread-9436  ( 9105) [002] .... 82316.590064: binder_transaction: transaction=1570827 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
80939    RenderThread-9436  ( 9105) [002] .... 82316.590069: binder_transaction_alloc_buf: transaction=1570827 data_size=104 offsets_size=0
80940    RenderThread-9436  ( 9105) [002] d..4 82316.590076: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
80941    RenderThread-9436  ( 9105) [002] dn.5 82316.590097: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
80942<...>-9105 ( 9105) [001] d..2 82316.590129: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
80943<...>-13083 ( 8858) [001] .... 82316.590141: binder_transaction_received: transaction=1570827
80944    RenderThread-9436  ( 9105) [002] d..2 82316.590147: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
80945          <idle>-0     (-----) [002] d..1 82316.590165: cpu_idle: state=0 cpu_id=2
80946<...>-13083 ( 8858) [001] .... 82316.590229: binder_transaction: transaction=1570828 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
80947<...>-13083 ( 8858) [001] .... 82316.590235: binder_transaction_alloc_buf: transaction=1570828 data_size=52 offsets_size=8
80948<...>-13083 ( 8858) [001] d..2 82316.590246: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
80949<...>-13083 ( 8858) [001] d..3 82316.590271: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
80950<...>-13083 ( 8858) [001] d..2 82316.590320: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
80951    RenderThread-9436  ( 9105) [001] .... 82316.590330: binder_transaction_received: transaction=1570828
80952          <idle>-0     (-----) [002] d.h4 82316.590772: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80953          <idle>-0     (-----) [005] dnh2 82316.590792: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
80954          <idle>-0     (-----) [005] .n.1 82316.590796: cpu_idle: state=4294967295 cpu_id=5
80955          <idle>-0     (-----) [005] d..2 82316.590804: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
80956          <idle>-0     (-----) [002] ...1 82316.590817: cpu_idle: state=4294967295 cpu_id=2
80957          <idle>-0     (-----) [002] d..1 82316.590823: cpu_idle: state=0 cpu_id=2
80958<...>-5340 ( 788) [005] d..1 82316.590856: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80959          <idle>-0     (-----) [000] dnh2 82316.590883: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
80960          <idle>-0     (-----) [000] .n.1 82316.590890: cpu_idle: state=4294967295 cpu_id=0
80961          <idle>-0     (-----) [000] d..2 82316.590916: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
80962<...>-5340 ( 788) [005] ...1 82316.590950: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
80963<...>-5340 ( 788) [005] ...1 82316.590954: tracing_mark_write: E|788
80964<...>-5340 ( 788) [005] .... 82316.590969: binder_transaction: transaction=1570829 dest_node=1570824 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
80965<...>-5340 ( 788) [005] .... 82316.590973: binder_transaction_alloc_buf: transaction=1570829 data_size=60 offsets_size=0
80966<...>-5340 ( 788) [005] d..4 82316.590976: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
80967 neuralnetworks@-13088 (  788) [000] d..2 82316.590980: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
80968<...>-5340 ( 788) [005] d..5 82316.590988: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
80969          <idle>-0     (-----) [000] d..1 82316.590993: cpu_idle: state=0 cpu_id=0
80970          <idle>-0     (-----) [004] .n.1 82316.590994: cpu_idle: state=4294967295 cpu_id=4
80971          <idle>-0     (-----) [004] d..2 82316.591003: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
80972           <...>-27571 (-----) [004] .... 82316.591008: binder_transaction_received: transaction=1570829
80973<...>-5340 ( 788) [005] ...1 82316.591011: tracing_mark_write: E|788
80974<...>-5340 ( 788) [005] .... 82316.591017: binder_transaction: transaction=1570830 dest_node=0 dest_proc=27550 dest_thread=27718 reply=1 flags=0x0 code=0x0
80975<...>-5340 ( 788) [005] .... 82316.591019: binder_transaction_alloc_buf: transaction=1570830 data_size=8 offsets_size=0
80976<...>-5340 ( 788) [005] d..2 82316.591022: sched_waking: comm=id.nn.benchmark pid=27718 prio=110 target_cpu=005
80977           <...>-27571 (-----) [004] ...1 82316.591026: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
80978<...>-5340 ( 788) [005] d..3 82316.591029: sched_wakeup: comm=id.nn.benchmark pid=27718 prio=110 target_cpu=005
80979<...>-5340 ( 788) [005] .... 82316.591031: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
80980           <...>-27571 (-----) [004] ...1 82316.591033: tracing_mark_write: E|27550
80981           <...>-27571 (-----) [004] d..2 82316.591061: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80982          <idle>-0     (-----) [004] d..1 82316.591068: cpu_idle: state=0 cpu_id=4
80983<...>-5340 ( 788) [005] d..2 82316.591072: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27718 next_prio=110
80984           <...>-27718 (-----) [005] .... 82316.591082: binder_transaction_received: transaction=1570830
80985           <...>-27718 (-----) [005] ...1 82316.591119: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
80986           <...>-27718 (-----) [005] ...1 82316.591125: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
80987           <...>-27718 (-----) [005] ...1 82316.591151: tracing_mark_write: E|27550
80988           <...>-27718 (-----) [005] ...1 82316.591154: tracing_mark_write: E|27550
80989           <...>-27718 (-----) [005] ...1 82316.591158: tracing_mark_write: E|27550
80990           <...>-27718 (-----) [005] ...1 82316.591350: tracing_mark_write: E|27550
80991           <...>-27718 (-----) [005] d..1 82316.591363: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80992           <...>-27718 (-----) [005] d..2 82316.591379: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80993          <idle>-0     (-----) [004] .n.1 82316.591384: cpu_idle: state=4294967295 cpu_id=4
80994          <idle>-0     (-----) [004] d..2 82316.591391: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
80995           <...>-27550 (-----) [004] d..2 82316.591410: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
80996          <idle>-0     (-----) [004] d..1 82316.591419: cpu_idle: state=0 cpu_id=4
80997           <...>-27718 (-----) [005] d..1 82316.591469: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
80998    RenderThread-9436  ( 9105) [001] d..2 82316.591472: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
80999           <...>-27718 (-----) [005] d..2 82316.591479: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81000          <idle>-0     (-----) [004] .n.1 82316.591484: cpu_idle: state=4294967295 cpu_id=4
81001          <idle>-0     (-----) [001] d..1 82316.591489: cpu_idle: state=0 cpu_id=1
81002          <idle>-0     (-----) [004] d..2 82316.591492: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
81003           <...>-27718 (-----) [005] d..2 82316.591517: sched_switch: prev_comm=id.nn.benchmark prev_pid=27718 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
81004           <...>-27550 (-----) [004] ...1 82316.591525: tracing_mark_write: E|27550
81005           <...>-27550 (-----) [004] ...1 82316.591530: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
81006           <...>-27550 (-----) [004] ...1 82316.591535: tracing_mark_write: E|27550
81007          <idle>-0     (-----) [005] d..1 82316.591539: cpu_idle: state=0 cpu_id=5
81008           <...>-27550 (-----) [004] ...1 82316.591539: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
81009           <...>-27550 (-----) [004] ...1 82316.591543: tracing_mark_write: E|27550
81010           <...>-27550 (-----) [004] ...1 82316.591547: tracing_mark_write: E|27550
81011          <idle>-0     (-----) [001] d.h2 82316.591550: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
81012          <idle>-0     (-----) [001] d.h3 82316.591562: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
81013          <idle>-0     (-----) [001] dnh3 82316.591567: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
81014          <idle>-0     (-----) [001] .n.1 82316.591577: cpu_idle: state=4294967295 cpu_id=1
81015          <idle>-0     (-----) [000] d.h3 82316.591590: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
81016          <idle>-0     (-----) [001] d..2 82316.591590: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
81017          <idle>-0     (-----) [000] dnh4 82316.591615: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
81018          <idle>-0     (-----) [000] .n.1 82316.591629: cpu_idle: state=4294967295 cpu_id=0
81019          <idle>-0     (-----) [000] d..2 82316.591640: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
81020           <...>-27550 (-----) [004] ...1 82316.591659: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
81021 kgsl_worker_thr-258   (  258) [000] d..2 82316.591696: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
81022 kgsl_worker_thr-258   (  258) [000] d..3 82316.591715: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
81023           <...>-27550 (-----) [004] ...1 82316.591716: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
81024           <...>-27550 (-----) [004] ...1 82316.591721: tracing_mark_write: E|27550
81025           <...>-27550 (-----) [004] ...1 82316.591724: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
81026           <...>-27550 (-----) [004] ...1 82316.591730: tracing_mark_write: E|27550
81027           <...>-27550 (-----) [004] ...1 82316.591733: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
81028 kgsl_worker_thr-258   (  258) [000] d..2 82316.591734: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
81029           <...>-27550 (-----) [004] ...1 82316.591737: tracing_mark_write: E|27550
81030           <...>-27550 (-----) [004] ...1 82316.591740: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
81031  kworker/u16:15-1311  ( 1311) [000] d..2 82316.591787: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81032          <idle>-0     (-----) [005] .n.1 82316.591897: cpu_idle: state=4294967295 cpu_id=5
81033           <...>-27550 (-----) [004] ...1 82316.591900: tracing_mark_write: E|27550
81034           <...>-27550 (-----) [004] ...1 82316.591904: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
81035          <idle>-0     (-----) [000] d..1 82316.591905: cpu_idle: state=0 cpu_id=0
81036          <idle>-0     (-----) [005] d..2 82316.591907: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27719 next_prio=110
81037    RenderThread-9436  ( 9105) [001] .... 82316.591910: binder_transaction: transaction=1570831 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
81038    RenderThread-9436  ( 9105) [001] .... 82316.591916: binder_transaction_alloc_buf: transaction=1570831 data_size=192 offsets_size=8
81039           <...>-27550 (-----) [004] d..2 82316.591925: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81040    RenderThread-9436  ( 9105) [001] d..4 82316.591928: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
81041          <idle>-0     (-----) [004] d..1 82316.591939: cpu_idle: state=0 cpu_id=4
81042    RenderThread-9436  ( 9105) [001] dn.5 82316.591945: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
81043    RenderThread-9436  ( 9105) [001] d..2 82316.591956: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
81044<...>-13083 ( 8858) [001] .... 82316.591965: binder_transaction_received: transaction=1570831
81045           <...>-27719 (-----) [005] ...1 82316.591968: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
81046           <...>-27719 (-----) [005] ...1 82316.591982: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
81047           <...>-27719 (-----) [005] ...1 82316.591987: tracing_mark_write: E|27550
81048           <...>-27719 (-----) [005] .... 82316.592009: binder_transaction: transaction=1570832 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
81049           <...>-27719 (-----) [005] .... 82316.592012: binder_transaction_alloc_buf: transaction=1570832 data_size=48 offsets_size=0
81050           <...>-27719 (-----) [005] ...2 82316.592016: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
81051           <...>-27719 (-----) [005] d..4 82316.592018: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
81052           <...>-27719 (-----) [005] dn.5 82316.592031: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
81053           <...>-27719 (-----) [005] d..2 82316.592037: sched_switch: prev_comm=id.nn.benchmark prev_pid=27719 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
81054<...>-770 ( 770) [005] .... 82316.592047: binder_transaction_received: transaction=1570832
81055<...>-770 ( 770) [005] ...1 82316.592070: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
81056<...>-13083 ( 8858) [001] .... 82316.592142: binder_transaction: transaction=1570833 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
81057<...>-13083 ( 8858) [001] .... 82316.592147: binder_transaction_alloc_buf: transaction=1570833 data_size=68 offsets_size=0
81058<...>-770 ( 770) [005] d..2 82316.592150: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
81059<...>-13083 ( 8858) [001] d..2 82316.592194: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
81060    RenderThread-9436  ( 9105) [001] d.h3 82316.592210: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
81061    RenderThread-9436  ( 9105) [001] .... 82316.592220: binder_transaction_received: transaction=1570833
81062<...>-770 ( 770) [005] ...1 82316.592226: tracing_mark_write: E|770
81063<...>-770 ( 770) [005] .... 82316.592234: binder_transaction: transaction=1570834 dest_node=0 dest_proc=27550 dest_thread=27719 reply=1 flags=0x0 code=0x0
81064<...>-770 ( 770) [005] .... 82316.592238: binder_transaction_alloc_buf: transaction=1570834 data_size=168 offsets_size=32
81065<...>-770 ( 770) [005] .... 82316.592244: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
81066<...>-770 ( 770) [005] d..2 82316.592281: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27719 next_prio=110
81067           <...>-27719 (-----) [005] .... 82316.592292: binder_transaction_received: transaction=1570834
81068    RenderThread-9436  ( 9105) [001] d..2 82316.592309: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
81069           <...>-27719 (-----) [005] ...1 82316.592366: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
81070           <...>-27719 (-----) [005] ...1 82316.592371: tracing_mark_write: E|27550
81071           <...>-27719 (-----) [005] .... 82316.592385: binder_transaction: transaction=1570835 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
81072           <...>-27719 (-----) [005] .... 82316.592388: binder_transaction_alloc_buf: transaction=1570835 data_size=48 offsets_size=0
81073           <...>-27719 (-----) [005] ...2 82316.592390: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
81074           <...>-27719 (-----) [005] d..4 82316.592392: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
81075           <...>-27719 (-----) [005] dn.5 82316.592403: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
81076           <...>-27719 (-----) [005] d..2 82316.592409: sched_switch: prev_comm=id.nn.benchmark prev_pid=27719 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
81077<...>-770 ( 770) [005] .... 82316.592417: binder_transaction_received: transaction=1570835
81078<...>-581 ( 571) [001] d..2 82316.592425: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81079<...>-770 ( 770) [005] ...1 82316.592434: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
81080          <idle>-0     (-----) [001] d..1 82316.592448: cpu_idle: state=0 cpu_id=1
81081<...>-770 ( 770) [005] d..2 82316.592497: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
81082          <idle>-0     (-----) [001] dnh2 82316.592525: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
81083<...>-770 ( 770) [005] ...1 82316.592531: tracing_mark_write: E|770
81084          <idle>-0     (-----) [001] .n.1 82316.592533: cpu_idle: state=4294967295 cpu_id=1
81085<...>-770 ( 770) [005] .... 82316.592538: binder_transaction: transaction=1570836 dest_node=0 dest_proc=27550 dest_thread=27719 reply=1 flags=0x0 code=0x0
81086<...>-770 ( 770) [005] .... 82316.592541: binder_transaction_alloc_buf: transaction=1570836 data_size=168 offsets_size=32
81087          <idle>-0     (-----) [001] d..2 82316.592546: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
81088<...>-770 ( 770) [005] .... 82316.592547: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
81089<...>-770 ( 770) [005] d..2 82316.592581: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27719 next_prio=110
81090           <...>-27719 (-----) [005] .... 82316.592591: binder_transaction_received: transaction=1570836
81091<...>-581 ( 571) [001] d..2 82316.592612: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81092          <idle>-0     (-----) [001] d..1 82316.592628: cpu_idle: state=0 cpu_id=1
81093           <...>-27719 (-----) [005] ...1 82316.592870: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
81094           <...>-27719 (-----) [005] ...1 82316.592880: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
81095           <...>-27719 (-----) [005] ...1 82316.592884: tracing_mark_write: E|27550
81096           <...>-27719 (-----) [005] .... 82316.592949: binder_transaction: transaction=1570837 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
81097           <...>-27719 (-----) [005] .... 82316.592953: binder_transaction_alloc_buf: transaction=1570837 data_size=556 offsets_size=104
81098           <...>-27719 (-----) [005] ...2 82316.592967: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
81099           <...>-27719 (-----) [005] d..4 82316.592969: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81100           <...>-27719 (-----) [005] dn.5 82316.592981: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81101           <...>-27719 (-----) [005] d..2 82316.592988: sched_switch: prev_comm=id.nn.benchmark prev_pid=27719 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81102          <idle>-0     (-----) [003] d.h2 82316.592994: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
81103<...>-5340 ( 788) [005] .... 82316.592998: binder_transaction_received: transaction=1570837
81104          <idle>-0     (-----) [003] dnh3 82316.593010: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
81105          <idle>-0     (-----) [003] .n.1 82316.593019: cpu_idle: state=4294967295 cpu_id=3
81106          <idle>-0     (-----) [003] d..2 82316.593032: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
81107<...>-5340 ( 788) [005] ...1 82316.593046: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
81108        DispSync-8879  ( 8858) [003] d..1 82316.593048: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
81109        DispSync-8879  ( 8858) [003] d..2 82316.593064: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
81110          <idle>-0     (-----) [001] .n.1 82316.593073: cpu_idle: state=4294967295 cpu_id=1
81111          <idle>-0     (-----) [001] d..2 82316.593084: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
81112<...>-5340 ( 788) [005] d..2 82316.593090: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
81113        DispSync-8879  ( 8858) [003] d..2 82316.593096: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81114          <idle>-0     (-----) [003] d..1 82316.593107: cpu_idle: state=0 cpu_id=3
81115<...>-5340 ( 788) [005] d..2 82316.593137: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27719 next_prio=110
81116   sfEventThread-8882  ( 8858) [001] d.h1 82316.593141: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
81117   sfEventThread-8882  ( 8858) [001] d..3 82316.593147: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
81118           <...>-27719 (-----) [005] d..2 82316.593160: sched_switch: prev_comm=id.nn.benchmark prev_pid=27719 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81119   sfEventThread-8882  ( 8858) [001] d..4 82316.593170: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
81120          <idle>-0     (-----) [003] .n.1 82316.593176: cpu_idle: state=4294967295 cpu_id=3
81121          <idle>-0     (-----) [005] d..1 82316.593178: cpu_idle: state=0 cpu_id=5
81122          <idle>-0     (-----) [003] d..2 82316.593184: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
81123   sfEventThread-8882  ( 8858) [001] d..2 82316.593198: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
81124<...>-87 ( 87) [001] d..2 82316.593249: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81125          <idle>-0     (-----) [002] d.h4 82316.593252: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
81126          <idle>-0     (-----) [001] d..1 82316.593266: cpu_idle: state=0 cpu_id=1
81127          <idle>-0     (-----) [002] d.h5 82316.593296: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
81128          <idle>-0     (-----) [001] .n.1 82316.593302: cpu_idle: state=4294967295 cpu_id=1
81129          <idle>-0     (-----) [002] ...1 82316.593309: cpu_idle: state=4294967295 cpu_id=2
81130          <idle>-0     (-----) [001] d..2 82316.593314: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
81131          <idle>-0     (-----) [002] d..1 82316.593318: cpu_idle: state=0 cpu_id=2
81132          <idle>-0     (-----) [002] d.h4 82316.593343: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81133          <idle>-0     (-----) [005] dnh2 82316.593364: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81134          <idle>-0     (-----) [005] .n.1 82316.593368: cpu_idle: state=4294967295 cpu_id=5
81135          <idle>-0     (-----) [005] d..2 82316.593377: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81136          <idle>-0     (-----) [002] ...1 82316.593384: cpu_idle: state=4294967295 cpu_id=2
81137          <idle>-0     (-----) [002] d..1 82316.593389: cpu_idle: state=0 cpu_id=2
81138<...>-86 ( 86) [001] d..2 82316.593394: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81139          <idle>-0     (-----) [001] d..1 82316.593407: cpu_idle: state=0 cpu_id=1
81140<...>-5340 ( 788) [005] d..1 82316.593430: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81141  surfaceflinger-8858  ( 8858) [003] d.h1 82316.593472: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
81142  surfaceflinger-8858  ( 8858) [003] d..1 82316.593557: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
81143  surfaceflinger-8858  ( 8858) [003] d..2 82316.593578: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
81144          <idle>-0     (-----) [001] .n.1 82316.593584: cpu_idle: state=4294967295 cpu_id=1
81145<...>-5340 ( 788) [005] d..2 82316.593591: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
81146          <idle>-0     (-----) [001] d..2 82316.593595: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
81147   sfEventThread-8882  ( 8858) [001] d.h1 82316.593618: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
81148<...>-5340 ( 788) [005] d..2 82316.593624: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81149          <idle>-0     (-----) [005] d..1 82316.593638: cpu_idle: state=0 cpu_id=5
81150   sfEventThread-8882  ( 8858) [001] d..2 82316.593641: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
81151          <idle>-0     (-----) [002] d.h4 82316.593680: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
81152<...>-87 ( 87) [001] d..2 82316.593682: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81153          <idle>-0     (-----) [002] d.h5 82316.593698: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
81154          <idle>-0     (-----) [002] ...1 82316.593710: cpu_idle: state=4294967295 cpu_id=2
81155          <idle>-0     (-----) [001] d..2 82316.593711: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
81156          <idle>-0     (-----) [002] d..1 82316.593718: cpu_idle: state=0 cpu_id=2
81157<...>-86 ( 86) [001] d..2 82316.593747: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81158          <idle>-0     (-----) [001] d..1 82316.593757: cpu_idle: state=0 cpu_id=1
81159  surfaceflinger-8858  ( 8858) [003] ...1 82316.593781: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
81160  surfaceflinger-8858  ( 8858) [003] ...1 82316.593789: tracing_mark_write: E|8858
81161  surfaceflinger-8858  ( 8858) [003] .... 82316.593840: binder_transaction: transaction=1570840 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
81162  surfaceflinger-8858  ( 8858) [003] .... 82316.593846: binder_transaction_alloc_buf: transaction=1570840 data_size=540 offsets_size=96
81163  surfaceflinger-8858  ( 8858) [003] ...2 82316.593872: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
81164  surfaceflinger-8858  ( 8858) [003] d..4 82316.593879: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
81165  surfaceflinger-8858  ( 8858) [003] d..5 82316.593901: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
81166          <idle>-0     (-----) [001] .n.1 82316.593908: cpu_idle: state=4294967295 cpu_id=1
81167          <idle>-0     (-----) [001] d..2 82316.593919: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
81168  surfaceflinger-8858  ( 8858) [003] d..2 82316.593923: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
81169 [email protected]   (  619) [001] .... 82316.593931: binder_transaction_received: transaction=1570840
81170 [email protected]   (  619) [001] ...1 82316.593982: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
81171 neuralnetworks@-13088 (  788) [003] d..2 82316.593984: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81172          <idle>-0     (-----) [005] ...1 82316.593984: cpu_idle: state=4294967295 cpu_id=5
81173          <idle>-0     (-----) [005] d..1 82316.593987: cpu_idle: state=0 cpu_id=5
81174          <idle>-0     (-----) [003] d..1 82316.593999: cpu_idle: state=0 cpu_id=3
81175 [email protected]   (  619) [001] ...1 82316.594109: tracing_mark_write: B|619|HWCSession::PresentDisplay::
81176 [email protected]   (  619) [001] ...1 82316.594307: tracing_mark_write: B|619|HWDeviceDRM::Commit::
81177 [email protected]   (  619) [001] ...1 82316.594324: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
81178          <idle>-0     (-----) [002] ...1 82316.594965: cpu_idle: state=4294967295 cpu_id=2
81179          <idle>-0     (-----) [002] d..1 82316.594970: cpu_idle: state=0 cpu_id=2
81180 [email protected]   (  619) [001] d..2 82316.594999: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
81181 [email protected]   (  619) [001] d..3 82316.595027: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
81182          <idle>-0     (-----) [002] .n.1 82316.595032: cpu_idle: state=4294967295 cpu_id=2
81183          <idle>-0     (-----) [002] d..2 82316.595044: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
81184          <idle>-0     (-----) [000] d.s2 82316.595132: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
81185          <idle>-0     (-----) [003] d.s2 82316.595138: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
81186 crtc_commit:111-321   (  321) [002] d.s2 82316.595143: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
81187          <idle>-0     (-----) [000] dns3 82316.595155: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
81188          <idle>-0     (-----) [003] dns3 82316.595160: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
81189          <idle>-0     (-----) [000] .n.1 82316.595166: cpu_idle: state=4294967295 cpu_id=0
81190          <idle>-0     (-----) [003] .n.1 82316.595176: cpu_idle: state=4294967295 cpu_id=3
81191          <idle>-0     (-----) [000] d..2 82316.595177: 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
81192          <idle>-0     (-----) [003] d..2 82316.595188: 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
81193     rcu_preempt-7     (    7) [000] d..2 82316.595188: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
81194 crtc_commit:111-321   (  321) [002] d.s3 82316.595194: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
81195 [email protected]   (  619) [001] ...1 82316.595196: tracing_mark_write: E|619
81196 [email protected]   (  619) [001] ...1 82316.595203: tracing_mark_write: E|619
81197     rcu_preempt-7     (    7) [000] d..3 82316.595209: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
81198<...>-8 ( 8) [003] d..2 82316.595223: 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
81199     rcu_preempt-7     (    7) [000] d..2 82316.595226: 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
81200         rcuop/4-45    (   45) [000] d..2 82316.595233: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
81201          <idle>-0     (-----) [003] d..1 82316.595237: cpu_idle: state=0 cpu_id=3
81202         rcuop/4-45    (   45) [000] d..3 82316.595250: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
81203         rcuop/4-45    (   45) [000] d..2 82316.595261: 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
81204 [email protected]   (  619) [001] ...1 82316.595273: tracing_mark_write: E|619
81205 crtc_commit:111-321   (  321) [002] d.h3 82316.595310: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81206 [email protected]   (  619) [001] ...1 82316.595324: tracing_mark_write: E|619
81207          <idle>-0     (-----) [005] dnh2 82316.595329: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81208          <idle>-0     (-----) [005] .n.1 82316.595333: cpu_idle: state=4294967295 cpu_id=5
81209 [email protected]   (  619) [001] .... 82316.595340: binder_transaction: transaction=1570841 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
81210          <idle>-0     (-----) [005] d..2 82316.595342: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81211 [email protected]   (  619) [001] .... 82316.595345: binder_transaction_alloc_buf: transaction=1570841 data_size=576 offsets_size=112
81212 [email protected]   (  619) [001] d..2 82316.595367: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
81213 [email protected]   (  619) [001] d..3 82316.595386: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
81214 [email protected]   (  619) [001] .... 82316.595392: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
81215          <idle>-0     (-----) [003] .n.1 82316.595392: cpu_idle: state=4294967295 cpu_id=3
81216<...>-5340 ( 788) [005] d..1 82316.595394: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
81217         rcuop/5-53    (   53) [000] d..2 82316.595395: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81218          <idle>-0     (-----) [003] d..2 82316.595403: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
81219          <idle>-0     (-----) [000] d..1 82316.595412: cpu_idle: state=0 cpu_id=0
81220  surfaceflinger-8858  ( 8858) [003] .... 82316.595414: binder_transaction_received: transaction=1570841
81221          <idle>-0     (-----) [000] dnh2 82316.595436: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81222          <idle>-0     (-----) [000] .n.1 82316.595443: cpu_idle: state=4294967295 cpu_id=0
81223          <idle>-0     (-----) [000] d..2 82316.595455: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
81224<...>-5340 ( 788) [005] ...1 82316.595505: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
81225<...>-5340 ( 788) [005] ...1 82316.595509: tracing_mark_write: E|788
81226 [email protected]   (  619) [001] d..2 82316.595518: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81227<...>-5340 ( 788) [005] .... 82316.595526: binder_transaction: transaction=1570842 dest_node=1570838 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
81228<...>-5340 ( 788) [005] .... 82316.595529: binder_transaction_alloc_buf: transaction=1570842 data_size=60 offsets_size=0
81229<...>-5340 ( 788) [005] d..4 82316.595532: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
81230 neuralnetworks@-13088 (  788) [000] d..2 82316.595533: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81231          <idle>-0     (-----) [001] d..1 82316.595539: cpu_idle: state=0 cpu_id=1
81232<...>-5340 ( 788) [005] d..5 82316.595546: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
81233          <idle>-0     (-----) [000] d..1 82316.595548: cpu_idle: state=0 cpu_id=0
81234          <idle>-0     (-----) [004] .n.1 82316.595551: cpu_idle: state=4294967295 cpu_id=4
81235          <idle>-0     (-----) [004] d..2 82316.595559: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
81236           <...>-27571 (-----) [004] .... 82316.595564: binder_transaction_received: transaction=1570842
81237<...>-5340 ( 788) [005] ...1 82316.595569: tracing_mark_write: E|788
81238<...>-5340 ( 788) [005] .... 82316.595576: binder_transaction: transaction=1570843 dest_node=0 dest_proc=27550 dest_thread=27719 reply=1 flags=0x0 code=0x0
81239<...>-5340 ( 788) [005] .... 82316.595578: binder_transaction_alloc_buf: transaction=1570843 data_size=8 offsets_size=0
81240<...>-5340 ( 788) [005] d..2 82316.595580: sched_waking: comm=id.nn.benchmark pid=27719 prio=110 target_cpu=005
81241           <...>-27571 (-----) [004] ...1 82316.595583: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
81242<...>-5340 ( 788) [005] d..3 82316.595587: sched_wakeup: comm=id.nn.benchmark pid=27719 prio=110 target_cpu=005
81243<...>-5340 ( 788) [005] .... 82316.595589: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
81244           <...>-27571 (-----) [004] ...1 82316.595589: tracing_mark_write: E|27550
81245           <...>-27571 (-----) [004] d..2 82316.595618: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81246          <idle>-0     (-----) [004] d..1 82316.595626: cpu_idle: state=0 cpu_id=4
81247<...>-5340 ( 788) [005] d..2 82316.595631: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27719 next_prio=110
81248           <...>-27719 (-----) [005] .... 82316.595640: binder_transaction_received: transaction=1570843
81249           <...>-27719 (-----) [005] ...1 82316.595677: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
81250           <...>-27719 (-----) [005] ...1 82316.595683: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
81251           <...>-27719 (-----) [005] ...1 82316.595708: tracing_mark_write: E|27550
81252           <...>-27719 (-----) [005] ...1 82316.595712: tracing_mark_write: E|27550
81253           <...>-27719 (-----) [005] ...1 82316.595715: tracing_mark_write: E|27550
81254           <...>-27719 (-----) [005] ...1 82316.595906: tracing_mark_write: E|27550
81255           <...>-27719 (-----) [005] d..1 82316.595919: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81256           <...>-27719 (-----) [005] d..2 82316.595935: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81257          <idle>-0     (-----) [004] .n.1 82316.595940: cpu_idle: state=4294967295 cpu_id=4
81258  surfaceflinger-8858  ( 8858) [003] d..2 82316.595945: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81259          <idle>-0     (-----) [004] d..2 82316.595946: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
81260          <idle>-0     (-----) [003] d..1 82316.595964: cpu_idle: state=0 cpu_id=3
81261           <...>-27550 (-----) [004] d..2 82316.595966: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81262          <idle>-0     (-----) [004] d..1 82316.595975: cpu_idle: state=0 cpu_id=4
81263 crtc_commit:111-321   (  321) [002] d..2 82316.595978: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
81264           <...>-27719 (-----) [005] d..1 82316.596026: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81265           <...>-27719 (-----) [005] d..2 82316.596036: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81266          <idle>-0     (-----) [004] .n.1 82316.596041: cpu_idle: state=4294967295 cpu_id=4
81267          <idle>-0     (-----) [004] d..2 82316.596049: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
81268  kworker/u16:15-1311  ( 1311) [002] d..2 82316.596057: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81269           <...>-27719 (-----) [005] d..2 82316.596075: sched_switch: prev_comm=id.nn.benchmark prev_pid=27719 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
81270          <idle>-0     (-----) [002] d..1 82316.596078: cpu_idle: state=0 cpu_id=2
81271           <...>-27550 (-----) [004] ...1 82316.596083: tracing_mark_write: E|27550
81272           <...>-27550 (-----) [004] ...1 82316.596088: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
81273           <...>-27550 (-----) [004] ...1 82316.596093: tracing_mark_write: E|27550
81274          <idle>-0     (-----) [005] d..1 82316.596096: cpu_idle: state=0 cpu_id=5
81275           <...>-27550 (-----) [004] ...1 82316.596097: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
81276           <...>-27550 (-----) [004] ...1 82316.596101: tracing_mark_write: E|27550
81277           <...>-27550 (-----) [004] ...1 82316.596105: tracing_mark_write: E|27550
81278           <...>-27550 (-----) [004] ...1 82316.596218: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
81279           <...>-27550 (-----) [004] ...1 82316.596276: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
81280           <...>-27550 (-----) [004] ...1 82316.596281: tracing_mark_write: E|27550
81281           <...>-27550 (-----) [004] ...1 82316.596285: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
81282           <...>-27550 (-----) [004] ...1 82316.596291: tracing_mark_write: E|27550
81283           <...>-27550 (-----) [004] ...1 82316.596295: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
81284           <...>-27550 (-----) [004] ...1 82316.596299: tracing_mark_write: E|27550
81285           <...>-27550 (-----) [004] ...1 82316.596303: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
81286          <idle>-0     (-----) [005] .n.1 82316.596397: cpu_idle: state=4294967295 cpu_id=5
81287           <...>-27550 (-----) [004] ...1 82316.596399: tracing_mark_write: E|27550
81288           <...>-27550 (-----) [004] ...1 82316.596403: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
81289          <idle>-0     (-----) [005] d..2 82316.596406: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27720 next_prio=110
81290           <...>-27550 (-----) [004] d..2 82316.596419: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81291          <idle>-0     (-----) [004] d..1 82316.596434: cpu_idle: state=0 cpu_id=4
81292           <...>-27720 (-----) [005] ...1 82316.596468: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
81293           <...>-27720 (-----) [005] ...1 82316.596482: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
81294           <...>-27720 (-----) [005] ...1 82316.596487: tracing_mark_write: E|27550
81295           <...>-27720 (-----) [005] .... 82316.596507: binder_transaction: transaction=1570844 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
81296           <...>-27720 (-----) [005] .... 82316.596511: binder_transaction_alloc_buf: transaction=1570844 data_size=48 offsets_size=0
81297           <...>-27720 (-----) [005] ...2 82316.596514: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
81298           <...>-27720 (-----) [005] d..4 82316.596517: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
81299           <...>-27720 (-----) [005] dn.5 82316.596529: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
81300           <...>-27720 (-----) [005] d..2 82316.596536: sched_switch: prev_comm=id.nn.benchmark prev_pid=27720 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
81301<...>-770 ( 770) [005] .... 82316.596546: binder_transaction_received: transaction=1570844
81302<...>-770 ( 770) [005] ...1 82316.596570: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
81303<...>-770 ( 770) [005] d..2 82316.596654: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
81304          <idle>-0     (-----) [000] dnh2 82316.596693: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
81305          <idle>-0     (-----) [000] .n.1 82316.596700: cpu_idle: state=4294967295 cpu_id=0
81306<...>-770 ( 770) [005] ...1 82316.596707: tracing_mark_write: E|770
81307          <idle>-0     (-----) [000] d..2 82316.596712: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
81308<...>-770 ( 770) [005] .... 82316.596715: binder_transaction: transaction=1570845 dest_node=0 dest_proc=27550 dest_thread=27720 reply=1 flags=0x0 code=0x0
81309<...>-770 ( 770) [005] .... 82316.596718: binder_transaction_alloc_buf: transaction=1570845 data_size=168 offsets_size=32
81310<...>-770 ( 770) [005] .... 82316.596724: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
81311          <idle>-0     (-----) [001] ...1 82316.596725: cpu_idle: state=4294967295 cpu_id=1
81312          <idle>-0     (-----) [001] d..1 82316.596731: cpu_idle: state=0 cpu_id=1
81313<...>-770 ( 770) [005] d..2 82316.596761: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27720 next_prio=110
81314           <...>-27720 (-----) [005] .... 82316.596772: binder_transaction_received: transaction=1570845
81315<...>-581 ( 571) [000] d..2 82316.596813: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81316          <idle>-0     (-----) [000] d..1 82316.596828: cpu_idle: state=0 cpu_id=0
81317           <...>-27720 (-----) [005] ...1 82316.596844: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
81318           <...>-27720 (-----) [005] ...1 82316.596850: tracing_mark_write: E|27550
81319           <...>-27720 (-----) [005] .... 82316.596864: binder_transaction: transaction=1570846 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
81320           <...>-27720 (-----) [005] .... 82316.596867: binder_transaction_alloc_buf: transaction=1570846 data_size=48 offsets_size=0
81321           <...>-27720 (-----) [005] ...2 82316.596869: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
81322           <...>-27720 (-----) [005] d..4 82316.596871: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
81323           <...>-27720 (-----) [005] dn.5 82316.596881: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
81324           <...>-27720 (-----) [005] d..2 82316.596888: sched_switch: prev_comm=id.nn.benchmark prev_pid=27720 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
81325<...>-770 ( 770) [005] .... 82316.596896: binder_transaction_received: transaction=1570846
81326<...>-770 ( 770) [005] ...1 82316.596913: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
81327<...>-770 ( 770) [005] d..2 82316.596972: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
81328          <idle>-0     (-----) [000] dnh2 82316.596998: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
81329          <idle>-0     (-----) [000] .n.1 82316.597005: cpu_idle: state=4294967295 cpu_id=0
81330<...>-770 ( 770) [005] ...1 82316.597006: tracing_mark_write: E|770
81331<...>-770 ( 770) [005] .... 82316.597014: binder_transaction: transaction=1570847 dest_node=0 dest_proc=27550 dest_thread=27720 reply=1 flags=0x0 code=0x0
81332<...>-770 ( 770) [005] .... 82316.597016: binder_transaction_alloc_buf: transaction=1570847 data_size=168 offsets_size=32
81333          <idle>-0     (-----) [000] d..2 82316.597017: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
81334<...>-770 ( 770) [005] .... 82316.597022: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
81335<...>-770 ( 770) [005] d..2 82316.597056: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27720 next_prio=110
81336           <...>-27720 (-----) [005] .... 82316.597067: binder_transaction_received: transaction=1570847
81337<...>-581 ( 571) [000] d..2 82316.597077: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81338          <idle>-0     (-----) [000] d..1 82316.597091: cpu_idle: state=0 cpu_id=0
81339           <...>-27720 (-----) [005] ...1 82316.597343: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
81340           <...>-27720 (-----) [005] ...1 82316.597353: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
81341           <...>-27720 (-----) [005] ...1 82316.597357: tracing_mark_write: E|27550
81342           <...>-27720 (-----) [005] .... 82316.597422: binder_transaction: transaction=1570848 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
81343           <...>-27720 (-----) [005] .... 82316.597426: binder_transaction_alloc_buf: transaction=1570848 data_size=556 offsets_size=104
81344           <...>-27720 (-----) [005] ...2 82316.597440: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
81345           <...>-27720 (-----) [005] d..4 82316.597442: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81346           <...>-27720 (-----) [005] dn.5 82316.597454: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81347           <...>-27720 (-----) [005] d..2 82316.597461: sched_switch: prev_comm=id.nn.benchmark prev_pid=27720 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81348<...>-5340 ( 788) [005] .... 82316.597470: binder_transaction_received: transaction=1570848
81349<...>-5340 ( 788) [005] ...1 82316.597516: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
81350<...>-5340 ( 788) [005] d..2 82316.597563: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
81351<...>-5340 ( 788) [005] d..2 82316.597598: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27720 next_prio=110
81352          <idle>-0     (-----) [000] dnh2 82316.597602: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
81353          <idle>-0     (-----) [000] .n.1 82316.597609: cpu_idle: state=4294967295 cpu_id=0
81354           <...>-27720 (-----) [005] d..2 82316.597621: sched_switch: prev_comm=id.nn.benchmark prev_pid=27720 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81355          <idle>-0     (-----) [000] d..2 82316.597621: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
81356          <idle>-0     (-----) [002] ...1 82316.597631: cpu_idle: state=4294967295 cpu_id=2
81357          <idle>-0     (-----) [002] d..1 82316.597637: cpu_idle: state=0 cpu_id=2
81358          <idle>-0     (-----) [005] d..1 82316.597639: cpu_idle: state=0 cpu_id=5
81359<...>-87 ( 87) [000] d..2 82316.597667: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81360          <idle>-0     (-----) [002] d.h4 82316.597674: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
81361          <idle>-0     (-----) [000] d..1 82316.597679: cpu_idle: state=0 cpu_id=0
81362          <idle>-0     (-----) [002] dnh5 82316.597713: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
81363          <idle>-0     (-----) [002] .n.1 82316.597724: cpu_idle: state=4294967295 cpu_id=2
81364          <idle>-0     (-----) [002] d..2 82316.597738: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
81365<...>-86 ( 86) [002] d.h5 82316.597760: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81366          <idle>-0     (-----) [005] dnh2 82316.597782: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81367          <idle>-0     (-----) [005] .n.1 82316.597786: cpu_idle: state=4294967295 cpu_id=5
81368          <idle>-0     (-----) [005] d..2 82316.597795: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81369<...>-86 ( 86) [002] d..2 82316.597832: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81370<...>-5340 ( 788) [005] d..1 82316.597846: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81371          <idle>-0     (-----) [002] d..1 82316.597847: cpu_idle: state=0 cpu_id=2
81372          <idle>-0     (-----) [000] dnh2 82316.597872: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81373          <idle>-0     (-----) [000] .n.1 82316.597878: cpu_idle: state=4294967295 cpu_id=0
81374          <idle>-0     (-----) [000] d..2 82316.597889: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
81375 neuralnetworks@-13088 (  788) [000] d..2 82316.597938: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81376          <idle>-0     (-----) [000] d..1 82316.597951: cpu_idle: state=0 cpu_id=0
81377<...>-5340 ( 788) [005] d..2 82316.597992: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
81378          <idle>-0     (-----) [000] dnh2 82316.598014: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
81379<...>-5340 ( 788) [005] d..2 82316.598017: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81380          <idle>-0     (-----) [000] .n.1 82316.598021: cpu_idle: state=4294967295 cpu_id=0
81381          <idle>-0     (-----) [005] d..1 82316.598032: cpu_idle: state=0 cpu_id=5
81382          <idle>-0     (-----) [000] d..2 82316.598033: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
81383          <idle>-0     (-----) [002] d.h4 82316.598074: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
81384<...>-87 ( 87) [000] d..2 82316.598074: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81385          <idle>-0     (-----) [002] dnh5 82316.598085: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
81386          <idle>-0     (-----) [000] d..1 82316.598085: cpu_idle: state=0 cpu_id=0
81387          <idle>-0     (-----) [002] .n.1 82316.598095: cpu_idle: state=4294967295 cpu_id=2
81388          <idle>-0     (-----) [002] d..2 82316.598107: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
81389<...>-86 ( 86) [002] d..2 82316.598142: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81390          <idle>-0     (-----) [002] d..1 82316.598156: cpu_idle: state=0 cpu_id=2
81391          <idle>-0     (-----) [005] ...1 82316.598383: cpu_idle: state=4294967295 cpu_id=5
81392          <idle>-0     (-----) [005] d..1 82316.598387: cpu_idle: state=0 cpu_id=5
81393          <idle>-0     (-----) [002] d..2 82316.599616: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
81394          <idle>-0     (-----) [002] dn.3 82316.599630: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
81395          <idle>-0     (-----) [002] .n.1 82316.599634: cpu_idle: state=4294967295 cpu_id=2
81396          <idle>-0     (-----) [002] d..2 82316.599649: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
81397     ksoftirqd/2-26    (   26) [002] d.s2 82316.599661: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
81398     ksoftirqd/2-26    (   26) [002] d.s3 82316.599678: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
81399     ksoftirqd/2-26    (   26) [002] d..2 82316.599696: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
81400  kworker/u16:15-1311  ( 1311) [002] .... 82316.599740: clk_set_rate: l3_cluster0_vote_clk 403200000
81401  kworker/u16:15-1311  ( 1311) [002] d.h4 82316.599781: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81402          <idle>-0     (-----) [005] dnh2 82316.599802: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81403          <idle>-0     (-----) [005] .n.1 82316.599806: cpu_idle: state=4294967295 cpu_id=5
81404          <idle>-0     (-----) [005] d..2 82316.599815: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81405<...>-5340 ( 788) [005] d..1 82316.599874: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81406          <idle>-0     (-----) [000] dnh2 82316.599899: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81407          <idle>-0     (-----) [000] .n.1 82316.599905: cpu_idle: state=4294967295 cpu_id=0
81408          <idle>-0     (-----) [000] d..2 82316.599919: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
81409<...>-5340 ( 788) [005] ...1 82316.599967: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
81410<...>-5340 ( 788) [005] ...1 82316.599971: tracing_mark_write: E|788
81411<...>-5340 ( 788) [005] .... 82316.599986: binder_transaction: transaction=1570851 dest_node=1570849 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
81412<...>-5340 ( 788) [005] .... 82316.599989: binder_transaction_alloc_buf: transaction=1570851 data_size=60 offsets_size=0
81413<...>-5340 ( 788) [005] d..4 82316.599992: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
81414 neuralnetworks@-13088 (  788) [000] d..2 82316.599993: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81415          <idle>-0     (-----) [000] d..1 82316.600003: cpu_idle: state=0 cpu_id=0
81416<...>-5340 ( 788) [005] d..5 82316.600004: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
81417          <idle>-0     (-----) [004] .n.1 82316.600010: cpu_idle: state=4294967295 cpu_id=4
81418          <idle>-0     (-----) [004] d..2 82316.600017: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
81419           <...>-27571 (-----) [004] .... 82316.600022: binder_transaction_received: transaction=1570851
81420<...>-5340 ( 788) [005] ...1 82316.600026: tracing_mark_write: E|788
81421<...>-5340 ( 788) [005] .... 82316.600032: binder_transaction: transaction=1570852 dest_node=0 dest_proc=27550 dest_thread=27720 reply=1 flags=0x0 code=0x0
81422<...>-5340 ( 788) [005] .... 82316.600035: binder_transaction_alloc_buf: transaction=1570852 data_size=8 offsets_size=0
81423<...>-5340 ( 788) [005] d..2 82316.600036: sched_waking: comm=id.nn.benchmark pid=27720 prio=110 target_cpu=005
81424           <...>-27571 (-----) [004] ...1 82316.600040: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
81425<...>-5340 ( 788) [005] d..3 82316.600044: sched_wakeup: comm=id.nn.benchmark pid=27720 prio=110 target_cpu=005
81426<...>-5340 ( 788) [005] .... 82316.600045: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
81427           <...>-27571 (-----) [004] ...1 82316.600047: tracing_mark_write: E|27550
81428           <...>-27571 (-----) [004] d..2 82316.600075: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81429          <idle>-0     (-----) [004] d..1 82316.600083: cpu_idle: state=0 cpu_id=4
81430<...>-5340 ( 788) [005] d..2 82316.600086: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27720 next_prio=110
81431  kworker/u16:15-1311  ( 1311) [002] d..2 82316.600091: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
81432           <...>-27720 (-----) [005] .... 82316.600096: binder_transaction_received: transaction=1570852
81433          <idle>-0     (-----) [002] d..1 82316.600107: cpu_idle: state=0 cpu_id=2
81434          <idle>-0     (-----) [001] d.s3 82316.600123: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
81435           <...>-27720 (-----) [005] ...1 82316.600131: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
81436          <idle>-0     (-----) [001] d.s4 82316.600137: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
81437           <...>-27720 (-----) [005] ...1 82316.600137: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
81438          <idle>-0     (-----) [001] d.s4 82316.600147: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
81439          <idle>-0     (-----) [002] .n.1 82316.600153: cpu_idle: state=4294967295 cpu_id=2
81440          <idle>-0     (-----) [001] ...1 82316.600157: cpu_idle: state=4294967295 cpu_id=1
81441           <...>-27720 (-----) [005] ...1 82316.600162: tracing_mark_write: E|27550
81442           <...>-27720 (-----) [005] ...1 82316.600166: tracing_mark_write: E|27550
81443          <idle>-0     (-----) [001] d..1 82316.600166: cpu_idle: state=0 cpu_id=1
81444          <idle>-0     (-----) [002] d..2 82316.600167: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
81445           <...>-27720 (-----) [005] ...1 82316.600170: tracing_mark_write: E|27550
81446  kworker/u16:15-1311  ( 1311) [002] d..2 82316.600256: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81447          <idle>-0     (-----) [002] d..1 82316.600270: cpu_idle: state=0 cpu_id=2
81448           <...>-27720 (-----) [005] ...1 82316.600375: tracing_mark_write: E|27550
81449           <...>-27720 (-----) [005] d..1 82316.600387: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81450           <...>-27720 (-----) [005] d..2 82316.600403: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81451          <idle>-0     (-----) [004] .n.1 82316.600408: cpu_idle: state=4294967295 cpu_id=4
81452          <idle>-0     (-----) [004] d..2 82316.600415: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
81453           <...>-27550 (-----) [004] d..2 82316.600435: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81454          <idle>-0     (-----) [004] d..1 82316.600445: cpu_idle: state=0 cpu_id=4
81455           <...>-27720 (-----) [005] d..1 82316.600491: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81456           <...>-27720 (-----) [005] d..2 82316.600501: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81457          <idle>-0     (-----) [004] .n.1 82316.600506: cpu_idle: state=4294967295 cpu_id=4
81458          <idle>-0     (-----) [004] d..2 82316.600514: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
81459           <...>-27720 (-----) [005] d..2 82316.600540: sched_switch: prev_comm=id.nn.benchmark prev_pid=27720 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
81460           <...>-27550 (-----) [004] ...1 82316.600546: tracing_mark_write: E|27550
81461           <...>-27550 (-----) [004] ...1 82316.600551: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
81462           <...>-27550 (-----) [004] ...1 82316.600556: tracing_mark_write: E|27550
81463           <...>-27550 (-----) [004] ...1 82316.600560: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
81464          <idle>-0     (-----) [005] d..1 82316.600561: cpu_idle: state=0 cpu_id=5
81465           <...>-27550 (-----) [004] ...1 82316.600565: tracing_mark_write: E|27550
81466           <...>-27550 (-----) [004] ...1 82316.600569: tracing_mark_write: E|27550
81467           <...>-27550 (-----) [004] ...1 82316.600682: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
81468           <...>-27550 (-----) [004] ...1 82316.600742: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
81469           <...>-27550 (-----) [004] ...1 82316.600747: tracing_mark_write: E|27550
81470           <...>-27550 (-----) [004] ...1 82316.600751: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
81471           <...>-27550 (-----) [004] ...1 82316.600757: tracing_mark_write: E|27550
81472           <...>-27550 (-----) [004] ...1 82316.600761: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
81473           <...>-27550 (-----) [004] ...1 82316.600765: tracing_mark_write: E|27550
81474           <...>-27550 (-----) [004] ...1 82316.600768: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
81475          <idle>-0     (-----) [005] .n.1 82316.600858: cpu_idle: state=4294967295 cpu_id=5
81476           <...>-27550 (-----) [004] ...1 82316.600860: tracing_mark_write: E|27550
81477           <...>-27550 (-----) [004] ...1 82316.600864: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
81478          <idle>-0     (-----) [005] d..2 82316.600867: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27721 next_prio=110
81479           <...>-27550 (-----) [004] d..2 82316.600881: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81480          <idle>-0     (-----) [004] d..1 82316.600895: cpu_idle: state=0 cpu_id=4
81481           <...>-27721 (-----) [005] ...1 82316.600927: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
81482          <idle>-0     (-----) [000] d.h5 82316.600937: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
81483           <...>-27721 (-----) [005] ...1 82316.600941: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
81484           <...>-27721 (-----) [005] ...1 82316.600945: tracing_mark_write: E|27550
81485          <idle>-0     (-----) [000] d.h6 82316.600962: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
81486           <...>-27721 (-----) [005] .... 82316.600965: binder_transaction: transaction=1570853 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
81487          <idle>-0     (-----) [000] d.h5 82316.600968: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
81488           <...>-27721 (-----) [005] .... 82316.600968: binder_transaction_alloc_buf: transaction=1570853 data_size=48 offsets_size=0
81489          <idle>-0     (-----) [003] .n.1 82316.600969: cpu_idle: state=4294967295 cpu_id=3
81490           <...>-27721 (-----) [005] ...2 82316.600971: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
81491           <...>-27721 (-----) [005] d..4 82316.600973: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
81492          <idle>-0     (-----) [000] d.h6 82316.600981: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
81493          <idle>-0     (-----) [003] d..2 82316.600983: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
81494           <...>-27721 (-----) [005] dn.5 82316.600984: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
81495          <idle>-0     (-----) [002] .n.1 82316.600987: cpu_idle: state=4294967295 cpu_id=2
81496           <...>-27721 (-----) [005] d..2 82316.600991: sched_switch: prev_comm=id.nn.benchmark prev_pid=27721 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
81497          <idle>-0     (-----) [000] ...1 82316.600997: cpu_idle: state=4294967295 cpu_id=0
81498          <idle>-0     (-----) [002] d..2 82316.600999: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
81499<...>-770 ( 770) [005] .... 82316.601001: binder_transaction_received: transaction=1570853
81500          <idle>-0     (-----) [000] d..1 82316.601003: cpu_idle: state=0 cpu_id=0
81501  crtc_event:111-322   (  322) [003] d..2 82316.601022: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81502<...>-770 ( 770) [005] ...1 82316.601022: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
81503          <idle>-0     (-----) [003] d..1 82316.601031: cpu_idle: state=0 cpu_id=3
81504<...>-770 ( 770) [005] d..2 82316.601092: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
81505 crtc_commit:111-321   (  321) [002] d.h1 82316.601132: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
81506<...>-770 ( 770) [005] ...1 82316.601146: tracing_mark_write: E|770
81507<...>-770 ( 770) [005] .... 82316.601154: binder_transaction: transaction=1570854 dest_node=0 dest_proc=27550 dest_thread=27721 reply=1 flags=0x0 code=0x0
81508 crtc_commit:111-321   (  321) [002] d..2 82316.601154: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
81509<...>-770 ( 770) [005] .... 82316.601157: binder_transaction_alloc_buf: transaction=1570854 data_size=168 offsets_size=32
81510<...>-770 ( 770) [005] .... 82316.601163: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
81511<...>-770 ( 770) [005] d..2 82316.601199: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27721 next_prio=110
81512           <...>-27721 (-----) [005] .... 82316.601211: binder_transaction_received: transaction=1570854
81513<...>-581 ( 571) [002] d..2 82316.601261: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81514          <idle>-0     (-----) [002] d..1 82316.601274: cpu_idle: state=0 cpu_id=2
81515           <...>-27721 (-----) [005] ...1 82316.601280: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
81516           <...>-27721 (-----) [005] ...1 82316.601285: tracing_mark_write: E|27550
81517           <...>-27721 (-----) [005] .... 82316.601301: binder_transaction: transaction=1570855 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
81518           <...>-27721 (-----) [005] .... 82316.601303: binder_transaction_alloc_buf: transaction=1570855 data_size=48 offsets_size=0
81519           <...>-27721 (-----) [005] ...2 82316.601305: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
81520           <...>-27721 (-----) [005] d..4 82316.601308: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
81521           <...>-27721 (-----) [005] dn.5 82316.601318: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
81522           <...>-27721 (-----) [005] d..2 82316.601325: sched_switch: prev_comm=id.nn.benchmark prev_pid=27721 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
81523<...>-770 ( 770) [005] .... 82316.601332: binder_transaction_received: transaction=1570855
81524<...>-770 ( 770) [005] ...1 82316.601349: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
81525          <idle>-0     (-----) [001] ...1 82316.601375: cpu_idle: state=4294967295 cpu_id=1
81526          <idle>-0     (-----) [001] d..1 82316.601380: cpu_idle: state=0 cpu_id=1
81527<...>-770 ( 770) [005] d..2 82316.601410: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
81528          <idle>-0     (-----) [002] dnh2 82316.601436: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
81529          <idle>-0     (-----) [002] .n.1 82316.601442: cpu_idle: state=4294967295 cpu_id=2
81530<...>-770 ( 770) [005] ...1 82316.601444: tracing_mark_write: E|770
81531<...>-770 ( 770) [005] .... 82316.601451: binder_transaction: transaction=1570856 dest_node=0 dest_proc=27550 dest_thread=27721 reply=1 flags=0x0 code=0x0
81532          <idle>-0     (-----) [002] d..2 82316.601452: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
81533<...>-770 ( 770) [005] .... 82316.601454: binder_transaction_alloc_buf: transaction=1570856 data_size=168 offsets_size=32
81534<...>-770 ( 770) [005] .... 82316.601460: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
81535<...>-770 ( 770) [005] d..2 82316.601494: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27721 next_prio=110
81536           <...>-27721 (-----) [005] .... 82316.601505: binder_transaction_received: transaction=1570856
81537<...>-581 ( 571) [002] d..2 82316.601515: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81538          <idle>-0     (-----) [002] d..1 82316.601525: cpu_idle: state=0 cpu_id=2
81539          <idle>-0     (-----) [000] d.s2 82316.601806: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
81540          <idle>-0     (-----) [002] d.s3 82316.601806: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
81541          <idle>-0     (-----) [003] d.s2 82316.601808: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
81542           <...>-27721 (-----) [005] ...1 82316.601820: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
81543          <idle>-0     (-----) [000] dns3 82316.601826: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
81544          <idle>-0     (-----) [002] d.s4 82316.601828: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
81545           <...>-27721 (-----) [005] ...1 82316.601830: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
81546           <...>-27721 (-----) [005] ...1 82316.601834: tracing_mark_write: E|27550
81547          <idle>-0     (-----) [003] dns3 82316.601837: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
81548          <idle>-0     (-----) [000] .n.1 82316.601841: cpu_idle: state=4294967295 cpu_id=0
81549          <idle>-0     (-----) [000] d..2 82316.601851: 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
81550          <idle>-0     (-----) [003] .n.1 82316.601854: cpu_idle: state=4294967295 cpu_id=3
81551          <idle>-0     (-----) [003] d..2 82316.601862: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
81552          <idle>-0     (-----) [002] ...1 82316.601864: cpu_idle: state=4294967295 cpu_id=2
81553          <idle>-0     (-----) [002] d..1 82316.601874: cpu_idle: state=0 cpu_id=2
81554  crtc_event:111-322   (  322) [003] d..2 82316.601882: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
81555     rcu_preempt-7     (    7) [000] d..2 82316.601888: 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
81556<...>-8 ( 8) [003] d..2 82316.601889: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
81557           <...>-27721 (-----) [005] .... 82316.601894: binder_transaction: transaction=1570857 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
81558           <...>-27721 (-----) [005] .... 82316.601898: binder_transaction_alloc_buf: transaction=1570857 data_size=556 offsets_size=104
81559          <idle>-0     (-----) [000] d..1 82316.601902: cpu_idle: state=0 cpu_id=0
81560           <...>-27721 (-----) [005] ...2 82316.601911: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
81561           <...>-27721 (-----) [005] d..4 82316.601914: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81562<...>-8 ( 8) [003] d..3 82316.601919: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
81563           <...>-27721 (-----) [005] dn.5 82316.601923: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81564          <idle>-0     (-----) [000] .n.1 82316.601925: cpu_idle: state=4294967295 cpu_id=0
81565           <...>-27721 (-----) [005] d..2 82316.601930: sched_switch: prev_comm=id.nn.benchmark prev_pid=27721 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81566          <idle>-0     (-----) [000] d..2 82316.601938: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
81567<...>-5340 ( 788) [005] .... 82316.601939: binder_transaction_received: transaction=1570857
81568<...>-8 ( 8) [003] d..2 82316.601945: 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
81569<...>-46 ( 46) [000] d..2 82316.601952: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
81570          <idle>-0     (-----) [003] d..1 82316.601958: cpu_idle: state=0 cpu_id=3
81571<...>-46 ( 46) [000] d..3 82316.601968: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
81572          <idle>-0     (-----) [003] .n.1 82316.601975: cpu_idle: state=4294967295 cpu_id=3
81573<...>-5340 ( 788) [005] ...1 82316.601984: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
81574          <idle>-0     (-----) [003] d..2 82316.601987: 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
81575<...>-46 ( 46) [000] d..2 82316.601992: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81576          <idle>-0     (-----) [000] d..1 82316.602005: cpu_idle: state=0 cpu_id=0
81577<...>-8 ( 8) [003] d..2 82316.602014: 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
81578          <idle>-0     (-----) [003] d..1 82316.602025: cpu_idle: state=0 cpu_id=3
81579<...>-5340 ( 788) [005] d..2 82316.602028: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
81580<...>-5340 ( 788) [005] d..2 82316.602052: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27721 next_prio=110
81581          <idle>-0     (-----) [000] dnh2 82316.602055: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
81582          <idle>-0     (-----) [000] .n.1 82316.602061: cpu_idle: state=4294967295 cpu_id=0
81583          <idle>-0     (-----) [000] d..2 82316.602072: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
81584           <...>-27721 (-----) [005] d..2 82316.602076: sched_switch: prev_comm=id.nn.benchmark prev_pid=27721 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81585          <idle>-0     (-----) [005] d..1 82316.602094: cpu_idle: state=0 cpu_id=5
81586<...>-87 ( 87) [000] d..2 82316.602120: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81587          <idle>-0     (-----) [002] d.h4 82316.602128: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
81588          <idle>-0     (-----) [000] d..1 82316.602133: cpu_idle: state=0 cpu_id=0
81589          <idle>-0     (-----) [002] dnh5 82316.602148: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
81590          <idle>-0     (-----) [002] .n.1 82316.602159: cpu_idle: state=4294967295 cpu_id=2
81591          <idle>-0     (-----) [002] d..2 82316.602172: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
81592<...>-86 ( 86) [002] d..3 82316.602207: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81593          <idle>-0     (-----) [005] dnh2 82316.602230: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81594          <idle>-0     (-----) [005] .n.1 82316.602234: cpu_idle: state=4294967295 cpu_id=5
81595          <idle>-0     (-----) [005] d..2 82316.602243: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81596<...>-86 ( 86) [002] d..2 82316.602273: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81597          <idle>-0     (-----) [002] d..1 82316.602289: cpu_idle: state=0 cpu_id=2
81598<...>-5340 ( 788) [005] d..1 82316.602294: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81599          <idle>-0     (-----) [000] dnh2 82316.602320: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81600          <idle>-0     (-----) [000] .n.1 82316.602326: cpu_idle: state=4294967295 cpu_id=0
81601          <idle>-0     (-----) [000] d..2 82316.602337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
81602 neuralnetworks@-13088 (  788) [000] d..2 82316.602383: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81603          <idle>-0     (-----) [000] d..1 82316.602396: cpu_idle: state=0 cpu_id=0
81604<...>-5340 ( 788) [005] d..2 82316.602442: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
81605          <idle>-0     (-----) [000] dnh2 82316.602463: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
81606<...>-5340 ( 788) [005] d..2 82316.602468: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81607          <idle>-0     (-----) [000] .n.1 82316.602470: cpu_idle: state=4294967295 cpu_id=0
81608          <idle>-0     (-----) [000] d..2 82316.602482: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
81609          <idle>-0     (-----) [005] d..1 82316.602483: cpu_idle: state=0 cpu_id=5
81610          <idle>-0     (-----) [002] d.h4 82316.602523: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
81611<...>-87 ( 87) [000] d..2 82316.602523: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81612          <idle>-0     (-----) [002] dnh5 82316.602534: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
81613          <idle>-0     (-----) [000] d..1 82316.602535: cpu_idle: state=0 cpu_id=0
81614          <idle>-0     (-----) [002] .n.1 82316.602544: cpu_idle: state=4294967295 cpu_id=2
81615          <idle>-0     (-----) [002] d..2 82316.602556: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
81616<...>-86 ( 86) [002] d..2 82316.602594: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81617          <idle>-0     (-----) [002] d..1 82316.602608: cpu_idle: state=0 cpu_id=2
81618          <idle>-0     (-----) [005] ...1 82316.602807: cpu_idle: state=4294967295 cpu_id=5
81619          <idle>-0     (-----) [005] d..1 82316.602811: cpu_idle: state=0 cpu_id=5
81620          <idle>-0     (-----) [000] d.h5 82316.603263: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
81621          <idle>-0     (-----) [000] d.h6 82316.603282: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
81622          <idle>-0     (-----) [002] .n.1 82316.603289: cpu_idle: state=4294967295 cpu_id=2
81623          <idle>-0     (-----) [000] ...1 82316.603297: cpu_idle: state=4294967295 cpu_id=0
81624          <idle>-0     (-----) [002] d..2 82316.603300: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
81625          <idle>-0     (-----) [000] d..1 82316.603303: cpu_idle: state=0 cpu_id=0
81626 crtc_commit:111-321   (  321) [002] d..2 82316.603388: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81627          <idle>-0     (-----) [002] d..1 82316.603403: cpu_idle: state=0 cpu_id=2
81628          <idle>-0     (-----) [000] d.h5 82316.603561: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
81629          <idle>-0     (-----) [000] d.h6 82316.603577: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
81630          <idle>-0     (-----) [003] .n.1 82316.603582: cpu_idle: state=4294967295 cpu_id=3
81631          <idle>-0     (-----) [000] ...1 82316.603593: cpu_idle: state=4294967295 cpu_id=0
81632          <idle>-0     (-----) [003] d..2 82316.603593: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
81633          <idle>-0     (-----) [000] d..1 82316.603598: cpu_idle: state=0 cpu_id=0
81634  crtc_event:111-322   (  322) [003] d..2 82316.603622: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81635          <idle>-0     (-----) [003] d..1 82316.603632: cpu_idle: state=0 cpu_id=3
81636          <idle>-0     (-----) [002] d.h4 82316.604250: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81637          <idle>-0     (-----) [005] dnh2 82316.604272: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81638          <idle>-0     (-----) [005] .n.1 82316.604275: cpu_idle: state=4294967295 cpu_id=5
81639          <idle>-0     (-----) [005] d..2 82316.604283: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81640          <idle>-0     (-----) [002] ...1 82316.604295: cpu_idle: state=4294967295 cpu_id=2
81641          <idle>-0     (-----) [002] d..1 82316.604301: cpu_idle: state=0 cpu_id=2
81642<...>-5340 ( 788) [005] d..1 82316.604332: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81643          <idle>-0     (-----) [000] dnh2 82316.604358: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81644          <idle>-0     (-----) [000] .n.1 82316.604364: cpu_idle: state=4294967295 cpu_id=0
81645          <idle>-0     (-----) [000] d..2 82316.604377: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
81646<...>-5340 ( 788) [005] ...1 82316.604425: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
81647<...>-5340 ( 788) [005] ...1 82316.604430: tracing_mark_write: E|788
81648<...>-5340 ( 788) [005] .... 82316.604446: binder_transaction: transaction=1570860 dest_node=1570858 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
81649 neuralnetworks@-13088 (  788) [000] d..2 82316.604448: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81650<...>-5340 ( 788) [005] .... 82316.604448: binder_transaction_alloc_buf: transaction=1570860 data_size=60 offsets_size=0
81651<...>-5340 ( 788) [005] d..4 82316.604451: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
81652          <idle>-0     (-----) [000] d..1 82316.604460: cpu_idle: state=0 cpu_id=0
81653<...>-5340 ( 788) [005] d..5 82316.604463: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
81654          <idle>-0     (-----) [004] .n.1 82316.604470: cpu_idle: state=4294967295 cpu_id=4
81655          <idle>-0     (-----) [004] d..2 82316.604479: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
81656           <...>-27571 (-----) [004] .... 82316.604484: binder_transaction_received: transaction=1570860
81657<...>-5340 ( 788) [005] ...1 82316.604486: tracing_mark_write: E|788
81658<...>-5340 ( 788) [005] .... 82316.604492: binder_transaction: transaction=1570861 dest_node=0 dest_proc=27550 dest_thread=27721 reply=1 flags=0x0 code=0x0
81659<...>-5340 ( 788) [005] .... 82316.604494: binder_transaction_alloc_buf: transaction=1570861 data_size=8 offsets_size=0
81660<...>-5340 ( 788) [005] d..2 82316.604496: sched_waking: comm=id.nn.benchmark pid=27721 prio=110 target_cpu=005
81661           <...>-27571 (-----) [004] ...1 82316.604502: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
81662<...>-5340 ( 788) [005] d..3 82316.604503: sched_wakeup: comm=id.nn.benchmark pid=27721 prio=110 target_cpu=005
81663<...>-5340 ( 788) [005] .... 82316.604505: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
81664           <...>-27571 (-----) [004] ...1 82316.604508: tracing_mark_write: E|27550
81665           <...>-27571 (-----) [004] d..2 82316.604536: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81666          <idle>-0     (-----) [004] d..1 82316.604544: cpu_idle: state=0 cpu_id=4
81667<...>-5340 ( 788) [005] d..2 82316.604546: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27721 next_prio=110
81668           <...>-27721 (-----) [005] .... 82316.604555: binder_transaction_received: transaction=1570861
81669           <...>-27721 (-----) [005] ...1 82316.604591: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
81670           <...>-27721 (-----) [005] ...1 82316.604598: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
81671           <...>-27721 (-----) [005] ...1 82316.604623: tracing_mark_write: E|27550
81672           <...>-27721 (-----) [005] ...1 82316.604626: tracing_mark_write: E|27550
81673           <...>-27721 (-----) [005] ...1 82316.604630: tracing_mark_write: E|27550
81674           <...>-27721 (-----) [005] ...1 82316.604818: tracing_mark_write: E|27550
81675           <...>-27721 (-----) [005] d..1 82316.604830: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81676           <...>-27721 (-----) [005] d..2 82316.604846: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81677          <idle>-0     (-----) [004] .n.1 82316.604851: cpu_idle: state=4294967295 cpu_id=4
81678          <idle>-0     (-----) [004] d..2 82316.604858: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
81679           <...>-27550 (-----) [004] d..2 82316.604878: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81680          <idle>-0     (-----) [004] d..1 82316.604887: cpu_idle: state=0 cpu_id=4
81681           <...>-27721 (-----) [005] d..1 82316.604931: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81682           <...>-27721 (-----) [005] d..2 82316.604941: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81683          <idle>-0     (-----) [004] .n.1 82316.604947: cpu_idle: state=4294967295 cpu_id=4
81684          <idle>-0     (-----) [004] d..2 82316.604955: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
81685           <...>-27721 (-----) [005] d..2 82316.604980: sched_switch: prev_comm=id.nn.benchmark prev_pid=27721 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
81686           <...>-27550 (-----) [004] ...1 82316.604999: tracing_mark_write: E|27550
81687           <...>-27550 (-----) [004] ...1 82316.605004: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
81688          <idle>-0     (-----) [005] d..1 82316.605006: cpu_idle: state=0 cpu_id=5
81689           <...>-27550 (-----) [004] ...1 82316.605009: tracing_mark_write: E|27550
81690           <...>-27550 (-----) [004] ...1 82316.605013: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
81691           <...>-27550 (-----) [004] ...1 82316.605017: tracing_mark_write: E|27550
81692           <...>-27550 (-----) [004] ...1 82316.605021: tracing_mark_write: E|27550
81693           <...>-27550 (-----) [004] ...1 82316.605167: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
81694           <...>-27550 (-----) [004] ...1 82316.605226: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
81695           <...>-27550 (-----) [004] ...1 82316.605231: tracing_mark_write: E|27550
81696           <...>-27550 (-----) [004] ...1 82316.605235: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
81697           <...>-27550 (-----) [004] ...1 82316.605240: tracing_mark_write: E|27550
81698           <...>-27550 (-----) [004] ...1 82316.605244: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
81699           <...>-27550 (-----) [004] ...1 82316.605248: tracing_mark_write: E|27550
81700           <...>-27550 (-----) [004] ...1 82316.605252: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
81701          <idle>-0     (-----) [005] .n.1 82316.605337: cpu_idle: state=4294967295 cpu_id=5
81702           <...>-27550 (-----) [004] ...1 82316.605338: tracing_mark_write: E|27550
81703           <...>-27550 (-----) [004] ...1 82316.605343: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
81704          <idle>-0     (-----) [005] d..2 82316.605347: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27722 next_prio=110
81705           <...>-27550 (-----) [004] d..2 82316.605364: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81706          <idle>-0     (-----) [004] d..1 82316.605379: cpu_idle: state=0 cpu_id=4
81707           <...>-27722 (-----) [005] ...1 82316.605408: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
81708          <idle>-0     (-----) [003] d.h2 82316.605412: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
81709           <...>-27722 (-----) [005] ...1 82316.605422: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
81710           <...>-27722 (-----) [005] ...1 82316.605425: tracing_mark_write: E|27550
81711          <idle>-0     (-----) [003] dnh3 82316.605428: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
81712          <idle>-0     (-----) [003] .n.1 82316.605436: cpu_idle: state=4294967295 cpu_id=3
81713           <...>-27722 (-----) [005] .... 82316.605446: binder_transaction: transaction=1570862 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
81714          <idle>-0     (-----) [003] d..2 82316.605447: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
81715           <...>-27722 (-----) [005] .... 82316.605449: binder_transaction_alloc_buf: transaction=1570862 data_size=48 offsets_size=0
81716           <...>-27722 (-----) [005] ...2 82316.605452: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
81717           <...>-27722 (-----) [005] d..4 82316.605455: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
81718           <...>-27722 (-----) [005] dn.5 82316.605465: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
81719        DispSync-8879  ( 8858) [003] d..1 82316.605469: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
81720           <...>-27722 (-----) [005] d..2 82316.605471: sched_switch: prev_comm=id.nn.benchmark prev_pid=27722 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
81721<...>-770 ( 770) [005] .... 82316.605481: binder_transaction_received: transaction=1570862
81722        DispSync-8879  ( 8858) [003] d..2 82316.605493: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
81723          <idle>-0     (-----) [000] .n.1 82316.605498: cpu_idle: state=4294967295 cpu_id=0
81724<...>-770 ( 770) [005] ...1 82316.605503: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
81725          <idle>-0     (-----) [000] d..2 82316.605511: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
81726        DispSync-8879  ( 8858) [003] d..2 82316.605531: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81727          <idle>-0     (-----) [003] d..1 82316.605542: cpu_idle: state=0 cpu_id=3
81728<...>-770 ( 770) [005] d..2 82316.605571: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
81729  appEventThread-8881  ( 8858) [000] d..3 82316.605579: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
81730  appEventThread-8881  ( 8858) [000] d..4 82316.605604: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
81731          <idle>-0     (-----) [001] .n.1 82316.605609: cpu_idle: state=4294967295 cpu_id=1
81732  appEventThread-8881  ( 8858) [000] d.h2 82316.605616: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
81733          <idle>-0     (-----) [001] d..2 82316.605626: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
81734<...>-770 ( 770) [005] ...1 82316.605627: tracing_mark_write: E|770
81735<...>-770 ( 770) [005] .... 82316.605635: binder_transaction: transaction=1570863 dest_node=0 dest_proc=27550 dest_thread=27722 reply=1 flags=0x0 code=0x0
81736<...>-770 ( 770) [005] .... 82316.605637: binder_transaction_alloc_buf: transaction=1570863 data_size=168 offsets_size=32
81737<...>-770 ( 770) [005] .... 82316.605644: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
81738  appEventThread-8881  ( 8858) [000] d..2 82316.605651: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
81739<...>-770 ( 770) [005] d..2 82316.605680: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27722 next_prio=110
81740           <...>-27722 (-----) [005] .... 82316.605690: binder_transaction_received: transaction=1570863
81741<...>-581 ( 571) [000] d..2 82316.605739: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81742          <idle>-0     (-----) [000] d..1 82316.605753: cpu_idle: state=0 cpu_id=0
81743           <...>-27722 (-----) [005] ...1 82316.605759: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
81744           <...>-27722 (-----) [005] ...1 82316.605765: tracing_mark_write: E|27550
81745           <...>-27722 (-----) [005] .... 82316.605779: binder_transaction: transaction=1570864 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
81746           <...>-27722 (-----) [005] .... 82316.605782: binder_transaction_alloc_buf: transaction=1570864 data_size=48 offsets_size=0
81747           <...>-27722 (-----) [005] ...2 82316.605784: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
81748           <...>-27722 (-----) [005] d..4 82316.605787: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
81749           <...>-27722 (-----) [005] dn.5 82316.605796: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
81750           <...>-27722 (-----) [005] d..2 82316.605803: sched_switch: prev_comm=id.nn.benchmark prev_pid=27722 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
81751<...>-770 ( 770) [005] .... 82316.605811: binder_transaction_received: transaction=1570864
81752<...>-770 ( 770) [005] ...1 82316.605827: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
81753<...>-770 ( 770) [005] d..2 82316.605885: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
81754          <idle>-0     (-----) [000] dnh2 82316.605909: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
81755          <idle>-0     (-----) [000] .n.1 82316.605916: cpu_idle: state=4294967295 cpu_id=0
81756<...>-770 ( 770) [005] ...1 82316.605918: tracing_mark_write: E|770
81757<...>-770 ( 770) [005] .... 82316.605925: binder_transaction: transaction=1570865 dest_node=0 dest_proc=27550 dest_thread=27722 reply=1 flags=0x0 code=0x0
81758          <idle>-0     (-----) [000] d..2 82316.605925: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
81759<...>-770 ( 770) [005] .... 82316.605927: binder_transaction_alloc_buf: transaction=1570865 data_size=168 offsets_size=32
81760<...>-770 ( 770) [005] .... 82316.605933: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
81761<...>-770 ( 770) [005] d..2 82316.605967: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27722 next_prio=110
81762           <...>-27722 (-----) [005] .... 82316.605978: binder_transaction_received: transaction=1570865
81763<...>-581 ( 571) [000] d..2 82316.605987: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81764<...>-9105 ( 9105) [001] .... 82316.605992: binder_transaction: transaction=1570866 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
81765          <idle>-0     (-----) [000] d..1 82316.605997: cpu_idle: state=0 cpu_id=0
81766<...>-9105 ( 9105) [001] .... 82316.606001: binder_transaction_alloc_buf: transaction=1570866 data_size=80 offsets_size=0
81767<...>-9105 ( 9105) [001] d..4 82316.606008: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
81768<...>-9105 ( 9105) [001] d..5 82316.606042: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
81769          <idle>-0     (-----) [000] .n.1 82316.606048: cpu_idle: state=4294967295 cpu_id=0
81770          <idle>-0     (-----) [000] d..2 82316.606059: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
81771<...>-13083 ( 8858) [000] .... 82316.606068: binder_transaction_received: transaction=1570866
81772<...>-9105 ( 9105) [001] d..3 82316.606085: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
81773<...>-13083 ( 8858) [000] d..1 82316.606106: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
81774<...>-9105 ( 9105) [001] d..4 82316.606113: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
81775          <idle>-0     (-----) [002] .n.1 82316.606118: cpu_idle: state=4294967295 cpu_id=2
81776<...>-13083 ( 8858) [000] d..2 82316.606133: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
81777          <idle>-0     (-----) [002] d..2 82316.606134: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
81778          <idle>-0     (-----) [003] .n.1 82316.606139: cpu_idle: state=4294967295 cpu_id=3
81779          <idle>-0     (-----) [003] d..2 82316.606147: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
81780<...>-13083 ( 8858) [000] d..2 82316.606180: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81781          <idle>-0     (-----) [000] d..1 82316.606192: cpu_idle: state=0 cpu_id=0
81782    RenderThread-9436  ( 9105) [002] d..2 82316.606198: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81783  appEventThread-8881  ( 8858) [003] d..2 82316.606202: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81784          <idle>-0     (-----) [003] d..1 82316.606211: cpu_idle: state=0 cpu_id=3
81785          <idle>-0     (-----) [002] d..1 82316.606214: cpu_idle: state=0 cpu_id=2
81786           <...>-27722 (-----) [005] ...1 82316.606249: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
81787<...>-9105 ( 9105) [001] d..3 82316.606252: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
81788           <...>-27722 (-----) [005] ...1 82316.606258: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
81789           <...>-27722 (-----) [005] ...1 82316.606262: tracing_mark_write: E|27550
81790<...>-9105 ( 9105) [001] d..4 82316.606271: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
81791          <idle>-0     (-----) [002] .n.1 82316.606278: cpu_idle: state=4294967295 cpu_id=2
81792          <idle>-0     (-----) [002] d..2 82316.606290: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
81793<...>-9105 ( 9105) [001] d..2 82316.606309: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81794           <...>-27722 (-----) [005] .... 82316.606321: binder_transaction: transaction=1570867 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
81795           <...>-27722 (-----) [005] .... 82316.606324: binder_transaction_alloc_buf: transaction=1570867 data_size=556 offsets_size=104
81796          <idle>-0     (-----) [001] d..1 82316.606331: cpu_idle: state=0 cpu_id=1
81797           <...>-27722 (-----) [005] ...2 82316.606337: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
81798           <...>-27722 (-----) [005] d..4 82316.606340: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81799           <...>-27722 (-----) [005] dn.5 82316.606352: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81800           <...>-27722 (-----) [005] d..2 82316.606359: sched_switch: prev_comm=id.nn.benchmark prev_pid=27722 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81801<...>-5340 ( 788) [005] .... 82316.606368: binder_transaction_received: transaction=1570867
81802    RenderThread-9436  ( 9105) [002] d..1 82316.606409: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
81803<...>-5340 ( 788) [005] ...1 82316.606413: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
81804    RenderThread-9436  ( 9105) [002] d..2 82316.606430: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
81805          <idle>-0     (-----) [001] .n.1 82316.606437: cpu_idle: state=4294967295 cpu_id=1
81806          <idle>-0     (-----) [001] d..2 82316.606452: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
81807<...>-5340 ( 788) [005] d..2 82316.606455: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
81808<...>-5340 ( 788) [005] d..2 82316.606492: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27722 next_prio=110
81809<...>-9105 ( 9105) [001] d.h1 82316.606496: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
81810    RenderThread-9436  ( 9105) [002] .... 82316.606505: binder_transaction: transaction=1570870 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
81811    RenderThread-9436  ( 9105) [002] .... 82316.606511: binder_transaction_alloc_buf: transaction=1570870 data_size=104 offsets_size=0
81812           <...>-27722 (-----) [005] d..2 82316.606515: sched_switch: prev_comm=id.nn.benchmark prev_pid=27722 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81813    RenderThread-9436  ( 9105) [002] d..4 82316.606516: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
81814          <idle>-0     (-----) [005] d..1 82316.606533: cpu_idle: state=0 cpu_id=5
81815    RenderThread-9436  ( 9105) [002] dn.5 82316.606538: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
81816    RenderThread-9436  ( 9105) [002] d..2 82316.606550: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
81817<...>-9105 ( 9105) [001] d..2 82316.606552: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
81818<...>-13083 ( 8858) [002] .... 82316.606561: binder_transaction_received: transaction=1570870
81819<...>-87 ( 87) [001] d..2 82316.606605: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81820<...>-13083 ( 8858) [002] d.h3 82316.606606: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
81821          <idle>-0     (-----) [001] d..1 82316.606621: cpu_idle: state=0 cpu_id=1
81822<...>-13083 ( 8858) [002] d.h4 82316.606639: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
81823          <idle>-0     (-----) [001] .n.1 82316.606646: cpu_idle: state=4294967295 cpu_id=1
81824          <idle>-0     (-----) [001] d..2 82316.606660: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
81825<...>-13083 ( 8858) [002] d.h3 82316.606691: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81826          <idle>-0     (-----) [005] dnh2 82316.606714: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81827          <idle>-0     (-----) [005] .n.1 82316.606718: cpu_idle: state=4294967295 cpu_id=5
81828          <idle>-0     (-----) [005] d..2 82316.606726: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81829<...>-86 ( 86) [001] d..2 82316.606750: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81830          <idle>-0     (-----) [001] d..1 82316.606762: cpu_idle: state=0 cpu_id=1
81831<...>-13083 ( 8858) [002] .... 82316.606770: binder_transaction: transaction=1570871 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
81832<...>-13083 ( 8858) [002] .... 82316.606775: binder_transaction_alloc_buf: transaction=1570871 data_size=52 offsets_size=8
81833<...>-5340 ( 788) [005] d..1 82316.606778: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81834<...>-13083 ( 8858) [002] dnh1 82316.606818: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
81835<...>-13083 ( 8858) [002] d..2 82316.606831: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
81836 neuralnetworks@-13088 (  788) [002] d..2 82316.606878: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
81837<...>-13083 ( 8858) [002] d..2 82316.606906: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
81838    RenderThread-9436  ( 9105) [002] .... 82316.606917: binder_transaction_received: transaction=1570871
81839<...>-5340 ( 788) [005] d..2 82316.606937: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
81840          <idle>-0     (-----) [001] dnh2 82316.606960: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
81841<...>-5340 ( 788) [005] d..2 82316.606963: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
81842          <idle>-0     (-----) [001] .n.1 82316.606967: cpu_idle: state=4294967295 cpu_id=1
81843          <idle>-0     (-----) [005] d..1 82316.606977: cpu_idle: state=0 cpu_id=5
81844          <idle>-0     (-----) [001] d..2 82316.606979: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
81845<...>-87 ( 87) [001] d..2 82316.607018: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81846    RenderThread-9436  ( 9105) [002] d.h3 82316.607021: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
81847          <idle>-0     (-----) [001] d..1 82316.607030: cpu_idle: state=0 cpu_id=1
81848    RenderThread-9436  ( 9105) [002] d.h4 82316.607041: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
81849          <idle>-0     (-----) [001] .n.1 82316.607046: cpu_idle: state=4294967295 cpu_id=1
81850          <idle>-0     (-----) [001] d..2 82316.607059: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
81851<...>-86 ( 86) [001] d..2 82316.607094: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81852          <idle>-0     (-----) [001] d..1 82316.607107: cpu_idle: state=0 cpu_id=1
81853          <idle>-0     (-----) [005] ...1 82316.607318: cpu_idle: state=4294967295 cpu_id=5
81854          <idle>-0     (-----) [005] d..1 82316.607322: cpu_idle: state=0 cpu_id=5
81855    RenderThread-9436  ( 9105) [002] d..2 82316.608016: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
81856          <idle>-0     (-----) [002] d..1 82316.608033: cpu_idle: state=0 cpu_id=2
81857          <idle>-0     (-----) [002] d.h2 82316.608096: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
81858          <idle>-0     (-----) [002] d.h3 82316.608107: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
81859          <idle>-0     (-----) [002] dnh3 82316.608113: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
81860          <idle>-0     (-----) [002] .n.1 82316.608123: cpu_idle: state=4294967295 cpu_id=2
81861          <idle>-0     (-----) [000] d.h3 82316.608135: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
81862          <idle>-0     (-----) [002] d..2 82316.608136: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
81863          <idle>-0     (-----) [000] dnh4 82316.608152: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
81864          <idle>-0     (-----) [000] .n.1 82316.608164: cpu_idle: state=4294967295 cpu_id=0
81865          <idle>-0     (-----) [000] d..2 82316.608172: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
81866          <idle>-0     (-----) [001] ...1 82316.608224: cpu_idle: state=4294967295 cpu_id=1
81867 kgsl_worker_thr-258   (  258) [000] d..2 82316.608224: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
81868          <idle>-0     (-----) [001] d..1 82316.608229: cpu_idle: state=0 cpu_id=1
81869 kgsl_worker_thr-258   (  258) [000] d..3 82316.608268: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
81870 kgsl_worker_thr-258   (  258) [000] d..2 82316.608286: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
81871    RenderThread-9436  ( 9105) [002] .... 82316.608343: binder_transaction: transaction=1570872 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
81872    RenderThread-9436  ( 9105) [002] .... 82316.608349: binder_transaction_alloc_buf: transaction=1570872 data_size=192 offsets_size=8
81873    RenderThread-9436  ( 9105) [002] d..4 82316.608360: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
81874    RenderThread-9436  ( 9105) [002] dn.5 82316.608377: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
81875    RenderThread-9436  ( 9105) [002] d..2 82316.608388: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
81876<...>-13083 ( 8858) [002] .... 82316.608397: binder_transaction_received: transaction=1570872
81877          <idle>-0     (-----) [003] d.s2 82316.608467: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
81878          <idle>-0     (-----) [003] dns3 82316.608487: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
81879<...>-13083 ( 8858) [002] d.s2 82316.608491: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
81880  kworker/u16:15-1311  ( 1311) [000] d.s1 82316.608496: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
81881          <idle>-0     (-----) [003] .n.1 82316.608509: cpu_idle: state=4294967295 cpu_id=3
81882          <idle>-0     (-----) [003] d..2 82316.608519: 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
81883  kworker/u16:15-1311  ( 1311) [000] d.s2 82316.608545: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
81884<...>-8 ( 8) [003] d..2 82316.608558: 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
81885<...>-13083 ( 8858) [002] d.s3 82316.608570: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
81886     rcu_preempt-7     (    7) [003] d..2 82316.608578: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
81887     rcu_preempt-7     (    7) [003] d..3 82316.608623: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
81888     rcu_preempt-7     (    7) [003] d..2 82316.608639: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
81889<...>-13083 ( 8858) [002] d.h3 82316.608663: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81890  kworker/u16:13-1147  ( 1147) [003] d..2 82316.608672: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81891          <idle>-0     (-----) [005] dnh2 82316.608684: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
81892          <idle>-0     (-----) [003] d..1 82316.608685: cpu_idle: state=0 cpu_id=3
81893          <idle>-0     (-----) [005] .n.1 82316.608688: cpu_idle: state=4294967295 cpu_id=5
81894          <idle>-0     (-----) [005] d..2 82316.608697: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
81895<...>-5340 ( 788) [005] d..1 82316.608759: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
81896  kworker/u16:15-1311  ( 1311) [000] dnh3 82316.608798: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
81897<...>-13083 ( 8858) [002] .... 82316.608798: binder_transaction: transaction=1570873 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
81898<...>-13083 ( 8858) [002] .... 82316.608805: binder_transaction_alloc_buf: transaction=1570873 data_size=68 offsets_size=0
81899  kworker/u16:15-1311  ( 1311) [000] d..2 82316.608815: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
81900<...>-5340 ( 788) [005] ...1 82316.608878: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
81901<...>-5340 ( 788) [005] ...1 82316.608882: tracing_mark_write: E|788
81902<...>-13083 ( 8858) [002] d..2 82316.608887: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
81903 neuralnetworks@-13088 (  788) [000] d..2 82316.608888: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
81904         rcuop/2-29    (   29) [000] d..2 82316.608896: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
81905    RenderThread-9436  ( 9105) [002] .... 82316.608898: binder_transaction_received: transaction=1570873
81906<...>-5340 ( 788) [005] .... 82316.608900: binder_transaction: transaction=1570874 dest_node=1570868 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
81907<...>-5340 ( 788) [005] .... 82316.608903: binder_transaction_alloc_buf: transaction=1570874 data_size=60 offsets_size=0
81908<...>-5340 ( 788) [005] d..4 82316.608906: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
81909         rcuop/2-29    (   29) [000] d..3 82316.608918: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
81910<...>-5340 ( 788) [005] d..5 82316.608919: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
81911          <idle>-0     (-----) [004] .n.1 82316.608924: cpu_idle: state=4294967295 cpu_id=4
81912         rcuop/2-29    (   29) [000] d..2 82316.608931: 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
81913          <idle>-0     (-----) [004] d..2 82316.608932: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
81914           <...>-27571 (-----) [004] .... 82316.608937: binder_transaction_received: transaction=1570874
81915<...>-5340 ( 788) [005] ...1 82316.608942: tracing_mark_write: E|788
81916<...>-5340 ( 788) [005] .... 82316.608948: binder_transaction: transaction=1570875 dest_node=0 dest_proc=27550 dest_thread=27722 reply=1 flags=0x0 code=0x0
81917<...>-5340 ( 788) [005] .... 82316.608951: binder_transaction_alloc_buf: transaction=1570875 data_size=8 offsets_size=0
81918<...>-5340 ( 788) [005] d..2 82316.608953: sched_waking: comm=id.nn.benchmark pid=27722 prio=110 target_cpu=005
81919         rcuop/3-37    (   37) [000] d..2 82316.608956: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
81920           <...>-27571 (-----) [004] ...1 82316.608957: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
81921<...>-5340 ( 788) [005] d..3 82316.608959: sched_wakeup: comm=id.nn.benchmark pid=27722 prio=110 target_cpu=005
81922<...>-5340 ( 788) [005] .... 82316.608961: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
81923           <...>-27571 (-----) [004] ...1 82316.608964: tracing_mark_write: E|27550
81924           <...>-27571 (-----) [004] d..2 82316.608992: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81925          <idle>-0     (-----) [004] d..1 82316.609000: cpu_idle: state=0 cpu_id=4
81926<...>-5340 ( 788) [005] d..2 82316.609004: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27722 next_prio=110
81927    RenderThread-9436  ( 9105) [002] d..2 82316.609008: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
81928           <...>-27722 (-----) [005] .... 82316.609013: binder_transaction_received: transaction=1570875
81929           <...>-27722 (-----) [005] ...1 82316.609051: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
81930           <...>-27722 (-----) [005] ...1 82316.609057: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
81931          <idle>-0     (-----) [002] d..1 82316.609063: cpu_idle: state=0 cpu_id=2
81932  kworker/u16:15-1311  ( 1311) [000] d..2 82316.609083: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
81933           <...>-27722 (-----) [005] ...1 82316.609084: tracing_mark_write: E|27550
81934           <...>-27722 (-----) [005] ...1 82316.609087: tracing_mark_write: E|27550
81935           <...>-27722 (-----) [005] ...1 82316.609091: tracing_mark_write: E|27550
81936          <idle>-0     (-----) [000] d..1 82316.609104: cpu_idle: state=0 cpu_id=0
81937           <...>-27722 (-----) [005] ...1 82316.609289: tracing_mark_write: E|27550
81938           <...>-27722 (-----) [005] d..1 82316.609302: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81939           <...>-27722 (-----) [005] d..2 82316.609318: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81940          <idle>-0     (-----) [004] .n.1 82316.609323: cpu_idle: state=4294967295 cpu_id=4
81941          <idle>-0     (-----) [004] d..2 82316.609330: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
81942           <...>-27550 (-----) [004] d..2 82316.609350: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81943          <idle>-0     (-----) [004] d..1 82316.609359: cpu_idle: state=0 cpu_id=4
81944           <...>-27722 (-----) [005] d..1 82316.609408: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81945           <...>-27722 (-----) [005] d..2 82316.609418: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
81946          <idle>-0     (-----) [004] .n.1 82316.609423: cpu_idle: state=4294967295 cpu_id=4
81947          <idle>-0     (-----) [003] d.h2 82316.609424: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
81948          <idle>-0     (-----) [004] d..2 82316.609431: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
81949          <idle>-0     (-----) [003] dnh3 82316.609438: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
81950          <idle>-0     (-----) [003] .n.1 82316.609450: cpu_idle: state=4294967295 cpu_id=3
81951           <...>-27722 (-----) [005] d..2 82316.609458: sched_switch: prev_comm=id.nn.benchmark prev_pid=27722 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
81952          <idle>-0     (-----) [003] d..2 82316.609462: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
81953           <...>-27550 (-----) [004] ...1 82316.609464: tracing_mark_write: E|27550
81954           <...>-27550 (-----) [004] ...1 82316.609469: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
81955           <...>-27550 (-----) [004] ...1 82316.609474: tracing_mark_write: E|27550
81956           <...>-27550 (-----) [004] ...1 82316.609479: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
81957          <idle>-0     (-----) [005] d..1 82316.609479: cpu_idle: state=0 cpu_id=5
81958        DispSync-8879  ( 8858) [003] d..1 82316.609479: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
81959           <...>-27550 (-----) [004] ...1 82316.609483: tracing_mark_write: E|27550
81960           <...>-27550 (-----) [004] ...1 82316.609487: tracing_mark_write: E|27550
81961        DispSync-8879  ( 8858) [003] d..2 82316.609495: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
81962          <idle>-0     (-----) [001] .n.1 82316.609500: cpu_idle: state=4294967295 cpu_id=1
81963          <idle>-0     (-----) [001] d..2 82316.609513: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
81964        DispSync-8879  ( 8858) [003] d..2 82316.609527: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
81965          <idle>-0     (-----) [003] d..1 82316.609540: cpu_idle: state=0 cpu_id=3
81966   sfEventThread-8882  ( 8858) [001] d..3 82316.609565: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
81967   sfEventThread-8882  ( 8858) [001] d..4 82316.609588: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
81968          <idle>-0     (-----) [003] .n.1 82316.609593: cpu_idle: state=4294967295 cpu_id=3
81969           <...>-27550 (-----) [004] ...1 82316.609600: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
81970          <idle>-0     (-----) [003] d..2 82316.609604: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
81971   sfEventThread-8882  ( 8858) [001] d..2 82316.609628: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
81972          <idle>-0     (-----) [001] d..1 82316.609646: cpu_idle: state=0 cpu_id=1
81973           <...>-27550 (-----) [004] ...1 82316.609657: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
81974           <...>-27550 (-----) [004] ...1 82316.609662: tracing_mark_write: E|27550
81975           <...>-27550 (-----) [004] ...1 82316.609666: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
81976           <...>-27550 (-----) [004] ...1 82316.609671: tracing_mark_write: E|27550
81977           <...>-27550 (-----) [004] ...1 82316.609674: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
81978           <...>-27550 (-----) [004] ...1 82316.609678: tracing_mark_write: E|27550
81979           <...>-27550 (-----) [004] ...1 82316.609682: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
81980          <idle>-0     (-----) [005] .n.1 82316.609781: cpu_idle: state=4294967295 cpu_id=5
81981           <...>-27550 (-----) [004] ...1 82316.609783: tracing_mark_write: E|27550
81982           <...>-27550 (-----) [004] ...1 82316.609787: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
81983          <idle>-0     (-----) [005] d..2 82316.609790: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27723 next_prio=110
81984           <...>-27550 (-----) [004] d..2 82316.609804: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
81985          <idle>-0     (-----) [004] d..1 82316.609818: cpu_idle: state=0 cpu_id=4
81986           <...>-27723 (-----) [005] ...1 82316.609851: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
81987           <...>-27723 (-----) [005] ...1 82316.609865: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
81988           <...>-27723 (-----) [005] ...1 82316.609869: tracing_mark_write: E|27550
81989           <...>-27723 (-----) [005] .... 82316.609890: binder_transaction: transaction=1570876 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
81990           <...>-27723 (-----) [005] .... 82316.609894: binder_transaction_alloc_buf: transaction=1570876 data_size=48 offsets_size=0
81991           <...>-27723 (-----) [005] ...2 82316.609897: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
81992           <...>-27723 (-----) [005] d..4 82316.609899: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
81993           <...>-27723 (-----) [005] dn.5 82316.609910: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
81994           <...>-27723 (-----) [005] d..2 82316.609916: sched_switch: prev_comm=id.nn.benchmark prev_pid=27723 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
81995<...>-770 ( 770) [005] .... 82316.609926: binder_transaction_received: transaction=1570876
81996<...>-770 ( 770) [005] ...1 82316.609951: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
81997  surfaceflinger-8858  ( 8858) [003] d..1 82316.609957: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
81998  surfaceflinger-8858  ( 8858) [003] d..2 82316.609978: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
81999          <idle>-0     (-----) [001] .n.1 82316.609986: cpu_idle: state=4294967295 cpu_id=1
82000          <idle>-0     (-----) [001] d..2 82316.609996: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
82001   sfEventThread-8882  ( 8858) [001] d..2 82316.610035: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82002<...>-770 ( 770) [005] d..2 82316.610036: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
82003          <idle>-0     (-----) [001] d..1 82316.610050: cpu_idle: state=0 cpu_id=1
82004          <idle>-0     (-----) [001] dnh2 82316.610080: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
82005          <idle>-0     (-----) [001] .n.1 82316.610088: cpu_idle: state=4294967295 cpu_id=1
82006<...>-770 ( 770) [005] ...1 82316.610093: tracing_mark_write: E|770
82007          <idle>-0     (-----) [001] d..2 82316.610100: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
82008<...>-770 ( 770) [005] .... 82316.610102: binder_transaction: transaction=1570877 dest_node=0 dest_proc=27550 dest_thread=27723 reply=1 flags=0x0 code=0x0
82009<...>-770 ( 770) [005] .... 82316.610104: binder_transaction_alloc_buf: transaction=1570877 data_size=168 offsets_size=32
82010<...>-770 ( 770) [005] .... 82316.610111: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
82011<...>-770 ( 770) [005] d..2 82316.610148: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27723 next_prio=110
82012           <...>-27723 (-----) [005] .... 82316.610159: binder_transaction_received: transaction=1570877
82013<...>-581 ( 571) [001] d..2 82316.610208: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82014          <idle>-0     (-----) [001] d..1 82316.610226: cpu_idle: state=0 cpu_id=1
82015           <...>-27723 (-----) [005] ...1 82316.610234: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
82016           <...>-27723 (-----) [005] ...1 82316.610239: tracing_mark_write: E|27550
82017  surfaceflinger-8858  ( 8858) [003] ...1 82316.610247: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
82018           <...>-27723 (-----) [005] .... 82316.610254: binder_transaction: transaction=1570878 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
82019  surfaceflinger-8858  ( 8858) [003] ...1 82316.610255: tracing_mark_write: E|8858
82020           <...>-27723 (-----) [005] .... 82316.610256: binder_transaction_alloc_buf: transaction=1570878 data_size=48 offsets_size=0
82021           <...>-27723 (-----) [005] ...2 82316.610259: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
82022           <...>-27723 (-----) [005] d..4 82316.610261: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
82023           <...>-27723 (-----) [005] dn.5 82316.610271: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
82024           <...>-27723 (-----) [005] d..2 82316.610277: sched_switch: prev_comm=id.nn.benchmark prev_pid=27723 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
82025<...>-770 ( 770) [005] .... 82316.610285: binder_transaction_received: transaction=1570878
82026<...>-770 ( 770) [005] ...1 82316.610302: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
82027  surfaceflinger-8858  ( 8858) [003] .... 82316.610311: binder_transaction: transaction=1570879 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
82028  surfaceflinger-8858  ( 8858) [003] .... 82316.610317: binder_transaction_alloc_buf: transaction=1570879 data_size=540 offsets_size=96
82029  surfaceflinger-8858  ( 8858) [003] ...2 82316.610344: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
82030  surfaceflinger-8858  ( 8858) [003] d..4 82316.610353: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
82031<...>-770 ( 770) [005] d..2 82316.610361: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
82032  surfaceflinger-8858  ( 8858) [003] d..5 82316.610375: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
82033          <idle>-0     (-----) [001] dnh2 82316.610387: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
82034          <idle>-0     (-----) [001] .n.1 82316.610395: cpu_idle: state=4294967295 cpu_id=1
82035<...>-770 ( 770) [005] ...1 82316.610399: tracing_mark_write: E|770
82036<...>-770 ( 770) [005] .... 82316.610407: binder_transaction: transaction=1570880 dest_node=0 dest_proc=27550 dest_thread=27723 reply=1 flags=0x0 code=0x0
82037          <idle>-0     (-----) [001] d..2 82316.610409: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
82038<...>-770 ( 770) [005] .... 82316.610409: binder_transaction_alloc_buf: transaction=1570880 data_size=168 offsets_size=32
82039<...>-770 ( 770) [005] .... 82316.610416: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
82040 [email protected]   (  619) [001] .... 82316.610421: binder_transaction_received: transaction=1570879
82041  surfaceflinger-8858  ( 8858) [003] d..2 82316.610436: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
82042<...>-770 ( 770) [005] d..2 82316.610451: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27723 next_prio=110
82043           <...>-27723 (-----) [005] .... 82316.610461: binder_transaction_received: transaction=1570880
82044 [email protected]   (  619) [001] ...1 82316.610472: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
82045          <idle>-0     (-----) [002] ...1 82316.610478: cpu_idle: state=4294967295 cpu_id=2
82046          <idle>-0     (-----) [002] d..1 82316.610483: cpu_idle: state=0 cpu_id=2
82047<...>-581 ( 571) [003] d..2 82316.610525: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82048          <idle>-0     (-----) [003] d..1 82316.610548: cpu_idle: state=0 cpu_id=3
82049 [email protected]   (  619) [001] ...1 82316.610591: tracing_mark_write: B|619|HWCSession::PresentDisplay::
82050          <idle>-0     (-----) [000] ...1 82316.610613: cpu_idle: state=4294967295 cpu_id=0
82051          <idle>-0     (-----) [000] d..1 82316.610618: cpu_idle: state=0 cpu_id=0
82052           <...>-27723 (-----) [005] ...1 82316.610738: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
82053           <...>-27723 (-----) [005] ...1 82316.610747: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
82054           <...>-27723 (-----) [005] ...1 82316.610751: tracing_mark_write: E|27550
82055 [email protected]   (  619) [001] ...1 82316.610777: tracing_mark_write: B|619|HWDeviceDRM::Commit::
82056 [email protected]   (  619) [001] ...1 82316.610792: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
82057           <...>-27723 (-----) [005] .... 82316.610815: binder_transaction: transaction=1570881 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
82058           <...>-27723 (-----) [005] .... 82316.610817: binder_transaction_alloc_buf: transaction=1570881 data_size=556 offsets_size=104
82059           <...>-27723 (-----) [005] ...2 82316.610831: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
82060           <...>-27723 (-----) [005] d..4 82316.610834: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82061           <...>-27723 (-----) [005] dn.5 82316.610845: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82062           <...>-27723 (-----) [005] d..2 82316.610853: sched_switch: prev_comm=id.nn.benchmark prev_pid=27723 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82063<...>-5340 ( 788) [005] .... 82316.610863: binder_transaction_received: transaction=1570881
82064<...>-5340 ( 788) [005] ...1 82316.610910: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
82065<...>-5340 ( 788) [005] d..2 82316.610959: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
82066<...>-5340 ( 788) [005] d..2 82316.610984: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27723 next_prio=110
82067 [email protected]   (  619) [001] d.h1 82316.610991: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
82068           <...>-27723 (-----) [005] d..2 82316.611006: sched_switch: prev_comm=id.nn.benchmark prev_pid=27723 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82069          <idle>-0     (-----) [005] d..1 82316.611024: cpu_idle: state=0 cpu_id=5
82070 [email protected]   (  619) [001] d..2 82316.611495: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
82071 [email protected]   (  619) [001] d..3 82316.611520: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
82072          <idle>-0     (-----) [002] .n.1 82316.611526: cpu_idle: state=4294967295 cpu_id=2
82073          <idle>-0     (-----) [002] d..2 82316.611538: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
82074 [email protected]   (  619) [001] ...1 82316.611641: tracing_mark_write: E|619
82075 [email protected]   (  619) [001] ...1 82316.611649: tracing_mark_write: E|619
82076 [email protected]   (  619) [001] ...1 82316.611719: tracing_mark_write: E|619
82077 [email protected]   (  619) [001] ...1 82316.611769: tracing_mark_write: E|619
82078 [email protected]   (  619) [001] .... 82316.611889: binder_transaction: transaction=1570884 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
82079 [email protected]   (  619) [001] .... 82316.611895: binder_transaction_alloc_buf: transaction=1570884 data_size=576 offsets_size=112
82080 [email protected]   (  619) [001] d..2 82316.611918: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
82081 [email protected]   (  619) [001] d..3 82316.611937: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
82082 [email protected]   (  619) [001] .... 82316.611942: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
82083          <idle>-0     (-----) [003] .n.1 82316.611943: cpu_idle: state=4294967295 cpu_id=3
82084          <idle>-0     (-----) [003] d..2 82316.611957: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
82085  surfaceflinger-8858  ( 8858) [003] .... 82316.611968: binder_transaction_received: transaction=1570884
82086 [email protected]   (  619) [001] d..2 82316.612025: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
82087 crtc_commit:111-321   (  321) [002] d.h3 82316.612080: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
82088<...>-87 ( 87) [001] d..2 82316.612084: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82089          <idle>-0     (-----) [001] d..1 82316.612105: cpu_idle: state=0 cpu_id=1
82090          <idle>-0     (-----) [001] .n.1 82316.612111: cpu_idle: state=4294967295 cpu_id=1
82091 crtc_commit:111-321   (  321) [002] d.h4 82316.612112: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
82092          <idle>-0     (-----) [001] d..2 82316.612128: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
82093 crtc_commit:111-321   (  321) [002] d.h3 82316.612162: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82094          <idle>-0     (-----) [005] dnh2 82316.612185: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82095          <idle>-0     (-----) [005] .n.1 82316.612189: cpu_idle: state=4294967295 cpu_id=5
82096          <idle>-0     (-----) [005] d..2 82316.612198: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82097<...>-86 ( 86) [001] d..2 82316.612217: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82098          <idle>-0     (-----) [001] d..1 82316.612230: cpu_idle: state=0 cpu_id=1
82099<...>-5340 ( 788) [005] d..1 82316.612252: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
82100 crtc_commit:111-321   (  321) [002] d.h1 82316.612291: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
82101<...>-5340 ( 788) [005] d..2 82316.612413: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
82102  surfaceflinger-8858  ( 8858) [003] d..2 82316.612432: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82103          <idle>-0     (-----) [001] dnh2 82316.612436: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
82104<...>-5340 ( 788) [005] d..2 82316.612438: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82105          <idle>-0     (-----) [001] .n.1 82316.612444: cpu_idle: state=4294967295 cpu_id=1
82106          <idle>-0     (-----) [003] d..1 82316.612447: cpu_idle: state=0 cpu_id=3
82107          <idle>-0     (-----) [005] d..1 82316.612452: cpu_idle: state=0 cpu_id=5
82108          <idle>-0     (-----) [001] d..2 82316.612455: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
82109 crtc_commit:111-321   (  321) [002] d.h3 82316.612491: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
82110<...>-87 ( 87) [001] d..2 82316.612495: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82111          <idle>-0     (-----) [001] dn.1 82316.612508: cpu_idle: state=0 cpu_id=1
82112 crtc_commit:111-321   (  321) [002] d.h4 82316.612512: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=001
82113          <idle>-0     (-----) [001] .n.1 82316.612517: cpu_idle: state=4294967295 cpu_id=1
82114          <idle>-0     (-----) [001] d..2 82316.612528: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
82115 crtc_commit:111-321   (  321) [002] d..2 82316.612563: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
82116<...>-86 ( 86) [001] d..2 82316.612566: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82117          <idle>-0     (-----) [001] d..1 82316.612579: cpu_idle: state=0 cpu_id=1
82118 neuralnetworks@-13088 (  788) [002] d..2 82316.612628: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82119          <idle>-0     (-----) [002] d..1 82316.612647: cpu_idle: state=0 cpu_id=2
82120          <idle>-0     (-----) [001] ...1 82316.613696: cpu_idle: state=4294967295 cpu_id=1
82121          <idle>-0     (-----) [001] d..1 82316.613701: cpu_idle: state=0 cpu_id=1
82122          <idle>-0     (-----) [002] d.h4 82316.614167: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82123          <idle>-0     (-----) [005] dnh2 82316.614191: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82124          <idle>-0     (-----) [005] .n.1 82316.614195: cpu_idle: state=4294967295 cpu_id=5
82125          <idle>-0     (-----) [005] d..2 82316.614204: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82126          <idle>-0     (-----) [002] ...1 82316.614211: cpu_idle: state=4294967295 cpu_id=2
82127          <idle>-0     (-----) [002] d..1 82316.614218: cpu_idle: state=0 cpu_id=2
82128<...>-5340 ( 788) [005] d..1 82316.614257: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
82129          <idle>-0     (-----) [002] dnh2 82316.614284: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
82130          <idle>-0     (-----) [002] .n.1 82316.614290: cpu_idle: state=4294967295 cpu_id=2
82131          <idle>-0     (-----) [002] d..2 82316.614320: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
82132<...>-5340 ( 788) [005] ...1 82316.614351: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
82133<...>-5340 ( 788) [005] ...1 82316.614355: tracing_mark_write: E|788
82134<...>-5340 ( 788) [005] .... 82316.614371: binder_transaction: transaction=1570885 dest_node=1570882 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
82135 neuralnetworks@-13088 (  788) [002] d..2 82316.614373: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82136<...>-5340 ( 788) [005] .... 82316.614375: binder_transaction_alloc_buf: transaction=1570885 data_size=60 offsets_size=0
82137<...>-5340 ( 788) [005] d..4 82316.614378: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
82138          <idle>-0     (-----) [002] d..1 82316.614386: cpu_idle: state=0 cpu_id=2
82139<...>-5340 ( 788) [005] d..5 82316.614391: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
82140          <idle>-0     (-----) [004] .n.1 82316.614397: cpu_idle: state=4294967295 cpu_id=4
82141          <idle>-0     (-----) [004] d..2 82316.614405: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
82142           <...>-27571 (-----) [004] .... 82316.614410: binder_transaction_received: transaction=1570885
82143<...>-5340 ( 788) [005] ...1 82316.614413: tracing_mark_write: E|788
82144<...>-5340 ( 788) [005] .... 82316.614420: binder_transaction: transaction=1570886 dest_node=0 dest_proc=27550 dest_thread=27723 reply=1 flags=0x0 code=0x0
82145<...>-5340 ( 788) [005] .... 82316.614422: binder_transaction_alloc_buf: transaction=1570886 data_size=8 offsets_size=0
82146<...>-5340 ( 788) [005] d..2 82316.614424: sched_waking: comm=id.nn.benchmark pid=27723 prio=110 target_cpu=005
82147           <...>-27571 (-----) [004] ...1 82316.614428: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
82148<...>-5340 ( 788) [005] d..3 82316.614432: sched_wakeup: comm=id.nn.benchmark pid=27723 prio=110 target_cpu=005
82149<...>-5340 ( 788) [005] .... 82316.614434: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
82150           <...>-27571 (-----) [004] ...1 82316.614434: tracing_mark_write: E|27550
82151           <...>-27571 (-----) [004] d..2 82316.614462: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82152          <idle>-0     (-----) [004] d..1 82316.614471: cpu_idle: state=0 cpu_id=4
82153<...>-5340 ( 788) [005] d..2 82316.614476: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27723 next_prio=110
82154           <...>-27723 (-----) [005] .... 82316.614486: binder_transaction_received: transaction=1570886
82155           <...>-27723 (-----) [005] ...1 82316.614521: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
82156           <...>-27723 (-----) [005] ...1 82316.614527: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
82157           <...>-27723 (-----) [005] ...1 82316.614553: tracing_mark_write: E|27550
82158           <...>-27723 (-----) [005] ...1 82316.614557: tracing_mark_write: E|27550
82159           <...>-27723 (-----) [005] ...1 82316.614560: tracing_mark_write: E|27550
82160           <...>-27723 (-----) [005] ...1 82316.614751: tracing_mark_write: E|27550
82161           <...>-27723 (-----) [005] d..1 82316.614764: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82162           <...>-27723 (-----) [005] d..2 82316.614781: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82163          <idle>-0     (-----) [004] .n.1 82316.614786: cpu_idle: state=4294967295 cpu_id=4
82164          <idle>-0     (-----) [004] d..2 82316.614792: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
82165           <...>-27550 (-----) [004] d..2 82316.614812: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82166          <idle>-0     (-----) [004] d..1 82316.614821: cpu_idle: state=0 cpu_id=4
82167           <...>-27723 (-----) [005] d..1 82316.614872: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82168           <...>-27723 (-----) [005] d..2 82316.614881: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82169          <idle>-0     (-----) [004] .n.1 82316.614887: cpu_idle: state=4294967295 cpu_id=4
82170          <idle>-0     (-----) [004] d..2 82316.614894: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
82171           <...>-27723 (-----) [005] d..2 82316.614921: sched_switch: prev_comm=id.nn.benchmark prev_pid=27723 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
82172           <...>-27550 (-----) [004] ...1 82316.614928: tracing_mark_write: E|27550
82173           <...>-27550 (-----) [004] ...1 82316.614932: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
82174           <...>-27550 (-----) [004] ...1 82316.614938: tracing_mark_write: E|27550
82175          <idle>-0     (-----) [005] d..1 82316.614941: cpu_idle: state=0 cpu_id=5
82176           <...>-27550 (-----) [004] ...1 82316.614942: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
82177           <...>-27550 (-----) [004] ...1 82316.614946: tracing_mark_write: E|27550
82178           <...>-27550 (-----) [004] ...1 82316.614951: tracing_mark_write: E|27550
82179           <...>-27550 (-----) [004] ...1 82316.615063: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
82180          <idle>-0     (-----) [003] d.s2 82316.615137: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82181           <...>-27550 (-----) [004] ...1 82316.615159: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
82182          <idle>-0     (-----) [003] dns3 82316.615161: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82183           <...>-27550 (-----) [004] ...1 82316.615164: tracing_mark_write: E|27550
82184          <idle>-0     (-----) [003] dns2 82316.615164: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
82185           <...>-27550 (-----) [004] ...1 82316.615168: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
82186           <...>-27550 (-----) [004] ...1 82316.615173: tracing_mark_write: E|27550
82187           <...>-27550 (-----) [004] ...1 82316.615177: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
82188          <idle>-0     (-----) [003] dns3 82316.615179: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
82189           <...>-27550 (-----) [004] ...1 82316.615180: tracing_mark_write: E|27550
82190           <...>-27550 (-----) [004] ...1 82316.615184: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
82191          <idle>-0     (-----) [003] .n.1 82316.615194: cpu_idle: state=4294967295 cpu_id=3
82192          <idle>-0     (-----) [003] d..2 82316.615205: 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
82193     rcu_preempt-7     (    7) [003] d..2 82316.615227: 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
82194<...>-8 ( 8) [003] d..2 82316.615235: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
82195          <idle>-0     (-----) [005] .n.1 82316.615273: cpu_idle: state=4294967295 cpu_id=5
82196           <...>-27550 (-----) [004] ...1 82316.615274: tracing_mark_write: E|27550
82197<...>-8 ( 8) [003] d..3 82316.615275: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
82198           <...>-27550 (-----) [004] ...1 82316.615278: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
82199          <idle>-0     (-----) [005] d..2 82316.615283: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27724 next_prio=110
82200<...>-8 ( 8) [003] d..2 82316.615287: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
82201           <...>-27550 (-----) [004] d..2 82316.615299: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82202<...>-46 ( 46) [003] d..2 82316.615300: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
82203          <idle>-0     (-----) [004] d..1 82316.615314: cpu_idle: state=0 cpu_id=4
82204<...>-46 ( 46) [003] d..3 82316.615315: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
82205<...>-46 ( 46) [003] d..2 82316.615326: 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
82206           <...>-27724 (-----) [005] ...1 82316.615345: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
82207<...>-8 ( 8) [003] d..2 82316.615352: 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
82208           <...>-27724 (-----) [005] ...1 82316.615359: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
82209           <...>-27724 (-----) [005] ...1 82316.615362: tracing_mark_write: E|27550
82210          <idle>-0     (-----) [003] d..1 82316.615368: cpu_idle: state=0 cpu_id=3
82211           <...>-27724 (-----) [005] .... 82316.615383: binder_transaction: transaction=1570887 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
82212           <...>-27724 (-----) [005] .... 82316.615387: binder_transaction_alloc_buf: transaction=1570887 data_size=48 offsets_size=0
82213           <...>-27724 (-----) [005] ...2 82316.615390: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
82214           <...>-27724 (-----) [005] d..4 82316.615392: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
82215           <...>-27724 (-----) [005] dn.5 82316.615404: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
82216           <...>-27724 (-----) [005] d..2 82316.615410: sched_switch: prev_comm=id.nn.benchmark prev_pid=27724 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
82217<...>-770 ( 770) [005] .... 82316.615420: binder_transaction_received: transaction=1570887
82218<...>-770 ( 770) [005] ...1 82316.615444: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
82219<...>-770 ( 770) [005] d..2 82316.615520: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
82220          <idle>-0     (-----) [000] dnh2 82316.615562: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
82221          <idle>-0     (-----) [000] .n.1 82316.615568: cpu_idle: state=4294967295 cpu_id=0
82222<...>-770 ( 770) [005] ...1 82316.615575: tracing_mark_write: E|770
82223<...>-770 ( 770) [005] .... 82316.615582: binder_transaction: transaction=1570888 dest_node=0 dest_proc=27550 dest_thread=27724 reply=1 flags=0x0 code=0x0
82224          <idle>-0     (-----) [000] d..2 82316.615583: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
82225<...>-770 ( 770) [005] .... 82316.615585: binder_transaction_alloc_buf: transaction=1570888 data_size=168 offsets_size=32
82226<...>-770 ( 770) [005] .... 82316.615592: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
82227<...>-770 ( 770) [005] d..2 82316.615629: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27724 next_prio=110
82228           <...>-27724 (-----) [005] .... 82316.615640: binder_transaction_received: transaction=1570888
82229<...>-581 ( 571) [000] d..2 82316.615683: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82230          <idle>-0     (-----) [000] d..1 82316.615701: cpu_idle: state=0 cpu_id=0
82231           <...>-27724 (-----) [005] ...1 82316.615710: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
82232           <...>-27724 (-----) [005] ...1 82316.615715: tracing_mark_write: E|27550
82233           <...>-27724 (-----) [005] .... 82316.615730: binder_transaction: transaction=1570889 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
82234           <...>-27724 (-----) [005] .... 82316.615733: binder_transaction_alloc_buf: transaction=1570889 data_size=48 offsets_size=0
82235           <...>-27724 (-----) [005] ...2 82316.615736: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
82236           <...>-27724 (-----) [005] d..4 82316.615738: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
82237           <...>-27724 (-----) [005] dn.5 82316.615747: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
82238           <...>-27724 (-----) [005] d..2 82316.615754: sched_switch: prev_comm=id.nn.benchmark prev_pid=27724 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
82239<...>-770 ( 770) [005] .... 82316.615762: binder_transaction_received: transaction=1570889
82240<...>-770 ( 770) [005] ...1 82316.615778: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
82241<...>-770 ( 770) [005] d..2 82316.615836: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
82242          <idle>-0     (-----) [000] dnh2 82316.615861: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
82243          <idle>-0     (-----) [000] .n.1 82316.615868: cpu_idle: state=4294967295 cpu_id=0
82244<...>-770 ( 770) [005] ...1 82316.615869: tracing_mark_write: E|770
82245<...>-770 ( 770) [005] .... 82316.615876: binder_transaction: transaction=1570890 dest_node=0 dest_proc=27550 dest_thread=27724 reply=1 flags=0x0 code=0x0
82246<...>-770 ( 770) [005] .... 82316.615879: binder_transaction_alloc_buf: transaction=1570890 data_size=168 offsets_size=32
82247          <idle>-0     (-----) [000] d..2 82316.615880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
82248<...>-770 ( 770) [005] .... 82316.615885: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
82249<...>-770 ( 770) [005] d..2 82316.615919: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27724 next_prio=110
82250           <...>-27724 (-----) [005] .... 82316.615929: binder_transaction_received: transaction=1570890
82251<...>-581 ( 571) [000] d..2 82316.615942: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82252          <idle>-0     (-----) [000] d..1 82316.615957: cpu_idle: state=0 cpu_id=0
82253           <...>-27724 (-----) [005] ...1 82316.616199: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
82254           <...>-27724 (-----) [005] ...1 82316.616209: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
82255           <...>-27724 (-----) [005] ...1 82316.616213: tracing_mark_write: E|27550
82256           <...>-27724 (-----) [005] .... 82316.616274: binder_transaction: transaction=1570891 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
82257           <...>-27724 (-----) [005] .... 82316.616276: binder_transaction_alloc_buf: transaction=1570891 data_size=556 offsets_size=104
82258           <...>-27724 (-----) [005] ...2 82316.616290: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
82259           <...>-27724 (-----) [005] d..4 82316.616293: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82260           <...>-27724 (-----) [005] dn.5 82316.616303: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82261           <...>-27724 (-----) [005] d..2 82316.616310: sched_switch: prev_comm=id.nn.benchmark prev_pid=27724 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82262<...>-5340 ( 788) [005] .... 82316.616320: binder_transaction_received: transaction=1570891
82263<...>-5340 ( 788) [005] ...1 82316.616365: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
82264<...>-5340 ( 788) [005] d..2 82316.616411: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
82265<...>-5340 ( 788) [005] d..2 82316.616447: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27724 next_prio=110
82266          <idle>-0     (-----) [000] dnh2 82316.616451: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82267          <idle>-0     (-----) [000] .n.1 82316.616458: cpu_idle: state=4294967295 cpu_id=0
82268          <idle>-0     (-----) [000] d..2 82316.616470: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
82269           <...>-27724 (-----) [005] d..2 82316.616471: sched_switch: prev_comm=id.nn.benchmark prev_pid=27724 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82270          <idle>-0     (-----) [005] d..1 82316.616489: cpu_idle: state=0 cpu_id=5
82271<...>-87 ( 87) [000] d..2 82316.616519: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82272          <idle>-0     (-----) [002] d.h4 82316.616524: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=001
82273          <idle>-0     (-----) [000] d..1 82316.616532: cpu_idle: state=0 cpu_id=0
82274          <idle>-0     (-----) [002] dnh5 82316.616563: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82275          <idle>-0     (-----) [002] .n.1 82316.616578: cpu_idle: state=4294967295 cpu_id=2
82276          <idle>-0     (-----) [002] dnh4 82316.616607: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82277          <idle>-0     (-----) [005] dnh2 82316.616630: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82278          <idle>-0     (-----) [005] .n.1 82316.616634: cpu_idle: state=4294967295 cpu_id=5
82279          <idle>-0     (-----) [005] d..2 82316.616642: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82280          <idle>-0     (-----) [002] d..2 82316.616652: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
82281<...>-86 ( 86) [002] d..2 82316.616692: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82282<...>-5340 ( 788) [005] d..1 82316.616693: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
82283          <idle>-0     (-----) [002] d..1 82316.616706: cpu_idle: state=0 cpu_id=2
82284          <idle>-0     (-----) [002] dnh2 82316.616721: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
82285          <idle>-0     (-----) [002] .n.1 82316.616728: cpu_idle: state=4294967295 cpu_id=2
82286          <idle>-0     (-----) [002] d..2 82316.616740: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
82287 neuralnetworks@-13088 (  788) [002] d..2 82316.616782: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82288          <idle>-0     (-----) [002] d..1 82316.616795: cpu_idle: state=0 cpu_id=2
82289<...>-5340 ( 788) [005] d..2 82316.616837: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82290          <idle>-0     (-----) [000] dnh2 82316.616858: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82291<...>-5340 ( 788) [005] d..2 82316.616863: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82292          <idle>-0     (-----) [000] .n.1 82316.616865: cpu_idle: state=4294967295 cpu_id=0
82293          <idle>-0     (-----) [000] d..2 82316.616876: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
82294          <idle>-0     (-----) [005] d..1 82316.616876: cpu_idle: state=0 cpu_id=5
82295<...>-87 ( 87) [000] d..2 82316.616914: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82296          <idle>-0     (-----) [002] d.h4 82316.616917: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82297          <idle>-0     (-----) [000] d..1 82316.616926: cpu_idle: state=0 cpu_id=0
82298          <idle>-0     (-----) [002] dnh5 82316.616929: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82299          <idle>-0     (-----) [002] .n.1 82316.616939: cpu_idle: state=4294967295 cpu_id=2
82300          <idle>-0     (-----) [002] d..2 82316.616952: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
82301<...>-86 ( 86) [002] d..2 82316.616987: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82302          <idle>-0     (-----) [002] d..1 82316.617000: cpu_idle: state=0 cpu_id=2
82303          <idle>-0     (-----) [000] d.h5 82316.617397: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
82304          <idle>-0     (-----) [000] d.h6 82316.617420: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
82305          <idle>-0     (-----) [000] d.h5 82316.617425: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
82306          <idle>-0     (-----) [003] .n.1 82316.617427: cpu_idle: state=4294967295 cpu_id=3
82307          <idle>-0     (-----) [003] d..2 82316.617438: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
82308          <idle>-0     (-----) [000] d.h6 82316.617439: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
82309          <idle>-0     (-----) [002] .n.1 82316.617445: cpu_idle: state=4294967295 cpu_id=2
82310          <idle>-0     (-----) [002] d..2 82316.617456: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
82311          <idle>-0     (-----) [000] ...1 82316.617458: cpu_idle: state=4294967295 cpu_id=0
82312          <idle>-0     (-----) [000] d..1 82316.617467: cpu_idle: state=0 cpu_id=0
82313  crtc_event:111-322   (  322) [003] d..2 82316.617474: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82314          <idle>-0     (-----) [003] d..1 82316.617485: cpu_idle: state=0 cpu_id=3
82315 crtc_commit:111-321   (  321) [002] d..2 82316.617608: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
82316          <idle>-0     (-----) [002] d..1 82316.617618: cpu_idle: state=0 cpu_id=2
82317          <idle>-0     (-----) [002] d.s3 82316.618473: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
82318          <idle>-0     (-----) [002] d.s4 82316.618493: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
82319          <idle>-0     (-----) [003] .n.1 82316.618499: cpu_idle: state=4294967295 cpu_id=3
82320          <idle>-0     (-----) [002] d.s3 82316.618501: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
82321          <idle>-0     (-----) [003] d..2 82316.618511: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
82322          <idle>-0     (-----) [002] dns4 82316.618540: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
82323  crtc_event:111-322   (  322) [003] d..2 82316.618551: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82324          <idle>-0     (-----) [003] d..1 82316.618559: cpu_idle: state=0 cpu_id=3
82325          <idle>-0     (-----) [002] .n.1 82316.618564: cpu_idle: state=4294967295 cpu_id=2
82326          <idle>-0     (-----) [002] d..2 82316.618575: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
82327  kworker/u16:15-1311  ( 1311) [002] .... 82316.618612: clk_set_rate: l3_cluster0_vote_clk 300000000
82328  kworker/u16:15-1311  ( 1311) [002] d.h3 82316.618655: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82329          <idle>-0     (-----) [005] dnh2 82316.618678: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82330          <idle>-0     (-----) [005] .n.1 82316.618683: cpu_idle: state=4294967295 cpu_id=5
82331          <idle>-0     (-----) [005] d..2 82316.618692: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82332<...>-5340 ( 788) [005] d..1 82316.618747: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
82333  kworker/u16:15-1311  ( 1311) [002] d.h1 82316.618776: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
82334          <idle>-0     (-----) [000] ...1 82316.618844: cpu_idle: state=4294967295 cpu_id=0
82335<...>-5340 ( 788) [005] ...1 82316.618844: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
82336<...>-5340 ( 788) [005] ...1 82316.618848: tracing_mark_write: E|788
82337          <idle>-0     (-----) [000] d..1 82316.618849: cpu_idle: state=0 cpu_id=0
82338<...>-5340 ( 788) [005] .... 82316.618864: binder_transaction: transaction=1570894 dest_node=1570892 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
82339<...>-5340 ( 788) [005] .... 82316.618866: binder_transaction_alloc_buf: transaction=1570894 data_size=60 offsets_size=0
82340<...>-5340 ( 788) [005] d..4 82316.618869: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
82341<...>-5340 ( 788) [005] d..5 82316.618881: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
82342          <idle>-0     (-----) [004] .n.1 82316.618887: cpu_idle: state=4294967295 cpu_id=4
82343          <idle>-0     (-----) [004] d..2 82316.618896: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
82344           <...>-27571 (-----) [004] .... 82316.618901: binder_transaction_received: transaction=1570894
82345<...>-5340 ( 788) [005] ...1 82316.618904: tracing_mark_write: E|788
82346<...>-5340 ( 788) [005] .... 82316.618910: binder_transaction: transaction=1570895 dest_node=0 dest_proc=27550 dest_thread=27724 reply=1 flags=0x0 code=0x0
82347<...>-5340 ( 788) [005] .... 82316.618912: binder_transaction_alloc_buf: transaction=1570895 data_size=8 offsets_size=0
82348<...>-5340 ( 788) [005] d..2 82316.618914: sched_waking: comm=id.nn.benchmark pid=27724 prio=110 target_cpu=005
82349           <...>-27571 (-----) [004] ...1 82316.618920: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
82350<...>-5340 ( 788) [005] d..3 82316.618921: sched_wakeup: comm=id.nn.benchmark pid=27724 prio=110 target_cpu=005
82351<...>-5340 ( 788) [005] .... 82316.618923: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
82352           <...>-27571 (-----) [004] ...1 82316.618926: tracing_mark_write: E|27550
82353           <...>-27571 (-----) [004] d..2 82316.618954: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82354          <idle>-0     (-----) [004] d..1 82316.618962: cpu_idle: state=0 cpu_id=4
82355<...>-5340 ( 788) [005] d..2 82316.618964: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27724 next_prio=110
82356  kworker/u16:15-1311  ( 1311) [002] d..2 82316.618965: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
82357           <...>-27724 (-----) [005] .... 82316.618973: binder_transaction_received: transaction=1570895
82358           <...>-27724 (-----) [005] ...1 82316.619009: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
82359          <idle>-0     (-----) [001] d.s3 82316.619011: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
82360 neuralnetworks@-13088 (  788) [002] d..2 82316.619013: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82361           <...>-27724 (-----) [005] ...1 82316.619015: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
82362          <idle>-0     (-----) [001] d.s4 82316.619027: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
82363          <idle>-0     (-----) [002] d..1 82316.619031: cpu_idle: state=0 cpu_id=2
82364          <idle>-0     (-----) [001] d.s4 82316.619037: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
82365           <...>-27724 (-----) [005] ...1 82316.619041: tracing_mark_write: E|27550
82366          <idle>-0     (-----) [002] .n.1 82316.619041: cpu_idle: state=4294967295 cpu_id=2
82367           <...>-27724 (-----) [005] ...1 82316.619044: tracing_mark_write: E|27550
82368          <idle>-0     (-----) [001] ...1 82316.619048: cpu_idle: state=4294967295 cpu_id=1
82369           <...>-27724 (-----) [005] ...1 82316.619048: tracing_mark_write: E|27550
82370          <idle>-0     (-----) [002] d..2 82316.619054: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
82371          <idle>-0     (-----) [001] d..1 82316.619056: cpu_idle: state=0 cpu_id=1
82372  kworker/u16:15-1311  ( 1311) [002] d..2 82316.619147: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82373          <idle>-0     (-----) [002] d..1 82316.619193: cpu_idle: state=0 cpu_id=2
82374           <...>-27724 (-----) [005] ...1 82316.619254: tracing_mark_write: E|27550
82375           <...>-27724 (-----) [005] d..1 82316.619268: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82376           <...>-27724 (-----) [005] d..2 82316.619284: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82377          <idle>-0     (-----) [004] .n.1 82316.619290: cpu_idle: state=4294967295 cpu_id=4
82378          <idle>-0     (-----) [004] d..2 82316.619297: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
82379           <...>-27550 (-----) [004] d..2 82316.619317: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82380          <idle>-0     (-----) [004] d..1 82316.619327: cpu_idle: state=0 cpu_id=4
82381           <...>-27724 (-----) [005] d..1 82316.619370: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82382           <...>-27724 (-----) [005] d..2 82316.619380: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82383          <idle>-0     (-----) [004] .n.1 82316.619385: cpu_idle: state=4294967295 cpu_id=4
82384          <idle>-0     (-----) [004] d..2 82316.619393: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
82385           <...>-27724 (-----) [005] d..2 82316.619419: sched_switch: prev_comm=id.nn.benchmark prev_pid=27724 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
82386           <...>-27550 (-----) [004] ...1 82316.619425: tracing_mark_write: E|27550
82387           <...>-27550 (-----) [004] ...1 82316.619430: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
82388           <...>-27550 (-----) [004] ...1 82316.619435: tracing_mark_write: E|27550
82389           <...>-27550 (-----) [004] ...1 82316.619439: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
82390          <idle>-0     (-----) [005] d..1 82316.619440: cpu_idle: state=0 cpu_id=5
82391           <...>-27550 (-----) [004] ...1 82316.619443: tracing_mark_write: E|27550
82392           <...>-27550 (-----) [004] ...1 82316.619447: tracing_mark_write: E|27550
82393           <...>-27550 (-----) [004] ...1 82316.619560: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
82394           <...>-27550 (-----) [004] ...1 82316.619618: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
82395           <...>-27550 (-----) [004] ...1 82316.619623: tracing_mark_write: E|27550
82396           <...>-27550 (-----) [004] ...1 82316.619628: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
82397           <...>-27550 (-----) [004] ...1 82316.619633: tracing_mark_write: E|27550
82398           <...>-27550 (-----) [004] ...1 82316.619637: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
82399           <...>-27550 (-----) [004] ...1 82316.619641: tracing_mark_write: E|27550
82400           <...>-27550 (-----) [004] ...1 82316.619645: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
82401          <idle>-0     (-----) [000] d.h5 82316.619722: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
82402          <idle>-0     (-----) [000] d.h6 82316.619738: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
82403          <idle>-0     (-----) [002] .n.1 82316.619746: cpu_idle: state=4294967295 cpu_id=2
82404          <idle>-0     (-----) [005] .n.1 82316.619748: cpu_idle: state=4294967295 cpu_id=5
82405           <...>-27550 (-----) [004] ...1 82316.619750: tracing_mark_write: E|27550
82406          <idle>-0     (-----) [000] ...1 82316.619752: cpu_idle: state=4294967295 cpu_id=0
82407           <...>-27550 (-----) [004] ...1 82316.619754: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
82408          <idle>-0     (-----) [005] d..2 82316.619757: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27725 next_prio=110
82409          <idle>-0     (-----) [002] d..2 82316.619758: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
82410          <idle>-0     (-----) [000] d..1 82316.619761: cpu_idle: state=0 cpu_id=0
82411           <...>-27550 (-----) [004] d..2 82316.619771: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82412          <idle>-0     (-----) [004] d..1 82316.619786: cpu_idle: state=0 cpu_id=4
82413           <...>-27725 (-----) [005] ...1 82316.619818: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
82414           <...>-27725 (-----) [005] ...1 82316.619833: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
82415           <...>-27725 (-----) [005] ...1 82316.619837: tracing_mark_write: E|27550
82416 crtc_commit:111-321   (  321) [002] d..2 82316.619845: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82417           <...>-27725 (-----) [005] .... 82316.619856: binder_transaction: transaction=1570896 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
82418          <idle>-0     (-----) [002] d..1 82316.619859: cpu_idle: state=0 cpu_id=2
82419           <...>-27725 (-----) [005] .... 82316.619860: binder_transaction_alloc_buf: transaction=1570896 data_size=48 offsets_size=0
82420           <...>-27725 (-----) [005] ...2 82316.619863: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
82421           <...>-27725 (-----) [005] d..4 82316.619866: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
82422           <...>-27725 (-----) [005] dn.5 82316.619876: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
82423           <...>-27725 (-----) [005] d..2 82316.619883: sched_switch: prev_comm=id.nn.benchmark prev_pid=27725 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
82424<...>-770 ( 770) [005] .... 82316.619893: binder_transaction_received: transaction=1570896
82425<...>-770 ( 770) [005] ...1 82316.619915: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
82426<...>-770 ( 770) [005] d..2 82316.619986: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
82427          <idle>-0     (-----) [000] d.h5 82316.620022: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
82428<...>-770 ( 770) [005] ...1 82316.620026: tracing_mark_write: E|770
82429<...>-770 ( 770) [005] .... 82316.620034: binder_transaction: transaction=1570897 dest_node=0 dest_proc=27550 dest_thread=27725 reply=1 flags=0x0 code=0x0
82430<...>-770 ( 770) [005] .... 82316.620036: binder_transaction_alloc_buf: transaction=1570897 data_size=168 offsets_size=32
82431          <idle>-0     (-----) [000] d.h6 82316.620038: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
82432<...>-770 ( 770) [005] .... 82316.620043: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
82433          <idle>-0     (-----) [003] .n.1 82316.620043: cpu_idle: state=4294967295 cpu_id=3
82434          <idle>-0     (-----) [003] d..2 82316.620052: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
82435          <idle>-0     (-----) [000] dnh2 82316.620063: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
82436          <idle>-0     (-----) [000] .n.1 82316.620071: cpu_idle: state=4294967295 cpu_id=0
82437<...>-770 ( 770) [005] d..2 82316.620079: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27725 next_prio=110
82438  crtc_event:111-322   (  322) [003] d..2 82316.620081: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82439          <idle>-0     (-----) [000] d..2 82316.620086: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
82440          <idle>-0     (-----) [003] d..1 82316.620090: cpu_idle: state=0 cpu_id=3
82441           <...>-27725 (-----) [005] .... 82316.620090: binder_transaction_received: transaction=1570897
82442           <...>-27725 (-----) [005] ...1 82316.620158: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
82443           <...>-27725 (-----) [005] ...1 82316.620164: tracing_mark_write: E|27550
82444<...>-581 ( 571) [000] d..2 82316.620168: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82445          <idle>-0     (-----) [001] ...1 82316.620171: cpu_idle: state=4294967295 cpu_id=1
82446          <idle>-0     (-----) [001] d..1 82316.620176: cpu_idle: state=0 cpu_id=1
82447           <...>-27725 (-----) [005] .... 82316.620179: binder_transaction: transaction=1570898 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
82448           <...>-27725 (-----) [005] .... 82316.620182: binder_transaction_alloc_buf: transaction=1570898 data_size=48 offsets_size=0
82449           <...>-27725 (-----) [005] ...2 82316.620184: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
82450          <idle>-0     (-----) [000] d..1 82316.620186: cpu_idle: state=0 cpu_id=0
82451           <...>-27725 (-----) [005] d..4 82316.620186: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
82452           <...>-27725 (-----) [005] dn.5 82316.620196: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
82453           <...>-27725 (-----) [005] d..2 82316.620202: sched_switch: prev_comm=id.nn.benchmark prev_pid=27725 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
82454<...>-770 ( 770) [005] .... 82316.620210: binder_transaction_received: transaction=1570898
82455<...>-770 ( 770) [005] ...1 82316.620227: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
82456<...>-770 ( 770) [005] d..2 82316.620284: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
82457          <idle>-0     (-----) [000] dnh2 82316.620309: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
82458          <idle>-0     (-----) [000] .n.1 82316.620316: cpu_idle: state=4294967295 cpu_id=0
82459<...>-770 ( 770) [005] ...1 82316.620318: tracing_mark_write: E|770
82460<...>-770 ( 770) [005] .... 82316.620326: binder_transaction: transaction=1570899 dest_node=0 dest_proc=27550 dest_thread=27725 reply=1 flags=0x0 code=0x0
82461          <idle>-0     (-----) [000] d..2 82316.620328: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
82462<...>-770 ( 770) [005] .... 82316.620328: binder_transaction_alloc_buf: transaction=1570899 data_size=168 offsets_size=32
82463<...>-770 ( 770) [005] .... 82316.620334: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
82464<...>-770 ( 770) [005] d..2 82316.620368: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27725 next_prio=110
82465           <...>-27725 (-----) [005] .... 82316.620378: binder_transaction_received: transaction=1570899
82466<...>-581 ( 571) [000] d..2 82316.620391: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82467          <idle>-0     (-----) [000] d..1 82316.620407: cpu_idle: state=0 cpu_id=0
82468           <...>-27725 (-----) [005] ...1 82316.620655: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
82469           <...>-27725 (-----) [005] ...1 82316.620665: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
82470           <...>-27725 (-----) [005] ...1 82316.620669: tracing_mark_write: E|27550
82471           <...>-27725 (-----) [005] .... 82316.620731: binder_transaction: transaction=1570900 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
82472           <...>-27725 (-----) [005] .... 82316.620734: binder_transaction_alloc_buf: transaction=1570900 data_size=556 offsets_size=104
82473           <...>-27725 (-----) [005] ...2 82316.620748: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
82474           <...>-27725 (-----) [005] d..4 82316.620750: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82475           <...>-27725 (-----) [005] dn.5 82316.620761: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82476           <...>-27725 (-----) [005] d..2 82316.620768: sched_switch: prev_comm=id.nn.benchmark prev_pid=27725 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82477<...>-5340 ( 788) [005] .... 82316.620778: binder_transaction_received: transaction=1570900
82478<...>-5340 ( 788) [005] ...1 82316.620822: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
82479<...>-5340 ( 788) [005] d..2 82316.620865: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82480<...>-5340 ( 788) [005] d..2 82316.620889: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27725 next_prio=110
82481          <idle>-0     (-----) [000] dnh2 82316.620894: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82482          <idle>-0     (-----) [000] .n.1 82316.620902: cpu_idle: state=4294967295 cpu_id=0
82483           <...>-27725 (-----) [005] d..2 82316.620913: sched_switch: prev_comm=id.nn.benchmark prev_pid=27725 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82484          <idle>-0     (-----) [000] d..2 82316.620914: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
82485          <idle>-0     (-----) [005] d..1 82316.620930: cpu_idle: state=0 cpu_id=5
82486<...>-87 ( 87) [000] d..2 82316.620957: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82487          <idle>-0     (-----) [002] d.h4 82316.620969: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82488          <idle>-0     (-----) [000] d..1 82316.620971: cpu_idle: state=0 cpu_id=0
82489          <idle>-0     (-----) [002] dnh5 82316.620989: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82490          <idle>-0     (-----) [002] .n.1 82316.621001: cpu_idle: state=4294967295 cpu_id=2
82491          <idle>-0     (-----) [002] d..2 82316.621014: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
82492<...>-86 ( 86) [002] d.h4 82316.621048: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82493          <idle>-0     (-----) [005] dnh2 82316.621070: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82494          <idle>-0     (-----) [005] .n.1 82316.621075: cpu_idle: state=4294967295 cpu_id=5
82495          <idle>-0     (-----) [005] d..2 82316.621083: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82496<...>-86 ( 86) [002] d..2 82316.621111: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82497          <idle>-0     (-----) [002] d..1 82316.621126: cpu_idle: state=0 cpu_id=2
82498<...>-5340 ( 788) [005] d..1 82316.621135: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
82499          <idle>-0     (-----) [000] dnh2 82316.621173: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
82500          <idle>-0     (-----) [000] .n.1 82316.621180: cpu_idle: state=4294967295 cpu_id=0
82501          <idle>-0     (-----) [000] d..2 82316.621192: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
82502 neuralnetworks@-13088 (  788) [000] d..2 82316.621245: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82503          <idle>-0     (-----) [000] d..1 82316.621261: cpu_idle: state=0 cpu_id=0
82504<...>-5340 ( 788) [005] d..2 82316.621292: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82505          <idle>-0     (-----) [000] dnh2 82316.621315: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82506<...>-5340 ( 788) [005] d..2 82316.621319: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82507          <idle>-0     (-----) [000] .n.1 82316.621323: cpu_idle: state=4294967295 cpu_id=0
82508          <idle>-0     (-----) [005] d..1 82316.621333: cpu_idle: state=0 cpu_id=5
82509          <idle>-0     (-----) [000] d..2 82316.621334: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
82510          <idle>-0     (-----) [002] d.h4 82316.621374: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82511<...>-87 ( 87) [000] d..2 82316.621376: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82512          <idle>-0     (-----) [002] dnh5 82316.621387: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82513          <idle>-0     (-----) [000] d..1 82316.621390: cpu_idle: state=0 cpu_id=0
82514          <idle>-0     (-----) [002] .n.1 82316.621397: cpu_idle: state=4294967295 cpu_id=2
82515          <idle>-0     (-----) [002] d..2 82316.621409: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
82516<...>-86 ( 86) [002] d..2 82316.621445: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82517          <idle>-0     (-----) [002] d..1 82316.621458: cpu_idle: state=0 cpu_id=2
82518          <idle>-0     (-----) [005] ...1 82316.621668: cpu_idle: state=4294967295 cpu_id=5
82519          <idle>-0     (-----) [005] d..1 82316.621672: cpu_idle: state=0 cpu_id=5
82520          <idle>-0     (-----) [003] d.s2 82316.621805: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
82521          <idle>-0     (-----) [003] dns3 82316.621823: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
82522          <idle>-0     (-----) [003] dns2 82316.621826: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82523          <idle>-0     (-----) [003] dns3 82316.621839: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82524          <idle>-0     (-----) [003] .n.1 82316.621850: cpu_idle: state=4294967295 cpu_id=3
82525          <idle>-0     (-----) [003] d..2 82316.621859: 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
82526     rcu_preempt-7     (    7) [003] d.h1 82316.621868: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
82527     rcu_preempt-7     (    7) [003] d.h2 82316.621896: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
82528          <idle>-0     (-----) [001] .n.1 82316.621901: cpu_idle: state=4294967295 cpu_id=1
82529     rcu_preempt-7     (    7) [003] d..2 82316.621908: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
82530          <idle>-0     (-----) [001] d..2 82316.621915: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
82531        DispSync-8879  ( 8858) [001] d..1 82316.621944: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
82532     rcu_preempt-7     (    7) [003] d..3 82316.621947: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
82533     rcu_preempt-7     (    7) [003] d..2 82316.621965: 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
82534        DispSync-8879  ( 8858) [001] d..2 82316.621983: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
82535          <idle>-0     (-----) [002] .n.1 82316.621990: cpu_idle: state=4294967295 cpu_id=2
82536          <idle>-0     (-----) [002] d..2 82316.622001: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
82537<...>-8 ( 8) [003] d..2 82316.622002: 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
82538        DispSync-8879  ( 8858) [001] d..2 82316.622013: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
82539          <idle>-0     (-----) [003] d..1 82316.622018: cpu_idle: state=0 cpu_id=3
82540         rcuop/4-45    (   45) [001] d..2 82316.622020: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
82541         rcuop/4-45    (   45) [001] d..3 82316.622063: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
82542  appEventThread-8881  ( 8858) [002] d..3 82316.622067: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
82543         rcuop/4-45    (   45) [001] d..2 82316.622077: 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
82544  appEventThread-8881  ( 8858) [002] d..4 82316.622111: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
82545          <idle>-0     (-----) [000] .n.1 82316.622117: cpu_idle: state=4294967295 cpu_id=0
82546          <idle>-0     (-----) [000] d..2 82316.622132: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
82547  appEventThread-8881  ( 8858) [002] d..2 82316.622159: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82548          <idle>-0     (-----) [002] d..1 82316.622176: cpu_idle: state=0 cpu_id=2
82549         rcuop/5-53    (   53) [001] d..2 82316.622196: 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
82550          <idle>-0     (-----) [001] d..1 82316.622211: cpu_idle: state=0 cpu_id=1
82551<...>-9105 ( 9105) [000] .... 82316.622486: binder_transaction: transaction=1570903 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
82552<...>-9105 ( 9105) [000] .... 82316.622493: binder_transaction_alloc_buf: transaction=1570903 data_size=80 offsets_size=0
82553<...>-9105 ( 9105) [000] d..4 82316.622500: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
82554<...>-9105 ( 9105) [000] d..5 82316.622535: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
82555          <idle>-0     (-----) [001] .n.1 82316.622541: cpu_idle: state=4294967295 cpu_id=1
82556          <idle>-0     (-----) [001] d..2 82316.622555: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
82557<...>-13083 ( 8858) [001] .... 82316.622564: binder_transaction_received: transaction=1570903
82558<...>-9105 ( 9105) [000] d..3 82316.622578: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
82559<...>-9105 ( 9105) [000] d..4 82316.622599: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
82560<...>-13083 ( 8858) [001] d..1 82316.622603: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
82561          <idle>-0     (-----) [002] .n.1 82316.622607: cpu_idle: state=4294967295 cpu_id=2
82562          <idle>-0     (-----) [002] d..2 82316.622620: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
82563<...>-13083 ( 8858) [001] d..2 82316.622640: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
82564          <idle>-0     (-----) [003] .n.1 82316.622646: cpu_idle: state=4294967295 cpu_id=3
82565          <idle>-0     (-----) [003] d..2 82316.622657: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
82566    RenderThread-9436  ( 9105) [002] d..2 82316.622681: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82567<...>-13083 ( 8858) [001] d..2 82316.622688: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82568          <idle>-0     (-----) [002] d..1 82316.622696: cpu_idle: state=0 cpu_id=2
82569          <idle>-0     (-----) [001] d..1 82316.622702: cpu_idle: state=0 cpu_id=1
82570  appEventThread-8881  ( 8858) [003] d..2 82316.622720: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82571<...>-9105 ( 9105) [000] d..3 82316.622731: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
82572          <idle>-0     (-----) [003] d..1 82316.622733: cpu_idle: state=0 cpu_id=3
82573<...>-9105 ( 9105) [000] d..4 82316.622751: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
82574          <idle>-0     (-----) [002] .n.1 82316.622757: cpu_idle: state=4294967295 cpu_id=2
82575          <idle>-0     (-----) [002] d..2 82316.622770: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
82576<...>-9105 ( 9105) [000] d..2 82316.622790: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82577          <idle>-0     (-----) [000] d..1 82316.622812: cpu_idle: state=0 cpu_id=0
82578    RenderThread-9436  ( 9105) [002] d..1 82316.622897: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
82579    RenderThread-9436  ( 9105) [002] d..2 82316.622917: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
82580          <idle>-0     (-----) [000] .n.1 82316.622926: cpu_idle: state=4294967295 cpu_id=0
82581          <idle>-0     (-----) [000] d..2 82316.622940: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
82582    RenderThread-9436  ( 9105) [002] .... 82316.622989: binder_transaction: transaction=1570904 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
82583    RenderThread-9436  ( 9105) [002] d.h4 82316.623020: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82584<...>-9105 ( 9105) [000] d..2 82316.623029: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82585          <idle>-0     (-----) [005] dnh2 82316.623042: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82586          <idle>-0     (-----) [000] d..1 82316.623046: cpu_idle: state=0 cpu_id=0
82587          <idle>-0     (-----) [005] .n.1 82316.623046: cpu_idle: state=4294967295 cpu_id=5
82588          <idle>-0     (-----) [005] d..2 82316.623054: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82589    RenderThread-9436  ( 9105) [002] .... 82316.623059: binder_transaction_alloc_buf: transaction=1570904 data_size=104 offsets_size=0
82590    RenderThread-9436  ( 9105) [002] d..4 82316.623065: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
82591    RenderThread-9436  ( 9105) [002] dn.5 82316.623087: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
82592    RenderThread-9436  ( 9105) [002] d..2 82316.623097: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
82593<...>-5340 ( 788) [005] d..1 82316.623105: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
82594<...>-13083 ( 8858) [002] .... 82316.623106: binder_transaction_received: transaction=1570904
82595          <idle>-0     (-----) [000] dnh2 82316.623133: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
82596          <idle>-0     (-----) [000] .n.1 82316.623141: cpu_idle: state=4294967295 cpu_id=0
82597          <idle>-0     (-----) [000] d..2 82316.623186: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
82598<...>-5340 ( 788) [005] ...1 82316.623199: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
82599<...>-5340 ( 788) [005] ...1 82316.623203: tracing_mark_write: E|788
82600<...>-5340 ( 788) [005] .... 82316.623219: binder_transaction: transaction=1570905 dest_node=1570901 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
82601<...>-5340 ( 788) [005] .... 82316.623222: binder_transaction_alloc_buf: transaction=1570905 data_size=60 offsets_size=0
82602<...>-5340 ( 788) [005] d..4 82316.623225: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
82603<...>-13083 ( 8858) [002] .... 82316.623226: binder_transaction: transaction=1570906 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
82604<...>-13083 ( 8858) [002] .... 82316.623231: binder_transaction_alloc_buf: transaction=1570906 data_size=52 offsets_size=8
82605 neuralnetworks@-13088 (  788) [000] d..2 82316.623238: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82606<...>-5340 ( 788) [005] d..5 82316.623238: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
82607          <idle>-0     (-----) [004] .n.1 82316.623244: cpu_idle: state=4294967295 cpu_id=4
82608          <idle>-0     (-----) [004] d..2 82316.623254: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
82609          <idle>-0     (-----) [000] d..1 82316.623254: cpu_idle: state=0 cpu_id=0
82610           <...>-27571 (-----) [004] .... 82316.623259: binder_transaction_received: transaction=1570905
82611<...>-5340 ( 788) [005] ...1 82316.623262: tracing_mark_write: E|788
82612<...>-5340 ( 788) [005] .... 82316.623268: binder_transaction: transaction=1570907 dest_node=0 dest_proc=27550 dest_thread=27725 reply=1 flags=0x0 code=0x0
82613<...>-5340 ( 788) [005] .... 82316.623270: binder_transaction_alloc_buf: transaction=1570907 data_size=8 offsets_size=0
82614<...>-5340 ( 788) [005] d..2 82316.623272: sched_waking: comm=id.nn.benchmark pid=27725 prio=110 target_cpu=005
82615           <...>-27571 (-----) [004] ...1 82316.623276: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
82616<...>-5340 ( 788) [005] d..3 82316.623280: sched_wakeup: comm=id.nn.benchmark pid=27725 prio=110 target_cpu=005
82617<...>-5340 ( 788) [005] .... 82316.623281: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
82618           <...>-27571 (-----) [004] ...1 82316.623283: tracing_mark_write: E|27550
82619<...>-13083 ( 8858) [002] d..2 82316.623286: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
82620    RenderThread-9436  ( 9105) [002] .... 82316.623297: binder_transaction_received: transaction=1570906
82621           <...>-27571 (-----) [004] d..2 82316.623311: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82622          <idle>-0     (-----) [004] d..1 82316.623318: cpu_idle: state=0 cpu_id=4
82623<...>-5340 ( 788) [005] d..2 82316.623324: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27725 next_prio=110
82624           <...>-27725 (-----) [005] .... 82316.623334: binder_transaction_received: transaction=1570907
82625           <...>-27725 (-----) [005] ...1 82316.623370: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
82626           <...>-27725 (-----) [005] ...1 82316.623376: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
82627           <...>-27725 (-----) [005] ...1 82316.623402: tracing_mark_write: E|27550
82628           <...>-27725 (-----) [005] ...1 82316.623405: tracing_mark_write: E|27550
82629           <...>-27725 (-----) [005] ...1 82316.623409: tracing_mark_write: E|27550
82630           <...>-27725 (-----) [005] ...1 82316.623599: tracing_mark_write: E|27550
82631           <...>-27725 (-----) [005] d..1 82316.623612: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82632           <...>-27725 (-----) [005] d..2 82316.623628: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82633          <idle>-0     (-----) [004] .n.1 82316.623633: cpu_idle: state=4294967295 cpu_id=4
82634          <idle>-0     (-----) [004] d..2 82316.623641: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
82635           <...>-27550 (-----) [004] d..2 82316.623660: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82636          <idle>-0     (-----) [004] d..1 82316.623669: cpu_idle: state=0 cpu_id=4
82637           <...>-27725 (-----) [005] d..1 82316.623717: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82638           <...>-27725 (-----) [005] d..2 82316.623726: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82639          <idle>-0     (-----) [004] .n.1 82316.623732: cpu_idle: state=4294967295 cpu_id=4
82640          <idle>-0     (-----) [004] d..2 82316.623739: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
82641           <...>-27725 (-----) [005] d..2 82316.623764: sched_switch: prev_comm=id.nn.benchmark prev_pid=27725 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
82642           <...>-27550 (-----) [004] ...1 82316.623785: tracing_mark_write: E|27550
82643           <...>-27550 (-----) [004] ...1 82316.623790: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
82644          <idle>-0     (-----) [005] d..1 82316.623792: cpu_idle: state=0 cpu_id=5
82645           <...>-27550 (-----) [004] ...1 82316.623796: tracing_mark_write: E|27550
82646           <...>-27550 (-----) [004] ...1 82316.623799: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
82647           <...>-27550 (-----) [004] ...1 82316.623803: tracing_mark_write: E|27550
82648           <...>-27550 (-----) [004] ...1 82316.623807: tracing_mark_write: E|27550
82649           <...>-27550 (-----) [004] ...1 82316.623919: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
82650           <...>-27550 (-----) [004] ...1 82316.623977: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
82651           <...>-27550 (-----) [004] ...1 82316.623981: tracing_mark_write: E|27550
82652           <...>-27550 (-----) [004] ...1 82316.623985: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
82653           <...>-27550 (-----) [004] ...1 82316.623990: tracing_mark_write: E|27550
82654           <...>-27550 (-----) [004] ...1 82316.623993: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
82655           <...>-27550 (-----) [004] ...1 82316.623997: tracing_mark_write: E|27550
82656           <...>-27550 (-----) [004] ...1 82316.624001: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
82657          <idle>-0     (-----) [005] .n.1 82316.624089: cpu_idle: state=4294967295 cpu_id=5
82658           <...>-27550 (-----) [004] ...1 82316.624090: tracing_mark_write: E|27550
82659           <...>-27550 (-----) [004] ...1 82316.624095: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
82660          <idle>-0     (-----) [005] d..2 82316.624098: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27726 next_prio=110
82661           <...>-27550 (-----) [004] d..2 82316.624111: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82662          <idle>-0     (-----) [004] d..1 82316.624126: cpu_idle: state=0 cpu_id=4
82663           <...>-27726 (-----) [005] ...1 82316.624159: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
82664           <...>-27726 (-----) [005] ...1 82316.624173: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
82665           <...>-27726 (-----) [005] ...1 82316.624177: tracing_mark_write: E|27550
82666           <...>-27726 (-----) [005] .... 82316.624198: binder_transaction: transaction=1570908 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
82667           <...>-27726 (-----) [005] .... 82316.624201: binder_transaction_alloc_buf: transaction=1570908 data_size=48 offsets_size=0
82668           <...>-27726 (-----) [005] ...2 82316.624204: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
82669           <...>-27726 (-----) [005] d..4 82316.624207: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
82670           <...>-27726 (-----) [005] dn.5 82316.624217: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
82671           <...>-27726 (-----) [005] d..2 82316.624224: sched_switch: prev_comm=id.nn.benchmark prev_pid=27726 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
82672<...>-770 ( 770) [005] .... 82316.624235: binder_transaction_received: transaction=1570908
82673<...>-770 ( 770) [005] ...1 82316.624258: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
82674<...>-770 ( 770) [005] d..2 82316.624338: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
82675    RenderThread-9436  ( 9105) [002] d..2 82316.624377: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
82676<...>-770 ( 770) [005] ...1 82316.624394: tracing_mark_write: E|770
82677          <idle>-0     (-----) [002] dnh3 82316.624394: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
82678<...>-770 ( 770) [005] .... 82316.624402: binder_transaction: transaction=1570909 dest_node=0 dest_proc=27550 dest_thread=27726 reply=1 flags=0x0 code=0x0
82679<...>-770 ( 770) [005] .... 82316.624404: binder_transaction_alloc_buf: transaction=1570909 data_size=168 offsets_size=32
82680          <idle>-0     (-----) [002] d..2 82316.624408: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
82681<...>-770 ( 770) [005] .... 82316.624411: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
82682<...>-770 ( 770) [005] d..2 82316.624447: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27726 next_prio=110
82683<...>-581 ( 571) [002] d.h1 82316.624452: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
82684           <...>-27726 (-----) [005] .... 82316.624458: binder_transaction_received: transaction=1570909
82685<...>-581 ( 571) [002] d.h2 82316.624475: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
82686<...>-581 ( 571) [002] d.h2 82316.624484: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
82687          <idle>-0     (-----) [000] dnh3 82316.624509: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
82688           <...>-27726 (-----) [005] ...1 82316.624532: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
82689           <...>-27726 (-----) [005] ...1 82316.624537: tracing_mark_write: E|27550
82690          <idle>-0     (-----) [000] dnh4 82316.624540: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
82691          <idle>-0     (-----) [001] .n.1 82316.624547: cpu_idle: state=4294967295 cpu_id=1
82692           <...>-27726 (-----) [005] .... 82316.624551: binder_transaction: transaction=1570910 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
82693           <...>-27726 (-----) [005] .... 82316.624554: binder_transaction_alloc_buf: transaction=1570910 data_size=48 offsets_size=0
82694           <...>-27726 (-----) [005] ...2 82316.624558: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
82695          <idle>-0     (-----) [001] d..2 82316.624559: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
82696           <...>-27726 (-----) [005] d..4 82316.624560: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
82697<...>-581 ( 571) [002] d..2 82316.624565: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82698           <...>-27726 (-----) [005] dn.5 82316.624570: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
82699          <idle>-0     (-----) [000] .n.1 82316.624573: cpu_idle: state=4294967295 cpu_id=0
82700           <...>-27726 (-----) [005] d..2 82316.624576: sched_switch: prev_comm=id.nn.benchmark prev_pid=27726 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
82701<...>-770 ( 770) [005] .... 82316.624584: binder_transaction_received: transaction=1570910
82702          <idle>-0     (-----) [002] d..1 82316.624585: cpu_idle: state=0 cpu_id=2
82703 kgsl_worker_thr-258   (  258) [001] d..2 82316.624588: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
82704          <idle>-0     (-----) [000] d..2 82316.624589: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
82705          <idle>-0     (-----) [001] d..1 82316.624597: cpu_idle: state=0 cpu_id=1
82706<...>-770 ( 770) [005] ...1 82316.624601: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
82707    RenderThread-9436  ( 9105) [000] d..1 82316.624612: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
82708    RenderThread-9436  ( 9105) [000] d..2 82316.624630: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
82709          <idle>-0     (-----) [001] .n.1 82316.624636: cpu_idle: state=4294967295 cpu_id=1
82710          <idle>-0     (-----) [001] d..2 82316.624646: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
82711<...>-770 ( 770) [005] d..2 82316.624662: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
82712          <idle>-0     (-----) [002] dnh2 82316.624686: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
82713<...>-770 ( 770) [005] ...1 82316.624694: tracing_mark_write: E|770
82714          <idle>-0     (-----) [002] .n.1 82316.624694: cpu_idle: state=4294967295 cpu_id=2
82715 kgsl_worker_thr-258   (  258) [001] d..2 82316.624699: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
82716<...>-770 ( 770) [005] .... 82316.624701: binder_transaction: transaction=1570911 dest_node=0 dest_proc=27550 dest_thread=27726 reply=1 flags=0x0 code=0x0
82717<...>-770 ( 770) [005] .... 82316.624704: binder_transaction_alloc_buf: transaction=1570911 data_size=168 offsets_size=32
82718          <idle>-0     (-----) [002] d..2 82316.624707: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
82719<...>-770 ( 770) [005] .... 82316.624710: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
82720<...>-770 ( 770) [005] d..2 82316.624743: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27726 next_prio=110
82721 kgsl_worker_thr-258   (  258) [001] d..3 82316.624749: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
82722           <...>-27726 (-----) [005] .... 82316.624753: binder_transaction_received: transaction=1570911
82723 kgsl_worker_thr-258   (  258) [001] d..2 82316.624766: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
82724<...>-581 ( 571) [002] d..2 82316.624771: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82725          <idle>-0     (-----) [002] d..1 82316.624786: cpu_idle: state=0 cpu_id=2
82726  kworker/u16:15-1311  ( 1311) [001] d..2 82316.624817: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82727          <idle>-0     (-----) [001] d..1 82316.624830: cpu_idle: state=0 cpu_id=1
82728    RenderThread-9436  ( 9105) [000] .... 82316.624844: binder_transaction: transaction=1570912 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
82729    RenderThread-9436  ( 9105) [000] .... 82316.624850: binder_transaction_alloc_buf: transaction=1570912 data_size=192 offsets_size=8
82730    RenderThread-9436  ( 9105) [000] d..4 82316.624862: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
82731    RenderThread-9436  ( 9105) [000] dn.5 82316.624889: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
82732    RenderThread-9436  ( 9105) [000] d..2 82316.624900: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
82733<...>-13083 ( 8858) [000] .... 82316.624910: binder_transaction_received: transaction=1570912
82734           <...>-27726 (-----) [005] ...1 82316.625028: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
82735           <...>-27726 (-----) [005] ...1 82316.625037: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
82736           <...>-27726 (-----) [005] ...1 82316.625041: tracing_mark_write: E|27550
82737<...>-13083 ( 8858) [000] .... 82316.625086: binder_transaction: transaction=1570913 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
82738<...>-13083 ( 8858) [000] .... 82316.625092: binder_transaction_alloc_buf: transaction=1570913 data_size=68 offsets_size=0
82739           <...>-27726 (-----) [005] .... 82316.625147: binder_transaction: transaction=1570914 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
82740           <...>-27726 (-----) [005] .... 82316.625150: binder_transaction_alloc_buf: transaction=1570914 data_size=556 offsets_size=104
82741           <...>-27726 (-----) [005] ...2 82316.625164: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
82742           <...>-27726 (-----) [005] d..4 82316.625167: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82743           <...>-27726 (-----) [005] dn.5 82316.625175: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82744           <...>-27726 (-----) [005] d..2 82316.625182: sched_switch: prev_comm=id.nn.benchmark prev_pid=27726 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82745<...>-13083 ( 8858) [000] d..2 82316.625185: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
82746<...>-5340 ( 788) [005] .... 82316.625192: binder_transaction_received: transaction=1570914
82747    RenderThread-9436  ( 9105) [000] .... 82316.625197: binder_transaction_received: transaction=1570913
82748<...>-5340 ( 788) [005] ...1 82316.625240: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
82749<...>-5340 ( 788) [005] d..2 82316.625287: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82750    RenderThread-9436  ( 9105) [000] d..2 82316.625311: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82751<...>-5340 ( 788) [005] d..2 82316.625313: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27726 next_prio=110
82752          <idle>-0     (-----) [000] dnh3 82316.625327: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82753           <...>-27726 (-----) [005] d..2 82316.625337: sched_switch: prev_comm=id.nn.benchmark prev_pid=27726 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82754          <idle>-0     (-----) [000] d..2 82316.625340: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
82755          <idle>-0     (-----) [005] d..1 82316.625354: cpu_idle: state=0 cpu_id=5
82756<...>-87 ( 87) [000] d..2 82316.625390: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82757          <idle>-0     (-----) [002] d.h4 82316.625399: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82758          <idle>-0     (-----) [000] d..1 82316.625409: cpu_idle: state=0 cpu_id=0
82759          <idle>-0     (-----) [002] dnh5 82316.625419: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82760          <idle>-0     (-----) [002] .n.1 82316.625431: cpu_idle: state=4294967295 cpu_id=2
82761          <idle>-0     (-----) [002] d..2 82316.625444: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
82762<...>-86 ( 86) [002] d.h4 82316.625478: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82763          <idle>-0     (-----) [005] dnh2 82316.625501: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82764          <idle>-0     (-----) [005] .n.1 82316.625505: cpu_idle: state=4294967295 cpu_id=5
82765          <idle>-0     (-----) [005] d..2 82316.625513: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82766<...>-86 ( 86) [002] d..2 82316.625550: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82767          <idle>-0     (-----) [002] d..1 82316.625565: cpu_idle: state=0 cpu_id=2
82768<...>-5340 ( 788) [005] d..1 82316.625567: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
82769          <idle>-0     (-----) [000] dnh2 82316.625594: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
82770          <idle>-0     (-----) [000] .n.1 82316.625601: cpu_idle: state=4294967295 cpu_id=0
82771          <idle>-0     (-----) [000] d..2 82316.625613: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
82772 neuralnetworks@-13088 (  788) [000] d..2 82316.625671: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82773          <idle>-0     (-----) [000] d..1 82316.625688: cpu_idle: state=0 cpu_id=0
82774<...>-5340 ( 788) [005] d..2 82316.625715: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82775          <idle>-0     (-----) [000] dnh2 82316.625738: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
82776<...>-5340 ( 788) [005] d..2 82316.625743: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
82777          <idle>-0     (-----) [000] .n.1 82316.625746: cpu_idle: state=4294967295 cpu_id=0
82778          <idle>-0     (-----) [005] d..1 82316.625757: cpu_idle: state=0 cpu_id=5
82779          <idle>-0     (-----) [000] d..2 82316.625758: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
82780          <idle>-0     (-----) [002] d.h4 82316.625800: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82781<...>-87 ( 87) [000] d..2 82316.625802: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82782          <idle>-0     (-----) [002] dnh5 82316.625812: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
82783          <idle>-0     (-----) [000] d..1 82316.625816: cpu_idle: state=0 cpu_id=0
82784          <idle>-0     (-----) [002] .n.1 82316.625822: cpu_idle: state=4294967295 cpu_id=2
82785          <idle>-0     (-----) [002] d..2 82316.625835: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
82786<...>-86 ( 86) [002] d..2 82316.625872: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82787          <idle>-0     (-----) [002] d..1 82316.625886: cpu_idle: state=0 cpu_id=2
82788          <idle>-0     (-----) [001] d.h2 82316.625905: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
82789          <idle>-0     (-----) [001] dnh3 82316.625919: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
82790          <idle>-0     (-----) [001] .n.1 82316.625929: cpu_idle: state=4294967295 cpu_id=1
82791          <idle>-0     (-----) [001] d..2 82316.625941: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
82792        DispSync-8879  ( 8858) [001] d..1 82316.625960: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
82793        DispSync-8879  ( 8858) [001] d..2 82316.625984: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
82794          <idle>-0     (-----) [003] .n.1 82316.625990: cpu_idle: state=4294967295 cpu_id=3
82795          <idle>-0     (-----) [003] d..2 82316.626002: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
82796        DispSync-8879  ( 8858) [001] d..2 82316.626018: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82797          <idle>-0     (-----) [001] d..1 82316.626032: cpu_idle: state=0 cpu_id=1
82798   sfEventThread-8882  ( 8858) [003] d..3 82316.626043: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
82799   sfEventThread-8882  ( 8858) [003] d..4 82316.626072: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
82800          <idle>-0     (-----) [002] .n.1 82316.626078: cpu_idle: state=4294967295 cpu_id=2
82801          <idle>-0     (-----) [005] ...1 82316.626086: cpu_idle: state=4294967295 cpu_id=5
82802          <idle>-0     (-----) [002] d..2 82316.626089: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
82803          <idle>-0     (-----) [005] d..1 82316.626089: cpu_idle: state=0 cpu_id=5
82804   sfEventThread-8882  ( 8858) [003] d..2 82316.626109: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82805          <idle>-0     (-----) [003] d..1 82316.626120: cpu_idle: state=0 cpu_id=3
82806  surfaceflinger-8858  ( 8858) [002] d..1 82316.626480: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
82807  surfaceflinger-8858  ( 8858) [002] d..2 82316.626504: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
82808          <idle>-0     (-----) [003] .n.1 82316.626510: cpu_idle: state=4294967295 cpu_id=3
82809          <idle>-0     (-----) [003] d..2 82316.626518: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
82810   sfEventThread-8882  ( 8858) [003] d..2 82316.626554: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82811          <idle>-0     (-----) [003] d..1 82316.626562: cpu_idle: state=0 cpu_id=3
82812  surfaceflinger-8858  ( 8858) [002] ...1 82316.626711: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
82813  surfaceflinger-8858  ( 8858) [002] ...1 82316.626719: tracing_mark_write: E|8858
82814  surfaceflinger-8858  ( 8858) [002] .... 82316.626775: binder_transaction: transaction=1570917 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
82815  surfaceflinger-8858  ( 8858) [002] .... 82316.626780: binder_transaction_alloc_buf: transaction=1570917 data_size=540 offsets_size=96
82816  surfaceflinger-8858  ( 8858) [002] ...2 82316.626808: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
82817  surfaceflinger-8858  ( 8858) [002] d..4 82316.626817: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
82818  surfaceflinger-8858  ( 8858) [002] d..5 82316.626837: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
82819          <idle>-0     (-----) [001] .n.1 82316.626842: cpu_idle: state=4294967295 cpu_id=1
82820          <idle>-0     (-----) [001] d..2 82316.626853: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
82821 [email protected]   (  619) [001] .... 82316.626864: binder_transaction_received: transaction=1570917
82822  surfaceflinger-8858  ( 8858) [002] d..2 82316.626873: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82823          <idle>-0     (-----) [002] d..1 82316.626893: cpu_idle: state=0 cpu_id=2
82824 [email protected]   (  619) [001] ...1 82316.626909: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
82825 [email protected]   (  619) [001] ...1 82316.627030: tracing_mark_write: B|619|HWCSession::PresentDisplay::
82826          <idle>-0     (-----) [000] ...1 82316.627066: cpu_idle: state=4294967295 cpu_id=0
82827          <idle>-0     (-----) [000] d..1 82316.627071: cpu_idle: state=0 cpu_id=0
82828 [email protected]   (  619) [001] ...1 82316.627222: tracing_mark_write: B|619|HWDeviceDRM::Commit::
82829 [email protected]   (  619) [001] ...1 82316.627237: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
82830          <idle>-0     (-----) [002] d.h4 82316.627469: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82831          <idle>-0     (-----) [005] dnh2 82316.627490: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82832          <idle>-0     (-----) [005] .n.1 82316.627494: cpu_idle: state=4294967295 cpu_id=5
82833          <idle>-0     (-----) [005] d..2 82316.627502: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82834          <idle>-0     (-----) [002] ...1 82316.627515: cpu_idle: state=4294967295 cpu_id=2
82835          <idle>-0     (-----) [002] d..1 82316.627521: cpu_idle: state=0 cpu_id=2
82836<...>-5340 ( 788) [005] d..1 82316.627553: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
82837          <idle>-0     (-----) [000] dnh2 82316.627577: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
82838          <idle>-0     (-----) [000] .n.1 82316.627585: cpu_idle: state=4294967295 cpu_id=0
82839          <idle>-0     (-----) [000] d..2 82316.627596: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
82840<...>-5340 ( 788) [005] ...1 82316.627649: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
82841<...>-5340 ( 788) [005] ...1 82316.627653: tracing_mark_write: E|788
82842 neuralnetworks@-13088 (  788) [000] d..2 82316.627665: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
82843<...>-5340 ( 788) [005] .... 82316.627671: binder_transaction: transaction=1570918 dest_node=1570915 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
82844<...>-5340 ( 788) [005] .... 82316.627674: binder_transaction_alloc_buf: transaction=1570918 data_size=60 offsets_size=0
82845<...>-5340 ( 788) [005] d..4 82316.627677: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
82846          <idle>-0     (-----) [000] d..1 82316.627678: cpu_idle: state=0 cpu_id=0
82847<...>-5340 ( 788) [005] d..5 82316.627690: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
82848          <idle>-0     (-----) [004] .n.1 82316.627695: cpu_idle: state=4294967295 cpu_id=4
82849          <idle>-0     (-----) [004] d..2 82316.627704: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
82850           <...>-27571 (-----) [004] .... 82316.627709: binder_transaction_received: transaction=1570918
82851<...>-5340 ( 788) [005] ...1 82316.627713: tracing_mark_write: E|788
82852<...>-5340 ( 788) [005] .... 82316.627719: binder_transaction: transaction=1570919 dest_node=0 dest_proc=27550 dest_thread=27726 reply=1 flags=0x0 code=0x0
82853<...>-5340 ( 788) [005] .... 82316.627721: binder_transaction_alloc_buf: transaction=1570919 data_size=8 offsets_size=0
82854<...>-5340 ( 788) [005] d..2 82316.627723: sched_waking: comm=id.nn.benchmark pid=27726 prio=110 target_cpu=005
82855           <...>-27571 (-----) [004] ...1 82316.627728: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
82856<...>-5340 ( 788) [005] d..3 82316.627730: sched_wakeup: comm=id.nn.benchmark pid=27726 prio=110 target_cpu=005
82857<...>-5340 ( 788) [005] .... 82316.627732: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
82858           <...>-27571 (-----) [004] ...1 82316.627735: tracing_mark_write: E|27550
82859           <...>-27571 (-----) [004] d..2 82316.627764: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82860          <idle>-0     (-----) [004] d..1 82316.627771: cpu_idle: state=0 cpu_id=4
82861<...>-5340 ( 788) [005] d..2 82316.627775: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27726 next_prio=110
82862           <...>-27726 (-----) [005] .... 82316.627784: binder_transaction_received: transaction=1570919
82863           <...>-27726 (-----) [005] ...1 82316.627820: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
82864           <...>-27726 (-----) [005] ...1 82316.627827: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
82865           <...>-27726 (-----) [005] ...1 82316.627852: tracing_mark_write: E|27550
82866           <...>-27726 (-----) [005] ...1 82316.627856: tracing_mark_write: E|27550
82867           <...>-27726 (-----) [005] ...1 82316.627859: tracing_mark_write: E|27550
82868 [email protected]   (  619) [001] d..2 82316.627983: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
82869 [email protected]   (  619) [001] d..3 82316.628008: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
82870          <idle>-0     (-----) [002] .n.1 82316.628013: cpu_idle: state=4294967295 cpu_id=2
82871          <idle>-0     (-----) [002] d..2 82316.628025: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
82872           <...>-27726 (-----) [005] ...1 82316.628050: tracing_mark_write: E|27550
82873           <...>-27726 (-----) [005] d..1 82316.628063: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82874           <...>-27726 (-----) [005] d..2 82316.628079: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82875          <idle>-0     (-----) [004] .n.1 82316.628084: cpu_idle: state=4294967295 cpu_id=4
82876          <idle>-0     (-----) [004] d..2 82316.628090: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
82877           <...>-27550 (-----) [004] d..2 82316.628110: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82878          <idle>-0     (-----) [004] d..1 82316.628119: cpu_idle: state=0 cpu_id=4
82879 [email protected]   (  619) [001] ...1 82316.628121: tracing_mark_write: E|619
82880 [email protected]   (  619) [001] ...1 82316.628128: tracing_mark_write: E|619
82881           <...>-27726 (-----) [005] d..1 82316.628166: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82882           <...>-27726 (-----) [005] d..2 82316.628176: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
82883          <idle>-0     (-----) [004] .n.1 82316.628181: cpu_idle: state=4294967295 cpu_id=4
82884          <idle>-0     (-----) [004] d..2 82316.628189: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
82885 [email protected]   (  619) [001] ...1 82316.628198: tracing_mark_write: E|619
82886           <...>-27726 (-----) [005] d..2 82316.628215: sched_switch: prev_comm=id.nn.benchmark prev_pid=27726 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
82887           <...>-27550 (-----) [004] ...1 82316.628223: tracing_mark_write: E|27550
82888           <...>-27550 (-----) [004] ...1 82316.628227: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
82889           <...>-27550 (-----) [004] ...1 82316.628233: tracing_mark_write: E|27550
82890          <idle>-0     (-----) [005] d..1 82316.628235: cpu_idle: state=0 cpu_id=5
82891           <...>-27550 (-----) [004] ...1 82316.628236: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
82892           <...>-27550 (-----) [004] ...1 82316.628241: tracing_mark_write: E|27550
82893           <...>-27550 (-----) [004] ...1 82316.628245: tracing_mark_write: E|27550
82894 [email protected]   (  619) [001] ...1 82316.628251: tracing_mark_write: E|619
82895 [email protected]   (  619) [001] .... 82316.628270: binder_transaction: transaction=1570920 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
82896 [email protected]   (  619) [001] .... 82316.628274: binder_transaction_alloc_buf: transaction=1570920 data_size=576 offsets_size=112
82897 [email protected]   (  619) [001] d..2 82316.628296: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
82898 [email protected]   (  619) [001] d..3 82316.628323: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
82899          <idle>-0     (-----) [003] .n.1 82316.628329: cpu_idle: state=4294967295 cpu_id=3
82900 [email protected]   (  619) [001] .... 82316.628329: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
82901          <idle>-0     (-----) [003] d..2 82316.628337: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
82902  surfaceflinger-8858  ( 8858) [003] .... 82316.628346: binder_transaction_received: transaction=1570920
82903           <...>-27550 (-----) [004] ...1 82316.628357: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
82904           <...>-27550 (-----) [004] ...1 82316.628414: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
82905           <...>-27550 (-----) [004] ...1 82316.628419: tracing_mark_write: E|27550
82906 [email protected]   (  619) [001] d..2 82316.628422: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82907           <...>-27550 (-----) [004] ...1 82316.628423: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
82908           <...>-27550 (-----) [004] ...1 82316.628428: tracing_mark_write: E|27550
82909           <...>-27550 (-----) [004] ...1 82316.628432: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
82910           <...>-27550 (-----) [004] ...1 82316.628436: tracing_mark_write: E|27550
82911          <idle>-0     (-----) [001] d..1 82316.628443: cpu_idle: state=0 cpu_id=1
82912           <...>-27550 (-----) [004] d.s2 82316.628473: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
82913  surfaceflinger-8858  ( 8858) [003] d.s1 82316.628474: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
82914           <...>-27550 (-----) [004] ...1 82316.628512: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
82915 crtc_commit:111-321   (  321) [002] d.h1 82316.628513: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
82916  surfaceflinger-8858  ( 8858) [003] d.s2 82316.628531: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
82917  surfaceflinger-8858  ( 8858) [003] d.s1 82316.628535: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82918  surfaceflinger-8858  ( 8858) [003] d.s2 82316.628549: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
82919          <idle>-0     (-----) [005] .n.1 82316.628602: cpu_idle: state=4294967295 cpu_id=5
82920           <...>-27550 (-----) [004] ...1 82316.628603: tracing_mark_write: E|27550
82921           <...>-27550 (-----) [004] ...1 82316.628607: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
82922          <idle>-0     (-----) [005] d..2 82316.628612: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27727 next_prio=110
82923           <...>-27550 (-----) [004] d..2 82316.628626: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
82924          <idle>-0     (-----) [004] d..1 82316.628641: cpu_idle: state=0 cpu_id=4
82925           <...>-27727 (-----) [005] ...1 82316.628672: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
82926           <...>-27727 (-----) [005] ...1 82316.628687: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
82927           <...>-27727 (-----) [005] ...1 82316.628691: tracing_mark_write: E|27550
82928           <...>-27727 (-----) [005] .... 82316.628712: binder_transaction: transaction=1570921 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
82929           <...>-27727 (-----) [005] .... 82316.628716: binder_transaction_alloc_buf: transaction=1570921 data_size=48 offsets_size=0
82930           <...>-27727 (-----) [005] ...2 82316.628719: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
82931           <...>-27727 (-----) [005] d..4 82316.628721: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
82932           <...>-27727 (-----) [005] dn.5 82316.628731: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
82933           <...>-27727 (-----) [005] d..2 82316.628738: sched_switch: prev_comm=id.nn.benchmark prev_pid=27727 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
82934<...>-770 ( 770) [005] .... 82316.628748: binder_transaction_received: transaction=1570921
82935<...>-770 ( 770) [005] ...1 82316.628771: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
82936 crtc_commit:111-321   (  321) [002] d..2 82316.628804: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
82937<...>-770 ( 770) [005] d..2 82316.628863: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
82938  surfaceflinger-8858  ( 8858) [003] d.h1 82316.628905: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
82939<...>-770 ( 770) [005] ...1 82316.628918: tracing_mark_write: E|770
82940<...>-770 ( 770) [005] .... 82316.628927: binder_transaction: transaction=1570922 dest_node=0 dest_proc=27550 dest_thread=27727 reply=1 flags=0x0 code=0x0
82941<...>-770 ( 770) [005] .... 82316.628929: binder_transaction_alloc_buf: transaction=1570922 data_size=168 offsets_size=32
82942<...>-770 ( 770) [005] .... 82316.628936: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
82943  surfaceflinger-8858  ( 8858) [003] d..2 82316.628960: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
82944<...>-770 ( 770) [005] d..2 82316.628973: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27727 next_prio=110
82945           <...>-27727 (-----) [005] .... 82316.628984: binder_transaction_received: transaction=1570922
82946     rcu_preempt-7     (    7) [003] d..2 82316.628986: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
82947           <...>-27727 (-----) [005] ...1 82316.629055: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
82948           <...>-27727 (-----) [005] ...1 82316.629060: tracing_mark_write: E|27550
82949           <...>-27727 (-----) [005] .... 82316.629074: binder_transaction: transaction=1570923 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
82950           <...>-27727 (-----) [005] .... 82316.629077: binder_transaction_alloc_buf: transaction=1570923 data_size=48 offsets_size=0
82951           <...>-27727 (-----) [005] ...2 82316.629079: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
82952           <...>-27727 (-----) [005] d..4 82316.629081: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
82953           <...>-27727 (-----) [005] dn.5 82316.629091: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
82954<...>-581 ( 571) [003] d..2 82316.629092: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82955           <...>-27727 (-----) [005] d..2 82316.629099: sched_switch: prev_comm=id.nn.benchmark prev_pid=27727 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
82956<...>-770 ( 770) [005] .... 82316.629107: binder_transaction_received: transaction=1570923
82957          <idle>-0     (-----) [003] d..1 82316.629112: cpu_idle: state=0 cpu_id=3
82958  kworker/u16:15-1311  ( 1311) [002] d..2 82316.629113: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcu_sched next_pid=8 next_prio=120
82959<...>-770 ( 770) [005] ...1 82316.629123: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
82960<...>-8 ( 8) [002] d..2 82316.629123: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
82961          <idle>-0     (-----) [001] d.s3 82316.629160: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
82962<...>-8 ( 8) [002] d..3 82316.629168: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
82963<...>-770 ( 770) [005] d..2 82316.629183: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
82964<...>-8 ( 8) [002] d..2 82316.629185: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
82965          <idle>-0     (-----) [001] d.s4 82316.629200: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
82966<...>-46 ( 46) [002] d..2 82316.629201: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
82967          <idle>-0     (-----) [001] dns4 82316.629206: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
82968          <idle>-0     (-----) [003] dnh2 82316.629210: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
82969<...>-770 ( 770) [005] ...1 82316.629216: tracing_mark_write: E|770
82970          <idle>-0     (-----) [001] .n.1 82316.629216: cpu_idle: state=4294967295 cpu_id=1
82971          <idle>-0     (-----) [003] .n.1 82316.629217: cpu_idle: state=4294967295 cpu_id=3
82972<...>-46 ( 46) [002] d..3 82316.629217: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
82973<...>-770 ( 770) [005] .... 82316.629223: binder_transaction: transaction=1570924 dest_node=0 dest_proc=27550 dest_thread=27727 reply=1 flags=0x0 code=0x0
82974<...>-770 ( 770) [005] .... 82316.629225: binder_transaction_alloc_buf: transaction=1570924 data_size=168 offsets_size=32
82975<...>-46 ( 46) [002] d..2 82316.629228: 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
82976          <idle>-0     (-----) [003] d..2 82316.629231: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
82977<...>-770 ( 770) [005] .... 82316.629231: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
82978          <idle>-0     (-----) [001] d..2 82316.629232: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
82979<...>-8 ( 8) [002] d..2 82316.629256: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
82980<...>-770 ( 770) [005] d..2 82316.629265: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27727 next_prio=110
82981          <idle>-0     (-----) [002] d..1 82316.629272: cpu_idle: state=0 cpu_id=2
82982           <...>-27727 (-----) [005] .... 82316.629286: binder_transaction_received: transaction=1570924
82983<...>-581 ( 571) [003] d..2 82316.629297: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
82984          <idle>-0     (-----) [003] d..1 82316.629310: cpu_idle: state=0 cpu_id=3
82985  kworker/u16:15-1311  ( 1311) [001] .... 82316.629337: clk_set_rate: l3_cluster0_vote_clk 403200000
82986  kworker/u16:15-1311  ( 1311) [001] d..2 82316.629372: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
82987          <idle>-0     (-----) [001] d..1 82316.629389: cpu_idle: state=0 cpu_id=1
82988           <...>-27727 (-----) [005] ...1 82316.629572: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
82989           <...>-27727 (-----) [005] ...1 82316.629582: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
82990           <...>-27727 (-----) [005] ...1 82316.629586: tracing_mark_write: E|27550
82991           <...>-27727 (-----) [005] .... 82316.629652: binder_transaction: transaction=1570925 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
82992           <...>-27727 (-----) [005] .... 82316.629655: binder_transaction_alloc_buf: transaction=1570925 data_size=556 offsets_size=104
82993           <...>-27727 (-----) [005] ...2 82316.629669: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
82994           <...>-27727 (-----) [005] d..4 82316.629672: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82995           <...>-27727 (-----) [005] dn.5 82316.629684: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
82996           <...>-27727 (-----) [005] d..2 82316.629691: sched_switch: prev_comm=id.nn.benchmark prev_pid=27727 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
82997<...>-5340 ( 788) [005] .... 82316.629702: binder_transaction_received: transaction=1570925
82998<...>-5340 ( 788) [005] ...1 82316.629750: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
82999<...>-5340 ( 788) [005] d..2 82316.629798: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83000<...>-5340 ( 788) [005] d..2 82316.629822: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27727 next_prio=110
83001          <idle>-0     (-----) [000] dnh2 82316.629826: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83002          <idle>-0     (-----) [000] .n.1 82316.629832: cpu_idle: state=4294967295 cpu_id=0
83003           <...>-27727 (-----) [005] d..2 82316.629845: sched_switch: prev_comm=id.nn.benchmark prev_pid=27727 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83004          <idle>-0     (-----) [000] d..2 82316.629846: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
83005          <idle>-0     (-----) [005] d..1 82316.629862: cpu_idle: state=0 cpu_id=5
83006<...>-87 ( 87) [000] d..2 82316.629888: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83007          <idle>-0     (-----) [000] d..1 82316.629901: cpu_idle: state=0 cpu_id=0
83008          <idle>-0     (-----) [002] d.h4 82316.629903: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83009          <idle>-0     (-----) [002] dnh5 82316.629921: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83010          <idle>-0     (-----) [002] .n.1 82316.629931: cpu_idle: state=4294967295 cpu_id=2
83011          <idle>-0     (-----) [002] d..2 82316.629945: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
83012<...>-86 ( 86) [002] d.h4 82316.629981: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83013          <idle>-0     (-----) [005] dnh2 82316.630003: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83014          <idle>-0     (-----) [005] .n.1 82316.630008: cpu_idle: state=4294967295 cpu_id=5
83015          <idle>-0     (-----) [005] d..2 82316.630016: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83016<...>-86 ( 86) [002] d..2 82316.630043: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83017          <idle>-0     (-----) [002] d..1 82316.630057: cpu_idle: state=0 cpu_id=2
83018<...>-5340 ( 788) [005] d..1 82316.630070: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83019          <idle>-0     (-----) [000] dnh2 82316.630095: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83020          <idle>-0     (-----) [000] .n.1 82316.630102: cpu_idle: state=4294967295 cpu_id=0
83021          <idle>-0     (-----) [000] d..2 82316.630114: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
83022 neuralnetworks@-13088 (  788) [000] d..2 82316.630155: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83023          <idle>-0     (-----) [000] d..1 82316.630168: cpu_idle: state=0 cpu_id=0
83024<...>-5340 ( 788) [005] d..2 82316.630217: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83025          <idle>-0     (-----) [000] dnh2 82316.630240: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83026<...>-5340 ( 788) [005] d..2 82316.630243: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83027          <idle>-0     (-----) [000] .n.1 82316.630246: cpu_idle: state=4294967295 cpu_id=0
83028          <idle>-0     (-----) [005] d..1 82316.630258: cpu_idle: state=0 cpu_id=5
83029          <idle>-0     (-----) [000] d..2 82316.630258: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
83030<...>-87 ( 87) [000] d..2 82316.630298: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83031          <idle>-0     (-----) [002] d.h4 82316.630298: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83032          <idle>-0     (-----) [002] dnh5 82316.630309: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83033          <idle>-0     (-----) [000] d..1 82316.630310: cpu_idle: state=0 cpu_id=0
83034          <idle>-0     (-----) [002] .n.1 82316.630318: cpu_idle: state=4294967295 cpu_id=2
83035          <idle>-0     (-----) [002] d..2 82316.630331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
83036<...>-86 ( 86) [002] d..2 82316.630366: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83037          <idle>-0     (-----) [002] d..1 82316.630378: cpu_idle: state=0 cpu_id=2
83038          <idle>-0     (-----) [005] ...1 82316.630600: cpu_idle: state=4294967295 cpu_id=5
83039          <idle>-0     (-----) [005] d..1 82316.630604: cpu_idle: state=0 cpu_id=5
83040          <idle>-0     (-----) [001] ...1 82316.631049: cpu_idle: state=4294967295 cpu_id=1
83041          <idle>-0     (-----) [001] d..1 82316.631054: cpu_idle: state=0 cpu_id=1
83042          <idle>-0     (-----) [002] d.h4 82316.632004: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83043          <idle>-0     (-----) [005] dnh2 82316.632033: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83044          <idle>-0     (-----) [005] .n.1 82316.632037: cpu_idle: state=4294967295 cpu_id=5
83045          <idle>-0     (-----) [005] d..2 82316.632045: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83046          <idle>-0     (-----) [002] d..2 82316.632050: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
83047          <idle>-0     (-----) [002] dn.3 82316.632062: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
83048<...>-5340 ( 788) [005] d..1 82316.632097: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83049          <idle>-0     (-----) [000] dnh2 82316.632141: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83050          <idle>-0     (-----) [000] .n.1 82316.632149: cpu_idle: state=4294967295 cpu_id=0
83051          <idle>-0     (-----) [002] .n.1 82316.632152: cpu_idle: state=4294967295 cpu_id=2
83052          <idle>-0     (-----) [000] d..2 82316.632162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
83053          <idle>-0     (-----) [002] d..2 82316.632200: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
83054<...>-5340 ( 788) [005] ...1 82316.632211: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
83055<...>-5340 ( 788) [005] ...1 82316.632216: tracing_mark_write: E|788
83056<...>-5340 ( 788) [005] .... 82316.632231: binder_transaction: transaction=1570928 dest_node=1570926 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
83057     ksoftirqd/2-26    (   26) [002] d..2 82316.632233: 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
83058 neuralnetworks@-13088 (  788) [000] d..2 82316.632234: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83059<...>-5340 ( 788) [005] .... 82316.632234: binder_transaction_alloc_buf: transaction=1570928 data_size=60 offsets_size=0
83060<...>-5340 ( 788) [005] d..4 82316.632237: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
83061          <idle>-0     (-----) [002] d..1 82316.632242: cpu_idle: state=0 cpu_id=2
83062          <idle>-0     (-----) [000] d..1 82316.632247: cpu_idle: state=0 cpu_id=0
83063<...>-5340 ( 788) [005] d..5 82316.632251: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
83064          <idle>-0     (-----) [004] .n.1 82316.632256: cpu_idle: state=4294967295 cpu_id=4
83065          <idle>-0     (-----) [004] d..2 82316.632265: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
83066           <...>-27571 (-----) [004] .... 82316.632270: binder_transaction_received: transaction=1570928
83067<...>-5340 ( 788) [005] ...1 82316.632273: tracing_mark_write: E|788
83068<...>-5340 ( 788) [005] .... 82316.632279: binder_transaction: transaction=1570929 dest_node=0 dest_proc=27550 dest_thread=27727 reply=1 flags=0x0 code=0x0
83069<...>-5340 ( 788) [005] .... 82316.632282: binder_transaction_alloc_buf: transaction=1570929 data_size=8 offsets_size=0
83070<...>-5340 ( 788) [005] d..2 82316.632283: sched_waking: comm=id.nn.benchmark pid=27727 prio=110 target_cpu=005
83071           <...>-27571 (-----) [004] ...1 82316.632288: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
83072<...>-5340 ( 788) [005] d..3 82316.632291: sched_wakeup: comm=id.nn.benchmark pid=27727 prio=110 target_cpu=005
83073<...>-5340 ( 788) [005] .... 82316.632293: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
83074           <...>-27571 (-----) [004] ...1 82316.632295: tracing_mark_write: E|27550
83075           <...>-27571 (-----) [004] d..2 82316.632324: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83076          <idle>-0     (-----) [004] d..1 82316.632332: cpu_idle: state=0 cpu_id=4
83077<...>-5340 ( 788) [005] d..2 82316.632335: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27727 next_prio=110
83078           <...>-27727 (-----) [005] .... 82316.632344: binder_transaction_received: transaction=1570929
83079           <...>-27727 (-----) [005] ...1 82316.632381: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
83080           <...>-27727 (-----) [005] ...1 82316.632387: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
83081           <...>-27727 (-----) [005] ...1 82316.632414: tracing_mark_write: E|27550
83082           <...>-27727 (-----) [005] ...1 82316.632418: tracing_mark_write: E|27550
83083           <...>-27727 (-----) [005] ...1 82316.632421: tracing_mark_write: E|27550
83084           <...>-27727 (-----) [005] ...1 82316.632615: tracing_mark_write: E|27550
83085           <...>-27727 (-----) [005] d..1 82316.632628: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83086           <...>-27727 (-----) [005] d..2 82316.632646: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83087          <idle>-0     (-----) [004] .n.1 82316.632651: cpu_idle: state=4294967295 cpu_id=4
83088          <idle>-0     (-----) [004] d..2 82316.632658: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
83089           <...>-27550 (-----) [004] d..2 82316.632677: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83090          <idle>-0     (-----) [004] d..1 82316.632686: cpu_idle: state=0 cpu_id=4
83091           <...>-27727 (-----) [005] d..1 82316.632739: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83092           <...>-27727 (-----) [005] d..2 82316.632748: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83093          <idle>-0     (-----) [004] .n.1 82316.632754: cpu_idle: state=4294967295 cpu_id=4
83094          <idle>-0     (-----) [004] d..2 82316.632762: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
83095           <...>-27727 (-----) [005] d..2 82316.632787: sched_switch: prev_comm=id.nn.benchmark prev_pid=27727 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
83096           <...>-27550 (-----) [004] ...1 82316.632794: tracing_mark_write: E|27550
83097           <...>-27550 (-----) [004] ...1 82316.632799: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
83098           <...>-27550 (-----) [004] ...1 82316.632804: tracing_mark_write: E|27550
83099          <idle>-0     (-----) [005] d..1 82316.632807: cpu_idle: state=0 cpu_id=5
83100           <...>-27550 (-----) [004] ...1 82316.632808: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
83101           <...>-27550 (-----) [004] ...1 82316.632812: tracing_mark_write: E|27550
83102           <...>-27550 (-----) [004] ...1 82316.632816: tracing_mark_write: E|27550
83103           <...>-27550 (-----) [004] ...1 82316.632929: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
83104           <...>-27550 (-----) [004] ...1 82316.632987: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
83105           <...>-27550 (-----) [004] ...1 82316.632992: tracing_mark_write: E|27550
83106           <...>-27550 (-----) [004] ...1 82316.632995: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
83107           <...>-27550 (-----) [004] ...1 82316.633001: tracing_mark_write: E|27550
83108           <...>-27550 (-----) [004] ...1 82316.633006: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
83109           <...>-27550 (-----) [004] ...1 82316.633010: tracing_mark_write: E|27550
83110           <...>-27550 (-----) [004] ...1 82316.633014: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
83111          <idle>-0     (-----) [005] .n.1 82316.633104: cpu_idle: state=4294967295 cpu_id=5
83112           <...>-27550 (-----) [004] ...1 82316.633105: tracing_mark_write: E|27550
83113           <...>-27550 (-----) [004] ...1 82316.633110: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
83114          <idle>-0     (-----) [005] d..2 82316.633113: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27728 next_prio=110
83115           <...>-27550 (-----) [004] d..2 82316.633127: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83116          <idle>-0     (-----) [004] d..1 82316.633142: cpu_idle: state=0 cpu_id=4
83117           <...>-27728 (-----) [005] ...1 82316.633174: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
83118           <...>-27728 (-----) [005] ...1 82316.633188: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
83119           <...>-27728 (-----) [005] ...1 82316.633193: tracing_mark_write: E|27550
83120           <...>-27728 (-----) [005] .... 82316.633214: binder_transaction: transaction=1570930 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
83121           <...>-27728 (-----) [005] .... 82316.633218: binder_transaction_alloc_buf: transaction=1570930 data_size=48 offsets_size=0
83122           <...>-27728 (-----) [005] ...2 82316.633221: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
83123           <...>-27728 (-----) [005] d..4 82316.633223: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
83124           <...>-27728 (-----) [005] dn.5 82316.633235: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
83125           <...>-27728 (-----) [005] d..2 82316.633242: sched_switch: prev_comm=id.nn.benchmark prev_pid=27728 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
83126<...>-770 ( 770) [005] .... 82316.633252: binder_transaction_received: transaction=1570930
83127<...>-770 ( 770) [005] ...1 82316.633274: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
83128<...>-770 ( 770) [005] d..2 82316.633347: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
83129          <idle>-0     (-----) [000] dnh2 82316.633388: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
83130          <idle>-0     (-----) [000] .n.1 82316.633395: cpu_idle: state=4294967295 cpu_id=0
83131<...>-770 ( 770) [005] ...1 82316.633402: tracing_mark_write: E|770
83132          <idle>-0     (-----) [000] d..2 82316.633406: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
83133<...>-770 ( 770) [005] .... 82316.633410: binder_transaction: transaction=1570931 dest_node=0 dest_proc=27550 dest_thread=27728 reply=1 flags=0x0 code=0x0
83134<...>-770 ( 770) [005] .... 82316.633412: binder_transaction_alloc_buf: transaction=1570931 data_size=168 offsets_size=32
83135<...>-770 ( 770) [005] .... 82316.633419: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
83136<...>-770 ( 770) [005] d..2 82316.633454: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27728 next_prio=110
83137           <...>-27728 (-----) [005] .... 82316.633466: binder_transaction_received: transaction=1570931
83138<...>-581 ( 571) [000] d..2 82316.633516: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83139          <idle>-0     (-----) [000] d..1 82316.633534: cpu_idle: state=0 cpu_id=0
83140           <...>-27728 (-----) [005] ...1 82316.633534: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
83141           <...>-27728 (-----) [005] ...1 82316.633540: tracing_mark_write: E|27550
83142           <...>-27728 (-----) [005] .... 82316.633555: binder_transaction: transaction=1570932 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
83143           <...>-27728 (-----) [005] .... 82316.633558: binder_transaction_alloc_buf: transaction=1570932 data_size=48 offsets_size=0
83144           <...>-27728 (-----) [005] ...2 82316.633560: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
83145           <...>-27728 (-----) [005] d..4 82316.633562: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
83146           <...>-27728 (-----) [005] dn.5 82316.633573: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
83147           <...>-27728 (-----) [005] d..2 82316.633579: sched_switch: prev_comm=id.nn.benchmark prev_pid=27728 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
83148<...>-770 ( 770) [005] .... 82316.633587: binder_transaction_received: transaction=1570932
83149<...>-770 ( 770) [005] ...1 82316.633605: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
83150<...>-770 ( 770) [005] d..2 82316.633664: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
83151          <idle>-0     (-----) [000] dnh2 82316.633690: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
83152          <idle>-0     (-----) [000] .n.1 82316.633697: cpu_idle: state=4294967295 cpu_id=0
83153<...>-770 ( 770) [005] ...1 82316.633698: tracing_mark_write: E|770
83154<...>-770 ( 770) [005] .... 82316.633705: binder_transaction: transaction=1570933 dest_node=0 dest_proc=27550 dest_thread=27728 reply=1 flags=0x0 code=0x0
83155<...>-770 ( 770) [005] .... 82316.633708: binder_transaction_alloc_buf: transaction=1570933 data_size=168 offsets_size=32
83156          <idle>-0     (-----) [000] d..2 82316.633710: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
83157<...>-770 ( 770) [005] .... 82316.633715: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
83158<...>-770 ( 770) [005] d..2 82316.633750: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27728 next_prio=110
83159           <...>-27728 (-----) [005] .... 82316.633761: binder_transaction_received: transaction=1570933
83160<...>-581 ( 571) [000] d..2 82316.633772: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83161          <idle>-0     (-----) [000] d.h6 82316.633870: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
83162          <idle>-0     (-----) [000] d.h7 82316.633893: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
83163          <idle>-0     (-----) [000] d.h6 82316.633899: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
83164          <idle>-0     (-----) [003] .n.1 82316.633900: cpu_idle: state=4294967295 cpu_id=3
83165          <idle>-0     (-----) [003] d..2 82316.633912: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
83166          <idle>-0     (-----) [000] d.h7 82316.633914: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
83167          <idle>-0     (-----) [002] .n.1 82316.633920: cpu_idle: state=4294967295 cpu_id=2
83168          <idle>-0     (-----) [002] d..2 82316.633929: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
83169          <idle>-0     (-----) [000] d..1 82316.633943: cpu_idle: state=0 cpu_id=0
83170  crtc_event:111-322   (  322) [003] d..2 82316.633951: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83171          <idle>-0     (-----) [003] d..1 82316.633960: cpu_idle: state=0 cpu_id=3
83172           <...>-27728 (-----) [005] ...1 82316.634032: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
83173           <...>-27728 (-----) [005] ...1 82316.634042: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
83174           <...>-27728 (-----) [005] ...1 82316.634046: tracing_mark_write: E|27550
83175 crtc_commit:111-321   (  321) [002] d..2 82316.634083: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
83176          <idle>-0     (-----) [002] d..1 82316.634092: cpu_idle: state=0 cpu_id=2
83177           <...>-27728 (-----) [005] .... 82316.634106: binder_transaction: transaction=1570934 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
83178           <...>-27728 (-----) [005] .... 82316.634109: binder_transaction_alloc_buf: transaction=1570934 data_size=556 offsets_size=104
83179           <...>-27728 (-----) [005] ...2 82316.634124: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
83180           <...>-27728 (-----) [005] d..4 82316.634126: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83181           <...>-27728 (-----) [005] dn.5 82316.634138: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83182           <...>-27728 (-----) [005] d..2 82316.634145: sched_switch: prev_comm=id.nn.benchmark prev_pid=27728 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83183<...>-5340 ( 788) [005] .... 82316.634155: binder_transaction_received: transaction=1570934
83184<...>-5340 ( 788) [005] ...1 82316.634199: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
83185<...>-5340 ( 788) [005] d..2 82316.634244: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83186<...>-5340 ( 788) [005] d..2 82316.634270: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27728 next_prio=110
83187          <idle>-0     (-----) [000] dnh2 82316.634275: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83188          <idle>-0     (-----) [000] .n.1 82316.634282: cpu_idle: state=4294967295 cpu_id=0
83189           <...>-27728 (-----) [005] d..2 82316.634293: sched_switch: prev_comm=id.nn.benchmark prev_pid=27728 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83190          <idle>-0     (-----) [000] d..2 82316.634296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
83191          <idle>-0     (-----) [005] d..1 82316.634310: cpu_idle: state=0 cpu_id=5
83192<...>-87 ( 87) [000] d..2 82316.634343: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83193          <idle>-0     (-----) [002] d.h4 82316.634351: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83194          <idle>-0     (-----) [000] d..1 82316.634357: cpu_idle: state=0 cpu_id=0
83195          <idle>-0     (-----) [002] dnh5 82316.634371: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83196          <idle>-0     (-----) [002] .n.1 82316.634382: cpu_idle: state=4294967295 cpu_id=2
83197          <idle>-0     (-----) [002] d..2 82316.634392: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
83198<...>-86 ( 86) [002] d..2 82316.634430: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83199          <idle>-0     (-----) [002] d.h5 82316.634454: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83200          <idle>-0     (-----) [005] dnh2 82316.634475: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83201          <idle>-0     (-----) [005] .n.1 82316.634480: cpu_idle: state=4294967295 cpu_id=5
83202          <idle>-0     (-----) [005] d..2 82316.634488: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83203          <idle>-0     (-----) [002] d..1 82316.634498: cpu_idle: state=0 cpu_id=2
83204<...>-5340 ( 788) [005] d..1 82316.634541: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83205          <idle>-0     (-----) [000] dnh2 82316.634568: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83206          <idle>-0     (-----) [000] .n.1 82316.634576: cpu_idle: state=4294967295 cpu_id=0
83207          <idle>-0     (-----) [000] d..2 82316.634587: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
83208 neuralnetworks@-13088 (  788) [000] d..2 82316.634637: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83209          <idle>-0     (-----) [000] d..1 82316.634652: cpu_idle: state=0 cpu_id=0
83210<...>-5340 ( 788) [005] d..2 82316.634688: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83211          <idle>-0     (-----) [000] dnh2 82316.634711: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83212<...>-5340 ( 788) [005] d..2 82316.634714: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83213          <idle>-0     (-----) [000] .n.1 82316.634719: cpu_idle: state=4294967295 cpu_id=0
83214          <idle>-0     (-----) [005] d..1 82316.634728: cpu_idle: state=0 cpu_id=5
83215          <idle>-0     (-----) [000] d..2 82316.634731: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
83216          <idle>-0     (-----) [002] d.h4 82316.634770: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83217<...>-87 ( 87) [000] d..2 82316.634772: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83218          <idle>-0     (-----) [002] dnh5 82316.634781: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83219          <idle>-0     (-----) [000] d..1 82316.634785: cpu_idle: state=0 cpu_id=0
83220          <idle>-0     (-----) [002] .n.1 82316.634790: cpu_idle: state=4294967295 cpu_id=2
83221          <idle>-0     (-----) [002] d..2 82316.634799: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
83222<...>-86 ( 86) [002] d..2 82316.634835: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83223          <idle>-0     (-----) [002] d..1 82316.634844: cpu_idle: state=0 cpu_id=2
83224          <idle>-0     (-----) [005] ...1 82316.635076: cpu_idle: state=4294967295 cpu_id=5
83225          <idle>-0     (-----) [005] d..1 82316.635080: cpu_idle: state=0 cpu_id=5
83226          <idle>-0     (-----) [003] d.s2 82316.635139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83227          <idle>-0     (-----) [002] d.s3 82316.635141: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
83228          <idle>-0     (-----) [002] d.s4 82316.635163: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
83229          <idle>-0     (-----) [003] dns3 82316.635171: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83230          <idle>-0     (-----) [002] d.s2 82316.635174: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
83231          <idle>-0     (-----) [002] dns3 82316.635193: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
83232          <idle>-0     (-----) [003] .n.1 82316.635196: cpu_idle: state=4294967295 cpu_id=3
83233          <idle>-0     (-----) [002] dns3 82316.635199: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
83234          <idle>-0     (-----) [003] d..2 82316.635206: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
83235  crtc_event:111-322   (  322) [003] d..2 82316.635226: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
83236     rcu_preempt-7     (    7) [003] d..2 82316.635236: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
83237          <idle>-0     (-----) [002] dns4 82316.635240: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
83238          <idle>-0     (-----) [002] .n.1 82316.635262: cpu_idle: state=4294967295 cpu_id=2
83239          <idle>-0     (-----) [002] d..2 82316.635278: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
83240     rcu_preempt-7     (    7) [003] d..3 82316.635287: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
83241<...>-8 ( 8) [002] d..2 82316.635300: 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
83242         rcuop/2-29    (   29) [002] d..2 82316.635306: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
83243     rcu_preempt-7     (    7) [003] d..2 82316.635307: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
83244         rcuop/2-29    (   29) [002] d..3 82316.635344: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
83245         rcuop/2-29    (   29) [002] d..2 82316.635355: 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
83246  kworker/u16:15-1311  ( 1311) [003] d..2 82316.635386: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83247         rcuop/3-37    (   37) [002] d..2 82316.635388: 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
83248          <idle>-0     (-----) [003] d..1 82316.635402: cpu_idle: state=0 cpu_id=3
83249          <idle>-0     (-----) [002] d..1 82316.635403: cpu_idle: state=0 cpu_id=2
83250          <idle>-0     (-----) [000] d.h5 82316.636191: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
83251          <idle>-0     (-----) [000] d.h6 82316.636210: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
83252          <idle>-0     (-----) [002] .n.1 82316.636217: cpu_idle: state=4294967295 cpu_id=2
83253          <idle>-0     (-----) [002] d..2 82316.636228: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
83254          <idle>-0     (-----) [000] ...1 82316.636241: cpu_idle: state=4294967295 cpu_id=0
83255          <idle>-0     (-----) [000] d..1 82316.636246: cpu_idle: state=0 cpu_id=0
83256 crtc_commit:111-321   (  321) [002] d..2 82316.636313: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83257          <idle>-0     (-----) [002] d..1 82316.636326: cpu_idle: state=0 cpu_id=2
83258          <idle>-0     (-----) [000] d.h5 82316.636489: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
83259          <idle>-0     (-----) [000] d.h6 82316.636505: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
83260          <idle>-0     (-----) [003] .n.1 82316.636512: cpu_idle: state=4294967295 cpu_id=3
83261          <idle>-0     (-----) [000] ...1 82316.636523: cpu_idle: state=4294967295 cpu_id=0
83262          <idle>-0     (-----) [003] d..2 82316.636523: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
83263          <idle>-0     (-----) [000] d..1 82316.636531: cpu_idle: state=0 cpu_id=0
83264          <idle>-0     (-----) [002] d.h4 82316.636534: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83265  crtc_event:111-322   (  322) [003] d..2 82316.636552: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83266          <idle>-0     (-----) [005] dnh2 82316.636555: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83267          <idle>-0     (-----) [005] .n.1 82316.636559: cpu_idle: state=4294967295 cpu_id=5
83268          <idle>-0     (-----) [003] d..1 82316.636562: cpu_idle: state=0 cpu_id=3
83269          <idle>-0     (-----) [005] d..2 82316.636568: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83270          <idle>-0     (-----) [002] ...1 82316.636576: cpu_idle: state=4294967295 cpu_id=2
83271          <idle>-0     (-----) [002] d..1 82316.636583: cpu_idle: state=0 cpu_id=2
83272<...>-5340 ( 788) [005] d..1 82316.636617: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83273          <idle>-0     (-----) [000] dnh2 82316.636643: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83274          <idle>-0     (-----) [000] .n.1 82316.636650: cpu_idle: state=4294967295 cpu_id=0
83275          <idle>-0     (-----) [000] d..2 82316.636696: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
83276<...>-5340 ( 788) [005] ...1 82316.636711: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
83277<...>-5340 ( 788) [005] ...1 82316.636715: tracing_mark_write: E|788
83278<...>-5340 ( 788) [005] .... 82316.636730: binder_transaction: transaction=1570937 dest_node=1570935 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
83279<...>-5340 ( 788) [005] .... 82316.636733: binder_transaction_alloc_buf: transaction=1570937 data_size=60 offsets_size=0
83280 neuralnetworks@-13088 (  788) [000] d..2 82316.636736: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83281<...>-5340 ( 788) [005] d..4 82316.636736: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
83282<...>-5340 ( 788) [005] d..5 82316.636749: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
83283          <idle>-0     (-----) [000] d..1 82316.636750: cpu_idle: state=0 cpu_id=0
83284          <idle>-0     (-----) [004] .n.1 82316.636754: cpu_idle: state=4294967295 cpu_id=4
83285          <idle>-0     (-----) [004] d..2 82316.636762: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
83286           <...>-27571 (-----) [004] .... 82316.636766: binder_transaction_received: transaction=1570937
83287<...>-5340 ( 788) [005] ...1 82316.636771: tracing_mark_write: E|788
83288<...>-5340 ( 788) [005] .... 82316.636777: binder_transaction: transaction=1570938 dest_node=0 dest_proc=27550 dest_thread=27728 reply=1 flags=0x0 code=0x0
83289<...>-5340 ( 788) [005] .... 82316.636779: binder_transaction_alloc_buf: transaction=1570938 data_size=8 offsets_size=0
83290<...>-5340 ( 788) [005] d..2 82316.636781: sched_waking: comm=id.nn.benchmark pid=27728 prio=110 target_cpu=005
83291           <...>-27571 (-----) [004] ...1 82316.636784: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
83292<...>-5340 ( 788) [005] d..3 82316.636788: sched_wakeup: comm=id.nn.benchmark pid=27728 prio=110 target_cpu=005
83293           <...>-27571 (-----) [004] ...1 82316.636790: tracing_mark_write: E|27550
83294<...>-5340 ( 788) [005] .... 82316.636790: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
83295           <...>-27571 (-----) [004] d..2 82316.636819: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83296          <idle>-0     (-----) [004] d..1 82316.636826: cpu_idle: state=0 cpu_id=4
83297<...>-5340 ( 788) [005] d..2 82316.636830: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27728 next_prio=110
83298           <...>-27728 (-----) [005] .... 82316.636840: binder_transaction_received: transaction=1570938
83299           <...>-27728 (-----) [005] ...1 82316.636877: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
83300           <...>-27728 (-----) [005] ...1 82316.636883: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
83301           <...>-27728 (-----) [005] ...1 82316.636909: tracing_mark_write: E|27550
83302           <...>-27728 (-----) [005] ...1 82316.636913: tracing_mark_write: E|27550
83303           <...>-27728 (-----) [005] ...1 82316.636917: tracing_mark_write: E|27550
83304           <...>-27728 (-----) [005] ...1 82316.637107: tracing_mark_write: E|27550
83305           <...>-27728 (-----) [005] d..1 82316.637120: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83306           <...>-27728 (-----) [005] d..2 82316.637137: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83307          <idle>-0     (-----) [004] .n.1 82316.637142: cpu_idle: state=4294967295 cpu_id=4
83308          <idle>-0     (-----) [004] d..2 82316.637149: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
83309           <...>-27550 (-----) [004] d..2 82316.637169: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83310          <idle>-0     (-----) [004] d..1 82316.637177: cpu_idle: state=0 cpu_id=4
83311           <...>-27728 (-----) [005] d..1 82316.637234: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83312           <...>-27728 (-----) [005] d..2 82316.637243: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83313          <idle>-0     (-----) [004] .n.1 82316.637249: cpu_idle: state=4294967295 cpu_id=4
83314          <idle>-0     (-----) [004] d..2 82316.637257: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
83315           <...>-27728 (-----) [005] d..2 82316.637281: sched_switch: prev_comm=id.nn.benchmark prev_pid=27728 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
83316           <...>-27550 (-----) [004] ...1 82316.637289: tracing_mark_write: E|27550
83317           <...>-27550 (-----) [004] ...1 82316.637294: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
83318           <...>-27550 (-----) [004] ...1 82316.637300: tracing_mark_write: E|27550
83319          <idle>-0     (-----) [005] d..1 82316.637301: cpu_idle: state=0 cpu_id=5
83320           <...>-27550 (-----) [004] ...1 82316.637303: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
83321           <...>-27550 (-----) [004] ...1 82316.637308: tracing_mark_write: E|27550
83322           <...>-27550 (-----) [004] ...1 82316.637312: tracing_mark_write: E|27550
83323           <...>-27550 (-----) [004] ...1 82316.637425: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
83324           <...>-27550 (-----) [004] ...1 82316.637483: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
83325           <...>-27550 (-----) [004] ...1 82316.637487: tracing_mark_write: E|27550
83326           <...>-27550 (-----) [004] ...1 82316.637492: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
83327           <...>-27550 (-----) [004] ...1 82316.637497: tracing_mark_write: E|27550
83328           <...>-27550 (-----) [004] ...1 82316.637501: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
83329           <...>-27550 (-----) [004] ...1 82316.637505: tracing_mark_write: E|27550
83330           <...>-27550 (-----) [004] ...1 82316.637508: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
83331          <idle>-0     (-----) [005] .n.1 82316.637593: cpu_idle: state=4294967295 cpu_id=5
83332           <...>-27550 (-----) [004] ...1 82316.637595: tracing_mark_write: E|27550
83333           <...>-27550 (-----) [004] ...1 82316.637599: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
83334          <idle>-0     (-----) [005] d..2 82316.637602: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27729 next_prio=110
83335           <...>-27550 (-----) [004] d..2 82316.637615: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83336          <idle>-0     (-----) [004] d..1 82316.637629: cpu_idle: state=0 cpu_id=4
83337           <...>-27729 (-----) [005] ...1 82316.637663: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
83338           <...>-27729 (-----) [005] ...1 82316.637677: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
83339           <...>-27729 (-----) [005] ...1 82316.637681: tracing_mark_write: E|27550
83340           <...>-27729 (-----) [005] .... 82316.637701: binder_transaction: transaction=1570939 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
83341           <...>-27729 (-----) [005] .... 82316.637705: binder_transaction_alloc_buf: transaction=1570939 data_size=48 offsets_size=0
83342           <...>-27729 (-----) [005] ...2 82316.637707: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
83343           <...>-27729 (-----) [005] d..4 82316.637710: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
83344           <...>-27729 (-----) [005] dn.5 82316.637721: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
83345           <...>-27729 (-----) [005] d..2 82316.637728: sched_switch: prev_comm=id.nn.benchmark prev_pid=27729 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
83346<...>-770 ( 770) [005] .... 82316.637738: binder_transaction_received: transaction=1570939
83347<...>-770 ( 770) [005] ...1 82316.637759: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
83348<...>-770 ( 770) [005] d..2 82316.637828: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
83349          <idle>-0     (-----) [000] dnh2 82316.637856: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
83350          <idle>-0     (-----) [000] .n.1 82316.637863: cpu_idle: state=4294967295 cpu_id=0
83351<...>-770 ( 770) [005] ...1 82316.637868: tracing_mark_write: E|770
83352          <idle>-0     (-----) [000] d..2 82316.637875: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
83353<...>-770 ( 770) [005] .... 82316.637876: binder_transaction: transaction=1570940 dest_node=0 dest_proc=27550 dest_thread=27729 reply=1 flags=0x0 code=0x0
83354<...>-770 ( 770) [005] .... 82316.637878: binder_transaction_alloc_buf: transaction=1570940 data_size=168 offsets_size=32
83355<...>-770 ( 770) [005] .... 82316.637885: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
83356<...>-770 ( 770) [005] d..2 82316.637921: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27729 next_prio=110
83357           <...>-27729 (-----) [005] .... 82316.637932: binder_transaction_received: transaction=1570940
83358<...>-581 ( 571) [000] d..2 82316.637960: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83359          <idle>-0     (-----) [000] d..1 82316.637977: cpu_idle: state=0 cpu_id=0
83360           <...>-27729 (-----) [005] ...1 82316.638000: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
83361           <...>-27729 (-----) [005] ...1 82316.638005: tracing_mark_write: E|27550
83362           <...>-27729 (-----) [005] .... 82316.638019: binder_transaction: transaction=1570941 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
83363           <...>-27729 (-----) [005] .... 82316.638022: binder_transaction_alloc_buf: transaction=1570941 data_size=48 offsets_size=0
83364           <...>-27729 (-----) [005] ...2 82316.638024: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
83365           <...>-27729 (-----) [005] d..4 82316.638027: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
83366           <...>-27729 (-----) [005] dn.5 82316.638037: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
83367           <...>-27729 (-----) [005] d..2 82316.638043: sched_switch: prev_comm=id.nn.benchmark prev_pid=27729 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
83368<...>-770 ( 770) [005] .... 82316.638051: binder_transaction_received: transaction=1570941
83369<...>-770 ( 770) [005] ...1 82316.638067: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
83370<...>-770 ( 770) [005] d..2 82316.638124: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
83371          <idle>-0     (-----) [000] dnh2 82316.638149: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
83372          <idle>-0     (-----) [000] .n.1 82316.638157: cpu_idle: state=4294967295 cpu_id=0
83373<...>-770 ( 770) [005] ...1 82316.638159: tracing_mark_write: E|770
83374<...>-770 ( 770) [005] .... 82316.638166: binder_transaction: transaction=1570942 dest_node=0 dest_proc=27550 dest_thread=27729 reply=1 flags=0x0 code=0x0
83375          <idle>-0     (-----) [000] d..2 82316.638169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
83376<...>-770 ( 770) [005] .... 82316.638170: binder_transaction_alloc_buf: transaction=1570942 data_size=168 offsets_size=32
83377<...>-770 ( 770) [005] .... 82316.638175: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
83378<...>-770 ( 770) [005] d..2 82316.638210: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27729 next_prio=110
83379           <...>-27729 (-----) [005] .... 82316.638220: binder_transaction_received: transaction=1570942
83380<...>-581 ( 571) [000] d..2 82316.638229: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83381          <idle>-0     (-----) [000] d..1 82316.638245: cpu_idle: state=0 cpu_id=0
83382          <idle>-0     (-----) [001] d.h2 82316.638344: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
83383          <idle>-0     (-----) [001] dnh3 82316.638362: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
83384          <idle>-0     (-----) [001] .n.1 82316.638370: cpu_idle: state=4294967295 cpu_id=1
83385          <idle>-0     (-----) [001] d..2 82316.638382: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
83386        DispSync-8879  ( 8858) [001] d..1 82316.638408: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
83387        DispSync-8879  ( 8858) [001] d..2 82316.638426: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
83388          <idle>-0     (-----) [003] .n.1 82316.638432: cpu_idle: state=4294967295 cpu_id=3
83389          <idle>-0     (-----) [003] d..2 82316.638444: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
83390  appEventThread-8881  ( 8858) [003] d.s4 82316.638481: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
83391        DispSync-8879  ( 8858) [001] d.s3 82316.638481: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
83392           <...>-27729 (-----) [005] ...1 82316.638531: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
83393  appEventThread-8881  ( 8858) [003] d.s5 82316.638531: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
83394        DispSync-8879  ( 8858) [001] d.s4 82316.638540: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
83395           <...>-27729 (-----) [005] ...1 82316.638540: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
83396           <...>-27729 (-----) [005] ...1 82316.638544: tracing_mark_write: E|27550
83397        DispSync-8879  ( 8858) [001] d..2 82316.638567: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
83398<...>-8 ( 8) [001] d..2 82316.638575: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
83399           <...>-27729 (-----) [005] .... 82316.638601: binder_transaction: transaction=1570943 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
83400           <...>-27729 (-----) [005] .... 82316.638604: binder_transaction_alloc_buf: transaction=1570943 data_size=556 offsets_size=104
83401  appEventThread-8881  ( 8858) [003] d..3 82316.638607: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
83402<...>-8 ( 8) [001] d..3 82316.638613: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
83403           <...>-27729 (-----) [005] ...2 82316.638617: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
83404           <...>-27729 (-----) [005] d..4 82316.638620: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83405<...>-8 ( 8) [001] d..2 82316.638626: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
83406  appEventThread-8881  ( 8858) [003] d..4 82316.638629: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
83407           <...>-27729 (-----) [005] dn.5 82316.638630: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83408          <idle>-0     (-----) [000] .n.1 82316.638636: cpu_idle: state=4294967295 cpu_id=0
83409           <...>-27729 (-----) [005] d..2 82316.638637: sched_switch: prev_comm=id.nn.benchmark prev_pid=27729 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83410<...>-5340 ( 788) [005] .... 82316.638646: binder_transaction_received: transaction=1570943
83411          <idle>-0     (-----) [000] d..2 82316.638651: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
83412  appEventThread-8881  ( 8858) [003] d..2 82316.638663: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
83413<...>-5340 ( 788) [005] ...1 82316.638689: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
83414<...>-46 ( 46) [003] d..2 82316.638695: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
83415  kworker/u16:15-1311  ( 1311) [001] .... 82316.638703: clk_set_rate: l3_cluster0_vote_clk 300000000
83416<...>-46 ( 46) [003] d..3 82316.638734: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
83417<...>-5340 ( 788) [005] d..2 82316.638741: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83418<...>-46 ( 46) [003] d..2 82316.638746: 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
83419<...>-8 ( 8) [003] d..2 82316.638779: 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
83420<...>-5340 ( 788) [005] d..2 82316.638784: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27729 next_prio=110
83421          <idle>-0     (-----) [003] dnh3 82316.638792: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
83422          <idle>-0     (-----) [003] d..2 82316.638803: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
83423           <...>-27729 (-----) [005] d..2 82316.638807: sched_switch: prev_comm=id.nn.benchmark prev_pid=27729 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83424          <idle>-0     (-----) [005] d..1 82316.638825: cpu_idle: state=0 cpu_id=5
83425          <idle>-0     (-----) [002] d.h4 82316.638854: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83426<...>-87 ( 87) [003] d..2 82316.638854: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83427          <idle>-0     (-----) [002] dnh5 82316.638872: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83428          <idle>-0     (-----) [002] .n.1 82316.638881: cpu_idle: state=4294967295 cpu_id=2
83429          <idle>-0     (-----) [003] d..1 82316.638885: cpu_idle: state=0 cpu_id=3
83430          <idle>-0     (-----) [002] d..2 82316.638896: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
83431<...>-86 ( 86) [002] d.h3 82316.638931: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83432          <idle>-0     (-----) [005] dnh2 82316.638952: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83433          <idle>-0     (-----) [005] .n.1 82316.638956: cpu_idle: state=4294967295 cpu_id=5
83434          <idle>-0     (-----) [005] d..2 82316.638964: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83435<...>-86 ( 86) [002] d..2 82316.638989: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83436          <idle>-0     (-----) [002] d..1 82316.639005: cpu_idle: state=0 cpu_id=2
83437<...>-9105 ( 9105) [000] .... 82316.639014: binder_transaction: transaction=1570946 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
83438<...>-5340 ( 788) [005] d..1 82316.639015: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83439<...>-9105 ( 9105) [000] .... 82316.639021: binder_transaction_alloc_buf: transaction=1570946 data_size=80 offsets_size=0
83440<...>-9105 ( 9105) [000] d..4 82316.639028: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
83441  kworker/u16:15-1311  ( 1311) [001] d..2 82316.639048: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
83442<...>-9105 ( 9105) [000] d..5 82316.639064: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
83443          <idle>-0     (-----) [002] .n.1 82316.639071: cpu_idle: state=4294967295 cpu_id=2
83444<...>-9105 ( 9105) [000] dnh4 82316.639080: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83445          <idle>-0     (-----) [002] d..2 82316.639084: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
83446<...>-9105 ( 9105) [000] d..2 82316.639092: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
83447<...>-13083 ( 8858) [002] .... 82316.639093: binder_transaction_received: transaction=1570946
83448          <idle>-0     (-----) [001] d.s4 82316.639093: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
83449          <idle>-0     (-----) [001] d.s5 82316.639104: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
83450          <idle>-0     (-----) [001] dns5 82316.639110: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
83451          <idle>-0     (-----) [001] d..2 82316.639124: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
83452<...>-13083 ( 8858) [002] d..1 82316.639135: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
83453 neuralnetworks@-13088 (  788) [000] d..2 82316.639137: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
83454<...>-13083 ( 8858) [002] d..2 82316.639155: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
83455          <idle>-0     (-----) [003] .n.1 82316.639161: cpu_idle: state=4294967295 cpu_id=3
83456          <idle>-0     (-----) [003] d..2 82316.639169: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
83457<...>-5340 ( 788) [005] d..2 82316.639175: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
83458<...>-9105 ( 9105) [000] d..3 82316.639183: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
83459  appEventThread-8881  ( 8858) [003] d.h1 82316.639197: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
83460<...>-13083 ( 8858) [002] d..2 82316.639204: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83461<...>-5340 ( 788) [005] d..2 82316.639205: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83462  kworker/u16:15-1311  ( 1311) [001] d..2 82316.639216: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83463          <idle>-0     (-----) [005] d..1 82316.639218: cpu_idle: state=0 cpu_id=5
83464          <idle>-0     (-----) [002] d..1 82316.639221: cpu_idle: state=0 cpu_id=2
83465  appEventThread-8881  ( 8858) [003] d..2 82316.639226: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
83466          <idle>-0     (-----) [006] dnh2 82316.639229: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
83467          <idle>-0     (-----) [001] d..1 82316.639232: cpu_idle: state=0 cpu_id=1
83468          <idle>-0     (-----) [006] .n.1 82316.639276: cpu_idle: state=4294967295 cpu_id=6
83469          <idle>-0     (-----) [006] d..2 82316.639284: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
83470          <idle>-0     (-----) [002] d.h4 82316.639288: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83471<...>-87 ( 87) [003] d..2 82316.639292: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83472          <idle>-0     (-----) [002] dnh5 82316.639301: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83473          <idle>-0     (-----) [003] d..1 82316.639303: cpu_idle: state=0 cpu_id=3
83474          <idle>-0     (-----) [002] .n.1 82316.639312: cpu_idle: state=4294967295 cpu_id=2
83475          <idle>-0     (-----) [002] d..2 82316.639324: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
83476    RenderThread-9436  ( 9105) [006] d..2 82316.639328: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
83477          <idle>-0     (-----) [006] d..1 82316.639339: cpu_idle: state=0 cpu_id=6
83478<...>-86 ( 86) [002] d..2 82316.639362: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83479          <idle>-0     (-----) [002] d..1 82316.639375: cpu_idle: state=0 cpu_id=2
83480<...>-9105 ( 9105) [000] d..3 82316.639414: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
83481          <idle>-0     (-----) [006] dnh2 82316.639438: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
83482          <idle>-0     (-----) [006] .n.1 82316.639442: cpu_idle: state=4294967295 cpu_id=6
83483          <idle>-0     (-----) [006] d..2 82316.639449: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
83484<...>-9105 ( 9105) [000] d..2 82316.639465: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83485          <idle>-0     (-----) [000] d..1 82316.639488: cpu_idle: state=0 cpu_id=0
83486    RenderThread-9436  ( 9105) [006] d..1 82316.639521: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
83487          <idle>-0     (-----) [005] ...1 82316.639543: cpu_idle: state=4294967295 cpu_id=5
83488          <idle>-0     (-----) [005] d..1 82316.639547: cpu_idle: state=0 cpu_id=5
83489          <idle>-0     (-----) [000] dnh2 82316.639548: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
83490          <idle>-0     (-----) [000] .n.1 82316.639556: cpu_idle: state=4294967295 cpu_id=0
83491          <idle>-0     (-----) [000] d..2 82316.639569: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
83492    RenderThread-9436  ( 9105) [006] .... 82316.639579: binder_transaction: transaction=1570947 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
83493    RenderThread-9436  ( 9105) [006] .... 82316.639582: binder_transaction_alloc_buf: transaction=1570947 data_size=104 offsets_size=0
83494    RenderThread-9436  ( 9105) [006] d..4 82316.639586: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
83495    RenderThread-9436  ( 9105) [006] dn.5 82316.639602: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
83496    RenderThread-9436  ( 9105) [006] d..2 82316.639637: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
83497<...>-13083 ( 8858) [006] .... 82316.639646: binder_transaction_received: transaction=1570947
83498<...>-9105 ( 9105) [000] d..2 82316.639660: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83499          <idle>-0     (-----) [000] d..1 82316.639678: cpu_idle: state=0 cpu_id=0
83500<...>-13083 ( 8858) [006] .... 82316.639704: binder_transaction: transaction=1570948 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
83501<...>-13083 ( 8858) [006] .... 82316.639708: binder_transaction_alloc_buf: transaction=1570948 data_size=52 offsets_size=8
83502<...>-13083 ( 8858) [006] d..2 82316.639741: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
83503    RenderThread-9436  ( 9105) [006] .... 82316.639751: binder_transaction_received: transaction=1570948
83504    RenderThread-9436  ( 9105) [006] d..2 82316.640444: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
83505          <idle>-0     (-----) [006] d..1 82316.640457: cpu_idle: state=0 cpu_id=6
83506          <idle>-0     (-----) [006] d.h2 82316.640534: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
83507          <idle>-0     (-----) [006] d.h3 82316.640541: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
83508          <idle>-0     (-----) [006] dnh3 82316.640544: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
83509          <idle>-0     (-----) [006] .n.1 82316.640549: cpu_idle: state=4294967295 cpu_id=6
83510          <idle>-0     (-----) [006] d..2 82316.640557: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
83511          <idle>-0     (-----) [000] d.h3 82316.640583: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
83512          <idle>-0     (-----) [000] d.h4 82316.640604: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
83513          <idle>-0     (-----) [001] .n.1 82316.640610: cpu_idle: state=4294967295 cpu_id=1
83514          <idle>-0     (-----) [001] d..2 82316.640622: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
83515          <idle>-0     (-----) [000] ...1 82316.640623: cpu_idle: state=4294967295 cpu_id=0
83516          <idle>-0     (-----) [000] d..1 82316.640629: cpu_idle: state=0 cpu_id=0
83517          <idle>-0     (-----) [002] ...1 82316.640660: cpu_idle: state=4294967295 cpu_id=2
83518          <idle>-0     (-----) [002] d..1 82316.640665: cpu_idle: state=0 cpu_id=2
83519 kgsl_worker_thr-258   (  258) [001] d..2 82316.640675: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
83520    RenderThread-9436  ( 9105) [006] .... 82316.640688: binder_transaction: transaction=1570949 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
83521    RenderThread-9436  ( 9105) [006] .... 82316.640692: binder_transaction_alloc_buf: transaction=1570949 data_size=192 offsets_size=8
83522 kgsl_worker_thr-258   (  258) [001] d..3 82316.640695: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
83523    RenderThread-9436  ( 9105) [006] d..4 82316.640698: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
83524    RenderThread-9436  ( 9105) [006] dn.5 82316.640708: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
83525 kgsl_worker_thr-258   (  258) [001] d..2 82316.640713: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
83526    RenderThread-9436  ( 9105) [006] d..2 82316.640714: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
83527<...>-13083 ( 8858) [006] .... 82316.640724: binder_transaction_received: transaction=1570949
83528  kworker/u16:15-1311  ( 1311) [001] d..2 82316.640760: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83529          <idle>-0     (-----) [001] d..1 82316.640773: cpu_idle: state=0 cpu_id=1
83530<...>-13083 ( 8858) [006] .... 82316.640837: binder_transaction: transaction=1570950 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
83531<...>-13083 ( 8858) [006] .... 82316.640840: binder_transaction_alloc_buf: transaction=1570950 data_size=68 offsets_size=0
83532<...>-13083 ( 8858) [006] d..2 82316.640866: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
83533    RenderThread-9436  ( 9105) [006] .... 82316.640876: binder_transaction_received: transaction=1570950
83534          <idle>-0     (-----) [002] d.h4 82316.640891: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83535          <idle>-0     (-----) [005] dnh2 82316.640912: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83536          <idle>-0     (-----) [005] .n.1 82316.640915: cpu_idle: state=4294967295 cpu_id=5
83537          <idle>-0     (-----) [005] d..2 82316.640923: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83538          <idle>-0     (-----) [002] ...1 82316.640933: cpu_idle: state=4294967295 cpu_id=2
83539          <idle>-0     (-----) [002] d..1 82316.640940: cpu_idle: state=0 cpu_id=2
83540    RenderThread-9436  ( 9105) [006] d..2 82316.640945: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
83541          <idle>-0     (-----) [006] d..1 82316.640958: cpu_idle: state=0 cpu_id=6
83542<...>-5340 ( 788) [005] d..1 82316.640977: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83543          <idle>-0     (-----) [000] dnh2 82316.640999: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83544          <idle>-0     (-----) [000] .n.1 82316.641009: cpu_idle: state=4294967295 cpu_id=0
83545          <idle>-0     (-----) [000] d..2 82316.641022: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
83546<...>-5340 ( 788) [005] ...1 82316.641076: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
83547<...>-5340 ( 788) [005] ...1 82316.641080: tracing_mark_write: E|788
83548<...>-5340 ( 788) [005] .... 82316.641098: binder_transaction: transaction=1570951 dest_node=1570944 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
83549<...>-5340 ( 788) [005] .... 82316.641101: binder_transaction_alloc_buf: transaction=1570951 data_size=60 offsets_size=0
83550 neuralnetworks@-13088 (  788) [000] d..2 82316.641103: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83551<...>-5340 ( 788) [005] d..4 82316.641105: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
83552<...>-5340 ( 788) [005] d..5 82316.641118: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
83553          <idle>-0     (-----) [000] d..1 82316.641118: cpu_idle: state=0 cpu_id=0
83554          <idle>-0     (-----) [004] .n.1 82316.641124: cpu_idle: state=4294967295 cpu_id=4
83555          <idle>-0     (-----) [004] d..2 82316.641133: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
83556           <...>-27571 (-----) [004] .... 82316.641138: binder_transaction_received: transaction=1570951
83557<...>-5340 ( 788) [005] ...1 82316.641142: tracing_mark_write: E|788
83558<...>-5340 ( 788) [005] .... 82316.641149: binder_transaction: transaction=1570952 dest_node=0 dest_proc=27550 dest_thread=27729 reply=1 flags=0x0 code=0x0
83559<...>-5340 ( 788) [005] .... 82316.641151: binder_transaction_alloc_buf: transaction=1570952 data_size=8 offsets_size=0
83560<...>-5340 ( 788) [005] d..2 82316.641153: sched_waking: comm=id.nn.benchmark pid=27729 prio=110 target_cpu=005
83561           <...>-27571 (-----) [004] ...1 82316.641159: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
83562<...>-5340 ( 788) [005] d..3 82316.641160: sched_wakeup: comm=id.nn.benchmark pid=27729 prio=110 target_cpu=005
83563<...>-5340 ( 788) [005] .... 82316.641162: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
83564           <...>-27571 (-----) [004] ...1 82316.641165: tracing_mark_write: E|27550
83565           <...>-27571 (-----) [004] d..2 82316.641194: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83566          <idle>-0     (-----) [004] d..1 82316.641202: cpu_idle: state=0 cpu_id=4
83567<...>-5340 ( 788) [005] d..2 82316.641205: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27729 next_prio=110
83568           <...>-27729 (-----) [005] .... 82316.641215: binder_transaction_received: transaction=1570952
83569           <...>-27729 (-----) [005] ...1 82316.641255: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
83570           <...>-27729 (-----) [005] ...1 82316.641261: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
83571           <...>-27729 (-----) [005] ...1 82316.641288: tracing_mark_write: E|27550
83572           <...>-27729 (-----) [005] ...1 82316.641292: tracing_mark_write: E|27550
83573           <...>-27729 (-----) [005] ...1 82316.641296: tracing_mark_write: E|27550
83574           <...>-27729 (-----) [005] ...1 82316.641496: tracing_mark_write: E|27550
83575           <...>-27729 (-----) [005] d..1 82316.641509: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83576           <...>-27729 (-----) [005] d..2 82316.641525: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83577          <idle>-0     (-----) [004] .n.1 82316.641530: cpu_idle: state=4294967295 cpu_id=4
83578          <idle>-0     (-----) [004] d..2 82316.641537: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
83579           <...>-27550 (-----) [004] d..2 82316.641557: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83580          <idle>-0     (-----) [004] d..1 82316.641566: cpu_idle: state=0 cpu_id=4
83581           <...>-27729 (-----) [005] d..1 82316.641618: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83582           <...>-27729 (-----) [005] d..2 82316.641627: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83583          <idle>-0     (-----) [004] .n.1 82316.641632: cpu_idle: state=4294967295 cpu_id=4
83584          <idle>-0     (-----) [004] d..2 82316.641640: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
83585           <...>-27729 (-----) [005] d..2 82316.641666: sched_switch: prev_comm=id.nn.benchmark prev_pid=27729 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
83586           <...>-27550 (-----) [004] ...1 82316.641686: tracing_mark_write: E|27550
83587           <...>-27550 (-----) [004] ...1 82316.641690: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
83588          <idle>-0     (-----) [005] d..1 82316.641693: cpu_idle: state=0 cpu_id=5
83589           <...>-27550 (-----) [004] ...1 82316.641696: tracing_mark_write: E|27550
83590           <...>-27550 (-----) [004] ...1 82316.641700: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
83591           <...>-27550 (-----) [004] ...1 82316.641704: tracing_mark_write: E|27550
83592           <...>-27550 (-----) [004] ...1 82316.641709: tracing_mark_write: E|27550
83593          <idle>-0     (-----) [003] d.s2 82316.641802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83594          <idle>-0     (-----) [003] dns3 82316.641821: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83595          <idle>-0     (-----) [003] .n.1 82316.641833: cpu_idle: state=4294967295 cpu_id=3
83596          <idle>-0     (-----) [003] d..2 82316.641843: 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
83597           <...>-27550 (-----) [004] ...1 82316.641858: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
83598     rcu_preempt-7     (    7) [003] d..2 82316.641882: 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
83599          <idle>-0     (-----) [003] d..1 82316.641892: cpu_idle: state=0 cpu_id=3
83600           <...>-27550 (-----) [004] ...1 82316.641917: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
83601           <...>-27550 (-----) [004] ...1 82316.641922: tracing_mark_write: E|27550
83602           <...>-27550 (-----) [004] ...1 82316.641926: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
83603           <...>-27550 (-----) [004] ...1 82316.641932: tracing_mark_write: E|27550
83604           <...>-27550 (-----) [004] ...1 82316.641936: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
83605           <...>-27550 (-----) [004] ...1 82316.641940: tracing_mark_write: E|27550
83606           <...>-27550 (-----) [004] ...1 82316.641943: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
83607          <idle>-0     (-----) [005] .n.1 82316.642039: cpu_idle: state=4294967295 cpu_id=5
83608           <...>-27550 (-----) [004] ...1 82316.642040: tracing_mark_write: E|27550
83609           <...>-27550 (-----) [004] ...1 82316.642044: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
83610          <idle>-0     (-----) [005] d..2 82316.642049: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27730 next_prio=110
83611           <...>-27550 (-----) [004] d..2 82316.642063: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83612          <idle>-0     (-----) [004] d..1 82316.642077: cpu_idle: state=0 cpu_id=4
83613           <...>-27730 (-----) [005] ...1 82316.642111: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
83614           <...>-27730 (-----) [005] ...1 82316.642126: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
83615           <...>-27730 (-----) [005] ...1 82316.642130: tracing_mark_write: E|27550
83616           <...>-27730 (-----) [005] .... 82316.642154: binder_transaction: transaction=1570953 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
83617           <...>-27730 (-----) [005] .... 82316.642158: binder_transaction_alloc_buf: transaction=1570953 data_size=48 offsets_size=0
83618           <...>-27730 (-----) [005] ...2 82316.642161: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
83619           <...>-27730 (-----) [005] d..4 82316.642164: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
83620           <...>-27730 (-----) [005] dn.5 82316.642175: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
83621           <...>-27730 (-----) [005] d..2 82316.642182: sched_switch: prev_comm=id.nn.benchmark prev_pid=27730 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
83622<...>-770 ( 770) [005] .... 82316.642192: binder_transaction_received: transaction=1570953
83623<...>-770 ( 770) [005] ...1 82316.642217: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
83624<...>-770 ( 770) [005] d..2 82316.642309: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
83625          <idle>-0     (-----) [000] dnh2 82316.642339: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
83626          <idle>-0     (-----) [001] d.h2 82316.642343: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
83627          <idle>-0     (-----) [000] .n.1 82316.642347: cpu_idle: state=4294967295 cpu_id=0
83628<...>-770 ( 770) [005] ...1 82316.642352: tracing_mark_write: E|770
83629          <idle>-0     (-----) [001] dnh3 82316.642358: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
83630<...>-770 ( 770) [005] .... 82316.642360: binder_transaction: transaction=1570954 dest_node=0 dest_proc=27550 dest_thread=27730 reply=1 flags=0x0 code=0x0
83631          <idle>-0     (-----) [000] d..2 82316.642362: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
83632<...>-770 ( 770) [005] .... 82316.642363: binder_transaction_alloc_buf: transaction=1570954 data_size=168 offsets_size=32
83633          <idle>-0     (-----) [001] .n.1 82316.642367: cpu_idle: state=4294967295 cpu_id=1
83634<...>-770 ( 770) [005] .... 82316.642370: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
83635          <idle>-0     (-----) [001] d..2 82316.642379: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
83636        DispSync-8879  ( 8858) [001] d..1 82316.642400: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
83637<...>-770 ( 770) [005] d..2 82316.642406: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27730 next_prio=110
83638           <...>-27730 (-----) [005] .... 82316.642417: binder_transaction_received: transaction=1570954
83639        DispSync-8879  ( 8858) [001] d..2 82316.642418: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
83640          <idle>-0     (-----) [003] .n.1 82316.642423: cpu_idle: state=4294967295 cpu_id=3
83641          <idle>-0     (-----) [003] d..2 82316.642431: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
83642        DispSync-8879  ( 8858) [001] d..2 82316.642453: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83643          <idle>-0     (-----) [001] d..1 82316.642468: cpu_idle: state=0 cpu_id=1
83644<...>-581 ( 571) [000] d..2 82316.642469: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83645   sfEventThread-8882  ( 8858) [003] d..3 82316.642472: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
83646          <idle>-0     (-----) [000] d..1 82316.642488: cpu_idle: state=0 cpu_id=0
83647           <...>-27730 (-----) [005] ...1 82316.642491: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
83648           <...>-27730 (-----) [005] ...1 82316.642496: tracing_mark_write: E|27550
83649   sfEventThread-8882  ( 8858) [003] d..4 82316.642502: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
83650          <idle>-0     (-----) [000] .n.1 82316.642509: cpu_idle: state=4294967295 cpu_id=0
83651           <...>-27730 (-----) [005] .... 82316.642511: binder_transaction: transaction=1570955 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
83652           <...>-27730 (-----) [005] .... 82316.642514: binder_transaction_alloc_buf: transaction=1570955 data_size=48 offsets_size=0
83653           <...>-27730 (-----) [005] ...2 82316.642516: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
83654           <...>-27730 (-----) [005] d..4 82316.642519: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
83655          <idle>-0     (-----) [000] d..2 82316.642521: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
83656           <...>-27730 (-----) [005] dn.5 82316.642528: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
83657           <...>-27730 (-----) [005] d..2 82316.642535: sched_switch: prev_comm=id.nn.benchmark prev_pid=27730 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
83658   sfEventThread-8882  ( 8858) [003] d..2 82316.642538: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83659<...>-770 ( 770) [005] .... 82316.642543: binder_transaction_received: transaction=1570955
83660          <idle>-0     (-----) [003] d..1 82316.642548: cpu_idle: state=0 cpu_id=3
83661<...>-770 ( 770) [005] ...1 82316.642559: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
83662<...>-770 ( 770) [005] d..2 82316.642619: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
83663  surfaceflinger-8858  ( 8858) [000] d.h1 82316.642647: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
83664<...>-770 ( 770) [005] ...1 82316.642656: tracing_mark_write: E|770
83665<...>-770 ( 770) [005] .... 82316.642663: binder_transaction: transaction=1570956 dest_node=0 dest_proc=27550 dest_thread=27730 reply=1 flags=0x0 code=0x0
83666<...>-770 ( 770) [005] .... 82316.642666: binder_transaction_alloc_buf: transaction=1570956 data_size=168 offsets_size=32
83667<...>-770 ( 770) [005] .... 82316.642673: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
83668<...>-770 ( 770) [005] d..2 82316.642707: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27730 next_prio=110
83669           <...>-27730 (-----) [005] .... 82316.642718: binder_transaction_received: transaction=1570956
83670  surfaceflinger-8858  ( 8858) [000] d..2 82316.642914: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
83671  surfaceflinger-8858  ( 8858) [000] d..3 82316.642968: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
83672           <...>-27730 (-----) [005] ...1 82316.642991: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
83673  surfaceflinger-8858  ( 8858) [000] d..1 82316.642998: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
83674           <...>-27730 (-----) [005] ...1 82316.643001: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
83675           <...>-27730 (-----) [005] ...1 82316.643005: tracing_mark_write: E|27550
83676  surfaceflinger-8858  ( 8858) [000] d..2 82316.643016: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
83677          <idle>-0     (-----) [003] .n.1 82316.643022: cpu_idle: state=4294967295 cpu_id=3
83678          <idle>-0     (-----) [003] d..2 82316.643030: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
83679           <...>-27730 (-----) [005] .... 82316.643066: binder_transaction: transaction=1570957 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
83680           <...>-27730 (-----) [005] .... 82316.643069: binder_transaction_alloc_buf: transaction=1570957 data_size=556 offsets_size=104
83681           <...>-27730 (-----) [005] ...2 82316.643083: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
83682   sfEventThread-8882  ( 8858) [003] d..2 82316.643085: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
83683           <...>-27730 (-----) [005] d..4 82316.643086: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83684           <...>-27730 (-----) [005] dn.5 82316.643097: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83685           <...>-27730 (-----) [005] d..2 82316.643103: sched_switch: prev_comm=id.nn.benchmark prev_pid=27730 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83686         rcuop/0-10    (   10) [003] d..2 82316.643113: 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
83687<...>-5340 ( 788) [005] .... 82316.643113: binder_transaction_received: transaction=1570957
83688          <idle>-0     (-----) [003] d..1 82316.643123: cpu_idle: state=0 cpu_id=3
83689<...>-5340 ( 788) [005] ...1 82316.643161: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
83690<...>-5340 ( 788) [005] d..2 82316.643207: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
83691  surfaceflinger-8858  ( 8858) [000] ...1 82316.643230: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
83692<...>-5340 ( 788) [005] d..2 82316.643246: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27730 next_prio=110
83693  surfaceflinger-8858  ( 8858) [000] d.h1 82316.643250: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83694  surfaceflinger-8858  ( 8858) [000] ...1 82316.643255: tracing_mark_write: E|8858
83695           <...>-27730 (-----) [005] d..2 82316.643269: sched_switch: prev_comm=id.nn.benchmark prev_pid=27730 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83696          <idle>-0     (-----) [005] d..1 82316.643287: cpu_idle: state=0 cpu_id=5
83697  surfaceflinger-8858  ( 8858) [000] .... 82316.643315: binder_transaction: transaction=1570960 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
83698  surfaceflinger-8858  ( 8858) [000] .... 82316.643320: binder_transaction_alloc_buf: transaction=1570960 data_size=540 offsets_size=96
83699  surfaceflinger-8858  ( 8858) [000] ...2 82316.643350: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
83700  surfaceflinger-8858  ( 8858) [000] d..4 82316.643359: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
83701  surfaceflinger-8858  ( 8858) [000] d..5 82316.643380: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
83702          <idle>-0     (-----) [001] .n.1 82316.643387: cpu_idle: state=4294967295 cpu_id=1
83703          <idle>-0     (-----) [001] d..2 82316.643399: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
83704  surfaceflinger-8858  ( 8858) [000] d..2 82316.643403: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
83705 [email protected]   (  619) [001] .... 82316.643410: binder_transaction_received: transaction=1570960
83706<...>-87 ( 87) [000] d..2 82316.643442: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
83707          <idle>-0     (-----) [002] d.h4 82316.643454: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83708 [email protected]   (  619) [001] ...1 82316.643455: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
83709          <idle>-0     (-----) [002] dnh5 82316.643472: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83710          <idle>-0     (-----) [002] .n.1 82316.643480: cpu_idle: state=4294967295 cpu_id=2
83711          <idle>-0     (-----) [002] d..2 82316.643493: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
83712<...>-86 ( 86) [002] d..2 82316.643530: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83713<...>-581 ( 571) [000] d..2 82316.643532: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83714          <idle>-0     (-----) [002] d.h5 82316.643553: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83715          <idle>-0     (-----) [000] d..1 82316.643554: cpu_idle: state=0 cpu_id=0
83716 [email protected]   (  619) [001] ...1 82316.643566: tracing_mark_write: B|619|HWCSession::PresentDisplay::
83717          <idle>-0     (-----) [005] dnh2 82316.643575: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83718          <idle>-0     (-----) [005] .n.1 82316.643579: cpu_idle: state=4294967295 cpu_id=5
83719          <idle>-0     (-----) [005] d..2 82316.643588: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83720          <idle>-0     (-----) [002] d..1 82316.643600: cpu_idle: state=0 cpu_id=2
83721<...>-5340 ( 788) [005] d..1 82316.643642: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83722 [email protected]   (  619) [001] d.h1 82316.643684: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
83723 [email protected]   (  619) [001] ...1 82316.643778: tracing_mark_write: B|619|HWDeviceDRM::Commit::
83724 [email protected]   (  619) [001] ...1 82316.643793: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
83725<...>-5340 ( 788) [005] d..2 82316.643803: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83726<...>-5340 ( 788) [005] d..2 82316.643828: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83727          <idle>-0     (-----) [000] dnh2 82316.643828: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83728          <idle>-0     (-----) [000] .n.1 82316.643837: cpu_idle: state=4294967295 cpu_id=0
83729          <idle>-0     (-----) [005] d..1 82316.643843: cpu_idle: state=0 cpu_id=5
83730          <idle>-0     (-----) [000] d..2 82316.643849: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
83731          <idle>-0     (-----) [002] d.h4 82316.643890: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83732<...>-87 ( 87) [000] d..2 82316.643893: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83733          <idle>-0     (-----) [002] dnh5 82316.643902: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83734          <idle>-0     (-----) [000] d..1 82316.643907: cpu_idle: state=0 cpu_id=0
83735          <idle>-0     (-----) [002] .n.1 82316.643910: cpu_idle: state=4294967295 cpu_id=2
83736          <idle>-0     (-----) [002] d..2 82316.643923: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
83737<...>-86 ( 86) [002] d..2 82316.643963: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83738          <idle>-0     (-----) [002] d..1 82316.643977: cpu_idle: state=0 cpu_id=2
83739          <idle>-0     (-----) [005] ...1 82316.644211: cpu_idle: state=4294967295 cpu_id=5
83740          <idle>-0     (-----) [005] d..1 82316.644215: cpu_idle: state=0 cpu_id=5
83741 [email protected]   (  619) [001] d..2 82316.644466: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
83742 [email protected]   (  619) [001] d..3 82316.644490: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
83743          <idle>-0     (-----) [002] .n.1 82316.644495: cpu_idle: state=4294967295 cpu_id=2
83744          <idle>-0     (-----) [002] d..2 82316.644506: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
83745 [email protected]   (  619) [001] ...1 82316.644604: tracing_mark_write: E|619
83746 [email protected]   (  619) [001] ...1 82316.644612: tracing_mark_write: E|619
83747 [email protected]   (  619) [001] ...1 82316.644680: tracing_mark_write: E|619
83748 [email protected]   (  619) [001] ...1 82316.644729: tracing_mark_write: E|619
83749 [email protected]   (  619) [001] .... 82316.644746: binder_transaction: transaction=1570961 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
83750 [email protected]   (  619) [001] .... 82316.644751: binder_transaction_alloc_buf: transaction=1570961 data_size=576 offsets_size=112
83751 [email protected]   (  619) [001] d..2 82316.644773: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
83752 [email protected]   (  619) [001] d..3 82316.644791: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
83753 [email protected]   (  619) [001] .... 82316.644796: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
83754          <idle>-0     (-----) [000] .n.1 82316.644798: cpu_idle: state=4294967295 cpu_id=0
83755          <idle>-0     (-----) [000] d..2 82316.644809: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
83756  surfaceflinger-8858  ( 8858) [000] .... 82316.644819: binder_transaction_received: transaction=1570961
83757 [email protected]   (  619) [001] d..2 82316.644876: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
83758 neuralnetworks@-13088 (  788) [001] d..2 82316.644939: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83759          <idle>-0     (-----) [001] d..1 82316.644959: cpu_idle: state=0 cpu_id=1
83760          <idle>-0     (-----) [003] d.s2 82316.645139: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
83761 crtc_commit:111-321   (  321) [002] d.s2 82316.645148: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
83762          <idle>-0     (-----) [003] dns3 82316.645157: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
83763          <idle>-0     (-----) [003] .n.1 82316.645174: cpu_idle: state=4294967295 cpu_id=3
83764          <idle>-0     (-----) [003] d..2 82316.645184: 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
83765 crtc_commit:111-321   (  321) [002] d.s3 82316.645201: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
83766<...>-8 ( 8) [003] d..2 82316.645215: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
83767  kworker/u16:15-1311  ( 1311) [003] d..2 82316.645293: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83768          <idle>-0     (-----) [003] d..1 82316.645303: cpu_idle: state=0 cpu_id=3
83769  surfaceflinger-8858  ( 8858) [000] d..2 82316.645343: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83770 crtc_commit:111-321   (  321) [002] d..2 82316.645358: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
83771          <idle>-0     (-----) [000] d..1 82316.645365: cpu_idle: state=0 cpu_id=0
83772          <idle>-0     (-----) [002] d..1 82316.645375: cpu_idle: state=0 cpu_id=2
83773          <idle>-0     (-----) [002] d.h4 82316.645540: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83774          <idle>-0     (-----) [005] dnh2 82316.645561: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83775          <idle>-0     (-----) [005] .n.1 82316.645565: cpu_idle: state=4294967295 cpu_id=5
83776          <idle>-0     (-----) [005] d..2 82316.645574: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83777          <idle>-0     (-----) [002] ...1 82316.645582: cpu_idle: state=4294967295 cpu_id=2
83778          <idle>-0     (-----) [002] d..1 82316.645589: cpu_idle: state=0 cpu_id=2
83779<...>-5340 ( 788) [005] d..1 82316.645625: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
83780          <idle>-0     (-----) [001] dnh2 82316.645655: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
83781          <idle>-0     (-----) [001] .n.1 82316.645664: cpu_idle: state=4294967295 cpu_id=1
83782          <idle>-0     (-----) [001] d..2 82316.645708: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
83783<...>-5340 ( 788) [005] ...1 82316.645721: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
83784<...>-5340 ( 788) [005] ...1 82316.645725: tracing_mark_write: E|788
83785<...>-5340 ( 788) [005] .... 82316.645742: binder_transaction: transaction=1570962 dest_node=1570958 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
83786<...>-5340 ( 788) [005] .... 82316.645745: binder_transaction_alloc_buf: transaction=1570962 data_size=60 offsets_size=0
83787 neuralnetworks@-13088 (  788) [001] d..2 82316.645745: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
83788<...>-5340 ( 788) [005] d..4 82316.645748: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
83789          <idle>-0     (-----) [001] d..1 82316.645759: cpu_idle: state=0 cpu_id=1
83790<...>-5340 ( 788) [005] d..5 82316.645761: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
83791          <idle>-0     (-----) [004] .n.1 82316.645766: cpu_idle: state=4294967295 cpu_id=4
83792          <idle>-0     (-----) [004] d..2 82316.645775: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
83793           <...>-27571 (-----) [004] .... 82316.645780: binder_transaction_received: transaction=1570962
83794<...>-5340 ( 788) [005] ...1 82316.645783: tracing_mark_write: E|788
83795<...>-5340 ( 788) [005] .... 82316.645789: binder_transaction: transaction=1570963 dest_node=0 dest_proc=27550 dest_thread=27730 reply=1 flags=0x0 code=0x0
83796<...>-5340 ( 788) [005] .... 82316.645791: binder_transaction_alloc_buf: transaction=1570963 data_size=8 offsets_size=0
83797<...>-5340 ( 788) [005] d..2 82316.645793: sched_waking: comm=id.nn.benchmark pid=27730 prio=110 target_cpu=005
83798           <...>-27571 (-----) [004] ...1 82316.645799: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
83799<...>-5340 ( 788) [005] d..3 82316.645800: sched_wakeup: comm=id.nn.benchmark pid=27730 prio=110 target_cpu=005
83800<...>-5340 ( 788) [005] .... 82316.645802: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
83801           <...>-27571 (-----) [004] ...1 82316.645805: tracing_mark_write: E|27550
83802           <...>-27571 (-----) [004] d..2 82316.645833: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83803          <idle>-0     (-----) [004] d..1 82316.645840: cpu_idle: state=0 cpu_id=4
83804<...>-5340 ( 788) [005] d..2 82316.645844: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27730 next_prio=110
83805           <...>-27730 (-----) [005] .... 82316.645854: binder_transaction_received: transaction=1570963
83806           <...>-27730 (-----) [005] ...1 82316.645892: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
83807           <...>-27730 (-----) [005] ...1 82316.645898: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
83808           <...>-27730 (-----) [005] ...1 82316.645925: tracing_mark_write: E|27550
83809           <...>-27730 (-----) [005] ...1 82316.645929: tracing_mark_write: E|27550
83810           <...>-27730 (-----) [005] ...1 82316.645934: tracing_mark_write: E|27550
83811           <...>-27730 (-----) [005] ...1 82316.646128: tracing_mark_write: E|27550
83812           <...>-27730 (-----) [005] d..1 82316.646141: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83813           <...>-27730 (-----) [005] d..2 82316.646157: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83814          <idle>-0     (-----) [004] .n.1 82316.646162: cpu_idle: state=4294967295 cpu_id=4
83815          <idle>-0     (-----) [004] d..2 82316.646169: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
83816           <...>-27550 (-----) [004] d..2 82316.646189: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83817          <idle>-0     (-----) [004] d..1 82316.646198: cpu_idle: state=0 cpu_id=4
83818           <...>-27730 (-----) [005] d..1 82316.646251: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83819           <...>-27730 (-----) [005] d..2 82316.646261: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
83820          <idle>-0     (-----) [004] .n.1 82316.646266: cpu_idle: state=4294967295 cpu_id=4
83821          <idle>-0     (-----) [004] d..2 82316.646274: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
83822           <...>-27730 (-----) [005] d..2 82316.646300: sched_switch: prev_comm=id.nn.benchmark prev_pid=27730 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
83823           <...>-27550 (-----) [004] ...1 82316.646307: tracing_mark_write: E|27550
83824           <...>-27550 (-----) [004] ...1 82316.646311: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
83825           <...>-27550 (-----) [004] ...1 82316.646317: tracing_mark_write: E|27550
83826           <...>-27550 (-----) [004] ...1 82316.646321: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
83827          <idle>-0     (-----) [005] d..1 82316.646321: cpu_idle: state=0 cpu_id=5
83828           <...>-27550 (-----) [004] ...1 82316.646325: tracing_mark_write: E|27550
83829           <...>-27550 (-----) [004] ...1 82316.646329: tracing_mark_write: E|27550
83830           <...>-27550 (-----) [004] ...1 82316.646441: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
83831           <...>-27550 (-----) [004] ...1 82316.646500: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
83832           <...>-27550 (-----) [004] ...1 82316.646506: tracing_mark_write: E|27550
83833           <...>-27550 (-----) [004] ...1 82316.646510: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
83834           <...>-27550 (-----) [004] ...1 82316.646516: tracing_mark_write: E|27550
83835           <...>-27550 (-----) [004] ...1 82316.646519: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
83836           <...>-27550 (-----) [004] ...1 82316.646524: tracing_mark_write: E|27550
83837           <...>-27550 (-----) [004] ...1 82316.646527: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
83838          <idle>-0     (-----) [005] .n.1 82316.646626: cpu_idle: state=4294967295 cpu_id=5
83839           <...>-27550 (-----) [004] ...1 82316.646627: tracing_mark_write: E|27550
83840           <...>-27550 (-----) [004] ...1 82316.646631: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
83841          <idle>-0     (-----) [005] d..2 82316.646635: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27731 next_prio=110
83842           <...>-27550 (-----) [004] d..2 82316.646648: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83843          <idle>-0     (-----) [004] d..1 82316.646663: cpu_idle: state=0 cpu_id=4
83844           <...>-27731 (-----) [005] ...1 82316.646697: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
83845           <...>-27731 (-----) [005] ...1 82316.646711: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
83846           <...>-27731 (-----) [005] ...1 82316.646715: tracing_mark_write: E|27550
83847           <...>-27731 (-----) [005] .... 82316.646736: binder_transaction: transaction=1570964 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
83848           <...>-27731 (-----) [005] .... 82316.646740: binder_transaction_alloc_buf: transaction=1570964 data_size=48 offsets_size=0
83849           <...>-27731 (-----) [005] ...2 82316.646743: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
83850           <...>-27731 (-----) [005] d..4 82316.646746: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
83851           <...>-27731 (-----) [005] dn.5 82316.646757: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
83852           <...>-27731 (-----) [005] d..2 82316.646764: sched_switch: prev_comm=id.nn.benchmark prev_pid=27731 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
83853<...>-770 ( 770) [005] .... 82316.646774: binder_transaction_received: transaction=1570964
83854<...>-770 ( 770) [005] ...1 82316.646797: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
83855<...>-770 ( 770) [005] d..2 82316.646876: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
83856          <idle>-0     (-----) [000] dnh2 82316.646908: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
83857<...>-770 ( 770) [005] ...1 82316.646917: tracing_mark_write: E|770
83858<...>-770 ( 770) [005] .... 82316.646925: binder_transaction: transaction=1570965 dest_node=0 dest_proc=27550 dest_thread=27731 reply=1 flags=0x0 code=0x0
83859<...>-770 ( 770) [005] .... 82316.646927: binder_transaction_alloc_buf: transaction=1570965 data_size=168 offsets_size=32
83860          <idle>-0     (-----) [000] .n.1 82316.646927: cpu_idle: state=4294967295 cpu_id=0
83861<...>-770 ( 770) [005] .... 82316.646934: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
83862          <idle>-0     (-----) [000] d..2 82316.646940: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
83863<...>-770 ( 770) [005] d..2 82316.646970: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27731 next_prio=110
83864           <...>-27731 (-----) [005] .... 82316.646982: binder_transaction_received: transaction=1570965
83865<...>-581 ( 571) [000] d..2 82316.647035: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83866          <idle>-0     (-----) [000] d..1 82316.647050: cpu_idle: state=0 cpu_id=0
83867           <...>-27731 (-----) [005] ...1 82316.647051: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
83868           <...>-27731 (-----) [005] ...1 82316.647056: tracing_mark_write: E|27550
83869           <...>-27731 (-----) [005] .... 82316.647070: binder_transaction: transaction=1570966 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
83870           <...>-27731 (-----) [005] .... 82316.647072: binder_transaction_alloc_buf: transaction=1570966 data_size=48 offsets_size=0
83871           <...>-27731 (-----) [005] ...2 82316.647075: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
83872           <...>-27731 (-----) [005] d..4 82316.647077: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
83873           <...>-27731 (-----) [005] dn.5 82316.647088: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
83874           <...>-27731 (-----) [005] d..2 82316.647094: sched_switch: prev_comm=id.nn.benchmark prev_pid=27731 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
83875<...>-770 ( 770) [005] .... 82316.647102: binder_transaction_received: transaction=1570966
83876<...>-770 ( 770) [005] ...1 82316.647119: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
83877<...>-770 ( 770) [005] d..2 82316.647179: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
83878          <idle>-0     (-----) [000] dnh2 82316.647205: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
83879          <idle>-0     (-----) [000] .n.1 82316.647211: cpu_idle: state=4294967295 cpu_id=0
83880<...>-770 ( 770) [005] ...1 82316.647213: tracing_mark_write: E|770
83881<...>-770 ( 770) [005] .... 82316.647221: binder_transaction: transaction=1570967 dest_node=0 dest_proc=27550 dest_thread=27731 reply=1 flags=0x0 code=0x0
83882          <idle>-0     (-----) [000] d..2 82316.647223: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
83883<...>-770 ( 770) [005] .... 82316.647224: binder_transaction_alloc_buf: transaction=1570967 data_size=168 offsets_size=32
83884<...>-770 ( 770) [005] .... 82316.647230: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
83885<...>-770 ( 770) [005] d..2 82316.647263: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27731 next_prio=110
83886           <...>-27731 (-----) [005] .... 82316.647274: binder_transaction_received: transaction=1570967
83887<...>-581 ( 571) [000] d..2 82316.647283: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83888          <idle>-0     (-----) [000] d..1 82316.647298: cpu_idle: state=0 cpu_id=0
83889           <...>-27731 (-----) [005] ...1 82316.647552: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
83890           <...>-27731 (-----) [005] ...1 82316.647562: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
83891           <...>-27731 (-----) [005] ...1 82316.647566: tracing_mark_write: E|27550
83892           <...>-27731 (-----) [005] .... 82316.647630: binder_transaction: transaction=1570968 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
83893           <...>-27731 (-----) [005] .... 82316.647633: binder_transaction_alloc_buf: transaction=1570968 data_size=556 offsets_size=104
83894           <...>-27731 (-----) [005] ...2 82316.647647: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
83895           <...>-27731 (-----) [005] d..4 82316.647649: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83896           <...>-27731 (-----) [005] dn.5 82316.647661: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83897           <...>-27731 (-----) [005] d..2 82316.647668: sched_switch: prev_comm=id.nn.benchmark prev_pid=27731 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83898<...>-5340 ( 788) [005] .... 82316.647677: binder_transaction_received: transaction=1570968
83899<...>-5340 ( 788) [005] ...1 82316.647722: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
83900<...>-5340 ( 788) [005] d..2 82316.647769: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83901<...>-5340 ( 788) [005] d..2 82316.647794: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27731 next_prio=110
83902          <idle>-0     (-----) [000] dnh2 82316.647800: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83903          <idle>-0     (-----) [000] .n.1 82316.647807: cpu_idle: state=4294967295 cpu_id=0
83904           <...>-27731 (-----) [005] d..2 82316.647816: sched_switch: prev_comm=id.nn.benchmark prev_pid=27731 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83905          <idle>-0     (-----) [000] d..2 82316.647819: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
83906          <idle>-0     (-----) [005] d..1 82316.647834: cpu_idle: state=0 cpu_id=5
83907<...>-87 ( 87) [000] d..2 82316.647863: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83908          <idle>-0     (-----) [002] d.h4 82316.647871: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83909          <idle>-0     (-----) [000] d..1 82316.647878: cpu_idle: state=0 cpu_id=0
83910          <idle>-0     (-----) [002] dnh5 82316.647888: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83911          <idle>-0     (-----) [002] .n.1 82316.647898: cpu_idle: state=4294967295 cpu_id=2
83912          <idle>-0     (-----) [001] ...1 82316.647905: cpu_idle: state=4294967295 cpu_id=1
83913          <idle>-0     (-----) [001] d..1 82316.647910: cpu_idle: state=0 cpu_id=1
83914          <idle>-0     (-----) [002] d..2 82316.647912: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
83915<...>-86 ( 86) [002] d..2 82316.647951: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83916          <idle>-0     (-----) [002] d.h5 82316.647974: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83917          <idle>-0     (-----) [005] dnh2 82316.647996: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83918          <idle>-0     (-----) [005] .n.1 82316.648000: cpu_idle: state=4294967295 cpu_id=5
83919          <idle>-0     (-----) [005] d..2 82316.648008: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83920          <idle>-0     (-----) [002] d..1 82316.648021: cpu_idle: state=0 cpu_id=2
83921<...>-5340 ( 788) [005] d..1 82316.648061: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
83922          <idle>-0     (-----) [000] dnh2 82316.648099: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83923          <idle>-0     (-----) [000] .n.1 82316.648107: cpu_idle: state=4294967295 cpu_id=0
83924          <idle>-0     (-----) [000] d..2 82316.648118: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
83925 neuralnetworks@-13088 (  788) [000] d..2 82316.648177: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83926          <idle>-0     (-----) [000] d..1 82316.648193: cpu_idle: state=0 cpu_id=0
83927<...>-5340 ( 788) [005] d..2 82316.648219: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83928          <idle>-0     (-----) [000] dnh2 82316.648242: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
83929<...>-5340 ( 788) [005] d..2 82316.648245: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
83930          <idle>-0     (-----) [000] .n.1 82316.648250: cpu_idle: state=4294967295 cpu_id=0
83931          <idle>-0     (-----) [005] d..1 82316.648259: cpu_idle: state=0 cpu_id=5
83932          <idle>-0     (-----) [000] d..2 82316.648262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
83933          <idle>-0     (-----) [002] d.h4 82316.648301: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83934<...>-87 ( 87) [000] d..2 82316.648302: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83935          <idle>-0     (-----) [002] dnh5 82316.648313: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
83936          <idle>-0     (-----) [000] d..1 82316.648317: cpu_idle: state=0 cpu_id=0
83937          <idle>-0     (-----) [002] .n.1 82316.648321: cpu_idle: state=4294967295 cpu_id=2
83938          <idle>-0     (-----) [002] d..2 82316.648334: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
83939<...>-86 ( 86) [002] d..2 82316.648369: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
83940          <idle>-0     (-----) [002] d..1 82316.648383: cpu_idle: state=0 cpu_id=2
83941          <idle>-0     (-----) [003] d.s2 82316.648471: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83942          <idle>-0     (-----) [003] dns3 82316.648489: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
83943          <idle>-0     (-----) [003] dns3 82316.648495: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
83944          <idle>-0     (-----) [003] dns4 82316.648507: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
83945          <idle>-0     (-----) [003] .n.1 82316.648517: cpu_idle: state=4294967295 cpu_id=3
83946          <idle>-0     (-----) [003] d..2 82316.648527: 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
83947     rcu_preempt-7     (    7) [003] d..2 82316.648536: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
83948     rcu_preempt-7     (    7) [003] d..3 82316.648578: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
83949     rcu_preempt-7     (    7) [003] d..2 82316.648595: 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
83950         rcuop/4-45    (   45) [003] d..2 82316.648602: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
83951         rcuop/4-45    (   45) [003] d..3 82316.648637: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
83952          <idle>-0     (-----) [005] ...1 82316.648639: cpu_idle: state=4294967295 cpu_id=5
83953          <idle>-0     (-----) [005] d..1 82316.648643: cpu_idle: state=0 cpu_id=5
83954         rcuop/4-45    (   45) [003] d..2 82316.648650: 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
83955         rcuop/5-53    (   53) [003] d..2 82316.648798: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
83956  kworker/u16:15-1311  ( 1311) [003] d..2 82316.648928: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
83957          <idle>-0     (-----) [003] d..1 82316.648942: cpu_idle: state=0 cpu_id=3
83958          <idle>-0     (-----) [002] ...1 82316.649694: cpu_idle: state=4294967295 cpu_id=2
83959          <idle>-0     (-----) [002] d..1 82316.649700: cpu_idle: state=0 cpu_id=2
83960          <idle>-0     (-----) [000] ...1 82316.649737: cpu_idle: state=4294967295 cpu_id=0
83961          <idle>-0     (-----) [000] d..1 82316.649743: cpu_idle: state=0 cpu_id=0
83962          <idle>-0     (-----) [002] d.h4 82316.650028: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83963          <idle>-0     (-----) [005] dnh2 82316.650049: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
83964          <idle>-0     (-----) [005] .n.1 82316.650053: cpu_idle: state=4294967295 cpu_id=5
83965          <idle>-0     (-----) [005] d..2 82316.650062: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
83966          <idle>-0     (-----) [002] ...1 82316.650068: cpu_idle: state=4294967295 cpu_id=2
83967          <idle>-0     (-----) [002] d..1 82316.650075: cpu_idle: state=0 cpu_id=2
83968<...>-5340 ( 788) [005] d..1 82316.650113: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83969          <idle>-0     (-----) [000] dnh2 82316.650139: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
83970          <idle>-0     (-----) [000] .n.1 82316.650145: cpu_idle: state=4294967295 cpu_id=0
83971          <idle>-0     (-----) [000] d..2 82316.650157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
83972<...>-5340 ( 788) [005] ...1 82316.650209: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
83973<...>-5340 ( 788) [005] ...1 82316.650213: tracing_mark_write: E|788
83974 neuralnetworks@-13088 (  788) [000] d..2 82316.650226: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
83975<...>-5340 ( 788) [005] .... 82316.650229: binder_transaction: transaction=1570971 dest_node=1570969 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
83976<...>-5340 ( 788) [005] .... 82316.650232: binder_transaction_alloc_buf: transaction=1570971 data_size=60 offsets_size=0
83977<...>-5340 ( 788) [005] d..4 82316.650235: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
83978<...>-5340 ( 788) [005] d..5 82316.650247: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
83979          <idle>-0     (-----) [004] .n.1 82316.650253: cpu_idle: state=4294967295 cpu_id=4
83980          <idle>-0     (-----) [004] d..2 82316.650261: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
83981           <...>-27571 (-----) [004] .... 82316.650266: binder_transaction_received: transaction=1570971
83982<...>-5340 ( 788) [005] ...1 82316.650269: tracing_mark_write: E|788
83983<...>-5340 ( 788) [005] .... 82316.650276: binder_transaction: transaction=1570972 dest_node=0 dest_proc=27550 dest_thread=27731 reply=1 flags=0x0 code=0x0
83984<...>-5340 ( 788) [005] .... 82316.650278: binder_transaction_alloc_buf: transaction=1570972 data_size=8 offsets_size=0
83985<...>-5340 ( 788) [005] d..2 82316.650280: sched_waking: comm=id.nn.benchmark pid=27731 prio=110 target_cpu=005
83986           <...>-27571 (-----) [004] ...1 82316.650284: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
83987<...>-5340 ( 788) [005] d..3 82316.650287: sched_wakeup: comm=id.nn.benchmark pid=27731 prio=110 target_cpu=005
83988<...>-5340 ( 788) [005] .... 82316.650289: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
83989           <...>-27571 (-----) [004] ...1 82316.650291: tracing_mark_write: E|27550
83990           <...>-27571 (-----) [004] d..2 82316.650319: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
83991          <idle>-0     (-----) [000] d.h5 82316.650327: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
83992          <idle>-0     (-----) [004] d..1 82316.650327: cpu_idle: state=0 cpu_id=4
83993<...>-5340 ( 788) [005] d..2 82316.650330: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27731 next_prio=110
83994           <...>-27731 (-----) [005] .... 82316.650340: binder_transaction_received: transaction=1570972
83995          <idle>-0     (-----) [000] d.h6 82316.650349: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
83996          <idle>-0     (-----) [000] d.h5 82316.650354: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
83997          <idle>-0     (-----) [003] .n.1 82316.650356: cpu_idle: state=4294967295 cpu_id=3
83998          <idle>-0     (-----) [003] d..2 82316.650365: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
83999          <idle>-0     (-----) [000] d.h6 82316.650368: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
84000          <idle>-0     (-----) [002] .n.1 82316.650373: cpu_idle: state=4294967295 cpu_id=2
84001           <...>-27731 (-----) [005] ...1 82316.650375: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
84002           <...>-27731 (-----) [005] ...1 82316.650381: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
84003          <idle>-0     (-----) [002] d..2 82316.650386: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
84004          <idle>-0     (-----) [000] d..1 82316.650391: cpu_idle: state=0 cpu_id=0
84005  crtc_event:111-322   (  322) [003] d..2 82316.650403: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84006           <...>-27731 (-----) [005] ...1 82316.650407: tracing_mark_write: E|27550
84007           <...>-27731 (-----) [005] ...1 82316.650410: tracing_mark_write: E|27550
84008          <idle>-0     (-----) [003] d..1 82316.650411: cpu_idle: state=0 cpu_id=3
84009           <...>-27731 (-----) [005] ...1 82316.650414: tracing_mark_write: E|27550
84010 crtc_commit:111-321   (  321) [002] d..2 82316.650571: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
84011          <idle>-0     (-----) [002] d..1 82316.650581: cpu_idle: state=0 cpu_id=2
84012           <...>-27731 (-----) [005] ...1 82316.650601: tracing_mark_write: E|27550
84013           <...>-27731 (-----) [005] d..1 82316.650614: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84014           <...>-27731 (-----) [005] d..2 82316.650630: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84015          <idle>-0     (-----) [004] .n.1 82316.650635: cpu_idle: state=4294967295 cpu_id=4
84016          <idle>-0     (-----) [004] d..2 82316.650642: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
84017           <...>-27550 (-----) [004] d..2 82316.650661: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84018          <idle>-0     (-----) [004] d..1 82316.650670: cpu_idle: state=0 cpu_id=4
84019           <...>-27731 (-----) [005] d..1 82316.650717: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84020           <...>-27731 (-----) [005] d..2 82316.650726: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84021          <idle>-0     (-----) [004] .n.1 82316.650731: cpu_idle: state=4294967295 cpu_id=4
84022          <idle>-0     (-----) [004] d..2 82316.650739: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
84023           <...>-27731 (-----) [005] d..2 82316.650764: sched_switch: prev_comm=id.nn.benchmark prev_pid=27731 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
84024           <...>-27550 (-----) [004] ...1 82316.650771: tracing_mark_write: E|27550
84025           <...>-27550 (-----) [004] ...1 82316.650776: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
84026           <...>-27550 (-----) [004] ...1 82316.650781: tracing_mark_write: E|27550
84027          <idle>-0     (-----) [005] d..1 82316.650785: cpu_idle: state=0 cpu_id=5
84028           <...>-27550 (-----) [004] ...1 82316.650785: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
84029           <...>-27550 (-----) [004] ...1 82316.650789: tracing_mark_write: E|27550
84030           <...>-27550 (-----) [004] ...1 82316.650793: tracing_mark_write: E|27550
84031           <...>-27550 (-----) [004] ...1 82316.650906: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
84032           <...>-27550 (-----) [004] ...1 82316.650965: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
84033           <...>-27550 (-----) [004] ...1 82316.650971: tracing_mark_write: E|27550
84034           <...>-27550 (-----) [004] ...1 82316.650974: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
84035           <...>-27550 (-----) [004] ...1 82316.650980: tracing_mark_write: E|27550
84036           <...>-27550 (-----) [004] ...1 82316.650983: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
84037           <...>-27550 (-----) [004] ...1 82316.650988: tracing_mark_write: E|27550
84038           <...>-27550 (-----) [004] ...1 82316.650991: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
84039          <idle>-0     (-----) [005] .n.1 82316.651080: cpu_idle: state=4294967295 cpu_id=5
84040           <...>-27550 (-----) [004] ...1 82316.651081: tracing_mark_write: E|27550
84041           <...>-27550 (-----) [004] ...1 82316.651085: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
84042          <idle>-0     (-----) [005] d..2 82316.651089: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27732 next_prio=110
84043           <...>-27550 (-----) [004] d..2 82316.651102: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84044          <idle>-0     (-----) [004] d..1 82316.651117: cpu_idle: state=0 cpu_id=4
84045           <...>-27732 (-----) [005] ...1 82316.651151: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
84046           <...>-27732 (-----) [005] ...1 82316.651166: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
84047           <...>-27732 (-----) [005] ...1 82316.651170: tracing_mark_write: E|27550
84048           <...>-27732 (-----) [005] .... 82316.651191: binder_transaction: transaction=1570973 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
84049           <...>-27732 (-----) [005] .... 82316.651194: binder_transaction_alloc_buf: transaction=1570973 data_size=48 offsets_size=0
84050           <...>-27732 (-----) [005] ...2 82316.651197: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
84051           <...>-27732 (-----) [005] d..4 82316.651200: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
84052           <...>-27732 (-----) [005] dn.5 82316.651211: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
84053           <...>-27732 (-----) [005] d..2 82316.651218: sched_switch: prev_comm=id.nn.benchmark prev_pid=27732 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
84054<...>-770 ( 770) [005] .... 82316.651228: binder_transaction_received: transaction=1570973
84055<...>-770 ( 770) [005] ...1 82316.651250: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
84056<...>-770 ( 770) [005] d..2 82316.651324: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
84057          <idle>-0     (-----) [000] dnh2 82316.651353: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
84058          <idle>-0     (-----) [000] .n.1 82316.651359: cpu_idle: state=4294967295 cpu_id=0
84059<...>-770 ( 770) [005] ...1 82316.651364: tracing_mark_write: E|770
84060          <idle>-0     (-----) [000] d..2 82316.651372: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
84061<...>-770 ( 770) [005] .... 82316.651372: binder_transaction: transaction=1570974 dest_node=0 dest_proc=27550 dest_thread=27732 reply=1 flags=0x0 code=0x0
84062<...>-770 ( 770) [005] .... 82316.651374: binder_transaction_alloc_buf: transaction=1570974 data_size=168 offsets_size=32
84063<...>-770 ( 770) [005] .... 82316.651381: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
84064<...>-770 ( 770) [005] d..2 82316.651417: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27732 next_prio=110
84065           <...>-27732 (-----) [005] .... 82316.651428: binder_transaction_received: transaction=1570974
84066<...>-581 ( 571) [000] d..2 82316.651458: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84067          <idle>-0     (-----) [000] d..1 82316.651475: cpu_idle: state=0 cpu_id=0
84068           <...>-27732 (-----) [005] ...1 82316.651497: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
84069           <...>-27732 (-----) [005] ...1 82316.651502: tracing_mark_write: E|27550
84070           <...>-27732 (-----) [005] .... 82316.651517: binder_transaction: transaction=1570975 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
84071           <...>-27732 (-----) [005] .... 82316.651520: binder_transaction_alloc_buf: transaction=1570975 data_size=48 offsets_size=0
84072           <...>-27732 (-----) [005] ...2 82316.651522: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
84073           <...>-27732 (-----) [005] d..4 82316.651524: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
84074           <...>-27732 (-----) [005] dn.5 82316.651534: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
84075           <...>-27732 (-----) [005] d..2 82316.651542: sched_switch: prev_comm=id.nn.benchmark prev_pid=27732 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
84076<...>-770 ( 770) [005] .... 82316.651550: binder_transaction_received: transaction=1570975
84077<...>-770 ( 770) [005] ...1 82316.651567: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
84078<...>-770 ( 770) [005] d..2 82316.651625: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
84079          <idle>-0     (-----) [000] dnh2 82316.651650: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
84080          <idle>-0     (-----) [000] .n.1 82316.651658: cpu_idle: state=4294967295 cpu_id=0
84081<...>-770 ( 770) [005] ...1 82316.651659: tracing_mark_write: E|770
84082<...>-770 ( 770) [005] .... 82316.651667: binder_transaction: transaction=1570976 dest_node=0 dest_proc=27550 dest_thread=27732 reply=1 flags=0x0 code=0x0
84083<...>-770 ( 770) [005] .... 82316.651670: binder_transaction_alloc_buf: transaction=1570976 data_size=168 offsets_size=32
84084          <idle>-0     (-----) [000] d..2 82316.651671: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
84085<...>-770 ( 770) [005] .... 82316.651676: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
84086<...>-770 ( 770) [005] d..2 82316.651711: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27732 next_prio=110
84087           <...>-27732 (-----) [005] .... 82316.651721: binder_transaction_received: transaction=1570976
84088<...>-581 ( 571) [000] d..2 82316.651731: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84089          <idle>-0     (-----) [000] d..1 82316.651748: cpu_idle: state=0 cpu_id=0
84090          <idle>-0     (-----) [003] d.s2 82316.651809: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
84091          <idle>-0     (-----) [003] dns3 82316.651870: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
84092          <idle>-0     (-----) [003] dns3 82316.651879: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
84093          <idle>-0     (-----) [003] dns4 82316.651893: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
84094          <idle>-0     (-----) [002] d.H3 82316.651897: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
84095          <idle>-0     (-----) [003] .n.1 82316.651908: cpu_idle: state=4294967295 cpu_id=3
84096          <idle>-0     (-----) [002] d.H4 82316.651918: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
84097          <idle>-0     (-----) [003] d..2 82316.651918: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
84098          <idle>-0     (-----) [001] .n.1 82316.651923: cpu_idle: state=4294967295 cpu_id=1
84099          <idle>-0     (-----) [002] d.s3 82316.651927: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
84100          <idle>-0     (-----) [001] d..2 82316.651935: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
84101          <idle>-0     (-----) [002] dns4 82316.651946: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
84102     kworker/3:1-25210 (25210) [003] d..2 82316.651954: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
84103<...>-8 ( 8) [003] d..2 82316.651963: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
84104          <idle>-0     (-----) [002] .n.1 82316.651968: cpu_idle: state=4294967295 cpu_id=2
84105         sugov:0-576   (  576) [001] .... 82316.651976: clk_set_rate: pwrcl_clk 825600000
84106          <idle>-0     (-----) [002] d..2 82316.651977: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
84107         sugov:0-576   (  576) [001] .... 82316.652000: clk_set_rate: cpu3_pwrcl_clk 748800000
84108<...>-8 ( 8) [003] d..3 82316.652006: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
84109         sugov:0-576   (  576) [001] .... 82316.652011: clk_set_rate: cpu2_pwrcl_clk 748800000
84110  crtc_event:111-322   (  322) [002] d..2 82316.652017: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
84111         sugov:0-576   (  576) [001] .... 82316.652019: clk_set_rate: cpu1_pwrcl_clk 748800000
84112         sugov:0-576   (  576) [001] .... 82316.652026: clk_set_rate: cpu0_pwrcl_clk 825600000
84113           <...>-27732 (-----) [005] ...1 82316.652030: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
84114<...>-46 ( 46) [002] d..2 82316.652031: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
84115         sugov:0-576   (  576) [001] .... 82316.652036: cpu_frequency: state=825600 cpu_id=0
84116           <...>-27732 (-----) [005] ...1 82316.652041: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
84117<...>-8 ( 8) [003] d..2 82316.652045: 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
84118           <...>-27732 (-----) [005] ...1 82316.652045: tracing_mark_write: E|27550
84119          <idle>-0     (-----) [003] d..1 82316.652056: cpu_idle: state=0 cpu_id=3
84120         sugov:0-576   (  576) [001] .... 82316.652063: cpu_frequency: state=825600 cpu_id=1
84121<...>-46 ( 46) [002] d..3 82316.652064: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
84122         sugov:0-576   (  576) [001] .... 82316.652068: cpu_frequency: state=825600 cpu_id=2
84123          <idle>-0     (-----) [003] .n.1 82316.652070: cpu_idle: state=4294967295 cpu_id=3
84124         sugov:0-576   (  576) [001] .... 82316.652072: cpu_frequency: state=825600 cpu_id=3
84125          <idle>-0     (-----) [003] d..2 82316.652080: 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
84126<...>-46 ( 46) [002] d..2 82316.652086: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84127          <idle>-0     (-----) [002] d..1 82316.652100: cpu_idle: state=0 cpu_id=2
84128<...>-8 ( 8) [003] d..2 82316.652104: 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
84129         sugov:0-576   (  576) [001] d..2 82316.652106: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84130           <...>-27732 (-----) [005] .... 82316.652107: binder_transaction: transaction=1570977 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
84131           <...>-27732 (-----) [005] .... 82316.652111: binder_transaction_alloc_buf: transaction=1570977 data_size=556 offsets_size=104
84132          <idle>-0     (-----) [003] d..1 82316.652112: cpu_idle: state=0 cpu_id=3
84133          <idle>-0     (-----) [001] d..1 82316.652118: cpu_idle: state=0 cpu_id=1
84134           <...>-27732 (-----) [005] ...2 82316.652123: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
84135           <...>-27732 (-----) [005] d..4 82316.652126: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84136           <...>-27732 (-----) [005] dn.5 82316.652137: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84137           <...>-27732 (-----) [005] d..2 82316.652144: sched_switch: prev_comm=id.nn.benchmark prev_pid=27732 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84138<...>-5340 ( 788) [005] .... 82316.652154: binder_transaction_received: transaction=1570977
84139<...>-5340 ( 788) [005] ...1 82316.652199: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
84140<...>-5340 ( 788) [005] d..2 82316.652245: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
84141<...>-5340 ( 788) [005] d..2 82316.652271: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27732 next_prio=110
84142          <idle>-0     (-----) [000] dnh2 82316.652275: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
84143          <idle>-0     (-----) [000] .n.1 82316.652282: cpu_idle: state=4294967295 cpu_id=0
84144           <...>-27732 (-----) [005] d..2 82316.652294: sched_switch: prev_comm=id.nn.benchmark prev_pid=27732 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84145          <idle>-0     (-----) [000] d..2 82316.652294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
84146          <idle>-0     (-----) [005] d..1 82316.652312: cpu_idle: state=0 cpu_id=5
84147<...>-87 ( 87) [000] d..2 82316.652340: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84148          <idle>-0     (-----) [002] d.h4 82316.652350: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84149          <idle>-0     (-----) [000] d..1 82316.652353: cpu_idle: state=0 cpu_id=0
84150          <idle>-0     (-----) [002] dnh5 82316.652368: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84151          <idle>-0     (-----) [002] .n.1 82316.652378: cpu_idle: state=4294967295 cpu_id=2
84152          <idle>-0     (-----) [002] d..2 82316.652390: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
84153<...>-86 ( 86) [002] d..2 82316.652425: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84154          <idle>-0     (-----) [002] d.h5 82316.652447: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84155          <idle>-0     (-----) [005] dnh2 82316.652468: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84156          <idle>-0     (-----) [005] .n.1 82316.652473: cpu_idle: state=4294967295 cpu_id=5
84157          <idle>-0     (-----) [005] d..2 82316.652481: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84158          <idle>-0     (-----) [002] d..1 82316.652495: cpu_idle: state=0 cpu_id=2
84159<...>-5340 ( 788) [005] d..1 82316.652533: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84160          <idle>-0     (-----) [000] dnh2 82316.652560: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84161          <idle>-0     (-----) [000] .n.1 82316.652566: cpu_idle: state=4294967295 cpu_id=0
84162          <idle>-0     (-----) [000] d..2 82316.652577: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
84163 neuralnetworks@-13088 (  788) [000] d.h6 82316.652669: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
84164 neuralnetworks@-13088 (  788) [000] d.h7 82316.652689: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
84165          <idle>-0     (-----) [002] .n.1 82316.652696: cpu_idle: state=4294967295 cpu_id=2
84166<...>-5340 ( 788) [005] d..2 82316.652699: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
84167          <idle>-0     (-----) [002] d..2 82316.652706: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
84168 crtc_commit:111-321   (  321) [002] d.h1 82316.652735: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
84169<...>-5340 ( 788) [005] d..2 82316.652742: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84170 neuralnetworks@-13088 (  788) [000] d..2 82316.652750: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84171          <idle>-0     (-----) [005] d..1 82316.652756: cpu_idle: state=0 cpu_id=5
84172          <idle>-0     (-----) [000] d..1 82316.652766: cpu_idle: state=0 cpu_id=0
84173 crtc_commit:111-321   (  321) [002] d..2 82316.652788: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
84174<...>-87 ( 87) [002] d..2 82316.652828: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84175          <idle>-0     (-----) [002] d.h5 82316.652847: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84176          <idle>-0     (-----) [002] dnh6 82316.652858: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84177          <idle>-0     (-----) [002] d..2 82316.652871: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
84178<...>-86 ( 86) [002] d..2 82316.652902: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84179          <idle>-0     (-----) [002] d..1 82316.652917: cpu_idle: state=0 cpu_id=2
84180          <idle>-0     (-----) [000] d.h5 82316.652958: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
84181          <idle>-0     (-----) [000] d.h6 82316.652975: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
84182          <idle>-0     (-----) [002] .n.1 82316.652983: cpu_idle: state=4294967295 cpu_id=2
84183          <idle>-0     (-----) [002] d..2 82316.652993: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
84184          <idle>-0     (-----) [000] ...1 82316.652994: cpu_idle: state=4294967295 cpu_id=0
84185          <idle>-0     (-----) [000] d..1 82316.653000: cpu_idle: state=0 cpu_id=0
84186  crtc_event:111-322   (  322) [002] d..2 82316.653019: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84187          <idle>-0     (-----) [002] d..1 82316.653030: cpu_idle: state=0 cpu_id=2
84188          <idle>-0     (-----) [005] ...1 82316.653091: cpu_idle: state=4294967295 cpu_id=5
84189          <idle>-0     (-----) [005] d..1 82316.653095: cpu_idle: state=0 cpu_id=5
84190          <idle>-0     (-----) [002] ...1 82316.654439: cpu_idle: state=4294967295 cpu_id=2
84191          <idle>-0     (-----) [002] d..1 82316.654444: cpu_idle: state=0 cpu_id=2
84192          <idle>-0     (-----) [002] d.h4 82316.654528: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84193          <idle>-0     (-----) [005] dnh2 82316.654549: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84194          <idle>-0     (-----) [005] .n.1 82316.654553: cpu_idle: state=4294967295 cpu_id=5
84195          <idle>-0     (-----) [005] d..2 82316.654560: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84196          <idle>-0     (-----) [002] ...1 82316.654568: cpu_idle: state=4294967295 cpu_id=2
84197          <idle>-0     (-----) [002] d..1 82316.654575: cpu_idle: state=0 cpu_id=2
84198<...>-5340 ( 788) [005] d..1 82316.654619: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84199          <idle>-0     (-----) [000] dnh2 82316.654645: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84200          <idle>-0     (-----) [000] .n.1 82316.654651: cpu_idle: state=4294967295 cpu_id=0
84201          <idle>-0     (-----) [000] d..2 82316.654662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
84202<...>-5340 ( 788) [005] ...1 82316.654709: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
84203<...>-5340 ( 788) [005] ...1 82316.654713: tracing_mark_write: E|788
84204 neuralnetworks@-13088 (  788) [000] d..2 82316.654725: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84205<...>-5340 ( 788) [005] .... 82316.654729: binder_transaction: transaction=1570980 dest_node=1570978 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
84206<...>-5340 ( 788) [005] .... 82316.654731: binder_transaction_alloc_buf: transaction=1570980 data_size=60 offsets_size=0
84207<...>-5340 ( 788) [005] d..4 82316.654735: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
84208          <idle>-0     (-----) [000] d..1 82316.654738: cpu_idle: state=0 cpu_id=0
84209<...>-5340 ( 788) [005] d..5 82316.654748: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
84210          <idle>-0     (-----) [004] .n.1 82316.654754: cpu_idle: state=4294967295 cpu_id=4
84211          <idle>-0     (-----) [004] d..2 82316.654762: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
84212           <...>-27571 (-----) [004] .... 82316.654767: binder_transaction_received: transaction=1570980
84213<...>-5340 ( 788) [005] ...1 82316.654770: tracing_mark_write: E|788
84214<...>-5340 ( 788) [005] .... 82316.654776: binder_transaction: transaction=1570981 dest_node=0 dest_proc=27550 dest_thread=27732 reply=1 flags=0x0 code=0x0
84215<...>-5340 ( 788) [005] .... 82316.654778: binder_transaction_alloc_buf: transaction=1570981 data_size=8 offsets_size=0
84216<...>-5340 ( 788) [005] d..2 82316.654780: sched_waking: comm=id.nn.benchmark pid=27732 prio=110 target_cpu=005
84217           <...>-27571 (-----) [004] ...1 82316.654785: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
84218<...>-5340 ( 788) [005] d..3 82316.654787: sched_wakeup: comm=id.nn.benchmark pid=27732 prio=110 target_cpu=005
84219<...>-5340 ( 788) [005] .... 82316.654789: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
84220           <...>-27571 (-----) [004] ...1 82316.654791: tracing_mark_write: E|27550
84221          <idle>-0     (-----) [001] d.h2 82316.654803: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
84222           <...>-27571 (-----) [004] d..2 82316.654819: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84223          <idle>-0     (-----) [001] dnh3 82316.654821: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
84224          <idle>-0     (-----) [004] d..1 82316.654826: cpu_idle: state=0 cpu_id=4
84225          <idle>-0     (-----) [001] .n.1 82316.654829: cpu_idle: state=4294967295 cpu_id=1
84226<...>-5340 ( 788) [005] d..2 82316.654830: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27732 next_prio=110
84227           <...>-27732 (-----) [005] .... 82316.654839: binder_transaction_received: transaction=1570981
84228          <idle>-0     (-----) [001] d..2 82316.654840: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
84229        DispSync-8879  ( 8858) [001] d..1 82316.654864: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
84230           <...>-27732 (-----) [005] ...1 82316.654874: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
84231           <...>-27732 (-----) [005] ...1 82316.654880: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
84232        DispSync-8879  ( 8858) [001] d..2 82316.654882: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
84233          <idle>-0     (-----) [003] .n.1 82316.654887: cpu_idle: state=4294967295 cpu_id=3
84234          <idle>-0     (-----) [003] d..2 82316.654895: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
84235           <...>-27732 (-----) [005] ...1 82316.654906: tracing_mark_write: E|27550
84236           <...>-27732 (-----) [005] ...1 82316.654910: tracing_mark_write: E|27550
84237           <...>-27732 (-----) [005] ...1 82316.654913: tracing_mark_write: E|27550
84238        DispSync-8879  ( 8858) [001] d..2 82316.654916: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84239          <idle>-0     (-----) [001] d..1 82316.654928: cpu_idle: state=0 cpu_id=1
84240  appEventThread-8881  ( 8858) [003] d..3 82316.654953: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
84241  appEventThread-8881  ( 8858) [003] d..4 82316.654976: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
84242          <idle>-0     (-----) [000] .n.1 82316.654982: cpu_idle: state=4294967295 cpu_id=0
84243          <idle>-0     (-----) [000] d..2 82316.654994: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
84244  appEventThread-8881  ( 8858) [003] d..2 82316.655045: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84245          <idle>-0     (-----) [003] d..1 82316.655056: cpu_idle: state=0 cpu_id=3
84246           <...>-27732 (-----) [005] ...1 82316.655097: tracing_mark_write: E|27550
84247          <idle>-0     (-----) [003] d.s2 82316.655138: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
84248           <...>-27732 (-----) [005] d..1 82316.655140: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84249          <idle>-0     (-----) [003] dns3 82316.655155: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
84250           <...>-27732 (-----) [005] d..2 82316.655156: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84251          <idle>-0     (-----) [004] .n.1 82316.655161: cpu_idle: state=4294967295 cpu_id=4
84252          <idle>-0     (-----) [004] d..2 82316.655169: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
84253          <idle>-0     (-----) [003] .n.1 82316.655172: cpu_idle: state=4294967295 cpu_id=3
84254          <idle>-0     (-----) [003] d..2 82316.655182: 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
84255           <...>-27550 (-----) [004] d..2 82316.655192: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84256          <idle>-0     (-----) [004] d..1 82316.655201: cpu_idle: state=0 cpu_id=4
84257     rcu_preempt-7     (    7) [003] d..2 82316.655209: 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
84258          <idle>-0     (-----) [003] d..1 82316.655217: cpu_idle: state=0 cpu_id=3
84259           <...>-27732 (-----) [005] d..1 82316.655245: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84260           <...>-27732 (-----) [005] d..2 82316.655254: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84261          <idle>-0     (-----) [004] .n.1 82316.655259: cpu_idle: state=4294967295 cpu_id=4
84262          <idle>-0     (-----) [004] d..2 82316.655267: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
84263           <...>-27732 (-----) [005] d..2 82316.655292: sched_switch: prev_comm=id.nn.benchmark prev_pid=27732 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
84264           <...>-27550 (-----) [004] ...1 82316.655299: tracing_mark_write: E|27550
84265           <...>-27550 (-----) [004] ...1 82316.655304: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
84266           <...>-27550 (-----) [004] ...1 82316.655310: tracing_mark_write: E|27550
84267          <idle>-0     (-----) [005] d..1 82316.655312: cpu_idle: state=0 cpu_id=5
84268           <...>-27550 (-----) [004] ...1 82316.655313: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
84269           <...>-27550 (-----) [004] ...1 82316.655317: tracing_mark_write: E|27550
84270           <...>-27550 (-----) [004] ...1 82316.655321: tracing_mark_write: E|27550
84271<...>-9105 ( 9105) [000] .... 82316.655412: binder_transaction: transaction=1570982 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
84272<...>-9105 ( 9105) [000] .... 82316.655419: binder_transaction_alloc_buf: transaction=1570982 data_size=80 offsets_size=0
84273<...>-9105 ( 9105) [000] d..4 82316.655425: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
84274           <...>-27550 (-----) [004] ...1 82316.655433: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
84275<...>-9105 ( 9105) [000] d..5 82316.655463: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
84276          <idle>-0     (-----) [001] .n.1 82316.655469: cpu_idle: state=4294967295 cpu_id=1
84277           <...>-27550 (-----) [004] ...1 82316.655491: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
84278           <...>-27550 (-----) [004] ...1 82316.655496: tracing_mark_write: E|27550
84279           <...>-27550 (-----) [004] ...1 82316.655500: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
84280           <...>-27550 (-----) [004] ...1 82316.655505: tracing_mark_write: E|27550
84281           <...>-27550 (-----) [004] ...1 82316.655508: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
84282           <...>-27550 (-----) [004] ...1 82316.655512: tracing_mark_write: E|27550
84283           <...>-27550 (-----) [004] ...1 82316.655515: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
84284          <idle>-0     (-----) [001] d..2 82316.655516: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
84285<...>-13083 ( 8858) [001] .... 82316.655524: binder_transaction_received: transaction=1570982
84286<...>-9105 ( 9105) [000] d..3 82316.655552: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
84287<...>-13083 ( 8858) [001] d..1 82316.655560: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
84288<...>-13083 ( 8858) [001] d..2 82316.655576: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
84289          <idle>-0     (-----) [003] .n.1 82316.655582: cpu_idle: state=4294967295 cpu_id=3
84290<...>-9105 ( 9105) [000] d..4 82316.655583: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
84291          <idle>-0     (-----) [002] .n.1 82316.655589: cpu_idle: state=4294967295 cpu_id=2
84292          <idle>-0     (-----) [003] d..2 82316.655590: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
84293          <idle>-0     (-----) [005] .n.1 82316.655603: cpu_idle: state=4294967295 cpu_id=5
84294           <...>-27550 (-----) [004] ...1 82316.655605: tracing_mark_write: E|27550
84295           <...>-27550 (-----) [004] ...1 82316.655609: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
84296          <idle>-0     (-----) [005] d..2 82316.655632: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27733 next_prio=110
84297          <idle>-0     (-----) [002] d..2 82316.655634: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
84298           <...>-27550 (-----) [004] d..2 82316.655640: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84299  appEventThread-8881  ( 8858) [003] d..2 82316.655647: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84300<...>-13083 ( 8858) [001] d..2 82316.655648: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84301          <idle>-0     (-----) [003] d..1 82316.655655: cpu_idle: state=0 cpu_id=3
84302          <idle>-0     (-----) [004] d..1 82316.655655: cpu_idle: state=0 cpu_id=4
84303          <idle>-0     (-----) [001] d..1 82316.655661: cpu_idle: state=0 cpu_id=1
84304           <...>-27733 (-----) [005] ...1 82316.655694: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
84305    RenderThread-9436  ( 9105) [002] d..2 82316.655696: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84306           <...>-27733 (-----) [005] ...1 82316.655709: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
84307          <idle>-0     (-----) [002] d..1 82316.655712: cpu_idle: state=0 cpu_id=2
84308           <...>-27733 (-----) [005] ...1 82316.655712: tracing_mark_write: E|27550
84309           <...>-27733 (-----) [005] .... 82316.655733: binder_transaction: transaction=1570983 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
84310           <...>-27733 (-----) [005] .... 82316.655737: binder_transaction_alloc_buf: transaction=1570983 data_size=48 offsets_size=0
84311           <...>-27733 (-----) [005] ...2 82316.655740: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
84312           <...>-27733 (-----) [005] d..4 82316.655742: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
84313           <...>-27733 (-----) [005] dn.5 82316.655753: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
84314           <...>-27733 (-----) [005] d..2 82316.655760: sched_switch: prev_comm=id.nn.benchmark prev_pid=27733 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
84315<...>-9105 ( 9105) [000] d..3 82316.655766: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
84316<...>-770 ( 770) [005] .... 82316.655770: binder_transaction_received: transaction=1570983
84317<...>-9105 ( 9105) [000] d..4 82316.655785: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
84318          <idle>-0     (-----) [002] .n.1 82316.655792: cpu_idle: state=4294967295 cpu_id=2
84319<...>-770 ( 770) [005] ...1 82316.655792: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
84320          <idle>-0     (-----) [002] d..2 82316.655803: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
84321<...>-9105 ( 9105) [000] d..2 82316.655819: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84322          <idle>-0     (-----) [000] d..1 82316.655840: cpu_idle: state=0 cpu_id=0
84323<...>-770 ( 770) [005] d..2 82316.655864: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
84324    RenderThread-9436  ( 9105) [002] d.h1 82316.655907: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
84325<...>-770 ( 770) [005] ...1 82316.655920: tracing_mark_write: E|770
84326<...>-770 ( 770) [005] .... 82316.655928: binder_transaction: transaction=1570984 dest_node=0 dest_proc=27550 dest_thread=27733 reply=1 flags=0x0 code=0x0
84327<...>-770 ( 770) [005] .... 82316.655930: binder_transaction_alloc_buf: transaction=1570984 data_size=168 offsets_size=32
84328<...>-770 ( 770) [005] .... 82316.655937: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
84329    RenderThread-9436  ( 9105) [002] d..1 82316.655944: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
84330    RenderThread-9436  ( 9105) [002] d..2 82316.655962: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
84331          <idle>-0     (-----) [000] .n.1 82316.655970: cpu_idle: state=4294967295 cpu_id=0
84332<...>-770 ( 770) [005] d..2 82316.655974: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27733 next_prio=110
84333          <idle>-0     (-----) [000] d..2 82316.655983: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
84334           <...>-27733 (-----) [005] .... 82316.655985: binder_transaction_received: transaction=1570984
84335    RenderThread-9436  ( 9105) [002] .... 82316.656035: binder_transaction: transaction=1570985 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
84336    RenderThread-9436  ( 9105) [002] .... 82316.656040: binder_transaction_alloc_buf: transaction=1570985 data_size=104 offsets_size=0
84337    RenderThread-9436  ( 9105) [002] d..4 82316.656046: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
84338           <...>-27733 (-----) [005] ...1 82316.656054: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
84339           <...>-27733 (-----) [005] ...1 82316.656059: tracing_mark_write: E|27550
84340    RenderThread-9436  ( 9105) [002] d..5 82316.656063: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
84341          <idle>-0     (-----) [001] .n.1 82316.656069: cpu_idle: state=4294967295 cpu_id=1
84342           <...>-27733 (-----) [005] .... 82316.656075: binder_transaction: transaction=1570986 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
84343           <...>-27733 (-----) [005] .... 82316.656078: binder_transaction_alloc_buf: transaction=1570986 data_size=48 offsets_size=0
84344           <...>-27733 (-----) [005] ...2 82316.656080: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
84345          <idle>-0     (-----) [001] d..2 82316.656080: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
84346           <...>-27733 (-----) [005] d..4 82316.656082: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
84347<...>-9105 ( 9105) [000] d..2 82316.656084: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
84348<...>-13083 ( 8858) [001] .... 82316.656087: binder_transaction_received: transaction=1570985
84349           <...>-27733 (-----) [005] dn.5 82316.656092: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
84350    RenderThread-9436  ( 9105) [002] d..2 82316.656095: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84351           <...>-27733 (-----) [005] d..2 82316.656099: sched_switch: prev_comm=id.nn.benchmark prev_pid=27733 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
84352<...>-770 ( 770) [005] .... 82316.656106: binder_transaction_received: transaction=1570986
84353          <idle>-0     (-----) [002] d..1 82316.656113: cpu_idle: state=0 cpu_id=2
84354<...>-770 ( 770) [005] ...1 82316.656123: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
84355<...>-13083 ( 8858) [001] .... 82316.656156: binder_transaction: transaction=1570987 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
84356<...>-13083 ( 8858) [001] .... 82316.656160: binder_transaction_alloc_buf: transaction=1570987 data_size=52 offsets_size=8
84357<...>-13083 ( 8858) [001] d..2 82316.656172: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
84358<...>-581 ( 571) [000] d..2 82316.656174: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84359<...>-770 ( 770) [005] d..2 82316.656182: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
84360          <idle>-0     (-----) [000] d..1 82316.656194: cpu_idle: state=0 cpu_id=0
84361<...>-13083 ( 8858) [001] d..3 82316.656194: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
84362          <idle>-0     (-----) [000] dnh2 82316.656211: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
84363<...>-770 ( 770) [005] ...1 82316.656215: tracing_mark_write: E|770
84364          <idle>-0     (-----) [000] .n.1 82316.656219: cpu_idle: state=4294967295 cpu_id=0
84365<...>-770 ( 770) [005] .... 82316.656223: binder_transaction: transaction=1570988 dest_node=0 dest_proc=27550 dest_thread=27733 reply=1 flags=0x0 code=0x0
84366<...>-770 ( 770) [005] .... 82316.656225: binder_transaction_alloc_buf: transaction=1570988 data_size=168 offsets_size=32
84367          <idle>-0     (-----) [000] d..2 82316.656230: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
84368<...>-770 ( 770) [005] .... 82316.656232: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
84369<...>-13083 ( 8858) [001] d..2 82316.656238: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
84370    RenderThread-9436  ( 9105) [001] .... 82316.656248: binder_transaction_received: transaction=1570987
84371<...>-770 ( 770) [005] d..2 82316.656267: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27733 next_prio=110
84372           <...>-27733 (-----) [005] .... 82316.656278: binder_transaction_received: transaction=1570988
84373<...>-581 ( 571) [000] d..2 82316.656288: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84374          <idle>-0     (-----) [000] d..1 82316.656304: cpu_idle: state=0 cpu_id=0
84375           <...>-27733 (-----) [005] ...1 82316.656550: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
84376           <...>-27733 (-----) [005] ...1 82316.656559: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
84377           <...>-27733 (-----) [005] ...1 82316.656563: tracing_mark_write: E|27550
84378           <...>-27733 (-----) [005] .... 82316.656624: binder_transaction: transaction=1570989 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
84379           <...>-27733 (-----) [005] .... 82316.656627: binder_transaction_alloc_buf: transaction=1570989 data_size=556 offsets_size=104
84380           <...>-27733 (-----) [005] ...2 82316.656641: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
84381           <...>-27733 (-----) [005] d..4 82316.656643: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84382           <...>-27733 (-----) [005] dn.5 82316.656655: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84383           <...>-27733 (-----) [005] d..2 82316.656662: sched_switch: prev_comm=id.nn.benchmark prev_pid=27733 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84384<...>-5340 ( 788) [005] .... 82316.656672: binder_transaction_received: transaction=1570989
84385<...>-5340 ( 788) [005] ...1 82316.656717: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
84386<...>-5340 ( 788) [005] d..2 82316.656760: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
84387<...>-5340 ( 788) [005] d..2 82316.656799: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27733 next_prio=110
84388    RenderThread-9436  ( 9105) [001] dnh1 82316.656809: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
84389           <...>-27733 (-----) [005] d..2 82316.656822: sched_switch: prev_comm=id.nn.benchmark prev_pid=27733 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84390    RenderThread-9436  ( 9105) [001] d..2 82316.656824: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
84391          <idle>-0     (-----) [005] d..1 82316.656840: cpu_idle: state=0 cpu_id=5
84392<...>-87 ( 87) [001] d..2 82316.656860: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
84393          <idle>-0     (-----) [002] d.h4 82316.656881: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84394          <idle>-0     (-----) [002] dnh5 82316.656899: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84395          <idle>-0     (-----) [002] .n.1 82316.656910: cpu_idle: state=4294967295 cpu_id=2
84396          <idle>-0     (-----) [002] d..2 82316.656923: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
84397<...>-86 ( 86) [002] d.h4 82316.656955: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84398          <idle>-0     (-----) [005] dnh2 82316.656978: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84399          <idle>-0     (-----) [005] .n.1 82316.656982: cpu_idle: state=4294967295 cpu_id=5
84400          <idle>-0     (-----) [005] d..2 82316.656991: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84401<...>-86 ( 86) [002] d..2 82316.657013: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84402          <idle>-0     (-----) [002] d..1 82316.657027: cpu_idle: state=0 cpu_id=2
84403<...>-5340 ( 788) [005] d..1 82316.657044: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84404    RenderThread-9436  ( 9105) [001] dnh1 82316.657086: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
84405    RenderThread-9436  ( 9105) [001] d..2 82316.657099: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
84406 neuralnetworks@-13088 (  788) [001] d..2 82316.657145: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
84407<...>-5340 ( 788) [005] d..2 82316.657204: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
84408    RenderThread-9436  ( 9105) [001] dnh1 82316.657228: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
84409<...>-5340 ( 788) [005] d..2 82316.657231: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84410    RenderThread-9436  ( 9105) [001] d..2 82316.657239: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
84411          <idle>-0     (-----) [005] d..1 82316.657246: cpu_idle: state=0 cpu_id=5
84412<...>-87 ( 87) [001] d..2 82316.657271: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
84413          <idle>-0     (-----) [002] d.h4 82316.657281: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84414          <idle>-0     (-----) [002] dnh5 82316.657291: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84415          <idle>-0     (-----) [002] .n.1 82316.657301: cpu_idle: state=4294967295 cpu_id=2
84416          <idle>-0     (-----) [002] d..2 82316.657312: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
84417<...>-86 ( 86) [002] d..2 82316.657344: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84418          <idle>-0     (-----) [002] d..1 82316.657357: cpu_idle: state=0 cpu_id=2
84419          <idle>-0     (-----) [000] ...1 82316.657441: cpu_idle: state=4294967295 cpu_id=0
84420          <idle>-0     (-----) [000] d..1 82316.657446: cpu_idle: state=0 cpu_id=0
84421    RenderThread-9436  ( 9105) [001] d..2 82316.657504: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
84422          <idle>-0     (-----) [001] d..1 82316.657520: cpu_idle: state=0 cpu_id=1
84423          <idle>-0     (-----) [005] ...1 82316.657571: cpu_idle: state=4294967295 cpu_id=5
84424          <idle>-0     (-----) [005] d..1 82316.657575: cpu_idle: state=0 cpu_id=5
84425          <idle>-0     (-----) [001] d.h2 82316.657588: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
84426          <idle>-0     (-----) [001] d.h3 82316.657600: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
84427          <idle>-0     (-----) [001] dnh3 82316.657605: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
84428          <idle>-0     (-----) [001] .n.1 82316.657614: cpu_idle: state=4294967295 cpu_id=1
84429          <idle>-0     (-----) [001] d..2 82316.657626: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
84430          <idle>-0     (-----) [000] d.h3 82316.657627: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
84431          <idle>-0     (-----) [000] dnh4 82316.657653: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
84432          <idle>-0     (-----) [000] .n.1 82316.657667: cpu_idle: state=4294967295 cpu_id=0
84433          <idle>-0     (-----) [000] d..2 82316.657677: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
84434 kgsl_worker_thr-258   (  258) [000] d..2 82316.657732: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
84435 kgsl_worker_thr-258   (  258) [000] d..3 82316.657774: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
84436 kgsl_worker_thr-258   (  258) [000] d..2 82316.657791: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
84437    RenderThread-9436  ( 9105) [001] .... 82316.657824: binder_transaction: transaction=1570992 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
84438    RenderThread-9436  ( 9105) [001] .... 82316.657830: binder_transaction_alloc_buf: transaction=1570992 data_size=192 offsets_size=8
84439  kworker/u16:15-1311  ( 1311) [000] d..2 82316.657839: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84440    RenderThread-9436  ( 9105) [001] d..4 82316.657839: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
84441          <idle>-0     (-----) [000] d..1 82316.657854: cpu_idle: state=0 cpu_id=0
84442    RenderThread-9436  ( 9105) [001] dn.5 82316.657855: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
84443    RenderThread-9436  ( 9105) [001] d..2 82316.657865: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
84444<...>-13083 ( 8858) [001] .... 82316.657874: binder_transaction_received: transaction=1570992
84445<...>-13083 ( 8858) [001] .... 82316.658038: binder_transaction: transaction=1570993 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
84446<...>-13083 ( 8858) [001] .... 82316.658043: binder_transaction_alloc_buf: transaction=1570993 data_size=68 offsets_size=0
84447<...>-13083 ( 8858) [001] d..2 82316.658086: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
84448    RenderThread-9436  ( 9105) [001] .... 82316.658096: binder_transaction_received: transaction=1570993
84449    RenderThread-9436  ( 9105) [001] d..2 82316.658182: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84450          <idle>-0     (-----) [001] d..1 82316.658198: cpu_idle: state=0 cpu_id=1
84451          <idle>-0     (-----) [003] d.s2 82316.658470: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
84452          <idle>-0     (-----) [003] dns3 82316.658487: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
84453          <idle>-0     (-----) [003] dns3 82316.658493: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
84454          <idle>-0     (-----) [003] dns4 82316.658507: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
84455          <idle>-0     (-----) [000] .n.1 82316.658513: cpu_idle: state=4294967295 cpu_id=0
84456          <idle>-0     (-----) [003] .n.1 82316.658517: cpu_idle: state=4294967295 cpu_id=3
84457          <idle>-0     (-----) [003] d..2 82316.658527: 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
84458          <idle>-0     (-----) [000] d..2 82316.658528: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
84459<...>-8 ( 8) [003] d..2 82316.658561: 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
84460          <idle>-0     (-----) [003] d..1 82316.658591: cpu_idle: state=0 cpu_id=3
84461          <idle>-0     (-----) [003] ...1 82316.658605: cpu_idle: state=4294967295 cpu_id=3
84462          <idle>-0     (-----) [003] d..1 82316.658609: cpu_idle: state=0 cpu_id=3
84463  kworker/u16:15-1311  ( 1311) [000] d..2 82316.658691: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84464          <idle>-0     (-----) [000] d..1 82316.658705: cpu_idle: state=0 cpu_id=0
84465          <idle>-0     (-----) [001] d.h2 82316.658805: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
84466          <idle>-0     (-----) [001] dnh3 82316.658821: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
84467          <idle>-0     (-----) [001] .n.1 82316.658830: cpu_idle: state=4294967295 cpu_id=1
84468          <idle>-0     (-----) [001] d..2 82316.658842: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
84469        DispSync-8879  ( 8858) [001] d..1 82316.658863: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
84470        DispSync-8879  ( 8858) [001] d..2 82316.658881: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
84471          <idle>-0     (-----) [003] .n.1 82316.658886: cpu_idle: state=4294967295 cpu_id=3
84472          <idle>-0     (-----) [002] ...1 82316.658888: cpu_idle: state=4294967295 cpu_id=2
84473          <idle>-0     (-----) [002] d..1 82316.658893: cpu_idle: state=0 cpu_id=2
84474          <idle>-0     (-----) [003] d..2 82316.658893: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
84475        DispSync-8879  ( 8858) [001] d..2 82316.658915: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84476   sfEventThread-8882  ( 8858) [003] d..3 82316.658929: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
84477          <idle>-0     (-----) [001] d..1 82316.658931: cpu_idle: state=0 cpu_id=1
84478          <idle>-0     (-----) [002] d.h4 82316.658943: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84479   sfEventThread-8882  ( 8858) [003] d..4 82316.658950: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
84480          <idle>-0     (-----) [000] .n.1 82316.658956: cpu_idle: state=4294967295 cpu_id=0
84481          <idle>-0     (-----) [005] dnh2 82316.658963: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84482          <idle>-0     (-----) [005] .n.1 82316.658967: cpu_idle: state=4294967295 cpu_id=5
84483          <idle>-0     (-----) [000] d..2 82316.658967: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
84484          <idle>-0     (-----) [005] d..2 82316.658975: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84485          <idle>-0     (-----) [002] ...1 82316.658981: cpu_idle: state=4294967295 cpu_id=2
84486   sfEventThread-8882  ( 8858) [003] d..2 82316.658984: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84487          <idle>-0     (-----) [002] d..1 82316.658988: cpu_idle: state=0 cpu_id=2
84488          <idle>-0     (-----) [003] d..1 82316.658994: cpu_idle: state=0 cpu_id=3
84489<...>-5340 ( 788) [005] d..1 82316.659030: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
84490          <idle>-0     (-----) [001] dnh2 82316.659057: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
84491          <idle>-0     (-----) [001] .n.1 82316.659065: cpu_idle: state=4294967295 cpu_id=1
84492          <idle>-0     (-----) [001] d..2 82316.659076: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
84493<...>-5340 ( 788) [005] ...1 82316.659122: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
84494<...>-5340 ( 788) [005] ...1 82316.659127: tracing_mark_write: E|788
84495<...>-5340 ( 788) [005] .... 82316.659143: binder_transaction: transaction=1570994 dest_node=1570990 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
84496<...>-5340 ( 788) [005] .... 82316.659146: binder_transaction_alloc_buf: transaction=1570994 data_size=60 offsets_size=0
84497<...>-5340 ( 788) [005] d..4 82316.659149: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
84498 neuralnetworks@-13088 (  788) [001] d..2 82316.659151: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84499<...>-5340 ( 788) [005] d..5 82316.659161: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
84500          <idle>-0     (-----) [001] d..1 82316.659164: cpu_idle: state=0 cpu_id=1
84501          <idle>-0     (-----) [004] .n.1 82316.659167: cpu_idle: state=4294967295 cpu_id=4
84502          <idle>-0     (-----) [004] d..2 82316.659175: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
84503           <...>-27571 (-----) [004] .... 82316.659180: binder_transaction_received: transaction=1570994
84504<...>-5340 ( 788) [005] ...1 82316.659185: tracing_mark_write: E|788
84505<...>-5340 ( 788) [005] .... 82316.659191: binder_transaction: transaction=1570995 dest_node=0 dest_proc=27550 dest_thread=27733 reply=1 flags=0x0 code=0x0
84506<...>-5340 ( 788) [005] .... 82316.659193: binder_transaction_alloc_buf: transaction=1570995 data_size=8 offsets_size=0
84507<...>-5340 ( 788) [005] d..2 82316.659195: sched_waking: comm=id.nn.benchmark pid=27733 prio=110 target_cpu=005
84508           <...>-27571 (-----) [004] ...1 82316.659198: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
84509<...>-5340 ( 788) [005] d..3 82316.659202: sched_wakeup: comm=id.nn.benchmark pid=27733 prio=110 target_cpu=005
84510           <...>-27571 (-----) [004] ...1 82316.659204: tracing_mark_write: E|27550
84511<...>-5340 ( 788) [005] .... 82316.659204: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
84512           <...>-27571 (-----) [004] d..2 82316.659232: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84513          <idle>-0     (-----) [004] d..1 82316.659240: cpu_idle: state=0 cpu_id=4
84514<...>-5340 ( 788) [005] d..2 82316.659246: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27733 next_prio=110
84515           <...>-27733 (-----) [005] .... 82316.659255: binder_transaction_received: transaction=1570995
84516           <...>-27733 (-----) [005] ...1 82316.659293: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
84517           <...>-27733 (-----) [005] ...1 82316.659299: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
84518           <...>-27733 (-----) [005] ...1 82316.659325: tracing_mark_write: E|27550
84519           <...>-27733 (-----) [005] ...1 82316.659329: tracing_mark_write: E|27550
84520           <...>-27733 (-----) [005] ...1 82316.659332: tracing_mark_write: E|27550
84521  surfaceflinger-8858  ( 8858) [000] d..1 82316.659356: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
84522  surfaceflinger-8858  ( 8858) [000] d..2 82316.659379: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
84523          <idle>-0     (-----) [003] .n.1 82316.659384: cpu_idle: state=4294967295 cpu_id=3
84524          <idle>-0     (-----) [003] d..2 82316.659392: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
84525   sfEventThread-8882  ( 8858) [003] d..2 82316.659455: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84526          <idle>-0     (-----) [003] d..1 82316.659462: cpu_idle: state=0 cpu_id=3
84527           <...>-27733 (-----) [005] ...1 82316.659519: tracing_mark_write: E|27550
84528           <...>-27733 (-----) [005] d..1 82316.659532: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84529           <...>-27733 (-----) [005] d..2 82316.659548: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84530          <idle>-0     (-----) [004] .n.1 82316.659553: cpu_idle: state=4294967295 cpu_id=4
84531          <idle>-0     (-----) [004] d..2 82316.659559: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
84532           <...>-27550 (-----) [004] d..2 82316.659579: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84533          <idle>-0     (-----) [004] d..1 82316.659588: cpu_idle: state=0 cpu_id=4
84534  surfaceflinger-8858  ( 8858) [000] ...1 82316.659604: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
84535  surfaceflinger-8858  ( 8858) [000] ...1 82316.659611: tracing_mark_write: E|8858
84536           <...>-27733 (-----) [005] d..1 82316.659635: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84537           <...>-27733 (-----) [005] d..2 82316.659645: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84538          <idle>-0     (-----) [004] .n.1 82316.659650: cpu_idle: state=4294967295 cpu_id=4
84539          <idle>-0     (-----) [004] d..2 82316.659658: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
84540  surfaceflinger-8858  ( 8858) [000] .... 82316.659663: binder_transaction: transaction=1570996 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
84541  surfaceflinger-8858  ( 8858) [000] .... 82316.659668: binder_transaction_alloc_buf: transaction=1570996 data_size=540 offsets_size=96
84542           <...>-27733 (-----) [005] d..2 82316.659684: sched_switch: prev_comm=id.nn.benchmark prev_pid=27733 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
84543  surfaceflinger-8858  ( 8858) [000] ...2 82316.659696: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
84544           <...>-27550 (-----) [004] ...1 82316.659703: tracing_mark_write: E|27550
84545  surfaceflinger-8858  ( 8858) [000] d..4 82316.659704: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
84546           <...>-27550 (-----) [004] ...1 82316.659707: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
84547          <idle>-0     (-----) [005] d..1 82316.659710: cpu_idle: state=0 cpu_id=5
84548           <...>-27550 (-----) [004] ...1 82316.659713: tracing_mark_write: E|27550
84549           <...>-27550 (-----) [004] ...1 82316.659717: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
84550           <...>-27550 (-----) [004] ...1 82316.659721: tracing_mark_write: E|27550
84551  surfaceflinger-8858  ( 8858) [000] d..5 82316.659724: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
84552           <...>-27550 (-----) [004] ...1 82316.659725: tracing_mark_write: E|27550
84553          <idle>-0     (-----) [001] .n.1 82316.659731: cpu_idle: state=4294967295 cpu_id=1
84554          <idle>-0     (-----) [001] d..2 82316.659741: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
84555 [email protected]   (  619) [001] .... 82316.659753: binder_transaction_received: transaction=1570996
84556  surfaceflinger-8858  ( 8858) [000] d..2 82316.659757: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84557          <idle>-0     (-----) [000] d..1 82316.659777: cpu_idle: state=0 cpu_id=0
84558 [email protected]   (  619) [001] ...1 82316.659802: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
84559           <...>-27550 (-----) [004] ...1 82316.659837: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
84560           <...>-27550 (-----) [004] ...1 82316.659895: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
84561           <...>-27550 (-----) [004] ...1 82316.659900: tracing_mark_write: E|27550
84562           <...>-27550 (-----) [004] ...1 82316.659903: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
84563           <...>-27550 (-----) [004] ...1 82316.659909: tracing_mark_write: E|27550
84564 [email protected]   (  619) [001] ...1 82316.659911: tracing_mark_write: B|619|HWCSession::PresentDisplay::
84565           <...>-27550 (-----) [004] ...1 82316.659912: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
84566           <...>-27550 (-----) [004] ...1 82316.659916: tracing_mark_write: E|27550
84567           <...>-27550 (-----) [004] ...1 82316.659920: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
84568          <idle>-0     (-----) [005] .n.1 82316.660010: cpu_idle: state=4294967295 cpu_id=5
84569           <...>-27550 (-----) [004] ...1 82316.660011: tracing_mark_write: E|27550
84570           <...>-27550 (-----) [004] ...1 82316.660016: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
84571          <idle>-0     (-----) [005] d..2 82316.660019: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27734 next_prio=110
84572           <...>-27550 (-----) [004] d..2 82316.660032: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84573          <idle>-0     (-----) [004] d..1 82316.660047: cpu_idle: state=0 cpu_id=4
84574           <...>-27734 (-----) [005] ...1 82316.660080: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
84575 [email protected]   (  619) [001] ...1 82316.660088: tracing_mark_write: B|619|HWDeviceDRM::Commit::
84576           <...>-27734 (-----) [005] ...1 82316.660094: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
84577           <...>-27734 (-----) [005] ...1 82316.660098: tracing_mark_write: E|27550
84578 [email protected]   (  619) [001] ...1 82316.660102: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
84579           <...>-27734 (-----) [005] .... 82316.660120: binder_transaction: transaction=1570997 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
84580           <...>-27734 (-----) [005] .... 82316.660123: binder_transaction_alloc_buf: transaction=1570997 data_size=48 offsets_size=0
84581           <...>-27734 (-----) [005] ...2 82316.660127: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
84582           <...>-27734 (-----) [005] d..4 82316.660129: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
84583           <...>-27734 (-----) [005] dn.5 82316.660140: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
84584           <...>-27734 (-----) [005] d..2 82316.660146: sched_switch: prev_comm=id.nn.benchmark prev_pid=27734 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
84585<...>-770 ( 770) [005] .... 82316.660156: binder_transaction_received: transaction=1570997
84586<...>-770 ( 770) [005] ...1 82316.660180: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
84587<...>-770 ( 770) [005] d..2 82316.660261: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
84588 [email protected]   (  619) [001] d.h1 82316.660305: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
84589<...>-770 ( 770) [005] ...1 82316.660317: tracing_mark_write: E|770
84590<...>-770 ( 770) [005] .... 82316.660325: binder_transaction: transaction=1570998 dest_node=0 dest_proc=27550 dest_thread=27734 reply=1 flags=0x0 code=0x0
84591<...>-770 ( 770) [005] .... 82316.660327: binder_transaction_alloc_buf: transaction=1570998 data_size=168 offsets_size=32
84592<...>-770 ( 770) [005] .... 82316.660334: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
84593<...>-770 ( 770) [005] d..2 82316.660371: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27734 next_prio=110
84594           <...>-27734 (-----) [005] .... 82316.660382: binder_transaction_received: transaction=1570998
84595           <...>-27734 (-----) [005] ...1 82316.660454: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
84596           <...>-27734 (-----) [005] ...1 82316.660459: tracing_mark_write: E|27550
84597           <...>-27734 (-----) [005] .... 82316.660474: binder_transaction: transaction=1570999 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
84598           <...>-27734 (-----) [005] .... 82316.660476: binder_transaction_alloc_buf: transaction=1570999 data_size=48 offsets_size=0
84599           <...>-27734 (-----) [005] ...2 82316.660478: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
84600           <...>-27734 (-----) [005] d..4 82316.660481: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
84601           <...>-27734 (-----) [005] dn.5 82316.660490: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
84602           <...>-27734 (-----) [005] d..2 82316.660497: sched_switch: prev_comm=id.nn.benchmark prev_pid=27734 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
84603<...>-770 ( 770) [005] .... 82316.660505: binder_transaction_received: transaction=1570999
84604          <idle>-0     (-----) [002] ...1 82316.660516: cpu_idle: state=4294967295 cpu_id=2
84605          <idle>-0     (-----) [002] d..1 82316.660521: cpu_idle: state=0 cpu_id=2
84606<...>-770 ( 770) [005] ...1 82316.660522: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
84607<...>-770 ( 770) [005] ...1 82316.660602: tracing_mark_write: E|770
84608<...>-770 ( 770) [005] .... 82316.660610: binder_transaction: transaction=1571000 dest_node=0 dest_proc=27550 dest_thread=27734 reply=1 flags=0x0 code=0x0
84609<...>-770 ( 770) [005] .... 82316.660613: binder_transaction_alloc_buf: transaction=1571000 data_size=168 offsets_size=32
84610<...>-770 ( 770) [005] .... 82316.660618: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
84611<...>-770 ( 770) [005] d..2 82316.660653: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27734 next_prio=110
84612           <...>-27734 (-----) [005] .... 82316.660663: binder_transaction_received: transaction=1571000
84613 [email protected]   (  619) [001] d..2 82316.660734: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
84614 [email protected]   (  619) [001] d..3 82316.660759: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
84615          <idle>-0     (-----) [002] .n.1 82316.660763: cpu_idle: state=4294967295 cpu_id=2
84616          <idle>-0     (-----) [002] d..2 82316.660775: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
84617 [email protected]   (  619) [001] ...1 82316.660869: tracing_mark_write: E|619
84618 [email protected]   (  619) [001] ...1 82316.660876: tracing_mark_write: E|619
84619           <...>-27734 (-----) [005] ...1 82316.660935: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
84620 [email protected]   (  619) [001] ...1 82316.660943: tracing_mark_write: E|619
84621           <...>-27734 (-----) [005] ...1 82316.660944: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
84622           <...>-27734 (-----) [005] ...1 82316.660948: tracing_mark_write: E|27550
84623 [email protected]   (  619) [001] ...1 82316.660992: tracing_mark_write: E|619
84624 [email protected]   (  619) [001] .... 82316.661008: binder_transaction: transaction=1571001 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
84625           <...>-27734 (-----) [005] .... 82316.661009: binder_transaction: transaction=1571002 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
84626           <...>-27734 (-----) [005] .... 82316.661013: binder_transaction_alloc_buf: transaction=1571002 data_size=556 offsets_size=104
84627 [email protected]   (  619) [001] .... 82316.661014: binder_transaction_alloc_buf: transaction=1571001 data_size=576 offsets_size=112
84628           <...>-27734 (-----) [005] ...2 82316.661026: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
84629           <...>-27734 (-----) [005] d..4 82316.661028: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84630 [email protected]   (  619) [001] d..2 82316.661035: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
84631           <...>-27734 (-----) [005] dn.5 82316.661040: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84632           <...>-27734 (-----) [005] d..2 82316.661047: sched_switch: prev_comm=id.nn.benchmark prev_pid=27734 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84633 [email protected]   (  619) [001] d..3 82316.661053: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
84634<...>-5340 ( 788) [005] .... 82316.661057: binder_transaction_received: transaction=1571002
84635 [email protected]   (  619) [001] .... 82316.661058: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
84636          <idle>-0     (-----) [000] .n.1 82316.661061: cpu_idle: state=4294967295 cpu_id=0
84637          <idle>-0     (-----) [000] d..2 82316.661071: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
84638  surfaceflinger-8858  ( 8858) [000] .... 82316.661079: binder_transaction_received: transaction=1571001
84639<...>-5340 ( 788) [005] ...1 82316.661103: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
84640 [email protected]   (  619) [001] d..2 82316.661137: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
84641<...>-5340 ( 788) [005] d..2 82316.661149: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
84642<...>-5340 ( 788) [005] d..2 82316.661187: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27734 next_prio=110
84643 crtc_commit:111-321   (  321) [002] d.h1 82316.661190: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
84644           <...>-27734 (-----) [005] d..2 82316.661210: sched_switch: prev_comm=id.nn.benchmark prev_pid=27734 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84645          <idle>-0     (-----) [005] d..1 82316.661227: cpu_idle: state=0 cpu_id=5
84646<...>-581 ( 571) [001] d..2 82316.661261: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
84647          <idle>-0     (-----) [001] d..1 82316.661281: cpu_idle: state=0 cpu_id=1
84648 crtc_commit:111-321   (  321) [002] d..2 82316.661498: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
84649  surfaceflinger-8858  ( 8858) [000] d..2 82316.661509: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84650          <idle>-0     (-----) [000] d..1 82316.661530: cpu_idle: state=0 cpu_id=0
84651<...>-87 ( 87) [002] d..2 82316.661544: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84652          <idle>-0     (-----) [002] d.h5 82316.661564: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84653          <idle>-0     (-----) [002] dnh6 82316.661581: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84654          <idle>-0     (-----) [002] d..2 82316.661596: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
84655<...>-86 ( 86) [002] d..2 82316.661628: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84656          <idle>-0     (-----) [002] d.h5 82316.661649: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84657          <idle>-0     (-----) [005] dnh2 82316.661671: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84658          <idle>-0     (-----) [005] .n.1 82316.661675: cpu_idle: state=4294967295 cpu_id=5
84659          <idle>-0     (-----) [005] d..2 82316.661683: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84660          <idle>-0     (-----) [002] d..1 82316.661697: cpu_idle: state=0 cpu_id=2
84661<...>-5340 ( 788) [005] d..1 82316.661738: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
84662          <idle>-0     (-----) [000] dnh2 82316.661778: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84663          <idle>-0     (-----) [000] .n.1 82316.661787: cpu_idle: state=4294967295 cpu_id=0
84664          <idle>-0     (-----) [000] d..2 82316.661801: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
84665          <idle>-0     (-----) [003] d.s2 82316.661807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
84666          <idle>-0     (-----) [003] dns3 82316.661824: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
84667          <idle>-0     (-----) [003] .n.1 82316.661833: cpu_idle: state=4294967295 cpu_id=3
84668          <idle>-0     (-----) [003] d..2 82316.661842: 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
84669     rcu_preempt-7     (    7) [003] d..2 82316.661853: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
84670 neuralnetworks@-13088 (  788) [000] d..2 82316.661866: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84671          <idle>-0     (-----) [000] d..1 82316.661882: cpu_idle: state=0 cpu_id=0
84672     rcu_preempt-7     (    7) [003] d..3 82316.661896: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
84673     rcu_preempt-7     (    7) [003] d..2 82316.661899: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
84674          <idle>-0     (-----) [000] .n.1 82316.661903: cpu_idle: state=4294967295 cpu_id=0
84675          <idle>-0     (-----) [000] d..2 82316.661915: 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
84676<...>-5340 ( 788) [005] d..2 82316.661932: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
84677     rcu_preempt-7     (    7) [003] d..3 82316.661934: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
84678         rcuop/0-10    (   10) [000] d..2 82316.661953: 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
84679          <idle>-0     (-----) [002] dnh2 82316.661955: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
84680<...>-5340 ( 788) [005] d..2 82316.661958: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84681         rcuop/2-29    (   29) [000] d..2 82316.661960: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
84682          <idle>-0     (-----) [002] .n.1 82316.661962: cpu_idle: state=4294967295 cpu_id=2
84683     rcu_preempt-7     (    7) [003] d..2 82316.661963: 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
84684          <idle>-0     (-----) [005] d..1 82316.661971: cpu_idle: state=0 cpu_id=5
84685          <idle>-0     (-----) [003] d..1 82316.661973: cpu_idle: state=0 cpu_id=3
84686          <idle>-0     (-----) [002] d..2 82316.661975: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
84687         rcuop/2-29    (   29) [000] d..3 82316.662005: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
84688<...>-87 ( 87) [002] d..2 82316.662037: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
84689         rcuop/2-29    (   29) [000] d..2 82316.662042: 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
84690         rcuop/3-37    (   37) [002] d.h5 82316.662055: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84691          <idle>-0     (-----) [000] d..1 82316.662056: cpu_idle: state=0 cpu_id=0
84692         rcuop/3-37    (   37) [002] d.h6 82316.662071: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84693         rcuop/3-37    (   37) [002] d..2 82316.662098: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
84694<...>-86 ( 86) [002] d..2 82316.662131: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84695          <idle>-0     (-----) [002] d..1 82316.662145: cpu_idle: state=0 cpu_id=2
84696          <idle>-0     (-----) [001] ...1 82316.662643: cpu_idle: state=4294967295 cpu_id=1
84697          <idle>-0     (-----) [001] d..1 82316.662648: cpu_idle: state=0 cpu_id=1
84698          <idle>-0     (-----) [000] ...1 82316.663557: cpu_idle: state=4294967295 cpu_id=0
84699          <idle>-0     (-----) [000] d..1 82316.663561: cpu_idle: state=0 cpu_id=0
84700          <idle>-0     (-----) [002] d.h4 82316.663720: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84701          <idle>-0     (-----) [005] dnh2 82316.663741: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84702          <idle>-0     (-----) [005] .n.1 82316.663746: cpu_idle: state=4294967295 cpu_id=5
84703          <idle>-0     (-----) [005] d..2 82316.663753: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84704          <idle>-0     (-----) [002] ...1 82316.663758: cpu_idle: state=4294967295 cpu_id=2
84705          <idle>-0     (-----) [002] d..1 82316.663764: cpu_idle: state=0 cpu_id=2
84706<...>-5340 ( 788) [005] d..1 82316.663805: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84707          <idle>-0     (-----) [000] dnh2 82316.663830: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84708          <idle>-0     (-----) [000] .n.1 82316.663835: cpu_idle: state=4294967295 cpu_id=0
84709          <idle>-0     (-----) [000] d..2 82316.663847: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
84710<...>-5340 ( 788) [005] ...1 82316.663896: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
84711<...>-5340 ( 788) [005] ...1 82316.663900: tracing_mark_write: E|788
84712 neuralnetworks@-13088 (  788) [000] d..2 82316.663910: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84713<...>-5340 ( 788) [005] .... 82316.663916: binder_transaction: transaction=1571005 dest_node=1571003 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
84714<...>-5340 ( 788) [005] .... 82316.663919: binder_transaction_alloc_buf: transaction=1571005 data_size=60 offsets_size=0
84715<...>-5340 ( 788) [005] d..4 82316.663923: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
84716          <idle>-0     (-----) [000] d..1 82316.663924: cpu_idle: state=0 cpu_id=0
84717<...>-5340 ( 788) [005] d..5 82316.663935: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
84718          <idle>-0     (-----) [004] .n.1 82316.663942: cpu_idle: state=4294967295 cpu_id=4
84719          <idle>-0     (-----) [004] d..2 82316.663950: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
84720           <...>-27571 (-----) [004] .... 82316.663955: binder_transaction_received: transaction=1571005
84721<...>-5340 ( 788) [005] ...1 82316.663958: tracing_mark_write: E|788
84722<...>-5340 ( 788) [005] .... 82316.663965: binder_transaction: transaction=1571006 dest_node=0 dest_proc=27550 dest_thread=27734 reply=1 flags=0x0 code=0x0
84723<...>-5340 ( 788) [005] .... 82316.663967: binder_transaction_alloc_buf: transaction=1571006 data_size=8 offsets_size=0
84724<...>-5340 ( 788) [005] d..2 82316.663968: sched_waking: comm=id.nn.benchmark pid=27734 prio=110 target_cpu=005
84725           <...>-27571 (-----) [004] ...1 82316.663973: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
84726<...>-5340 ( 788) [005] d..3 82316.663975: sched_wakeup: comm=id.nn.benchmark pid=27734 prio=110 target_cpu=005
84727<...>-5340 ( 788) [005] .... 82316.663977: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
84728           <...>-27571 (-----) [004] ...1 82316.663979: tracing_mark_write: E|27550
84729           <...>-27571 (-----) [004] d..2 82316.664007: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84730          <idle>-0     (-----) [004] d..1 82316.664015: cpu_idle: state=0 cpu_id=4
84731<...>-5340 ( 788) [005] d..2 82316.664020: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27734 next_prio=110
84732           <...>-27734 (-----) [005] .... 82316.664030: binder_transaction_received: transaction=1571006
84733           <...>-27734 (-----) [005] ...1 82316.664066: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
84734           <...>-27734 (-----) [005] ...1 82316.664072: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
84735           <...>-27734 (-----) [005] ...1 82316.664098: tracing_mark_write: E|27550
84736           <...>-27734 (-----) [005] ...1 82316.664102: tracing_mark_write: E|27550
84737           <...>-27734 (-----) [005] ...1 82316.664106: tracing_mark_write: E|27550
84738           <...>-27734 (-----) [005] ...1 82316.664295: tracing_mark_write: E|27550
84739           <...>-27734 (-----) [005] d..1 82316.664307: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84740           <...>-27734 (-----) [005] d..2 82316.664323: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84741          <idle>-0     (-----) [004] .n.1 82316.664329: cpu_idle: state=4294967295 cpu_id=4
84742          <idle>-0     (-----) [004] d..2 82316.664336: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
84743           <...>-27550 (-----) [004] d..2 82316.664355: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84744          <idle>-0     (-----) [004] d..1 82316.664364: cpu_idle: state=0 cpu_id=4
84745           <...>-27734 (-----) [005] d..1 82316.664414: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84746           <...>-27734 (-----) [005] d..2 82316.664423: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84747          <idle>-0     (-----) [004] .n.1 82316.664429: cpu_idle: state=4294967295 cpu_id=4
84748          <idle>-0     (-----) [004] d..2 82316.664437: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
84749           <...>-27734 (-----) [005] d..2 82316.664462: sched_switch: prev_comm=id.nn.benchmark prev_pid=27734 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
84750           <...>-27550 (-----) [004] ...1 82316.664470: tracing_mark_write: E|27550
84751           <...>-27550 (-----) [004] ...1 82316.664474: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
84752           <...>-27550 (-----) [004] ...1 82316.664480: tracing_mark_write: E|27550
84753          <idle>-0     (-----) [005] d..1 82316.664482: cpu_idle: state=0 cpu_id=5
84754           <...>-27550 (-----) [004] ...1 82316.664484: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
84755           <...>-27550 (-----) [004] ...1 82316.664488: tracing_mark_write: E|27550
84756           <...>-27550 (-----) [004] ...1 82316.664492: tracing_mark_write: E|27550
84757           <...>-27550 (-----) [004] ...1 82316.664605: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
84758           <...>-27550 (-----) [004] ...1 82316.664662: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
84759           <...>-27550 (-----) [004] ...1 82316.664667: tracing_mark_write: E|27550
84760           <...>-27550 (-----) [004] ...1 82316.664671: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
84761           <...>-27550 (-----) [004] ...1 82316.664677: tracing_mark_write: E|27550
84762           <...>-27550 (-----) [004] ...1 82316.664681: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
84763           <...>-27550 (-----) [004] ...1 82316.664685: tracing_mark_write: E|27550
84764           <...>-27550 (-----) [004] ...1 82316.664688: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
84765          <idle>-0     (-----) [005] .n.1 82316.664777: cpu_idle: state=4294967295 cpu_id=5
84766           <...>-27550 (-----) [004] ...1 82316.664778: tracing_mark_write: E|27550
84767           <...>-27550 (-----) [004] ...1 82316.664783: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
84768          <idle>-0     (-----) [005] d..2 82316.664785: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27735 next_prio=110
84769           <...>-27550 (-----) [004] d..2 82316.664798: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84770          <idle>-0     (-----) [004] d..1 82316.664812: cpu_idle: state=0 cpu_id=4
84771           <...>-27735 (-----) [005] ...1 82316.664847: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
84772           <...>-27735 (-----) [005] ...1 82316.664861: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
84773           <...>-27735 (-----) [005] ...1 82316.664865: tracing_mark_write: E|27550
84774           <...>-27735 (-----) [005] .... 82316.664885: binder_transaction: transaction=1571007 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
84775           <...>-27735 (-----) [005] .... 82316.664889: binder_transaction_alloc_buf: transaction=1571007 data_size=48 offsets_size=0
84776           <...>-27735 (-----) [005] ...2 82316.664892: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
84777           <...>-27735 (-----) [005] d..4 82316.664895: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
84778           <...>-27735 (-----) [005] dn.5 82316.664905: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
84779           <...>-27735 (-----) [005] d..2 82316.664912: sched_switch: prev_comm=id.nn.benchmark prev_pid=27735 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
84780<...>-770 ( 770) [005] .... 82316.664922: binder_transaction_received: transaction=1571007
84781<...>-770 ( 770) [005] ...1 82316.664944: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
84782<...>-770 ( 770) [005] d..2 82316.665017: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
84783          <idle>-0     (-----) [000] dnh2 82316.665056: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
84784          <idle>-0     (-----) [000] .n.1 82316.665063: cpu_idle: state=4294967295 cpu_id=0
84785<...>-770 ( 770) [005] ...1 82316.665070: tracing_mark_write: E|770
84786          <idle>-0     (-----) [000] d..2 82316.665074: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
84787<...>-770 ( 770) [005] .... 82316.665078: binder_transaction: transaction=1571008 dest_node=0 dest_proc=27550 dest_thread=27735 reply=1 flags=0x0 code=0x0
84788<...>-770 ( 770) [005] .... 82316.665081: binder_transaction_alloc_buf: transaction=1571008 data_size=168 offsets_size=32
84789<...>-770 ( 770) [005] .... 82316.665088: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
84790          <idle>-0     (-----) [003] d.s2 82316.665134: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
84791          <idle>-0     (-----) [003] dns3 82316.665150: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
84792<...>-770 ( 770) [005] d..2 82316.665153: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27735 next_prio=110
84793           <...>-27735 (-----) [005] .... 82316.665164: binder_transaction_received: transaction=1571008
84794          <idle>-0     (-----) [003] .n.1 82316.665167: cpu_idle: state=4294967295 cpu_id=3
84795          <idle>-0     (-----) [003] d..2 82316.665176: 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
84796<...>-8 ( 8) [003] d..2 82316.665182: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
84797<...>-8 ( 8) [003] d..3 82316.665217: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
84798<...>-8 ( 8) [003] d..2 82316.665229: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
84799<...>-581 ( 571) [000] d..2 82316.665229: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84800           <...>-27735 (-----) [005] ...1 82316.665233: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
84801           <...>-27735 (-----) [005] ...1 82316.665238: tracing_mark_write: E|27550
84802<...>-46 ( 46) [003] d..2 82316.665240: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
84803          <idle>-0     (-----) [000] d..1 82316.665246: cpu_idle: state=0 cpu_id=0
84804           <...>-27735 (-----) [005] .... 82316.665253: binder_transaction: transaction=1571009 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
84805<...>-46 ( 46) [003] d..3 82316.665254: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
84806           <...>-27735 (-----) [005] .... 82316.665255: binder_transaction_alloc_buf: transaction=1571009 data_size=48 offsets_size=0
84807           <...>-27735 (-----) [005] ...2 82316.665258: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
84808           <...>-27735 (-----) [005] d..4 82316.665260: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
84809<...>-46 ( 46) [003] d..2 82316.665264: 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
84810           <...>-27735 (-----) [005] dn.5 82316.665270: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
84811           <...>-27735 (-----) [005] d..2 82316.665277: sched_switch: prev_comm=id.nn.benchmark prev_pid=27735 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
84812<...>-770 ( 770) [005] .... 82316.665285: binder_transaction_received: transaction=1571009
84813<...>-8 ( 8) [003] d..2 82316.665286: 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
84814          <idle>-0     (-----) [003] d..1 82316.665295: cpu_idle: state=0 cpu_id=3
84815<...>-770 ( 770) [005] ...1 82316.665302: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
84816<...>-770 ( 770) [005] d..2 82316.665361: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
84817          <idle>-0     (-----) [000] dnh2 82316.665385: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
84818          <idle>-0     (-----) [000] .n.1 82316.665392: cpu_idle: state=4294967295 cpu_id=0
84819<...>-770 ( 770) [005] ...1 82316.665395: tracing_mark_write: E|770
84820<...>-770 ( 770) [005] .... 82316.665402: binder_transaction: transaction=1571010 dest_node=0 dest_proc=27550 dest_thread=27735 reply=1 flags=0x0 code=0x0
84821          <idle>-0     (-----) [000] d..2 82316.665403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
84822<...>-770 ( 770) [005] .... 82316.665404: binder_transaction_alloc_buf: transaction=1571010 data_size=168 offsets_size=32
84823<...>-770 ( 770) [005] .... 82316.665410: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
84824<...>-770 ( 770) [005] d..2 82316.665444: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27735 next_prio=110
84825           <...>-27735 (-----) [005] .... 82316.665455: binder_transaction_received: transaction=1571010
84826<...>-581 ( 571) [000] d..2 82316.665460: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84827          <idle>-0     (-----) [000] d..1 82316.665476: cpu_idle: state=0 cpu_id=0
84828           <...>-27735 (-----) [005] ...1 82316.665733: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
84829           <...>-27735 (-----) [005] ...1 82316.665743: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
84830           <...>-27735 (-----) [005] ...1 82316.665748: tracing_mark_write: E|27550
84831           <...>-27735 (-----) [005] .... 82316.665810: binder_transaction: transaction=1571011 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
84832           <...>-27735 (-----) [005] .... 82316.665814: binder_transaction_alloc_buf: transaction=1571011 data_size=556 offsets_size=104
84833           <...>-27735 (-----) [005] ...2 82316.665828: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
84834           <...>-27735 (-----) [005] d..4 82316.665831: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84835           <...>-27735 (-----) [005] dn.5 82316.665843: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84836           <...>-27735 (-----) [005] d..2 82316.665850: sched_switch: prev_comm=id.nn.benchmark prev_pid=27735 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84837<...>-5340 ( 788) [005] .... 82316.665860: binder_transaction_received: transaction=1571011
84838<...>-5340 ( 788) [005] ...1 82316.665905: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
84839<...>-5340 ( 788) [005] d..2 82316.665949: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
84840<...>-5340 ( 788) [005] d..2 82316.665986: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27735 next_prio=110
84841          <idle>-0     (-----) [000] dnh2 82316.665989: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
84842          <idle>-0     (-----) [000] .n.1 82316.665996: cpu_idle: state=4294967295 cpu_id=0
84843          <idle>-0     (-----) [000] d..2 82316.666007: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
84844           <...>-27735 (-----) [005] d..2 82316.666009: sched_switch: prev_comm=id.nn.benchmark prev_pid=27735 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84845          <idle>-0     (-----) [005] d..1 82316.666027: cpu_idle: state=0 cpu_id=5
84846<...>-87 ( 87) [000] d..2 82316.666051: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84847          <idle>-0     (-----) [002] d.h4 82316.666058: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84848          <idle>-0     (-----) [000] d..1 82316.666065: cpu_idle: state=0 cpu_id=0
84849          <idle>-0     (-----) [002] dnh5 82316.666074: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84850          <idle>-0     (-----) [002] .n.1 82316.666082: cpu_idle: state=4294967295 cpu_id=2
84851          <idle>-0     (-----) [002] d..2 82316.666095: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
84852<...>-86 ( 86) [002] d..2 82316.666129: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84853          <idle>-0     (-----) [002] d.h5 82316.666150: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84854          <idle>-0     (-----) [005] dnh2 82316.666171: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84855          <idle>-0     (-----) [005] .n.1 82316.666175: cpu_idle: state=4294967295 cpu_id=5
84856          <idle>-0     (-----) [005] d..2 82316.666184: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84857          <idle>-0     (-----) [002] d..1 82316.666194: cpu_idle: state=0 cpu_id=2
84858<...>-5340 ( 788) [005] d..1 82316.666236: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84859          <idle>-0     (-----) [000] dnh2 82316.666264: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84860          <idle>-0     (-----) [000] .n.1 82316.666271: cpu_idle: state=4294967295 cpu_id=0
84861          <idle>-0     (-----) [000] d..2 82316.666281: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
84862 neuralnetworks@-13088 (  788) [000] d..2 82316.666328: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84863          <idle>-0     (-----) [000] d..1 82316.666343: cpu_idle: state=0 cpu_id=0
84864<...>-5340 ( 788) [005] d..2 82316.666383: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
84865          <idle>-0     (-----) [000] dnh2 82316.666405: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
84866<...>-5340 ( 788) [005] d..2 82316.666409: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
84867          <idle>-0     (-----) [000] .n.1 82316.666412: cpu_idle: state=4294967295 cpu_id=0
84868          <idle>-0     (-----) [005] d..1 82316.666423: cpu_idle: state=0 cpu_id=5
84869          <idle>-0     (-----) [000] d..2 82316.666423: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
84870          <idle>-0     (-----) [002] d.h4 82316.666461: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84871<...>-87 ( 87) [000] d..2 82316.666462: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84872          <idle>-0     (-----) [002] dnh5 82316.666472: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
84873          <idle>-0     (-----) [000] d..1 82316.666474: cpu_idle: state=0 cpu_id=0
84874          <idle>-0     (-----) [002] .n.1 82316.666480: cpu_idle: state=4294967295 cpu_id=2
84875          <idle>-0     (-----) [002] d..2 82316.666492: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
84876<...>-86 ( 86) [002] d..2 82316.666524: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84877          <idle>-0     (-----) [002] d..1 82316.666536: cpu_idle: state=0 cpu_id=2
84878          <idle>-0     (-----) [000] d.h5 82316.666793: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
84879          <idle>-0     (-----) [000] d.h6 82316.666813: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
84880          <idle>-0     (-----) [000] d.h5 82316.666817: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
84881          <idle>-0     (-----) [002] .n.1 82316.666818: cpu_idle: state=4294967295 cpu_id=2
84882          <idle>-0     (-----) [002] d..2 82316.666829: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
84883          <idle>-0     (-----) [000] dnh6 82316.666842: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
84884          <idle>-0     (-----) [000] .n.1 82316.666856: cpu_idle: state=4294967295 cpu_id=0
84885  crtc_event:111-322   (  322) [002] d..2 82316.666862: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
84886          <idle>-0     (-----) [000] d..2 82316.666867: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
84887          <idle>-0     (-----) [002] d..1 82316.666872: cpu_idle: state=0 cpu_id=2
84888 crtc_commit:111-321   (  321) [000] d..2 82316.667009: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
84889          <idle>-0     (-----) [000] d..1 82316.667019: cpu_idle: state=0 cpu_id=0
84890          <idle>-0     (-----) [002] d.h4 82316.668204: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84891          <idle>-0     (-----) [005] dnh2 82316.668226: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
84892          <idle>-0     (-----) [005] .n.1 82316.668230: cpu_idle: state=4294967295 cpu_id=5
84893          <idle>-0     (-----) [005] d..2 82316.668238: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
84894          <idle>-0     (-----) [002] ...1 82316.668244: cpu_idle: state=4294967295 cpu_id=2
84895          <idle>-0     (-----) [002] d..1 82316.668250: cpu_idle: state=0 cpu_id=2
84896<...>-5340 ( 788) [005] d..1 82316.668285: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84897          <idle>-0     (-----) [000] dnh2 82316.668312: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
84898          <idle>-0     (-----) [000] .n.1 82316.668318: cpu_idle: state=4294967295 cpu_id=0
84899          <idle>-0     (-----) [000] d..2 82316.668326: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
84900<...>-5340 ( 788) [005] ...1 82316.668376: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
84901<...>-5340 ( 788) [005] ...1 82316.668381: tracing_mark_write: E|788
84902 neuralnetworks@-13088 (  788) [000] d..2 82316.668392: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84903<...>-5340 ( 788) [005] .... 82316.668397: binder_transaction: transaction=1571014 dest_node=1571012 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
84904<...>-5340 ( 788) [005] .... 82316.668399: binder_transaction_alloc_buf: transaction=1571014 data_size=60 offsets_size=0
84905          <idle>-0     (-----) [000] d..1 82316.668400: cpu_idle: state=0 cpu_id=0
84906<...>-5340 ( 788) [005] d..4 82316.668403: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
84907<...>-5340 ( 788) [005] d..5 82316.668415: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
84908          <idle>-0     (-----) [004] .n.1 82316.668421: cpu_idle: state=4294967295 cpu_id=4
84909          <idle>-0     (-----) [004] d..2 82316.668429: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
84910           <...>-27571 (-----) [004] .... 82316.668434: binder_transaction_received: transaction=1571014
84911          <idle>-0     (-----) [003] d.s2 82316.668468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
84912<...>-5340 ( 788) [005] ...1 82316.668468: tracing_mark_write: E|788
84913<...>-5340 ( 788) [005] .... 82316.668476: binder_transaction: transaction=1571015 dest_node=0 dest_proc=27550 dest_thread=27735 reply=1 flags=0x0 code=0x0
84914<...>-5340 ( 788) [005] .... 82316.668478: binder_transaction_alloc_buf: transaction=1571015 data_size=8 offsets_size=0
84915<...>-5340 ( 788) [005] d..2 82316.668480: sched_waking: comm=id.nn.benchmark pid=27735 prio=110 target_cpu=005
84916           <...>-27571 (-----) [004] ...1 82316.668480: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
84917          <idle>-0     (-----) [003] dns3 82316.668483: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
84918          <idle>-0     (-----) [000] ...1 82316.668485: cpu_idle: state=4294967295 cpu_id=0
84919<...>-5340 ( 788) [005] d..3 82316.668486: sched_wakeup: comm=id.nn.benchmark pid=27735 prio=110 target_cpu=005
84920           <...>-27571 (-----) [004] ...1 82316.668487: tracing_mark_write: E|27550
84921<...>-5340 ( 788) [005] .... 82316.668488: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
84922          <idle>-0     (-----) [003] dns3 82316.668489: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
84923          <idle>-0     (-----) [000] d..1 82316.668491: cpu_idle: state=0 cpu_id=0
84924           <...>-27571 (-----) [004] d..2 82316.668519: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84925          <idle>-0     (-----) [003] dns4 82316.668521: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
84926          <idle>-0     (-----) [004] d..1 82316.668527: cpu_idle: state=0 cpu_id=4
84927<...>-5340 ( 788) [005] d..2 82316.668531: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27735 next_prio=110
84928          <idle>-0     (-----) [003] .n.1 82316.668536: cpu_idle: state=4294967295 cpu_id=3
84929           <...>-27735 (-----) [005] .... 82316.668540: binder_transaction_received: transaction=1571015
84930          <idle>-0     (-----) [003] d..2 82316.668546: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
84931           <...>-27735 (-----) [005] ...1 82316.668593: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
84932           <...>-27735 (-----) [005] ...1 82316.668599: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
84933           <...>-27735 (-----) [005] ...1 82316.668625: tracing_mark_write: E|27550
84934           <...>-27735 (-----) [005] ...1 82316.668628: tracing_mark_write: E|27550
84935           <...>-27735 (-----) [005] ...1 82316.668632: tracing_mark_write: E|27550
84936  kworker/u16:15-1311  ( 1311) [003] d..2 82316.668701: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
84937     rcu_preempt-7     (    7) [003] d..2 82316.668712: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
84938     rcu_preempt-7     (    7) [003] d..3 82316.668758: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
84939     rcu_preempt-7     (    7) [003] d..2 82316.668779: 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
84940         rcuop/4-45    (   45) [003] d..2 82316.668786: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
84941         rcuop/4-45    (   45) [003] d..3 82316.668802: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
84942         rcuop/4-45    (   45) [003] d..2 82316.668814: 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
84943           <...>-27735 (-----) [005] ...1 82316.668831: tracing_mark_write: E|27550
84944           <...>-27735 (-----) [005] d..1 82316.668843: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84945           <...>-27735 (-----) [005] d..2 82316.668860: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84946          <idle>-0     (-----) [004] .n.1 82316.668865: cpu_idle: state=4294967295 cpu_id=4
84947          <idle>-0     (-----) [004] d..2 82316.668872: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
84948           <...>-27550 (-----) [004] d..2 82316.668892: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84949          <idle>-0     (-----) [004] d..1 82316.668901: cpu_idle: state=0 cpu_id=4
84950         rcuop/5-53    (   53) [003] d..2 82316.668938: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
84951           <...>-27735 (-----) [005] d..1 82316.668945: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84952          <idle>-0     (-----) [003] d..1 82316.668949: cpu_idle: state=0 cpu_id=3
84953           <...>-27735 (-----) [005] d..2 82316.668954: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
84954          <idle>-0     (-----) [004] .n.1 82316.668960: cpu_idle: state=4294967295 cpu_id=4
84955          <idle>-0     (-----) [004] d..2 82316.668968: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
84956           <...>-27735 (-----) [005] d..2 82316.668993: sched_switch: prev_comm=id.nn.benchmark prev_pid=27735 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
84957           <...>-27550 (-----) [004] ...1 82316.669000: tracing_mark_write: E|27550
84958           <...>-27550 (-----) [004] ...1 82316.669005: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
84959           <...>-27550 (-----) [004] ...1 82316.669010: tracing_mark_write: E|27550
84960          <idle>-0     (-----) [005] d..1 82316.669013: cpu_idle: state=0 cpu_id=5
84961           <...>-27550 (-----) [004] ...1 82316.669014: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
84962           <...>-27550 (-----) [004] ...1 82316.669018: tracing_mark_write: E|27550
84963           <...>-27550 (-----) [004] ...1 82316.669022: tracing_mark_write: E|27550
84964          <idle>-0     (-----) [000] d.h5 82316.669128: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
84965           <...>-27550 (-----) [004] ...1 82316.669136: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
84966          <idle>-0     (-----) [000] dnh6 82316.669141: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
84967          <idle>-0     (-----) [000] .n.1 82316.669153: cpu_idle: state=4294967295 cpu_id=0
84968          <idle>-0     (-----) [000] d..2 82316.669160: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
84969           <...>-27550 (-----) [004] ...1 82316.669193: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
84970           <...>-27550 (-----) [004] ...1 82316.669197: tracing_mark_write: E|27550
84971           <...>-27550 (-----) [004] ...1 82316.669201: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
84972           <...>-27550 (-----) [004] ...1 82316.669206: tracing_mark_write: E|27550
84973           <...>-27550 (-----) [004] ...1 82316.669209: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
84974           <...>-27550 (-----) [004] ...1 82316.669213: tracing_mark_write: E|27550
84975           <...>-27550 (-----) [004] ...1 82316.669216: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
84976 crtc_commit:111-321   (  321) [000] d..2 82316.669237: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
84977          <idle>-0     (-----) [000] d..1 82316.669247: cpu_idle: state=0 cpu_id=0
84978          <idle>-0     (-----) [005] .n.1 82316.669303: cpu_idle: state=4294967295 cpu_id=5
84979           <...>-27550 (-----) [004] ...1 82316.669304: tracing_mark_write: E|27550
84980           <...>-27550 (-----) [004] ...1 82316.669309: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
84981          <idle>-0     (-----) [005] d..2 82316.669312: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27736 next_prio=110
84982           <...>-27550 (-----) [004] d..2 82316.669325: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
84983          <idle>-0     (-----) [004] d..1 82316.669340: cpu_idle: state=0 cpu_id=4
84984           <...>-27736 (-----) [005] ...1 82316.669372: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
84985           <...>-27736 (-----) [005] ...1 82316.669384: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
84986           <...>-27736 (-----) [005] ...1 82316.669388: tracing_mark_write: E|27550
84987           <...>-27736 (-----) [005] .... 82316.669408: binder_transaction: transaction=1571016 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
84988           <...>-27736 (-----) [005] .... 82316.669411: binder_transaction_alloc_buf: transaction=1571016 data_size=48 offsets_size=0
84989           <...>-27736 (-----) [005] ...2 82316.669414: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
84990           <...>-27736 (-----) [005] d..4 82316.669417: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
84991          <idle>-0     (-----) [000] d.h5 82316.669425: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
84992           <...>-27736 (-----) [005] dn.5 82316.669427: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
84993           <...>-27736 (-----) [005] d..2 82316.669433: sched_switch: prev_comm=id.nn.benchmark prev_pid=27736 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
84994          <idle>-0     (-----) [000] d.h6 82316.669441: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
84995<...>-770 ( 770) [005] .... 82316.669444: binder_transaction_received: transaction=1571016
84996          <idle>-0     (-----) [002] .n.1 82316.669447: cpu_idle: state=4294967295 cpu_id=2
84997          <idle>-0     (-----) [000] ...1 82316.669458: cpu_idle: state=4294967295 cpu_id=0
84998          <idle>-0     (-----) [002] d..2 82316.669459: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
84999          <idle>-0     (-----) [000] d..1 82316.669462: cpu_idle: state=0 cpu_id=0
85000<...>-770 ( 770) [005] ...1 82316.669465: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
85001  crtc_event:111-322   (  322) [002] d..2 82316.669486: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85002          <idle>-0     (-----) [002] d..1 82316.669498: cpu_idle: state=0 cpu_id=2
85003<...>-770 ( 770) [005] d..2 82316.669536: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
85004          <idle>-0     (-----) [000] dnh2 82316.669564: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
85005          <idle>-0     (-----) [000] .n.1 82316.669570: cpu_idle: state=4294967295 cpu_id=0
85006<...>-770 ( 770) [005] ...1 82316.669577: tracing_mark_write: E|770
85007          <idle>-0     (-----) [000] d..2 82316.669578: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
85008<...>-770 ( 770) [005] .... 82316.669585: binder_transaction: transaction=1571017 dest_node=0 dest_proc=27550 dest_thread=27736 reply=1 flags=0x0 code=0x0
85009<...>-770 ( 770) [005] .... 82316.669588: binder_transaction_alloc_buf: transaction=1571017 data_size=168 offsets_size=32
85010<...>-770 ( 770) [005] .... 82316.669594: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
85011<...>-770 ( 770) [005] d..2 82316.669630: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27736 next_prio=110
85012           <...>-27736 (-----) [005] .... 82316.669641: binder_transaction_received: transaction=1571017
85013<...>-581 ( 571) [000] d..2 82316.669656: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85014          <idle>-0     (-----) [000] d..1 82316.669667: cpu_idle: state=0 cpu_id=0
85015           <...>-27736 (-----) [005] ...1 82316.669710: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
85016           <...>-27736 (-----) [005] ...1 82316.669715: tracing_mark_write: E|27550
85017           <...>-27736 (-----) [005] .... 82316.669730: binder_transaction: transaction=1571018 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
85018           <...>-27736 (-----) [005] .... 82316.669732: binder_transaction_alloc_buf: transaction=1571018 data_size=48 offsets_size=0
85019           <...>-27736 (-----) [005] ...2 82316.669735: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
85020           <...>-27736 (-----) [005] d..4 82316.669737: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
85021           <...>-27736 (-----) [005] dn.5 82316.669747: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
85022           <...>-27736 (-----) [005] d..2 82316.669754: sched_switch: prev_comm=id.nn.benchmark prev_pid=27736 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
85023<...>-770 ( 770) [005] .... 82316.669762: binder_transaction_received: transaction=1571018
85024<...>-770 ( 770) [005] ...1 82316.669779: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
85025<...>-770 ( 770) [005] d..2 82316.669837: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
85026          <idle>-0     (-----) [000] dnh2 82316.669860: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
85027          <idle>-0     (-----) [000] .n.1 82316.669867: cpu_idle: state=4294967295 cpu_id=0
85028<...>-770 ( 770) [005] ...1 82316.669870: tracing_mark_write: E|770
85029          <idle>-0     (-----) [000] d..2 82316.669875: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
85030<...>-770 ( 770) [005] .... 82316.669878: binder_transaction: transaction=1571019 dest_node=0 dest_proc=27550 dest_thread=27736 reply=1 flags=0x0 code=0x0
85031<...>-770 ( 770) [005] .... 82316.669880: binder_transaction_alloc_buf: transaction=1571019 data_size=168 offsets_size=32
85032<...>-770 ( 770) [005] .... 82316.669886: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
85033<...>-770 ( 770) [005] d..2 82316.669920: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27736 next_prio=110
85034<...>-581 ( 571) [000] d..2 82316.669929: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85035           <...>-27736 (-----) [005] .... 82316.669930: binder_transaction_received: transaction=1571019
85036          <idle>-0     (-----) [000] d..1 82316.669938: cpu_idle: state=0 cpu_id=0
85037           <...>-27736 (-----) [005] ...1 82316.670203: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
85038           <...>-27736 (-----) [005] ...1 82316.670214: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
85039           <...>-27736 (-----) [005] ...1 82316.670218: tracing_mark_write: E|27550
85040           <...>-27736 (-----) [005] .... 82316.670280: binder_transaction: transaction=1571020 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
85041           <...>-27736 (-----) [005] .... 82316.670284: binder_transaction_alloc_buf: transaction=1571020 data_size=556 offsets_size=104
85042           <...>-27736 (-----) [005] ...2 82316.670297: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
85043           <...>-27736 (-----) [005] d..4 82316.670299: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85044           <...>-27736 (-----) [005] dn.5 82316.670311: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85045           <...>-27736 (-----) [005] d..2 82316.670318: sched_switch: prev_comm=id.nn.benchmark prev_pid=27736 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85046<...>-5340 ( 788) [005] .... 82316.670328: binder_transaction_received: transaction=1571020
85047<...>-5340 ( 788) [005] ...1 82316.670371: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
85048<...>-5340 ( 788) [005] d..2 82316.670415: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85049<...>-5340 ( 788) [005] d..2 82316.670441: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27736 next_prio=110
85050          <idle>-0     (-----) [000] dnh2 82316.670443: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85051          <idle>-0     (-----) [000] .n.1 82316.670449: cpu_idle: state=4294967295 cpu_id=0
85052          <idle>-0     (-----) [000] d..2 82316.670458: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
85053           <...>-27736 (-----) [005] d..2 82316.670463: sched_switch: prev_comm=id.nn.benchmark prev_pid=27736 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
85054          <idle>-0     (-----) [005] d..1 82316.670481: cpu_idle: state=0 cpu_id=5
85055<...>-87 ( 87) [000] d..2 82316.670499: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85056          <idle>-0     (-----) [000] d..1 82316.670507: cpu_idle: state=0 cpu_id=0
85057          <idle>-0     (-----) [002] d.h4 82316.670508: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85058          <idle>-0     (-----) [002] dnh5 82316.670524: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85059          <idle>-0     (-----) [002] .n.1 82316.670534: cpu_idle: state=4294967295 cpu_id=2
85060          <idle>-0     (-----) [002] d..2 82316.670546: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
85061<...>-86 ( 86) [002] d..2 82316.670578: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85062          <idle>-0     (-----) [002] d.h5 82316.670599: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85063          <idle>-0     (-----) [005] dnh2 82316.670621: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85064          <idle>-0     (-----) [005] .n.1 82316.670625: cpu_idle: state=4294967295 cpu_id=5
85065          <idle>-0     (-----) [005] d..2 82316.670634: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85066          <idle>-0     (-----) [002] d..1 82316.670645: cpu_idle: state=0 cpu_id=2
85067<...>-5340 ( 788) [005] d..1 82316.670687: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85068          <idle>-0     (-----) [000] dnh2 82316.670712: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85069          <idle>-0     (-----) [000] .n.1 82316.670718: cpu_idle: state=4294967295 cpu_id=0
85070          <idle>-0     (-----) [000] d..2 82316.670725: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
85071 neuralnetworks@-13088 (  788) [000] d..2 82316.670771: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85072          <idle>-0     (-----) [000] d..1 82316.670780: cpu_idle: state=0 cpu_id=0
85073<...>-5340 ( 788) [005] d..2 82316.670834: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85074          <idle>-0     (-----) [000] dnh2 82316.670855: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85075<...>-5340 ( 788) [005] d..2 82316.670859: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
85076          <idle>-0     (-----) [000] .n.1 82316.670861: cpu_idle: state=4294967295 cpu_id=0
85077          <idle>-0     (-----) [000] d..2 82316.670869: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
85078          <idle>-0     (-----) [005] d..1 82316.670873: cpu_idle: state=0 cpu_id=5
85079          <idle>-0     (-----) [002] d.h4 82316.670906: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85080<...>-87 ( 87) [000] d..2 82316.670906: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85081          <idle>-0     (-----) [000] d..1 82316.670914: cpu_idle: state=0 cpu_id=0
85082          <idle>-0     (-----) [002] dnh5 82316.670916: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85083          <idle>-0     (-----) [002] .n.1 82316.670926: cpu_idle: state=4294967295 cpu_id=2
85084          <idle>-0     (-----) [002] d..2 82316.670937: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
85085<...>-86 ( 86) [002] d..2 82316.670969: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85086          <idle>-0     (-----) [002] d..1 82316.670981: cpu_idle: state=0 cpu_id=2
85087          <idle>-0     (-----) [005] ...1 82316.671195: cpu_idle: state=4294967295 cpu_id=5
85088          <idle>-0     (-----) [005] d..1 82316.671199: cpu_idle: state=0 cpu_id=5
85089          <idle>-0     (-----) [001] d.h2 82316.671263: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
85090          <idle>-0     (-----) [001] dnh3 82316.671278: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
85091          <idle>-0     (-----) [001] .n.1 82316.671286: cpu_idle: state=4294967295 cpu_id=1
85092          <idle>-0     (-----) [001] d..2 82316.671297: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
85093        DispSync-8879  ( 8858) [001] d..1 82316.671324: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
85094        DispSync-8879  ( 8858) [001] d..2 82316.671342: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
85095          <idle>-0     (-----) [003] .n.1 82316.671347: cpu_idle: state=4294967295 cpu_id=3
85096          <idle>-0     (-----) [003] d..2 82316.671356: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
85097        DispSync-8879  ( 8858) [001] d..2 82316.671378: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85098          <idle>-0     (-----) [001] d..1 82316.671391: cpu_idle: state=0 cpu_id=1
85099  appEventThread-8881  ( 8858) [003] d..3 82316.671404: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
85100  appEventThread-8881  ( 8858) [003] d..4 82316.671424: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
85101          <idle>-0     (-----) [000] .n.1 82316.671429: cpu_idle: state=4294967295 cpu_id=0
85102          <idle>-0     (-----) [000] d..2 82316.671439: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
85103  appEventThread-8881  ( 8858) [003] d..2 82316.671465: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85104          <idle>-0     (-----) [003] d..1 82316.671475: cpu_idle: state=0 cpu_id=3
85105<...>-9105 ( 9105) [000] .... 82316.671765: binder_transaction: transaction=1571023 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
85106<...>-9105 ( 9105) [000] d.s2 82316.671816: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
85107<...>-9105 ( 9105) [000] d.s3 82316.671879: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
85108          <idle>-0     (-----) [003] d.s2 82316.671880: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
85109          <idle>-0     (-----) [002] .n.1 82316.671885: cpu_idle: state=4294967295 cpu_id=2
85110<...>-9105 ( 9105) [000] .... 82316.671889: binder_transaction_alloc_buf: transaction=1571023 data_size=80 offsets_size=0
85111<...>-9105 ( 9105) [000] d..4 82316.671895: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
85112          <idle>-0     (-----) [002] d..2 82316.671897: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
85113          <idle>-0     (-----) [003] dns3 82316.671898: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
85114          <idle>-0     (-----) [003] .n.1 82316.671910: cpu_idle: state=4294967295 cpu_id=3
85115<...>-9105 ( 9105) [000] d..5 82316.671916: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
85116          <idle>-0     (-----) [003] d..2 82316.671919: 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
85117          <idle>-0     (-----) [001] .n.1 82316.671922: cpu_idle: state=4294967295 cpu_id=1
85118  crtc_event:111-322   (  322) [002] d..2 82316.671933: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85119          <idle>-0     (-----) [001] d..2 82316.671936: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
85120          <idle>-0     (-----) [002] d..1 82316.671944: cpu_idle: state=0 cpu_id=2
85121<...>-13083 ( 8858) [001] .... 82316.671944: binder_transaction_received: transaction=1571023
85122<...>-8 ( 8) [003] d..2 82316.671950: 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
85123<...>-9105 ( 9105) [000] d..3 82316.671959: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
85124          <idle>-0     (-----) [003] d..1 82316.671959: cpu_idle: state=0 cpu_id=3
85125<...>-13083 ( 8858) [001] d..1 82316.671979: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
85126<...>-9105 ( 9105) [000] d..4 82316.671986: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
85127          <idle>-0     (-----) [002] .n.1 82316.671992: cpu_idle: state=4294967295 cpu_id=2
85128<...>-13083 ( 8858) [001] d..2 82316.671998: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
85129          <idle>-0     (-----) [002] d..2 82316.672003: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
85130          <idle>-0     (-----) [003] .n.1 82316.672003: cpu_idle: state=4294967295 cpu_id=3
85131          <idle>-0     (-----) [003] d..2 82316.672011: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
85132<...>-13083 ( 8858) [001] d..2 82316.672043: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85133    RenderThread-9436  ( 9105) [002] d..2 82316.672053: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85134          <idle>-0     (-----) [001] d..1 82316.672056: cpu_idle: state=0 cpu_id=1
85135  appEventThread-8881  ( 8858) [003] d..2 82316.672057: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85136          <idle>-0     (-----) [002] d..1 82316.672065: cpu_idle: state=0 cpu_id=2
85137          <idle>-0     (-----) [003] d..1 82316.672065: cpu_idle: state=0 cpu_id=3
85138<...>-9105 ( 9105) [000] d..3 82316.672109: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
85139<...>-9105 ( 9105) [000] d..4 82316.672128: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
85140          <idle>-0     (-----) [002] .n.1 82316.672134: cpu_idle: state=4294967295 cpu_id=2
85141          <idle>-0     (-----) [002] d..2 82316.672145: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
85142<...>-9105 ( 9105) [000] d..2 82316.672162: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85143          <idle>-0     (-----) [000] d..1 82316.672182: cpu_idle: state=0 cpu_id=0
85144    RenderThread-9436  ( 9105) [002] d..1 82316.672253: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
85145    RenderThread-9436  ( 9105) [002] d..2 82316.672272: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
85146          <idle>-0     (-----) [000] .n.1 82316.672279: cpu_idle: state=4294967295 cpu_id=0
85147          <idle>-0     (-----) [000] d..2 82316.672292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
85148    RenderThread-9436  ( 9105) [002] .... 82316.672337: binder_transaction: transaction=1571024 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
85149    RenderThread-9436  ( 9105) [002] .... 82316.672342: binder_transaction_alloc_buf: transaction=1571024 data_size=104 offsets_size=0
85150    RenderThread-9436  ( 9105) [002] d..4 82316.672347: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
85151    RenderThread-9436  ( 9105) [002] dn.5 82316.672367: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
85152<...>-9105 ( 9105) [000] d..2 82316.672374: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85153    RenderThread-9436  ( 9105) [002] d..2 82316.672378: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
85154<...>-13083 ( 8858) [002] .... 82316.672386: binder_transaction_received: transaction=1571024
85155          <idle>-0     (-----) [000] d..1 82316.672390: cpu_idle: state=0 cpu_id=0
85156<...>-13083 ( 8858) [002] .... 82316.672463: binder_transaction: transaction=1571025 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
85157<...>-13083 ( 8858) [002] .... 82316.672468: binder_transaction_alloc_buf: transaction=1571025 data_size=52 offsets_size=8
85158<...>-13083 ( 8858) [002] d..2 82316.672520: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
85159    RenderThread-9436  ( 9105) [002] .... 82316.672529: binder_transaction_received: transaction=1571025
85160    RenderThread-9436  ( 9105) [002] d.h3 82316.672564: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85161          <idle>-0     (-----) [005] dnh2 82316.672588: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85162          <idle>-0     (-----) [005] .n.1 82316.672592: cpu_idle: state=4294967295 cpu_id=5
85163          <idle>-0     (-----) [005] d..2 82316.672600: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85164<...>-5340 ( 788) [005] d..1 82316.672651: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85165          <idle>-0     (-----) [000] dnh2 82316.672679: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85166          <idle>-0     (-----) [000] .n.1 82316.672686: cpu_idle: state=4294967295 cpu_id=0
85167          <idle>-0     (-----) [000] d..2 82316.672707: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
85168<...>-5340 ( 788) [005] ...1 82316.672743: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
85169<...>-5340 ( 788) [005] ...1 82316.672747: tracing_mark_write: E|788
85170<...>-5340 ( 788) [005] .... 82316.672762: binder_transaction: transaction=1571026 dest_node=1571021 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
85171<...>-5340 ( 788) [005] .... 82316.672765: binder_transaction_alloc_buf: transaction=1571026 data_size=60 offsets_size=0
85172<...>-5340 ( 788) [005] d..4 82316.672769: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
85173 neuralnetworks@-13088 (  788) [000] d..2 82316.672771: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85174<...>-5340 ( 788) [005] d..5 82316.672782: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
85175          <idle>-0     (-----) [000] d..1 82316.672785: cpu_idle: state=0 cpu_id=0
85176          <idle>-0     (-----) [004] .n.1 82316.672788: cpu_idle: state=4294967295 cpu_id=4
85177          <idle>-0     (-----) [004] d..2 82316.672796: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
85178           <...>-27571 (-----) [004] .... 82316.672801: binder_transaction_received: transaction=1571026
85179<...>-5340 ( 788) [005] ...1 82316.672805: tracing_mark_write: E|788
85180<...>-5340 ( 788) [005] .... 82316.672811: binder_transaction: transaction=1571027 dest_node=0 dest_proc=27550 dest_thread=27736 reply=1 flags=0x0 code=0x0
85181<...>-5340 ( 788) [005] .... 82316.672813: binder_transaction_alloc_buf: transaction=1571027 data_size=8 offsets_size=0
85182<...>-5340 ( 788) [005] d..2 82316.672815: sched_waking: comm=id.nn.benchmark pid=27736 prio=110 target_cpu=005
85183           <...>-27571 (-----) [004] ...1 82316.672821: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
85184<...>-5340 ( 788) [005] d..3 82316.672823: sched_wakeup: comm=id.nn.benchmark pid=27736 prio=110 target_cpu=005
85185<...>-5340 ( 788) [005] .... 82316.672825: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
85186           <...>-27571 (-----) [004] ...1 82316.672827: tracing_mark_write: E|27550
85187           <...>-27571 (-----) [004] d..2 82316.672856: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85188          <idle>-0     (-----) [004] d..1 82316.672863: cpu_idle: state=0 cpu_id=4
85189<...>-5340 ( 788) [005] d..2 82316.672866: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27736 next_prio=110
85190           <...>-27736 (-----) [005] .... 82316.672876: binder_transaction_received: transaction=1571027
85191           <...>-27736 (-----) [005] ...1 82316.672913: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
85192           <...>-27736 (-----) [005] ...1 82316.672919: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
85193           <...>-27736 (-----) [005] ...1 82316.672945: tracing_mark_write: E|27550
85194           <...>-27736 (-----) [005] ...1 82316.672948: tracing_mark_write: E|27550
85195           <...>-27736 (-----) [005] ...1 82316.672952: tracing_mark_write: E|27550
85196           <...>-27736 (-----) [005] ...1 82316.673137: tracing_mark_write: E|27550
85197           <...>-27736 (-----) [005] d..1 82316.673150: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85198           <...>-27736 (-----) [005] d..2 82316.673167: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85199          <idle>-0     (-----) [004] .n.1 82316.673173: cpu_idle: state=4294967295 cpu_id=4
85200          <idle>-0     (-----) [004] d..2 82316.673179: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
85201           <...>-27550 (-----) [004] d..2 82316.673200: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85202          <idle>-0     (-----) [004] d..1 82316.673208: cpu_idle: state=0 cpu_id=4
85203           <...>-27736 (-----) [005] d..1 82316.673255: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85204           <...>-27736 (-----) [005] d..2 82316.673265: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85205          <idle>-0     (-----) [004] .n.1 82316.673270: cpu_idle: state=4294967295 cpu_id=4
85206          <idle>-0     (-----) [004] d..2 82316.673278: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
85207           <...>-27736 (-----) [005] d..2 82316.673304: sched_switch: prev_comm=id.nn.benchmark prev_pid=27736 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
85208           <...>-27550 (-----) [004] ...1 82316.673311: tracing_mark_write: E|27550
85209           <...>-27550 (-----) [004] ...1 82316.673315: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
85210           <...>-27550 (-----) [004] ...1 82316.673321: tracing_mark_write: E|27550
85211           <...>-27550 (-----) [004] ...1 82316.673324: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
85212          <idle>-0     (-----) [005] d..1 82316.673324: cpu_idle: state=0 cpu_id=5
85213           <...>-27550 (-----) [004] ...1 82316.673328: tracing_mark_write: E|27550
85214           <...>-27550 (-----) [004] ...1 82316.673332: tracing_mark_write: E|27550
85215           <...>-27550 (-----) [004] ...1 82316.673444: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
85216           <...>-27550 (-----) [004] ...1 82316.673501: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
85217           <...>-27550 (-----) [004] ...1 82316.673506: tracing_mark_write: E|27550
85218           <...>-27550 (-----) [004] ...1 82316.673509: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
85219           <...>-27550 (-----) [004] ...1 82316.673514: tracing_mark_write: E|27550
85220           <...>-27550 (-----) [004] ...1 82316.673518: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
85221           <...>-27550 (-----) [004] ...1 82316.673521: tracing_mark_write: E|27550
85222           <...>-27550 (-----) [004] ...1 82316.673524: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
85223          <idle>-0     (-----) [005] .n.1 82316.673618: cpu_idle: state=4294967295 cpu_id=5
85224           <...>-27550 (-----) [004] ...1 82316.673618: tracing_mark_write: E|27550
85225           <...>-27550 (-----) [004] ...1 82316.673623: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
85226          <idle>-0     (-----) [005] d..2 82316.673626: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27737 next_prio=110
85227           <...>-27550 (-----) [004] d..2 82316.673639: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85228          <idle>-0     (-----) [004] d..1 82316.673653: cpu_idle: state=0 cpu_id=4
85229    RenderThread-9436  ( 9105) [002] d..2 82316.673674: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
85230           <...>-27737 (-----) [005] ...1 82316.673688: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
85231          <idle>-0     (-----) [002] d..1 82316.673690: cpu_idle: state=0 cpu_id=2
85232           <...>-27737 (-----) [005] ...1 82316.673703: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
85233           <...>-27737 (-----) [005] ...1 82316.673707: tracing_mark_write: E|27550
85234           <...>-27737 (-----) [005] .... 82316.673728: binder_transaction: transaction=1571028 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
85235           <...>-27737 (-----) [005] .... 82316.673731: binder_transaction_alloc_buf: transaction=1571028 data_size=48 offsets_size=0
85236           <...>-27737 (-----) [005] ...2 82316.673734: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
85237           <...>-27737 (-----) [005] d..4 82316.673737: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
85238           <...>-27737 (-----) [005] dn.5 82316.673748: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
85239          <idle>-0     (-----) [002] d.h2 82316.673754: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
85240           <...>-27737 (-----) [005] d..2 82316.673755: sched_switch: prev_comm=id.nn.benchmark prev_pid=27737 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
85241<...>-770 ( 770) [005] .... 82316.673765: binder_transaction_received: transaction=1571028
85242          <idle>-0     (-----) [002] d.h3 82316.673765: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
85243          <idle>-0     (-----) [002] dnh3 82316.673771: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
85244          <idle>-0     (-----) [002] .n.1 82316.673780: cpu_idle: state=4294967295 cpu_id=2
85245<...>-770 ( 770) [005] ...1 82316.673789: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
85246          <idle>-0     (-----) [000] d.h3 82316.673791: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
85247          <idle>-0     (-----) [002] d..2 82316.673793: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
85248          <idle>-0     (-----) [000] dnh4 82316.673809: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
85249          <idle>-0     (-----) [000] .n.1 82316.673823: cpu_idle: state=4294967295 cpu_id=0
85250          <idle>-0     (-----) [000] d..2 82316.673834: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
85251<...>-770 ( 770) [005] d..2 82316.673868: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
85252 kgsl_worker_thr-258   (  258) [000] d..2 82316.673886: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
85253<...>-770 ( 770) [005] ...1 82316.673910: tracing_mark_write: E|770
85254<...>-770 ( 770) [005] .... 82316.673918: binder_transaction: transaction=1571029 dest_node=0 dest_proc=27550 dest_thread=27737 reply=1 flags=0x0 code=0x0
85255<...>-770 ( 770) [005] .... 82316.673921: binder_transaction_alloc_buf: transaction=1571029 data_size=168 offsets_size=32
85256<...>-770 ( 770) [005] .... 82316.673927: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
85257 kgsl_worker_thr-258   (  258) [000] d..3 82316.673931: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
85258 kgsl_worker_thr-258   (  258) [000] d.h1 82316.673941: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
85259 kgsl_worker_thr-258   (  258) [000] d..2 82316.673958: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
85260<...>-770 ( 770) [005] d..2 82316.673963: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27737 next_prio=110
85261           <...>-27737 (-----) [005] .... 82316.673973: binder_transaction_received: transaction=1571029
85262    RenderThread-9436  ( 9105) [002] .... 82316.673994: binder_transaction: transaction=1571030 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
85263  kworker/u16:15-1311  ( 1311) [000] d..2 82316.673995: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
85264    RenderThread-9436  ( 9105) [002] .... 82316.674000: binder_transaction_alloc_buf: transaction=1571030 data_size=192 offsets_size=8
85265    RenderThread-9436  ( 9105) [002] d..4 82316.674011: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
85266    RenderThread-9436  ( 9105) [002] dn.5 82316.674028: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
85267    RenderThread-9436  ( 9105) [002] d..2 82316.674038: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
85268           <...>-27737 (-----) [005] ...1 82316.674046: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
85269<...>-13083 ( 8858) [002] .... 82316.674047: binder_transaction_received: transaction=1571030
85270           <...>-27737 (-----) [005] ...1 82316.674051: tracing_mark_write: E|27550
85271           <...>-27737 (-----) [005] .... 82316.674066: binder_transaction: transaction=1571031 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
85272           <...>-27737 (-----) [005] .... 82316.674069: binder_transaction_alloc_buf: transaction=1571031 data_size=48 offsets_size=0
85273           <...>-27737 (-----) [005] ...2 82316.674072: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
85274           <...>-27737 (-----) [005] d..4 82316.674074: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
85275           <...>-27737 (-----) [005] dn.5 82316.674083: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
85276           <...>-27737 (-----) [005] d..2 82316.674090: sched_switch: prev_comm=id.nn.benchmark prev_pid=27737 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
85277<...>-581 ( 571) [000] d..2 82316.674096: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85278<...>-770 ( 770) [005] .... 82316.674098: binder_transaction_received: transaction=1571031
85279<...>-770 ( 770) [005] ...1 82316.674115: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
85280          <idle>-0     (-----) [000] d..1 82316.674115: cpu_idle: state=0 cpu_id=0
85281<...>-770 ( 770) [005] d..2 82316.674172: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
85282          <idle>-0     (-----) [000] dnh2 82316.674198: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
85283<...>-13083 ( 8858) [002] .... 82316.674201: binder_transaction: transaction=1571032 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
85284<...>-770 ( 770) [005] ...1 82316.674205: tracing_mark_write: E|770
85285          <idle>-0     (-----) [000] .n.1 82316.674206: cpu_idle: state=4294967295 cpu_id=0
85286<...>-13083 ( 8858) [002] .... 82316.674207: binder_transaction_alloc_buf: transaction=1571032 data_size=68 offsets_size=0
85287<...>-770 ( 770) [005] .... 82316.674214: binder_transaction: transaction=1571033 dest_node=0 dest_proc=27550 dest_thread=27737 reply=1 flags=0x0 code=0x0
85288<...>-770 ( 770) [005] .... 82316.674216: binder_transaction_alloc_buf: transaction=1571033 data_size=168 offsets_size=32
85289          <idle>-0     (-----) [000] d..2 82316.674218: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
85290<...>-770 ( 770) [005] .... 82316.674222: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
85291<...>-13083 ( 8858) [002] d..2 82316.674251: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
85292<...>-770 ( 770) [005] d..2 82316.674256: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27737 next_prio=110
85293    RenderThread-9436  ( 9105) [002] .... 82316.674261: binder_transaction_received: transaction=1571032
85294           <...>-27737 (-----) [005] .... 82316.674267: binder_transaction_received: transaction=1571033
85295<...>-581 ( 571) [000] d..2 82316.674276: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85296          <idle>-0     (-----) [000] d..1 82316.674291: cpu_idle: state=0 cpu_id=0
85297    RenderThread-9436  ( 9105) [002] d..2 82316.674356: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85298          <idle>-0     (-----) [002] d..1 82316.674375: cpu_idle: state=0 cpu_id=2
85299           <...>-27737 (-----) [005] ...1 82316.674546: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
85300           <...>-27737 (-----) [005] ...1 82316.674556: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
85301           <...>-27737 (-----) [005] ...1 82316.674560: tracing_mark_write: E|27550
85302           <...>-27737 (-----) [005] .... 82316.674623: binder_transaction: transaction=1571034 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
85303           <...>-27737 (-----) [005] .... 82316.674627: binder_transaction_alloc_buf: transaction=1571034 data_size=556 offsets_size=104
85304           <...>-27737 (-----) [005] ...2 82316.674641: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
85305           <...>-27737 (-----) [005] d..4 82316.674643: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85306           <...>-27737 (-----) [005] dn.5 82316.674654: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85307           <...>-27737 (-----) [005] d..2 82316.674661: sched_switch: prev_comm=id.nn.benchmark prev_pid=27737 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85308<...>-5340 ( 788) [005] .... 82316.674671: binder_transaction_received: transaction=1571034
85309<...>-5340 ( 788) [005] ...1 82316.674718: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
85310<...>-5340 ( 788) [005] d..2 82316.674766: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85311<...>-5340 ( 788) [005] d..2 82316.674791: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27737 next_prio=110
85312          <idle>-0     (-----) [000] dnh2 82316.674795: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85313          <idle>-0     (-----) [000] .n.1 82316.674802: cpu_idle: state=4294967295 cpu_id=0
85314          <idle>-0     (-----) [000] d..2 82316.674814: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
85315           <...>-27737 (-----) [005] d..2 82316.674814: sched_switch: prev_comm=id.nn.benchmark prev_pid=27737 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
85316          <idle>-0     (-----) [005] d..1 82316.674832: cpu_idle: state=0 cpu_id=5
85317<...>-87 ( 87) [000] d..2 82316.674858: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85318          <idle>-0     (-----) [000] d..1 82316.674871: cpu_idle: state=0 cpu_id=0
85319          <idle>-0     (-----) [002] d.h4 82316.674871: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85320          <idle>-0     (-----) [002] dnh5 82316.674893: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85321          <idle>-0     (-----) [002] .n.1 82316.674904: cpu_idle: state=4294967295 cpu_id=2
85322          <idle>-0     (-----) [002] d..2 82316.674917: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
85323<...>-86 ( 86) [002] d.h4 82316.674948: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85324          <idle>-0     (-----) [005] dnh2 82316.674970: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85325          <idle>-0     (-----) [005] .n.1 82316.674974: cpu_idle: state=4294967295 cpu_id=5
85326          <idle>-0     (-----) [005] d..2 82316.674982: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85327<...>-86 ( 86) [002] d..2 82316.675010: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85328          <idle>-0     (-----) [002] d..1 82316.675024: cpu_idle: state=0 cpu_id=2
85329<...>-5340 ( 788) [005] d..1 82316.675037: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85330          <idle>-0     (-----) [000] dnh2 82316.675062: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85331          <idle>-0     (-----) [000] .n.1 82316.675069: cpu_idle: state=4294967295 cpu_id=0
85332          <idle>-0     (-----) [000] d..2 82316.675080: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
85333          <idle>-0     (-----) [003] d.s2 82316.675138: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85334          <idle>-0     (-----) [003] dns3 82316.675157: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85335 neuralnetworks@-13088 (  788) [000] d..2 82316.675173: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85336          <idle>-0     (-----) [003] .n.1 82316.675175: cpu_idle: state=4294967295 cpu_id=3
85337          <idle>-0     (-----) [003] d..2 82316.675184: 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
85338          <idle>-0     (-----) [000] d..1 82316.675190: cpu_idle: state=0 cpu_id=0
85339     rcu_preempt-7     (    7) [003] d..2 82316.675213: 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
85340<...>-5340 ( 788) [005] d..2 82316.675219: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85341          <idle>-0     (-----) [003] d..1 82316.675222: cpu_idle: state=0 cpu_id=3
85342          <idle>-0     (-----) [000] dnh2 82316.675243: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85343<...>-5340 ( 788) [005] d..2 82316.675244: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
85344          <idle>-0     (-----) [000] .n.1 82316.675250: cpu_idle: state=4294967295 cpu_id=0
85345          <idle>-0     (-----) [005] d..1 82316.675259: cpu_idle: state=0 cpu_id=5
85346          <idle>-0     (-----) [000] d..2 82316.675261: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
85347          <idle>-0     (-----) [001] d.h2 82316.675268: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
85348          <idle>-0     (-----) [001] dnh3 82316.675282: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
85349          <idle>-0     (-----) [001] .n.1 82316.675291: cpu_idle: state=4294967295 cpu_id=1
85350<...>-87 ( 87) [000] d..2 82316.675301: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85351          <idle>-0     (-----) [002] d.h4 82316.675302: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85352          <idle>-0     (-----) [001] d..2 82316.675302: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
85353          <idle>-0     (-----) [002] dnh5 82316.675313: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85354          <idle>-0     (-----) [000] d..1 82316.675314: cpu_idle: state=0 cpu_id=0
85355        DispSync-8879  ( 8858) [001] d..1 82316.675318: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
85356          <idle>-0     (-----) [002] .n.1 82316.675322: cpu_idle: state=4294967295 cpu_id=2
85357          <idle>-0     (-----) [002] d..2 82316.675334: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
85358        DispSync-8879  ( 8858) [001] d..2 82316.675335: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
85359          <idle>-0     (-----) [003] .n.1 82316.675340: cpu_idle: state=4294967295 cpu_id=3
85360          <idle>-0     (-----) [003] d..2 82316.675348: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
85361        DispSync-8879  ( 8858) [001] d..2 82316.675365: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85362<...>-86 ( 86) [002] d..2 82316.675367: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85363          <idle>-0     (-----) [001] d..1 82316.675377: cpu_idle: state=0 cpu_id=1
85364          <idle>-0     (-----) [002] d..1 82316.675379: cpu_idle: state=0 cpu_id=2
85365   sfEventThread-8882  ( 8858) [003] d..3 82316.675383: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
85366   sfEventThread-8882  ( 8858) [003] d..4 82316.675403: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
85367          <idle>-0     (-----) [000] .n.1 82316.675409: cpu_idle: state=4294967295 cpu_id=0
85368          <idle>-0     (-----) [000] d..2 82316.675419: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
85369   sfEventThread-8882  ( 8858) [003] d..2 82316.675435: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85370          <idle>-0     (-----) [003] d..1 82316.675445: cpu_idle: state=0 cpu_id=3
85371          <idle>-0     (-----) [005] ...1 82316.675577: cpu_idle: state=4294967295 cpu_id=5
85372          <idle>-0     (-----) [005] d..1 82316.675581: cpu_idle: state=0 cpu_id=5
85373  surfaceflinger-8858  ( 8858) [000] d..1 82316.675774: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
85374  surfaceflinger-8858  ( 8858) [000] d..2 82316.675798: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
85375          <idle>-0     (-----) [003] .n.1 82316.675803: cpu_idle: state=4294967295 cpu_id=3
85376          <idle>-0     (-----) [003] d..2 82316.675811: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
85377   sfEventThread-8882  ( 8858) [003] d..2 82316.675843: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85378          <idle>-0     (-----) [003] d..1 82316.675851: cpu_idle: state=0 cpu_id=3
85379  surfaceflinger-8858  ( 8858) [000] ...1 82316.675991: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
85380  surfaceflinger-8858  ( 8858) [000] ...1 82316.675998: tracing_mark_write: E|8858
85381  surfaceflinger-8858  ( 8858) [000] .... 82316.676053: binder_transaction: transaction=1571037 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
85382  surfaceflinger-8858  ( 8858) [000] .... 82316.676058: binder_transaction_alloc_buf: transaction=1571037 data_size=540 offsets_size=96
85383  surfaceflinger-8858  ( 8858) [000] ...2 82316.676083: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
85384  surfaceflinger-8858  ( 8858) [000] d..4 82316.676092: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
85385  surfaceflinger-8858  ( 8858) [000] d..5 82316.676113: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
85386          <idle>-0     (-----) [001] .n.1 82316.676118: cpu_idle: state=4294967295 cpu_id=1
85387          <idle>-0     (-----) [001] d..2 82316.676129: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
85388 [email protected]   (  619) [001] .... 82316.676139: binder_transaction_received: transaction=1571037
85389  surfaceflinger-8858  ( 8858) [000] d..2 82316.676145: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85390          <idle>-0     (-----) [000] d..1 82316.676165: cpu_idle: state=0 cpu_id=0
85391 [email protected]   (  619) [001] ...1 82316.676182: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
85392 [email protected]   (  619) [001] ...1 82316.676299: tracing_mark_write: B|619|HWCSession::PresentDisplay::
85393 [email protected]   (  619) [001] ...1 82316.676476: tracing_mark_write: B|619|HWDeviceDRM::Commit::
85394 [email protected]   (  619) [001] ...1 82316.676491: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
85395          <idle>-0     (-----) [002] ...1 82316.676573: cpu_idle: state=4294967295 cpu_id=2
85396          <idle>-0     (-----) [002] d..1 82316.676578: cpu_idle: state=0 cpu_id=2
85397          <idle>-0     (-----) [002] d.h4 82316.676944: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85398          <idle>-0     (-----) [005] dnh2 82316.676964: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85399          <idle>-0     (-----) [005] .n.1 82316.676967: cpu_idle: state=4294967295 cpu_id=5
85400          <idle>-0     (-----) [005] d..2 82316.676975: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85401          <idle>-0     (-----) [002] ...1 82316.676982: cpu_idle: state=4294967295 cpu_id=2
85402          <idle>-0     (-----) [002] d..1 82316.676989: cpu_idle: state=0 cpu_id=2
85403<...>-5340 ( 788) [005] d..1 82316.677027: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85404          <idle>-0     (-----) [000] dnh2 82316.677056: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85405          <idle>-0     (-----) [000] .n.1 82316.677064: cpu_idle: state=4294967295 cpu_id=0
85406          <idle>-0     (-----) [000] d..2 82316.677105: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
85407<...>-5340 ( 788) [005] ...1 82316.677119: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
85408<...>-5340 ( 788) [005] ...1 82316.677123: tracing_mark_write: E|788
85409<...>-5340 ( 788) [005] .... 82316.677140: binder_transaction: transaction=1571038 dest_node=1571035 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
85410 [email protected]   (  619) [001] d..2 82316.677141: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
85411<...>-5340 ( 788) [005] .... 82316.677143: binder_transaction_alloc_buf: transaction=1571038 data_size=60 offsets_size=0
85412<...>-5340 ( 788) [005] d..4 82316.677146: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
85413 neuralnetworks@-13088 (  788) [000] d..2 82316.677149: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85414<...>-5340 ( 788) [005] d..5 82316.677159: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
85415          <idle>-0     (-----) [000] d..1 82316.677164: cpu_idle: state=0 cpu_id=0
85416          <idle>-0     (-----) [004] .n.1 82316.677165: cpu_idle: state=4294967295 cpu_id=4
85417          <idle>-0     (-----) [004] d..2 82316.677173: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
85418 [email protected]   (  619) [001] d..3 82316.677175: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
85419           <...>-27571 (-----) [004] .... 82316.677178: binder_transaction_received: transaction=1571038
85420<...>-5340 ( 788) [005] ...1 82316.677181: tracing_mark_write: E|788
85421          <idle>-0     (-----) [000] .n.1 82316.677182: cpu_idle: state=4294967295 cpu_id=0
85422<...>-5340 ( 788) [005] .... 82316.677187: binder_transaction: transaction=1571039 dest_node=0 dest_proc=27550 dest_thread=27737 reply=1 flags=0x0 code=0x0
85423<...>-5340 ( 788) [005] .... 82316.677189: binder_transaction_alloc_buf: transaction=1571039 data_size=8 offsets_size=0
85424<...>-5340 ( 788) [005] d..2 82316.677191: sched_waking: comm=id.nn.benchmark pid=27737 prio=110 target_cpu=005
85425          <idle>-0     (-----) [000] d..2 82316.677192: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
85426           <...>-27571 (-----) [004] ...1 82316.677196: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
85427<...>-5340 ( 788) [005] d..3 82316.677198: sched_wakeup: comm=id.nn.benchmark pid=27737 prio=110 target_cpu=005
85428<...>-5340 ( 788) [005] .... 82316.677200: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
85429           <...>-27571 (-----) [004] ...1 82316.677202: tracing_mark_write: E|27550
85430           <...>-27571 (-----) [004] d..2 82316.677231: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85431          <idle>-0     (-----) [004] d..1 82316.677238: cpu_idle: state=0 cpu_id=4
85432<...>-5340 ( 788) [005] d..2 82316.677242: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27737 next_prio=110
85433           <...>-27737 (-----) [005] .... 82316.677252: binder_transaction_received: transaction=1571039
85434 [email protected]   (  619) [001] ...1 82316.677289: tracing_mark_write: E|619
85435           <...>-27737 (-----) [005] ...1 82316.677289: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
85436           <...>-27737 (-----) [005] ...1 82316.677295: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
85437 [email protected]   (  619) [001] ...1 82316.677296: tracing_mark_write: E|619
85438           <...>-27737 (-----) [005] ...1 82316.677321: tracing_mark_write: E|27550
85439           <...>-27737 (-----) [005] ...1 82316.677325: tracing_mark_write: E|27550
85440           <...>-27737 (-----) [005] ...1 82316.677328: tracing_mark_write: E|27550
85441 [email protected]   (  619) [001] ...1 82316.677364: tracing_mark_write: E|619
85442 [email protected]   (  619) [001] ...1 82316.677411: tracing_mark_write: E|619
85443 [email protected]   (  619) [001] .... 82316.677455: binder_transaction: transaction=1571040 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
85444 [email protected]   (  619) [001] .... 82316.677459: binder_transaction_alloc_buf: transaction=1571040 data_size=576 offsets_size=112
85445 [email protected]   (  619) [001] d..2 82316.677479: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
85446 [email protected]   (  619) [001] d..3 82316.677506: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
85447 [email protected]   (  619) [001] .... 82316.677511: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
85448          <idle>-0     (-----) [003] .n.1 82316.677511: cpu_idle: state=4294967295 cpu_id=3
85449           <...>-27737 (-----) [005] ...1 82316.677515: tracing_mark_write: E|27550
85450          <idle>-0     (-----) [003] d..2 82316.677518: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
85451  surfaceflinger-8858  ( 8858) [003] .... 82316.677527: binder_transaction_received: transaction=1571040
85452           <...>-27737 (-----) [005] d..1 82316.677527: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85453           <...>-27737 (-----) [005] d..2 82316.677543: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85454          <idle>-0     (-----) [004] .n.1 82316.677548: cpu_idle: state=4294967295 cpu_id=4
85455          <idle>-0     (-----) [004] d..2 82316.677555: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
85456           <...>-27550 (-----) [004] d..2 82316.677573: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85457          <idle>-0     (-----) [004] d..1 82316.677582: cpu_idle: state=0 cpu_id=4
85458 [email protected]   (  619) [001] d..2 82316.677598: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85459          <idle>-0     (-----) [001] d..1 82316.677617: cpu_idle: state=0 cpu_id=1
85460           <...>-27737 (-----) [005] d..1 82316.677630: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85461           <...>-27737 (-----) [005] d..2 82316.677639: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85462          <idle>-0     (-----) [004] .n.1 82316.677645: cpu_idle: state=4294967295 cpu_id=4
85463          <idle>-0     (-----) [004] d..2 82316.677652: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
85464           <...>-27737 (-----) [005] d..2 82316.677678: sched_switch: prev_comm=id.nn.benchmark prev_pid=27737 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
85465           <...>-27550 (-----) [004] ...1 82316.677699: tracing_mark_write: E|27550
85466           <...>-27550 (-----) [004] ...1 82316.677703: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
85467          <idle>-0     (-----) [005] d..1 82316.677706: cpu_idle: state=0 cpu_id=5
85468           <...>-27550 (-----) [004] ...1 82316.677709: tracing_mark_write: E|27550
85469           <...>-27550 (-----) [004] ...1 82316.677713: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
85470           <...>-27550 (-----) [004] ...1 82316.677717: tracing_mark_write: E|27550
85471           <...>-27550 (-----) [004] ...1 82316.677721: tracing_mark_write: E|27550
85472  surfaceflinger-8858  ( 8858) [003] d..2 82316.677733: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
85473  surfaceflinger-8858  ( 8858) [003] d..3 82316.677759: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
85474           <...>-27550 (-----) [004] ...1 82316.677833: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
85475           <...>-27550 (-----) [004] ...1 82316.677891: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
85476           <...>-27550 (-----) [004] ...1 82316.677896: tracing_mark_write: E|27550
85477           <...>-27550 (-----) [004] ...1 82316.677899: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
85478           <...>-27550 (-----) [004] ...1 82316.677904: tracing_mark_write: E|27550
85479           <...>-27550 (-----) [004] ...1 82316.677908: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
85480           <...>-27550 (-----) [004] ...1 82316.677912: tracing_mark_write: E|27550
85481           <...>-27550 (-----) [004] ...1 82316.677915: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
85482 crtc_commit:111-321   (  321) [000] d..2 82316.677924: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
85483         rcuop/2-29    (   29) [000] d..2 82316.677951: 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
85484          <idle>-0     (-----) [000] d..1 82316.677966: cpu_idle: state=0 cpu_id=0
85485  surfaceflinger-8858  ( 8858) [003] d..2 82316.677990: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85486          <idle>-0     (-----) [005] .n.1 82316.678003: cpu_idle: state=4294967295 cpu_id=5
85487          <idle>-0     (-----) [003] d..1 82316.678004: cpu_idle: state=0 cpu_id=3
85488           <...>-27550 (-----) [004] ...1 82316.678004: tracing_mark_write: E|27550
85489           <...>-27550 (-----) [004] ...1 82316.678009: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
85490          <idle>-0     (-----) [005] d..2 82316.678012: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27738 next_prio=110
85491           <...>-27550 (-----) [004] d..2 82316.678025: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85492          <idle>-0     (-----) [004] d..1 82316.678039: cpu_idle: state=0 cpu_id=4
85493           <...>-27738 (-----) [005] ...1 82316.678074: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
85494           <...>-27738 (-----) [005] ...1 82316.678089: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
85495           <...>-27738 (-----) [005] ...1 82316.678093: tracing_mark_write: E|27550
85496           <...>-27738 (-----) [005] .... 82316.678114: binder_transaction: transaction=1571041 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
85497           <...>-27738 (-----) [005] .... 82316.678117: binder_transaction_alloc_buf: transaction=1571041 data_size=48 offsets_size=0
85498           <...>-27738 (-----) [005] ...2 82316.678121: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
85499           <...>-27738 (-----) [005] d..4 82316.678124: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
85500           <...>-27738 (-----) [005] dn.5 82316.678134: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
85501           <...>-27738 (-----) [005] d..2 82316.678141: sched_switch: prev_comm=id.nn.benchmark prev_pid=27738 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
85502<...>-770 ( 770) [005] .... 82316.678150: binder_transaction_received: transaction=1571041
85503<...>-770 ( 770) [005] ...1 82316.678175: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
85504          <idle>-0     (-----) [002] ...1 82316.678213: cpu_idle: state=4294967295 cpu_id=2
85505          <idle>-0     (-----) [002] d..1 82316.678218: cpu_idle: state=0 cpu_id=2
85506<...>-770 ( 770) [005] d..2 82316.678254: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
85507          <idle>-0     (-----) [000] dnh2 82316.678283: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
85508          <idle>-0     (-----) [000] .n.1 82316.678291: cpu_idle: state=4294967295 cpu_id=0
85509<...>-770 ( 770) [005] ...1 82316.678295: tracing_mark_write: E|770
85510          <idle>-0     (-----) [000] d..2 82316.678302: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
85511<...>-770 ( 770) [005] .... 82316.678303: binder_transaction: transaction=1571042 dest_node=0 dest_proc=27550 dest_thread=27738 reply=1 flags=0x0 code=0x0
85512<...>-770 ( 770) [005] .... 82316.678305: binder_transaction_alloc_buf: transaction=1571042 data_size=168 offsets_size=32
85513<...>-770 ( 770) [005] .... 82316.678312: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
85514<...>-770 ( 770) [005] d..2 82316.678348: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27738 next_prio=110
85515           <...>-27738 (-----) [005] .... 82316.678359: binder_transaction_received: transaction=1571042
85516<...>-581 ( 571) [000] d..2 82316.678394: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85517          <idle>-0     (-----) [000] d..1 82316.678410: cpu_idle: state=0 cpu_id=0
85518           <...>-27738 (-----) [005] ...1 82316.678432: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
85519           <...>-27738 (-----) [005] d.s2 82316.678465: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
85520          <idle>-0     (-----) [003] d.s2 82316.678478: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
85521           <...>-27738 (-----) [005] ...1 82316.678495: tracing_mark_write: E|27550
85522          <idle>-0     (-----) [003] dns3 82316.678497: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
85523          <idle>-0     (-----) [003] dns3 82316.678505: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
85524          <idle>-0     (-----) [000] dnh2 82316.678506: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
85525           <...>-27738 (-----) [005] .... 82316.678512: binder_transaction: transaction=1571043 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
85526           <...>-27738 (-----) [005] .... 82316.678515: binder_transaction_alloc_buf: transaction=1571043 data_size=48 offsets_size=0
85527           <...>-27738 (-----) [005] ...2 82316.678517: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
85528          <idle>-0     (-----) [000] .n.1 82316.678517: cpu_idle: state=4294967295 cpu_id=0
85529           <...>-27738 (-----) [005] d..4 82316.678519: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
85530           <...>-27738 (-----) [005] dn.5 82316.678527: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
85531          <idle>-0     (-----) [000] d..2 82316.678530: 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
85532           <...>-27738 (-----) [005] d..2 82316.678533: sched_switch: prev_comm=id.nn.benchmark prev_pid=27738 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
85533     rcu_preempt-7     (    7) [000] d..2 82316.678537: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
85534<...>-770 ( 770) [005] .... 82316.678542: binder_transaction_received: transaction=1571043
85535          <idle>-0     (-----) [003] dns4 82316.678544: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
85536          <idle>-0     (-----) [003] .n.1 82316.678555: cpu_idle: state=4294967295 cpu_id=3
85537     rcu_preempt-7     (    7) [000] d..3 82316.678559: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
85538<...>-770 ( 770) [005] ...1 82316.678559: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
85539          <idle>-0     (-----) [003] d..2 82316.678566: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
85540     rcu_preempt-7     (    7) [000] d..2 82316.678576: 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
85541<...>-770 ( 770) [005] d..2 82316.678620: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
85542         rcuop/0-10    (   10) [000] d..2 82316.678631: 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
85543  kworker/u16:15-1311  ( 1311) [003] .... 82316.678636: clk_set_rate: l3_cluster0_vote_clk 403200000
85544          <idle>-0     (-----) [000] dnh2 82316.678643: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
85545          <idle>-0     (-----) [000] d..2 82316.678655: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
85546<...>-770 ( 770) [005] ...1 82316.678657: tracing_mark_write: E|770
85547<...>-770 ( 770) [005] .... 82316.678676: binder_transaction: transaction=1571044 dest_node=0 dest_proc=27550 dest_thread=27738 reply=1 flags=0x0 code=0x0
85548<...>-770 ( 770) [005] .... 82316.678679: binder_transaction_alloc_buf: transaction=1571044 data_size=168 offsets_size=32
85549<...>-770 ( 770) [005] .... 82316.678688: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
85550<...>-581 ( 571) [000] d..2 82316.678716: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85551<...>-770 ( 770) [005] d..2 82316.678723: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27738 next_prio=110
85552           <...>-27738 (-----) [005] .... 82316.678734: binder_transaction_received: transaction=1571044
85553          <idle>-0     (-----) [000] d..1 82316.678752: cpu_idle: state=0 cpu_id=0
85554          <idle>-0     (-----) [000] ...1 82316.678767: cpu_idle: state=4294967295 cpu_id=0
85555          <idle>-0     (-----) [000] d..1 82316.678771: cpu_idle: state=0 cpu_id=0
85556  kworker/u16:15-1311  ( 1311) [003] d..2 82316.678959: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcu_sched next_pid=8 next_prio=120
85557<...>-8 ( 8) [003] d..2 82316.678969: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
85558<...>-8 ( 8) [003] d..3 82316.678991: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
85559<...>-8 ( 8) [003] d..2 82316.679003: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
85560           <...>-27738 (-----) [005] ...1 82316.679009: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
85561          <idle>-0     (-----) [001] d.s3 82316.679010: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
85562<...>-46 ( 46) [003] d..2 82316.679014: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
85563           <...>-27738 (-----) [005] ...1 82316.679019: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
85564           <...>-27738 (-----) [005] ...1 82316.679023: tracing_mark_write: E|27550
85565<...>-46 ( 46) [003] d..3 82316.679029: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
85566          <idle>-0     (-----) [001] d.s4 82316.679042: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
85567<...>-46 ( 46) [003] d..2 82316.679045: 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
85568          <idle>-0     (-----) [001] dns4 82316.679048: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
85569          <idle>-0     (-----) [001] .n.1 82316.679056: cpu_idle: state=4294967295 cpu_id=1
85570<...>-8 ( 8) [003] d..2 82316.679068: 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
85571          <idle>-0     (-----) [001] d..2 82316.679070: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
85572          <idle>-0     (-----) [003] d..1 82316.679086: cpu_idle: state=0 cpu_id=3
85573           <...>-27738 (-----) [005] .... 82316.679086: binder_transaction: transaction=1571045 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
85574           <...>-27738 (-----) [005] .... 82316.679090: binder_transaction_alloc_buf: transaction=1571045 data_size=556 offsets_size=104
85575           <...>-27738 (-----) [005] ...2 82316.679116: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
85576           <...>-27738 (-----) [005] d..4 82316.679118: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85577           <...>-27738 (-----) [005] dn.5 82316.679130: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85578           <...>-27738 (-----) [005] d..2 82316.679141: sched_switch: prev_comm=id.nn.benchmark prev_pid=27738 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85579<...>-5340 ( 788) [005] .... 82316.679150: binder_transaction_received: transaction=1571045
85580  kworker/u16:15-1311  ( 1311) [001] d..2 82316.679173: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85581          <idle>-0     (-----) [001] d..1 82316.679187: cpu_idle: state=0 cpu_id=1
85582<...>-5340 ( 788) [005] ...1 82316.679199: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
85583<...>-5340 ( 788) [005] d..2 82316.679248: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85584<...>-5340 ( 788) [005] d..2 82316.679273: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27738 next_prio=110
85585          <idle>-0     (-----) [000] dnh2 82316.679276: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85586          <idle>-0     (-----) [000] .n.1 82316.679281: cpu_idle: state=4294967295 cpu_id=0
85587          <idle>-0     (-----) [000] d..2 82316.679292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
85588           <...>-27738 (-----) [005] d..2 82316.679296: sched_switch: prev_comm=id.nn.benchmark prev_pid=27738 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
85589          <idle>-0     (-----) [005] d..1 82316.679315: cpu_idle: state=0 cpu_id=5
85590<...>-87 ( 87) [000] d..2 82316.679335: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85591          <idle>-0     (-----) [002] d.h4 82316.679342: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85592          <idle>-0     (-----) [000] d..1 82316.679345: cpu_idle: state=0 cpu_id=0
85593          <idle>-0     (-----) [002] dnh5 82316.679359: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85594          <idle>-0     (-----) [002] .n.1 82316.679367: cpu_idle: state=4294967295 cpu_id=2
85595          <idle>-0     (-----) [002] d..2 82316.679379: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
85596<...>-86 ( 86) [002] d..2 82316.679414: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85597          <idle>-0     (-----) [002] d.h5 82316.679436: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85598          <idle>-0     (-----) [005] dnh2 82316.679457: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85599          <idle>-0     (-----) [005] .n.1 82316.679461: cpu_idle: state=4294967295 cpu_id=5
85600          <idle>-0     (-----) [005] d..2 82316.679470: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85601          <idle>-0     (-----) [002] d..1 82316.679480: cpu_idle: state=0 cpu_id=2
85602<...>-5340 ( 788) [005] d..1 82316.679525: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85603          <idle>-0     (-----) [000] dnh2 82316.679551: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85604          <idle>-0     (-----) [000] .n.1 82316.679557: cpu_idle: state=4294967295 cpu_id=0
85605          <idle>-0     (-----) [000] d..2 82316.679567: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
85606 neuralnetworks@-13088 (  788) [000] d..2 82316.679617: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85607          <idle>-0     (-----) [000] d..1 82316.679629: cpu_idle: state=0 cpu_id=0
85608<...>-5340 ( 788) [005] d..2 82316.679672: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85609          <idle>-0     (-----) [000] dnh2 82316.679695: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85610<...>-5340 ( 788) [005] d..2 82316.679698: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
85611          <idle>-0     (-----) [000] .n.1 82316.679701: cpu_idle: state=4294967295 cpu_id=0
85612          <idle>-0     (-----) [000] d..2 82316.679712: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
85613          <idle>-0     (-----) [005] d..1 82316.679713: cpu_idle: state=0 cpu_id=5
85614          <idle>-0     (-----) [002] d.h4 82316.679750: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85615<...>-87 ( 87) [000] d..2 82316.679750: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85616          <idle>-0     (-----) [002] dnh5 82316.679760: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85617          <idle>-0     (-----) [000] d..1 82316.679761: cpu_idle: state=0 cpu_id=0
85618          <idle>-0     (-----) [002] .n.1 82316.679768: cpu_idle: state=4294967295 cpu_id=2
85619          <idle>-0     (-----) [002] d..2 82316.679780: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
85620<...>-86 ( 86) [002] d..2 82316.679812: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85621          <idle>-0     (-----) [002] d..1 82316.679823: cpu_idle: state=0 cpu_id=2
85622          <idle>-0     (-----) [005] ...1 82316.680036: cpu_idle: state=4294967295 cpu_id=5
85623          <idle>-0     (-----) [005] d..1 82316.680040: cpu_idle: state=0 cpu_id=5
85624          <idle>-0     (-----) [002] d.h4 82316.681459: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85625          <idle>-0     (-----) [005] dnh2 82316.681479: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85626          <idle>-0     (-----) [005] .n.1 82316.681483: cpu_idle: state=4294967295 cpu_id=5
85627          <idle>-0     (-----) [005] d..2 82316.681491: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85628          <idle>-0     (-----) [002] ...1 82316.681498: cpu_idle: state=4294967295 cpu_id=2
85629          <idle>-0     (-----) [002] d..1 82316.681504: cpu_idle: state=0 cpu_id=2
85630<...>-5340 ( 788) [005] d..1 82316.681540: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85631          <idle>-0     (-----) [000] dnh2 82316.681565: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85632          <idle>-0     (-----) [000] .n.1 82316.681571: cpu_idle: state=4294967295 cpu_id=0
85633          <idle>-0     (-----) [000] d..2 82316.681582: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
85634<...>-5340 ( 788) [005] ...1 82316.681630: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
85635<...>-5340 ( 788) [005] ...1 82316.681634: tracing_mark_write: E|788
85636 neuralnetworks@-13088 (  788) [000] d..2 82316.681644: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85637<...>-5340 ( 788) [005] .... 82316.681651: binder_transaction: transaction=1571048 dest_node=1571046 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
85638<...>-5340 ( 788) [005] .... 82316.681653: binder_transaction_alloc_buf: transaction=1571048 data_size=60 offsets_size=0
85639          <idle>-0     (-----) [000] d..1 82316.681654: cpu_idle: state=0 cpu_id=0
85640<...>-5340 ( 788) [005] d..4 82316.681656: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
85641<...>-5340 ( 788) [005] d..5 82316.681669: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
85642          <idle>-0     (-----) [004] .n.1 82316.681675: cpu_idle: state=4294967295 cpu_id=4
85643          <idle>-0     (-----) [004] d..2 82316.681683: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
85644           <...>-27571 (-----) [004] .... 82316.681689: binder_transaction_received: transaction=1571048
85645<...>-5340 ( 788) [005] ...1 82316.681690: tracing_mark_write: E|788
85646<...>-5340 ( 788) [005] .... 82316.681696: binder_transaction: transaction=1571049 dest_node=0 dest_proc=27550 dest_thread=27738 reply=1 flags=0x0 code=0x0
85647<...>-5340 ( 788) [005] .... 82316.681698: binder_transaction_alloc_buf: transaction=1571049 data_size=8 offsets_size=0
85648<...>-5340 ( 788) [005] d..2 82316.681700: sched_waking: comm=id.nn.benchmark pid=27738 prio=110 target_cpu=005
85649           <...>-27571 (-----) [004] ...1 82316.681706: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
85650<...>-5340 ( 788) [005] d..3 82316.681707: sched_wakeup: comm=id.nn.benchmark pid=27738 prio=110 target_cpu=005
85651<...>-5340 ( 788) [005] .... 82316.681709: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
85652           <...>-27571 (-----) [004] ...1 82316.681712: tracing_mark_write: E|27550
85653           <...>-27571 (-----) [004] d..2 82316.681741: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85654          <idle>-0     (-----) [004] d..1 82316.681749: cpu_idle: state=0 cpu_id=4
85655<...>-5340 ( 788) [005] d..2 82316.681750: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27738 next_prio=110
85656           <...>-27738 (-----) [005] .... 82316.681760: binder_transaction_received: transaction=1571049
85657           <...>-27738 (-----) [005] ...1 82316.681830: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
85658           <...>-27738 (-----) [005] ...1 82316.681836: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
85659           <...>-27738 (-----) [005] ...1 82316.681863: tracing_mark_write: E|27550
85660           <...>-27738 (-----) [005] ...1 82316.681867: tracing_mark_write: E|27550
85661           <...>-27738 (-----) [005] ...1 82316.681870: tracing_mark_write: E|27550
85662           <...>-27738 (-----) [005] ...1 82316.682059: tracing_mark_write: E|27550
85663           <...>-27738 (-----) [005] d..1 82316.682072: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85664           <...>-27738 (-----) [005] d..2 82316.682088: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85665          <idle>-0     (-----) [004] .n.1 82316.682094: cpu_idle: state=4294967295 cpu_id=4
85666          <idle>-0     (-----) [004] d..2 82316.682102: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
85667           <...>-27550 (-----) [004] d..2 82316.682126: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85668          <idle>-0     (-----) [004] d..1 82316.682136: cpu_idle: state=0 cpu_id=4
85669           <...>-27738 (-----) [005] d..1 82316.682179: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85670           <...>-27738 (-----) [005] d..2 82316.682189: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85671          <idle>-0     (-----) [004] .n.1 82316.682194: cpu_idle: state=4294967295 cpu_id=4
85672          <idle>-0     (-----) [004] d..2 82316.682202: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
85673           <...>-27738 (-----) [005] d..2 82316.682228: sched_switch: prev_comm=id.nn.benchmark prev_pid=27738 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
85674           <...>-27550 (-----) [004] ...1 82316.682234: tracing_mark_write: E|27550
85675           <...>-27550 (-----) [004] ...1 82316.682239: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
85676           <...>-27550 (-----) [004] ...1 82316.682245: tracing_mark_write: E|27550
85677           <...>-27550 (-----) [004] ...1 82316.682248: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
85678          <idle>-0     (-----) [005] d..1 82316.682248: cpu_idle: state=0 cpu_id=5
85679           <...>-27550 (-----) [004] ...1 82316.682252: tracing_mark_write: E|27550
85680           <...>-27550 (-----) [004] ...1 82316.682257: tracing_mark_write: E|27550
85681           <...>-27550 (-----) [004] ...1 82316.682370: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
85682           <...>-27550 (-----) [004] ...1 82316.682428: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
85683           <...>-27550 (-----) [004] ...1 82316.682434: tracing_mark_write: E|27550
85684           <...>-27550 (-----) [004] ...1 82316.682438: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
85685           <...>-27550 (-----) [004] ...1 82316.682443: tracing_mark_write: E|27550
85686           <...>-27550 (-----) [004] ...1 82316.682447: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
85687           <...>-27550 (-----) [004] ...1 82316.682452: tracing_mark_write: E|27550
85688           <...>-27550 (-----) [004] ...1 82316.682457: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
85689          <idle>-0     (-----) [005] .n.1 82316.682549: cpu_idle: state=4294967295 cpu_id=5
85690           <...>-27550 (-----) [004] ...1 82316.682550: tracing_mark_write: E|27550
85691           <...>-27550 (-----) [004] ...1 82316.682554: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
85692          <idle>-0     (-----) [005] d..2 82316.682558: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27739 next_prio=110
85693           <...>-27550 (-----) [004] d..2 82316.682571: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85694          <idle>-0     (-----) [004] d..1 82316.682586: cpu_idle: state=0 cpu_id=4
85695           <...>-27739 (-----) [005] ...1 82316.682619: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
85696           <...>-27739 (-----) [005] ...1 82316.682633: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
85697           <...>-27739 (-----) [005] ...1 82316.682637: tracing_mark_write: E|27550
85698           <...>-27739 (-----) [005] .... 82316.682658: binder_transaction: transaction=1571050 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
85699           <...>-27739 (-----) [005] .... 82316.682661: binder_transaction_alloc_buf: transaction=1571050 data_size=48 offsets_size=0
85700           <...>-27739 (-----) [005] ...2 82316.682664: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
85701           <...>-27739 (-----) [005] d..4 82316.682667: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
85702           <...>-27739 (-----) [005] dn.5 82316.682677: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
85703           <...>-27739 (-----) [005] d..2 82316.682684: sched_switch: prev_comm=id.nn.benchmark prev_pid=27739 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
85704<...>-770 ( 770) [005] .... 82316.682693: binder_transaction_received: transaction=1571050
85705<...>-770 ( 770) [005] ...1 82316.682717: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
85706<...>-770 ( 770) [005] d..2 82316.682787: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
85707          <idle>-0     (-----) [000] dnh2 82316.682814: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
85708          <idle>-0     (-----) [000] .n.1 82316.682820: cpu_idle: state=4294967295 cpu_id=0
85709<...>-770 ( 770) [005] ...1 82316.682826: tracing_mark_write: E|770
85710          <idle>-0     (-----) [000] d..2 82316.682831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
85711<...>-770 ( 770) [005] .... 82316.682834: binder_transaction: transaction=1571051 dest_node=0 dest_proc=27550 dest_thread=27739 reply=1 flags=0x0 code=0x0
85712<...>-770 ( 770) [005] .... 82316.682836: binder_transaction_alloc_buf: transaction=1571051 data_size=168 offsets_size=32
85713<...>-770 ( 770) [005] .... 82316.682843: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
85714<...>-770 ( 770) [005] d..2 82316.682879: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27739 next_prio=110
85715           <...>-27739 (-----) [005] .... 82316.682890: binder_transaction_received: transaction=1571051
85716<...>-581 ( 571) [000] d..2 82316.682906: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85717          <idle>-0     (-----) [000] d..1 82316.682917: cpu_idle: state=0 cpu_id=0
85718           <...>-27739 (-----) [005] ...1 82316.682958: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
85719           <...>-27739 (-----) [005] ...1 82316.682963: tracing_mark_write: E|27550
85720           <...>-27739 (-----) [005] .... 82316.682978: binder_transaction: transaction=1571052 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
85721           <...>-27739 (-----) [005] .... 82316.682981: binder_transaction_alloc_buf: transaction=1571052 data_size=48 offsets_size=0
85722           <...>-27739 (-----) [005] ...2 82316.682983: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
85723           <...>-27739 (-----) [005] d..4 82316.682985: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
85724           <...>-27739 (-----) [005] dn.5 82316.682997: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
85725           <...>-27739 (-----) [005] d..2 82316.683004: sched_switch: prev_comm=id.nn.benchmark prev_pid=27739 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
85726<...>-770 ( 770) [005] .... 82316.683012: binder_transaction_received: transaction=1571052
85727<...>-770 ( 770) [005] ...1 82316.683028: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
85728<...>-770 ( 770) [005] d..2 82316.683085: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
85729          <idle>-0     (-----) [000] dnh2 82316.683110: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
85730          <idle>-0     (-----) [000] .n.1 82316.683116: cpu_idle: state=4294967295 cpu_id=0
85731<...>-770 ( 770) [005] ...1 82316.683120: tracing_mark_write: E|770
85732          <idle>-0     (-----) [000] d..2 82316.683125: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
85733<...>-770 ( 770) [005] .... 82316.683127: binder_transaction: transaction=1571053 dest_node=0 dest_proc=27550 dest_thread=27739 reply=1 flags=0x0 code=0x0
85734<...>-770 ( 770) [005] .... 82316.683129: binder_transaction_alloc_buf: transaction=1571053 data_size=168 offsets_size=32
85735<...>-770 ( 770) [005] .... 82316.683135: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
85736<...>-770 ( 770) [005] d..2 82316.683169: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27739 next_prio=110
85737<...>-581 ( 571) [000] d..2 82316.683179: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85738           <...>-27739 (-----) [005] .... 82316.683181: binder_transaction_received: transaction=1571053
85739          <idle>-0     (-----) [000] d.h6 82316.683275: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
85740          <idle>-0     (-----) [000] d.h7 82316.683296: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
85741          <idle>-0     (-----) [002] .n.1 82316.683301: cpu_idle: state=4294967295 cpu_id=2
85742          <idle>-0     (-----) [000] d.h6 82316.683301: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
85743          <idle>-0     (-----) [000] dnh7 82316.683309: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
85744          <idle>-0     (-----) [002] d..2 82316.683312: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
85745          <idle>-0     (-----) [000] d..2 82316.683326: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
85746  crtc_event:111-322   (  322) [002] d..2 82316.683349: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85747          <idle>-0     (-----) [002] d..1 82316.683359: cpu_idle: state=0 cpu_id=2
85748           <...>-27739 (-----) [005] ...1 82316.683450: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
85749           <...>-27739 (-----) [005] ...1 82316.683460: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
85750           <...>-27739 (-----) [005] ...1 82316.683465: tracing_mark_write: E|27550
85751 crtc_commit:111-321   (  321) [000] d..2 82316.683470: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
85752          <idle>-0     (-----) [000] d..1 82316.683482: cpu_idle: state=0 cpu_id=0
85753           <...>-27739 (-----) [005] .... 82316.683524: binder_transaction: transaction=1571054 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
85754           <...>-27739 (-----) [005] .... 82316.683527: binder_transaction_alloc_buf: transaction=1571054 data_size=556 offsets_size=104
85755           <...>-27739 (-----) [005] ...2 82316.683541: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
85756           <...>-27739 (-----) [005] d..4 82316.683544: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85757           <...>-27739 (-----) [005] dn.5 82316.683556: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85758           <...>-27739 (-----) [005] d..2 82316.683563: sched_switch: prev_comm=id.nn.benchmark prev_pid=27739 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85759<...>-5340 ( 788) [005] .... 82316.683573: binder_transaction_received: transaction=1571054
85760<...>-5340 ( 788) [005] ...1 82316.683617: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
85761<...>-5340 ( 788) [005] d..2 82316.683661: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85762<...>-5340 ( 788) [005] d..2 82316.683686: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27739 next_prio=110
85763          <idle>-0     (-----) [000] dnh2 82316.683690: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85764          <idle>-0     (-----) [000] .n.1 82316.683696: cpu_idle: state=4294967295 cpu_id=0
85765          <idle>-0     (-----) [000] d..2 82316.683705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
85766           <...>-27739 (-----) [005] d..2 82316.683708: sched_switch: prev_comm=id.nn.benchmark prev_pid=27739 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
85767          <idle>-0     (-----) [005] d..1 82316.683726: cpu_idle: state=0 cpu_id=5
85768<...>-87 ( 87) [000] d..2 82316.683745: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85769          <idle>-0     (-----) [000] d..1 82316.683753: cpu_idle: state=0 cpu_id=0
85770          <idle>-0     (-----) [002] d.h4 82316.683756: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85771          <idle>-0     (-----) [002] dnh5 82316.683772: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85772          <idle>-0     (-----) [002] .n.1 82316.683781: cpu_idle: state=4294967295 cpu_id=2
85773          <idle>-0     (-----) [002] d..2 82316.683793: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
85774<...>-86 ( 86) [002] d..2 82316.683826: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85775          <idle>-0     (-----) [002] d.h4 82316.683851: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85776          <idle>-0     (-----) [005] dnh2 82316.683873: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85777          <idle>-0     (-----) [005] .n.1 82316.683877: cpu_idle: state=4294967295 cpu_id=5
85778          <idle>-0     (-----) [005] d..2 82316.683886: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85779          <idle>-0     (-----) [002] d..1 82316.683895: cpu_idle: state=0 cpu_id=2
85780<...>-5340 ( 788) [005] d..1 82316.683940: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85781          <idle>-0     (-----) [000] dnh2 82316.683965: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85782          <idle>-0     (-----) [000] .n.1 82316.683970: cpu_idle: state=4294967295 cpu_id=0
85783          <idle>-0     (-----) [000] d..2 82316.683978: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
85784 neuralnetworks@-13088 (  788) [000] d..2 82316.684024: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85785          <idle>-0     (-----) [000] d..1 82316.684034: cpu_idle: state=0 cpu_id=0
85786<...>-5340 ( 788) [005] d..2 82316.684086: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85787          <idle>-0     (-----) [000] dnh2 82316.684107: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85788<...>-5340 ( 788) [005] d..2 82316.684112: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
85789          <idle>-0     (-----) [000] .n.1 82316.684113: cpu_idle: state=4294967295 cpu_id=0
85790          <idle>-0     (-----) [000] d..2 82316.684122: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
85791          <idle>-0     (-----) [005] d..1 82316.684126: cpu_idle: state=0 cpu_id=5
85792<...>-87 ( 87) [000] d..2 82316.684159: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85793          <idle>-0     (-----) [002] d.h4 82316.684160: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85794          <idle>-0     (-----) [000] d..1 82316.684167: cpu_idle: state=0 cpu_id=0
85795          <idle>-0     (-----) [002] dnh5 82316.684171: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
85796          <idle>-0     (-----) [002] .n.1 82316.684179: cpu_idle: state=4294967295 cpu_id=2
85797          <idle>-0     (-----) [002] d..2 82316.684190: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
85798<...>-86 ( 86) [002] d..2 82316.684222: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85799          <idle>-0     (-----) [002] d..1 82316.684234: cpu_idle: state=0 cpu_id=2
85800          <idle>-0     (-----) [005] ...1 82316.684454: cpu_idle: state=4294967295 cpu_id=5
85801          <idle>-0     (-----) [005] d..1 82316.684458: cpu_idle: state=0 cpu_id=5
85802          <idle>-0     (-----) [000] d.s3 82316.685137: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
85803          <idle>-0     (-----) [003] d.s2 82316.685137: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
85804          <idle>-0     (-----) [003] dns3 82316.685153: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
85805          <idle>-0     (-----) [000] d.s4 82316.685156: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
85806          <idle>-0     (-----) [000] d.s2 82316.685160: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
85807          <idle>-0     (-----) [002] .n.1 82316.685162: cpu_idle: state=4294967295 cpu_id=2
85808          <idle>-0     (-----) [003] .n.1 82316.685172: cpu_idle: state=4294967295 cpu_id=3
85809          <idle>-0     (-----) [002] d..2 82316.685173: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
85810          <idle>-0     (-----) [000] dns3 82316.685178: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
85811          <idle>-0     (-----) [000] dns3 82316.685184: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
85812          <idle>-0     (-----) [003] d..2 82316.685185: 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
85813  crtc_event:111-322   (  322) [002] d..2 82316.685207: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85814<...>-8 ( 8) [003] d..2 82316.685214: 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
85815          <idle>-0     (-----) [002] d..1 82316.685217: cpu_idle: state=0 cpu_id=2
85816          <idle>-0     (-----) [000] dns4 82316.685225: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
85817          <idle>-0     (-----) [003] d..1 82316.685227: cpu_idle: state=0 cpu_id=3
85818          <idle>-0     (-----) [002] .n.1 82316.685231: cpu_idle: state=4294967295 cpu_id=2
85819          <idle>-0     (-----) [002] d..2 82316.685242: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
85820          <idle>-0     (-----) [000] .n.1 82316.685246: cpu_idle: state=4294967295 cpu_id=0
85821          <idle>-0     (-----) [000] d..2 82316.685255: 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
85822     rcu_preempt-7     (    7) [000] d..2 82316.685282: 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
85823          <idle>-0     (-----) [000] d..1 82316.685296: cpu_idle: state=0 cpu_id=0
85824  kworker/u16:15-1311  ( 1311) [002] d..2 82316.685313: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85825          <idle>-0     (-----) [002] d..1 82316.685324: cpu_idle: state=0 cpu_id=2
85826          <idle>-0     (-----) [000] d.h5 82316.685591: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
85827          <idle>-0     (-----) [000] dnh6 82316.685603: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
85828          <idle>-0     (-----) [000] .n.1 82316.685615: cpu_idle: state=4294967295 cpu_id=0
85829          <idle>-0     (-----) [000] d..2 82316.685625: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
85830 crtc_commit:111-321   (  321) [000] d..2 82316.685705: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85831          <idle>-0     (-----) [000] d..1 82316.685719: cpu_idle: state=0 cpu_id=0
85832          <idle>-0     (-----) [000] d.h5 82316.685901: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
85833          <idle>-0     (-----) [002] dnh4 82316.685913: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85834          <idle>-0     (-----) [000] d.h6 82316.685917: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
85835          <idle>-0     (-----) [000] ...1 82316.685934: cpu_idle: state=4294967295 cpu_id=0
85836          <idle>-0     (-----) [005] dnh2 82316.685934: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85837          <idle>-0     (-----) [005] .n.1 82316.685938: cpu_idle: state=4294967295 cpu_id=5
85838          <idle>-0     (-----) [000] d..1 82316.685939: cpu_idle: state=0 cpu_id=0
85839          <idle>-0     (-----) [005] d..2 82316.685947: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85840          <idle>-0     (-----) [002] .n.1 82316.685955: cpu_idle: state=4294967295 cpu_id=2
85841          <idle>-0     (-----) [002] d..2 82316.685966: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
85842  crtc_event:111-322   (  322) [002] d..2 82316.685993: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
85843<...>-5340 ( 788) [005] d..1 82316.685997: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85844          <idle>-0     (-----) [002] d..1 82316.686005: cpu_idle: state=0 cpu_id=2
85845          <idle>-0     (-----) [000] dnh2 82316.686019: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
85846          <idle>-0     (-----) [000] .n.1 82316.686026: cpu_idle: state=4294967295 cpu_id=0
85847          <idle>-0     (-----) [000] d..2 82316.686038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
85848<...>-5340 ( 788) [005] ...1 82316.686087: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
85849<...>-5340 ( 788) [005] ...1 82316.686091: tracing_mark_write: E|788
85850 neuralnetworks@-13088 (  788) [000] d..2 82316.686104: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85851<...>-5340 ( 788) [005] .... 82316.686106: binder_transaction: transaction=1571057 dest_node=1571055 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
85852<...>-5340 ( 788) [005] .... 82316.686110: binder_transaction_alloc_buf: transaction=1571057 data_size=60 offsets_size=0
85853<...>-5340 ( 788) [005] d..4 82316.686113: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
85854          <idle>-0     (-----) [000] d..1 82316.686116: cpu_idle: state=0 cpu_id=0
85855<...>-5340 ( 788) [005] d..5 82316.686125: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
85856          <idle>-0     (-----) [004] .n.1 82316.686131: cpu_idle: state=4294967295 cpu_id=4
85857          <idle>-0     (-----) [004] d..2 82316.686139: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
85858           <...>-27571 (-----) [004] .... 82316.686144: binder_transaction_received: transaction=1571057
85859<...>-5340 ( 788) [005] ...1 82316.686148: tracing_mark_write: E|788
85860<...>-5340 ( 788) [005] .... 82316.686154: binder_transaction: transaction=1571058 dest_node=0 dest_proc=27550 dest_thread=27739 reply=1 flags=0x0 code=0x0
85861<...>-5340 ( 788) [005] .... 82316.686156: binder_transaction_alloc_buf: transaction=1571058 data_size=8 offsets_size=0
85862<...>-5340 ( 788) [005] d..2 82316.686157: sched_waking: comm=id.nn.benchmark pid=27739 prio=110 target_cpu=005
85863           <...>-27571 (-----) [004] ...1 82316.686162: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
85864<...>-5340 ( 788) [005] d..3 82316.686165: sched_wakeup: comm=id.nn.benchmark pid=27739 prio=110 target_cpu=005
85865<...>-5340 ( 788) [005] .... 82316.686167: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
85866           <...>-27571 (-----) [004] ...1 82316.686168: tracing_mark_write: E|27550
85867           <...>-27571 (-----) [004] d..2 82316.686196: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85868          <idle>-0     (-----) [004] d..1 82316.686204: cpu_idle: state=0 cpu_id=4
85869<...>-5340 ( 788) [005] d..2 82316.686207: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27739 next_prio=110
85870           <...>-27739 (-----) [005] .... 82316.686218: binder_transaction_received: transaction=1571058
85871           <...>-27739 (-----) [005] ...1 82316.686254: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
85872           <...>-27739 (-----) [005] ...1 82316.686260: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
85873           <...>-27739 (-----) [005] ...1 82316.686286: tracing_mark_write: E|27550
85874           <...>-27739 (-----) [005] ...1 82316.686290: tracing_mark_write: E|27550
85875           <...>-27739 (-----) [005] ...1 82316.686293: tracing_mark_write: E|27550
85876           <...>-27739 (-----) [005] ...1 82316.686482: tracing_mark_write: E|27550
85877           <...>-27739 (-----) [005] d..1 82316.686494: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85878           <...>-27739 (-----) [005] d..2 82316.686510: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85879          <idle>-0     (-----) [004] .n.1 82316.686515: cpu_idle: state=4294967295 cpu_id=4
85880          <idle>-0     (-----) [004] d..2 82316.686521: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
85881           <...>-27550 (-----) [004] d..2 82316.686541: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85882          <idle>-0     (-----) [004] d..1 82316.686550: cpu_idle: state=0 cpu_id=4
85883           <...>-27739 (-----) [005] d..1 82316.686594: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85884           <...>-27739 (-----) [005] d..2 82316.686604: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
85885          <idle>-0     (-----) [004] .n.1 82316.686609: cpu_idle: state=4294967295 cpu_id=4
85886          <idle>-0     (-----) [004] d..2 82316.686617: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
85887           <...>-27739 (-----) [005] d..2 82316.686642: sched_switch: prev_comm=id.nn.benchmark prev_pid=27739 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
85888           <...>-27550 (-----) [004] ...1 82316.686649: tracing_mark_write: E|27550
85889           <...>-27550 (-----) [004] ...1 82316.686653: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
85890           <...>-27550 (-----) [004] ...1 82316.686659: tracing_mark_write: E|27550
85891          <idle>-0     (-----) [005] d..1 82316.686662: cpu_idle: state=0 cpu_id=5
85892           <...>-27550 (-----) [004] ...1 82316.686663: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
85893           <...>-27550 (-----) [004] ...1 82316.686667: tracing_mark_write: E|27550
85894           <...>-27550 (-----) [004] ...1 82316.686671: tracing_mark_write: E|27550
85895           <...>-27550 (-----) [004] ...1 82316.686784: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
85896           <...>-27550 (-----) [004] ...1 82316.686843: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
85897           <...>-27550 (-----) [004] ...1 82316.686848: tracing_mark_write: E|27550
85898           <...>-27550 (-----) [004] ...1 82316.686852: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
85899           <...>-27550 (-----) [004] ...1 82316.686857: tracing_mark_write: E|27550
85900           <...>-27550 (-----) [004] ...1 82316.686861: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
85901           <...>-27550 (-----) [004] ...1 82316.686865: tracing_mark_write: E|27550
85902           <...>-27550 (-----) [004] ...1 82316.686868: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
85903          <idle>-0     (-----) [005] .n.1 82316.686954: cpu_idle: state=4294967295 cpu_id=5
85904           <...>-27550 (-----) [004] ...1 82316.686956: tracing_mark_write: E|27550
85905           <...>-27550 (-----) [004] ...1 82316.686960: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
85906          <idle>-0     (-----) [005] d..2 82316.686963: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27740 next_prio=110
85907           <...>-27550 (-----) [004] d..2 82316.686976: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
85908          <idle>-0     (-----) [004] d..1 82316.686990: cpu_idle: state=0 cpu_id=4
85909           <...>-27740 (-----) [005] ...1 82316.687024: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
85910           <...>-27740 (-----) [005] ...1 82316.687038: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
85911           <...>-27740 (-----) [005] ...1 82316.687042: tracing_mark_write: E|27550
85912           <...>-27740 (-----) [005] .... 82316.687062: binder_transaction: transaction=1571059 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
85913           <...>-27740 (-----) [005] .... 82316.687065: binder_transaction_alloc_buf: transaction=1571059 data_size=48 offsets_size=0
85914           <...>-27740 (-----) [005] ...2 82316.687068: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
85915           <...>-27740 (-----) [005] d..4 82316.687071: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
85916           <...>-27740 (-----) [005] dn.5 82316.687082: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
85917           <...>-27740 (-----) [005] d..2 82316.687089: sched_switch: prev_comm=id.nn.benchmark prev_pid=27740 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
85918<...>-770 ( 770) [005] .... 82316.687099: binder_transaction_received: transaction=1571059
85919<...>-770 ( 770) [005] ...1 82316.687120: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
85920<...>-770 ( 770) [005] d..2 82316.687190: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
85921          <idle>-0     (-----) [000] dnh2 82316.687217: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
85922          <idle>-0     (-----) [000] .n.1 82316.687223: cpu_idle: state=4294967295 cpu_id=0
85923<...>-770 ( 770) [005] ...1 82316.687230: tracing_mark_write: E|770
85924          <idle>-0     (-----) [000] d..2 82316.687235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
85925<...>-770 ( 770) [005] .... 82316.687238: binder_transaction: transaction=1571060 dest_node=0 dest_proc=27550 dest_thread=27740 reply=1 flags=0x0 code=0x0
85926<...>-770 ( 770) [005] .... 82316.687241: binder_transaction_alloc_buf: transaction=1571060 data_size=168 offsets_size=32
85927<...>-770 ( 770) [005] .... 82316.687247: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
85928<...>-770 ( 770) [005] d..2 82316.687284: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27740 next_prio=110
85929           <...>-27740 (-----) [005] .... 82316.687294: binder_transaction_received: transaction=1571060
85930<...>-581 ( 571) [000] d..2 82316.687315: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85931          <idle>-0     (-----) [000] d..1 82316.687328: cpu_idle: state=0 cpu_id=0
85932           <...>-27740 (-----) [005] ...1 82316.687363: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
85933           <...>-27740 (-----) [005] ...1 82316.687368: tracing_mark_write: E|27550
85934           <...>-27740 (-----) [005] .... 82316.687382: binder_transaction: transaction=1571061 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
85935           <...>-27740 (-----) [005] .... 82316.687385: binder_transaction_alloc_buf: transaction=1571061 data_size=48 offsets_size=0
85936           <...>-27740 (-----) [005] ...2 82316.687387: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
85937           <...>-27740 (-----) [005] d..4 82316.687389: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
85938           <...>-27740 (-----) [005] dn.5 82316.687399: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
85939           <...>-27740 (-----) [005] d..2 82316.687406: sched_switch: prev_comm=id.nn.benchmark prev_pid=27740 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
85940<...>-770 ( 770) [005] .... 82316.687414: binder_transaction_received: transaction=1571061
85941<...>-770 ( 770) [005] ...1 82316.687431: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
85942          <idle>-0     (-----) [002] ...1 82316.687444: cpu_idle: state=4294967295 cpu_id=2
85943          <idle>-0     (-----) [002] d..1 82316.687449: cpu_idle: state=0 cpu_id=2
85944<...>-770 ( 770) [005] d..2 82316.687487: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
85945          <idle>-0     (-----) [000] dnh2 82316.687511: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
85946          <idle>-0     (-----) [000] .n.1 82316.687517: cpu_idle: state=4294967295 cpu_id=0
85947<...>-770 ( 770) [005] ...1 82316.687520: tracing_mark_write: E|770
85948<...>-770 ( 770) [005] .... 82316.687527: binder_transaction: transaction=1571062 dest_node=0 dest_proc=27550 dest_thread=27740 reply=1 flags=0x0 code=0x0
85949          <idle>-0     (-----) [000] d..2 82316.687528: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
85950<...>-770 ( 770) [005] .... 82316.687530: binder_transaction_alloc_buf: transaction=1571062 data_size=168 offsets_size=32
85951<...>-770 ( 770) [005] .... 82316.687536: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
85952<...>-770 ( 770) [005] d..2 82316.687569: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27740 next_prio=110
85953           <...>-27740 (-----) [005] .... 82316.687580: binder_transaction_received: transaction=1571062
85954<...>-581 ( 571) [000] d..2 82316.687584: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
85955          <idle>-0     (-----) [000] d..1 82316.687597: cpu_idle: state=0 cpu_id=0
85956          <idle>-0     (-----) [001] d.h2 82316.687724: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
85957          <idle>-0     (-----) [001] dnh3 82316.687738: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
85958          <idle>-0     (-----) [001] .n.1 82316.687746: cpu_idle: state=4294967295 cpu_id=1
85959          <idle>-0     (-----) [001] d..2 82316.687758: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
85960        DispSync-8879  ( 8858) [001] d..1 82316.687784: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
85961        DispSync-8879  ( 8858) [001] d..2 82316.687799: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
85962          <idle>-0     (-----) [003] .n.1 82316.687806: cpu_idle: state=4294967295 cpu_id=3
85963          <idle>-0     (-----) [003] d..2 82316.687816: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
85964        DispSync-8879  ( 8858) [001] d..2 82316.687834: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
85965          <idle>-0     (-----) [001] d..1 82316.687847: cpu_idle: state=0 cpu_id=1
85966           <...>-27740 (-----) [005] ...1 82316.687850: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
85967           <...>-27740 (-----) [005] ...1 82316.687860: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
85968           <...>-27740 (-----) [005] ...1 82316.687864: tracing_mark_write: E|27550
85969  appEventThread-8881  ( 8858) [003] d..3 82316.687869: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
85970  appEventThread-8881  ( 8858) [003] d..4 82316.687890: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
85971          <idle>-0     (-----) [000] .n.1 82316.687895: cpu_idle: state=4294967295 cpu_id=0
85972          <idle>-0     (-----) [000] d..2 82316.687908: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
85973           <...>-27740 (-----) [005] .... 82316.687922: binder_transaction: transaction=1571063 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
85974           <...>-27740 (-----) [005] .... 82316.687925: binder_transaction_alloc_buf: transaction=1571063 data_size=556 offsets_size=104
85975  appEventThread-8881  ( 8858) [003] d..2 82316.687931: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
85976           <...>-27740 (-----) [005] ...2 82316.687938: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
85977           <...>-27740 (-----) [005] d..4 82316.687940: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85978          <idle>-0     (-----) [003] d..1 82316.687945: cpu_idle: state=0 cpu_id=3
85979           <...>-27740 (-----) [005] dn.5 82316.687951: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
85980           <...>-27740 (-----) [005] d..2 82316.687958: sched_switch: prev_comm=id.nn.benchmark prev_pid=27740 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
85981<...>-5340 ( 788) [005] .... 82316.687968: binder_transaction_received: transaction=1571063
85982<...>-5340 ( 788) [005] ...1 82316.688009: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
85983<...>-5340 ( 788) [005] d..2 82316.688052: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85984<...>-5340 ( 788) [005] d..2 82316.688076: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27740 next_prio=110
85985<...>-9105 ( 9105) [000] d.h1 82316.688084: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
85986           <...>-27740 (-----) [005] d..2 82316.688098: sched_switch: prev_comm=id.nn.benchmark prev_pid=27740 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
85987          <idle>-0     (-----) [005] d..1 82316.688116: cpu_idle: state=0 cpu_id=5
85988<...>-9105 ( 9105) [000] .... 82316.688279: binder_transaction: transaction=1571066 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
85989<...>-9105 ( 9105) [000] .... 82316.688286: binder_transaction_alloc_buf: transaction=1571066 data_size=80 offsets_size=0
85990<...>-9105 ( 9105) [000] d..4 82316.688292: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
85991<...>-9105 ( 9105) [000] d..5 82316.688325: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
85992          <idle>-0     (-----) [001] .n.1 82316.688331: cpu_idle: state=4294967295 cpu_id=1
85993          <idle>-0     (-----) [001] d..2 82316.688344: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
85994<...>-13083 ( 8858) [001] .... 82316.688352: binder_transaction_received: transaction=1571066
85995<...>-9105 ( 9105) [000] d..3 82316.688366: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
85996<...>-9105 ( 9105) [000] d..4 82316.688384: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
85997<...>-13083 ( 8858) [001] d..1 82316.688387: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
85998          <idle>-0     (-----) [002] .n.1 82316.688389: cpu_idle: state=4294967295 cpu_id=2
85999          <idle>-0     (-----) [002] d..2 82316.688400: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
86000<...>-13083 ( 8858) [001] d..2 82316.688404: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
86001          <idle>-0     (-----) [003] .n.1 82316.688411: cpu_idle: state=4294967295 cpu_id=3
86002          <idle>-0     (-----) [003] d..2 82316.688421: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
86003<...>-13083 ( 8858) [001] d..2 82316.688468: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
86004    RenderThread-9436  ( 9105) [002] d..2 82316.688476: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86005  appEventThread-8881  ( 8858) [003] d.s2 82316.688476: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
86006  appEventThread-8881  ( 8858) [003] d.s3 82316.688499: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
86007          <idle>-0     (-----) [002] d..2 82316.688534: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
86008  appEventThread-8881  ( 8858) [003] d..2 82316.688541: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86009          <idle>-0     (-----) [003] d..1 82316.688552: cpu_idle: state=0 cpu_id=3
86010<...>-87 ( 87) [001] d..2 82316.688557: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86011  kworker/u16:15-1311  ( 1311) [002] d.h3 82316.688560: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86012<...>-9105 ( 9105) [000] d..3 82316.688561: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
86013          <idle>-0     (-----) [001] d..1 82316.688570: cpu_idle: state=0 cpu_id=1
86014  kworker/u16:15-1311  ( 1311) [002] d.h4 82316.688581: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86015<...>-9105 ( 9105) [000] d..4 82316.688601: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
86016          <idle>-0     (-----) [001] .n.1 82316.688606: cpu_idle: state=4294967295 cpu_id=1
86017          <idle>-0     (-----) [001] d..2 82316.688618: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
86018<...>-9105 ( 9105) [000] d..2 82316.688636: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86019  kworker/u16:15-1311  ( 1311) [002] d.h4 82316.688643: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86020          <idle>-0     (-----) [000] d..1 82316.688650: cpu_idle: state=0 cpu_id=0
86021          <idle>-0     (-----) [005] dnh2 82316.688665: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86022          <idle>-0     (-----) [005] .n.1 82316.688670: cpu_idle: state=4294967295 cpu_id=5
86023          <idle>-0     (-----) [005] d..2 82316.688679: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86024          <idle>-0     (-----) [000] ...1 82316.688699: cpu_idle: state=4294967295 cpu_id=0
86025          <idle>-0     (-----) [000] d..1 82316.688704: cpu_idle: state=0 cpu_id=0
86026<...>-5340 ( 788) [005] d..1 82316.688729: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86027  kworker/u16:15-1311  ( 1311) [002] dnh1 82316.688769: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
86028    RenderThread-9436  ( 9105) [001] d..1 82316.688772: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
86029  kworker/u16:15-1311  ( 1311) [002] d..2 82316.688782: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
86030    RenderThread-9436  ( 9105) [001] d..2 82316.688793: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
86031          <idle>-0     (-----) [000] .n.1 82316.688798: cpu_idle: state=4294967295 cpu_id=0
86032          <idle>-0     (-----) [000] d..2 82316.688809: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
86033 neuralnetworks@-13088 (  788) [002] d..2 82316.688830: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
86034<...>-86 ( 86) [002] d..2 82316.688860: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
86035    RenderThread-9436  ( 9105) [001] .... 82316.688865: binder_transaction: transaction=1571067 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
86036    RenderThread-9436  ( 9105) [001] .... 82316.688870: binder_transaction_alloc_buf: transaction=1571067 data_size=104 offsets_size=0
86037    RenderThread-9436  ( 9105) [001] d..4 82316.688875: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
86038    RenderThread-9436  ( 9105) [001] dn.5 82316.688889: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
86039<...>-5340 ( 788) [005] d..2 82316.688893: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
86040<...>-9105 ( 9105) [000] d..2 82316.688896: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86041    RenderThread-9436  ( 9105) [001] d..2 82316.688899: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
86042<...>-13083 ( 8858) [001] .... 82316.688907: binder_transaction_received: transaction=1571067
86043          <idle>-0     (-----) [000] d..1 82316.688907: cpu_idle: state=0 cpu_id=0
86044<...>-5340 ( 788) [005] d..2 82316.688943: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
86045          <idle>-0     (-----) [005] d..1 82316.688957: cpu_idle: state=0 cpu_id=5
86046<...>-13083 ( 8858) [001] .... 82316.688981: binder_transaction: transaction=1571068 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
86047<...>-13083 ( 8858) [001] .... 82316.688986: binder_transaction_alloc_buf: transaction=1571068 data_size=52 offsets_size=8
86048  kworker/u16:15-1311  ( 1311) [002] d.h2 82316.688987: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
86049  kworker/u16:15-1311  ( 1311) [002] d..2 82316.689003: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
86050<...>-13083 ( 8858) [001] d.s3 82316.689030: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
86051<...>-13083 ( 8858) [001] d.s4 82316.689051: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
86052<...>-13083 ( 8858) [001] d.s4 82316.689058: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
86053<...>-87 ( 87) [002] d..2 82316.689067: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
86054  kworker/u16:15-1311  ( 1311) [002] d.h5 82316.689084: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86055  kworker/u16:15-1311  ( 1311) [002] d.h6 82316.689102: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86056<...>-13083 ( 8858) [001] d..2 82316.689123: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
86057    RenderThread-9436  ( 9105) [001] .... 82316.689133: binder_transaction_received: transaction=1571068
86058  kworker/u16:15-1311  ( 1311) [002] .... 82316.689191: clk_set_rate: l3_cluster0_vote_clk 300000000
86059  kworker/u16:15-1311  ( 1311) [002] d..2 82316.689209: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
86060<...>-86 ( 86) [002] d..2 82316.689245: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86061          <idle>-0     (-----) [002] d..1 82316.689263: cpu_idle: state=0 cpu_id=2
86062    RenderThread-9436  ( 9105) [001] d..2 82316.690152: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
86063          <idle>-0     (-----) [001] d..1 82316.690169: cpu_idle: state=0 cpu_id=1
86064          <idle>-0     (-----) [001] d.h2 82316.690231: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
86065          <idle>-0     (-----) [001] d.h3 82316.690242: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
86066          <idle>-0     (-----) [001] dnh3 82316.690247: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
86067          <idle>-0     (-----) [001] .n.1 82316.690256: cpu_idle: state=4294967295 cpu_id=1
86068          <idle>-0     (-----) [001] d..2 82316.690268: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
86069          <idle>-0     (-----) [000] d.h3 82316.690270: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
86070          <idle>-0     (-----) [000] dnh4 82316.690285: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
86071          <idle>-0     (-----) [000] .n.1 82316.690297: cpu_idle: state=4294967295 cpu_id=0
86072          <idle>-0     (-----) [000] d..2 82316.690304: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
86073 kgsl_worker_thr-258   (  258) [000] d..2 82316.690356: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
86074 kgsl_worker_thr-258   (  258) [000] d..3 82316.690373: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
86075          <idle>-0     (-----) [002] .n.1 82316.690380: cpu_idle: state=4294967295 cpu_id=2
86076          <idle>-0     (-----) [002] d..2 82316.690393: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
86077 kgsl_worker_thr-258   (  258) [000] d..2 82316.690401: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86078          <idle>-0     (-----) [000] d..1 82316.690411: cpu_idle: state=0 cpu_id=0
86079    RenderThread-9436  ( 9105) [001] .... 82316.690463: binder_transaction: transaction=1571069 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
86080    RenderThread-9436  ( 9105) [001] .... 82316.690468: binder_transaction_alloc_buf: transaction=1571069 data_size=192 offsets_size=8
86081    RenderThread-9436  ( 9105) [001] d..4 82316.690478: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
86082    RenderThread-9436  ( 9105) [001] dn.5 82316.690495: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
86083    RenderThread-9436  ( 9105) [001] d..2 82316.690505: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
86084<...>-13083 ( 8858) [001] .... 82316.690513: binder_transaction_received: transaction=1571069
86085  kworker/u16:15-1311  ( 1311) [002] d..2 82316.690599: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86086          <idle>-0     (-----) [002] d..1 82316.690613: cpu_idle: state=0 cpu_id=2
86087<...>-13083 ( 8858) [001] .... 82316.690664: binder_transaction: transaction=1571070 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
86088<...>-13083 ( 8858) [001] .... 82316.690669: binder_transaction_alloc_buf: transaction=1571070 data_size=68 offsets_size=0
86089          <idle>-0     (-----) [002] d.h4 82316.690677: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86090          <idle>-0     (-----) [005] dnh2 82316.690700: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86091          <idle>-0     (-----) [005] .n.1 82316.690704: cpu_idle: state=4294967295 cpu_id=5
86092          <idle>-0     (-----) [005] d..2 82316.690713: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86093<...>-13083 ( 8858) [001] d..2 82316.690713: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
86094          <idle>-0     (-----) [002] ...1 82316.690720: cpu_idle: state=4294967295 cpu_id=2
86095    RenderThread-9436  ( 9105) [001] .... 82316.690723: binder_transaction_received: transaction=1571070
86096          <idle>-0     (-----) [002] d..1 82316.690726: cpu_idle: state=0 cpu_id=2
86097<...>-5340 ( 788) [005] d..1 82316.690765: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
86098          <idle>-0     (-----) [002] dnh2 82316.690787: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
86099          <idle>-0     (-----) [002] .n.1 82316.690796: cpu_idle: state=4294967295 cpu_id=2
86100          <idle>-0     (-----) [002] d..2 82316.690808: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
86101    RenderThread-9436  ( 9105) [001] d..2 82316.690846: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86102<...>-5340 ( 788) [005] ...1 82316.690858: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
86103<...>-5340 ( 788) [005] ...1 82316.690862: tracing_mark_write: E|788
86104          <idle>-0     (-----) [001] d..1 82316.690863: cpu_idle: state=0 cpu_id=1
86105 neuralnetworks@-13088 (  788) [002] d..2 82316.690876: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86106<...>-5340 ( 788) [005] .... 82316.690878: binder_transaction: transaction=1571071 dest_node=1571064 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
86107<...>-5340 ( 788) [005] .... 82316.690881: binder_transaction_alloc_buf: transaction=1571071 data_size=60 offsets_size=0
86108<...>-5340 ( 788) [005] d..4 82316.690884: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
86109          <idle>-0     (-----) [002] d..1 82316.690889: cpu_idle: state=0 cpu_id=2
86110<...>-5340 ( 788) [005] d..5 82316.690897: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
86111          <idle>-0     (-----) [004] .n.1 82316.690903: cpu_idle: state=4294967295 cpu_id=4
86112          <idle>-0     (-----) [004] d..2 82316.690912: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
86113           <...>-27571 (-----) [004] .... 82316.690917: binder_transaction_received: transaction=1571071
86114<...>-5340 ( 788) [005] ...1 82316.690920: tracing_mark_write: E|788
86115<...>-5340 ( 788) [005] .... 82316.690926: binder_transaction: transaction=1571072 dest_node=0 dest_proc=27550 dest_thread=27740 reply=1 flags=0x0 code=0x0
86116<...>-5340 ( 788) [005] .... 82316.690928: binder_transaction_alloc_buf: transaction=1571072 data_size=8 offsets_size=0
86117<...>-5340 ( 788) [005] d..2 82316.690930: sched_waking: comm=id.nn.benchmark pid=27740 prio=110 target_cpu=005
86118           <...>-27571 (-----) [004] ...1 82316.690937: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
86119<...>-5340 ( 788) [005] d..3 82316.690937: sched_wakeup: comm=id.nn.benchmark pid=27740 prio=110 target_cpu=005
86120<...>-5340 ( 788) [005] .... 82316.690939: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
86121           <...>-27571 (-----) [004] ...1 82316.690943: tracing_mark_write: E|27550
86122           <...>-27571 (-----) [004] d..2 82316.690972: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86123          <idle>-0     (-----) [004] d..1 82316.690980: cpu_idle: state=0 cpu_id=4
86124<...>-5340 ( 788) [005] d..2 82316.690982: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27740 next_prio=110
86125           <...>-27740 (-----) [005] .... 82316.690992: binder_transaction_received: transaction=1571072
86126           <...>-27740 (-----) [005] ...1 82316.691031: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
86127           <...>-27740 (-----) [005] ...1 82316.691037: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
86128           <...>-27740 (-----) [005] ...1 82316.691063: tracing_mark_write: E|27550
86129           <...>-27740 (-----) [005] ...1 82316.691067: tracing_mark_write: E|27550
86130           <...>-27740 (-----) [005] ...1 82316.691070: tracing_mark_write: E|27550
86131           <...>-27740 (-----) [005] ...1 82316.691260: tracing_mark_write: E|27550
86132           <...>-27740 (-----) [005] d..1 82316.691273: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86133           <...>-27740 (-----) [005] d..2 82316.691289: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86134          <idle>-0     (-----) [004] .n.1 82316.691293: cpu_idle: state=4294967295 cpu_id=4
86135          <idle>-0     (-----) [004] d..2 82316.691300: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
86136           <...>-27550 (-----) [004] d..2 82316.691320: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86137          <idle>-0     (-----) [004] d..1 82316.691329: cpu_idle: state=0 cpu_id=4
86138           <...>-27740 (-----) [005] d..1 82316.691377: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86139           <...>-27740 (-----) [005] d..2 82316.691387: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86140          <idle>-0     (-----) [004] .n.1 82316.691392: cpu_idle: state=4294967295 cpu_id=4
86141          <idle>-0     (-----) [004] d..2 82316.691399: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
86142           <...>-27740 (-----) [005] d..2 82316.691426: sched_switch: prev_comm=id.nn.benchmark prev_pid=27740 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
86143           <...>-27550 (-----) [004] ...1 82316.691433: tracing_mark_write: E|27550
86144           <...>-27550 (-----) [004] ...1 82316.691438: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
86145           <...>-27550 (-----) [004] ...1 82316.691444: tracing_mark_write: E|27550
86146          <idle>-0     (-----) [005] d..1 82316.691447: cpu_idle: state=0 cpu_id=5
86147           <...>-27550 (-----) [004] ...1 82316.691448: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
86148           <...>-27550 (-----) [004] ...1 82316.691451: tracing_mark_write: E|27550
86149           <...>-27550 (-----) [004] ...1 82316.691456: tracing_mark_write: E|27550
86150           <...>-27550 (-----) [004] ...1 82316.691568: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
86151           <...>-27550 (-----) [004] ...1 82316.691625: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
86152           <...>-27550 (-----) [004] ...1 82316.691630: tracing_mark_write: E|27550
86153           <...>-27550 (-----) [004] ...1 82316.691634: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
86154           <...>-27550 (-----) [004] ...1 82316.691639: tracing_mark_write: E|27550
86155           <...>-27550 (-----) [004] ...1 82316.691643: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
86156           <...>-27550 (-----) [004] ...1 82316.691646: tracing_mark_write: E|27550
86157           <...>-27550 (-----) [004] ...1 82316.691650: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
86158          <idle>-0     (-----) [001] d.h2 82316.691729: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
86159          <idle>-0     (-----) [005] .n.1 82316.691743: cpu_idle: state=4294967295 cpu_id=5
86160           <...>-27550 (-----) [004] ...1 82316.691745: tracing_mark_write: E|27550
86161          <idle>-0     (-----) [001] dnh3 82316.691746: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
86162           <...>-27550 (-----) [004] ...1 82316.691750: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
86163          <idle>-0     (-----) [005] d..2 82316.691753: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27741 next_prio=110
86164          <idle>-0     (-----) [001] .n.1 82316.691755: cpu_idle: state=4294967295 cpu_id=1
86165          <idle>-0     (-----) [001] d..2 82316.691766: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
86166           <...>-27550 (-----) [004] d..2 82316.691767: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86167          <idle>-0     (-----) [003] d.s2 82316.691801: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
86168          <idle>-0     (-----) [000] d.s2 82316.691806: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86169          <idle>-0     (-----) [003] dns3 82316.691843: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
86170           <...>-27741 (-----) [005] ...1 82316.691845: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
86171          <idle>-0     (-----) [003] .n.1 82316.691853: cpu_idle: state=4294967295 cpu_id=3
86172          <idle>-0     (-----) [000] dns3 82316.691856: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86173        DispSync-8879  ( 8858) [001] d..1 82316.691858: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
86174           <...>-27741 (-----) [005] ...1 82316.691859: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
86175          <idle>-0     (-----) [003] d..2 82316.691863: 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
86176           <...>-27741 (-----) [005] ...1 82316.691863: tracing_mark_write: E|27550
86177          <idle>-0     (-----) [000] .n.1 82316.691865: cpu_idle: state=4294967295 cpu_id=0
86178<...>-8 ( 8) [003] d..2 82316.691873: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
86179          <idle>-0     (-----) [000] d..2 82316.691874: 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
86180          <idle>-0     (-----) [004] d..1 82316.691877: cpu_idle: state=0 cpu_id=4
86181     rcu_preempt-7     (    7) [000] d..2 82316.691883: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
86182           <...>-27741 (-----) [005] .... 82316.691884: binder_transaction: transaction=1571073 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
86183           <...>-27741 (-----) [005] .... 82316.691887: binder_transaction_alloc_buf: transaction=1571073 data_size=48 offsets_size=0
86184           <...>-27741 (-----) [005] ...2 82316.691890: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
86185           <...>-27741 (-----) [005] d..4 82316.691893: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
86186        DispSync-8879  ( 8858) [001] d..2 82316.691895: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
86187          <idle>-0     (-----) [002] .n.1 82316.691901: cpu_idle: state=4294967295 cpu_id=2
86188           <...>-27741 (-----) [005] dn.5 82316.691904: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
86189           <...>-27741 (-----) [005] d..2 82316.691911: sched_switch: prev_comm=id.nn.benchmark prev_pid=27741 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
86190          <idle>-0     (-----) [002] d..2 82316.691918: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
86191<...>-8 ( 8) [003] d..3 82316.691919: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
86192<...>-770 ( 770) [005] .... 82316.691921: binder_transaction_received: transaction=1571073
86193     rcu_preempt-7     (    7) [000] d..3 82316.691927: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
86194     rcu_preempt-7     (    7) [000] d..2 82316.691931: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
86195        DispSync-8879  ( 8858) [001] d..2 82316.691936: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
86196<...>-8 ( 8) [003] d..2 82316.691945: 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
86197<...>-770 ( 770) [005] ...1 82316.691946: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
86198     rcu_preempt-7     (    7) [000] d..3 82316.691955: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
86199   sfEventThread-8882  ( 8858) [002] d..3 82316.691966: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
86200          <idle>-0     (-----) [003] d..2 82316.691966: 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
86201<...>-46 ( 46) [001] d..2 82316.691967: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
86202         rcuop/4-45    (   45) [003] d..2 82316.691973: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
86203     rcu_preempt-7     (    7) [000] d..2 82316.691982: 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
86204   sfEventThread-8882  ( 8858) [002] d..4 82316.691994: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
86205          <idle>-0     (-----) [000] d..1 82316.691997: cpu_idle: state=0 cpu_id=0
86206<...>-46 ( 46) [001] d..3 82316.692018: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
86207          <idle>-0     (-----) [000] .n.1 82316.692023: cpu_idle: state=4294967295 cpu_id=0
86208         rcuop/4-45    (   45) [003] dn.3 82316.692025: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
86209<...>-770 ( 770) [005] d..2 82316.692026: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
86210   sfEventThread-8882  ( 8858) [002] d..2 82316.692027: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
86211         rcuop/2-29    (   29) [002] d..2 82316.692033: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
86212         rcuop/4-45    (   45) [003] d..2 82316.692038: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
86213          <idle>-0     (-----) [000] d..2 82316.692043: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
86214<...>-46 ( 46) [001] d..2 82316.692059: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86215         rcuop/2-29    (   29) [002] d..3 82316.692079: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
86216          <idle>-0     (-----) [001] dnh3 82316.692086: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
86217<...>-770 ( 770) [005] ...1 82316.692089: tracing_mark_write: E|770
86218<...>-770 ( 770) [005] .... 82316.692098: binder_transaction: transaction=1571074 dest_node=0 dest_proc=27550 dest_thread=27741 reply=1 flags=0x0 code=0x0
86219<...>-770 ( 770) [005] .... 82316.692101: binder_transaction_alloc_buf: transaction=1571074 data_size=168 offsets_size=32
86220          <idle>-0     (-----) [001] d..2 82316.692101: 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
86221<...>-770 ( 770) [005] .... 82316.692108: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
86222         rcuop/2-29    (   29) [002] d..2 82316.692112: 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
86223         rcuop/3-37    (   37) [001] d..2 82316.692119: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
86224          <idle>-0     (-----) [002] d..1 82316.692127: cpu_idle: state=0 cpu_id=2
86225         rcuop/5-53    (   53) [000] d..2 82316.692131: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
86226<...>-770 ( 770) [005] d..2 82316.692144: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27741 next_prio=110
86227<...>-8 ( 8) [000] d..2 82316.692153: 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
86228           <...>-27741 (-----) [005] .... 82316.692155: binder_transaction_received: transaction=1571074
86229          <idle>-0     (-----) [000] d..1 82316.692166: cpu_idle: state=0 cpu_id=0
86230<...>-581 ( 571) [001] d..2 82316.692220: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86231           <...>-27741 (-----) [005] ...1 82316.692229: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
86232           <...>-27741 (-----) [005] ...1 82316.692234: tracing_mark_write: E|27550
86233          <idle>-0     (-----) [001] d..1 82316.692239: cpu_idle: state=0 cpu_id=1
86234           <...>-27741 (-----) [005] .... 82316.692249: binder_transaction: transaction=1571075 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
86235           <...>-27741 (-----) [005] .... 82316.692252: binder_transaction_alloc_buf: transaction=1571075 data_size=48 offsets_size=0
86236           <...>-27741 (-----) [005] ...2 82316.692254: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
86237           <...>-27741 (-----) [005] d..4 82316.692256: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
86238           <...>-27741 (-----) [005] dn.5 82316.692267: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
86239           <...>-27741 (-----) [005] d..2 82316.692273: sched_switch: prev_comm=id.nn.benchmark prev_pid=27741 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
86240<...>-770 ( 770) [005] .... 82316.692281: binder_transaction_received: transaction=1571075
86241<...>-770 ( 770) [005] ...1 82316.692298: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
86242  surfaceflinger-8858  ( 8858) [003] d..2 82316.692355: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
86243<...>-770 ( 770) [005] d..2 82316.692358: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
86244  surfaceflinger-8858  ( 8858) [003] d..3 82316.692376: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
86245          <idle>-0     (-----) [002] .n.1 82316.692381: cpu_idle: state=4294967295 cpu_id=2
86246          <idle>-0     (-----) [001] dnh2 82316.692383: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
86247          <idle>-0     (-----) [001] .n.1 82316.692391: cpu_idle: state=4294967295 cpu_id=1
86248<...>-770 ( 770) [005] ...1 82316.692391: tracing_mark_write: E|770
86249          <idle>-0     (-----) [002] d..2 82316.692393: 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
86250<...>-770 ( 770) [005] .... 82316.692398: binder_transaction: transaction=1571076 dest_node=0 dest_proc=27550 dest_thread=27741 reply=1 flags=0x0 code=0x0
86251  surfaceflinger-8858  ( 8858) [003] d..1 82316.692401: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
86252<...>-770 ( 770) [005] .... 82316.692402: binder_transaction_alloc_buf: transaction=1571076 data_size=168 offsets_size=32
86253          <idle>-0     (-----) [001] d..2 82316.692402: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
86254<...>-770 ( 770) [005] .... 82316.692407: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
86255         rcuop/2-29    (   29) [002] d..2 82316.692415: 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
86256  surfaceflinger-8858  ( 8858) [003] d..2 82316.692425: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
86257          <idle>-0     (-----) [002] d..2 82316.692432: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
86258<...>-770 ( 770) [005] d..2 82316.692441: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27741 next_prio=110
86259           <...>-27741 (-----) [005] .... 82316.692452: binder_transaction_received: transaction=1571076
86260<...>-581 ( 571) [001] d..2 82316.692461: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86261   sfEventThread-8882  ( 8858) [002] d..2 82316.692471: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86262          <idle>-0     (-----) [001] d..1 82316.692475: cpu_idle: state=0 cpu_id=1
86263          <idle>-0     (-----) [002] d..1 82316.692482: cpu_idle: state=0 cpu_id=2
86264  surfaceflinger-8858  ( 8858) [003] ...1 82316.692616: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
86265  surfaceflinger-8858  ( 8858) [003] ...1 82316.692623: tracing_mark_write: E|8858
86266  surfaceflinger-8858  ( 8858) [003] .... 82316.692675: binder_transaction: transaction=1571077 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
86267  surfaceflinger-8858  ( 8858) [003] .... 82316.692680: binder_transaction_alloc_buf: transaction=1571077 data_size=540 offsets_size=96
86268  surfaceflinger-8858  ( 8858) [003] ...2 82316.692705: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
86269  surfaceflinger-8858  ( 8858) [003] d..4 82316.692712: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
86270           <...>-27741 (-----) [005] ...1 82316.692727: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
86271  surfaceflinger-8858  ( 8858) [003] d..5 82316.692732: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
86272           <...>-27741 (-----) [005] ...1 82316.692736: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
86273          <idle>-0     (-----) [001] .n.1 82316.692739: cpu_idle: state=4294967295 cpu_id=1
86274           <...>-27741 (-----) [005] ...1 82316.692740: tracing_mark_write: E|27550
86275          <idle>-0     (-----) [001] d..2 82316.692749: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
86276  surfaceflinger-8858  ( 8858) [003] d..2 82316.692754: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
86277 [email protected]   (  619) [001] .... 82316.692760: binder_transaction_received: transaction=1571077
86278         rcuop/4-45    (   45) [003] d..2 82316.692780: 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
86279          <idle>-0     (-----) [003] d..1 82316.692798: cpu_idle: state=0 cpu_id=3
86280           <...>-27741 (-----) [005] .... 82316.692804: binder_transaction: transaction=1571078 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
86281           <...>-27741 (-----) [005] .... 82316.692808: binder_transaction_alloc_buf: transaction=1571078 data_size=556 offsets_size=104
86282 [email protected]   (  619) [001] ...1 82316.692808: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
86283           <...>-27741 (-----) [005] ...2 82316.692823: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
86284           <...>-27741 (-----) [005] d..4 82316.692826: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86285           <...>-27741 (-----) [005] dn.5 82316.692838: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86286           <...>-27741 (-----) [005] d..2 82316.692845: sched_switch: prev_comm=id.nn.benchmark prev_pid=27741 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86287<...>-5340 ( 788) [005] .... 82316.692855: binder_transaction_received: transaction=1571078
86288<...>-5340 ( 788) [005] ...1 82316.692902: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
86289 [email protected]   (  619) [001] ...1 82316.692921: tracing_mark_write: B|619|HWCSession::PresentDisplay::
86290<...>-5340 ( 788) [005] d..2 82316.692948: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
86291<...>-5340 ( 788) [005] d..2 82316.692987: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27741 next_prio=110
86292 [email protected]   (  619) [001] d.h1 82316.692993: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
86293           <...>-27741 (-----) [005] d..2 82316.693011: sched_switch: prev_comm=id.nn.benchmark prev_pid=27741 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
86294          <idle>-0     (-----) [005] d..1 82316.693029: cpu_idle: state=0 cpu_id=5
86295 [email protected]   (  619) [001] ...1 82316.693122: tracing_mark_write: B|619|HWDeviceDRM::Commit::
86296 [email protected]   (  619) [001] ...1 82316.693136: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
86297 [email protected]   (  619) [001] d..2 82316.693784: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
86298 [email protected]   (  619) [001] d..3 82316.693810: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
86299          <idle>-0     (-----) [000] .n.1 82316.693815: cpu_idle: state=4294967295 cpu_id=0
86300          <idle>-0     (-----) [000] d..2 82316.693826: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
86301 [email protected]   (  619) [001] ...1 82316.693919: tracing_mark_write: E|619
86302 [email protected]   (  619) [001] ...1 82316.693926: tracing_mark_write: E|619
86303          <idle>-0     (-----) [002] ...1 82316.693988: cpu_idle: state=4294967295 cpu_id=2
86304          <idle>-0     (-----) [002] d..1 82316.693992: cpu_idle: state=0 cpu_id=2
86305 [email protected]   (  619) [001] ...1 82316.693993: tracing_mark_write: E|619
86306 [email protected]   (  619) [001] ...1 82316.694040: tracing_mark_write: E|619
86307 [email protected]   (  619) [001] .... 82316.694055: binder_transaction: transaction=1571081 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
86308 [email protected]   (  619) [001] .... 82316.694060: binder_transaction_alloc_buf: transaction=1571081 data_size=576 offsets_size=112
86309 [email protected]   (  619) [001] d..2 82316.694081: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
86310 [email protected]   (  619) [001] d..3 82316.694099: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
86311 [email protected]   (  619) [001] .... 82316.694104: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
86312          <idle>-0     (-----) [003] .n.1 82316.694105: cpu_idle: state=4294967295 cpu_id=3
86313          <idle>-0     (-----) [003] d..2 82316.694116: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
86314  surfaceflinger-8858  ( 8858) [003] .... 82316.694124: binder_transaction_received: transaction=1571081
86315 [email protected]   (  619) [001] d..2 82316.694181: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
86316<...>-87 ( 87) [001] d..2 82316.694231: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86317          <idle>-0     (-----) [002] d.h4 82316.694237: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86318          <idle>-0     (-----) [001] d..1 82316.694249: cpu_idle: state=0 cpu_id=1
86319          <idle>-0     (-----) [002] dnh5 82316.694257: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86320          <idle>-0     (-----) [002] .n.1 82316.694267: cpu_idle: state=4294967295 cpu_id=2
86321          <idle>-0     (-----) [002] d..2 82316.694279: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
86322<...>-86 ( 86) [002] d.h4 82316.694313: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86323          <idle>-0     (-----) [005] dnh2 82316.694336: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86324          <idle>-0     (-----) [005] .n.1 82316.694340: cpu_idle: state=4294967295 cpu_id=5
86325          <idle>-0     (-----) [005] d..2 82316.694348: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86326<...>-86 ( 86) [002] d..2 82316.694371: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86327          <idle>-0     (-----) [002] d..1 82316.694385: cpu_idle: state=0 cpu_id=2
86328<...>-5340 ( 788) [005] d..1 82316.694402: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
86329 crtc_commit:111-321   (  321) [000] d.h1 82316.694443: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86330 crtc_commit:111-321   (  321) [000] d..2 82316.694546: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
86331  surfaceflinger-8858  ( 8858) [003] d..2 82316.694564: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86332<...>-5340 ( 788) [005] d..2 82316.694566: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
86333          <idle>-0     (-----) [003] d..1 82316.694583: cpu_idle: state=0 cpu_id=3
86334          <idle>-0     (-----) [001] dnh2 82316.694589: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
86335<...>-5340 ( 788) [005] d..2 82316.694592: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
86336          <idle>-0     (-----) [001] .n.1 82316.694597: cpu_idle: state=4294967295 cpu_id=1
86337          <idle>-0     (-----) [005] d..1 82316.694606: cpu_idle: state=0 cpu_id=5
86338 neuralnetworks@-13088 (  788) [000] d..2 82316.694606: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86339          <idle>-0     (-----) [001] d..2 82316.694609: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
86340          <idle>-0     (-----) [000] d..1 82316.694622: cpu_idle: state=0 cpu_id=0
86341<...>-87 ( 87) [001] d..2 82316.694647: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86342          <idle>-0     (-----) [002] d.h4 82316.694647: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86343          <idle>-0     (-----) [001] d..1 82316.694658: cpu_idle: state=0 cpu_id=1
86344          <idle>-0     (-----) [002] dnh5 82316.694659: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86345          <idle>-0     (-----) [002] .n.1 82316.694669: cpu_idle: state=4294967295 cpu_id=2
86346          <idle>-0     (-----) [002] d..2 82316.694680: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
86347<...>-86 ( 86) [002] d..2 82316.694713: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86348          <idle>-0     (-----) [002] d..1 82316.694725: cpu_idle: state=0 cpu_id=2
86349          <idle>-0     (-----) [001] d..2 82316.696000: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
86350          <idle>-0     (-----) [001] dn.3 82316.696015: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
86351          <idle>-0     (-----) [001] .n.1 82316.696019: cpu_idle: state=4294967295 cpu_id=1
86352          <idle>-0     (-----) [001] d..2 82316.696032: 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
86353     ksoftirqd/1-18    (   18) [001] d.s2 82316.696045: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
86354     ksoftirqd/1-18    (   18) [001] d.s3 82316.696086: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
86355     ksoftirqd/1-18    (   18) [001] d..2 82316.696099: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
86356          <idle>-0     (-----) [002] ...1 82316.696126: cpu_idle: state=4294967295 cpu_id=2
86357          <idle>-0     (-----) [002] d..1 82316.696131: cpu_idle: state=0 cpu_id=2
86358  kworker/u16:15-1311  ( 1311) [001] d..2 82316.696179: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86359          <idle>-0     (-----) [001] d..1 82316.696190: cpu_idle: state=0 cpu_id=1
86360          <idle>-0     (-----) [002] d.h4 82316.696332: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86361          <idle>-0     (-----) [005] dnh2 82316.696355: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86362          <idle>-0     (-----) [005] .n.1 82316.696360: cpu_idle: state=4294967295 cpu_id=5
86363          <idle>-0     (-----) [005] d..2 82316.696369: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86364          <idle>-0     (-----) [002] ...1 82316.696372: cpu_idle: state=4294967295 cpu_id=2
86365          <idle>-0     (-----) [002] d..1 82316.696378: cpu_idle: state=0 cpu_id=2
86366<...>-5340 ( 788) [005] d..1 82316.696421: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86367          <idle>-0     (-----) [000] dnh2 82316.696448: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86368          <idle>-0     (-----) [000] .n.1 82316.696454: cpu_idle: state=4294967295 cpu_id=0
86369          <idle>-0     (-----) [000] d..2 82316.696467: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
86370<...>-5340 ( 788) [005] ...1 82316.696513: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
86371<...>-5340 ( 788) [005] ...1 82316.696517: tracing_mark_write: E|788
86372 neuralnetworks@-13088 (  788) [000] d..2 82316.696530: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86373<...>-5340 ( 788) [005] .... 82316.696533: binder_transaction: transaction=1571082 dest_node=1571079 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
86374<...>-5340 ( 788) [005] .... 82316.696535: binder_transaction_alloc_buf: transaction=1571082 data_size=60 offsets_size=0
86375<...>-5340 ( 788) [005] d..4 82316.696538: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
86376          <idle>-0     (-----) [000] d..1 82316.696539: cpu_idle: state=0 cpu_id=0
86377<...>-5340 ( 788) [005] d..5 82316.696553: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
86378          <idle>-0     (-----) [004] .n.1 82316.696558: cpu_idle: state=4294967295 cpu_id=4
86379          <idle>-0     (-----) [004] d..2 82316.696567: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
86380           <...>-27571 (-----) [004] .... 82316.696572: binder_transaction_received: transaction=1571082
86381<...>-5340 ( 788) [005] ...1 82316.696575: tracing_mark_write: E|788
86382<...>-5340 ( 788) [005] .... 82316.696582: binder_transaction: transaction=1571083 dest_node=0 dest_proc=27550 dest_thread=27741 reply=1 flags=0x0 code=0x0
86383<...>-5340 ( 788) [005] .... 82316.696584: binder_transaction_alloc_buf: transaction=1571083 data_size=8 offsets_size=0
86384<...>-5340 ( 788) [005] d..2 82316.696585: sched_waking: comm=id.nn.benchmark pid=27741 prio=110 target_cpu=005
86385           <...>-27571 (-----) [004] ...1 82316.696592: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
86386<...>-5340 ( 788) [005] d..3 82316.696593: sched_wakeup: comm=id.nn.benchmark pid=27741 prio=110 target_cpu=005
86387<...>-5340 ( 788) [005] .... 82316.696594: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
86388           <...>-27571 (-----) [004] ...1 82316.696598: tracing_mark_write: E|27550
86389           <...>-27571 (-----) [004] d..2 82316.696628: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86390          <idle>-0     (-----) [004] d..1 82316.696636: cpu_idle: state=0 cpu_id=4
86391<...>-5340 ( 788) [005] d..2 82316.696637: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27741 next_prio=110
86392           <...>-27741 (-----) [005] .... 82316.696647: binder_transaction_received: transaction=1571083
86393           <...>-27741 (-----) [005] ...1 82316.696682: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
86394           <...>-27741 (-----) [005] ...1 82316.696689: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
86395           <...>-27741 (-----) [005] ...1 82316.696714: tracing_mark_write: E|27550
86396           <...>-27741 (-----) [005] ...1 82316.696718: tracing_mark_write: E|27550
86397           <...>-27741 (-----) [005] ...1 82316.696722: tracing_mark_write: E|27550
86398           <...>-27741 (-----) [005] ...1 82316.696910: tracing_mark_write: E|27550
86399           <...>-27741 (-----) [005] d..1 82316.696923: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86400           <...>-27741 (-----) [005] d..2 82316.696940: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86401          <idle>-0     (-----) [004] .n.1 82316.696946: cpu_idle: state=4294967295 cpu_id=4
86402          <idle>-0     (-----) [004] d..2 82316.696953: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
86403           <...>-27550 (-----) [004] d..2 82316.696973: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86404          <idle>-0     (-----) [004] d..1 82316.696982: cpu_idle: state=0 cpu_id=4
86405           <...>-27741 (-----) [005] d..1 82316.697032: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86406           <...>-27741 (-----) [005] d..2 82316.697042: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86407          <idle>-0     (-----) [004] .n.1 82316.697047: cpu_idle: state=4294967295 cpu_id=4
86408          <idle>-0     (-----) [004] d..2 82316.697055: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
86409           <...>-27741 (-----) [005] d..2 82316.697082: sched_switch: prev_comm=id.nn.benchmark prev_pid=27741 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
86410           <...>-27550 (-----) [004] ...1 82316.697100: tracing_mark_write: E|27550
86411           <...>-27550 (-----) [004] ...1 82316.697105: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
86412          <idle>-0     (-----) [005] d..1 82316.697108: cpu_idle: state=0 cpu_id=5
86413           <...>-27550 (-----) [004] ...1 82316.697116: tracing_mark_write: E|27550
86414           <...>-27550 (-----) [004] ...1 82316.697120: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
86415           <...>-27550 (-----) [004] ...1 82316.697125: tracing_mark_write: E|27550
86416           <...>-27550 (-----) [004] ...1 82316.697130: tracing_mark_write: E|27550
86417           <...>-27550 (-----) [004] ...1 82316.697245: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
86418           <...>-27550 (-----) [004] ...1 82316.697304: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
86419           <...>-27550 (-----) [004] ...1 82316.697308: tracing_mark_write: E|27550
86420           <...>-27550 (-----) [004] ...1 82316.697313: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
86421           <...>-27550 (-----) [004] ...1 82316.697318: tracing_mark_write: E|27550
86422           <...>-27550 (-----) [004] ...1 82316.697323: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
86423           <...>-27550 (-----) [004] ...1 82316.697326: tracing_mark_write: E|27550
86424           <...>-27550 (-----) [004] ...1 82316.697330: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
86425          <idle>-0     (-----) [005] .n.1 82316.697422: cpu_idle: state=4294967295 cpu_id=5
86426           <...>-27550 (-----) [004] ...1 82316.697423: tracing_mark_write: E|27550
86427           <...>-27550 (-----) [004] ...1 82316.697427: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
86428          <idle>-0     (-----) [005] d..2 82316.697431: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27742 next_prio=110
86429           <...>-27550 (-----) [004] d..2 82316.697443: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86430          <idle>-0     (-----) [004] d..1 82316.697458: cpu_idle: state=0 cpu_id=4
86431           <...>-27742 (-----) [005] ...1 82316.697492: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
86432           <...>-27742 (-----) [005] ...1 82316.697506: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
86433           <...>-27742 (-----) [005] ...1 82316.697510: tracing_mark_write: E|27550
86434           <...>-27742 (-----) [005] .... 82316.697531: binder_transaction: transaction=1571084 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
86435           <...>-27742 (-----) [005] .... 82316.697534: binder_transaction_alloc_buf: transaction=1571084 data_size=48 offsets_size=0
86436           <...>-27742 (-----) [005] ...2 82316.697537: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
86437           <...>-27742 (-----) [005] d..4 82316.697540: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
86438           <...>-27742 (-----) [005] dn.5 82316.697551: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
86439           <...>-27742 (-----) [005] d..2 82316.697557: sched_switch: prev_comm=id.nn.benchmark prev_pid=27742 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
86440<...>-770 ( 770) [005] .... 82316.697567: binder_transaction_received: transaction=1571084
86441<...>-770 ( 770) [005] ...1 82316.697592: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
86442<...>-770 ( 770) [005] d..2 82316.697668: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
86443          <idle>-0     (-----) [000] dnh2 82316.697707: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
86444          <idle>-0     (-----) [000] .n.1 82316.697713: cpu_idle: state=4294967295 cpu_id=0
86445          <idle>-0     (-----) [000] d..2 82316.697721: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
86446<...>-770 ( 770) [005] ...1 82316.697721: tracing_mark_write: E|770
86447<...>-770 ( 770) [005] .... 82316.697729: binder_transaction: transaction=1571085 dest_node=0 dest_proc=27550 dest_thread=27742 reply=1 flags=0x0 code=0x0
86448<...>-770 ( 770) [005] .... 82316.697732: binder_transaction_alloc_buf: transaction=1571085 data_size=168 offsets_size=32
86449<...>-770 ( 770) [005] .... 82316.697738: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
86450<...>-770 ( 770) [005] d..2 82316.697774: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27742 next_prio=110
86451           <...>-27742 (-----) [005] .... 82316.697784: binder_transaction_received: transaction=1571085
86452<...>-581 ( 571) [000] d..2 82316.697817: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86453          <idle>-0     (-----) [000] d..1 82316.697829: cpu_idle: state=0 cpu_id=0
86454           <...>-27742 (-----) [005] ...1 82316.697854: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
86455           <...>-27742 (-----) [005] ...1 82316.697859: tracing_mark_write: E|27550
86456           <...>-27742 (-----) [005] .... 82316.697874: binder_transaction: transaction=1571086 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
86457           <...>-27742 (-----) [005] .... 82316.697876: binder_transaction_alloc_buf: transaction=1571086 data_size=48 offsets_size=0
86458           <...>-27742 (-----) [005] ...2 82316.697879: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
86459           <...>-27742 (-----) [005] d..4 82316.697881: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
86460           <...>-27742 (-----) [005] dn.5 82316.697891: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
86461           <...>-27742 (-----) [005] d..2 82316.697897: sched_switch: prev_comm=id.nn.benchmark prev_pid=27742 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
86462<...>-770 ( 770) [005] .... 82316.697905: binder_transaction_received: transaction=1571086
86463<...>-770 ( 770) [005] ...1 82316.697922: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
86464<...>-770 ( 770) [005] d..2 82316.697980: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
86465          <idle>-0     (-----) [000] dnh2 82316.698003: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
86466          <idle>-0     (-----) [000] .n.1 82316.698010: cpu_idle: state=4294967295 cpu_id=0
86467<...>-770 ( 770) [005] ...1 82316.698014: tracing_mark_write: E|770
86468          <idle>-0     (-----) [000] d..2 82316.698018: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
86469<...>-770 ( 770) [005] .... 82316.698021: binder_transaction: transaction=1571087 dest_node=0 dest_proc=27550 dest_thread=27742 reply=1 flags=0x0 code=0x0
86470<...>-770 ( 770) [005] .... 82316.698024: binder_transaction_alloc_buf: transaction=1571087 data_size=168 offsets_size=32
86471<...>-770 ( 770) [005] .... 82316.698030: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
86472<...>-770 ( 770) [005] d..2 82316.698064: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27742 next_prio=110
86473<...>-581 ( 571) [000] d..2 82316.698073: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86474           <...>-27742 (-----) [005] .... 82316.698074: binder_transaction_received: transaction=1571087
86475          <idle>-0     (-----) [000] d..1 82316.698083: cpu_idle: state=0 cpu_id=0
86476           <...>-27742 (-----) [005] ...1 82316.698348: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
86477           <...>-27742 (-----) [005] ...1 82316.698358: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
86478           <...>-27742 (-----) [005] ...1 82316.698362: tracing_mark_write: E|27550
86479           <...>-27742 (-----) [005] .... 82316.698422: binder_transaction: transaction=1571088 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
86480           <...>-27742 (-----) [005] .... 82316.698425: binder_transaction_alloc_buf: transaction=1571088 data_size=556 offsets_size=104
86481          <idle>-0     (-----) [000] d.s2 82316.698471: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
86482           <...>-27742 (-----) [005] d.s5 82316.698472: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
86483          <idle>-0     (-----) [000] dns3 82316.698489: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
86484          <idle>-0     (-----) [000] dns2 82316.698496: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86485          <idle>-0     (-----) [000] dns3 82316.698509: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86486           <...>-27742 (-----) [005] ...2 82316.698512: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
86487           <...>-27742 (-----) [005] d..4 82316.698514: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86488          <idle>-0     (-----) [000] dnH3 82316.698520: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
86489           <...>-27742 (-----) [005] dn.5 82316.698522: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86490           <...>-27742 (-----) [005] d..2 82316.698529: sched_switch: prev_comm=id.nn.benchmark prev_pid=27742 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86491<...>-5340 ( 788) [005] .... 82316.698539: binder_transaction_received: transaction=1571088
86492          <idle>-0     (-----) [000] .n.1 82316.698540: cpu_idle: state=4294967295 cpu_id=0
86493          <idle>-0     (-----) [000] d..2 82316.698550: 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
86494<...>-8 ( 8) [000] d..2 82316.698570: 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
86495<...>-5340 ( 788) [005] ...1 82316.698584: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
86496     rcu_preempt-7     (    7) [000] d..2 82316.698585: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
86497  kworker/u16:15-1311  ( 1311) [000] .... 82316.698626: clk_set_rate: l3_cluster0_vote_clk 403200000
86498<...>-5340 ( 788) [005] d..2 82316.698627: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
86499  kworker/u16:15-1311  ( 1311) [000] d.h3 82316.698665: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
86500<...>-5340 ( 788) [005] d..2 82316.698670: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27742 next_prio=110
86501           <...>-27742 (-----) [005] d..2 82316.698701: sched_switch: prev_comm=id.nn.benchmark prev_pid=27742 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
86502          <idle>-0     (-----) [005] d..1 82316.698726: cpu_idle: state=0 cpu_id=5
86503  kworker/u16:15-1311  ( 1311) [000] d..2 82316.698910: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
86504<...>-87 ( 87) [000] d..2 82316.698957: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86505          <idle>-0     (-----) [001] d.s3 82316.698958: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
86506          <idle>-0     (-----) [002] d.h4 82316.698961: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86507          <idle>-0     (-----) [001] d.s4 82316.698969: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
86508          <idle>-0     (-----) [000] d..1 82316.698973: cpu_idle: state=0 cpu_id=0
86509          <idle>-0     (-----) [000] .n.1 82316.698978: cpu_idle: state=4294967295 cpu_id=0
86510          <idle>-0     (-----) [001] d.s4 82316.698978: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
86511          <idle>-0     (-----) [001] ...1 82316.698989: cpu_idle: state=4294967295 cpu_id=1
86512          <idle>-0     (-----) [001] d..1 82316.698994: cpu_idle: state=0 cpu_id=1
86513          <idle>-0     (-----) [000] d..2 82316.698996: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
86514          <idle>-0     (-----) [002] d.h5 82316.699005: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
86515          <idle>-0     (-----) [002] ...1 82316.699017: cpu_idle: state=4294967295 cpu_id=2
86516          <idle>-0     (-----) [002] d..1 82316.699024: cpu_idle: state=0 cpu_id=2
86517  kworker/u16:15-1311  ( 1311) [000] d..2 82316.699041: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
86518          <idle>-0     (-----) [002] d.h4 82316.699049: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86519          <idle>-0     (-----) [005] dnh2 82316.699069: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86520          <idle>-0     (-----) [005] .n.1 82316.699073: cpu_idle: state=4294967295 cpu_id=5
86521          <idle>-0     (-----) [005] d..2 82316.699081: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86522          <idle>-0     (-----) [002] ...1 82316.699087: cpu_idle: state=4294967295 cpu_id=2
86523          <idle>-0     (-----) [002] d..1 82316.699093: cpu_idle: state=0 cpu_id=2
86524<...>-86 ( 86) [000] d..2 82316.699116: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86525          <idle>-0     (-----) [000] d..1 82316.699128: cpu_idle: state=0 cpu_id=0
86526<...>-5340 ( 788) [005] d..1 82316.699133: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86527          <idle>-0     (-----) [000] dnh2 82316.699161: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86528          <idle>-0     (-----) [000] .n.1 82316.699167: cpu_idle: state=4294967295 cpu_id=0
86529          <idle>-0     (-----) [000] d..2 82316.699178: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
86530 neuralnetworks@-13088 (  788) [000] d..2 82316.699226: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86531          <idle>-0     (-----) [000] d..1 82316.699239: cpu_idle: state=0 cpu_id=0
86532<...>-5340 ( 788) [005] d..2 82316.699281: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
86533          <idle>-0     (-----) [000] dnh2 82316.699303: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
86534<...>-5340 ( 788) [005] d..2 82316.699307: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
86535          <idle>-0     (-----) [000] .n.1 82316.699309: cpu_idle: state=4294967295 cpu_id=0
86536          <idle>-0     (-----) [005] d..1 82316.699320: cpu_idle: state=0 cpu_id=5
86537          <idle>-0     (-----) [000] d..2 82316.699320: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
86538          <idle>-0     (-----) [002] d.h4 82316.699358: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
86539<...>-87 ( 87) [000] d..2 82316.699358: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86540          <idle>-0     (-----) [000] dn.1 82316.699370: cpu_idle: state=0 cpu_id=0
86541          <idle>-0     (-----) [002] d.h5 82316.699373: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
86542          <idle>-0     (-----) [000] .n.1 82316.699373: cpu_idle: state=4294967295 cpu_id=0
86543          <idle>-0     (-----) [002] ...1 82316.699384: cpu_idle: state=4294967295 cpu_id=2
86544          <idle>-0     (-----) [000] d..2 82316.699388: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
86545          <idle>-0     (-----) [002] d..1 82316.699389: cpu_idle: state=0 cpu_id=2
86546<...>-86 ( 86) [000] d..2 82316.699421: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86547          <idle>-0     (-----) [000] d..1 82316.699432: cpu_idle: state=0 cpu_id=0
86548          <idle>-0     (-----) [000] d.h5 82316.699738: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
86549          <idle>-0     (-----) [000] d.h6 82316.699760: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
86550          <idle>-0     (-----) [000] d.h5 82316.699764: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
86551          <idle>-0     (-----) [002] .n.1 82316.699765: cpu_idle: state=4294967295 cpu_id=2
86552          <idle>-0     (-----) [000] dnh6 82316.699772: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
86553          <idle>-0     (-----) [002] d..2 82316.699776: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
86554          <idle>-0     (-----) [000] .n.1 82316.699785: cpu_idle: state=4294967295 cpu_id=0
86555          <idle>-0     (-----) [000] d..2 82316.699796: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
86556  crtc_event:111-322   (  322) [002] d..2 82316.699814: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86557          <idle>-0     (-----) [002] d..1 82316.699825: cpu_idle: state=0 cpu_id=2
86558 crtc_commit:111-321   (  321) [000] d..2 82316.699935: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
86559          <idle>-0     (-----) [000] d..1 82316.699945: cpu_idle: state=0 cpu_id=0
86560          <idle>-0     (-----) [002] d.h4 82316.701113: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86561          <idle>-0     (-----) [005] dnh2 82316.701134: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86562          <idle>-0     (-----) [005] .n.1 82316.701138: cpu_idle: state=4294967295 cpu_id=5
86563          <idle>-0     (-----) [005] d..2 82316.701147: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86564          <idle>-0     (-----) [002] ...1 82316.701152: cpu_idle: state=4294967295 cpu_id=2
86565          <idle>-0     (-----) [002] d..1 82316.701160: cpu_idle: state=0 cpu_id=2
86566<...>-5340 ( 788) [005] d..1 82316.701196: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86567          <idle>-0     (-----) [000] dnh2 82316.701223: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86568          <idle>-0     (-----) [000] .n.1 82316.701229: cpu_idle: state=4294967295 cpu_id=0
86569          <idle>-0     (-----) [000] d..2 82316.701237: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
86570<...>-5340 ( 788) [005] ...1 82316.701287: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
86571<...>-5340 ( 788) [005] ...1 82316.701291: tracing_mark_write: E|788
86572 neuralnetworks@-13088 (  788) [000] d..2 82316.701303: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86573<...>-5340 ( 788) [005] .... 82316.701307: binder_transaction: transaction=1571091 dest_node=1571089 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
86574<...>-5340 ( 788) [005] .... 82316.701309: binder_transaction_alloc_buf: transaction=1571091 data_size=60 offsets_size=0
86575          <idle>-0     (-----) [000] d..1 82316.701312: cpu_idle: state=0 cpu_id=0
86576<...>-5340 ( 788) [005] d..4 82316.701313: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
86577<...>-5340 ( 788) [005] d..5 82316.701325: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
86578          <idle>-0     (-----) [004] .n.1 82316.701331: cpu_idle: state=4294967295 cpu_id=4
86579          <idle>-0     (-----) [004] d..2 82316.701339: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
86580           <...>-27571 (-----) [004] .... 82316.701344: binder_transaction_received: transaction=1571091
86581<...>-5340 ( 788) [005] ...1 82316.701347: tracing_mark_write: E|788
86582<...>-5340 ( 788) [005] .... 82316.701353: binder_transaction: transaction=1571092 dest_node=0 dest_proc=27550 dest_thread=27742 reply=1 flags=0x0 code=0x0
86583<...>-5340 ( 788) [005] .... 82316.701355: binder_transaction_alloc_buf: transaction=1571092 data_size=8 offsets_size=0
86584<...>-5340 ( 788) [005] d..2 82316.701357: sched_waking: comm=id.nn.benchmark pid=27742 prio=110 target_cpu=005
86585           <...>-27571 (-----) [004] ...1 82316.701362: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
86586<...>-5340 ( 788) [005] d..3 82316.701364: sched_wakeup: comm=id.nn.benchmark pid=27742 prio=110 target_cpu=005
86587<...>-5340 ( 788) [005] .... 82316.701366: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
86588           <...>-27571 (-----) [004] ...1 82316.701368: tracing_mark_write: E|27550
86589           <...>-27571 (-----) [004] d..2 82316.701396: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86590          <idle>-0     (-----) [004] d..1 82316.701404: cpu_idle: state=0 cpu_id=4
86591<...>-5340 ( 788) [005] d..2 82316.701406: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27742 next_prio=110
86592           <...>-27742 (-----) [005] .... 82316.701416: binder_transaction_received: transaction=1571092
86593           <...>-27742 (-----) [005] ...1 82316.701454: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
86594           <...>-27742 (-----) [005] ...1 82316.701461: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
86595           <...>-27742 (-----) [005] ...1 82316.701488: tracing_mark_write: E|27550
86596           <...>-27742 (-----) [005] ...1 82316.701492: tracing_mark_write: E|27550
86597           <...>-27742 (-----) [005] ...1 82316.701497: tracing_mark_write: E|27550
86598           <...>-27742 (-----) [005] ...1 82316.701685: tracing_mark_write: E|27550
86599           <...>-27742 (-----) [005] d..1 82316.701698: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86600           <...>-27742 (-----) [005] d..2 82316.701714: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86601          <idle>-0     (-----) [004] .n.1 82316.701720: cpu_idle: state=4294967295 cpu_id=4
86602          <idle>-0     (-----) [004] d..2 82316.701726: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
86603           <...>-27550 (-----) [004] d..2 82316.701746: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86604          <idle>-0     (-----) [004] d..1 82316.701754: cpu_idle: state=0 cpu_id=4
86605           <...>-27742 (-----) [005] d.s2 82316.701802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86606          <idle>-0     (-----) [000] d.s3 82316.701803: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
86607           <...>-27742 (-----) [005] d.s2 82316.701814: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
86608          <idle>-0     (-----) [000] d.s4 82316.701820: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
86609          <idle>-0     (-----) [002] .n.1 82316.701827: cpu_idle: state=4294967295 cpu_id=2
86610          <idle>-0     (-----) [000] dnH3 82316.701834: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
86611          <idle>-0     (-----) [000] dnH3 82316.701838: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
86612          <idle>-0     (-----) [002] d..2 82316.701839: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
86613           <...>-27742 (-----) [005] d..1 82316.701851: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86614          <idle>-0     (-----) [000] .n.1 82316.701852: cpu_idle: state=4294967295 cpu_id=0
86615           <...>-27742 (-----) [005] d..2 82316.701860: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86616          <idle>-0     (-----) [000] d..2 82316.701861: 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
86617          <idle>-0     (-----) [004] .n.1 82316.701865: cpu_idle: state=4294967295 cpu_id=4
86618<...>-8 ( 8) [000] d..2 82316.701868: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
86619          <idle>-0     (-----) [004] d..2 82316.701874: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
86620  crtc_event:111-322   (  322) [002] d..2 82316.701888: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
86621     rcu_preempt-7     (    7) [002] d..2 82316.701898: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
86622           <...>-27742 (-----) [005] d..2 82316.701899: sched_switch: prev_comm=id.nn.benchmark prev_pid=27742 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
86623           <...>-27550 (-----) [004] ...1 82316.701907: tracing_mark_write: E|27550
86624           <...>-27550 (-----) [004] ...1 82316.701911: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
86625<...>-8 ( 8) [000] d..3 82316.701912: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
86626           <...>-27550 (-----) [004] ...1 82316.701917: tracing_mark_write: E|27550
86627          <idle>-0     (-----) [005] d..1 82316.701919: cpu_idle: state=0 cpu_id=5
86628           <...>-27550 (-----) [004] ...1 82316.701921: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
86629           <...>-27550 (-----) [004] ...1 82316.701926: tracing_mark_write: E|27550
86630           <...>-27550 (-----) [004] ...1 82316.701930: tracing_mark_write: E|27550
86631<...>-8 ( 8) [000] d..2 82316.701938: 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
86632     rcu_preempt-7     (    7) [002] d..3 82316.701940: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
86633          <idle>-0     (-----) [000] d..1 82316.701953: cpu_idle: state=0 cpu_id=0
86634     rcu_preempt-7     (    7) [002] d..2 82316.701958: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
86635<...>-46 ( 46) [002] d..2 82316.701973: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
86636<...>-46 ( 46) [002] d..3 82316.701987: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
86637<...>-46 ( 46) [002] d..2 82316.701998: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
86638         rcuop/0-10    (   10) [002] d..2 82316.702035: 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
86639           <...>-27550 (-----) [004] ...1 82316.702042: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
86640          <idle>-0     (-----) [002] d..1 82316.702048: cpu_idle: state=0 cpu_id=2
86641          <idle>-0     (-----) [000] dnh6 82316.702076: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
86642          <idle>-0     (-----) [000] dnh7 82316.702099: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
86643           <...>-27550 (-----) [004] ...1 82316.702100: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
86644           <...>-27550 (-----) [004] ...1 82316.702104: tracing_mark_write: E|27550
86645          <idle>-0     (-----) [002] .n.1 82316.702106: cpu_idle: state=4294967295 cpu_id=2
86646           <...>-27550 (-----) [004] ...1 82316.702108: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
86647          <idle>-0     (-----) [000] .n.1 82316.702111: cpu_idle: state=4294967295 cpu_id=0
86648           <...>-27550 (-----) [004] ...1 82316.702113: tracing_mark_write: E|27550
86649          <idle>-0     (-----) [002] d..2 82316.702116: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
86650           <...>-27550 (-----) [004] ...1 82316.702117: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
86651           <...>-27550 (-----) [004] ...1 82316.702120: tracing_mark_write: E|27550
86652          <idle>-0     (-----) [000] d..2 82316.702123: 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
86653           <...>-27550 (-----) [004] ...1 82316.702124: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
86654<...>-8 ( 8) [000] d..2 82316.702146: 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
86655          <idle>-0     (-----) [000] d..1 82316.702157: cpu_idle: state=0 cpu_id=0
86656 crtc_commit:111-321   (  321) [002] d..2 82316.702196: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86657          <idle>-0     (-----) [002] d..1 82316.702209: cpu_idle: state=0 cpu_id=2
86658          <idle>-0     (-----) [005] .n.1 82316.702210: cpu_idle: state=4294967295 cpu_id=5
86659           <...>-27550 (-----) [004] ...1 82316.702212: tracing_mark_write: E|27550
86660           <...>-27550 (-----) [004] ...1 82316.702217: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
86661          <idle>-0     (-----) [005] d..2 82316.702220: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27743 next_prio=110
86662           <...>-27550 (-----) [004] d..2 82316.702233: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86663          <idle>-0     (-----) [004] d..1 82316.702248: cpu_idle: state=0 cpu_id=4
86664           <...>-27743 (-----) [005] ...1 82316.702282: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
86665           <...>-27743 (-----) [005] ...1 82316.702296: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
86666           <...>-27743 (-----) [005] ...1 82316.702300: tracing_mark_write: E|27550
86667           <...>-27743 (-----) [005] .... 82316.702322: binder_transaction: transaction=1571093 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
86668           <...>-27743 (-----) [005] .... 82316.702325: binder_transaction_alloc_buf: transaction=1571093 data_size=48 offsets_size=0
86669           <...>-27743 (-----) [005] ...2 82316.702328: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
86670           <...>-27743 (-----) [005] d..4 82316.702331: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
86671           <...>-27743 (-----) [005] dn.5 82316.702341: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
86672           <...>-27743 (-----) [005] d..2 82316.702347: sched_switch: prev_comm=id.nn.benchmark prev_pid=27743 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
86673<...>-770 ( 770) [005] .... 82316.702357: binder_transaction_received: transaction=1571093
86674          <idle>-0     (-----) [000] d.h5 82316.702377: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
86675<...>-770 ( 770) [005] ...1 82316.702379: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
86676          <idle>-0     (-----) [000] d.h6 82316.702394: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
86677          <idle>-0     (-----) [002] .n.1 82316.702399: cpu_idle: state=4294967295 cpu_id=2
86678          <idle>-0     (-----) [002] d..2 82316.702410: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
86679          <idle>-0     (-----) [000] ...1 82316.702410: cpu_idle: state=4294967295 cpu_id=0
86680          <idle>-0     (-----) [000] d..1 82316.702416: cpu_idle: state=0 cpu_id=0
86681  crtc_event:111-322   (  322) [002] d..2 82316.702435: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86682          <idle>-0     (-----) [002] d..1 82316.702445: cpu_idle: state=0 cpu_id=2
86683<...>-770 ( 770) [005] d..2 82316.702448: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
86684          <idle>-0     (-----) [000] dnh2 82316.702476: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
86685          <idle>-0     (-----) [000] .n.1 82316.702481: cpu_idle: state=4294967295 cpu_id=0
86686<...>-770 ( 770) [005] ...1 82316.702489: tracing_mark_write: E|770
86687          <idle>-0     (-----) [000] d..2 82316.702493: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
86688<...>-770 ( 770) [005] .... 82316.702497: binder_transaction: transaction=1571094 dest_node=0 dest_proc=27550 dest_thread=27743 reply=1 flags=0x0 code=0x0
86689<...>-770 ( 770) [005] .... 82316.702499: binder_transaction_alloc_buf: transaction=1571094 data_size=168 offsets_size=32
86690<...>-770 ( 770) [005] .... 82316.702506: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
86691<...>-770 ( 770) [005] d..2 82316.702541: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27743 next_prio=110
86692           <...>-27743 (-----) [005] .... 82316.702551: binder_transaction_received: transaction=1571094
86693<...>-581 ( 571) [000] d..2 82316.702579: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86694          <idle>-0     (-----) [000] d..1 82316.702593: cpu_idle: state=0 cpu_id=0
86695           <...>-27743 (-----) [005] ...1 82316.702622: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
86696           <...>-27743 (-----) [005] ...1 82316.702627: tracing_mark_write: E|27550
86697           <...>-27743 (-----) [005] .... 82316.702643: binder_transaction: transaction=1571095 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
86698           <...>-27743 (-----) [005] .... 82316.702646: binder_transaction_alloc_buf: transaction=1571095 data_size=48 offsets_size=0
86699           <...>-27743 (-----) [005] ...2 82316.702648: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
86700           <...>-27743 (-----) [005] d..4 82316.702651: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
86701           <...>-27743 (-----) [005] dn.5 82316.702661: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
86702           <...>-27743 (-----) [005] d..2 82316.702667: sched_switch: prev_comm=id.nn.benchmark prev_pid=27743 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
86703<...>-770 ( 770) [005] .... 82316.702675: binder_transaction_received: transaction=1571095
86704<...>-770 ( 770) [005] ...1 82316.702692: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
86705<...>-770 ( 770) [005] d..2 82316.702749: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
86706          <idle>-0     (-----) [000] dnh2 82316.702773: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
86707          <idle>-0     (-----) [000] .n.1 82316.702780: cpu_idle: state=4294967295 cpu_id=0
86708<...>-770 ( 770) [005] ...1 82316.702783: tracing_mark_write: E|770
86709<...>-770 ( 770) [005] .... 82316.702790: binder_transaction: transaction=1571096 dest_node=0 dest_proc=27550 dest_thread=27743 reply=1 flags=0x0 code=0x0
86710          <idle>-0     (-----) [000] d..2 82316.702791: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
86711<...>-770 ( 770) [005] .... 82316.702793: binder_transaction_alloc_buf: transaction=1571096 data_size=168 offsets_size=32
86712<...>-770 ( 770) [005] .... 82316.702798: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
86713<...>-770 ( 770) [005] d..2 82316.702833: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27743 next_prio=110
86714           <...>-27743 (-----) [005] .... 82316.702843: binder_transaction_received: transaction=1571096
86715<...>-581 ( 571) [000] d..2 82316.702847: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86716          <idle>-0     (-----) [000] d..1 82316.702860: cpu_idle: state=0 cpu_id=0
86717           <...>-27743 (-----) [005] ...1 82316.703116: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
86718           <...>-27743 (-----) [005] ...1 82316.703126: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
86719           <...>-27743 (-----) [005] ...1 82316.703131: tracing_mark_write: E|27550
86720           <...>-27743 (-----) [005] .... 82316.703193: binder_transaction: transaction=1571097 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
86721           <...>-27743 (-----) [005] .... 82316.703195: binder_transaction_alloc_buf: transaction=1571097 data_size=556 offsets_size=104
86722           <...>-27743 (-----) [005] ...2 82316.703209: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
86723           <...>-27743 (-----) [005] d..4 82316.703212: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86724           <...>-27743 (-----) [005] dn.5 82316.703223: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86725           <...>-27743 (-----) [005] d..2 82316.703230: sched_switch: prev_comm=id.nn.benchmark prev_pid=27743 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86726<...>-5340 ( 788) [005] .... 82316.703239: binder_transaction_received: transaction=1571097
86727<...>-5340 ( 788) [005] ...1 82316.703284: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
86728<...>-5340 ( 788) [005] d..2 82316.703327: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
86729<...>-5340 ( 788) [005] d..2 82316.703352: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27743 next_prio=110
86730          <idle>-0     (-----) [000] dnh2 82316.703356: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
86731          <idle>-0     (-----) [000] .n.1 82316.703362: cpu_idle: state=4294967295 cpu_id=0
86732          <idle>-0     (-----) [000] d..2 82316.703373: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
86733           <...>-27743 (-----) [005] d..2 82316.703374: sched_switch: prev_comm=id.nn.benchmark prev_pid=27743 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
86734          <idle>-0     (-----) [005] d..1 82316.703392: cpu_idle: state=0 cpu_id=5
86735<...>-87 ( 87) [000] d..2 82316.703415: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86736          <idle>-0     (-----) [000] d..1 82316.703425: cpu_idle: state=0 cpu_id=0
86737          <idle>-0     (-----) [002] d.h4 82316.703427: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
86738          <idle>-0     (-----) [002] dnh5 82316.703461: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86739          <idle>-0     (-----) [002] .n.1 82316.703471: cpu_idle: state=4294967295 cpu_id=2
86740          <idle>-0     (-----) [002] d..2 82316.703483: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
86741<...>-86 ( 86) [002] d.h4 82316.703512: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86742          <idle>-0     (-----) [005] dnh2 82316.703534: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86743          <idle>-0     (-----) [005] .n.1 82316.703539: cpu_idle: state=4294967295 cpu_id=5
86744          <idle>-0     (-----) [005] d..2 82316.703547: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86745<...>-86 ( 86) [002] d..2 82316.703571: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86746          <idle>-0     (-----) [002] d..1 82316.703583: cpu_idle: state=0 cpu_id=2
86747<...>-5340 ( 788) [005] d..1 82316.703599: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86748          <idle>-0     (-----) [000] dnh2 82316.703625: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86749          <idle>-0     (-----) [000] .n.1 82316.703631: cpu_idle: state=4294967295 cpu_id=0
86750          <idle>-0     (-----) [000] d..2 82316.703641: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
86751 neuralnetworks@-13088 (  788) [000] d..2 82316.703688: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86752          <idle>-0     (-----) [000] d..1 82316.703700: cpu_idle: state=0 cpu_id=0
86753<...>-5340 ( 788) [005] d..2 82316.703743: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
86754          <idle>-0     (-----) [000] dnh2 82316.703765: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
86755<...>-5340 ( 788) [005] d..2 82316.703769: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
86756          <idle>-0     (-----) [000] .n.1 82316.703771: cpu_idle: state=4294967295 cpu_id=0
86757          <idle>-0     (-----) [000] d..2 82316.703782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
86758          <idle>-0     (-----) [005] d..1 82316.703783: cpu_idle: state=0 cpu_id=5
86759<...>-87 ( 87) [000] d..2 82316.703820: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86760          <idle>-0     (-----) [002] d.h4 82316.703821: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86761          <idle>-0     (-----) [000] d..1 82316.703830: cpu_idle: state=0 cpu_id=0
86762          <idle>-0     (-----) [002] dnh5 82316.703832: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86763          <idle>-0     (-----) [002] .n.1 82316.703840: cpu_idle: state=4294967295 cpu_id=2
86764          <idle>-0     (-----) [002] d..2 82316.703852: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
86765<...>-86 ( 86) [002] d..2 82316.703884: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86766          <idle>-0     (-----) [002] d..1 82316.703894: cpu_idle: state=0 cpu_id=2
86767          <idle>-0     (-----) [005] ...1 82316.704162: cpu_idle: state=4294967295 cpu_id=5
86768          <idle>-0     (-----) [005] d..1 82316.704165: cpu_idle: state=0 cpu_id=5
86769          <idle>-0     (-----) [001] d.h2 82316.704208: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
86770          <idle>-0     (-----) [001] dnh3 82316.704221: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
86771          <idle>-0     (-----) [001] .n.1 82316.704229: cpu_idle: state=4294967295 cpu_id=1
86772          <idle>-0     (-----) [001] d..2 82316.704241: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
86773        DispSync-8879  ( 8858) [001] d..1 82316.704266: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
86774        DispSync-8879  ( 8858) [001] d..2 82316.704285: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
86775          <idle>-0     (-----) [003] .n.1 82316.704292: cpu_idle: state=4294967295 cpu_id=3
86776          <idle>-0     (-----) [003] d..2 82316.704304: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
86777        DispSync-8879  ( 8858) [001] d..2 82316.704321: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86778          <idle>-0     (-----) [001] d..1 82316.704333: cpu_idle: state=0 cpu_id=1
86779  appEventThread-8881  ( 8858) [003] d..3 82316.704356: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
86780  appEventThread-8881  ( 8858) [003] d..4 82316.704380: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
86781          <idle>-0     (-----) [000] .n.1 82316.704385: cpu_idle: state=4294967295 cpu_id=0
86782          <idle>-0     (-----) [000] d..2 82316.704397: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
86783  appEventThread-8881  ( 8858) [003] d..2 82316.704422: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86784          <idle>-0     (-----) [003] d..1 82316.704437: cpu_idle: state=0 cpu_id=3
86785<...>-9105 ( 9105) [000] .... 82316.704716: binder_transaction: transaction=1571100 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
86786<...>-9105 ( 9105) [000] .... 82316.704724: binder_transaction_alloc_buf: transaction=1571100 data_size=80 offsets_size=0
86787<...>-9105 ( 9105) [000] d..4 82316.704730: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
86788<...>-9105 ( 9105) [000] d..5 82316.704756: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
86789          <idle>-0     (-----) [001] .n.1 82316.704761: cpu_idle: state=4294967295 cpu_id=1
86790          <idle>-0     (-----) [001] d..2 82316.704774: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
86791<...>-13083 ( 8858) [001] .... 82316.704782: binder_transaction_received: transaction=1571100
86792<...>-9105 ( 9105) [000] d..3 82316.704795: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
86793<...>-13083 ( 8858) [001] d..1 82316.704818: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
86794<...>-9105 ( 9105) [000] d..4 82316.704823: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
86795          <idle>-0     (-----) [002] .n.1 82316.704828: cpu_idle: state=4294967295 cpu_id=2
86796<...>-13083 ( 8858) [001] d..2 82316.704835: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
86797          <idle>-0     (-----) [002] d..2 82316.704839: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
86798          <idle>-0     (-----) [003] .n.1 82316.704841: cpu_idle: state=4294967295 cpu_id=3
86799          <idle>-0     (-----) [003] d..2 82316.704852: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
86800<...>-13083 ( 8858) [001] d..2 82316.704880: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
86801          <idle>-0     (-----) [001] d..1 82316.704892: cpu_idle: state=0 cpu_id=1
86802  appEventThread-8881  ( 8858) [003] d..2 82316.704894: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
86803    RenderThread-9436  ( 9105) [002] d..2 82316.704897: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86804          <idle>-0     (-----) [003] d..1 82316.704906: cpu_idle: state=0 cpu_id=3
86805          <idle>-0     (-----) [002] d..1 82316.704909: cpu_idle: state=0 cpu_id=2
86806<...>-9105 ( 9105) [000] d..3 82316.704941: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
86807<...>-9105 ( 9105) [000] d..4 82316.704961: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
86808          <idle>-0     (-----) [002] .n.1 82316.704966: cpu_idle: state=4294967295 cpu_id=2
86809          <idle>-0     (-----) [002] d..2 82316.704978: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
86810<...>-9105 ( 9105) [000] d..2 82316.704995: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86811          <idle>-0     (-----) [000] d..1 82316.705013: cpu_idle: state=0 cpu_id=0
86812    RenderThread-9436  ( 9105) [002] d..1 82316.705146: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
86813    RenderThread-9436  ( 9105) [002] d..2 82316.705165: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
86814          <idle>-0     (-----) [000] .n.1 82316.705171: cpu_idle: state=4294967295 cpu_id=0
86815          <idle>-0     (-----) [000] d..2 82316.705187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
86816    RenderThread-9436  ( 9105) [002] .... 82316.705237: binder_transaction: transaction=1571101 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
86817    RenderThread-9436  ( 9105) [002] .... 82316.705242: binder_transaction_alloc_buf: transaction=1571101 data_size=104 offsets_size=0
86818    RenderThread-9436  ( 9105) [002] d..4 82316.705248: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
86819    RenderThread-9436  ( 9105) [002] dn.5 82316.705269: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
86820<...>-9105 ( 9105) [000] d..2 82316.705275: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86821    RenderThread-9436  ( 9105) [002] d..2 82316.705279: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
86822          <idle>-0     (-----) [000] d..1 82316.705286: cpu_idle: state=0 cpu_id=0
86823<...>-13083 ( 8858) [002] .... 82316.705288: binder_transaction_received: transaction=1571101
86824<...>-13083 ( 8858) [002] .... 82316.705362: binder_transaction: transaction=1571102 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
86825<...>-13083 ( 8858) [002] .... 82316.705366: binder_transaction_alloc_buf: transaction=1571102 data_size=52 offsets_size=8
86826<...>-13083 ( 8858) [002] d..2 82316.705416: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
86827    RenderThread-9436  ( 9105) [002] .... 82316.705425: binder_transaction_received: transaction=1571102
86828    RenderThread-9436  ( 9105) [002] d.h3 82316.705476: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86829          <idle>-0     (-----) [005] dnh2 82316.705497: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86830          <idle>-0     (-----) [005] .n.1 82316.705501: cpu_idle: state=4294967295 cpu_id=5
86831          <idle>-0     (-----) [005] d..2 82316.705511: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86832<...>-5340 ( 788) [005] d..1 82316.705560: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86833          <idle>-0     (-----) [000] dnh2 82316.705588: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86834          <idle>-0     (-----) [000] .n.1 82316.705594: cpu_idle: state=4294967295 cpu_id=0
86835          <idle>-0     (-----) [000] d..2 82316.705603: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
86836<...>-5340 ( 788) [005] ...1 82316.705653: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
86837<...>-5340 ( 788) [005] ...1 82316.705657: tracing_mark_write: E|788
86838<...>-5340 ( 788) [005] .... 82316.705674: binder_transaction: transaction=1571103 dest_node=1571098 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
86839<...>-5340 ( 788) [005] .... 82316.705676: binder_transaction_alloc_buf: transaction=1571103 data_size=60 offsets_size=0
86840 neuralnetworks@-13088 (  788) [000] d..2 82316.705679: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86841<...>-5340 ( 788) [005] d..4 82316.705679: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
86842          <idle>-0     (-----) [000] d..1 82316.705689: cpu_idle: state=0 cpu_id=0
86843<...>-5340 ( 788) [005] d..5 82316.705692: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
86844          <idle>-0     (-----) [004] .n.1 82316.705697: cpu_idle: state=4294967295 cpu_id=4
86845          <idle>-0     (-----) [004] d..2 82316.705706: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
86846           <...>-27571 (-----) [004] .... 82316.705711: binder_transaction_received: transaction=1571103
86847<...>-5340 ( 788) [005] ...1 82316.705714: tracing_mark_write: E|788
86848<...>-5340 ( 788) [005] .... 82316.705720: binder_transaction: transaction=1571104 dest_node=0 dest_proc=27550 dest_thread=27743 reply=1 flags=0x0 code=0x0
86849<...>-5340 ( 788) [005] .... 82316.705723: binder_transaction_alloc_buf: transaction=1571104 data_size=8 offsets_size=0
86850<...>-5340 ( 788) [005] d..2 82316.705724: sched_waking: comm=id.nn.benchmark pid=27743 prio=110 target_cpu=005
86851           <...>-27571 (-----) [004] ...1 82316.705729: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
86852<...>-5340 ( 788) [005] d..3 82316.705731: sched_wakeup: comm=id.nn.benchmark pid=27743 prio=110 target_cpu=005
86853<...>-5340 ( 788) [005] .... 82316.705733: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
86854           <...>-27571 (-----) [004] ...1 82316.705735: tracing_mark_write: E|27550
86855           <...>-27571 (-----) [004] d..2 82316.705764: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86856          <idle>-0     (-----) [004] d..1 82316.705771: cpu_idle: state=0 cpu_id=4
86857<...>-5340 ( 788) [005] d..2 82316.705774: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27743 next_prio=110
86858           <...>-27743 (-----) [005] .... 82316.705784: binder_transaction_received: transaction=1571104
86859           <...>-27743 (-----) [005] ...1 82316.705820: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
86860           <...>-27743 (-----) [005] ...1 82316.705827: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
86861           <...>-27743 (-----) [005] ...1 82316.705852: tracing_mark_write: E|27550
86862           <...>-27743 (-----) [005] ...1 82316.705856: tracing_mark_write: E|27550
86863           <...>-27743 (-----) [005] ...1 82316.705859: tracing_mark_write: E|27550
86864           <...>-27743 (-----) [005] ...1 82316.706044: tracing_mark_write: E|27550
86865           <...>-27743 (-----) [005] d..1 82316.706057: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86866           <...>-27743 (-----) [005] d..2 82316.706073: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86867          <idle>-0     (-----) [004] .n.1 82316.706078: cpu_idle: state=4294967295 cpu_id=4
86868          <idle>-0     (-----) [004] d..2 82316.706085: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
86869           <...>-27550 (-----) [004] d..2 82316.706104: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86870          <idle>-0     (-----) [004] d..1 82316.706113: cpu_idle: state=0 cpu_id=4
86871           <...>-27743 (-----) [005] d..1 82316.706166: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86872           <...>-27743 (-----) [005] d..2 82316.706175: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
86873          <idle>-0     (-----) [004] .n.1 82316.706180: cpu_idle: state=4294967295 cpu_id=4
86874          <idle>-0     (-----) [004] d..2 82316.706187: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
86875           <...>-27743 (-----) [005] d..2 82316.706214: sched_switch: prev_comm=id.nn.benchmark prev_pid=27743 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
86876           <...>-27550 (-----) [004] ...1 82316.706220: tracing_mark_write: E|27550
86877           <...>-27550 (-----) [004] ...1 82316.706225: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
86878           <...>-27550 (-----) [004] ...1 82316.706230: tracing_mark_write: E|27550
86879           <...>-27550 (-----) [004] ...1 82316.706234: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
86880          <idle>-0     (-----) [005] d..1 82316.706235: cpu_idle: state=0 cpu_id=5
86881           <...>-27550 (-----) [004] ...1 82316.706238: tracing_mark_write: E|27550
86882           <...>-27550 (-----) [004] ...1 82316.706242: tracing_mark_write: E|27550
86883           <...>-27550 (-----) [004] ...1 82316.706354: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
86884           <...>-27550 (-----) [004] ...1 82316.706411: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
86885           <...>-27550 (-----) [004] ...1 82316.706416: tracing_mark_write: E|27550
86886           <...>-27550 (-----) [004] ...1 82316.706419: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
86887           <...>-27550 (-----) [004] ...1 82316.706425: tracing_mark_write: E|27550
86888           <...>-27550 (-----) [004] ...1 82316.706428: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
86889           <...>-27550 (-----) [004] ...1 82316.706432: tracing_mark_write: E|27550
86890           <...>-27550 (-----) [004] ...1 82316.706435: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
86891          <idle>-0     (-----) [005] .n.1 82316.706527: cpu_idle: state=4294967295 cpu_id=5
86892           <...>-27550 (-----) [004] ...1 82316.706528: tracing_mark_write: E|27550
86893           <...>-27550 (-----) [004] ...1 82316.706533: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
86894          <idle>-0     (-----) [005] d..2 82316.706536: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27744 next_prio=110
86895           <...>-27550 (-----) [004] d..2 82316.706550: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
86896          <idle>-0     (-----) [004] d..1 82316.706564: cpu_idle: state=0 cpu_id=4
86897    RenderThread-9436  ( 9105) [002] d..2 82316.706580: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
86898          <idle>-0     (-----) [002] d..1 82316.706594: cpu_idle: state=0 cpu_id=2
86899           <...>-27744 (-----) [005] ...1 82316.706597: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
86900           <...>-27744 (-----) [005] ...1 82316.706611: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
86901           <...>-27744 (-----) [005] ...1 82316.706615: tracing_mark_write: E|27550
86902           <...>-27744 (-----) [005] .... 82316.706638: binder_transaction: transaction=1571105 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
86903           <...>-27744 (-----) [005] .... 82316.706641: binder_transaction_alloc_buf: transaction=1571105 data_size=48 offsets_size=0
86904           <...>-27744 (-----) [005] ...2 82316.706644: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
86905           <...>-27744 (-----) [005] d..4 82316.706646: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
86906           <...>-27744 (-----) [005] dn.5 82316.706657: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
86907          <idle>-0     (-----) [002] d.h2 82316.706660: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
86908           <...>-27744 (-----) [005] d..2 82316.706664: sched_switch: prev_comm=id.nn.benchmark prev_pid=27744 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
86909          <idle>-0     (-----) [002] d.h3 82316.706672: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
86910<...>-770 ( 770) [005] .... 82316.706674: binder_transaction_received: transaction=1571105
86911          <idle>-0     (-----) [002] dnh3 82316.706677: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
86912          <idle>-0     (-----) [002] .n.1 82316.706687: cpu_idle: state=4294967295 cpu_id=2
86913          <idle>-0     (-----) [002] d..2 82316.706696: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
86914<...>-770 ( 770) [005] ...1 82316.706698: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
86915          <idle>-0     (-----) [000] d.h3 82316.706698: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
86916          <idle>-0     (-----) [000] dnh4 82316.706717: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
86917          <idle>-0     (-----) [000] .n.1 82316.706729: cpu_idle: state=4294967295 cpu_id=0
86918          <idle>-0     (-----) [000] d..2 82316.706737: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
86919<...>-770 ( 770) [005] d..2 82316.706778: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
86920 kgsl_worker_thr-258   (  258) [000] d..2 82316.706789: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
86921 kgsl_worker_thr-258   (  258) [000] d..3 82316.706810: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
86922 kgsl_worker_thr-258   (  258) [000] d.h1 82316.706820: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
86923<...>-770 ( 770) [005] ...1 82316.706823: tracing_mark_write: E|770
86924<...>-770 ( 770) [005] .... 82316.706831: binder_transaction: transaction=1571106 dest_node=0 dest_proc=27550 dest_thread=27744 reply=1 flags=0x0 code=0x0
86925<...>-770 ( 770) [005] .... 82316.706833: binder_transaction_alloc_buf: transaction=1571106 data_size=168 offsets_size=32
86926 kgsl_worker_thr-258   (  258) [000] d..2 82316.706838: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
86927<...>-770 ( 770) [005] .... 82316.706840: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
86928<...>-770 ( 770) [005] d..2 82316.706876: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27744 next_prio=110
86929  kworker/u16:15-1311  ( 1311) [000] d..2 82316.706876: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
86930           <...>-27744 (-----) [005] .... 82316.706887: binder_transaction_received: transaction=1571106
86931    RenderThread-9436  ( 9105) [002] .... 82316.706899: binder_transaction: transaction=1571107 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
86932    RenderThread-9436  ( 9105) [002] .... 82316.706905: binder_transaction_alloc_buf: transaction=1571107 data_size=192 offsets_size=8
86933    RenderThread-9436  ( 9105) [002] d..4 82316.706917: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
86934    RenderThread-9436  ( 9105) [002] dn.5 82316.706933: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
86935    RenderThread-9436  ( 9105) [002] d..2 82316.706943: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
86936<...>-13083 ( 8858) [002] .... 82316.706953: binder_transaction_received: transaction=1571107
86937           <...>-27744 (-----) [005] ...1 82316.706962: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
86938           <...>-27744 (-----) [005] ...1 82316.706967: tracing_mark_write: E|27550
86939<...>-581 ( 571) [000] d..2 82316.706977: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86940           <...>-27744 (-----) [005] .... 82316.706982: binder_transaction: transaction=1571108 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
86941           <...>-27744 (-----) [005] .... 82316.706985: binder_transaction_alloc_buf: transaction=1571108 data_size=48 offsets_size=0
86942           <...>-27744 (-----) [005] ...2 82316.706987: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
86943          <idle>-0     (-----) [000] d..1 82316.706989: cpu_idle: state=0 cpu_id=0
86944           <...>-27744 (-----) [005] d..4 82316.706990: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
86945           <...>-27744 (-----) [005] dn.5 82316.706999: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
86946           <...>-27744 (-----) [005] d..2 82316.707006: sched_switch: prev_comm=id.nn.benchmark prev_pid=27744 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
86947<...>-770 ( 770) [005] .... 82316.707014: binder_transaction_received: transaction=1571108
86948<...>-770 ( 770) [005] ...1 82316.707030: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
86949<...>-770 ( 770) [005] d..2 82316.707089: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
86950<...>-13083 ( 8858) [002] .... 82316.707107: binder_transaction: transaction=1571109 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
86951<...>-13083 ( 8858) [002] .... 82316.707112: binder_transaction_alloc_buf: transaction=1571109 data_size=68 offsets_size=0
86952          <idle>-0     (-----) [000] dnh2 82316.707114: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
86953          <idle>-0     (-----) [000] .n.1 82316.707121: cpu_idle: state=4294967295 cpu_id=0
86954<...>-770 ( 770) [005] ...1 82316.707123: tracing_mark_write: E|770
86955          <idle>-0     (-----) [000] d..2 82316.707129: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
86956<...>-770 ( 770) [005] .... 82316.707130: binder_transaction: transaction=1571110 dest_node=0 dest_proc=27550 dest_thread=27744 reply=1 flags=0x0 code=0x0
86957<...>-770 ( 770) [005] .... 82316.707133: binder_transaction_alloc_buf: transaction=1571110 data_size=168 offsets_size=32
86958<...>-770 ( 770) [005] .... 82316.707139: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
86959<...>-13083 ( 8858) [002] d..2 82316.707155: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
86960    RenderThread-9436  ( 9105) [002] .... 82316.707165: binder_transaction_received: transaction=1571109
86961<...>-770 ( 770) [005] d..2 82316.707174: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27744 next_prio=110
86962           <...>-27744 (-----) [005] .... 82316.707184: binder_transaction_received: transaction=1571110
86963<...>-581 ( 571) [000] d..2 82316.707186: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86964          <idle>-0     (-----) [000] d..1 82316.707195: cpu_idle: state=0 cpu_id=0
86965    RenderThread-9436  ( 9105) [002] d..2 82316.707261: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86966          <idle>-0     (-----) [002] d..1 82316.707274: cpu_idle: state=0 cpu_id=2
86967           <...>-27744 (-----) [005] ...1 82316.707466: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
86968           <...>-27744 (-----) [005] ...1 82316.707477: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
86969           <...>-27744 (-----) [005] ...1 82316.707481: tracing_mark_write: E|27550
86970           <...>-27744 (-----) [005] .... 82316.707548: binder_transaction: transaction=1571111 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
86971           <...>-27744 (-----) [005] .... 82316.707552: binder_transaction_alloc_buf: transaction=1571111 data_size=556 offsets_size=104
86972           <...>-27744 (-----) [005] ...2 82316.707565: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
86973           <...>-27744 (-----) [005] d..4 82316.707568: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86974           <...>-27744 (-----) [005] dn.5 82316.707580: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86975           <...>-27744 (-----) [005] d..2 82316.707586: sched_switch: prev_comm=id.nn.benchmark prev_pid=27744 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86976<...>-5340 ( 788) [005] .... 82316.707596: binder_transaction_received: transaction=1571111
86977<...>-5340 ( 788) [005] ...1 82316.707644: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
86978<...>-5340 ( 788) [005] d..2 82316.707693: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
86979<...>-5340 ( 788) [005] d..2 82316.707718: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27744 next_prio=110
86980          <idle>-0     (-----) [000] dnh2 82316.707722: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
86981          <idle>-0     (-----) [000] .n.1 82316.707728: cpu_idle: state=4294967295 cpu_id=0
86982          <idle>-0     (-----) [000] d..2 82316.707736: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
86983           <...>-27744 (-----) [005] d..2 82316.707740: sched_switch: prev_comm=id.nn.benchmark prev_pid=27744 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
86984          <idle>-0     (-----) [005] d..1 82316.707757: cpu_idle: state=0 cpu_id=5
86985<...>-87 ( 87) [000] d..2 82316.707779: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
86986          <idle>-0     (-----) [000] d..1 82316.707787: cpu_idle: state=0 cpu_id=0
86987          <idle>-0     (-----) [002] d.h4 82316.707790: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86988          <idle>-0     (-----) [002] dnh5 82316.707810: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
86989          <idle>-0     (-----) [002] .n.1 82316.707821: cpu_idle: state=4294967295 cpu_id=2
86990          <idle>-0     (-----) [002] d..2 82316.707831: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
86991<...>-86 ( 86) [002] d..2 82316.707870: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
86992          <idle>-0     (-----) [002] d.h5 82316.707893: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86993          <idle>-0     (-----) [005] dnh2 82316.707915: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
86994          <idle>-0     (-----) [005] .n.1 82316.707920: cpu_idle: state=4294967295 cpu_id=5
86995          <idle>-0     (-----) [005] d..2 82316.707928: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
86996          <idle>-0     (-----) [002] d..1 82316.707938: cpu_idle: state=0 cpu_id=2
86997<...>-5340 ( 788) [005] d..1 82316.707982: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86998          <idle>-0     (-----) [000] dnh2 82316.708008: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
86999          <idle>-0     (-----) [000] .n.1 82316.708014: cpu_idle: state=4294967295 cpu_id=0
87000          <idle>-0     (-----) [000] d..2 82316.708022: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
87001 neuralnetworks@-13088 (  788) [000] d..2 82316.708071: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87002          <idle>-0     (-----) [000] d..1 82316.708081: cpu_idle: state=0 cpu_id=0
87003<...>-5340 ( 788) [005] d..2 82316.708131: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87004          <idle>-0     (-----) [000] dnh2 82316.708153: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87005<...>-5340 ( 788) [005] d..2 82316.708156: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87006          <idle>-0     (-----) [000] .n.1 82316.708159: cpu_idle: state=4294967295 cpu_id=0
87007          <idle>-0     (-----) [000] d..2 82316.708167: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
87008          <idle>-0     (-----) [005] d..1 82316.708171: cpu_idle: state=0 cpu_id=5
87009          <idle>-0     (-----) [001] d.h2 82316.708192: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
87010          <idle>-0     (-----) [002] d.h4 82316.708205: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87011<...>-87 ( 87) [000] d..2 82316.708205: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87012          <idle>-0     (-----) [001] dnh3 82316.708205: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
87013          <idle>-0     (-----) [000] d..1 82316.708213: cpu_idle: state=0 cpu_id=0
87014          <idle>-0     (-----) [001] .n.1 82316.708214: cpu_idle: state=4294967295 cpu_id=1
87015          <idle>-0     (-----) [002] dnh5 82316.708216: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87016          <idle>-0     (-----) [002] .n.1 82316.708224: cpu_idle: state=4294967295 cpu_id=2
87017          <idle>-0     (-----) [001] d..2 82316.708225: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
87018          <idle>-0     (-----) [002] d..2 82316.708233: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
87019        DispSync-8879  ( 8858) [001] d..1 82316.708241: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
87020        DispSync-8879  ( 8858) [001] d..2 82316.708267: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
87021          <idle>-0     (-----) [003] .n.1 82316.708273: cpu_idle: state=4294967295 cpu_id=3
87022<...>-86 ( 86) [002] d..2 82316.708273: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87023          <idle>-0     (-----) [002] d..1 82316.708281: cpu_idle: state=0 cpu_id=2
87024          <idle>-0     (-----) [003] d..2 82316.708283: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
87025        DispSync-8879  ( 8858) [001] d..2 82316.708298: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87026          <idle>-0     (-----) [001] d..1 82316.708311: cpu_idle: state=0 cpu_id=1
87027   sfEventThread-8882  ( 8858) [003] d..3 82316.708317: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
87028   sfEventThread-8882  ( 8858) [003] d..4 82316.708346: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
87029          <idle>-0     (-----) [001] .n.1 82316.708352: cpu_idle: state=4294967295 cpu_id=1
87030          <idle>-0     (-----) [001] d..2 82316.708362: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
87031   sfEventThread-8882  ( 8858) [003] d..2 82316.708378: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87032          <idle>-0     (-----) [003] d..1 82316.708391: cpu_idle: state=0 cpu_id=3
87033          <idle>-0     (-----) [000] d.s2 82316.708471: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
87034          <idle>-0     (-----) [002] d.s2 82316.708475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
87035          <idle>-0     (-----) [000] dns3 82316.708488: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
87036          <idle>-0     (-----) [002] dns3 82316.708491: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
87037          <idle>-0     (-----) [005] ...1 82316.708496: cpu_idle: state=4294967295 cpu_id=5
87038          <idle>-0     (-----) [002] dns3 82316.708498: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
87039          <idle>-0     (-----) [005] d..1 82316.708500: cpu_idle: state=0 cpu_id=5
87040          <idle>-0     (-----) [000] .n.1 82316.708502: cpu_idle: state=4294967295 cpu_id=0
87041          <idle>-0     (-----) [000] d..2 82316.708512: 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
87042          <idle>-0     (-----) [002] dns4 82316.708535: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
87043          <idle>-0     (-----) [002] .n.1 82316.708562: cpu_idle: state=4294967295 cpu_id=2
87044<...>-8 ( 8) [000] d..2 82316.708566: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
87045          <idle>-0     (-----) [002] d..2 82316.708572: 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
87046     rcu_preempt-7     (    7) [002] d..2 82316.708607: 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
87047          <idle>-0     (-----) [002] d..1 82316.708620: cpu_idle: state=0 cpu_id=2
87048  kworker/u16:15-1311  ( 1311) [000] d..2 82316.708729: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87049          <idle>-0     (-----) [000] d..1 82316.708745: cpu_idle: state=0 cpu_id=0
87050  surfaceflinger-8858  ( 8858) [001] d..2 82316.708768: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
87051  surfaceflinger-8858  ( 8858) [001] d..3 82316.708815: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
87052  surfaceflinger-8858  ( 8858) [001] d..1 82316.708842: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
87053  surfaceflinger-8858  ( 8858) [001] d..2 82316.708859: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
87054          <idle>-0     (-----) [003] .n.1 82316.708865: cpu_idle: state=4294967295 cpu_id=3
87055          <idle>-0     (-----) [003] d..2 82316.708876: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
87056   sfEventThread-8882  ( 8858) [003] d..2 82316.708910: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87057          <idle>-0     (-----) [003] d..1 82316.708921: cpu_idle: state=0 cpu_id=3
87058  surfaceflinger-8858  ( 8858) [001] ...1 82316.709071: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
87059  surfaceflinger-8858  ( 8858) [001] ...1 82316.709080: tracing_mark_write: E|8858
87060  surfaceflinger-8858  ( 8858) [001] .... 82316.709131: binder_transaction: transaction=1571114 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
87061  surfaceflinger-8858  ( 8858) [001] .... 82316.709136: binder_transaction_alloc_buf: transaction=1571114 data_size=540 offsets_size=96
87062  surfaceflinger-8858  ( 8858) [001] ...2 82316.709162: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
87063  surfaceflinger-8858  ( 8858) [001] d..4 82316.709169: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
87064  surfaceflinger-8858  ( 8858) [001] d..5 82316.709198: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
87065          <idle>-0     (-----) [003] .n.1 82316.709202: cpu_idle: state=4294967295 cpu_id=3
87066          <idle>-0     (-----) [003] d..2 82316.709213: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
87067  surfaceflinger-8858  ( 8858) [001] d..2 82316.709217: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
87068 [email protected]   (  619) [003] .... 82316.709224: binder_transaction_received: transaction=1571114
87069         rcuop/0-10    (   10) [001] d..2 82316.709244: 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
87070          <idle>-0     (-----) [001] d..1 82316.709261: cpu_idle: state=0 cpu_id=1
87071 [email protected]   (  619) [003] ...1 82316.709271: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
87072 [email protected]   (  619) [003] ...1 82316.709383: tracing_mark_write: B|619|HWCSession::PresentDisplay::
87073 [email protected]   (  619) [003] ...1 82316.709559: tracing_mark_write: B|619|HWDeviceDRM::Commit::
87074 [email protected]   (  619) [003] ...1 82316.709573: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
87075          <idle>-0     (-----) [002] d.h4 82316.709835: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87076          <idle>-0     (-----) [005] dnh2 82316.709856: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87077          <idle>-0     (-----) [005] .n.1 82316.709859: cpu_idle: state=4294967295 cpu_id=5
87078          <idle>-0     (-----) [005] d..2 82316.709867: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87079          <idle>-0     (-----) [002] ...1 82316.709874: cpu_idle: state=4294967295 cpu_id=2
87080          <idle>-0     (-----) [002] d..1 82316.709879: cpu_idle: state=0 cpu_id=2
87081<...>-5340 ( 788) [005] d..1 82316.709917: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87082          <idle>-0     (-----) [000] dnh2 82316.709943: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87083          <idle>-0     (-----) [000] .n.1 82316.709949: cpu_idle: state=4294967295 cpu_id=0
87084          <idle>-0     (-----) [000] d..2 82316.709961: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
87085<...>-5340 ( 788) [005] ...1 82316.710010: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
87086<...>-5340 ( 788) [005] ...1 82316.710014: tracing_mark_write: E|788
87087 neuralnetworks@-13088 (  788) [000] d..2 82316.710025: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87088<...>-5340 ( 788) [005] .... 82316.710031: binder_transaction: transaction=1571115 dest_node=1571112 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
87089<...>-5340 ( 788) [005] .... 82316.710034: binder_transaction_alloc_buf: transaction=1571115 data_size=60 offsets_size=0
87090          <idle>-0     (-----) [000] d..1 82316.710036: cpu_idle: state=0 cpu_id=0
87091<...>-5340 ( 788) [005] d..4 82316.710037: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
87092<...>-5340 ( 788) [005] d..5 82316.710049: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
87093          <idle>-0     (-----) [004] .n.1 82316.710056: cpu_idle: state=4294967295 cpu_id=4
87094          <idle>-0     (-----) [004] d..2 82316.710063: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
87095           <...>-27571 (-----) [004] .... 82316.710068: binder_transaction_received: transaction=1571115
87096<...>-5340 ( 788) [005] ...1 82316.710073: tracing_mark_write: E|788
87097<...>-5340 ( 788) [005] .... 82316.710080: binder_transaction: transaction=1571116 dest_node=0 dest_proc=27550 dest_thread=27744 reply=1 flags=0x0 code=0x0
87098<...>-5340 ( 788) [005] .... 82316.710082: binder_transaction_alloc_buf: transaction=1571116 data_size=8 offsets_size=0
87099<...>-5340 ( 788) [005] d..2 82316.710084: sched_waking: comm=id.nn.benchmark pid=27744 prio=110 target_cpu=005
87100           <...>-27571 (-----) [004] ...1 82316.710088: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
87101<...>-5340 ( 788) [005] d..3 82316.710091: sched_wakeup: comm=id.nn.benchmark pid=27744 prio=110 target_cpu=005
87102<...>-5340 ( 788) [005] .... 82316.710093: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
87103           <...>-27571 (-----) [004] ...1 82316.710094: tracing_mark_write: E|27550
87104           <...>-27571 (-----) [004] d..2 82316.710122: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87105          <idle>-0     (-----) [004] d..1 82316.710129: cpu_idle: state=0 cpu_id=4
87106<...>-5340 ( 788) [005] d..2 82316.710136: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27744 next_prio=110
87107           <...>-27744 (-----) [005] .... 82316.710146: binder_transaction_received: transaction=1571116
87108           <...>-27744 (-----) [005] ...1 82316.710182: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
87109           <...>-27744 (-----) [005] ...1 82316.710188: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
87110           <...>-27744 (-----) [005] ...1 82316.710213: tracing_mark_write: E|27550
87111 [email protected]   (  619) [003] d..2 82316.710214: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
87112           <...>-27744 (-----) [005] ...1 82316.710217: tracing_mark_write: E|27550
87113           <...>-27744 (-----) [005] ...1 82316.710221: tracing_mark_write: E|27550
87114 [email protected]   (  619) [003] d..3 82316.710243: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
87115          <idle>-0     (-----) [002] .n.1 82316.710247: cpu_idle: state=4294967295 cpu_id=2
87116          <idle>-0     (-----) [002] d..2 82316.710259: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
87117 [email protected]   (  619) [003] ...1 82316.710374: tracing_mark_write: E|619
87118 [email protected]   (  619) [003] ...1 82316.710381: tracing_mark_write: E|619
87119           <...>-27744 (-----) [005] ...1 82316.710406: tracing_mark_write: E|27550
87120           <...>-27744 (-----) [005] d..1 82316.710418: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87121           <...>-27744 (-----) [005] d..2 82316.710433: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87122          <idle>-0     (-----) [004] .n.1 82316.710438: cpu_idle: state=4294967295 cpu_id=4
87123 [email protected]   (  619) [003] ...1 82316.710444: tracing_mark_write: E|619
87124          <idle>-0     (-----) [004] d..2 82316.710445: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
87125           <...>-27550 (-----) [004] d..2 82316.710464: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87126          <idle>-0     (-----) [004] d..1 82316.710474: cpu_idle: state=0 cpu_id=4
87127 [email protected]   (  619) [003] ...1 82316.710491: tracing_mark_write: E|619
87128 [email protected]   (  619) [003] .... 82316.710508: binder_transaction: transaction=1571117 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
87129 [email protected]   (  619) [003] .... 82316.710512: binder_transaction_alloc_buf: transaction=1571117 data_size=576 offsets_size=112
87130           <...>-27744 (-----) [005] d..1 82316.710524: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87131           <...>-27744 (-----) [005] d..2 82316.710534: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87132 [email protected]   (  619) [003] d..2 82316.710535: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
87133          <idle>-0     (-----) [004] .n.1 82316.710539: cpu_idle: state=4294967295 cpu_id=4
87134          <idle>-0     (-----) [004] d..2 82316.710547: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
87135 [email protected]   (  619) [003] d..3 82316.710553: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
87136 [email protected]   (  619) [003] .... 82316.710558: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
87137          <idle>-0     (-----) [001] .n.1 82316.710559: cpu_idle: state=4294967295 cpu_id=1
87138          <idle>-0     (-----) [001] d..2 82316.710573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
87139           <...>-27744 (-----) [005] d..2 82316.710574: sched_switch: prev_comm=id.nn.benchmark prev_pid=27744 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
87140           <...>-27550 (-----) [004] ...1 82316.710580: tracing_mark_write: E|27550
87141  surfaceflinger-8858  ( 8858) [001] .... 82316.710582: binder_transaction_received: transaction=1571117
87142           <...>-27550 (-----) [004] ...1 82316.710585: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
87143           <...>-27550 (-----) [004] ...1 82316.710590: tracing_mark_write: E|27550
87144           <...>-27550 (-----) [004] ...1 82316.710594: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
87145          <idle>-0     (-----) [005] d..1 82316.710595: cpu_idle: state=0 cpu_id=5
87146           <...>-27550 (-----) [004] ...1 82316.710598: tracing_mark_write: E|27550
87147           <...>-27550 (-----) [004] ...1 82316.710602: tracing_mark_write: E|27550
87148 [email protected]   (  619) [003] d..2 82316.710648: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87149          <idle>-0     (-----) [003] d..1 82316.710667: cpu_idle: state=0 cpu_id=3
87150           <...>-27550 (-----) [004] ...1 82316.710715: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
87151           <...>-27550 (-----) [004] ...1 82316.710773: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
87152           <...>-27550 (-----) [004] ...1 82316.710778: tracing_mark_write: E|27550
87153           <...>-27550 (-----) [004] ...1 82316.710781: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
87154           <...>-27550 (-----) [004] ...1 82316.710787: tracing_mark_write: E|27550
87155           <...>-27550 (-----) [004] ...1 82316.710790: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
87156           <...>-27550 (-----) [004] ...1 82316.710794: tracing_mark_write: E|27550
87157           <...>-27550 (-----) [004] ...1 82316.710797: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
87158          <idle>-0     (-----) [005] .n.1 82316.710887: cpu_idle: state=4294967295 cpu_id=5
87159           <...>-27550 (-----) [004] ...1 82316.710888: tracing_mark_write: E|27550
87160           <...>-27550 (-----) [004] ...1 82316.710893: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
87161          <idle>-0     (-----) [005] d..2 82316.710897: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27745 next_prio=110
87162           <...>-27550 (-----) [004] d..2 82316.710909: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87163          <idle>-0     (-----) [004] d..1 82316.710924: cpu_idle: state=0 cpu_id=4
87164           <...>-27745 (-----) [005] ...1 82316.710958: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
87165           <...>-27745 (-----) [005] ...1 82316.710972: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
87166           <...>-27745 (-----) [005] ...1 82316.710976: tracing_mark_write: E|27550
87167           <...>-27745 (-----) [005] .... 82316.710996: binder_transaction: transaction=1571118 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
87168 crtc_commit:111-321   (  321) [002] d..2 82316.710998: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
87169           <...>-27745 (-----) [005] .... 82316.711000: binder_transaction_alloc_buf: transaction=1571118 data_size=48 offsets_size=0
87170           <...>-27745 (-----) [005] ...2 82316.711003: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
87171           <...>-27745 (-----) [005] d..4 82316.711005: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
87172          <idle>-0     (-----) [002] d..1 82316.711012: cpu_idle: state=0 cpu_id=2
87173           <...>-27745 (-----) [005] dn.5 82316.711016: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
87174  surfaceflinger-8858  ( 8858) [001] d..2 82316.711017: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87175           <...>-27745 (-----) [005] d..2 82316.711023: sched_switch: prev_comm=id.nn.benchmark prev_pid=27745 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
87176<...>-770 ( 770) [005] .... 82316.711033: binder_transaction_received: transaction=1571118
87177          <idle>-0     (-----) [001] d..1 82316.711036: cpu_idle: state=0 cpu_id=1
87178<...>-770 ( 770) [005] ...1 82316.711057: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
87179<...>-770 ( 770) [005] d..2 82316.711138: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
87180          <idle>-0     (-----) [000] dnh2 82316.711168: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
87181          <idle>-0     (-----) [000] .n.1 82316.711174: cpu_idle: state=4294967295 cpu_id=0
87182<...>-770 ( 770) [005] ...1 82316.711180: tracing_mark_write: E|770
87183          <idle>-0     (-----) [000] d..2 82316.711185: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
87184<...>-770 ( 770) [005] .... 82316.711188: binder_transaction: transaction=1571119 dest_node=0 dest_proc=27550 dest_thread=27745 reply=1 flags=0x0 code=0x0
87185<...>-770 ( 770) [005] .... 82316.711190: binder_transaction_alloc_buf: transaction=1571119 data_size=168 offsets_size=32
87186<...>-770 ( 770) [005] .... 82316.711197: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
87187<...>-770 ( 770) [005] d..2 82316.711233: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27745 next_prio=110
87188           <...>-27745 (-----) [005] .... 82316.711244: binder_transaction_received: transaction=1571119
87189<...>-581 ( 571) [000] d..2 82316.711274: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87190          <idle>-0     (-----) [000] d..1 82316.711289: cpu_idle: state=0 cpu_id=0
87191           <...>-27745 (-----) [005] ...1 82316.711316: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
87192           <...>-27745 (-----) [005] ...1 82316.711321: tracing_mark_write: E|27550
87193           <...>-27745 (-----) [005] .... 82316.711335: binder_transaction: transaction=1571120 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
87194           <...>-27745 (-----) [005] .... 82316.711338: binder_transaction_alloc_buf: transaction=1571120 data_size=48 offsets_size=0
87195           <...>-27745 (-----) [005] ...2 82316.711340: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
87196           <...>-27745 (-----) [005] d..4 82316.711343: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
87197           <...>-27745 (-----) [005] dn.5 82316.711353: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
87198           <...>-27745 (-----) [005] d..2 82316.711359: sched_switch: prev_comm=id.nn.benchmark prev_pid=27745 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
87199<...>-770 ( 770) [005] .... 82316.711367: binder_transaction_received: transaction=1571120
87200<...>-770 ( 770) [005] ...1 82316.711384: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
87201<...>-770 ( 770) [005] d..2 82316.711441: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
87202          <idle>-0     (-----) [000] dnh2 82316.711465: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
87203          <idle>-0     (-----) [000] .n.1 82316.711471: cpu_idle: state=4294967295 cpu_id=0
87204<...>-770 ( 770) [005] ...1 82316.711475: tracing_mark_write: E|770
87205<...>-770 ( 770) [005] .... 82316.711482: binder_transaction: transaction=1571121 dest_node=0 dest_proc=27550 dest_thread=27745 reply=1 flags=0x0 code=0x0
87206          <idle>-0     (-----) [000] d..2 82316.711482: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
87207<...>-770 ( 770) [005] .... 82316.711484: binder_transaction_alloc_buf: transaction=1571121 data_size=168 offsets_size=32
87208<...>-770 ( 770) [005] .... 82316.711490: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
87209<...>-770 ( 770) [005] d..2 82316.711525: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27745 next_prio=110
87210           <...>-27745 (-----) [005] .... 82316.711535: binder_transaction_received: transaction=1571121
87211<...>-581 ( 571) [000] d..2 82316.711537: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87212          <idle>-0     (-----) [000] d..1 82316.711549: cpu_idle: state=0 cpu_id=0
87213           <...>-27745 (-----) [005] ...1 82316.711912: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
87214           <...>-27745 (-----) [005] ...1 82316.711923: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
87215           <...>-27745 (-----) [005] ...1 82316.711926: tracing_mark_write: E|27550
87216           <...>-27745 (-----) [005] .... 82316.711987: binder_transaction: transaction=1571122 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
87217           <...>-27745 (-----) [005] .... 82316.711991: binder_transaction_alloc_buf: transaction=1571122 data_size=556 offsets_size=104
87218           <...>-27745 (-----) [005] ...2 82316.712005: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
87219           <...>-27745 (-----) [005] d..4 82316.712008: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87220           <...>-27745 (-----) [005] dn.5 82316.712018: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87221           <...>-27745 (-----) [005] d..2 82316.712025: sched_switch: prev_comm=id.nn.benchmark prev_pid=27745 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87222<...>-5340 ( 788) [005] .... 82316.712035: binder_transaction_received: transaction=1571122
87223<...>-5340 ( 788) [005] ...1 82316.712081: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
87224<...>-5340 ( 788) [005] d..2 82316.712128: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87225<...>-5340 ( 788) [005] d..2 82316.712153: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27745 next_prio=110
87226          <idle>-0     (-----) [000] dnh2 82316.712156: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87227          <idle>-0     (-----) [000] .n.1 82316.712163: cpu_idle: state=4294967295 cpu_id=0
87228          <idle>-0     (-----) [000] d..2 82316.712176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
87229           <...>-27745 (-----) [005] d..2 82316.712178: sched_switch: prev_comm=id.nn.benchmark prev_pid=27745 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87230          <idle>-0     (-----) [005] d..1 82316.712196: cpu_idle: state=0 cpu_id=5
87231<...>-87 ( 87) [000] d..2 82316.712221: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87232          <idle>-0     (-----) [002] d.h4 82316.712228: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87233          <idle>-0     (-----) [000] d..1 82316.712230: cpu_idle: state=0 cpu_id=0
87234          <idle>-0     (-----) [002] dnh5 82316.712250: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87235          <idle>-0     (-----) [002] .n.1 82316.712260: cpu_idle: state=4294967295 cpu_id=2
87236          <idle>-0     (-----) [002] d..2 82316.712273: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
87237<...>-86 ( 86) [002] d.h4 82316.712306: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87238          <idle>-0     (-----) [005] dnh2 82316.712329: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87239          <idle>-0     (-----) [005] .n.1 82316.712333: cpu_idle: state=4294967295 cpu_id=5
87240          <idle>-0     (-----) [005] d..2 82316.712341: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87241<...>-86 ( 86) [002] d..2 82316.712365: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87242          <idle>-0     (-----) [002] d..1 82316.712375: cpu_idle: state=0 cpu_id=2
87243<...>-5340 ( 788) [005] d..1 82316.712394: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87244          <idle>-0     (-----) [000] dnh2 82316.712420: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87245          <idle>-0     (-----) [000] .n.1 82316.712426: cpu_idle: state=4294967295 cpu_id=0
87246          <idle>-0     (-----) [000] d..2 82316.712433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
87247 neuralnetworks@-13088 (  788) [000] d..2 82316.712480: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87248          <idle>-0     (-----) [000] d..1 82316.712489: cpu_idle: state=0 cpu_id=0
87249<...>-5340 ( 788) [005] d..2 82316.712543: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87250          <idle>-0     (-----) [000] dnh2 82316.712564: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87251<...>-5340 ( 788) [005] d..2 82316.712568: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87252          <idle>-0     (-----) [000] .n.1 82316.712570: cpu_idle: state=4294967295 cpu_id=0
87253          <idle>-0     (-----) [000] d..2 82316.712578: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
87254          <idle>-0     (-----) [005] d..1 82316.712582: cpu_idle: state=0 cpu_id=5
87255<...>-87 ( 87) [000] d..2 82316.712615: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87256          <idle>-0     (-----) [002] d.h4 82316.712616: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87257          <idle>-0     (-----) [000] d..1 82316.712623: cpu_idle: state=0 cpu_id=0
87258          <idle>-0     (-----) [002] dnh5 82316.712627: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87259          <idle>-0     (-----) [002] .n.1 82316.712635: cpu_idle: state=4294967295 cpu_id=2
87260          <idle>-0     (-----) [002] d..2 82316.712644: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
87261<...>-86 ( 86) [002] d..2 82316.712675: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87262          <idle>-0     (-----) [002] d..1 82316.712683: cpu_idle: state=0 cpu_id=2
87263          <idle>-0     (-----) [005] ...1 82316.712906: cpu_idle: state=4294967295 cpu_id=5
87264          <idle>-0     (-----) [005] d..1 82316.712910: cpu_idle: state=0 cpu_id=5
87265          <idle>-0     (-----) [002] d.h4 82316.714304: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87266          <idle>-0     (-----) [005] dnh2 82316.714325: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87267          <idle>-0     (-----) [005] .n.1 82316.714328: cpu_idle: state=4294967295 cpu_id=5
87268          <idle>-0     (-----) [005] d..2 82316.714336: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87269          <idle>-0     (-----) [002] ...1 82316.714342: cpu_idle: state=4294967295 cpu_id=2
87270          <idle>-0     (-----) [002] d..1 82316.714347: cpu_idle: state=0 cpu_id=2
87271<...>-5340 ( 788) [005] d..1 82316.714386: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87272          <idle>-0     (-----) [000] dnh2 82316.714408: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87273          <idle>-0     (-----) [000] .n.1 82316.714416: cpu_idle: state=4294967295 cpu_id=0
87274          <idle>-0     (-----) [000] d..2 82316.714423: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
87275<...>-5340 ( 788) [005] ...1 82316.714476: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
87276<...>-5340 ( 788) [005] ...1 82316.714480: tracing_mark_write: E|788
87277 neuralnetworks@-13088 (  788) [000] d..2 82316.714482: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87278          <idle>-0     (-----) [000] d..1 82316.714490: cpu_idle: state=0 cpu_id=0
87279<...>-5340 ( 788) [005] .... 82316.714496: binder_transaction: transaction=1571125 dest_node=1571123 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
87280<...>-5340 ( 788) [005] .... 82316.714499: binder_transaction_alloc_buf: transaction=1571125 data_size=60 offsets_size=0
87281<...>-5340 ( 788) [005] d..4 82316.714502: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
87282<...>-5340 ( 788) [005] d..5 82316.714516: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
87283          <idle>-0     (-----) [004] .n.1 82316.714522: cpu_idle: state=4294967295 cpu_id=4
87284          <idle>-0     (-----) [004] d..2 82316.714530: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
87285           <...>-27571 (-----) [004] .... 82316.714535: binder_transaction_received: transaction=1571125
87286<...>-5340 ( 788) [005] ...1 82316.714538: tracing_mark_write: E|788
87287<...>-5340 ( 788) [005] .... 82316.714544: binder_transaction: transaction=1571126 dest_node=0 dest_proc=27550 dest_thread=27745 reply=1 flags=0x0 code=0x0
87288<...>-5340 ( 788) [005] .... 82316.714546: binder_transaction_alloc_buf: transaction=1571126 data_size=8 offsets_size=0
87289<...>-5340 ( 788) [005] d..2 82316.714548: sched_waking: comm=id.nn.benchmark pid=27745 prio=110 target_cpu=005
87290           <...>-27571 (-----) [004] ...1 82316.714552: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
87291<...>-5340 ( 788) [005] d..3 82316.714555: sched_wakeup: comm=id.nn.benchmark pid=27745 prio=110 target_cpu=005
87292<...>-5340 ( 788) [005] .... 82316.714557: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
87293           <...>-27571 (-----) [004] ...1 82316.714559: tracing_mark_write: E|27550
87294           <...>-27571 (-----) [004] d..2 82316.714587: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87295          <idle>-0     (-----) [004] d..1 82316.714595: cpu_idle: state=0 cpu_id=4
87296<...>-5340 ( 788) [005] d..2 82316.714598: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27745 next_prio=110
87297           <...>-27745 (-----) [005] .... 82316.714608: binder_transaction_received: transaction=1571126
87298           <...>-27745 (-----) [005] ...1 82316.714645: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
87299           <...>-27745 (-----) [005] ...1 82316.714652: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
87300           <...>-27745 (-----) [005] ...1 82316.714678: tracing_mark_write: E|27550
87301           <...>-27745 (-----) [005] ...1 82316.714681: tracing_mark_write: E|27550
87302           <...>-27745 (-----) [005] ...1 82316.714685: tracing_mark_write: E|27550
87303           <...>-27745 (-----) [005] ...1 82316.714871: tracing_mark_write: E|27550
87304           <...>-27745 (-----) [005] d..1 82316.714883: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87305           <...>-27745 (-----) [005] d..2 82316.714901: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87306          <idle>-0     (-----) [004] .n.1 82316.714905: cpu_idle: state=4294967295 cpu_id=4
87307          <idle>-0     (-----) [004] d..2 82316.714912: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
87308           <...>-27550 (-----) [004] d..2 82316.714932: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87309          <idle>-0     (-----) [004] d..1 82316.714941: cpu_idle: state=0 cpu_id=4
87310           <...>-27745 (-----) [005] d..1 82316.714986: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87311           <...>-27745 (-----) [005] d..2 82316.714995: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87312          <idle>-0     (-----) [004] .n.1 82316.715000: cpu_idle: state=4294967295 cpu_id=4
87313          <idle>-0     (-----) [004] d..2 82316.715008: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
87314           <...>-27745 (-----) [005] d..2 82316.715034: sched_switch: prev_comm=id.nn.benchmark prev_pid=27745 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
87315           <...>-27550 (-----) [004] ...1 82316.715054: tracing_mark_write: E|27550
87316           <...>-27550 (-----) [004] ...1 82316.715059: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
87317          <idle>-0     (-----) [005] d..1 82316.715061: cpu_idle: state=0 cpu_id=5
87318           <...>-27550 (-----) [004] ...1 82316.715065: tracing_mark_write: E|27550
87319           <...>-27550 (-----) [004] ...1 82316.715068: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
87320           <...>-27550 (-----) [004] ...1 82316.715073: tracing_mark_write: E|27550
87321           <...>-27550 (-----) [004] ...1 82316.715077: tracing_mark_write: E|27550
87322          <idle>-0     (-----) [000] d.s2 82316.715135: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
87323          <idle>-0     (-----) [002] d.s2 82316.715135: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
87324          <idle>-0     (-----) [000] dns3 82316.715155: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
87325          <idle>-0     (-----) [002] dns3 82316.715157: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
87326          <idle>-0     (-----) [002] .n.1 82316.715165: cpu_idle: state=4294967295 cpu_id=2
87327          <idle>-0     (-----) [002] d..2 82316.715174: 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
87328          <idle>-0     (-----) [000] .n.1 82316.715176: cpu_idle: state=4294967295 cpu_id=0
87329     rcu_preempt-7     (    7) [002] d..2 82316.715186: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
87330          <idle>-0     (-----) [000] d..2 82316.715186: 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
87331<...>-8 ( 8) [000] d..2 82316.715195: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
87332<...>-8 ( 8) [000] d..3 82316.715215: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
87333           <...>-27550 (-----) [004] ...1 82316.715223: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
87334     rcu_preempt-7     (    7) [002] d..3 82316.715232: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
87335     rcu_preempt-7     (    7) [002] d..2 82316.715235: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
87336<...>-8 ( 8) [000] d..2 82316.715248: 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
87337          <idle>-0     (-----) [000] d..1 82316.715264: cpu_idle: state=0 cpu_id=0
87338     rcu_preempt-7     (    7) [002] d..3 82316.715272: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
87339          <idle>-0     (-----) [000] .n.1 82316.715279: cpu_idle: state=4294967295 cpu_id=0
87340           <...>-27550 (-----) [004] ...1 82316.715282: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
87341           <...>-27550 (-----) [004] ...1 82316.715287: tracing_mark_write: E|27550
87342     rcu_preempt-7     (    7) [002] d..2 82316.715290: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
87343           <...>-27550 (-----) [004] ...1 82316.715291: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
87344          <idle>-0     (-----) [000] d..2 82316.715291: 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
87345           <...>-27550 (-----) [004] ...1 82316.715296: tracing_mark_write: E|27550
87346         rcuop/2-29    (   29) [000] d..2 82316.715297: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
87347           <...>-27550 (-----) [004] ...1 82316.715300: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
87348<...>-46 ( 46) [002] d..2 82316.715302: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
87349           <...>-27550 (-----) [004] ...1 82316.715304: tracing_mark_write: E|27550
87350           <...>-27550 (-----) [004] ...1 82316.715307: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
87351<...>-46 ( 46) [002] d..3 82316.715318: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
87352<...>-46 ( 46) [002] d..2 82316.715330: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
87353         rcuop/4-45    (   45) [002] d..2 82316.715336: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
87354         rcuop/2-29    (   29) [000] d..3 82316.715339: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
87355         rcuop/2-29    (   29) [000] d..2 82316.715356: 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
87356         rcuop/3-37    (   37) [000] d..2 82316.715372: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
87357         rcuop/4-45    (   45) [002] d..3 82316.715386: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=002
87358          <idle>-0     (-----) [005] .n.1 82316.715389: cpu_idle: state=4294967295 cpu_id=5
87359           <...>-27550 (-----) [004] ...1 82316.715390: tracing_mark_write: E|27550
87360           <...>-27550 (-----) [004] ...1 82316.715395: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
87361<...>-8 ( 8) [000] d..2 82316.715397: 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
87362         rcuop/4-45    (   45) [002] d..2 82316.715398: 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
87363          <idle>-0     (-----) [005] d..2 82316.715399: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27746 next_prio=110
87364          <idle>-0     (-----) [000] d..1 82316.715409: cpu_idle: state=0 cpu_id=0
87365           <...>-27550 (-----) [004] d..2 82316.715411: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87366          <idle>-0     (-----) [004] d..1 82316.715426: cpu_idle: state=0 cpu_id=4
87367           <...>-27746 (-----) [005] ...1 82316.715458: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
87368           <...>-27746 (-----) [005] ...1 82316.715472: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
87369           <...>-27746 (-----) [005] ...1 82316.715476: tracing_mark_write: E|27550
87370           <...>-27746 (-----) [005] .... 82316.715496: binder_transaction: transaction=1571127 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
87371           <...>-27746 (-----) [005] .... 82316.715499: binder_transaction_alloc_buf: transaction=1571127 data_size=48 offsets_size=0
87372           <...>-27746 (-----) [005] ...2 82316.715502: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
87373           <...>-27746 (-----) [005] d..4 82316.715505: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
87374           <...>-27746 (-----) [005] dn.5 82316.715516: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
87375         rcuop/5-53    (   53) [002] d..2 82316.715523: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87376           <...>-27746 (-----) [005] d..2 82316.715523: sched_switch: prev_comm=id.nn.benchmark prev_pid=27746 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
87377<...>-770 ( 770) [005] .... 82316.715533: binder_transaction_received: transaction=1571127
87378          <idle>-0     (-----) [002] d..1 82316.715538: cpu_idle: state=0 cpu_id=2
87379<...>-770 ( 770) [005] ...1 82316.715556: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
87380<...>-770 ( 770) [005] d..2 82316.715628: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
87381          <idle>-0     (-----) [000] dnh2 82316.715655: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
87382          <idle>-0     (-----) [000] .n.1 82316.715662: cpu_idle: state=4294967295 cpu_id=0
87383<...>-770 ( 770) [005] ...1 82316.715669: tracing_mark_write: E|770
87384          <idle>-0     (-----) [000] d..2 82316.715673: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
87385<...>-770 ( 770) [005] .... 82316.715678: binder_transaction: transaction=1571128 dest_node=0 dest_proc=27550 dest_thread=27746 reply=1 flags=0x0 code=0x0
87386<...>-770 ( 770) [005] .... 82316.715680: binder_transaction_alloc_buf: transaction=1571128 data_size=168 offsets_size=32
87387<...>-770 ( 770) [005] .... 82316.715687: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
87388<...>-770 ( 770) [005] d..2 82316.715723: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27746 next_prio=110
87389           <...>-27746 (-----) [005] .... 82316.715735: binder_transaction_received: transaction=1571128
87390<...>-581 ( 571) [000] d..2 82316.715751: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87391          <idle>-0     (-----) [000] d..1 82316.715766: cpu_idle: state=0 cpu_id=0
87392           <...>-27746 (-----) [005] ...1 82316.715805: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
87393           <...>-27746 (-----) [005] ...1 82316.715810: tracing_mark_write: E|27550
87394           <...>-27746 (-----) [005] .... 82316.715824: binder_transaction: transaction=1571129 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
87395           <...>-27746 (-----) [005] .... 82316.715826: binder_transaction_alloc_buf: transaction=1571129 data_size=48 offsets_size=0
87396           <...>-27746 (-----) [005] ...2 82316.715829: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
87397           <...>-27746 (-----) [005] d..4 82316.715831: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
87398           <...>-27746 (-----) [005] dn.5 82316.715841: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
87399           <...>-27746 (-----) [005] d..2 82316.715847: sched_switch: prev_comm=id.nn.benchmark prev_pid=27746 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
87400<...>-770 ( 770) [005] .... 82316.715856: binder_transaction_received: transaction=1571129
87401<...>-770 ( 770) [005] ...1 82316.715873: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
87402<...>-770 ( 770) [005] d..2 82316.715935: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
87403          <idle>-0     (-----) [000] dnh2 82316.715959: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
87404          <idle>-0     (-----) [000] .n.1 82316.715965: cpu_idle: state=4294967295 cpu_id=0
87405<...>-770 ( 770) [005] ...1 82316.715969: tracing_mark_write: E|770
87406<...>-770 ( 770) [005] .... 82316.715976: binder_transaction: transaction=1571130 dest_node=0 dest_proc=27550 dest_thread=27746 reply=1 flags=0x0 code=0x0
87407          <idle>-0     (-----) [000] d..2 82316.715977: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
87408<...>-770 ( 770) [005] .... 82316.715978: binder_transaction_alloc_buf: transaction=1571130 data_size=168 offsets_size=32
87409<...>-770 ( 770) [005] .... 82316.715984: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
87410<...>-770 ( 770) [005] d..2 82316.716019: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27746 next_prio=110
87411           <...>-27746 (-----) [005] .... 82316.716029: binder_transaction_received: transaction=1571130
87412<...>-581 ( 571) [000] d..2 82316.716032: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87413          <idle>-0     (-----) [000] d..1 82316.716045: cpu_idle: state=0 cpu_id=0
87414          <idle>-0     (-----) [000] d.h5 82316.716216: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
87415          <idle>-0     (-----) [000] d.h6 82316.716238: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
87416          <idle>-0     (-----) [000] d.h5 82316.716243: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
87417          <idle>-0     (-----) [002] .n.1 82316.716245: cpu_idle: state=4294967295 cpu_id=2
87418          <idle>-0     (-----) [002] d..2 82316.716256: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
87419          <idle>-0     (-----) [000] dnh6 82316.716268: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
87420          <idle>-0     (-----) [000] .n.1 82316.716282: cpu_idle: state=4294967295 cpu_id=0
87421  crtc_event:111-322   (  322) [002] d..2 82316.716291: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87422          <idle>-0     (-----) [000] d..2 82316.716293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
87423          <idle>-0     (-----) [002] d..1 82316.716300: cpu_idle: state=0 cpu_id=2
87424           <...>-27746 (-----) [005] ...1 82316.716303: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
87425           <...>-27746 (-----) [005] ...1 82316.716313: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
87426           <...>-27746 (-----) [005] ...1 82316.716317: tracing_mark_write: E|27550
87427           <...>-27746 (-----) [005] .... 82316.716375: binder_transaction: transaction=1571131 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
87428           <...>-27746 (-----) [005] .... 82316.716378: binder_transaction_alloc_buf: transaction=1571131 data_size=556 offsets_size=104
87429           <...>-27746 (-----) [005] ...2 82316.716391: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
87430           <...>-27746 (-----) [005] d..4 82316.716394: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87431           <...>-27746 (-----) [005] dn.5 82316.716405: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87432           <...>-27746 (-----) [005] d..2 82316.716412: sched_switch: prev_comm=id.nn.benchmark prev_pid=27746 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87433<...>-5340 ( 788) [005] .... 82316.716421: binder_transaction_received: transaction=1571131
87434 crtc_commit:111-321   (  321) [000] d..2 82316.716437: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
87435          <idle>-0     (-----) [000] d..1 82316.716447: cpu_idle: state=0 cpu_id=0
87436<...>-5340 ( 788) [005] ...1 82316.716464: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
87437<...>-5340 ( 788) [005] d..2 82316.716510: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87438<...>-5340 ( 788) [005] d..2 82316.716535: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27746 next_prio=110
87439          <idle>-0     (-----) [000] dnh2 82316.716539: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87440          <idle>-0     (-----) [000] .n.1 82316.716546: cpu_idle: state=4294967295 cpu_id=0
87441          <idle>-0     (-----) [000] d..2 82316.716554: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
87442           <...>-27746 (-----) [005] d..2 82316.716558: sched_switch: prev_comm=id.nn.benchmark prev_pid=27746 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87443          <idle>-0     (-----) [005] d..1 82316.716575: cpu_idle: state=0 cpu_id=5
87444<...>-87 ( 87) [000] d..2 82316.716597: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87445          <idle>-0     (-----) [000] d..1 82316.716605: cpu_idle: state=0 cpu_id=0
87446          <idle>-0     (-----) [002] d.h4 82316.716608: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87447          <idle>-0     (-----) [002] dnh5 82316.716625: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87448          <idle>-0     (-----) [002] .n.1 82316.716634: cpu_idle: state=4294967295 cpu_id=2
87449          <idle>-0     (-----) [002] d..2 82316.716646: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
87450<...>-86 ( 86) [002] d..2 82316.716681: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87451          <idle>-0     (-----) [002] d.h5 82316.716702: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87452          <idle>-0     (-----) [005] dnh2 82316.716725: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87453          <idle>-0     (-----) [005] .n.1 82316.716729: cpu_idle: state=4294967295 cpu_id=5
87454          <idle>-0     (-----) [005] d..2 82316.716738: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87455          <idle>-0     (-----) [002] d..1 82316.716748: cpu_idle: state=0 cpu_id=2
87456<...>-5340 ( 788) [005] d..1 82316.716789: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87457          <idle>-0     (-----) [000] dnh2 82316.716814: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87458          <idle>-0     (-----) [000] .n.1 82316.716821: cpu_idle: state=4294967295 cpu_id=0
87459          <idle>-0     (-----) [000] d..2 82316.716828: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
87460 neuralnetworks@-13088 (  788) [000] d..2 82316.716875: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87461          <idle>-0     (-----) [000] d..1 82316.716884: cpu_idle: state=0 cpu_id=0
87462<...>-5340 ( 788) [005] d..2 82316.716938: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87463          <idle>-0     (-----) [000] dnh2 82316.716959: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87464<...>-5340 ( 788) [005] d..2 82316.716964: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87465          <idle>-0     (-----) [000] .n.1 82316.716965: cpu_idle: state=4294967295 cpu_id=0
87466          <idle>-0     (-----) [000] d..2 82316.716973: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
87467          <idle>-0     (-----) [005] d..1 82316.716978: cpu_idle: state=0 cpu_id=5
87468<...>-87 ( 87) [000] d..2 82316.717011: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87469          <idle>-0     (-----) [002] d.h4 82316.717011: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87470          <idle>-0     (-----) [000] d..1 82316.717019: cpu_idle: state=0 cpu_id=0
87471          <idle>-0     (-----) [002] dnh5 82316.717022: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87472          <idle>-0     (-----) [002] .n.1 82316.717030: cpu_idle: state=4294967295 cpu_id=2
87473          <idle>-0     (-----) [002] d..2 82316.717042: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
87474<...>-86 ( 86) [002] d..2 82316.717074: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87475          <idle>-0     (-----) [002] d..1 82316.717085: cpu_idle: state=0 cpu_id=2
87476          <idle>-0     (-----) [005] ...1 82316.717309: cpu_idle: state=4294967295 cpu_id=5
87477          <idle>-0     (-----) [005] d..1 82316.717313: cpu_idle: state=0 cpu_id=5
87478          <idle>-0     (-----) [000] d.H5 82316.718548: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
87479          <idle>-0     (-----) [000] dnH6 82316.718561: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
87480          <idle>-0     (-----) [000] dns3 82316.718574: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
87481          <idle>-0     (-----) [000] dns4 82316.718586: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
87482          <idle>-0     (-----) [002] .n.1 82316.718592: cpu_idle: state=4294967295 cpu_id=2
87483          <idle>-0     (-----) [000] dns3 82316.718594: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
87484          <idle>-0     (-----) [002] d..2 82316.718604: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
87485          <idle>-0     (-----) [000] dns4 82316.718634: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
87486  crtc_event:111-322   (  322) [002] d..2 82316.718643: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
87487          <idle>-0     (-----) [000] dns3 82316.718649: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
87488  kworker/u16:15-1311  ( 1311) [002] .... 82316.718683: clk_set_rate: l3_cluster0_vote_clk 300000000
87489          <idle>-0     (-----) [000] dns4 82316.718684: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
87490          <idle>-0     (-----) [000] .n.1 82316.718702: cpu_idle: state=4294967295 cpu_id=0
87491          <idle>-0     (-----) [000] d..2 82316.718709: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
87492  kworker/u16:15-1311  ( 1311) [002] d.h5 82316.718758: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87493          <idle>-0     (-----) [005] dnh2 82316.718779: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87494          <idle>-0     (-----) [005] .n.1 82316.718783: cpu_idle: state=4294967295 cpu_id=5
87495          <idle>-0     (-----) [005] d..2 82316.718791: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87496<...>-5340 ( 788) [005] d..1 82316.718839: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87497 crtc_commit:111-321   (  321) [000] d.h4 82316.718846: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
87498 crtc_commit:111-321   (  321) [000] d.h5 82316.718872: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
87499          <idle>-0     (-----) [003] .n.1 82316.718880: cpu_idle: state=4294967295 cpu_id=3
87500          <idle>-0     (-----) [003] d..2 82316.718922: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
87501 crtc_commit:111-321   (  321) [000] d.h1 82316.718922: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87502<...>-5340 ( 788) [005] ...1 82316.718932: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
87503<...>-5340 ( 788) [005] ...1 82316.718936: tracing_mark_write: E|788
87504 crtc_commit:111-321   (  321) [000] d..2 82316.718937: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
87505<...>-5340 ( 788) [005] .... 82316.718951: binder_transaction: transaction=1571134 dest_node=1571132 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
87506  crtc_event:111-322   (  322) [003] d..2 82316.718952: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87507<...>-5340 ( 788) [005] .... 82316.718954: binder_transaction_alloc_buf: transaction=1571134 data_size=60 offsets_size=0
87508<...>-5340 ( 788) [005] d..4 82316.718957: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
87509          <idle>-0     (-----) [003] d..1 82316.718963: cpu_idle: state=0 cpu_id=3
87510<...>-5340 ( 788) [005] d..5 82316.718970: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
87511          <idle>-0     (-----) [004] .n.1 82316.718974: cpu_idle: state=4294967295 cpu_id=4
87512 neuralnetworks@-13088 (  788) [000] d..2 82316.718980: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87513          <idle>-0     (-----) [004] d..2 82316.718983: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
87514           <...>-27571 (-----) [004] .... 82316.718988: binder_transaction_received: transaction=1571134
87515          <idle>-0     (-----) [000] d..1 82316.718992: cpu_idle: state=0 cpu_id=0
87516<...>-5340 ( 788) [005] ...1 82316.718993: tracing_mark_write: E|788
87517<...>-5340 ( 788) [005] .... 82316.718999: binder_transaction: transaction=1571135 dest_node=0 dest_proc=27550 dest_thread=27746 reply=1 flags=0x0 code=0x0
87518<...>-5340 ( 788) [005] .... 82316.719001: binder_transaction_alloc_buf: transaction=1571135 data_size=8 offsets_size=0
87519<...>-5340 ( 788) [005] d..2 82316.719003: sched_waking: comm=id.nn.benchmark pid=27746 prio=110 target_cpu=005
87520  kworker/u16:15-1311  ( 1311) [002] d..2 82316.719004: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
87521           <...>-27571 (-----) [004] ...1 82316.719005: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
87522<...>-5340 ( 788) [005] d..3 82316.719010: sched_wakeup: comm=id.nn.benchmark pid=27746 prio=110 target_cpu=005
87523           <...>-27571 (-----) [004] ...1 82316.719011: tracing_mark_write: E|27550
87524<...>-5340 ( 788) [005] .... 82316.719012: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
87525  kworker/u16:13-1147  ( 1147) [002] d..2 82316.719030: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87526           <...>-27571 (-----) [004] d..2 82316.719039: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87527          <idle>-0     (-----) [002] d..1 82316.719040: cpu_idle: state=0 cpu_id=2
87528          <idle>-0     (-----) [004] d..1 82316.719047: cpu_idle: state=0 cpu_id=4
87529          <idle>-0     (-----) [001] d.s3 82316.719052: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
87530<...>-5340 ( 788) [005] d..2 82316.719053: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27746 next_prio=110
87531           <...>-27746 (-----) [005] .... 82316.719063: binder_transaction_received: transaction=1571135
87532          <idle>-0     (-----) [001] d.s4 82316.719065: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
87533          <idle>-0     (-----) [001] d.s4 82316.719075: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
87534          <idle>-0     (-----) [002] .n.1 82316.719081: cpu_idle: state=4294967295 cpu_id=2
87535          <idle>-0     (-----) [001] ...1 82316.719087: cpu_idle: state=4294967295 cpu_id=1
87536          <idle>-0     (-----) [002] d..2 82316.719091: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
87537          <idle>-0     (-----) [001] d..1 82316.719093: cpu_idle: state=0 cpu_id=1
87538           <...>-27746 (-----) [005] ...1 82316.719099: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
87539           <...>-27746 (-----) [005] ...1 82316.719105: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
87540           <...>-27746 (-----) [005] ...1 82316.719147: tracing_mark_write: E|27550
87541           <...>-27746 (-----) [005] ...1 82316.719151: tracing_mark_write: E|27550
87542           <...>-27746 (-----) [005] ...1 82316.719154: tracing_mark_write: E|27550
87543  kworker/u16:15-1311  ( 1311) [002] d..2 82316.719174: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87544          <idle>-0     (-----) [002] d..1 82316.719183: cpu_idle: state=0 cpu_id=2
87545           <...>-27746 (-----) [005] ...1 82316.719340: tracing_mark_write: E|27550
87546           <...>-27746 (-----) [005] d..1 82316.719352: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87547           <...>-27746 (-----) [005] d..2 82316.719368: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87548          <idle>-0     (-----) [004] .n.1 82316.719373: cpu_idle: state=4294967295 cpu_id=4
87549          <idle>-0     (-----) [004] d..2 82316.719379: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
87550           <...>-27550 (-----) [004] d..2 82316.719399: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87551          <idle>-0     (-----) [004] d..1 82316.719408: cpu_idle: state=0 cpu_id=4
87552           <...>-27746 (-----) [005] d..1 82316.719456: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87553           <...>-27746 (-----) [005] d..2 82316.719465: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87554          <idle>-0     (-----) [004] .n.1 82316.719471: cpu_idle: state=4294967295 cpu_id=4
87555          <idle>-0     (-----) [004] d..2 82316.719478: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
87556           <...>-27746 (-----) [005] d..2 82316.719503: sched_switch: prev_comm=id.nn.benchmark prev_pid=27746 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
87557           <...>-27550 (-----) [004] ...1 82316.719511: tracing_mark_write: E|27550
87558           <...>-27550 (-----) [004] ...1 82316.719515: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
87559           <...>-27550 (-----) [004] ...1 82316.719521: tracing_mark_write: E|27550
87560          <idle>-0     (-----) [005] d..1 82316.719524: cpu_idle: state=0 cpu_id=5
87561           <...>-27550 (-----) [004] ...1 82316.719525: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
87562           <...>-27550 (-----) [004] ...1 82316.719529: tracing_mark_write: E|27550
87563           <...>-27550 (-----) [004] ...1 82316.719533: tracing_mark_write: E|27550
87564           <...>-27550 (-----) [004] ...1 82316.719646: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
87565           <...>-27550 (-----) [004] ...1 82316.719703: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
87566           <...>-27550 (-----) [004] ...1 82316.719708: tracing_mark_write: E|27550
87567           <...>-27550 (-----) [004] ...1 82316.719712: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
87568           <...>-27550 (-----) [004] ...1 82316.719718: tracing_mark_write: E|27550
87569           <...>-27550 (-----) [004] ...1 82316.719721: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
87570           <...>-27550 (-----) [004] ...1 82316.719726: tracing_mark_write: E|27550
87571           <...>-27550 (-----) [004] ...1 82316.719729: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
87572          <idle>-0     (-----) [005] .n.1 82316.719816: cpu_idle: state=4294967295 cpu_id=5
87573           <...>-27550 (-----) [004] ...1 82316.719817: tracing_mark_write: E|27550
87574           <...>-27550 (-----) [004] ...1 82316.719822: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
87575          <idle>-0     (-----) [005] d..2 82316.719825: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27747 next_prio=110
87576           <...>-27550 (-----) [004] d..2 82316.719838: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87577          <idle>-0     (-----) [004] d..1 82316.719852: cpu_idle: state=0 cpu_id=4
87578           <...>-27747 (-----) [005] ...1 82316.719886: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
87579           <...>-27747 (-----) [005] ...1 82316.719901: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
87580           <...>-27747 (-----) [005] ...1 82316.719905: tracing_mark_write: E|27550
87581           <...>-27747 (-----) [005] .... 82316.719926: binder_transaction: transaction=1571136 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
87582           <...>-27747 (-----) [005] .... 82316.719929: binder_transaction_alloc_buf: transaction=1571136 data_size=48 offsets_size=0
87583           <...>-27747 (-----) [005] ...2 82316.719932: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
87584           <...>-27747 (-----) [005] d..4 82316.719934: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
87585           <...>-27747 (-----) [005] dn.5 82316.719946: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
87586           <...>-27747 (-----) [005] d..2 82316.719953: sched_switch: prev_comm=id.nn.benchmark prev_pid=27747 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
87587<...>-770 ( 770) [005] .... 82316.719962: binder_transaction_received: transaction=1571136
87588<...>-770 ( 770) [005] ...1 82316.719984: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
87589<...>-770 ( 770) [005] d..2 82316.720057: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
87590          <idle>-0     (-----) [000] dnh2 82316.720085: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
87591          <idle>-0     (-----) [000] .n.1 82316.720091: cpu_idle: state=4294967295 cpu_id=0
87592<...>-770 ( 770) [005] ...1 82316.720097: tracing_mark_write: E|770
87593          <idle>-0     (-----) [000] d..2 82316.720100: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
87594<...>-770 ( 770) [005] .... 82316.720105: binder_transaction: transaction=1571137 dest_node=0 dest_proc=27550 dest_thread=27747 reply=1 flags=0x0 code=0x0
87595<...>-770 ( 770) [005] .... 82316.720108: binder_transaction_alloc_buf: transaction=1571137 data_size=168 offsets_size=32
87596<...>-770 ( 770) [005] .... 82316.720114: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
87597<...>-770 ( 770) [005] d..2 82316.720150: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27747 next_prio=110
87598           <...>-27747 (-----) [005] .... 82316.720161: binder_transaction_received: transaction=1571137
87599<...>-581 ( 571) [000] d..2 82316.720183: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87600          <idle>-0     (-----) [000] d..1 82316.720193: cpu_idle: state=0 cpu_id=0
87601           <...>-27747 (-----) [005] ...1 82316.720231: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
87602           <...>-27747 (-----) [005] ...1 82316.720236: tracing_mark_write: E|27550
87603           <...>-27747 (-----) [005] .... 82316.720249: binder_transaction: transaction=1571138 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
87604           <...>-27747 (-----) [005] .... 82316.720252: binder_transaction_alloc_buf: transaction=1571138 data_size=48 offsets_size=0
87605           <...>-27747 (-----) [005] ...2 82316.720254: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
87606           <...>-27747 (-----) [005] d..4 82316.720256: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
87607           <...>-27747 (-----) [005] dn.5 82316.720266: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
87608           <...>-27747 (-----) [005] d..2 82316.720273: sched_switch: prev_comm=id.nn.benchmark prev_pid=27747 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
87609<...>-770 ( 770) [005] .... 82316.720281: binder_transaction_received: transaction=1571138
87610<...>-770 ( 770) [005] ...1 82316.720298: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
87611<...>-770 ( 770) [005] d..2 82316.720356: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
87612          <idle>-0     (-----) [000] dnh2 82316.720380: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
87613          <idle>-0     (-----) [000] .n.1 82316.720386: cpu_idle: state=4294967295 cpu_id=0
87614<...>-770 ( 770) [005] ...1 82316.720390: tracing_mark_write: E|770
87615          <idle>-0     (-----) [000] d..2 82316.720394: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
87616<...>-770 ( 770) [005] .... 82316.720397: binder_transaction: transaction=1571139 dest_node=0 dest_proc=27550 dest_thread=27747 reply=1 flags=0x0 code=0x0
87617<...>-770 ( 770) [005] .... 82316.720400: binder_transaction_alloc_buf: transaction=1571139 data_size=168 offsets_size=32
87618<...>-770 ( 770) [005] .... 82316.720406: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
87619<...>-770 ( 770) [005] d..2 82316.720441: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27747 next_prio=110
87620<...>-581 ( 571) [000] d..2 82316.720449: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87621           <...>-27747 (-----) [005] .... 82316.720452: binder_transaction_received: transaction=1571139
87622          <idle>-0     (-----) [000] d..1 82316.720458: cpu_idle: state=0 cpu_id=0
87623          <idle>-0     (-----) [001] d.h2 82316.720656: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
87624          <idle>-0     (-----) [001] dnh3 82316.720673: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
87625          <idle>-0     (-----) [001] .n.1 82316.720681: cpu_idle: state=4294967295 cpu_id=1
87626          <idle>-0     (-----) [001] d..2 82316.720693: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
87627        DispSync-8879  ( 8858) [001] d..1 82316.720712: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
87628           <...>-27747 (-----) [005] ...1 82316.720726: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
87629        DispSync-8879  ( 8858) [001] d..2 82316.720728: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
87630          <idle>-0     (-----) [003] .n.1 82316.720733: cpu_idle: state=4294967295 cpu_id=3
87631           <...>-27747 (-----) [005] ...1 82316.720736: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
87632           <...>-27747 (-----) [005] ...1 82316.720739: tracing_mark_write: E|27550
87633          <idle>-0     (-----) [003] d..2 82316.720744: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
87634        DispSync-8879  ( 8858) [001] d..2 82316.720763: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87635          <idle>-0     (-----) [001] d..1 82316.720774: cpu_idle: state=0 cpu_id=1
87636           <...>-27747 (-----) [005] .... 82316.720799: binder_transaction: transaction=1571140 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
87637           <...>-27747 (-----) [005] .... 82316.720802: binder_transaction_alloc_buf: transaction=1571140 data_size=556 offsets_size=104
87638  appEventThread-8881  ( 8858) [003] d..3 82316.720806: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
87639           <...>-27747 (-----) [005] ...2 82316.720816: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
87640           <...>-27747 (-----) [005] d..4 82316.720818: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87641           <...>-27747 (-----) [005] dn.5 82316.720829: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87642  appEventThread-8881  ( 8858) [003] d..4 82316.720830: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
87643          <idle>-0     (-----) [000] .n.1 82316.720835: cpu_idle: state=4294967295 cpu_id=0
87644           <...>-27747 (-----) [005] d..2 82316.720836: sched_switch: prev_comm=id.nn.benchmark prev_pid=27747 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87645          <idle>-0     (-----) [000] d..2 82316.720845: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
87646<...>-5340 ( 788) [005] .... 82316.720846: binder_transaction_received: transaction=1571140
87647  appEventThread-8881  ( 8858) [003] d..2 82316.720872: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87648          <idle>-0     (-----) [003] d..1 82316.720886: cpu_idle: state=0 cpu_id=3
87649<...>-5340 ( 788) [005] ...1 82316.720888: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
87650<...>-5340 ( 788) [005] d..2 82316.720928: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87651<...>-5340 ( 788) [005] d..2 82316.720953: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27747 next_prio=110
87652<...>-9105 ( 9105) [000] d.h1 82316.720959: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
87653           <...>-27747 (-----) [005] d..2 82316.720975: sched_switch: prev_comm=id.nn.benchmark prev_pid=27747 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87654          <idle>-0     (-----) [005] d..1 82316.720993: cpu_idle: state=0 cpu_id=5
87655<...>-9105 ( 9105) [000] .... 82316.721198: binder_transaction: transaction=1571143 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
87656<...>-9105 ( 9105) [000] .... 82316.721204: binder_transaction_alloc_buf: transaction=1571143 data_size=80 offsets_size=0
87657<...>-9105 ( 9105) [000] d..4 82316.721211: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
87658<...>-9105 ( 9105) [000] d..5 82316.721245: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
87659          <idle>-0     (-----) [001] .n.1 82316.721251: cpu_idle: state=4294967295 cpu_id=1
87660          <idle>-0     (-----) [001] d..2 82316.721264: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
87661<...>-13083 ( 8858) [001] .... 82316.721272: binder_transaction_received: transaction=1571143
87662<...>-9105 ( 9105) [000] d..3 82316.721285: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
87663<...>-9105 ( 9105) [000] d..4 82316.721305: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
87664<...>-13083 ( 8858) [001] d..1 82316.721306: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
87665          <idle>-0     (-----) [002] .n.1 82316.721311: cpu_idle: state=4294967295 cpu_id=2
87666          <idle>-0     (-----) [002] d..2 82316.721320: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
87667<...>-13083 ( 8858) [001] d..2 82316.721323: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
87668          <idle>-0     (-----) [003] .n.1 82316.721329: cpu_idle: state=4294967295 cpu_id=3
87669          <idle>-0     (-----) [003] d..2 82316.721340: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
87670<...>-13083 ( 8858) [001] d..2 82316.721367: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87671    RenderThread-9436  ( 9105) [002] d..2 82316.721376: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87672          <idle>-0     (-----) [001] d..1 82316.721381: cpu_idle: state=0 cpu_id=1
87673          <idle>-0     (-----) [002] d..1 82316.721385: cpu_idle: state=0 cpu_id=2
87674  appEventThread-8881  ( 8858) [003] d..2 82316.721399: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
87675<...>-9105 ( 9105) [000] d..3 82316.721432: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
87676<...>-87 ( 87) [003] d..2 82316.721443: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87677<...>-9105 ( 9105) [000] d..4 82316.721450: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
87678          <idle>-0     (-----) [002] dnh4 82316.721454: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87679          <idle>-0     (-----) [003] d..1 82316.721456: cpu_idle: state=0 cpu_id=3
87680<...>-9105 ( 9105) [000] d..2 82316.721485: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87681          <idle>-0     (-----) [000] dn.1 82316.721499: cpu_idle: state=0 cpu_id=0
87682          <idle>-0     (-----) [002] dnh5 82316.721503: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
87683          <idle>-0     (-----) [000] .n.1 82316.721508: cpu_idle: state=4294967295 cpu_id=0
87684          <idle>-0     (-----) [000] d..2 82316.721519: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
87685          <idle>-0     (-----) [002] dnh4 82316.721535: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87686          <idle>-0     (-----) [005] dnh2 82316.721556: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87687          <idle>-0     (-----) [005] .n.1 82316.721561: cpu_idle: state=4294967295 cpu_id=5
87688          <idle>-0     (-----) [005] d..2 82316.721569: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87689          <idle>-0     (-----) [002] .n.1 82316.721571: cpu_idle: state=4294967295 cpu_id=2
87690          <idle>-0     (-----) [002] d..2 82316.721582: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
87691<...>-86 ( 86) [000] d..2 82316.721604: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87692          <idle>-0     (-----) [000] d..1 82316.721613: cpu_idle: state=0 cpu_id=0
87693<...>-5340 ( 788) [005] d..1 82316.721621: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87694    RenderThread-9436  ( 9105) [002] dnh1 82316.721661: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
87695    RenderThread-9436  ( 9105) [002] d..2 82316.721672: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
87696 neuralnetworks@-13088 (  788) [002] d..2 82316.721719: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
87697    RenderThread-9436  ( 9105) [002] d.s1 82316.721806: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
87698          <idle>-0     (-----) [000] d.s2 82316.721807: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
87699<...>-5340 ( 788) [005] d..2 82316.721816: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
87700          <idle>-0     (-----) [000] dns3 82316.721824: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
87701    RenderThread-9436  ( 9105) [002] dns2 82316.721826: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
87702          <idle>-0     (-----) [000] .n.1 82316.721837: cpu_idle: state=4294967295 cpu_id=0
87703          <idle>-0     (-----) [003] dnh2 82316.721839: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
87704    RenderThread-9436  ( 9105) [002] d..2 82316.721843: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
87705<...>-5340 ( 788) [005] d..2 82316.721845: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87706          <idle>-0     (-----) [003] .n.1 82316.721846: cpu_idle: state=4294967295 cpu_id=3
87707          <idle>-0     (-----) [000] d..2 82316.721847: 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
87708          <idle>-0     (-----) [003] d..2 82316.721858: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
87709          <idle>-0     (-----) [005] d..1 82316.721858: cpu_idle: state=0 cpu_id=5
87710     rcu_preempt-7     (    7) [002] d..2 82316.721862: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
87711<...>-8 ( 8) [000] d..2 82316.721879: 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
87712          <idle>-0     (-----) [000] d..1 82316.721892: cpu_idle: state=0 cpu_id=0
87713<...>-87 ( 87) [003] d..2 82316.721896: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87714    RenderThread-9436  ( 9105) [002] d.h3 82316.721896: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
87715          <idle>-0     (-----) [003] d..1 82316.721907: cpu_idle: state=0 cpu_id=3
87716    RenderThread-9436  ( 9105) [002] d.h4 82316.721912: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
87717          <idle>-0     (-----) [000] .n.1 82316.721918: cpu_idle: state=4294967295 cpu_id=0
87718    RenderThread-9436  ( 9105) [002] d..1 82316.721924: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
87719          <idle>-0     (-----) [000] d..2 82316.721930: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
87720    RenderThread-9436  ( 9105) [002] d..2 82316.721954: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
87721          <idle>-0     (-----) [001] .n.1 82316.721959: cpu_idle: state=4294967295 cpu_id=1
87722<...>-86 ( 86) [000] d..2 82316.721969: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87723          <idle>-0     (-----) [001] d..2 82316.721972: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
87724          <idle>-0     (-----) [000] d..1 82316.721980: cpu_idle: state=0 cpu_id=0
87725    RenderThread-9436  ( 9105) [002] .... 82316.722021: binder_transaction: transaction=1571144 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
87726    RenderThread-9436  ( 9105) [002] .... 82316.722026: binder_transaction_alloc_buf: transaction=1571144 data_size=104 offsets_size=0
87727    RenderThread-9436  ( 9105) [002] d..4 82316.722031: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
87728    RenderThread-9436  ( 9105) [002] dn.5 82316.722050: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
87729    RenderThread-9436  ( 9105) [002] d..2 82316.722059: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
87730<...>-13083 ( 8858) [002] .... 82316.722067: binder_transaction_received: transaction=1571144
87731<...>-9105 ( 9105) [001] d..2 82316.722103: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
87732    RenderThread-9436  ( 9105) [001] d..2 82316.722129: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87733<...>-13083 ( 8858) [002] .... 82316.722141: binder_transaction: transaction=1571145 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
87734          <idle>-0     (-----) [001] d..1 82316.722142: cpu_idle: state=0 cpu_id=1
87735<...>-13083 ( 8858) [002] .... 82316.722145: binder_transaction_alloc_buf: transaction=1571145 data_size=52 offsets_size=8
87736<...>-13083 ( 8858) [002] d..2 82316.722155: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
87737<...>-13083 ( 8858) [002] d..3 82316.722177: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
87738<...>-13083 ( 8858) [002] d..2 82316.722220: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
87739    RenderThread-9436  ( 9105) [002] .... 82316.722228: binder_transaction_received: transaction=1571145
87740    RenderThread-9436  ( 9105) [002] d..2 82316.723213: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
87741          <idle>-0     (-----) [002] d..1 82316.723230: cpu_idle: state=0 cpu_id=2
87742          <idle>-0     (-----) [002] d.h2 82316.723293: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
87743          <idle>-0     (-----) [002] d.h3 82316.723304: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
87744          <idle>-0     (-----) [002] dnh3 82316.723309: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
87745          <idle>-0     (-----) [002] .n.1 82316.723318: cpu_idle: state=4294967295 cpu_id=2
87746          <idle>-0     (-----) [002] d..2 82316.723331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
87747          <idle>-0     (-----) [000] d.h3 82316.723331: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
87748          <idle>-0     (-----) [000] dnh4 82316.723348: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
87749          <idle>-0     (-----) [000] .n.1 82316.723360: cpu_idle: state=4294967295 cpu_id=0
87750          <idle>-0     (-----) [000] d..2 82316.723371: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
87751 kgsl_worker_thr-258   (  258) [000] d..2 82316.723422: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
87752 kgsl_worker_thr-258   (  258) [000] d..3 82316.723460: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
87753 kgsl_worker_thr-258   (  258) [000] d..2 82316.723476: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
87754    RenderThread-9436  ( 9105) [002] d.h3 82316.723517: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87755  kworker/u16:15-1311  ( 1311) [000] d..2 82316.723521: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87756          <idle>-0     (-----) [000] d..1 82316.723534: cpu_idle: state=0 cpu_id=0
87757          <idle>-0     (-----) [005] dnh2 82316.723540: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87758          <idle>-0     (-----) [005] .n.1 82316.723545: cpu_idle: state=4294967295 cpu_id=5
87759          <idle>-0     (-----) [005] d..2 82316.723553: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87760    RenderThread-9436  ( 9105) [002] .... 82316.723587: binder_transaction: transaction=1571146 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
87761    RenderThread-9436  ( 9105) [002] .... 82316.723592: binder_transaction_alloc_buf: transaction=1571146 data_size=192 offsets_size=8
87762    RenderThread-9436  ( 9105) [002] d..4 82316.723602: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
87763<...>-5340 ( 788) [005] d..1 82316.723612: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
87764    RenderThread-9436  ( 9105) [002] dn.5 82316.723619: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
87765    RenderThread-9436  ( 9105) [002] d..2 82316.723632: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
87766<...>-13083 ( 8858) [002] d.h3 82316.723647: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
87767<...>-13083 ( 8858) [002] .... 82316.723659: binder_transaction_received: transaction=1571146
87768<...>-5340 ( 788) [005] ...1 82316.723721: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
87769<...>-5340 ( 788) [005] ...1 82316.723726: tracing_mark_write: E|788
87770<...>-5340 ( 788) [005] .... 82316.723743: binder_transaction: transaction=1571147 dest_node=1571141 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
87771<...>-5340 ( 788) [005] .... 82316.723746: binder_transaction_alloc_buf: transaction=1571147 data_size=60 offsets_size=0
87772<...>-5340 ( 788) [005] d..4 82316.723749: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
87773<...>-5340 ( 788) [005] d..5 82316.723762: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
87774          <idle>-0     (-----) [004] .n.1 82316.723768: cpu_idle: state=4294967295 cpu_id=4
87775          <idle>-0     (-----) [004] d..2 82316.723778: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
87776           <...>-27571 (-----) [004] .... 82316.723783: binder_transaction_received: transaction=1571147
87777<...>-5340 ( 788) [005] ...1 82316.723786: tracing_mark_write: E|788
87778<...>-5340 ( 788) [005] .... 82316.723792: binder_transaction: transaction=1571148 dest_node=0 dest_proc=27550 dest_thread=27747 reply=1 flags=0x0 code=0x0
87779<...>-5340 ( 788) [005] .... 82316.723794: binder_transaction_alloc_buf: transaction=1571148 data_size=8 offsets_size=0
87780<...>-5340 ( 788) [005] d..2 82316.723797: sched_waking: comm=id.nn.benchmark pid=27747 prio=110 target_cpu=005
87781           <...>-27571 (-----) [004] ...1 82316.723804: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
87782<...>-5340 ( 788) [005] d..3 82316.723804: sched_wakeup: comm=id.nn.benchmark pid=27747 prio=110 target_cpu=005
87783<...>-5340 ( 788) [005] .... 82316.723806: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
87784           <...>-27571 (-----) [004] ...1 82316.723810: tracing_mark_write: E|27550
87785           <...>-27571 (-----) [004] d..2 82316.723839: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87786<...>-13083 ( 8858) [002] .... 82316.723844: binder_transaction: transaction=1571149 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
87787          <idle>-0     (-----) [004] d..1 82316.723846: cpu_idle: state=0 cpu_id=4
87788<...>-5340 ( 788) [005] d..2 82316.723848: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27747 next_prio=110
87789<...>-13083 ( 8858) [002] .... 82316.723849: binder_transaction_alloc_buf: transaction=1571149 data_size=68 offsets_size=0
87790           <...>-27747 (-----) [005] .... 82316.723859: binder_transaction_received: transaction=1571148
87791<...>-13083 ( 8858) [002] d..2 82316.723892: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
87792           <...>-27747 (-----) [005] ...1 82316.723897: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
87793           <...>-27747 (-----) [005] ...1 82316.723903: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
87794 neuralnetworks@-13088 (  788) [002] d..2 82316.723928: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
87795           <...>-27747 (-----) [005] ...1 82316.723929: tracing_mark_write: E|27550
87796           <...>-27747 (-----) [005] ...1 82316.723933: tracing_mark_write: E|27550
87797           <...>-27747 (-----) [005] ...1 82316.723937: tracing_mark_write: E|27550
87798    RenderThread-9436  ( 9105) [002] .... 82316.723938: binder_transaction_received: transaction=1571149
87799    RenderThread-9436  ( 9105) [002] d..2 82316.724045: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87800          <idle>-0     (-----) [002] d..1 82316.724077: cpu_idle: state=0 cpu_id=2
87801           <...>-27747 (-----) [005] ...1 82316.724128: tracing_mark_write: E|27550
87802           <...>-27747 (-----) [005] d..1 82316.724142: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87803           <...>-27747 (-----) [005] d..2 82316.724158: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87804          <idle>-0     (-----) [004] .n.1 82316.724163: cpu_idle: state=4294967295 cpu_id=4
87805          <idle>-0     (-----) [004] d..2 82316.724170: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
87806           <...>-27550 (-----) [004] d..2 82316.724189: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87807          <idle>-0     (-----) [004] d..1 82316.724198: cpu_idle: state=0 cpu_id=4
87808           <...>-27747 (-----) [005] d..1 82316.724251: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87809           <...>-27747 (-----) [005] d..2 82316.724261: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
87810          <idle>-0     (-----) [004] .n.1 82316.724265: cpu_idle: state=4294967295 cpu_id=4
87811          <idle>-0     (-----) [004] d..2 82316.724273: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
87812           <...>-27747 (-----) [005] d..2 82316.724300: sched_switch: prev_comm=id.nn.benchmark prev_pid=27747 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
87813           <...>-27550 (-----) [004] ...1 82316.724306: tracing_mark_write: E|27550
87814           <...>-27550 (-----) [004] ...1 82316.724311: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
87815           <...>-27550 (-----) [004] ...1 82316.724317: tracing_mark_write: E|27550
87816           <...>-27550 (-----) [004] ...1 82316.724320: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
87817          <idle>-0     (-----) [005] d..1 82316.724322: cpu_idle: state=0 cpu_id=5
87818           <...>-27550 (-----) [004] ...1 82316.724325: tracing_mark_write: E|27550
87819           <...>-27550 (-----) [004] ...1 82316.724329: tracing_mark_write: E|27550
87820           <...>-27550 (-----) [004] ...1 82316.724442: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
87821           <...>-27550 (-----) [004] ...1 82316.724499: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
87822           <...>-27550 (-----) [004] ...1 82316.724504: tracing_mark_write: E|27550
87823           <...>-27550 (-----) [004] ...1 82316.724508: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
87824           <...>-27550 (-----) [004] ...1 82316.724514: tracing_mark_write: E|27550
87825           <...>-27550 (-----) [004] ...1 82316.724518: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
87826           <...>-27550 (-----) [004] ...1 82316.724522: tracing_mark_write: E|27550
87827           <...>-27550 (-----) [004] ...1 82316.724525: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
87828          <idle>-0     (-----) [005] .n.1 82316.724623: cpu_idle: state=4294967295 cpu_id=5
87829           <...>-27550 (-----) [004] ...1 82316.724625: tracing_mark_write: E|27550
87830           <...>-27550 (-----) [004] ...1 82316.724629: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
87831          <idle>-0     (-----) [005] d..2 82316.724632: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27748 next_prio=110
87832           <...>-27550 (-----) [004] d..2 82316.724644: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
87833          <idle>-0     (-----) [001] d.h2 82316.724650: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
87834          <idle>-0     (-----) [004] d..1 82316.724659: cpu_idle: state=0 cpu_id=4
87835          <idle>-0     (-----) [001] dnh3 82316.724664: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
87836          <idle>-0     (-----) [001] .n.1 82316.724673: cpu_idle: state=4294967295 cpu_id=1
87837          <idle>-0     (-----) [001] d..2 82316.724684: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
87838           <...>-27748 (-----) [005] ...1 82316.724694: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
87839        DispSync-8879  ( 8858) [001] d..1 82316.724706: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
87840           <...>-27748 (-----) [005] ...1 82316.724709: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
87841           <...>-27748 (-----) [005] ...1 82316.724713: tracing_mark_write: E|27550
87842        DispSync-8879  ( 8858) [001] d..2 82316.724723: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
87843          <idle>-0     (-----) [003] .n.1 82316.724729: cpu_idle: state=4294967295 cpu_id=3
87844           <...>-27748 (-----) [005] .... 82316.724735: binder_transaction: transaction=1571150 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
87845          <idle>-0     (-----) [003] d..2 82316.724739: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
87846           <...>-27748 (-----) [005] .... 82316.724739: binder_transaction_alloc_buf: transaction=1571150 data_size=48 offsets_size=0
87847           <...>-27748 (-----) [005] ...2 82316.724742: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
87848           <...>-27748 (-----) [005] d..4 82316.724745: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
87849           <...>-27748 (-----) [005] dn.5 82316.724755: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
87850        DispSync-8879  ( 8858) [001] d..2 82316.724757: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87851           <...>-27748 (-----) [005] d..2 82316.724762: sched_switch: prev_comm=id.nn.benchmark prev_pid=27748 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
87852          <idle>-0     (-----) [001] d..1 82316.724771: cpu_idle: state=0 cpu_id=1
87853<...>-770 ( 770) [005] .... 82316.724773: binder_transaction_received: transaction=1571150
87854   sfEventThread-8882  ( 8858) [003] d..3 82316.724777: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
87855<...>-770 ( 770) [005] ...1 82316.724796: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
87856   sfEventThread-8882  ( 8858) [003] d..4 82316.724799: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
87857          <idle>-0     (-----) [001] .n.1 82316.724804: cpu_idle: state=4294967295 cpu_id=1
87858          <idle>-0     (-----) [001] d..2 82316.724814: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
87859   sfEventThread-8882  ( 8858) [003] d..2 82316.724832: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87860          <idle>-0     (-----) [003] d..1 82316.724845: cpu_idle: state=0 cpu_id=3
87861<...>-770 ( 770) [005] d..2 82316.724882: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
87862  surfaceflinger-8858  ( 8858) [001] d.h1 82316.724924: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
87863<...>-770 ( 770) [005] ...1 82316.724940: tracing_mark_write: E|770
87864<...>-770 ( 770) [005] .... 82316.724948: binder_transaction: transaction=1571151 dest_node=0 dest_proc=27550 dest_thread=27748 reply=1 flags=0x0 code=0x0
87865<...>-770 ( 770) [005] .... 82316.724951: binder_transaction_alloc_buf: transaction=1571151 data_size=168 offsets_size=32
87866<...>-770 ( 770) [005] .... 82316.724957: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
87867<...>-770 ( 770) [005] d..2 82316.724993: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27748 next_prio=110
87868           <...>-27748 (-----) [005] .... 82316.725004: binder_transaction_received: transaction=1571151
87869           <...>-27748 (-----) [005] ...1 82316.725079: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
87870           <...>-27748 (-----) [005] ...1 82316.725084: tracing_mark_write: E|27550
87871           <...>-27748 (-----) [005] .... 82316.725099: binder_transaction: transaction=1571152 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
87872           <...>-27748 (-----) [005] .... 82316.725102: binder_transaction_alloc_buf: transaction=1571152 data_size=48 offsets_size=0
87873           <...>-27748 (-----) [005] ...2 82316.725140: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
87874           <...>-27748 (-----) [005] d..4 82316.725142: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
87875           <...>-27748 (-----) [005] dn.5 82316.725149: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
87876           <...>-27748 (-----) [005] d..2 82316.725156: sched_switch: prev_comm=id.nn.benchmark prev_pid=27748 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
87877<...>-770 ( 770) [005] .... 82316.725164: binder_transaction_received: transaction=1571152
87878<...>-770 ( 770) [005] ...1 82316.725182: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
87879  surfaceflinger-8858  ( 8858) [001] d..1 82316.725226: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
87880  surfaceflinger-8858  ( 8858) [001] d..2 82316.725246: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
87881          <idle>-0     (-----) [003] .n.1 82316.725252: cpu_idle: state=4294967295 cpu_id=3
87882          <idle>-0     (-----) [003] d..2 82316.725263: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
87883<...>-770 ( 770) [005] ...1 82316.725266: tracing_mark_write: E|770
87884<...>-770 ( 770) [005] .... 82316.725273: binder_transaction: transaction=1571153 dest_node=0 dest_proc=27550 dest_thread=27748 reply=1 flags=0x0 code=0x0
87885<...>-770 ( 770) [005] .... 82316.725277: binder_transaction_alloc_buf: transaction=1571153 data_size=168 offsets_size=32
87886<...>-770 ( 770) [005] .... 82316.725283: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
87887   sfEventThread-8882  ( 8858) [003] d..2 82316.725309: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87888<...>-770 ( 770) [005] d..2 82316.725318: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27748 next_prio=110
87889          <idle>-0     (-----) [003] d..1 82316.725320: cpu_idle: state=0 cpu_id=3
87890           <...>-27748 (-----) [005] .... 82316.725329: binder_transaction_received: transaction=1571153
87891  surfaceflinger-8858  ( 8858) [001] ...1 82316.725451: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
87892  surfaceflinger-8858  ( 8858) [001] ...1 82316.725458: tracing_mark_write: E|8858
87893  surfaceflinger-8858  ( 8858) [001] .... 82316.725513: binder_transaction: transaction=1571154 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
87894  surfaceflinger-8858  ( 8858) [001] .... 82316.725518: binder_transaction_alloc_buf: transaction=1571154 data_size=540 offsets_size=96
87895  surfaceflinger-8858  ( 8858) [001] ...2 82316.725544: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
87896  surfaceflinger-8858  ( 8858) [001] d..4 82316.725553: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
87897  surfaceflinger-8858  ( 8858) [001] d..5 82316.725573: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
87898          <idle>-0     (-----) [003] .n.1 82316.725578: cpu_idle: state=4294967295 cpu_id=3
87899          <idle>-0     (-----) [003] d..2 82316.725588: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
87900  surfaceflinger-8858  ( 8858) [001] d..2 82316.725594: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
87901 [email protected]   (  619) [003] .... 82316.725598: binder_transaction_received: transaction=1571154
87902           <...>-27748 (-----) [005] ...1 82316.725605: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
87903           <...>-27748 (-----) [005] ...1 82316.725615: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
87904           <...>-27748 (-----) [005] ...1 82316.725619: tracing_mark_write: E|27550
87905 [email protected]   (  619) [003] ...1 82316.725639: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
87906           <...>-27748 (-----) [005] .... 82316.725682: binder_transaction: transaction=1571155 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
87907           <...>-27748 (-----) [005] .... 82316.725686: binder_transaction_alloc_buf: transaction=1571155 data_size=556 offsets_size=104
87908           <...>-27748 (-----) [005] ...2 82316.725700: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
87909           <...>-27748 (-----) [005] d..4 82316.725703: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87910           <...>-27748 (-----) [005] dn.5 82316.725715: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87911           <...>-27748 (-----) [005] d..2 82316.725722: sched_switch: prev_comm=id.nn.benchmark prev_pid=27748 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87912<...>-581 ( 571) [001] d..2 82316.725725: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87913<...>-5340 ( 788) [005] .... 82316.725732: binder_transaction_received: transaction=1571155
87914 [email protected]   (  619) [003] ...1 82316.725743: tracing_mark_write: B|619|HWCSession::PresentDisplay::
87915          <idle>-0     (-----) [001] d..1 82316.725743: cpu_idle: state=0 cpu_id=1
87916<...>-5340 ( 788) [005] ...1 82316.725778: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
87917<...>-5340 ( 788) [005] d..2 82316.725823: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
87918<...>-5340 ( 788) [005] d..2 82316.725847: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27748 next_prio=110
87919 [email protected]   (  619) [003] d.h1 82316.725852: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
87920           <...>-27748 (-----) [005] d..2 82316.725872: sched_switch: prev_comm=id.nn.benchmark prev_pid=27748 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87921          <idle>-0     (-----) [005] d..1 82316.725890: cpu_idle: state=0 cpu_id=5
87922 [email protected]   (  619) [003] ...1 82316.725936: tracing_mark_write: B|619|HWDeviceDRM::Commit::
87923 [email protected]   (  619) [003] ...1 82316.725951: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
87924 [email protected]   (  619) [003] d..2 82316.726586: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
87925 [email protected]   (  619) [003] d..3 82316.726609: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
87926          <idle>-0     (-----) [000] .n.1 82316.726614: cpu_idle: state=4294967295 cpu_id=0
87927          <idle>-0     (-----) [000] d..2 82316.726627: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
87928 [email protected]   (  619) [003] ...1 82316.726714: tracing_mark_write: E|619
87929 [email protected]   (  619) [003] ...1 82316.726721: tracing_mark_write: E|619
87930 [email protected]   (  619) [003] ...1 82316.726781: tracing_mark_write: E|619
87931 [email protected]   (  619) [003] ...1 82316.726825: tracing_mark_write: E|619
87932 [email protected]   (  619) [003] .... 82316.726840: binder_transaction: transaction=1571158 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
87933 [email protected]   (  619) [003] .... 82316.726845: binder_transaction_alloc_buf: transaction=1571158 data_size=576 offsets_size=112
87934 [email protected]   (  619) [003] d..2 82316.726866: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
87935 [email protected]   (  619) [003] d..3 82316.726883: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
87936 [email protected]   (  619) [003] .... 82316.726889: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
87937          <idle>-0     (-----) [001] .n.1 82316.726890: cpu_idle: state=4294967295 cpu_id=1
87938          <idle>-0     (-----) [001] d..2 82316.726902: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
87939  surfaceflinger-8858  ( 8858) [001] .... 82316.726912: binder_transaction_received: transaction=1571158
87940 [email protected]   (  619) [003] d..2 82316.726964: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
87941<...>-87 ( 87) [003] d..2 82316.727013: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87942          <idle>-0     (-----) [002] d.h4 82316.727021: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
87943          <idle>-0     (-----) [003] d..1 82316.727032: cpu_idle: state=0 cpu_id=3
87944          <idle>-0     (-----) [002] dnh5 82316.727049: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87945          <idle>-0     (-----) [002] .n.1 82316.727059: cpu_idle: state=4294967295 cpu_id=2
87946          <idle>-0     (-----) [002] d..2 82316.727073: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
87947<...>-86 ( 86) [002] d.h3 82316.727097: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87948          <idle>-0     (-----) [005] dnh2 82316.727119: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
87949          <idle>-0     (-----) [005] .n.1 82316.727124: cpu_idle: state=4294967295 cpu_id=5
87950          <idle>-0     (-----) [005] d..2 82316.727132: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
87951<...>-86 ( 86) [002] d..2 82316.727167: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87952          <idle>-0     (-----) [002] d..1 82316.727177: cpu_idle: state=0 cpu_id=2
87953<...>-5340 ( 788) [005] d..1 82316.727187: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
87954 crtc_commit:111-321   (  321) [000] d.h1 82316.727227: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
87955 crtc_commit:111-321   (  321) [000] d..2 82316.727341: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
87956  surfaceflinger-8858  ( 8858) [001] d..2 82316.727349: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
87957<...>-5340 ( 788) [005] d..2 82316.727352: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
87958          <idle>-0     (-----) [001] d..1 82316.727370: cpu_idle: state=0 cpu_id=1
87959          <idle>-0     (-----) [003] dnh2 82316.727375: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
87960<...>-5340 ( 788) [005] d..2 82316.727377: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
87961          <idle>-0     (-----) [003] .n.1 82316.727383: cpu_idle: state=4294967295 cpu_id=3
87962          <idle>-0     (-----) [005] d..1 82316.727391: cpu_idle: state=0 cpu_id=5
87963          <idle>-0     (-----) [003] d..2 82316.727394: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
87964 neuralnetworks@-13088 (  788) [000] d..2 82316.727400: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
87965          <idle>-0     (-----) [000] d..1 82316.727412: cpu_idle: state=0 cpu_id=0
87966          <idle>-0     (-----) [002] d.h4 82316.727432: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87967<...>-87 ( 87) [003] d..2 82316.727432: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
87968          <idle>-0     (-----) [002] dnh5 82316.727443: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
87969          <idle>-0     (-----) [003] d..1 82316.727445: cpu_idle: state=0 cpu_id=3
87970          <idle>-0     (-----) [002] .n.1 82316.727451: cpu_idle: state=4294967295 cpu_id=2
87971          <idle>-0     (-----) [002] d..2 82316.727460: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
87972<...>-86 ( 86) [002] d..2 82316.727492: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
87973          <idle>-0     (-----) [002] d..1 82316.727500: cpu_idle: state=0 cpu_id=2
87974          <idle>-0     (-----) [002] d.h3 82316.728467: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
87975          <idle>-0     (-----) [000] d.s2 82316.728470: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
87976          <idle>-0     (-----) [000] dns3 82316.728489: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
87977          <idle>-0     (-----) [002] dnh4 82316.728502: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
87978          <idle>-0     (-----) [000] .n.1 82316.728511: cpu_idle: state=4294967295 cpu_id=0
87979          <idle>-0     (-----) [002] dns2 82316.728515: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
87980          <idle>-0     (-----) [000] d..2 82316.728521: 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
87981<...>-8 ( 8) [000] d..2 82316.728533: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
87982          <idle>-0     (-----) [002] dns3 82316.728549: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
87983<...>-8 ( 8) [000] d..3 82316.728573: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
87984          <idle>-0     (-----) [002] .n.1 82316.728575: cpu_idle: state=4294967295 cpu_id=2
87985          <idle>-0     (-----) [002] d..2 82316.728585: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
87986<...>-8 ( 8) [000] d..2 82316.728586: 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
87987  kworker/u16:15-1311  ( 1311) [002] d..2 82316.728589: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
87988     rcu_preempt-7     (    7) [000] d..2 82316.728593: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
87989  kworker/u16:15-1311  ( 1311) [002] d..3 82316.728631: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
87990     rcu_preempt-7     (    7) [000] d..3 82316.728639: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
87991  kworker/u16:15-1311  ( 1311) [002] d..3 82316.728651: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
87992     rcu_preempt-7     (    7) [000] d..2 82316.728655: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
87993  kworker/u16:15-1311  ( 1311) [002] d..4 82316.728665: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
87994<...>-46 ( 46) [000] d..2 82316.728687: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
87995<...>-46 ( 46) [000] d..3 82316.728721: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
87996<...>-46 ( 46) [000] d..2 82316.728742: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
87997  kworker/u16:13-1147  ( 1147) [000] d..2 82316.728760: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
87998         rcuop/0-10    (   10) [000] d..2 82316.728770: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
87999          <idle>-0     (-----) [003] ...1 82316.728798: cpu_idle: state=4294967295 cpu_id=3
88000          <idle>-0     (-----) [003] d..1 82316.728803: cpu_idle: state=0 cpu_id=3
88001         rcuop/0-10    (   10) [000] d..3 82316.728805: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
88002         rcuop/0-10    (   10) [000] d..2 82316.728816: 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
88003         rcuop/1-21    (   21) [000] d..2 82316.728851: 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
88004          <idle>-0     (-----) [000] d..1 82316.728870: cpu_idle: state=0 cpu_id=0
88005          <idle>-0     (-----) [001] ...1 82316.728941: cpu_idle: state=4294967295 cpu_id=1
88006          <idle>-0     (-----) [001] d..1 82316.728947: cpu_idle: state=0 cpu_id=1
88007  kworker/u16:15-1311  ( 1311) [002] d..2 82316.728949: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
88008     kworker/2:1-25259 (25259) [002] d..3 82316.728958: sched_waking: comm=msm_irqbalance pid=817 prio=120 target_cpu=003
88009          <idle>-0     (-----) [001] d.s3 82316.728994: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
88010     kworker/2:1-25259 (25259) [002] d..4 82316.728999: sched_wakeup: comm=msm_irqbalance pid=817 prio=120 target_cpu=000
88011          <idle>-0     (-----) [000] .n.1 82316.729005: cpu_idle: state=4294967295 cpu_id=0
88012          <idle>-0     (-----) [000] d..2 82316.729019: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=msm_irqbalance next_pid=817 next_prio=120
88013          <idle>-0     (-----) [001] d.s4 82316.729019: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
88014     kworker/2:1-25259 (25259) [002] d..2 82316.729025: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
88015          <idle>-0     (-----) [001] dns4 82316.729026: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
88016          <idle>-0     (-----) [001] .n.1 82316.729034: cpu_idle: state=4294967295 cpu_id=1
88017          <idle>-0     (-----) [001] d..2 82316.729047: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
88018<...>-8 ( 8) [002] d..2 82316.729050: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88019          <idle>-0     (-----) [002] d..1 82316.729066: cpu_idle: state=0 cpu_id=2
88020          <idle>-0     (-----) [002] d.h4 82316.729097: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88021          <idle>-0     (-----) [005] dnh2 82316.729119: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88022          <idle>-0     (-----) [005] .n.1 82316.729123: cpu_idle: state=4294967295 cpu_id=5
88023          <idle>-0     (-----) [005] d..2 82316.729131: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88024          <idle>-0     (-----) [002] ...1 82316.729136: cpu_idle: state=4294967295 cpu_id=2
88025  kworker/u16:15-1311  ( 1311) [001] .... 82316.729141: clk_set_rate: l3_cluster0_vote_clk 403200000
88026          <idle>-0     (-----) [002] d..1 82316.729142: cpu_idle: state=0 cpu_id=2
88027  kworker/u16:15-1311  ( 1311) [001] d..2 82316.729174: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88028<...>-5340 ( 788) [005] d..1 82316.729183: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
88029          <idle>-0     (-----) [001] d..1 82316.729188: cpu_idle: state=0 cpu_id=1
88030          <idle>-0     (-----) [001] dnh2 82316.729218: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
88031          <idle>-0     (-----) [001] .n.1 82316.729224: cpu_idle: state=4294967295 cpu_id=1
88032          <idle>-0     (-----) [001] d..2 82316.729235: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
88033<...>-5340 ( 788) [005] ...1 82316.729284: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
88034<...>-5340 ( 788) [005] ...1 82316.729288: tracing_mark_write: E|788
88035<...>-5340 ( 788) [005] .... 82316.729304: binder_transaction: transaction=1571159 dest_node=1571156 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
88036<...>-5340 ( 788) [005] .... 82316.729307: binder_transaction_alloc_buf: transaction=1571159 data_size=60 offsets_size=0
88037<...>-5340 ( 788) [005] d..4 82316.729311: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
88038 neuralnetworks@-13088 (  788) [001] d..2 82316.729315: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88039<...>-5340 ( 788) [005] d..5 82316.729323: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
88040          <idle>-0     (-----) [001] d..1 82316.729328: cpu_idle: state=0 cpu_id=1
88041          <idle>-0     (-----) [004] .n.1 82316.729330: cpu_idle: state=4294967295 cpu_id=4
88042          <idle>-0     (-----) [004] d..2 82316.729339: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
88043           <...>-27571 (-----) [004] .... 82316.729345: binder_transaction_received: transaction=1571159
88044<...>-5340 ( 788) [005] ...1 82316.729346: tracing_mark_write: E|788
88045<...>-5340 ( 788) [005] .... 82316.729353: binder_transaction: transaction=1571160 dest_node=0 dest_proc=27550 dest_thread=27748 reply=1 flags=0x0 code=0x0
88046<...>-5340 ( 788) [005] .... 82316.729355: binder_transaction_alloc_buf: transaction=1571160 data_size=8 offsets_size=0
88047<...>-5340 ( 788) [005] d..2 82316.729357: sched_waking: comm=id.nn.benchmark pid=27748 prio=110 target_cpu=005
88048<...>-5340 ( 788) [005] d..3 82316.729363: sched_wakeup: comm=id.nn.benchmark pid=27748 prio=110 target_cpu=005
88049           <...>-27571 (-----) [004] ...1 82316.729365: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
88050<...>-5340 ( 788) [005] .... 82316.729365: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
88051           <...>-27571 (-----) [004] ...1 82316.729371: tracing_mark_write: E|27550
88052           <...>-27571 (-----) [004] d..2 82316.729400: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88053          <idle>-0     (-----) [004] d..1 82316.729407: cpu_idle: state=0 cpu_id=4
88054<...>-5340 ( 788) [005] d..2 82316.729408: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27748 next_prio=110
88055           <...>-27748 (-----) [005] .... 82316.729418: binder_transaction_received: transaction=1571160
88056           <...>-27748 (-----) [005] ...1 82316.729458: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
88057           <...>-27748 (-----) [005] ...1 82316.729464: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
88058           <...>-27748 (-----) [005] ...1 82316.729491: tracing_mark_write: E|27550
88059           <...>-27748 (-----) [005] ...1 82316.729494: tracing_mark_write: E|27550
88060           <...>-27748 (-----) [005] ...1 82316.729498: tracing_mark_write: E|27550
88061           <...>-27748 (-----) [005] ...1 82316.729692: tracing_mark_write: E|27550
88062           <...>-27748 (-----) [005] d..1 82316.729706: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88063           <...>-27748 (-----) [005] d..2 82316.729722: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88064          <idle>-0     (-----) [004] .n.1 82316.729727: cpu_idle: state=4294967295 cpu_id=4
88065          <idle>-0     (-----) [004] d..2 82316.729734: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
88066           <...>-27550 (-----) [004] d..2 82316.729753: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88067          <idle>-0     (-----) [004] d..1 82316.729762: cpu_idle: state=0 cpu_id=4
88068           <...>-27748 (-----) [005] d..1 82316.729818: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88069           <...>-27748 (-----) [005] d..2 82316.729827: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88070          <idle>-0     (-----) [004] .n.1 82316.729832: cpu_idle: state=4294967295 cpu_id=4
88071          <idle>-0     (-----) [004] d..2 82316.729840: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
88072           <...>-27748 (-----) [005] d..2 82316.729866: sched_switch: prev_comm=id.nn.benchmark prev_pid=27748 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
88073           <...>-27550 (-----) [004] ...1 82316.729873: tracing_mark_write: E|27550
88074           <...>-27550 (-----) [004] ...1 82316.729877: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
88075           <...>-27550 (-----) [004] ...1 82316.729883: tracing_mark_write: E|27550
88076           <...>-27550 (-----) [004] ...1 82316.729887: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
88077          <idle>-0     (-----) [005] d..1 82316.729887: cpu_idle: state=0 cpu_id=5
88078           <...>-27550 (-----) [004] ...1 82316.729891: tracing_mark_write: E|27550
88079           <...>-27550 (-----) [004] ...1 82316.729895: tracing_mark_write: E|27550
88080           <...>-27550 (-----) [004] ...1 82316.730008: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
88081           <...>-27550 (-----) [004] ...1 82316.730066: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
88082           <...>-27550 (-----) [004] ...1 82316.730071: tracing_mark_write: E|27550
88083           <...>-27550 (-----) [004] ...1 82316.730075: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
88084           <...>-27550 (-----) [004] ...1 82316.730081: tracing_mark_write: E|27550
88085           <...>-27550 (-----) [004] ...1 82316.730085: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
88086           <...>-27550 (-----) [004] ...1 82316.730088: tracing_mark_write: E|27550
88087           <...>-27550 (-----) [004] ...1 82316.730092: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
88088          <idle>-0     (-----) [005] .n.1 82316.730188: cpu_idle: state=4294967295 cpu_id=5
88089           <...>-27550 (-----) [004] ...1 82316.730189: tracing_mark_write: E|27550
88090           <...>-27550 (-----) [004] ...1 82316.730193: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
88091          <idle>-0     (-----) [005] d..2 82316.730197: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27749 next_prio=110
88092           <...>-27550 (-----) [004] d..2 82316.730209: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88093          <idle>-0     (-----) [004] d..1 82316.730223: cpu_idle: state=0 cpu_id=4
88094           <...>-27749 (-----) [005] ...1 82316.730258: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
88095           <...>-27749 (-----) [005] ...1 82316.730273: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
88096           <...>-27749 (-----) [005] ...1 82316.730277: tracing_mark_write: E|27550
88097           <...>-27749 (-----) [005] .... 82316.730298: binder_transaction: transaction=1571161 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
88098           <...>-27749 (-----) [005] .... 82316.730302: binder_transaction_alloc_buf: transaction=1571161 data_size=48 offsets_size=0
88099           <...>-27749 (-----) [005] ...2 82316.730305: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
88100           <...>-27749 (-----) [005] d..4 82316.730307: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
88101           <...>-27749 (-----) [005] dn.5 82316.730318: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
88102           <...>-27749 (-----) [005] d..2 82316.730325: sched_switch: prev_comm=id.nn.benchmark prev_pid=27749 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
88103<...>-770 ( 770) [005] .... 82316.730335: binder_transaction_received: transaction=1571161
88104<...>-770 ( 770) [005] ...1 82316.730359: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
88105<...>-770 ( 770) [005] d..2 82316.730442: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
88106          <idle>-0     (-----) [001] dnh2 82316.730471: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
88107          <idle>-0     (-----) [001] .n.1 82316.730477: cpu_idle: state=4294967295 cpu_id=1
88108<...>-770 ( 770) [005] ...1 82316.730484: tracing_mark_write: E|770
88109          <idle>-0     (-----) [001] d..2 82316.730488: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
88110<...>-770 ( 770) [005] .... 82316.730492: binder_transaction: transaction=1571162 dest_node=0 dest_proc=27550 dest_thread=27749 reply=1 flags=0x0 code=0x0
88111<...>-770 ( 770) [005] .... 82316.730495: binder_transaction_alloc_buf: transaction=1571162 data_size=168 offsets_size=32
88112<...>-770 ( 770) [005] .... 82316.730502: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
88113<...>-770 ( 770) [005] d..2 82316.730538: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27749 next_prio=110
88114           <...>-27749 (-----) [005] .... 82316.730548: binder_transaction_received: transaction=1571162
88115<...>-581 ( 571) [001] d..2 82316.730589: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88116          <idle>-0     (-----) [001] d..1 82316.730603: cpu_idle: state=0 cpu_id=1
88117           <...>-27749 (-----) [005] ...1 82316.730620: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
88118           <...>-27749 (-----) [005] ...1 82316.730625: tracing_mark_write: E|27550
88119           <...>-27749 (-----) [005] .... 82316.730640: binder_transaction: transaction=1571163 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
88120           <...>-27749 (-----) [005] .... 82316.730642: binder_transaction_alloc_buf: transaction=1571163 data_size=48 offsets_size=0
88121           <...>-27749 (-----) [005] ...2 82316.730644: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
88122           <...>-27749 (-----) [005] d..4 82316.730647: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
88123           <...>-27749 (-----) [005] dn.5 82316.730658: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
88124           <...>-27749 (-----) [005] d..2 82316.730664: sched_switch: prev_comm=id.nn.benchmark prev_pid=27749 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
88125<...>-770 ( 770) [005] .... 82316.730672: binder_transaction_received: transaction=1571163
88126<...>-770 ( 770) [005] ...1 82316.730688: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
88127<...>-770 ( 770) [005] d..2 82316.730748: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
88128          <idle>-0     (-----) [001] dnh2 82316.730772: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
88129          <idle>-0     (-----) [001] .n.1 82316.730778: cpu_idle: state=4294967295 cpu_id=1
88130<...>-770 ( 770) [005] ...1 82316.730781: tracing_mark_write: E|770
88131<...>-770 ( 770) [005] .... 82316.730789: binder_transaction: transaction=1571164 dest_node=0 dest_proc=27550 dest_thread=27749 reply=1 flags=0x0 code=0x0
88132          <idle>-0     (-----) [001] d..2 82316.730789: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
88133<...>-770 ( 770) [005] .... 82316.730791: binder_transaction_alloc_buf: transaction=1571164 data_size=168 offsets_size=32
88134<...>-770 ( 770) [005] .... 82316.730797: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
88135<...>-770 ( 770) [005] d..2 82316.730831: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27749 next_prio=110
88136           <...>-27749 (-----) [005] .... 82316.730842: binder_transaction_received: transaction=1571164
88137<...>-581 ( 571) [001] d..2 82316.730847: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88138          <idle>-0     (-----) [001] d..1 82316.730860: cpu_idle: state=0 cpu_id=1
88139           <...>-27749 (-----) [005] ...1 82316.731117: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
88140           <...>-27749 (-----) [005] ...1 82316.731127: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
88141           <...>-27749 (-----) [005] ...1 82316.731131: tracing_mark_write: E|27550
88142           <...>-27749 (-----) [005] .... 82316.731192: binder_transaction: transaction=1571165 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
88143           <...>-27749 (-----) [005] .... 82316.731195: binder_transaction_alloc_buf: transaction=1571165 data_size=556 offsets_size=104
88144           <...>-27749 (-----) [005] ...2 82316.731209: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
88145           <...>-27749 (-----) [005] d..4 82316.731212: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88146           <...>-27749 (-----) [005] dn.5 82316.731223: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88147           <...>-27749 (-----) [005] d..2 82316.731229: sched_switch: prev_comm=id.nn.benchmark prev_pid=27749 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88148<...>-5340 ( 788) [005] .... 82316.731239: binder_transaction_received: transaction=1571165
88149<...>-5340 ( 788) [005] ...1 82316.731283: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
88150<...>-5340 ( 788) [005] d..2 82316.731326: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
88151<...>-5340 ( 788) [005] d..2 82316.731363: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27749 next_prio=110
88152          <idle>-0     (-----) [001] dnh2 82316.731366: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
88153          <idle>-0     (-----) [001] .n.1 82316.731373: cpu_idle: state=4294967295 cpu_id=1
88154          <idle>-0     (-----) [001] d..2 82316.731383: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
88155           <...>-27749 (-----) [005] d..2 82316.731385: sched_switch: prev_comm=id.nn.benchmark prev_pid=27749 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88156          <idle>-0     (-----) [005] d..1 82316.731403: cpu_idle: state=0 cpu_id=5
88157<...>-87 ( 87) [001] d..2 82316.731428: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88158          <idle>-0     (-----) [002] d.h4 82316.731433: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88159          <idle>-0     (-----) [001] d..1 82316.731437: cpu_idle: state=0 cpu_id=1
88160          <idle>-0     (-----) [002] dnh5 82316.731450: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88161          <idle>-0     (-----) [002] .n.1 82316.731458: cpu_idle: state=4294967295 cpu_id=2
88162          <idle>-0     (-----) [002] d..2 82316.731472: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
88163<...>-86 ( 86) [002] d..2 82316.731508: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88164          <idle>-0     (-----) [002] d.h5 82316.731529: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88165          <idle>-0     (-----) [005] dnh2 82316.731550: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88166          <idle>-0     (-----) [005] .n.1 82316.731554: cpu_idle: state=4294967295 cpu_id=5
88167          <idle>-0     (-----) [005] d..2 82316.731563: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88168          <idle>-0     (-----) [002] d..1 82316.731572: cpu_idle: state=0 cpu_id=2
88169<...>-5340 ( 788) [005] d..1 82316.731614: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
88170          <idle>-0     (-----) [001] dnh2 82316.731639: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
88171          <idle>-0     (-----) [001] .n.1 82316.731645: cpu_idle: state=4294967295 cpu_id=1
88172          <idle>-0     (-----) [001] d..2 82316.731655: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
88173 neuralnetworks@-13088 (  788) [001] d..2 82316.731704: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88174          <idle>-0     (-----) [001] d..1 82316.731715: cpu_idle: state=0 cpu_id=1
88175<...>-5340 ( 788) [005] d..2 82316.731761: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
88176          <idle>-0     (-----) [001] dnh2 82316.731787: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
88177          <idle>-0     (-----) [001] .n.1 82316.731795: cpu_idle: state=4294967295 cpu_id=1
88178          <idle>-0     (-----) [001] d..2 82316.731810: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
88179          <idle>-0     (-----) [002] d.h4 82316.731861: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88180<...>-5340 ( 788) [005] d.H2 82316.731865: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
88181          <idle>-0     (-----) [002] dnh5 82316.731873: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88182<...>-87 ( 87) [001] d..2 82316.731876: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88183          <idle>-0     (-----) [002] .n.1 82316.731881: cpu_idle: state=4294967295 cpu_id=2
88184          <idle>-0     (-----) [001] dnh3 82316.731890: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
88185          <idle>-0     (-----) [002] d..2 82316.731894: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
88186          <idle>-0     (-----) [001] d..2 82316.731899: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
88187<...>-5340 ( 788) [005] d..2 82316.731900: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88188          <idle>-0     (-----) [005] d..1 82316.731913: cpu_idle: state=0 cpu_id=5
88189<...>-86 ( 86) [002] d..2 82316.731929: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88190         sugov:0-576   (  576) [001] .... 82316.731936: clk_set_rate: pwrcl_clk 902400000
88191          <idle>-0     (-----) [002] d..1 82316.731937: cpu_idle: state=0 cpu_id=2
88192         sugov:0-576   (  576) [001] .... 82316.731959: clk_set_rate: cpu3_pwrcl_clk 825600000
88193         sugov:0-576   (  576) [001] .... 82316.731970: clk_set_rate: cpu2_pwrcl_clk 825600000
88194         sugov:0-576   (  576) [001] .... 82316.731977: clk_set_rate: cpu1_pwrcl_clk 825600000
88195         sugov:0-576   (  576) [001] .... 82316.731985: clk_set_rate: cpu0_pwrcl_clk 902400000
88196         sugov:0-576   (  576) [001] .... 82316.731994: cpu_frequency: state=902400 cpu_id=0
88197         sugov:0-576   (  576) [001] .... 82316.732019: cpu_frequency: state=902400 cpu_id=1
88198         sugov:0-576   (  576) [001] .... 82316.732023: cpu_frequency: state=902400 cpu_id=2
88199         sugov:0-576   (  576) [001] .... 82316.732027: cpu_frequency: state=902400 cpu_id=3
88200         sugov:0-576   (  576) [001] d..2 82316.732053: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88201          <idle>-0     (-----) [001] d..1 82316.732064: cpu_idle: state=0 cpu_id=1
88202<...>-817 ( 817) [000] d.h4 82316.732680: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
88203<...>-817 ( 817) [000] d.h5 82316.732706: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
88204          <idle>-0     (-----) [003] .n.1 82316.732710: cpu_idle: state=4294967295 cpu_id=3
88205<...>-817 ( 817) [000] d.h4 82316.732711: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
88206          <idle>-0     (-----) [003] d..2 82316.732721: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
88207<...>-817 ( 817) [000] d.h5 82316.732733: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
88208          <idle>-0     (-----) [002] .n.1 82316.732738: cpu_idle: state=4294967295 cpu_id=2
88209          <idle>-0     (-----) [002] d..2 82316.732746: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
88210  crtc_event:111-322   (  322) [003] d..2 82316.732755: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88211          <idle>-0     (-----) [003] d..1 82316.732765: cpu_idle: state=0 cpu_id=3
88212 crtc_commit:111-321   (  321) [002] d..2 82316.732888: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
88213          <idle>-0     (-----) [002] d..1 82316.732897: cpu_idle: state=0 cpu_id=2
88214          <idle>-0     (-----) [002] d.h4 82316.733543: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88215          <idle>-0     (-----) [005] dnh2 82316.733564: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88216          <idle>-0     (-----) [005] .n.1 82316.733568: cpu_idle: state=4294967295 cpu_id=5
88217          <idle>-0     (-----) [005] d..2 82316.733576: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88218          <idle>-0     (-----) [002] ...1 82316.733581: cpu_idle: state=4294967295 cpu_id=2
88219          <idle>-0     (-----) [002] d..1 82316.733586: cpu_idle: state=0 cpu_id=2
88220<...>-5340 ( 788) [005] d..1 82316.733628: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
88221          <idle>-0     (-----) [001] dnh2 82316.733653: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
88222          <idle>-0     (-----) [001] .n.1 82316.733660: cpu_idle: state=4294967295 cpu_id=1
88223          <idle>-0     (-----) [001] d..2 82316.733670: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
88224<...>-5340 ( 788) [005] ...1 82316.733718: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
88225<...>-5340 ( 788) [005] ...1 82316.733722: tracing_mark_write: E|788
88226 neuralnetworks@-13088 (  788) [001] d..2 82316.733730: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88227<...>-5340 ( 788) [005] .... 82316.733738: binder_transaction: transaction=1571168 dest_node=1571166 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
88228          <idle>-0     (-----) [001] d..1 82316.733740: cpu_idle: state=0 cpu_id=1
88229<...>-5340 ( 788) [005] .... 82316.733741: binder_transaction_alloc_buf: transaction=1571168 data_size=60 offsets_size=0
88230<...>-5340 ( 788) [005] d..4 82316.733744: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
88231<...>-5340 ( 788) [005] d..5 82316.733757: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
88232          <idle>-0     (-----) [004] .n.1 82316.733763: cpu_idle: state=4294967295 cpu_id=4
88233          <idle>-0     (-----) [004] d..2 82316.733772: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
88234           <...>-27571 (-----) [004] .... 82316.733777: binder_transaction_received: transaction=1571168
88235<...>-5340 ( 788) [005] ...1 82316.733780: tracing_mark_write: E|788
88236<...>-5340 ( 788) [005] .... 82316.733786: binder_transaction: transaction=1571169 dest_node=0 dest_proc=27550 dest_thread=27749 reply=1 flags=0x0 code=0x0
88237<...>-5340 ( 788) [005] .... 82316.733788: binder_transaction_alloc_buf: transaction=1571169 data_size=8 offsets_size=0
88238<...>-5340 ( 788) [005] d..2 82316.733790: sched_waking: comm=id.nn.benchmark pid=27749 prio=110 target_cpu=005
88239           <...>-27571 (-----) [004] ...1 82316.733797: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
88240<...>-5340 ( 788) [005] d..3 82316.733798: sched_wakeup: comm=id.nn.benchmark pid=27749 prio=110 target_cpu=005
88241<...>-5340 ( 788) [005] .... 82316.733800: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
88242           <...>-27571 (-----) [004] ...1 82316.733802: tracing_mark_write: E|27550
88243           <...>-27571 (-----) [004] d..2 82316.733831: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88244          <idle>-0     (-----) [004] d..1 82316.733838: cpu_idle: state=0 cpu_id=4
88245<...>-5340 ( 788) [005] d..2 82316.733841: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27749 next_prio=110
88246           <...>-27749 (-----) [005] .... 82316.733851: binder_transaction_received: transaction=1571169
88247           <...>-27749 (-----) [005] ...1 82316.733886: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
88248           <...>-27749 (-----) [005] ...1 82316.733894: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
88249           <...>-27749 (-----) [005] ...1 82316.733919: tracing_mark_write: E|27550
88250           <...>-27749 (-----) [005] ...1 82316.733923: tracing_mark_write: E|27550
88251           <...>-27749 (-----) [005] ...1 82316.733928: tracing_mark_write: E|27550
88252           <...>-27749 (-----) [005] ...1 82316.734116: tracing_mark_write: E|27550
88253           <...>-27749 (-----) [005] d..1 82316.734128: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88254           <...>-27749 (-----) [005] d..2 82316.734145: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88255          <idle>-0     (-----) [004] .n.1 82316.734150: cpu_idle: state=4294967295 cpu_id=4
88256          <idle>-0     (-----) [004] d..2 82316.734157: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
88257           <...>-27550 (-----) [004] d..2 82316.734176: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88258          <idle>-0     (-----) [004] d..1 82316.734185: cpu_idle: state=0 cpu_id=4
88259           <...>-27749 (-----) [005] d..1 82316.734231: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88260           <...>-27749 (-----) [005] d..2 82316.734241: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88261          <idle>-0     (-----) [004] .n.1 82316.734246: cpu_idle: state=4294967295 cpu_id=4
88262          <idle>-0     (-----) [004] d..2 82316.734253: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
88263           <...>-27749 (-----) [005] d..2 82316.734278: sched_switch: prev_comm=id.nn.benchmark prev_pid=27749 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
88264           <...>-27550 (-----) [004] ...1 82316.734298: tracing_mark_write: E|27550
88265           <...>-27550 (-----) [004] ...1 82316.734303: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
88266          <idle>-0     (-----) [005] d..1 82316.734306: cpu_idle: state=0 cpu_id=5
88267           <...>-27550 (-----) [004] ...1 82316.734309: tracing_mark_write: E|27550
88268           <...>-27550 (-----) [004] ...1 82316.734312: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
88269           <...>-27550 (-----) [004] ...1 82316.734317: tracing_mark_write: E|27550
88270           <...>-27550 (-----) [004] ...1 82316.734321: tracing_mark_write: E|27550
88271           <...>-27550 (-----) [004] ...1 82316.734433: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
88272           <...>-27550 (-----) [004] ...1 82316.734490: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
88273           <...>-27550 (-----) [004] ...1 82316.734495: tracing_mark_write: E|27550
88274           <...>-27550 (-----) [004] ...1 82316.734498: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
88275           <...>-27550 (-----) [004] ...1 82316.734504: tracing_mark_write: E|27550
88276           <...>-27550 (-----) [004] ...1 82316.734508: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
88277           <...>-27550 (-----) [004] ...1 82316.734512: tracing_mark_write: E|27550
88278           <...>-27550 (-----) [004] ...1 82316.734515: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
88279          <idle>-0     (-----) [005] .n.1 82316.734603: cpu_idle: state=4294967295 cpu_id=5
88280           <...>-27550 (-----) [004] ...1 82316.734604: tracing_mark_write: E|27550
88281           <...>-27550 (-----) [004] ...1 82316.734608: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
88282          <idle>-0     (-----) [005] d..2 82316.734612: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27750 next_prio=110
88283           <...>-27550 (-----) [004] d..2 82316.734625: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88284          <idle>-0     (-----) [004] d..1 82316.734640: cpu_idle: state=0 cpu_id=4
88285           <...>-27750 (-----) [005] ...1 82316.734671: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
88286           <...>-27750 (-----) [005] ...1 82316.734685: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
88287           <...>-27750 (-----) [005] ...1 82316.734689: tracing_mark_write: E|27550
88288           <...>-27750 (-----) [005] .... 82316.734710: binder_transaction: transaction=1571170 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
88289           <...>-27750 (-----) [005] .... 82316.734713: binder_transaction_alloc_buf: transaction=1571170 data_size=48 offsets_size=0
88290           <...>-27750 (-----) [005] ...2 82316.734716: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
88291           <...>-27750 (-----) [005] d..4 82316.734719: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
88292           <...>-27750 (-----) [005] dn.5 82316.734731: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
88293           <...>-27750 (-----) [005] d..2 82316.734738: sched_switch: prev_comm=id.nn.benchmark prev_pid=27750 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
88294<...>-770 ( 770) [005] .... 82316.734748: binder_transaction_received: transaction=1571170
88295<...>-770 ( 770) [005] ...1 82316.734770: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
88296<...>-770 ( 770) [005] d..2 82316.734840: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
88297<...>-817 ( 817) [000] d.h2 82316.734884: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
88298<...>-770 ( 770) [005] ...1 82316.734894: tracing_mark_write: E|770
88299<...>-770 ( 770) [005] .... 82316.734903: binder_transaction: transaction=1571171 dest_node=0 dest_proc=27550 dest_thread=27750 reply=1 flags=0x0 code=0x0
88300<...>-770 ( 770) [005] .... 82316.734906: binder_transaction_alloc_buf: transaction=1571171 data_size=168 offsets_size=32
88301<...>-770 ( 770) [005] .... 82316.734913: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
88302<...>-770 ( 770) [005] d..2 82316.734948: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27750 next_prio=110
88303           <...>-27750 (-----) [005] .... 82316.734970: binder_transaction_received: transaction=1571171
88304<...>-817 ( 817) [000] d.h5 82316.735025: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
88305           <...>-27750 (-----) [005] ...1 82316.735039: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
88306<...>-817 ( 817) [000] d.h6 82316.735044: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
88307           <...>-27750 (-----) [005] ...1 82316.735044: tracing_mark_write: E|27550
88308          <idle>-0     (-----) [002] .n.1 82316.735049: cpu_idle: state=4294967295 cpu_id=2
88309          <idle>-0     (-----) [002] d..2 82316.735057: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
88310           <...>-27750 (-----) [005] .... 82316.735058: binder_transaction: transaction=1571172 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
88311           <...>-27750 (-----) [005] .... 82316.735061: binder_transaction_alloc_buf: transaction=1571172 data_size=48 offsets_size=0
88312           <...>-27750 (-----) [005] ...2 82316.735063: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
88313           <...>-27750 (-----) [005] d..4 82316.735065: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
88314           <...>-27750 (-----) [005] dn.5 82316.735075: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
88315           <...>-27750 (-----) [005] d..2 82316.735081: sched_switch: prev_comm=id.nn.benchmark prev_pid=27750 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
88316<...>-770 ( 770) [005] .... 82316.735089: binder_transaction_received: transaction=1571172
88317<...>-770 ( 770) [005] ...1 82316.735135: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
88318 crtc_commit:111-321   (  321) [002] d.s2 82316.735137: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
88319<...>-817 ( 817) [000] d.s2 82316.735142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
88320 crtc_commit:111-321   (  321) [002] d.s3 82316.735155: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
88321 crtc_commit:111-321   (  321) [002] d.s1 82316.735158: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
88322          <idle>-0     (-----) [003] .n.1 82316.735160: cpu_idle: state=4294967295 cpu_id=3
88323          <idle>-0     (-----) [003] d..2 82316.735170: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
88324<...>-817 ( 817) [000] d.s3 82316.735185: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
88325  crtc_event:111-322   (  322) [003] d..2 82316.735197: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
88326<...>-817 ( 817) [000] d.s3 82316.735210: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
88327 crtc_commit:111-321   (  321) [002] d.s2 82316.735212: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
88328<...>-770 ( 770) [005] ...1 82316.735217: tracing_mark_write: E|770
88329<...>-770 ( 770) [005] .... 82316.735224: binder_transaction: transaction=1571173 dest_node=0 dest_proc=27550 dest_thread=27750 reply=1 flags=0x0 code=0x0
88330     rcu_preempt-7     (    7) [003] d..2 82316.735225: 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
88331<...>-770 ( 770) [005] .... 82316.735227: binder_transaction_alloc_buf: transaction=1571173 data_size=168 offsets_size=32
88332<...>-770 ( 770) [005] .... 82316.735233: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
88333<...>-817 ( 817) [000] d.s4 82316.735246: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
88334<...>-8 ( 8) [003] d..2 82316.735260: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
88335 crtc_commit:111-321   (  321) [002] d..2 82316.735268: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
88336<...>-770 ( 770) [005] d..2 82316.735268: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27750 next_prio=110
88337           <...>-27750 (-----) [005] .... 82316.735278: binder_transaction_received: transaction=1571173
88338<...>-817 ( 817) [000] d.H6 82316.735321: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
88339  kworker/u16:15-1311  ( 1311) [003] d..2 82316.735331: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88340<...>-817 ( 817) [000] d.H7 82316.735340: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
88341          <idle>-0     (-----) [003] d..2 82316.735348: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
88342  crtc_event:111-322   (  322) [003] d..2 82316.735372: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88343          <idle>-0     (-----) [003] d..1 82316.735383: cpu_idle: state=0 cpu_id=3
88344<...>-581 ( 571) [002] d..2 82316.735390: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88345          <idle>-0     (-----) [002] d..1 82316.735409: cpu_idle: state=0 cpu_id=2
88346           <...>-27750 (-----) [005] ...1 82316.735552: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
88347           <...>-27750 (-----) [005] ...1 82316.735561: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
88348           <...>-27750 (-----) [005] ...1 82316.735565: tracing_mark_write: E|27550
88349           <...>-27750 (-----) [005] .... 82316.735627: binder_transaction: transaction=1571174 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
88350           <...>-27750 (-----) [005] .... 82316.735630: binder_transaction_alloc_buf: transaction=1571174 data_size=556 offsets_size=104
88351           <...>-27750 (-----) [005] ...2 82316.735644: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
88352           <...>-27750 (-----) [005] d..4 82316.735647: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88353           <...>-27750 (-----) [005] dn.5 82316.735658: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88354           <...>-27750 (-----) [005] d..2 82316.735665: sched_switch: prev_comm=id.nn.benchmark prev_pid=27750 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88355<...>-5340 ( 788) [005] .... 82316.735675: binder_transaction_received: transaction=1571174
88356<...>-5340 ( 788) [005] ...1 82316.735719: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
88357<...>-5340 ( 788) [005] d..2 82316.735763: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
88358<...>-5340 ( 788) [005] d..2 82316.735802: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27750 next_prio=110
88359<...>-817 ( 817) [000] dnh2 82316.735814: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88360           <...>-27750 (-----) [005] d..2 82316.735826: sched_switch: prev_comm=id.nn.benchmark prev_pid=27750 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88361<...>-817 ( 817) [000] d..2 82316.735828: sched_switch: prev_comm=msm_irqbalance prev_pid=817 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
88362          <idle>-0     (-----) [005] d..1 82316.735843: cpu_idle: state=0 cpu_id=5
88363<...>-87 ( 87) [000] d..2 82316.735859: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=817 next_prio=120
88364          <idle>-0     (-----) [002] d.h4 82316.735882: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88365          <idle>-0     (-----) [002] dnh5 82316.735900: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88366          <idle>-0     (-----) [002] .n.1 82316.735911: cpu_idle: state=4294967295 cpu_id=2
88367          <idle>-0     (-----) [002] d..2 82316.735923: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
88368<...>-86 ( 86) [002] d..2 82316.735959: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88369          <idle>-0     (-----) [002] d.h5 82316.735981: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88370          <idle>-0     (-----) [005] dnh2 82316.736003: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88371          <idle>-0     (-----) [005] .n.1 82316.736008: cpu_idle: state=4294967295 cpu_id=5
88372          <idle>-0     (-----) [005] d..2 82316.736016: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88373          <idle>-0     (-----) [002] d..1 82316.736028: cpu_idle: state=0 cpu_id=2
88374<...>-5340 ( 788) [005] d..1 82316.736070: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
88375<...>-817 ( 817) [000] dnh2 82316.736112: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
88376<...>-817 ( 817) [000] d..2 82316.736122: sched_switch: prev_comm=msm_irqbalance prev_pid=817 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
88377 neuralnetworks@-13088 (  788) [000] d..2 82316.736167: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=msm_irqbalance next_pid=817 next_prio=120
88378<...>-5340 ( 788) [005] d..2 82316.736230: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88379<...>-817 ( 817) [000] dnh1 82316.736252: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88380<...>-5340 ( 788) [005] d..2 82316.736260: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88381<...>-817 ( 817) [000] d..2 82316.736263: sched_switch: prev_comm=msm_irqbalance prev_pid=817 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
88382          <idle>-0     (-----) [005] d..1 82316.736275: cpu_idle: state=0 cpu_id=5
88383<...>-87 ( 87) [000] d..2 82316.736290: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=msm_irqbalance next_pid=817 next_prio=120
88384          <idle>-0     (-----) [002] d.h4 82316.736300: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88385          <idle>-0     (-----) [002] dnh5 82316.736310: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88386          <idle>-0     (-----) [002] .n.1 82316.736319: cpu_idle: state=4294967295 cpu_id=2
88387          <idle>-0     (-----) [002] d..2 82316.736329: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
88388<...>-86 ( 86) [002] d..2 82316.736363: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88389          <idle>-0     (-----) [002] d..1 82316.736375: cpu_idle: state=0 cpu_id=2
88390          <idle>-0     (-----) [005] ...1 82316.736607: cpu_idle: state=4294967295 cpu_id=5
88391          <idle>-0     (-----) [005] d..1 82316.736610: cpu_idle: state=0 cpu_id=5
88392          <idle>-0     (-----) [001] d.h2 82316.737114: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
88393          <idle>-0     (-----) [001] dnh3 82316.737128: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
88394          <idle>-0     (-----) [001] .n.1 82316.737137: cpu_idle: state=4294967295 cpu_id=1
88395          <idle>-0     (-----) [001] d..2 82316.737147: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
88396        DispSync-8879  ( 8858) [001] d..1 82316.737172: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
88397        DispSync-8879  ( 8858) [001] d..2 82316.737189: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
88398          <idle>-0     (-----) [003] .n.1 82316.737194: cpu_idle: state=4294967295 cpu_id=3
88399          <idle>-0     (-----) [003] d..2 82316.737204: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
88400        DispSync-8879  ( 8858) [001] d..2 82316.737220: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88401          <idle>-0     (-----) [001] d..1 82316.737231: cpu_idle: state=0 cpu_id=1
88402  appEventThread-8881  ( 8858) [003] d..3 82316.737263: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
88403  appEventThread-8881  ( 8858) [003] d..4 82316.737287: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
88404          <idle>-0     (-----) [001] .n.1 82316.737294: cpu_idle: state=4294967295 cpu_id=1
88405          <idle>-0     (-----) [001] d..2 82316.737306: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
88406  appEventThread-8881  ( 8858) [003] d..2 82316.737326: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88407          <idle>-0     (-----) [003] d..1 82316.737338: cpu_idle: state=0 cpu_id=3
88408<...>-9105 ( 9105) [001] .... 82316.737647: binder_transaction: transaction=1571177 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
88409<...>-9105 ( 9105) [001] .... 82316.737653: binder_transaction_alloc_buf: transaction=1571177 data_size=80 offsets_size=0
88410<...>-9105 ( 9105) [001] d..4 82316.737660: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
88411<...>-9105 ( 9105) [001] d..5 82316.737686: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
88412          <idle>-0     (-----) [002] .n.1 82316.737692: cpu_idle: state=4294967295 cpu_id=2
88413          <idle>-0     (-----) [002] d..2 82316.737703: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
88414<...>-13083 ( 8858) [002] .... 82316.737713: binder_transaction_received: transaction=1571177
88415<...>-9105 ( 9105) [001] d..3 82316.737725: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
88416<...>-13083 ( 8858) [002] d..1 82316.737752: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
88417<...>-9105 ( 9105) [001] d..4 82316.737753: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
88418          <idle>-0     (-----) [003] .n.1 82316.737758: cpu_idle: state=4294967295 cpu_id=3
88419<...>-13083 ( 8858) [002] dn.2 82316.737776: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
88420          <idle>-0     (-----) [003] d..2 82316.737776: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
88421<...>-13083 ( 8858) [002] d..2 82316.737785: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
88422  appEventThread-8881  ( 8858) [002] d..2 82316.737805: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
88423<...>-13083 ( 8858) [002] d..1 82316.737811: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
88424<...>-13083 ( 8858) [002] d..2 82316.737829: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
88425    RenderThread-9436  ( 9105) [003] d..2 82316.737837: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
88426<...>-13083 ( 8858) [002] d..2 82316.737882: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88427<...>-9105 ( 9105) [001] d..3 82316.737887: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
88428          <idle>-0     (-----) [002] d..1 82316.737897: cpu_idle: state=0 cpu_id=2
88429  appEventThread-8881  ( 8858) [003] d..2 82316.737898: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88430          <idle>-0     (-----) [003] d..1 82316.737912: cpu_idle: state=0 cpu_id=3
88431<...>-9105 ( 9105) [001] d..4 82316.737917: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
88432          <idle>-0     (-----) [002] dnh4 82316.737944: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88433<...>-9105 ( 9105) [001] d..2 82316.737950: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88434          <idle>-0     (-----) [005] dnh2 82316.737965: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88435          <idle>-0     (-----) [001] d..1 82316.737966: cpu_idle: state=0 cpu_id=1
88436          <idle>-0     (-----) [005] .n.1 82316.737968: cpu_idle: state=4294967295 cpu_id=5
88437          <idle>-0     (-----) [005] d..2 82316.737976: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88438          <idle>-0     (-----) [002] .n.1 82316.737982: cpu_idle: state=4294967295 cpu_id=2
88439          <idle>-0     (-----) [002] d..2 82316.737995: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
88440<...>-5340 ( 788) [005] d..1 82316.738027: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
88441    RenderThread-9436  ( 9105) [002] dnh1 82316.738070: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
88442    RenderThread-9436  ( 9105) [002] d..2 82316.738081: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
88443<...>-5340 ( 788) [005] ...1 82316.738135: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
88444<...>-5340 ( 788) [005] ...1 82316.738139: tracing_mark_write: E|788
88445 neuralnetworks@-13088 (  788) [002] d..2 82316.738142: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
88446<...>-5340 ( 788) [005] .... 82316.738156: binder_transaction: transaction=1571178 dest_node=1571175 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
88447<...>-5340 ( 788) [005] .... 82316.738159: binder_transaction_alloc_buf: transaction=1571178 data_size=60 offsets_size=0
88448<...>-5340 ( 788) [005] d..4 82316.738162: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
88449<...>-5340 ( 788) [005] d..5 82316.738175: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
88450          <idle>-0     (-----) [004] .n.1 82316.738181: cpu_idle: state=4294967295 cpu_id=4
88451          <idle>-0     (-----) [004] d..2 82316.738190: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
88452           <...>-27571 (-----) [004] .... 82316.738194: binder_transaction_received: transaction=1571178
88453<...>-5340 ( 788) [005] ...1 82316.738198: tracing_mark_write: E|788
88454<...>-5340 ( 788) [005] .... 82316.738205: binder_transaction: transaction=1571179 dest_node=0 dest_proc=27550 dest_thread=27750 reply=1 flags=0x0 code=0x0
88455<...>-5340 ( 788) [005] .... 82316.738207: binder_transaction_alloc_buf: transaction=1571179 data_size=8 offsets_size=0
88456<...>-5340 ( 788) [005] d..2 82316.738208: sched_waking: comm=id.nn.benchmark pid=27750 prio=110 target_cpu=005
88457           <...>-27571 (-----) [004] ...1 82316.738214: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
88458<...>-5340 ( 788) [005] d..3 82316.738215: sched_wakeup: comm=id.nn.benchmark pid=27750 prio=110 target_cpu=005
88459<...>-5340 ( 788) [005] .... 82316.738217: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
88460           <...>-27571 (-----) [004] ...1 82316.738220: tracing_mark_write: E|27550
88461    RenderThread-9436  ( 9105) [002] d..1 82316.738223: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
88462    RenderThread-9436  ( 9105) [002] d..2 82316.738241: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
88463          <idle>-0     (-----) [001] .n.1 82316.738248: cpu_idle: state=4294967295 cpu_id=1
88464           <...>-27571 (-----) [004] d..2 82316.738249: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88465          <idle>-0     (-----) [004] d..1 82316.738256: cpu_idle: state=0 cpu_id=4
88466<...>-5340 ( 788) [005] d..2 82316.738259: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27750 next_prio=110
88467          <idle>-0     (-----) [001] d..2 82316.738261: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
88468           <...>-27750 (-----) [005] .... 82316.738269: binder_transaction_received: transaction=1571179
88469           <...>-27750 (-----) [005] ...1 82316.738307: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
88470    RenderThread-9436  ( 9105) [002] .... 82316.738309: binder_transaction: transaction=1571180 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
88471           <...>-27750 (-----) [005] ...1 82316.738313: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
88472    RenderThread-9436  ( 9105) [002] .... 82316.738314: binder_transaction_alloc_buf: transaction=1571180 data_size=104 offsets_size=0
88473    RenderThread-9436  ( 9105) [002] d..4 82316.738318: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
88474    RenderThread-9436  ( 9105) [002] dn.5 82316.738331: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
88475           <...>-27750 (-----) [005] ...1 82316.738339: tracing_mark_write: E|27550
88476    RenderThread-9436  ( 9105) [002] d..2 82316.738340: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
88477           <...>-27750 (-----) [005] ...1 82316.738342: tracing_mark_write: E|27550
88478           <...>-27750 (-----) [005] ...1 82316.738347: tracing_mark_write: E|27550
88479<...>-13083 ( 8858) [002] .... 82316.738347: binder_transaction_received: transaction=1571180
88480<...>-9105 ( 9105) [001] d..2 82316.738372: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
88481    RenderThread-9436  ( 9105) [001] d..2 82316.738395: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88482          <idle>-0     (-----) [001] d..1 82316.738407: cpu_idle: state=0 cpu_id=1
88483<...>-13083 ( 8858) [002] .... 82316.738420: binder_transaction: transaction=1571181 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
88484<...>-13083 ( 8858) [002] .... 82316.738424: binder_transaction_alloc_buf: transaction=1571181 data_size=52 offsets_size=8
88485<...>-13083 ( 8858) [002] d..2 82316.738434: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
88486<...>-13083 ( 8858) [002] d..3 82316.738457: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
88487<...>-817 ( 817) [000] d.s2 82316.738508: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
88488<...>-817 ( 817) [000] d.s3 82316.738549: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
88489<...>-13083 ( 8858) [002] d..2 82316.738564: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
88490           <...>-27750 (-----) [005] ...1 82316.738567: tracing_mark_write: E|27550
88491           <...>-27750 (-----) [005] d..1 82316.738581: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88492           <...>-27750 (-----) [005] d..2 82316.738595: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88493          <idle>-0     (-----) [004] .n.1 82316.738600: cpu_idle: state=4294967295 cpu_id=4
88494          <idle>-0     (-----) [004] d..2 82316.738608: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
88495           <...>-27550 (-----) [004] d..2 82316.738631: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88496  kworker/u16:15-1311  ( 1311) [002] .... 82316.738631: clk_set_rate: l3_cluster0_vote_clk 652800000
88497  kworker/u16:15-1311  ( 1311) [002] .... 82316.738637: clk_set_rate: l3_clk 652800000
88498          <idle>-0     (-----) [004] d..1 82316.738640: cpu_idle: state=0 cpu_id=4
88499           <...>-27750 (-----) [005] d..1 82316.738705: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88500           <...>-27750 (-----) [005] d..2 82316.738715: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88501          <idle>-0     (-----) [004] .n.1 82316.738720: cpu_idle: state=4294967295 cpu_id=4
88502          <idle>-0     (-----) [004] d..2 82316.738727: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
88503           <...>-27750 (-----) [005] d..2 82316.738755: sched_switch: prev_comm=id.nn.benchmark prev_pid=27750 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
88504           <...>-27550 (-----) [004] ...1 82316.738761: tracing_mark_write: E|27550
88505           <...>-27550 (-----) [004] ...1 82316.738765: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
88506           <...>-27550 (-----) [004] ...1 82316.738771: tracing_mark_write: E|27550
88507          <idle>-0     (-----) [005] d..1 82316.738774: cpu_idle: state=0 cpu_id=5
88508           <...>-27550 (-----) [004] ...1 82316.738775: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
88509           <...>-27550 (-----) [004] ...1 82316.738779: tracing_mark_write: E|27550
88510           <...>-27550 (-----) [004] ...1 82316.738783: tracing_mark_write: E|27550
88511           <...>-27550 (-----) [004] ...1 82316.738895: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
88512  kworker/u16:15-1311  ( 1311) [002] d..2 82316.738909: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=RenderThread next_pid=9436 next_prio=120
88513    RenderThread-9436  ( 9105) [002] .... 82316.738919: binder_transaction_received: transaction=1571181
88514           <...>-27550 (-----) [004] ...1 82316.738952: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
88515          <idle>-0     (-----) [001] d.s3 82316.738955: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
88516           <...>-27550 (-----) [004] ...1 82316.738957: tracing_mark_write: E|27550
88517           <...>-27550 (-----) [004] ...1 82316.738960: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
88518           <...>-27550 (-----) [004] ...1 82316.738965: tracing_mark_write: E|27550
88519           <...>-27550 (-----) [004] ...1 82316.738969: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
88520           <...>-27550 (-----) [004] ...1 82316.738973: tracing_mark_write: E|27550
88521           <...>-27550 (-----) [004] ...1 82316.738976: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
88522          <idle>-0     (-----) [001] d.s4 82316.738976: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
88523          <idle>-0     (-----) [001] dns4 82316.738982: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
88524          <idle>-0     (-----) [001] .n.1 82316.738989: cpu_idle: state=4294967295 cpu_id=1
88525          <idle>-0     (-----) [001] d..2 82316.739001: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
88526          <idle>-0     (-----) [005] .n.1 82316.739079: cpu_idle: state=4294967295 cpu_id=5
88527           <...>-27550 (-----) [004] ...1 82316.739081: tracing_mark_write: E|27550
88528  kworker/u16:15-1311  ( 1311) [001] d..2 82316.739081: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88529           <...>-27550 (-----) [004] ...1 82316.739085: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
88530          <idle>-0     (-----) [005] d..2 82316.739087: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27751 next_prio=110
88531          <idle>-0     (-----) [001] d..1 82316.739092: cpu_idle: state=0 cpu_id=1
88532           <...>-27550 (-----) [004] d..2 82316.739101: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88533          <idle>-0     (-----) [004] d..1 82316.739115: cpu_idle: state=0 cpu_id=4
88534           <...>-27751 (-----) [005] ...1 82316.739145: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
88535           <...>-27751 (-----) [005] ...1 82316.739159: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
88536           <...>-27751 (-----) [005] ...1 82316.739163: tracing_mark_write: E|27550
88537           <...>-27751 (-----) [005] .... 82316.739184: binder_transaction: transaction=1571182 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
88538           <...>-27751 (-----) [005] .... 82316.739187: binder_transaction_alloc_buf: transaction=1571182 data_size=48 offsets_size=0
88539           <...>-27751 (-----) [005] ...2 82316.739190: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
88540           <...>-27751 (-----) [005] d..4 82316.739193: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
88541           <...>-27751 (-----) [005] dn.5 82316.739203: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
88542           <...>-27751 (-----) [005] d..2 82316.739210: sched_switch: prev_comm=id.nn.benchmark prev_pid=27751 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
88543<...>-770 ( 770) [005] .... 82316.739219: binder_transaction_received: transaction=1571182
88544<...>-770 ( 770) [005] ...1 82316.739243: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
88545<...>-817 ( 817) [000] d..2 82316.739260: sched_switch: prev_comm=msm_irqbalance prev_pid=817 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88546          <idle>-0     (-----) [000] d..1 82316.739280: cpu_idle: state=0 cpu_id=0
88547<...>-770 ( 770) [005] d..2 82316.739319: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
88548    RenderThread-9436  ( 9105) [002] d.h1 82316.739351: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
88549<...>-770 ( 770) [005] ...1 82316.739361: tracing_mark_write: E|770
88550<...>-770 ( 770) [005] .... 82316.739369: binder_transaction: transaction=1571183 dest_node=0 dest_proc=27550 dest_thread=27751 reply=1 flags=0x0 code=0x0
88551<...>-770 ( 770) [005] .... 82316.739371: binder_transaction_alloc_buf: transaction=1571183 data_size=168 offsets_size=32
88552<...>-770 ( 770) [005] .... 82316.739378: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
88553<...>-770 ( 770) [005] d..2 82316.739414: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27751 next_prio=110
88554           <...>-27751 (-----) [005] .... 82316.739425: binder_transaction_received: transaction=1571183
88555           <...>-27751 (-----) [005] ...1 82316.739498: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
88556           <...>-27751 (-----) [005] ...1 82316.739503: tracing_mark_write: E|27550
88557           <...>-27751 (-----) [005] .... 82316.739518: binder_transaction: transaction=1571184 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
88558           <...>-27751 (-----) [005] .... 82316.739520: binder_transaction_alloc_buf: transaction=1571184 data_size=48 offsets_size=0
88559           <...>-27751 (-----) [005] ...2 82316.739523: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
88560           <...>-27751 (-----) [005] d..4 82316.739525: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
88561           <...>-27751 (-----) [005] dn.5 82316.739535: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
88562           <...>-27751 (-----) [005] d..2 82316.739541: sched_switch: prev_comm=id.nn.benchmark prev_pid=27751 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
88563<...>-770 ( 770) [005] .... 82316.739548: binder_transaction_received: transaction=1571184
88564<...>-770 ( 770) [005] ...1 82316.739565: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
88565<...>-770 ( 770) [005] ...1 82316.739643: tracing_mark_write: E|770
88566<...>-770 ( 770) [005] .... 82316.739651: binder_transaction: transaction=1571185 dest_node=0 dest_proc=27550 dest_thread=27751 reply=1 flags=0x0 code=0x0
88567<...>-770 ( 770) [005] .... 82316.739654: binder_transaction_alloc_buf: transaction=1571185 data_size=168 offsets_size=32
88568<...>-770 ( 770) [005] .... 82316.739659: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
88569<...>-770 ( 770) [005] d..2 82316.739693: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27751 next_prio=110
88570           <...>-27751 (-----) [005] .... 82316.739703: binder_transaction_received: transaction=1571185
88571           <...>-27751 (-----) [005] ...1 82316.739976: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
88572    RenderThread-9436  ( 9105) [002] d..2 82316.739984: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
88573           <...>-27751 (-----) [005] ...1 82316.739985: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
88574           <...>-27751 (-----) [005] ...1 82316.739989: tracing_mark_write: E|27550
88575<...>-581 ( 571) [002] d.h1 82316.740076: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
88576           <...>-27751 (-----) [005] .... 82316.740080: binder_transaction: transaction=1571186 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
88577           <...>-27751 (-----) [005] .... 82316.740083: binder_transaction_alloc_buf: transaction=1571186 data_size=556 offsets_size=104
88578           <...>-27751 (-----) [005] ...2 82316.740098: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
88579<...>-581 ( 571) [002] d.h2 82316.740098: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
88580           <...>-27751 (-----) [005] d..4 82316.740100: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88581<...>-581 ( 571) [002] d.h2 82316.740107: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
88582           <...>-27751 (-----) [005] dn.5 82316.740111: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88583           <...>-27751 (-----) [005] d..2 82316.740118: sched_switch: prev_comm=id.nn.benchmark prev_pid=27751 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88584<...>-5340 ( 788) [005] .... 82316.740127: binder_transaction_received: transaction=1571186
88585          <idle>-0     (-----) [000] dnh3 82316.740129: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
88586          <idle>-0     (-----) [000] dnh4 82316.740159: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
88587<...>-581 ( 571) [002] d..2 82316.740168: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
88588<...>-5340 ( 788) [005] ...1 82316.740175: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
88589          <idle>-0     (-----) [000] .n.1 82316.740185: cpu_idle: state=4294967295 cpu_id=0
88590 kgsl_worker_thr-258   (  258) [002] d..2 82316.740197: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
88591          <idle>-0     (-----) [000] d..2 82316.740199: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
88592          <idle>-0     (-----) [002] d..1 82316.740216: cpu_idle: state=0 cpu_id=2
88593    RenderThread-9436  ( 9105) [000] d..1 82316.740221: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
88594<...>-5340 ( 788) [005] d..2 82316.740223: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88595    RenderThread-9436  ( 9105) [000] d..2 82316.740238: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
88596          <idle>-0     (-----) [002] .n.1 82316.740245: cpu_idle: state=4294967295 cpu_id=2
88597<...>-5340 ( 788) [005] d..2 82316.740247: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27751 next_prio=110
88598    RenderThread-9436  ( 9105) [000] dnh2 82316.740250: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88599          <idle>-0     (-----) [002] d..2 82316.740255: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
88600    RenderThread-9436  ( 9105) [000] d..2 82316.740259: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
88601           <...>-27751 (-----) [005] d..2 82316.740269: sched_switch: prev_comm=id.nn.benchmark prev_pid=27751 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88602          <idle>-0     (-----) [005] d..1 82316.740287: cpu_idle: state=0 cpu_id=5
88603<...>-87 ( 87) [000] d..2 82316.740292: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
88604 kgsl_worker_thr-258   (  258) [002] d.h3 82316.740310: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88605 kgsl_worker_thr-258   (  258) [002] d.h4 82316.740328: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88606 kgsl_worker_thr-258   (  258) [002] d..2 82316.740348: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
88607 kgsl_worker_thr-258   (  258) [002] d..3 82316.740362: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
88608          <idle>-0     (-----) [001] .n.1 82316.740368: cpu_idle: state=4294967295 cpu_id=1
88609 kgsl_worker_thr-258   (  258) [002] d..2 82316.740377: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
88610          <idle>-0     (-----) [001] d..2 82316.740379: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
88611<...>-86 ( 86) [002] d.h5 82316.740399: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88612  kworker/u16:15-1311  ( 1311) [001] d..2 82316.740420: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88613          <idle>-0     (-----) [005] dnh2 82316.740421: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88614          <idle>-0     (-----) [005] .n.1 82316.740426: cpu_idle: state=4294967295 cpu_id=5
88615          <idle>-0     (-----) [001] d..1 82316.740429: cpu_idle: state=0 cpu_id=1
88616          <idle>-0     (-----) [005] d..2 82316.740434: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88617<...>-86 ( 86) [002] d..2 82316.740467: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88618          <idle>-0     (-----) [002] d..1 82316.740482: cpu_idle: state=0 cpu_id=2
88619    RenderThread-9436  ( 9105) [000] .... 82316.740489: binder_transaction: transaction=1571189 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
88620<...>-5340 ( 788) [005] d..1 82316.740489: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
88621    RenderThread-9436  ( 9105) [000] .... 82316.740494: binder_transaction_alloc_buf: transaction=1571189 data_size=192 offsets_size=8
88622    RenderThread-9436  ( 9105) [000] d..4 82316.740504: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
88623    RenderThread-9436  ( 9105) [000] dn.5 82316.740529: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
88624    RenderThread-9436  ( 9105) [000] dnh4 82316.740540: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
88625    RenderThread-9436  ( 9105) [000] d..2 82316.740550: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
88626<...>-13083 ( 8858) [000] .... 82316.740559: binder_transaction_received: transaction=1571189
88627<...>-5340 ( 788) [005] d..2 82316.740656: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88628<...>-13083 ( 8858) [000] d.h1 82316.740681: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88629<...>-5340 ( 788) [005] d..2 82316.740683: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88630          <idle>-0     (-----) [005] d..1 82316.740698: cpu_idle: state=0 cpu_id=5
88631<...>-13083 ( 8858) [000] .... 82316.740733: binder_transaction: transaction=1571190 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
88632<...>-13083 ( 8858) [000] .... 82316.740738: binder_transaction_alloc_buf: transaction=1571190 data_size=68 offsets_size=0
88633<...>-13083 ( 8858) [000] d..2 82316.740777: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
88634 neuralnetworks@-13088 (  788) [000] d..2 82316.740822: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
88635<...>-87 ( 87) [000] d..2 82316.740854: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
88636          <idle>-0     (-----) [002] d.h4 82316.740861: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88637    RenderThread-9436  ( 9105) [000] .... 82316.740863: binder_transaction_received: transaction=1571190
88638          <idle>-0     (-----) [002] dnh5 82316.740871: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88639          <idle>-0     (-----) [002] .n.1 82316.740881: cpu_idle: state=4294967295 cpu_id=2
88640          <idle>-0     (-----) [002] d..2 82316.740891: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
88641<...>-86 ( 86) [002] d..2 82316.740921: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88642          <idle>-0     (-----) [002] d..1 82316.740932: cpu_idle: state=0 cpu_id=2
88643          <idle>-0     (-----) [005] ...1 82316.741027: cpu_idle: state=4294967295 cpu_id=5
88644          <idle>-0     (-----) [005] d..1 82316.741030: cpu_idle: state=0 cpu_id=5
88645    RenderThread-9436  ( 9105) [000] d..2 82316.741043: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88646          <idle>-0     (-----) [000] d..1 82316.741066: cpu_idle: state=0 cpu_id=0
88647          <idle>-0     (-----) [001] d.h2 82316.741115: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
88648          <idle>-0     (-----) [001] dnh3 82316.741129: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
88649          <idle>-0     (-----) [001] .n.1 82316.741137: cpu_idle: state=4294967295 cpu_id=1
88650          <idle>-0     (-----) [001] d..2 82316.741147: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
88651        DispSync-8879  ( 8858) [001] d..1 82316.741170: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
88652        DispSync-8879  ( 8858) [001] d..2 82316.741188: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
88653          <idle>-0     (-----) [003] .n.1 82316.741194: cpu_idle: state=4294967295 cpu_id=3
88654          <idle>-0     (-----) [003] d..2 82316.741204: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
88655        DispSync-8879  ( 8858) [001] d..2 82316.741219: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88656          <idle>-0     (-----) [001] d..1 82316.741232: cpu_idle: state=0 cpu_id=1
88657   sfEventThread-8882  ( 8858) [003] d..3 82316.741241: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
88658   sfEventThread-8882  ( 8858) [003] d..4 82316.741261: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
88659          <idle>-0     (-----) [001] .n.1 82316.741268: cpu_idle: state=4294967295 cpu_id=1
88660          <idle>-0     (-----) [001] d..2 82316.741277: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
88661   sfEventThread-8882  ( 8858) [003] d..2 82316.741291: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88662          <idle>-0     (-----) [003] d..1 82316.741300: cpu_idle: state=0 cpu_id=3
88663  surfaceflinger-8858  ( 8858) [001] d..1 82316.741641: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
88664  surfaceflinger-8858  ( 8858) [001] d..2 82316.741661: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
88665          <idle>-0     (-----) [003] .n.1 82316.741665: cpu_idle: state=4294967295 cpu_id=3
88666          <idle>-0     (-----) [003] d..2 82316.741673: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
88667   sfEventThread-8882  ( 8858) [003] d..2 82316.741703: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88668          <idle>-0     (-----) [003] d..1 82316.741710: cpu_idle: state=0 cpu_id=3
88669          <idle>-0     (-----) [003] d.s2 82316.741799: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
88670          <idle>-0     (-----) [003] dns3 82316.741816: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
88671          <idle>-0     (-----) [003] dns2 82316.741819: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
88672          <idle>-0     (-----) [003] dns3 82316.741830: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
88673          <idle>-0     (-----) [003] .n.1 82316.741849: cpu_idle: state=4294967295 cpu_id=3
88674          <idle>-0     (-----) [003] d..2 82316.741858: 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
88675     rcu_preempt-7     (    7) [003] d..2 82316.741868: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
88676     rcu_preempt-7     (    7) [003] d..3 82316.741904: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
88677     rcu_preempt-7     (    7) [003] d..2 82316.741906: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
88678  surfaceflinger-8858  ( 8858) [001] ...1 82316.741910: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
88679  surfaceflinger-8858  ( 8858) [001] ...1 82316.741917: tracing_mark_write: E|8858
88680     rcu_preempt-7     (    7) [003] d..3 82316.741936: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
88681     rcu_preempt-7     (    7) [003] d..2 82316.741952: 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
88682         rcuop/4-45    (   45) [003] d..2 82316.741958: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=002
88683  surfaceflinger-8858  ( 8858) [001] .... 82316.741968: binder_transaction: transaction=1571191 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
88684  surfaceflinger-8858  ( 8858) [001] .... 82316.741973: binder_transaction_alloc_buf: transaction=1571191 data_size=540 offsets_size=96
88685         rcuop/4-45    (   45) [003] d..3 82316.741989: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
88686  surfaceflinger-8858  ( 8858) [001] ...2 82316.741997: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
88687         rcuop/4-45    (   45) [003] d..2 82316.741999: 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
88688         rcuop/2-29    (   29) [003] d..2 82316.742005: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
88689  surfaceflinger-8858  ( 8858) [001] d..4 82316.742008: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
88690  surfaceflinger-8858  ( 8858) [001] d..5 82316.742035: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
88691         rcuop/2-29    (   29) [003] d..3 82316.742036: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
88692          <idle>-0     (-----) [002] .n.1 82316.742041: cpu_idle: state=4294967295 cpu_id=2
88693         rcuop/2-29    (   29) [003] d..2 82316.742045: 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
88694          <idle>-0     (-----) [002] d..2 82316.742052: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
88695 [email protected]   (  619) [002] .... 82316.742062: binder_transaction_received: transaction=1571191
88696  surfaceflinger-8858  ( 8858) [001] d..2 82316.742070: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
88697          <idle>-0     (-----) [001] d..1 82316.742086: cpu_idle: state=0 cpu_id=1
88698 [email protected]   (  619) [002] ...1 82316.742110: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
88699         rcuop/5-53    (   53) [003] d..2 82316.742132: 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
88700         rcuop/3-37    (   37) [003] d..2 82316.742146: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
88701<...>-8 ( 8) [003] d..2 82316.742154: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
88702<...>-8 ( 8) [003] d..3 82316.742187: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
88703<...>-8 ( 8) [003] d..2 82316.742197: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
88704 [email protected]   (  619) [002] ...1 82316.742216: tracing_mark_write: B|619|HWCSession::PresentDisplay::
88705<...>-46 ( 46) [003] d..2 82316.742225: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
88706<...>-46 ( 46) [003] d..3 82316.742237: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
88707<...>-46 ( 46) [003] d..2 82316.742246: 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
88708<...>-8 ( 8) [003] d..2 82316.742267: 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
88709          <idle>-0     (-----) [003] d..1 82316.742285: cpu_idle: state=0 cpu_id=3
88710 [email protected]   (  619) [002] ...1 82316.742393: tracing_mark_write: B|619|HWDeviceDRM::Commit::
88711 [email protected]   (  619) [002] ...1 82316.742405: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
88712 [email protected]   (  619) [002] d.h3 82316.742488: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88713          <idle>-0     (-----) [005] dnh2 82316.742510: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88714          <idle>-0     (-----) [005] .n.1 82316.742514: cpu_idle: state=4294967295 cpu_id=5
88715          <idle>-0     (-----) [005] d..2 82316.742523: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88716<...>-5340 ( 788) [005] d..1 82316.742575: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
88717          <idle>-0     (-----) [000] dnh2 82316.742602: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
88718          <idle>-0     (-----) [000] .n.1 82316.742610: cpu_idle: state=4294967295 cpu_id=0
88719          <idle>-0     (-----) [000] d..2 82316.742632: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
88720<...>-5340 ( 788) [005] ...1 82316.742665: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
88721<...>-5340 ( 788) [005] ...1 82316.742669: tracing_mark_write: E|788
88722<...>-5340 ( 788) [005] .... 82316.742687: binder_transaction: transaction=1571192 dest_node=1571187 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
88723 neuralnetworks@-13088 (  788) [000] d..2 82316.742688: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88724<...>-5340 ( 788) [005] .... 82316.742690: binder_transaction_alloc_buf: transaction=1571192 data_size=60 offsets_size=0
88725<...>-5340 ( 788) [005] d..4 82316.742693: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
88726          <idle>-0     (-----) [000] d..1 82316.742702: cpu_idle: state=0 cpu_id=0
88727<...>-5340 ( 788) [005] d..5 82316.742706: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
88728          <idle>-0     (-----) [004] .n.1 82316.742712: cpu_idle: state=4294967295 cpu_id=4
88729          <idle>-0     (-----) [004] d..2 82316.742720: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
88730           <...>-27571 (-----) [004] .... 82316.742725: binder_transaction_received: transaction=1571192
88731<...>-5340 ( 788) [005] ...1 82316.742729: tracing_mark_write: E|788
88732<...>-5340 ( 788) [005] .... 82316.742735: binder_transaction: transaction=1571193 dest_node=0 dest_proc=27550 dest_thread=27751 reply=1 flags=0x0 code=0x0
88733<...>-5340 ( 788) [005] .... 82316.742737: binder_transaction_alloc_buf: transaction=1571193 data_size=8 offsets_size=0
88734<...>-5340 ( 788) [005] d..2 82316.742739: sched_waking: comm=id.nn.benchmark pid=27751 prio=110 target_cpu=005
88735           <...>-27571 (-----) [004] ...1 82316.742743: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
88736<...>-5340 ( 788) [005] d..3 82316.742746: sched_wakeup: comm=id.nn.benchmark pid=27751 prio=110 target_cpu=005
88737<...>-5340 ( 788) [005] .... 82316.742748: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
88738           <...>-27571 (-----) [004] ...1 82316.742749: tracing_mark_write: E|27550
88739           <...>-27571 (-----) [004] d..2 82316.742777: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88740          <idle>-0     (-----) [004] d..1 82316.742785: cpu_idle: state=0 cpu_id=4
88741<...>-5340 ( 788) [005] d..2 82316.742790: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27751 next_prio=110
88742           <...>-27751 (-----) [005] .... 82316.742799: binder_transaction_received: transaction=1571193
88743           <...>-27751 (-----) [005] ...1 82316.742836: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
88744           <...>-27751 (-----) [005] ...1 82316.742843: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
88745           <...>-27751 (-----) [005] ...1 82316.742868: tracing_mark_write: E|27550
88746           <...>-27751 (-----) [005] ...1 82316.742871: tracing_mark_write: E|27550
88747           <...>-27751 (-----) [005] ...1 82316.742875: tracing_mark_write: E|27550
88748           <...>-27751 (-----) [005] ...1 82316.743062: tracing_mark_write: E|27550
88749           <...>-27751 (-----) [005] d..1 82316.743074: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88750           <...>-27751 (-----) [005] d..2 82316.743090: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88751          <idle>-0     (-----) [004] .n.1 82316.743096: cpu_idle: state=4294967295 cpu_id=4
88752          <idle>-0     (-----) [004] d..2 82316.743102: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
88753           <...>-27550 (-----) [004] d..2 82316.743122: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88754 [email protected]   (  619) [002] d..2 82316.743128: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
88755          <idle>-0     (-----) [004] d..1 82316.743131: cpu_idle: state=0 cpu_id=4
88756 [email protected]   (  619) [002] d..3 82316.743158: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
88757          <idle>-0     (-----) [003] .n.1 82316.743164: cpu_idle: state=4294967295 cpu_id=3
88758          <idle>-0     (-----) [003] d..2 82316.743175: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
88759           <...>-27751 (-----) [005] d..1 82316.743180: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88760           <...>-27751 (-----) [005] d..2 82316.743189: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88761          <idle>-0     (-----) [004] .n.1 82316.743195: cpu_idle: state=4294967295 cpu_id=4
88762          <idle>-0     (-----) [004] d..2 82316.743202: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
88763           <...>-27751 (-----) [005] d..2 82316.743231: sched_switch: prev_comm=id.nn.benchmark prev_pid=27751 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
88764           <...>-27550 (-----) [004] ...1 82316.743234: tracing_mark_write: E|27550
88765           <...>-27550 (-----) [004] ...1 82316.743238: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
88766           <...>-27550 (-----) [004] ...1 82316.743244: tracing_mark_write: E|27550
88767           <...>-27550 (-----) [004] ...1 82316.743248: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
88768          <idle>-0     (-----) [005] d..1 82316.743250: cpu_idle: state=0 cpu_id=5
88769           <...>-27550 (-----) [004] ...1 82316.743252: tracing_mark_write: E|27550
88770           <...>-27550 (-----) [004] ...1 82316.743256: tracing_mark_write: E|27550
88771 [email protected]   (  619) [002] ...1 82316.743261: tracing_mark_write: E|619
88772 [email protected]   (  619) [002] ...1 82316.743267: tracing_mark_write: E|619
88773 crtc_commit:111-321   (  321) [003] d.h1 82316.743286: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
88774 crtc_commit:111-321   (  321) [003] dnh2 82316.743300: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
88775 crtc_commit:111-321   (  321) [003] d..2 82316.743313: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=R+ ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
88776 [email protected]   (  619) [002] ...1 82316.743330: tracing_mark_write: E|619
88777          <idle>-0     (-----) [001] .n.1 82316.743344: cpu_idle: state=4294967295 cpu_id=1
88778          <idle>-0     (-----) [001] d..2 82316.743354: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
88779           <...>-27550 (-----) [004] ...1 82316.743369: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
88780 [email protected]   (  619) [002] ...1 82316.743376: tracing_mark_write: E|619
88781 [email protected]   (  619) [002] .... 82316.743391: binder_transaction: transaction=1571194 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
88782 [email protected]   (  619) [002] .... 82316.743395: binder_transaction_alloc_buf: transaction=1571194 data_size=576 offsets_size=112
88783 [email protected]   (  619) [002] d..2 82316.743415: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
88784           <...>-27550 (-----) [004] ...1 82316.743426: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
88785           <...>-27550 (-----) [004] ...1 82316.743431: tracing_mark_write: E|27550
88786           <...>-27550 (-----) [004] ...1 82316.743434: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
88787 [email protected]   (  619) [002] d..3 82316.743441: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
88788           <...>-27550 (-----) [004] ...1 82316.743445: tracing_mark_write: E|27550
88789 [email protected]   (  619) [002] .... 82316.743445: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
88790          <idle>-0     (-----) [000] .n.1 82316.743447: cpu_idle: state=4294967295 cpu_id=0
88791           <...>-27550 (-----) [004] ...1 82316.743449: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
88792           <...>-27550 (-----) [004] ...1 82316.743453: tracing_mark_write: E|27550
88793          <idle>-0     (-----) [000] d..2 82316.743456: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
88794           <...>-27550 (-----) [004] ...1 82316.743456: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
88795  surfaceflinger-8858  ( 8858) [000] .... 82316.743466: binder_transaction_received: transaction=1571194
88796 irq/80-1436400.-9674  ( 9674) [003] d..2 82316.743510: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
88797 crtc_commit:111-321   (  321) [001] d.s1 82316.743522: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
88798          <idle>-0     (-----) [003] d..1 82316.743524: cpu_idle: state=0 cpu_id=3
88799 [email protected]   (  619) [002] d..2 82316.743528: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88800 crtc_commit:111-321   (  321) [001] d.s2 82316.743537: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
88801          <idle>-0     (-----) [005] .n.1 82316.743547: cpu_idle: state=4294967295 cpu_id=5
88802          <idle>-0     (-----) [002] d..1 82316.743548: cpu_idle: state=0 cpu_id=2
88803           <...>-27550 (-----) [004] ...1 82316.743548: tracing_mark_write: E|27550
88804           <...>-27550 (-----) [004] ...1 82316.743552: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
88805          <idle>-0     (-----) [005] d..2 82316.743556: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27752 next_prio=110
88806           <...>-27550 (-----) [004] d..2 82316.743569: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88807          <idle>-0     (-----) [004] d..1 82316.743583: cpu_idle: state=0 cpu_id=4
88808           <...>-27752 (-----) [005] ...1 82316.743616: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
88809           <...>-27752 (-----) [005] ...1 82316.743630: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
88810           <...>-27752 (-----) [005] ...1 82316.743634: tracing_mark_write: E|27550
88811           <...>-27752 (-----) [005] .... 82316.743655: binder_transaction: transaction=1571195 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
88812           <...>-27752 (-----) [005] .... 82316.743658: binder_transaction_alloc_buf: transaction=1571195 data_size=48 offsets_size=0
88813           <...>-27752 (-----) [005] ...2 82316.743661: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
88814           <...>-27752 (-----) [005] d..4 82316.743664: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
88815           <...>-27752 (-----) [005] dn.5 82316.743674: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
88816           <...>-27752 (-----) [005] d..2 82316.743681: sched_switch: prev_comm=id.nn.benchmark prev_pid=27752 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
88817<...>-770 ( 770) [005] .... 82316.743690: binder_transaction_received: transaction=1571195
88818<...>-770 ( 770) [005] ...1 82316.743714: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
88819<...>-770 ( 770) [005] d..2 82316.743794: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
88820  surfaceflinger-8858  ( 8858) [000] d.h1 82316.743836: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
88821<...>-770 ( 770) [005] ...1 82316.743849: tracing_mark_write: E|770
88822<...>-770 ( 770) [005] .... 82316.743857: binder_transaction: transaction=1571196 dest_node=0 dest_proc=27550 dest_thread=27752 reply=1 flags=0x0 code=0x0
88823<...>-770 ( 770) [005] .... 82316.743859: binder_transaction_alloc_buf: transaction=1571196 data_size=168 offsets_size=32
88824<...>-770 ( 770) [005] .... 82316.743866: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
88825<...>-770 ( 770) [005] d..2 82316.743900: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27752 next_prio=110
88826           <...>-27752 (-----) [005] .... 82316.743911: binder_transaction_received: transaction=1571196
88827  surfaceflinger-8858  ( 8858) [000] d..2 82316.743917: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
88828           <...>-27752 (-----) [005] ...1 82316.743982: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
88829           <...>-27752 (-----) [005] ...1 82316.743987: tracing_mark_write: E|27550
88830           <...>-27752 (-----) [005] .... 82316.744001: binder_transaction: transaction=1571197 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
88831           <...>-27752 (-----) [005] .... 82316.744003: binder_transaction_alloc_buf: transaction=1571197 data_size=48 offsets_size=0
88832           <...>-27752 (-----) [005] ...2 82316.744006: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
88833           <...>-27752 (-----) [005] d..4 82316.744008: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
88834<...>-581 ( 571) [000] d..2 82316.744016: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88835           <...>-27752 (-----) [005] dn.5 82316.744018: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
88836           <...>-27752 (-----) [005] d..2 82316.744024: sched_switch: prev_comm=id.nn.benchmark prev_pid=27752 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
88837 crtc_commit:111-321   (  321) [001] d..2 82316.744031: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
88838<...>-770 ( 770) [005] .... 82316.744032: binder_transaction_received: transaction=1571197
88839          <idle>-0     (-----) [000] d..1 82316.744035: cpu_idle: state=0 cpu_id=0
88840     ksoftirqd/1-18    (   18) [001] d.s2 82316.744048: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
88841<...>-770 ( 770) [005] ...1 82316.744048: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
88842     ksoftirqd/1-18    (   18) [001] d.s3 82316.744061: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
88843          <idle>-0     (-----) [003] .n.1 82316.744066: cpu_idle: state=4294967295 cpu_id=3
88844          <idle>-0     (-----) [003] d..2 82316.744076: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
88845     ksoftirqd/1-18    (   18) [001] d..2 82316.744087: 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
88846          <idle>-0     (-----) [001] d..1 82316.744102: cpu_idle: state=0 cpu_id=1
88847<...>-770 ( 770) [005] d..2 82316.744105: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
88848 irq/80-1436400.-9674  ( 9674) [003] d..2 82316.744112: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
88849          <idle>-0     (-----) [003] d..1 82316.744121: cpu_idle: state=0 cpu_id=3
88850          <idle>-0     (-----) [000] dnh2 82316.744129: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
88851          <idle>-0     (-----) [000] .n.1 82316.744136: cpu_idle: state=4294967295 cpu_id=0
88852<...>-770 ( 770) [005] ...1 82316.744137: tracing_mark_write: E|770
88853<...>-770 ( 770) [005] .... 82316.744144: binder_transaction: transaction=1571198 dest_node=0 dest_proc=27550 dest_thread=27752 reply=1 flags=0x0 code=0x0
88854          <idle>-0     (-----) [000] d..2 82316.744147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
88855<...>-770 ( 770) [005] .... 82316.744147: binder_transaction_alloc_buf: transaction=1571198 data_size=168 offsets_size=32
88856<...>-770 ( 770) [005] .... 82316.744153: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
88857<...>-770 ( 770) [005] d..2 82316.744187: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27752 next_prio=110
88858           <...>-27752 (-----) [005] .... 82316.744197: binder_transaction_received: transaction=1571198
88859<...>-581 ( 571) [000] d..2 82316.744199: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88860          <idle>-0     (-----) [000] d..1 82316.744212: cpu_idle: state=0 cpu_id=0
88861           <...>-27752 (-----) [005] ...1 82316.744471: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
88862           <...>-27752 (-----) [005] ...1 82316.744480: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
88863           <...>-27752 (-----) [005] ...1 82316.744484: tracing_mark_write: E|27550
88864           <...>-27752 (-----) [005] .... 82316.744545: binder_transaction: transaction=1571199 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
88865           <...>-27752 (-----) [005] .... 82316.744548: binder_transaction_alloc_buf: transaction=1571199 data_size=556 offsets_size=104
88866           <...>-27752 (-----) [005] ...2 82316.744562: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
88867           <...>-27752 (-----) [005] d..4 82316.744565: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88868           <...>-27752 (-----) [005] dn.5 82316.744576: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88869           <...>-27752 (-----) [005] d..2 82316.744582: sched_switch: prev_comm=id.nn.benchmark prev_pid=27752 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88870<...>-5340 ( 788) [005] .... 82316.744592: binder_transaction_received: transaction=1571199
88871<...>-5340 ( 788) [005] ...1 82316.744638: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
88872<...>-5340 ( 788) [005] d..2 82316.744683: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88873<...>-5340 ( 788) [005] d..2 82316.744707: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27752 next_prio=110
88874          <idle>-0     (-----) [000] dnh2 82316.744710: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88875          <idle>-0     (-----) [000] .n.1 82316.744717: cpu_idle: state=4294967295 cpu_id=0
88876          <idle>-0     (-----) [000] d..2 82316.744727: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
88877           <...>-27752 (-----) [005] d..2 82316.744729: sched_switch: prev_comm=id.nn.benchmark prev_pid=27752 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88878          <idle>-0     (-----) [005] d..1 82316.744746: cpu_idle: state=0 cpu_id=5
88879<...>-87 ( 87) [000] d..2 82316.744766: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88880          <idle>-0     (-----) [000] d..1 82316.744778: cpu_idle: state=0 cpu_id=0
88881          <idle>-0     (-----) [002] d.h4 82316.744779: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88882          <idle>-0     (-----) [002] dnh5 82316.744798: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88883          <idle>-0     (-----) [002] .n.1 82316.744809: cpu_idle: state=4294967295 cpu_id=2
88884          <idle>-0     (-----) [002] d..2 82316.744821: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
88885<...>-86 ( 86) [002] d..2 82316.744858: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88886          <idle>-0     (-----) [002] d.h5 82316.744880: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88887          <idle>-0     (-----) [005] dnh2 82316.744901: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88888          <idle>-0     (-----) [005] .n.1 82316.744905: cpu_idle: state=4294967295 cpu_id=5
88889          <idle>-0     (-----) [005] d..2 82316.744914: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88890          <idle>-0     (-----) [002] d..1 82316.744926: cpu_idle: state=0 cpu_id=2
88891<...>-5340 ( 788) [005] d..1 82316.744966: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
88892          <idle>-0     (-----) [000] dnh2 82316.744990: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
88893          <idle>-0     (-----) [000] .n.1 82316.744997: cpu_idle: state=4294967295 cpu_id=0
88894          <idle>-0     (-----) [000] d..2 82316.745006: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
88895 neuralnetworks@-13088 (  788) [000] d..2 82316.745055: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88896          <idle>-0     (-----) [000] d..1 82316.745069: cpu_idle: state=0 cpu_id=0
88897<...>-5340 ( 788) [005] d..2 82316.745151: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88898          <idle>-0     (-----) [000] dnh2 82316.745172: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
88899          <idle>-0     (-----) [000] .n.1 82316.745180: cpu_idle: state=4294967295 cpu_id=0
88900<...>-5340 ( 788) [005] d..2 82316.745180: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
88901          <idle>-0     (-----) [000] d..2 82316.745191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
88902          <idle>-0     (-----) [005] d..1 82316.745193: cpu_idle: state=0 cpu_id=5
88903          <idle>-0     (-----) [002] d.h4 82316.745227: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88904<...>-87 ( 87) [000] d..2 82316.745231: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88905          <idle>-0     (-----) [002] dnh5 82316.745238: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
88906          <idle>-0     (-----) [000] d..1 82316.745243: cpu_idle: state=0 cpu_id=0
88907          <idle>-0     (-----) [002] .n.1 82316.745246: cpu_idle: state=4294967295 cpu_id=2
88908          <idle>-0     (-----) [002] d..2 82316.745258: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
88909<...>-86 ( 86) [002] d..2 82316.745291: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
88910          <idle>-0     (-----) [002] d..1 82316.745303: cpu_idle: state=0 cpu_id=2
88911          <idle>-0     (-----) [005] ...1 82316.745519: cpu_idle: state=4294967295 cpu_id=5
88912          <idle>-0     (-----) [005] d..1 82316.745522: cpu_idle: state=0 cpu_id=5
88913          <idle>-0     (-----) [001] ...1 82316.745865: cpu_idle: state=4294967295 cpu_id=1
88914          <idle>-0     (-----) [001] d..1 82316.745869: cpu_idle: state=0 cpu_id=1
88915          <idle>-0     (-----) [000] ...1 82316.746576: cpu_idle: state=4294967295 cpu_id=0
88916          <idle>-0     (-----) [000] d..1 82316.746581: cpu_idle: state=0 cpu_id=0
88917          <idle>-0     (-----) [002] d.h4 82316.746908: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88918          <idle>-0     (-----) [005] dnh2 82316.746928: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
88919          <idle>-0     (-----) [005] .n.1 82316.746931: cpu_idle: state=4294967295 cpu_id=5
88920          <idle>-0     (-----) [005] d..2 82316.746939: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
88921          <idle>-0     (-----) [002] ...1 82316.746955: cpu_idle: state=4294967295 cpu_id=2
88922          <idle>-0     (-----) [002] d..1 82316.746960: cpu_idle: state=0 cpu_id=2
88923<...>-5340 ( 788) [005] d..1 82316.746988: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
88924          <idle>-0     (-----) [000] dnh2 82316.747010: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
88925          <idle>-0     (-----) [000] .n.1 82316.747016: cpu_idle: state=4294967295 cpu_id=0
88926          <idle>-0     (-----) [000] d..2 82316.747026: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
88927<...>-5340 ( 788) [005] ...1 82316.747076: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
88928<...>-5340 ( 788) [005] ...1 82316.747080: tracing_mark_write: E|788
88929 neuralnetworks@-13088 (  788) [000] d..2 82316.747081: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
88930          <idle>-0     (-----) [000] d..1 82316.747093: cpu_idle: state=0 cpu_id=0
88931<...>-5340 ( 788) [005] .... 82316.747096: binder_transaction: transaction=1571202 dest_node=1571200 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
88932<...>-5340 ( 788) [005] .... 82316.747098: binder_transaction_alloc_buf: transaction=1571202 data_size=60 offsets_size=0
88933<...>-5340 ( 788) [005] d..4 82316.747102: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
88934<...>-5340 ( 788) [005] d..5 82316.747114: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
88935          <idle>-0     (-----) [004] .n.1 82316.747120: cpu_idle: state=4294967295 cpu_id=4
88936          <idle>-0     (-----) [004] d..2 82316.747128: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
88937           <...>-27571 (-----) [004] .... 82316.747133: binder_transaction_received: transaction=1571202
88938<...>-5340 ( 788) [005] ...1 82316.747136: tracing_mark_write: E|788
88939<...>-5340 ( 788) [005] .... 82316.747142: binder_transaction: transaction=1571203 dest_node=0 dest_proc=27550 dest_thread=27752 reply=1 flags=0x0 code=0x0
88940<...>-5340 ( 788) [005] .... 82316.747144: binder_transaction_alloc_buf: transaction=1571203 data_size=8 offsets_size=0
88941<...>-5340 ( 788) [005] d..2 82316.747146: sched_waking: comm=id.nn.benchmark pid=27752 prio=110 target_cpu=005
88942           <...>-27571 (-----) [004] ...1 82316.747151: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
88943<...>-5340 ( 788) [005] d..3 82316.747153: sched_wakeup: comm=id.nn.benchmark pid=27752 prio=110 target_cpu=005
88944<...>-5340 ( 788) [005] .... 82316.747155: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
88945           <...>-27571 (-----) [004] ...1 82316.747157: tracing_mark_write: E|27550
88946           <...>-27571 (-----) [004] d..2 82316.747186: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88947          <idle>-0     (-----) [004] d..1 82316.747193: cpu_idle: state=0 cpu_id=4
88948<...>-5340 ( 788) [005] d..2 82316.747197: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27752 next_prio=110
88949           <...>-27752 (-----) [005] .... 82316.747207: binder_transaction_received: transaction=1571203
88950           <...>-27752 (-----) [005] ...1 82316.747241: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
88951           <...>-27752 (-----) [005] ...1 82316.747247: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
88952           <...>-27752 (-----) [005] ...1 82316.747272: tracing_mark_write: E|27550
88953           <...>-27752 (-----) [005] ...1 82316.747276: tracing_mark_write: E|27550
88954           <...>-27752 (-----) [005] ...1 82316.747279: tracing_mark_write: E|27550
88955           <...>-27752 (-----) [005] ...1 82316.747462: tracing_mark_write: E|27550
88956           <...>-27752 (-----) [005] d..1 82316.747474: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88957           <...>-27752 (-----) [005] d..2 82316.747489: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88958          <idle>-0     (-----) [004] .n.1 82316.747495: cpu_idle: state=4294967295 cpu_id=4
88959          <idle>-0     (-----) [004] d..2 82316.747501: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
88960           <...>-27550 (-----) [004] d..2 82316.747520: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88961          <idle>-0     (-----) [004] d..1 82316.747529: cpu_idle: state=0 cpu_id=4
88962           <...>-27752 (-----) [005] d..1 82316.747573: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88963           <...>-27752 (-----) [005] d..2 82316.747582: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
88964          <idle>-0     (-----) [004] .n.1 82316.747588: cpu_idle: state=4294967295 cpu_id=4
88965          <idle>-0     (-----) [004] d..2 82316.747595: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
88966           <...>-27752 (-----) [005] d..2 82316.747622: sched_switch: prev_comm=id.nn.benchmark prev_pid=27752 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
88967           <...>-27550 (-----) [004] ...1 82316.747628: tracing_mark_write: E|27550
88968           <...>-27550 (-----) [004] ...1 82316.747632: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
88969           <...>-27550 (-----) [004] ...1 82316.747638: tracing_mark_write: E|27550
88970          <idle>-0     (-----) [005] d..1 82316.747642: cpu_idle: state=0 cpu_id=5
88971           <...>-27550 (-----) [004] ...1 82316.747643: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
88972           <...>-27550 (-----) [004] ...1 82316.747647: tracing_mark_write: E|27550
88973           <...>-27550 (-----) [004] ...1 82316.747651: tracing_mark_write: E|27550
88974           <...>-27550 (-----) [004] ...1 82316.747764: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
88975           <...>-27550 (-----) [004] ...1 82316.747821: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
88976           <...>-27550 (-----) [004] ...1 82316.747825: tracing_mark_write: E|27550
88977           <...>-27550 (-----) [004] ...1 82316.747829: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
88978           <...>-27550 (-----) [004] ...1 82316.747834: tracing_mark_write: E|27550
88979           <...>-27550 (-----) [004] ...1 82316.747838: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
88980           <...>-27550 (-----) [004] ...1 82316.747842: tracing_mark_write: E|27550
88981           <...>-27550 (-----) [004] ...1 82316.747845: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
88982          <idle>-0     (-----) [005] .n.1 82316.747931: cpu_idle: state=4294967295 cpu_id=5
88983           <...>-27550 (-----) [004] ...1 82316.747932: tracing_mark_write: E|27550
88984           <...>-27550 (-----) [004] ...1 82316.747936: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
88985          <idle>-0     (-----) [005] d..2 82316.747940: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27753 next_prio=110
88986           <...>-27550 (-----) [004] d..2 82316.747952: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
88987          <idle>-0     (-----) [004] d..1 82316.747966: cpu_idle: state=0 cpu_id=4
88988           <...>-27753 (-----) [005] ...1 82316.748001: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
88989           <...>-27753 (-----) [005] ...1 82316.748016: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
88990           <...>-27753 (-----) [005] ...1 82316.748019: tracing_mark_write: E|27550
88991           <...>-27753 (-----) [005] .... 82316.748039: binder_transaction: transaction=1571204 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
88992           <...>-27753 (-----) [005] .... 82316.748042: binder_transaction_alloc_buf: transaction=1571204 data_size=48 offsets_size=0
88993           <...>-27753 (-----) [005] ...2 82316.748045: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
88994           <...>-27753 (-----) [005] d..4 82316.748047: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
88995           <...>-27753 (-----) [005] dn.5 82316.748058: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
88996           <...>-27753 (-----) [005] d..2 82316.748064: sched_switch: prev_comm=id.nn.benchmark prev_pid=27753 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
88997<...>-770 ( 770) [005] .... 82316.748074: binder_transaction_received: transaction=1571204
88998<...>-770 ( 770) [005] ...1 82316.748096: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
88999<...>-770 ( 770) [005] d..2 82316.748166: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
89000          <idle>-0     (-----) [000] dnh2 82316.748192: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
89001          <idle>-0     (-----) [000] .n.1 82316.748199: cpu_idle: state=4294967295 cpu_id=0
89002<...>-770 ( 770) [005] ...1 82316.748204: tracing_mark_write: E|770
89003          <idle>-0     (-----) [000] d..2 82316.748209: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
89004<...>-770 ( 770) [005] .... 82316.748212: binder_transaction: transaction=1571205 dest_node=0 dest_proc=27550 dest_thread=27753 reply=1 flags=0x0 code=0x0
89005<...>-770 ( 770) [005] .... 82316.748215: binder_transaction_alloc_buf: transaction=1571205 data_size=168 offsets_size=32
89006<...>-770 ( 770) [005] .... 82316.748221: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
89007<...>-770 ( 770) [005] d..2 82316.748256: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27753 next_prio=110
89008           <...>-27753 (-----) [005] .... 82316.748266: binder_transaction_received: transaction=1571205
89009<...>-581 ( 571) [000] d..2 82316.748285: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89010          <idle>-0     (-----) [000] d..1 82316.748301: cpu_idle: state=0 cpu_id=0
89011           <...>-27753 (-----) [005] ...1 82316.748332: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
89012           <...>-27753 (-----) [005] ...1 82316.748337: tracing_mark_write: E|27550
89013           <...>-27753 (-----) [005] .... 82316.748351: binder_transaction: transaction=1571206 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
89014           <...>-27753 (-----) [005] .... 82316.748354: binder_transaction_alloc_buf: transaction=1571206 data_size=48 offsets_size=0
89015           <...>-27753 (-----) [005] ...2 82316.748356: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
89016           <...>-27753 (-----) [005] d..4 82316.748358: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
89017           <...>-27753 (-----) [005] dn.5 82316.748368: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
89018           <...>-27753 (-----) [005] d..2 82316.748374: sched_switch: prev_comm=id.nn.benchmark prev_pid=27753 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
89019<...>-770 ( 770) [005] .... 82316.748382: binder_transaction_received: transaction=1571206
89020<...>-770 ( 770) [005] ...1 82316.748399: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
89021<...>-770 ( 770) [005] d.s2 82316.748467: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
89022          <idle>-0     (-----) [003] d.s2 82316.748467: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
89023          <idle>-0     (-----) [003] dns3 82316.748484: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
89024          <idle>-0     (-----) [003] dns2 82316.748487: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
89025          <idle>-0     (-----) [000] dnh2 82316.748506: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
89026          <idle>-0     (-----) [000] .n.1 82316.748513: cpu_idle: state=4294967295 cpu_id=0
89027<...>-770 ( 770) [005] d..2 82316.748518: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
89028          <idle>-0     (-----) [003] dns3 82316.748521: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
89029          <idle>-0     (-----) [000] d..2 82316.748532: 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
89030          <idle>-0     (-----) [003] dnh2 82316.748552: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
89031     rcu_preempt-7     (    7) [000] d..2 82316.748553: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
89032          <idle>-0     (-----) [003] .n.1 82316.748558: cpu_idle: state=4294967295 cpu_id=3
89033<...>-770 ( 770) [005] ...1 82316.748567: tracing_mark_write: E|770
89034          <idle>-0     (-----) [003] d..2 82316.748568: 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
89035<...>-770 ( 770) [005] .... 82316.748581: binder_transaction: transaction=1571207 dest_node=0 dest_proc=27550 dest_thread=27753 reply=1 flags=0x0 code=0x0
89036<...>-8 ( 8) [003] d..2 82316.748586: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
89037<...>-770 ( 770) [005] .... 82316.748588: binder_transaction_alloc_buf: transaction=1571207 data_size=168 offsets_size=32
89038<...>-770 ( 770) [005] .... 82316.748597: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
89039<...>-770 ( 770) [005] d..2 82316.748631: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27753 next_prio=110
89040           <...>-27753 (-----) [005] .... 82316.748642: binder_transaction_received: transaction=1571207
89041<...>-581 ( 571) [003] d..2 82316.748691: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89042          <idle>-0     (-----) [003] d..1 82316.748706: cpu_idle: state=0 cpu_id=3
89043  kworker/u16:15-1311  ( 1311) [000] d..2 82316.748817: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
89044          <idle>-0     (-----) [000] d..1 82316.748831: cpu_idle: state=0 cpu_id=0
89045          <idle>-0     (-----) [001] d.s3 82316.748842: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
89046          <idle>-0     (-----) [001] d.s4 82316.748854: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
89047          <idle>-0     (-----) [001] d.s4 82316.748863: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
89048          <idle>-0     (-----) [000] .n.1 82316.748869: cpu_idle: state=4294967295 cpu_id=0
89049          <idle>-0     (-----) [001] ...1 82316.748872: cpu_idle: state=4294967295 cpu_id=1
89050          <idle>-0     (-----) [001] d..1 82316.748877: cpu_idle: state=0 cpu_id=1
89051          <idle>-0     (-----) [000] d..2 82316.748880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
89052           <...>-27753 (-----) [005] ...1 82316.748920: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
89053           <...>-27753 (-----) [005] ...1 82316.748934: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
89054           <...>-27753 (-----) [005] ...1 82316.748937: tracing_mark_write: E|27550
89055  kworker/u16:15-1311  ( 1311) [000] .... 82316.748959: clk_set_rate: l3_cluster0_vote_clk 403200000
89056  kworker/u16:15-1311  ( 1311) [000] .... 82316.748965: clk_set_rate: l3_clk 576000000
89057           <...>-27753 (-----) [005] .... 82316.749007: binder_transaction: transaction=1571208 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
89058           <...>-27753 (-----) [005] .... 82316.749012: binder_transaction_alloc_buf: transaction=1571208 data_size=556 offsets_size=104
89059  kworker/u16:15-1311  ( 1311) [000] d..2 82316.749024: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89060           <...>-27753 (-----) [005] ...2 82316.749027: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
89061           <...>-27753 (-----) [005] d..4 82316.749029: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89062          <idle>-0     (-----) [000] d..1 82316.749037: cpu_idle: state=0 cpu_id=0
89063           <...>-27753 (-----) [005] dn.5 82316.749041: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89064           <...>-27753 (-----) [005] d..2 82316.749048: sched_switch: prev_comm=id.nn.benchmark prev_pid=27753 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89065<...>-5340 ( 788) [005] .... 82316.749058: binder_transaction_received: transaction=1571208
89066<...>-5340 ( 788) [005] ...1 82316.749101: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
89067<...>-5340 ( 788) [005] d..2 82316.749145: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89068          <idle>-0     (-----) [000] d.h5 82316.749154: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
89069<...>-5340 ( 788) [005] d..2 82316.749169: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27753 next_prio=110
89070          <idle>-0     (-----) [000] d.h6 82316.749173: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
89071          <idle>-0     (-----) [000] d.h5 82316.749177: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
89072          <idle>-0     (-----) [003] .n.1 82316.749178: cpu_idle: state=4294967295 cpu_id=3
89073          <idle>-0     (-----) [000] d.h6 82316.749189: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
89074          <idle>-0     (-----) [003] d..2 82316.749189: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
89075          <idle>-0     (-----) [001] .n.1 82316.749195: cpu_idle: state=4294967295 cpu_id=1
89076           <...>-27753 (-----) [005] d..2 82316.749197: sched_switch: prev_comm=id.nn.benchmark prev_pid=27753 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89077          <idle>-0     (-----) [001] d..2 82316.749206: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
89078          <idle>-0     (-----) [000] dnh2 82316.749212: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89079          <idle>-0     (-----) [005] d..1 82316.749215: cpu_idle: state=0 cpu_id=5
89080          <idle>-0     (-----) [000] .n.1 82316.749218: cpu_idle: state=4294967295 cpu_id=0
89081  crtc_event:111-322   (  322) [003] d..2 82316.749226: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89082          <idle>-0     (-----) [000] d..2 82316.749230: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
89083          <idle>-0     (-----) [003] d..1 82316.749235: cpu_idle: state=0 cpu_id=3
89084<...>-87 ( 87) [000] d..2 82316.749272: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89085          <idle>-0     (-----) [002] d.h4 82316.749277: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89086          <idle>-0     (-----) [000] d..1 82316.749283: cpu_idle: state=0 cpu_id=0
89087          <idle>-0     (-----) [002] dnh5 82316.749292: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89088          <idle>-0     (-----) [002] .n.1 82316.749299: cpu_idle: state=4294967295 cpu_id=2
89089          <idle>-0     (-----) [002] d..2 82316.749312: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
89090<...>-86 ( 86) [002] d..2 82316.749347: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89091 crtc_commit:111-321   (  321) [001] d..2 82316.749351: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
89092          <idle>-0     (-----) [001] d..1 82316.749359: cpu_idle: state=0 cpu_id=1
89093          <idle>-0     (-----) [002] d.h5 82316.749367: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89094          <idle>-0     (-----) [005] dnh2 82316.749387: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89095          <idle>-0     (-----) [005] .n.1 82316.749392: cpu_idle: state=4294967295 cpu_id=5
89096          <idle>-0     (-----) [005] d..2 82316.749400: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89097          <idle>-0     (-----) [002] d..1 82316.749411: cpu_idle: state=0 cpu_id=2
89098<...>-5340 ( 788) [005] d..1 82316.749450: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89099          <idle>-0     (-----) [000] dnh2 82316.749476: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89100          <idle>-0     (-----) [000] .n.1 82316.749482: cpu_idle: state=4294967295 cpu_id=0
89101          <idle>-0     (-----) [000] d..2 82316.749492: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
89102 neuralnetworks@-13088 (  788) [000] d..2 82316.749539: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89103          <idle>-0     (-----) [000] d..1 82316.749550: cpu_idle: state=0 cpu_id=0
89104<...>-5340 ( 788) [005] d..2 82316.749596: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89105          <idle>-0     (-----) [000] dnh2 82316.749616: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89106          <idle>-0     (-----) [000] .n.1 82316.749622: cpu_idle: state=4294967295 cpu_id=0
89107<...>-5340 ( 788) [005] d..2 82316.749622: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89108          <idle>-0     (-----) [000] d..2 82316.749632: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
89109          <idle>-0     (-----) [005] d..1 82316.749637: cpu_idle: state=0 cpu_id=5
89110          <idle>-0     (-----) [002] d.h4 82316.749669: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89111<...>-87 ( 87) [000] d..2 82316.749669: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89112          <idle>-0     (-----) [002] dnh5 82316.749679: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89113          <idle>-0     (-----) [000] d..1 82316.749679: cpu_idle: state=0 cpu_id=0
89114          <idle>-0     (-----) [002] .n.1 82316.749688: cpu_idle: state=4294967295 cpu_id=2
89115          <idle>-0     (-----) [002] d..2 82316.749699: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
89116<...>-86 ( 86) [002] d..2 82316.749730: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89117          <idle>-0     (-----) [002] d..1 82316.749742: cpu_idle: state=0 cpu_id=2
89118          <idle>-0     (-----) [005] ...1 82316.749970: cpu_idle: state=4294967295 cpu_id=5
89119          <idle>-0     (-----) [005] d..1 82316.749974: cpu_idle: state=0 cpu_id=5
89120          <idle>-0     (-----) [002] d.h4 82316.751415: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89121          <idle>-0     (-----) [005] dnh2 82316.751435: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89122          <idle>-0     (-----) [005] .n.1 82316.751439: cpu_idle: state=4294967295 cpu_id=5
89123          <idle>-0     (-----) [005] d..2 82316.751446: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89124          <idle>-0     (-----) [002] ...1 82316.751463: cpu_idle: state=4294967295 cpu_id=2
89125          <idle>-0     (-----) [002] d..1 82316.751468: cpu_idle: state=0 cpu_id=2
89126          <idle>-0     (-----) [000] d.h5 82316.751482: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
89127<...>-5340 ( 788) [005] d..1 82316.751494: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89128          <idle>-0     (-----) [000] d.h6 82316.751499: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
89129          <idle>-0     (-----) [001] .n.1 82316.751505: cpu_idle: state=4294967295 cpu_id=1
89130          <idle>-0     (-----) [001] d..2 82316.751512: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
89131          <idle>-0     (-----) [000] dnh2 82316.751523: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89132          <idle>-0     (-----) [000] .n.1 82316.751528: cpu_idle: state=4294967295 cpu_id=0
89133          <idle>-0     (-----) [000] d..2 82316.751549: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
89134<...>-5340 ( 788) [005] ...1 82316.751583: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
89135<...>-5340 ( 788) [005] ...1 82316.751587: tracing_mark_write: E|788
89136 neuralnetworks@-13088 (  788) [000] d..2 82316.751598: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89137<...>-5340 ( 788) [005] .... 82316.751602: binder_transaction: transaction=1571211 dest_node=1571209 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
89138<...>-5340 ( 788) [005] .... 82316.751606: binder_transaction_alloc_buf: transaction=1571211 data_size=60 offsets_size=0
89139<...>-5340 ( 788) [005] d..4 82316.751609: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
89140          <idle>-0     (-----) [000] d..1 82316.751609: cpu_idle: state=0 cpu_id=0
89141 crtc_commit:111-321   (  321) [001] d..2 82316.751611: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89142          <idle>-0     (-----) [001] d..1 82316.751619: cpu_idle: state=0 cpu_id=1
89143<...>-5340 ( 788) [005] d..5 82316.751621: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
89144          <idle>-0     (-----) [004] .n.1 82316.751627: cpu_idle: state=4294967295 cpu_id=4
89145          <idle>-0     (-----) [004] d..2 82316.751636: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
89146           <...>-27571 (-----) [004] .... 82316.751641: binder_transaction_received: transaction=1571211
89147<...>-5340 ( 788) [005] ...1 82316.751643: tracing_mark_write: E|788
89148<...>-5340 ( 788) [005] .... 82316.751649: binder_transaction: transaction=1571212 dest_node=0 dest_proc=27550 dest_thread=27753 reply=1 flags=0x0 code=0x0
89149<...>-5340 ( 788) [005] .... 82316.751651: binder_transaction_alloc_buf: transaction=1571212 data_size=8 offsets_size=0
89150<...>-5340 ( 788) [005] d..2 82316.751653: sched_waking: comm=id.nn.benchmark pid=27753 prio=110 target_cpu=005
89151           <...>-27571 (-----) [004] ...1 82316.751659: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
89152<...>-5340 ( 788) [005] d..3 82316.751660: sched_wakeup: comm=id.nn.benchmark pid=27753 prio=110 target_cpu=005
89153<...>-5340 ( 788) [005] .... 82316.751662: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
89154           <...>-27571 (-----) [004] ...1 82316.751665: tracing_mark_write: E|27550
89155           <...>-27571 (-----) [004] d..2 82316.751693: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89156          <idle>-0     (-----) [004] d..1 82316.751701: cpu_idle: state=0 cpu_id=4
89157<...>-5340 ( 788) [005] d..2 82316.751703: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27753 next_prio=110
89158           <...>-27753 (-----) [005] .... 82316.751713: binder_transaction_received: transaction=1571212
89159           <...>-27753 (-----) [005] ...1 82316.751748: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
89160           <...>-27753 (-----) [005] ...1 82316.751754: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
89161          <idle>-0     (-----) [000] d.h5 82316.751788: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
89162          <idle>-0     (-----) [000] d.h6 82316.751806: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
89163          <idle>-0     (-----) [003] .n.1 82316.751812: cpu_idle: state=4294967295 cpu_id=3
89164           <...>-27753 (-----) [005] ...1 82316.751818: tracing_mark_write: E|27550
89165           <...>-27753 (-----) [005] ...1 82316.751822: tracing_mark_write: E|27550
89166           <...>-27753 (-----) [005] ...1 82316.751826: tracing_mark_write: E|27550
89167          <idle>-0     (-----) [003] d..2 82316.751869: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
89168          <idle>-0     (-----) [000] ...1 82316.751876: cpu_idle: state=4294967295 cpu_id=0
89169          <idle>-0     (-----) [000] d..1 82316.751881: cpu_idle: state=0 cpu_id=0
89170          <idle>-0     (-----) [001] d.H3 82316.751885: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
89171  crtc_event:111-322   (  322) [003] d..2 82316.751896: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89172          <idle>-0     (-----) [001] dnH4 82316.751901: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
89173          <idle>-0     (-----) [003] d..1 82316.751903: cpu_idle: state=0 cpu_id=3
89174          <idle>-0     (-----) [001] dns3 82316.751909: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
89175          <idle>-0     (-----) [001] dns4 82316.751948: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
89176          <idle>-0     (-----) [003] .n.1 82316.751954: cpu_idle: state=4294967295 cpu_id=3
89177          <idle>-0     (-----) [003] d..2 82316.751962: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
89178          <idle>-0     (-----) [001] .n.1 82316.751967: cpu_idle: state=4294967295 cpu_id=1
89179          <idle>-0     (-----) [001] d..2 82316.751975: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
89180  crtc_event:111-322   (  322) [003] d..2 82316.751986: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89181          <idle>-0     (-----) [003] d..1 82316.751992: cpu_idle: state=0 cpu_id=3
89182         sugov:0-576   (  576) [001] .... 82316.752008: clk_set_rate: pwrcl_clk 1132800000
89183           <...>-27753 (-----) [005] ...1 82316.752010: tracing_mark_write: E|27550
89184         sugov:0-576   (  576) [001] .... 82316.752020: clk_set_rate: cpu3_pwrcl_clk 902400000
89185           <...>-27753 (-----) [005] d..1 82316.752022: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89186         sugov:0-576   (  576) [001] .... 82316.752030: clk_set_rate: cpu2_pwrcl_clk 902400000
89187         sugov:0-576   (  576) [001] .... 82316.752038: clk_set_rate: cpu1_pwrcl_clk 902400000
89188           <...>-27753 (-----) [005] d..2 82316.752038: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89189          <idle>-0     (-----) [004] .n.1 82316.752042: cpu_idle: state=4294967295 cpu_id=4
89190         sugov:0-576   (  576) [001] .... 82316.752045: clk_set_rate: cpu0_pwrcl_clk 1132800000
89191          <idle>-0     (-----) [004] d..2 82316.752050: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
89192         sugov:0-576   (  576) [001] .... 82316.752054: cpu_frequency: state=1132800 cpu_id=0
89193           <...>-27550 (-----) [004] d..2 82316.752073: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89194         sugov:0-576   (  576) [001] .... 82316.752077: cpu_frequency: state=1132800 cpu_id=1
89195         sugov:0-576   (  576) [001] .... 82316.752081: cpu_frequency: state=1132800 cpu_id=2
89196          <idle>-0     (-----) [004] d..1 82316.752082: cpu_idle: state=0 cpu_id=4
89197         sugov:0-576   (  576) [001] .... 82316.752085: cpu_frequency: state=1132800 cpu_id=3
89198         sugov:0-576   (  576) [001] d..2 82316.752113: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89199          <idle>-0     (-----) [001] d..1 82316.752123: cpu_idle: state=0 cpu_id=1
89200           <...>-27753 (-----) [005] d..1 82316.752128: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89201           <...>-27753 (-----) [005] d..2 82316.752138: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89202          <idle>-0     (-----) [004] .n.1 82316.752143: cpu_idle: state=4294967295 cpu_id=4
89203          <idle>-0     (-----) [004] d..2 82316.752151: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
89204           <...>-27753 (-----) [005] d..2 82316.752175: sched_switch: prev_comm=id.nn.benchmark prev_pid=27753 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
89205           <...>-27550 (-----) [004] ...1 82316.752199: tracing_mark_write: E|27550
89206           <...>-27550 (-----) [004] ...1 82316.752203: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
89207          <idle>-0     (-----) [005] d..1 82316.752207: cpu_idle: state=0 cpu_id=5
89208           <...>-27550 (-----) [004] ...1 82316.752209: tracing_mark_write: E|27550
89209           <...>-27550 (-----) [004] ...1 82316.752213: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
89210           <...>-27550 (-----) [004] ...1 82316.752217: tracing_mark_write: E|27550
89211           <...>-27550 (-----) [004] ...1 82316.752222: tracing_mark_write: E|27550
89212           <...>-27550 (-----) [004] ...1 82316.752335: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
89213           <...>-27550 (-----) [004] ...1 82316.752393: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
89214           <...>-27550 (-----) [004] ...1 82316.752397: tracing_mark_write: E|27550
89215           <...>-27550 (-----) [004] ...1 82316.752402: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
89216           <...>-27550 (-----) [004] ...1 82316.752408: tracing_mark_write: E|27550
89217           <...>-27550 (-----) [004] ...1 82316.752411: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
89218           <...>-27550 (-----) [004] ...1 82316.752415: tracing_mark_write: E|27550
89219           <...>-27550 (-----) [004] ...1 82316.752418: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
89220          <idle>-0     (-----) [005] .n.1 82316.752504: cpu_idle: state=4294967295 cpu_id=5
89221           <...>-27550 (-----) [004] ...1 82316.752506: tracing_mark_write: E|27550
89222           <...>-27550 (-----) [004] ...1 82316.752510: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
89223          <idle>-0     (-----) [005] d..2 82316.752514: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27754 next_prio=110
89224           <...>-27550 (-----) [004] d..2 82316.752527: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89225          <idle>-0     (-----) [004] d..1 82316.752541: cpu_idle: state=0 cpu_id=4
89226           <...>-27754 (-----) [005] ...1 82316.752574: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
89227           <...>-27754 (-----) [005] ...1 82316.752588: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
89228           <...>-27754 (-----) [005] ...1 82316.752592: tracing_mark_write: E|27550
89229           <...>-27754 (-----) [005] .... 82316.752613: binder_transaction: transaction=1571213 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
89230           <...>-27754 (-----) [005] .... 82316.752616: binder_transaction_alloc_buf: transaction=1571213 data_size=48 offsets_size=0
89231           <...>-27754 (-----) [005] ...2 82316.752619: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
89232           <...>-27754 (-----) [005] d..4 82316.752621: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
89233           <...>-27754 (-----) [005] dn.5 82316.752633: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
89234           <...>-27754 (-----) [005] d..2 82316.752640: sched_switch: prev_comm=id.nn.benchmark prev_pid=27754 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
89235<...>-770 ( 770) [005] .... 82316.752650: binder_transaction_received: transaction=1571213
89236<...>-770 ( 770) [005] ...1 82316.752672: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
89237<...>-770 ( 770) [005] d..2 82316.752744: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
89238          <idle>-0     (-----) [000] dnh2 82316.752782: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
89239          <idle>-0     (-----) [000] .n.1 82316.752787: cpu_idle: state=4294967295 cpu_id=0
89240          <idle>-0     (-----) [000] d..2 82316.752797: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
89241<...>-770 ( 770) [005] ...1 82316.752797: tracing_mark_write: E|770
89242<...>-770 ( 770) [005] .... 82316.752805: binder_transaction: transaction=1571214 dest_node=0 dest_proc=27550 dest_thread=27754 reply=1 flags=0x0 code=0x0
89243<...>-770 ( 770) [005] .... 82316.752808: binder_transaction_alloc_buf: transaction=1571214 data_size=168 offsets_size=32
89244<...>-770 ( 770) [005] .... 82316.752815: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
89245<...>-770 ( 770) [005] d..2 82316.752851: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27754 next_prio=110
89246           <...>-27754 (-----) [005] .... 82316.752862: binder_transaction_received: transaction=1571214
89247<...>-581 ( 571) [000] d..2 82316.752869: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89248          <idle>-0     (-----) [000] d..1 82316.752878: cpu_idle: state=0 cpu_id=0
89249           <...>-27754 (-----) [005] ...1 82316.752930: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
89250           <...>-27754 (-----) [005] ...1 82316.752935: tracing_mark_write: E|27550
89251           <...>-27754 (-----) [005] .... 82316.752950: binder_transaction: transaction=1571215 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
89252           <...>-27754 (-----) [005] .... 82316.752953: binder_transaction_alloc_buf: transaction=1571215 data_size=48 offsets_size=0
89253           <...>-27754 (-----) [005] ...2 82316.752955: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
89254           <...>-27754 (-----) [005] d..4 82316.752957: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
89255           <...>-27754 (-----) [005] dn.5 82316.752967: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
89256           <...>-27754 (-----) [005] d..2 82316.752974: sched_switch: prev_comm=id.nn.benchmark prev_pid=27754 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
89257<...>-770 ( 770) [005] .... 82316.752982: binder_transaction_received: transaction=1571215
89258<...>-770 ( 770) [005] ...1 82316.752998: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
89259<...>-770 ( 770) [005] d..2 82316.753056: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
89260          <idle>-0     (-----) [000] dnh2 82316.753077: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
89261          <idle>-0     (-----) [000] .n.1 82316.753082: cpu_idle: state=4294967295 cpu_id=0
89262<...>-770 ( 770) [005] ...1 82316.753089: tracing_mark_write: E|770
89263          <idle>-0     (-----) [000] d..2 82316.753089: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
89264<...>-770 ( 770) [005] .... 82316.753096: binder_transaction: transaction=1571216 dest_node=0 dest_proc=27550 dest_thread=27754 reply=1 flags=0x0 code=0x0
89265<...>-770 ( 770) [005] .... 82316.753099: binder_transaction_alloc_buf: transaction=1571216 data_size=168 offsets_size=32
89266<...>-770 ( 770) [005] .... 82316.753104: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
89267<...>-581 ( 571) [000] d..2 82316.753133: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89268<...>-770 ( 770) [005] d..2 82316.753139: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27754 next_prio=110
89269          <idle>-0     (-----) [000] d..1 82316.753140: cpu_idle: state=0 cpu_id=0
89270           <...>-27754 (-----) [005] .... 82316.753149: binder_transaction_received: transaction=1571216
89271           <...>-27754 (-----) [005] ...1 82316.753422: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
89272           <...>-27754 (-----) [005] ...1 82316.753432: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
89273           <...>-27754 (-----) [005] ...1 82316.753436: tracing_mark_write: E|27550
89274           <...>-27754 (-----) [005] .... 82316.753496: binder_transaction: transaction=1571217 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
89275           <...>-27754 (-----) [005] .... 82316.753499: binder_transaction_alloc_buf: transaction=1571217 data_size=556 offsets_size=104
89276           <...>-27754 (-----) [005] ...2 82316.753513: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
89277           <...>-27754 (-----) [005] d..4 82316.753516: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89278           <...>-27754 (-----) [005] dn.5 82316.753529: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89279           <...>-27754 (-----) [005] d..2 82316.753536: sched_switch: prev_comm=id.nn.benchmark prev_pid=27754 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89280<...>-5340 ( 788) [005] .... 82316.753545: binder_transaction_received: transaction=1571217
89281          <idle>-0     (-----) [001] d.h2 82316.753575: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
89282          <idle>-0     (-----) [001] dnh3 82316.753587: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
89283<...>-5340 ( 788) [005] ...1 82316.753587: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
89284          <idle>-0     (-----) [001] .n.1 82316.753594: cpu_idle: state=4294967295 cpu_id=1
89285          <idle>-0     (-----) [001] d..2 82316.753602: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
89286        DispSync-8879  ( 8858) [001] d..1 82316.753622: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
89287<...>-5340 ( 788) [005] d..2 82316.753631: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89288        DispSync-8879  ( 8858) [001] d..2 82316.753635: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
89289          <idle>-0     (-----) [003] .n.1 82316.753640: cpu_idle: state=4294967295 cpu_id=3
89290          <idle>-0     (-----) [003] d..2 82316.753646: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
89291        DispSync-8879  ( 8858) [001] d..2 82316.753663: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89292  appEventThread-8881  ( 8858) [003] d.h1 82316.753671: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
89293<...>-5340 ( 788) [005] d..2 82316.753671: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27754 next_prio=110
89294          <idle>-0     (-----) [001] d..1 82316.753672: cpu_idle: state=0 cpu_id=1
89295           <...>-27754 (-----) [005] d..2 82316.753695: sched_switch: prev_comm=id.nn.benchmark prev_pid=27754 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89296  appEventThread-8881  ( 8858) [003] d..3 82316.753711: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
89297          <idle>-0     (-----) [005] d..1 82316.753713: cpu_idle: state=0 cpu_id=5
89298  appEventThread-8881  ( 8858) [003] d..4 82316.753737: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
89299          <idle>-0     (-----) [000] .n.1 82316.753742: cpu_idle: state=4294967295 cpu_id=0
89300          <idle>-0     (-----) [000] d..2 82316.753750: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
89301  appEventThread-8881  ( 8858) [003] d..2 82316.753763: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
89302<...>-87 ( 87) [003] d..2 82316.753800: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89303          <idle>-0     (-----) [002] d.h4 82316.753809: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89304          <idle>-0     (-----) [003] d..1 82316.753810: cpu_idle: state=0 cpu_id=3
89305          <idle>-0     (-----) [002] dnh5 82316.753823: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89306          <idle>-0     (-----) [002] .n.1 82316.753829: cpu_idle: state=4294967295 cpu_id=2
89307          <idle>-0     (-----) [002] d..2 82316.753840: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
89308<...>-86 ( 86) [002] d..2 82316.753867: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89309          <idle>-0     (-----) [002] d..1 82316.753876: cpu_idle: state=0 cpu_id=2
89310          <idle>-0     (-----) [002] d.h4 82316.753896: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89311          <idle>-0     (-----) [005] dnh2 82316.753916: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89312          <idle>-0     (-----) [005] .n.1 82316.753921: cpu_idle: state=4294967295 cpu_id=5
89313          <idle>-0     (-----) [002] ...1 82316.753926: cpu_idle: state=4294967295 cpu_id=2
89314          <idle>-0     (-----) [005] d..2 82316.753928: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89315          <idle>-0     (-----) [002] d..1 82316.753931: cpu_idle: state=0 cpu_id=2
89316<...>-5340 ( 788) [005] d..1 82316.753980: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89317<...>-9105 ( 9105) [000] dnh1 82316.754009: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89318<...>-9105 ( 9105) [000] d..2 82316.754021: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
89319 neuralnetworks@-13088 (  788) [000] d..2 82316.754057: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
89320<...>-5340 ( 788) [005] d..2 82316.754126: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
89321          <idle>-0     (-----) [003] dnh2 82316.754145: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
89322          <idle>-0     (-----) [003] .n.1 82316.754151: cpu_idle: state=4294967295 cpu_id=3
89323<...>-5340 ( 788) [005] d..2 82316.754151: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89324<...>-9105 ( 9105) [000] .... 82316.754156: binder_transaction: transaction=1571220 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
89325          <idle>-0     (-----) [003] d..2 82316.754157: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
89326<...>-9105 ( 9105) [000] .... 82316.754161: binder_transaction_alloc_buf: transaction=1571220 data_size=80 offsets_size=0
89327          <idle>-0     (-----) [005] d..1 82316.754166: cpu_idle: state=0 cpu_id=5
89328<...>-9105 ( 9105) [000] d..4 82316.754166: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
89329<...>-87 ( 87) [003] d..2 82316.754187: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89330          <idle>-0     (-----) [002] d.h4 82316.754191: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89331          <idle>-0     (-----) [003] d..1 82316.754194: cpu_idle: state=0 cpu_id=3
89332<...>-9105 ( 9105) [000] d..5 82316.754194: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
89333          <idle>-0     (-----) [002] dnh5 82316.754199: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89334          <idle>-0     (-----) [001] .n.1 82316.754199: cpu_idle: state=4294967295 cpu_id=1
89335          <idle>-0     (-----) [002] .n.1 82316.754205: cpu_idle: state=4294967295 cpu_id=2
89336          <idle>-0     (-----) [001] d..2 82316.754210: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
89337          <idle>-0     (-----) [002] d..2 82316.754215: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
89338<...>-13083 ( 8858) [001] .... 82316.754216: binder_transaction_received: transaction=1571220
89339<...>-9105 ( 9105) [000] d..3 82316.754230: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
89340<...>-86 ( 86) [002] d..2 82316.754242: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89341<...>-13083 ( 8858) [001] d..1 82316.754247: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
89342          <idle>-0     (-----) [002] d..1 82316.754251: cpu_idle: state=0 cpu_id=2
89343<...>-9105 ( 9105) [000] d..4 82316.754253: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
89344          <idle>-0     (-----) [003] .n.1 82316.754257: cpu_idle: state=4294967295 cpu_id=3
89345          <idle>-0     (-----) [003] d..2 82316.754265: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
89346<...>-13083 ( 8858) [001] d..2 82316.754281: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
89347          <idle>-0     (-----) [002] .n.1 82316.754286: cpu_idle: state=4294967295 cpu_id=2
89348          <idle>-0     (-----) [002] d..2 82316.754294: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
89349    RenderThread-9436  ( 9105) [003] d..2 82316.754310: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89350<...>-13083 ( 8858) [001] d..2 82316.754317: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89351          <idle>-0     (-----) [003] d..1 82316.754318: cpu_idle: state=0 cpu_id=3
89352          <idle>-0     (-----) [001] d..1 82316.754327: cpu_idle: state=0 cpu_id=1
89353  appEventThread-8881  ( 8858) [002] d..2 82316.754350: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89354          <idle>-0     (-----) [002] d..1 82316.754362: cpu_idle: state=0 cpu_id=2
89355<...>-9105 ( 9105) [000] d..3 82316.754378: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
89356<...>-9105 ( 9105) [000] d..4 82316.754394: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
89357          <idle>-0     (-----) [003] .n.1 82316.754399: cpu_idle: state=4294967295 cpu_id=3
89358          <idle>-0     (-----) [003] d..2 82316.754407: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
89359<...>-9105 ( 9105) [000] d..2 82316.754422: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89360          <idle>-0     (-----) [000] d..1 82316.754433: cpu_idle: state=0 cpu_id=0
89361          <idle>-0     (-----) [005] ...1 82316.754512: cpu_idle: state=4294967295 cpu_id=5
89362          <idle>-0     (-----) [005] d..1 82316.754516: cpu_idle: state=0 cpu_id=5
89363    RenderThread-9436  ( 9105) [003] d..1 82316.754525: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
89364    RenderThread-9436  ( 9105) [003] d..2 82316.754542: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
89365          <idle>-0     (-----) [000] .n.1 82316.754547: cpu_idle: state=4294967295 cpu_id=0
89366          <idle>-0     (-----) [000] d..2 82316.754556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
89367    RenderThread-9436  ( 9105) [003] .... 82316.754604: binder_transaction: transaction=1571221 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
89368    RenderThread-9436  ( 9105) [003] .... 82316.754608: binder_transaction_alloc_buf: transaction=1571221 data_size=104 offsets_size=0
89369    RenderThread-9436  ( 9105) [003] d..4 82316.754612: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
89370<...>-9105 ( 9105) [000] d..2 82316.754626: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89371    RenderThread-9436  ( 9105) [003] dn.5 82316.754630: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
89372          <idle>-0     (-----) [000] d..1 82316.754635: cpu_idle: state=0 cpu_id=0
89373    RenderThread-9436  ( 9105) [003] d..2 82316.754638: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
89374<...>-13083 ( 8858) [003] .... 82316.754645: binder_transaction_received: transaction=1571221
89375<...>-13083 ( 8858) [003] .... 82316.754710: binder_transaction: transaction=1571222 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
89376<...>-13083 ( 8858) [003] .... 82316.754714: binder_transaction_alloc_buf: transaction=1571222 data_size=52 offsets_size=8
89377<...>-13083 ( 8858) [003] d..2 82316.754756: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
89378    RenderThread-9436  ( 9105) [003] .... 82316.754764: binder_transaction_received: transaction=1571222
89379          <idle>-0     (-----) [000] d.s2 82316.755133: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
89380    RenderThread-9436  ( 9105) [003] d.s1 82316.755148: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
89381          <idle>-0     (-----) [000] dns3 82316.755149: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
89382          <idle>-0     (-----) [000] .n.1 82316.755166: cpu_idle: state=4294967295 cpu_id=0
89383          <idle>-0     (-----) [000] d..2 82316.755174: 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
89384     rcu_preempt-7     (    7) [000] d..2 82316.755183: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
89385    RenderThread-9436  ( 9105) [003] d.s2 82316.755188: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
89386     rcu_preempt-7     (    7) [000] d..3 82316.755205: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
89387     rcu_preempt-7     (    7) [000] d..2 82316.755218: 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
89388<...>-8 ( 8) [000] d..2 82316.755224: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
89389<...>-8 ( 8) [000] d..3 82316.755253: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
89390<...>-8 ( 8) [000] d..2 82316.755262: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
89391         rcuop/0-10    (   10) [000] d..2 82316.755267: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
89392         rcuop/0-10    (   10) [000] d..3 82316.755280: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
89393         rcuop/0-10    (   10) [000] d..2 82316.755289: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
89394<...>-46 ( 46) [000] d..2 82316.755299: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
89395<...>-46 ( 46) [000] d..3 82316.755309: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
89396<...>-46 ( 46) [000] d..2 82316.755316: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
89397         rcuop/1-21    (   21) [000] d..2 82316.755334: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
89398<...>-8 ( 8) [000] d..2 82316.755355: 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
89399          <idle>-0     (-----) [000] d..1 82316.755367: cpu_idle: state=0 cpu_id=0
89400          <idle>-0     (-----) [002] ...1 82316.755505: cpu_idle: state=4294967295 cpu_id=2
89401          <idle>-0     (-----) [002] d..1 82316.755508: cpu_idle: state=0 cpu_id=2
89402    RenderThread-9436  ( 9105) [003] d..2 82316.755791: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
89403          <idle>-0     (-----) [003] d..1 82316.755806: cpu_idle: state=0 cpu_id=3
89404          <idle>-0     (-----) [002] d.h4 82316.755822: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89405          <idle>-0     (-----) [005] dnh2 82316.755843: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89406          <idle>-0     (-----) [005] .n.1 82316.755846: cpu_idle: state=4294967295 cpu_id=5
89407          <idle>-0     (-----) [005] d..2 82316.755854: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89408          <idle>-0     (-----) [002] ...1 82316.755855: cpu_idle: state=4294967295 cpu_id=2
89409          <idle>-0     (-----) [002] d..1 82316.755859: cpu_idle: state=0 cpu_id=2
89410          <idle>-0     (-----) [003] d.h2 82316.755872: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
89411          <idle>-0     (-----) [003] d.h3 82316.755881: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
89412          <idle>-0     (-----) [003] dnh3 82316.755885: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
89413          <idle>-0     (-----) [003] .n.1 82316.755891: cpu_idle: state=4294967295 cpu_id=3
89414          <idle>-0     (-----) [003] d..2 82316.755902: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
89415<...>-5340 ( 788) [005] d..1 82316.755906: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89416          <idle>-0     (-----) [000] d.h3 82316.755911: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
89417          <idle>-0     (-----) [000] d.h4 82316.755931: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
89418          <idle>-0     (-----) [002] .n.1 82316.755935: cpu_idle: state=4294967295 cpu_id=2
89419          <idle>-0     (-----) [002] d..2 82316.755946: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
89420          <idle>-0     (-----) [000] dnh2 82316.755950: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89421          <idle>-0     (-----) [000] .n.1 82316.755960: cpu_idle: state=4294967295 cpu_id=0
89422          <idle>-0     (-----) [000] d..2 82316.755984: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
89423<...>-5340 ( 788) [005] ...1 82316.755998: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
89424<...>-5340 ( 788) [005] ...1 82316.756003: tracing_mark_write: E|788
89425 kgsl_worker_thr-258   (  258) [002] d..2 82316.756007: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
89426<...>-5340 ( 788) [005] .... 82316.756019: binder_transaction: transaction=1571223 dest_node=1571218 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
89427<...>-5340 ( 788) [005] .... 82316.756022: binder_transaction_alloc_buf: transaction=1571223 data_size=60 offsets_size=0
89428<...>-5340 ( 788) [005] d..4 82316.756025: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
89429 kgsl_worker_thr-258   (  258) [002] d..3 82316.756030: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
89430 neuralnetworks@-13088 (  788) [000] d..2 82316.756038: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
89431<...>-5340 ( 788) [005] d..5 82316.756039: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
89432          <idle>-0     (-----) [004] .n.1 82316.756045: cpu_idle: state=4294967295 cpu_id=4
89433          <idle>-0     (-----) [004] d..2 82316.756054: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
89434           <...>-27571 (-----) [004] .... 82316.756059: binder_transaction_received: transaction=1571223
89435<...>-5340 ( 788) [005] ...1 82316.756063: tracing_mark_write: E|788
89436 kgsl_worker_thr-258   (  258) [002] d..2 82316.756063: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89437<...>-5340 ( 788) [005] .... 82316.756069: binder_transaction: transaction=1571224 dest_node=0 dest_proc=27550 dest_thread=27754 reply=1 flags=0x0 code=0x0
89438<...>-5340 ( 788) [005] .... 82316.756071: binder_transaction_alloc_buf: transaction=1571224 data_size=8 offsets_size=0
89439<...>-5340 ( 788) [005] d..2 82316.756073: sched_waking: comm=id.nn.benchmark pid=27754 prio=110 target_cpu=005
89440          <idle>-0     (-----) [002] d..1 82316.756075: cpu_idle: state=0 cpu_id=2
89441           <...>-27571 (-----) [004] ...1 82316.756079: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
89442  kworker/u16:15-1311  ( 1311) [000] d..2 82316.756079: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89443<...>-5340 ( 788) [005] d..3 82316.756080: sched_wakeup: comm=id.nn.benchmark pid=27754 prio=110 target_cpu=005
89444<...>-5340 ( 788) [005] .... 82316.756082: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
89445           <...>-27571 (-----) [004] ...1 82316.756085: tracing_mark_write: E|27550
89446    RenderThread-9436  ( 9105) [003] .... 82316.756090: binder_transaction: transaction=1571225 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
89447          <idle>-0     (-----) [000] d..1 82316.756091: cpu_idle: state=0 cpu_id=0
89448    RenderThread-9436  ( 9105) [003] .... 82316.756095: binder_transaction_alloc_buf: transaction=1571225 data_size=192 offsets_size=8
89449    RenderThread-9436  ( 9105) [003] d..4 82316.756104: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
89450           <...>-27571 (-----) [004] d..2 82316.756115: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89451    RenderThread-9436  ( 9105) [003] dn.5 82316.756117: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
89452          <idle>-0     (-----) [004] d..1 82316.756123: cpu_idle: state=0 cpu_id=4
89453    RenderThread-9436  ( 9105) [003] d..2 82316.756125: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
89454<...>-5340 ( 788) [005] d..2 82316.756125: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27754 next_prio=110
89455<...>-13083 ( 8858) [003] .... 82316.756132: binder_transaction_received: transaction=1571225
89456           <...>-27754 (-----) [005] .... 82316.756136: binder_transaction_received: transaction=1571224
89457           <...>-27754 (-----) [005] ...1 82316.756174: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
89458           <...>-27754 (-----) [005] ...1 82316.756181: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
89459           <...>-27754 (-----) [005] ...1 82316.756207: tracing_mark_write: E|27550
89460           <...>-27754 (-----) [005] ...1 82316.756211: tracing_mark_write: E|27550
89461           <...>-27754 (-----) [005] ...1 82316.756215: tracing_mark_write: E|27550
89462<...>-13083 ( 8858) [003] .... 82316.756260: binder_transaction: transaction=1571226 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
89463<...>-13083 ( 8858) [003] .... 82316.756264: binder_transaction_alloc_buf: transaction=1571226 data_size=68 offsets_size=0
89464<...>-13083 ( 8858) [003] d..2 82316.756299: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
89465    RenderThread-9436  ( 9105) [003] .... 82316.756307: binder_transaction_received: transaction=1571226
89466    RenderThread-9436  ( 9105) [003] d..2 82316.756401: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89467           <...>-27754 (-----) [005] ...1 82316.756407: tracing_mark_write: E|27550
89468          <idle>-0     (-----) [003] d..1 82316.756417: cpu_idle: state=0 cpu_id=3
89469           <...>-27754 (-----) [005] d..1 82316.756420: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89470           <...>-27754 (-----) [005] d..2 82316.756436: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89471          <idle>-0     (-----) [004] .n.1 82316.756441: cpu_idle: state=4294967295 cpu_id=4
89472          <idle>-0     (-----) [004] d..2 82316.756448: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
89473           <...>-27550 (-----) [004] d..2 82316.756468: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89474          <idle>-0     (-----) [004] d..1 82316.756476: cpu_idle: state=0 cpu_id=4
89475           <...>-27754 (-----) [005] d..1 82316.756529: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89476           <...>-27754 (-----) [005] d..2 82316.756539: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89477          <idle>-0     (-----) [004] .n.1 82316.756544: cpu_idle: state=4294967295 cpu_id=4
89478          <idle>-0     (-----) [004] d..2 82316.756552: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
89479           <...>-27754 (-----) [005] d..2 82316.756579: sched_switch: prev_comm=id.nn.benchmark prev_pid=27754 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
89480           <...>-27550 (-----) [004] ...1 82316.756585: tracing_mark_write: E|27550
89481           <...>-27550 (-----) [004] ...1 82316.756590: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
89482           <...>-27550 (-----) [004] ...1 82316.756596: tracing_mark_write: E|27550
89483           <...>-27550 (-----) [004] ...1 82316.756599: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
89484          <idle>-0     (-----) [005] d..1 82316.756601: cpu_idle: state=0 cpu_id=5
89485           <...>-27550 (-----) [004] ...1 82316.756604: tracing_mark_write: E|27550
89486           <...>-27550 (-----) [004] ...1 82316.756608: tracing_mark_write: E|27550
89487           <...>-27550 (-----) [004] ...1 82316.756721: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
89488           <...>-27550 (-----) [004] ...1 82316.756778: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
89489           <...>-27550 (-----) [004] ...1 82316.756783: tracing_mark_write: E|27550
89490           <...>-27550 (-----) [004] ...1 82316.756787: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
89491           <...>-27550 (-----) [004] ...1 82316.756793: tracing_mark_write: E|27550
89492           <...>-27550 (-----) [004] ...1 82316.756797: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
89493           <...>-27550 (-----) [004] ...1 82316.756802: tracing_mark_write: E|27550
89494           <...>-27550 (-----) [004] ...1 82316.756805: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
89495          <idle>-0     (-----) [005] .n.1 82316.756907: cpu_idle: state=4294967295 cpu_id=5
89496           <...>-27550 (-----) [004] ...1 82316.756909: tracing_mark_write: E|27550
89497           <...>-27550 (-----) [004] ...1 82316.756913: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
89498          <idle>-0     (-----) [005] d..2 82316.756916: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27755 next_prio=110
89499           <...>-27550 (-----) [004] d..2 82316.756930: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89500          <idle>-0     (-----) [004] d..1 82316.756944: cpu_idle: state=0 cpu_id=4
89501           <...>-27755 (-----) [005] ...1 82316.756980: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
89502           <...>-27755 (-----) [005] ...1 82316.756995: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
89503           <...>-27755 (-----) [005] ...1 82316.756999: tracing_mark_write: E|27550
89504           <...>-27755 (-----) [005] .... 82316.757022: binder_transaction: transaction=1571227 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
89505           <...>-27755 (-----) [005] .... 82316.757026: binder_transaction_alloc_buf: transaction=1571227 data_size=48 offsets_size=0
89506           <...>-27755 (-----) [005] ...2 82316.757029: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
89507           <...>-27755 (-----) [005] d..4 82316.757032: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
89508           <...>-27755 (-----) [005] dn.5 82316.757043: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
89509           <...>-27755 (-----) [005] d..2 82316.757050: sched_switch: prev_comm=id.nn.benchmark prev_pid=27755 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
89510<...>-770 ( 770) [005] .... 82316.757060: binder_transaction_received: transaction=1571227
89511<...>-770 ( 770) [005] ...1 82316.757087: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
89512<...>-770 ( 770) [005] d..2 82316.757176: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
89513          <idle>-0     (-----) [002] ...1 82316.757190: cpu_idle: state=4294967295 cpu_id=2
89514          <idle>-0     (-----) [002] d..1 82316.757193: cpu_idle: state=0 cpu_id=2
89515          <idle>-0     (-----) [000] dnh2 82316.757203: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
89516          <idle>-0     (-----) [000] .n.1 82316.757209: cpu_idle: state=4294967295 cpu_id=0
89517          <idle>-0     (-----) [000] d..2 82316.757218: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
89518<...>-770 ( 770) [005] ...1 82316.757219: tracing_mark_write: E|770
89519<...>-770 ( 770) [005] .... 82316.757227: binder_transaction: transaction=1571228 dest_node=0 dest_proc=27550 dest_thread=27755 reply=1 flags=0x0 code=0x0
89520<...>-770 ( 770) [005] .... 82316.757230: binder_transaction_alloc_buf: transaction=1571228 data_size=168 offsets_size=32
89521<...>-770 ( 770) [005] .... 82316.757237: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
89522<...>-770 ( 770) [005] d..2 82316.757274: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27755 next_prio=110
89523           <...>-27755 (-----) [005] .... 82316.757284: binder_transaction_received: transaction=1571228
89524<...>-581 ( 571) [000] d..2 82316.757306: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89525          <idle>-0     (-----) [000] d..1 82316.757318: cpu_idle: state=0 cpu_id=0
89526           <...>-27755 (-----) [005] ...1 82316.757360: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
89527           <...>-27755 (-----) [005] ...1 82316.757365: tracing_mark_write: E|27550
89528           <...>-27755 (-----) [005] .... 82316.757380: binder_transaction: transaction=1571229 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
89529           <...>-27755 (-----) [005] .... 82316.757382: binder_transaction_alloc_buf: transaction=1571229 data_size=48 offsets_size=0
89530           <...>-27755 (-----) [005] ...2 82316.757385: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
89531           <...>-27755 (-----) [005] d..4 82316.757387: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
89532           <...>-27755 (-----) [005] dn.5 82316.757397: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
89533           <...>-27755 (-----) [005] d..2 82316.757404: sched_switch: prev_comm=id.nn.benchmark prev_pid=27755 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
89534<...>-770 ( 770) [005] .... 82316.757412: binder_transaction_received: transaction=1571229
89535<...>-770 ( 770) [005] ...1 82316.757430: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
89536<...>-770 ( 770) [005] d..2 82316.757511: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
89537          <idle>-0     (-----) [000] dnh2 82316.757534: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
89538          <idle>-0     (-----) [000] .n.1 82316.757539: cpu_idle: state=4294967295 cpu_id=0
89539<...>-770 ( 770) [005] ...1 82316.757545: tracing_mark_write: E|770
89540          <idle>-0     (-----) [000] d..2 82316.757548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
89541<...>-770 ( 770) [005] .... 82316.757553: binder_transaction: transaction=1571230 dest_node=0 dest_proc=27550 dest_thread=27755 reply=1 flags=0x0 code=0x0
89542<...>-770 ( 770) [005] .... 82316.757555: binder_transaction_alloc_buf: transaction=1571230 data_size=168 offsets_size=32
89543<...>-770 ( 770) [005] .... 82316.757561: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
89544          <idle>-0     (-----) [003] ...1 82316.757562: cpu_idle: state=4294967295 cpu_id=3
89545          <idle>-0     (-----) [003] d..1 82316.757566: cpu_idle: state=0 cpu_id=3
89546          <idle>-0     (-----) [001] d.h2 82316.757568: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
89547          <idle>-0     (-----) [001] dnh3 82316.757579: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
89548          <idle>-0     (-----) [001] .n.1 82316.757586: cpu_idle: state=4294967295 cpu_id=1
89549          <idle>-0     (-----) [001] d..2 82316.757596: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
89550<...>-770 ( 770) [005] d..2 82316.757597: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27755 next_prio=110
89551<...>-581 ( 571) [000] d..2 82316.757598: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89552           <...>-27755 (-----) [005] .... 82316.757607: binder_transaction_received: transaction=1571230
89553          <idle>-0     (-----) [000] d..1 82316.757608: cpu_idle: state=0 cpu_id=0
89554        DispSync-8879  ( 8858) [001] d..1 82316.757609: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
89555        DispSync-8879  ( 8858) [001] d..2 82316.757624: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
89556          <idle>-0     (-----) [003] .n.1 82316.757628: cpu_idle: state=4294967295 cpu_id=3
89557          <idle>-0     (-----) [003] d..2 82316.757637: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
89558        DispSync-8879  ( 8858) [001] d..2 82316.757649: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
89559          <idle>-0     (-----) [001] d..1 82316.757659: cpu_idle: state=0 cpu_id=1
89560   sfEventThread-8882  ( 8858) [003] d..3 82316.757677: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
89561   sfEventThread-8882  ( 8858) [003] d..4 82316.757697: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
89562          <idle>-0     (-----) [000] .n.1 82316.757702: cpu_idle: state=4294967295 cpu_id=0
89563          <idle>-0     (-----) [000] d..2 82316.757711: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
89564   sfEventThread-8882  ( 8858) [003] d..2 82316.757727: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89565          <idle>-0     (-----) [003] d..1 82316.757740: cpu_idle: state=0 cpu_id=3
89566           <...>-27755 (-----) [005] ...1 82316.757882: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
89567           <...>-27755 (-----) [005] ...1 82316.757891: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
89568           <...>-27755 (-----) [005] ...1 82316.757895: tracing_mark_write: E|27550
89569           <...>-27755 (-----) [005] .... 82316.757958: binder_transaction: transaction=1571231 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
89570           <...>-27755 (-----) [005] .... 82316.757961: binder_transaction_alloc_buf: transaction=1571231 data_size=556 offsets_size=104
89571           <...>-27755 (-----) [005] ...2 82316.757976: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
89572           <...>-27755 (-----) [005] d..4 82316.757978: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89573           <...>-27755 (-----) [005] dn.5 82316.757989: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89574           <...>-27755 (-----) [005] d..2 82316.757997: sched_switch: prev_comm=id.nn.benchmark prev_pid=27755 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89575<...>-5340 ( 788) [005] .... 82316.758006: binder_transaction_received: transaction=1571231
89576  surfaceflinger-8858  ( 8858) [000] d..1 82316.758030: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
89577  surfaceflinger-8858  ( 8858) [000] d..2 82316.758050: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
89578<...>-5340 ( 788) [005] ...1 82316.758053: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
89579          <idle>-0     (-----) [003] .n.1 82316.758056: cpu_idle: state=4294967295 cpu_id=3
89580          <idle>-0     (-----) [003] d..2 82316.758064: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
89581   sfEventThread-8882  ( 8858) [003] d..2 82316.758093: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89582<...>-5340 ( 788) [005] d..2 82316.758099: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
89583          <idle>-0     (-----) [003] d..1 82316.758103: cpu_idle: state=0 cpu_id=3
89584<...>-5340 ( 788) [005] d..2 82316.758138: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27755 next_prio=110
89585  surfaceflinger-8858  ( 8858) [000] d.h1 82316.758140: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89586           <...>-27755 (-----) [005] d..2 82316.758160: sched_switch: prev_comm=id.nn.benchmark prev_pid=27755 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89587          <idle>-0     (-----) [005] d..1 82316.758177: cpu_idle: state=0 cpu_id=5
89588  surfaceflinger-8858  ( 8858) [000] ...1 82316.758239: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
89589  surfaceflinger-8858  ( 8858) [000] ...1 82316.758244: tracing_mark_write: E|8858
89590  surfaceflinger-8858  ( 8858) [000] .... 82316.758291: binder_transaction: transaction=1571234 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
89591  surfaceflinger-8858  ( 8858) [000] .... 82316.758296: binder_transaction_alloc_buf: transaction=1571234 data_size=540 offsets_size=96
89592  surfaceflinger-8858  ( 8858) [000] ...2 82316.758320: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
89593  surfaceflinger-8858  ( 8858) [000] d..4 82316.758329: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
89594  surfaceflinger-8858  ( 8858) [000] d..5 82316.758346: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
89595          <idle>-0     (-----) [002] .n.1 82316.758351: cpu_idle: state=4294967295 cpu_id=2
89596          <idle>-0     (-----) [002] d..2 82316.758360: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
89597  surfaceflinger-8858  ( 8858) [000] d..2 82316.758365: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
89598 [email protected]   (  619) [002] .... 82316.758368: binder_transaction_received: transaction=1571234
89599<...>-87 ( 87) [000] d..2 82316.758408: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89600 [email protected]   (  619) [002] d.h3 82316.758414: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89601          <idle>-0     (-----) [000] d..1 82316.758422: cpu_idle: state=0 cpu_id=0
89602 [email protected]   (  619) [002] d.h4 82316.758432: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89603 [email protected]   (  619) [002] d.s2 82316.758473: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
89604 [email protected]   (  619) [002] d.s3 82316.758503: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
89605 [email protected]   (  619) [002] d.H4 82316.758525: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89606          <idle>-0     (-----) [005] dnh2 82316.758546: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89607          <idle>-0     (-----) [005] .n.1 82316.758550: cpu_idle: state=4294967295 cpu_id=5
89608          <idle>-0     (-----) [005] d..2 82316.758559: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89609 [email protected]   (  619) [002] ...1 82316.758570: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
89610<...>-5340 ( 788) [005] d..1 82316.758613: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89611 [email protected]   (  619) [002] d.h1 82316.758649: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
89612 [email protected]   (  619) [002] ...1 82316.758678: tracing_mark_write: B|619|HWCSession::PresentDisplay::
89613<...>-5340 ( 788) [005] d..2 82316.758776: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89614          <idle>-0     (-----) [000] dnh2 82316.758798: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89615          <idle>-0     (-----) [000] .n.1 82316.758803: cpu_idle: state=4294967295 cpu_id=0
89616<...>-5340 ( 788) [005] d..2 82316.758808: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89617          <idle>-0     (-----) [000] d..2 82316.758814: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
89618          <idle>-0     (-----) [005] d..1 82316.758823: cpu_idle: state=0 cpu_id=5
89619 [email protected]   (  619) [002] ...1 82316.758824: tracing_mark_write: B|619|HWDeviceDRM::Commit::
89620<...>-87 ( 87) [000] d..2 82316.758846: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89621          <idle>-0     (-----) [000] d..1 82316.758853: cpu_idle: state=0 cpu_id=0
89622 [email protected]   (  619) [002] ...1 82316.758856: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
89623          <idle>-0     (-----) [005] ...1 82316.759222: cpu_idle: state=4294967295 cpu_id=5
89624          <idle>-0     (-----) [005] d..1 82316.759226: cpu_idle: state=0 cpu_id=5
89625 [email protected]   (  619) [002] d..2 82316.759365: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
89626 [email protected]   (  619) [002] d..3 82316.759387: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
89627          <idle>-0     (-----) [001] .n.1 82316.759392: cpu_idle: state=4294967295 cpu_id=1
89628          <idle>-0     (-----) [001] d..2 82316.759402: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
89629          <idle>-0     (-----) [003] ...1 82316.759453: cpu_idle: state=4294967295 cpu_id=3
89630          <idle>-0     (-----) [003] d..1 82316.759457: cpu_idle: state=0 cpu_id=3
89631 [email protected]   (  619) [002] ...1 82316.759478: tracing_mark_write: E|619
89632 [email protected]   (  619) [002] ...1 82316.759484: tracing_mark_write: E|619
89633 [email protected]   (  619) [002] ...1 82316.759535: tracing_mark_write: E|619
89634 [email protected]   (  619) [002] ...1 82316.759572: tracing_mark_write: E|619
89635 [email protected]   (  619) [002] .... 82316.759585: binder_transaction: transaction=1571235 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
89636 [email protected]   (  619) [002] .... 82316.759589: binder_transaction_alloc_buf: transaction=1571235 data_size=576 offsets_size=112
89637 [email protected]   (  619) [002] d..2 82316.759605: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
89638 [email protected]   (  619) [002] d..3 82316.759620: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
89639 [email protected]   (  619) [002] .... 82316.759624: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
89640          <idle>-0     (-----) [000] .n.1 82316.759625: cpu_idle: state=4294967295 cpu_id=0
89641          <idle>-0     (-----) [000] d..2 82316.759631: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
89642  surfaceflinger-8858  ( 8858) [000] .... 82316.759638: binder_transaction_received: transaction=1571235
89643 [email protected]   (  619) [002] d..2 82316.759686: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
89644  kworker/u16:15-1311  ( 1311) [002] d..2 82316.759874: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
89645 neuralnetworks@-13088 (  788) [002] d..2 82316.759914: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
89646<...>-86 ( 86) [002] d..2 82316.759962: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89647          <idle>-0     (-----) [002] d..1 82316.759976: cpu_idle: state=0 cpu_id=2
89648  surfaceflinger-8858  ( 8858) [000] d..2 82316.760027: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89649          <idle>-0     (-----) [000] d..1 82316.760039: cpu_idle: state=0 cpu_id=0
89650 crtc_commit:111-321   (  321) [001] d..2 82316.760092: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
89651          <idle>-0     (-----) [001] d..1 82316.760104: cpu_idle: state=0 cpu_id=1
89652          <idle>-0     (-----) [002] d.h4 82316.760517: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89653          <idle>-0     (-----) [005] dnh2 82316.760537: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89654          <idle>-0     (-----) [005] .n.1 82316.760541: cpu_idle: state=4294967295 cpu_id=5
89655          <idle>-0     (-----) [005] d..2 82316.760549: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89656          <idle>-0     (-----) [002] ...1 82316.760552: cpu_idle: state=4294967295 cpu_id=2
89657          <idle>-0     (-----) [002] d..1 82316.760558: cpu_idle: state=0 cpu_id=2
89658<...>-5340 ( 788) [005] d..1 82316.760597: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
89659          <idle>-0     (-----) [002] dnh2 82316.760618: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
89660          <idle>-0     (-----) [002] .n.1 82316.760623: cpu_idle: state=4294967295 cpu_id=2
89661          <idle>-0     (-----) [002] d..2 82316.760636: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
89662 neuralnetworks@-13088 (  788) [002] d..2 82316.760684: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89663          <idle>-0     (-----) [002] d..1 82316.760694: cpu_idle: state=0 cpu_id=2
89664<...>-5340 ( 788) [005] ...1 82316.760694: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
89665<...>-5340 ( 788) [005] ...1 82316.760698: tracing_mark_write: E|788
89666<...>-5340 ( 788) [005] .... 82316.760715: binder_transaction: transaction=1571236 dest_node=1571232 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
89667<...>-5340 ( 788) [005] .... 82316.760717: binder_transaction_alloc_buf: transaction=1571236 data_size=60 offsets_size=0
89668<...>-5340 ( 788) [005] d..4 82316.760721: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
89669<...>-5340 ( 788) [005] d..5 82316.760735: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
89670          <idle>-0     (-----) [004] .n.1 82316.760740: cpu_idle: state=4294967295 cpu_id=4
89671          <idle>-0     (-----) [004] d..2 82316.760749: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
89672           <...>-27571 (-----) [004] .... 82316.760754: binder_transaction_received: transaction=1571236
89673<...>-5340 ( 788) [005] ...1 82316.760757: tracing_mark_write: E|788
89674<...>-5340 ( 788) [005] .... 82316.760763: binder_transaction: transaction=1571237 dest_node=0 dest_proc=27550 dest_thread=27755 reply=1 flags=0x0 code=0x0
89675<...>-5340 ( 788) [005] .... 82316.760765: binder_transaction_alloc_buf: transaction=1571237 data_size=8 offsets_size=0
89676<...>-5340 ( 788) [005] d..2 82316.760767: sched_waking: comm=id.nn.benchmark pid=27755 prio=110 target_cpu=005
89677           <...>-27571 (-----) [004] ...1 82316.760773: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
89678<...>-5340 ( 788) [005] d..3 82316.760774: sched_wakeup: comm=id.nn.benchmark pid=27755 prio=110 target_cpu=005
89679<...>-5340 ( 788) [005] .... 82316.760776: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
89680           <...>-27571 (-----) [004] ...1 82316.760779: tracing_mark_write: E|27550
89681           <...>-27571 (-----) [004] d..2 82316.760809: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89682          <idle>-0     (-----) [004] d..1 82316.760816: cpu_idle: state=0 cpu_id=4
89683<...>-5340 ( 788) [005] d..2 82316.760818: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27755 next_prio=110
89684           <...>-27755 (-----) [005] .... 82316.760828: binder_transaction_received: transaction=1571237
89685           <...>-27755 (-----) [005] ...1 82316.760865: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
89686           <...>-27755 (-----) [005] ...1 82316.760871: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
89687           <...>-27755 (-----) [005] ...1 82316.760897: tracing_mark_write: E|27550
89688           <...>-27755 (-----) [005] ...1 82316.760901: tracing_mark_write: E|27550
89689           <...>-27755 (-----) [005] ...1 82316.760905: tracing_mark_write: E|27550
89690           <...>-27755 (-----) [005] ...1 82316.761099: tracing_mark_write: E|27550
89691           <...>-27755 (-----) [005] d..1 82316.761112: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89692           <...>-27755 (-----) [005] d..2 82316.761128: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89693          <idle>-0     (-----) [004] .n.1 82316.761133: cpu_idle: state=4294967295 cpu_id=4
89694          <idle>-0     (-----) [004] d..2 82316.761141: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
89695           <...>-27550 (-----) [004] d..2 82316.761160: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89696          <idle>-0     (-----) [004] d..1 82316.761169: cpu_idle: state=0 cpu_id=4
89697           <...>-27755 (-----) [005] d..1 82316.761219: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89698           <...>-27755 (-----) [005] d..2 82316.761228: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89699          <idle>-0     (-----) [004] .n.1 82316.761233: cpu_idle: state=4294967295 cpu_id=4
89700          <idle>-0     (-----) [004] d..2 82316.761241: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
89701           <...>-27755 (-----) [005] d..2 82316.761268: sched_switch: prev_comm=id.nn.benchmark prev_pid=27755 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
89702           <...>-27550 (-----) [004] ...1 82316.761274: tracing_mark_write: E|27550
89703           <...>-27550 (-----) [004] ...1 82316.761279: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
89704           <...>-27550 (-----) [004] ...1 82316.761285: tracing_mark_write: E|27550
89705          <idle>-0     (-----) [005] d..1 82316.761288: cpu_idle: state=0 cpu_id=5
89706           <...>-27550 (-----) [004] ...1 82316.761288: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
89707           <...>-27550 (-----) [004] ...1 82316.761293: tracing_mark_write: E|27550
89708           <...>-27550 (-----) [004] ...1 82316.761297: tracing_mark_write: E|27550
89709           <...>-27550 (-----) [004] ...1 82316.761410: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
89710           <...>-27550 (-----) [004] ...1 82316.761468: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
89711           <...>-27550 (-----) [004] ...1 82316.761473: tracing_mark_write: E|27550
89712           <...>-27550 (-----) [004] ...1 82316.761477: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
89713           <...>-27550 (-----) [004] ...1 82316.761483: tracing_mark_write: E|27550
89714           <...>-27550 (-----) [004] ...1 82316.761487: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
89715           <...>-27550 (-----) [004] ...1 82316.761491: tracing_mark_write: E|27550
89716           <...>-27550 (-----) [004] ...1 82316.761495: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
89717          <idle>-0     (-----) [005] .n.1 82316.761589: cpu_idle: state=4294967295 cpu_id=5
89718           <...>-27550 (-----) [004] ...1 82316.761591: tracing_mark_write: E|27550
89719           <...>-27550 (-----) [004] ...1 82316.761595: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
89720          <idle>-0     (-----) [005] d..2 82316.761598: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27756 next_prio=110
89721           <...>-27550 (-----) [004] d..2 82316.761610: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89722          <idle>-0     (-----) [004] d..1 82316.761624: cpu_idle: state=0 cpu_id=4
89723           <...>-27756 (-----) [005] ...1 82316.761660: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
89724           <...>-27756 (-----) [005] ...1 82316.761676: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
89725           <...>-27756 (-----) [005] ...1 82316.761680: tracing_mark_write: E|27550
89726           <...>-27756 (-----) [005] .... 82316.761702: binder_transaction: transaction=1571238 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
89727           <...>-27756 (-----) [005] .... 82316.761706: binder_transaction_alloc_buf: transaction=1571238 data_size=48 offsets_size=0
89728           <...>-27756 (-----) [005] ...2 82316.761710: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
89729           <...>-27756 (-----) [005] d..4 82316.761713: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
89730           <...>-27756 (-----) [005] dn.5 82316.761723: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
89731           <...>-27756 (-----) [005] d..2 82316.761730: sched_switch: prev_comm=id.nn.benchmark prev_pid=27756 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
89732<...>-770 ( 770) [005] .... 82316.761740: binder_transaction_received: transaction=1571238
89733<...>-770 ( 770) [005] ...1 82316.761764: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
89734          <idle>-0     (-----) [000] d.s2 82316.761799: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
89735          <idle>-0     (-----) [000] dns3 82316.761816: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
89736          <idle>-0     (-----) [000] dns2 82316.761819: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
89737          <idle>-0     (-----) [000] dns3 82316.761829: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
89738          <idle>-0     (-----) [000] .n.1 82316.761839: cpu_idle: state=4294967295 cpu_id=0
89739          <idle>-0     (-----) [000] d..2 82316.761847: 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
89740<...>-8 ( 8) [000] d..2 82316.761865: 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
89741<...>-770 ( 770) [005] d..2 82316.761883: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
89742     rcu_preempt-7     (    7) [000] d..2 82316.761892: 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
89743          <idle>-0     (-----) [000] dnh2 82316.761907: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
89744          <idle>-0     (-----) [000] d..2 82316.761918: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
89745<...>-770 ( 770) [005] ...1 82316.761923: tracing_mark_write: E|770
89746<...>-770 ( 770) [005] .... 82316.761931: binder_transaction: transaction=1571239 dest_node=0 dest_proc=27550 dest_thread=27756 reply=1 flags=0x0 code=0x0
89747<...>-770 ( 770) [005] .... 82316.761934: binder_transaction_alloc_buf: transaction=1571239 data_size=168 offsets_size=32
89748<...>-770 ( 770) [005] .... 82316.761941: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
89749<...>-770 ( 770) [005] d..2 82316.761977: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27756 next_prio=110
89750           <...>-27756 (-----) [005] .... 82316.761988: binder_transaction_received: transaction=1571239
89751<...>-581 ( 571) [000] d..2 82316.762001: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89752          <idle>-0     (-----) [000] d..1 82316.762015: cpu_idle: state=0 cpu_id=0
89753           <...>-27756 (-----) [005] ...1 82316.762062: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
89754           <...>-27756 (-----) [005] ...1 82316.762067: tracing_mark_write: E|27550
89755           <...>-27756 (-----) [005] .... 82316.762082: binder_transaction: transaction=1571240 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
89756           <...>-27756 (-----) [005] .... 82316.762084: binder_transaction_alloc_buf: transaction=1571240 data_size=48 offsets_size=0
89757           <...>-27756 (-----) [005] ...2 82316.762087: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
89758           <...>-27756 (-----) [005] d..4 82316.762089: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
89759           <...>-27756 (-----) [005] dn.5 82316.762100: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
89760           <...>-27756 (-----) [005] d..2 82316.762106: sched_switch: prev_comm=id.nn.benchmark prev_pid=27756 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
89761<...>-770 ( 770) [005] .... 82316.762114: binder_transaction_received: transaction=1571240
89762<...>-770 ( 770) [005] ...1 82316.762132: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
89763<...>-770 ( 770) [005] d..2 82316.762191: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
89764          <idle>-0     (-----) [000] dnh2 82316.762214: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
89765          <idle>-0     (-----) [000] .n.1 82316.762219: cpu_idle: state=4294967295 cpu_id=0
89766<...>-770 ( 770) [005] ...1 82316.762224: tracing_mark_write: E|770
89767          <idle>-0     (-----) [000] d..2 82316.762229: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
89768<...>-770 ( 770) [005] .... 82316.762231: binder_transaction: transaction=1571241 dest_node=0 dest_proc=27550 dest_thread=27756 reply=1 flags=0x0 code=0x0
89769<...>-770 ( 770) [005] .... 82316.762234: binder_transaction_alloc_buf: transaction=1571241 data_size=168 offsets_size=32
89770<...>-770 ( 770) [005] .... 82316.762240: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
89771<...>-770 ( 770) [005] d..2 82316.762274: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27756 next_prio=110
89772<...>-581 ( 571) [000] d..2 82316.762275: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89773           <...>-27756 (-----) [005] .... 82316.762285: binder_transaction_received: transaction=1571241
89774          <idle>-0     (-----) [000] d..1 82316.762287: cpu_idle: state=0 cpu_id=0
89775           <...>-27756 (-----) [005] ...1 82316.762564: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
89776           <...>-27756 (-----) [005] ...1 82316.762574: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
89777           <...>-27756 (-----) [005] ...1 82316.762578: tracing_mark_write: E|27550
89778           <...>-27756 (-----) [005] .... 82316.762642: binder_transaction: transaction=1571242 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
89779           <...>-27756 (-----) [005] .... 82316.762645: binder_transaction_alloc_buf: transaction=1571242 data_size=556 offsets_size=104
89780           <...>-27756 (-----) [005] ...2 82316.762660: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
89781           <...>-27756 (-----) [005] d..4 82316.762662: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89782           <...>-27756 (-----) [005] dn.5 82316.762674: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89783           <...>-27756 (-----) [005] d..2 82316.762681: sched_switch: prev_comm=id.nn.benchmark prev_pid=27756 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89784<...>-5340 ( 788) [005] .... 82316.762691: binder_transaction_received: transaction=1571242
89785<...>-5340 ( 788) [005] ...1 82316.762737: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
89786<...>-5340 ( 788) [005] d..2 82316.762783: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89787<...>-5340 ( 788) [005] d..2 82316.762806: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27756 next_prio=110
89788          <idle>-0     (-----) [000] dnh2 82316.762808: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89789          <idle>-0     (-----) [000] .n.1 82316.762814: cpu_idle: state=4294967295 cpu_id=0
89790          <idle>-0     (-----) [000] d..2 82316.762822: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
89791           <...>-27756 (-----) [005] d..2 82316.762831: sched_switch: prev_comm=id.nn.benchmark prev_pid=27756 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89792          <idle>-0     (-----) [005] d..1 82316.762848: cpu_idle: state=0 cpu_id=5
89793<...>-87 ( 87) [000] d..2 82316.762862: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89794          <idle>-0     (-----) [002] d.h4 82316.762869: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89795          <idle>-0     (-----) [000] d..1 82316.762871: cpu_idle: state=0 cpu_id=0
89796          <idle>-0     (-----) [002] dnh5 82316.762884: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89797          <idle>-0     (-----) [002] .n.1 82316.762896: cpu_idle: state=4294967295 cpu_id=2
89798          <idle>-0     (-----) [002] d..2 82316.762907: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
89799<...>-86 ( 86) [002] d..2 82316.762939: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89800          <idle>-0     (-----) [002] d.h5 82316.762958: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89801          <idle>-0     (-----) [005] dnh2 82316.762978: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89802          <idle>-0     (-----) [005] .n.1 82316.762982: cpu_idle: state=4294967295 cpu_id=5
89803          <idle>-0     (-----) [005] d..2 82316.762991: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89804          <idle>-0     (-----) [002] d..1 82316.762996: cpu_idle: state=0 cpu_id=2
89805<...>-5340 ( 788) [005] d..1 82316.763044: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
89806          <idle>-0     (-----) [000] dnh2 82316.763079: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89807          <idle>-0     (-----) [000] .n.1 82316.763084: cpu_idle: state=4294967295 cpu_id=0
89808          <idle>-0     (-----) [000] d..2 82316.763093: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
89809 neuralnetworks@-13088 (  788) [000] d..2 82316.763139: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89810          <idle>-0     (-----) [000] d..1 82316.763149: cpu_idle: state=0 cpu_id=0
89811<...>-5340 ( 788) [005] d..2 82316.763203: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89812          <idle>-0     (-----) [000] dnh2 82316.763223: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89813          <idle>-0     (-----) [000] .n.1 82316.763228: cpu_idle: state=4294967295 cpu_id=0
89814<...>-5340 ( 788) [005] d..2 82316.763229: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89815          <idle>-0     (-----) [000] d..2 82316.763237: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
89816          <idle>-0     (-----) [005] d..1 82316.763244: cpu_idle: state=0 cpu_id=5
89817<...>-87 ( 87) [000] d..2 82316.763271: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89818          <idle>-0     (-----) [002] d.h4 82316.763271: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89819          <idle>-0     (-----) [000] d..1 82316.763279: cpu_idle: state=0 cpu_id=0
89820          <idle>-0     (-----) [002] dnh5 82316.763280: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
89821          <idle>-0     (-----) [002] .n.1 82316.763286: cpu_idle: state=4294967295 cpu_id=2
89822          <idle>-0     (-----) [002] d..2 82316.763296: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
89823<...>-86 ( 86) [002] d..2 82316.763324: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
89824          <idle>-0     (-----) [002] d..1 82316.763333: cpu_idle: state=0 cpu_id=2
89825          <idle>-0     (-----) [005] ...1 82316.763625: cpu_idle: state=4294967295 cpu_id=5
89826          <idle>-0     (-----) [005] d..1 82316.763628: cpu_idle: state=0 cpu_id=5
89827          <idle>-0     (-----) [002] d.h4 82316.765024: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89828          <idle>-0     (-----) [005] dnh2 82316.765043: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89829          <idle>-0     (-----) [005] .n.1 82316.765047: cpu_idle: state=4294967295 cpu_id=5
89830          <idle>-0     (-----) [005] d..2 82316.765054: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89831          <idle>-0     (-----) [002] ...1 82316.765055: cpu_idle: state=4294967295 cpu_id=2
89832          <idle>-0     (-----) [002] d..1 82316.765060: cpu_idle: state=0 cpu_id=2
89833<...>-5340 ( 788) [005] d..1 82316.765103: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89834          <idle>-0     (-----) [000] dnh2 82316.765122: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89835          <idle>-0     (-----) [000] .n.1 82316.765127: cpu_idle: state=4294967295 cpu_id=0
89836          <idle>-0     (-----) [000] d..2 82316.765137: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
89837<...>-5340 ( 788) [005] d.s3 82316.765139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
89838<...>-5340 ( 788) [005] d.s3 82316.765150: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
89839<...>-5340 ( 788) [005] d..1 82316.765160: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89840 neuralnetworks@-13088 (  788) [000] d..2 82316.765166: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89841          <idle>-0     (-----) [000] dnh3 82316.765176: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
89842          <idle>-0     (-----) [000] dnh3 82316.765180: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
89843          <idle>-0     (-----) [000] dnh3 82316.765190: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
89844          <idle>-0     (-----) [000] d..2 82316.765200: 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
89845<...>-8 ( 8) [000] d..2 82316.765207: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
89846<...>-8 ( 8) [000] d..3 82316.765228: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
89847<...>-8 ( 8) [000] d..2 82316.765250: 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
89848     rcu_preempt-7     (    7) [000] d..2 82316.765255: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
89849<...>-5340 ( 788) [005] ...1 82316.765264: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
89850<...>-5340 ( 788) [005] ...1 82316.765268: tracing_mark_write: E|788
89851<...>-5340 ( 788) [005] .... 82316.765284: binder_transaction: transaction=1571245 dest_node=1571243 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
89852<...>-5340 ( 788) [005] .... 82316.765287: binder_transaction_alloc_buf: transaction=1571245 data_size=60 offsets_size=0
89853     rcu_preempt-7     (    7) [000] d..3 82316.765287: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
89854<...>-5340 ( 788) [005] d..4 82316.765290: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
89855     rcu_preempt-7     (    7) [000] d..2 82316.765300: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
89856<...>-5340 ( 788) [005] d..5 82316.765302: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
89857          <idle>-0     (-----) [004] .n.1 82316.765308: cpu_idle: state=4294967295 cpu_id=4
89858          <idle>-0     (-----) [004] d..2 82316.765316: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
89859           <...>-27571 (-----) [004] .... 82316.765321: binder_transaction_received: transaction=1571245
89860<...>-5340 ( 788) [005] ...1 82316.765324: tracing_mark_write: E|788
89861<...>-46 ( 46) [000] d..2 82316.765328: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
89862<...>-5340 ( 788) [005] .... 82316.765330: binder_transaction: transaction=1571246 dest_node=0 dest_proc=27550 dest_thread=27756 reply=1 flags=0x0 code=0x0
89863<...>-5340 ( 788) [005] .... 82316.765332: binder_transaction_alloc_buf: transaction=1571246 data_size=8 offsets_size=0
89864<...>-5340 ( 788) [005] d..2 82316.765334: sched_waking: comm=id.nn.benchmark pid=27756 prio=110 target_cpu=005
89865<...>-46 ( 46) [000] d..3 82316.765339: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
89866           <...>-27571 (-----) [004] ...1 82316.765340: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
89867<...>-5340 ( 788) [005] d..3 82316.765341: sched_wakeup: comm=id.nn.benchmark pid=27756 prio=110 target_cpu=005
89868<...>-5340 ( 788) [005] .... 82316.765343: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
89869           <...>-27571 (-----) [004] ...1 82316.765346: tracing_mark_write: E|27550
89870<...>-46 ( 46) [000] d..2 82316.765348: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
89871         rcuop/4-45    (   45) [000] d..2 82316.765354: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
89872           <...>-27571 (-----) [004] d..2 82316.765375: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89873         rcuop/4-45    (   45) [000] d..3 82316.765381: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
89874          <idle>-0     (-----) [004] d..1 82316.765382: cpu_idle: state=0 cpu_id=4
89875<...>-5340 ( 788) [005] d..2 82316.765385: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27756 next_prio=110
89876         rcuop/4-45    (   45) [000] d..2 82316.765390: 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
89877           <...>-27756 (-----) [005] .... 82316.765394: binder_transaction_received: transaction=1571246
89878           <...>-27756 (-----) [005] ...1 82316.765430: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
89879           <...>-27756 (-----) [005] ...1 82316.765436: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
89880           <...>-27756 (-----) [005] ...1 82316.765461: tracing_mark_write: E|27550
89881           <...>-27756 (-----) [005] ...1 82316.765465: tracing_mark_write: E|27550
89882           <...>-27756 (-----) [005] ...1 82316.765468: tracing_mark_write: E|27550
89883         rcuop/5-53    (   53) [000] d..2 82316.765491: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
89884 neuralnetworks@-13088 (  788) [000] d..2 82316.765514: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
89885<...>-8 ( 8) [000] d..2 82316.765535: 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
89886          <idle>-0     (-----) [000] d.h6 82316.765631: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
89887          <idle>-0     (-----) [000] d.h7 82316.765648: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
89888          <idle>-0     (-----) [000] d.h6 82316.765652: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
89889          <idle>-0     (-----) [003] .n.1 82316.765653: cpu_idle: state=4294967295 cpu_id=3
89890           <...>-27756 (-----) [005] ...1 82316.765656: tracing_mark_write: E|27550
89891          <idle>-0     (-----) [003] d..2 82316.765661: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
89892          <idle>-0     (-----) [000] d.h7 82316.765662: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
89893           <...>-27756 (-----) [005] d..1 82316.765668: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89894          <idle>-0     (-----) [001] .n.1 82316.765668: cpu_idle: state=4294967295 cpu_id=1
89895          <idle>-0     (-----) [001] d..2 82316.765678: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
89896           <...>-27756 (-----) [005] d..2 82316.765684: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89897          <idle>-0     (-----) [000] d..1 82316.765689: cpu_idle: state=0 cpu_id=0
89898          <idle>-0     (-----) [004] .n.1 82316.765689: cpu_idle: state=4294967295 cpu_id=4
89899  crtc_event:111-322   (  322) [003] d..2 82316.765691: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
89900          <idle>-0     (-----) [004] d..2 82316.765695: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
89901          <idle>-0     (-----) [003] d..1 82316.765699: cpu_idle: state=0 cpu_id=3
89902           <...>-27550 (-----) [004] d..2 82316.765715: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89903          <idle>-0     (-----) [004] d..1 82316.765724: cpu_idle: state=0 cpu_id=4
89904           <...>-27756 (-----) [005] d..1 82316.765773: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89905           <...>-27756 (-----) [005] d..2 82316.765782: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
89906          <idle>-0     (-----) [004] .n.1 82316.765788: cpu_idle: state=4294967295 cpu_id=4
89907          <idle>-0     (-----) [004] d..2 82316.765795: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
89908 crtc_commit:111-321   (  321) [001] d..2 82316.765811: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
89909          <idle>-0     (-----) [001] d..1 82316.765819: cpu_idle: state=0 cpu_id=1
89910           <...>-27756 (-----) [005] d..2 82316.765821: sched_switch: prev_comm=id.nn.benchmark prev_pid=27756 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
89911           <...>-27550 (-----) [004] ...1 82316.765827: tracing_mark_write: E|27550
89912           <...>-27550 (-----) [004] ...1 82316.765832: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
89913           <...>-27550 (-----) [004] ...1 82316.765838: tracing_mark_write: E|27550
89914           <...>-27550 (-----) [004] ...1 82316.765841: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
89915          <idle>-0     (-----) [005] d..1 82316.765842: cpu_idle: state=0 cpu_id=5
89916           <...>-27550 (-----) [004] ...1 82316.765845: tracing_mark_write: E|27550
89917           <...>-27550 (-----) [004] ...1 82316.765849: tracing_mark_write: E|27550
89918           <...>-27550 (-----) [004] ...1 82316.765963: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
89919           <...>-27550 (-----) [004] ...1 82316.766022: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
89920           <...>-27550 (-----) [004] ...1 82316.766028: tracing_mark_write: E|27550
89921           <...>-27550 (-----) [004] ...1 82316.766032: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
89922           <...>-27550 (-----) [004] ...1 82316.766038: tracing_mark_write: E|27550
89923           <...>-27550 (-----) [004] ...1 82316.766042: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
89924           <...>-27550 (-----) [004] ...1 82316.766046: tracing_mark_write: E|27550
89925           <...>-27550 (-----) [004] ...1 82316.766050: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
89926          <idle>-0     (-----) [005] .n.1 82316.766139: cpu_idle: state=4294967295 cpu_id=5
89927           <...>-27550 (-----) [004] ...1 82316.766140: tracing_mark_write: E|27550
89928           <...>-27550 (-----) [004] ...1 82316.766144: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
89929          <idle>-0     (-----) [005] d..2 82316.766148: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27757 next_prio=110
89930           <...>-27550 (-----) [004] d..2 82316.766161: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
89931          <idle>-0     (-----) [003] ...1 82316.766165: cpu_idle: state=4294967295 cpu_id=3
89932          <idle>-0     (-----) [003] d..1 82316.766170: cpu_idle: state=0 cpu_id=3
89933          <idle>-0     (-----) [004] d..1 82316.766176: cpu_idle: state=0 cpu_id=4
89934           <...>-27757 (-----) [005] ...1 82316.766210: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
89935           <...>-27757 (-----) [005] ...1 82316.766224: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
89936           <...>-27757 (-----) [005] ...1 82316.766228: tracing_mark_write: E|27550
89937           <...>-27757 (-----) [005] .... 82316.766249: binder_transaction: transaction=1571247 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
89938           <...>-27757 (-----) [005] .... 82316.766252: binder_transaction_alloc_buf: transaction=1571247 data_size=48 offsets_size=0
89939           <...>-27757 (-----) [005] ...2 82316.766255: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
89940           <...>-27757 (-----) [005] d..4 82316.766258: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
89941           <...>-27757 (-----) [005] dn.5 82316.766269: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
89942           <...>-27757 (-----) [005] d..2 82316.766275: sched_switch: prev_comm=id.nn.benchmark prev_pid=27757 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
89943<...>-770 ( 770) [005] .... 82316.766285: binder_transaction_received: transaction=1571247
89944<...>-770 ( 770) [005] ...1 82316.766307: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
89945<...>-770 ( 770) [005] d..2 82316.766379: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
89946          <idle>-0     (-----) [000] dnh2 82316.766406: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
89947          <idle>-0     (-----) [000] .n.1 82316.766411: cpu_idle: state=4294967295 cpu_id=0
89948<...>-770 ( 770) [005] ...1 82316.766419: tracing_mark_write: E|770
89949          <idle>-0     (-----) [000] d..2 82316.766421: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
89950<...>-770 ( 770) [005] .... 82316.766427: binder_transaction: transaction=1571248 dest_node=0 dest_proc=27550 dest_thread=27757 reply=1 flags=0x0 code=0x0
89951<...>-770 ( 770) [005] .... 82316.766430: binder_transaction_alloc_buf: transaction=1571248 data_size=168 offsets_size=32
89952<...>-770 ( 770) [005] .... 82316.766436: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
89953<...>-770 ( 770) [005] d..2 82316.766472: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27757 next_prio=110
89954           <...>-27757 (-----) [005] .... 82316.766483: binder_transaction_received: transaction=1571248
89955<...>-581 ( 571) [000] d..2 82316.766496: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89956          <idle>-0     (-----) [000] d..1 82316.766508: cpu_idle: state=0 cpu_id=0
89957           <...>-27757 (-----) [005] ...1 82316.766552: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
89958           <...>-27757 (-----) [005] ...1 82316.766558: tracing_mark_write: E|27550
89959           <...>-27757 (-----) [005] .... 82316.766572: binder_transaction: transaction=1571249 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
89960           <...>-27757 (-----) [005] .... 82316.766574: binder_transaction_alloc_buf: transaction=1571249 data_size=48 offsets_size=0
89961           <...>-27757 (-----) [005] ...2 82316.766577: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
89962           <...>-27757 (-----) [005] d..4 82316.766579: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
89963           <...>-27757 (-----) [005] dn.5 82316.766590: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
89964           <...>-27757 (-----) [005] d..2 82316.766596: sched_switch: prev_comm=id.nn.benchmark prev_pid=27757 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
89965<...>-770 ( 770) [005] .... 82316.766606: binder_transaction_received: transaction=1571249
89966<...>-770 ( 770) [005] ...1 82316.766623: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
89967<...>-770 ( 770) [005] d..2 82316.766682: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
89968          <idle>-0     (-----) [000] dnh2 82316.766704: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
89969          <idle>-0     (-----) [000] .n.1 82316.766709: cpu_idle: state=4294967295 cpu_id=0
89970<...>-770 ( 770) [005] ...1 82316.766715: tracing_mark_write: E|770
89971          <idle>-0     (-----) [000] d..2 82316.766719: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
89972<...>-770 ( 770) [005] .... 82316.766723: binder_transaction: transaction=1571250 dest_node=0 dest_proc=27550 dest_thread=27757 reply=1 flags=0x0 code=0x0
89973<...>-770 ( 770) [005] .... 82316.766725: binder_transaction_alloc_buf: transaction=1571250 data_size=168 offsets_size=32
89974<...>-770 ( 770) [005] .... 82316.766731: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
89975<...>-581 ( 571) [000] d..2 82316.766765: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89976<...>-770 ( 770) [005] d..2 82316.766766: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27757 next_prio=110
89977          <idle>-0     (-----) [000] d..1 82316.766776: cpu_idle: state=0 cpu_id=0
89978           <...>-27757 (-----) [005] .... 82316.766777: binder_transaction_received: transaction=1571250
89979           <...>-27757 (-----) [005] ...1 82316.767053: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
89980           <...>-27757 (-----) [005] ...1 82316.767063: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
89981           <...>-27757 (-----) [005] ...1 82316.767067: tracing_mark_write: E|27550
89982           <...>-27757 (-----) [005] .... 82316.767131: binder_transaction: transaction=1571251 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
89983           <...>-27757 (-----) [005] .... 82316.767134: binder_transaction_alloc_buf: transaction=1571251 data_size=556 offsets_size=104
89984           <...>-27757 (-----) [005] ...2 82316.767148: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
89985           <...>-27757 (-----) [005] d..4 82316.767151: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89986           <...>-27757 (-----) [005] dn.5 82316.767162: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
89987           <...>-27757 (-----) [005] d..2 82316.767169: sched_switch: prev_comm=id.nn.benchmark prev_pid=27757 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
89988<...>-5340 ( 788) [005] .... 82316.767179: binder_transaction_received: transaction=1571251
89989<...>-5340 ( 788) [005] ...1 82316.767223: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
89990<...>-5340 ( 788) [005] d..2 82316.767266: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89991<...>-5340 ( 788) [005] d..2 82316.767290: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27757 next_prio=110
89992          <idle>-0     (-----) [000] dnh2 82316.767292: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
89993          <idle>-0     (-----) [000] .n.1 82316.767298: cpu_idle: state=4294967295 cpu_id=0
89994          <idle>-0     (-----) [000] d..2 82316.767306: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
89995           <...>-27757 (-----) [005] d..2 82316.767313: sched_switch: prev_comm=id.nn.benchmark prev_pid=27757 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
89996          <idle>-0     (-----) [005] d..1 82316.767331: cpu_idle: state=0 cpu_id=5
89997<...>-87 ( 87) [000] d..2 82316.767341: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
89998          <idle>-0     (-----) [000] d..1 82316.767350: cpu_idle: state=0 cpu_id=0
89999          <idle>-0     (-----) [002] d.h4 82316.767351: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90000          <idle>-0     (-----) [002] dnh5 82316.767363: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90001          <idle>-0     (-----) [002] .n.1 82316.767370: cpu_idle: state=4294967295 cpu_id=2
90002          <idle>-0     (-----) [002] d..2 82316.767382: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
90003<...>-86 ( 86) [002] d..2 82316.767410: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90004          <idle>-0     (-----) [002] d..1 82316.767419: cpu_idle: state=0 cpu_id=2
90005          <idle>-0     (-----) [002] d.h4 82316.767443: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90006          <idle>-0     (-----) [005] dnh2 82316.767463: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90007          <idle>-0     (-----) [005] .n.1 82316.767468: cpu_idle: state=4294967295 cpu_id=5
90008          <idle>-0     (-----) [002] ...1 82316.767474: cpu_idle: state=4294967295 cpu_id=2
90009          <idle>-0     (-----) [005] d..2 82316.767476: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90010          <idle>-0     (-----) [002] d..1 82316.767478: cpu_idle: state=0 cpu_id=2
90011<...>-5340 ( 788) [005] d..1 82316.767528: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90012          <idle>-0     (-----) [000] dnh2 82316.767553: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90013          <idle>-0     (-----) [000] .n.1 82316.767557: cpu_idle: state=4294967295 cpu_id=0
90014          <idle>-0     (-----) [000] d..2 82316.767567: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
90015 neuralnetworks@-13088 (  788) [000] d..2 82316.767606: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90016          <idle>-0     (-----) [000] d..1 82316.767615: cpu_idle: state=0 cpu_id=0
90017<...>-5340 ( 788) [005] d..2 82316.767675: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
90018          <idle>-0     (-----) [003] ...1 82316.767679: cpu_idle: state=4294967295 cpu_id=3
90019          <idle>-0     (-----) [003] d..1 82316.767682: cpu_idle: state=0 cpu_id=3
90020          <idle>-0     (-----) [000] dnh2 82316.767694: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
90021          <idle>-0     (-----) [000] .n.1 82316.767699: cpu_idle: state=4294967295 cpu_id=0
90022<...>-5340 ( 788) [005] d..2 82316.767700: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90023          <idle>-0     (-----) [000] d..2 82316.767708: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
90024          <idle>-0     (-----) [005] d..1 82316.767715: cpu_idle: state=0 cpu_id=5
90025<...>-87 ( 87) [000] d..2 82316.767740: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90026          <idle>-0     (-----) [002] d.h4 82316.767742: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90027          <idle>-0     (-----) [000] d..1 82316.767749: cpu_idle: state=0 cpu_id=0
90028          <idle>-0     (-----) [002] dnh5 82316.767750: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90029          <idle>-0     (-----) [002] .n.1 82316.767757: cpu_idle: state=4294967295 cpu_id=2
90030          <idle>-0     (-----) [002] d..2 82316.767766: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
90031<...>-86 ( 86) [002] d..2 82316.767793: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90032          <idle>-0     (-----) [002] d..1 82316.767802: cpu_idle: state=0 cpu_id=2
90033          <idle>-0     (-----) [000] d.h5 82316.767952: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
90034          <idle>-0     (-----) [000] d.h6 82316.767969: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
90035          <idle>-0     (-----) [001] .n.1 82316.767975: cpu_idle: state=4294967295 cpu_id=1
90036          <idle>-0     (-----) [001] d..2 82316.767982: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
90037          <idle>-0     (-----) [000] ...1 82316.767982: cpu_idle: state=4294967295 cpu_id=0
90038          <idle>-0     (-----) [000] d..1 82316.767986: cpu_idle: state=0 cpu_id=0
90039          <idle>-0     (-----) [005] ...1 82316.768035: cpu_idle: state=4294967295 cpu_id=5
90040          <idle>-0     (-----) [005] d..1 82316.768039: cpu_idle: state=0 cpu_id=5
90041 crtc_commit:111-321   (  321) [001] d..2 82316.768044: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90042          <idle>-0     (-----) [001] d..1 82316.768050: cpu_idle: state=0 cpu_id=1
90043          <idle>-0     (-----) [000] d.h5 82316.768249: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
90044          <idle>-0     (-----) [000] d.h6 82316.768261: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
90045          <idle>-0     (-----) [003] .n.1 82316.768266: cpu_idle: state=4294967295 cpu_id=3
90046          <idle>-0     (-----) [003] d..2 82316.768274: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
90047          <idle>-0     (-----) [000] ...1 82316.768274: cpu_idle: state=4294967295 cpu_id=0
90048          <idle>-0     (-----) [000] d..1 82316.768278: cpu_idle: state=0 cpu_id=0
90049  crtc_event:111-322   (  322) [003] d..2 82316.768294: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90050          <idle>-0     (-----) [003] d..1 82316.768302: cpu_idle: state=0 cpu_id=3
90051          <idle>-0     (-----) [001] d.s3 82316.768468: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
90052          <idle>-0     (-----) [001] d.s4 82316.768484: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
90053          <idle>-0     (-----) [003] .n.1 82316.768489: cpu_idle: state=4294967295 cpu_id=3
90054          <idle>-0     (-----) [001] d.s3 82316.768491: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
90055          <idle>-0     (-----) [003] d..2 82316.768497: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
90056          <idle>-0     (-----) [001] dns4 82316.768521: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
90057  crtc_event:111-322   (  322) [003] d..2 82316.768528: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90058          <idle>-0     (-----) [003] d..1 82316.768535: cpu_idle: state=0 cpu_id=3
90059          <idle>-0     (-----) [001] .n.1 82316.768539: cpu_idle: state=4294967295 cpu_id=1
90060          <idle>-0     (-----) [001] d..2 82316.768548: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
90061  kworker/u16:15-1311  ( 1311) [001] d..2 82316.768764: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
90062          <idle>-0     (-----) [001] d.s4 82316.768803: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
90063          <idle>-0     (-----) [001] d.s5 82316.768812: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
90064          <idle>-0     (-----) [001] dns5 82316.768816: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
90065          <idle>-0     (-----) [001] d..2 82316.768826: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
90066  kworker/u16:15-1311  ( 1311) [001] .... 82316.768870: clk_set_rate: l3_cluster0_vote_clk 300000000
90067  kworker/u16:15-1311  ( 1311) [001] d..2 82316.768895: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90068          <idle>-0     (-----) [001] d..1 82316.768906: cpu_idle: state=0 cpu_id=1
90069          <idle>-0     (-----) [002] d.h4 82316.769431: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90070          <idle>-0     (-----) [005] dnh2 82316.769450: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90071          <idle>-0     (-----) [005] .n.1 82316.769453: cpu_idle: state=4294967295 cpu_id=5
90072          <idle>-0     (-----) [005] d..2 82316.769462: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90073          <idle>-0     (-----) [002] ...1 82316.769462: cpu_idle: state=4294967295 cpu_id=2
90074          <idle>-0     (-----) [002] d..1 82316.769467: cpu_idle: state=0 cpu_id=2
90075<...>-5340 ( 788) [005] d..1 82316.769511: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90076          <idle>-0     (-----) [000] dnh2 82316.769530: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90077          <idle>-0     (-----) [000] .n.1 82316.769536: cpu_idle: state=4294967295 cpu_id=0
90078          <idle>-0     (-----) [000] d..2 82316.769547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
90079 neuralnetworks@-13088 (  788) [000] d..2 82316.769597: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90080<...>-5340 ( 788) [005] ...1 82316.769600: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
90081<...>-5340 ( 788) [005] ...1 82316.769604: tracing_mark_write: E|788
90082          <idle>-0     (-----) [000] d..1 82316.769605: cpu_idle: state=0 cpu_id=0
90083<...>-5340 ( 788) [005] .... 82316.769619: binder_transaction: transaction=1571254 dest_node=1571252 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
90084<...>-5340 ( 788) [005] .... 82316.769622: binder_transaction_alloc_buf: transaction=1571254 data_size=60 offsets_size=0
90085<...>-5340 ( 788) [005] d..4 82316.769625: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
90086<...>-5340 ( 788) [005] d..5 82316.769638: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
90087          <idle>-0     (-----) [004] .n.1 82316.769644: cpu_idle: state=4294967295 cpu_id=4
90088          <idle>-0     (-----) [004] d..2 82316.769653: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
90089           <...>-27571 (-----) [004] .... 82316.769658: binder_transaction_received: transaction=1571254
90090<...>-5340 ( 788) [005] ...1 82316.769660: tracing_mark_write: E|788
90091<...>-5340 ( 788) [005] .... 82316.769666: binder_transaction: transaction=1571255 dest_node=0 dest_proc=27550 dest_thread=27757 reply=1 flags=0x0 code=0x0
90092<...>-5340 ( 788) [005] .... 82316.769668: binder_transaction_alloc_buf: transaction=1571255 data_size=8 offsets_size=0
90093<...>-5340 ( 788) [005] d..2 82316.769670: sched_waking: comm=id.nn.benchmark pid=27757 prio=110 target_cpu=005
90094           <...>-27571 (-----) [004] ...1 82316.769676: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
90095<...>-5340 ( 788) [005] d..3 82316.769677: sched_wakeup: comm=id.nn.benchmark pid=27757 prio=110 target_cpu=005
90096<...>-5340 ( 788) [005] .... 82316.769679: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
90097           <...>-27571 (-----) [004] ...1 82316.769683: tracing_mark_write: E|27550
90098           <...>-27571 (-----) [004] d..2 82316.769712: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90099          <idle>-0     (-----) [004] d..1 82316.769720: cpu_idle: state=0 cpu_id=4
90100<...>-5340 ( 788) [005] d..2 82316.769721: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27757 next_prio=110
90101           <...>-27757 (-----) [005] .... 82316.769731: binder_transaction_received: transaction=1571255
90102           <...>-27757 (-----) [005] ...1 82316.769767: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
90103           <...>-27757 (-----) [005] ...1 82316.769773: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
90104           <...>-27757 (-----) [005] ...1 82316.769799: tracing_mark_write: E|27550
90105           <...>-27757 (-----) [005] ...1 82316.769802: tracing_mark_write: E|27550
90106           <...>-27757 (-----) [005] ...1 82316.769806: tracing_mark_write: E|27550
90107           <...>-27757 (-----) [005] ...1 82316.769992: tracing_mark_write: E|27550
90108           <...>-27757 (-----) [005] d..1 82316.770005: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90109           <...>-27757 (-----) [005] d..2 82316.770021: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90110          <idle>-0     (-----) [004] .n.1 82316.770026: cpu_idle: state=4294967295 cpu_id=4
90111          <idle>-0     (-----) [001] d.h2 82316.770027: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
90112          <idle>-0     (-----) [004] d..2 82316.770032: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
90113          <idle>-0     (-----) [001] dnh3 82316.770038: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
90114          <idle>-0     (-----) [001] .n.1 82316.770045: cpu_idle: state=4294967295 cpu_id=1
90115           <...>-27550 (-----) [004] d..2 82316.770052: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90116          <idle>-0     (-----) [001] d..2 82316.770054: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
90117          <idle>-0     (-----) [004] d..1 82316.770061: cpu_idle: state=0 cpu_id=4
90118        DispSync-8879  ( 8858) [001] d..1 82316.770070: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
90119        DispSync-8879  ( 8858) [001] d..2 82316.770083: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
90120          <idle>-0     (-----) [002] .n.1 82316.770088: cpu_idle: state=4294967295 cpu_id=2
90121          <idle>-0     (-----) [002] d..2 82316.770098: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
90122           <...>-27757 (-----) [005] d..1 82316.770108: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90123        DispSync-8879  ( 8858) [001] d..2 82316.770110: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90124           <...>-27757 (-----) [005] d..2 82316.770117: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90125          <idle>-0     (-----) [001] d..1 82316.770119: cpu_idle: state=0 cpu_id=1
90126          <idle>-0     (-----) [004] .n.1 82316.770122: cpu_idle: state=4294967295 cpu_id=4
90127          <idle>-0     (-----) [004] d..2 82316.770129: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
90128           <...>-27757 (-----) [005] d..2 82316.770154: sched_switch: prev_comm=id.nn.benchmark prev_pid=27757 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
90129  appEventThread-8881  ( 8858) [002] d..3 82316.770158: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
90130  appEventThread-8881  ( 8858) [002] d..4 82316.770175: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
90131           <...>-27550 (-----) [004] ...1 82316.770176: tracing_mark_write: E|27550
90132          <idle>-0     (-----) [000] .n.1 82316.770180: cpu_idle: state=4294967295 cpu_id=0
90133           <...>-27550 (-----) [004] ...1 82316.770180: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
90134          <idle>-0     (-----) [005] d..1 82316.770183: cpu_idle: state=0 cpu_id=5
90135           <...>-27550 (-----) [004] ...1 82316.770186: tracing_mark_write: E|27550
90136          <idle>-0     (-----) [000] d..2 82316.770188: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
90137           <...>-27550 (-----) [004] ...1 82316.770190: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
90138           <...>-27550 (-----) [004] ...1 82316.770194: tracing_mark_write: E|27550
90139           <...>-27550 (-----) [004] ...1 82316.770198: tracing_mark_write: E|27550
90140  appEventThread-8881  ( 8858) [002] d..2 82316.770211: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90141          <idle>-0     (-----) [002] d..1 82316.770223: cpu_idle: state=0 cpu_id=2
90142           <...>-27550 (-----) [004] ...1 82316.770310: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
90143           <...>-27550 (-----) [004] ...1 82316.770368: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
90144           <...>-27550 (-----) [004] ...1 82316.770372: tracing_mark_write: E|27550
90145           <...>-27550 (-----) [004] ...1 82316.770376: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
90146           <...>-27550 (-----) [004] ...1 82316.770381: tracing_mark_write: E|27550
90147           <...>-27550 (-----) [004] ...1 82316.770384: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
90148           <...>-27550 (-----) [004] ...1 82316.770388: tracing_mark_write: E|27550
90149           <...>-27550 (-----) [004] ...1 82316.770391: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
90150          <idle>-0     (-----) [005] .n.1 82316.770475: cpu_idle: state=4294967295 cpu_id=5
90151           <...>-27550 (-----) [004] ...1 82316.770476: tracing_mark_write: E|27550
90152           <...>-27550 (-----) [004] ...1 82316.770480: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
90153          <idle>-0     (-----) [005] d..2 82316.770483: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27758 next_prio=110
90154<...>-9105 ( 9105) [000] .... 82316.770494: binder_transaction: transaction=1571256 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
90155           <...>-27550 (-----) [004] d..2 82316.770498: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90156<...>-9105 ( 9105) [000] .... 82316.770500: binder_transaction_alloc_buf: transaction=1571256 data_size=80 offsets_size=0
90157<...>-9105 ( 9105) [000] d..4 82316.770506: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
90158          <idle>-0     (-----) [004] d..1 82316.770513: cpu_idle: state=0 cpu_id=4
90159<...>-9105 ( 9105) [000] d..5 82316.770534: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
90160          <idle>-0     (-----) [001] .n.1 82316.770538: cpu_idle: state=4294967295 cpu_id=1
90161           <...>-27758 (-----) [005] ...1 82316.770544: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
90162          <idle>-0     (-----) [001] d..2 82316.770548: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
90163<...>-13083 ( 8858) [001] .... 82316.770555: binder_transaction_received: transaction=1571256
90164           <...>-27758 (-----) [005] ...1 82316.770559: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
90165           <...>-27758 (-----) [005] ...1 82316.770563: tracing_mark_write: E|27550
90166<...>-9105 ( 9105) [000] d..3 82316.770569: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
90167           <...>-27758 (-----) [005] .... 82316.770583: binder_transaction: transaction=1571257 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
90168<...>-13083 ( 8858) [001] d..1 82316.770584: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
90169           <...>-27758 (-----) [005] .... 82316.770587: binder_transaction_alloc_buf: transaction=1571257 data_size=48 offsets_size=0
90170           <...>-27758 (-----) [005] ...2 82316.770590: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
90171<...>-9105 ( 9105) [000] d..4 82316.770590: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
90172           <...>-27758 (-----) [005] d..4 82316.770592: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
90173          <idle>-0     (-----) [002] .n.1 82316.770596: cpu_idle: state=4294967295 cpu_id=2
90174           <...>-27758 (-----) [005] dn.5 82316.770602: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
90175          <idle>-0     (-----) [002] d..2 82316.770609: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
90176           <...>-27758 (-----) [005] d..2 82316.770609: sched_switch: prev_comm=id.nn.benchmark prev_pid=27758 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
90177<...>-13083 ( 8858) [001] d..2 82316.770611: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
90178          <idle>-0     (-----) [003] .n.1 82316.770616: cpu_idle: state=4294967295 cpu_id=3
90179<...>-770 ( 770) [005] .... 82316.770619: binder_transaction_received: transaction=1571257
90180          <idle>-0     (-----) [003] d..2 82316.770623: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
90181<...>-770 ( 770) [005] ...1 82316.770641: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
90182<...>-13083 ( 8858) [001] d..2 82316.770648: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90183    RenderThread-9436  ( 9105) [002] d..2 82316.770659: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90184          <idle>-0     (-----) [001] d..1 82316.770659: cpu_idle: state=0 cpu_id=1
90185          <idle>-0     (-----) [002] d..1 82316.770671: cpu_idle: state=0 cpu_id=2
90186  appEventThread-8881  ( 8858) [003] d..2 82316.770671: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90187          <idle>-0     (-----) [003] d..1 82316.770680: cpu_idle: state=0 cpu_id=3
90188<...>-9105 ( 9105) [000] d..3 82316.770704: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
90189<...>-770 ( 770) [005] d..2 82316.770710: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
90190<...>-9105 ( 9105) [000] d..4 82316.770720: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
90191          <idle>-0     (-----) [002] .n.1 82316.770726: cpu_idle: state=4294967295 cpu_id=2
90192          <idle>-0     (-----) [002] d..2 82316.770735: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
90193<...>-9105 ( 9105) [000] d.h1 82316.770736: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
90194<...>-770 ( 770) [005] ...1 82316.770751: tracing_mark_write: E|770
90195<...>-9105 ( 9105) [000] d..2 82316.770751: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
90196<...>-770 ( 770) [005] .... 82316.770758: binder_transaction: transaction=1571258 dest_node=0 dest_proc=27550 dest_thread=27758 reply=1 flags=0x0 code=0x0
90197<...>-770 ( 770) [005] .... 82316.770761: binder_transaction_alloc_buf: transaction=1571258 data_size=168 offsets_size=32
90198<...>-770 ( 770) [005] .... 82316.770768: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
90199<...>-770 ( 770) [005] d..2 82316.770804: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27758 next_prio=110
90200           <...>-27758 (-----) [005] .... 82316.770815: binder_transaction_received: transaction=1571258
90201<...>-581 ( 571) [000] d..2 82316.770824: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90202          <idle>-0     (-----) [000] d..1 82316.770835: cpu_idle: state=0 cpu_id=0
90203    RenderThread-9436  ( 9105) [002] d..1 82316.770844: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
90204    RenderThread-9436  ( 9105) [002] d..2 82316.770860: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
90205          <idle>-0     (-----) [000] .n.1 82316.770866: cpu_idle: state=4294967295 cpu_id=0
90206          <idle>-0     (-----) [000] d..2 82316.770875: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
90207           <...>-27758 (-----) [005] ...1 82316.770885: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
90208           <...>-27758 (-----) [005] ...1 82316.770890: tracing_mark_write: E|27550
90209           <...>-27758 (-----) [005] .... 82316.770904: binder_transaction: transaction=1571259 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
90210           <...>-27758 (-----) [005] .... 82316.770907: binder_transaction_alloc_buf: transaction=1571259 data_size=48 offsets_size=0
90211           <...>-27758 (-----) [005] ...2 82316.770909: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
90212           <...>-27758 (-----) [005] d..4 82316.770912: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
90213           <...>-27758 (-----) [005] dn.5 82316.770922: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
90214    RenderThread-9436  ( 9105) [002] .... 82316.770923: binder_transaction: transaction=1571260 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
90215    RenderThread-9436  ( 9105) [002] .... 82316.770928: binder_transaction_alloc_buf: transaction=1571260 data_size=104 offsets_size=0
90216           <...>-27758 (-----) [005] d..2 82316.770928: sched_switch: prev_comm=id.nn.benchmark prev_pid=27758 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
90217    RenderThread-9436  ( 9105) [002] d..4 82316.770933: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
90218<...>-770 ( 770) [005] .... 82316.770936: binder_transaction_received: transaction=1571259
90219    RenderThread-9436  ( 9105) [002] dn.5 82316.770950: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
90220<...>-9105 ( 9105) [000] d..2 82316.770951: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90221<...>-770 ( 770) [005] ...1 82316.770954: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
90222    RenderThread-9436  ( 9105) [002] d..2 82316.770959: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
90223          <idle>-0     (-----) [000] d..1 82316.770961: cpu_idle: state=0 cpu_id=0
90224<...>-13083 ( 8858) [002] .... 82316.770966: binder_transaction_received: transaction=1571260
90225<...>-770 ( 770) [005] d..2 82316.771013: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
90226<...>-13083 ( 8858) [002] .... 82316.771034: binder_transaction: transaction=1571261 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
90227          <idle>-0     (-----) [000] dnh2 82316.771035: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
90228<...>-13083 ( 8858) [002] .... 82316.771038: binder_transaction_alloc_buf: transaction=1571261 data_size=52 offsets_size=8
90229          <idle>-0     (-----) [000] .n.1 82316.771041: cpu_idle: state=4294967295 cpu_id=0
90230<...>-770 ( 770) [005] ...1 82316.771047: tracing_mark_write: E|770
90231          <idle>-0     (-----) [000] d..2 82316.771048: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
90232<...>-770 ( 770) [005] .... 82316.771055: binder_transaction: transaction=1571262 dest_node=0 dest_proc=27550 dest_thread=27758 reply=1 flags=0x0 code=0x0
90233<...>-770 ( 770) [005] .... 82316.771057: binder_transaction_alloc_buf: transaction=1571262 data_size=168 offsets_size=32
90234<...>-770 ( 770) [005] .... 82316.771063: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
90235<...>-13083 ( 8858) [002] d..2 82316.771079: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
90236    RenderThread-9436  ( 9105) [002] .... 82316.771087: binder_transaction_received: transaction=1571261
90237<...>-770 ( 770) [005] d..2 82316.771099: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27758 next_prio=110
90238<...>-581 ( 571) [000] d..2 82316.771105: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90239           <...>-27758 (-----) [005] .... 82316.771110: binder_transaction_received: transaction=1571262
90240          <idle>-0     (-----) [000] d..1 82316.771113: cpu_idle: state=0 cpu_id=0
90241           <...>-27758 (-----) [005] ...1 82316.771383: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
90242           <...>-27758 (-----) [005] ...1 82316.771393: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
90243           <...>-27758 (-----) [005] ...1 82316.771397: tracing_mark_write: E|27550
90244           <...>-27758 (-----) [005] .... 82316.771457: binder_transaction: transaction=1571263 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
90245           <...>-27758 (-----) [005] .... 82316.771460: binder_transaction_alloc_buf: transaction=1571263 data_size=556 offsets_size=104
90246           <...>-27758 (-----) [005] ...2 82316.771473: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
90247           <...>-27758 (-----) [005] d..4 82316.771475: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90248           <...>-27758 (-----) [005] dn.5 82316.771487: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90249           <...>-27758 (-----) [005] d..2 82316.771494: sched_switch: prev_comm=id.nn.benchmark prev_pid=27758 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90250<...>-5340 ( 788) [005] .... 82316.771503: binder_transaction_received: transaction=1571263
90251<...>-5340 ( 788) [005] ...1 82316.771549: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
90252<...>-5340 ( 788) [005] d..2 82316.771593: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
90253<...>-5340 ( 788) [005] d..2 82316.771632: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27758 next_prio=110
90254    RenderThread-9436  ( 9105) [002] dnh1 82316.771639: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
90255    RenderThread-9436  ( 9105) [002] d..2 82316.771652: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
90256           <...>-27758 (-----) [005] d..2 82316.771654: sched_switch: prev_comm=id.nn.benchmark prev_pid=27758 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90257          <idle>-0     (-----) [005] d..1 82316.771673: cpu_idle: state=0 cpu_id=5
90258<...>-87 ( 87) [002] d..2 82316.771684: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
90259    RenderThread-9436  ( 9105) [002] d.h5 82316.771699: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90260    RenderThread-9436  ( 9105) [002] dnh6 82316.771715: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90261    RenderThread-9436  ( 9105) [002] d..2 82316.771726: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
90262<...>-86 ( 86) [002] d..2 82316.771750: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
90263    RenderThread-9436  ( 9105) [002] d.h3 82316.771784: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90264          <idle>-0     (-----) [000] d.s2 82316.771805: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
90265          <idle>-0     (-----) [005] dnh2 82316.771813: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90266          <idle>-0     (-----) [005] .n.1 82316.771817: cpu_idle: state=4294967295 cpu_id=5
90267          <idle>-0     (-----) [000] dns3 82316.771822: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
90268          <idle>-0     (-----) [000] dns2 82316.771824: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
90269          <idle>-0     (-----) [005] d..2 82316.771826: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90270          <idle>-0     (-----) [000] dns3 82316.771835: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
90271          <idle>-0     (-----) [000] .n.1 82316.771853: cpu_idle: state=4294967295 cpu_id=0
90272<...>-5340 ( 788) [005] d..1 82316.771879: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90273          <idle>-0     (-----) [000] d..2 82316.771905: 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
90274<...>-8 ( 8) [000] d..2 82316.771924: 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
90275    RenderThread-9436  ( 9105) [002] d.H2 82316.771929: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
90276     rcu_preempt-7     (    7) [000] d.h3 82316.771933: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90277    RenderThread-9436  ( 9105) [002] d.H3 82316.771946: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
90278     rcu_preempt-7     (    7) [000] d..2 82316.771946: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
90279          <idle>-0     (-----) [001] .n.1 82316.771951: cpu_idle: state=4294967295 cpu_id=1
90280          <idle>-0     (-----) [001] d..2 82316.771961: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
90281         sugov:0-576   (  576) [001] .... 82316.771992: clk_set_rate: pwrcl_clk 902400000
90282 neuralnetworks@-13088 (  788) [000] d..2 82316.771996: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90283         sugov:0-576   (  576) [001] .... 82316.772008: clk_set_rate: cpu3_pwrcl_clk 1132800000
90284          <idle>-0     (-----) [000] d..1 82316.772009: cpu_idle: state=0 cpu_id=0
90285         sugov:0-576   (  576) [001] .... 82316.772016: clk_set_rate: cpu2_pwrcl_clk 1132800000
90286         sugov:0-576   (  576) [001] .... 82316.772023: clk_set_rate: cpu1_pwrcl_clk 1132800000
90287         sugov:0-576   (  576) [001] .... 82316.772030: clk_set_rate: cpu0_pwrcl_clk 902400000
90288<...>-5340 ( 788) [005] d..2 82316.772061: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
90289         sugov:0-576   (  576) [001] d.h1 82316.772101: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
90290<...>-5340 ( 788) [005] d..2 82316.772106: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90291          <idle>-0     (-----) [005] d..1 82316.772122: cpu_idle: state=0 cpu_id=5
90292         sugov:0-576   (  576) [001] .... 82316.772143: cpu_frequency: state=902400 cpu_id=0
90293         sugov:0-576   (  576) [001] .... 82316.772163: cpu_frequency: state=902400 cpu_id=1
90294         sugov:0-576   (  576) [001] .... 82316.772167: cpu_frequency: state=902400 cpu_id=2
90295         sugov:0-576   (  576) [001] .... 82316.772171: cpu_frequency: state=902400 cpu_id=3
90296         sugov:0-576   (  576) [001] d..2 82316.772188: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
90297    RenderThread-9436  ( 9105) [002] d.h3 82316.772227: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90298<...>-87 ( 87) [001] d..2 82316.772229: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90299          <idle>-0     (-----) [001] d..1 82316.772239: cpu_idle: state=0 cpu_id=1
90300    RenderThread-9436  ( 9105) [002] dnh4 82316.772251: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90301    RenderThread-9436  ( 9105) [002] d..2 82316.772266: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
90302<...>-86 ( 86) [002] d..2 82316.772291: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
90303          <idle>-0     (-----) [005] ...1 82316.772440: cpu_idle: state=4294967295 cpu_id=5
90304          <idle>-0     (-----) [005] d..1 82316.772444: cpu_idle: state=0 cpu_id=5
90305    RenderThread-9436  ( 9105) [002] d..2 82316.772469: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
90306          <idle>-0     (-----) [002] d..1 82316.772483: cpu_idle: state=0 cpu_id=2
90307          <idle>-0     (-----) [002] d.h2 82316.772559: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
90308          <idle>-0     (-----) [002] d.h3 82316.772568: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
90309          <idle>-0     (-----) [002] dnh3 82316.772573: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
90310          <idle>-0     (-----) [002] .n.1 82316.772581: cpu_idle: state=4294967295 cpu_id=2
90311          <idle>-0     (-----) [002] d..2 82316.772593: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
90312          <idle>-0     (-----) [000] d.h3 82316.772598: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
90313          <idle>-0     (-----) [000] dnh4 82316.772623: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
90314          <idle>-0     (-----) [000] .n.1 82316.772635: cpu_idle: state=4294967295 cpu_id=0
90315          <idle>-0     (-----) [000] d..2 82316.772646: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
90316 kgsl_worker_thr-258   (  258) [000] d..2 82316.772697: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
90317 kgsl_worker_thr-258   (  258) [000] d..3 82316.772735: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
90318 kgsl_worker_thr-258   (  258) [000] d..2 82316.772752: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
90319    RenderThread-9436  ( 9105) [002] .... 82316.772785: binder_transaction: transaction=1571266 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
90320    RenderThread-9436  ( 9105) [002] .... 82316.772790: binder_transaction_alloc_buf: transaction=1571266 data_size=192 offsets_size=8
90321    RenderThread-9436  ( 9105) [002] d..4 82316.772799: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
90322    RenderThread-9436  ( 9105) [002] dn.5 82316.772816: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
90323    RenderThread-9436  ( 9105) [002] d..2 82316.772825: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
90324<...>-13083 ( 8858) [002] .... 82316.772833: binder_transaction_received: transaction=1571266
90325  kworker/u16:15-1311  ( 1311) [000] d..2 82316.772954: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90326          <idle>-0     (-----) [000] d..1 82316.772968: cpu_idle: state=0 cpu_id=0
90327<...>-13083 ( 8858) [002] .... 82316.772980: binder_transaction: transaction=1571267 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
90328<...>-13083 ( 8858) [002] .... 82316.772984: binder_transaction_alloc_buf: transaction=1571267 data_size=68 offsets_size=0
90329<...>-13083 ( 8858) [002] d..2 82316.773026: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
90330    RenderThread-9436  ( 9105) [002] .... 82316.773035: binder_transaction_received: transaction=1571267
90331    RenderThread-9436  ( 9105) [002] d..2 82316.773127: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90332          <idle>-0     (-----) [002] d..1 82316.773145: cpu_idle: state=0 cpu_id=2
90333          <idle>-0     (-----) [002] d.h4 82316.773919: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90334          <idle>-0     (-----) [005] dnh2 82316.773939: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90335          <idle>-0     (-----) [005] .n.1 82316.773943: cpu_idle: state=4294967295 cpu_id=5
90336          <idle>-0     (-----) [005] d..2 82316.773951: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90337          <idle>-0     (-----) [002] ...1 82316.773960: cpu_idle: state=4294967295 cpu_id=2
90338          <idle>-0     (-----) [002] d..1 82316.773966: cpu_idle: state=0 cpu_id=2
90339<...>-5340 ( 788) [005] d..1 82316.774002: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90340          <idle>-0     (-----) [000] dnh2 82316.774031: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90341          <idle>-0     (-----) [001] d.h2 82316.774033: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
90342          <idle>-0     (-----) [000] .n.1 82316.774038: cpu_idle: state=4294967295 cpu_id=0
90343          <idle>-0     (-----) [001] dnh3 82316.774047: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
90344          <idle>-0     (-----) [000] d..2 82316.774049: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
90345          <idle>-0     (-----) [001] .n.1 82316.774074: cpu_idle: state=4294967295 cpu_id=1
90346          <idle>-0     (-----) [001] d..2 82316.774091: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
90347<...>-5340 ( 788) [005] ...1 82316.774098: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
90348<...>-5340 ( 788) [005] ...1 82316.774102: tracing_mark_write: E|788
90349        DispSync-8879  ( 8858) [001] d..1 82316.774109: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
90350 neuralnetworks@-13088 (  788) [000] d..2 82316.774111: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90351<...>-5340 ( 788) [005] .... 82316.774119: binder_transaction: transaction=1571268 dest_node=1571264 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
90352<...>-5340 ( 788) [005] .... 82316.774121: binder_transaction_alloc_buf: transaction=1571268 data_size=60 offsets_size=0
90353          <idle>-0     (-----) [000] d..1 82316.774122: cpu_idle: state=0 cpu_id=0
90354        DispSync-8879  ( 8858) [001] d..2 82316.774124: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
90355<...>-5340 ( 788) [005] d..4 82316.774125: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
90356          <idle>-0     (-----) [003] .n.1 82316.774129: cpu_idle: state=4294967295 cpu_id=3
90357<...>-5340 ( 788) [005] d..5 82316.774139: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
90358          <idle>-0     (-----) [003] d..2 82316.774139: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
90359          <idle>-0     (-----) [004] .n.1 82316.774145: cpu_idle: state=4294967295 cpu_id=4
90360          <idle>-0     (-----) [004] d..2 82316.774153: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
90361        DispSync-8879  ( 8858) [001] d..2 82316.774153: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90362           <...>-27571 (-----) [004] .... 82316.774158: binder_transaction_received: transaction=1571268
90363<...>-5340 ( 788) [005] ...1 82316.774163: tracing_mark_write: E|788
90364          <idle>-0     (-----) [001] d..1 82316.774166: cpu_idle: state=0 cpu_id=1
90365<...>-5340 ( 788) [005] .... 82316.774169: binder_transaction: transaction=1571269 dest_node=0 dest_proc=27550 dest_thread=27758 reply=1 flags=0x0 code=0x0
90366<...>-5340 ( 788) [005] .... 82316.774171: binder_transaction_alloc_buf: transaction=1571269 data_size=8 offsets_size=0
90367   sfEventThread-8882  ( 8858) [003] d..3 82316.774172: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
90368<...>-5340 ( 788) [005] d..2 82316.774173: sched_waking: comm=id.nn.benchmark pid=27758 prio=110 target_cpu=005
90369           <...>-27571 (-----) [004] ...1 82316.774177: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
90370<...>-5340 ( 788) [005] d..3 82316.774181: sched_wakeup: comm=id.nn.benchmark pid=27758 prio=110 target_cpu=005
90371<...>-5340 ( 788) [005] .... 82316.774183: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
90372           <...>-27571 (-----) [004] ...1 82316.774184: tracing_mark_write: E|27550
90373   sfEventThread-8882  ( 8858) [003] d..4 82316.774191: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
90374          <idle>-0     (-----) [000] .n.1 82316.774196: cpu_idle: state=4294967295 cpu_id=0
90375          <idle>-0     (-----) [000] d..2 82316.774206: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
90376           <...>-27571 (-----) [004] d..2 82316.774212: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90377          <idle>-0     (-----) [004] d..1 82316.774220: cpu_idle: state=0 cpu_id=4
90378   sfEventThread-8882  ( 8858) [003] d..2 82316.774221: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90379<...>-5340 ( 788) [005] d..2 82316.774226: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27758 next_prio=110
90380          <idle>-0     (-----) [003] d..1 82316.774234: cpu_idle: state=0 cpu_id=3
90381           <...>-27758 (-----) [005] .... 82316.774236: binder_transaction_received: transaction=1571269
90382           <...>-27758 (-----) [005] ...1 82316.774273: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
90383           <...>-27758 (-----) [005] ...1 82316.774279: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
90384           <...>-27758 (-----) [005] ...1 82316.774305: tracing_mark_write: E|27550
90385           <...>-27758 (-----) [005] ...1 82316.774309: tracing_mark_write: E|27550
90386           <...>-27758 (-----) [005] ...1 82316.774313: tracing_mark_write: E|27550
90387           <...>-27758 (-----) [005] ...1 82316.774501: tracing_mark_write: E|27550
90388           <...>-27758 (-----) [005] d..1 82316.774514: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90389           <...>-27758 (-----) [005] d..2 82316.774531: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90390          <idle>-0     (-----) [004] .n.1 82316.774536: cpu_idle: state=4294967295 cpu_id=4
90391          <idle>-0     (-----) [004] d..2 82316.774542: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
90392           <...>-27550 (-----) [004] d..2 82316.774562: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90393          <idle>-0     (-----) [004] d..1 82316.774571: cpu_idle: state=0 cpu_id=4
90394  surfaceflinger-8858  ( 8858) [000] d..1 82316.774585: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
90395  surfaceflinger-8858  ( 8858) [000] d..2 82316.774606: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
90396          <idle>-0     (-----) [003] .n.1 82316.774610: cpu_idle: state=4294967295 cpu_id=3
90397           <...>-27758 (-----) [005] d..1 82316.774619: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90398          <idle>-0     (-----) [003] d..2 82316.774620: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
90399           <...>-27758 (-----) [005] d..2 82316.774628: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90400          <idle>-0     (-----) [004] .n.1 82316.774633: cpu_idle: state=4294967295 cpu_id=4
90401          <idle>-0     (-----) [004] d..2 82316.774641: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
90402   sfEventThread-8882  ( 8858) [003] d..2 82316.774651: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90403          <idle>-0     (-----) [003] d..1 82316.774663: cpu_idle: state=0 cpu_id=3
90404           <...>-27758 (-----) [005] d..2 82316.774668: sched_switch: prev_comm=id.nn.benchmark prev_pid=27758 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
90405           <...>-27550 (-----) [004] ...1 82316.774674: tracing_mark_write: E|27550
90406           <...>-27550 (-----) [004] ...1 82316.774678: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
90407           <...>-27550 (-----) [004] ...1 82316.774684: tracing_mark_write: E|27550
90408           <...>-27550 (-----) [004] ...1 82316.774687: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
90409          <idle>-0     (-----) [005] d..1 82316.774689: cpu_idle: state=0 cpu_id=5
90410           <...>-27550 (-----) [004] ...1 82316.774691: tracing_mark_write: E|27550
90411           <...>-27550 (-----) [004] ...1 82316.774695: tracing_mark_write: E|27550
90412  surfaceflinger-8858  ( 8858) [000] ...1 82316.774795: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
90413  surfaceflinger-8858  ( 8858) [000] ...1 82316.774801: tracing_mark_write: E|8858
90414           <...>-27550 (-----) [004] ...1 82316.774808: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
90415  surfaceflinger-8858  ( 8858) [000] .... 82316.774852: binder_transaction: transaction=1571270 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
90416  surfaceflinger-8858  ( 8858) [000] .... 82316.774857: binder_transaction_alloc_buf: transaction=1571270 data_size=540 offsets_size=96
90417           <...>-27550 (-----) [004] ...1 82316.774866: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
90418           <...>-27550 (-----) [004] ...1 82316.774871: tracing_mark_write: E|27550
90419           <...>-27550 (-----) [004] ...1 82316.774874: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
90420           <...>-27550 (-----) [004] ...1 82316.774880: tracing_mark_write: E|27550
90421  surfaceflinger-8858  ( 8858) [000] ...2 82316.774881: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
90422           <...>-27550 (-----) [004] ...1 82316.774883: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
90423           <...>-27550 (-----) [004] ...1 82316.774887: tracing_mark_write: E|27550
90424  surfaceflinger-8858  ( 8858) [000] d..4 82316.774889: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
90425           <...>-27550 (-----) [004] ...1 82316.774890: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
90426  surfaceflinger-8858  ( 8858) [000] d..5 82316.774909: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
90427          <idle>-0     (-----) [002] .n.1 82316.774914: cpu_idle: state=4294967295 cpu_id=2
90428          <idle>-0     (-----) [002] d..2 82316.774925: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
90429 [email protected]   (  619) [002] .... 82316.774936: binder_transaction_received: transaction=1571270
90430  surfaceflinger-8858  ( 8858) [000] d..2 82316.774940: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90431          <idle>-0     (-----) [000] d..1 82316.774957: cpu_idle: state=0 cpu_id=0
90432 [email protected]   (  619) [002] ...1 82316.774982: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
90433          <idle>-0     (-----) [005] .n.1 82316.774983: cpu_idle: state=4294967295 cpu_id=5
90434           <...>-27550 (-----) [004] ...1 82316.774986: tracing_mark_write: E|27550
90435           <...>-27550 (-----) [004] ...1 82316.774991: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
90436          <idle>-0     (-----) [005] d..2 82316.774992: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27759 next_prio=110
90437           <...>-27550 (-----) [004] d..2 82316.775007: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90438          <idle>-0     (-----) [004] d..1 82316.775021: cpu_idle: state=0 cpu_id=4
90439           <...>-27759 (-----) [005] ...1 82316.775052: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
90440           <...>-27759 (-----) [005] ...1 82316.775067: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
90441           <...>-27759 (-----) [005] ...1 82316.775070: tracing_mark_write: E|27550
90442 [email protected]   (  619) [002] ...1 82316.775088: tracing_mark_write: B|619|HWCSession::PresentDisplay::
90443           <...>-27759 (-----) [005] .... 82316.775093: binder_transaction: transaction=1571271 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
90444           <...>-27759 (-----) [005] .... 82316.775097: binder_transaction_alloc_buf: transaction=1571271 data_size=48 offsets_size=0
90445           <...>-27759 (-----) [005] ...2 82316.775100: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
90446           <...>-27759 (-----) [005] d..4 82316.775103: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
90447           <...>-27759 (-----) [005] dn.5 82316.775114: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
90448           <...>-27759 (-----) [005] d..2 82316.775151: sched_switch: prev_comm=id.nn.benchmark prev_pid=27759 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
90449 [email protected]   (  619) [002] d.s2 82316.775152: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
90450<...>-770 ( 770) [005] .... 82316.775161: binder_transaction_received: transaction=1571271
90451 [email protected]   (  619) [002] d.s3 82316.775169: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
90452<...>-770 ( 770) [005] ...1 82316.775187: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
90453<...>-770 ( 770) [005] d..2 82316.775270: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
90454 [email protected]   (  619) [002] d.h1 82316.775309: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
90455<...>-770 ( 770) [005] ...1 82316.775327: tracing_mark_write: E|770
90456<...>-770 ( 770) [005] .... 82316.775336: binder_transaction: transaction=1571272 dest_node=0 dest_proc=27550 dest_thread=27759 reply=1 flags=0x0 code=0x0
90457<...>-770 ( 770) [005] .... 82316.775338: binder_transaction_alloc_buf: transaction=1571272 data_size=168 offsets_size=32
90458<...>-770 ( 770) [005] .... 82316.775345: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
90459 [email protected]   (  619) [002] ...1 82316.775349: tracing_mark_write: B|619|HWDeviceDRM::Commit::
90460 [email protected]   (  619) [002] ...1 82316.775361: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
90461<...>-770 ( 770) [005] d..2 82316.775381: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27759 next_prio=110
90462           <...>-27759 (-----) [005] .... 82316.775392: binder_transaction_received: transaction=1571272
90463           <...>-27759 (-----) [005] ...1 82316.775467: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
90464           <...>-27759 (-----) [005] ...1 82316.775472: tracing_mark_write: E|27550
90465           <...>-27759 (-----) [005] .... 82316.775487: binder_transaction: transaction=1571273 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
90466           <...>-27759 (-----) [005] .... 82316.775489: binder_transaction_alloc_buf: transaction=1571273 data_size=48 offsets_size=0
90467           <...>-27759 (-----) [005] ...2 82316.775492: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
90468           <...>-27759 (-----) [005] d..4 82316.775494: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
90469           <...>-27759 (-----) [005] dn.5 82316.775504: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
90470           <...>-27759 (-----) [005] d..2 82316.775510: sched_switch: prev_comm=id.nn.benchmark prev_pid=27759 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
90471<...>-770 ( 770) [005] .... 82316.775518: binder_transaction_received: transaction=1571273
90472<...>-770 ( 770) [005] ...1 82316.775535: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
90473<...>-770 ( 770) [005] ...1 82316.775614: tracing_mark_write: E|770
90474<...>-770 ( 770) [005] .... 82316.775622: binder_transaction: transaction=1571274 dest_node=0 dest_proc=27550 dest_thread=27759 reply=1 flags=0x0 code=0x0
90475<...>-770 ( 770) [005] .... 82316.775624: binder_transaction_alloc_buf: transaction=1571274 data_size=168 offsets_size=32
90476<...>-770 ( 770) [005] .... 82316.775630: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
90477<...>-770 ( 770) [005] d..2 82316.775664: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27759 next_prio=110
90478           <...>-27759 (-----) [005] .... 82316.775674: binder_transaction_received: transaction=1571274
90479 [email protected]   (  619) [002] d..2 82316.775938: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
90480           <...>-27759 (-----) [005] ...1 82316.775951: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
90481           <...>-27759 (-----) [005] ...1 82316.775961: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
90482 [email protected]   (  619) [002] d..3 82316.775961: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
90483           <...>-27759 (-----) [005] ...1 82316.775965: tracing_mark_write: E|27550
90484          <idle>-0     (-----) [001] .n.1 82316.775979: cpu_idle: state=4294967295 cpu_id=1
90485          <idle>-0     (-----) [001] d..2 82316.775990: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
90486           <...>-27759 (-----) [005] .... 82316.776026: binder_transaction: transaction=1571275 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
90487           <...>-27759 (-----) [005] .... 82316.776030: binder_transaction_alloc_buf: transaction=1571275 data_size=556 offsets_size=104
90488           <...>-27759 (-----) [005] ...2 82316.776044: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
90489           <...>-27759 (-----) [005] d..4 82316.776046: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90490           <...>-27759 (-----) [005] dn.5 82316.776057: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90491 [email protected]   (  619) [002] ...1 82316.776060: tracing_mark_write: E|619
90492           <...>-27759 (-----) [005] d..2 82316.776064: sched_switch: prev_comm=id.nn.benchmark prev_pid=27759 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90493 [email protected]   (  619) [002] ...1 82316.776066: tracing_mark_write: E|619
90494<...>-5340 ( 788) [005] .... 82316.776074: binder_transaction_received: transaction=1571275
90495<...>-5340 ( 788) [005] ...1 82316.776120: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
90496 [email protected]   (  619) [002] ...1 82316.776127: tracing_mark_write: E|619
90497<...>-5340 ( 788) [005] d..2 82316.776166: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
90498 [email protected]   (  619) [002] ...1 82316.776173: tracing_mark_write: E|619
90499 [email protected]   (  619) [002] .... 82316.776188: binder_transaction: transaction=1571278 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
90500<...>-5340 ( 788) [005] d..2 82316.776191: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27759 next_prio=110
90501 crtc_commit:111-321   (  321) [001] d.h1 82316.776192: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
90502 [email protected]   (  619) [002] .... 82316.776193: binder_transaction_alloc_buf: transaction=1571278 data_size=576 offsets_size=112
90503 [email protected]   (  619) [002] d..2 82316.776213: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
90504           <...>-27759 (-----) [005] d..2 82316.776217: sched_switch: prev_comm=id.nn.benchmark prev_pid=27759 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90505 [email protected]   (  619) [002] d..3 82316.776231: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
90506 [email protected]   (  619) [002] .... 82316.776236: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
90507          <idle>-0     (-----) [005] d..1 82316.776236: cpu_idle: state=0 cpu_id=5
90508          <idle>-0     (-----) [000] .n.1 82316.776236: cpu_idle: state=4294967295 cpu_id=0
90509          <idle>-0     (-----) [000] d..2 82316.776249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
90510  surfaceflinger-8858  ( 8858) [000] .... 82316.776257: binder_transaction_received: transaction=1571278
90511 [email protected]   (  619) [002] d..2 82316.776308: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
90512     kworker/2:1-25259 (25259) [002] d..2 82316.776343: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
90513<...>-581 ( 571) [002] d..2 82316.776465: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90514          <idle>-0     (-----) [002] d..1 82316.776484: cpu_idle: state=0 cpu_id=2
90515  surfaceflinger-8858  ( 8858) [000] d..2 82316.776677: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90516          <idle>-0     (-----) [000] d..1 82316.776690: cpu_idle: state=0 cpu_id=0
90517 crtc_commit:111-321   (  321) [001] d..2 82316.776691: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
90518<...>-87 ( 87) [001] d..2 82316.776734: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90519          <idle>-0     (-----) [001] d..1 82316.776747: cpu_idle: state=0 cpu_id=1
90520          <idle>-0     (-----) [002] d.h4 82316.776748: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90521          <idle>-0     (-----) [002] dnh5 82316.776767: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90522          <idle>-0     (-----) [002] .n.1 82316.776779: cpu_idle: state=4294967295 cpu_id=2
90523          <idle>-0     (-----) [002] d..2 82316.776791: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
90524<...>-86 ( 86) [002] d.h4 82316.776827: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90525          <idle>-0     (-----) [005] dnh2 82316.776849: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90526          <idle>-0     (-----) [005] .n.1 82316.776854: cpu_idle: state=4294967295 cpu_id=5
90527          <idle>-0     (-----) [005] d..2 82316.776862: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90528<...>-86 ( 86) [002] d..2 82316.776882: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90529          <idle>-0     (-----) [002] d..1 82316.776895: cpu_idle: state=0 cpu_id=2
90530<...>-5340 ( 788) [005] d..1 82316.776918: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90531          <idle>-0     (-----) [000] dnh2 82316.776947: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90532          <idle>-0     (-----) [000] .n.1 82316.776954: cpu_idle: state=4294967295 cpu_id=0
90533          <idle>-0     (-----) [000] d..2 82316.776963: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
90534 neuralnetworks@-13088 (  788) [000] d..2 82316.777017: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90535          <idle>-0     (-----) [000] d..1 82316.777027: cpu_idle: state=0 cpu_id=0
90536<...>-5340 ( 788) [005] d..2 82316.777069: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
90537          <idle>-0     (-----) [001] dnh2 82316.777091: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
90538<...>-5340 ( 788) [005] d..2 82316.777095: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90539          <idle>-0     (-----) [001] .n.1 82316.777097: cpu_idle: state=4294967295 cpu_id=1
90540          <idle>-0     (-----) [001] d..2 82316.777108: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
90541          <idle>-0     (-----) [005] d..1 82316.777108: cpu_idle: state=0 cpu_id=5
90542<...>-87 ( 87) [001] d..2 82316.777143: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90543          <idle>-0     (-----) [002] d.h4 82316.777144: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90544          <idle>-0     (-----) [001] d..1 82316.777154: cpu_idle: state=0 cpu_id=1
90545          <idle>-0     (-----) [002] dnh5 82316.777155: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90546          <idle>-0     (-----) [002] .n.1 82316.777164: cpu_idle: state=4294967295 cpu_id=2
90547          <idle>-0     (-----) [002] d..2 82316.777174: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
90548<...>-86 ( 86) [002] d..2 82316.777205: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90549          <idle>-0     (-----) [002] d..1 82316.777217: cpu_idle: state=0 cpu_id=2
90550          <idle>-0     (-----) [000] d.s2 82316.778474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
90551          <idle>-0     (-----) [000] dns3 82316.778492: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
90552          <idle>-0     (-----) [000] dns2 82316.778495: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
90553          <idle>-0     (-----) [000] dns3 82316.778507: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
90554          <idle>-0     (-----) [000] dns3 82316.778512: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
90555          <idle>-0     (-----) [000] dns4 82316.778525: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
90556          <idle>-0     (-----) [000] .n.1 82316.778535: cpu_idle: state=4294967295 cpu_id=0
90557          <idle>-0     (-----) [000] d..2 82316.778544: 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
90558     rcu_preempt-7     (    7) [000] d..2 82316.778554: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
90559     rcu_preempt-7     (    7) [000] d..3 82316.778571: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
90560     rcu_preempt-7     (    7) [000] d..2 82316.778586: 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
90561         rcuop/0-10    (   10) [000] d..2 82316.778592: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
90562         rcuop/0-10    (   10) [000] d..3 82316.778607: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
90563         rcuop/0-10    (   10) [000] d..2 82316.778674: 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
90564          <idle>-0     (-----) [002] ...1 82316.778677: cpu_idle: state=4294967295 cpu_id=2
90565          <idle>-0     (-----) [002] d..1 82316.778682: cpu_idle: state=0 cpu_id=2
90566         rcuop/1-21    (   21) [000] d..2 82316.778687: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
90567<...>-8 ( 8) [000] d..2 82316.778693: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
90568<...>-8 ( 8) [000] d..3 82316.778709: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
90569<...>-8 ( 8) [000] d..2 82316.778719: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
90570<...>-46 ( 46) [000] d..2 82316.778729: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
90571<...>-46 ( 46) [000] d..3 82316.778741: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
90572<...>-46 ( 46) [000] d..2 82316.778750: 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
90573<...>-8 ( 8) [000] d..2 82316.778760: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
90574  kworker/u16:15-1311  ( 1311) [000] .... 82316.778799: clk_set_rate: l3_cluster0_vote_clk 403200000
90575          <idle>-0     (-----) [002] d.h4 82316.778822: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90576          <idle>-0     (-----) [005] dnh2 82316.778844: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90577          <idle>-0     (-----) [005] .n.1 82316.778848: cpu_idle: state=4294967295 cpu_id=5
90578          <idle>-0     (-----) [005] d..2 82316.778857: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90579          <idle>-0     (-----) [002] ...1 82316.778858: cpu_idle: state=4294967295 cpu_id=2
90580          <idle>-0     (-----) [002] d..1 82316.778865: cpu_idle: state=0 cpu_id=2
90581<...>-5340 ( 788) [005] d..1 82316.778908: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90582  kworker/u16:15-1311  ( 1311) [000] dnh2 82316.778936: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90583  kworker/u16:15-1311  ( 1311) [000] d..2 82316.778947: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
90584 neuralnetworks@-13088 (  788) [000] d..2 82316.778997: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
90585<...>-5340 ( 788) [005] ...1 82316.779001: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
90586<...>-5340 ( 788) [005] ...1 82316.779005: tracing_mark_write: E|788
90587<...>-5340 ( 788) [005] .... 82316.779021: binder_transaction: transaction=1571279 dest_node=1571276 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
90588<...>-5340 ( 788) [005] .... 82316.779024: binder_transaction_alloc_buf: transaction=1571279 data_size=60 offsets_size=0
90589<...>-5340 ( 788) [005] d..4 82316.779027: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
90590<...>-5340 ( 788) [005] d..5 82316.779039: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
90591          <idle>-0     (-----) [004] .n.1 82316.779044: cpu_idle: state=4294967295 cpu_id=4
90592          <idle>-0     (-----) [004] d..2 82316.779053: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
90593           <...>-27571 (-----) [004] .... 82316.779058: binder_transaction_received: transaction=1571279
90594<...>-5340 ( 788) [005] ...1 82316.779061: tracing_mark_write: E|788
90595<...>-5340 ( 788) [005] .... 82316.779068: binder_transaction: transaction=1571280 dest_node=0 dest_proc=27550 dest_thread=27759 reply=1 flags=0x0 code=0x0
90596<...>-5340 ( 788) [005] .... 82316.779070: binder_transaction_alloc_buf: transaction=1571280 data_size=8 offsets_size=0
90597<...>-5340 ( 788) [005] d..2 82316.779072: sched_waking: comm=id.nn.benchmark pid=27759 prio=110 target_cpu=005
90598           <...>-27571 (-----) [004] ...1 82316.779078: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
90599<...>-5340 ( 788) [005] d..3 82316.779079: sched_wakeup: comm=id.nn.benchmark pid=27759 prio=110 target_cpu=005
90600<...>-5340 ( 788) [005] .... 82316.779081: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
90601           <...>-27571 (-----) [004] ...1 82316.779084: tracing_mark_write: E|27550
90602  kworker/u16:15-1311  ( 1311) [000] d..2 82316.779099: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
90603           <...>-27571 (-----) [004] d..2 82316.779114: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90604          <idle>-0     (-----) [000] d..1 82316.779115: cpu_idle: state=0 cpu_id=0
90605          <idle>-0     (-----) [004] d..1 82316.779122: cpu_idle: state=0 cpu_id=4
90606<...>-5340 ( 788) [005] d..2 82316.779122: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27759 next_prio=110
90607          <idle>-0     (-----) [001] d.s3 82316.779131: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
90608           <...>-27759 (-----) [005] .... 82316.779132: binder_transaction_received: transaction=1571280
90609          <idle>-0     (-----) [001] d.s4 82316.779142: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
90610          <idle>-0     (-----) [001] d.s4 82316.779151: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
90611          <idle>-0     (-----) [000] .n.1 82316.779158: cpu_idle: state=4294967295 cpu_id=0
90612          <idle>-0     (-----) [001] ...1 82316.779162: cpu_idle: state=4294967295 cpu_id=1
90613          <idle>-0     (-----) [001] d..1 82316.779167: cpu_idle: state=0 cpu_id=1
90614           <...>-27759 (-----) [005] ...1 82316.779169: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
90615          <idle>-0     (-----) [000] d..2 82316.779170: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
90616           <...>-27759 (-----) [005] ...1 82316.779175: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
90617           <...>-27759 (-----) [005] ...1 82316.779213: tracing_mark_write: E|27550
90618           <...>-27759 (-----) [005] ...1 82316.779221: tracing_mark_write: E|27550
90619           <...>-27759 (-----) [005] ...1 82316.779225: tracing_mark_write: E|27550
90620  kworker/u16:15-1311  ( 1311) [000] d..2 82316.779256: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90621          <idle>-0     (-----) [000] d..1 82316.779267: cpu_idle: state=0 cpu_id=0
90622           <...>-27759 (-----) [005] ...1 82316.779414: tracing_mark_write: E|27550
90623           <...>-27759 (-----) [005] d..1 82316.779427: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90624           <...>-27759 (-----) [005] d..2 82316.779443: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90625          <idle>-0     (-----) [004] .n.1 82316.779448: cpu_idle: state=4294967295 cpu_id=4
90626          <idle>-0     (-----) [004] d..2 82316.779455: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
90627           <...>-27550 (-----) [004] d..2 82316.779475: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90628          <idle>-0     (-----) [004] d..1 82316.779484: cpu_idle: state=0 cpu_id=4
90629           <...>-27759 (-----) [005] d..1 82316.779536: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90630           <...>-27759 (-----) [005] d..2 82316.779545: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90631          <idle>-0     (-----) [004] .n.1 82316.779551: cpu_idle: state=4294967295 cpu_id=4
90632          <idle>-0     (-----) [004] d..2 82316.779558: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
90633           <...>-27759 (-----) [005] d..2 82316.779586: sched_switch: prev_comm=id.nn.benchmark prev_pid=27759 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
90634           <...>-27550 (-----) [004] ...1 82316.779592: tracing_mark_write: E|27550
90635           <...>-27550 (-----) [004] ...1 82316.779596: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
90636           <...>-27550 (-----) [004] ...1 82316.779602: tracing_mark_write: E|27550
90637           <...>-27550 (-----) [004] ...1 82316.779605: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
90638          <idle>-0     (-----) [005] d..1 82316.779607: cpu_idle: state=0 cpu_id=5
90639           <...>-27550 (-----) [004] ...1 82316.779609: tracing_mark_write: E|27550
90640           <...>-27550 (-----) [004] ...1 82316.779614: tracing_mark_write: E|27550
90641           <...>-27550 (-----) [004] ...1 82316.779727: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
90642           <...>-27550 (-----) [004] ...1 82316.779785: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
90643           <...>-27550 (-----) [004] ...1 82316.779789: tracing_mark_write: E|27550
90644           <...>-27550 (-----) [004] ...1 82316.779793: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
90645           <...>-27550 (-----) [004] ...1 82316.779799: tracing_mark_write: E|27550
90646           <...>-27550 (-----) [004] ...1 82316.779803: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
90647           <...>-27550 (-----) [004] ...1 82316.779807: tracing_mark_write: E|27550
90648           <...>-27550 (-----) [004] ...1 82316.779810: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
90649          <idle>-0     (-----) [005] .n.1 82316.779904: cpu_idle: state=4294967295 cpu_id=5
90650           <...>-27550 (-----) [004] ...1 82316.779906: tracing_mark_write: E|27550
90651           <...>-27550 (-----) [004] ...1 82316.779910: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
90652          <idle>-0     (-----) [005] d..2 82316.779912: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27760 next_prio=110
90653           <...>-27550 (-----) [004] d..2 82316.779927: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90654          <idle>-0     (-----) [004] d..1 82316.779942: cpu_idle: state=0 cpu_id=4
90655           <...>-27760 (-----) [005] ...1 82316.779974: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
90656           <...>-27760 (-----) [005] ...1 82316.779989: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
90657           <...>-27760 (-----) [005] ...1 82316.779993: tracing_mark_write: E|27550
90658           <...>-27760 (-----) [005] .... 82316.780015: binder_transaction: transaction=1571281 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
90659           <...>-27760 (-----) [005] .... 82316.780018: binder_transaction_alloc_buf: transaction=1571281 data_size=48 offsets_size=0
90660           <...>-27760 (-----) [005] ...2 82316.780021: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
90661           <...>-27760 (-----) [005] d..4 82316.780025: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
90662           <...>-27760 (-----) [005] dn.5 82316.780036: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
90663           <...>-27760 (-----) [005] d..2 82316.780044: sched_switch: prev_comm=id.nn.benchmark prev_pid=27760 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
90664<...>-770 ( 770) [005] .... 82316.780053: binder_transaction_received: transaction=1571281
90665<...>-770 ( 770) [005] ...1 82316.780078: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
90666<...>-770 ( 770) [005] d..2 82316.780154: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
90667          <idle>-0     (-----) [000] dnh2 82316.780195: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
90668          <idle>-0     (-----) [000] .n.1 82316.780202: cpu_idle: state=4294967295 cpu_id=0
90669<...>-770 ( 770) [005] ...1 82316.780208: tracing_mark_write: E|770
90670          <idle>-0     (-----) [000] d..2 82316.780212: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
90671<...>-770 ( 770) [005] .... 82316.780216: binder_transaction: transaction=1571282 dest_node=0 dest_proc=27550 dest_thread=27760 reply=1 flags=0x0 code=0x0
90672<...>-770 ( 770) [005] .... 82316.780219: binder_transaction_alloc_buf: transaction=1571282 data_size=168 offsets_size=32
90673<...>-770 ( 770) [005] .... 82316.780226: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
90674<...>-770 ( 770) [005] d..2 82316.780261: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27760 next_prio=110
90675           <...>-27760 (-----) [005] .... 82316.780272: binder_transaction_received: transaction=1571282
90676<...>-581 ( 571) [000] d..2 82316.780309: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90677          <idle>-0     (-----) [000] d..1 82316.780323: cpu_idle: state=0 cpu_id=0
90678           <...>-27760 (-----) [005] ...1 82316.780340: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
90679           <...>-27760 (-----) [005] ...1 82316.780346: tracing_mark_write: E|27550
90680           <...>-27760 (-----) [005] .... 82316.780360: binder_transaction: transaction=1571283 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
90681           <...>-27760 (-----) [005] .... 82316.780363: binder_transaction_alloc_buf: transaction=1571283 data_size=48 offsets_size=0
90682           <...>-27760 (-----) [005] ...2 82316.780365: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
90683           <...>-27760 (-----) [005] d..4 82316.780367: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
90684           <...>-27760 (-----) [005] dn.5 82316.780377: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
90685           <...>-27760 (-----) [005] d..2 82316.780384: sched_switch: prev_comm=id.nn.benchmark prev_pid=27760 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
90686<...>-770 ( 770) [005] .... 82316.780392: binder_transaction_received: transaction=1571283
90687<...>-770 ( 770) [005] ...1 82316.780409: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
90688<...>-770 ( 770) [005] d..2 82316.780466: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
90689          <idle>-0     (-----) [000] dnh2 82316.780490: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
90690          <idle>-0     (-----) [000] .n.1 82316.780496: cpu_idle: state=4294967295 cpu_id=0
90691<...>-770 ( 770) [005] ...1 82316.780499: tracing_mark_write: E|770
90692          <idle>-0     (-----) [000] d..2 82316.780507: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
90693<...>-770 ( 770) [005] .... 82316.780507: binder_transaction: transaction=1571284 dest_node=0 dest_proc=27550 dest_thread=27760 reply=1 flags=0x0 code=0x0
90694<...>-770 ( 770) [005] .... 82316.780509: binder_transaction_alloc_buf: transaction=1571284 data_size=168 offsets_size=32
90695<...>-770 ( 770) [005] .... 82316.780515: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
90696<...>-770 ( 770) [005] d..2 82316.780549: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27760 next_prio=110
90697           <...>-27760 (-----) [005] .... 82316.780560: binder_transaction_received: transaction=1571284
90698<...>-581 ( 571) [000] d..2 82316.780561: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90699          <idle>-0     (-----) [000] d..1 82316.780573: cpu_idle: state=0 cpu_id=0
90700          <idle>-0     (-----) [002] ...1 82316.780623: cpu_idle: state=4294967295 cpu_id=2
90701          <idle>-0     (-----) [002] d..1 82316.780627: cpu_idle: state=0 cpu_id=2
90702           <...>-27760 (-----) [005] ...1 82316.780835: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
90703           <...>-27760 (-----) [005] ...1 82316.780845: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
90704           <...>-27760 (-----) [005] ...1 82316.780849: tracing_mark_write: E|27550
90705           <...>-27760 (-----) [005] .... 82316.780914: binder_transaction: transaction=1571285 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
90706           <...>-27760 (-----) [005] .... 82316.780918: binder_transaction_alloc_buf: transaction=1571285 data_size=556 offsets_size=104
90707           <...>-27760 (-----) [005] ...2 82316.780932: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
90708           <...>-27760 (-----) [005] d..4 82316.780935: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90709           <...>-27760 (-----) [005] dn.5 82316.780946: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90710           <...>-27760 (-----) [005] d..2 82316.780954: sched_switch: prev_comm=id.nn.benchmark prev_pid=27760 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90711<...>-5340 ( 788) [005] .... 82316.780963: binder_transaction_received: transaction=1571285
90712<...>-5340 ( 788) [005] ...1 82316.781008: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
90713<...>-5340 ( 788) [005] d..2 82316.781054: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
90714<...>-5340 ( 788) [005] d..2 82316.781090: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27760 next_prio=110
90715          <idle>-0     (-----) [000] dnh2 82316.781094: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
90716          <idle>-0     (-----) [000] .n.1 82316.781100: cpu_idle: state=4294967295 cpu_id=0
90717          <idle>-0     (-----) [000] d..2 82316.781110: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
90718           <...>-27760 (-----) [005] d..2 82316.781114: sched_switch: prev_comm=id.nn.benchmark prev_pid=27760 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90719          <idle>-0     (-----) [005] d..1 82316.781132: cpu_idle: state=0 cpu_id=5
90720<...>-87 ( 87) [000] d..2 82316.781152: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90721          <idle>-0     (-----) [002] d.h4 82316.781158: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90722          <idle>-0     (-----) [000] d..1 82316.781162: cpu_idle: state=0 cpu_id=0
90723          <idle>-0     (-----) [002] dnh5 82316.781173: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90724          <idle>-0     (-----) [002] .n.1 82316.781181: cpu_idle: state=4294967295 cpu_id=2
90725          <idle>-0     (-----) [002] d..2 82316.781193: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
90726<...>-86 ( 86) [002] d..2 82316.781227: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90727          <idle>-0     (-----) [002] d.h4 82316.781251: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90728          <idle>-0     (-----) [005] dnh2 82316.781272: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90729          <idle>-0     (-----) [005] .n.1 82316.781277: cpu_idle: state=4294967295 cpu_id=5
90730          <idle>-0     (-----) [005] d..2 82316.781285: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90731          <idle>-0     (-----) [002] d..1 82316.781291: cpu_idle: state=0 cpu_id=2
90732<...>-5340 ( 788) [005] d..1 82316.781336: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90733          <idle>-0     (-----) [000] dnh2 82316.781362: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90734          <idle>-0     (-----) [000] .n.1 82316.781367: cpu_idle: state=4294967295 cpu_id=0
90735          <idle>-0     (-----) [000] d..2 82316.781377: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
90736 neuralnetworks@-13088 (  788) [000] d..2 82316.781424: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90737          <idle>-0     (-----) [000] d..1 82316.781435: cpu_idle: state=0 cpu_id=0
90738<...>-5340 ( 788) [005] d..2 82316.781484: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
90739          <idle>-0     (-----) [000] dnh2 82316.781506: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
90740<...>-5340 ( 788) [005] d..2 82316.781511: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90741          <idle>-0     (-----) [000] .n.1 82316.781512: cpu_idle: state=4294967295 cpu_id=0
90742          <idle>-0     (-----) [000] d..2 82316.781522: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
90743          <idle>-0     (-----) [005] d..1 82316.781524: cpu_idle: state=0 cpu_id=5
90744          <idle>-0     (-----) [002] d.h4 82316.781560: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90745<...>-87 ( 87) [000] d..2 82316.781561: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90746          <idle>-0     (-----) [002] dnh5 82316.781570: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90747          <idle>-0     (-----) [000] d..1 82316.781571: cpu_idle: state=0 cpu_id=0
90748          <idle>-0     (-----) [002] .n.1 82316.781577: cpu_idle: state=4294967295 cpu_id=2
90749          <idle>-0     (-----) [002] d..2 82316.781588: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
90750<...>-86 ( 86) [002] d..2 82316.781620: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90751          <idle>-0     (-----) [002] d..1 82316.781631: cpu_idle: state=0 cpu_id=2
90752          <idle>-0     (-----) [000] d.h5 82316.782093: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
90753          <idle>-0     (-----) [000] d.h6 82316.782113: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
90754          <idle>-0     (-----) [000] d.h5 82316.782118: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
90755          <idle>-0     (-----) [003] .n.1 82316.782119: cpu_idle: state=4294967295 cpu_id=3
90756          <idle>-0     (-----) [003] d..2 82316.782129: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
90757          <idle>-0     (-----) [000] d.h6 82316.782129: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
90758          <idle>-0     (-----) [001] .n.1 82316.782135: cpu_idle: state=4294967295 cpu_id=1
90759          <idle>-0     (-----) [000] d..2 82316.782142: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
90760          <idle>-0     (-----) [001] d..2 82316.782146: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
90761          <idle>-0     (-----) [000] dn.3 82316.782154: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
90762          <idle>-0     (-----) [000] .n.1 82316.782158: cpu_idle: state=4294967295 cpu_id=0
90763  crtc_event:111-322   (  322) [003] d..2 82316.782172: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90764          <idle>-0     (-----) [000] d..2 82316.782173: 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
90765          <idle>-0     (-----) [003] d..1 82316.782182: cpu_idle: state=0 cpu_id=3
90766     ksoftirqd/0-3     (    3) [000] d..2 82316.782203: 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
90767          <idle>-0     (-----) [000] d..1 82316.782212: cpu_idle: state=0 cpu_id=0
90768 crtc_commit:111-321   (  321) [001] d..2 82316.782289: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
90769          <idle>-0     (-----) [001] d..1 82316.782297: cpu_idle: state=0 cpu_id=1
90770          <idle>-0     (-----) [002] d.h4 82316.783336: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90771          <idle>-0     (-----) [005] dnh2 82316.783358: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90772          <idle>-0     (-----) [005] .n.1 82316.783363: cpu_idle: state=4294967295 cpu_id=5
90773          <idle>-0     (-----) [005] d..2 82316.783371: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90774          <idle>-0     (-----) [002] ...1 82316.783372: cpu_idle: state=4294967295 cpu_id=2
90775          <idle>-0     (-----) [002] d..1 82316.783378: cpu_idle: state=0 cpu_id=2
90776<...>-5340 ( 788) [005] d..1 82316.783424: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90777          <idle>-0     (-----) [000] dnh2 82316.783448: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90778          <idle>-0     (-----) [000] .n.1 82316.783456: cpu_idle: state=4294967295 cpu_id=0
90779          <idle>-0     (-----) [000] d..2 82316.783464: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
90780<...>-5340 ( 788) [005] ...1 82316.783517: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
90781<...>-5340 ( 788) [005] ...1 82316.783521: tracing_mark_write: E|788
90782 neuralnetworks@-13088 (  788) [000] d..2 82316.783522: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90783          <idle>-0     (-----) [000] d..1 82316.783530: cpu_idle: state=0 cpu_id=0
90784<...>-5340 ( 788) [005] .... 82316.783536: binder_transaction: transaction=1571288 dest_node=1571286 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
90785<...>-5340 ( 788) [005] .... 82316.783539: binder_transaction_alloc_buf: transaction=1571288 data_size=60 offsets_size=0
90786<...>-5340 ( 788) [005] d..4 82316.783542: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
90787<...>-5340 ( 788) [005] d..5 82316.783554: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
90788          <idle>-0     (-----) [004] .n.1 82316.783561: cpu_idle: state=4294967295 cpu_id=4
90789          <idle>-0     (-----) [004] d..2 82316.783569: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
90790           <...>-27571 (-----) [004] .... 82316.783574: binder_transaction_received: transaction=1571288
90791<...>-5340 ( 788) [005] ...1 82316.783578: tracing_mark_write: E|788
90792<...>-5340 ( 788) [005] .... 82316.783584: binder_transaction: transaction=1571289 dest_node=0 dest_proc=27550 dest_thread=27760 reply=1 flags=0x0 code=0x0
90793<...>-5340 ( 788) [005] .... 82316.783586: binder_transaction_alloc_buf: transaction=1571289 data_size=8 offsets_size=0
90794<...>-5340 ( 788) [005] d..2 82316.783588: sched_waking: comm=id.nn.benchmark pid=27760 prio=110 target_cpu=005
90795           <...>-27571 (-----) [004] ...1 82316.783593: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
90796<...>-5340 ( 788) [005] d..3 82316.783595: sched_wakeup: comm=id.nn.benchmark pid=27760 prio=110 target_cpu=005
90797<...>-5340 ( 788) [005] .... 82316.783597: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
90798           <...>-27571 (-----) [004] ...1 82316.783599: tracing_mark_write: E|27550
90799           <...>-27571 (-----) [004] d..2 82316.783627: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90800          <idle>-0     (-----) [004] d..1 82316.783635: cpu_idle: state=0 cpu_id=4
90801<...>-5340 ( 788) [005] d..2 82316.783639: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27760 next_prio=110
90802           <...>-27760 (-----) [005] .... 82316.783649: binder_transaction_received: transaction=1571289
90803           <...>-27760 (-----) [005] ...1 82316.783685: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
90804           <...>-27760 (-----) [005] ...1 82316.783691: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
90805           <...>-27760 (-----) [005] ...1 82316.783719: tracing_mark_write: E|27550
90806           <...>-27760 (-----) [005] ...1 82316.783723: tracing_mark_write: E|27550
90807           <...>-27760 (-----) [005] ...1 82316.783726: tracing_mark_write: E|27550
90808           <...>-27760 (-----) [005] ...1 82316.783914: tracing_mark_write: E|27550
90809           <...>-27760 (-----) [005] d..1 82316.783927: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90810           <...>-27760 (-----) [005] d..2 82316.783943: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90811          <idle>-0     (-----) [004] .n.1 82316.783948: cpu_idle: state=4294967295 cpu_id=4
90812          <idle>-0     (-----) [004] d..2 82316.783955: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
90813           <...>-27550 (-----) [004] d..2 82316.783975: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90814          <idle>-0     (-----) [004] d..1 82316.783984: cpu_idle: state=0 cpu_id=4
90815           <...>-27760 (-----) [005] d..1 82316.784029: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90816           <...>-27760 (-----) [005] d..2 82316.784039: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
90817          <idle>-0     (-----) [004] .n.1 82316.784044: cpu_idle: state=4294967295 cpu_id=4
90818          <idle>-0     (-----) [004] d..2 82316.784051: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
90819           <...>-27760 (-----) [005] d..2 82316.784077: sched_switch: prev_comm=id.nn.benchmark prev_pid=27760 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
90820           <...>-27550 (-----) [004] ...1 82316.784085: tracing_mark_write: E|27550
90821           <...>-27550 (-----) [004] ...1 82316.784090: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
90822           <...>-27550 (-----) [004] ...1 82316.784095: tracing_mark_write: E|27550
90823          <idle>-0     (-----) [005] d..1 82316.784098: cpu_idle: state=0 cpu_id=5
90824           <...>-27550 (-----) [004] ...1 82316.784099: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
90825           <...>-27550 (-----) [004] ...1 82316.784103: tracing_mark_write: E|27550
90826           <...>-27550 (-----) [004] ...1 82316.784107: tracing_mark_write: E|27550
90827           <...>-27550 (-----) [004] ...1 82316.784220: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
90828           <...>-27550 (-----) [004] ...1 82316.784280: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
90829           <...>-27550 (-----) [004] ...1 82316.784285: tracing_mark_write: E|27550
90830           <...>-27550 (-----) [004] ...1 82316.784290: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
90831           <...>-27550 (-----) [004] ...1 82316.784296: tracing_mark_write: E|27550
90832           <...>-27550 (-----) [004] ...1 82316.784300: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
90833           <...>-27550 (-----) [004] ...1 82316.784304: tracing_mark_write: E|27550
90834           <...>-27550 (-----) [004] ...1 82316.784308: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
90835          <idle>-0     (-----) [005] .n.1 82316.784416: cpu_idle: state=4294967295 cpu_id=5
90836           <...>-27550 (-----) [004] ...1 82316.784418: tracing_mark_write: E|27550
90837           <...>-27550 (-----) [004] ...1 82316.784422: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
90838          <idle>-0     (-----) [005] d..2 82316.784425: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27761 next_prio=110
90839          <idle>-0     (-----) [000] d.h5 82316.784435: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
90840           <...>-27550 (-----) [004] d..2 82316.784439: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
90841          <idle>-0     (-----) [000] d.h6 82316.784451: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
90842          <idle>-0     (-----) [004] d..1 82316.784453: cpu_idle: state=0 cpu_id=4
90843          <idle>-0     (-----) [001] .n.1 82316.784457: cpu_idle: state=4294967295 cpu_id=1
90844          <idle>-0     (-----) [000] ...1 82316.784464: cpu_idle: state=4294967295 cpu_id=0
90845          <idle>-0     (-----) [001] d..2 82316.784465: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
90846          <idle>-0     (-----) [000] d..1 82316.784469: cpu_idle: state=0 cpu_id=0
90847           <...>-27761 (-----) [005] ...1 82316.784485: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
90848           <...>-27761 (-----) [005] ...1 82316.784499: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
90849           <...>-27761 (-----) [005] ...1 82316.784503: tracing_mark_write: E|27550
90850           <...>-27761 (-----) [005] .... 82316.784522: binder_transaction: transaction=1571290 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
90851           <...>-27761 (-----) [005] .... 82316.784525: binder_transaction_alloc_buf: transaction=1571290 data_size=48 offsets_size=0
90852           <...>-27761 (-----) [005] ...2 82316.784528: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
90853           <...>-27761 (-----) [005] d..4 82316.784531: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
90854 crtc_commit:111-321   (  321) [001] d..2 82316.784538: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90855           <...>-27761 (-----) [005] dn.5 82316.784541: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
90856          <idle>-0     (-----) [001] d..1 82316.784546: cpu_idle: state=0 cpu_id=1
90857           <...>-27761 (-----) [005] d..2 82316.784548: sched_switch: prev_comm=id.nn.benchmark prev_pid=27761 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
90858<...>-770 ( 770) [005] .... 82316.784558: binder_transaction_received: transaction=1571290
90859<...>-770 ( 770) [005] ...1 82316.784579: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
90860<...>-770 ( 770) [005] d..2 82316.784649: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
90861<...>-770 ( 770) [005] ...1 82316.784688: tracing_mark_write: E|770
90862<...>-770 ( 770) [005] .... 82316.784695: binder_transaction: transaction=1571291 dest_node=0 dest_proc=27550 dest_thread=27761 reply=1 flags=0x0 code=0x0
90863<...>-770 ( 770) [005] .... 82316.784698: binder_transaction_alloc_buf: transaction=1571291 data_size=168 offsets_size=32
90864<...>-770 ( 770) [005] .... 82316.784704: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
90865          <idle>-0     (-----) [000] d.h5 82316.784717: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
90866          <idle>-0     (-----) [000] d.h6 82316.784731: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
90867          <idle>-0     (-----) [003] .n.1 82316.784737: cpu_idle: state=4294967295 cpu_id=3
90868<...>-770 ( 770) [005] d..2 82316.784740: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27761 next_prio=110
90869          <idle>-0     (-----) [003] d..2 82316.784746: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
90870           <...>-27761 (-----) [005] .... 82316.784751: binder_transaction_received: transaction=1571291
90871          <idle>-0     (-----) [000] dnh2 82316.784752: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
90872          <idle>-0     (-----) [000] .n.1 82316.784758: cpu_idle: state=4294967295 cpu_id=0
90873          <idle>-0     (-----) [000] d..2 82316.784766: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
90874  crtc_event:111-322   (  322) [003] d..2 82316.784769: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90875          <idle>-0     (-----) [003] d..1 82316.784778: cpu_idle: state=0 cpu_id=3
90876           <...>-27761 (-----) [005] ...1 82316.784816: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
90877           <...>-27761 (-----) [005] ...1 82316.784821: tracing_mark_write: E|27550
90878           <...>-27761 (-----) [005] .... 82316.784836: binder_transaction: transaction=1571292 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
90879           <...>-27761 (-----) [005] .... 82316.784838: binder_transaction_alloc_buf: transaction=1571292 data_size=48 offsets_size=0
90880           <...>-27761 (-----) [005] ...2 82316.784840: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
90881<...>-581 ( 571) [000] d..2 82316.784843: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90882           <...>-27761 (-----) [005] d..4 82316.784843: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
90883           <...>-27761 (-----) [005] dn.5 82316.784852: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
90884          <idle>-0     (-----) [000] d..1 82316.784853: cpu_idle: state=0 cpu_id=0
90885           <...>-27761 (-----) [005] d..2 82316.784859: sched_switch: prev_comm=id.nn.benchmark prev_pid=27761 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
90886<...>-770 ( 770) [005] .... 82316.784867: binder_transaction_received: transaction=1571292
90887<...>-770 ( 770) [005] ...1 82316.784885: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
90888<...>-770 ( 770) [005] d..2 82316.784942: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
90889          <idle>-0     (-----) [000] dnh2 82316.784965: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
90890          <idle>-0     (-----) [000] .n.1 82316.784971: cpu_idle: state=4294967295 cpu_id=0
90891<...>-770 ( 770) [005] ...1 82316.784976: tracing_mark_write: E|770
90892          <idle>-0     (-----) [000] d..2 82316.784979: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
90893<...>-770 ( 770) [005] .... 82316.784983: binder_transaction: transaction=1571293 dest_node=0 dest_proc=27550 dest_thread=27761 reply=1 flags=0x0 code=0x0
90894<...>-770 ( 770) [005] .... 82316.784985: binder_transaction_alloc_buf: transaction=1571293 data_size=168 offsets_size=32
90895<...>-770 ( 770) [005] .... 82316.784991: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
90896<...>-770 ( 770) [005] d..2 82316.785025: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27761 next_prio=110
90897<...>-581 ( 571) [000] d..2 82316.785031: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90898           <...>-27761 (-----) [005] .... 82316.785036: binder_transaction_received: transaction=1571293
90899          <idle>-0     (-----) [000] d..1 82316.785039: cpu_idle: state=0 cpu_id=0
90900          <idle>-0     (-----) [000] d.s2 82316.785134: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
90901          <idle>-0     (-----) [001] d.s3 82316.785137: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
90902           <...>-27761 (-----) [005] d.s2 82316.785137: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
90903          <idle>-0     (-----) [000] dns3 82316.785152: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
90904          <idle>-0     (-----) [001] d.s4 82316.785154: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
90905          <idle>-0     (-----) [003] .n.1 82316.785159: cpu_idle: state=4294967295 cpu_id=3
90906          <idle>-0     (-----) [000] dnH3 82316.785163: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
90907          <idle>-0     (-----) [000] dns2 82316.785169: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
90908          <idle>-0     (-----) [003] d..2 82316.785169: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
90909          <idle>-0     (-----) [001] ...1 82316.785181: cpu_idle: state=4294967295 cpu_id=1
90910          <idle>-0     (-----) [001] d..1 82316.785187: cpu_idle: state=0 cpu_id=1
90911          <idle>-0     (-----) [000] dns3 82316.785212: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
90912  crtc_event:111-322   (  322) [003] d..2 82316.785225: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
90913          <idle>-0     (-----) [000] .n.1 82316.785228: cpu_idle: state=4294967295 cpu_id=0
90914          <idle>-0     (-----) [000] d..2 82316.785237: 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
90915     rcu_preempt-7     (    7) [003] d..2 82316.785246: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
90916<...>-8 ( 8) [000] d..2 82316.785270: 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
90917          <idle>-0     (-----) [000] d..1 82316.785283: cpu_idle: state=0 cpu_id=0
90918  kworker/u16:15-1311  ( 1311) [003] d..2 82316.785315: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90919          <idle>-0     (-----) [003] d..1 82316.785326: cpu_idle: state=0 cpu_id=3
90920           <...>-27761 (-----) [005] ...1 82316.785368: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
90921           <...>-27761 (-----) [005] ...1 82316.785377: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
90922           <...>-27761 (-----) [005] ...1 82316.785381: tracing_mark_write: E|27550
90923           <...>-27761 (-----) [005] .... 82316.785441: binder_transaction: transaction=1571294 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
90924           <...>-27761 (-----) [005] .... 82316.785444: binder_transaction_alloc_buf: transaction=1571294 data_size=556 offsets_size=104
90925           <...>-27761 (-----) [005] ...2 82316.785458: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
90926           <...>-27761 (-----) [005] d..4 82316.785461: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90927           <...>-27761 (-----) [005] dn.5 82316.785471: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90928           <...>-27761 (-----) [005] d..2 82316.785478: sched_switch: prev_comm=id.nn.benchmark prev_pid=27761 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90929<...>-5340 ( 788) [005] .... 82316.785488: binder_transaction_received: transaction=1571294
90930<...>-5340 ( 788) [005] ...1 82316.785531: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
90931<...>-5340 ( 788) [005] d..2 82316.785575: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
90932<...>-5340 ( 788) [005] d..2 82316.785599: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27761 next_prio=110
90933          <idle>-0     (-----) [000] dnh2 82316.785602: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
90934          <idle>-0     (-----) [000] .n.1 82316.785607: cpu_idle: state=4294967295 cpu_id=0
90935          <idle>-0     (-----) [000] d..2 82316.785618: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
90936           <...>-27761 (-----) [005] d..2 82316.785623: sched_switch: prev_comm=id.nn.benchmark prev_pid=27761 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90937          <idle>-0     (-----) [005] d..1 82316.785640: cpu_idle: state=0 cpu_id=5
90938<...>-87 ( 87) [000] d..2 82316.785659: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90939          <idle>-0     (-----) [002] d.h4 82316.785665: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90940          <idle>-0     (-----) [000] d..1 82316.785670: cpu_idle: state=0 cpu_id=0
90941          <idle>-0     (-----) [002] dnh5 82316.785680: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90942          <idle>-0     (-----) [002] .n.1 82316.785688: cpu_idle: state=4294967295 cpu_id=2
90943          <idle>-0     (-----) [002] d..2 82316.785700: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
90944<...>-86 ( 86) [002] d..2 82316.785732: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90945          <idle>-0     (-----) [002] d.h4 82316.785757: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90946          <idle>-0     (-----) [005] dnh2 82316.785778: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
90947          <idle>-0     (-----) [005] .n.1 82316.785782: cpu_idle: state=4294967295 cpu_id=5
90948          <idle>-0     (-----) [005] d..2 82316.785791: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
90949          <idle>-0     (-----) [002] d..1 82316.785796: cpu_idle: state=0 cpu_id=2
90950<...>-5340 ( 788) [005] d..1 82316.785841: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90951          <idle>-0     (-----) [000] dnh2 82316.785866: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
90952          <idle>-0     (-----) [000] .n.1 82316.785872: cpu_idle: state=4294967295 cpu_id=0
90953          <idle>-0     (-----) [000] d..2 82316.785882: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
90954 neuralnetworks@-13088 (  788) [000] d..2 82316.785926: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90955          <idle>-0     (-----) [000] d..1 82316.785937: cpu_idle: state=0 cpu_id=0
90956<...>-5340 ( 788) [005] d..2 82316.785986: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
90957          <idle>-0     (-----) [000] dnh2 82316.786008: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
90958<...>-5340 ( 788) [005] d..2 82316.786012: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
90959          <idle>-0     (-----) [000] .n.1 82316.786014: cpu_idle: state=4294967295 cpu_id=0
90960          <idle>-0     (-----) [000] d..2 82316.786024: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
90961          <idle>-0     (-----) [005] d..1 82316.786027: cpu_idle: state=0 cpu_id=5
90962<...>-87 ( 87) [000] d..2 82316.786059: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
90963          <idle>-0     (-----) [002] d.h4 82316.786060: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90964          <idle>-0     (-----) [000] d..1 82316.786069: cpu_idle: state=0 cpu_id=0
90965          <idle>-0     (-----) [002] dnh5 82316.786070: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
90966          <idle>-0     (-----) [002] .n.1 82316.786078: cpu_idle: state=4294967295 cpu_id=2
90967          <idle>-0     (-----) [002] d..2 82316.786088: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
90968<...>-86 ( 86) [002] d..2 82316.786119: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
90969          <idle>-0     (-----) [002] d..1 82316.786130: cpu_idle: state=0 cpu_id=2
90970          <idle>-0     (-----) [005] ...1 82316.786355: cpu_idle: state=4294967295 cpu_id=5
90971          <idle>-0     (-----) [005] d..1 82316.786359: cpu_idle: state=0 cpu_id=5
90972          <idle>-0     (-----) [001] d.h2 82316.786494: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
90973          <idle>-0     (-----) [001] dnh3 82316.786506: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
90974          <idle>-0     (-----) [001] .n.1 82316.786513: cpu_idle: state=4294967295 cpu_id=1
90975          <idle>-0     (-----) [001] d..2 82316.786523: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
90976        DispSync-8879  ( 8858) [001] d..1 82316.786540: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
90977        DispSync-8879  ( 8858) [001] d..2 82316.786555: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
90978          <idle>-0     (-----) [003] .n.1 82316.786561: cpu_idle: state=4294967295 cpu_id=3
90979          <idle>-0     (-----) [003] d..2 82316.786571: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
90980        DispSync-8879  ( 8858) [001] d..2 82316.786584: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
90981          <idle>-0     (-----) [001] d..1 82316.786594: cpu_idle: state=0 cpu_id=1
90982  appEventThread-8881  ( 8858) [003] d..3 82316.786622: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
90983  appEventThread-8881  ( 8858) [003] d..4 82316.786645: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
90984          <idle>-0     (-----) [000] .n.1 82316.786650: cpu_idle: state=4294967295 cpu_id=0
90985          <idle>-0     (-----) [000] d..2 82316.786662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
90986  appEventThread-8881  ( 8858) [003] d..2 82316.786683: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
90987          <idle>-0     (-----) [003] d..1 82316.786695: cpu_idle: state=0 cpu_id=3
90988<...>-9105 ( 9105) [000] .... 82316.786995: binder_transaction: transaction=1571297 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
90989<...>-9105 ( 9105) [000] .... 82316.787002: binder_transaction_alloc_buf: transaction=1571297 data_size=80 offsets_size=0
90990<...>-9105 ( 9105) [000] d..4 82316.787009: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
90991<...>-9105 ( 9105) [000] d..5 82316.787040: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
90992          <idle>-0     (-----) [001] .n.1 82316.787045: cpu_idle: state=4294967295 cpu_id=1
90993          <idle>-0     (-----) [001] d..2 82316.787056: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
90994<...>-13083 ( 8858) [001] .... 82316.787063: binder_transaction_received: transaction=1571297
90995<...>-9105 ( 9105) [000] d..3 82316.787078: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
90996<...>-13083 ( 8858) [001] d..1 82316.787095: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
90997<...>-9105 ( 9105) [000] d..4 82316.787096: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
90998          <idle>-0     (-----) [002] .n.1 82316.787101: cpu_idle: state=4294967295 cpu_id=2
90999<...>-13083 ( 8858) [001] d..2 82316.787110: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
91000          <idle>-0     (-----) [002] d..2 82316.787112: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
91001          <idle>-0     (-----) [003] .n.1 82316.787116: cpu_idle: state=4294967295 cpu_id=3
91002          <idle>-0     (-----) [003] d..2 82316.787126: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
91003<...>-13083 ( 8858) [001] d..2 82316.787151: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91004          <idle>-0     (-----) [001] d..1 82316.787162: cpu_idle: state=0 cpu_id=1
91005  appEventThread-8881  ( 8858) [003] d..2 82316.787163: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91006    RenderThread-9436  ( 9105) [002] d..2 82316.787166: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91007          <idle>-0     (-----) [003] d..1 82316.787173: cpu_idle: state=0 cpu_id=3
91008          <idle>-0     (-----) [002] d..1 82316.787179: cpu_idle: state=0 cpu_id=2
91009<...>-9105 ( 9105) [000] d..3 82316.787222: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
91010<...>-9105 ( 9105) [000] d..4 82316.787240: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
91011          <idle>-0     (-----) [002] .n.1 82316.787245: cpu_idle: state=4294967295 cpu_id=2
91012          <idle>-0     (-----) [002] d..2 82316.787256: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
91013<...>-9105 ( 9105) [000] d..2 82316.787272: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91014          <idle>-0     (-----) [000] d..1 82316.787290: cpu_idle: state=0 cpu_id=0
91015    RenderThread-9436  ( 9105) [002] d..1 82316.787378: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
91016    RenderThread-9436  ( 9105) [002] d..2 82316.787397: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
91017          <idle>-0     (-----) [000] .n.1 82316.787403: cpu_idle: state=4294967295 cpu_id=0
91018          <idle>-0     (-----) [000] d..2 82316.787416: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
91019    RenderThread-9436  ( 9105) [002] .... 82316.787468: binder_transaction: transaction=1571298 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
91020    RenderThread-9436  ( 9105) [002] .... 82316.787473: binder_transaction_alloc_buf: transaction=1571298 data_size=104 offsets_size=0
91021    RenderThread-9436  ( 9105) [002] d..4 82316.787478: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
91022<...>-9105 ( 9105) [000] d..2 82316.787493: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91023    RenderThread-9436  ( 9105) [002] dn.5 82316.787499: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
91024          <idle>-0     (-----) [000] d..1 82316.787507: cpu_idle: state=0 cpu_id=0
91025    RenderThread-9436  ( 9105) [002] d..2 82316.787508: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
91026<...>-13083 ( 8858) [002] .... 82316.787517: binder_transaction_received: transaction=1571298
91027<...>-13083 ( 8858) [002] .... 82316.787590: binder_transaction: transaction=1571299 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
91028<...>-13083 ( 8858) [002] .... 82316.787594: binder_transaction_alloc_buf: transaction=1571299 data_size=52 offsets_size=8
91029<...>-13083 ( 8858) [002] d..2 82316.787643: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
91030    RenderThread-9436  ( 9105) [002] .... 82316.787652: binder_transaction_received: transaction=1571299
91031    RenderThread-9436  ( 9105) [002] d.h3 82316.787729: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91032          <idle>-0     (-----) [005] dnh2 82316.787752: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91033          <idle>-0     (-----) [005] .n.1 82316.787755: cpu_idle: state=4294967295 cpu_id=5
91034          <idle>-0     (-----) [005] d..2 82316.787764: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91035<...>-5340 ( 788) [005] d..1 82316.787814: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91036          <idle>-0     (-----) [000] dnh2 82316.787840: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91037          <idle>-0     (-----) [000] .n.1 82316.787846: cpu_idle: state=4294967295 cpu_id=0
91038          <idle>-0     (-----) [000] d..2 82316.787856: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
91039<...>-5340 ( 788) [005] ...1 82316.787904: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
91040<...>-5340 ( 788) [005] ...1 82316.787908: tracing_mark_write: E|788
91041<...>-5340 ( 788) [005] .... 82316.787924: binder_transaction: transaction=1571300 dest_node=1571295 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
91042 neuralnetworks@-13088 (  788) [000] d..2 82316.787926: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91043<...>-5340 ( 788) [005] .... 82316.787926: binder_transaction_alloc_buf: transaction=1571300 data_size=60 offsets_size=0
91044<...>-5340 ( 788) [005] d..4 82316.787929: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
91045          <idle>-0     (-----) [000] d..1 82316.787938: cpu_idle: state=0 cpu_id=0
91046<...>-5340 ( 788) [005] d..5 82316.787942: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
91047          <idle>-0     (-----) [004] .n.1 82316.787948: cpu_idle: state=4294967295 cpu_id=4
91048          <idle>-0     (-----) [004] d..2 82316.787956: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
91049           <...>-27571 (-----) [004] .... 82316.787961: binder_transaction_received: transaction=1571300
91050<...>-5340 ( 788) [005] ...1 82316.787964: tracing_mark_write: E|788
91051<...>-5340 ( 788) [005] .... 82316.787970: binder_transaction: transaction=1571301 dest_node=0 dest_proc=27550 dest_thread=27761 reply=1 flags=0x0 code=0x0
91052<...>-5340 ( 788) [005] .... 82316.787973: binder_transaction_alloc_buf: transaction=1571301 data_size=8 offsets_size=0
91053<...>-5340 ( 788) [005] d..2 82316.787975: sched_waking: comm=id.nn.benchmark pid=27761 prio=110 target_cpu=005
91054           <...>-27571 (-----) [004] ...1 82316.787979: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
91055<...>-5340 ( 788) [005] d..3 82316.787982: sched_wakeup: comm=id.nn.benchmark pid=27761 prio=110 target_cpu=005
91056<...>-5340 ( 788) [005] .... 82316.787984: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
91057           <...>-27571 (-----) [004] ...1 82316.787985: tracing_mark_write: E|27550
91058           <...>-27571 (-----) [004] d..2 82316.788013: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91059          <idle>-0     (-----) [004] d..1 82316.788020: cpu_idle: state=0 cpu_id=4
91060<...>-5340 ( 788) [005] d..2 82316.788026: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27761 next_prio=110
91061           <...>-27761 (-----) [005] .... 82316.788035: binder_transaction_received: transaction=1571301
91062           <...>-27761 (-----) [005] ...1 82316.788071: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
91063           <...>-27761 (-----) [005] ...1 82316.788078: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
91064           <...>-27761 (-----) [005] ...1 82316.788103: tracing_mark_write: E|27550
91065           <...>-27761 (-----) [005] ...1 82316.788107: tracing_mark_write: E|27550
91066           <...>-27761 (-----) [005] ...1 82316.788110: tracing_mark_write: E|27550
91067           <...>-27761 (-----) [005] ...1 82316.788295: tracing_mark_write: E|27550
91068           <...>-27761 (-----) [005] d..1 82316.788307: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91069           <...>-27761 (-----) [005] d..2 82316.788324: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91070          <idle>-0     (-----) [004] .n.1 82316.788329: cpu_idle: state=4294967295 cpu_id=4
91071          <idle>-0     (-----) [004] d..2 82316.788335: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
91072           <...>-27550 (-----) [004] d..2 82316.788355: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91073          <idle>-0     (-----) [004] d..1 82316.788364: cpu_idle: state=0 cpu_id=4
91074           <...>-27761 (-----) [005] d..1 82316.788414: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91075           <...>-27761 (-----) [005] d..2 82316.788424: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91076          <idle>-0     (-----) [004] .n.1 82316.788429: cpu_idle: state=4294967295 cpu_id=4
91077          <idle>-0     (-----) [004] d..2 82316.788437: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
91078           <...>-27761 (-----) [005] d.s2 82316.788465: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
91079    RenderThread-9436  ( 9105) [002] dnh1 82316.788508: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
91080           <...>-27550 (-----) [004] ...1 82316.788512: tracing_mark_write: E|27550
91081           <...>-27550 (-----) [004] ...1 82316.788517: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
91082    RenderThread-9436  ( 9105) [002] d..2 82316.788520: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
91083           <...>-27550 (-----) [004] ...1 82316.788523: tracing_mark_write: E|27550
91084           <...>-27550 (-----) [004] ...1 82316.788527: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
91085           <...>-27761 (-----) [005] d..2 82316.788529: sched_switch: prev_comm=id.nn.benchmark prev_pid=27761 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
91086           <...>-27550 (-----) [004] ...1 82316.788531: tracing_mark_write: E|27550
91087           <...>-27550 (-----) [004] ...1 82316.788541: tracing_mark_write: E|27550
91088          <idle>-0     (-----) [005] d..1 82316.788549: cpu_idle: state=0 cpu_id=5
91089           <...>-27550 (-----) [004] ...1 82316.788662: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
91090           <...>-27550 (-----) [004] ...1 82316.788720: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
91091           <...>-27550 (-----) [004] ...1 82316.788726: tracing_mark_write: E|27550
91092           <...>-27550 (-----) [004] ...1 82316.788729: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
91093           <...>-27550 (-----) [004] ...1 82316.788735: tracing_mark_write: E|27550
91094           <...>-27550 (-----) [004] ...1 82316.788738: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
91095           <...>-27550 (-----) [004] ...1 82316.788742: tracing_mark_write: E|27550
91096           <...>-27550 (-----) [004] ...1 82316.788745: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
91097  kworker/u16:15-1311  ( 1311) [002] d..2 82316.788753: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=RenderThread next_pid=9436 next_prio=120
91098          <idle>-0     (-----) [001] d.s3 82316.788797: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
91099          <idle>-0     (-----) [001] d.s4 82316.788821: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
91100          <idle>-0     (-----) [001] dns4 82316.788826: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
91101          <idle>-0     (-----) [001] .n.1 82316.788833: cpu_idle: state=4294967295 cpu_id=1
91102          <idle>-0     (-----) [005] .n.1 82316.788836: cpu_idle: state=4294967295 cpu_id=5
91103           <...>-27550 (-----) [004] ...1 82316.788838: tracing_mark_write: E|27550
91104           <...>-27550 (-----) [004] ...1 82316.788843: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
91105          <idle>-0     (-----) [001] d..2 82316.788845: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
91106          <idle>-0     (-----) [005] d..2 82316.788845: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27762 next_prio=110
91107           <...>-27550 (-----) [004] d..2 82316.788860: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91108          <idle>-0     (-----) [004] d..1 82316.788886: cpu_idle: state=0 cpu_id=4
91109          <idle>-0     (-----) [004] ...1 82316.788897: cpu_idle: state=4294967295 cpu_id=4
91110          <idle>-0     (-----) [004] d..1 82316.788900: cpu_idle: state=0 cpu_id=4
91111           <...>-27762 (-----) [005] ...1 82316.788920: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
91112           <...>-27762 (-----) [005] ...1 82316.788936: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
91113           <...>-27762 (-----) [005] ...1 82316.788940: tracing_mark_write: E|27550
91114           <...>-27762 (-----) [005] .... 82316.788962: binder_transaction: transaction=1571302 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
91115           <...>-27762 (-----) [005] .... 82316.788966: binder_transaction_alloc_buf: transaction=1571302 data_size=48 offsets_size=0
91116           <...>-27762 (-----) [005] ...2 82316.788969: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
91117           <...>-27762 (-----) [005] d..4 82316.788972: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
91118           <...>-27762 (-----) [005] dn.5 82316.788982: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
91119           <...>-27762 (-----) [005] d..2 82316.788989: sched_switch: prev_comm=id.nn.benchmark prev_pid=27762 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
91120<...>-770 ( 770) [005] .... 82316.788999: binder_transaction_received: transaction=1571302
91121<...>-770 ( 770) [005] ...1 82316.789023: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
91122  kworker/u16:15-1311  ( 1311) [001] .... 82316.789037: clk_set_rate: l3_cluster0_vote_clk 300000000
91123    RenderThread-9436  ( 9105) [002] d..2 82316.789061: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
91124  kworker/u16:15-1311  ( 1311) [001] d..2 82316.789063: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91125          <idle>-0     (-----) [001] d..1 82316.789074: cpu_idle: state=0 cpu_id=1
91126          <idle>-0     (-----) [002] d..1 82316.789076: cpu_idle: state=0 cpu_id=2
91127<...>-770 ( 770) [005] d..2 82316.789104: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
91128          <idle>-0     (-----) [000] dnh2 82316.789132: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
91129          <idle>-0     (-----) [000] .n.1 82316.789138: cpu_idle: state=4294967295 cpu_id=0
91130          <idle>-0     (-----) [002] d.h2 82316.789145: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
91131<...>-770 ( 770) [005] ...1 82316.789147: tracing_mark_write: E|770
91132<...>-770 ( 770) [005] .... 82316.789155: binder_transaction: transaction=1571303 dest_node=0 dest_proc=27550 dest_thread=27762 reply=1 flags=0x0 code=0x0
91133          <idle>-0     (-----) [002] d.h3 82316.789155: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
91134<...>-770 ( 770) [005] .... 82316.789158: binder_transaction_alloc_buf: transaction=1571303 data_size=168 offsets_size=32
91135          <idle>-0     (-----) [002] dnh3 82316.789160: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
91136<...>-770 ( 770) [005] .... 82316.789165: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
91137          <idle>-0     (-----) [000] dnh3 82316.789167: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
91138          <idle>-0     (-----) [002] .n.1 82316.789169: cpu_idle: state=4294967295 cpu_id=2
91139          <idle>-0     (-----) [002] d..2 82316.789180: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
91140          <idle>-0     (-----) [000] dnh4 82316.789194: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
91141          <idle>-0     (-----) [003] .n.1 82316.789199: cpu_idle: state=4294967295 cpu_id=3
91142<...>-770 ( 770) [005] d..2 82316.789201: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27762 next_prio=110
91143          <idle>-0     (-----) [003] d..2 82316.789209: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
91144          <idle>-0     (-----) [000] d..2 82316.789211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
91145           <...>-27762 (-----) [005] .... 82316.789212: binder_transaction_received: transaction=1571303
91146 kgsl_worker_thr-258   (  258) [003] d..2 82316.789261: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
91147 kgsl_worker_thr-258   (  258) [003] d..3 82316.789278: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
91148          <idle>-0     (-----) [001] .n.1 82316.789284: cpu_idle: state=4294967295 cpu_id=1
91149           <...>-27762 (-----) [005] ...1 82316.789286: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
91150           <...>-27762 (-----) [005] ...1 82316.789291: tracing_mark_write: E|27550
91151          <idle>-0     (-----) [001] d..2 82316.789294: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
91152 kgsl_worker_thr-258   (  258) [003] d..2 82316.789304: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91153           <...>-27762 (-----) [005] .... 82316.789306: binder_transaction: transaction=1571304 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
91154<...>-581 ( 571) [000] d..2 82316.789308: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91155           <...>-27762 (-----) [005] .... 82316.789309: binder_transaction_alloc_buf: transaction=1571304 data_size=48 offsets_size=0
91156           <...>-27762 (-----) [005] ...2 82316.789311: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
91157          <idle>-0     (-----) [003] d..1 82316.789313: cpu_idle: state=0 cpu_id=3
91158           <...>-27762 (-----) [005] d..4 82316.789313: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
91159          <idle>-0     (-----) [000] d..1 82316.789319: cpu_idle: state=0 cpu_id=0
91160           <...>-27762 (-----) [005] dn.5 82316.789323: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
91161           <...>-27762 (-----) [005] d..2 82316.789330: sched_switch: prev_comm=id.nn.benchmark prev_pid=27762 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
91162<...>-770 ( 770) [005] .... 82316.789338: binder_transaction_received: transaction=1571304
91163  kworker/u16:15-1311  ( 1311) [001] d..2 82316.789339: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91164          <idle>-0     (-----) [001] d..1 82316.789347: cpu_idle: state=0 cpu_id=1
91165<...>-770 ( 770) [005] ...1 82316.789355: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
91166    RenderThread-9436  ( 9105) [002] .... 82316.789380: binder_transaction: transaction=1571305 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
91167    RenderThread-9436  ( 9105) [002] .... 82316.789386: binder_transaction_alloc_buf: transaction=1571305 data_size=192 offsets_size=8
91168    RenderThread-9436  ( 9105) [002] d..4 82316.789396: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
91169    RenderThread-9436  ( 9105) [002] dn.5 82316.789413: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
91170<...>-770 ( 770) [005] d..2 82316.789415: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
91171    RenderThread-9436  ( 9105) [002] d..2 82316.789422: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
91172<...>-13083 ( 8858) [002] .... 82316.789431: binder_transaction_received: transaction=1571305
91173          <idle>-0     (-----) [000] dnh2 82316.789438: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
91174          <idle>-0     (-----) [000] .n.1 82316.789444: cpu_idle: state=4294967295 cpu_id=0
91175<...>-770 ( 770) [005] ...1 82316.789448: tracing_mark_write: E|770
91176          <idle>-0     (-----) [000] d..2 82316.789452: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
91177<...>-770 ( 770) [005] .... 82316.789456: binder_transaction: transaction=1571306 dest_node=0 dest_proc=27550 dest_thread=27762 reply=1 flags=0x0 code=0x0
91178<...>-770 ( 770) [005] .... 82316.789458: binder_transaction_alloc_buf: transaction=1571306 data_size=168 offsets_size=32
91179<...>-770 ( 770) [005] .... 82316.789465: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
91180<...>-770 ( 770) [005] d..2 82316.789499: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27762 next_prio=110
91181<...>-581 ( 571) [000] d..2 82316.789505: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91182           <...>-27762 (-----) [005] .... 82316.789509: binder_transaction_received: transaction=1571306
91183          <idle>-0     (-----) [000] d..1 82316.789514: cpu_idle: state=0 cpu_id=0
91184<...>-13083 ( 8858) [002] .... 82316.789586: binder_transaction: transaction=1571307 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
91185<...>-13083 ( 8858) [002] .... 82316.789591: binder_transaction_alloc_buf: transaction=1571307 data_size=68 offsets_size=0
91186<...>-13083 ( 8858) [002] d..2 82316.789634: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
91187    RenderThread-9436  ( 9105) [002] .... 82316.789644: binder_transaction_received: transaction=1571307
91188    RenderThread-9436  ( 9105) [002] d..2 82316.789730: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91189          <idle>-0     (-----) [002] d..1 82316.789748: cpu_idle: state=0 cpu_id=2
91190           <...>-27762 (-----) [005] ...1 82316.789787: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
91191           <...>-27762 (-----) [005] ...1 82316.789797: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
91192           <...>-27762 (-----) [005] ...1 82316.789801: tracing_mark_write: E|27550
91193           <...>-27762 (-----) [005] .... 82316.789863: binder_transaction: transaction=1571308 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
91194           <...>-27762 (-----) [005] .... 82316.789867: binder_transaction_alloc_buf: transaction=1571308 data_size=556 offsets_size=104
91195           <...>-27762 (-----) [005] ...2 82316.789881: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
91196           <...>-27762 (-----) [005] d..4 82316.789884: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91197           <...>-27762 (-----) [005] dn.5 82316.789896: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91198           <...>-27762 (-----) [005] d..2 82316.789903: sched_switch: prev_comm=id.nn.benchmark prev_pid=27762 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91199<...>-5340 ( 788) [005] .... 82316.789913: binder_transaction_received: transaction=1571308
91200<...>-5340 ( 788) [005] ...1 82316.789961: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
91201<...>-5340 ( 788) [005] d..2 82316.790011: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
91202<...>-5340 ( 788) [005] d..2 82316.790036: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27762 next_prio=110
91203          <idle>-0     (-----) [000] dnh2 82316.790038: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
91204          <idle>-0     (-----) [000] .n.1 82316.790044: cpu_idle: state=4294967295 cpu_id=0
91205          <idle>-0     (-----) [000] d..2 82316.790052: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
91206           <...>-27762 (-----) [005] d..2 82316.790058: sched_switch: prev_comm=id.nn.benchmark prev_pid=27762 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91207          <idle>-0     (-----) [005] d..1 82316.790076: cpu_idle: state=0 cpu_id=5
91208<...>-87 ( 87) [000] d..2 82316.790096: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91209          <idle>-0     (-----) [000] d..1 82316.790103: cpu_idle: state=0 cpu_id=0
91210          <idle>-0     (-----) [002] d.h4 82316.790110: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91211          <idle>-0     (-----) [002] dnh5 82316.790129: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91212          <idle>-0     (-----) [002] .n.1 82316.790140: cpu_idle: state=4294967295 cpu_id=2
91213          <idle>-0     (-----) [002] d..2 82316.790152: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
91214<...>-86 ( 86) [002] d.h4 82316.790188: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91215          <idle>-0     (-----) [005] dnh2 82316.790210: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91216          <idle>-0     (-----) [005] .n.1 82316.790215: cpu_idle: state=4294967295 cpu_id=5
91217          <idle>-0     (-----) [005] d..2 82316.790223: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91218<...>-86 ( 86) [002] d..2 82316.790243: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91219          <idle>-0     (-----) [002] d..1 82316.790257: cpu_idle: state=0 cpu_id=2
91220<...>-5340 ( 788) [005] d..1 82316.790277: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91221          <idle>-0     (-----) [000] dnh2 82316.790302: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91222          <idle>-0     (-----) [000] .n.1 82316.790309: cpu_idle: state=4294967295 cpu_id=0
91223          <idle>-0     (-----) [000] d..2 82316.790316: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
91224 neuralnetworks@-13088 (  788) [000] d..2 82316.790363: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91225          <idle>-0     (-----) [000] d..1 82316.790373: cpu_idle: state=0 cpu_id=0
91226<...>-5340 ( 788) [005] d..2 82316.790428: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
91227          <idle>-0     (-----) [000] dnh2 82316.790449: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
91228<...>-5340 ( 788) [005] d..2 82316.790454: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91229          <idle>-0     (-----) [000] .n.1 82316.790455: cpu_idle: state=4294967295 cpu_id=0
91230          <idle>-0     (-----) [000] d..2 82316.790463: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
91231          <idle>-0     (-----) [005] d..1 82316.790468: cpu_idle: state=0 cpu_id=5
91232          <idle>-0     (-----) [001] d.h2 82316.790496: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
91233<...>-87 ( 87) [000] d..2 82316.790500: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91234          <idle>-0     (-----) [002] d.h4 82316.790502: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91235          <idle>-0     (-----) [000] d..1 82316.790508: cpu_idle: state=0 cpu_id=0
91236          <idle>-0     (-----) [001] dnh3 82316.790509: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
91237          <idle>-0     (-----) [002] dnh5 82316.790512: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91238          <idle>-0     (-----) [001] .n.1 82316.790517: cpu_idle: state=4294967295 cpu_id=1
91239          <idle>-0     (-----) [002] .n.1 82316.790521: cpu_idle: state=4294967295 cpu_id=2
91240          <idle>-0     (-----) [001] d..2 82316.790527: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
91241          <idle>-0     (-----) [002] d..2 82316.790532: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
91242        DispSync-8879  ( 8858) [001] d..1 82316.790545: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
91243        DispSync-8879  ( 8858) [001] d..2 82316.790559: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
91244<...>-86 ( 86) [002] d..2 82316.790563: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91245          <idle>-0     (-----) [003] .n.1 82316.790565: cpu_idle: state=4294967295 cpu_id=3
91246          <idle>-0     (-----) [003] d..2 82316.790572: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
91247          <idle>-0     (-----) [002] d..1 82316.790574: cpu_idle: state=0 cpu_id=2
91248        DispSync-8879  ( 8858) [001] d..2 82316.790588: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91249          <idle>-0     (-----) [001] d..1 82316.790601: cpu_idle: state=0 cpu_id=1
91250   sfEventThread-8882  ( 8858) [003] d..3 82316.790605: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
91251   sfEventThread-8882  ( 8858) [003] d..4 82316.790624: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
91252          <idle>-0     (-----) [000] .n.1 82316.790629: cpu_idle: state=4294967295 cpu_id=0
91253          <idle>-0     (-----) [000] d..2 82316.790636: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
91254   sfEventThread-8882  ( 8858) [003] d..2 82316.790653: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91255          <idle>-0     (-----) [003] d..1 82316.790662: cpu_idle: state=0 cpu_id=3
91256          <idle>-0     (-----) [005] ...1 82316.790792: cpu_idle: state=4294967295 cpu_id=5
91257          <idle>-0     (-----) [005] d..1 82316.790795: cpu_idle: state=0 cpu_id=5
91258  surfaceflinger-8858  ( 8858) [000] d..1 82316.790977: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
91259  surfaceflinger-8858  ( 8858) [000] d..2 82316.790998: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
91260          <idle>-0     (-----) [003] .n.1 82316.791003: cpu_idle: state=4294967295 cpu_id=3
91261          <idle>-0     (-----) [003] d..2 82316.791010: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
91262   sfEventThread-8882  ( 8858) [003] d..2 82316.791040: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91263          <idle>-0     (-----) [003] d..1 82316.791047: cpu_idle: state=0 cpu_id=3
91264  surfaceflinger-8858  ( 8858) [000] ...1 82316.791183: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
91265  surfaceflinger-8858  ( 8858) [000] ...1 82316.791189: tracing_mark_write: E|8858
91266  surfaceflinger-8858  ( 8858) [000] .... 82316.791238: binder_transaction: transaction=1571311 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
91267  surfaceflinger-8858  ( 8858) [000] .... 82316.791243: binder_transaction_alloc_buf: transaction=1571311 data_size=540 offsets_size=96
91268  surfaceflinger-8858  ( 8858) [000] ...2 82316.791267: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
91269  surfaceflinger-8858  ( 8858) [000] d..4 82316.791275: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
91270  surfaceflinger-8858  ( 8858) [000] d..5 82316.791294: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
91271          <idle>-0     (-----) [002] .n.1 82316.791300: cpu_idle: state=4294967295 cpu_id=2
91272          <idle>-0     (-----) [002] d..2 82316.791309: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
91273 [email protected]   (  619) [002] .... 82316.791320: binder_transaction_received: transaction=1571311
91274  surfaceflinger-8858  ( 8858) [000] d..2 82316.791325: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91275          <idle>-0     (-----) [000] d..1 82316.791338: cpu_idle: state=0 cpu_id=0
91276 [email protected]   (  619) [002] ...1 82316.791367: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
91277 [email protected]   (  619) [002] ...1 82316.791477: tracing_mark_write: B|619|HWCSession::PresentDisplay::
91278 [email protected]   (  619) [002] ...1 82316.791643: tracing_mark_write: B|619|HWDeviceDRM::Commit::
91279 [email protected]   (  619) [002] ...1 82316.791655: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
91280          <idle>-0     (-----) [000] d.s2 82316.791805: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
91281          <idle>-0     (-----) [000] dns3 82316.791865: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
91282 [email protected]   (  619) [002] d.s2 82316.791866: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
91283          <idle>-0     (-----) [000] .n.1 82316.791882: cpu_idle: state=4294967295 cpu_id=0
91284          <idle>-0     (-----) [003] d.s2 82316.791885: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
91285          <idle>-0     (-----) [000] d..2 82316.791892: 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
91286<...>-8 ( 8) [000] d..2 82316.791904: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
91287          <idle>-0     (-----) [003] dns3 82316.791905: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
91288 [email protected]   (  619) [002] d.s3 82316.791911: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
91289          <idle>-0     (-----) [003] .n.1 82316.791926: cpu_idle: state=4294967295 cpu_id=3
91290          <idle>-0     (-----) [003] d..2 82316.791935: 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
91291     rcu_preempt-7     (    7) [003] d..2 82316.791944: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
91292<...>-8 ( 8) [000] d..3 82316.791949: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
91293<...>-8 ( 8) [000] d..2 82316.791964: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
91294     rcu_preempt-7     (    7) [003] d..3 82316.791983: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
91295     rcu_preempt-7     (    7) [003] d..2 82316.792000: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
91296<...>-46 ( 46) [003] d..2 82316.792013: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
91297<...>-46 ( 46) [003] d..3 82316.792043: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
91298<...>-46 ( 46) [003] d..2 82316.792052: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
91299         rcuop/4-45    (   45) [003] d..2 82316.792058: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
91300         rcuop/4-45    (   45) [003] d..3 82316.792089: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
91301         rcuop/4-45    (   45) [003] d..2 82316.792100: 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
91302 [email protected]   (  619) [002] d.h3 82316.792129: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91303  kworker/u16:15-1311  ( 1311) [000] d..2 82316.792150: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
91304          <idle>-0     (-----) [005] dnh2 82316.792152: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91305          <idle>-0     (-----) [005] .n.1 82316.792156: cpu_idle: state=4294967295 cpu_id=5
91306          <idle>-0     (-----) [005] d..2 82316.792165: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91307          <idle>-0     (-----) [000] d..1 82316.792166: cpu_idle: state=0 cpu_id=0
91308          <idle>-0     (-----) [001] d.s3 82316.792167: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
91309          <idle>-0     (-----) [001] d.s4 82316.792178: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
91310          <idle>-0     (-----) [001] d.s4 82316.792186: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
91311          <idle>-0     (-----) [000] .n.1 82316.792193: cpu_idle: state=4294967295 cpu_id=0
91312         rcuop/5-53    (   53) [003] d..2 82316.792196: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
91313          <idle>-0     (-----) [001] ...1 82316.792197: cpu_idle: state=4294967295 cpu_id=1
91314          <idle>-0     (-----) [001] d..1 82316.792202: cpu_idle: state=0 cpu_id=1
91315          <idle>-0     (-----) [000] d..2 82316.792205: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
91316<...>-5340 ( 788) [005] d..1 82316.792216: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91317<...>-8 ( 8) [003] d..2 82316.792219: 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
91318          <idle>-0     (-----) [003] d..1 82316.792234: cpu_idle: state=0 cpu_id=3
91319  kworker/u16:15-1311  ( 1311) [000] d..2 82316.792238: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91320          <idle>-0     (-----) [003] dnh2 82316.792252: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
91321          <idle>-0     (-----) [000] d..1 82316.792253: cpu_idle: state=0 cpu_id=0
91322          <idle>-0     (-----) [003] .n.1 82316.792258: cpu_idle: state=4294967295 cpu_id=3
91323          <idle>-0     (-----) [003] d..2 82316.792269: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
91324<...>-5340 ( 788) [005] ...1 82316.792319: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
91325<...>-5340 ( 788) [005] ...1 82316.792323: tracing_mark_write: E|788
91326<...>-5340 ( 788) [005] .... 82316.792340: binder_transaction: transaction=1571312 dest_node=1571309 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
91327<...>-5340 ( 788) [005] .... 82316.792343: binder_transaction_alloc_buf: transaction=1571312 data_size=60 offsets_size=0
91328<...>-5340 ( 788) [005] d..4 82316.792346: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
91329 neuralnetworks@-13088 (  788) [003] d..2 82316.792346: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91330<...>-5340 ( 788) [005] d..5 82316.792358: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
91331          <idle>-0     (-----) [003] d..1 82316.792360: cpu_idle: state=0 cpu_id=3
91332          <idle>-0     (-----) [004] .n.1 82316.792364: cpu_idle: state=4294967295 cpu_id=4
91333          <idle>-0     (-----) [004] d..2 82316.792372: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
91334           <...>-27571 (-----) [004] .... 82316.792377: binder_transaction_received: transaction=1571312
91335<...>-5340 ( 788) [005] ...1 82316.792382: tracing_mark_write: E|788
91336<...>-5340 ( 788) [005] .... 82316.792388: binder_transaction: transaction=1571313 dest_node=0 dest_proc=27550 dest_thread=27762 reply=1 flags=0x0 code=0x0
91337<...>-5340 ( 788) [005] .... 82316.792390: binder_transaction_alloc_buf: transaction=1571313 data_size=8 offsets_size=0
91338<...>-5340 ( 788) [005] d..2 82316.792392: sched_waking: comm=id.nn.benchmark pid=27762 prio=110 target_cpu=005
91339           <...>-27571 (-----) [004] ...1 82316.792397: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
91340<...>-5340 ( 788) [005] d..3 82316.792400: sched_wakeup: comm=id.nn.benchmark pid=27762 prio=110 target_cpu=005
91341<...>-5340 ( 788) [005] .... 82316.792401: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
91342           <...>-27571 (-----) [004] ...1 82316.792403: tracing_mark_write: E|27550
91343           <...>-27571 (-----) [004] d..2 82316.792434: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91344          <idle>-0     (-----) [004] d..1 82316.792442: cpu_idle: state=0 cpu_id=4
91345<...>-5340 ( 788) [005] d..2 82316.792444: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27762 next_prio=110
91346           <...>-27762 (-----) [005] .... 82316.792454: binder_transaction_received: transaction=1571313
91347 [email protected]   (  619) [002] d..2 82316.792482: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
91348           <...>-27762 (-----) [005] ...1 82316.792492: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
91349           <...>-27762 (-----) [005] ...1 82316.792498: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
91350 [email protected]   (  619) [002] d..3 82316.792504: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
91351          <idle>-0     (-----) [001] .n.1 82316.792509: cpu_idle: state=4294967295 cpu_id=1
91352          <idle>-0     (-----) [001] d..2 82316.792520: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
91353           <...>-27762 (-----) [005] ...1 82316.792524: tracing_mark_write: E|27550
91354           <...>-27762 (-----) [005] ...1 82316.792528: tracing_mark_write: E|27550
91355           <...>-27762 (-----) [005] ...1 82316.792531: tracing_mark_write: E|27550
91356 [email protected]   (  619) [002] ...1 82316.792603: tracing_mark_write: E|619
91357 [email protected]   (  619) [002] ...1 82316.792609: tracing_mark_write: E|619
91358 [email protected]   (  619) [002] ...1 82316.792694: tracing_mark_write: E|619
91359           <...>-27762 (-----) [005] ...1 82316.792720: tracing_mark_write: E|27550
91360           <...>-27762 (-----) [005] d..1 82316.792733: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91361 [email protected]   (  619) [002] ...1 82316.792738: tracing_mark_write: E|619
91362           <...>-27762 (-----) [005] d..2 82316.792750: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91363 [email protected]   (  619) [002] .... 82316.792753: binder_transaction: transaction=1571314 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
91364          <idle>-0     (-----) [004] .n.1 82316.792755: cpu_idle: state=4294967295 cpu_id=4
91365 [email protected]   (  619) [002] .... 82316.792757: binder_transaction_alloc_buf: transaction=1571314 data_size=576 offsets_size=112
91366          <idle>-0     (-----) [004] d..2 82316.792762: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
91367 [email protected]   (  619) [002] d..2 82316.792776: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
91368           <...>-27550 (-----) [004] d..2 82316.792782: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91369          <idle>-0     (-----) [004] d..1 82316.792791: cpu_idle: state=0 cpu_id=4
91370 [email protected]   (  619) [002] d..3 82316.792794: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
91371 [email protected]   (  619) [002] .... 82316.792799: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
91372          <idle>-0     (-----) [000] .n.1 82316.792800: cpu_idle: state=4294967295 cpu_id=0
91373          <idle>-0     (-----) [000] d..2 82316.792809: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
91374  surfaceflinger-8858  ( 8858) [000] .... 82316.792817: binder_transaction_received: transaction=1571314
91375           <...>-27762 (-----) [005] d..1 82316.792843: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91376           <...>-27762 (-----) [005] d..2 82316.792852: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91377          <idle>-0     (-----) [004] .n.1 82316.792857: cpu_idle: state=4294967295 cpu_id=4
91378          <idle>-0     (-----) [004] d..2 82316.792865: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
91379 [email protected]   (  619) [002] d..2 82316.792881: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91380           <...>-27762 (-----) [005] d..2 82316.792893: sched_switch: prev_comm=id.nn.benchmark prev_pid=27762 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
91381           <...>-27550 (-----) [004] ...1 82316.792900: tracing_mark_write: E|27550
91382          <idle>-0     (-----) [002] d..1 82316.792900: cpu_idle: state=0 cpu_id=2
91383           <...>-27550 (-----) [004] ...1 82316.792904: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
91384           <...>-27550 (-----) [004] ...1 82316.792910: tracing_mark_write: E|27550
91385          <idle>-0     (-----) [005] d..1 82316.792913: cpu_idle: state=0 cpu_id=5
91386           <...>-27550 (-----) [004] ...1 82316.792914: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
91387           <...>-27550 (-----) [004] ...1 82316.792917: tracing_mark_write: E|27550
91388           <...>-27550 (-----) [004] ...1 82316.792922: tracing_mark_write: E|27550
91389           <...>-27550 (-----) [004] ...1 82316.793034: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
91390           <...>-27550 (-----) [004] ...1 82316.793091: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
91391           <...>-27550 (-----) [004] ...1 82316.793096: tracing_mark_write: E|27550
91392           <...>-27550 (-----) [004] ...1 82316.793099: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
91393           <...>-27550 (-----) [004] ...1 82316.793105: tracing_mark_write: E|27550
91394           <...>-27550 (-----) [004] ...1 82316.793108: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
91395           <...>-27550 (-----) [004] ...1 82316.793112: tracing_mark_write: E|27550
91396           <...>-27550 (-----) [004] ...1 82316.793116: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
91397          <idle>-0     (-----) [005] .n.1 82316.793209: cpu_idle: state=4294967295 cpu_id=5
91398           <...>-27550 (-----) [004] ...1 82316.793210: tracing_mark_write: E|27550
91399           <...>-27550 (-----) [004] ...1 82316.793215: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
91400          <idle>-0     (-----) [005] d..2 82316.793218: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27763 next_prio=110
91401           <...>-27550 (-----) [004] d..2 82316.793232: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91402  surfaceflinger-8858  ( 8858) [000] d..2 82316.793232: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91403 crtc_commit:111-321   (  321) [001] d..2 82316.793236: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
91404          <idle>-0     (-----) [004] d..1 82316.793247: cpu_idle: state=0 cpu_id=4
91405          <idle>-0     (-----) [001] d..1 82316.793250: cpu_idle: state=0 cpu_id=1
91406          <idle>-0     (-----) [000] d..1 82316.793252: cpu_idle: state=0 cpu_id=0
91407           <...>-27763 (-----) [005] ...1 82316.793279: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
91408           <...>-27763 (-----) [005] ...1 82316.793294: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
91409           <...>-27763 (-----) [005] ...1 82316.793297: tracing_mark_write: E|27550
91410           <...>-27763 (-----) [005] .... 82316.793318: binder_transaction: transaction=1571315 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
91411           <...>-27763 (-----) [005] .... 82316.793322: binder_transaction_alloc_buf: transaction=1571315 data_size=48 offsets_size=0
91412           <...>-27763 (-----) [005] ...2 82316.793325: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
91413           <...>-27763 (-----) [005] d..4 82316.793328: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
91414           <...>-27763 (-----) [005] dn.5 82316.793340: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
91415           <...>-27763 (-----) [005] d..2 82316.793347: sched_switch: prev_comm=id.nn.benchmark prev_pid=27763 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
91416<...>-770 ( 770) [005] .... 82316.793357: binder_transaction_received: transaction=1571315
91417<...>-770 ( 770) [005] ...1 82316.793381: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
91418<...>-770 ( 770) [005] d..2 82316.793467: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
91419          <idle>-0     (-----) [000] dnh2 82316.793498: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
91420          <idle>-0     (-----) [000] .n.1 82316.793506: cpu_idle: state=4294967295 cpu_id=0
91421<...>-770 ( 770) [005] ...1 82316.793510: tracing_mark_write: E|770
91422          <idle>-0     (-----) [000] d..2 82316.793516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
91423<...>-770 ( 770) [005] .... 82316.793518: binder_transaction: transaction=1571316 dest_node=0 dest_proc=27550 dest_thread=27763 reply=1 flags=0x0 code=0x0
91424<...>-770 ( 770) [005] .... 82316.793522: binder_transaction_alloc_buf: transaction=1571316 data_size=168 offsets_size=32
91425<...>-770 ( 770) [005] .... 82316.793529: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
91426<...>-770 ( 770) [005] d..2 82316.793565: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27763 next_prio=110
91427           <...>-27763 (-----) [005] .... 82316.793576: binder_transaction_received: transaction=1571316
91428<...>-581 ( 571) [000] d..2 82316.793610: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91429          <idle>-0     (-----) [000] d..1 82316.793626: cpu_idle: state=0 cpu_id=0
91430           <...>-27763 (-----) [005] ...1 82316.793648: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
91431           <...>-27763 (-----) [005] ...1 82316.793654: tracing_mark_write: E|27550
91432           <...>-27763 (-----) [005] .... 82316.793668: binder_transaction: transaction=1571317 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
91433           <...>-27763 (-----) [005] .... 82316.793671: binder_transaction_alloc_buf: transaction=1571317 data_size=48 offsets_size=0
91434           <...>-27763 (-----) [005] ...2 82316.793673: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
91435           <...>-27763 (-----) [005] d..4 82316.793675: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
91436           <...>-27763 (-----) [005] dn.5 82316.793685: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
91437           <...>-27763 (-----) [005] d..2 82316.793692: sched_switch: prev_comm=id.nn.benchmark prev_pid=27763 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
91438<...>-770 ( 770) [005] .... 82316.793699: binder_transaction_received: transaction=1571317
91439<...>-770 ( 770) [005] ...1 82316.793716: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
91440<...>-770 ( 770) [005] d..2 82316.793777: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
91441          <idle>-0     (-----) [000] dnh2 82316.793800: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
91442          <idle>-0     (-----) [000] .n.1 82316.793807: cpu_idle: state=4294967295 cpu_id=0
91443<...>-770 ( 770) [005] ...1 82316.793810: tracing_mark_write: E|770
91444<...>-770 ( 770) [005] .... 82316.793817: binder_transaction: transaction=1571318 dest_node=0 dest_proc=27550 dest_thread=27763 reply=1 flags=0x0 code=0x0
91445          <idle>-0     (-----) [000] d..2 82316.793818: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
91446<...>-770 ( 770) [005] .... 82316.793820: binder_transaction_alloc_buf: transaction=1571318 data_size=168 offsets_size=32
91447<...>-770 ( 770) [005] .... 82316.793826: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
91448<...>-770 ( 770) [005] d..2 82316.793859: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27763 next_prio=110
91449           <...>-27763 (-----) [005] .... 82316.793870: binder_transaction_received: transaction=1571318
91450<...>-581 ( 571) [000] d..2 82316.793871: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91451          <idle>-0     (-----) [000] d..1 82316.793884: cpu_idle: state=0 cpu_id=0
91452           <...>-27763 (-----) [005] ...1 82316.794147: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
91453           <...>-27763 (-----) [005] ...1 82316.794157: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
91454           <...>-27763 (-----) [005] ...1 82316.794161: tracing_mark_write: E|27550
91455          <idle>-0     (-----) [002] ...1 82316.794198: cpu_idle: state=4294967295 cpu_id=2
91456          <idle>-0     (-----) [002] d..1 82316.794203: cpu_idle: state=0 cpu_id=2
91457           <...>-27763 (-----) [005] .... 82316.794229: binder_transaction: transaction=1571319 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
91458           <...>-27763 (-----) [005] .... 82316.794233: binder_transaction_alloc_buf: transaction=1571319 data_size=556 offsets_size=104
91459           <...>-27763 (-----) [005] ...2 82316.794247: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
91460           <...>-27763 (-----) [005] d..4 82316.794249: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91461           <...>-27763 (-----) [005] dn.5 82316.794261: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91462           <...>-27763 (-----) [005] d..2 82316.794268: sched_switch: prev_comm=id.nn.benchmark prev_pid=27763 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91463<...>-5340 ( 788) [005] .... 82316.794277: binder_transaction_received: transaction=1571319
91464<...>-5340 ( 788) [005] ...1 82316.794323: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
91465<...>-5340 ( 788) [005] d..2 82316.794370: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
91466<...>-5340 ( 788) [005] d..2 82316.794396: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27763 next_prio=110
91467          <idle>-0     (-----) [000] dnh2 82316.794399: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
91468          <idle>-0     (-----) [000] .n.1 82316.794406: cpu_idle: state=4294967295 cpu_id=0
91469          <idle>-0     (-----) [000] d..2 82316.794416: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
91470           <...>-27763 (-----) [005] d..2 82316.794418: sched_switch: prev_comm=id.nn.benchmark prev_pid=27763 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91471          <idle>-0     (-----) [005] d..1 82316.794436: cpu_idle: state=0 cpu_id=5
91472<...>-87 ( 87) [000] d..2 82316.794457: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91473          <idle>-0     (-----) [002] d.h4 82316.794467: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91474          <idle>-0     (-----) [000] d..1 82316.794469: cpu_idle: state=0 cpu_id=0
91475          <idle>-0     (-----) [002] dnh5 82316.794488: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91476          <idle>-0     (-----) [002] .n.1 82316.794497: cpu_idle: state=4294967295 cpu_id=2
91477          <idle>-0     (-----) [002] d..2 82316.794509: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
91478<...>-86 ( 86) [002] d.h3 82316.794544: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91479          <idle>-0     (-----) [005] dnh2 82316.794566: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91480          <idle>-0     (-----) [005] .n.1 82316.794571: cpu_idle: state=4294967295 cpu_id=5
91481          <idle>-0     (-----) [005] d..2 82316.794579: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91482<...>-86 ( 86) [002] d..2 82316.794599: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91483          <idle>-0     (-----) [002] d..1 82316.794612: cpu_idle: state=0 cpu_id=2
91484<...>-5340 ( 788) [005] d..1 82316.794633: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
91485          <idle>-0     (-----) [000] dnh2 82316.794672: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91486          <idle>-0     (-----) [000] .n.1 82316.794678: cpu_idle: state=4294967295 cpu_id=0
91487          <idle>-0     (-----) [000] d..2 82316.794688: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
91488 neuralnetworks@-13088 (  788) [000] d..2 82316.794741: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91489          <idle>-0     (-----) [000] d..1 82316.794755: cpu_idle: state=0 cpu_id=0
91490<...>-5340 ( 788) [005] d..2 82316.794791: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
91491          <idle>-0     (-----) [000] dnh2 82316.794813: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
91492<...>-5340 ( 788) [005] d..2 82316.794817: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91493          <idle>-0     (-----) [000] .n.1 82316.794820: cpu_idle: state=4294967295 cpu_id=0
91494          <idle>-0     (-----) [000] d..2 82316.794830: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
91495          <idle>-0     (-----) [005] d..1 82316.794832: cpu_idle: state=0 cpu_id=5
91496<...>-87 ( 87) [000] d..2 82316.794867: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91497          <idle>-0     (-----) [002] d.h4 82316.794868: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91498          <idle>-0     (-----) [000] d..1 82316.794878: cpu_idle: state=0 cpu_id=0
91499          <idle>-0     (-----) [002] dnh5 82316.794879: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91500          <idle>-0     (-----) [002] .n.1 82316.794888: cpu_idle: state=4294967295 cpu_id=2
91501          <idle>-0     (-----) [002] d..2 82316.794899: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
91502<...>-86 ( 86) [002] d..2 82316.794929: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91503          <idle>-0     (-----) [002] d..1 82316.794940: cpu_idle: state=0 cpu_id=2
91504          <idle>-0     (-----) [005] d..2 82316.795150: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
91505          <idle>-0     (-----) [005] dn.3 82316.795159: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
91506          <idle>-0     (-----) [005] .n.1 82316.795161: cpu_idle: state=4294967295 cpu_id=5
91507          <idle>-0     (-----) [005] d..2 82316.795171: 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
91508     ksoftirqd/5-50    (   50) [005] d..2 82316.795192: 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
91509          <idle>-0     (-----) [005] d..1 82316.795199: cpu_idle: state=0 cpu_id=5
91510          <idle>-0     (-----) [000] ...1 82316.796123: cpu_idle: state=4294967295 cpu_id=0
91511          <idle>-0     (-----) [000] d..1 82316.796128: cpu_idle: state=0 cpu_id=0
91512          <idle>-0     (-----) [002] d.h4 82316.796563: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91513          <idle>-0     (-----) [005] dnh2 82316.796582: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91514          <idle>-0     (-----) [005] .n.1 82316.796586: cpu_idle: state=4294967295 cpu_id=5
91515          <idle>-0     (-----) [005] d..2 82316.796591: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91516          <idle>-0     (-----) [002] ...1 82316.796612: cpu_idle: state=4294967295 cpu_id=2
91517          <idle>-0     (-----) [002] d..1 82316.796617: cpu_idle: state=0 cpu_id=2
91518<...>-5340 ( 788) [005] d..1 82316.796648: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91519          <idle>-0     (-----) [000] dnh2 82316.796668: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91520          <idle>-0     (-----) [000] .n.1 82316.796676: cpu_idle: state=4294967295 cpu_id=0
91521          <idle>-0     (-----) [000] d..2 82316.796686: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
91522<...>-5340 ( 788) [005] ...1 82316.796737: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
91523<...>-5340 ( 788) [005] ...1 82316.796741: tracing_mark_write: E|788
91524 neuralnetworks@-13088 (  788) [000] d..2 82316.796745: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91525<...>-5340 ( 788) [005] .... 82316.796757: binder_transaction: transaction=1571322 dest_node=1571320 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
91526          <idle>-0     (-----) [000] d..1 82316.796757: cpu_idle: state=0 cpu_id=0
91527<...>-5340 ( 788) [005] .... 82316.796760: binder_transaction_alloc_buf: transaction=1571322 data_size=60 offsets_size=0
91528<...>-5340 ( 788) [005] d..4 82316.796763: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
91529<...>-5340 ( 788) [005] d..5 82316.796776: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
91530          <idle>-0     (-----) [004] .n.1 82316.796782: cpu_idle: state=4294967295 cpu_id=4
91531          <idle>-0     (-----) [004] d..2 82316.796791: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
91532           <...>-27571 (-----) [004] .... 82316.796796: binder_transaction_received: transaction=1571322
91533<...>-5340 ( 788) [005] ...1 82316.796798: tracing_mark_write: E|788
91534<...>-5340 ( 788) [005] .... 82316.796805: binder_transaction: transaction=1571323 dest_node=0 dest_proc=27550 dest_thread=27763 reply=1 flags=0x0 code=0x0
91535<...>-5340 ( 788) [005] .... 82316.796806: binder_transaction_alloc_buf: transaction=1571323 data_size=8 offsets_size=0
91536<...>-5340 ( 788) [005] d..2 82316.796808: sched_waking: comm=id.nn.benchmark pid=27763 prio=110 target_cpu=005
91537           <...>-27571 (-----) [004] ...1 82316.796814: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
91538<...>-5340 ( 788) [005] d..3 82316.796815: sched_wakeup: comm=id.nn.benchmark pid=27763 prio=110 target_cpu=005
91539<...>-5340 ( 788) [005] .... 82316.796817: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
91540           <...>-27571 (-----) [004] ...1 82316.796820: tracing_mark_write: E|27550
91541           <...>-27571 (-----) [004] d..2 82316.796849: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91542          <idle>-0     (-----) [004] d..1 82316.796857: cpu_idle: state=0 cpu_id=4
91543<...>-5340 ( 788) [005] d..2 82316.796858: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27763 next_prio=110
91544           <...>-27763 (-----) [005] .... 82316.796868: binder_transaction_received: transaction=1571323
91545           <...>-27763 (-----) [005] ...1 82316.796903: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
91546           <...>-27763 (-----) [005] ...1 82316.796909: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
91547           <...>-27763 (-----) [005] ...1 82316.796934: tracing_mark_write: E|27550
91548           <...>-27763 (-----) [005] ...1 82316.796938: tracing_mark_write: E|27550
91549           <...>-27763 (-----) [005] ...1 82316.796941: tracing_mark_write: E|27550
91550           <...>-27763 (-----) [005] ...1 82316.797128: tracing_mark_write: E|27550
91551           <...>-27763 (-----) [005] d..1 82316.797140: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91552           <...>-27763 (-----) [005] d..2 82316.797156: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91553          <idle>-0     (-----) [004] .n.1 82316.797161: cpu_idle: state=4294967295 cpu_id=4
91554          <idle>-0     (-----) [004] d..2 82316.797168: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
91555           <...>-27550 (-----) [004] d..2 82316.797188: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91556          <idle>-0     (-----) [004] d..1 82316.797197: cpu_idle: state=0 cpu_id=4
91557           <...>-27763 (-----) [005] d..1 82316.797244: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91558           <...>-27763 (-----) [005] d..2 82316.797254: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91559          <idle>-0     (-----) [004] .n.1 82316.797259: cpu_idle: state=4294967295 cpu_id=4
91560          <idle>-0     (-----) [004] d..2 82316.797267: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
91561           <...>-27763 (-----) [005] d..2 82316.797293: sched_switch: prev_comm=id.nn.benchmark prev_pid=27763 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
91562           <...>-27550 (-----) [004] ...1 82316.797301: tracing_mark_write: E|27550
91563           <...>-27550 (-----) [004] ...1 82316.797306: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
91564           <...>-27550 (-----) [004] ...1 82316.797312: tracing_mark_write: E|27550
91565          <idle>-0     (-----) [005] d..1 82316.797313: cpu_idle: state=0 cpu_id=5
91566           <...>-27550 (-----) [004] ...1 82316.797315: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
91567           <...>-27550 (-----) [004] ...1 82316.797319: tracing_mark_write: E|27550
91568           <...>-27550 (-----) [004] ...1 82316.797324: tracing_mark_write: E|27550
91569           <...>-27550 (-----) [004] ...1 82316.797437: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
91570           <...>-27550 (-----) [004] ...1 82316.797496: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
91571           <...>-27550 (-----) [004] ...1 82316.797501: tracing_mark_write: E|27550
91572           <...>-27550 (-----) [004] ...1 82316.797505: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
91573           <...>-27550 (-----) [004] ...1 82316.797511: tracing_mark_write: E|27550
91574           <...>-27550 (-----) [004] ...1 82316.797515: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
91575           <...>-27550 (-----) [004] ...1 82316.797520: tracing_mark_write: E|27550
91576           <...>-27550 (-----) [004] ...1 82316.797524: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
91577          <idle>-0     (-----) [005] .n.1 82316.797616: cpu_idle: state=4294967295 cpu_id=5
91578           <...>-27550 (-----) [004] ...1 82316.797616: tracing_mark_write: E|27550
91579           <...>-27550 (-----) [004] ...1 82316.797620: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
91580          <idle>-0     (-----) [005] d..2 82316.797625: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27764 next_prio=110
91581           <...>-27550 (-----) [004] d..2 82316.797637: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91582          <idle>-0     (-----) [004] d..1 82316.797651: cpu_idle: state=0 cpu_id=4
91583           <...>-27764 (-----) [005] ...1 82316.797686: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
91584           <...>-27764 (-----) [005] ...1 82316.797700: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
91585           <...>-27764 (-----) [005] ...1 82316.797704: tracing_mark_write: E|27550
91586           <...>-27764 (-----) [005] .... 82316.797726: binder_transaction: transaction=1571324 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
91587           <...>-27764 (-----) [005] .... 82316.797729: binder_transaction_alloc_buf: transaction=1571324 data_size=48 offsets_size=0
91588           <...>-27764 (-----) [005] ...2 82316.797732: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
91589           <...>-27764 (-----) [005] d..4 82316.797734: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
91590           <...>-27764 (-----) [005] dn.5 82316.797745: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
91591           <...>-27764 (-----) [005] d..2 82316.797751: sched_switch: prev_comm=id.nn.benchmark prev_pid=27764 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
91592<...>-770 ( 770) [005] .... 82316.797761: binder_transaction_received: transaction=1571324
91593<...>-770 ( 770) [005] ...1 82316.797783: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
91594<...>-770 ( 770) [005] d..2 82316.797854: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
91595          <idle>-0     (-----) [000] dnh2 82316.797880: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
91596          <idle>-0     (-----) [000] .n.1 82316.797887: cpu_idle: state=4294967295 cpu_id=0
91597<...>-770 ( 770) [005] ...1 82316.797894: tracing_mark_write: E|770
91598          <idle>-0     (-----) [000] d..2 82316.797896: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
91599<...>-770 ( 770) [005] .... 82316.797901: binder_transaction: transaction=1571325 dest_node=0 dest_proc=27550 dest_thread=27764 reply=1 flags=0x0 code=0x0
91600<...>-770 ( 770) [005] .... 82316.797904: binder_transaction_alloc_buf: transaction=1571325 data_size=168 offsets_size=32
91601<...>-770 ( 770) [005] .... 82316.797910: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
91602<...>-770 ( 770) [005] d..2 82316.797946: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27764 next_prio=110
91603           <...>-27764 (-----) [005] .... 82316.797957: binder_transaction_received: transaction=1571325
91604<...>-581 ( 571) [000] d..2 82316.797972: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91605          <idle>-0     (-----) [000] d..1 82316.797986: cpu_idle: state=0 cpu_id=0
91606           <...>-27764 (-----) [005] ...1 82316.798026: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
91607           <...>-27764 (-----) [005] ...1 82316.798031: tracing_mark_write: E|27550
91608           <...>-27764 (-----) [005] .... 82316.798045: binder_transaction: transaction=1571326 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
91609           <...>-27764 (-----) [005] .... 82316.798048: binder_transaction_alloc_buf: transaction=1571326 data_size=48 offsets_size=0
91610           <...>-27764 (-----) [005] ...2 82316.798050: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
91611           <...>-27764 (-----) [005] d..4 82316.798052: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
91612           <...>-27764 (-----) [005] dn.5 82316.798063: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
91613           <...>-27764 (-----) [005] d..2 82316.798069: sched_switch: prev_comm=id.nn.benchmark prev_pid=27764 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
91614<...>-770 ( 770) [005] .... 82316.798077: binder_transaction_received: transaction=1571326
91615<...>-770 ( 770) [005] ...1 82316.798094: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
91616<...>-770 ( 770) [005] d..2 82316.798150: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
91617          <idle>-0     (-----) [000] dnh2 82316.798174: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
91618          <idle>-0     (-----) [000] .n.1 82316.798180: cpu_idle: state=4294967295 cpu_id=0
91619<...>-770 ( 770) [005] ...1 82316.798184: tracing_mark_write: E|770
91620          <idle>-0     (-----) [000] d..2 82316.798191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
91621<...>-770 ( 770) [005] .... 82316.798191: binder_transaction: transaction=1571327 dest_node=0 dest_proc=27550 dest_thread=27764 reply=1 flags=0x0 code=0x0
91622<...>-770 ( 770) [005] .... 82316.798193: binder_transaction_alloc_buf: transaction=1571327 data_size=168 offsets_size=32
91623<...>-770 ( 770) [005] .... 82316.798200: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
91624<...>-770 ( 770) [005] d..2 82316.798234: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27764 next_prio=110
91625<...>-581 ( 571) [000] d..2 82316.798244: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91626           <...>-27764 (-----) [005] .... 82316.798245: binder_transaction_received: transaction=1571327
91627          <idle>-0     (-----) [000] d..1 82316.798258: cpu_idle: state=0 cpu_id=0
91628           <...>-27764 (-----) [005] d.s2 82316.798471: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
91629          <idle>-0     (-----) [003] d.s2 82316.798472: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
91630          <idle>-0     (-----) [003] dns3 82316.798489: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
91631          <idle>-0     (-----) [003] dns2 82316.798491: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
91632          <idle>-0     (-----) [003] dns3 82316.798525: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
91633          <idle>-0     (-----) [003] .n.1 82316.798536: cpu_idle: state=4294967295 cpu_id=3
91634          <idle>-0     (-----) [003] d..2 82316.798548: 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
91635          <idle>-0     (-----) [000] dnh5 82316.798551: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
91636          <idle>-0     (-----) [000] dnh6 82316.798575: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
91637<...>-8 ( 8) [003] d..2 82316.798582: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
91638           <...>-27764 (-----) [005] ...1 82316.798584: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
91639          <idle>-0     (-----) [000] dnh5 82316.798588: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
91640           <...>-27764 (-----) [005] ...1 82316.798593: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
91641           <...>-27764 (-----) [005] ...1 82316.798597: tracing_mark_write: E|27550
91642          <idle>-0     (-----) [000] dnh6 82316.798601: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
91643          <idle>-0     (-----) [001] .n.1 82316.798607: cpu_idle: state=4294967295 cpu_id=1
91644          <idle>-0     (-----) [001] d..2 82316.798617: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
91645  crtc_event:111-322   (  322) [003] d..2 82316.798624: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91646          <idle>-0     (-----) [000] dnh2 82316.798624: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
91647          <idle>-0     (-----) [000] .n.1 82316.798632: cpu_idle: state=4294967295 cpu_id=0
91648          <idle>-0     (-----) [003] d..1 82316.798636: cpu_idle: state=0 cpu_id=3
91649          <idle>-0     (-----) [000] d..2 82316.798644: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
91650           <...>-27764 (-----) [005] .... 82316.798655: binder_transaction: transaction=1571328 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
91651           <...>-27764 (-----) [005] .... 82316.798658: binder_transaction_alloc_buf: transaction=1571328 data_size=556 offsets_size=104
91652           <...>-27764 (-----) [005] ...2 82316.798671: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
91653           <...>-27764 (-----) [005] d..4 82316.798673: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91654           <...>-27764 (-----) [005] dn.5 82316.798684: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91655           <...>-27764 (-----) [005] d..2 82316.798690: sched_switch: prev_comm=id.nn.benchmark prev_pid=27764 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91656<...>-5340 ( 788) [005] .... 82316.798700: binder_transaction_received: transaction=1571328
91657  kworker/u16:15-1311  ( 1311) [000] .... 82316.798708: clk_set_rate: l3_cluster0_vote_clk 403200000
91658<...>-5340 ( 788) [005] ...1 82316.798759: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
91659 crtc_commit:111-321   (  321) [001] d..2 82316.798792: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
91660<...>-5340 ( 788) [005] d..2 82316.798803: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
91661     rcu_preempt-7     (    7) [001] d..2 82316.798833: 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
91662<...>-5340 ( 788) [005] d..2 82316.798845: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27764 next_prio=110
91663          <idle>-0     (-----) [001] dnh3 82316.798852: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
91664          <idle>-0     (-----) [001] d..2 82316.798861: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
91665           <...>-27764 (-----) [005] d..2 82316.798868: sched_switch: prev_comm=id.nn.benchmark prev_pid=27764 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91666          <idle>-0     (-----) [005] d..1 82316.798886: cpu_idle: state=0 cpu_id=5
91667<...>-87 ( 87) [001] d..2 82316.798901: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91668          <idle>-0     (-----) [002] d.h4 82316.798908: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91669          <idle>-0     (-----) [001] d..1 82316.798911: cpu_idle: state=0 cpu_id=1
91670          <idle>-0     (-----) [002] dnh5 82316.798924: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91671          <idle>-0     (-----) [002] .n.1 82316.798932: cpu_idle: state=4294967295 cpu_id=2
91672          <idle>-0     (-----) [002] d..2 82316.798944: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
91673<...>-86 ( 86) [002] d..2 82316.798978: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91674          <idle>-0     (-----) [002] d.h5 82316.798998: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91675  kworker/u16:15-1311  ( 1311) [000] d..2 82316.799009: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
91676          <idle>-0     (-----) [005] dnh2 82316.799019: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91677          <idle>-0     (-----) [005] .n.1 82316.799023: cpu_idle: state=4294967295 cpu_id=5
91678          <idle>-0     (-----) [000] d..1 82316.799025: cpu_idle: state=0 cpu_id=0
91679          <idle>-0     (-----) [005] d..2 82316.799032: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91680          <idle>-0     (-----) [001] d.s3 82316.799039: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
91681          <idle>-0     (-----) [002] d..1 82316.799041: cpu_idle: state=0 cpu_id=2
91682          <idle>-0     (-----) [001] d.s4 82316.799051: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
91683          <idle>-0     (-----) [001] d.s4 82316.799059: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
91684          <idle>-0     (-----) [000] .n.1 82316.799067: cpu_idle: state=4294967295 cpu_id=0
91685          <idle>-0     (-----) [001] ...1 82316.799068: cpu_idle: state=4294967295 cpu_id=1
91686          <idle>-0     (-----) [001] d..1 82316.799073: cpu_idle: state=0 cpu_id=1
91687          <idle>-0     (-----) [000] d..2 82316.799080: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
91688<...>-5340 ( 788) [005] d..1 82316.799083: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91689  kworker/u16:15-1311  ( 1311) [000] dnh1 82316.799107: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91690  kworker/u16:15-1311  ( 1311) [000] d..2 82316.799117: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
91691 neuralnetworks@-13088 (  788) [000] d..2 82316.799155: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
91692  kworker/u16:15-1311  ( 1311) [000] d..2 82316.799219: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91693          <idle>-0     (-----) [000] d..1 82316.799234: cpu_idle: state=0 cpu_id=0
91694<...>-5340 ( 788) [005] d..2 82316.799244: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
91695          <idle>-0     (-----) [001] dnh2 82316.799264: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
91696          <idle>-0     (-----) [001] .n.1 82316.799270: cpu_idle: state=4294967295 cpu_id=1
91697<...>-5340 ( 788) [005] d..2 82316.799270: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91698          <idle>-0     (-----) [001] d..2 82316.799278: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
91699          <idle>-0     (-----) [005] d..1 82316.799284: cpu_idle: state=0 cpu_id=5
91700<...>-87 ( 87) [001] d..2 82316.799313: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91701          <idle>-0     (-----) [002] d.h4 82316.799315: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91702          <idle>-0     (-----) [001] d..1 82316.799320: cpu_idle: state=0 cpu_id=1
91703          <idle>-0     (-----) [002] dnh5 82316.799325: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91704          <idle>-0     (-----) [002] .n.1 82316.799333: cpu_idle: state=4294967295 cpu_id=2
91705          <idle>-0     (-----) [002] d..2 82316.799344: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
91706<...>-86 ( 86) [002] d..2 82316.799375: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91707          <idle>-0     (-----) [002] d..1 82316.799385: cpu_idle: state=0 cpu_id=2
91708          <idle>-0     (-----) [005] ...1 82316.799605: cpu_idle: state=4294967295 cpu_id=5
91709          <idle>-0     (-----) [005] d..1 82316.799608: cpu_idle: state=0 cpu_id=5
91710          <idle>-0     (-----) [000] ...1 82316.800632: cpu_idle: state=4294967295 cpu_id=0
91711          <idle>-0     (-----) [000] d..1 82316.800637: cpu_idle: state=0 cpu_id=0
91712          <idle>-0     (-----) [000] d.h5 82316.800886: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
91713          <idle>-0     (-----) [000] d.h6 82316.800904: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
91714          <idle>-0     (-----) [001] .n.1 82316.800909: cpu_idle: state=4294967295 cpu_id=1
91715          <idle>-0     (-----) [001] d..2 82316.800917: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
91716          <idle>-0     (-----) [000] ...1 82316.800918: cpu_idle: state=4294967295 cpu_id=0
91717          <idle>-0     (-----) [000] d..1 82316.800925: cpu_idle: state=0 cpu_id=0
91718 crtc_commit:111-321   (  321) [001] d..2 82316.800988: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91719          <idle>-0     (-----) [001] d..1 82316.800996: cpu_idle: state=0 cpu_id=1
91720          <idle>-0     (-----) [002] d.h4 82316.801070: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91721          <idle>-0     (-----) [005] dnh2 82316.801090: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91722          <idle>-0     (-----) [005] .n.1 82316.801094: cpu_idle: state=4294967295 cpu_id=5
91723          <idle>-0     (-----) [005] d..2 82316.801102: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91724          <idle>-0     (-----) [002] ...1 82316.801107: cpu_idle: state=4294967295 cpu_id=2
91725          <idle>-0     (-----) [002] d..1 82316.801112: cpu_idle: state=0 cpu_id=2
91726<...>-5340 ( 788) [005] d..1 82316.801150: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91727          <idle>-0     (-----) [000] d.h5 82316.801180: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
91728          <idle>-0     (-----) [000] d.h6 82316.801194: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
91729          <idle>-0     (-----) [003] .n.1 82316.801215: cpu_idle: state=4294967295 cpu_id=3
91730          <idle>-0     (-----) [003] d..2 82316.801235: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
91731          <idle>-0     (-----) [000] dnh2 82316.801241: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91732<...>-5340 ( 788) [005] ...1 82316.801241: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
91733<...>-5340 ( 788) [005] ...1 82316.801245: tracing_mark_write: E|788
91734          <idle>-0     (-----) [000] .n.1 82316.801247: cpu_idle: state=4294967295 cpu_id=0
91735  crtc_event:111-322   (  322) [003] d..2 82316.801257: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91736          <idle>-0     (-----) [000] d..2 82316.801259: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
91737<...>-5340 ( 788) [005] .... 82316.801261: binder_transaction: transaction=1571331 dest_node=1571329 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
91738<...>-5340 ( 788) [005] .... 82316.801264: binder_transaction_alloc_buf: transaction=1571331 data_size=60 offsets_size=0
91739          <idle>-0     (-----) [003] d..1 82316.801266: cpu_idle: state=0 cpu_id=3
91740<...>-5340 ( 788) [005] d..4 82316.801267: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
91741<...>-5340 ( 788) [005] d..5 82316.801279: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
91742          <idle>-0     (-----) [004] .n.1 82316.801284: cpu_idle: state=4294967295 cpu_id=4
91743          <idle>-0     (-----) [004] d..2 82316.801292: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
91744 neuralnetworks@-13088 (  788) [000] d..2 82316.801292: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91745           <...>-27571 (-----) [004] .... 82316.801297: binder_transaction_received: transaction=1571331
91746<...>-5340 ( 788) [005] ...1 82316.801301: tracing_mark_write: E|788
91747          <idle>-0     (-----) [000] d..1 82316.801306: cpu_idle: state=0 cpu_id=0
91748<...>-5340 ( 788) [005] .... 82316.801307: binder_transaction: transaction=1571332 dest_node=0 dest_proc=27550 dest_thread=27764 reply=1 flags=0x0 code=0x0
91749<...>-5340 ( 788) [005] .... 82316.801310: binder_transaction_alloc_buf: transaction=1571332 data_size=8 offsets_size=0
91750<...>-5340 ( 788) [005] d..2 82316.801312: sched_waking: comm=id.nn.benchmark pid=27764 prio=110 target_cpu=005
91751           <...>-27571 (-----) [004] ...1 82316.801315: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
91752<...>-5340 ( 788) [005] d..3 82316.801319: sched_wakeup: comm=id.nn.benchmark pid=27764 prio=110 target_cpu=005
91753<...>-5340 ( 788) [005] .... 82316.801321: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
91754           <...>-27571 (-----) [004] ...1 82316.801321: tracing_mark_write: E|27550
91755           <...>-27571 (-----) [004] d..2 82316.801350: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91756          <idle>-0     (-----) [004] d..1 82316.801357: cpu_idle: state=0 cpu_id=4
91757<...>-5340 ( 788) [005] d..2 82316.801362: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27764 next_prio=110
91758           <...>-27764 (-----) [005] .... 82316.801372: binder_transaction_received: transaction=1571332
91759           <...>-27764 (-----) [005] ...1 82316.801408: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
91760           <...>-27764 (-----) [005] ...1 82316.801414: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
91761           <...>-27764 (-----) [005] ...1 82316.801441: tracing_mark_write: E|27550
91762           <...>-27764 (-----) [005] ...1 82316.801444: tracing_mark_write: E|27550
91763           <...>-27764 (-----) [005] ...1 82316.801448: tracing_mark_write: E|27550
91764           <...>-27764 (-----) [005] ...1 82316.801636: tracing_mark_write: E|27550
91765           <...>-27764 (-----) [005] d..1 82316.801649: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91766           <...>-27764 (-----) [005] d..2 82316.801665: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91767          <idle>-0     (-----) [004] .n.1 82316.801670: cpu_idle: state=4294967295 cpu_id=4
91768          <idle>-0     (-----) [004] d..2 82316.801677: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
91769           <...>-27550 (-----) [004] d..2 82316.801697: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91770          <idle>-0     (-----) [004] d..1 82316.801706: cpu_idle: state=0 cpu_id=4
91771           <...>-27764 (-----) [005] d..1 82316.801754: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91772           <...>-27764 (-----) [005] d..2 82316.801764: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
91773          <idle>-0     (-----) [004] .n.1 82316.801769: cpu_idle: state=4294967295 cpu_id=4
91774          <idle>-0     (-----) [004] d..2 82316.801781: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
91775          <idle>-0     (-----) [001] d.s3 82316.801802: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
91776           <...>-27550 (-----) [004] ...1 82316.801813: tracing_mark_write: E|27550
91777           <...>-27550 (-----) [004] ...1 82316.801817: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
91778          <idle>-0     (-----) [001] d.s4 82316.801820: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
91779           <...>-27550 (-----) [004] ...1 82316.801822: tracing_mark_write: E|27550
91780          <idle>-0     (-----) [003] .n.1 82316.801825: cpu_idle: state=4294967295 cpu_id=3
91781           <...>-27550 (-----) [004] ...1 82316.801826: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
91782           <...>-27764 (-----) [005] d..2 82316.801829: sched_switch: prev_comm=id.nn.benchmark prev_pid=27764 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
91783           <...>-27550 (-----) [004] ...1 82316.801831: tracing_mark_write: E|27550
91784          <idle>-0     (-----) [003] d..2 82316.801834: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
91785           <...>-27550 (-----) [004] ...1 82316.801835: tracing_mark_write: E|27550
91786          <idle>-0     (-----) [001] ...1 82316.801841: cpu_idle: state=4294967295 cpu_id=1
91787          <idle>-0     (-----) [001] d..1 82316.801846: cpu_idle: state=0 cpu_id=1
91788          <idle>-0     (-----) [005] d..1 82316.801849: cpu_idle: state=0 cpu_id=5
91789  crtc_event:111-322   (  322) [003] d..2 82316.801862: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91790          <idle>-0     (-----) [003] d..1 82316.801869: cpu_idle: state=0 cpu_id=3
91791           <...>-27550 (-----) [004] ...1 82316.801946: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
91792           <...>-27550 (-----) [004] ...1 82316.802004: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
91793           <...>-27550 (-----) [004] ...1 82316.802009: tracing_mark_write: E|27550
91794           <...>-27550 (-----) [004] ...1 82316.802013: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
91795           <...>-27550 (-----) [004] ...1 82316.802019: tracing_mark_write: E|27550
91796           <...>-27550 (-----) [004] ...1 82316.802022: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
91797           <...>-27550 (-----) [004] ...1 82316.802027: tracing_mark_write: E|27550
91798           <...>-27550 (-----) [004] ...1 82316.802030: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
91799          <idle>-0     (-----) [005] .n.1 82316.802119: cpu_idle: state=4294967295 cpu_id=5
91800           <...>-27550 (-----) [004] ...1 82316.802120: tracing_mark_write: E|27550
91801           <...>-27550 (-----) [004] ...1 82316.802125: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
91802          <idle>-0     (-----) [005] d..2 82316.802128: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27765 next_prio=110
91803           <...>-27550 (-----) [004] d..2 82316.802142: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
91804          <idle>-0     (-----) [004] d..1 82316.802156: cpu_idle: state=0 cpu_id=4
91805           <...>-27765 (-----) [005] ...1 82316.802191: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
91806           <...>-27765 (-----) [005] ...1 82316.802205: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
91807           <...>-27765 (-----) [005] ...1 82316.802209: tracing_mark_write: E|27550
91808           <...>-27765 (-----) [005] .... 82316.802231: binder_transaction: transaction=1571333 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
91809           <...>-27765 (-----) [005] .... 82316.802234: binder_transaction_alloc_buf: transaction=1571333 data_size=48 offsets_size=0
91810           <...>-27765 (-----) [005] ...2 82316.802237: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
91811           <...>-27765 (-----) [005] d..4 82316.802240: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
91812           <...>-27765 (-----) [005] dn.5 82316.802250: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
91813           <...>-27765 (-----) [005] d..2 82316.802257: sched_switch: prev_comm=id.nn.benchmark prev_pid=27765 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
91814<...>-770 ( 770) [005] .... 82316.802267: binder_transaction_received: transaction=1571333
91815<...>-770 ( 770) [005] ...1 82316.802289: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
91816<...>-770 ( 770) [005] d..2 82316.802363: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
91817          <idle>-0     (-----) [000] dnh2 82316.802390: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
91818          <idle>-0     (-----) [000] .n.1 82316.802397: cpu_idle: state=4294967295 cpu_id=0
91819<...>-770 ( 770) [005] ...1 82316.802404: tracing_mark_write: E|770
91820          <idle>-0     (-----) [000] d..2 82316.802407: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
91821<...>-770 ( 770) [005] .... 82316.802412: binder_transaction: transaction=1571334 dest_node=0 dest_proc=27550 dest_thread=27765 reply=1 flags=0x0 code=0x0
91822<...>-770 ( 770) [005] .... 82316.802415: binder_transaction_alloc_buf: transaction=1571334 data_size=168 offsets_size=32
91823<...>-770 ( 770) [005] .... 82316.802421: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
91824<...>-770 ( 770) [005] d..2 82316.802457: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27765 next_prio=110
91825           <...>-27765 (-----) [005] .... 82316.802468: binder_transaction_received: transaction=1571334
91826<...>-581 ( 571) [000] d..2 82316.802492: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91827          <idle>-0     (-----) [000] d..1 82316.802507: cpu_idle: state=0 cpu_id=0
91828           <...>-27765 (-----) [005] ...1 82316.802538: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
91829           <...>-27765 (-----) [005] ...1 82316.802543: tracing_mark_write: E|27550
91830           <...>-27765 (-----) [005] .... 82316.802558: binder_transaction: transaction=1571335 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
91831           <...>-27765 (-----) [005] .... 82316.802561: binder_transaction_alloc_buf: transaction=1571335 data_size=48 offsets_size=0
91832           <...>-27765 (-----) [005] ...2 82316.802563: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
91833           <...>-27765 (-----) [005] d..4 82316.802565: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
91834           <...>-27765 (-----) [005] dn.5 82316.802575: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
91835           <...>-27765 (-----) [005] d..2 82316.802582: sched_switch: prev_comm=id.nn.benchmark prev_pid=27765 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
91836<...>-770 ( 770) [005] .... 82316.802589: binder_transaction_received: transaction=1571335
91837<...>-770 ( 770) [005] ...1 82316.802606: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
91838<...>-770 ( 770) [005] d..2 82316.802663: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
91839          <idle>-0     (-----) [000] dnh2 82316.802687: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
91840          <idle>-0     (-----) [000] .n.1 82316.802694: cpu_idle: state=4294967295 cpu_id=0
91841<...>-770 ( 770) [005] ...1 82316.802698: tracing_mark_write: E|770
91842          <idle>-0     (-----) [000] d..2 82316.802704: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
91843<...>-770 ( 770) [005] .... 82316.802705: binder_transaction: transaction=1571336 dest_node=0 dest_proc=27550 dest_thread=27765 reply=1 flags=0x0 code=0x0
91844<...>-770 ( 770) [005] .... 82316.802708: binder_transaction_alloc_buf: transaction=1571336 data_size=168 offsets_size=32
91845<...>-770 ( 770) [005] .... 82316.802713: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
91846<...>-770 ( 770) [005] d..2 82316.802747: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27765 next_prio=110
91847           <...>-27765 (-----) [005] .... 82316.802757: binder_transaction_received: transaction=1571336
91848<...>-581 ( 571) [000] d..2 82316.802758: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91849          <idle>-0     (-----) [000] d..1 82316.802771: cpu_idle: state=0 cpu_id=0
91850          <idle>-0     (-----) [001] d.h2 82316.802956: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
91851          <idle>-0     (-----) [001] dnh3 82316.802968: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
91852          <idle>-0     (-----) [001] .n.1 82316.802975: cpu_idle: state=4294967295 cpu_id=1
91853          <idle>-0     (-----) [001] d..2 82316.802982: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
91854        DispSync-8879  ( 8858) [001] d..1 82316.803000: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
91855        DispSync-8879  ( 8858) [001] d..2 82316.803014: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
91856          <idle>-0     (-----) [003] .n.1 82316.803019: cpu_idle: state=4294967295 cpu_id=3
91857          <idle>-0     (-----) [003] d..2 82316.803027: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
91858           <...>-27765 (-----) [005] ...1 82316.803035: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
91859        DispSync-8879  ( 8858) [001] d..2 82316.803045: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91860           <...>-27765 (-----) [005] ...1 82316.803045: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
91861           <...>-27765 (-----) [005] ...1 82316.803048: tracing_mark_write: E|27550
91862          <idle>-0     (-----) [001] d..1 82316.803053: cpu_idle: state=0 cpu_id=1
91863  appEventThread-8881  ( 8858) [003] d..3 82316.803085: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
91864           <...>-27765 (-----) [005] .... 82316.803105: binder_transaction: transaction=1571337 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
91865  appEventThread-8881  ( 8858) [003] d..4 82316.803107: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
91866           <...>-27765 (-----) [005] .... 82316.803108: binder_transaction_alloc_buf: transaction=1571337 data_size=556 offsets_size=104
91867          <idle>-0     (-----) [000] .n.1 82316.803113: cpu_idle: state=4294967295 cpu_id=0
91868           <...>-27765 (-----) [005] ...2 82316.803121: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
91869           <...>-27765 (-----) [005] d..4 82316.803124: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91870          <idle>-0     (-----) [000] d..2 82316.803125: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
91871           <...>-27765 (-----) [005] dn.5 82316.803135: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91872           <...>-27765 (-----) [005] d..2 82316.803142: sched_switch: prev_comm=id.nn.benchmark prev_pid=27765 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91873  appEventThread-8881  ( 8858) [003] d..2 82316.803146: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91874<...>-5340 ( 788) [005] .... 82316.803152: binder_transaction_received: transaction=1571337
91875          <idle>-0     (-----) [003] d..1 82316.803156: cpu_idle: state=0 cpu_id=3
91876<...>-5340 ( 788) [005] ...1 82316.803194: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
91877<...>-5340 ( 788) [005] d..2 82316.803236: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
91878<...>-5340 ( 788) [005] d..2 82316.803274: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27765 next_prio=110
91879<...>-9105 ( 9105) [000] d.h1 82316.803280: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
91880           <...>-27765 (-----) [005] d..2 82316.803297: sched_switch: prev_comm=id.nn.benchmark prev_pid=27765 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91881          <idle>-0     (-----) [005] d..1 82316.803315: cpu_idle: state=0 cpu_id=5
91882<...>-9105 ( 9105) [000] .... 82316.803483: binder_transaction: transaction=1571340 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
91883<...>-9105 ( 9105) [000] .... 82316.803489: binder_transaction_alloc_buf: transaction=1571340 data_size=80 offsets_size=0
91884<...>-9105 ( 9105) [000] d..4 82316.803496: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
91885<...>-9105 ( 9105) [000] d..5 82316.803529: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
91886          <idle>-0     (-----) [001] .n.1 82316.803534: cpu_idle: state=4294967295 cpu_id=1
91887          <idle>-0     (-----) [001] d..2 82316.803544: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
91888<...>-13083 ( 8858) [001] .... 82316.803551: binder_transaction_received: transaction=1571340
91889<...>-9105 ( 9105) [000] d..3 82316.803567: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
91890<...>-13083 ( 8858) [001] d..1 82316.803584: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
91891<...>-9105 ( 9105) [000] d..4 82316.803586: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
91892          <idle>-0     (-----) [002] .n.1 82316.803591: cpu_idle: state=4294967295 cpu_id=2
91893<...>-13083 ( 8858) [001] d..2 82316.803599: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
91894          <idle>-0     (-----) [002] d..2 82316.803605: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
91895          <idle>-0     (-----) [003] .n.1 82316.803605: cpu_idle: state=4294967295 cpu_id=3
91896          <idle>-0     (-----) [003] d..2 82316.803613: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
91897<...>-13083 ( 8858) [001] d..2 82316.803640: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91898          <idle>-0     (-----) [001] d..1 82316.803649: cpu_idle: state=0 cpu_id=1
91899    RenderThread-9436  ( 9105) [002] d..2 82316.803664: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
91900  appEventThread-8881  ( 8858) [003] d..2 82316.803671: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
91901          <idle>-0     (-----) [002] d..1 82316.803677: cpu_idle: state=0 cpu_id=2
91902<...>-9105 ( 9105) [000] d..3 82316.803706: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
91903<...>-87 ( 87) [003] d..2 82316.803712: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91904          <idle>-0     (-----) [003] d..1 82316.803721: cpu_idle: state=0 cpu_id=3
91905<...>-9105 ( 9105) [000] d..4 82316.803724: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
91906          <idle>-0     (-----) [002] dnh4 82316.803727: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
91907<...>-9105 ( 9105) [000] d..2 82316.803757: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91908          <idle>-0     (-----) [002] dnh5 82316.803774: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
91909          <idle>-0     (-----) [000] d..2 82316.803786: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
91910          <idle>-0     (-----) [002] dnh6 82316.803815: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91911          <idle>-0     (-----) [005] dnh2 82316.803836: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91912          <idle>-0     (-----) [005] .n.1 82316.803840: cpu_idle: state=4294967295 cpu_id=5
91913          <idle>-0     (-----) [002] .n.1 82316.803848: cpu_idle: state=4294967295 cpu_id=2
91914          <idle>-0     (-----) [005] d..2 82316.803848: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
91915          <idle>-0     (-----) [002] d..2 82316.803861: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
91916<...>-86 ( 86) [000] d..2 82316.803863: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91917          <idle>-0     (-----) [000] d..1 82316.803877: cpu_idle: state=0 cpu_id=0
91918<...>-5340 ( 788) [005] d..1 82316.803902: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
91919    RenderThread-9436  ( 9105) [002] dnh1 82316.803940: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
91920    RenderThread-9436  ( 9105) [002] d..2 82316.803951: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
91921 neuralnetworks@-13088 (  788) [002] d..2 82316.803994: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
91922    RenderThread-9436  ( 9105) [002] d..1 82316.804061: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
91923<...>-5340 ( 788) [005] d..2 82316.804063: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
91924    RenderThread-9436  ( 9105) [002] d..2 82316.804077: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
91925          <idle>-0     (-----) [000] .n.1 82316.804084: cpu_idle: state=4294967295 cpu_id=0
91926          <idle>-0     (-----) [003] dnh2 82316.804084: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
91927<...>-5340 ( 788) [005] d..2 82316.804088: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
91928          <idle>-0     (-----) [003] .n.1 82316.804091: cpu_idle: state=4294967295 cpu_id=3
91929          <idle>-0     (-----) [000] d..2 82316.804095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
91930          <idle>-0     (-----) [003] d..2 82316.804098: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
91931          <idle>-0     (-----) [005] d..1 82316.804102: cpu_idle: state=0 cpu_id=5
91932<...>-87 ( 87) [003] d..2 82316.804132: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91933    RenderThread-9436  ( 9105) [002] d.h3 82316.804135: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
91934          <idle>-0     (-----) [003] d..1 82316.804139: cpu_idle: state=0 cpu_id=3
91935    RenderThread-9436  ( 9105) [002] d.h4 82316.804154: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
91936<...>-9105 ( 9105) [000] d..2 82316.804169: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
91937    RenderThread-9436  ( 9105) [002] .... 82316.804188: binder_transaction: transaction=1571341 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
91938    RenderThread-9436  ( 9105) [002] .... 82316.804193: binder_transaction_alloc_buf: transaction=1571341 data_size=104 offsets_size=0
91939    RenderThread-9436  ( 9105) [002] d..4 82316.804198: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
91940<...>-86 ( 86) [000] d..2 82316.804205: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
91941    RenderThread-9436  ( 9105) [002] dn.5 82316.804216: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
91942          <idle>-0     (-----) [000] d..1 82316.804220: cpu_idle: state=0 cpu_id=0
91943    RenderThread-9436  ( 9105) [002] d..2 82316.804225: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
91944<...>-13083 ( 8858) [002] .... 82316.804234: binder_transaction_received: transaction=1571341
91945<...>-13083 ( 8858) [002] .... 82316.804311: binder_transaction: transaction=1571342 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
91946<...>-13083 ( 8858) [002] .... 82316.804316: binder_transaction_alloc_buf: transaction=1571342 data_size=52 offsets_size=8
91947<...>-13083 ( 8858) [002] d..2 82316.804364: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
91948    RenderThread-9436  ( 9105) [002] .... 82316.804373: binder_transaction_received: transaction=1571342
91949          <idle>-0     (-----) [001] d.s2 82316.805133: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91950          <idle>-0     (-----) [003] d.s2 82316.805134: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
91951          <idle>-0     (-----) [001] dns3 82316.805150: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
91952          <idle>-0     (-----) [003] dns3 82316.805151: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
91953          <idle>-0     (-----) [001] .n.1 82316.805160: cpu_idle: state=4294967295 cpu_id=1
91954          <idle>-0     (-----) [003] .n.1 82316.805166: cpu_idle: state=4294967295 cpu_id=3
91955          <idle>-0     (-----) [001] d..2 82316.805169: 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
91956          <idle>-0     (-----) [003] d..2 82316.805175: 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
91957     rcu_preempt-7     (    7) [001] d..2 82316.805179: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
91958<...>-8 ( 8) [003] d..2 82316.805184: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
91959     rcu_preempt-7     (    7) [001] d..3 82316.805221: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
91960<...>-8 ( 8) [003] d..3 82316.805230: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
91961     rcu_preempt-7     (    7) [001] d..2 82316.805247: 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
91962<...>-8 ( 8) [003] d..2 82316.805255: 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
91963          <idle>-0     (-----) [003] d..1 82316.805268: cpu_idle: state=0 cpu_id=3
91964         rcuop/0-10    (   10) [001] d..2 82316.805271: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
91965<...>-46 ( 46) [001] d..2 82316.805284: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
91966<...>-46 ( 46) [001] d..3 82316.805298: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
91967          <idle>-0     (-----) [003] .n.1 82316.805304: cpu_idle: state=4294967295 cpu_id=3
91968          <idle>-0     (-----) [003] d..2 82316.805315: 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
91969<...>-46 ( 46) [001] d..2 82316.805319: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
91970          <idle>-0     (-----) [001] d..1 82316.805330: cpu_idle: state=0 cpu_id=1
91971<...>-8 ( 8) [003] d..2 82316.805336: 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
91972          <idle>-0     (-----) [003] d..1 82316.805346: cpu_idle: state=0 cpu_id=3
91973    RenderThread-9436  ( 9105) [002] d..2 82316.805388: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
91974          <idle>-0     (-----) [002] d..1 82316.805403: cpu_idle: state=0 cpu_id=2
91975          <idle>-0     (-----) [002] d.h2 82316.805472: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
91976          <idle>-0     (-----) [002] d.h3 82316.805482: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
91977          <idle>-0     (-----) [002] dnh3 82316.805488: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
91978          <idle>-0     (-----) [002] .n.1 82316.805496: cpu_idle: state=4294967295 cpu_id=2
91979          <idle>-0     (-----) [002] d..2 82316.805507: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
91980          <idle>-0     (-----) [000] d.h3 82316.805512: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
91981          <idle>-0     (-----) [000] d.h4 82316.805534: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
91982          <idle>-0     (-----) [003] .n.1 82316.805539: cpu_idle: state=4294967295 cpu_id=3
91983          <idle>-0     (-----) [003] d..2 82316.805549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
91984          <idle>-0     (-----) [000] ...1 82316.805551: cpu_idle: state=4294967295 cpu_id=0
91985          <idle>-0     (-----) [000] d..1 82316.805556: cpu_idle: state=0 cpu_id=0
91986 kgsl_worker_thr-258   (  258) [003] d..2 82316.805597: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
91987 kgsl_worker_thr-258   (  258) [003] d..3 82316.805630: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
91988 kgsl_worker_thr-258   (  258) [003] d..2 82316.805646: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
91989  kworker/u16:15-1311  ( 1311) [003] d..2 82316.805689: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
91990    RenderThread-9436  ( 9105) [002] .... 82316.805690: binder_transaction: transaction=1571343 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
91991    RenderThread-9436  ( 9105) [002] .... 82316.805695: binder_transaction_alloc_buf: transaction=1571343 data_size=192 offsets_size=8
91992          <idle>-0     (-----) [003] d..1 82316.805702: cpu_idle: state=0 cpu_id=3
91993    RenderThread-9436  ( 9105) [002] d..4 82316.805705: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
91994    RenderThread-9436  ( 9105) [002] dn.5 82316.805720: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
91995    RenderThread-9436  ( 9105) [002] d..2 82316.805729: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
91996<...>-13083 ( 8858) [002] d.h4 82316.805761: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91997          <idle>-0     (-----) [005] dnh2 82316.805784: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
91998          <idle>-0     (-----) [005] .n.1 82316.805789: cpu_idle: state=4294967295 cpu_id=5
91999<...>-13083 ( 8858) [002] .... 82316.805797: binder_transaction_received: transaction=1571343
92000          <idle>-0     (-----) [005] d..2 82316.805797: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92001<...>-5340 ( 788) [005] d..1 82316.805849: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
92002<...>-13083 ( 8858) [002] d.h1 82316.805877: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
92003<...>-5340 ( 788) [005] ...1 82316.805945: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
92004<...>-5340 ( 788) [005] ...1 82316.805949: tracing_mark_write: E|788
92005<...>-5340 ( 788) [005] .... 82316.805966: binder_transaction: transaction=1571344 dest_node=1571338 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
92006<...>-5340 ( 788) [005] .... 82316.805969: binder_transaction_alloc_buf: transaction=1571344 data_size=60 offsets_size=0
92007<...>-5340 ( 788) [005] d..4 82316.805972: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
92008<...>-5340 ( 788) [005] d..5 82316.805986: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
92009<...>-13083 ( 8858) [002] .... 82316.805986: binder_transaction: transaction=1571345 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
92010<...>-13083 ( 8858) [002] .... 82316.805991: binder_transaction_alloc_buf: transaction=1571345 data_size=68 offsets_size=0
92011          <idle>-0     (-----) [004] .n.1 82316.805992: cpu_idle: state=4294967295 cpu_id=4
92012          <idle>-0     (-----) [004] d..2 82316.806000: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
92013           <...>-27571 (-----) [004] .... 82316.806005: binder_transaction_received: transaction=1571344
92014<...>-5340 ( 788) [005] ...1 82316.806010: tracing_mark_write: E|788
92015<...>-5340 ( 788) [005] .... 82316.806016: binder_transaction: transaction=1571346 dest_node=0 dest_proc=27550 dest_thread=27765 reply=1 flags=0x0 code=0x0
92016<...>-5340 ( 788) [005] .... 82316.806018: binder_transaction_alloc_buf: transaction=1571346 data_size=8 offsets_size=0
92017<...>-5340 ( 788) [005] d..2 82316.806020: sched_waking: comm=id.nn.benchmark pid=27765 prio=110 target_cpu=005
92018           <...>-27571 (-----) [004] ...1 82316.806025: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
92019<...>-5340 ( 788) [005] d..3 82316.806027: sched_wakeup: comm=id.nn.benchmark pid=27765 prio=110 target_cpu=005
92020<...>-5340 ( 788) [005] .... 82316.806029: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
92021           <...>-27571 (-----) [004] ...1 82316.806031: tracing_mark_write: E|27550
92022<...>-13083 ( 8858) [002] d..2 82316.806032: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
92023           <...>-27571 (-----) [004] d..2 82316.806059: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92024          <idle>-0     (-----) [004] d..1 82316.806066: cpu_idle: state=0 cpu_id=4
92025 neuralnetworks@-13088 (  788) [002] d..2 82316.806067: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
92026<...>-5340 ( 788) [005] d..2 82316.806070: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27765 next_prio=110
92027    RenderThread-9436  ( 9105) [002] .... 82316.806076: binder_transaction_received: transaction=1571345
92028           <...>-27765 (-----) [005] .... 82316.806081: binder_transaction_received: transaction=1571346
92029           <...>-27765 (-----) [005] ...1 82316.806120: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
92030           <...>-27765 (-----) [005] ...1 82316.806126: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
92031           <...>-27765 (-----) [005] ...1 82316.806152: tracing_mark_write: E|27550
92032           <...>-27765 (-----) [005] ...1 82316.806155: tracing_mark_write: E|27550
92033           <...>-27765 (-----) [005] ...1 82316.806159: tracing_mark_write: E|27550
92034    RenderThread-9436  ( 9105) [002] d..2 82316.806166: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92035          <idle>-0     (-----) [002] d..1 82316.806187: cpu_idle: state=0 cpu_id=2
92036           <...>-27765 (-----) [005] ...1 82316.806349: tracing_mark_write: E|27550
92037           <...>-27765 (-----) [005] d..1 82316.806362: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92038           <...>-27765 (-----) [005] d..2 82316.806377: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92039          <idle>-0     (-----) [004] .n.1 82316.806382: cpu_idle: state=4294967295 cpu_id=4
92040          <idle>-0     (-----) [004] d..2 82316.806389: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
92041           <...>-27550 (-----) [004] d..2 82316.806408: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92042          <idle>-0     (-----) [004] d..1 82316.806417: cpu_idle: state=0 cpu_id=4
92043           <...>-27765 (-----) [005] d..1 82316.806466: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92044           <...>-27765 (-----) [005] d..2 82316.806476: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92045          <idle>-0     (-----) [004] .n.1 82316.806481: cpu_idle: state=4294967295 cpu_id=4
92046          <idle>-0     (-----) [004] d..2 82316.806489: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
92047           <...>-27765 (-----) [005] d..2 82316.806516: sched_switch: prev_comm=id.nn.benchmark prev_pid=27765 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
92048           <...>-27550 (-----) [004] ...1 82316.806537: tracing_mark_write: E|27550
92049           <...>-27550 (-----) [004] ...1 82316.806541: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
92050          <idle>-0     (-----) [005] d..1 82316.806544: cpu_idle: state=0 cpu_id=5
92051           <...>-27550 (-----) [004] ...1 82316.806547: tracing_mark_write: E|27550
92052           <...>-27550 (-----) [004] ...1 82316.806550: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
92053           <...>-27550 (-----) [004] ...1 82316.806554: tracing_mark_write: E|27550
92054           <...>-27550 (-----) [004] ...1 82316.806559: tracing_mark_write: E|27550
92055           <...>-27550 (-----) [004] ...1 82316.806671: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
92056           <...>-27550 (-----) [004] ...1 82316.806730: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
92057           <...>-27550 (-----) [004] ...1 82316.806735: tracing_mark_write: E|27550
92058           <...>-27550 (-----) [004] ...1 82316.806739: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
92059           <...>-27550 (-----) [004] ...1 82316.806745: tracing_mark_write: E|27550
92060           <...>-27550 (-----) [004] ...1 82316.806748: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
92061           <...>-27550 (-----) [004] ...1 82316.806752: tracing_mark_write: E|27550
92062           <...>-27550 (-----) [004] ...1 82316.806756: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
92063          <idle>-0     (-----) [005] .n.1 82316.806848: cpu_idle: state=4294967295 cpu_id=5
92064           <...>-27550 (-----) [004] ...1 82316.806850: tracing_mark_write: E|27550
92065           <...>-27550 (-----) [004] ...1 82316.806854: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
92066          <idle>-0     (-----) [005] d..2 82316.806856: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27766 next_prio=110
92067           <...>-27550 (-----) [004] d..2 82316.806870: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92068          <idle>-0     (-----) [004] d..1 82316.806885: cpu_idle: state=0 cpu_id=4
92069           <...>-27766 (-----) [005] ...1 82316.806917: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
92070           <...>-27766 (-----) [005] ...1 82316.806932: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
92071           <...>-27766 (-----) [005] ...1 82316.806936: tracing_mark_write: E|27550
92072           <...>-27766 (-----) [005] .... 82316.806958: binder_transaction: transaction=1571347 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
92073          <idle>-0     (-----) [001] d.h2 82316.806958: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
92074           <...>-27766 (-----) [005] .... 82316.806961: binder_transaction_alloc_buf: transaction=1571347 data_size=48 offsets_size=0
92075           <...>-27766 (-----) [005] ...2 82316.806964: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
92076           <...>-27766 (-----) [005] d..4 82316.806967: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
92077          <idle>-0     (-----) [001] dnh3 82316.806971: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
92078           <...>-27766 (-----) [005] dn.5 82316.806977: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
92079          <idle>-0     (-----) [001] .n.1 82316.806979: cpu_idle: state=4294967295 cpu_id=1
92080           <...>-27766 (-----) [005] d..2 82316.806984: sched_switch: prev_comm=id.nn.benchmark prev_pid=27766 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
92081          <idle>-0     (-----) [001] d..2 82316.806988: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
92082<...>-770 ( 770) [005] .... 82316.806994: binder_transaction_received: transaction=1571347
92083        DispSync-8879  ( 8858) [001] d..1 82316.807005: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
92084<...>-770 ( 770) [005] ...1 82316.807018: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
92085        DispSync-8879  ( 8858) [001] d..2 82316.807020: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
92086          <idle>-0     (-----) [003] .n.1 82316.807026: cpu_idle: state=4294967295 cpu_id=3
92087          <idle>-0     (-----) [003] d..2 82316.807036: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
92088        DispSync-8879  ( 8858) [001] d..2 82316.807050: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92089          <idle>-0     (-----) [001] d..1 82316.807061: cpu_idle: state=0 cpu_id=1
92090   sfEventThread-8882  ( 8858) [003] d..3 82316.807074: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
92091   sfEventThread-8882  ( 8858) [003] d..4 82316.807091: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
92092          <idle>-0     (-----) [000] .n.1 82316.807096: cpu_idle: state=4294967295 cpu_id=0
92093<...>-770 ( 770) [005] d..2 82316.807103: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
92094          <idle>-0     (-----) [000] d..2 82316.807107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
92095   sfEventThread-8882  ( 8858) [003] d..2 82316.807122: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92096          <idle>-0     (-----) [003] d..1 82316.807134: cpu_idle: state=0 cpu_id=3
92097          <idle>-0     (-----) [003] dnh2 82316.807152: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
92098          <idle>-0     (-----) [003] .n.1 82316.807158: cpu_idle: state=4294967295 cpu_id=3
92099<...>-770 ( 770) [005] ...1 82316.807167: tracing_mark_write: E|770
92100          <idle>-0     (-----) [003] d..2 82316.807168: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
92101<...>-770 ( 770) [005] .... 82316.807175: binder_transaction: transaction=1571348 dest_node=0 dest_proc=27550 dest_thread=27766 reply=1 flags=0x0 code=0x0
92102<...>-770 ( 770) [005] .... 82316.807178: binder_transaction_alloc_buf: transaction=1571348 data_size=168 offsets_size=32
92103<...>-770 ( 770) [005] .... 82316.807185: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
92104<...>-770 ( 770) [005] d..2 82316.807221: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27766 next_prio=110
92105           <...>-27766 (-----) [005] .... 82316.807233: binder_transaction_received: transaction=1571348
92106<...>-581 ( 571) [003] d..2 82316.807268: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92107          <idle>-0     (-----) [003] d..1 82316.807282: cpu_idle: state=0 cpu_id=3
92108           <...>-27766 (-----) [005] ...1 82316.807307: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
92109           <...>-27766 (-----) [005] ...1 82316.807312: tracing_mark_write: E|27550
92110           <...>-27766 (-----) [005] .... 82316.807327: binder_transaction: transaction=1571349 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
92111           <...>-27766 (-----) [005] .... 82316.807330: binder_transaction_alloc_buf: transaction=1571349 data_size=48 offsets_size=0
92112           <...>-27766 (-----) [005] ...2 82316.807332: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
92113           <...>-27766 (-----) [005] d..4 82316.807334: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
92114           <...>-27766 (-----) [005] dn.5 82316.807344: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
92115           <...>-27766 (-----) [005] d..2 82316.807351: sched_switch: prev_comm=id.nn.benchmark prev_pid=27766 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
92116<...>-770 ( 770) [005] .... 82316.807359: binder_transaction_received: transaction=1571349
92117<...>-770 ( 770) [005] ...1 82316.807376: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
92118<...>-770 ( 770) [005] d..2 82316.807435: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
92119  surfaceflinger-8858  ( 8858) [000] d..1 82316.807452: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
92120          <idle>-0     (-----) [003] dnh2 82316.807459: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
92121<...>-770 ( 770) [005] ...1 82316.807469: tracing_mark_write: E|770
92122          <idle>-0     (-----) [003] .n.1 82316.807469: cpu_idle: state=4294967295 cpu_id=3
92123<...>-770 ( 770) [005] .... 82316.807476: binder_transaction: transaction=1571350 dest_node=0 dest_proc=27550 dest_thread=27766 reply=1 flags=0x0 code=0x0
92124<...>-770 ( 770) [005] .... 82316.807479: binder_transaction_alloc_buf: transaction=1571350 data_size=168 offsets_size=32
92125          <idle>-0     (-----) [003] d..2 82316.807481: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
92126<...>-770 ( 770) [005] .... 82316.807485: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
92127  surfaceflinger-8858  ( 8858) [000] d..2 82316.807486: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
92128          <idle>-0     (-----) [001] .n.1 82316.807491: cpu_idle: state=4294967295 cpu_id=1
92129          <idle>-0     (-----) [001] d..2 82316.807501: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
92130<...>-770 ( 770) [005] d..2 82316.807519: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27766 next_prio=110
92131           <...>-27766 (-----) [005] .... 82316.807529: binder_transaction_received: transaction=1571350
92132<...>-581 ( 571) [003] d..2 82316.807535: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92133   sfEventThread-8882  ( 8858) [001] d..2 82316.807539: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92134          <idle>-0     (-----) [003] d..1 82316.807547: cpu_idle: state=0 cpu_id=3
92135          <idle>-0     (-----) [001] d..1 82316.807548: cpu_idle: state=0 cpu_id=1
92136  surfaceflinger-8858  ( 8858) [000] ...1 82316.807673: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
92137  surfaceflinger-8858  ( 8858) [000] ...1 82316.807679: tracing_mark_write: E|8858
92138  surfaceflinger-8858  ( 8858) [000] .... 82316.807729: binder_transaction: transaction=1571351 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
92139  surfaceflinger-8858  ( 8858) [000] .... 82316.807734: binder_transaction_alloc_buf: transaction=1571351 data_size=540 offsets_size=96
92140  surfaceflinger-8858  ( 8858) [000] ...2 82316.807758: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
92141  surfaceflinger-8858  ( 8858) [000] d..4 82316.807766: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
92142  surfaceflinger-8858  ( 8858) [000] d..5 82316.807784: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
92143          <idle>-0     (-----) [002] .n.1 82316.807791: cpu_idle: state=4294967295 cpu_id=2
92144          <idle>-0     (-----) [002] d..2 82316.807802: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
92145           <...>-27766 (-----) [005] ...1 82316.807803: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
92146           <...>-27766 (-----) [005] ...1 82316.807813: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
92147 [email protected]   (  619) [002] .... 82316.807813: binder_transaction_received: transaction=1571351
92148  surfaceflinger-8858  ( 8858) [000] d..2 82316.807815: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92149           <...>-27766 (-----) [005] ...1 82316.807816: tracing_mark_write: E|27550
92150          <idle>-0     (-----) [000] d..1 82316.807835: cpu_idle: state=0 cpu_id=0
92151 [email protected]   (  619) [002] ...1 82316.807858: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
92152           <...>-27766 (-----) [005] .... 82316.807879: binder_transaction: transaction=1571352 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
92153           <...>-27766 (-----) [005] .... 82316.807882: binder_transaction_alloc_buf: transaction=1571352 data_size=556 offsets_size=104
92154           <...>-27766 (-----) [005] ...2 82316.807897: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
92155           <...>-27766 (-----) [005] d..4 82316.807899: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92156           <...>-27766 (-----) [005] dn.5 82316.807910: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92157           <...>-27766 (-----) [005] d..2 82316.807917: sched_switch: prev_comm=id.nn.benchmark prev_pid=27766 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92158<...>-5340 ( 788) [005] .... 82316.807927: binder_transaction_received: transaction=1571352
92159 [email protected]   (  619) [002] ...1 82316.807963: tracing_mark_write: B|619|HWCSession::PresentDisplay::
92160<...>-5340 ( 788) [005] ...1 82316.807974: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
92161<...>-5340 ( 788) [005] d..2 82316.808018: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
92162<...>-5340 ( 788) [005] d..2 82316.808056: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27766 next_prio=110
92163 [email protected]   (  619) [002] d.h1 82316.808061: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
92164          <idle>-0     (-----) [007] d.h2 82316.808073: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=007
92165           <...>-27766 (-----) [005] d..2 82316.808080: sched_switch: prev_comm=id.nn.benchmark prev_pid=27766 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
92166          <idle>-0     (-----) [005] d..1 82316.808097: cpu_idle: state=0 cpu_id=5
92167          <idle>-0     (-----) [000] dnh2 82316.808111: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=000
92168          <idle>-0     (-----) [007] ...1 82316.808144: cpu_idle: state=4294967295 cpu_id=7
92169          <idle>-0     (-----) [000] .n.1 82316.808146: cpu_idle: state=4294967295 cpu_id=0
92170          <idle>-0     (-----) [007] d..1 82316.808149: cpu_idle: state=0 cpu_id=7
92171 [email protected]   (  619) [002] ...1 82316.808149: tracing_mark_write: B|619|HWDeviceDRM::Commit::
92172          <idle>-0     (-----) [000] d..2 82316.808157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
92173 [email protected]   (  619) [002] ...1 82316.808162: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
92174 PowerManagerSer-8971  ( 8943) [000] d..2 82316.808314: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
92175<...>-87 ( 87) [000] d..2 82316.808357: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92176 [email protected]   (  619) [002] d.h3 82316.808366: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
92177          <idle>-0     (-----) [000] d..1 82316.808374: cpu_idle: state=0 cpu_id=0
92178 [email protected]   (  619) [002] d.h4 82316.808410: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92179 [email protected]   (  619) [002] d.h3 82316.808445: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92180          <idle>-0     (-----) [005] dnh2 82316.808470: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92181          <idle>-0     (-----) [005] .n.1 82316.808475: cpu_idle: state=4294967295 cpu_id=5
92182          <idle>-0     (-----) [005] d..2 82316.808484: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92183 [email protected]   (  619) [002] d.s2 82316.808515: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
92184<...>-5340 ( 788) [005] d..1 82316.808539: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
92185 [email protected]   (  619) [002] d.s3 82316.808553: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
92186 [email protected]   (  619) [002] d.H2 82316.808566: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
92187<...>-5340 ( 788) [005] d..2 82316.808692: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92188          <idle>-0     (-----) [000] dnh2 82316.808714: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92189          <idle>-0     (-----) [000] .n.1 82316.808721: cpu_idle: state=4294967295 cpu_id=0
92190<...>-5340 ( 788) [005] d..2 82316.808722: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
92191          <idle>-0     (-----) [000] d..2 82316.808733: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
92192          <idle>-0     (-----) [005] d..1 82316.808737: cpu_idle: state=0 cpu_id=5
92193<...>-87 ( 87) [000] d..2 82316.808782: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
92194  kworker/u16:15-1311  ( 1311) [000] .... 82316.808820: clk_set_rate: l3_cluster1_vote_clk 748800000
92195  kworker/u16:15-1311  ( 1311) [000] .... 82316.808827: clk_set_rate: l3_clk 748800000
92196 [email protected]   (  619) [002] d..2 82316.808994: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
92197 [email protected]   (  619) [002] d..3 82316.809013: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
92198          <idle>-0     (-----) [001] .n.1 82316.809018: cpu_idle: state=4294967295 cpu_id=1
92199          <idle>-0     (-----) [001] d..2 82316.809029: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
92200  kworker/u16:15-1311  ( 1311) [000] d..2 82316.809093: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=smem_native_cds next_pid=86 next_prio=120
92201 crtc_commit:111-321   (  321) [001] d.s1 82316.809103: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
92202 [email protected]   (  619) [002] ...1 82316.809111: tracing_mark_write: E|619
92203 [email protected]   (  619) [002] ...1 82316.809117: tracing_mark_write: E|619
92204 crtc_commit:111-321   (  321) [001] d.s2 82316.809118: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
92205<...>-86 ( 86) [000] d..2 82316.809140: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92206          <idle>-0     (-----) [000] d..1 82316.809155: cpu_idle: state=0 cpu_id=0
92207 [email protected]   (  619) [002] ...1 82316.809176: tracing_mark_write: E|619
92208          <idle>-0     (-----) [005] ...1 82316.809207: cpu_idle: state=4294967295 cpu_id=5
92209          <idle>-0     (-----) [005] d..1 82316.809211: cpu_idle: state=0 cpu_id=5
92210 [email protected]   (  619) [002] ...1 82316.809218: tracing_mark_write: E|619
92211 [email protected]   (  619) [002] .... 82316.809233: binder_transaction: transaction=1571355 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
92212 [email protected]   (  619) [002] .... 82316.809237: binder_transaction_alloc_buf: transaction=1571355 data_size=576 offsets_size=112
92213 [email protected]   (  619) [002] d..2 82316.809255: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
92214 [email protected]   (  619) [002] d..3 82316.809271: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
92215 [email protected]   (  619) [002] .... 82316.809276: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
92216          <idle>-0     (-----) [000] .n.1 82316.809278: cpu_idle: state=4294967295 cpu_id=0
92217          <idle>-0     (-----) [000] d..2 82316.809288: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
92218  surfaceflinger-8858  ( 8858) [000] .... 82316.809297: binder_transaction_received: transaction=1571355
92219 [email protected]   (  619) [002] d..2 82316.809342: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
92220 neuralnetworks@-13088 (  788) [002] d..2 82316.809397: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92221          <idle>-0     (-----) [002] d..1 82316.809413: cpu_idle: state=0 cpu_id=2
92222  surfaceflinger-8858  ( 8858) [000] d..2 82316.809717: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92223          <idle>-0     (-----) [000] d..1 82316.809735: cpu_idle: state=0 cpu_id=0
92224 crtc_commit:111-321   (  321) [001] d..2 82316.809742: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
92225     ksoftirqd/1-18    (   18) [001] d.s2 82316.809758: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
92226     ksoftirqd/1-18    (   18) [001] d.s3 82316.809769: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
92227     ksoftirqd/1-18    (   18) [001] d.s3 82316.809777: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
92228          <idle>-0     (-----) [000] .n.1 82316.809785: cpu_idle: state=4294967295 cpu_id=0
92229          <idle>-0     (-----) [000] d..2 82316.809797: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
92230     ksoftirqd/1-18    (   18) [001] d..2 82316.809799: 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
92231          <idle>-0     (-----) [001] d..1 82316.809809: cpu_idle: state=0 cpu_id=1
92232  kworker/u16:15-1311  ( 1311) [000] d..2 82316.809854: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92233          <idle>-0     (-----) [000] d..1 82316.809867: cpu_idle: state=0 cpu_id=0
92234          <idle>-0     (-----) [002] d.h4 82316.810433: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92235          <idle>-0     (-----) [005] dnh2 82316.810454: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92236          <idle>-0     (-----) [005] .n.1 82316.810458: cpu_idle: state=4294967295 cpu_id=5
92237          <idle>-0     (-----) [005] d..2 82316.810466: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92238          <idle>-0     (-----) [002] ...1 82316.810473: cpu_idle: state=4294967295 cpu_id=2
92239          <idle>-0     (-----) [002] d..1 82316.810479: cpu_idle: state=0 cpu_id=2
92240<...>-5340 ( 788) [005] d..1 82316.810517: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
92241          <idle>-0     (-----) [002] dnh2 82316.810539: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
92242          <idle>-0     (-----) [002] .n.1 82316.810548: cpu_idle: state=4294967295 cpu_id=2
92243          <idle>-0     (-----) [002] d..2 82316.810559: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
92244<...>-5340 ( 788) [005] ...1 82316.810609: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
92245<...>-5340 ( 788) [005] ...1 82316.810613: tracing_mark_write: E|788
92246 neuralnetworks@-13088 (  788) [002] d..2 82316.810616: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92247          <idle>-0     (-----) [002] d..1 82316.810628: cpu_idle: state=0 cpu_id=2
92248<...>-5340 ( 788) [005] .... 82316.810628: binder_transaction: transaction=1571356 dest_node=1571353 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
92249<...>-5340 ( 788) [005] .... 82316.810631: binder_transaction_alloc_buf: transaction=1571356 data_size=60 offsets_size=0
92250<...>-5340 ( 788) [005] d..4 82316.810634: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
92251<...>-5340 ( 788) [005] d..5 82316.810646: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
92252          <idle>-0     (-----) [004] .n.1 82316.810652: cpu_idle: state=4294967295 cpu_id=4
92253          <idle>-0     (-----) [004] d..2 82316.810661: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
92254           <...>-27571 (-----) [004] .... 82316.810665: binder_transaction_received: transaction=1571356
92255<...>-5340 ( 788) [005] ...1 82316.810668: tracing_mark_write: E|788
92256<...>-5340 ( 788) [005] .... 82316.810674: binder_transaction: transaction=1571357 dest_node=0 dest_proc=27550 dest_thread=27766 reply=1 flags=0x0 code=0x0
92257<...>-5340 ( 788) [005] .... 82316.810676: binder_transaction_alloc_buf: transaction=1571357 data_size=8 offsets_size=0
92258<...>-5340 ( 788) [005] d..2 82316.810678: sched_waking: comm=id.nn.benchmark pid=27766 prio=110 target_cpu=005
92259           <...>-27571 (-----) [004] ...1 82316.810683: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
92260<...>-5340 ( 788) [005] d..3 82316.810685: sched_wakeup: comm=id.nn.benchmark pid=27766 prio=110 target_cpu=005
92261<...>-5340 ( 788) [005] .... 82316.810687: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
92262           <...>-27571 (-----) [004] ...1 82316.810691: tracing_mark_write: E|27550
92263           <...>-27571 (-----) [004] d..2 82316.810718: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92264          <idle>-0     (-----) [004] d..1 82316.810726: cpu_idle: state=0 cpu_id=4
92265<...>-5340 ( 788) [005] d..2 82316.810728: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27766 next_prio=110
92266           <...>-27766 (-----) [005] .... 82316.810738: binder_transaction_received: transaction=1571357
92267           <...>-27766 (-----) [005] ...1 82316.810775: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
92268           <...>-27766 (-----) [005] ...1 82316.810781: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
92269           <...>-27766 (-----) [005] ...1 82316.810806: tracing_mark_write: E|27550
92270           <...>-27766 (-----) [005] ...1 82316.810810: tracing_mark_write: E|27550
92271           <...>-27766 (-----) [005] ...1 82316.810813: tracing_mark_write: E|27550
92272           <...>-27766 (-----) [005] ...1 82316.811003: tracing_mark_write: E|27550
92273           <...>-27766 (-----) [005] d..1 82316.811015: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92274           <...>-27766 (-----) [005] d..2 82316.811031: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92275          <idle>-0     (-----) [004] .n.1 82316.811036: cpu_idle: state=4294967295 cpu_id=4
92276          <idle>-0     (-----) [004] d..2 82316.811043: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
92277           <...>-27550 (-----) [004] d..2 82316.811062: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92278          <idle>-0     (-----) [000] ...1 82316.811068: cpu_idle: state=4294967295 cpu_id=0
92279          <idle>-0     (-----) [004] d..1 82316.811071: cpu_idle: state=0 cpu_id=4
92280          <idle>-0     (-----) [000] d..1 82316.811072: cpu_idle: state=0 cpu_id=0
92281           <...>-27766 (-----) [005] d..1 82316.811121: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92282           <...>-27766 (-----) [005] d..2 82316.811131: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92283          <idle>-0     (-----) [004] .n.1 82316.811136: cpu_idle: state=4294967295 cpu_id=4
92284          <idle>-0     (-----) [004] d..2 82316.811144: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
92285           <...>-27766 (-----) [005] d..2 82316.811170: sched_switch: prev_comm=id.nn.benchmark prev_pid=27766 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
92286           <...>-27550 (-----) [004] ...1 82316.811175: tracing_mark_write: E|27550
92287           <...>-27550 (-----) [004] ...1 82316.811180: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
92288           <...>-27550 (-----) [004] ...1 82316.811185: tracing_mark_write: E|27550
92289           <...>-27550 (-----) [004] ...1 82316.811189: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
92290          <idle>-0     (-----) [005] d..1 82316.811189: cpu_idle: state=0 cpu_id=5
92291           <...>-27550 (-----) [004] ...1 82316.811193: tracing_mark_write: E|27550
92292           <...>-27550 (-----) [004] ...1 82316.811197: tracing_mark_write: E|27550
92293           <...>-27550 (-----) [004] ...1 82316.811310: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
92294           <...>-27550 (-----) [004] ...1 82316.811367: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
92295           <...>-27550 (-----) [004] ...1 82316.811371: tracing_mark_write: E|27550
92296           <...>-27550 (-----) [004] ...1 82316.811376: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
92297           <...>-27550 (-----) [004] ...1 82316.811381: tracing_mark_write: E|27550
92298           <...>-27550 (-----) [004] ...1 82316.811385: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
92299           <...>-27550 (-----) [004] ...1 82316.811390: tracing_mark_write: E|27550
92300           <...>-27550 (-----) [004] ...1 82316.811394: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
92301          <idle>-0     (-----) [005] .n.1 82316.811483: cpu_idle: state=4294967295 cpu_id=5
92302           <...>-27550 (-----) [004] ...1 82316.811484: tracing_mark_write: E|27550
92303           <...>-27550 (-----) [004] ...1 82316.811488: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
92304          <idle>-0     (-----) [005] d..2 82316.811491: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27767 next_prio=110
92305           <...>-27550 (-----) [004] d..2 82316.811504: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92306          <idle>-0     (-----) [004] d..1 82316.811517: cpu_idle: state=0 cpu_id=4
92307           <...>-27767 (-----) [005] ...1 82316.811550: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
92308           <...>-27767 (-----) [005] ...1 82316.811564: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
92309           <...>-27767 (-----) [005] ...1 82316.811568: tracing_mark_write: E|27550
92310           <...>-27767 (-----) [005] .... 82316.811589: binder_transaction: transaction=1571358 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
92311           <...>-27767 (-----) [005] .... 82316.811592: binder_transaction_alloc_buf: transaction=1571358 data_size=48 offsets_size=0
92312           <...>-27767 (-----) [005] ...2 82316.811595: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
92313           <...>-27767 (-----) [005] d..4 82316.811598: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
92314           <...>-27767 (-----) [005] dn.5 82316.811608: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
92315           <...>-27767 (-----) [005] d..2 82316.811615: sched_switch: prev_comm=id.nn.benchmark prev_pid=27767 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
92316<...>-770 ( 770) [005] .... 82316.811624: binder_transaction_received: transaction=1571358
92317<...>-770 ( 770) [005] ...1 82316.811648: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
92318<...>-770 ( 770) [005] d..2 82316.811731: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
92319          <idle>-0     (-----) [000] dnh2 82316.811769: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
92320          <idle>-0     (-----) [001] d.s2 82316.811839: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
92321          <idle>-0     (-----) [003] d.s2 82316.811840: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
92322<...>-770 ( 770) [005] ...1 82316.811853: tracing_mark_write: E|770
92323          <idle>-0     (-----) [000] .n.1 82316.811853: cpu_idle: state=4294967295 cpu_id=0
92324          <idle>-0     (-----) [001] dns3 82316.811857: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
92325          <idle>-0     (-----) [003] dns3 82316.811860: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
92326<...>-770 ( 770) [005] .... 82316.811861: binder_transaction: transaction=1571359 dest_node=0 dest_proc=27550 dest_thread=27767 reply=1 flags=0x0 code=0x0
92327<...>-770 ( 770) [005] .... 82316.811865: binder_transaction_alloc_buf: transaction=1571359 data_size=168 offsets_size=32
92328          <idle>-0     (-----) [000] d..2 82316.811867: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
92329<...>-770 ( 770) [005] .... 82316.811871: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
92330          <idle>-0     (-----) [003] .n.1 82316.811874: cpu_idle: state=4294967295 cpu_id=3
92331          <idle>-0     (-----) [001] .n.1 82316.811876: cpu_idle: state=4294967295 cpu_id=1
92332          <idle>-0     (-----) [001] d..2 82316.811885: 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
92333          <idle>-0     (-----) [003] d..2 82316.811886: 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
92334<...>-770 ( 770) [005] d..2 82316.811906: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27767 next_prio=110
92335     rcu_preempt-7     (    7) [001] d..2 82316.811914: 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
92336<...>-8 ( 8) [003] d..2 82316.811915: 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
92337           <...>-27767 (-----) [005] .... 82316.811917: binder_transaction_received: transaction=1571359
92338          <idle>-0     (-----) [002] ...1 82316.811924: cpu_idle: state=4294967295 cpu_id=2
92339          <idle>-0     (-----) [001] d..1 82316.811925: cpu_idle: state=0 cpu_id=1
92340          <idle>-0     (-----) [003] d..1 82316.811927: cpu_idle: state=0 cpu_id=3
92341          <idle>-0     (-----) [002] d..1 82316.811928: cpu_idle: state=0 cpu_id=2
92342<...>-581 ( 571) [000] d..2 82316.811953: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92343          <idle>-0     (-----) [000] d..1 82316.811969: cpu_idle: state=0 cpu_id=0
92344           <...>-27767 (-----) [005] ...1 82316.811988: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
92345           <...>-27767 (-----) [005] ...1 82316.811993: tracing_mark_write: E|27550
92346           <...>-27767 (-----) [005] .... 82316.812007: binder_transaction: transaction=1571360 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
92347           <...>-27767 (-----) [005] .... 82316.812009: binder_transaction_alloc_buf: transaction=1571360 data_size=48 offsets_size=0
92348           <...>-27767 (-----) [005] ...2 82316.812012: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
92349           <...>-27767 (-----) [005] d..4 82316.812014: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
92350           <...>-27767 (-----) [005] dn.5 82316.812024: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
92351           <...>-27767 (-----) [005] d..2 82316.812030: sched_switch: prev_comm=id.nn.benchmark prev_pid=27767 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
92352<...>-770 ( 770) [005] .... 82316.812038: binder_transaction_received: transaction=1571360
92353<...>-770 ( 770) [005] ...1 82316.812053: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
92354<...>-770 ( 770) [005] d..2 82316.812111: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
92355          <idle>-0     (-----) [000] dnh2 82316.812136: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
92356          <idle>-0     (-----) [000] .n.1 82316.812143: cpu_idle: state=4294967295 cpu_id=0
92357<...>-770 ( 770) [005] ...1 82316.812144: tracing_mark_write: E|770
92358<...>-770 ( 770) [005] .... 82316.812151: binder_transaction: transaction=1571361 dest_node=0 dest_proc=27550 dest_thread=27767 reply=1 flags=0x0 code=0x0
92359          <idle>-0     (-----) [000] d..2 82316.812153: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
92360<...>-770 ( 770) [005] .... 82316.812154: binder_transaction_alloc_buf: transaction=1571361 data_size=168 offsets_size=32
92361<...>-770 ( 770) [005] .... 82316.812159: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
92362<...>-770 ( 770) [005] d..2 82316.812193: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27767 next_prio=110
92363           <...>-27767 (-----) [005] .... 82316.812203: binder_transaction_received: transaction=1571361
92364<...>-581 ( 571) [000] d..2 82316.812204: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92365          <idle>-0     (-----) [000] d..1 82316.812217: cpu_idle: state=0 cpu_id=0
92366           <...>-27767 (-----) [005] ...1 82316.812477: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
92367           <...>-27767 (-----) [005] ...1 82316.812486: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
92368           <...>-27767 (-----) [005] ...1 82316.812489: tracing_mark_write: E|27550
92369           <...>-27767 (-----) [005] .... 82316.812553: binder_transaction: transaction=1571362 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
92370           <...>-27767 (-----) [005] .... 82316.812556: binder_transaction_alloc_buf: transaction=1571362 data_size=556 offsets_size=104
92371           <...>-27767 (-----) [005] ...2 82316.812571: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
92372           <...>-27767 (-----) [005] d..4 82316.812574: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92373           <...>-27767 (-----) [005] dn.5 82316.812585: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92374           <...>-27767 (-----) [005] d..2 82316.812592: sched_switch: prev_comm=id.nn.benchmark prev_pid=27767 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92375<...>-5340 ( 788) [005] .... 82316.812602: binder_transaction_received: transaction=1571362
92376<...>-5340 ( 788) [005] ...1 82316.812646: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
92377<...>-5340 ( 788) [005] d..2 82316.812691: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92378<...>-5340 ( 788) [005] d..2 82316.812716: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27767 next_prio=110
92379          <idle>-0     (-----) [000] dnh2 82316.812719: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92380          <idle>-0     (-----) [000] .n.1 82316.812726: cpu_idle: state=4294967295 cpu_id=0
92381          <idle>-0     (-----) [000] d..2 82316.812735: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
92382           <...>-27767 (-----) [005] d..2 82316.812739: sched_switch: prev_comm=id.nn.benchmark prev_pid=27767 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
92383          <idle>-0     (-----) [005] d..1 82316.812756: cpu_idle: state=0 cpu_id=5
92384<...>-87 ( 87) [000] d..2 82316.812774: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92385          <idle>-0     (-----) [002] d.h4 82316.812786: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
92386          <idle>-0     (-----) [000] d..1 82316.812786: cpu_idle: state=0 cpu_id=0
92387          <idle>-0     (-----) [002] dnh5 82316.812818: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92388          <idle>-0     (-----) [002] .n.1 82316.812827: cpu_idle: state=4294967295 cpu_id=2
92389          <idle>-0     (-----) [002] d..2 82316.812838: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
92390<...>-86 ( 86) [002] d.h4 82316.812871: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92391          <idle>-0     (-----) [005] dnh2 82316.812891: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92392          <idle>-0     (-----) [005] .n.1 82316.812896: cpu_idle: state=4294967295 cpu_id=5
92393          <idle>-0     (-----) [005] d..2 82316.812904: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92394<...>-86 ( 86) [002] d..2 82316.812921: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92395          <idle>-0     (-----) [002] d..1 82316.812933: cpu_idle: state=0 cpu_id=2
92396<...>-5340 ( 788) [005] d..1 82316.812953: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
92397          <idle>-0     (-----) [000] dnh2 82316.812990: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
92398          <idle>-0     (-----) [000] .n.1 82316.812997: cpu_idle: state=4294967295 cpu_id=0
92399          <idle>-0     (-----) [000] d..2 82316.813006: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
92400 neuralnetworks@-13088 (  788) [000] d..2 82316.813056: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92401          <idle>-0     (-----) [000] d..1 82316.813069: cpu_idle: state=0 cpu_id=0
92402<...>-5340 ( 788) [005] d..2 82316.813111: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92403          <idle>-0     (-----) [000] dnh2 82316.813132: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92404<...>-5340 ( 788) [005] d..2 82316.813136: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
92405          <idle>-0     (-----) [000] .n.1 82316.813138: cpu_idle: state=4294967295 cpu_id=0
92406          <idle>-0     (-----) [000] d..2 82316.813148: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
92407          <idle>-0     (-----) [005] d..1 82316.813149: cpu_idle: state=0 cpu_id=5
92408<...>-87 ( 87) [000] d..2 82316.813184: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92409          <idle>-0     (-----) [002] d.h4 82316.813184: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92410          <idle>-0     (-----) [002] dnh5 82316.813195: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92411          <idle>-0     (-----) [000] d..1 82316.813195: cpu_idle: state=0 cpu_id=0
92412          <idle>-0     (-----) [002] .n.1 82316.813202: cpu_idle: state=4294967295 cpu_id=2
92413          <idle>-0     (-----) [002] d..2 82316.813213: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
92414<...>-86 ( 86) [002] d..2 82316.813243: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92415          <idle>-0     (-----) [002] d..1 82316.813253: cpu_idle: state=0 cpu_id=2
92416          <idle>-0     (-----) [005] ...1 82316.813530: cpu_idle: state=4294967295 cpu_id=5
92417          <idle>-0     (-----) [005] d..1 82316.813534: cpu_idle: state=0 cpu_id=5
92418          <idle>-0     (-----) [000] ...1 82316.814432: cpu_idle: state=4294967295 cpu_id=0
92419          <idle>-0     (-----) [000] d..1 82316.814437: cpu_idle: state=0 cpu_id=0
92420          <idle>-0     (-----) [002] d.h4 82316.814920: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92421          <idle>-0     (-----) [005] dnh2 82316.814939: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92422          <idle>-0     (-----) [005] .n.1 82316.814943: cpu_idle: state=4294967295 cpu_id=5
92423          <idle>-0     (-----) [005] d..2 82316.814951: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92424          <idle>-0     (-----) [002] ...1 82316.814955: cpu_idle: state=4294967295 cpu_id=2
92425          <idle>-0     (-----) [002] d..1 82316.814961: cpu_idle: state=0 cpu_id=2
92426<...>-5340 ( 788) [005] d..1 82316.814997: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
92427          <idle>-0     (-----) [000] d.h5 82316.815010: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
92428          <idle>-0     (-----) [000] d.h6 82316.815034: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
92429          <idle>-0     (-----) [000] d.h5 82316.815039: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
92430          <idle>-0     (-----) [003] .n.1 82316.815044: cpu_idle: state=4294967295 cpu_id=3
92431          <idle>-0     (-----) [003] d..2 82316.815075: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
92432          <idle>-0     (-----) [000] d.h6 82316.815076: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
92433          <idle>-0     (-----) [001] .n.1 82316.815083: cpu_idle: state=4294967295 cpu_id=1
92434<...>-5340 ( 788) [005] ...1 82316.815083: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
92435<...>-5340 ( 788) [005] ...1 82316.815087: tracing_mark_write: E|788
92436          <idle>-0     (-----) [001] d..2 82316.815092: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
92437          <idle>-0     (-----) [000] dnh2 82316.815099: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
92438<...>-5340 ( 788) [005] .... 82316.815102: binder_transaction: transaction=1571365 dest_node=1571363 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
92439          <idle>-0     (-----) [000] .n.1 82316.815103: cpu_idle: state=4294967295 cpu_id=0
92440  crtc_event:111-322   (  322) [003] d..2 82316.815108: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92441          <idle>-0     (-----) [000] d..2 82316.815120: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
92442<...>-5340 ( 788) [005] .... 82316.815133: binder_transaction_alloc_buf: transaction=1571365 data_size=60 offsets_size=0
92443<...>-5340 ( 788) [005] d..4 82316.815137: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
92444          <idle>-0     (-----) [003] d..1 82316.815147: cpu_idle: state=0 cpu_id=3
92445<...>-5340 ( 788) [005] d..5 82316.815149: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
92446          <idle>-0     (-----) [004] .n.1 82316.815154: cpu_idle: state=4294967295 cpu_id=4
92447 neuralnetworks@-13088 (  788) [000] d..2 82316.815159: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92448          <idle>-0     (-----) [004] d..2 82316.815163: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
92449           <...>-27571 (-----) [004] .... 82316.815167: binder_transaction_received: transaction=1571365
92450<...>-5340 ( 788) [005] ...1 82316.815172: tracing_mark_write: E|788
92451          <idle>-0     (-----) [000] d..1 82316.815172: cpu_idle: state=0 cpu_id=0
92452<...>-5340 ( 788) [005] .... 82316.815178: binder_transaction: transaction=1571366 dest_node=0 dest_proc=27550 dest_thread=27767 reply=1 flags=0x0 code=0x0
92453<...>-5340 ( 788) [005] .... 82316.815180: binder_transaction_alloc_buf: transaction=1571366 data_size=8 offsets_size=0
92454<...>-5340 ( 788) [005] d..2 82316.815182: sched_waking: comm=id.nn.benchmark pid=27767 prio=110 target_cpu=005
92455           <...>-27571 (-----) [004] ...1 82316.815184: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
92456<...>-5340 ( 788) [005] d..3 82316.815188: sched_wakeup: comm=id.nn.benchmark pid=27767 prio=110 target_cpu=005
92457<...>-5340 ( 788) [005] .... 82316.815190: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
92458           <...>-27571 (-----) [004] ...1 82316.815190: tracing_mark_write: E|27550
92459           <...>-27571 (-----) [004] d..2 82316.815218: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92460          <idle>-0     (-----) [004] d..1 82316.815225: cpu_idle: state=0 cpu_id=4
92461<...>-5340 ( 788) [005] d..2 82316.815230: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27767 next_prio=110
92462           <...>-27767 (-----) [005] .... 82316.815239: binder_transaction_received: transaction=1571366
92463 crtc_commit:111-321   (  321) [001] d..2 82316.815259: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
92464          <idle>-0     (-----) [001] d..1 82316.815268: cpu_idle: state=0 cpu_id=1
92465           <...>-27767 (-----) [005] ...1 82316.815273: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
92466           <...>-27767 (-----) [005] ...1 82316.815279: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
92467           <...>-27767 (-----) [005] ...1 82316.815304: tracing_mark_write: E|27550
92468           <...>-27767 (-----) [005] ...1 82316.815308: tracing_mark_write: E|27550
92469           <...>-27767 (-----) [005] ...1 82316.815312: tracing_mark_write: E|27550
92470           <...>-27767 (-----) [005] ...1 82316.815502: tracing_mark_write: E|27550
92471           <...>-27767 (-----) [005] d..1 82316.815514: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92472           <...>-27767 (-----) [005] d..2 82316.815530: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92473          <idle>-0     (-----) [004] .n.1 82316.815535: cpu_idle: state=4294967295 cpu_id=4
92474          <idle>-0     (-----) [004] d..2 82316.815542: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
92475           <...>-27550 (-----) [004] d..2 82316.815561: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92476          <idle>-0     (-----) [004] d..1 82316.815570: cpu_idle: state=0 cpu_id=4
92477           <...>-27767 (-----) [005] d..1 82316.815615: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92478           <...>-27767 (-----) [005] d..2 82316.815624: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92479          <idle>-0     (-----) [004] .n.1 82316.815630: cpu_idle: state=4294967295 cpu_id=4
92480          <idle>-0     (-----) [004] d..2 82316.815637: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
92481           <...>-27767 (-----) [005] d..2 82316.815661: sched_switch: prev_comm=id.nn.benchmark prev_pid=27767 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
92482           <...>-27550 (-----) [004] ...1 82316.815668: tracing_mark_write: E|27550
92483           <...>-27550 (-----) [004] ...1 82316.815673: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
92484           <...>-27550 (-----) [004] ...1 82316.815678: tracing_mark_write: E|27550
92485          <idle>-0     (-----) [005] d..1 82316.815680: cpu_idle: state=0 cpu_id=5
92486           <...>-27550 (-----) [004] ...1 82316.815682: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
92487           <...>-27550 (-----) [004] ...1 82316.815686: tracing_mark_write: E|27550
92488           <...>-27550 (-----) [004] ...1 82316.815691: tracing_mark_write: E|27550
92489           <...>-27550 (-----) [004] ...1 82316.815803: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
92490           <...>-27550 (-----) [004] ...1 82316.815860: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
92491           <...>-27550 (-----) [004] ...1 82316.815865: tracing_mark_write: E|27550
92492           <...>-27550 (-----) [004] ...1 82316.815869: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
92493           <...>-27550 (-----) [004] ...1 82316.815874: tracing_mark_write: E|27550
92494           <...>-27550 (-----) [004] ...1 82316.815878: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
92495           <...>-27550 (-----) [004] ...1 82316.815882: tracing_mark_write: E|27550
92496           <...>-27550 (-----) [004] ...1 82316.815885: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
92497          <idle>-0     (-----) [005] .n.1 82316.815977: cpu_idle: state=4294967295 cpu_id=5
92498           <...>-27550 (-----) [004] ...1 82316.815977: tracing_mark_write: E|27550
92499           <...>-27550 (-----) [004] ...1 82316.815981: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
92500          <idle>-0     (-----) [005] d..2 82316.815986: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27768 next_prio=110
92501           <...>-27550 (-----) [004] d..2 82316.815997: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92502          <idle>-0     (-----) [004] d..1 82316.816010: cpu_idle: state=0 cpu_id=4
92503           <...>-27768 (-----) [005] ...1 82316.816043: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
92504           <...>-27768 (-----) [005] ...1 82316.816056: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
92505           <...>-27768 (-----) [005] ...1 82316.816061: tracing_mark_write: E|27550
92506           <...>-27768 (-----) [005] .... 82316.816080: binder_transaction: transaction=1571367 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
92507           <...>-27768 (-----) [005] .... 82316.816083: binder_transaction_alloc_buf: transaction=1571367 data_size=48 offsets_size=0
92508           <...>-27768 (-----) [005] ...2 82316.816086: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
92509           <...>-27768 (-----) [005] d..4 82316.816089: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
92510           <...>-27768 (-----) [005] dn.5 82316.816099: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
92511           <...>-27768 (-----) [005] d..2 82316.816106: sched_switch: prev_comm=id.nn.benchmark prev_pid=27768 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
92512<...>-770 ( 770) [005] .... 82316.816116: binder_transaction_received: transaction=1571367
92513<...>-770 ( 770) [005] ...1 82316.816137: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
92514<...>-770 ( 770) [005] d..2 82316.816205: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
92515          <idle>-0     (-----) [000] dnh2 82316.816231: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
92516          <idle>-0     (-----) [000] .n.1 82316.816237: cpu_idle: state=4294967295 cpu_id=0
92517<...>-770 ( 770) [005] ...1 82316.816243: tracing_mark_write: E|770
92518          <idle>-0     (-----) [000] d..2 82316.816247: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
92519<...>-770 ( 770) [005] .... 82316.816251: binder_transaction: transaction=1571368 dest_node=0 dest_proc=27550 dest_thread=27768 reply=1 flags=0x0 code=0x0
92520<...>-770 ( 770) [005] .... 82316.816254: binder_transaction_alloc_buf: transaction=1571368 data_size=168 offsets_size=32
92521<...>-770 ( 770) [005] .... 82316.816261: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
92522<...>-770 ( 770) [005] d..2 82316.816295: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27768 next_prio=110
92523           <...>-27768 (-----) [005] .... 82316.816306: binder_transaction_received: transaction=1571368
92524<...>-581 ( 571) [000] d..2 82316.816315: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92525          <idle>-0     (-----) [000] d..1 82316.816330: cpu_idle: state=0 cpu_id=0
92526           <...>-27768 (-----) [005] ...1 82316.816371: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
92527           <...>-27768 (-----) [005] ...1 82316.816377: tracing_mark_write: E|27550
92528           <...>-27768 (-----) [005] .... 82316.816393: binder_transaction: transaction=1571369 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
92529           <...>-27768 (-----) [005] .... 82316.816396: binder_transaction_alloc_buf: transaction=1571369 data_size=48 offsets_size=0
92530           <...>-27768 (-----) [005] ...2 82316.816398: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
92531           <...>-27768 (-----) [005] d..4 82316.816400: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
92532           <...>-27768 (-----) [005] dn.5 82316.816410: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
92533           <...>-27768 (-----) [005] d..2 82316.816416: sched_switch: prev_comm=id.nn.benchmark prev_pid=27768 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
92534<...>-770 ( 770) [005] .... 82316.816425: binder_transaction_received: transaction=1571369
92535<...>-770 ( 770) [005] ...1 82316.816440: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
92536<...>-770 ( 770) [005] d..2 82316.816494: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
92537          <idle>-0     (-----) [000] dnh2 82316.816517: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
92538          <idle>-0     (-----) [000] .n.1 82316.816524: cpu_idle: state=4294967295 cpu_id=0
92539<...>-770 ( 770) [005] ...1 82316.816527: tracing_mark_write: E|770
92540          <idle>-0     (-----) [000] d..2 82316.816533: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
92541<...>-770 ( 770) [005] .... 82316.816535: binder_transaction: transaction=1571370 dest_node=0 dest_proc=27550 dest_thread=27768 reply=1 flags=0x0 code=0x0
92542<...>-770 ( 770) [005] .... 82316.816537: binder_transaction_alloc_buf: transaction=1571370 data_size=168 offsets_size=32
92543<...>-770 ( 770) [005] .... 82316.816543: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
92544<...>-770 ( 770) [005] d..2 82316.816576: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27768 next_prio=110
92545<...>-581 ( 571) [000] d..2 82316.816584: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92546           <...>-27768 (-----) [005] .... 82316.816585: binder_transaction_received: transaction=1571370
92547          <idle>-0     (-----) [000] d..1 82316.816598: cpu_idle: state=0 cpu_id=0
92548           <...>-27768 (-----) [005] ...1 82316.816854: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
92549           <...>-27768 (-----) [005] ...1 82316.816864: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
92550           <...>-27768 (-----) [005] ...1 82316.816868: tracing_mark_write: E|27550
92551           <...>-27768 (-----) [005] .... 82316.816926: binder_transaction: transaction=1571371 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
92552           <...>-27768 (-----) [005] .... 82316.816929: binder_transaction_alloc_buf: transaction=1571371 data_size=556 offsets_size=104
92553           <...>-27768 (-----) [005] ...2 82316.816942: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
92554           <...>-27768 (-----) [005] d..4 82316.816945: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92555           <...>-27768 (-----) [005] dn.5 82316.816956: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92556           <...>-27768 (-----) [005] d..2 82316.816963: sched_switch: prev_comm=id.nn.benchmark prev_pid=27768 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92557<...>-5340 ( 788) [005] .... 82316.816972: binder_transaction_received: transaction=1571371
92558<...>-5340 ( 788) [005] ...1 82316.817014: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
92559<...>-5340 ( 788) [005] d..2 82316.817055: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92560<...>-5340 ( 788) [005] d..2 82316.817078: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27768 next_prio=110
92561          <idle>-0     (-----) [000] dnh2 82316.817082: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92562          <idle>-0     (-----) [000] .n.1 82316.817089: cpu_idle: state=4294967295 cpu_id=0
92563          <idle>-0     (-----) [000] d..2 82316.817098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
92564           <...>-27768 (-----) [005] d..2 82316.817101: sched_switch: prev_comm=id.nn.benchmark prev_pid=27768 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
92565          <idle>-0     (-----) [005] d..1 82316.817117: cpu_idle: state=0 cpu_id=5
92566<...>-87 ( 87) [000] d..2 82316.817134: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92567          <idle>-0     (-----) [002] d.h4 82316.817145: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92568          <idle>-0     (-----) [000] d..1 82316.817146: cpu_idle: state=0 cpu_id=0
92569          <idle>-0     (-----) [002] dnh5 82316.817159: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92570          <idle>-0     (-----) [002] .n.1 82316.817167: cpu_idle: state=4294967295 cpu_id=2
92571          <idle>-0     (-----) [002] d..2 82316.817178: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
92572<...>-86 ( 86) [002] d..2 82316.817207: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92573          <idle>-0     (-----) [002] d..1 82316.817217: cpu_idle: state=0 cpu_id=2
92574          <idle>-0     (-----) [002] d.h4 82316.817240: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92575          <idle>-0     (-----) [005] dnh2 82316.817260: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92576          <idle>-0     (-----) [005] .n.1 82316.817264: cpu_idle: state=4294967295 cpu_id=5
92577          <idle>-0     (-----) [005] d..2 82316.817272: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92578          <idle>-0     (-----) [002] ...1 82316.817275: cpu_idle: state=4294967295 cpu_id=2
92579          <idle>-0     (-----) [002] d..1 82316.817281: cpu_idle: state=0 cpu_id=2
92580<...>-5340 ( 788) [005] d..1 82316.817331: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
92581          <idle>-0     (-----) [000] d.h5 82316.817355: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
92582          <idle>-0     (-----) [000] d.h6 82316.817372: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
92583          <idle>-0     (-----) [001] .n.1 82316.817379: cpu_idle: state=4294967295 cpu_id=1
92584          <idle>-0     (-----) [001] d..2 82316.817386: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
92585          <idle>-0     (-----) [000] dnh2 82316.817393: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
92586          <idle>-0     (-----) [000] .n.1 82316.817399: cpu_idle: state=4294967295 cpu_id=0
92587          <idle>-0     (-----) [000] d..2 82316.817409: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
92588 neuralnetworks@-13088 (  788) [000] d..2 82316.817450: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92589 crtc_commit:111-321   (  321) [001] d..2 82316.817452: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92590          <idle>-0     (-----) [001] d..1 82316.817459: cpu_idle: state=0 cpu_id=1
92591          <idle>-0     (-----) [000] d..1 82316.817464: cpu_idle: state=0 cpu_id=0
92592<...>-5340 ( 788) [005] d..2 82316.817473: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92593          <idle>-0     (-----) [000] dnh2 82316.817493: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92594<...>-5340 ( 788) [005] d..2 82316.817497: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
92595          <idle>-0     (-----) [000] .n.1 82316.817500: cpu_idle: state=4294967295 cpu_id=0
92596          <idle>-0     (-----) [000] d..2 82316.817509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
92597          <idle>-0     (-----) [005] d..1 82316.817511: cpu_idle: state=0 cpu_id=5
92598<...>-87 ( 87) [000] d..2 82316.817544: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92599          <idle>-0     (-----) [002] d.h4 82316.817545: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92600          <idle>-0     (-----) [002] dnh5 82316.817555: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92601          <idle>-0     (-----) [000] d..1 82316.817556: cpu_idle: state=0 cpu_id=0
92602          <idle>-0     (-----) [002] .n.1 82316.817562: cpu_idle: state=4294967295 cpu_id=2
92603          <idle>-0     (-----) [002] d..2 82316.817572: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
92604<...>-86 ( 86) [002] d..2 82316.817601: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92605          <idle>-0     (-----) [002] d..1 82316.817611: cpu_idle: state=0 cpu_id=2
92606          <idle>-0     (-----) [000] d.h5 82316.817640: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
92607          <idle>-0     (-----) [000] d.h6 82316.817656: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
92608          <idle>-0     (-----) [003] .n.1 82316.817661: cpu_idle: state=4294967295 cpu_id=3
92609          <idle>-0     (-----) [003] d..2 82316.817669: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
92610          <idle>-0     (-----) [000] ...1 82316.817674: cpu_idle: state=4294967295 cpu_id=0
92611          <idle>-0     (-----) [000] d..1 82316.817679: cpu_idle: state=0 cpu_id=0
92612  crtc_event:111-322   (  322) [003] d..2 82316.817691: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92613          <idle>-0     (-----) [003] d..1 82316.817697: cpu_idle: state=0 cpu_id=3
92614          <idle>-0     (-----) [005] ...1 82316.817833: cpu_idle: state=4294967295 cpu_id=5
92615          <idle>-0     (-----) [005] d..1 82316.817836: cpu_idle: state=0 cpu_id=5
92616          <idle>-0     (-----) [003] ...1 82316.818458: cpu_idle: state=4294967295 cpu_id=3
92617          <idle>-0     (-----) [003] d..1 82316.818462: cpu_idle: state=0 cpu_id=3
92618          <idle>-0     (-----) [001] d.s3 82316.818469: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
92619          <idle>-0     (-----) [001] d.s4 82316.818486: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
92620          <idle>-0     (-----) [001] d.s2 82316.818489: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
92621          <idle>-0     (-----) [003] .n.1 82316.818491: cpu_idle: state=4294967295 cpu_id=3
92622          <idle>-0     (-----) [003] d..2 82316.818498: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
92623          <idle>-0     (-----) [001] dns3 82316.818504: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
92624          <idle>-0     (-----) [001] dns3 82316.818509: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
92625  crtc_event:111-322   (  322) [003] d..2 82316.818530: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92626          <idle>-0     (-----) [003] d..1 82316.818536: cpu_idle: state=0 cpu_id=3
92627          <idle>-0     (-----) [001] dns4 82316.818548: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
92628          <idle>-0     (-----) [003] .n.1 82316.818551: cpu_idle: state=4294967295 cpu_id=3
92629          <idle>-0     (-----) [003] d..2 82316.818559: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
92630          <idle>-0     (-----) [001] .n.1 82316.818562: cpu_idle: state=4294967295 cpu_id=1
92631          <idle>-0     (-----) [001] d..2 82316.818571: 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
92632     rcu_preempt-7     (    7) [001] d..2 82316.818586: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
92633     rcu_preempt-7     (    7) [001] d..3 82316.818621: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
92634     rcu_preempt-7     (    7) [001] d..2 82316.818645: 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
92635         rcuop/4-45    (   45) [001] d..2 82316.818650: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
92636  kworker/u16:15-1311  ( 1311) [003] .... 82316.818655: clk_set_rate: l3_cluster0_vote_clk 300000000
92637         rcuop/4-45    (   45) [001] d..3 82316.818681: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
92638         rcuop/4-45    (   45) [001] d..2 82316.818691: 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
92639         rcuop/5-53    (   53) [001] d..2 82316.818801: 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
92640          <idle>-0     (-----) [001] d..1 82316.818812: cpu_idle: state=0 cpu_id=1
92641  kworker/u16:15-1311  ( 1311) [003] d..2 82316.818829: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
92642          <idle>-0     (-----) [003] d..1 82316.818839: cpu_idle: state=0 cpu_id=3
92643          <idle>-0     (-----) [001] d.s3 82316.818862: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
92644          <idle>-0     (-----) [001] d.s4 82316.818873: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
92645          <idle>-0     (-----) [001] d.s4 82316.818881: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
92646          <idle>-0     (-----) [003] .n.1 82316.818886: cpu_idle: state=4294967295 cpu_id=3
92647          <idle>-0     (-----) [001] ...1 82316.818891: cpu_idle: state=4294967295 cpu_id=1
92648          <idle>-0     (-----) [003] d..2 82316.818895: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
92649          <idle>-0     (-----) [001] d..1 82316.818896: cpu_idle: state=0 cpu_id=1
92650  kworker/u16:15-1311  ( 1311) [003] d..2 82316.819048: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
92651          <idle>-0     (-----) [003] d..1 82316.819057: cpu_idle: state=0 cpu_id=3
92652          <idle>-0     (-----) [001] d.s3 82316.819082: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
92653          <idle>-0     (-----) [001] d.s4 82316.819090: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
92654          <idle>-0     (-----) [001] d.s4 82316.819097: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
92655          <idle>-0     (-----) [003] .n.1 82316.819103: cpu_idle: state=4294967295 cpu_id=3
92656          <idle>-0     (-----) [001] ...1 82316.819106: cpu_idle: state=4294967295 cpu_id=1
92657          <idle>-0     (-----) [001] d..1 82316.819111: cpu_idle: state=0 cpu_id=1
92658          <idle>-0     (-----) [003] d..2 82316.819112: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
92659  kworker/u16:15-1311  ( 1311) [003] .... 82316.819138: clk_set_rate: l3_cluster1_vote_clk 576000000
92660  kworker/u16:15-1311  ( 1311) [003] .... 82316.819143: clk_set_rate: l3_clk 576000000
92661  kworker/u16:15-1311  ( 1311) [003] d..2 82316.819193: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92662          <idle>-0     (-----) [003] d..1 82316.819204: cpu_idle: state=0 cpu_id=3
92663          <idle>-0     (-----) [002] d.h4 82316.819208: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92664          <idle>-0     (-----) [005] dnh2 82316.819228: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92665          <idle>-0     (-----) [005] .n.1 82316.819232: cpu_idle: state=4294967295 cpu_id=5
92666          <idle>-0     (-----) [005] d..2 82316.819241: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92667          <idle>-0     (-----) [002] ...1 82316.819246: cpu_idle: state=4294967295 cpu_id=2
92668          <idle>-0     (-----) [002] d..1 82316.819252: cpu_idle: state=0 cpu_id=2
92669<...>-5340 ( 788) [005] d..1 82316.819293: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
92670          <idle>-0     (-----) [000] dnh2 82316.819313: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
92671          <idle>-0     (-----) [000] .n.1 82316.819322: cpu_idle: state=4294967295 cpu_id=0
92672          <idle>-0     (-----) [000] d..2 82316.819333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
92673<...>-5340 ( 788) [005] ...1 82316.819384: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
92674<...>-5340 ( 788) [005] ...1 82316.819388: tracing_mark_write: E|788
92675 neuralnetworks@-13088 (  788) [000] d..2 82316.819391: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92676<...>-5340 ( 788) [005] .... 82316.819404: binder_transaction: transaction=1571374 dest_node=1571372 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
92677          <idle>-0     (-----) [000] d..1 82316.819404: cpu_idle: state=0 cpu_id=0
92678<...>-5340 ( 788) [005] .... 82316.819406: binder_transaction_alloc_buf: transaction=1571374 data_size=60 offsets_size=0
92679<...>-5340 ( 788) [005] d..4 82316.819410: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
92680          <idle>-0     (-----) [001] d.h2 82316.819418: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
92681<...>-5340 ( 788) [005] d..5 82316.819422: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
92682          <idle>-0     (-----) [004] .n.1 82316.819428: cpu_idle: state=4294967295 cpu_id=4
92683          <idle>-0     (-----) [001] dnh3 82316.819432: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
92684          <idle>-0     (-----) [004] d..2 82316.819437: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
92685          <idle>-0     (-----) [001] .n.1 82316.819439: cpu_idle: state=4294967295 cpu_id=1
92686           <...>-27571 (-----) [004] .... 82316.819441: binder_transaction_received: transaction=1571374
92687<...>-5340 ( 788) [005] ...1 82316.819445: tracing_mark_write: E|788
92688          <idle>-0     (-----) [001] d..2 82316.819449: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
92689<...>-5340 ( 788) [005] .... 82316.819451: binder_transaction: transaction=1571375 dest_node=0 dest_proc=27550 dest_thread=27768 reply=1 flags=0x0 code=0x0
92690<...>-5340 ( 788) [005] .... 82316.819453: binder_transaction_alloc_buf: transaction=1571375 data_size=8 offsets_size=0
92691<...>-5340 ( 788) [005] d..2 82316.819455: sched_waking: comm=id.nn.benchmark pid=27768 prio=110 target_cpu=005
92692           <...>-27571 (-----) [004] ...1 82316.819459: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
92693<...>-5340 ( 788) [005] d..3 82316.819462: sched_wakeup: comm=id.nn.benchmark pid=27768 prio=110 target_cpu=005
92694<...>-5340 ( 788) [005] .... 82316.819464: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
92695           <...>-27571 (-----) [004] ...1 82316.819465: tracing_mark_write: E|27550
92696        DispSync-8879  ( 8858) [001] d..1 82316.819469: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
92697        DispSync-8879  ( 8858) [001] d..2 82316.819483: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
92698          <idle>-0     (-----) [003] .n.1 82316.819489: cpu_idle: state=4294967295 cpu_id=3
92699           <...>-27571 (-----) [004] d..2 82316.819494: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92700          <idle>-0     (-----) [003] d..2 82316.819497: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
92701          <idle>-0     (-----) [004] d..1 82316.819501: cpu_idle: state=0 cpu_id=4
92702<...>-5340 ( 788) [005] d..2 82316.819504: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27768 next_prio=110
92703           <...>-27768 (-----) [005] .... 82316.819514: binder_transaction_received: transaction=1571375
92704        DispSync-8879  ( 8858) [001] d..2 82316.819515: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92705          <idle>-0     (-----) [001] d..1 82316.819525: cpu_idle: state=0 cpu_id=1
92706           <...>-27768 (-----) [005] ...1 82316.819550: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
92707           <...>-27768 (-----) [005] ...1 82316.819556: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
92708  appEventThread-8881  ( 8858) [003] d..3 82316.819557: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
92709  appEventThread-8881  ( 8858) [003] d..4 82316.819580: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
92710           <...>-27768 (-----) [005] ...1 82316.819582: tracing_mark_write: E|27550
92711           <...>-27768 (-----) [005] ...1 82316.819585: tracing_mark_write: E|27550
92712          <idle>-0     (-----) [000] .n.1 82316.819586: cpu_idle: state=4294967295 cpu_id=0
92713           <...>-27768 (-----) [005] ...1 82316.819589: tracing_mark_write: E|27550
92714          <idle>-0     (-----) [000] d..2 82316.819597: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
92715  appEventThread-8881  ( 8858) [003] d..2 82316.819624: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92716          <idle>-0     (-----) [003] d..1 82316.819634: cpu_idle: state=0 cpu_id=3
92717           <...>-27768 (-----) [005] ...1 82316.819771: tracing_mark_write: E|27550
92718           <...>-27768 (-----) [005] d..1 82316.819784: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92719           <...>-27768 (-----) [005] d..2 82316.819800: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92720          <idle>-0     (-----) [004] .n.1 82316.819805: cpu_idle: state=4294967295 cpu_id=4
92721          <idle>-0     (-----) [004] d..2 82316.819811: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
92722           <...>-27550 (-----) [004] d..2 82316.819830: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92723          <idle>-0     (-----) [004] d..1 82316.819840: cpu_idle: state=0 cpu_id=4
92724           <...>-27768 (-----) [005] d..1 82316.819888: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92725           <...>-27768 (-----) [005] d..2 82316.819897: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92726          <idle>-0     (-----) [004] .n.1 82316.819902: cpu_idle: state=4294967295 cpu_id=4
92727          <idle>-0     (-----) [004] d..2 82316.819910: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
92728           <...>-27768 (-----) [005] d..2 82316.819935: sched_switch: prev_comm=id.nn.benchmark prev_pid=27768 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
92729           <...>-27550 (-----) [004] ...1 82316.819943: tracing_mark_write: E|27550
92730           <...>-27550 (-----) [004] ...1 82316.819947: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
92731           <...>-27550 (-----) [004] ...1 82316.819953: tracing_mark_write: E|27550
92732<...>-9105 ( 9105) [000] .... 82316.819955: binder_transaction: transaction=1571376 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
92733          <idle>-0     (-----) [005] d..1 82316.819956: cpu_idle: state=0 cpu_id=5
92734           <...>-27550 (-----) [004] ...1 82316.819957: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
92735<...>-9105 ( 9105) [000] .... 82316.819961: binder_transaction_alloc_buf: transaction=1571376 data_size=80 offsets_size=0
92736           <...>-27550 (-----) [004] ...1 82316.819961: tracing_mark_write: E|27550
92737           <...>-27550 (-----) [004] ...1 82316.819965: tracing_mark_write: E|27550
92738<...>-9105 ( 9105) [000] d..4 82316.819967: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
92739<...>-9105 ( 9105) [000] d..5 82316.820000: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
92740          <idle>-0     (-----) [001] .n.1 82316.820005: cpu_idle: state=4294967295 cpu_id=1
92741          <idle>-0     (-----) [001] d..2 82316.820017: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
92742<...>-13083 ( 8858) [001] .... 82316.820024: binder_transaction_received: transaction=1571376
92743<...>-9105 ( 9105) [000] d..3 82316.820039: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
92744<...>-13083 ( 8858) [001] d..1 82316.820055: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
92745<...>-9105 ( 9105) [000] d..4 82316.820058: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
92746          <idle>-0     (-----) [002] .n.1 82316.820063: cpu_idle: state=4294967295 cpu_id=2
92747<...>-13083 ( 8858) [001] d..2 82316.820071: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
92748          <idle>-0     (-----) [002] d..2 82316.820076: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
92749          <idle>-0     (-----) [003] .n.1 82316.820077: cpu_idle: state=4294967295 cpu_id=3
92750           <...>-27550 (-----) [004] ...1 82316.820078: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
92751          <idle>-0     (-----) [003] d..2 82316.820085: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
92752<...>-13083 ( 8858) [001] d..2 82316.820113: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92753          <idle>-0     (-----) [001] d..1 82316.820125: cpu_idle: state=0 cpu_id=1
92754  appEventThread-8881  ( 8858) [003] d..2 82316.820126: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92755          <idle>-0     (-----) [003] d..1 82316.820134: cpu_idle: state=0 cpu_id=3
92756    RenderThread-9436  ( 9105) [002] d..2 82316.820136: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92757           <...>-27550 (-----) [004] ...1 82316.820136: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
92758           <...>-27550 (-----) [004] ...1 82316.820141: tracing_mark_write: E|27550
92759           <...>-27550 (-----) [004] ...1 82316.820144: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
92760          <idle>-0     (-----) [002] d..1 82316.820148: cpu_idle: state=0 cpu_id=2
92761           <...>-27550 (-----) [004] ...1 82316.820149: tracing_mark_write: E|27550
92762           <...>-27550 (-----) [004] ...1 82316.820153: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
92763           <...>-27550 (-----) [004] ...1 82316.820156: tracing_mark_write: E|27550
92764           <...>-27550 (-----) [004] ...1 82316.820161: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
92765<...>-9105 ( 9105) [000] d..3 82316.820187: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
92766<...>-9105 ( 9105) [000] d..4 82316.820205: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
92767          <idle>-0     (-----) [002] .n.1 82316.820211: cpu_idle: state=4294967295 cpu_id=2
92768          <idle>-0     (-----) [002] d..2 82316.820224: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
92769<...>-9105 ( 9105) [000] d..2 82316.820239: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92770          <idle>-0     (-----) [005] .n.1 82316.820247: cpu_idle: state=4294967295 cpu_id=5
92771           <...>-27550 (-----) [004] ...1 82316.820249: tracing_mark_write: E|27550
92772           <...>-27550 (-----) [004] ...1 82316.820253: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
92773          <idle>-0     (-----) [005] d..2 82316.820256: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27769 next_prio=110
92774          <idle>-0     (-----) [000] d..1 82316.820259: cpu_idle: state=0 cpu_id=0
92775           <...>-27550 (-----) [004] d..2 82316.820269: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92776          <idle>-0     (-----) [004] d..1 82316.820284: cpu_idle: state=0 cpu_id=4
92777           <...>-27769 (-----) [005] ...1 82316.820316: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
92778           <...>-27769 (-----) [005] ...1 82316.820329: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
92779           <...>-27769 (-----) [005] ...1 82316.820334: tracing_mark_write: E|27550
92780    RenderThread-9436  ( 9105) [002] d..1 82316.820341: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
92781           <...>-27769 (-----) [005] .... 82316.820354: binder_transaction: transaction=1571377 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
92782           <...>-27769 (-----) [005] .... 82316.820358: binder_transaction_alloc_buf: transaction=1571377 data_size=48 offsets_size=0
92783    RenderThread-9436  ( 9105) [002] d..2 82316.820360: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
92784           <...>-27769 (-----) [005] ...2 82316.820361: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
92785           <...>-27769 (-----) [005] d..4 82316.820364: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
92786          <idle>-0     (-----) [000] .n.1 82316.820368: cpu_idle: state=4294967295 cpu_id=0
92787           <...>-27769 (-----) [005] dn.5 82316.820374: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
92788          <idle>-0     (-----) [000] d..2 82316.820380: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
92789           <...>-27769 (-----) [005] d..2 82316.820381: sched_switch: prev_comm=id.nn.benchmark prev_pid=27769 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
92790<...>-770 ( 770) [005] .... 82316.820391: binder_transaction_received: transaction=1571377
92791<...>-770 ( 770) [005] ...1 82316.820413: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
92792    RenderThread-9436  ( 9105) [002] .... 82316.820427: binder_transaction: transaction=1571378 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
92793    RenderThread-9436  ( 9105) [002] .... 82316.820432: binder_transaction_alloc_buf: transaction=1571378 data_size=104 offsets_size=0
92794    RenderThread-9436  ( 9105) [002] d..4 82316.820438: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
92795    RenderThread-9436  ( 9105) [002] dn.5 82316.820458: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
92796<...>-9105 ( 9105) [000] d..2 82316.820461: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92797    RenderThread-9436  ( 9105) [002] d..2 82316.820467: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
92798          <idle>-0     (-----) [000] d..1 82316.820476: cpu_idle: state=0 cpu_id=0
92799<...>-13083 ( 8858) [002] .... 82316.820476: binder_transaction_received: transaction=1571378
92800<...>-770 ( 770) [005] d..2 82316.820489: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
92801<...>-13083 ( 8858) [002] d.h1 82316.820530: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
92802<...>-770 ( 770) [005] ...1 82316.820543: tracing_mark_write: E|770
92803<...>-770 ( 770) [005] .... 82316.820552: binder_transaction: transaction=1571379 dest_node=0 dest_proc=27550 dest_thread=27769 reply=1 flags=0x0 code=0x0
92804<...>-770 ( 770) [005] .... 82316.820554: binder_transaction_alloc_buf: transaction=1571379 data_size=168 offsets_size=32
92805<...>-770 ( 770) [005] .... 82316.820561: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
92806<...>-13083 ( 8858) [002] .... 82316.820570: binder_transaction: transaction=1571380 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
92807<...>-13083 ( 8858) [002] .... 82316.820574: binder_transaction_alloc_buf: transaction=1571380 data_size=52 offsets_size=8
92808<...>-770 ( 770) [005] d..2 82316.820598: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27769 next_prio=110
92809           <...>-27769 (-----) [005] .... 82316.820609: binder_transaction_received: transaction=1571379
92810<...>-13083 ( 8858) [002] d..2 82316.820624: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
92811    RenderThread-9436  ( 9105) [002] .... 82316.820633: binder_transaction_received: transaction=1571380
92812           <...>-27769 (-----) [005] ...1 82316.820682: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
92813           <...>-27769 (-----) [005] ...1 82316.820687: tracing_mark_write: E|27550
92814           <...>-27769 (-----) [005] .... 82316.820702: binder_transaction: transaction=1571381 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
92815           <...>-27769 (-----) [005] .... 82316.820704: binder_transaction_alloc_buf: transaction=1571381 data_size=48 offsets_size=0
92816           <...>-27769 (-----) [005] ...2 82316.820707: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
92817           <...>-27769 (-----) [005] d..4 82316.820710: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
92818           <...>-27769 (-----) [005] dn.5 82316.820720: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
92819           <...>-27769 (-----) [005] d..2 82316.820726: sched_switch: prev_comm=id.nn.benchmark prev_pid=27769 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
92820<...>-770 ( 770) [005] .... 82316.820734: binder_transaction_received: transaction=1571381
92821<...>-770 ( 770) [005] ...1 82316.820751: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
92822<...>-770 ( 770) [005] ...1 82316.820829: tracing_mark_write: E|770
92823<...>-770 ( 770) [005] .... 82316.820837: binder_transaction: transaction=1571382 dest_node=0 dest_proc=27550 dest_thread=27769 reply=1 flags=0x0 code=0x0
92824<...>-770 ( 770) [005] .... 82316.820839: binder_transaction_alloc_buf: transaction=1571382 data_size=168 offsets_size=32
92825<...>-770 ( 770) [005] .... 82316.820845: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
92826<...>-770 ( 770) [005] d..2 82316.820879: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27769 next_prio=110
92827           <...>-27769 (-----) [005] .... 82316.820889: binder_transaction_received: transaction=1571382
92828           <...>-27769 (-----) [005] ...1 82316.821164: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
92829           <...>-27769 (-----) [005] ...1 82316.821174: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
92830           <...>-27769 (-----) [005] ...1 82316.821178: tracing_mark_write: E|27550
92831           <...>-27769 (-----) [005] .... 82316.821237: binder_transaction: transaction=1571383 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
92832           <...>-27769 (-----) [005] .... 82316.821241: binder_transaction_alloc_buf: transaction=1571383 data_size=556 offsets_size=104
92833           <...>-27769 (-----) [005] ...2 82316.821255: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
92834           <...>-27769 (-----) [005] d..4 82316.821258: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92835           <...>-27769 (-----) [005] dn.5 82316.821269: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92836           <...>-27769 (-----) [005] d..2 82316.821276: sched_switch: prev_comm=id.nn.benchmark prev_pid=27769 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92837<...>-5340 ( 788) [005] .... 82316.821285: binder_transaction_received: transaction=1571383
92838<...>-5340 ( 788) [005] ...1 82316.821331: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
92839<...>-5340 ( 788) [005] d..2 82316.821375: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
92840<...>-5340 ( 788) [005] d..2 82316.821413: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27769 next_prio=110
92841    RenderThread-9436  ( 9105) [002] dnh1 82316.821421: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
92842           <...>-27769 (-----) [005] d..2 82316.821435: sched_switch: prev_comm=id.nn.benchmark prev_pid=27769 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
92843    RenderThread-9436  ( 9105) [002] d..2 82316.821436: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
92844          <idle>-0     (-----) [005] d..1 82316.821453: cpu_idle: state=0 cpu_id=5
92845<...>-87 ( 87) [002] d..2 82316.821469: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
92846<...>-581 ( 571) [002] d.h5 82316.821490: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92847<...>-581 ( 571) [002] dnh6 82316.821511: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92848<...>-581 ( 571) [002] d..2 82316.821524: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
92849<...>-86 ( 86) [002] d..2 82316.821549: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
92850<...>-581 ( 571) [002] d.h5 82316.821569: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92851          <idle>-0     (-----) [005] dnh2 82316.821590: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92852          <idle>-0     (-----) [005] .n.1 82316.821595: cpu_idle: state=4294967295 cpu_id=5
92853          <idle>-0     (-----) [000] ...1 82316.821595: cpu_idle: state=4294967295 cpu_id=0
92854          <idle>-0     (-----) [000] d..1 82316.821600: cpu_idle: state=0 cpu_id=0
92855          <idle>-0     (-----) [005] d..2 82316.821603: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92856<...>-5340 ( 788) [005] d..1 82316.821657: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
92857<...>-581 ( 571) [002] dnh1 82316.821696: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
92858<...>-581 ( 571) [002] d..2 82316.821707: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
92859 neuralnetworks@-13088 (  788) [002] d..2 82316.821753: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
92860          <idle>-0     (-----) [003] d.s2 82316.821802: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
92861          <idle>-0     (-----) [003] dns3 82316.821819: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
92862          <idle>-0     (-----) [003] .n.1 82316.821829: cpu_idle: state=4294967295 cpu_id=3
92863          <idle>-0     (-----) [003] d..2 82316.821838: 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
92864<...>-8 ( 8) [003] d..2 82316.821847: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
92865<...>-5340 ( 788) [005] d..2 82316.821856: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
92866<...>-8 ( 8) [003] d..3 82316.821887: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
92867<...>-8 ( 8) [003] d.h2 82316.821897: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
92868<...>-5340 ( 788) [005] d..2 82316.821908: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
92869<...>-8 ( 8) [003] d..2 82316.821910: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
92870          <idle>-0     (-----) [005] d..1 82316.821922: cpu_idle: state=0 cpu_id=5
92871<...>-87 ( 87) [003] d..2 82316.821941: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
92872<...>-46 ( 46) [003] d..2 82316.821954: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
92873<...>-46 ( 46) [003] d..3 82316.821969: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
92874<...>-46 ( 46) [003] d..2 82316.821979: 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
92875    RenderThread-9436  ( 9105) [002] d.h4 82316.822016: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
92876<...>-8 ( 8) [003] d..2 82316.822017: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
92877    RenderThread-9436  ( 9105) [002] d.h5 82316.822066: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
92878<...>-581 ( 571) [003] d..2 82316.822080: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
92879    RenderThread-9436  ( 9105) [002] d..2 82316.822113: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
92880<...>-86 ( 86) [003] d..2 82316.822121: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92881          <idle>-0     (-----) [002] d..1 82316.822128: cpu_idle: state=0 cpu_id=2
92882          <idle>-0     (-----) [003] d..1 82316.822137: cpu_idle: state=0 cpu_id=3
92883          <idle>-0     (-----) [000] d.h3 82316.822167: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
92884          <idle>-0     (-----) [000] d.h4 82316.822189: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
92885          <idle>-0     (-----) [003] .n.1 82316.822196: cpu_idle: state=4294967295 cpu_id=3
92886          <idle>-0     (-----) [002] d.h2 82316.822200: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
92887          <idle>-0     (-----) [000] ...1 82316.822204: cpu_idle: state=4294967295 cpu_id=0
92888          <idle>-0     (-----) [003] d..2 82316.822207: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
92889          <idle>-0     (-----) [002] d.h3 82316.822209: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
92890          <idle>-0     (-----) [000] d..1 82316.822210: cpu_idle: state=0 cpu_id=0
92891          <idle>-0     (-----) [002] dnh3 82316.822214: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
92892          <idle>-0     (-----) [002] .n.1 82316.822222: cpu_idle: state=4294967295 cpu_id=2
92893 kgsl_worker_thr-258   (  258) [003] d..2 82316.822231: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
92894          <idle>-0     (-----) [002] d..2 82316.822233: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
92895          <idle>-0     (-----) [003] d..1 82316.822240: cpu_idle: state=0 cpu_id=3
92896          <idle>-0     (-----) [005] ...1 82316.822241: cpu_idle: state=4294967295 cpu_id=5
92897          <idle>-0     (-----) [005] d..1 82316.822245: cpu_idle: state=0 cpu_id=5
92898    RenderThread-9436  ( 9105) [002] d..1 82316.822252: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
92899    RenderThread-9436  ( 9105) [002] d..2 82316.822270: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
92900          <idle>-0     (-----) [003] .n.1 82316.822276: cpu_idle: state=4294967295 cpu_id=3
92901          <idle>-0     (-----) [003] d..2 82316.822285: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
92902 kgsl_worker_thr-258   (  258) [003] d..2 82316.822337: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
92903 kgsl_worker_thr-258   (  258) [003] d..3 82316.822354: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
92904 kgsl_worker_thr-258   (  258) [003] d..2 82316.822368: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
92905  kworker/u16:15-1311  ( 1311) [003] d..2 82316.822412: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
92906          <idle>-0     (-----) [003] d..1 82316.822424: cpu_idle: state=0 cpu_id=3
92907    RenderThread-9436  ( 9105) [002] .... 82316.822454: binder_transaction: transaction=1571386 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
92908    RenderThread-9436  ( 9105) [002] .... 82316.822460: binder_transaction_alloc_buf: transaction=1571386 data_size=192 offsets_size=8
92909    RenderThread-9436  ( 9105) [002] d..4 82316.822469: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
92910    RenderThread-9436  ( 9105) [002] dn.5 82316.822485: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
92911    RenderThread-9436  ( 9105) [002] d..2 82316.822494: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
92912<...>-13083 ( 8858) [002] .... 82316.822502: binder_transaction_received: transaction=1571386
92913<...>-13083 ( 8858) [002] .... 82316.822658: binder_transaction: transaction=1571387 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
92914<...>-13083 ( 8858) [002] .... 82316.822663: binder_transaction_alloc_buf: transaction=1571387 data_size=68 offsets_size=0
92915<...>-13083 ( 8858) [002] d..2 82316.822706: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
92916    RenderThread-9436  ( 9105) [002] .... 82316.822715: binder_transaction_received: transaction=1571387
92917    RenderThread-9436  ( 9105) [002] d..2 82316.822802: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92918          <idle>-0     (-----) [002] d..1 82316.822820: cpu_idle: state=0 cpu_id=2
92919          <idle>-0     (-----) [001] d.h2 82316.823423: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
92920          <idle>-0     (-----) [001] dnh3 82316.823434: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
92921          <idle>-0     (-----) [001] .n.1 82316.823441: cpu_idle: state=4294967295 cpu_id=1
92922          <idle>-0     (-----) [001] d..2 82316.823452: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
92923        DispSync-8879  ( 8858) [001] d..1 82316.823466: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
92924        DispSync-8879  ( 8858) [001] d..2 82316.823488: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
92925          <idle>-0     (-----) [000] .n.1 82316.823494: cpu_idle: state=4294967295 cpu_id=0
92926          <idle>-0     (-----) [000] d..2 82316.823505: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
92927        DispSync-8879  ( 8858) [001] d..2 82316.823518: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92928          <idle>-0     (-----) [001] d..1 82316.823526: cpu_idle: state=0 cpu_id=1
92929   sfEventThread-8882  ( 8858) [000] d..3 82316.823550: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
92930   sfEventThread-8882  ( 8858) [000] d..4 82316.823578: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
92931          <idle>-0     (-----) [001] .n.1 82316.823583: cpu_idle: state=4294967295 cpu_id=1
92932          <idle>-0     (-----) [001] d..2 82316.823590: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
92933   sfEventThread-8882  ( 8858) [000] d..2 82316.823614: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92934          <idle>-0     (-----) [002] d.h4 82316.823627: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92935          <idle>-0     (-----) [000] d..1 82316.823628: cpu_idle: state=0 cpu_id=0
92936          <idle>-0     (-----) [005] dnh2 82316.823647: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
92937          <idle>-0     (-----) [005] .n.1 82316.823651: cpu_idle: state=4294967295 cpu_id=5
92938          <idle>-0     (-----) [005] d..2 82316.823659: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
92939          <idle>-0     (-----) [002] ...1 82316.823668: cpu_idle: state=4294967295 cpu_id=2
92940          <idle>-0     (-----) [002] d..1 82316.823674: cpu_idle: state=0 cpu_id=2
92941<...>-5340 ( 788) [005] d..1 82316.823713: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
92942          <idle>-0     (-----) [002] dnh2 82316.823739: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
92943          <idle>-0     (-----) [002] .n.1 82316.823744: cpu_idle: state=4294967295 cpu_id=2
92944          <idle>-0     (-----) [002] d..2 82316.823756: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
92945<...>-5340 ( 788) [005] ...1 82316.823805: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
92946<...>-5340 ( 788) [005] ...1 82316.823809: tracing_mark_write: E|788
92947 neuralnetworks@-13088 (  788) [002] d..2 82316.823825: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
92948<...>-5340 ( 788) [005] .... 82316.823826: binder_transaction: transaction=1571388 dest_node=1571384 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
92949<...>-5340 ( 788) [005] .... 82316.823828: binder_transaction_alloc_buf: transaction=1571388 data_size=60 offsets_size=0
92950<...>-5340 ( 788) [005] d..4 82316.823831: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
92951          <idle>-0     (-----) [002] d..1 82316.823839: cpu_idle: state=0 cpu_id=2
92952<...>-5340 ( 788) [005] d..5 82316.823844: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
92953          <idle>-0     (-----) [004] .n.1 82316.823849: cpu_idle: state=4294967295 cpu_id=4
92954          <idle>-0     (-----) [004] d..2 82316.823857: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
92955           <...>-27571 (-----) [004] .... 82316.823862: binder_transaction_received: transaction=1571388
92956<...>-5340 ( 788) [005] ...1 82316.823867: tracing_mark_write: E|788
92957<...>-5340 ( 788) [005] .... 82316.823873: binder_transaction: transaction=1571389 dest_node=0 dest_proc=27550 dest_thread=27769 reply=1 flags=0x0 code=0x0
92958<...>-5340 ( 788) [005] .... 82316.823875: binder_transaction_alloc_buf: transaction=1571389 data_size=8 offsets_size=0
92959<...>-5340 ( 788) [005] d..2 82316.823877: sched_waking: comm=id.nn.benchmark pid=27769 prio=110 target_cpu=005
92960           <...>-27571 (-----) [004] ...1 82316.823882: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
92961<...>-5340 ( 788) [005] d..3 82316.823883: sched_wakeup: comm=id.nn.benchmark pid=27769 prio=110 target_cpu=005
92962<...>-5340 ( 788) [005] .... 82316.823885: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
92963           <...>-27571 (-----) [004] ...1 82316.823888: tracing_mark_write: E|27550
92964           <...>-27571 (-----) [004] d..2 82316.823916: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92965          <idle>-0     (-----) [004] d..1 82316.823923: cpu_idle: state=0 cpu_id=4
92966<...>-5340 ( 788) [005] d..2 82316.823928: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27769 next_prio=110
92967           <...>-27769 (-----) [005] .... 82316.823938: binder_transaction_received: transaction=1571389
92968  surfaceflinger-8858  ( 8858) [001] d..1 82316.823941: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
92969  surfaceflinger-8858  ( 8858) [001] d..2 82316.823960: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
92970          <idle>-0     (-----) [000] .n.1 82316.823966: cpu_idle: state=4294967295 cpu_id=0
92971           <...>-27769 (-----) [005] ...1 82316.823975: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
92972          <idle>-0     (-----) [000] d..2 82316.823976: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
92973           <...>-27769 (-----) [005] ...1 82316.823981: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
92974           <...>-27769 (-----) [005] ...1 82316.824007: tracing_mark_write: E|27550
92975           <...>-27769 (-----) [005] ...1 82316.824010: tracing_mark_write: E|27550
92976   sfEventThread-8882  ( 8858) [000] d..2 82316.824011: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
92977           <...>-27769 (-----) [005] ...1 82316.824014: tracing_mark_write: E|27550
92978          <idle>-0     (-----) [000] d..1 82316.824022: cpu_idle: state=0 cpu_id=0
92979  surfaceflinger-8858  ( 8858) [001] ...1 82316.824174: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
92980  surfaceflinger-8858  ( 8858) [001] ...1 82316.824181: tracing_mark_write: E|8858
92981           <...>-27769 (-----) [005] ...1 82316.824201: tracing_mark_write: E|27550
92982           <...>-27769 (-----) [005] d..1 82316.824213: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92983           <...>-27769 (-----) [005] d..2 82316.824229: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92984  surfaceflinger-8858  ( 8858) [001] .... 82316.824233: binder_transaction: transaction=1571390 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
92985          <idle>-0     (-----) [004] .n.1 82316.824234: cpu_idle: state=4294967295 cpu_id=4
92986  surfaceflinger-8858  ( 8858) [001] .... 82316.824238: binder_transaction_alloc_buf: transaction=1571390 data_size=540 offsets_size=96
92987          <idle>-0     (-----) [004] d..2 82316.824240: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
92988           <...>-27550 (-----) [004] d..2 82316.824260: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
92989  surfaceflinger-8858  ( 8858) [001] ...2 82316.824261: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
92990  surfaceflinger-8858  ( 8858) [001] d..4 82316.824269: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
92991          <idle>-0     (-----) [004] d..1 82316.824269: cpu_idle: state=0 cpu_id=4
92992  surfaceflinger-8858  ( 8858) [001] d..5 82316.824288: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
92993          <idle>-0     (-----) [002] .n.1 82316.824294: cpu_idle: state=4294967295 cpu_id=2
92994          <idle>-0     (-----) [002] d..2 82316.824304: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
92995 [email protected]   (  619) [002] .... 82316.824314: binder_transaction_received: transaction=1571390
92996           <...>-27769 (-----) [005] d..1 82316.824318: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92997  surfaceflinger-8858  ( 8858) [001] d..2 82316.824319: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
92998           <...>-27769 (-----) [005] d..2 82316.824327: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
92999          <idle>-0     (-----) [001] d..1 82316.824332: cpu_idle: state=0 cpu_id=1
93000          <idle>-0     (-----) [004] .n.1 82316.824333: cpu_idle: state=4294967295 cpu_id=4
93001          <idle>-0     (-----) [004] d..2 82316.824340: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
93002 [email protected]   (  619) [002] ...1 82316.824362: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
93003           <...>-27769 (-----) [005] d..2 82316.824367: sched_switch: prev_comm=id.nn.benchmark prev_pid=27769 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
93004           <...>-27550 (-----) [004] ...1 82316.824385: tracing_mark_write: E|27550
93005           <...>-27550 (-----) [004] ...1 82316.824390: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
93006          <idle>-0     (-----) [005] d..1 82316.824393: cpu_idle: state=0 cpu_id=5
93007           <...>-27550 (-----) [004] ...1 82316.824396: tracing_mark_write: E|27550
93008           <...>-27550 (-----) [004] ...1 82316.824399: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
93009           <...>-27550 (-----) [004] ...1 82316.824403: tracing_mark_write: E|27550
93010           <...>-27550 (-----) [004] ...1 82316.824407: tracing_mark_write: E|27550
93011 [email protected]   (  619) [002] ...1 82316.824470: tracing_mark_write: B|619|HWCSession::PresentDisplay::
93012           <...>-27550 (-----) [004] ...1 82316.824519: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
93013           <...>-27550 (-----) [004] ...1 82316.824577: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
93014           <...>-27550 (-----) [004] ...1 82316.824582: tracing_mark_write: E|27550
93015           <...>-27550 (-----) [004] ...1 82316.824585: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
93016           <...>-27550 (-----) [004] ...1 82316.824591: tracing_mark_write: E|27550
93017           <...>-27550 (-----) [004] ...1 82316.824594: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
93018           <...>-27550 (-----) [004] ...1 82316.824598: tracing_mark_write: E|27550
93019           <...>-27550 (-----) [004] ...1 82316.824601: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
93020 [email protected]   (  619) [002] ...1 82316.824637: tracing_mark_write: B|619|HWDeviceDRM::Commit::
93021 [email protected]   (  619) [002] ...1 82316.824650: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
93022          <idle>-0     (-----) [005] .n.1 82316.824691: cpu_idle: state=4294967295 cpu_id=5
93023           <...>-27550 (-----) [004] ...1 82316.824693: tracing_mark_write: E|27550
93024           <...>-27550 (-----) [004] ...1 82316.824698: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
93025          <idle>-0     (-----) [005] d..2 82316.824700: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27770 next_prio=110
93026           <...>-27550 (-----) [004] d..2 82316.824714: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93027          <idle>-0     (-----) [004] d..1 82316.824728: cpu_idle: state=0 cpu_id=4
93028           <...>-27770 (-----) [005] ...1 82316.824761: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
93029           <...>-27770 (-----) [005] ...1 82316.824775: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
93030           <...>-27770 (-----) [005] ...1 82316.824779: tracing_mark_write: E|27550
93031           <...>-27770 (-----) [005] .... 82316.824802: binder_transaction: transaction=1571391 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
93032           <...>-27770 (-----) [005] .... 82316.824805: binder_transaction_alloc_buf: transaction=1571391 data_size=48 offsets_size=0
93033           <...>-27770 (-----) [005] ...2 82316.824808: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
93034           <...>-27770 (-----) [005] d..4 82316.824811: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
93035           <...>-27770 (-----) [005] dn.5 82316.824821: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
93036           <...>-27770 (-----) [005] d..2 82316.824828: sched_switch: prev_comm=id.nn.benchmark prev_pid=27770 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
93037<...>-770 ( 770) [005] .... 82316.824838: binder_transaction_received: transaction=1571391
93038<...>-770 ( 770) [005] ...1 82316.824860: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
93039<...>-770 ( 770) [005] d..2 82316.824942: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
93040 [email protected]   (  619) [002] d.h1 82316.824987: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
93041<...>-770 ( 770) [005] ...1 82316.824999: tracing_mark_write: E|770
93042<...>-770 ( 770) [005] .... 82316.825006: binder_transaction: transaction=1571392 dest_node=0 dest_proc=27550 dest_thread=27770 reply=1 flags=0x0 code=0x0
93043<...>-770 ( 770) [005] .... 82316.825009: binder_transaction_alloc_buf: transaction=1571392 data_size=168 offsets_size=32
93044<...>-770 ( 770) [005] .... 82316.825016: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
93045<...>-770 ( 770) [005] d..2 82316.825052: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27770 next_prio=110
93046           <...>-27770 (-----) [005] .... 82316.825063: binder_transaction_received: transaction=1571392
93047          <idle>-0     (-----) [001] d.s2 82316.825136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93048          <idle>-0     (-----) [001] dns3 82316.825154: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93049          <idle>-0     (-----) [001] .n.1 82316.825172: cpu_idle: state=4294967295 cpu_id=1
93050           <...>-27770 (-----) [005] ...1 82316.825175: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
93051           <...>-27770 (-----) [005] ...1 82316.825180: tracing_mark_write: E|27550
93052          <idle>-0     (-----) [001] d..2 82316.825182: 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
93053     rcu_preempt-7     (    7) [001] d..2 82316.825193: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
93054           <...>-27770 (-----) [005] .... 82316.825195: binder_transaction: transaction=1571393 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
93055           <...>-27770 (-----) [005] .... 82316.825198: binder_transaction_alloc_buf: transaction=1571393 data_size=48 offsets_size=0
93056           <...>-27770 (-----) [005] ...2 82316.825200: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
93057           <...>-27770 (-----) [005] d..4 82316.825202: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
93058           <...>-27770 (-----) [005] dn.5 82316.825211: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
93059     rcu_preempt-7     (    7) [001] d..3 82316.825211: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
93060           <...>-27770 (-----) [005] d..2 82316.825217: sched_switch: prev_comm=id.nn.benchmark prev_pid=27770 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
93061     rcu_preempt-7     (    7) [001] d..2 82316.825226: 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
93062<...>-770 ( 770) [005] .... 82316.825227: binder_transaction_received: transaction=1571393
93063<...>-770 ( 770) [005] ...1 82316.825244: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
93064         rcuop/0-10    (   10) [001] d..2 82316.825269: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
93065 [email protected]   (  619) [002] d..2 82316.825295: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
93066 [email protected]   (  619) [002] d..3 82316.825324: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
93067<...>-770 ( 770) [005] ...1 82316.825325: tracing_mark_write: E|770
93068          <idle>-0     (-----) [000] .n.1 82316.825329: cpu_idle: state=4294967295 cpu_id=0
93069<...>-770 ( 770) [005] .... 82316.825332: binder_transaction: transaction=1571394 dest_node=0 dest_proc=27550 dest_thread=27770 reply=1 flags=0x0 code=0x0
93070<...>-770 ( 770) [005] .... 82316.825334: binder_transaction_alloc_buf: transaction=1571394 data_size=168 offsets_size=32
93071          <idle>-0     (-----) [000] d..2 82316.825339: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
93072<...>-770 ( 770) [005] .... 82316.825340: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
93073<...>-770 ( 770) [005] d..2 82316.825375: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27770 next_prio=110
93074           <...>-27770 (-----) [005] .... 82316.825385: binder_transaction_received: transaction=1571394
93075<...>-581 ( 571) [001] d..2 82316.825385: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93076          <idle>-0     (-----) [001] d..1 82316.825403: cpu_idle: state=0 cpu_id=1
93077 [email protected]   (  619) [002] ...1 82316.825426: tracing_mark_write: E|619
93078 [email protected]   (  619) [002] ...1 82316.825433: tracing_mark_write: E|619
93079 [email protected]   (  619) [002] ...1 82316.825494: tracing_mark_write: E|619
93080 [email protected]   (  619) [002] ...1 82316.825539: tracing_mark_write: E|619
93081 [email protected]   (  619) [002] .... 82316.825554: binder_transaction: transaction=1571395 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
93082 [email protected]   (  619) [002] .... 82316.825558: binder_transaction_alloc_buf: transaction=1571395 data_size=576 offsets_size=112
93083 [email protected]   (  619) [002] d..2 82316.825577: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
93084 [email protected]   (  619) [002] d..3 82316.825594: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
93085 [email protected]   (  619) [002] .... 82316.825599: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
93086          <idle>-0     (-----) [001] .n.1 82316.825601: cpu_idle: state=4294967295 cpu_id=1
93087          <idle>-0     (-----) [001] d..2 82316.825612: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
93088  surfaceflinger-8858  ( 8858) [001] .... 82316.825621: binder_transaction_received: transaction=1571395
93089           <...>-27770 (-----) [005] ...1 82316.825661: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
93090           <...>-27770 (-----) [005] ...1 82316.825671: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
93091           <...>-27770 (-----) [005] ...1 82316.825675: tracing_mark_write: E|27550
93092 [email protected]   (  619) [002] d..2 82316.825680: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93093          <idle>-0     (-----) [002] d..1 82316.825699: cpu_idle: state=0 cpu_id=2
93094           <...>-27770 (-----) [005] .... 82316.825739: binder_transaction: transaction=1571396 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
93095           <...>-27770 (-----) [005] .... 82316.825743: binder_transaction_alloc_buf: transaction=1571396 data_size=556 offsets_size=104
93096           <...>-27770 (-----) [005] ...2 82316.825758: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
93097           <...>-27770 (-----) [005] d..4 82316.825760: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93098           <...>-27770 (-----) [005] dn.5 82316.825771: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93099           <...>-27770 (-----) [005] d..2 82316.825778: sched_switch: prev_comm=id.nn.benchmark prev_pid=27770 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93100<...>-5340 ( 788) [005] .... 82316.825788: binder_transaction_received: transaction=1571396
93101<...>-5340 ( 788) [005] ...1 82316.825835: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
93102<...>-5340 ( 788) [005] d..2 82316.825882: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
93103<...>-5340 ( 788) [005] d..2 82316.825919: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27770 next_prio=110
93104  surfaceflinger-8858  ( 8858) [001] d.h2 82316.825924: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
93105           <...>-27770 (-----) [005] d..2 82316.825944: sched_switch: prev_comm=id.nn.benchmark prev_pid=27770 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
93106          <idle>-0     (-----) [005] d..1 82316.825962: cpu_idle: state=0 cpu_id=5
93107 crtc_commit:111-321   (  321) [000] d..2 82316.826054: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
93108  surfaceflinger-8858  ( 8858) [001] d..2 82316.826073: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93109          <idle>-0     (-----) [001] d..1 82316.826090: cpu_idle: state=0 cpu_id=1
93110<...>-87 ( 87) [000] d..2 82316.826099: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93111          <idle>-0     (-----) [002] d.h4 82316.826110: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
93112          <idle>-0     (-----) [000] d..1 82316.826114: cpu_idle: state=0 cpu_id=0
93113          <idle>-0     (-----) [002] dnh5 82316.826146: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93114          <idle>-0     (-----) [002] .n.1 82316.826158: cpu_idle: state=4294967295 cpu_id=2
93115          <idle>-0     (-----) [002] d..2 82316.826170: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
93116<...>-86 ( 86) [002] d.h5 82316.826192: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93117          <idle>-0     (-----) [005] dnh2 82316.826214: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93118          <idle>-0     (-----) [005] .n.1 82316.826218: cpu_idle: state=4294967295 cpu_id=5
93119          <idle>-0     (-----) [005] d..2 82316.826227: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93120<...>-86 ( 86) [002] d..2 82316.826260: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93121          <idle>-0     (-----) [002] d..1 82316.826273: cpu_idle: state=0 cpu_id=2
93122<...>-5340 ( 788) [005] d..1 82316.826281: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
93123          <idle>-0     (-----) [000] dnh2 82316.826319: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93124          <idle>-0     (-----) [000] .n.1 82316.826326: cpu_idle: state=4294967295 cpu_id=0
93125          <idle>-0     (-----) [000] d..2 82316.826337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
93126 neuralnetworks@-13088 (  788) [000] d..2 82316.826392: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93127          <idle>-0     (-----) [000] d..1 82316.826405: cpu_idle: state=0 cpu_id=0
93128<...>-5340 ( 788) [005] d..2 82316.826443: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93129          <idle>-0     (-----) [000] dnh2 82316.826465: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93130<...>-5340 ( 788) [005] d..2 82316.826470: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
93131          <idle>-0     (-----) [000] .n.1 82316.826470: cpu_idle: state=4294967295 cpu_id=0
93132          <idle>-0     (-----) [000] d..2 82316.826481: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
93133          <idle>-0     (-----) [005] d..1 82316.826485: cpu_idle: state=0 cpu_id=5
93134<...>-87 ( 87) [000] d..2 82316.826518: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93135          <idle>-0     (-----) [002] d.h4 82316.826519: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93136          <idle>-0     (-----) [002] dnh5 82316.826529: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93137          <idle>-0     (-----) [000] d..1 82316.826531: cpu_idle: state=0 cpu_id=0
93138          <idle>-0     (-----) [002] .n.1 82316.826539: cpu_idle: state=4294967295 cpu_id=2
93139          <idle>-0     (-----) [002] d..2 82316.826549: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
93140<...>-86 ( 86) [002] d..2 82316.826581: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93141          <idle>-0     (-----) [002] d..1 82316.826592: cpu_idle: state=0 cpu_id=2
93142          <idle>-0     (-----) [005] ...1 82316.826835: cpu_idle: state=4294967295 cpu_id=5
93143          <idle>-0     (-----) [005] d..1 82316.826838: cpu_idle: state=0 cpu_id=5
93144          <idle>-0     (-----) [002] ...1 82316.827987: cpu_idle: state=4294967295 cpu_id=2
93145          <idle>-0     (-----) [002] d..1 82316.827991: cpu_idle: state=0 cpu_id=2
93146          <idle>-0     (-----) [000] ...1 82316.828007: cpu_idle: state=4294967295 cpu_id=0
93147          <idle>-0     (-----) [000] d..1 82316.828012: cpu_idle: state=0 cpu_id=0
93148          <idle>-0     (-----) [002] d.h4 82316.828232: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93149          <idle>-0     (-----) [005] dnh2 82316.828252: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93150          <idle>-0     (-----) [005] .n.1 82316.828256: cpu_idle: state=4294967295 cpu_id=5
93151          <idle>-0     (-----) [005] d..2 82316.828263: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93152          <idle>-0     (-----) [002] ...1 82316.828268: cpu_idle: state=4294967295 cpu_id=2
93153          <idle>-0     (-----) [002] d..1 82316.828277: cpu_idle: state=0 cpu_id=2
93154<...>-5340 ( 788) [005] d..1 82316.828313: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93155          <idle>-0     (-----) [000] dnh2 82316.828332: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93156          <idle>-0     (-----) [000] .n.1 82316.828341: cpu_idle: state=4294967295 cpu_id=0
93157          <idle>-0     (-----) [000] d..2 82316.828351: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
93158<...>-5340 ( 788) [005] ...1 82316.828404: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
93159 neuralnetworks@-13088 (  788) [000] d..2 82316.828407: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93160<...>-5340 ( 788) [005] ...1 82316.828408: tracing_mark_write: E|788
93161          <idle>-0     (-----) [000] d..1 82316.828420: cpu_idle: state=0 cpu_id=0
93162<...>-5340 ( 788) [005] .... 82316.828424: binder_transaction: transaction=1571399 dest_node=1571397 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
93163<...>-5340 ( 788) [005] .... 82316.828428: binder_transaction_alloc_buf: transaction=1571399 data_size=60 offsets_size=0
93164<...>-5340 ( 788) [005] d..4 82316.828431: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
93165<...>-5340 ( 788) [005] d..5 82316.828444: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
93166          <idle>-0     (-----) [004] .n.1 82316.828450: cpu_idle: state=4294967295 cpu_id=4
93167          <idle>-0     (-----) [004] d..2 82316.828459: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
93168          <idle>-0     (-----) [003] d.s2 82316.828469: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
93169<...>-5340 ( 788) [005] d.s5 82316.828471: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
93170          <idle>-0     (-----) [003] dns3 82316.828486: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
93171           <...>-27571 (-----) [004] .... 82316.828506: binder_transaction_received: transaction=1571399
93172          <idle>-0     (-----) [000] dnh2 82316.828508: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
93173          <idle>-0     (-----) [003] .n.1 82316.828510: cpu_idle: state=4294967295 cpu_id=3
93174          <idle>-0     (-----) [000] .n.1 82316.828515: cpu_idle: state=4294967295 cpu_id=0
93175          <idle>-0     (-----) [003] d..2 82316.828522: 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
93176           <...>-27571 (-----) [004] ...1 82316.828525: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
93177          <idle>-0     (-----) [000] d..2 82316.828526: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
93178<...>-5340 ( 788) [005] ...1 82316.828527: tracing_mark_write: E|788
93179           <...>-27571 (-----) [004] ...1 82316.828531: tracing_mark_write: E|27550
93180<...>-5340 ( 788) [005] .... 82316.828534: binder_transaction: transaction=1571400 dest_node=0 dest_proc=27550 dest_thread=27770 reply=1 flags=0x0 code=0x0
93181<...>-5340 ( 788) [005] .... 82316.828536: binder_transaction_alloc_buf: transaction=1571400 data_size=8 offsets_size=0
93182<...>-5340 ( 788) [005] d..2 82316.828538: sched_waking: comm=id.nn.benchmark pid=27770 prio=110 target_cpu=005
93183<...>-5340 ( 788) [005] d..3 82316.828545: sched_wakeup: comm=id.nn.benchmark pid=27770 prio=110 target_cpu=005
93184<...>-5340 ( 788) [005] .... 82316.828547: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
93185<...>-8 ( 8) [003] d..2 82316.828551: 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
93186          <idle>-0     (-----) [003] d..1 82316.828563: cpu_idle: state=0 cpu_id=3
93187           <...>-27571 (-----) [004] d..2 82316.828571: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93188          <idle>-0     (-----) [004] d..1 82316.828587: cpu_idle: state=0 cpu_id=4
93189<...>-5340 ( 788) [005] d..2 82316.828597: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27770 next_prio=110
93190           <...>-27770 (-----) [005] .... 82316.828617: binder_transaction_received: transaction=1571400
93191           <...>-27770 (-----) [005] ...1 82316.828654: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
93192           <...>-27770 (-----) [005] ...1 82316.828660: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
93193           <...>-27770 (-----) [005] ...1 82316.828685: tracing_mark_write: E|27550
93194           <...>-27770 (-----) [005] ...1 82316.828689: tracing_mark_write: E|27550
93195           <...>-27770 (-----) [005] ...1 82316.828692: tracing_mark_write: E|27550
93196  kworker/u16:15-1311  ( 1311) [000] d..2 82316.828858: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
93197          <idle>-0     (-----) [000] d..1 82316.828873: cpu_idle: state=0 cpu_id=0
93198           <...>-27770 (-----) [005] ...1 82316.828877: tracing_mark_write: E|27550
93199           <...>-27770 (-----) [005] d..1 82316.828890: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93200          <idle>-0     (-----) [001] d.s3 82316.828897: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
93201           <...>-27770 (-----) [005] d..2 82316.828905: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93202          <idle>-0     (-----) [001] d.s4 82316.828909: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
93203          <idle>-0     (-----) [004] .n.1 82316.828911: cpu_idle: state=4294967295 cpu_id=4
93204          <idle>-0     (-----) [004] d..2 82316.828918: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
93205          <idle>-0     (-----) [001] d.s4 82316.828918: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
93206          <idle>-0     (-----) [000] .n.1 82316.828925: cpu_idle: state=4294967295 cpu_id=0
93207          <idle>-0     (-----) [001] ...1 82316.828928: cpu_idle: state=4294967295 cpu_id=1
93208          <idle>-0     (-----) [001] d..1 82316.828933: cpu_idle: state=0 cpu_id=1
93209          <idle>-0     (-----) [000] d..2 82316.828937: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
93210           <...>-27550 (-----) [004] d..2 82316.828938: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93211          <idle>-0     (-----) [004] d..1 82316.828947: cpu_idle: state=0 cpu_id=4
93212           <...>-27770 (-----) [005] d..1 82316.829014: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93213  kworker/u16:15-1311  ( 1311) [000] .... 82316.829014: clk_set_rate: l3_cluster0_vote_clk 403200000
93214           <...>-27770 (-----) [005] d..2 82316.829024: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93215          <idle>-0     (-----) [004] .n.1 82316.829029: cpu_idle: state=4294967295 cpu_id=4
93216          <idle>-0     (-----) [004] d..2 82316.829036: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
93217  kworker/u16:15-1311  ( 1311) [000] d..2 82316.829040: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93218          <idle>-0     (-----) [000] d..1 82316.829055: cpu_idle: state=0 cpu_id=0
93219           <...>-27770 (-----) [005] d..2 82316.829064: sched_switch: prev_comm=id.nn.benchmark prev_pid=27770 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
93220           <...>-27550 (-----) [004] ...1 82316.829069: tracing_mark_write: E|27550
93221           <...>-27550 (-----) [004] ...1 82316.829074: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
93222           <...>-27550 (-----) [004] ...1 82316.829080: tracing_mark_write: E|27550
93223           <...>-27550 (-----) [004] ...1 82316.829083: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
93224          <idle>-0     (-----) [005] d..1 82316.829084: cpu_idle: state=0 cpu_id=5
93225           <...>-27550 (-----) [004] ...1 82316.829087: tracing_mark_write: E|27550
93226           <...>-27550 (-----) [004] ...1 82316.829092: tracing_mark_write: E|27550
93227           <...>-27550 (-----) [004] ...1 82316.829205: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
93228           <...>-27550 (-----) [004] ...1 82316.829263: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
93229           <...>-27550 (-----) [004] ...1 82316.829268: tracing_mark_write: E|27550
93230           <...>-27550 (-----) [004] ...1 82316.829273: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
93231           <...>-27550 (-----) [004] ...1 82316.829278: tracing_mark_write: E|27550
93232           <...>-27550 (-----) [004] ...1 82316.829282: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
93233           <...>-27550 (-----) [004] ...1 82316.829286: tracing_mark_write: E|27550
93234           <...>-27550 (-----) [004] ...1 82316.829290: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
93235          <idle>-0     (-----) [005] .n.1 82316.829384: cpu_idle: state=4294967295 cpu_id=5
93236           <...>-27550 (-----) [004] ...1 82316.829386: tracing_mark_write: E|27550
93237           <...>-27550 (-----) [004] ...1 82316.829390: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
93238          <idle>-0     (-----) [005] d..2 82316.829393: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27771 next_prio=110
93239           <...>-27550 (-----) [004] d..2 82316.829406: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93240          <idle>-0     (-----) [004] d..1 82316.829420: cpu_idle: state=0 cpu_id=4
93241           <...>-27771 (-----) [005] ...1 82316.829454: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
93242           <...>-27771 (-----) [005] ...1 82316.829468: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
93243           <...>-27771 (-----) [005] ...1 82316.829472: tracing_mark_write: E|27550
93244           <...>-27771 (-----) [005] .... 82316.829494: binder_transaction: transaction=1571401 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
93245           <...>-27771 (-----) [005] .... 82316.829498: binder_transaction_alloc_buf: transaction=1571401 data_size=48 offsets_size=0
93246           <...>-27771 (-----) [005] ...2 82316.829501: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
93247           <...>-27771 (-----) [005] d..4 82316.829504: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
93248           <...>-27771 (-----) [005] dn.5 82316.829514: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
93249           <...>-27771 (-----) [005] d..2 82316.829521: sched_switch: prev_comm=id.nn.benchmark prev_pid=27771 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
93250<...>-770 ( 770) [005] .... 82316.829531: binder_transaction_received: transaction=1571401
93251<...>-770 ( 770) [005] ...1 82316.829554: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
93252          <idle>-0     (-----) [002] ...1 82316.829567: cpu_idle: state=4294967295 cpu_id=2
93253          <idle>-0     (-----) [002] d..1 82316.829572: cpu_idle: state=0 cpu_id=2
93254<...>-770 ( 770) [005] d..2 82316.829629: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
93255          <idle>-0     (-----) [000] dnh2 82316.829668: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
93256          <idle>-0     (-----) [000] .n.1 82316.829675: cpu_idle: state=4294967295 cpu_id=0
93257<...>-770 ( 770) [005] ...1 82316.829682: tracing_mark_write: E|770
93258          <idle>-0     (-----) [000] d..2 82316.829685: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
93259<...>-770 ( 770) [005] .... 82316.829690: binder_transaction: transaction=1571402 dest_node=0 dest_proc=27550 dest_thread=27771 reply=1 flags=0x0 code=0x0
93260<...>-770 ( 770) [005] .... 82316.829692: binder_transaction_alloc_buf: transaction=1571402 data_size=168 offsets_size=32
93261<...>-770 ( 770) [005] .... 82316.829699: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
93262<...>-770 ( 770) [005] d..2 82316.829735: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27771 next_prio=110
93263           <...>-27771 (-----) [005] .... 82316.829746: binder_transaction_received: transaction=1571402
93264<...>-581 ( 571) [000] d..2 82316.829779: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93265          <idle>-0     (-----) [000] d..1 82316.829795: cpu_idle: state=0 cpu_id=0
93266           <...>-27771 (-----) [005] ...1 82316.829816: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
93267           <...>-27771 (-----) [005] ...1 82316.829821: tracing_mark_write: E|27550
93268           <...>-27771 (-----) [005] .... 82316.829835: binder_transaction: transaction=1571403 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
93269           <...>-27771 (-----) [005] .... 82316.829838: binder_transaction_alloc_buf: transaction=1571403 data_size=48 offsets_size=0
93270           <...>-27771 (-----) [005] ...2 82316.829840: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
93271           <...>-27771 (-----) [005] d..4 82316.829842: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
93272           <...>-27771 (-----) [005] dn.5 82316.829852: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
93273           <...>-27771 (-----) [005] d..2 82316.829859: sched_switch: prev_comm=id.nn.benchmark prev_pid=27771 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
93274<...>-770 ( 770) [005] .... 82316.829867: binder_transaction_received: transaction=1571403
93275<...>-770 ( 770) [005] ...1 82316.829883: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
93276<...>-770 ( 770) [005] d..2 82316.829941: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
93277          <idle>-0     (-----) [000] dnh2 82316.829965: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
93278          <idle>-0     (-----) [000] .n.1 82316.829971: cpu_idle: state=4294967295 cpu_id=0
93279<...>-770 ( 770) [005] ...1 82316.829974: tracing_mark_write: E|770
93280<...>-770 ( 770) [005] .... 82316.829981: binder_transaction: transaction=1571404 dest_node=0 dest_proc=27550 dest_thread=27771 reply=1 flags=0x0 code=0x0
93281          <idle>-0     (-----) [000] d..2 82316.829982: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
93282<...>-770 ( 770) [005] .... 82316.829984: binder_transaction_alloc_buf: transaction=1571404 data_size=168 offsets_size=32
93283<...>-770 ( 770) [005] .... 82316.829990: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
93284<...>-770 ( 770) [005] d..2 82316.830025: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27771 next_prio=110
93285<...>-581 ( 571) [000] d..2 82316.830034: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93286           <...>-27771 (-----) [005] .... 82316.830035: binder_transaction_received: transaction=1571404
93287          <idle>-0     (-----) [000] d..1 82316.830048: cpu_idle: state=0 cpu_id=0
93288           <...>-27771 (-----) [005] ...1 82316.830313: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
93289           <...>-27771 (-----) [005] ...1 82316.830322: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
93290           <...>-27771 (-----) [005] ...1 82316.830326: tracing_mark_write: E|27550
93291           <...>-27771 (-----) [005] .... 82316.830393: binder_transaction: transaction=1571405 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
93292           <...>-27771 (-----) [005] .... 82316.830396: binder_transaction_alloc_buf: transaction=1571405 data_size=556 offsets_size=104
93293           <...>-27771 (-----) [005] ...2 82316.830409: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
93294           <...>-27771 (-----) [005] d..4 82316.830412: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93295           <...>-27771 (-----) [005] dn.5 82316.830424: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93296           <...>-27771 (-----) [005] d..2 82316.830431: sched_switch: prev_comm=id.nn.benchmark prev_pid=27771 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93297<...>-5340 ( 788) [005] .... 82316.830440: binder_transaction_received: transaction=1571405
93298<...>-5340 ( 788) [005] ...1 82316.830487: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
93299<...>-5340 ( 788) [005] d..2 82316.830543: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93300<...>-5340 ( 788) [005] d..2 82316.830567: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27771 next_prio=110
93301          <idle>-0     (-----) [000] dnh2 82316.830571: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93302          <idle>-0     (-----) [000] .n.1 82316.830578: cpu_idle: state=4294967295 cpu_id=0
93303          <idle>-0     (-----) [000] d..2 82316.830588: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
93304           <...>-27771 (-----) [005] d..2 82316.830589: sched_switch: prev_comm=id.nn.benchmark prev_pid=27771 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
93305          <idle>-0     (-----) [005] d..1 82316.830607: cpu_idle: state=0 cpu_id=5
93306<...>-87 ( 87) [000] d..2 82316.830627: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93307          <idle>-0     (-----) [002] d.h4 82316.830636: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93308          <idle>-0     (-----) [000] d..1 82316.830639: cpu_idle: state=0 cpu_id=0
93309          <idle>-0     (-----) [002] dnh5 82316.830651: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93310          <idle>-0     (-----) [002] .n.1 82316.830659: cpu_idle: state=4294967295 cpu_id=2
93311          <idle>-0     (-----) [002] d..2 82316.830671: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
93312<...>-86 ( 86) [002] d..2 82316.830704: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93313          <idle>-0     (-----) [002] d.h4 82316.830728: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93314          <idle>-0     (-----) [005] dnh2 82316.830750: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93315          <idle>-0     (-----) [005] .n.1 82316.830755: cpu_idle: state=4294967295 cpu_id=5
93316          <idle>-0     (-----) [005] d..2 82316.830763: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93317          <idle>-0     (-----) [002] d..1 82316.830770: cpu_idle: state=0 cpu_id=2
93318<...>-5340 ( 788) [005] d..1 82316.830816: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93319          <idle>-0     (-----) [000] dnh2 82316.830840: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93320          <idle>-0     (-----) [000] .n.1 82316.830847: cpu_idle: state=4294967295 cpu_id=0
93321          <idle>-0     (-----) [000] d..2 82316.830856: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
93322 neuralnetworks@-13088 (  788) [000] d..2 82316.830904: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93323          <idle>-0     (-----) [000] d..1 82316.830917: cpu_idle: state=0 cpu_id=0
93324<...>-5340 ( 788) [005] d..2 82316.830962: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93325          <idle>-0     (-----) [000] dnh2 82316.830984: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93326<...>-5340 ( 788) [005] d..2 82316.830988: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
93327          <idle>-0     (-----) [000] .n.1 82316.830990: cpu_idle: state=4294967295 cpu_id=0
93328          <idle>-0     (-----) [000] d..2 82316.831000: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
93329          <idle>-0     (-----) [005] d..1 82316.831002: cpu_idle: state=0 cpu_id=5
93330<...>-87 ( 87) [000] d..2 82316.831037: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93331          <idle>-0     (-----) [002] d.h4 82316.831038: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93332          <idle>-0     (-----) [002] dnh5 82316.831048: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93333          <idle>-0     (-----) [000] d..1 82316.831049: cpu_idle: state=0 cpu_id=0
93334          <idle>-0     (-----) [002] .n.1 82316.831056: cpu_idle: state=4294967295 cpu_id=2
93335          <idle>-0     (-----) [002] d..2 82316.831067: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
93336<...>-86 ( 86) [002] d..2 82316.831097: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93337          <idle>-0     (-----) [002] d..1 82316.831107: cpu_idle: state=0 cpu_id=2
93338          <idle>-0     (-----) [005] ...1 82316.831355: cpu_idle: state=4294967295 cpu_id=5
93339          <idle>-0     (-----) [005] d..1 82316.831359: cpu_idle: state=0 cpu_id=5
93340          <idle>-0     (-----) [000] d.h5 82316.831475: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
93341          <idle>-0     (-----) [000] d.h6 82316.831494: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
93342          <idle>-0     (-----) [000] d.h5 82316.831499: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
93343          <idle>-0     (-----) [003] .n.1 82316.831500: cpu_idle: state=4294967295 cpu_id=3
93344          <idle>-0     (-----) [000] dnh6 82316.831507: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
93345          <idle>-0     (-----) [003] d..2 82316.831510: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
93346          <idle>-0     (-----) [000] .n.1 82316.831520: cpu_idle: state=4294967295 cpu_id=0
93347          <idle>-0     (-----) [000] d..2 82316.831530: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
93348  crtc_event:111-322   (  322) [003] d..2 82316.831541: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93349          <idle>-0     (-----) [003] d..1 82316.831550: cpu_idle: state=0 cpu_id=3
93350 crtc_commit:111-321   (  321) [000] d..2 82316.831670: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
93351          <idle>-0     (-----) [000] d..1 82316.831679: cpu_idle: state=0 cpu_id=0
93352          <idle>-0     (-----) [001] d.s2 82316.831802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93353          <idle>-0     (-----) [001] dns3 82316.831857: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93354          <idle>-0     (-----) [001] .n.1 82316.831870: cpu_idle: state=4294967295 cpu_id=1
93355          <idle>-0     (-----) [000] d.H3 82316.831880: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
93356          <idle>-0     (-----) [001] d..2 82316.831883: 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
93357          <idle>-0     (-----) [000] dnH4 82316.831908: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
93358          <idle>-0     (-----) [000] dns3 82316.831916: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
93359     rcu_preempt-7     (    7) [001] d..2 82316.831923: 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
93360          <idle>-0     (-----) [000] dns4 82316.831930: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
93361          <idle>-0     (-----) [001] d..1 82316.831933: cpu_idle: state=0 cpu_id=1
93362          <idle>-0     (-----) [003] .n.1 82316.831935: cpu_idle: state=4294967295 cpu_id=3
93363          <idle>-0     (-----) [003] d..2 82316.831945: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
93364          <idle>-0     (-----) [000] .n.1 82316.831949: cpu_idle: state=4294967295 cpu_id=0
93365          <idle>-0     (-----) [000] d..2 82316.831957: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
93366  crtc_event:111-322   (  322) [003] d..2 82316.831971: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93367          <idle>-0     (-----) [003] d..1 82316.831978: cpu_idle: state=0 cpu_id=3
93368         sugov:0-576   (  576) [000] .... 82316.831991: clk_set_rate: pwrcl_clk 825600000
93369         sugov:0-576   (  576) [000] .... 82316.832008: clk_set_rate: cpu3_pwrcl_clk 902400000
93370         sugov:0-576   (  576) [000] .... 82316.832018: clk_set_rate: cpu2_pwrcl_clk 902400000
93371         sugov:0-576   (  576) [000] .... 82316.832025: clk_set_rate: cpu1_pwrcl_clk 902400000
93372         sugov:0-576   (  576) [000] .... 82316.832033: clk_set_rate: cpu0_pwrcl_clk 825600000
93373         sugov:0-576   (  576) [000] .... 82316.832147: cpu_frequency: state=825600 cpu_id=0
93374         sugov:0-576   (  576) [000] .... 82316.832171: cpu_frequency: state=825600 cpu_id=1
93375         sugov:0-576   (  576) [000] .... 82316.832175: cpu_frequency: state=825600 cpu_id=2
93376         sugov:0-576   (  576) [000] .... 82316.832179: cpu_frequency: state=825600 cpu_id=3
93377         sugov:0-576   (  576) [000] d..2 82316.832207: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93378          <idle>-0     (-----) [000] d..1 82316.832222: cpu_idle: state=0 cpu_id=0
93379          <idle>-0     (-----) [002] d.h4 82316.832784: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93380          <idle>-0     (-----) [005] dnh2 82316.832807: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93381          <idle>-0     (-----) [005] .n.1 82316.832811: cpu_idle: state=4294967295 cpu_id=5
93382          <idle>-0     (-----) [005] d..2 82316.832819: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93383          <idle>-0     (-----) [002] ...1 82316.832824: cpu_idle: state=4294967295 cpu_id=2
93384          <idle>-0     (-----) [002] d..1 82316.832831: cpu_idle: state=0 cpu_id=2
93385<...>-5340 ( 788) [005] d..1 82316.832868: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93386          <idle>-0     (-----) [000] dnh2 82316.832897: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93387          <idle>-0     (-----) [000] .n.1 82316.832905: cpu_idle: state=4294967295 cpu_id=0
93388          <idle>-0     (-----) [000] d..2 82316.832946: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
93389<...>-5340 ( 788) [005] ...1 82316.832960: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
93390<...>-5340 ( 788) [005] ...1 82316.832964: tracing_mark_write: E|788
93391<...>-5340 ( 788) [005] .... 82316.832980: binder_transaction: transaction=1571408 dest_node=1571406 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
93392<...>-5340 ( 788) [005] .... 82316.832982: binder_transaction_alloc_buf: transaction=1571408 data_size=60 offsets_size=0
93393 neuralnetworks@-13088 (  788) [000] d..2 82316.832984: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93394<...>-5340 ( 788) [005] d..4 82316.832985: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
93395          <idle>-0     (-----) [000] d..1 82316.832998: cpu_idle: state=0 cpu_id=0
93396<...>-5340 ( 788) [005] d..5 82316.832998: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
93397          <idle>-0     (-----) [004] .n.1 82316.833005: cpu_idle: state=4294967295 cpu_id=4
93398          <idle>-0     (-----) [004] d..2 82316.833013: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
93399           <...>-27571 (-----) [004] .... 82316.833018: binder_transaction_received: transaction=1571408
93400<...>-5340 ( 788) [005] ...1 82316.833021: tracing_mark_write: E|788
93401<...>-5340 ( 788) [005] .... 82316.833027: binder_transaction: transaction=1571409 dest_node=0 dest_proc=27550 dest_thread=27771 reply=1 flags=0x0 code=0x0
93402<...>-5340 ( 788) [005] .... 82316.833030: binder_transaction_alloc_buf: transaction=1571409 data_size=8 offsets_size=0
93403<...>-5340 ( 788) [005] d..2 82316.833031: sched_waking: comm=id.nn.benchmark pid=27771 prio=110 target_cpu=005
93404           <...>-27571 (-----) [004] ...1 82316.833036: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
93405<...>-5340 ( 788) [005] d..3 82316.833039: sched_wakeup: comm=id.nn.benchmark pid=27771 prio=110 target_cpu=005
93406<...>-5340 ( 788) [005] .... 82316.833041: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
93407           <...>-27571 (-----) [004] ...1 82316.833042: tracing_mark_write: E|27550
93408           <...>-27571 (-----) [004] d..2 82316.833070: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93409          <idle>-0     (-----) [004] d..1 82316.833077: cpu_idle: state=0 cpu_id=4
93410<...>-5340 ( 788) [005] d..2 82316.833084: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27771 next_prio=110
93411           <...>-27771 (-----) [005] .... 82316.833094: binder_transaction_received: transaction=1571409
93412           <...>-27771 (-----) [005] ...1 82316.833131: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
93413           <...>-27771 (-----) [005] ...1 82316.833137: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
93414           <...>-27771 (-----) [005] ...1 82316.833163: tracing_mark_write: E|27550
93415           <...>-27771 (-----) [005] ...1 82316.833167: tracing_mark_write: E|27550
93416           <...>-27771 (-----) [005] ...1 82316.833171: tracing_mark_write: E|27550
93417           <...>-27771 (-----) [005] ...1 82316.833358: tracing_mark_write: E|27550
93418           <...>-27771 (-----) [005] d..1 82316.833371: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93419           <...>-27771 (-----) [005] d..2 82316.833389: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93420          <idle>-0     (-----) [004] .n.1 82316.833394: cpu_idle: state=4294967295 cpu_id=4
93421          <idle>-0     (-----) [004] d..2 82316.833401: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
93422           <...>-27550 (-----) [004] d..2 82316.833420: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93423          <idle>-0     (-----) [004] d..1 82316.833429: cpu_idle: state=0 cpu_id=4
93424           <...>-27771 (-----) [005] d..1 82316.833475: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93425           <...>-27771 (-----) [005] d..2 82316.833484: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93426          <idle>-0     (-----) [004] .n.1 82316.833490: cpu_idle: state=4294967295 cpu_id=4
93427          <idle>-0     (-----) [004] d..2 82316.833497: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
93428           <...>-27771 (-----) [005] d..2 82316.833522: sched_switch: prev_comm=id.nn.benchmark prev_pid=27771 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
93429           <...>-27550 (-----) [004] ...1 82316.833530: tracing_mark_write: E|27550
93430           <...>-27550 (-----) [004] ...1 82316.833535: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
93431           <...>-27550 (-----) [004] ...1 82316.833541: tracing_mark_write: E|27550
93432          <idle>-0     (-----) [005] d..1 82316.833543: cpu_idle: state=0 cpu_id=5
93433           <...>-27550 (-----) [004] ...1 82316.833544: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
93434           <...>-27550 (-----) [004] ...1 82316.833548: tracing_mark_write: E|27550
93435           <...>-27550 (-----) [004] ...1 82316.833552: tracing_mark_write: E|27550
93436           <...>-27550 (-----) [004] ...1 82316.833667: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
93437           <...>-27550 (-----) [004] ...1 82316.833725: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
93438           <...>-27550 (-----) [004] ...1 82316.833730: tracing_mark_write: E|27550
93439           <...>-27550 (-----) [004] ...1 82316.833735: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
93440           <...>-27550 (-----) [004] ...1 82316.833758: tracing_mark_write: E|27550
93441           <...>-27550 (-----) [004] ...1 82316.833762: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
93442           <...>-27550 (-----) [004] ...1 82316.833766: tracing_mark_write: E|27550
93443           <...>-27550 (-----) [004] ...1 82316.833769: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
93444          <idle>-0     (-----) [000] d.h5 82316.833817: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
93445          <idle>-0     (-----) [000] dnh6 82316.833830: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
93446          <idle>-0     (-----) [000] .n.1 82316.833845: cpu_idle: state=4294967295 cpu_id=0
93447          <idle>-0     (-----) [000] d..2 82316.833855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
93448          <idle>-0     (-----) [005] .n.1 82316.833858: cpu_idle: state=4294967295 cpu_id=5
93449           <...>-27550 (-----) [004] ...1 82316.833859: tracing_mark_write: E|27550
93450           <...>-27550 (-----) [004] ...1 82316.833864: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
93451          <idle>-0     (-----) [005] d..2 82316.833867: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27772 next_prio=110
93452           <...>-27550 (-----) [004] d..2 82316.833880: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93453          <idle>-0     (-----) [004] d..1 82316.833894: cpu_idle: state=0 cpu_id=4
93454           <...>-27772 (-----) [005] ...1 82316.833927: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
93455 crtc_commit:111-321   (  321) [000] d..2 82316.833934: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93456           <...>-27772 (-----) [005] ...1 82316.833941: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
93457           <...>-27772 (-----) [005] ...1 82316.833945: tracing_mark_write: E|27550
93458          <idle>-0     (-----) [000] d..1 82316.833948: cpu_idle: state=0 cpu_id=0
93459           <...>-27772 (-----) [005] .... 82316.833965: binder_transaction: transaction=1571410 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
93460           <...>-27772 (-----) [005] .... 82316.833969: binder_transaction_alloc_buf: transaction=1571410 data_size=48 offsets_size=0
93461           <...>-27772 (-----) [005] ...2 82316.833972: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
93462           <...>-27772 (-----) [005] d..4 82316.833974: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
93463           <...>-27772 (-----) [005] dn.5 82316.833986: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
93464           <...>-27772 (-----) [005] d..2 82316.833993: sched_switch: prev_comm=id.nn.benchmark prev_pid=27772 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
93465<...>-770 ( 770) [005] .... 82316.834003: binder_transaction_received: transaction=1571410
93466<...>-770 ( 770) [005] ...1 82316.834024: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
93467<...>-770 ( 770) [005] d..2 82316.834092: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
93468          <idle>-0     (-----) [000] d.h5 82316.834101: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
93469          <idle>-0     (-----) [000] d.h6 82316.834118: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
93470          <idle>-0     (-----) [003] .n.1 82316.834123: cpu_idle: state=4294967295 cpu_id=3
93471          <idle>-0     (-----) [003] d..2 82316.834131: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
93472<...>-770 ( 770) [005] ...1 82316.834133: tracing_mark_write: E|770
93473<...>-770 ( 770) [005] .... 82316.834140: binder_transaction: transaction=1571411 dest_node=0 dest_proc=27550 dest_thread=27772 reply=1 flags=0x0 code=0x0
93474          <idle>-0     (-----) [000] dnh2 82316.834143: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
93475<...>-770 ( 770) [005] .... 82316.834143: binder_transaction_alloc_buf: transaction=1571411 data_size=168 offsets_size=32
93476<...>-770 ( 770) [005] .... 82316.834150: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
93477          <idle>-0     (-----) [000] .n.1 82316.834150: cpu_idle: state=4294967295 cpu_id=0
93478  crtc_event:111-322   (  322) [003] d..2 82316.834153: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93479          <idle>-0     (-----) [003] d..1 82316.834160: cpu_idle: state=0 cpu_id=3
93480          <idle>-0     (-----) [000] d..2 82316.834162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
93481<...>-770 ( 770) [005] d..2 82316.834185: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27772 next_prio=110
93482           <...>-27772 (-----) [005] .... 82316.834196: binder_transaction_received: transaction=1571411
93483<...>-581 ( 571) [000] d..2 82316.834244: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93484          <idle>-0     (-----) [000] d..1 82316.834260: cpu_idle: state=0 cpu_id=0
93485           <...>-27772 (-----) [005] ...1 82316.834266: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
93486           <...>-27772 (-----) [005] ...1 82316.834271: tracing_mark_write: E|27550
93487           <...>-27772 (-----) [005] .... 82316.834286: binder_transaction: transaction=1571412 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
93488           <...>-27772 (-----) [005] .... 82316.834289: binder_transaction_alloc_buf: transaction=1571412 data_size=48 offsets_size=0
93489           <...>-27772 (-----) [005] ...2 82316.834291: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
93490           <...>-27772 (-----) [005] d..4 82316.834294: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
93491           <...>-27772 (-----) [005] dn.5 82316.834303: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
93492           <...>-27772 (-----) [005] d..2 82316.834310: sched_switch: prev_comm=id.nn.benchmark prev_pid=27772 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
93493<...>-770 ( 770) [005] .... 82316.834318: binder_transaction_received: transaction=1571412
93494<...>-770 ( 770) [005] ...1 82316.834334: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
93495<...>-770 ( 770) [005] d..2 82316.834394: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
93496          <idle>-0     (-----) [000] dnh2 82316.834420: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
93497          <idle>-0     (-----) [000] .n.1 82316.834427: cpu_idle: state=4294967295 cpu_id=0
93498<...>-770 ( 770) [005] ...1 82316.834428: tracing_mark_write: E|770
93499<...>-770 ( 770) [005] .... 82316.834435: binder_transaction: transaction=1571413 dest_node=0 dest_proc=27550 dest_thread=27772 reply=1 flags=0x0 code=0x0
93500          <idle>-0     (-----) [000] d..2 82316.834438: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
93501<...>-770 ( 770) [005] .... 82316.834439: binder_transaction_alloc_buf: transaction=1571413 data_size=168 offsets_size=32
93502<...>-770 ( 770) [005] .... 82316.834445: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
93503<...>-770 ( 770) [005] d..2 82316.834479: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27772 next_prio=110
93504           <...>-27772 (-----) [005] .... 82316.834489: binder_transaction_received: transaction=1571413
93505<...>-581 ( 571) [000] d..2 82316.834494: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93506          <idle>-0     (-----) [000] d..1 82316.834508: cpu_idle: state=0 cpu_id=0
93507           <...>-27772 (-----) [005] ...1 82316.834764: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
93508           <...>-27772 (-----) [005] ...1 82316.834774: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
93509           <...>-27772 (-----) [005] ...1 82316.834778: tracing_mark_write: E|27550
93510           <...>-27772 (-----) [005] .... 82316.834837: binder_transaction: transaction=1571414 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
93511           <...>-27772 (-----) [005] .... 82316.834840: binder_transaction_alloc_buf: transaction=1571414 data_size=556 offsets_size=104
93512           <...>-27772 (-----) [005] ...2 82316.834854: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
93513           <...>-27772 (-----) [005] d..4 82316.834857: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93514           <...>-27772 (-----) [005] dn.5 82316.834868: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93515           <...>-27772 (-----) [005] d..2 82316.834876: sched_switch: prev_comm=id.nn.benchmark prev_pid=27772 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93516<...>-5340 ( 788) [005] .... 82316.834885: binder_transaction_received: transaction=1571414
93517<...>-5340 ( 788) [005] ...1 82316.834928: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
93518<...>-5340 ( 788) [005] d..2 82316.834973: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93519<...>-5340 ( 788) [005] d..2 82316.834999: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27772 next_prio=110
93520          <idle>-0     (-----) [000] dnh2 82316.835003: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93521          <idle>-0     (-----) [000] .n.1 82316.835010: cpu_idle: state=4294967295 cpu_id=0
93522          <idle>-0     (-----) [000] d..2 82316.835020: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
93523           <...>-27772 (-----) [005] d..2 82316.835022: sched_switch: prev_comm=id.nn.benchmark prev_pid=27772 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
93524          <idle>-0     (-----) [005] d..1 82316.835039: cpu_idle: state=0 cpu_id=5
93525<...>-87 ( 87) [000] d..2 82316.835061: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93526          <idle>-0     (-----) [002] d.h4 82316.835069: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93527          <idle>-0     (-----) [000] d..1 82316.835074: cpu_idle: state=0 cpu_id=0
93528          <idle>-0     (-----) [002] dnh5 82316.835086: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93529          <idle>-0     (-----) [002] .n.1 82316.835098: cpu_idle: state=4294967295 cpu_id=2
93530          <idle>-0     (-----) [002] d..2 82316.835113: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
93531          <idle>-0     (-----) [003] d.s2 82316.835133: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
93532          <idle>-0     (-----) [003] dns3 82316.835151: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
93533          <idle>-0     (-----) [003] dns3 82316.835158: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
93534<...>-86 ( 86) [002] d.H5 82316.835161: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93535          <idle>-0     (-----) [005] dnh2 82316.835183: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93536          <idle>-0     (-----) [005] .n.1 82316.835188: cpu_idle: state=4294967295 cpu_id=5
93537          <idle>-0     (-----) [003] dns4 82316.835193: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
93538          <idle>-0     (-----) [005] d..2 82316.835197: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93539          <idle>-0     (-----) [003] .n.1 82316.835203: cpu_idle: state=4294967295 cpu_id=3
93540          <idle>-0     (-----) [003] d..2 82316.835212: 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
93541<...>-8 ( 8) [003] d..2 82316.835221: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
93542<...>-86 ( 86) [002] d..2 82316.835243: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93543<...>-5340 ( 788) [005] d..1 82316.835247: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93544          <idle>-0     (-----) [002] dn.1 82316.835257: cpu_idle: state=0 cpu_id=2
93545<...>-8 ( 8) [003] d..3 82316.835260: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
93546          <idle>-0     (-----) [002] .n.1 82316.835264: cpu_idle: state=4294967295 cpu_id=2
93547<...>-8 ( 8) [003] d..2 82316.835274: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
93548          <idle>-0     (-----) [002] d..2 82316.835278: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
93549<...>-46 ( 46) [002] d.h3 82316.835291: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
93550<...>-46 ( 46) [002] d..2 82316.835306: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
93551<...>-46 ( 46) [002] d..3 82316.835323: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
93552  kworker/u16:15-1311  ( 1311) [003] d..2 82316.835335: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
93553<...>-46 ( 46) [002] d..2 82316.835347: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
93554<...>-8 ( 8) [003] d..2 82316.835359: 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
93555          <idle>-0     (-----) [003] d..1 82316.835373: cpu_idle: state=0 cpu_id=3
93556 neuralnetworks@-13088 (  788) [002] d..2 82316.835401: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93557<...>-5340 ( 788) [005] d..2 82316.835412: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93558          <idle>-0     (-----) [002] d..1 82316.835416: cpu_idle: state=0 cpu_id=2
93559          <idle>-0     (-----) [000] dnh2 82316.835434: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93560<...>-5340 ( 788) [005] d..2 82316.835438: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
93561          <idle>-0     (-----) [000] .n.1 82316.835441: cpu_idle: state=4294967295 cpu_id=0
93562          <idle>-0     (-----) [000] d..2 82316.835451: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
93563          <idle>-0     (-----) [005] d..1 82316.835452: cpu_idle: state=0 cpu_id=5
93564<...>-87 ( 87) [000] d..2 82316.835488: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93565          <idle>-0     (-----) [002] d.h4 82316.835493: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93566          <idle>-0     (-----) [000] d..1 82316.835500: cpu_idle: state=0 cpu_id=0
93567          <idle>-0     (-----) [002] dnh5 82316.835505: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93568          <idle>-0     (-----) [002] .n.1 82316.835514: cpu_idle: state=4294967295 cpu_id=2
93569          <idle>-0     (-----) [002] d..2 82316.835526: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
93570<...>-86 ( 86) [002] d..2 82316.835561: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93571          <idle>-0     (-----) [002] d..1 82316.835573: cpu_idle: state=0 cpu_id=2
93572          <idle>-0     (-----) [005] ...1 82316.835783: cpu_idle: state=4294967295 cpu_id=5
93573          <idle>-0     (-----) [005] d..1 82316.835787: cpu_idle: state=0 cpu_id=5
93574          <idle>-0     (-----) [001] d.h2 82316.835890: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
93575          <idle>-0     (-----) [001] dnh3 82316.835905: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
93576          <idle>-0     (-----) [001] .n.1 82316.835914: cpu_idle: state=4294967295 cpu_id=1
93577          <idle>-0     (-----) [001] d..2 82316.835924: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
93578        DispSync-8879  ( 8858) [001] d..1 82316.835944: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
93579        DispSync-8879  ( 8858) [001] d..2 82316.835960: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
93580          <idle>-0     (-----) [003] .n.1 82316.835966: cpu_idle: state=4294967295 cpu_id=3
93581          <idle>-0     (-----) [003] d..2 82316.835977: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
93582        DispSync-8879  ( 8858) [001] d..2 82316.835992: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93583          <idle>-0     (-----) [001] d..1 82316.836002: cpu_idle: state=0 cpu_id=1
93584  appEventThread-8881  ( 8858) [003] d..3 82316.836033: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
93585  appEventThread-8881  ( 8858) [003] d..4 82316.836056: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
93586          <idle>-0     (-----) [000] .n.1 82316.836062: cpu_idle: state=4294967295 cpu_id=0
93587          <idle>-0     (-----) [000] d..2 82316.836074: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
93588  appEventThread-8881  ( 8858) [003] d..2 82316.836097: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93589          <idle>-0     (-----) [003] d..1 82316.836112: cpu_idle: state=0 cpu_id=3
93590<...>-9105 ( 9105) [000] .... 82316.836413: binder_transaction: transaction=1571417 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
93591<...>-9105 ( 9105) [000] .... 82316.836419: binder_transaction_alloc_buf: transaction=1571417 data_size=80 offsets_size=0
93592<...>-9105 ( 9105) [000] d..4 82316.836425: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
93593<...>-9105 ( 9105) [000] d..5 82316.836459: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
93594          <idle>-0     (-----) [001] .n.1 82316.836464: cpu_idle: state=4294967295 cpu_id=1
93595          <idle>-0     (-----) [001] d..2 82316.836474: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
93596<...>-13083 ( 8858) [001] .... 82316.836482: binder_transaction_received: transaction=1571417
93597<...>-9105 ( 9105) [000] d..3 82316.836499: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
93598<...>-13083 ( 8858) [001] d..1 82316.836515: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
93599<...>-9105 ( 9105) [000] d..4 82316.836519: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
93600          <idle>-0     (-----) [002] .n.1 82316.836524: cpu_idle: state=4294967295 cpu_id=2
93601<...>-13083 ( 8858) [001] d..2 82316.836533: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
93602          <idle>-0     (-----) [002] d..2 82316.836536: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
93603          <idle>-0     (-----) [003] .n.1 82316.836537: cpu_idle: state=4294967295 cpu_id=3
93604          <idle>-0     (-----) [003] d..2 82316.836548: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
93605<...>-13083 ( 8858) [001] d..2 82316.836575: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93606          <idle>-0     (-----) [001] d..1 82316.836585: cpu_idle: state=0 cpu_id=1
93607  appEventThread-8881  ( 8858) [003] d..2 82316.836590: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93608    RenderThread-9436  ( 9105) [002] d..2 82316.836595: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93609          <idle>-0     (-----) [003] d..1 82316.836601: cpu_idle: state=0 cpu_id=3
93610          <idle>-0     (-----) [002] d..1 82316.836608: cpu_idle: state=0 cpu_id=2
93611<...>-9105 ( 9105) [000] d..3 82316.836644: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
93612<...>-9105 ( 9105) [000] d..4 82316.836663: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
93613          <idle>-0     (-----) [002] .n.1 82316.836669: cpu_idle: state=4294967295 cpu_id=2
93614          <idle>-0     (-----) [002] d..2 82316.836681: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
93615<...>-9105 ( 9105) [000] d..2 82316.836698: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93616          <idle>-0     (-----) [000] d..1 82316.836718: cpu_idle: state=0 cpu_id=0
93617    RenderThread-9436  ( 9105) [002] d..1 82316.836805: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
93618    RenderThread-9436  ( 9105) [002] d..2 82316.836824: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
93619          <idle>-0     (-----) [000] .n.1 82316.836831: cpu_idle: state=4294967295 cpu_id=0
93620          <idle>-0     (-----) [000] d..2 82316.836844: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
93621    RenderThread-9436  ( 9105) [002] .... 82316.836898: binder_transaction: transaction=1571418 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
93622    RenderThread-9436  ( 9105) [002] .... 82316.836904: binder_transaction_alloc_buf: transaction=1571418 data_size=104 offsets_size=0
93623    RenderThread-9436  ( 9105) [002] d..4 82316.836909: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
93624<...>-9105 ( 9105) [000] d..2 82316.836925: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93625    RenderThread-9436  ( 9105) [002] dn.5 82316.836930: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
93626    RenderThread-9436  ( 9105) [002] d..2 82316.836940: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
93627          <idle>-0     (-----) [000] d..1 82316.836941: cpu_idle: state=0 cpu_id=0
93628<...>-13083 ( 8858) [002] .... 82316.836949: binder_transaction_received: transaction=1571418
93629<...>-13083 ( 8858) [002] .... 82316.837027: binder_transaction: transaction=1571419 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
93630<...>-13083 ( 8858) [002] .... 82316.837032: binder_transaction_alloc_buf: transaction=1571419 data_size=52 offsets_size=8
93631<...>-13083 ( 8858) [002] d..2 82316.837083: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
93632    RenderThread-9436  ( 9105) [002] .... 82316.837093: binder_transaction_received: transaction=1571419
93633    RenderThread-9436  ( 9105) [002] d.h3 82316.837164: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93634          <idle>-0     (-----) [005] dnh2 82316.837186: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93635          <idle>-0     (-----) [005] .n.1 82316.837190: cpu_idle: state=4294967295 cpu_id=5
93636          <idle>-0     (-----) [005] d..2 82316.837198: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93637<...>-5340 ( 788) [005] d..1 82316.837248: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
93638    RenderThread-9436  ( 9105) [002] dnh1 82316.837278: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
93639    RenderThread-9436  ( 9105) [002] d..2 82316.837290: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
93640<...>-5340 ( 788) [005] ...1 82316.837342: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
93641<...>-5340 ( 788) [005] ...1 82316.837347: tracing_mark_write: E|788
93642 neuralnetworks@-13088 (  788) [002] d..2 82316.837356: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
93643<...>-5340 ( 788) [005] .... 82316.837362: binder_transaction: transaction=1571420 dest_node=1571415 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
93644<...>-5340 ( 788) [005] .... 82316.837365: binder_transaction_alloc_buf: transaction=1571420 data_size=60 offsets_size=0
93645<...>-5340 ( 788) [005] d..4 82316.837368: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
93646<...>-5340 ( 788) [005] d..5 82316.837380: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
93647          <idle>-0     (-----) [004] .n.1 82316.837386: cpu_idle: state=4294967295 cpu_id=4
93648          <idle>-0     (-----) [004] d..2 82316.837395: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
93649           <...>-27571 (-----) [004] .... 82316.837400: binder_transaction_received: transaction=1571420
93650<...>-5340 ( 788) [005] ...1 82316.837404: tracing_mark_write: E|788
93651<...>-5340 ( 788) [005] .... 82316.837409: binder_transaction: transaction=1571421 dest_node=0 dest_proc=27550 dest_thread=27772 reply=1 flags=0x0 code=0x0
93652<...>-5340 ( 788) [005] .... 82316.837412: binder_transaction_alloc_buf: transaction=1571421 data_size=8 offsets_size=0
93653<...>-5340 ( 788) [005] d..2 82316.837413: sched_waking: comm=id.nn.benchmark pid=27772 prio=110 target_cpu=005
93654           <...>-27571 (-----) [004] ...1 82316.837418: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
93655<...>-5340 ( 788) [005] d..3 82316.837420: sched_wakeup: comm=id.nn.benchmark pid=27772 prio=110 target_cpu=005
93656<...>-5340 ( 788) [005] .... 82316.837422: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
93657           <...>-27571 (-----) [004] ...1 82316.837424: tracing_mark_write: E|27550
93658           <...>-27571 (-----) [004] d..2 82316.837452: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93659          <idle>-0     (-----) [004] d..1 82316.837459: cpu_idle: state=0 cpu_id=4
93660<...>-5340 ( 788) [005] d..2 82316.837463: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27772 next_prio=110
93661           <...>-27772 (-----) [005] .... 82316.837473: binder_transaction_received: transaction=1571421
93662           <...>-27772 (-----) [005] ...1 82316.837508: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
93663           <...>-27772 (-----) [005] ...1 82316.837514: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
93664           <...>-27772 (-----) [005] ...1 82316.837540: tracing_mark_write: E|27550
93665           <...>-27772 (-----) [005] ...1 82316.837543: tracing_mark_write: E|27550
93666           <...>-27772 (-----) [005] ...1 82316.837546: tracing_mark_write: E|27550
93667           <...>-27772 (-----) [005] ...1 82316.837732: tracing_mark_write: E|27550
93668           <...>-27772 (-----) [005] d..1 82316.837744: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93669           <...>-27772 (-----) [005] d..2 82316.837760: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93670          <idle>-0     (-----) [004] .n.1 82316.837765: cpu_idle: state=4294967295 cpu_id=4
93671          <idle>-0     (-----) [004] d..2 82316.837772: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
93672           <...>-27550 (-----) [004] d..2 82316.837791: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93673          <idle>-0     (-----) [004] d..1 82316.837800: cpu_idle: state=0 cpu_id=4
93674           <...>-27772 (-----) [005] d..1 82316.837850: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93675           <...>-27772 (-----) [005] d..2 82316.837859: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93676          <idle>-0     (-----) [004] .n.1 82316.837864: cpu_idle: state=4294967295 cpu_id=4
93677          <idle>-0     (-----) [004] d..2 82316.837872: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
93678           <...>-27772 (-----) [005] d..2 82316.837898: sched_switch: prev_comm=id.nn.benchmark prev_pid=27772 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
93679           <...>-27550 (-----) [004] ...1 82316.837904: tracing_mark_write: E|27550
93680           <...>-27550 (-----) [004] ...1 82316.837909: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
93681           <...>-27550 (-----) [004] ...1 82316.837914: tracing_mark_write: E|27550
93682           <...>-27550 (-----) [004] ...1 82316.837918: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
93683          <idle>-0     (-----) [005] d..1 82316.837918: cpu_idle: state=0 cpu_id=5
93684           <...>-27550 (-----) [004] ...1 82316.837923: tracing_mark_write: E|27550
93685           <...>-27550 (-----) [004] ...1 82316.837926: tracing_mark_write: E|27550
93686           <...>-27550 (-----) [004] ...1 82316.838039: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
93687           <...>-27550 (-----) [004] ...1 82316.838096: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
93688           <...>-27550 (-----) [004] ...1 82316.838101: tracing_mark_write: E|27550
93689           <...>-27550 (-----) [004] ...1 82316.838104: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
93690           <...>-27550 (-----) [004] ...1 82316.838110: tracing_mark_write: E|27550
93691           <...>-27550 (-----) [004] ...1 82316.838113: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
93692           <...>-27550 (-----) [004] ...1 82316.838118: tracing_mark_write: E|27550
93693           <...>-27550 (-----) [004] ...1 82316.838121: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
93694          <idle>-0     (-----) [005] .n.1 82316.838214: cpu_idle: state=4294967295 cpu_id=5
93695           <...>-27550 (-----) [004] ...1 82316.838215: tracing_mark_write: E|27550
93696           <...>-27550 (-----) [004] ...1 82316.838220: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
93697          <idle>-0     (-----) [005] d..2 82316.838224: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27773 next_prio=110
93698           <...>-27550 (-----) [004] d..2 82316.838236: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93699          <idle>-0     (-----) [004] d..1 82316.838250: cpu_idle: state=0 cpu_id=4
93700           <...>-27773 (-----) [005] ...1 82316.838284: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
93701          <idle>-0     (-----) [000] ...1 82316.838285: cpu_idle: state=4294967295 cpu_id=0
93702          <idle>-0     (-----) [000] d..1 82316.838290: cpu_idle: state=0 cpu_id=0
93703           <...>-27773 (-----) [005] ...1 82316.838298: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
93704           <...>-27773 (-----) [005] ...1 82316.838302: tracing_mark_write: E|27550
93705    RenderThread-9436  ( 9105) [002] d..2 82316.838313: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
93706           <...>-27773 (-----) [005] .... 82316.838323: binder_transaction: transaction=1571422 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
93707           <...>-27773 (-----) [005] .... 82316.838327: binder_transaction_alloc_buf: transaction=1571422 data_size=48 offsets_size=0
93708           <...>-27773 (-----) [005] ...2 82316.838330: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
93709          <idle>-0     (-----) [002] d..1 82316.838330: cpu_idle: state=0 cpu_id=2
93710           <...>-27773 (-----) [005] d..4 82316.838332: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
93711           <...>-27773 (-----) [005] dn.5 82316.838343: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
93712           <...>-27773 (-----) [005] d..2 82316.838349: sched_switch: prev_comm=id.nn.benchmark prev_pid=27773 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
93713<...>-770 ( 770) [005] .... 82316.838360: binder_transaction_received: transaction=1571422
93714<...>-770 ( 770) [005] ...1 82316.838384: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
93715          <idle>-0     (-----) [002] d.h2 82316.838393: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
93716          <idle>-0     (-----) [002] d.h3 82316.838404: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
93717          <idle>-0     (-----) [002] dnh3 82316.838410: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
93718          <idle>-0     (-----) [002] .n.1 82316.838419: cpu_idle: state=4294967295 cpu_id=2
93719          <idle>-0     (-----) [000] d.h3 82316.838431: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
93720          <idle>-0     (-----) [002] d..2 82316.838432: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
93721          <idle>-0     (-----) [000] d.h4 82316.838454: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
93722          <idle>-0     (-----) [003] .n.1 82316.838460: cpu_idle: state=4294967295 cpu_id=3
93723          <idle>-0     (-----) [001] d.s2 82316.838468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93724<...>-770 ( 770) [005] d.s2 82316.838469: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
93725          <idle>-0     (-----) [000] ...1 82316.838470: cpu_idle: state=4294967295 cpu_id=0
93726          <idle>-0     (-----) [003] d..2 82316.838471: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
93727          <idle>-0     (-----) [000] d..1 82316.838477: cpu_idle: state=0 cpu_id=0
93728          <idle>-0     (-----) [001] dns3 82316.838487: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
93729 kgsl_worker_thr-258   (  258) [003] d.h2 82316.838497: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
93730          <idle>-0     (-----) [001] .n.1 82316.838504: cpu_idle: state=4294967295 cpu_id=1
93731          <idle>-0     (-----) [001] d..2 82316.838514: 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
93732<...>-770 ( 770) [005] d..2 82316.838523: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
93733     rcu_preempt-7     (    7) [001] d..2 82316.838523: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
93734     rcu_preempt-7     (    7) [001] d..3 82316.838543: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
93735 kgsl_worker_thr-258   (  258) [003] d..2 82316.838560: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
93736     rcu_preempt-7     (    7) [001] d.h2 82316.838562: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
93737  kworker/u16:15-1311  ( 1311) [003] d..2 82316.838566: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
93738     rcu_preempt-7     (    7) [001] d..2 82316.838573: 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
93739         rcuop/4-45    (   45) [001] d..2 82316.838579: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
93740<...>-770 ( 770) [005] ...1 82316.838580: tracing_mark_write: E|770
93741<...>-770 ( 770) [005] .... 82316.838588: binder_transaction: transaction=1571423 dest_node=0 dest_proc=27550 dest_thread=27773 reply=1 flags=0x0 code=0x0
93742<...>-770 ( 770) [005] .... 82316.838591: binder_transaction_alloc_buf: transaction=1571423 data_size=168 offsets_size=32
93743<...>-770 ( 770) [005] .... 82316.838598: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
93744  kworker/u16:15-1311  ( 1311) [003] d..3 82316.838608: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
93745         rcuop/4-45    (   45) [001] d..3 82316.838623: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
93746<...>-770 ( 770) [005] d..2 82316.838634: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27773 next_prio=110
93747         rcuop/4-45    (   45) [001] d..2 82316.838635: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
93748           <...>-27773 (-----) [005] .... 82316.838645: binder_transaction_received: transaction=1571423
93749    RenderThread-9436  ( 9105) [002] .... 82316.838696: binder_transaction: transaction=1571424 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
93750    RenderThread-9436  ( 9105) [002] .... 82316.838702: binder_transaction_alloc_buf: transaction=1571424 data_size=192 offsets_size=8
93751  kworker/u16:15-1311  ( 1311) [003] .... 82316.838710: clk_set_rate: l3_cluster0_vote_clk 300000000
93752    RenderThread-9436  ( 9105) [002] d..4 82316.838713: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
93753           <...>-27773 (-----) [005] ...1 82316.838719: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
93754           <...>-27773 (-----) [005] ...1 82316.838724: tracing_mark_write: E|27550
93755    RenderThread-9436  ( 9105) [002] dn.5 82316.838729: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
93756           <...>-27773 (-----) [005] .... 82316.838739: binder_transaction: transaction=1571425 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
93757    RenderThread-9436  ( 9105) [002] d..2 82316.838739: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
93758           <...>-27773 (-----) [005] .... 82316.838742: binder_transaction_alloc_buf: transaction=1571425 data_size=48 offsets_size=0
93759           <...>-27773 (-----) [005] ...2 82316.838744: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
93760           <...>-27773 (-----) [005] d..4 82316.838747: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
93761<...>-13083 ( 8858) [002] .... 82316.838748: binder_transaction_received: transaction=1571424
93762           <...>-27773 (-----) [005] dn.5 82316.838756: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
93763<...>-581 ( 571) [001] d..2 82316.838761: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93764           <...>-27773 (-----) [005] d..2 82316.838770: sched_switch: prev_comm=id.nn.benchmark prev_pid=27773 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
93765          <idle>-0     (-----) [001] d..1 82316.838775: cpu_idle: state=0 cpu_id=1
93766<...>-770 ( 770) [005] .... 82316.838784: binder_transaction_received: transaction=1571425
93767<...>-770 ( 770) [005] ...1 82316.838805: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
93768<...>-770 ( 770) [005] d..2 82316.838864: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
93769          <idle>-0     (-----) [001] dnh2 82316.838889: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
93770          <idle>-0     (-----) [001] .n.1 82316.838896: cpu_idle: state=4294967295 cpu_id=1
93771<...>-770 ( 770) [005] ...1 82316.838898: tracing_mark_write: E|770
93772<...>-770 ( 770) [005] .... 82316.838906: binder_transaction: transaction=1571426 dest_node=0 dest_proc=27550 dest_thread=27773 reply=1 flags=0x0 code=0x0
93773          <idle>-0     (-----) [001] d..2 82316.838907: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
93774<...>-770 ( 770) [005] .... 82316.838909: binder_transaction_alloc_buf: transaction=1571426 data_size=168 offsets_size=32
93775<...>-770 ( 770) [005] .... 82316.838915: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
93776<...>-13083 ( 8858) [002] .... 82316.838924: binder_transaction: transaction=1571427 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
93777<...>-13083 ( 8858) [002] .... 82316.838930: binder_transaction_alloc_buf: transaction=1571427 data_size=68 offsets_size=0
93778<...>-770 ( 770) [005] d..2 82316.838951: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27773 next_prio=110
93779           <...>-27773 (-----) [005] .... 82316.838962: binder_transaction_received: transaction=1571426
93780<...>-581 ( 571) [001] d..2 82316.838967: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93781<...>-13083 ( 8858) [002] d..2 82316.838978: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
93782          <idle>-0     (-----) [001] d..1 82316.838979: cpu_idle: state=0 cpu_id=1
93783    RenderThread-9436  ( 9105) [002] .... 82316.838988: binder_transaction_received: transaction=1571427
93784  kworker/u16:15-1311  ( 1311) [003] d..2 82316.839003: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
93785  kworker/u16:13-1147  ( 1147) [003] d..2 82316.839017: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
93786          <idle>-0     (-----) [001] d.s3 82316.839048: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
93787          <idle>-0     (-----) [001] d.s4 82316.839071: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
93788          <idle>-0     (-----) [001] dns4 82316.839077: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
93789    RenderThread-9436  ( 9105) [002] d..2 82316.839081: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93790          <idle>-0     (-----) [001] .n.1 82316.839084: cpu_idle: state=4294967295 cpu_id=1
93791          <idle>-0     (-----) [001] d..2 82316.839096: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
93792          <idle>-0     (-----) [002] d..1 82316.839101: cpu_idle: state=0 cpu_id=2
93793         rcuop/5-53    (   53) [003] d..2 82316.839149: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93794          <idle>-0     (-----) [003] d..1 82316.839161: cpu_idle: state=0 cpu_id=3
93795  kworker/u16:15-1311  ( 1311) [001] d..2 82316.839183: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93796          <idle>-0     (-----) [001] d..1 82316.839195: cpu_idle: state=0 cpu_id=1
93797           <...>-27773 (-----) [005] ...1 82316.839255: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
93798           <...>-27773 (-----) [005] ...1 82316.839264: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
93799           <...>-27773 (-----) [005] ...1 82316.839268: tracing_mark_write: E|27550
93800           <...>-27773 (-----) [005] .... 82316.839334: binder_transaction: transaction=1571428 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
93801           <...>-27773 (-----) [005] .... 82316.839337: binder_transaction_alloc_buf: transaction=1571428 data_size=556 offsets_size=104
93802           <...>-27773 (-----) [005] ...2 82316.839353: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
93803           <...>-27773 (-----) [005] d..4 82316.839355: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93804           <...>-27773 (-----) [005] dn.5 82316.839367: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93805           <...>-27773 (-----) [005] d..2 82316.839373: sched_switch: prev_comm=id.nn.benchmark prev_pid=27773 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93806<...>-5340 ( 788) [005] .... 82316.839383: binder_transaction_received: transaction=1571428
93807<...>-5340 ( 788) [005] ...1 82316.839433: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
93808<...>-5340 ( 788) [005] d..2 82316.839484: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93809<...>-5340 ( 788) [005] d..2 82316.839509: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27773 next_prio=110
93810          <idle>-0     (-----) [000] dnh2 82316.839513: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93811          <idle>-0     (-----) [000] .n.1 82316.839520: cpu_idle: state=4294967295 cpu_id=0
93812          <idle>-0     (-----) [000] d..2 82316.839532: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
93813           <...>-27773 (-----) [005] d..2 82316.839532: sched_switch: prev_comm=id.nn.benchmark prev_pid=27773 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
93814          <idle>-0     (-----) [005] d..1 82316.839551: cpu_idle: state=0 cpu_id=5
93815<...>-87 ( 87) [000] d..2 82316.839579: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93816          <idle>-0     (-----) [002] d.h4 82316.839590: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93817          <idle>-0     (-----) [000] d..1 82316.839592: cpu_idle: state=0 cpu_id=0
93818          <idle>-0     (-----) [002] dnh5 82316.839610: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93819          <idle>-0     (-----) [002] .n.1 82316.839622: cpu_idle: state=4294967295 cpu_id=2
93820          <idle>-0     (-----) [002] d..2 82316.839635: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
93821<...>-86 ( 86) [002] d.h4 82316.839667: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93822          <idle>-0     (-----) [005] dnh2 82316.839689: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93823          <idle>-0     (-----) [005] .n.1 82316.839693: cpu_idle: state=4294967295 cpu_id=5
93824          <idle>-0     (-----) [005] d..2 82316.839701: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93825<...>-86 ( 86) [002] d..2 82316.839733: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93826          <idle>-0     (-----) [002] d..1 82316.839748: cpu_idle: state=0 cpu_id=2
93827<...>-5340 ( 788) [005] d..1 82316.839754: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
93828          <idle>-0     (-----) [000] dnh2 82316.839792: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93829          <idle>-0     (-----) [000] .n.1 82316.839799: cpu_idle: state=4294967295 cpu_id=0
93830          <idle>-0     (-----) [000] d..2 82316.839808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
93831 neuralnetworks@-13088 (  788) [000] d..2 82316.839866: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93832          <idle>-0     (-----) [000] d..1 82316.839881: cpu_idle: state=0 cpu_id=0
93833          <idle>-0     (-----) [001] d.h2 82316.839889: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
93834          <idle>-0     (-----) [001] dnh3 82316.839902: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
93835          <idle>-0     (-----) [001] .n.1 82316.839910: cpu_idle: state=4294967295 cpu_id=1
93836<...>-5340 ( 788) [005] d..2 82316.839914: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93837          <idle>-0     (-----) [001] d..2 82316.839921: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
93838          <idle>-0     (-----) [000] dnh2 82316.839935: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
93839<...>-5340 ( 788) [005] d..2 82316.839940: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
93840        DispSync-8879  ( 8858) [001] d..1 82316.839942: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
93841          <idle>-0     (-----) [000] .n.1 82316.839943: cpu_idle: state=4294967295 cpu_id=0
93842          <idle>-0     (-----) [005] d..1 82316.839954: cpu_idle: state=0 cpu_id=5
93843          <idle>-0     (-----) [000] d..2 82316.839955: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
93844        DispSync-8879  ( 8858) [001] d..2 82316.839971: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
93845          <idle>-0     (-----) [003] .n.1 82316.839978: cpu_idle: state=4294967295 cpu_id=3
93846          <idle>-0     (-----) [003] d..2 82316.839987: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
93847          <idle>-0     (-----) [002] d.h4 82316.839995: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93848<...>-87 ( 87) [000] d..2 82316.839996: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93849        DispSync-8879  ( 8858) [001] d..2 82316.840006: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93850          <idle>-0     (-----) [002] dnh5 82316.840006: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
93851          <idle>-0     (-----) [000] d..1 82316.840008: cpu_idle: state=0 cpu_id=0
93852          <idle>-0     (-----) [002] .n.1 82316.840016: cpu_idle: state=4294967295 cpu_id=2
93853          <idle>-0     (-----) [001] d..1 82316.840018: cpu_idle: state=0 cpu_id=1
93854   sfEventThread-8882  ( 8858) [003] d..3 82316.840026: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
93855          <idle>-0     (-----) [002] d..2 82316.840027: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
93856   sfEventThread-8882  ( 8858) [003] d..4 82316.840047: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
93857          <idle>-0     (-----) [001] .n.1 82316.840053: cpu_idle: state=4294967295 cpu_id=1
93858<...>-86 ( 86) [002] d..2 82316.840060: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93859          <idle>-0     (-----) [001] d..2 82316.840064: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
93860          <idle>-0     (-----) [002] d..1 82316.840072: cpu_idle: state=0 cpu_id=2
93861   sfEventThread-8882  ( 8858) [003] d..2 82316.840083: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93862          <idle>-0     (-----) [003] d..1 82316.840094: cpu_idle: state=0 cpu_id=3
93863          <idle>-0     (-----) [005] ...1 82316.840282: cpu_idle: state=4294967295 cpu_id=5
93864          <idle>-0     (-----) [005] d..1 82316.840286: cpu_idle: state=0 cpu_id=5
93865  surfaceflinger-8858  ( 8858) [001] d..1 82316.840406: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
93866  surfaceflinger-8858  ( 8858) [001] d..2 82316.840427: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
93867          <idle>-0     (-----) [003] .n.1 82316.840433: cpu_idle: state=4294967295 cpu_id=3
93868          <idle>-0     (-----) [003] d..2 82316.840440: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
93869   sfEventThread-8882  ( 8858) [003] d..2 82316.840476: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93870          <idle>-0     (-----) [003] d..1 82316.840484: cpu_idle: state=0 cpu_id=3
93871  surfaceflinger-8858  ( 8858) [001] ...1 82316.840625: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
93872  surfaceflinger-8858  ( 8858) [001] ...1 82316.840632: tracing_mark_write: E|8858
93873  surfaceflinger-8858  ( 8858) [001] .... 82316.840685: binder_transaction: transaction=1571431 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
93874  surfaceflinger-8858  ( 8858) [001] .... 82316.840690: binder_transaction_alloc_buf: transaction=1571431 data_size=540 offsets_size=96
93875  surfaceflinger-8858  ( 8858) [001] ...2 82316.840714: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
93876  surfaceflinger-8858  ( 8858) [001] d..4 82316.840722: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
93877  surfaceflinger-8858  ( 8858) [001] d..5 82316.840743: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
93878          <idle>-0     (-----) [002] .n.1 82316.840750: cpu_idle: state=4294967295 cpu_id=2
93879          <idle>-0     (-----) [002] d..2 82316.840761: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
93880 [email protected]   (  619) [002] .... 82316.840773: binder_transaction_received: transaction=1571431
93881  surfaceflinger-8858  ( 8858) [001] d..2 82316.840776: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93882          <idle>-0     (-----) [001] d..1 82316.840792: cpu_idle: state=0 cpu_id=1
93883 [email protected]   (  619) [002] ...1 82316.840822: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
93884 [email protected]   (  619) [002] ...1 82316.840944: tracing_mark_write: B|619|HWCSession::PresentDisplay::
93885 [email protected]   (  619) [002] ...1 82316.841125: tracing_mark_write: B|619|HWDeviceDRM::Commit::
93886 [email protected]   (  619) [002] ...1 82316.841139: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
93887          <idle>-0     (-----) [000] ...1 82316.841362: cpu_idle: state=4294967295 cpu_id=0
93888          <idle>-0     (-----) [000] d..1 82316.841367: cpu_idle: state=0 cpu_id=0
93889 [email protected]   (  619) [002] d.h3 82316.841640: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93890          <idle>-0     (-----) [005] dnh2 82316.841665: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
93891          <idle>-0     (-----) [005] .n.1 82316.841669: cpu_idle: state=4294967295 cpu_id=5
93892          <idle>-0     (-----) [005] d..2 82316.841677: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
93893<...>-5340 ( 788) [005] d..1 82316.841731: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93894          <idle>-0     (-----) [000] dnh2 82316.841752: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
93895          <idle>-0     (-----) [000] .n.1 82316.841761: cpu_idle: state=4294967295 cpu_id=0
93896          <idle>-0     (-----) [000] d..2 82316.841772: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
93897<...>-5340 ( 788) [005] d.s3 82316.841800: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
93898          <idle>-0     (-----) [003] d.s2 82316.841801: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
93899          <idle>-0     (-----) [003] dns3 82316.841819: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
93900 neuralnetworks@-13088 (  788) [000] d.h1 82316.841834: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
93901          <idle>-0     (-----) [003] .n.1 82316.841852: cpu_idle: state=4294967295 cpu_id=3
93902          <idle>-0     (-----) [003] d..2 82316.841877: 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
93903 neuralnetworks@-13088 (  788) [000] d..2 82316.841879: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
93904<...>-5340 ( 788) [005] ...1 82316.841885: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
93905<...>-5340 ( 788) [005] ...1 82316.841889: tracing_mark_write: E|788
93906 [email protected]   (  619) [002] d..2 82316.841905: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
93907<...>-5340 ( 788) [005] .... 82316.841905: binder_transaction: transaction=1571432 dest_node=1571429 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
93908<...>-5340 ( 788) [005] .... 82316.841908: binder_transaction_alloc_buf: transaction=1571432 data_size=60 offsets_size=0
93909<...>-8 ( 8) [003] d..2 82316.841910: 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
93910<...>-5340 ( 788) [005] d..4 82316.841912: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
93911          <idle>-0     (-----) [003] d..1 82316.841919: cpu_idle: state=0 cpu_id=3
93912<...>-5340 ( 788) [005] d..5 82316.841924: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
93913          <idle>-0     (-----) [004] .n.1 82316.841930: cpu_idle: state=4294967295 cpu_id=4
93914 [email protected]   (  619) [002] d..3 82316.841935: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
93915          <idle>-0     (-----) [004] d..2 82316.841938: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
93916          <idle>-0     (-----) [003] .n.1 82316.841940: cpu_idle: state=4294967295 cpu_id=3
93917           <...>-27571 (-----) [004] .... 82316.841943: binder_transaction_received: transaction=1571432
93918          <idle>-0     (-----) [003] d..2 82316.841948: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
93919<...>-5340 ( 788) [005] ...1 82316.841948: tracing_mark_write: E|788
93920<...>-5340 ( 788) [005] .... 82316.841954: binder_transaction: transaction=1571433 dest_node=0 dest_proc=27550 dest_thread=27773 reply=1 flags=0x0 code=0x0
93921  kworker/u16:15-1311  ( 1311) [000] d..2 82316.841954: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
93922<...>-5340 ( 788) [005] .... 82316.841956: binder_transaction_alloc_buf: transaction=1571433 data_size=8 offsets_size=0
93923<...>-5340 ( 788) [005] d..2 82316.841958: sched_waking: comm=id.nn.benchmark pid=27773 prio=110 target_cpu=005
93924           <...>-27571 (-----) [004] ...1 82316.841963: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
93925<...>-5340 ( 788) [005] d..3 82316.841965: sched_wakeup: comm=id.nn.benchmark pid=27773 prio=110 target_cpu=005
93926<...>-5340 ( 788) [005] .... 82316.841967: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
93927          <idle>-0     (-----) [000] d..1 82316.841968: cpu_idle: state=0 cpu_id=0
93928           <...>-27571 (-----) [004] ...1 82316.841969: tracing_mark_write: E|27550
93929           <...>-27571 (-----) [004] d..2 82316.841999: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93930          <idle>-0     (-----) [004] d..1 82316.842006: cpu_idle: state=0 cpu_id=4
93931<...>-5340 ( 788) [005] d..2 82316.842011: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27773 next_prio=110
93932           <...>-27773 (-----) [005] .... 82316.842021: binder_transaction_received: transaction=1571433
93933 [email protected]   (  619) [002] ...1 82316.842043: tracing_mark_write: E|619
93934 [email protected]   (  619) [002] ...1 82316.842050: tracing_mark_write: E|619
93935           <...>-27773 (-----) [005] ...1 82316.842058: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
93936           <...>-27773 (-----) [005] ...1 82316.842064: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
93937           <...>-27773 (-----) [005] ...1 82316.842090: tracing_mark_write: E|27550
93938           <...>-27773 (-----) [005] ...1 82316.842094: tracing_mark_write: E|27550
93939           <...>-27773 (-----) [005] ...1 82316.842097: tracing_mark_write: E|27550
93940 [email protected]   (  619) [002] ...1 82316.842116: tracing_mark_write: E|619
93941 crtc_commit:111-321   (  321) [003] d.h1 82316.842153: sched_waking: comm=CCodecWatchdog pid=10161 prio=120 target_cpu=003
93942 [email protected]   (  619) [002] ...1 82316.842164: tracing_mark_write: E|619
93943 crtc_commit:111-321   (  321) [003] d.h2 82316.842174: sched_wakeup: comm=CCodecWatchdog pid=10161 prio=120 target_cpu=003
93944 [email protected]   (  619) [002] .... 82316.842180: binder_transaction: transaction=1571434 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
93945 [email protected]   (  619) [002] .... 82316.842185: binder_transaction_alloc_buf: transaction=1571434 data_size=576 offsets_size=112
93946 [email protected]   (  619) [002] d..2 82316.842236: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
93947 [email protected]   (  619) [002] d..3 82316.842254: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
93948 [email protected]   (  619) [002] .... 82316.842258: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
93949          <idle>-0     (-----) [001] .n.1 82316.842260: cpu_idle: state=4294967295 cpu_id=1
93950          <idle>-0     (-----) [001] d..2 82316.842272: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
93951  surfaceflinger-8858  ( 8858) [001] .... 82316.842280: binder_transaction_received: transaction=1571434
93952           <...>-27773 (-----) [005] ...1 82316.842285: tracing_mark_write: E|27550
93953           <...>-27773 (-----) [005] d..1 82316.842298: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93954           <...>-27773 (-----) [005] d..2 82316.842313: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93955          <idle>-0     (-----) [004] .n.1 82316.842319: cpu_idle: state=4294967295 cpu_id=4
93956          <idle>-0     (-----) [004] d..2 82316.842325: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
93957 [email protected]   (  619) [002] d..2 82316.842344: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
93958           <...>-27550 (-----) [004] d..2 82316.842345: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93959          <idle>-0     (-----) [004] d..1 82316.842353: cpu_idle: state=0 cpu_id=4
93960          <idle>-0     (-----) [002] d..1 82316.842363: cpu_idle: state=0 cpu_id=2
93961           <...>-27773 (-----) [005] d..1 82316.842407: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93962           <...>-27773 (-----) [005] d..2 82316.842416: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
93963          <idle>-0     (-----) [004] .n.1 82316.842422: cpu_idle: state=4294967295 cpu_id=4
93964          <idle>-0     (-----) [004] d..2 82316.842429: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
93965           <...>-27773 (-----) [005] d..2 82316.842457: sched_switch: prev_comm=id.nn.benchmark prev_pid=27773 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
93966           <...>-27550 (-----) [004] ...1 82316.842477: tracing_mark_write: E|27550
93967           <...>-27550 (-----) [004] ...1 82316.842481: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
93968          <idle>-0     (-----) [005] d..1 82316.842485: cpu_idle: state=0 cpu_id=5
93969           <...>-27550 (-----) [004] ...1 82316.842487: tracing_mark_write: E|27550
93970           <...>-27550 (-----) [004] ...1 82316.842490: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
93971           <...>-27550 (-----) [004] ...1 82316.842495: tracing_mark_write: E|27550
93972           <...>-27550 (-----) [004] ...1 82316.842499: tracing_mark_write: E|27550
93973           <...>-27550 (-----) [004] ...1 82316.842611: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
93974           <...>-27550 (-----) [004] ...1 82316.842669: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
93975           <...>-27550 (-----) [004] ...1 82316.842674: tracing_mark_write: E|27550
93976           <...>-27550 (-----) [004] ...1 82316.842677: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
93977           <...>-27550 (-----) [004] ...1 82316.842682: tracing_mark_write: E|27550
93978           <...>-27550 (-----) [004] ...1 82316.842686: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
93979           <...>-27550 (-----) [004] ...1 82316.842690: tracing_mark_write: E|27550
93980           <...>-27550 (-----) [004] ...1 82316.842693: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
93981 crtc_commit:111-321   (  321) [003] d..2 82316.842710: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=CCodecWatchdog next_pid=10161 next_prio=120
93982  surfaceflinger-8858  ( 8858) [001] d..2 82316.842713: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
93983          <idle>-0     (-----) [001] d..1 82316.842727: cpu_idle: state=0 cpu_id=1
93984          <idle>-0     (-----) [005] .n.1 82316.842785: cpu_idle: state=4294967295 cpu_id=5
93985           <...>-27550 (-----) [004] ...1 82316.842786: tracing_mark_write: E|27550
93986           <...>-27550 (-----) [004] ...1 82316.842791: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
93987          <idle>-0     (-----) [005] d..2 82316.842794: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27774 next_prio=110
93988           <...>-27550 (-----) [004] d..2 82316.842808: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
93989  CCodecWatchdog-10161 ( 9748) [003] d..2 82316.842811: sched_switch: prev_comm=CCodecWatchdog prev_pid=10161 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
93990          <idle>-0     (-----) [004] d..1 82316.842823: cpu_idle: state=0 cpu_id=4
93991          <idle>-0     (-----) [003] d..1 82316.842824: cpu_idle: state=0 cpu_id=3
93992           <...>-27774 (-----) [005] ...1 82316.842858: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
93993           <...>-27774 (-----) [005] ...1 82316.842872: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
93994           <...>-27774 (-----) [005] ...1 82316.842876: tracing_mark_write: E|27550
93995           <...>-27774 (-----) [005] .... 82316.842899: binder_transaction: transaction=1571435 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
93996           <...>-27774 (-----) [005] .... 82316.842902: binder_transaction_alloc_buf: transaction=1571435 data_size=48 offsets_size=0
93997           <...>-27774 (-----) [005] ...2 82316.842906: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
93998           <...>-27774 (-----) [005] d..4 82316.842908: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
93999           <...>-27774 (-----) [005] dn.5 82316.842919: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
94000           <...>-27774 (-----) [005] d..2 82316.842926: sched_switch: prev_comm=id.nn.benchmark prev_pid=27774 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
94001<...>-770 ( 770) [005] .... 82316.842936: binder_transaction_received: transaction=1571435
94002<...>-770 ( 770) [005] ...1 82316.842963: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
94003<...>-770 ( 770) [005] d..2 82316.843050: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
94004          <idle>-0     (-----) [000] dnh2 82316.843089: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
94005          <idle>-0     (-----) [000] .n.1 82316.843095: cpu_idle: state=4294967295 cpu_id=0
94006<...>-770 ( 770) [005] ...1 82316.843103: tracing_mark_write: E|770
94007          <idle>-0     (-----) [000] d..2 82316.843106: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
94008<...>-770 ( 770) [005] .... 82316.843111: binder_transaction: transaction=1571436 dest_node=0 dest_proc=27550 dest_thread=27774 reply=1 flags=0x0 code=0x0
94009<...>-770 ( 770) [005] .... 82316.843114: binder_transaction_alloc_buf: transaction=1571436 data_size=168 offsets_size=32
94010<...>-770 ( 770) [005] .... 82316.843121: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
94011<...>-770 ( 770) [005] d..2 82316.843157: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27774 next_prio=110
94012           <...>-27774 (-----) [005] .... 82316.843168: binder_transaction_received: transaction=1571436
94013<...>-581 ( 571) [000] d..2 82316.843205: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94014          <idle>-0     (-----) [000] d..1 82316.843223: cpu_idle: state=0 cpu_id=0
94015           <...>-27774 (-----) [005] ...1 82316.843240: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
94016           <...>-27774 (-----) [005] ...1 82316.843246: tracing_mark_write: E|27550
94017           <...>-27774 (-----) [005] .... 82316.843260: binder_transaction: transaction=1571437 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
94018           <...>-27774 (-----) [005] .... 82316.843263: binder_transaction_alloc_buf: transaction=1571437 data_size=48 offsets_size=0
94019           <...>-27774 (-----) [005] ...2 82316.843265: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
94020           <...>-27774 (-----) [005] d..4 82316.843268: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
94021           <...>-27774 (-----) [005] dn.5 82316.843277: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
94022           <...>-27774 (-----) [005] d..2 82316.843284: sched_switch: prev_comm=id.nn.benchmark prev_pid=27774 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
94023<...>-770 ( 770) [005] .... 82316.843292: binder_transaction_received: transaction=1571437
94024<...>-770 ( 770) [005] ...1 82316.843309: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
94025<...>-770 ( 770) [005] d..2 82316.843370: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
94026          <idle>-0     (-----) [000] dnh2 82316.843394: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
94027          <idle>-0     (-----) [000] .n.1 82316.843402: cpu_idle: state=4294967295 cpu_id=0
94028<...>-770 ( 770) [005] ...1 82316.843405: tracing_mark_write: E|770
94029<...>-770 ( 770) [005] .... 82316.843412: binder_transaction: transaction=1571438 dest_node=0 dest_proc=27550 dest_thread=27774 reply=1 flags=0x0 code=0x0
94030          <idle>-0     (-----) [000] d..2 82316.843413: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
94031<...>-770 ( 770) [005] .... 82316.843414: binder_transaction_alloc_buf: transaction=1571438 data_size=168 offsets_size=32
94032<...>-770 ( 770) [005] .... 82316.843420: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
94033<...>-770 ( 770) [005] d..2 82316.843455: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27774 next_prio=110
94034           <...>-27774 (-----) [005] .... 82316.843467: binder_transaction_received: transaction=1571438
94035<...>-581 ( 571) [000] d..2 82316.843470: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94036          <idle>-0     (-----) [000] d..1 82316.843485: cpu_idle: state=0 cpu_id=0
94037          <idle>-0     (-----) [002] ...1 82316.843674: cpu_idle: state=4294967295 cpu_id=2
94038          <idle>-0     (-----) [002] d..1 82316.843680: cpu_idle: state=0 cpu_id=2
94039           <...>-27774 (-----) [005] ...1 82316.843745: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
94040           <...>-27774 (-----) [005] ...1 82316.843755: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
94041           <...>-27774 (-----) [005] ...1 82316.843758: tracing_mark_write: E|27550
94042           <...>-27774 (-----) [005] .... 82316.843823: binder_transaction: transaction=1571439 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
94043           <...>-27774 (-----) [005] .... 82316.843826: binder_transaction_alloc_buf: transaction=1571439 data_size=556 offsets_size=104
94044           <...>-27774 (-----) [005] ...2 82316.843840: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
94045           <...>-27774 (-----) [005] d..4 82316.843842: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94046           <...>-27774 (-----) [005] dn.5 82316.843854: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94047           <...>-27774 (-----) [005] d..2 82316.843861: sched_switch: prev_comm=id.nn.benchmark prev_pid=27774 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94048<...>-5340 ( 788) [005] .... 82316.843870: binder_transaction_received: transaction=1571439
94049<...>-5340 ( 788) [005] ...1 82316.843918: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
94050<...>-5340 ( 788) [005] d..2 82316.843965: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94051<...>-5340 ( 788) [005] d..2 82316.843990: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27774 next_prio=110
94052          <idle>-0     (-----) [000] dnh2 82316.843994: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94053          <idle>-0     (-----) [000] .n.1 82316.844001: cpu_idle: state=4294967295 cpu_id=0
94054          <idle>-0     (-----) [000] d..2 82316.844012: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
94055           <...>-27774 (-----) [005] d..2 82316.844013: sched_switch: prev_comm=id.nn.benchmark prev_pid=27774 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
94056          <idle>-0     (-----) [005] d..1 82316.844031: cpu_idle: state=0 cpu_id=5
94057<...>-87 ( 87) [000] d..2 82316.844055: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94058          <idle>-0     (-----) [002] d.h4 82316.844065: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94059          <idle>-0     (-----) [000] d..1 82316.844068: cpu_idle: state=0 cpu_id=0
94060          <idle>-0     (-----) [002] dnh5 82316.844085: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94061          <idle>-0     (-----) [002] .n.1 82316.844094: cpu_idle: state=4294967295 cpu_id=2
94062          <idle>-0     (-----) [002] d..2 82316.844107: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
94063<...>-86 ( 86) [002] d..3 82316.844141: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94064          <idle>-0     (-----) [005] dnh2 82316.844163: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94065          <idle>-0     (-----) [005] .n.1 82316.844167: cpu_idle: state=4294967295 cpu_id=5
94066          <idle>-0     (-----) [005] d..2 82316.844176: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94067<...>-86 ( 86) [002] d..2 82316.844201: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94068          <idle>-0     (-----) [002] d..1 82316.844215: cpu_idle: state=0 cpu_id=2
94069<...>-5340 ( 788) [005] d..1 82316.844229: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
94070          <idle>-0     (-----) [000] dnh2 82316.844255: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
94071          <idle>-0     (-----) [000] .n.1 82316.844262: cpu_idle: state=4294967295 cpu_id=0
94072          <idle>-0     (-----) [000] d..2 82316.844271: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
94073 neuralnetworks@-13088 (  788) [000] d..2 82316.844320: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94074          <idle>-0     (-----) [000] d..1 82316.844335: cpu_idle: state=0 cpu_id=0
94075<...>-5340 ( 788) [005] d..2 82316.844375: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94076          <idle>-0     (-----) [000] dnh2 82316.844397: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94077<...>-5340 ( 788) [005] d..2 82316.844401: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
94078          <idle>-0     (-----) [000] .n.1 82316.844404: cpu_idle: state=4294967295 cpu_id=0
94079          <idle>-0     (-----) [000] d..2 82316.844415: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
94080          <idle>-0     (-----) [005] d..1 82316.844416: cpu_idle: state=0 cpu_id=5
94081          <idle>-0     (-----) [002] d.h4 82316.844453: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94082<...>-87 ( 87) [000] d..2 82316.844455: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94083          <idle>-0     (-----) [002] dnh5 82316.844464: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94084          <idle>-0     (-----) [000] d..1 82316.844467: cpu_idle: state=0 cpu_id=0
94085          <idle>-0     (-----) [002] .n.1 82316.844473: cpu_idle: state=4294967295 cpu_id=2
94086          <idle>-0     (-----) [002] d..2 82316.844485: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
94087<...>-86 ( 86) [002] d..2 82316.844518: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94088          <idle>-0     (-----) [002] d..1 82316.844531: cpu_idle: state=0 cpu_id=2
94089          <idle>-0     (-----) [005] ...1 82316.844737: cpu_idle: state=4294967295 cpu_id=5
94090          <idle>-0     (-----) [005] d..1 82316.844740: cpu_idle: state=0 cpu_id=5
94091          <idle>-0     (-----) [003] d.s3 82316.845139: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
94092          <idle>-0     (-----) [001] d.s2 82316.845142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
94093          <idle>-0     (-----) [001] dns3 82316.845162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
94094          <idle>-0     (-----) [003] dns4 82316.845175: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94095          <idle>-0     (-----) [001] .n.1 82316.845177: cpu_idle: state=4294967295 cpu_id=1
94096          <idle>-0     (-----) [001] d..2 82316.845187: 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
94097          <idle>-0     (-----) [003] .n.1 82316.845190: cpu_idle: state=4294967295 cpu_id=3
94098     rcu_preempt-7     (    7) [001] d..2 82316.845200: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
94099          <idle>-0     (-----) [003] d..2 82316.845200: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
94100     rcu_preempt-7     (    7) [001] d..3 82316.845218: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
94101     rcu_preempt-7     (    7) [001] d..2 82316.845234: 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
94102         rcuop/0-10    (   10) [001] d..2 82316.845241: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
94103         rcuop/0-10    (   10) [001] d..3 82316.845277: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
94104         rcuop/0-10    (   10) [001] d..2 82316.845295: 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
94105         rcuop/1-21    (   21) [001] d..2 82316.845325: 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
94106          <idle>-0     (-----) [001] d..1 82316.845340: cpu_idle: state=0 cpu_id=1
94107          <idle>-0     (-----) [000] ...1 82316.845882: cpu_idle: state=4294967295 cpu_id=0
94108          <idle>-0     (-----) [000] d..1 82316.845886: cpu_idle: state=0 cpu_id=0
94109          <idle>-0     (-----) [002] ...1 82316.845942: cpu_idle: state=4294967295 cpu_id=2
94110          <idle>-0     (-----) [002] d..1 82316.845947: cpu_idle: state=0 cpu_id=2
94111          <idle>-0     (-----) [002] d.h4 82316.846135: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94112          <idle>-0     (-----) [005] dnh2 82316.846156: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94113          <idle>-0     (-----) [005] .n.1 82316.846160: cpu_idle: state=4294967295 cpu_id=5
94114          <idle>-0     (-----) [005] d..2 82316.846168: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94115          <idle>-0     (-----) [002] ...1 82316.846174: cpu_idle: state=4294967295 cpu_id=2
94116          <idle>-0     (-----) [002] d..1 82316.846180: cpu_idle: state=0 cpu_id=2
94117<...>-5340 ( 788) [005] d..1 82316.846219: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
94118          <idle>-0     (-----) [000] dnh2 82316.846244: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
94119          <idle>-0     (-----) [000] .n.1 82316.846249: cpu_idle: state=4294967295 cpu_id=0
94120          <idle>-0     (-----) [000] d..2 82316.846262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
94121<...>-5340 ( 788) [005] ...1 82316.846309: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
94122<...>-5340 ( 788) [005] ...1 82316.846313: tracing_mark_write: E|788
94123 neuralnetworks@-13088 (  788) [000] d..2 82316.846328: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94124<...>-5340 ( 788) [005] .... 82316.846328: binder_transaction: transaction=1571442 dest_node=1571440 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
94125<...>-5340 ( 788) [005] .... 82316.846331: binder_transaction_alloc_buf: transaction=1571442 data_size=60 offsets_size=0
94126<...>-5340 ( 788) [005] d..4 82316.846334: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
94127          <idle>-0     (-----) [000] d..1 82316.846341: cpu_idle: state=0 cpu_id=0
94128<...>-5340 ( 788) [005] d..5 82316.846347: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
94129          <idle>-0     (-----) [004] .n.1 82316.846353: cpu_idle: state=4294967295 cpu_id=4
94130          <idle>-0     (-----) [004] d..2 82316.846362: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
94131           <...>-27571 (-----) [004] .... 82316.846367: binder_transaction_received: transaction=1571442
94132<...>-5340 ( 788) [005] ...1 82316.846369: tracing_mark_write: E|788
94133<...>-5340 ( 788) [005] .... 82316.846375: binder_transaction: transaction=1571443 dest_node=0 dest_proc=27550 dest_thread=27774 reply=1 flags=0x0 code=0x0
94134<...>-5340 ( 788) [005] .... 82316.846377: binder_transaction_alloc_buf: transaction=1571443 data_size=8 offsets_size=0
94135<...>-5340 ( 788) [005] d..2 82316.846379: sched_waking: comm=id.nn.benchmark pid=27774 prio=110 target_cpu=005
94136           <...>-27571 (-----) [004] ...1 82316.846385: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
94137<...>-5340 ( 788) [005] d..3 82316.846386: sched_wakeup: comm=id.nn.benchmark pid=27774 prio=110 target_cpu=005
94138<...>-5340 ( 788) [005] .... 82316.846388: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
94139           <...>-27571 (-----) [004] ...1 82316.846391: tracing_mark_write: E|27550
94140           <...>-27571 (-----) [004] d..2 82316.846420: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94141          <idle>-0     (-----) [004] d..1 82316.846427: cpu_idle: state=0 cpu_id=4
94142<...>-5340 ( 788) [005] d..2 82316.846429: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27774 next_prio=110
94143           <...>-27774 (-----) [005] .... 82316.846439: binder_transaction_received: transaction=1571443
94144           <...>-27774 (-----) [005] ...1 82316.846475: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
94145           <...>-27774 (-----) [005] ...1 82316.846481: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
94146  kworker/u16:15-1311  ( 1311) [003] d..3 82316.846498: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
94147           <...>-27774 (-----) [005] ...1 82316.846507: tracing_mark_write: E|27550
94148           <...>-27774 (-----) [005] ...1 82316.846510: tracing_mark_write: E|27550
94149           <...>-27774 (-----) [005] ...1 82316.846513: tracing_mark_write: E|27550
94150  kworker/u16:15-1311  ( 1311) [003] d..4 82316.846525: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
94151  kworker/u16:15-1311  ( 1311) [003] d..3 82316.846542: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
94152  kworker/u16:15-1311  ( 1311) [003] dn.4 82316.846556: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
94153  kworker/u16:15-1311  ( 1311) [003] d..2 82316.846567: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
94154    kworker/3:1H-873   (  873) [003] d..2 82316.846592: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
94155           <...>-27774 (-----) [005] ...1 82316.846699: tracing_mark_write: E|27550
94156           <...>-27774 (-----) [005] d..1 82316.846711: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94157           <...>-27774 (-----) [005] d..2 82316.846727: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94158          <idle>-0     (-----) [004] .n.1 82316.846732: cpu_idle: state=4294967295 cpu_id=4
94159          <idle>-0     (-----) [004] d..2 82316.846739: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
94160           <...>-27550 (-----) [004] d..2 82316.846759: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94161          <idle>-0     (-----) [004] d..1 82316.846769: cpu_idle: state=0 cpu_id=4
94162           <...>-27774 (-----) [005] d..1 82316.846813: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94163           <...>-27774 (-----) [005] d..2 82316.846823: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94164          <idle>-0     (-----) [004] .n.1 82316.846828: cpu_idle: state=4294967295 cpu_id=4
94165          <idle>-0     (-----) [004] d..2 82316.846835: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
94166           <...>-27774 (-----) [005] d..2 82316.846862: sched_switch: prev_comm=id.nn.benchmark prev_pid=27774 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
94167           <...>-27550 (-----) [004] ...1 82316.846868: tracing_mark_write: E|27550
94168           <...>-27550 (-----) [004] ...1 82316.846872: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
94169  kworker/u16:13-1147  ( 1147) [003] d..2 82316.846875: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
94170           <...>-27550 (-----) [004] ...1 82316.846878: tracing_mark_write: E|27550
94171           <...>-27550 (-----) [004] ...1 82316.846881: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
94172          <idle>-0     (-----) [005] d..1 82316.846882: cpu_idle: state=0 cpu_id=5
94173           <...>-27550 (-----) [004] ...1 82316.846885: tracing_mark_write: E|27550
94174           <...>-27550 (-----) [004] ...1 82316.846889: tracing_mark_write: E|27550
94175  kworker/u16:15-1311  ( 1311) [003] d..2 82316.846927: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94176          <idle>-0     (-----) [003] d..1 82316.846940: cpu_idle: state=0 cpu_id=3
94177          <idle>-0     (-----) [001] d.s3 82316.846964: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
94178          <idle>-0     (-----) [001] d.s4 82316.846976: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
94179          <idle>-0     (-----) [001] d.s4 82316.846985: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
94180          <idle>-0     (-----) [003] .n.1 82316.846992: cpu_idle: state=4294967295 cpu_id=3
94181          <idle>-0     (-----) [001] ...1 82316.846994: cpu_idle: state=4294967295 cpu_id=1
94182          <idle>-0     (-----) [001] d..1 82316.847000: cpu_idle: state=0 cpu_id=1
94183           <...>-27550 (-----) [004] ...1 82316.847002: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
94184          <idle>-0     (-----) [003] d..2 82316.847002: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
94185           <...>-27550 (-----) [004] ...1 82316.847060: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
94186           <...>-27550 (-----) [004] ...1 82316.847064: tracing_mark_write: E|27550
94187           <...>-27550 (-----) [004] ...1 82316.847068: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
94188           <...>-27550 (-----) [004] ...1 82316.847073: tracing_mark_write: E|27550
94189           <...>-27550 (-----) [004] ...1 82316.847076: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
94190           <...>-27550 (-----) [004] ...1 82316.847080: tracing_mark_write: E|27550
94191           <...>-27550 (-----) [004] ...1 82316.847084: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
94192  kworker/u16:13-1147  ( 1147) [003] d..2 82316.847126: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
94193          <idle>-0     (-----) [003] d..1 82316.847135: cpu_idle: state=0 cpu_id=3
94194          <idle>-0     (-----) [001] d.s3 82316.847137: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
94195          <idle>-0     (-----) [001] d.s4 82316.847146: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
94196          <idle>-0     (-----) [001] d.s4 82316.847154: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
94197          <idle>-0     (-----) [003] .n.1 82316.847160: cpu_idle: state=4294967295 cpu_id=3
94198          <idle>-0     (-----) [001] ...1 82316.847163: cpu_idle: state=4294967295 cpu_id=1
94199          <idle>-0     (-----) [001] d..1 82316.847168: cpu_idle: state=0 cpu_id=1
94200          <idle>-0     (-----) [003] d..2 82316.847170: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
94201          <idle>-0     (-----) [005] .n.1 82316.847174: cpu_idle: state=4294967295 cpu_id=5
94202           <...>-27550 (-----) [004] ...1 82316.847176: tracing_mark_write: E|27550
94203           <...>-27550 (-----) [004] ...1 82316.847180: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
94204          <idle>-0     (-----) [005] d..2 82316.847183: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27775 next_prio=110
94205  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847197: clk_enable: gcc_ufs_phy_axi_clk_src
94206           <...>-27550 (-----) [004] d..2 82316.847198: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94207          <idle>-0     (-----) [004] d..1 82316.847213: cpu_idle: state=0 cpu_id=4
94208  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847216: clk_enable: gcc_ufs_phy_axi_clk
94209  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847227: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
94210  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847235: clk_enable: gcc_aggre_ufs_phy_axi_clk
94211           <...>-27775 (-----) [005] ...1 82316.847243: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
94212  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847243: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
94213  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847250: clk_enable: gcc_ufs_phy_ahb_clk
94214           <...>-27775 (-----) [005] ...1 82316.847257: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
94215           <...>-27775 (-----) [005] ...1 82316.847260: tracing_mark_write: E|27550
94216  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847261: clk_enable: gcc_ufs_phy_unipro_core_clk_src
94217  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847268: clk_enable: gcc_ufs_phy_unipro_core_clk
94218  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847274: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
94219           <...>-27775 (-----) [005] .... 82316.847280: binder_transaction: transaction=1571444 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
94220  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847282: clk_enable: gcc_ufs_phy_ice_core_clk_src
94221           <...>-27775 (-----) [005] .... 82316.847284: binder_transaction_alloc_buf: transaction=1571444 data_size=48 offsets_size=0
94222           <...>-27775 (-----) [005] ...2 82316.847287: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
94223  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847288: clk_enable: gcc_ufs_phy_ice_core_clk
94224           <...>-27775 (-----) [005] d..4 82316.847289: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
94225  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847294: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
94226           <...>-27775 (-----) [005] dn.5 82316.847299: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
94227           <...>-27775 (-----) [005] d..2 82316.847306: sched_switch: prev_comm=id.nn.benchmark prev_pid=27775 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
94228  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847310: clk_enable: gcc_ufs_mem_clkref_clk
94229<...>-770 ( 770) [005] .... 82316.847316: binder_transaction_received: transaction=1571444
94230  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847319: clk_enable: gcc_ufs_phy_phy_aux_clk_src
94231  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847324: clk_enable: gcc_ufs_phy_phy_aux_clk
94232  kworker/u16:13-1147  ( 1147) [003] d..1 82316.847331: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
94233<...>-770 ( 770) [005] ...1 82316.847338: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
94234  kworker/u16:13-1147  ( 1147) [003] d..3 82316.847377: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94235  kworker/u16:13-1147  ( 1147) [003] d..4 82316.847398: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94236<...>-770 ( 770) [005] d..2 82316.847413: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
94237  kworker/u16:13-1147  ( 1147) [003] d.h2 82316.847454: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
94238<...>-770 ( 770) [005] ...1 82316.847467: tracing_mark_write: E|770
94239<...>-770 ( 770) [005] .... 82316.847476: binder_transaction: transaction=1571445 dest_node=0 dest_proc=27550 dest_thread=27775 reply=1 flags=0x0 code=0x0
94240<...>-770 ( 770) [005] .... 82316.847478: binder_transaction_alloc_buf: transaction=1571445 data_size=168 offsets_size=32
94241<...>-770 ( 770) [005] .... 82316.847485: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
94242<...>-770 ( 770) [005] d..2 82316.847520: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27775 next_prio=110
94243           <...>-27775 (-----) [005] .... 82316.847531: binder_transaction_received: transaction=1571445
94244          <idle>-0     (-----) [000] ...1 82316.847576: cpu_idle: state=4294967295 cpu_id=0
94245          <idle>-0     (-----) [000] d..1 82316.847580: cpu_idle: state=0 cpu_id=0
94246           <...>-27775 (-----) [005] ...1 82316.847600: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
94247           <...>-27775 (-----) [005] ...1 82316.847605: tracing_mark_write: E|27550
94248           <...>-27775 (-----) [005] .... 82316.847619: binder_transaction: transaction=1571446 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
94249           <...>-27775 (-----) [005] .... 82316.847622: binder_transaction_alloc_buf: transaction=1571446 data_size=48 offsets_size=0
94250           <...>-27775 (-----) [005] ...2 82316.847624: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
94251           <...>-27775 (-----) [005] d..4 82316.847626: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
94252           <...>-27775 (-----) [005] dn.5 82316.847636: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
94253           <...>-27775 (-----) [005] d..2 82316.847643: sched_switch: prev_comm=id.nn.benchmark prev_pid=27775 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
94254<...>-770 ( 770) [005] .... 82316.847651: binder_transaction_received: transaction=1571446
94255<...>-770 ( 770) [005] ...1 82316.847668: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
94256          <idle>-0     (-----) [000] ...1 82316.847674: cpu_idle: state=4294967295 cpu_id=0
94257          <idle>-0     (-----) [001] ...1 82316.847678: cpu_idle: state=4294967295 cpu_id=1
94258          <idle>-0     (-----) [000] d..1 82316.847680: cpu_idle: state=0 cpu_id=0
94259          <idle>-0     (-----) [002] ...1 82316.847681: cpu_idle: state=4294967295 cpu_id=2
94260          <idle>-0     (-----) [001] d..1 82316.847682: cpu_idle: state=0 cpu_id=1
94261          <idle>-0     (-----) [002] d..1 82316.847686: cpu_idle: state=0 cpu_id=2
94262  kworker/u16:13-1147  ( 1147) [003] d..2 82316.847690: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
94263  kworker/u16:15-1311  ( 1311) [003] d..2 82316.847701: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
94264<...>-770 ( 770) [005] ...1 82316.847746: tracing_mark_write: E|770
94265<...>-770 ( 770) [005] .... 82316.847754: binder_transaction: transaction=1571447 dest_node=0 dest_proc=27550 dest_thread=27775 reply=1 flags=0x0 code=0x0
94266<...>-770 ( 770) [005] .... 82316.847757: binder_transaction_alloc_buf: transaction=1571447 data_size=168 offsets_size=32
94267<...>-770 ( 770) [005] .... 82316.847762: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
94268<...>-770 ( 770) [005] d..2 82316.847797: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27775 next_prio=110
94269           <...>-27775 (-----) [005] .... 82316.847807: binder_transaction_received: transaction=1571447
94270<...>-581 ( 571) [003] d..2 82316.847822: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94271          <idle>-0     (-----) [003] d..1 82316.847836: cpu_idle: state=0 cpu_id=3
94272          <idle>-0     (-----) [000] d.h5 82316.847907: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
94273          <idle>-0     (-----) [000] d.h6 82316.847928: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
94274          <idle>-0     (-----) [000] d.h5 82316.847933: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
94275          <idle>-0     (-----) [003] .n.1 82316.847935: cpu_idle: state=4294967295 cpu_id=3
94276          <idle>-0     (-----) [003] d..2 82316.847944: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
94277          <idle>-0     (-----) [000] dnh6 82316.847957: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
94278          <idle>-0     (-----) [000] .n.1 82316.847969: cpu_idle: state=4294967295 cpu_id=0
94279          <idle>-0     (-----) [000] d..2 82316.847980: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
94280  crtc_event:111-322   (  322) [003] d..2 82316.847982: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94281          <idle>-0     (-----) [003] d..1 82316.847990: cpu_idle: state=0 cpu_id=3
94282           <...>-27775 (-----) [005] ...1 82316.848077: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
94283           <...>-27775 (-----) [005] ...1 82316.848088: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
94284           <...>-27775 (-----) [005] ...1 82316.848092: tracing_mark_write: E|27550
94285 crtc_commit:111-321   (  321) [000] d..2 82316.848093: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
94286          <idle>-0     (-----) [000] d..1 82316.848103: cpu_idle: state=0 cpu_id=0
94287           <...>-27775 (-----) [005] .... 82316.848155: binder_transaction: transaction=1571448 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
94288           <...>-27775 (-----) [005] .... 82316.848158: binder_transaction_alloc_buf: transaction=1571448 data_size=556 offsets_size=104
94289           <...>-27775 (-----) [005] ...2 82316.848173: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
94290           <...>-27775 (-----) [005] d..4 82316.848176: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94291           <...>-27775 (-----) [005] dn.5 82316.848188: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94292           <...>-27775 (-----) [005] d..2 82316.848195: sched_switch: prev_comm=id.nn.benchmark prev_pid=27775 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94293<...>-5340 ( 788) [005] .... 82316.848205: binder_transaction_received: transaction=1571448
94294<...>-5340 ( 788) [005] ...1 82316.848252: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
94295<...>-5340 ( 788) [005] d..2 82316.848301: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94296<...>-5340 ( 788) [005] d..2 82316.848325: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27775 next_prio=110
94297          <idle>-0     (-----) [000] dnh2 82316.848330: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94298          <idle>-0     (-----) [000] .n.1 82316.848336: cpu_idle: state=4294967295 cpu_id=0
94299          <idle>-0     (-----) [000] d..2 82316.848344: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
94300           <...>-27775 (-----) [005] d..2 82316.848349: sched_switch: prev_comm=id.nn.benchmark prev_pid=27775 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
94301          <idle>-0     (-----) [005] d..1 82316.848366: cpu_idle: state=0 cpu_id=5
94302<...>-87 ( 87) [000] d..2 82316.848387: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94303          <idle>-0     (-----) [002] d.h4 82316.848394: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94304          <idle>-0     (-----) [000] d..1 82316.848395: cpu_idle: state=0 cpu_id=0
94305          <idle>-0     (-----) [002] dnh5 82316.848410: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94306          <idle>-0     (-----) [002] .n.1 82316.848418: cpu_idle: state=4294967295 cpu_id=2
94307          <idle>-0     (-----) [002] d..2 82316.848431: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
94308          <idle>-0     (-----) [000] d.s3 82316.848472: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
94309<...>-86 ( 86) [002] d.H4 82316.848486: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94310          <idle>-0     (-----) [000] dns4 82316.848492: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
94311          <idle>-0     (-----) [000] dns3 82316.848498: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94312          <idle>-0     (-----) [005] dnh2 82316.848509: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94313          <idle>-0     (-----) [000] dns4 82316.848512: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94314          <idle>-0     (-----) [005] .n.1 82316.848513: cpu_idle: state=4294967295 cpu_id=5
94315          <idle>-0     (-----) [005] d..2 82316.848522: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94316          <idle>-0     (-----) [000] dns3 82316.848530: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
94317<...>-86 ( 86) [002] d..2 82316.848558: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94318          <idle>-0     (-----) [002] dn.1 82316.848572: cpu_idle: state=0 cpu_id=2
94319<...>-5340 ( 788) [005] d..1 82316.848574: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
94320          <idle>-0     (-----) [000] dns4 82316.848575: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
94321          <idle>-0     (-----) [002] .n.1 82316.848580: cpu_idle: state=4294967295 cpu_id=2
94322          <idle>-0     (-----) [000] .n.1 82316.848584: cpu_idle: state=4294967295 cpu_id=0
94323          <idle>-0     (-----) [003] dns2 82316.848587: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
94324          <idle>-0     (-----) [000] dn.2 82316.848591: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
94325          <idle>-0     (-----) [002] d..2 82316.848592: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
94326<...>-8 ( 8) [002] d..2 82316.848599: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
94327          <idle>-0     (-----) [000] d..2 82316.848602: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
94328          <idle>-0     (-----) [003] dns3 82316.848603: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
94329          <idle>-0     (-----) [003] .n.1 82316.848611: cpu_idle: state=4294967295 cpu_id=3
94330<...>-8 ( 8) [002] d..3 82316.848618: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
94331  crtc_event:111-322   (  322) [000] d..2 82316.848619: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
94332          <idle>-0     (-----) [003] d..2 82316.848621: 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
94333<...>-8 ( 8) [002] d..2 82316.848630: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
94334     ksoftirqd/3-34    (   34) [003] d.s2 82316.848632: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
94335<...>-46 ( 46) [002] d..2 82316.848644: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
94336     ksoftirqd/3-34    (   34) [003] d.s3 82316.848645: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
94337 neuralnetworks@-13088 (  788) [000] d..2 82316.848671: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94338<...>-46 ( 46) [002] d..3 82316.848688: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
94339          <idle>-0     (-----) [000] d..2 82316.848700: 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
94340<...>-46 ( 46) [002] d..2 82316.848715: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94341<...>-5340 ( 788) [005] d..2 82316.848720: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94342          <idle>-0     (-----) [002] d..1 82316.848727: cpu_idle: state=0 cpu_id=2
94343<...>-8 ( 8) [000] d..2 82316.848730: 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
94344     ksoftirqd/3-34    (   34) [003] d..2 82316.848740: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
94345          <idle>-0     (-----) [000] d..1 82316.848742: cpu_idle: state=0 cpu_id=0
94346          <idle>-0     (-----) [002] dnh2 82316.848755: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
94347    kworker/3:1H-873   (  873) [003] d..2 82316.848755: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
94348<...>-5340 ( 788) [005] d..2 82316.848759: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
94349          <idle>-0     (-----) [002] .n.1 82316.848761: cpu_idle: state=4294967295 cpu_id=2
94350          <idle>-0     (-----) [002] d..2 82316.848772: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
94351          <idle>-0     (-----) [005] d..1 82316.848774: cpu_idle: state=0 cpu_id=5
94352<...>-87 ( 87) [002] d.h4 82316.848806: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94353<...>-87 ( 87) [002] d.h5 82316.848822: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94354<...>-87 ( 87) [002] d..2 82316.848843: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
94355<...>-86 ( 86) [002] d..2 82316.848887: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94356          <idle>-0     (-----) [002] d..1 82316.848899: cpu_idle: state=0 cpu_id=2
94357  kworker/u16:15-1311  ( 1311) [003] d..2 82316.849031: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
94358          <idle>-0     (-----) [001] d.s3 82316.849054: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94359          <idle>-0     (-----) [003] d..1 82316.849054: cpu_idle: state=0 cpu_id=3
94360          <idle>-0     (-----) [001] d.s4 82316.849063: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
94361          <idle>-0     (-----) [001] d.s4 82316.849070: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94362          <idle>-0     (-----) [003] .n.1 82316.849078: cpu_idle: state=4294967295 cpu_id=3
94363          <idle>-0     (-----) [001] ...1 82316.849079: cpu_idle: state=4294967295 cpu_id=1
94364          <idle>-0     (-----) [001] d..1 82316.849084: cpu_idle: state=0 cpu_id=1
94365          <idle>-0     (-----) [003] d..2 82316.849090: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
94366          <idle>-0     (-----) [005] ...1 82316.849094: cpu_idle: state=4294967295 cpu_id=5
94367          <idle>-0     (-----) [005] d..1 82316.849098: cpu_idle: state=0 cpu_id=5
94368  kworker/u16:15-1311  ( 1311) [003] .... 82316.849145: clk_set_rate: l3_cluster0_vote_clk 403200000
94369  kworker/u16:15-1311  ( 1311) [003] d..2 82316.849173: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94370          <idle>-0     (-----) [003] d..1 82316.849186: cpu_idle: state=0 cpu_id=3
94371          <idle>-0     (-----) [000] d.h5 82316.850237: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
94372          <idle>-0     (-----) [000] dnh6 82316.850249: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
94373          <idle>-0     (-----) [000] .n.1 82316.850260: cpu_idle: state=4294967295 cpu_id=0
94374          <idle>-0     (-----) [003] d.h4 82316.850265: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94375          <idle>-0     (-----) [000] d..2 82316.850271: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
94376          <idle>-0     (-----) [003] dnh5 82316.850278: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94377 crtc_commit:111-321   (  321) [000] d..2 82316.850352: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94378          <idle>-0     (-----) [000] d..1 82316.850364: cpu_idle: state=0 cpu_id=0
94379          <idle>-0     (-----) [002] d.h4 82316.850470: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94380          <idle>-0     (-----) [005] dnh2 82316.850491: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94381          <idle>-0     (-----) [003] dns4 82316.850491: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
94382          <idle>-0     (-----) [005] .n.1 82316.850494: cpu_idle: state=4294967295 cpu_id=5
94383          <idle>-0     (-----) [003] dns5 82316.850501: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
94384          <idle>-0     (-----) [005] d..2 82316.850502: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94385          <idle>-0     (-----) [002] ...1 82316.850509: cpu_idle: state=4294967295 cpu_id=2
94386          <idle>-0     (-----) [003] .n.1 82316.850515: cpu_idle: state=4294967295 cpu_id=3
94387          <idle>-0     (-----) [002] d..1 82316.850516: cpu_idle: state=0 cpu_id=2
94388          <idle>-0     (-----) [003] d..2 82316.850529: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
94389          <idle>-0     (-----) [000] d.h5 82316.850532: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
94390    kworker/3:1H-873   (  873) [003] d..2 82316.850543: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
94391          <idle>-0     (-----) [000] dnh6 82316.850544: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
94392<...>-5340 ( 788) [005] d..1 82316.850552: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
94393          <idle>-0     (-----) [000] .n.1 82316.850558: cpu_idle: state=4294967295 cpu_id=0
94394          <idle>-0     (-----) [000] d..2 82316.850569: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
94395  kworker/u16:15-1311  ( 1311) [003] d..2 82316.850571: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94396          <idle>-0     (-----) [003] dnh2 82316.850594: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
94397  crtc_event:111-322   (  322) [000] d..2 82316.850599: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94398          <idle>-0     (-----) [000] d..1 82316.850610: cpu_idle: state=0 cpu_id=0
94399          <idle>-0     (-----) [003] d..2 82316.850611: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
94400<...>-5340 ( 788) [005] ...1 82316.850665: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
94401<...>-5340 ( 788) [005] ...1 82316.850669: tracing_mark_write: E|788
94402<...>-5340 ( 788) [005] .... 82316.850685: binder_transaction: transaction=1571451 dest_node=1571449 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
94403 neuralnetworks@-13088 (  788) [003] d..2 82316.850686: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94404<...>-5340 ( 788) [005] .... 82316.850688: binder_transaction_alloc_buf: transaction=1571451 data_size=60 offsets_size=0
94405<...>-5340 ( 788) [005] d..4 82316.850691: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
94406          <idle>-0     (-----) [003] d..1 82316.850701: cpu_idle: state=0 cpu_id=3
94407<...>-5340 ( 788) [005] d..5 82316.850703: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
94408          <idle>-0     (-----) [004] .n.1 82316.850709: cpu_idle: state=4294967295 cpu_id=4
94409          <idle>-0     (-----) [004] d..2 82316.850717: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
94410           <...>-27571 (-----) [004] .... 82316.850722: binder_transaction_received: transaction=1571451
94411<...>-5340 ( 788) [005] ...1 82316.850726: tracing_mark_write: E|788
94412<...>-5340 ( 788) [005] .... 82316.850733: binder_transaction: transaction=1571452 dest_node=0 dest_proc=27550 dest_thread=27775 reply=1 flags=0x0 code=0x0
94413<...>-5340 ( 788) [005] .... 82316.850735: binder_transaction_alloc_buf: transaction=1571452 data_size=8 offsets_size=0
94414<...>-5340 ( 788) [005] d..2 82316.850737: sched_waking: comm=id.nn.benchmark pid=27775 prio=110 target_cpu=005
94415           <...>-27571 (-----) [004] ...1 82316.850741: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
94416<...>-5340 ( 788) [005] d..3 82316.850743: sched_wakeup: comm=id.nn.benchmark pid=27775 prio=110 target_cpu=005
94417<...>-5340 ( 788) [005] .... 82316.850745: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
94418           <...>-27571 (-----) [004] ...1 82316.850748: tracing_mark_write: E|27550
94419           <...>-27571 (-----) [004] d..2 82316.850775: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94420          <idle>-0     (-----) [004] d..1 82316.850783: cpu_idle: state=0 cpu_id=4
94421<...>-5340 ( 788) [005] d..2 82316.850787: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27775 next_prio=110
94422           <...>-27775 (-----) [005] .... 82316.850797: binder_transaction_received: transaction=1571452
94423           <...>-27775 (-----) [005] ...1 82316.850833: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
94424           <...>-27775 (-----) [005] ...1 82316.850839: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
94425           <...>-27775 (-----) [005] ...1 82316.850865: tracing_mark_write: E|27550
94426           <...>-27775 (-----) [005] ...1 82316.850868: tracing_mark_write: E|27550
94427           <...>-27775 (-----) [005] ...1 82316.850872: tracing_mark_write: E|27550
94428           <...>-27775 (-----) [005] ...1 82316.851059: tracing_mark_write: E|27550
94429           <...>-27775 (-----) [005] d..1 82316.851072: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94430           <...>-27775 (-----) [005] d..2 82316.851087: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94431          <idle>-0     (-----) [004] .n.1 82316.851092: cpu_idle: state=4294967295 cpu_id=4
94432          <idle>-0     (-----) [004] d..2 82316.851099: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
94433           <...>-27550 (-----) [004] d..2 82316.851118: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94434          <idle>-0     (-----) [004] d..1 82316.851127: cpu_idle: state=0 cpu_id=4
94435           <...>-27775 (-----) [005] d..1 82316.851172: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94436           <...>-27775 (-----) [005] d..2 82316.851182: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94437          <idle>-0     (-----) [004] .n.1 82316.851187: cpu_idle: state=4294967295 cpu_id=4
94438          <idle>-0     (-----) [004] d..2 82316.851194: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
94439           <...>-27775 (-----) [005] d..2 82316.851219: sched_switch: prev_comm=id.nn.benchmark prev_pid=27775 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
94440           <...>-27550 (-----) [004] ...1 82316.851228: tracing_mark_write: E|27550
94441           <...>-27550 (-----) [004] ...1 82316.851232: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
94442           <...>-27550 (-----) [004] ...1 82316.851238: tracing_mark_write: E|27550
94443          <idle>-0     (-----) [005] d..1 82316.851240: cpu_idle: state=0 cpu_id=5
94444           <...>-27550 (-----) [004] ...1 82316.851241: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
94445           <...>-27550 (-----) [004] ...1 82316.851245: tracing_mark_write: E|27550
94446           <...>-27550 (-----) [004] ...1 82316.851249: tracing_mark_write: E|27550
94447           <...>-27550 (-----) [004] ...1 82316.851362: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
94448           <...>-27550 (-----) [004] ...1 82316.851420: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
94449           <...>-27550 (-----) [004] ...1 82316.851425: tracing_mark_write: E|27550
94450           <...>-27550 (-----) [004] ...1 82316.851428: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
94451           <...>-27550 (-----) [004] ...1 82316.851434: tracing_mark_write: E|27550
94452           <...>-27550 (-----) [004] ...1 82316.851437: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
94453           <...>-27550 (-----) [004] ...1 82316.851441: tracing_mark_write: E|27550
94454           <...>-27550 (-----) [004] ...1 82316.851444: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
94455          <idle>-0     (-----) [005] .n.1 82316.851531: cpu_idle: state=4294967295 cpu_id=5
94456           <...>-27550 (-----) [004] ...1 82316.851533: tracing_mark_write: E|27550
94457           <...>-27550 (-----) [004] ...1 82316.851537: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
94458          <idle>-0     (-----) [005] d..2 82316.851540: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27776 next_prio=110
94459           <...>-27550 (-----) [004] d..2 82316.851554: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94460          <idle>-0     (-----) [004] d..1 82316.851568: cpu_idle: state=0 cpu_id=4
94461           <...>-27776 (-----) [005] ...1 82316.851601: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
94462           <...>-27776 (-----) [005] ...1 82316.851616: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
94463           <...>-27776 (-----) [005] ...1 82316.851619: tracing_mark_write: E|27550
94464           <...>-27776 (-----) [005] .... 82316.851640: binder_transaction: transaction=1571453 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
94465           <...>-27776 (-----) [005] .... 82316.851644: binder_transaction_alloc_buf: transaction=1571453 data_size=48 offsets_size=0
94466           <...>-27776 (-----) [005] ...2 82316.851647: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
94467           <...>-27776 (-----) [005] d..4 82316.851650: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
94468           <...>-27776 (-----) [005] dn.5 82316.851660: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
94469           <...>-27776 (-----) [005] d..2 82316.851667: sched_switch: prev_comm=id.nn.benchmark prev_pid=27776 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
94470<...>-770 ( 770) [005] .... 82316.851676: binder_transaction_received: transaction=1571453
94471<...>-770 ( 770) [005] ...1 82316.851699: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
94472<...>-770 ( 770) [005] d..2 82316.851769: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
94473          <idle>-0     (-----) [001] d.s2 82316.851801: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
94474          <idle>-0     (-----) [000] dnh2 82316.851814: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
94475          <idle>-0     (-----) [001] dns3 82316.851818: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
94476          <idle>-0     (-----) [000] .n.1 82316.851820: cpu_idle: state=4294967295 cpu_id=0
94477          <idle>-0     (-----) [000] d..2 82316.851833: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
94478          <idle>-0     (-----) [001] .n.1 82316.851837: cpu_idle: state=4294967295 cpu_id=1
94479          <idle>-0     (-----) [001] d..2 82316.851873: 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
94480<...>-770 ( 770) [005] d.H3 82316.851889: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
94481     rcu_preempt-7     (    7) [001] d..2 82316.851909: 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
94482          <idle>-0     (-----) [001] dnh3 82316.851922: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
94483<...>-581 ( 571) [000] d..2 82316.851926: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94484          <idle>-0     (-----) [001] d..2 82316.851931: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
94485          <idle>-0     (-----) [000] d..1 82316.851937: cpu_idle: state=0 cpu_id=0
94486<...>-770 ( 770) [005] ...1 82316.851947: tracing_mark_write: E|770
94487<...>-770 ( 770) [005] .... 82316.851956: binder_transaction: transaction=1571454 dest_node=0 dest_proc=27550 dest_thread=27776 reply=1 flags=0x0 code=0x0
94488<...>-770 ( 770) [005] .... 82316.851958: binder_transaction_alloc_buf: transaction=1571454 data_size=168 offsets_size=32
94489         sugov:0-576   (  576) [001] .... 82316.851964: clk_set_rate: pwrcl_clk 748800000
94490<...>-770 ( 770) [005] .... 82316.851965: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
94491         sugov:0-576   (  576) [001] .... 82316.851978: clk_set_rate: cpu3_pwrcl_clk 825600000
94492         sugov:0-576   (  576) [001] .... 82316.851988: clk_set_rate: cpu2_pwrcl_clk 825600000
94493         sugov:0-576   (  576) [001] .... 82316.851996: clk_set_rate: cpu1_pwrcl_clk 825600000
94494<...>-770 ( 770) [005] d..2 82316.852001: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27776 next_prio=110
94495         sugov:0-576   (  576) [001] .... 82316.852004: clk_set_rate: cpu0_pwrcl_clk 748800000
94496           <...>-27776 (-----) [005] .... 82316.852013: binder_transaction_received: transaction=1571454
94497           <...>-27776 (-----) [005] ...1 82316.852085: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
94498           <...>-27776 (-----) [005] ...1 82316.852091: tracing_mark_write: E|27550
94499           <...>-27776 (-----) [005] .... 82316.852105: binder_transaction: transaction=1571455 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
94500           <...>-27776 (-----) [005] .... 82316.852108: binder_transaction_alloc_buf: transaction=1571455 data_size=48 offsets_size=0
94501           <...>-27776 (-----) [005] ...2 82316.852110: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
94502           <...>-27776 (-----) [005] d..4 82316.852112: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
94503         sugov:0-576   (  576) [001] .... 82316.852118: cpu_frequency: state=748800 cpu_id=0
94504           <...>-27776 (-----) [005] dn.5 82316.852122: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
94505           <...>-27776 (-----) [005] d..2 82316.852129: sched_switch: prev_comm=id.nn.benchmark prev_pid=27776 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
94506<...>-770 ( 770) [005] .... 82316.852138: binder_transaction_received: transaction=1571455
94507         sugov:0-576   (  576) [001] .... 82316.852141: cpu_frequency: state=748800 cpu_id=1
94508         sugov:0-576   (  576) [001] .... 82316.852146: cpu_frequency: state=748800 cpu_id=2
94509         sugov:0-576   (  576) [001] .... 82316.852150: cpu_frequency: state=748800 cpu_id=3
94510<...>-770 ( 770) [005] ...1 82316.852155: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
94511         sugov:0-576   (  576) [001] d..2 82316.852179: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94512          <idle>-0     (-----) [001] d..1 82316.852193: cpu_idle: state=0 cpu_id=1
94513<...>-770 ( 770) [005] d..2 82316.852213: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
94514          <idle>-0     (-----) [000] dnh2 82316.852238: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
94515          <idle>-0     (-----) [000] .n.1 82316.852245: cpu_idle: state=4294967295 cpu_id=0
94516<...>-770 ( 770) [005] ...1 82316.852247: tracing_mark_write: E|770
94517          <idle>-0     (-----) [000] d..2 82316.852254: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
94518<...>-770 ( 770) [005] .... 82316.852255: binder_transaction: transaction=1571456 dest_node=0 dest_proc=27550 dest_thread=27776 reply=1 flags=0x0 code=0x0
94519<...>-770 ( 770) [005] .... 82316.852257: binder_transaction_alloc_buf: transaction=1571456 data_size=168 offsets_size=32
94520<...>-770 ( 770) [005] .... 82316.852263: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
94521<...>-770 ( 770) [005] d..2 82316.852297: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27776 next_prio=110
94522           <...>-27776 (-----) [005] .... 82316.852308: binder_transaction_received: transaction=1571456
94523<...>-581 ( 571) [000] d..2 82316.852315: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94524          <idle>-0     (-----) [000] d..1 82316.852325: cpu_idle: state=0 cpu_id=0
94525          <idle>-0     (-----) [001] d.h2 82316.852362: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
94526          <idle>-0     (-----) [001] dnh3 82316.852378: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
94527          <idle>-0     (-----) [001] .n.1 82316.852386: cpu_idle: state=4294967295 cpu_id=1
94528          <idle>-0     (-----) [001] d..2 82316.852398: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
94529        DispSync-8879  ( 8858) [001] d..1 82316.852420: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
94530        DispSync-8879  ( 8858) [001] d..2 82316.852436: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
94531          <idle>-0     (-----) [003] .n.1 82316.852443: cpu_idle: state=4294967295 cpu_id=3
94532          <idle>-0     (-----) [003] d..2 82316.852456: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
94533        DispSync-8879  ( 8858) [001] d..2 82316.852471: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94534          <idle>-0     (-----) [001] d..1 82316.852483: cpu_idle: state=0 cpu_id=1
94535  appEventThread-8881  ( 8858) [003] d..3 82316.852523: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
94536  appEventThread-8881  ( 8858) [003] d..4 82316.852548: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
94537          <idle>-0     (-----) [000] .n.1 82316.852553: cpu_idle: state=4294967295 cpu_id=0
94538          <idle>-0     (-----) [000] d..2 82316.852564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
94539           <...>-27776 (-----) [005] ...1 82316.852578: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
94540           <...>-27776 (-----) [005] ...1 82316.852588: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
94541           <...>-27776 (-----) [005] ...1 82316.852593: tracing_mark_write: E|27550
94542  appEventThread-8881  ( 8858) [003] d..2 82316.852598: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94543          <idle>-0     (-----) [003] d..1 82316.852613: cpu_idle: state=0 cpu_id=3
94544           <...>-27776 (-----) [005] .... 82316.852652: binder_transaction: transaction=1571457 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
94545           <...>-27776 (-----) [005] .... 82316.852655: binder_transaction_alloc_buf: transaction=1571457 data_size=556 offsets_size=104
94546           <...>-27776 (-----) [005] ...2 82316.852668: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
94547           <...>-27776 (-----) [005] d..4 82316.852671: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94548           <...>-27776 (-----) [005] dn.5 82316.852682: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94549           <...>-27776 (-----) [005] d..2 82316.852689: sched_switch: prev_comm=id.nn.benchmark prev_pid=27776 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94550<...>-5340 ( 788) [005] .... 82316.852699: binder_transaction_received: transaction=1571457
94551<...>-5340 ( 788) [005] ...1 82316.852743: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
94552<...>-5340 ( 788) [005] d..2 82316.852787: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
94553<...>-5340 ( 788) [005] d..2 82316.852826: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27776 next_prio=110
94554<...>-9105 ( 9105) [000] d.h1 82316.852834: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94555           <...>-27776 (-----) [005] d..2 82316.852850: sched_switch: prev_comm=id.nn.benchmark prev_pid=27776 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
94556          <idle>-0     (-----) [005] d..1 82316.852868: cpu_idle: state=0 cpu_id=5
94557<...>-9105 ( 9105) [000] .... 82316.852946: binder_transaction: transaction=1571460 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
94558<...>-9105 ( 9105) [000] .... 82316.852953: binder_transaction_alloc_buf: transaction=1571460 data_size=80 offsets_size=0
94559<...>-9105 ( 9105) [000] d..4 82316.852960: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
94560<...>-9105 ( 9105) [000] d..5 82316.852995: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
94561          <idle>-0     (-----) [001] .n.1 82316.853000: cpu_idle: state=4294967295 cpu_id=1
94562          <idle>-0     (-----) [001] d..2 82316.853014: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
94563<...>-13083 ( 8858) [001] .... 82316.853022: binder_transaction_received: transaction=1571460
94564<...>-9105 ( 9105) [000] d..3 82316.853038: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
94565<...>-13083 ( 8858) [001] d..1 82316.853058: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
94566<...>-9105 ( 9105) [000] d..4 82316.853059: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
94567          <idle>-0     (-----) [002] .n.1 82316.853064: cpu_idle: state=4294967295 cpu_id=2
94568<...>-13083 ( 8858) [001] d..2 82316.853076: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
94569          <idle>-0     (-----) [002] d..2 82316.853081: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
94570          <idle>-0     (-----) [003] .n.1 82316.853083: cpu_idle: state=4294967295 cpu_id=3
94571          <idle>-0     (-----) [003] d..2 82316.853094: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
94572<...>-13083 ( 8858) [001] d..2 82316.853123: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94573          <idle>-0     (-----) [001] d..1 82316.853136: cpu_idle: state=0 cpu_id=1
94574  appEventThread-8881  ( 8858) [003] d..2 82316.853141: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94575          <idle>-0     (-----) [003] d..1 82316.853152: cpu_idle: state=0 cpu_id=3
94576    RenderThread-9436  ( 9105) [002] d..2 82316.853158: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94577          <idle>-0     (-----) [002] d..1 82316.853173: cpu_idle: state=0 cpu_id=2
94578<...>-9105 ( 9105) [000] d..3 82316.853199: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
94579<...>-9105 ( 9105) [000] d..4 82316.853219: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
94580          <idle>-0     (-----) [002] .n.1 82316.853225: cpu_idle: state=4294967295 cpu_id=2
94581          <idle>-0     (-----) [002] d..2 82316.853238: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
94582<...>-9105 ( 9105) [000] d..2 82316.853243: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
94583<...>-87 ( 87) [000] d..2 82316.853293: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94584    RenderThread-9436  ( 9105) [002] d.h3 82316.853296: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94585          <idle>-0     (-----) [000] d..1 82316.853307: cpu_idle: state=0 cpu_id=0
94586    RenderThread-9436  ( 9105) [002] dnh4 82316.853320: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94587    RenderThread-9436  ( 9105) [002] d..2 82316.853334: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
94588<...>-86 ( 86) [002] d..2 82316.853363: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
94589    RenderThread-9436  ( 9105) [002] d.h5 82316.853384: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94590          <idle>-0     (-----) [005] dnh2 82316.853406: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94591          <idle>-0     (-----) [005] .n.1 82316.853411: cpu_idle: state=4294967295 cpu_id=5
94592          <idle>-0     (-----) [005] d..2 82316.853419: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94593<...>-5340 ( 788) [005] d..1 82316.853471: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
94594    RenderThread-9436  ( 9105) [002] dnh1 82316.853512: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
94595    RenderThread-9436  ( 9105) [002] d..2 82316.853523: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
94596 neuralnetworks@-13088 (  788) [002] d..2 82316.853572: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
94597    RenderThread-9436  ( 9105) [002] d..1 82316.853604: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
94598    RenderThread-9436  ( 9105) [002] d..2 82316.853622: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
94599          <idle>-0     (-----) [000] .n.1 82316.853629: cpu_idle: state=4294967295 cpu_id=0
94600<...>-5340 ( 788) [005] d..2 82316.853633: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94601          <idle>-0     (-----) [000] d..2 82316.853640: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
94602<...>-9105 ( 9105) [000] d.h1 82316.853664: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94603<...>-5340 ( 788) [005] d..2 82316.853669: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
94604          <idle>-0     (-----) [005] d..1 82316.853683: cpu_idle: state=0 cpu_id=5
94605    RenderThread-9436  ( 9105) [002] .... 82316.853701: binder_transaction: transaction=1571461 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
94606    RenderThread-9436  ( 9105) [002] .... 82316.853706: binder_transaction_alloc_buf: transaction=1571461 data_size=104 offsets_size=0
94607    RenderThread-9436  ( 9105) [002] d..4 82316.853712: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
94608    RenderThread-9436  ( 9105) [002] dn.5 82316.853733: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
94609<...>-9105 ( 9105) [000] d..2 82316.853735: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
94610    RenderThread-9436  ( 9105) [002] d..2 82316.853744: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
94611<...>-13083 ( 8858) [002] .... 82316.853753: binder_transaction_received: transaction=1571461
94612<...>-13083 ( 8858) [002] d.h4 82316.853776: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94613<...>-87 ( 87) [000] d..2 82316.853784: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94614          <idle>-0     (-----) [000] d..1 82316.853796: cpu_idle: state=0 cpu_id=0
94615<...>-13083 ( 8858) [002] d.h5 82316.853806: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
94616          <idle>-0     (-----) [000] .n.1 82316.853813: cpu_idle: state=4294967295 cpu_id=0
94617          <idle>-0     (-----) [000] d..2 82316.853824: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
94618<...>-86 ( 86) [000] d..2 82316.853868: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94619          <idle>-0     (-----) [000] d..1 82316.853877: cpu_idle: state=0 cpu_id=0
94620<...>-13083 ( 8858) [002] .... 82316.853894: binder_transaction: transaction=1571462 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
94621<...>-13083 ( 8858) [002] .... 82316.853899: binder_transaction_alloc_buf: transaction=1571462 data_size=52 offsets_size=8
94622<...>-13083 ( 8858) [002] d..2 82316.853956: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
94623    RenderThread-9436  ( 9105) [002] .... 82316.853966: binder_transaction_received: transaction=1571462
94624    RenderThread-9436  ( 9105) [002] d..2 82316.855067: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
94625          <idle>-0     (-----) [002] d..1 82316.855086: cpu_idle: state=0 cpu_id=2
94626          <idle>-0     (-----) [000] d.s2 82316.855144: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
94627          <idle>-0     (-----) [002] d.h2 82316.855147: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
94628          <idle>-0     (-----) [002] d.h3 82316.855159: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
94629          <idle>-0     (-----) [002] dnh3 82316.855165: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
94630          <idle>-0     (-----) [000] dns3 82316.855166: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
94631          <idle>-0     (-----) [002] .n.1 82316.855174: cpu_idle: state=4294967295 cpu_id=2
94632          <idle>-0     (-----) [000] dnH4 82316.855188: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
94633          <idle>-0     (-----) [002] d..2 82316.855189: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
94634          <idle>-0     (-----) [000] dnH5 82316.855209: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
94635          <idle>-0     (-----) [003] .n.1 82316.855215: cpu_idle: state=4294967295 cpu_id=3
94636          <idle>-0     (-----) [003] d..2 82316.855227: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
94637          <idle>-0     (-----) [000] .n.1 82316.855232: cpu_idle: state=4294967295 cpu_id=0
94638          <idle>-0     (-----) [000] d..2 82316.855243: 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
94639<...>-8 ( 8) [000] d..2 82316.855279: 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
94640 kgsl_worker_thr-258   (  258) [003] d..2 82316.855282: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94641          <idle>-0     (-----) [000] d..1 82316.855296: cpu_idle: state=0 cpu_id=0
94642 kgsl_worker_thr-258   (  258) [003] d..3 82316.855315: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
94643          <idle>-0     (-----) [000] .n.1 82316.855320: cpu_idle: state=4294967295 cpu_id=0
94644          <idle>-0     (-----) [000] d..2 82316.855333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
94645 kgsl_worker_thr-258   (  258) [003] d..2 82316.855344: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94646          <idle>-0     (-----) [003] d..1 82316.855354: cpu_idle: state=0 cpu_id=3
94647    RenderThread-9436  ( 9105) [002] d.h3 82316.855408: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94648          <idle>-0     (-----) [005] dnh2 82316.855433: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94649          <idle>-0     (-----) [005] .n.1 82316.855438: cpu_idle: state=4294967295 cpu_id=5
94650          <idle>-0     (-----) [005] d..2 82316.855446: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94651    RenderThread-9436  ( 9105) [002] .... 82316.855461: binder_transaction: transaction=1571463 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
94652    RenderThread-9436  ( 9105) [002] .... 82316.855466: binder_transaction_alloc_buf: transaction=1571463 data_size=192 offsets_size=8
94653    RenderThread-9436  ( 9105) [002] d..4 82316.855477: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
94654    RenderThread-9436  ( 9105) [002] dn.5 82316.855492: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
94655<...>-5340 ( 788) [005] d..1 82316.855499: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
94656    RenderThread-9436  ( 9105) [002] d..2 82316.855503: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
94657<...>-13083 ( 8858) [002] .... 82316.855512: binder_transaction_received: transaction=1571463
94658<...>-13083 ( 8858) [002] d.h1 82316.855530: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
94659  kworker/u16:15-1311  ( 1311) [000] d..2 82316.855545: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
94660          <idle>-0     (-----) [000] d..1 82316.855592: cpu_idle: state=0 cpu_id=0
94661<...>-5340 ( 788) [005] ...1 82316.855607: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
94662<...>-5340 ( 788) [005] ...1 82316.855611: tracing_mark_write: E|788
94663<...>-5340 ( 788) [005] .... 82316.855627: binder_transaction: transaction=1571464 dest_node=1571458 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
94664<...>-5340 ( 788) [005] .... 82316.855631: binder_transaction_alloc_buf: transaction=1571464 data_size=60 offsets_size=0
94665<...>-5340 ( 788) [005] d..4 82316.855634: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
94666<...>-5340 ( 788) [005] d..5 82316.855648: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
94667          <idle>-0     (-----) [004] .n.1 82316.855654: cpu_idle: state=4294967295 cpu_id=4
94668          <idle>-0     (-----) [004] d..2 82316.855662: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
94669           <...>-27571 (-----) [004] .... 82316.855667: binder_transaction_received: transaction=1571464
94670<...>-5340 ( 788) [005] ...1 82316.855671: tracing_mark_write: E|788
94671<...>-5340 ( 788) [005] .... 82316.855677: binder_transaction: transaction=1571465 dest_node=0 dest_proc=27550 dest_thread=27776 reply=1 flags=0x0 code=0x0
94672<...>-5340 ( 788) [005] .... 82316.855679: binder_transaction_alloc_buf: transaction=1571465 data_size=8 offsets_size=0
94673<...>-5340 ( 788) [005] d..2 82316.855681: sched_waking: comm=id.nn.benchmark pid=27776 prio=110 target_cpu=005
94674           <...>-27571 (-----) [004] ...1 82316.855687: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
94675<...>-5340 ( 788) [005] d..3 82316.855688: sched_wakeup: comm=id.nn.benchmark pid=27776 prio=110 target_cpu=005
94676<...>-5340 ( 788) [005] .... 82316.855690: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
94677           <...>-27571 (-----) [004] ...1 82316.855693: tracing_mark_write: E|27550
94678           <...>-27571 (-----) [004] d..2 82316.855721: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94679          <idle>-0     (-----) [004] d..1 82316.855728: cpu_idle: state=0 cpu_id=4
94680<...>-5340 ( 788) [005] d..2 82316.855732: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27776 next_prio=110
94681<...>-13083 ( 8858) [002] .... 82316.855734: binder_transaction: transaction=1571466 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
94682<...>-13083 ( 8858) [002] .... 82316.855740: binder_transaction_alloc_buf: transaction=1571466 data_size=68 offsets_size=0
94683           <...>-27776 (-----) [005] .... 82316.855743: binder_transaction_received: transaction=1571465
94684           <...>-27776 (-----) [005] ...1 82316.855782: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
94685<...>-13083 ( 8858) [002] d..2 82316.855787: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
94686           <...>-27776 (-----) [005] ...1 82316.855789: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
94687           <...>-27776 (-----) [005] ...1 82316.855815: tracing_mark_write: E|27550
94688           <...>-27776 (-----) [005] ...1 82316.855819: tracing_mark_write: E|27550
94689           <...>-27776 (-----) [005] ...1 82316.855822: tracing_mark_write: E|27550
94690 neuralnetworks@-13088 (  788) [002] d..2 82316.855825: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
94691    RenderThread-9436  ( 9105) [002] .... 82316.855835: binder_transaction_received: transaction=1571466
94692    RenderThread-9436  ( 9105) [002] d..2 82316.855971: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94693          <idle>-0     (-----) [002] d..1 82316.855990: cpu_idle: state=0 cpu_id=2
94694           <...>-27776 (-----) [005] ...1 82316.856017: tracing_mark_write: E|27550
94695           <...>-27776 (-----) [005] d..1 82316.856032: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94696           <...>-27776 (-----) [005] d..2 82316.856049: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94697          <idle>-0     (-----) [004] .n.1 82316.856054: cpu_idle: state=4294967295 cpu_id=4
94698          <idle>-0     (-----) [004] d..2 82316.856061: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
94699           <...>-27550 (-----) [004] d..2 82316.856080: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94700          <idle>-0     (-----) [004] d..1 82316.856089: cpu_idle: state=0 cpu_id=4
94701           <...>-27776 (-----) [005] d..1 82316.856146: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94702           <...>-27776 (-----) [005] d..2 82316.856156: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94703          <idle>-0     (-----) [004] .n.1 82316.856161: cpu_idle: state=4294967295 cpu_id=4
94704          <idle>-0     (-----) [004] d..2 82316.856169: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
94705           <...>-27776 (-----) [005] d..2 82316.856196: sched_switch: prev_comm=id.nn.benchmark prev_pid=27776 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
94706           <...>-27550 (-----) [004] ...1 82316.856203: tracing_mark_write: E|27550
94707           <...>-27550 (-----) [004] ...1 82316.856207: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
94708           <...>-27550 (-----) [004] ...1 82316.856213: tracing_mark_write: E|27550
94709           <...>-27550 (-----) [004] ...1 82316.856217: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
94710          <idle>-0     (-----) [005] d..1 82316.856217: cpu_idle: state=0 cpu_id=5
94711           <...>-27550 (-----) [004] ...1 82316.856221: tracing_mark_write: E|27550
94712           <...>-27550 (-----) [004] ...1 82316.856226: tracing_mark_write: E|27550
94713           <...>-27550 (-----) [004] ...1 82316.856339: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
94714          <idle>-0     (-----) [001] d.h2 82316.856354: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
94715          <idle>-0     (-----) [001] dnh3 82316.856366: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
94716          <idle>-0     (-----) [001] .n.1 82316.856375: cpu_idle: state=4294967295 cpu_id=1
94717          <idle>-0     (-----) [001] d..2 82316.856387: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
94718           <...>-27550 (-----) [004] ...1 82316.856397: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
94719           <...>-27550 (-----) [004] ...1 82316.856401: tracing_mark_write: E|27550
94720        DispSync-8879  ( 8858) [001] d..1 82316.856403: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
94721           <...>-27550 (-----) [004] ...1 82316.856405: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
94722           <...>-27550 (-----) [004] ...1 82316.856410: tracing_mark_write: E|27550
94723           <...>-27550 (-----) [004] ...1 82316.856414: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
94724           <...>-27550 (-----) [004] ...1 82316.856418: tracing_mark_write: E|27550
94725        DispSync-8879  ( 8858) [001] d..2 82316.856420: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
94726           <...>-27550 (-----) [004] ...1 82316.856421: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
94727          <idle>-0     (-----) [003] .n.1 82316.856426: cpu_idle: state=4294967295 cpu_id=3
94728          <idle>-0     (-----) [003] d..2 82316.856435: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
94729        DispSync-8879  ( 8858) [001] d..2 82316.856452: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94730          <idle>-0     (-----) [001] d..1 82316.856462: cpu_idle: state=0 cpu_id=1
94731   sfEventThread-8882  ( 8858) [003] d..3 82316.856475: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
94732   sfEventThread-8882  ( 8858) [003] d..4 82316.856496: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
94733          <idle>-0     (-----) [001] .n.1 82316.856502: cpu_idle: state=4294967295 cpu_id=1
94734          <idle>-0     (-----) [001] d..2 82316.856510: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
94735          <idle>-0     (-----) [005] .n.1 82316.856518: cpu_idle: state=4294967295 cpu_id=5
94736           <...>-27550 (-----) [004] ...1 82316.856519: tracing_mark_write: E|27550
94737           <...>-27550 (-----) [004] ...1 82316.856523: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
94738          <idle>-0     (-----) [005] d..2 82316.856527: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27777 next_prio=110
94739   sfEventThread-8882  ( 8858) [003] d..2 82316.856531: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94740           <...>-27550 (-----) [004] d..2 82316.856540: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94741          <idle>-0     (-----) [003] d..1 82316.856541: cpu_idle: state=0 cpu_id=3
94742          <idle>-0     (-----) [004] d..1 82316.856555: cpu_idle: state=0 cpu_id=4
94743           <...>-27777 (-----) [005] ...1 82316.856590: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
94744           <...>-27777 (-----) [005] ...1 82316.856604: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
94745           <...>-27777 (-----) [005] ...1 82316.856608: tracing_mark_write: E|27550
94746           <...>-27777 (-----) [005] .... 82316.856630: binder_transaction: transaction=1571467 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
94747           <...>-27777 (-----) [005] .... 82316.856633: binder_transaction_alloc_buf: transaction=1571467 data_size=48 offsets_size=0
94748           <...>-27777 (-----) [005] ...2 82316.856637: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
94749           <...>-27777 (-----) [005] d..4 82316.856639: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
94750           <...>-27777 (-----) [005] dn.5 82316.856650: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
94751           <...>-27777 (-----) [005] d..2 82316.856657: sched_switch: prev_comm=id.nn.benchmark prev_pid=27777 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
94752<...>-770 ( 770) [005] .... 82316.856667: binder_transaction_received: transaction=1571467
94753<...>-770 ( 770) [005] ...1 82316.856691: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
94754<...>-770 ( 770) [005] d..2 82316.856775: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
94755  surfaceflinger-8858  ( 8858) [001] d.h1 82316.856819: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
94756<...>-770 ( 770) [005] ...1 82316.856833: tracing_mark_write: E|770
94757<...>-770 ( 770) [005] .... 82316.856841: binder_transaction: transaction=1571468 dest_node=0 dest_proc=27550 dest_thread=27777 reply=1 flags=0x0 code=0x0
94758<...>-770 ( 770) [005] .... 82316.856843: binder_transaction_alloc_buf: transaction=1571468 data_size=168 offsets_size=32
94759<...>-770 ( 770) [005] .... 82316.856850: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
94760<...>-770 ( 770) [005] d..2 82316.856887: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27777 next_prio=110
94761  surfaceflinger-8858  ( 8858) [001] d..1 82316.856894: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
94762           <...>-27777 (-----) [005] .... 82316.856898: binder_transaction_received: transaction=1571468
94763  surfaceflinger-8858  ( 8858) [001] d..2 82316.856914: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
94764          <idle>-0     (-----) [003] .n.1 82316.856919: cpu_idle: state=4294967295 cpu_id=3
94765          <idle>-0     (-----) [003] d..2 82316.856927: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
94766           <...>-27777 (-----) [005] ...1 82316.856972: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
94767           <...>-27777 (-----) [005] ...1 82316.856978: tracing_mark_write: E|27550
94768   sfEventThread-8882  ( 8858) [003] d..2 82316.856980: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
94769           <...>-27777 (-----) [005] .... 82316.856992: binder_transaction: transaction=1571469 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
94770           <...>-27777 (-----) [005] .... 82316.856994: binder_transaction_alloc_buf: transaction=1571469 data_size=48 offsets_size=0
94771           <...>-27777 (-----) [005] ...2 82316.856997: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
94772           <...>-27777 (-----) [005] d..4 82316.856999: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
94773           <...>-27777 (-----) [005] dn.5 82316.857009: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
94774           <...>-27777 (-----) [005] d..2 82316.857015: sched_switch: prev_comm=id.nn.benchmark prev_pid=27777 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
94775<...>-770 ( 770) [005] .... 82316.857023: binder_transaction_received: transaction=1571469
94776<...>-770 ( 770) [005] ...1 82316.857039: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
94777<...>-581 ( 571) [003] d..2 82316.857079: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94778          <idle>-0     (-----) [003] d..1 82316.857092: cpu_idle: state=0 cpu_id=3
94779<...>-770 ( 770) [005] d..2 82316.857100: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
94780          <idle>-0     (-----) [003] dnh2 82316.857125: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
94781  surfaceflinger-8858  ( 8858) [001] ...1 82316.857128: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
94782          <idle>-0     (-----) [003] .n.1 82316.857132: cpu_idle: state=4294967295 cpu_id=3
94783<...>-770 ( 770) [005] ...1 82316.857134: tracing_mark_write: E|770
94784  surfaceflinger-8858  ( 8858) [001] ...1 82316.857136: tracing_mark_write: E|8858
94785          <idle>-0     (-----) [003] d..2 82316.857141: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
94786<...>-770 ( 770) [005] .... 82316.857142: binder_transaction: transaction=1571470 dest_node=0 dest_proc=27550 dest_thread=27777 reply=1 flags=0x0 code=0x0
94787<...>-770 ( 770) [005] .... 82316.857144: binder_transaction_alloc_buf: transaction=1571470 data_size=168 offsets_size=32
94788<...>-770 ( 770) [005] .... 82316.857150: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
94789<...>-770 ( 770) [005] d..2 82316.857184: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27777 next_prio=110
94790           <...>-27777 (-----) [005] .... 82316.857195: binder_transaction_received: transaction=1571470
94791  surfaceflinger-8858  ( 8858) [001] .... 82316.857197: binder_transaction: transaction=1571471 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
94792<...>-581 ( 571) [003] d..2 82316.857201: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94793  surfaceflinger-8858  ( 8858) [001] .... 82316.857203: binder_transaction_alloc_buf: transaction=1571471 data_size=540 offsets_size=96
94794          <idle>-0     (-----) [003] d..1 82316.857211: cpu_idle: state=0 cpu_id=3
94795  surfaceflinger-8858  ( 8858) [001] ...2 82316.857233: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
94796  surfaceflinger-8858  ( 8858) [001] d..4 82316.857242: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
94797  surfaceflinger-8858  ( 8858) [001] d..5 82316.857263: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
94798          <idle>-0     (-----) [002] .n.1 82316.857270: cpu_idle: state=4294967295 cpu_id=2
94799          <idle>-0     (-----) [002] d..2 82316.857282: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
94800 [email protected]   (  619) [002] .... 82316.857295: binder_transaction_received: transaction=1571471
94801  surfaceflinger-8858  ( 8858) [001] d..2 82316.857298: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94802          <idle>-0     (-----) [001] d..1 82316.857312: cpu_idle: state=0 cpu_id=1
94803 [email protected]   (  619) [002] ...1 82316.857349: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
94804           <...>-27777 (-----) [005] ...1 82316.857471: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
94805 [email protected]   (  619) [002] ...1 82316.857475: tracing_mark_write: B|619|HWCSession::PresentDisplay::
94806           <...>-27777 (-----) [005] ...1 82316.857481: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
94807           <...>-27777 (-----) [005] ...1 82316.857484: tracing_mark_write: E|27550
94808           <...>-27777 (-----) [005] .... 82316.857547: binder_transaction: transaction=1571472 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
94809           <...>-27777 (-----) [005] .... 82316.857550: binder_transaction_alloc_buf: transaction=1571472 data_size=556 offsets_size=104
94810           <...>-27777 (-----) [005] ...2 82316.857565: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
94811           <...>-27777 (-----) [005] d..4 82316.857568: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94812           <...>-27777 (-----) [005] dn.5 82316.857579: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94813           <...>-27777 (-----) [005] d..2 82316.857586: sched_switch: prev_comm=id.nn.benchmark prev_pid=27777 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94814<...>-5340 ( 788) [005] .... 82316.857596: binder_transaction_received: transaction=1571472
94815<...>-5340 ( 788) [005] ...1 82316.857644: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
94816 [email protected]   (  619) [002] ...1 82316.857670: tracing_mark_write: B|619|HWDeviceDRM::Commit::
94817 [email protected]   (  619) [002] ...1 82316.857685: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
94818<...>-5340 ( 788) [005] d..2 82316.857688: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
94819<...>-5340 ( 788) [005] d..2 82316.857726: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27777 next_prio=110
94820 [email protected]   (  619) [002] d.h1 82316.857733: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
94821           <...>-27777 (-----) [005] d..2 82316.857748: sched_switch: prev_comm=id.nn.benchmark prev_pid=27777 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
94822          <idle>-0     (-----) [005] d..1 82316.857767: cpu_idle: state=0 cpu_id=5
94823 [email protected]   (  619) [002] d..2 82316.858411: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
94824 [email protected]   (  619) [002] d..3 82316.858439: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
94825          <idle>-0     (-----) [000] .n.1 82316.858444: cpu_idle: state=4294967295 cpu_id=0
94826          <idle>-0     (-----) [000] d..2 82316.858464: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
94827          <idle>-0     (-----) [001] d.s2 82316.858477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
94828          <idle>-0     (-----) [003] d.s3 82316.858479: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
94829          <idle>-0     (-----) [003] dns4 82316.858495: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
94830          <idle>-0     (-----) [001] dns3 82316.858499: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
94831          <idle>-0     (-----) [001] dns3 82316.858506: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
94832          <idle>-0     (-----) [003] .n.1 82316.858516: cpu_idle: state=4294967295 cpu_id=3
94833          <idle>-0     (-----) [003] d..2 82316.858527: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
94834          <idle>-0     (-----) [001] dns4 82316.858543: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
94835     kworker/3:1-25210 (25210) [003] d..2 82316.858563: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
94836          <idle>-0     (-----) [001] .n.1 82316.858565: cpu_idle: state=4294967295 cpu_id=1
94837          <idle>-0     (-----) [001] d..2 82316.858576: 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
94838     rcu_preempt-7     (    7) [001] d..2 82316.858588: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
94839 [email protected]   (  619) [002] ...1 82316.858607: tracing_mark_write: E|619
94840     rcu_preempt-7     (    7) [001] d..3 82316.858608: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
94841 [email protected]   (  619) [002] ...1 82316.858615: tracing_mark_write: E|619
94842     rcu_preempt-7     (    7) [001] d..2 82316.858637: 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
94843         rcuop/4-45    (   45) [001] d..2 82316.858648: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
94844         rcuop/4-45    (   45) [001] d..3 82316.858683: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
94845         rcuop/4-45    (   45) [001] d..2 82316.858695: 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
94846 [email protected]   (  619) [002] ...1 82316.858706: tracing_mark_write: E|619
94847 [email protected]   (  619) [002] ...1 82316.858756: tracing_mark_write: E|619
94848 [email protected]   (  619) [002] .... 82316.858773: binder_transaction: transaction=1571475 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
94849 [email protected]   (  619) [002] .... 82316.858788: binder_transaction_alloc_buf: transaction=1571475 data_size=576 offsets_size=112
94850 [email protected]   (  619) [002] d..2 82316.858816: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
94851         rcuop/5-53    (   53) [001] d..2 82316.858832: 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
94852 [email protected]   (  619) [002] d..3 82316.858844: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
94853 [email protected]   (  619) [002] .... 82316.858849: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
94854  kworker/u16:15-1311  ( 1311) [003] d..2 82316.858852: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
94855          <idle>-0     (-----) [001] d..2 82316.858855: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
94856  surfaceflinger-8858  ( 8858) [001] .... 82316.858864: binder_transaction_received: transaction=1571475
94857          <idle>-0     (-----) [003] d..1 82316.858870: cpu_idle: state=0 cpu_id=3
94858 [email protected]   (  619) [002] d..2 82316.858930: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
94859 crtc_commit:111-321   (  321) [000] d..2 82316.858932: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
94860          <idle>-0     (-----) [000] d..1 82316.858944: cpu_idle: state=0 cpu_id=0
94861<...>-87 ( 87) [002] d..2 82316.858986: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94862          <idle>-0     (-----) [002] d.h5 82316.859009: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
94863          <idle>-0     (-----) [002] dnh6 82316.859047: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94864          <idle>-0     (-----) [002] dnh5 82316.859066: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94865          <idle>-0     (-----) [005] dnh2 82316.859088: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94866          <idle>-0     (-----) [005] .n.1 82316.859093: cpu_idle: state=4294967295 cpu_id=5
94867          <idle>-0     (-----) [005] d..2 82316.859102: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94868          <idle>-0     (-----) [002] d..2 82316.859122: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
94869<...>-5340 ( 788) [005] d..1 82316.859158: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
94870<...>-86 ( 86) [002] d..2 82316.859162: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94871          <idle>-0     (-----) [002] d..1 82316.859181: cpu_idle: state=0 cpu_id=2
94872          <idle>-0     (-----) [002] dnh2 82316.859198: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
94873          <idle>-0     (-----) [002] .n.1 82316.859205: cpu_idle: state=4294967295 cpu_id=2
94874          <idle>-0     (-----) [002] d..2 82316.859216: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
94875 neuralnetworks@-13088 (  788) [002] d..2 82316.859275: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94876          <idle>-0     (-----) [002] d..1 82316.859290: cpu_idle: state=0 cpu_id=2
94877<...>-5340 ( 788) [005] d..2 82316.859311: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
94878  surfaceflinger-8858  ( 8858) [001] d..2 82316.859331: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
94879          <idle>-0     (-----) [002] dnh2 82316.859334: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
94880<...>-5340 ( 788) [005] d..2 82316.859338: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
94881          <idle>-0     (-----) [002] .n.1 82316.859341: cpu_idle: state=4294967295 cpu_id=2
94882          <idle>-0     (-----) [001] d..1 82316.859350: cpu_idle: state=0 cpu_id=1
94883          <idle>-0     (-----) [005] d..1 82316.859352: cpu_idle: state=0 cpu_id=5
94884          <idle>-0     (-----) [002] d..2 82316.859353: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
94885<...>-87 ( 87) [002] d.h4 82316.859391: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94886<...>-87 ( 87) [002] d.h5 82316.859410: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
94887<...>-87 ( 87) [002] d..2 82316.859427: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
94888<...>-86 ( 86) [002] d..2 82316.859465: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94889          <idle>-0     (-----) [002] d..1 82316.859480: cpu_idle: state=0 cpu_id=2
94890          <idle>-0     (-----) [003] ...1 82316.860558: cpu_idle: state=4294967295 cpu_id=3
94891          <idle>-0     (-----) [003] d..1 82316.860564: cpu_idle: state=0 cpu_id=3
94892          <idle>-0     (-----) [002] ...1 82316.860777: cpu_idle: state=4294967295 cpu_id=2
94893          <idle>-0     (-----) [002] d..1 82316.860782: cpu_idle: state=0 cpu_id=2
94894          <idle>-0     (-----) [002] d.h4 82316.861085: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94895          <idle>-0     (-----) [005] dnh2 82316.861108: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
94896          <idle>-0     (-----) [005] .n.1 82316.861113: cpu_idle: state=4294967295 cpu_id=5
94897          <idle>-0     (-----) [005] d..2 82316.861121: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
94898          <idle>-0     (-----) [002] ...1 82316.861127: cpu_idle: state=4294967295 cpu_id=2
94899          <idle>-0     (-----) [002] d..1 82316.861134: cpu_idle: state=0 cpu_id=2
94900<...>-5340 ( 788) [005] d..1 82316.861171: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
94901          <idle>-0     (-----) [002] dnh2 82316.861199: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
94902          <idle>-0     (-----) [002] .n.1 82316.861205: cpu_idle: state=4294967295 cpu_id=2
94903          <idle>-0     (-----) [002] d..2 82316.861217: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
94904<...>-5340 ( 788) [005] ...1 82316.861267: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
94905<...>-5340 ( 788) [005] ...1 82316.861271: tracing_mark_write: E|788
94906<...>-5340 ( 788) [005] .... 82316.861287: binder_transaction: transaction=1571476 dest_node=1571473 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
94907 neuralnetworks@-13088 (  788) [002] d..2 82316.861288: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
94908<...>-5340 ( 788) [005] .... 82316.861290: binder_transaction_alloc_buf: transaction=1571476 data_size=60 offsets_size=0
94909<...>-5340 ( 788) [005] d..4 82316.861293: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
94910          <idle>-0     (-----) [002] d..1 82316.861301: cpu_idle: state=0 cpu_id=2
94911<...>-5340 ( 788) [005] d..5 82316.861306: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
94912          <idle>-0     (-----) [004] .n.1 82316.861312: cpu_idle: state=4294967295 cpu_id=4
94913          <idle>-0     (-----) [004] d..2 82316.861323: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
94914           <...>-27571 (-----) [004] .... 82316.861328: binder_transaction_received: transaction=1571476
94915<...>-5340 ( 788) [005] ...1 82316.861329: tracing_mark_write: E|788
94916<...>-5340 ( 788) [005] .... 82316.861335: binder_transaction: transaction=1571477 dest_node=0 dest_proc=27550 dest_thread=27777 reply=1 flags=0x0 code=0x0
94917<...>-5340 ( 788) [005] .... 82316.861337: binder_transaction_alloc_buf: transaction=1571477 data_size=8 offsets_size=0
94918<...>-5340 ( 788) [005] d..2 82316.861339: sched_waking: comm=id.nn.benchmark pid=27777 prio=110 target_cpu=005
94919<...>-5340 ( 788) [005] d..3 82316.861346: sched_wakeup: comm=id.nn.benchmark pid=27777 prio=110 target_cpu=005
94920           <...>-27571 (-----) [004] ...1 82316.861348: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
94921<...>-5340 ( 788) [005] .... 82316.861348: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
94922           <...>-27571 (-----) [004] ...1 82316.861354: tracing_mark_write: E|27550
94923           <...>-27571 (-----) [004] d..2 82316.861383: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94924<...>-5340 ( 788) [005] d..2 82316.861389: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27777 next_prio=110
94925          <idle>-0     (-----) [004] d..1 82316.861390: cpu_idle: state=0 cpu_id=4
94926           <...>-27777 (-----) [005] .... 82316.861400: binder_transaction_received: transaction=1571477
94927           <...>-27777 (-----) [005] ...1 82316.861438: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
94928           <...>-27777 (-----) [005] ...1 82316.861444: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
94929           <...>-27777 (-----) [005] ...1 82316.861470: tracing_mark_write: E|27550
94930           <...>-27777 (-----) [005] ...1 82316.861473: tracing_mark_write: E|27550
94931           <...>-27777 (-----) [005] ...1 82316.861476: tracing_mark_write: E|27550
94932           <...>-27777 (-----) [005] ...1 82316.861671: tracing_mark_write: E|27550
94933           <...>-27777 (-----) [005] d..1 82316.861685: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94934           <...>-27777 (-----) [005] d..2 82316.861701: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94935          <idle>-0     (-----) [004] .n.1 82316.861706: cpu_idle: state=4294967295 cpu_id=4
94936          <idle>-0     (-----) [004] d..2 82316.861713: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
94937           <...>-27550 (-----) [004] d..2 82316.861732: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94938          <idle>-0     (-----) [004] d..1 82316.861741: cpu_idle: state=0 cpu_id=4
94939          <idle>-0     (-----) [000] d.s2 82316.861802: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
94940          <idle>-0     (-----) [000] dns3 82316.861822: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
94941           <...>-27777 (-----) [005] d..1 82316.861826: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94942           <...>-27777 (-----) [005] d..2 82316.861836: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
94943          <idle>-0     (-----) [004] .n.1 82316.861841: cpu_idle: state=4294967295 cpu_id=4
94944          <idle>-0     (-----) [000] .n.1 82316.861842: cpu_idle: state=4294967295 cpu_id=0
94945          <idle>-0     (-----) [004] d..2 82316.861850: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
94946          <idle>-0     (-----) [000] d..2 82316.861852: 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
94947<...>-8 ( 8) [000] d..2 82316.861861: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
94948           <...>-27777 (-----) [005] d..2 82316.861879: sched_switch: prev_comm=id.nn.benchmark prev_pid=27777 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
94949           <...>-27550 (-----) [004] ...1 82316.861896: tracing_mark_write: E|27550
94950           <...>-27550 (-----) [004] ...1 82316.861900: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
94951          <idle>-0     (-----) [005] d..1 82316.861902: cpu_idle: state=0 cpu_id=5
94952           <...>-27550 (-----) [004] ...1 82316.861906: tracing_mark_write: E|27550
94953<...>-8 ( 8) [000] d..3 82316.861907: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
94954           <...>-27550 (-----) [004] ...1 82316.861910: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
94955           <...>-27550 (-----) [004] ...1 82316.861914: tracing_mark_write: E|27550
94956           <...>-27550 (-----) [004] ...1 82316.861918: tracing_mark_write: E|27550
94957<...>-8 ( 8) [000] d..2 82316.861920: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
94958<...>-46 ( 46) [000] d..2 82316.861935: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
94959<...>-46 ( 46) [000] d..3 82316.861949: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
94960<...>-46 ( 46) [000] d..2 82316.861959: 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
94961<...>-8 ( 8) [000] d..2 82316.861984: 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
94962          <idle>-0     (-----) [000] d..1 82316.862000: cpu_idle: state=0 cpu_id=0
94963           <...>-27550 (-----) [004] ...1 82316.862031: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
94964           <...>-27550 (-----) [004] ...1 82316.862089: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
94965           <...>-27550 (-----) [004] ...1 82316.862093: tracing_mark_write: E|27550
94966           <...>-27550 (-----) [004] ...1 82316.862097: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
94967           <...>-27550 (-----) [004] ...1 82316.862103: tracing_mark_write: E|27550
94968           <...>-27550 (-----) [004] ...1 82316.862108: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
94969           <...>-27550 (-----) [004] ...1 82316.862112: tracing_mark_write: E|27550
94970           <...>-27550 (-----) [004] ...1 82316.862116: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
94971          <idle>-0     (-----) [005] .n.1 82316.862205: cpu_idle: state=4294967295 cpu_id=5
94972           <...>-27550 (-----) [004] ...1 82316.862207: tracing_mark_write: E|27550
94973           <...>-27550 (-----) [004] ...1 82316.862211: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
94974          <idle>-0     (-----) [005] d..2 82316.862214: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27778 next_prio=110
94975           <...>-27550 (-----) [004] d..2 82316.862229: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
94976          <idle>-0     (-----) [004] d..1 82316.862243: cpu_idle: state=0 cpu_id=4
94977           <...>-27778 (-----) [005] ...1 82316.862279: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
94978           <...>-27778 (-----) [005] ...1 82316.862294: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
94979           <...>-27778 (-----) [005] ...1 82316.862298: tracing_mark_write: E|27550
94980           <...>-27778 (-----) [005] .... 82316.862321: binder_transaction: transaction=1571478 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
94981           <...>-27778 (-----) [005] .... 82316.862324: binder_transaction_alloc_buf: transaction=1571478 data_size=48 offsets_size=0
94982           <...>-27778 (-----) [005] ...2 82316.862328: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
94983           <...>-27778 (-----) [005] d..4 82316.862331: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
94984           <...>-27778 (-----) [005] dn.5 82316.862342: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
94985           <...>-27778 (-----) [005] d..2 82316.862349: sched_switch: prev_comm=id.nn.benchmark prev_pid=27778 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
94986<...>-770 ( 770) [005] .... 82316.862359: binder_transaction_received: transaction=1571478
94987<...>-770 ( 770) [005] ...1 82316.862384: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
94988<...>-770 ( 770) [005] d..2 82316.862466: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
94989          <idle>-0     (-----) [000] dnh2 82316.862507: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
94990          <idle>-0     (-----) [000] .n.1 82316.862514: cpu_idle: state=4294967295 cpu_id=0
94991<...>-770 ( 770) [005] ...1 82316.862521: tracing_mark_write: E|770
94992          <idle>-0     (-----) [000] d..2 82316.862527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
94993<...>-770 ( 770) [005] .... 82316.862529: binder_transaction: transaction=1571479 dest_node=0 dest_proc=27550 dest_thread=27778 reply=1 flags=0x0 code=0x0
94994<...>-770 ( 770) [005] .... 82316.862531: binder_transaction_alloc_buf: transaction=1571479 data_size=168 offsets_size=32
94995<...>-770 ( 770) [005] .... 82316.862538: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
94996<...>-770 ( 770) [005] d..2 82316.862575: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27778 next_prio=110
94997           <...>-27778 (-----) [005] .... 82316.862586: binder_transaction_received: transaction=1571479
94998           <...>-27778 (-----) [005] ...1 82316.862657: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
94999           <...>-27778 (-----) [005] ...1 82316.862662: tracing_mark_write: E|27550
95000           <...>-27778 (-----) [005] .... 82316.862677: binder_transaction: transaction=1571480 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
95001           <...>-27778 (-----) [005] .... 82316.862679: binder_transaction_alloc_buf: transaction=1571480 data_size=48 offsets_size=0
95002           <...>-27778 (-----) [005] ...2 82316.862682: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
95003           <...>-27778 (-----) [005] d..4 82316.862684: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
95004           <...>-27778 (-----) [005] dn.5 82316.862694: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
95005           <...>-27778 (-----) [005] d..2 82316.862700: sched_switch: prev_comm=id.nn.benchmark prev_pid=27778 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
95006<...>-770 ( 770) [005] .... 82316.862709: binder_transaction_received: transaction=1571480
95007<...>-770 ( 770) [005] ...1 82316.862725: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
95008<...>-770 ( 770) [005] ...1 82316.862805: tracing_mark_write: E|770
95009<...>-770 ( 770) [005] .... 82316.862813: binder_transaction: transaction=1571481 dest_node=0 dest_proc=27550 dest_thread=27778 reply=1 flags=0x0 code=0x0
95010<...>-770 ( 770) [005] .... 82316.862816: binder_transaction_alloc_buf: transaction=1571481 data_size=168 offsets_size=32
95011<...>-770 ( 770) [005] .... 82316.862822: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
95012<...>-770 ( 770) [005] d..2 82316.862856: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27778 next_prio=110
95013           <...>-27778 (-----) [005] .... 82316.862866: binder_transaction_received: transaction=1571481
95014           <...>-27778 (-----) [005] ...1 82316.863143: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
95015           <...>-27778 (-----) [005] ...1 82316.863152: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
95016           <...>-27778 (-----) [005] ...1 82316.863156: tracing_mark_write: E|27550
95017           <...>-27778 (-----) [005] .... 82316.863218: binder_transaction: transaction=1571482 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
95018           <...>-27778 (-----) [005] .... 82316.863221: binder_transaction_alloc_buf: transaction=1571482 data_size=556 offsets_size=104
95019           <...>-27778 (-----) [005] ...2 82316.863235: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
95020           <...>-27778 (-----) [005] d..4 82316.863237: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95021           <...>-27778 (-----) [005] dn.5 82316.863249: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95022           <...>-27778 (-----) [005] d..2 82316.863255: sched_switch: prev_comm=id.nn.benchmark prev_pid=27778 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95023<...>-5340 ( 788) [005] .... 82316.863265: binder_transaction_received: transaction=1571482
95024<...>-5340 ( 788) [005] ...1 82316.863312: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
95025<...>-5340 ( 788) [005] d..2 82316.863356: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
95026<...>-5340 ( 788) [005] d..2 82316.863394: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27778 next_prio=110
95027<...>-581 ( 571) [000] dnh1 82316.863401: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95028<...>-581 ( 571) [000] d..2 82316.863417: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
95029           <...>-27778 (-----) [005] d..2 82316.863417: sched_switch: prev_comm=id.nn.benchmark prev_pid=27778 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
95030          <idle>-0     (-----) [005] d..1 82316.863435: cpu_idle: state=0 cpu_id=5
95031<...>-87 ( 87) [000] d..2 82316.863454: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
95032          <idle>-0     (-----) [002] d.h4 82316.863472: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95033          <idle>-0     (-----) [002] dnh5 82316.863489: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95034          <idle>-0     (-----) [002] .n.1 82316.863499: cpu_idle: state=4294967295 cpu_id=2
95035          <idle>-0     (-----) [002] d..2 82316.863514: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
95036<...>-86 ( 86) [002] d..2 82316.863552: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95037          <idle>-0     (-----) [002] d.h5 82316.863576: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95038          <idle>-0     (-----) [005] dnh2 82316.863598: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95039          <idle>-0     (-----) [005] .n.1 82316.863602: cpu_idle: state=4294967295 cpu_id=5
95040          <idle>-0     (-----) [005] d..2 82316.863610: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95041          <idle>-0     (-----) [002] d..1 82316.863624: cpu_idle: state=0 cpu_id=2
95042<...>-5340 ( 788) [005] d..1 82316.863662: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
95043<...>-581 ( 571) [000] dnh1 82316.863701: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95044<...>-581 ( 571) [000] d..2 82316.863712: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
95045 neuralnetworks@-13088 (  788) [000] d..2 82316.863761: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
95046<...>-5340 ( 788) [005] d..2 82316.863824: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95047<...>-581 ( 571) [000] dnh1 82316.863848: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95048<...>-5340 ( 788) [005] d..2 82316.863852: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
95049<...>-581 ( 571) [000] d..2 82316.863861: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
95050          <idle>-0     (-----) [005] d..1 82316.863865: cpu_idle: state=0 cpu_id=5
95051<...>-87 ( 87) [000] d..2 82316.863894: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
95052          <idle>-0     (-----) [002] d.h4 82316.863901: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95053          <idle>-0     (-----) [002] dnh5 82316.863913: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95054          <idle>-0     (-----) [002] .n.1 82316.863921: cpu_idle: state=4294967295 cpu_id=2
95055          <idle>-0     (-----) [002] d..2 82316.863934: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
95056<...>-581 ( 571) [000] d..2 82316.863938: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95057          <idle>-0     (-----) [000] d..1 82316.863957: cpu_idle: state=0 cpu_id=0
95058<...>-86 ( 86) [002] d..2 82316.863969: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95059          <idle>-0     (-----) [002] d..1 82316.863981: cpu_idle: state=0 cpu_id=2
95060          <idle>-0     (-----) [000] d.h5 82316.864374: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
95061          <idle>-0     (-----) [000] dnh6 82316.864393: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
95062          <idle>-0     (-----) [000] dnh5 82316.864398: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
95063          <idle>-0     (-----) [000] dnh6 82316.864419: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
95064          <idle>-0     (-----) [001] .n.1 82316.864426: cpu_idle: state=4294967295 cpu_id=1
95065          <idle>-0     (-----) [000] .n.1 82316.864434: cpu_idle: state=4294967295 cpu_id=0
95066          <idle>-0     (-----) [001] d..2 82316.864440: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
95067          <idle>-0     (-----) [000] d..2 82316.864447: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
95068  crtc_event:111-322   (  322) [000] d..2 82316.864478: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95069          <idle>-0     (-----) [000] d..1 82316.864491: cpu_idle: state=0 cpu_id=0
95070 crtc_commit:111-321   (  321) [001] d..2 82316.864560: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
95071          <idle>-0     (-----) [001] d..1 82316.864570: cpu_idle: state=0 cpu_id=1
95072          <idle>-0     (-----) [001] d.s3 82316.865141: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
95073          <idle>-0     (-----) [001] d.s4 82316.865161: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
95074          <idle>-0     (-----) [001] d.s2 82316.865165: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95075          <idle>-0     (-----) [000] .n.1 82316.865168: cpu_idle: state=4294967295 cpu_id=0
95076          <idle>-0     (-----) [000] d..2 82316.865180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
95077          <idle>-0     (-----) [001] dns3 82316.865184: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95078          <idle>-0     (-----) [001] .n.1 82316.865204: cpu_idle: state=4294967295 cpu_id=1
95079  crtc_event:111-322   (  322) [000] d..2 82316.865214: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95080          <idle>-0     (-----) [001] d..2 82316.865215: 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
95081          <idle>-0     (-----) [000] d..1 82316.865223: cpu_idle: state=0 cpu_id=0
95082     rcu_preempt-7     (    7) [001] d..2 82316.865227: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
95083     rcu_preempt-7     (    7) [001] d..3 82316.865248: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
95084     rcu_preempt-7     (    7) [001] d..2 82316.865265: 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
95085         rcuop/0-10    (   10) [001] d..2 82316.865271: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
95086         rcuop/0-10    (   10) [001] d..3 82316.865288: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
95087         rcuop/0-10    (   10) [001] d..2 82316.865300: 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
95088         rcuop/1-21    (   21) [001] d..2 82316.865334: 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
95089          <idle>-0     (-----) [001] d..1 82316.865347: cpu_idle: state=0 cpu_id=1
95090          <idle>-0     (-----) [002] d.h4 82316.865660: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95091          <idle>-0     (-----) [005] dnh2 82316.865682: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95092          <idle>-0     (-----) [005] .n.1 82316.865687: cpu_idle: state=4294967295 cpu_id=5
95093          <idle>-0     (-----) [005] d..2 82316.865695: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95094          <idle>-0     (-----) [002] ...1 82316.865701: cpu_idle: state=4294967295 cpu_id=2
95095          <idle>-0     (-----) [002] d..1 82316.865708: cpu_idle: state=0 cpu_id=2
95096<...>-5340 ( 788) [005] d..1 82316.865746: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95097          <idle>-0     (-----) [000] dnh2 82316.865773: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95098          <idle>-0     (-----) [000] .n.1 82316.865779: cpu_idle: state=4294967295 cpu_id=0
95099          <idle>-0     (-----) [000] d..2 82316.865788: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
95100<...>-5340 ( 788) [005] ...1 82316.865840: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
95101<...>-5340 ( 788) [005] ...1 82316.865844: tracing_mark_write: E|788
95102<...>-5340 ( 788) [005] .... 82316.865860: binder_transaction: transaction=1571485 dest_node=1571483 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
95103<...>-5340 ( 788) [005] .... 82316.865863: binder_transaction_alloc_buf: transaction=1571485 data_size=60 offsets_size=0
95104 neuralnetworks@-13088 (  788) [000] d..2 82316.865866: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95105<...>-5340 ( 788) [005] d..4 82316.865866: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
95106          <idle>-0     (-----) [000] d..1 82316.865876: cpu_idle: state=0 cpu_id=0
95107<...>-5340 ( 788) [005] d..5 82316.865879: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
95108          <idle>-0     (-----) [004] .n.1 82316.865884: cpu_idle: state=4294967295 cpu_id=4
95109          <idle>-0     (-----) [004] d..2 82316.865893: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
95110           <...>-27571 (-----) [004] .... 82316.865898: binder_transaction_received: transaction=1571485
95111<...>-5340 ( 788) [005] ...1 82316.865901: tracing_mark_write: E|788
95112<...>-5340 ( 788) [005] .... 82316.865907: binder_transaction: transaction=1571486 dest_node=0 dest_proc=27550 dest_thread=27778 reply=1 flags=0x0 code=0x0
95113<...>-5340 ( 788) [005] .... 82316.865909: binder_transaction_alloc_buf: transaction=1571486 data_size=8 offsets_size=0
95114<...>-5340 ( 788) [005] d..2 82316.865911: sched_waking: comm=id.nn.benchmark pid=27778 prio=110 target_cpu=005
95115           <...>-27571 (-----) [004] ...1 82316.865916: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
95116<...>-5340 ( 788) [005] d..3 82316.865918: sched_wakeup: comm=id.nn.benchmark pid=27778 prio=110 target_cpu=005
95117<...>-5340 ( 788) [005] .... 82316.865920: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
95118           <...>-27571 (-----) [004] ...1 82316.865922: tracing_mark_write: E|27550
95119           <...>-27571 (-----) [004] d..2 82316.865951: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95120          <idle>-0     (-----) [004] d..1 82316.865959: cpu_idle: state=0 cpu_id=4
95121<...>-5340 ( 788) [005] d..2 82316.865962: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27778 next_prio=110
95122           <...>-27778 (-----) [005] .... 82316.865972: binder_transaction_received: transaction=1571486
95123           <...>-27778 (-----) [005] ...1 82316.866008: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
95124           <...>-27778 (-----) [005] ...1 82316.866013: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
95125           <...>-27778 (-----) [005] ...1 82316.866040: tracing_mark_write: E|27550
95126           <...>-27778 (-----) [005] ...1 82316.866043: tracing_mark_write: E|27550
95127           <...>-27778 (-----) [005] ...1 82316.866048: tracing_mark_write: E|27550
95128           <...>-27778 (-----) [005] ...1 82316.866240: tracing_mark_write: E|27550
95129           <...>-27778 (-----) [005] d..1 82316.866253: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95130           <...>-27778 (-----) [005] d..2 82316.866270: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95131          <idle>-0     (-----) [004] .n.1 82316.866275: cpu_idle: state=4294967295 cpu_id=4
95132          <idle>-0     (-----) [004] d..2 82316.866282: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
95133           <...>-27550 (-----) [004] d..2 82316.866302: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95134          <idle>-0     (-----) [004] d..1 82316.866311: cpu_idle: state=0 cpu_id=4
95135           <...>-27778 (-----) [005] d..1 82316.866363: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95136           <...>-27778 (-----) [005] d..2 82316.866372: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95137          <idle>-0     (-----) [004] .n.1 82316.866378: cpu_idle: state=4294967295 cpu_id=4
95138          <idle>-0     (-----) [004] d..2 82316.866385: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
95139           <...>-27778 (-----) [005] d..2 82316.866411: sched_switch: prev_comm=id.nn.benchmark prev_pid=27778 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
95140           <...>-27550 (-----) [004] ...1 82316.866419: tracing_mark_write: E|27550
95141           <...>-27550 (-----) [004] ...1 82316.866423: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
95142           <...>-27550 (-----) [004] ...1 82316.866429: tracing_mark_write: E|27550
95143          <idle>-0     (-----) [005] d..1 82316.866431: cpu_idle: state=0 cpu_id=5
95144           <...>-27550 (-----) [004] ...1 82316.866433: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
95145           <...>-27550 (-----) [004] ...1 82316.866437: tracing_mark_write: E|27550
95146           <...>-27550 (-----) [004] ...1 82316.866441: tracing_mark_write: E|27550
95147           <...>-27550 (-----) [004] ...1 82316.866555: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
95148           <...>-27550 (-----) [004] ...1 82316.866614: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
95149           <...>-27550 (-----) [004] ...1 82316.866620: tracing_mark_write: E|27550
95150           <...>-27550 (-----) [004] ...1 82316.866624: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
95151           <...>-27550 (-----) [004] ...1 82316.866630: tracing_mark_write: E|27550
95152           <...>-27550 (-----) [004] ...1 82316.866633: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
95153           <...>-27550 (-----) [004] ...1 82316.866638: tracing_mark_write: E|27550
95154           <...>-27550 (-----) [004] ...1 82316.866641: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
95155          <idle>-0     (-----) [000] d.h5 82316.866710: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
95156          <idle>-0     (-----) [000] d.h6 82316.866728: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
95157          <idle>-0     (-----) [001] .n.1 82316.866735: cpu_idle: state=4294967295 cpu_id=1
95158          <idle>-0     (-----) [000] ...1 82316.866742: cpu_idle: state=4294967295 cpu_id=0
95159          <idle>-0     (-----) [001] d..2 82316.866746: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
95160          <idle>-0     (-----) [000] d..1 82316.866749: cpu_idle: state=0 cpu_id=0
95161          <idle>-0     (-----) [005] .n.1 82316.866749: cpu_idle: state=4294967295 cpu_id=5
95162           <...>-27550 (-----) [004] ...1 82316.866750: tracing_mark_write: E|27550
95163           <...>-27550 (-----) [004] ...1 82316.866754: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
95164          <idle>-0     (-----) [005] d..2 82316.866758: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27779 next_prio=110
95165           <...>-27550 (-----) [004] d..2 82316.866772: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95166          <idle>-0     (-----) [004] d..1 82316.866786: cpu_idle: state=0 cpu_id=4
95167           <...>-27779 (-----) [005] ...1 82316.866818: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
95168 crtc_commit:111-321   (  321) [001] d..2 82316.866830: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95169           <...>-27779 (-----) [005] ...1 82316.866832: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
95170           <...>-27779 (-----) [005] ...1 82316.866836: tracing_mark_write: E|27550
95171          <idle>-0     (-----) [001] d..1 82316.866842: cpu_idle: state=0 cpu_id=1
95172           <...>-27779 (-----) [005] .... 82316.866855: binder_transaction: transaction=1571487 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
95173           <...>-27779 (-----) [005] .... 82316.866859: binder_transaction_alloc_buf: transaction=1571487 data_size=48 offsets_size=0
95174           <...>-27779 (-----) [005] ...2 82316.866861: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
95175           <...>-27779 (-----) [005] d..4 82316.866864: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
95176           <...>-27779 (-----) [005] dn.5 82316.866875: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
95177           <...>-27779 (-----) [005] d..2 82316.866882: sched_switch: prev_comm=id.nn.benchmark prev_pid=27779 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
95178<...>-770 ( 770) [005] .... 82316.866891: binder_transaction_received: transaction=1571487
95179<...>-770 ( 770) [005] ...1 82316.866914: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
95180<...>-770 ( 770) [005] d..2 82316.866988: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
95181          <idle>-0     (-----) [000] d.h5 82316.866993: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
95182          <idle>-0     (-----) [000] dnh6 82316.867005: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
95183          <idle>-0     (-----) [000] dnh2 82316.867027: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
95184<...>-770 ( 770) [005] ...1 82316.867032: tracing_mark_write: E|770
95185          <idle>-0     (-----) [000] .n.1 82316.867033: cpu_idle: state=4294967295 cpu_id=0
95186<...>-770 ( 770) [005] .... 82316.867040: binder_transaction: transaction=1571488 dest_node=0 dest_proc=27550 dest_thread=27779 reply=1 flags=0x0 code=0x0
95187          <idle>-0     (-----) [000] d..2 82316.867041: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
95188<...>-770 ( 770) [005] .... 82316.867042: binder_transaction_alloc_buf: transaction=1571488 data_size=168 offsets_size=32
95189<...>-770 ( 770) [005] .... 82316.867049: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
95190  crtc_event:111-322   (  322) [000] d..2 82316.867057: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
95191<...>-770 ( 770) [005] d..2 82316.867084: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27779 next_prio=110
95192           <...>-27779 (-----) [005] .... 82316.867095: binder_transaction_received: transaction=1571488
95193<...>-581 ( 571) [000] d..2 82316.867138: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95194          <idle>-0     (-----) [000] d..1 82316.867149: cpu_idle: state=0 cpu_id=0
95195           <...>-27779 (-----) [005] ...1 82316.867165: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
95196           <...>-27779 (-----) [005] ...1 82316.867170: tracing_mark_write: E|27550
95197           <...>-27779 (-----) [005] .... 82316.867184: binder_transaction: transaction=1571489 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
95198           <...>-27779 (-----) [005] .... 82316.867187: binder_transaction_alloc_buf: transaction=1571489 data_size=48 offsets_size=0
95199           <...>-27779 (-----) [005] ...2 82316.867189: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
95200           <...>-27779 (-----) [005] d..4 82316.867191: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
95201           <...>-27779 (-----) [005] dn.5 82316.867202: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
95202           <...>-27779 (-----) [005] d..2 82316.867208: sched_switch: prev_comm=id.nn.benchmark prev_pid=27779 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
95203<...>-770 ( 770) [005] .... 82316.867216: binder_transaction_received: transaction=1571489
95204<...>-770 ( 770) [005] ...1 82316.867233: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
95205<...>-770 ( 770) [005] d..2 82316.867292: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
95206          <idle>-0     (-----) [000] dnh2 82316.867317: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
95207          <idle>-0     (-----) [000] .n.1 82316.867324: cpu_idle: state=4294967295 cpu_id=0
95208<...>-770 ( 770) [005] ...1 82316.867327: tracing_mark_write: E|770
95209          <idle>-0     (-----) [000] d..2 82316.867333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
95210<...>-770 ( 770) [005] .... 82316.867334: binder_transaction: transaction=1571490 dest_node=0 dest_proc=27550 dest_thread=27779 reply=1 flags=0x0 code=0x0
95211<...>-770 ( 770) [005] .... 82316.867337: binder_transaction_alloc_buf: transaction=1571490 data_size=168 offsets_size=32
95212<...>-770 ( 770) [005] .... 82316.867342: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
95213<...>-770 ( 770) [005] d..2 82316.867376: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27779 next_prio=110
95214           <...>-27779 (-----) [005] .... 82316.867386: binder_transaction_received: transaction=1571490
95215<...>-581 ( 571) [000] d..2 82316.867405: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95216          <idle>-0     (-----) [000] d..1 82316.867415: cpu_idle: state=0 cpu_id=0
95217           <...>-27779 (-----) [005] ...1 82316.867660: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
95218           <...>-27779 (-----) [005] ...1 82316.867672: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
95219           <...>-27779 (-----) [005] ...1 82316.867675: tracing_mark_write: E|27550
95220           <...>-27779 (-----) [005] .... 82316.867735: binder_transaction: transaction=1571491 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
95221           <...>-27779 (-----) [005] .... 82316.867738: binder_transaction_alloc_buf: transaction=1571491 data_size=556 offsets_size=104
95222           <...>-27779 (-----) [005] ...2 82316.867751: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
95223           <...>-27779 (-----) [005] d..4 82316.867754: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95224           <...>-27779 (-----) [005] dn.5 82316.867765: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95225           <...>-27779 (-----) [005] d..2 82316.867772: sched_switch: prev_comm=id.nn.benchmark prev_pid=27779 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95226<...>-5340 ( 788) [005] .... 82316.867782: binder_transaction_received: transaction=1571491
95227<...>-5340 ( 788) [005] ...1 82316.867826: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
95228<...>-5340 ( 788) [005] d..2 82316.867869: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95229<...>-5340 ( 788) [005] d..2 82316.867894: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27779 next_prio=110
95230          <idle>-0     (-----) [000] dnh2 82316.867898: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95231          <idle>-0     (-----) [000] .n.1 82316.867905: cpu_idle: state=4294967295 cpu_id=0
95232          <idle>-0     (-----) [000] d..2 82316.867914: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
95233           <...>-27779 (-----) [005] d..2 82316.867917: sched_switch: prev_comm=id.nn.benchmark prev_pid=27779 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
95234          <idle>-0     (-----) [005] d..1 82316.867935: cpu_idle: state=0 cpu_id=5
95235<...>-87 ( 87) [000] d..2 82316.867958: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95236          <idle>-0     (-----) [002] d.h4 82316.867963: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95237          <idle>-0     (-----) [000] d..1 82316.867968: cpu_idle: state=0 cpu_id=0
95238          <idle>-0     (-----) [002] dnh5 82316.867979: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95239          <idle>-0     (-----) [002] .n.1 82316.867988: cpu_idle: state=4294967295 cpu_id=2
95240          <idle>-0     (-----) [002] d..2 82316.868002: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
95241<...>-86 ( 86) [002] d..2 82316.868041: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95242          <idle>-0     (-----) [002] d.h5 82316.868063: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95243          <idle>-0     (-----) [005] dnh2 82316.868084: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95244          <idle>-0     (-----) [005] .n.1 82316.868089: cpu_idle: state=4294967295 cpu_id=5
95245          <idle>-0     (-----) [005] d..2 82316.868097: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95246          <idle>-0     (-----) [002] d..1 82316.868110: cpu_idle: state=0 cpu_id=2
95247<...>-5340 ( 788) [005] d..1 82316.868150: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95248          <idle>-0     (-----) [000] dnh2 82316.868176: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95249          <idle>-0     (-----) [000] .n.1 82316.868183: cpu_idle: state=4294967295 cpu_id=0
95250          <idle>-0     (-----) [000] d..2 82316.868191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
95251 neuralnetworks@-13088 (  788) [000] d..2 82316.868242: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95252          <idle>-0     (-----) [000] d..1 82316.868252: cpu_idle: state=0 cpu_id=0
95253<...>-5340 ( 788) [005] d..2 82316.868295: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95254          <idle>-0     (-----) [000] dnh2 82316.868317: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95255<...>-5340 ( 788) [005] d..2 82316.868321: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
95256          <idle>-0     (-----) [000] .n.1 82316.868324: cpu_idle: state=4294967295 cpu_id=0
95257          <idle>-0     (-----) [000] d..2 82316.868332: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
95258          <idle>-0     (-----) [005] d..1 82316.868335: cpu_idle: state=0 cpu_id=5
95259          <idle>-0     (-----) [002] d.h4 82316.868372: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95260<...>-87 ( 87) [000] d..2 82316.868373: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95261          <idle>-0     (-----) [000] d..1 82316.868382: cpu_idle: state=0 cpu_id=0
95262          <idle>-0     (-----) [002] dnh5 82316.868383: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95263          <idle>-0     (-----) [002] .n.1 82316.868392: cpu_idle: state=4294967295 cpu_id=2
95264          <idle>-0     (-----) [002] d..2 82316.868404: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
95265<...>-86 ( 86) [002] d..2 82316.868440: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95266          <idle>-0     (-----) [000] d.s2 82316.868476: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
95267          <idle>-0     (-----) [000] dns3 82316.868495: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
95268          <idle>-0     (-----) [002] d..1 82316.868497: cpu_idle: state=0 cpu_id=2
95269          <idle>-0     (-----) [000] dns3 82316.868502: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
95270          <idle>-0     (-----) [000] dns4 82316.868540: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
95271          <idle>-0     (-----) [000] .n.1 82316.868559: cpu_idle: state=4294967295 cpu_id=0
95272          <idle>-0     (-----) [000] d..2 82316.868571: 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
95273<...>-8 ( 8) [000] d..2 82316.868584: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
95274<...>-8 ( 8) [000] d..3 82316.868600: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
95275<...>-8 ( 8) [000] d..2 82316.868612: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
95276<...>-46 ( 46) [000] d..2 82316.868624: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
95277<...>-46 ( 46) [000] d..3 82316.868637: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
95278<...>-46 ( 46) [000] d..2 82316.868647: 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
95279<...>-8 ( 8) [000] d..2 82316.868661: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
95280          <idle>-0     (-----) [005] ...1 82316.868673: cpu_idle: state=4294967295 cpu_id=5
95281          <idle>-0     (-----) [005] d..1 82316.868677: cpu_idle: state=0 cpu_id=5
95282          <idle>-0     (-----) [001] d.h2 82316.868812: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
95283          <idle>-0     (-----) [001] dnh3 82316.868826: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
95284          <idle>-0     (-----) [001] .n.1 82316.868835: cpu_idle: state=4294967295 cpu_id=1
95285          <idle>-0     (-----) [001] d..2 82316.868847: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
95286        DispSync-8879  ( 8858) [001] d..1 82316.868868: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
95287        DispSync-8879  ( 8858) [001] d..2 82316.868883: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
95288          <idle>-0     (-----) [003] .n.1 82316.868888: cpu_idle: state=4294967295 cpu_id=3
95289          <idle>-0     (-----) [003] d..2 82316.868902: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
95290  kworker/u16:15-1311  ( 1311) [000] d..2 82316.868917: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
95291        DispSync-8879  ( 8858) [001] d..2 82316.868918: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95292          <idle>-0     (-----) [000] d..1 82316.868935: cpu_idle: state=0 cpu_id=0
95293  appEventThread-8881  ( 8858) [003] d..3 82316.868961: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
95294          <idle>-0     (-----) [001] d.s4 82316.868968: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
95295  appEventThread-8881  ( 8858) [003] d..4 82316.868984: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
95296          <idle>-0     (-----) [000] .n.1 82316.868989: cpu_idle: state=4294967295 cpu_id=0
95297          <idle>-0     (-----) [001] d.s5 82316.868990: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
95298          <idle>-0     (-----) [001] d.s5 82316.868997: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
95299          <idle>-0     (-----) [000] d..2 82316.869008: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
95300          <idle>-0     (-----) [001] d..1 82316.869026: cpu_idle: state=0 cpu_id=1
95301  appEventThread-8881  ( 8858) [003] d..2 82316.869061: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
95302  kworker/u16:15-1311  ( 1311) [003] .... 82316.869152: clk_set_rate: l3_cluster0_vote_clk 300000000
95303  kworker/u16:15-1311  ( 1311) [003] d..2 82316.869183: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95304          <idle>-0     (-----) [003] d..1 82316.869201: cpu_idle: state=0 cpu_id=3
95305<...>-9105 ( 9105) [000] .... 82316.869378: binder_transaction: transaction=1571494 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
95306<...>-9105 ( 9105) [000] .... 82316.869385: binder_transaction_alloc_buf: transaction=1571494 data_size=80 offsets_size=0
95307<...>-9105 ( 9105) [000] d..4 82316.869392: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
95308<...>-9105 ( 9105) [000] d..5 82316.869427: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
95309          <idle>-0     (-----) [001] .n.1 82316.869434: cpu_idle: state=4294967295 cpu_id=1
95310          <idle>-0     (-----) [001] d..2 82316.869445: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
95311<...>-13083 ( 8858) [001] .... 82316.869453: binder_transaction_received: transaction=1571494
95312<...>-9105 ( 9105) [000] d..3 82316.869468: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
95313<...>-9105 ( 9105) [000] d..4 82316.869488: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
95314<...>-13083 ( 8858) [001] d..1 82316.869489: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
95315          <idle>-0     (-----) [002] .n.1 82316.869493: cpu_idle: state=4294967295 cpu_id=2
95316<...>-13083 ( 8858) [001] d..2 82316.869507: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
95317          <idle>-0     (-----) [002] d..2 82316.869507: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
95318          <idle>-0     (-----) [003] .n.1 82316.869514: cpu_idle: state=4294967295 cpu_id=3
95319          <idle>-0     (-----) [003] d..2 82316.869526: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
95320<...>-13083 ( 8858) [001] d..2 82316.869555: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95321          <idle>-0     (-----) [001] d..1 82316.869566: cpu_idle: state=0 cpu_id=1
95322    RenderThread-9436  ( 9105) [002] d..2 82316.869572: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95323  appEventThread-8881  ( 8858) [003] d..2 82316.869579: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95324          <idle>-0     (-----) [002] d..1 82316.869587: cpu_idle: state=0 cpu_id=2
95325          <idle>-0     (-----) [003] d..1 82316.869593: cpu_idle: state=0 cpu_id=3
95326<...>-9105 ( 9105) [000] d..3 82316.869617: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
95327<...>-9105 ( 9105) [000] d..4 82316.869636: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
95328          <idle>-0     (-----) [002] .n.1 82316.869642: cpu_idle: state=4294967295 cpu_id=2
95329          <idle>-0     (-----) [002] d..2 82316.869655: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
95330<...>-9105 ( 9105) [000] d..2 82316.869675: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95331          <idle>-0     (-----) [000] d..1 82316.869695: cpu_idle: state=0 cpu_id=0
95332    RenderThread-9436  ( 9105) [002] d..1 82316.869783: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
95333    RenderThread-9436  ( 9105) [002] d..2 82316.869803: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
95334          <idle>-0     (-----) [000] .n.1 82316.869810: cpu_idle: state=4294967295 cpu_id=0
95335          <idle>-0     (-----) [000] d..2 82316.869825: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
95336    RenderThread-9436  ( 9105) [002] .... 82316.869876: binder_transaction: transaction=1571495 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
95337    RenderThread-9436  ( 9105) [002] .... 82316.869882: binder_transaction_alloc_buf: transaction=1571495 data_size=104 offsets_size=0
95338    RenderThread-9436  ( 9105) [002] d..4 82316.869888: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
95339    RenderThread-9436  ( 9105) [002] dn.5 82316.869910: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
95340<...>-9105 ( 9105) [000] d..2 82316.869913: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95341    RenderThread-9436  ( 9105) [002] d..2 82316.869921: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
95342          <idle>-0     (-----) [000] d..1 82316.869928: cpu_idle: state=0 cpu_id=0
95343<...>-13083 ( 8858) [002] .... 82316.869931: binder_transaction_received: transaction=1571495
95344<...>-13083 ( 8858) [002] d.h3 82316.870008: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95345          <idle>-0     (-----) [005] dnh2 82316.870031: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95346          <idle>-0     (-----) [005] .n.1 82316.870035: cpu_idle: state=4294967295 cpu_id=5
95347          <idle>-0     (-----) [005] d..2 82316.870043: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95348<...>-13083 ( 8858) [002] .... 82316.870080: binder_transaction: transaction=1571496 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
95349<...>-13083 ( 8858) [002] .... 82316.870085: binder_transaction_alloc_buf: transaction=1571496 data_size=52 offsets_size=8
95350<...>-5340 ( 788) [005] d..1 82316.870100: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95351          <idle>-0     (-----) [000] dnh2 82316.870128: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95352          <idle>-0     (-----) [000] .n.1 82316.870135: cpu_idle: state=4294967295 cpu_id=0
95353<...>-13083 ( 8858) [002] d..2 82316.870144: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
95354          <idle>-0     (-----) [000] d..2 82316.870181: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
95355    RenderThread-9436  ( 9105) [002] .... 82316.870188: binder_transaction_received: transaction=1571496
95356<...>-5340 ( 788) [005] ...1 82316.870195: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
95357<...>-5340 ( 788) [005] ...1 82316.870200: tracing_mark_write: E|788
95358<...>-5340 ( 788) [005] .... 82316.870216: binder_transaction: transaction=1571497 dest_node=1571492 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
95359<...>-5340 ( 788) [005] .... 82316.870219: binder_transaction_alloc_buf: transaction=1571497 data_size=60 offsets_size=0
95360<...>-5340 ( 788) [005] d..4 82316.870222: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
95361 neuralnetworks@-13088 (  788) [000] d..2 82316.870229: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95362<...>-5340 ( 788) [005] d..5 82316.870235: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
95363          <idle>-0     (-----) [004] .n.1 82316.870241: cpu_idle: state=4294967295 cpu_id=4
95364          <idle>-0     (-----) [000] d..1 82316.870243: cpu_idle: state=0 cpu_id=0
95365          <idle>-0     (-----) [004] d..2 82316.870250: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
95366           <...>-27571 (-----) [004] .... 82316.870255: binder_transaction_received: transaction=1571497
95367<...>-5340 ( 788) [005] ...1 82316.870259: tracing_mark_write: E|788
95368<...>-5340 ( 788) [005] .... 82316.870265: binder_transaction: transaction=1571498 dest_node=0 dest_proc=27550 dest_thread=27779 reply=1 flags=0x0 code=0x0
95369<...>-5340 ( 788) [005] .... 82316.870266: binder_transaction_alloc_buf: transaction=1571498 data_size=8 offsets_size=0
95370<...>-5340 ( 788) [005] d..2 82316.870269: sched_waking: comm=id.nn.benchmark pid=27779 prio=110 target_cpu=005
95371           <...>-27571 (-----) [004] ...1 82316.870273: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
95372<...>-5340 ( 788) [005] d..3 82316.870276: sched_wakeup: comm=id.nn.benchmark pid=27779 prio=110 target_cpu=005
95373<...>-5340 ( 788) [005] .... 82316.870278: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
95374           <...>-27571 (-----) [004] ...1 82316.870279: tracing_mark_write: E|27550
95375           <...>-27571 (-----) [004] d..2 82316.870307: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95376          <idle>-0     (-----) [004] d..1 82316.870314: cpu_idle: state=0 cpu_id=4
95377<...>-5340 ( 788) [005] d..2 82316.870319: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27779 next_prio=110
95378           <...>-27779 (-----) [005] .... 82316.870329: binder_transaction_received: transaction=1571498
95379           <...>-27779 (-----) [005] ...1 82316.870366: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
95380           <...>-27779 (-----) [005] ...1 82316.870372: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
95381           <...>-27779 (-----) [005] ...1 82316.870398: tracing_mark_write: E|27550
95382           <...>-27779 (-----) [005] ...1 82316.870401: tracing_mark_write: E|27550
95383           <...>-27779 (-----) [005] ...1 82316.870405: tracing_mark_write: E|27550
95384           <...>-27779 (-----) [005] ...1 82316.870593: tracing_mark_write: E|27550
95385           <...>-27779 (-----) [005] d..1 82316.870605: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95386           <...>-27779 (-----) [005] d..2 82316.870622: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95387          <idle>-0     (-----) [004] .n.1 82316.870626: cpu_idle: state=4294967295 cpu_id=4
95388          <idle>-0     (-----) [004] d..2 82316.870633: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
95389           <...>-27550 (-----) [004] d..2 82316.870653: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95390          <idle>-0     (-----) [004] d..1 82316.870662: cpu_idle: state=0 cpu_id=4
95391           <...>-27779 (-----) [005] d..1 82316.870713: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95392           <...>-27779 (-----) [005] d..2 82316.870722: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95393          <idle>-0     (-----) [004] .n.1 82316.870728: cpu_idle: state=4294967295 cpu_id=4
95394          <idle>-0     (-----) [004] d..2 82316.870735: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
95395           <...>-27779 (-----) [005] d..2 82316.870761: sched_switch: prev_comm=id.nn.benchmark prev_pid=27779 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
95396           <...>-27550 (-----) [004] ...1 82316.870769: tracing_mark_write: E|27550
95397           <...>-27550 (-----) [004] ...1 82316.870773: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
95398           <...>-27550 (-----) [004] ...1 82316.870779: tracing_mark_write: E|27550
95399          <idle>-0     (-----) [005] d..1 82316.870782: cpu_idle: state=0 cpu_id=5
95400           <...>-27550 (-----) [004] ...1 82316.870782: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
95401           <...>-27550 (-----) [004] ...1 82316.870786: tracing_mark_write: E|27550
95402           <...>-27550 (-----) [004] ...1 82316.870790: tracing_mark_write: E|27550
95403           <...>-27550 (-----) [004] ...1 82316.870902: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
95404           <...>-27550 (-----) [004] ...1 82316.870959: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
95405           <...>-27550 (-----) [004] ...1 82316.870965: tracing_mark_write: E|27550
95406           <...>-27550 (-----) [004] ...1 82316.870968: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
95407           <...>-27550 (-----) [004] ...1 82316.870974: tracing_mark_write: E|27550
95408           <...>-27550 (-----) [004] ...1 82316.870978: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
95409           <...>-27550 (-----) [004] ...1 82316.870982: tracing_mark_write: E|27550
95410           <...>-27550 (-----) [004] ...1 82316.870985: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
95411          <idle>-0     (-----) [005] .n.1 82316.871075: cpu_idle: state=4294967295 cpu_id=5
95412           <...>-27550 (-----) [004] ...1 82316.871076: tracing_mark_write: E|27550
95413           <...>-27550 (-----) [004] ...1 82316.871081: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
95414          <idle>-0     (-----) [005] d..2 82316.871084: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27780 next_prio=110
95415          <idle>-0     (-----) [003] ...1 82316.871090: cpu_idle: state=4294967295 cpu_id=3
95416          <idle>-0     (-----) [003] d..1 82316.871096: cpu_idle: state=0 cpu_id=3
95417           <...>-27550 (-----) [004] d..2 82316.871098: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95418          <idle>-0     (-----) [004] d..1 82316.871113: cpu_idle: state=0 cpu_id=4
95419           <...>-27780 (-----) [005] ...1 82316.871145: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
95420           <...>-27780 (-----) [005] ...1 82316.871160: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
95421           <...>-27780 (-----) [005] ...1 82316.871163: tracing_mark_write: E|27550
95422           <...>-27780 (-----) [005] .... 82316.871185: binder_transaction: transaction=1571499 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
95423           <...>-27780 (-----) [005] .... 82316.871188: binder_transaction_alloc_buf: transaction=1571499 data_size=48 offsets_size=0
95424           <...>-27780 (-----) [005] ...2 82316.871191: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
95425           <...>-27780 (-----) [005] d..4 82316.871194: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
95426           <...>-27780 (-----) [005] dn.5 82316.871204: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
95427           <...>-27780 (-----) [005] d..2 82316.871211: sched_switch: prev_comm=id.nn.benchmark prev_pid=27780 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
95428<...>-770 ( 770) [005] .... 82316.871221: binder_transaction_received: transaction=1571499
95429<...>-770 ( 770) [005] ...1 82316.871245: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
95430    RenderThread-9436  ( 9105) [002] d..2 82316.871258: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
95431          <idle>-0     (-----) [002] d..1 82316.871275: cpu_idle: state=0 cpu_id=2
95432<...>-770 ( 770) [005] d..2 82316.871326: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
95433          <idle>-0     (-----) [002] d.h2 82316.871337: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
95434          <idle>-0     (-----) [002] d.h3 82316.871348: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
95435          <idle>-0     (-----) [002] dnh3 82316.871354: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
95436          <idle>-0     (-----) [000] dnh2 82316.871355: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
95437          <idle>-0     (-----) [002] .n.1 82316.871364: cpu_idle: state=4294967295 cpu_id=2
95438<...>-770 ( 770) [005] ...1 82316.871368: tracing_mark_write: E|770
95439<...>-770 ( 770) [005] .... 82316.871376: binder_transaction: transaction=1571500 dest_node=0 dest_proc=27550 dest_thread=27780 reply=1 flags=0x0 code=0x0
95440          <idle>-0     (-----) [002] d..2 82316.871377: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
95441<...>-770 ( 770) [005] .... 82316.871379: binder_transaction_alloc_buf: transaction=1571500 data_size=168 offsets_size=32
95442          <idle>-0     (-----) [000] dnh3 82316.871381: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
95443<...>-770 ( 770) [005] .... 82316.871386: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
95444          <idle>-0     (-----) [000] dnh4 82316.871403: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
95445          <idle>-0     (-----) [003] .n.1 82316.871409: cpu_idle: state=4294967295 cpu_id=3
95446          <idle>-0     (-----) [000] .n.1 82316.871415: cpu_idle: state=4294967295 cpu_id=0
95447          <idle>-0     (-----) [003] d..2 82316.871420: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
95448<...>-770 ( 770) [005] d..2 82316.871422: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27780 next_prio=110
95449          <idle>-0     (-----) [000] d..2 82316.871429: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
95450           <...>-27780 (-----) [005] .... 82316.871433: binder_transaction_received: transaction=1571500
95451 kgsl_worker_thr-258   (  258) [003] d..2 82316.871469: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
95452 kgsl_worker_thr-258   (  258) [003] d..3 82316.871491: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
95453 kgsl_worker_thr-258   (  258) [003] d..2 82316.871508: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
95454           <...>-27780 (-----) [005] ...1 82316.871509: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
95455           <...>-27780 (-----) [005] ...1 82316.871514: tracing_mark_write: E|27550
95456<...>-581 ( 571) [000] d..2 82316.871527: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95457           <...>-27780 (-----) [005] .... 82316.871529: binder_transaction: transaction=1571501 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
95458           <...>-27780 (-----) [005] .... 82316.871531: binder_transaction_alloc_buf: transaction=1571501 data_size=48 offsets_size=0
95459           <...>-27780 (-----) [005] ...2 82316.871534: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
95460           <...>-27780 (-----) [005] d..4 82316.871536: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
95461          <idle>-0     (-----) [000] d..1 82316.871544: cpu_idle: state=0 cpu_id=0
95462           <...>-27780 (-----) [005] dn.5 82316.871546: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
95463  kworker/u16:15-1311  ( 1311) [003] d..2 82316.871552: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95464           <...>-27780 (-----) [005] d..2 82316.871552: sched_switch: prev_comm=id.nn.benchmark prev_pid=27780 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
95465<...>-770 ( 770) [005] .... 82316.871560: binder_transaction_received: transaction=1571501
95466          <idle>-0     (-----) [003] d..1 82316.871567: cpu_idle: state=0 cpu_id=3
95467<...>-770 ( 770) [005] ...1 82316.871578: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
95468    RenderThread-9436  ( 9105) [002] .... 82316.871589: binder_transaction: transaction=1571502 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
95469    RenderThread-9436  ( 9105) [002] .... 82316.871595: binder_transaction_alloc_buf: transaction=1571502 data_size=192 offsets_size=8
95470    RenderThread-9436  ( 9105) [002] d..4 82316.871606: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
95471    RenderThread-9436  ( 9105) [002] dn.5 82316.871624: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
95472    RenderThread-9436  ( 9105) [002] d..2 82316.871636: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
95473<...>-770 ( 770) [005] d..2 82316.871636: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
95474<...>-13083 ( 8858) [002] .... 82316.871645: binder_transaction_received: transaction=1571502
95475          <idle>-0     (-----) [000] dnh2 82316.871660: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
95476          <idle>-0     (-----) [000] .n.1 82316.871667: cpu_idle: state=4294967295 cpu_id=0
95477<...>-770 ( 770) [005] ...1 82316.871669: tracing_mark_write: E|770
95478<...>-770 ( 770) [005] .... 82316.871677: binder_transaction: transaction=1571503 dest_node=0 dest_proc=27550 dest_thread=27780 reply=1 flags=0x0 code=0x0
95479          <idle>-0     (-----) [000] d..2 82316.871679: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
95480<...>-770 ( 770) [005] .... 82316.871679: binder_transaction_alloc_buf: transaction=1571503 data_size=168 offsets_size=32
95481<...>-770 ( 770) [005] .... 82316.871685: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
95482<...>-770 ( 770) [005] d..2 82316.871720: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27780 next_prio=110
95483           <...>-27780 (-----) [005] .... 82316.871730: binder_transaction_received: transaction=1571503
95484<...>-581 ( 571) [000] d..2 82316.871752: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95485          <idle>-0     (-----) [000] d..1 82316.871766: cpu_idle: state=0 cpu_id=0
95486          <idle>-0     (-----) [001] d.H3 82316.871883: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
95487          <idle>-0     (-----) [001] dnH4 82316.871898: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
95488          <idle>-0     (-----) [001] dns2 82316.871907: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95489<...>-13083 ( 8858) [002] .... 82316.871910: binder_transaction: transaction=1571504 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
95490<...>-13083 ( 8858) [002] .... 82316.871915: binder_transaction_alloc_buf: transaction=1571504 data_size=68 offsets_size=0
95491          <idle>-0     (-----) [001] dns3 82316.871926: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95492          <idle>-0     (-----) [001] .n.1 82316.871938: cpu_idle: state=4294967295 cpu_id=1
95493          <idle>-0     (-----) [001] d..2 82316.871946: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
95494<...>-13083 ( 8858) [002] d..2 82316.871963: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
95495    RenderThread-9436  ( 9105) [002] .... 82316.871973: binder_transaction_received: transaction=1571504
95496         sugov:0-576   (  576) [001] .... 82316.871982: clk_set_rate: pwrcl_clk 825600000
95497         sugov:0-576   (  576) [001] .... 82316.872002: clk_set_rate: cpu3_pwrcl_clk 748800000
95498         sugov:0-576   (  576) [001] .... 82316.872012: clk_set_rate: cpu2_pwrcl_clk 748800000
95499         sugov:0-576   (  576) [001] .... 82316.872020: clk_set_rate: cpu1_pwrcl_clk 748800000
95500         sugov:0-576   (  576) [001] .... 82316.872028: clk_set_rate: cpu0_pwrcl_clk 825600000
95501         sugov:0-576   (  576) [001] .... 82316.872036: cpu_frequency: state=825600 cpu_id=0
95502           <...>-27780 (-----) [005] ...1 82316.872045: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
95503           <...>-27780 (-----) [005] ...1 82316.872057: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
95504         sugov:0-576   (  576) [001] .... 82316.872060: cpu_frequency: state=825600 cpu_id=1
95505           <...>-27780 (-----) [005] ...1 82316.872061: tracing_mark_write: E|27550
95506         sugov:0-576   (  576) [001] .... 82316.872065: cpu_frequency: state=825600 cpu_id=2
95507         sugov:0-576   (  576) [001] .... 82316.872069: cpu_frequency: state=825600 cpu_id=3
95508    RenderThread-9436  ( 9105) [002] d..2 82316.872080: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95509         sugov:0-576   (  576) [001] d..2 82316.872087: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
95510          <idle>-0     (-----) [002] d..1 82316.872099: cpu_idle: state=0 cpu_id=2
95511     rcu_preempt-7     (    7) [001] d..2 82316.872122: 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
95512           <...>-27780 (-----) [005] .... 82316.872126: binder_transaction: transaction=1571505 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
95513           <...>-27780 (-----) [005] .... 82316.872130: binder_transaction_alloc_buf: transaction=1571505 data_size=556 offsets_size=104
95514          <idle>-0     (-----) [001] d..1 82316.872134: cpu_idle: state=0 cpu_id=1
95515           <...>-27780 (-----) [005] ...2 82316.872144: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
95516           <...>-27780 (-----) [005] d..4 82316.872146: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95517           <...>-27780 (-----) [005] dn.5 82316.872159: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95518           <...>-27780 (-----) [005] d..2 82316.872166: sched_switch: prev_comm=id.nn.benchmark prev_pid=27780 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95519<...>-5340 ( 788) [005] .... 82316.872175: binder_transaction_received: transaction=1571505
95520<...>-5340 ( 788) [005] ...1 82316.872226: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
95521<...>-5340 ( 788) [005] d..2 82316.872277: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95522<...>-5340 ( 788) [005] d..2 82316.872303: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27780 next_prio=110
95523          <idle>-0     (-----) [000] dnh2 82316.872307: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95524          <idle>-0     (-----) [000] .n.1 82316.872313: cpu_idle: state=4294967295 cpu_id=0
95525          <idle>-0     (-----) [000] d..2 82316.872325: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
95526           <...>-27780 (-----) [005] d..2 82316.872328: sched_switch: prev_comm=id.nn.benchmark prev_pid=27780 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
95527          <idle>-0     (-----) [005] d..1 82316.872346: cpu_idle: state=0 cpu_id=5
95528<...>-87 ( 87) [000] d..2 82316.872373: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95529          <idle>-0     (-----) [000] d..1 82316.872381: cpu_idle: state=0 cpu_id=0
95530          <idle>-0     (-----) [002] d.h4 82316.872382: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95531          <idle>-0     (-----) [002] dnh5 82316.872403: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95532          <idle>-0     (-----) [002] .n.1 82316.872415: cpu_idle: state=4294967295 cpu_id=2
95533          <idle>-0     (-----) [002] d..2 82316.872427: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
95534<...>-86 ( 86) [002] d.h4 82316.872462: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95535          <idle>-0     (-----) [005] dnh2 82316.872485: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95536          <idle>-0     (-----) [005] .n.1 82316.872489: cpu_idle: state=4294967295 cpu_id=5
95537          <idle>-0     (-----) [005] d..2 82316.872497: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95538<...>-86 ( 86) [002] d..2 82316.872523: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95539          <idle>-0     (-----) [002] d..1 82316.872538: cpu_idle: state=0 cpu_id=2
95540<...>-5340 ( 788) [005] d..1 82316.872553: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95541          <idle>-0     (-----) [000] dnh2 82316.872580: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95542          <idle>-0     (-----) [000] .n.1 82316.872586: cpu_idle: state=4294967295 cpu_id=0
95543          <idle>-0     (-----) [000] d..2 82316.872594: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
95544 neuralnetworks@-13088 (  788) [000] d..2 82316.872645: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95545          <idle>-0     (-----) [000] d..1 82316.872654: cpu_idle: state=0 cpu_id=0
95546<...>-5340 ( 788) [005] d..2 82316.872704: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95547          <idle>-0     (-----) [000] dnh2 82316.872725: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95548<...>-5340 ( 788) [005] d..2 82316.872730: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
95549          <idle>-0     (-----) [000] .n.1 82316.872732: cpu_idle: state=4294967295 cpu_id=0
95550          <idle>-0     (-----) [000] d..2 82316.872740: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
95551          <idle>-0     (-----) [005] d..1 82316.872744: cpu_idle: state=0 cpu_id=5
95552          <idle>-0     (-----) [002] d.h4 82316.872778: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95553<...>-87 ( 87) [000] d..2 82316.872779: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95554          <idle>-0     (-----) [000] d..1 82316.872787: cpu_idle: state=0 cpu_id=0
95555          <idle>-0     (-----) [002] dnh5 82316.872789: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95556          <idle>-0     (-----) [002] .n.1 82316.872799: cpu_idle: state=4294967295 cpu_id=2
95557          <idle>-0     (-----) [002] d..2 82316.872811: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
95558          <idle>-0     (-----) [001] d.h2 82316.872812: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
95559          <idle>-0     (-----) [001] dnh3 82316.872826: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
95560          <idle>-0     (-----) [001] .n.1 82316.872835: cpu_idle: state=4294967295 cpu_id=1
95561<...>-86 ( 86) [002] d..2 82316.872845: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95562          <idle>-0     (-----) [001] d..2 82316.872846: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
95563          <idle>-0     (-----) [002] d..1 82316.872858: cpu_idle: state=0 cpu_id=2
95564        DispSync-8879  ( 8858) [001] d..1 82316.872864: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
95565        DispSync-8879  ( 8858) [001] d..2 82316.872880: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
95566          <idle>-0     (-----) [003] .n.1 82316.872886: cpu_idle: state=4294967295 cpu_id=3
95567          <idle>-0     (-----) [003] d..2 82316.872897: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
95568        DispSync-8879  ( 8858) [001] d..2 82316.872910: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95569          <idle>-0     (-----) [001] d..1 82316.872922: cpu_idle: state=0 cpu_id=1
95570   sfEventThread-8882  ( 8858) [003] d..3 82316.872934: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
95571   sfEventThread-8882  ( 8858) [003] d..4 82316.872956: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
95572          <idle>-0     (-----) [001] .n.1 82316.872961: cpu_idle: state=4294967295 cpu_id=1
95573          <idle>-0     (-----) [001] d..2 82316.872972: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
95574   sfEventThread-8882  ( 8858) [003] d..2 82316.872990: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95575          <idle>-0     (-----) [003] d..1 82316.873005: cpu_idle: state=0 cpu_id=3
95576          <idle>-0     (-----) [005] ...1 82316.873075: cpu_idle: state=4294967295 cpu_id=5
95577          <idle>-0     (-----) [005] d..1 82316.873078: cpu_idle: state=0 cpu_id=5
95578  surfaceflinger-8858  ( 8858) [001] d..1 82316.873315: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
95579  surfaceflinger-8858  ( 8858) [001] d..2 82316.873336: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
95580          <idle>-0     (-----) [003] .n.1 82316.873341: cpu_idle: state=4294967295 cpu_id=3
95581          <idle>-0     (-----) [003] d..2 82316.873351: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
95582   sfEventThread-8882  ( 8858) [003] d..2 82316.873387: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95583          <idle>-0     (-----) [003] d..1 82316.873398: cpu_idle: state=0 cpu_id=3
95584  surfaceflinger-8858  ( 8858) [001] ...1 82316.873533: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
95585  surfaceflinger-8858  ( 8858) [001] ...1 82316.873540: tracing_mark_write: E|8858
95586  surfaceflinger-8858  ( 8858) [001] .... 82316.873593: binder_transaction: transaction=1571508 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
95587  surfaceflinger-8858  ( 8858) [001] .... 82316.873598: binder_transaction_alloc_buf: transaction=1571508 data_size=540 offsets_size=96
95588  surfaceflinger-8858  ( 8858) [001] ...2 82316.873623: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
95589  surfaceflinger-8858  ( 8858) [001] d..4 82316.873632: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
95590  surfaceflinger-8858  ( 8858) [001] d..5 82316.873653: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
95591          <idle>-0     (-----) [002] .n.1 82316.873660: cpu_idle: state=4294967295 cpu_id=2
95592          <idle>-0     (-----) [002] d..2 82316.873670: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
95593 [email protected]   (  619) [002] .... 82316.873682: binder_transaction_received: transaction=1571508
95594  surfaceflinger-8858  ( 8858) [001] d..2 82316.873686: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
95595          <idle>-0     (-----) [001] d..1 82316.873702: cpu_idle: state=0 cpu_id=1
95596 [email protected]   (  619) [002] ...1 82316.873731: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
95597 [email protected]   (  619) [002] ...1 82316.873850: tracing_mark_write: B|619|HWCSession::PresentDisplay::
95598 [email protected]   (  619) [002] ...1 82316.874066: tracing_mark_write: B|619|HWDeviceDRM::Commit::
95599 [email protected]   (  619) [002] ...1 82316.874080: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
95600 [email protected]   (  619) [002] d.h3 82316.874430: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95601          <idle>-0     (-----) [005] dnh2 82316.874454: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95602          <idle>-0     (-----) [005] .n.1 82316.874457: cpu_idle: state=4294967295 cpu_id=5
95603          <idle>-0     (-----) [005] d..2 82316.874466: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95604<...>-5340 ( 788) [005] d..1 82316.874518: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95605          <idle>-0     (-----) [000] dnh2 82316.874538: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95606          <idle>-0     (-----) [000] .n.1 82316.874547: cpu_idle: state=4294967295 cpu_id=0
95607          <idle>-0     (-----) [000] d..2 82316.874555: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
95608<...>-5340 ( 788) [005] ...1 82316.874608: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
95609<...>-5340 ( 788) [005] ...1 82316.874612: tracing_mark_write: E|788
95610 neuralnetworks@-13088 (  788) [000] d..2 82316.874616: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95611          <idle>-0     (-----) [000] d..1 82316.874625: cpu_idle: state=0 cpu_id=0
95612<...>-5340 ( 788) [005] .... 82316.874629: binder_transaction: transaction=1571509 dest_node=1571506 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
95613<...>-5340 ( 788) [005] .... 82316.874633: binder_transaction_alloc_buf: transaction=1571509 data_size=60 offsets_size=0
95614<...>-5340 ( 788) [005] d..4 82316.874636: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
95615<...>-5340 ( 788) [005] d..5 82316.874650: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
95616          <idle>-0     (-----) [004] .n.1 82316.874656: cpu_idle: state=4294967295 cpu_id=4
95617          <idle>-0     (-----) [004] d..2 82316.874664: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
95618           <...>-27571 (-----) [004] .... 82316.874670: binder_transaction_received: transaction=1571509
95619<...>-5340 ( 788) [005] ...1 82316.874674: tracing_mark_write: E|788
95620<...>-5340 ( 788) [005] .... 82316.874680: binder_transaction: transaction=1571510 dest_node=0 dest_proc=27550 dest_thread=27780 reply=1 flags=0x0 code=0x0
95621<...>-5340 ( 788) [005] .... 82316.874682: binder_transaction_alloc_buf: transaction=1571510 data_size=8 offsets_size=0
95622<...>-5340 ( 788) [005] d..2 82316.874684: sched_waking: comm=id.nn.benchmark pid=27780 prio=110 target_cpu=005
95623           <...>-27571 (-----) [004] ...1 82316.874689: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
95624<...>-5340 ( 788) [005] d..3 82316.874691: sched_wakeup: comm=id.nn.benchmark pid=27780 prio=110 target_cpu=005
95625<...>-5340 ( 788) [005] .... 82316.874693: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
95626           <...>-27571 (-----) [004] ...1 82316.874695: tracing_mark_write: E|27550
95627           <...>-27571 (-----) [004] d..2 82316.874722: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95628          <idle>-0     (-----) [004] d..1 82316.874730: cpu_idle: state=0 cpu_id=4
95629<...>-5340 ( 788) [005] d..2 82316.874735: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27780 next_prio=110
95630           <...>-27780 (-----) [005] .... 82316.874745: binder_transaction_received: transaction=1571510
95631           <...>-27780 (-----) [005] ...1 82316.874782: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
95632           <...>-27780 (-----) [005] ...1 82316.874789: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
95633 [email protected]   (  619) [002] d..2 82316.874812: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
95634           <...>-27780 (-----) [005] ...1 82316.874815: tracing_mark_write: E|27550
95635           <...>-27780 (-----) [005] ...1 82316.874818: tracing_mark_write: E|27550
95636           <...>-27780 (-----) [005] ...1 82316.874822: tracing_mark_write: E|27550
95637 [email protected]   (  619) [002] d..3 82316.874840: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
95638          <idle>-0     (-----) [001] .n.1 82316.874845: cpu_idle: state=4294967295 cpu_id=1
95639          <idle>-0     (-----) [001] d..2 82316.874857: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
95640 [email protected]   (  619) [002] ...1 82316.874974: tracing_mark_write: E|619
95641 [email protected]   (  619) [002] ...1 82316.874981: tracing_mark_write: E|619
95642           <...>-27780 (-----) [005] ...1 82316.875008: tracing_mark_write: E|27550
95643           <...>-27780 (-----) [005] d..1 82316.875021: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95644           <...>-27780 (-----) [005] d..2 82316.875038: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95645          <idle>-0     (-----) [004] .n.1 82316.875043: cpu_idle: state=4294967295 cpu_id=4
95646 [email protected]   (  619) [002] ...1 82316.875044: tracing_mark_write: E|619
95647          <idle>-0     (-----) [004] d..2 82316.875050: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
95648           <...>-27550 (-----) [004] d..2 82316.875069: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95649          <idle>-0     (-----) [004] d..1 82316.875078: cpu_idle: state=0 cpu_id=4
95650 [email protected]   (  619) [002] ...1 82316.875090: tracing_mark_write: E|619
95651          <idle>-0     (-----) [000] d.s2 82316.875134: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
95652           <...>-27780 (-----) [005] d.s2 82316.875136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95653 [email protected]   (  619) [002] .... 82316.875144: binder_transaction: transaction=1571511 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
95654 [email protected]   (  619) [002] .... 82316.875149: binder_transaction_alloc_buf: transaction=1571511 data_size=576 offsets_size=112
95655          <idle>-0     (-----) [000] dns3 82316.875153: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
95656 crtc_commit:111-321   (  321) [001] d.h1 82316.875159: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
95657          <idle>-0     (-----) [000] .n.1 82316.875166: cpu_idle: state=4294967295 cpu_id=0
95658 [email protected]   (  619) [002] d..2 82316.875170: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
95659           <...>-27780 (-----) [005] d..1 82316.875173: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95660          <idle>-0     (-----) [000] d..2 82316.875176: 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
95661           <...>-27780 (-----) [005] d..2 82316.875182: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95662<...>-8 ( 8) [000] d..2 82316.875187: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
95663          <idle>-0     (-----) [004] .n.1 82316.875187: cpu_idle: state=4294967295 cpu_id=4
95664          <idle>-0     (-----) [004] d..2 82316.875196: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
95665 [email protected]   (  619) [002] d..3 82316.875199: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
95666 [email protected]   (  619) [002] .... 82316.875204: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
95667          <idle>-0     (-----) [003] .n.1 82316.875204: cpu_idle: state=4294967295 cpu_id=3
95668<...>-8 ( 8) [000] d..3 82316.875205: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
95669          <idle>-0     (-----) [003] d..2 82316.875218: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
95670<...>-8 ( 8) [000] d..2 82316.875219: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
95671           <...>-27780 (-----) [005] d..2 82316.875224: sched_switch: prev_comm=id.nn.benchmark prev_pid=27780 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
95672  surfaceflinger-8858  ( 8858) [003] .... 82316.875228: binder_transaction_received: transaction=1571511
95673           <...>-27550 (-----) [004] ...1 82316.875229: tracing_mark_write: E|27550
95674<...>-46 ( 46) [000] d..2 82316.875230: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
95675           <...>-27550 (-----) [004] ...1 82316.875234: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
95676           <...>-27550 (-----) [004] ...1 82316.875240: tracing_mark_write: E|27550
95677<...>-46 ( 46) [000] d..3 82316.875243: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
95678           <...>-27550 (-----) [004] ...1 82316.875243: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
95679          <idle>-0     (-----) [005] d..1 82316.875244: cpu_idle: state=0 cpu_id=5
95680           <...>-27550 (-----) [004] ...1 82316.875248: tracing_mark_write: E|27550
95681<...>-46 ( 46) [000] d..2 82316.875252: 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
95682           <...>-27550 (-----) [004] ...1 82316.875252: tracing_mark_write: E|27550
95683<...>-8 ( 8) [000] d..2 82316.875275: 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
95684          <idle>-0     (-----) [000] d..1 82316.875290: cpu_idle: state=0 cpu_id=0
95685 [email protected]   (  619) [002] d..2 82316.875292: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95686          <idle>-0     (-----) [002] d..1 82316.875311: cpu_idle: state=0 cpu_id=2
95687 crtc_commit:111-321   (  321) [001] d..2 82316.875340: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
95688     rcu_preempt-7     (    7) [001] d..2 82316.875348: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
95689           <...>-27550 (-----) [004] ...1 82316.875364: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
95690     rcu_preempt-7     (    7) [001] d..3 82316.875369: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
95691     rcu_preempt-7     (    7) [001] d..2 82316.875384: 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
95692         rcuop/4-45    (   45) [001] d..2 82316.875391: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
95693         rcuop/4-45    (   45) [001] d..3 82316.875406: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
95694         rcuop/4-45    (   45) [001] d..2 82316.875417: 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
95695           <...>-27550 (-----) [004] ...1 82316.875421: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
95696           <...>-27550 (-----) [004] ...1 82316.875426: tracing_mark_write: E|27550
95697           <...>-27550 (-----) [004] ...1 82316.875430: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
95698           <...>-27550 (-----) [004] ...1 82316.875435: tracing_mark_write: E|27550
95699           <...>-27550 (-----) [004] ...1 82316.875439: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
95700           <...>-27550 (-----) [004] ...1 82316.875442: tracing_mark_write: E|27550
95701           <...>-27550 (-----) [004] ...1 82316.875446: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
95702  surfaceflinger-8858  ( 8858) [003] d..2 82316.875452: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
95703  surfaceflinger-8858  ( 8858) [003] d..3 82316.875509: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
95704         rcuop/5-53    (   53) [001] d..2 82316.875525: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
95705          <idle>-0     (-----) [005] .n.1 82316.875539: cpu_idle: state=4294967295 cpu_id=5
95706           <...>-27550 (-----) [004] ...1 82316.875540: tracing_mark_write: E|27550
95707           <...>-27550 (-----) [004] ...1 82316.875545: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
95708          <idle>-0     (-----) [005] d..2 82316.875548: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27781 next_prio=110
95709         rcuop/2-29    (   29) [001] d..2 82316.875548: 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
95710           <...>-27550 (-----) [004] d..2 82316.875562: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95711          <idle>-0     (-----) [001] d..1 82316.875565: cpu_idle: state=0 cpu_id=1
95712          <idle>-0     (-----) [004] d..1 82316.875576: cpu_idle: state=0 cpu_id=4
95713           <...>-27781 (-----) [005] ...1 82316.875610: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
95714           <...>-27781 (-----) [005] ...1 82316.875625: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
95715           <...>-27781 (-----) [005] ...1 82316.875629: tracing_mark_write: E|27550
95716           <...>-27781 (-----) [005] .... 82316.875651: binder_transaction: transaction=1571512 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
95717           <...>-27781 (-----) [005] .... 82316.875654: binder_transaction_alloc_buf: transaction=1571512 data_size=48 offsets_size=0
95718           <...>-27781 (-----) [005] ...2 82316.875657: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
95719           <...>-27781 (-----) [005] d..4 82316.875660: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
95720           <...>-27781 (-----) [005] dn.5 82316.875671: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
95721           <...>-27781 (-----) [005] d..2 82316.875678: sched_switch: prev_comm=id.nn.benchmark prev_pid=27781 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
95722<...>-770 ( 770) [005] .... 82316.875688: binder_transaction_received: transaction=1571512
95723<...>-770 ( 770) [005] ...1 82316.875712: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
95724  surfaceflinger-8858  ( 8858) [003] d..2 82316.875764: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
95725          <idle>-0     (-----) [003] d..1 82316.875783: cpu_idle: state=0 cpu_id=3
95726<...>-770 ( 770) [005] d..2 82316.875798: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
95727          <idle>-0     (-----) [000] dnh2 82316.875826: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
95728          <idle>-0     (-----) [000] .n.1 82316.875832: cpu_idle: state=4294967295 cpu_id=0
95729<...>-770 ( 770) [005] ...1 82316.875841: tracing_mark_write: E|770
95730          <idle>-0     (-----) [000] d..2 82316.875844: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
95731<...>-770 ( 770) [005] .... 82316.875849: binder_transaction: transaction=1571513 dest_node=0 dest_proc=27550 dest_thread=27781 reply=1 flags=0x0 code=0x0
95732<...>-770 ( 770) [005] .... 82316.875851: binder_transaction_alloc_buf: transaction=1571513 data_size=168 offsets_size=32
95733<...>-770 ( 770) [005] .... 82316.875858: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
95734<...>-770 ( 770) [005] d..2 82316.875894: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27781 next_prio=110
95735           <...>-27781 (-----) [005] .... 82316.875905: binder_transaction_received: transaction=1571513
95736<...>-581 ( 571) [000] d..2 82316.875926: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95737          <idle>-0     (-----) [000] d..1 82316.875939: cpu_idle: state=0 cpu_id=0
95738           <...>-27781 (-----) [005] ...1 82316.875979: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
95739           <...>-27781 (-----) [005] ...1 82316.875984: tracing_mark_write: E|27550
95740           <...>-27781 (-----) [005] .... 82316.875999: binder_transaction: transaction=1571514 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
95741           <...>-27781 (-----) [005] .... 82316.876003: binder_transaction_alloc_buf: transaction=1571514 data_size=48 offsets_size=0
95742           <...>-27781 (-----) [005] ...2 82316.876005: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
95743           <...>-27781 (-----) [005] d..4 82316.876007: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
95744           <...>-27781 (-----) [005] dn.5 82316.876018: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
95745           <...>-27781 (-----) [005] d..2 82316.876025: sched_switch: prev_comm=id.nn.benchmark prev_pid=27781 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
95746<...>-770 ( 770) [005] .... 82316.876033: binder_transaction_received: transaction=1571514
95747<...>-770 ( 770) [005] ...1 82316.876049: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
95748<...>-770 ( 770) [005] d..2 82316.876107: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
95749          <idle>-0     (-----) [000] dnh2 82316.876131: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
95750          <idle>-0     (-----) [000] .n.1 82316.876137: cpu_idle: state=4294967295 cpu_id=0
95751<...>-770 ( 770) [005] ...1 82316.876140: tracing_mark_write: E|770
95752<...>-770 ( 770) [005] .... 82316.876147: binder_transaction: transaction=1571515 dest_node=0 dest_proc=27550 dest_thread=27781 reply=1 flags=0x0 code=0x0
95753          <idle>-0     (-----) [000] d..2 82316.876149: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
95754<...>-770 ( 770) [005] .... 82316.876150: binder_transaction_alloc_buf: transaction=1571515 data_size=168 offsets_size=32
95755<...>-770 ( 770) [005] .... 82316.876156: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
95756<...>-770 ( 770) [005] d..2 82316.876190: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27781 next_prio=110
95757           <...>-27781 (-----) [005] .... 82316.876200: binder_transaction_received: transaction=1571515
95758<...>-581 ( 571) [000] d..2 82316.876210: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95759          <idle>-0     (-----) [000] d..1 82316.876223: cpu_idle: state=0 cpu_id=0
95760           <...>-27781 (-----) [005] ...1 82316.876483: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
95761           <...>-27781 (-----) [005] ...1 82316.876493: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
95762           <...>-27781 (-----) [005] ...1 82316.876497: tracing_mark_write: E|27550
95763           <...>-27781 (-----) [005] .... 82316.876562: binder_transaction: transaction=1571516 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
95764           <...>-27781 (-----) [005] .... 82316.876565: binder_transaction_alloc_buf: transaction=1571516 data_size=556 offsets_size=104
95765           <...>-27781 (-----) [005] ...2 82316.876580: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
95766           <...>-27781 (-----) [005] d..4 82316.876582: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95767           <...>-27781 (-----) [005] dn.5 82316.876594: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95768           <...>-27781 (-----) [005] d..2 82316.876601: sched_switch: prev_comm=id.nn.benchmark prev_pid=27781 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95769          <idle>-0     (-----) [002] ...1 82316.876602: cpu_idle: state=4294967295 cpu_id=2
95770          <idle>-0     (-----) [002] d..1 82316.876608: cpu_idle: state=0 cpu_id=2
95771<...>-5340 ( 788) [005] .... 82316.876610: binder_transaction_received: transaction=1571516
95772<...>-5340 ( 788) [005] ...1 82316.876658: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
95773<...>-5340 ( 788) [005] d..2 82316.876708: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95774<...>-5340 ( 788) [005] d..2 82316.876733: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27781 next_prio=110
95775          <idle>-0     (-----) [000] dnh2 82316.876737: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95776          <idle>-0     (-----) [000] .n.1 82316.876743: cpu_idle: state=4294967295 cpu_id=0
95777          <idle>-0     (-----) [000] d..2 82316.876755: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
95778           <...>-27781 (-----) [005] d..2 82316.876756: sched_switch: prev_comm=id.nn.benchmark prev_pid=27781 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
95779          <idle>-0     (-----) [005] d..1 82316.876775: cpu_idle: state=0 cpu_id=5
95780<...>-87 ( 87) [000] d..2 82316.876796: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95781          <idle>-0     (-----) [002] d.h4 82316.876808: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95782          <idle>-0     (-----) [000] d..1 82316.876809: cpu_idle: state=0 cpu_id=0
95783          <idle>-0     (-----) [002] dnh5 82316.876828: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95784          <idle>-0     (-----) [002] .n.1 82316.876838: cpu_idle: state=4294967295 cpu_id=2
95785          <idle>-0     (-----) [002] d..2 82316.876850: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
95786<...>-86 ( 86) [002] d..3 82316.876885: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95787          <idle>-0     (-----) [005] dnh2 82316.876907: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95788          <idle>-0     (-----) [005] .n.1 82316.876912: cpu_idle: state=4294967295 cpu_id=5
95789          <idle>-0     (-----) [005] d..2 82316.876920: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95790<...>-86 ( 86) [002] d..2 82316.876945: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95791          <idle>-0     (-----) [002] d..1 82316.876960: cpu_idle: state=0 cpu_id=2
95792<...>-5340 ( 788) [005] d..1 82316.876974: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95793          <idle>-0     (-----) [000] dnh2 82316.877000: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95794          <idle>-0     (-----) [000] .n.1 82316.877006: cpu_idle: state=4294967295 cpu_id=0
95795          <idle>-0     (-----) [000] d..2 82316.877017: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
95796 neuralnetworks@-13088 (  788) [000] d..2 82316.877064: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95797          <idle>-0     (-----) [000] d..1 82316.877076: cpu_idle: state=0 cpu_id=0
95798<...>-5340 ( 788) [005] d..2 82316.877122: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95799          <idle>-0     (-----) [000] dnh2 82316.877144: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95800<...>-5340 ( 788) [005] d..2 82316.877148: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
95801          <idle>-0     (-----) [000] .n.1 82316.877150: cpu_idle: state=4294967295 cpu_id=0
95802          <idle>-0     (-----) [000] d..2 82316.877161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
95803          <idle>-0     (-----) [005] d..1 82316.877162: cpu_idle: state=0 cpu_id=5
95804          <idle>-0     (-----) [002] d.h4 82316.877200: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95805<...>-87 ( 87) [000] d..2 82316.877200: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95806          <idle>-0     (-----) [000] d..1 82316.877210: cpu_idle: state=0 cpu_id=0
95807          <idle>-0     (-----) [002] dnh5 82316.877211: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95808          <idle>-0     (-----) [002] .n.1 82316.877220: cpu_idle: state=4294967295 cpu_id=2
95809          <idle>-0     (-----) [002] d..2 82316.877231: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
95810<...>-86 ( 86) [002] d..2 82316.877264: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95811          <idle>-0     (-----) [002] d..1 82316.877276: cpu_idle: state=0 cpu_id=2
95812          <idle>-0     (-----) [005] ...1 82316.877483: cpu_idle: state=4294967295 cpu_id=5
95813          <idle>-0     (-----) [005] d..1 82316.877486: cpu_idle: state=0 cpu_id=5
95814          <idle>-0     (-----) [002] d..2 82316.878884: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
95815          <idle>-0     (-----) [002] dn.3 82316.878898: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
95816          <idle>-0     (-----) [002] dnh4 82316.878921: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95817          <idle>-0     (-----) [005] dnh2 82316.878941: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95818          <idle>-0     (-----) [005] .n.1 82316.878945: cpu_idle: state=4294967295 cpu_id=5
95819          <idle>-0     (-----) [005] d..2 82316.878954: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95820          <idle>-0     (-----) [002] dns3 82316.878963: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
95821          <idle>-0     (-----) [002] dns4 82316.879001: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
95822<...>-5340 ( 788) [005] d..1 82316.879005: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95823          <idle>-0     (-----) [002] .n.1 82316.879013: cpu_idle: state=4294967295 cpu_id=2
95824          <idle>-0     (-----) [000] dnh2 82316.879029: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95825          <idle>-0     (-----) [002] d..2 82316.879031: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
95826          <idle>-0     (-----) [000] .n.1 82316.879035: cpu_idle: state=4294967295 cpu_id=0
95827     ksoftirqd/2-26    (   26) [002] d..2 82316.879045: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
95828          <idle>-0     (-----) [000] d..2 82316.879047: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
95829<...>-5340 ( 788) [005] ...1 82316.879095: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
95830<...>-5340 ( 788) [005] ...1 82316.879099: tracing_mark_write: E|788
95831<...>-5340 ( 788) [005] .... 82316.879115: binder_transaction: transaction=1571519 dest_node=1571517 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
95832<...>-5340 ( 788) [005] .... 82316.879118: binder_transaction_alloc_buf: transaction=1571519 data_size=60 offsets_size=0
95833<...>-5340 ( 788) [005] d..4 82316.879121: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
95834 neuralnetworks@-13088 (  788) [000] d..2 82316.879128: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95835<...>-5340 ( 788) [005] d..5 82316.879133: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
95836          <idle>-0     (-----) [004] .n.1 82316.879139: cpu_idle: state=4294967295 cpu_id=4
95837          <idle>-0     (-----) [000] d..1 82316.879147: cpu_idle: state=0 cpu_id=0
95838          <idle>-0     (-----) [004] d..2 82316.879148: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
95839           <...>-27571 (-----) [004] .... 82316.879153: binder_transaction_received: transaction=1571519
95840<...>-5340 ( 788) [005] ...1 82316.879155: tracing_mark_write: E|788
95841<...>-5340 ( 788) [005] .... 82316.879161: binder_transaction: transaction=1571520 dest_node=0 dest_proc=27550 dest_thread=27781 reply=1 flags=0x0 code=0x0
95842<...>-5340 ( 788) [005] .... 82316.879163: binder_transaction_alloc_buf: transaction=1571520 data_size=8 offsets_size=0
95843<...>-5340 ( 788) [005] d..2 82316.879165: sched_waking: comm=id.nn.benchmark pid=27781 prio=110 target_cpu=005
95844  kworker/u16:15-1311  ( 1311) [002] .... 82316.879166: clk_set_rate: l3_cluster0_vote_clk 403200000
95845           <...>-27571 (-----) [004] ...1 82316.879172: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
95846<...>-5340 ( 788) [005] d..3 82316.879172: sched_wakeup: comm=id.nn.benchmark pid=27781 prio=110 target_cpu=005
95847<...>-5340 ( 788) [005] .... 82316.879173: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
95848           <...>-27571 (-----) [004] ...1 82316.879178: tracing_mark_write: E|27550
95849<...>-5340 ( 788) [005] d..2 82316.879215: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27781 next_prio=110
95850           <...>-27571 (-----) [004] d..2 82316.879218: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95851          <idle>-0     (-----) [004] d..1 82316.879226: cpu_idle: state=0 cpu_id=4
95852           <...>-27781 (-----) [005] .... 82316.879237: binder_transaction_received: transaction=1571520
95853           <...>-27781 (-----) [005] ...1 82316.879277: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
95854           <...>-27781 (-----) [005] ...1 82316.879283: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
95855           <...>-27781 (-----) [005] ...1 82316.879308: tracing_mark_write: E|27550
95856           <...>-27781 (-----) [005] ...1 82316.879312: tracing_mark_write: E|27550
95857           <...>-27781 (-----) [005] ...1 82316.879315: tracing_mark_write: E|27550
95858  kworker/u16:15-1311  ( 1311) [002] d..2 82316.879485: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
95859          <idle>-0     (-----) [002] d..1 82316.879499: cpu_idle: state=0 cpu_id=2
95860           <...>-27781 (-----) [005] ...1 82316.879499: tracing_mark_write: E|27550
95861           <...>-27781 (-----) [005] d..1 82316.879512: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95862          <idle>-0     (-----) [001] d.s3 82316.879522: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
95863           <...>-27781 (-----) [005] d..2 82316.879527: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95864          <idle>-0     (-----) [004] .n.1 82316.879532: cpu_idle: state=4294967295 cpu_id=4
95865          <idle>-0     (-----) [001] d.s4 82316.879534: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
95866          <idle>-0     (-----) [004] d..2 82316.879539: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
95867          <idle>-0     (-----) [001] d.s4 82316.879544: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
95868          <idle>-0     (-----) [002] .n.1 82316.879550: cpu_idle: state=4294967295 cpu_id=2
95869          <idle>-0     (-----) [001] ...1 82316.879553: cpu_idle: state=4294967295 cpu_id=1
95870           <...>-27550 (-----) [004] d..2 82316.879558: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95871          <idle>-0     (-----) [001] d..1 82316.879559: cpu_idle: state=0 cpu_id=1
95872          <idle>-0     (-----) [002] d..2 82316.879562: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
95873          <idle>-0     (-----) [004] d..1 82316.879567: cpu_idle: state=0 cpu_id=4
95874           <...>-27781 (-----) [005] d..1 82316.879631: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95875           <...>-27781 (-----) [005] d..2 82316.879641: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
95876  kworker/u16:15-1311  ( 1311) [002] d..2 82316.879642: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95877          <idle>-0     (-----) [004] .n.1 82316.879646: cpu_idle: state=4294967295 cpu_id=4
95878          <idle>-0     (-----) [004] d..2 82316.879654: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
95879          <idle>-0     (-----) [002] d..1 82316.879654: cpu_idle: state=0 cpu_id=2
95880           <...>-27781 (-----) [005] d..2 82316.879678: sched_switch: prev_comm=id.nn.benchmark prev_pid=27781 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
95881           <...>-27550 (-----) [004] ...1 82316.879700: tracing_mark_write: E|27550
95882           <...>-27550 (-----) [004] ...1 82316.879705: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
95883          <idle>-0     (-----) [005] d..1 82316.879707: cpu_idle: state=0 cpu_id=5
95884           <...>-27550 (-----) [004] ...1 82316.879711: tracing_mark_write: E|27550
95885           <...>-27550 (-----) [004] ...1 82316.879715: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
95886           <...>-27550 (-----) [004] ...1 82316.879719: tracing_mark_write: E|27550
95887           <...>-27550 (-----) [004] ...1 82316.879724: tracing_mark_write: E|27550
95888           <...>-27550 (-----) [004] ...1 82316.879838: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
95889           <...>-27550 (-----) [004] ...1 82316.879896: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
95890           <...>-27550 (-----) [004] ...1 82316.879900: tracing_mark_write: E|27550
95891           <...>-27550 (-----) [004] ...1 82316.879905: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
95892           <...>-27550 (-----) [004] ...1 82316.879911: tracing_mark_write: E|27550
95893           <...>-27550 (-----) [004] ...1 82316.879914: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
95894           <...>-27550 (-----) [004] ...1 82316.879918: tracing_mark_write: E|27550
95895           <...>-27550 (-----) [004] ...1 82316.879922: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
95896          <idle>-0     (-----) [005] .n.1 82316.880008: cpu_idle: state=4294967295 cpu_id=5
95897           <...>-27550 (-----) [004] ...1 82316.880009: tracing_mark_write: E|27550
95898           <...>-27550 (-----) [004] ...1 82316.880014: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
95899          <idle>-0     (-----) [005] d..2 82316.880017: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27782 next_prio=110
95900           <...>-27550 (-----) [004] d..2 82316.880030: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
95901          <idle>-0     (-----) [004] d..1 82316.880045: cpu_idle: state=0 cpu_id=4
95902           <...>-27782 (-----) [005] ...1 82316.880078: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
95903           <...>-27782 (-----) [005] ...1 82316.880092: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
95904           <...>-27782 (-----) [005] ...1 82316.880096: tracing_mark_write: E|27550
95905           <...>-27782 (-----) [005] .... 82316.880118: binder_transaction: transaction=1571521 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
95906           <...>-27782 (-----) [005] .... 82316.880121: binder_transaction_alloc_buf: transaction=1571521 data_size=48 offsets_size=0
95907           <...>-27782 (-----) [005] ...2 82316.880124: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
95908           <...>-27782 (-----) [005] d..4 82316.880127: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
95909           <...>-27782 (-----) [005] dn.5 82316.880138: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
95910           <...>-27782 (-----) [005] d..2 82316.880144: sched_switch: prev_comm=id.nn.benchmark prev_pid=27782 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
95911<...>-770 ( 770) [005] .... 82316.880154: binder_transaction_received: transaction=1571521
95912<...>-770 ( 770) [005] ...1 82316.880176: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
95913<...>-770 ( 770) [005] d..2 82316.880249: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
95914          <idle>-0     (-----) [000] dnh2 82316.880275: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
95915          <idle>-0     (-----) [000] .n.1 82316.880281: cpu_idle: state=4294967295 cpu_id=0
95916          <idle>-0     (-----) [000] d..2 82316.880289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
95917<...>-770 ( 770) [005] ...1 82316.880291: tracing_mark_write: E|770
95918<...>-770 ( 770) [005] .... 82316.880299: binder_transaction: transaction=1571522 dest_node=0 dest_proc=27550 dest_thread=27782 reply=1 flags=0x0 code=0x0
95919<...>-770 ( 770) [005] .... 82316.880301: binder_transaction_alloc_buf: transaction=1571522 data_size=168 offsets_size=32
95920<...>-770 ( 770) [005] .... 82316.880308: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
95921<...>-770 ( 770) [005] d..2 82316.880343: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27782 next_prio=110
95922           <...>-27782 (-----) [005] .... 82316.880355: binder_transaction_received: transaction=1571522
95923<...>-581 ( 571) [000] d..2 82316.880363: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95924          <idle>-0     (-----) [000] d..1 82316.880374: cpu_idle: state=0 cpu_id=0
95925           <...>-27782 (-----) [005] ...1 82316.880424: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
95926           <...>-27782 (-----) [005] ...1 82316.880430: tracing_mark_write: E|27550
95927           <...>-27782 (-----) [005] .... 82316.880444: binder_transaction: transaction=1571523 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
95928           <...>-27782 (-----) [005] .... 82316.880447: binder_transaction_alloc_buf: transaction=1571523 data_size=48 offsets_size=0
95929           <...>-27782 (-----) [005] ...2 82316.880449: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
95930           <...>-27782 (-----) [005] d..4 82316.880452: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
95931           <...>-27782 (-----) [005] dn.5 82316.880462: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
95932           <...>-27782 (-----) [005] d..2 82316.880468: sched_switch: prev_comm=id.nn.benchmark prev_pid=27782 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
95933<...>-770 ( 770) [005] .... 82316.880476: binder_transaction_received: transaction=1571523
95934<...>-770 ( 770) [005] ...1 82316.880493: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
95935<...>-770 ( 770) [005] d..2 82316.880552: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
95936          <idle>-0     (-----) [000] dnh2 82316.880576: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
95937          <idle>-0     (-----) [000] .n.1 82316.880582: cpu_idle: state=4294967295 cpu_id=0
95938<...>-770 ( 770) [005] ...1 82316.880586: tracing_mark_write: E|770
95939          <idle>-0     (-----) [000] d..2 82316.880591: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
95940<...>-770 ( 770) [005] .... 82316.880593: binder_transaction: transaction=1571524 dest_node=0 dest_proc=27550 dest_thread=27782 reply=1 flags=0x0 code=0x0
95941<...>-770 ( 770) [005] .... 82316.880596: binder_transaction_alloc_buf: transaction=1571524 data_size=168 offsets_size=32
95942<...>-770 ( 770) [005] .... 82316.880601: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
95943<...>-770 ( 770) [005] d..2 82316.880636: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27782 next_prio=110
95944           <...>-27782 (-----) [005] .... 82316.880646: binder_transaction_received: transaction=1571524
95945<...>-581 ( 571) [000] d..2 82316.880659: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95946          <idle>-0     (-----) [000] d..1 82316.880669: cpu_idle: state=0 cpu_id=0
95947          <idle>-0     (-----) [000] d.h5 82316.880832: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
95948          <idle>-0     (-----) [000] dnh6 82316.880851: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
95949          <idle>-0     (-----) [000] dnh5 82316.880856: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
95950          <idle>-0     (-----) [000] dnh6 82316.880869: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
95951          <idle>-0     (-----) [001] .n.1 82316.880875: cpu_idle: state=4294967295 cpu_id=1
95952          <idle>-0     (-----) [000] .n.1 82316.880881: cpu_idle: state=4294967295 cpu_id=0
95953          <idle>-0     (-----) [001] d..2 82316.880887: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
95954          <idle>-0     (-----) [000] d..2 82316.880889: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
95955  crtc_event:111-322   (  322) [000] d..2 82316.880918: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95956           <...>-27782 (-----) [005] ...1 82316.880919: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
95957          <idle>-0     (-----) [000] d..1 82316.880927: cpu_idle: state=0 cpu_id=0
95958           <...>-27782 (-----) [005] ...1 82316.880928: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
95959           <...>-27782 (-----) [005] ...1 82316.880932: tracing_mark_write: E|27550
95960           <...>-27782 (-----) [005] .... 82316.880992: binder_transaction: transaction=1571525 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
95961           <...>-27782 (-----) [005] .... 82316.880995: binder_transaction_alloc_buf: transaction=1571525 data_size=556 offsets_size=104
95962 crtc_commit:111-321   (  321) [001] d..2 82316.881001: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
95963           <...>-27782 (-----) [005] ...2 82316.881009: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
95964          <idle>-0     (-----) [001] d..1 82316.881010: cpu_idle: state=0 cpu_id=1
95965           <...>-27782 (-----) [005] d..4 82316.881012: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95966           <...>-27782 (-----) [005] dn.5 82316.881023: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95967           <...>-27782 (-----) [005] d..2 82316.881030: sched_switch: prev_comm=id.nn.benchmark prev_pid=27782 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95968<...>-5340 ( 788) [005] .... 82316.881040: binder_transaction_received: transaction=1571525
95969<...>-5340 ( 788) [005] ...1 82316.881086: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
95970<...>-5340 ( 788) [005] d..2 82316.881133: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95971<...>-5340 ( 788) [005] d..2 82316.881158: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27782 next_prio=110
95972          <idle>-0     (-----) [000] dnh2 82316.881162: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95973          <idle>-0     (-----) [000] .n.1 82316.881168: cpu_idle: state=4294967295 cpu_id=0
95974          <idle>-0     (-----) [000] d..2 82316.881176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
95975           <...>-27782 (-----) [005] d..2 82316.881180: sched_switch: prev_comm=id.nn.benchmark prev_pid=27782 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
95976          <idle>-0     (-----) [005] d..1 82316.881198: cpu_idle: state=0 cpu_id=5
95977<...>-87 ( 87) [000] d..2 82316.881218: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95978          <idle>-0     (-----) [000] d..1 82316.881227: cpu_idle: state=0 cpu_id=0
95979          <idle>-0     (-----) [002] d.h4 82316.881229: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95980          <idle>-0     (-----) [002] dnh5 82316.881247: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
95981          <idle>-0     (-----) [002] .n.1 82316.881257: cpu_idle: state=4294967295 cpu_id=2
95982          <idle>-0     (-----) [002] d..2 82316.881269: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
95983<...>-86 ( 86) [002] d..2 82316.881305: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
95984          <idle>-0     (-----) [002] d.h5 82316.881327: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95985          <idle>-0     (-----) [005] dnh2 82316.881348: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
95986          <idle>-0     (-----) [005] .n.1 82316.881353: cpu_idle: state=4294967295 cpu_id=5
95987          <idle>-0     (-----) [005] d..2 82316.881361: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
95988          <idle>-0     (-----) [002] d..1 82316.881373: cpu_idle: state=0 cpu_id=2
95989<...>-5340 ( 788) [005] d..1 82316.881415: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95990          <idle>-0     (-----) [000] dnh2 82316.881441: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
95991          <idle>-0     (-----) [000] .n.1 82316.881447: cpu_idle: state=4294967295 cpu_id=0
95992          <idle>-0     (-----) [000] d..2 82316.881455: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
95993 neuralnetworks@-13088 (  788) [000] d..2 82316.881502: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
95994          <idle>-0     (-----) [000] d..1 82316.881512: cpu_idle: state=0 cpu_id=0
95995<...>-5340 ( 788) [005] d..2 82316.881562: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95996          <idle>-0     (-----) [000] dnh2 82316.881585: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
95997<...>-5340 ( 788) [005] d..2 82316.881589: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
95998          <idle>-0     (-----) [000] .n.1 82316.881590: cpu_idle: state=4294967295 cpu_id=0
95999          <idle>-0     (-----) [000] d..2 82316.881599: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
96000          <idle>-0     (-----) [005] d..1 82316.881603: cpu_idle: state=0 cpu_id=5
96001<...>-87 ( 87) [000] d..2 82316.881637: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96002          <idle>-0     (-----) [002] d.h4 82316.881637: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96003          <idle>-0     (-----) [000] d..1 82316.881645: cpu_idle: state=0 cpu_id=0
96004          <idle>-0     (-----) [002] dnh5 82316.881647: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96005          <idle>-0     (-----) [002] .n.1 82316.881656: cpu_idle: state=4294967295 cpu_id=2
96006          <idle>-0     (-----) [002] d..2 82316.881667: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
96007<...>-86 ( 86) [002] d..2 82316.881700: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96008          <idle>-0     (-----) [002] d..1 82316.881711: cpu_idle: state=0 cpu_id=2
96009          <idle>-0     (-----) [001] d.s3 82316.881802: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
96010          <idle>-0     (-----) [000] d.s2 82316.881807: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
96011          <idle>-0     (-----) [001] d.s4 82316.881820: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
96012          <idle>-0     (-----) [000] dns3 82316.881827: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
96013          <idle>-0     (-----) [001] d.s2 82316.881830: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96014          <idle>-0     (-----) [001] dns3 82316.881846: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96015          <idle>-0     (-----) [000] .n.1 82316.881850: cpu_idle: state=4294967295 cpu_id=0
96016          <idle>-0     (-----) [000] d..2 82316.881858: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
96017          <idle>-0     (-----) [001] .n.1 82316.881866: cpu_idle: state=4294967295 cpu_id=1
96018          <idle>-0     (-----) [001] d..2 82316.881876: 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
96019  crtc_event:111-322   (  322) [000] d..2 82316.881877: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
96020     rcu_preempt-7     (    7) [001] d..2 82316.881910: 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
96021<...>-8 ( 8) [000] d..2 82316.881911: 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
96022          <idle>-0     (-----) [001] d..1 82316.881920: cpu_idle: state=0 cpu_id=1
96023          <idle>-0     (-----) [000] d..1 82316.881925: cpu_idle: state=0 cpu_id=0
96024          <idle>-0     (-----) [005] ...1 82316.881928: cpu_idle: state=4294967295 cpu_id=5
96025          <idle>-0     (-----) [005] d..1 82316.881932: cpu_idle: state=0 cpu_id=5
96026          <idle>-0     (-----) [000] d.h5 82316.883158: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
96027          <idle>-0     (-----) [000] d.h6 82316.883176: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
96028          <idle>-0     (-----) [001] .n.1 82316.883181: cpu_idle: state=4294967295 cpu_id=1
96029          <idle>-0     (-----) [000] ...1 82316.883189: cpu_idle: state=4294967295 cpu_id=0
96030          <idle>-0     (-----) [001] d..2 82316.883192: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
96031          <idle>-0     (-----) [000] d..1 82316.883194: cpu_idle: state=0 cpu_id=0
96032 crtc_commit:111-321   (  321) [001] d..2 82316.883269: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96033          <idle>-0     (-----) [001] d..1 82316.883280: cpu_idle: state=0 cpu_id=1
96034          <idle>-0     (-----) [002] d.h4 82316.883377: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96035          <idle>-0     (-----) [005] dnh2 82316.883398: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96036          <idle>-0     (-----) [005] .n.1 82316.883402: cpu_idle: state=4294967295 cpu_id=5
96037          <idle>-0     (-----) [005] d..2 82316.883410: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96038          <idle>-0     (-----) [002] ...1 82316.883416: cpu_idle: state=4294967295 cpu_id=2
96039          <idle>-0     (-----) [002] d..1 82316.883422: cpu_idle: state=0 cpu_id=2
96040          <idle>-0     (-----) [000] d.h5 82316.883449: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
96041          <idle>-0     (-----) [000] dnh6 82316.883459: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
96042<...>-5340 ( 788) [005] d..1 82316.883461: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
96043          <idle>-0     (-----) [000] .n.1 82316.883471: cpu_idle: state=4294967295 cpu_id=0
96044          <idle>-0     (-----) [000] dnh2 82316.883490: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
96045          <idle>-0     (-----) [000] d..2 82316.883500: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
96046  crtc_event:111-322   (  322) [000] d..2 82316.883545: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
96047<...>-5340 ( 788) [005] ...1 82316.883554: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
96048<...>-5340 ( 788) [005] ...1 82316.883558: tracing_mark_write: E|788
96049<...>-5340 ( 788) [005] .... 82316.883573: binder_transaction: transaction=1571528 dest_node=1571526 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
96050<...>-5340 ( 788) [005] .... 82316.883576: binder_transaction_alloc_buf: transaction=1571528 data_size=60 offsets_size=0
96051<...>-5340 ( 788) [005] d..4 82316.883579: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
96052 neuralnetworks@-13088 (  788) [000] d..2 82316.883582: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96053<...>-5340 ( 788) [005] d..5 82316.883591: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
96054          <idle>-0     (-----) [000] d..1 82316.883594: cpu_idle: state=0 cpu_id=0
96055          <idle>-0     (-----) [004] .n.1 82316.883598: cpu_idle: state=4294967295 cpu_id=4
96056          <idle>-0     (-----) [004] d..2 82316.883606: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
96057           <...>-27571 (-----) [004] .... 82316.883611: binder_transaction_received: transaction=1571528
96058<...>-5340 ( 788) [005] ...1 82316.883614: tracing_mark_write: E|788
96059<...>-5340 ( 788) [005] .... 82316.883620: binder_transaction: transaction=1571529 dest_node=0 dest_proc=27550 dest_thread=27782 reply=1 flags=0x0 code=0x0
96060<...>-5340 ( 788) [005] .... 82316.883622: binder_transaction_alloc_buf: transaction=1571529 data_size=8 offsets_size=0
96061<...>-5340 ( 788) [005] d..2 82316.883624: sched_waking: comm=id.nn.benchmark pid=27782 prio=110 target_cpu=005
96062           <...>-27571 (-----) [004] ...1 82316.883629: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
96063<...>-5340 ( 788) [005] d..3 82316.883631: sched_wakeup: comm=id.nn.benchmark pid=27782 prio=110 target_cpu=005
96064<...>-5340 ( 788) [005] .... 82316.883632: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
96065           <...>-27571 (-----) [004] ...1 82316.883635: tracing_mark_write: E|27550
96066           <...>-27571 (-----) [004] d..2 82316.883664: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96067          <idle>-0     (-----) [004] d..1 82316.883671: cpu_idle: state=0 cpu_id=4
96068<...>-5340 ( 788) [005] d..2 82316.883674: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27782 next_prio=110
96069           <...>-27782 (-----) [005] .... 82316.883684: binder_transaction_received: transaction=1571529
96070           <...>-27782 (-----) [005] ...1 82316.883720: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
96071           <...>-27782 (-----) [005] ...1 82316.883726: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
96072           <...>-27782 (-----) [005] ...1 82316.883752: tracing_mark_write: E|27550
96073           <...>-27782 (-----) [005] ...1 82316.883755: tracing_mark_write: E|27550
96074           <...>-27782 (-----) [005] ...1 82316.883759: tracing_mark_write: E|27550
96075           <...>-27782 (-----) [005] ...1 82316.883944: tracing_mark_write: E|27550
96076           <...>-27782 (-----) [005] d..1 82316.883956: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96077           <...>-27782 (-----) [005] d..2 82316.883972: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96078          <idle>-0     (-----) [004] .n.1 82316.883977: cpu_idle: state=4294967295 cpu_id=4
96079          <idle>-0     (-----) [004] d..2 82316.883983: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
96080           <...>-27550 (-----) [004] d..2 82316.884003: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96081          <idle>-0     (-----) [004] d..1 82316.884012: cpu_idle: state=0 cpu_id=4
96082           <...>-27782 (-----) [005] d..1 82316.884058: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96083           <...>-27782 (-----) [005] d..2 82316.884067: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96084          <idle>-0     (-----) [004] .n.1 82316.884072: cpu_idle: state=4294967295 cpu_id=4
96085          <idle>-0     (-----) [004] d..2 82316.884079: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
96086           <...>-27782 (-----) [005] d..2 82316.884105: sched_switch: prev_comm=id.nn.benchmark prev_pid=27782 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
96087           <...>-27550 (-----) [004] ...1 82316.884112: tracing_mark_write: E|27550
96088           <...>-27550 (-----) [004] ...1 82316.884116: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
96089           <...>-27550 (-----) [004] ...1 82316.884122: tracing_mark_write: E|27550
96090          <idle>-0     (-----) [005] d..1 82316.884126: cpu_idle: state=0 cpu_id=5
96091           <...>-27550 (-----) [004] ...1 82316.884126: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
96092           <...>-27550 (-----) [004] ...1 82316.884130: tracing_mark_write: E|27550
96093           <...>-27550 (-----) [004] ...1 82316.884134: tracing_mark_write: E|27550
96094           <...>-27550 (-----) [004] ...1 82316.884248: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
96095           <...>-27550 (-----) [004] ...1 82316.884305: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
96096           <...>-27550 (-----) [004] ...1 82316.884310: tracing_mark_write: E|27550
96097           <...>-27550 (-----) [004] ...1 82316.884314: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
96098           <...>-27550 (-----) [004] ...1 82316.884320: tracing_mark_write: E|27550
96099           <...>-27550 (-----) [004] ...1 82316.884323: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
96100           <...>-27550 (-----) [004] ...1 82316.884327: tracing_mark_write: E|27550
96101           <...>-27550 (-----) [004] ...1 82316.884331: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
96102          <idle>-0     (-----) [005] .n.1 82316.884418: cpu_idle: state=4294967295 cpu_id=5
96103           <...>-27550 (-----) [004] ...1 82316.884419: tracing_mark_write: E|27550
96104           <...>-27550 (-----) [004] ...1 82316.884423: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
96105          <idle>-0     (-----) [005] d..2 82316.884426: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27783 next_prio=110
96106           <...>-27550 (-----) [004] d..2 82316.884440: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96107          <idle>-0     (-----) [004] d..1 82316.884454: cpu_idle: state=0 cpu_id=4
96108           <...>-27783 (-----) [005] ...1 82316.884487: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
96109           <...>-27783 (-----) [005] ...1 82316.884501: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
96110           <...>-27783 (-----) [005] ...1 82316.884504: tracing_mark_write: E|27550
96111           <...>-27783 (-----) [005] .... 82316.884525: binder_transaction: transaction=1571530 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
96112           <...>-27783 (-----) [005] .... 82316.884529: binder_transaction_alloc_buf: transaction=1571530 data_size=48 offsets_size=0
96113           <...>-27783 (-----) [005] ...2 82316.884532: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
96114           <...>-27783 (-----) [005] d..4 82316.884535: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
96115           <...>-27783 (-----) [005] dn.5 82316.884545: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
96116           <...>-27783 (-----) [005] d..2 82316.884551: sched_switch: prev_comm=id.nn.benchmark prev_pid=27783 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
96117<...>-770 ( 770) [005] .... 82316.884561: binder_transaction_received: transaction=1571530
96118<...>-770 ( 770) [005] ...1 82316.884583: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
96119<...>-770 ( 770) [005] d..2 82316.884651: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
96120          <idle>-0     (-----) [000] dnh2 82316.884678: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
96121          <idle>-0     (-----) [000] .n.1 82316.884685: cpu_idle: state=4294967295 cpu_id=0
96122<...>-770 ( 770) [005] ...1 82316.884691: tracing_mark_write: E|770
96123          <idle>-0     (-----) [000] d..2 82316.884696: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
96124<...>-770 ( 770) [005] .... 82316.884698: binder_transaction: transaction=1571531 dest_node=0 dest_proc=27550 dest_thread=27783 reply=1 flags=0x0 code=0x0
96125<...>-770 ( 770) [005] .... 82316.884701: binder_transaction_alloc_buf: transaction=1571531 data_size=168 offsets_size=32
96126<...>-770 ( 770) [005] .... 82316.884707: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
96127<...>-770 ( 770) [005] d..2 82316.884743: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27783 next_prio=110
96128           <...>-27783 (-----) [005] .... 82316.884754: binder_transaction_received: transaction=1571531
96129<...>-581 ( 571) [000] d..2 82316.884775: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96130          <idle>-0     (-----) [000] d..1 82316.884788: cpu_idle: state=0 cpu_id=0
96131           <...>-27783 (-----) [005] ...1 82316.884821: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
96132           <...>-27783 (-----) [005] ...1 82316.884826: tracing_mark_write: E|27550
96133           <...>-27783 (-----) [005] .... 82316.884840: binder_transaction: transaction=1571532 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
96134           <...>-27783 (-----) [005] .... 82316.884843: binder_transaction_alloc_buf: transaction=1571532 data_size=48 offsets_size=0
96135           <...>-27783 (-----) [005] ...2 82316.884845: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
96136           <...>-27783 (-----) [005] d..4 82316.884847: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
96137           <...>-27783 (-----) [005] dn.5 82316.884857: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
96138           <...>-27783 (-----) [005] d..2 82316.884864: sched_switch: prev_comm=id.nn.benchmark prev_pid=27783 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
96139<...>-770 ( 770) [005] .... 82316.884872: binder_transaction_received: transaction=1571532
96140<...>-770 ( 770) [005] ...1 82316.884888: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
96141<...>-770 ( 770) [005] d..2 82316.884946: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
96142          <idle>-0     (-----) [000] dnh2 82316.884969: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
96143          <idle>-0     (-----) [000] .n.1 82316.884976: cpu_idle: state=4294967295 cpu_id=0
96144<...>-770 ( 770) [005] ...1 82316.884980: tracing_mark_write: E|770
96145          <idle>-0     (-----) [000] d..2 82316.884987: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
96146<...>-770 ( 770) [005] .... 82316.884987: binder_transaction: transaction=1571533 dest_node=0 dest_proc=27550 dest_thread=27783 reply=1 flags=0x0 code=0x0
96147<...>-770 ( 770) [005] .... 82316.884990: binder_transaction_alloc_buf: transaction=1571533 data_size=168 offsets_size=32
96148<...>-770 ( 770) [005] .... 82316.884995: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
96149<...>-770 ( 770) [005] d..2 82316.885029: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27783 next_prio=110
96150           <...>-27783 (-----) [005] .... 82316.885040: binder_transaction_received: transaction=1571533
96151<...>-581 ( 571) [000] d..2 82316.885048: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96152          <idle>-0     (-----) [000] d..1 82316.885061: cpu_idle: state=0 cpu_id=0
96153           <...>-27783 (-----) [005] d.s4 82316.885138: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
96154          <idle>-0     (-----) [000] dnh2 82316.885177: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
96155          <idle>-0     (-----) [000] .n.1 82316.885183: cpu_idle: state=4294967295 cpu_id=0
96156          <idle>-0     (-----) [000] d..2 82316.885196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
96157  kworker/u16:15-1311  ( 1311) [000] d..2 82316.885257: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96158          <idle>-0     (-----) [000] d..1 82316.885266: cpu_idle: state=0 cpu_id=0
96159          <idle>-0     (-----) [001] d.h2 82316.885272: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
96160          <idle>-0     (-----) [001] dnh3 82316.885286: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
96161          <idle>-0     (-----) [001] .n.1 82316.885295: cpu_idle: state=4294967295 cpu_id=1
96162          <idle>-0     (-----) [001] d..2 82316.885306: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
96163        DispSync-8879  ( 8858) [001] d..1 82316.885327: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
96164        DispSync-8879  ( 8858) [001] d..2 82316.885344: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
96165          <idle>-0     (-----) [003] .n.1 82316.885351: cpu_idle: state=4294967295 cpu_id=3
96166          <idle>-0     (-----) [003] d..2 82316.885363: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
96167        DispSync-8879  ( 8858) [001] d..2 82316.885378: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96168           <...>-27783 (-----) [005] ...1 82316.885381: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
96169          <idle>-0     (-----) [001] d..1 82316.885387: cpu_idle: state=0 cpu_id=1
96170           <...>-27783 (-----) [005] ...1 82316.885390: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
96171           <...>-27783 (-----) [005] ...1 82316.885393: tracing_mark_write: E|27550
96172  appEventThread-8881  ( 8858) [003] d..3 82316.885417: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
96173  appEventThread-8881  ( 8858) [003] d..4 82316.885441: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
96174          <idle>-0     (-----) [000] .n.1 82316.885446: cpu_idle: state=4294967295 cpu_id=0
96175           <...>-27783 (-----) [005] .... 82316.885451: binder_transaction: transaction=1571534 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
96176           <...>-27783 (-----) [005] .... 82316.885454: binder_transaction_alloc_buf: transaction=1571534 data_size=556 offsets_size=104
96177          <idle>-0     (-----) [000] d..2 82316.885456: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
96178           <...>-27783 (-----) [005] ...2 82316.885467: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
96179           <...>-27783 (-----) [005] d..4 82316.885470: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96180           <...>-27783 (-----) [005] dn.5 82316.885480: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96181  appEventThread-8881  ( 8858) [003] d..2 82316.885484: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96182           <...>-27783 (-----) [005] d..2 82316.885488: sched_switch: prev_comm=id.nn.benchmark prev_pid=27783 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96183<...>-5340 ( 788) [005] .... 82316.885497: binder_transaction_received: transaction=1571534
96184          <idle>-0     (-----) [003] d..1 82316.885499: cpu_idle: state=0 cpu_id=3
96185<...>-5340 ( 788) [005] ...1 82316.885540: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
96186<...>-5340 ( 788) [005] d..2 82316.885582: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
96187<...>-5340 ( 788) [005] d..2 82316.885607: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27783 next_prio=110
96188<...>-9105 ( 9105) [000] d.h1 82316.885613: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
96189           <...>-27783 (-----) [005] d..2 82316.885631: sched_switch: prev_comm=id.nn.benchmark prev_pid=27783 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
96190          <idle>-0     (-----) [005] d..1 82316.885649: cpu_idle: state=0 cpu_id=5
96191<...>-9105 ( 9105) [000] .... 82316.885815: binder_transaction: transaction=1571537 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
96192<...>-9105 ( 9105) [000] .... 82316.885822: binder_transaction_alloc_buf: transaction=1571537 data_size=80 offsets_size=0
96193<...>-9105 ( 9105) [000] d..4 82316.885829: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
96194<...>-9105 ( 9105) [000] d..5 82316.885859: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
96195          <idle>-0     (-----) [001] .n.1 82316.885864: cpu_idle: state=4294967295 cpu_id=1
96196          <idle>-0     (-----) [001] d..2 82316.885875: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
96197<...>-13083 ( 8858) [001] .... 82316.885883: binder_transaction_received: transaction=1571537
96198<...>-9105 ( 9105) [000] d..3 82316.885900: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
96199<...>-13083 ( 8858) [001] d..1 82316.885917: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
96200<...>-9105 ( 9105) [000] d..4 82316.885918: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
96201          <idle>-0     (-----) [002] .n.1 82316.885923: cpu_idle: state=4294967295 cpu_id=2
96202<...>-13083 ( 8858) [001] d..2 82316.885933: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
96203          <idle>-0     (-----) [002] d..2 82316.885938: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
96204          <idle>-0     (-----) [003] .n.1 82316.885940: cpu_idle: state=4294967295 cpu_id=3
96205          <idle>-0     (-----) [003] d..2 82316.885950: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
96206<...>-13083 ( 8858) [001] d..2 82316.885978: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96207          <idle>-0     (-----) [001] d..1 82316.885989: cpu_idle: state=0 cpu_id=1
96208    RenderThread-9436  ( 9105) [002] d..2 82316.886007: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96209  appEventThread-8881  ( 8858) [003] d..2 82316.886013: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
96210          <idle>-0     (-----) [002] d..1 82316.886020: cpu_idle: state=0 cpu_id=2
96211<...>-9105 ( 9105) [000] d..3 82316.886046: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
96212<...>-87 ( 87) [003] d..2 82316.886056: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96213<...>-9105 ( 9105) [000] d..4 82316.886066: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
96214          <idle>-0     (-----) [002] dnh4 82316.886070: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96215          <idle>-0     (-----) [003] d..1 82316.886070: cpu_idle: state=0 cpu_id=3
96216<...>-9105 ( 9105) [000] d..2 82316.886102: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96217          <idle>-0     (-----) [000] dn.1 82316.886116: cpu_idle: state=0 cpu_id=0
96218          <idle>-0     (-----) [002] dnh5 82316.886120: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
96219          <idle>-0     (-----) [000] .n.1 82316.886125: cpu_idle: state=4294967295 cpu_id=0
96220          <idle>-0     (-----) [000] d..2 82316.886137: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
96221          <idle>-0     (-----) [002] dnh4 82316.886151: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96222          <idle>-0     (-----) [005] dnh2 82316.886172: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96223          <idle>-0     (-----) [005] .n.1 82316.886177: cpu_idle: state=4294967295 cpu_id=5
96224          <idle>-0     (-----) [005] d..2 82316.886186: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96225          <idle>-0     (-----) [002] .n.1 82316.886187: cpu_idle: state=4294967295 cpu_id=2
96226          <idle>-0     (-----) [002] d..2 82316.886201: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
96227<...>-86 ( 86) [000] d..2 82316.886219: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96228          <idle>-0     (-----) [000] d..1 82316.886227: cpu_idle: state=0 cpu_id=0
96229<...>-5340 ( 788) [005] d..1 82316.886238: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
96230    RenderThread-9436  ( 9105) [002] dnh1 82316.886277: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
96231    RenderThread-9436  ( 9105) [002] d..2 82316.886289: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
96232 neuralnetworks@-13088 (  788) [002] d..2 82316.886335: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
96233<...>-5340 ( 788) [005] d..2 82316.886397: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
96234    RenderThread-9436  ( 9105) [002] d..1 82316.886407: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
96235          <idle>-0     (-----) [003] dnh2 82316.886420: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
96236<...>-5340 ( 788) [005] d..2 82316.886424: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
96237    RenderThread-9436  ( 9105) [002] d..2 82316.886424: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
96238          <idle>-0     (-----) [003] .n.1 82316.886426: cpu_idle: state=4294967295 cpu_id=3
96239          <idle>-0     (-----) [000] .n.1 82316.886430: cpu_idle: state=4294967295 cpu_id=0
96240          <idle>-0     (-----) [003] d..2 82316.886437: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
96241          <idle>-0     (-----) [005] d..1 82316.886438: cpu_idle: state=0 cpu_id=5
96242          <idle>-0     (-----) [000] d..2 82316.886439: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
96243<...>-87 ( 87) [003] d..2 82316.886475: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96244    RenderThread-9436  ( 9105) [002] d.h3 82316.886476: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
96245          <idle>-0     (-----) [003] d..1 82316.886486: cpu_idle: state=0 cpu_id=3
96246    RenderThread-9436  ( 9105) [002] d.h4 82316.886503: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
96247          <idle>-0     (-----) [003] .n.1 82316.886508: cpu_idle: state=4294967295 cpu_id=3
96248          <idle>-0     (-----) [003] d..2 82316.886520: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
96249<...>-9105 ( 9105) [000] d..2 82316.886526: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96250          <idle>-0     (-----) [000] d..1 82316.886537: cpu_idle: state=0 cpu_id=0
96251    RenderThread-9436  ( 9105) [002] .... 82316.886549: binder_transaction: transaction=1571538 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
96252    RenderThread-9436  ( 9105) [002] .... 82316.886554: binder_transaction_alloc_buf: transaction=1571538 data_size=104 offsets_size=0
96253<...>-86 ( 86) [003] d..2 82316.886557: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96254    RenderThread-9436  ( 9105) [002] d..4 82316.886560: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
96255          <idle>-0     (-----) [003] d..1 82316.886568: cpu_idle: state=0 cpu_id=3
96256    RenderThread-9436  ( 9105) [002] dn.5 82316.886579: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
96257    RenderThread-9436  ( 9105) [002] d..2 82316.886588: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
96258<...>-13083 ( 8858) [002] .... 82316.886598: binder_transaction_received: transaction=1571538
96259<...>-13083 ( 8858) [002] .... 82316.886674: binder_transaction: transaction=1571539 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
96260<...>-13083 ( 8858) [002] .... 82316.886678: binder_transaction_alloc_buf: transaction=1571539 data_size=52 offsets_size=8
96261<...>-13083 ( 8858) [002] d..2 82316.886729: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
96262    RenderThread-9436  ( 9105) [002] .... 82316.886738: binder_transaction_received: transaction=1571539
96263    RenderThread-9436  ( 9105) [002] d..2 82316.887734: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
96264          <idle>-0     (-----) [002] d..1 82316.887750: cpu_idle: state=0 cpu_id=2
96265          <idle>-0     (-----) [002] d.h2 82316.887815: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
96266          <idle>-0     (-----) [002] d.h3 82316.887826: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
96267          <idle>-0     (-----) [002] dnh3 82316.887831: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
96268          <idle>-0     (-----) [002] .n.1 82316.887840: cpu_idle: state=4294967295 cpu_id=2
96269          <idle>-0     (-----) [000] d.h3 82316.887850: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
96270          <idle>-0     (-----) [002] d..2 82316.887852: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
96271          <idle>-0     (-----) [000] d.h4 82316.887873: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
96272          <idle>-0     (-----) [003] .n.1 82316.887878: cpu_idle: state=4294967295 cpu_id=3
96273          <idle>-0     (-----) [003] d..2 82316.887888: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
96274          <idle>-0     (-----) [000] ...1 82316.887892: cpu_idle: state=4294967295 cpu_id=0
96275          <idle>-0     (-----) [000] d..1 82316.887897: cpu_idle: state=0 cpu_id=0
96276 kgsl_worker_thr-258   (  258) [003] d..2 82316.887935: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
96277 kgsl_worker_thr-258   (  258) [003] d..3 82316.887974: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
96278 kgsl_worker_thr-258   (  258) [003] d..2 82316.887990: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
96279  kworker/u16:15-1311  ( 1311) [003] d..2 82316.888031: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96280    RenderThread-9436  ( 9105) [002] .... 82316.888040: binder_transaction: transaction=1571540 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
96281    RenderThread-9436  ( 9105) [002] .... 82316.888045: binder_transaction_alloc_buf: transaction=1571540 data_size=192 offsets_size=8
96282          <idle>-0     (-----) [003] d..1 82316.888046: cpu_idle: state=0 cpu_id=3
96283    RenderThread-9436  ( 9105) [002] d..4 82316.888055: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
96284    RenderThread-9436  ( 9105) [002] dn.5 82316.888071: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
96285    RenderThread-9436  ( 9105) [002] d..2 82316.888081: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
96286<...>-13083 ( 8858) [002] d.h5 82316.888110: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96287          <idle>-0     (-----) [005] dnh2 82316.888133: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96288          <idle>-0     (-----) [005] .n.1 82316.888138: cpu_idle: state=4294967295 cpu_id=5
96289          <idle>-0     (-----) [005] d..2 82316.888146: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96290<...>-13083 ( 8858) [002] .... 82316.888151: binder_transaction_received: transaction=1571540
96291<...>-5340 ( 788) [005] d..1 82316.888200: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
96292<...>-13083 ( 8858) [002] d.h1 82316.888229: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
96293<...>-5340 ( 788) [005] ...1 82316.888296: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
96294<...>-5340 ( 788) [005] ...1 82316.888300: tracing_mark_write: E|788
96295<...>-5340 ( 788) [005] .... 82316.888316: binder_transaction: transaction=1571541 dest_node=1571535 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
96296<...>-5340 ( 788) [005] .... 82316.888320: binder_transaction_alloc_buf: transaction=1571541 data_size=60 offsets_size=0
96297<...>-5340 ( 788) [005] d..4 82316.888323: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
96298<...>-5340 ( 788) [005] d..5 82316.888336: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
96299          <idle>-0     (-----) [004] .n.1 82316.888342: cpu_idle: state=4294967295 cpu_id=4
96300          <idle>-0     (-----) [004] d..2 82316.888351: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
96301<...>-13083 ( 8858) [002] .... 82316.888354: binder_transaction: transaction=1571542 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
96302           <...>-27571 (-----) [004] .... 82316.888356: binder_transaction_received: transaction=1571541
96303<...>-13083 ( 8858) [002] .... 82316.888359: binder_transaction_alloc_buf: transaction=1571542 data_size=68 offsets_size=0
96304<...>-5340 ( 788) [005] ...1 82316.888359: tracing_mark_write: E|788
96305<...>-5340 ( 788) [005] .... 82316.888366: binder_transaction: transaction=1571543 dest_node=0 dest_proc=27550 dest_thread=27783 reply=1 flags=0x0 code=0x0
96306<...>-5340 ( 788) [005] .... 82316.888368: binder_transaction_alloc_buf: transaction=1571543 data_size=8 offsets_size=0
96307<...>-5340 ( 788) [005] d..2 82316.888370: sched_waking: comm=id.nn.benchmark pid=27783 prio=110 target_cpu=005
96308           <...>-27571 (-----) [004] ...1 82316.888376: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
96309<...>-5340 ( 788) [005] d..3 82316.888377: sched_wakeup: comm=id.nn.benchmark pid=27783 prio=110 target_cpu=005
96310<...>-5340 ( 788) [005] .... 82316.888379: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
96311           <...>-27571 (-----) [004] ...1 82316.888382: tracing_mark_write: E|27550
96312<...>-13083 ( 8858) [002] d..2 82316.888401: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
96313           <...>-27571 (-----) [004] d..2 82316.888411: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96314          <idle>-0     (-----) [004] d..1 82316.888419: cpu_idle: state=0 cpu_id=4
96315<...>-5340 ( 788) [005] d..2 82316.888421: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27783 next_prio=110
96316           <...>-27783 (-----) [005] .... 82316.888431: binder_transaction_received: transaction=1571543
96317 neuralnetworks@-13088 (  788) [002] d..2 82316.888438: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
96318           <...>-27783 (-----) [005] d.s2 82316.888470: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
96319          <idle>-0     (-----) [001] d.s2 82316.888471: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96320          <idle>-0     (-----) [000] d.s2 82316.888472: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
96321          <idle>-0     (-----) [001] dns3 82316.888490: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96322          <idle>-0     (-----) [000] dns3 82316.888492: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
96323          <idle>-0     (-----) [003] dnh2 82316.888493: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
96324    RenderThread-9436  ( 9105) [002] .... 82316.888495: binder_transaction_received: transaction=1571542
96325          <idle>-0     (-----) [003] .n.1 82316.888500: cpu_idle: state=4294967295 cpu_id=3
96326          <idle>-0     (-----) [001] .n.1 82316.888502: cpu_idle: state=4294967295 cpu_id=1
96327          <idle>-0     (-----) [001] d..2 82316.888512: 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
96328          <idle>-0     (-----) [003] d..2 82316.888513: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
96329          <idle>-0     (-----) [000] .n.1 82316.888515: cpu_idle: state=4294967295 cpu_id=0
96330           <...>-27783 (-----) [005] ...1 82316.888518: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
96331     rcu_preempt-7     (    7) [001] d..2 82316.888519: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
96332           <...>-27783 (-----) [005] ...1 82316.888524: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
96333          <idle>-0     (-----) [000] d..2 82316.888526: 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
96334<...>-8 ( 8) [000] d..2 82316.888533: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
96335     rcu_preempt-7     (    7) [001] d..3 82316.888538: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
96336     rcu_preempt-7     (    7) [001] d..2 82316.888555: 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
96337         rcuop/0-10    (   10) [001] d..2 82316.888561: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
96338           <...>-27783 (-----) [005] ...1 82316.888565: tracing_mark_write: E|27550
96339           <...>-27783 (-----) [005] ...1 82316.888568: tracing_mark_write: E|27550
96340           <...>-27783 (-----) [005] ...1 82316.888572: tracing_mark_write: E|27550
96341<...>-8 ( 8) [000] d..3 82316.888576: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
96342    RenderThread-9436  ( 9105) [002] d..2 82316.888602: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96343         rcuop/0-10    (   10) [001] d..3 82316.888613: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
96344<...>-8 ( 8) [000] d..2 82316.888615: 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
96345          <idle>-0     (-----) [002] d..2 82316.888627: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
96346         rcuop/0-10    (   10) [001] d..2 82316.888628: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
96347          <idle>-0     (-----) [000] d..1 82316.888642: cpu_idle: state=0 cpu_id=0
96348<...>-46 ( 46) [001] d..2 82316.888657: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
96349         rcuop/1-21    (   21) [002] d..2 82316.888658: 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
96350<...>-46 ( 46) [001] d..3 82316.888701: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
96351          <idle>-0     (-----) [000] .n.1 82316.888708: cpu_idle: state=4294967295 cpu_id=0
96352          <idle>-0     (-----) [000] d..2 82316.888720: 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
96353<...>-46 ( 46) [001] d..2 82316.888723: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96354          <idle>-0     (-----) [002] d..1 82316.888733: cpu_idle: state=0 cpu_id=2
96355          <idle>-0     (-----) [001] d..1 82316.888735: cpu_idle: state=0 cpu_id=1
96356<...>-8 ( 8) [000] d..2 82316.888744: 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
96357          <idle>-0     (-----) [000] d..1 82316.888754: cpu_idle: state=0 cpu_id=0
96358           <...>-27783 (-----) [005] ...1 82316.888775: tracing_mark_write: E|27550
96359           <...>-27783 (-----) [005] d..1 82316.888788: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96360           <...>-27783 (-----) [005] d..2 82316.888804: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96361          <idle>-0     (-----) [004] .n.1 82316.888809: cpu_idle: state=4294967295 cpu_id=4
96362  kworker/u16:15-1311  ( 1311) [003] d..2 82316.888814: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96363          <idle>-0     (-----) [004] d..2 82316.888816: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
96364          <idle>-0     (-----) [003] d..1 82316.888829: cpu_idle: state=0 cpu_id=3
96365           <...>-27550 (-----) [004] d..2 82316.888837: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96366          <idle>-0     (-----) [004] d..1 82316.888846: cpu_idle: state=0 cpu_id=4
96367           <...>-27783 (-----) [005] d..1 82316.888901: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96368           <...>-27783 (-----) [005] d..2 82316.888910: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96369          <idle>-0     (-----) [004] .n.1 82316.888916: cpu_idle: state=4294967295 cpu_id=4
96370          <idle>-0     (-----) [004] d..2 82316.888924: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
96371           <...>-27783 (-----) [005] d..2 82316.888950: sched_switch: prev_comm=id.nn.benchmark prev_pid=27783 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
96372           <...>-27550 (-----) [004] ...1 82316.888956: tracing_mark_write: E|27550
96373           <...>-27550 (-----) [004] ...1 82316.888961: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
96374           <...>-27550 (-----) [004] ...1 82316.888967: tracing_mark_write: E|27550
96375           <...>-27550 (-----) [004] ...1 82316.888970: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
96376          <idle>-0     (-----) [005] d..1 82316.888971: cpu_idle: state=0 cpu_id=5
96377           <...>-27550 (-----) [004] ...1 82316.888975: tracing_mark_write: E|27550
96378           <...>-27550 (-----) [004] ...1 82316.888979: tracing_mark_write: E|27550
96379           <...>-27550 (-----) [004] ...1 82316.889093: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
96380           <...>-27550 (-----) [004] ...1 82316.889150: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
96381           <...>-27550 (-----) [004] ...1 82316.889155: tracing_mark_write: E|27550
96382           <...>-27550 (-----) [004] ...1 82316.889159: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
96383           <...>-27550 (-----) [004] ...1 82316.889165: tracing_mark_write: E|27550
96384           <...>-27550 (-----) [004] ...1 82316.889169: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
96385           <...>-27550 (-----) [004] ...1 82316.889173: tracing_mark_write: E|27550
96386           <...>-27550 (-----) [004] ...1 82316.889176: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
96387          <idle>-0     (-----) [005] .n.1 82316.889273: cpu_idle: state=4294967295 cpu_id=5
96388           <...>-27550 (-----) [004] ...1 82316.889274: tracing_mark_write: E|27550
96389          <idle>-0     (-----) [001] d.h2 82316.889275: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
96390           <...>-27550 (-----) [004] ...1 82316.889279: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
96391          <idle>-0     (-----) [005] d..2 82316.889282: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27784 next_prio=110
96392          <idle>-0     (-----) [001] dnh3 82316.889288: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
96393          <idle>-0     (-----) [001] .n.1 82316.889296: cpu_idle: state=4294967295 cpu_id=1
96394           <...>-27550 (-----) [004] d..2 82316.889296: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96395          <idle>-0     (-----) [001] d..2 82316.889306: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
96396          <idle>-0     (-----) [004] d..1 82316.889310: cpu_idle: state=0 cpu_id=4
96397        DispSync-8879  ( 8858) [001] d..1 82316.889323: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
96398        DispSync-8879  ( 8858) [001] d..2 82316.889337: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
96399           <...>-27784 (-----) [005] ...1 82316.889343: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
96400          <idle>-0     (-----) [003] .n.1 82316.889343: cpu_idle: state=4294967295 cpu_id=3
96401          <idle>-0     (-----) [003] d..2 82316.889353: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
96402           <...>-27784 (-----) [005] ...1 82316.889358: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
96403           <...>-27784 (-----) [005] ...1 82316.889362: tracing_mark_write: E|27550
96404        DispSync-8879  ( 8858) [001] d..2 82316.889368: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96405          <idle>-0     (-----) [001] d..1 82316.889379: cpu_idle: state=0 cpu_id=1
96406           <...>-27784 (-----) [005] .... 82316.889384: binder_transaction: transaction=1571544 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
96407           <...>-27784 (-----) [005] .... 82316.889387: binder_transaction_alloc_buf: transaction=1571544 data_size=48 offsets_size=0
96408           <...>-27784 (-----) [005] ...2 82316.889390: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
96409           <...>-27784 (-----) [005] d..4 82316.889393: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
96410   sfEventThread-8882  ( 8858) [003] d..3 82316.889393: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
96411           <...>-27784 (-----) [005] dn.5 82316.889404: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
96412           <...>-27784 (-----) [005] d..2 82316.889410: sched_switch: prev_comm=id.nn.benchmark prev_pid=27784 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
96413   sfEventThread-8882  ( 8858) [003] d..4 82316.889420: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
96414<...>-770 ( 770) [005] .... 82316.889420: binder_transaction_received: transaction=1571544
96415          <idle>-0     (-----) [001] .n.1 82316.889425: cpu_idle: state=4294967295 cpu_id=1
96416          <idle>-0     (-----) [001] d..2 82316.889435: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
96417<...>-770 ( 770) [005] ...1 82316.889445: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
96418   sfEventThread-8882  ( 8858) [003] d..2 82316.889454: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96419          <idle>-0     (-----) [003] d..1 82316.889470: cpu_idle: state=0 cpu_id=3
96420<...>-770 ( 770) [005] d..2 82316.889527: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
96421  surfaceflinger-8858  ( 8858) [001] d.h1 82316.889570: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
96422<...>-770 ( 770) [005] ...1 82316.889586: tracing_mark_write: E|770
96423<...>-770 ( 770) [005] .... 82316.889594: binder_transaction: transaction=1571545 dest_node=0 dest_proc=27550 dest_thread=27784 reply=1 flags=0x0 code=0x0
96424<...>-770 ( 770) [005] .... 82316.889597: binder_transaction_alloc_buf: transaction=1571545 data_size=168 offsets_size=32
96425<...>-770 ( 770) [005] .... 82316.889604: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
96426<...>-770 ( 770) [005] d..2 82316.889640: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27784 next_prio=110
96427           <...>-27784 (-----) [005] .... 82316.889651: binder_transaction_received: transaction=1571545
96428           <...>-27784 (-----) [005] ...1 82316.889727: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
96429           <...>-27784 (-----) [005] ...1 82316.889732: tracing_mark_write: E|27550
96430           <...>-27784 (-----) [005] .... 82316.889747: binder_transaction: transaction=1571546 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
96431           <...>-27784 (-----) [005] .... 82316.889750: binder_transaction_alloc_buf: transaction=1571546 data_size=48 offsets_size=0
96432           <...>-27784 (-----) [005] ...2 82316.889752: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
96433           <...>-27784 (-----) [005] d..4 82316.889755: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
96434           <...>-27784 (-----) [005] dn.5 82316.889765: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
96435           <...>-27784 (-----) [005] d..2 82316.889771: sched_switch: prev_comm=id.nn.benchmark prev_pid=27784 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
96436<...>-770 ( 770) [005] .... 82316.889779: binder_transaction_received: transaction=1571546
96437  surfaceflinger-8858  ( 8858) [001] d..1 82316.889787: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
96438<...>-770 ( 770) [005] ...1 82316.889796: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
96439  surfaceflinger-8858  ( 8858) [001] d..2 82316.889807: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
96440          <idle>-0     (-----) [003] .n.1 82316.889813: cpu_idle: state=4294967295 cpu_id=3
96441          <idle>-0     (-----) [003] d..2 82316.889824: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
96442   sfEventThread-8882  ( 8858) [003] d..2 82316.889860: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96443          <idle>-0     (-----) [003] d..1 82316.889872: cpu_idle: state=0 cpu_id=3
96444<...>-770 ( 770) [005] ...1 82316.889876: tracing_mark_write: E|770
96445<...>-770 ( 770) [005] .... 82316.889884: binder_transaction: transaction=1571547 dest_node=0 dest_proc=27550 dest_thread=27784 reply=1 flags=0x0 code=0x0
96446<...>-770 ( 770) [005] .... 82316.889886: binder_transaction_alloc_buf: transaction=1571547 data_size=168 offsets_size=32
96447<...>-770 ( 770) [005] .... 82316.889892: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
96448<...>-770 ( 770) [005] d..2 82316.889927: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27784 next_prio=110
96449           <...>-27784 (-----) [005] .... 82316.889938: binder_transaction_received: transaction=1571547
96450  surfaceflinger-8858  ( 8858) [001] ...1 82316.889998: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
96451  surfaceflinger-8858  ( 8858) [001] ...1 82316.890005: tracing_mark_write: E|8858
96452  surfaceflinger-8858  ( 8858) [001] .... 82316.890060: binder_transaction: transaction=1571548 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
96453  surfaceflinger-8858  ( 8858) [001] .... 82316.890065: binder_transaction_alloc_buf: transaction=1571548 data_size=540 offsets_size=96
96454  surfaceflinger-8858  ( 8858) [001] ...2 82316.890090: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
96455  surfaceflinger-8858  ( 8858) [001] d..4 82316.890098: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
96456  surfaceflinger-8858  ( 8858) [001] d..5 82316.890116: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
96457          <idle>-0     (-----) [002] .n.1 82316.890122: cpu_idle: state=4294967295 cpu_id=2
96458          <idle>-0     (-----) [002] d..2 82316.890132: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
96459  surfaceflinger-8858  ( 8858) [001] d..2 82316.890138: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
96460 [email protected]   (  619) [002] .... 82316.890145: binder_transaction_received: transaction=1571548
96461 [email protected]   (  619) [002] ...1 82316.890193: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
96462           <...>-27784 (-----) [005] ...1 82316.890212: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
96463           <...>-27784 (-----) [005] ...1 82316.890222: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
96464           <...>-27784 (-----) [005] ...1 82316.890226: tracing_mark_write: E|27550
96465<...>-581 ( 571) [001] d..2 82316.890271: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96466          <idle>-0     (-----) [001] d..1 82316.890289: cpu_idle: state=0 cpu_id=1
96467           <...>-27784 (-----) [005] .... 82316.890289: binder_transaction: transaction=1571549 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
96468           <...>-27784 (-----) [005] .... 82316.890292: binder_transaction_alloc_buf: transaction=1571549 data_size=556 offsets_size=104
96469           <...>-27784 (-----) [005] ...2 82316.890306: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
96470 [email protected]   (  619) [002] ...1 82316.890307: tracing_mark_write: B|619|HWCSession::PresentDisplay::
96471           <...>-27784 (-----) [005] d..4 82316.890309: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96472           <...>-27784 (-----) [005] dn.5 82316.890320: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96473           <...>-27784 (-----) [005] d..2 82316.890327: sched_switch: prev_comm=id.nn.benchmark prev_pid=27784 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96474<...>-5340 ( 788) [005] .... 82316.890337: binder_transaction_received: transaction=1571549
96475<...>-5340 ( 788) [005] ...1 82316.890385: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
96476<...>-5340 ( 788) [005] d..2 82316.890434: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
96477<...>-5340 ( 788) [005] d..2 82316.890473: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27784 next_prio=110
96478 [email protected]   (  619) [002] d.h1 82316.890480: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
96479           <...>-27784 (-----) [005] d..2 82316.890496: sched_switch: prev_comm=id.nn.benchmark prev_pid=27784 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
96480 [email protected]   (  619) [002] ...1 82316.890501: tracing_mark_write: B|619|HWDeviceDRM::Commit::
96481          <idle>-0     (-----) [005] d..1 82316.890514: cpu_idle: state=0 cpu_id=5
96482 [email protected]   (  619) [002] ...1 82316.890514: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
96483 [email protected]   (  619) [002] d..2 82316.891151: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
96484 [email protected]   (  619) [002] d..3 82316.891175: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
96485          <idle>-0     (-----) [001] .n.1 82316.891182: cpu_idle: state=4294967295 cpu_id=1
96486          <idle>-0     (-----) [001] d..2 82316.891195: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
96487 [email protected]   (  619) [002] ...1 82316.891281: tracing_mark_write: E|619
96488 [email protected]   (  619) [002] ...1 82316.891288: tracing_mark_write: E|619
96489 [email protected]   (  619) [002] ...1 82316.891405: tracing_mark_write: E|619
96490          <idle>-0     (-----) [003] ...1 82316.891408: cpu_idle: state=4294967295 cpu_id=3
96491          <idle>-0     (-----) [003] d..1 82316.891413: cpu_idle: state=0 cpu_id=3
96492 [email protected]   (  619) [002] ...1 82316.891451: tracing_mark_write: E|619
96493 [email protected]   (  619) [002] .... 82316.891471: binder_transaction: transaction=1571552 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
96494 [email protected]   (  619) [002] .... 82316.891476: binder_transaction_alloc_buf: transaction=1571552 data_size=576 offsets_size=112
96495 [email protected]   (  619) [002] d..2 82316.891497: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
96496 [email protected]   (  619) [002] d..3 82316.891525: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
96497          <idle>-0     (-----) [000] .n.1 82316.891530: cpu_idle: state=4294967295 cpu_id=0
96498 [email protected]   (  619) [002] .... 82316.891531: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
96499          <idle>-0     (-----) [000] d..2 82316.891540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
96500  surfaceflinger-8858  ( 8858) [000] .... 82316.891552: binder_transaction_received: transaction=1571552
96501 [email protected]   (  619) [002] d..2 82316.891608: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
96502 crtc_commit:111-321   (  321) [001] d..2 82316.891611: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
96503          <idle>-0     (-----) [001] d..1 82316.891625: cpu_idle: state=0 cpu_id=1
96504<...>-87 ( 87) [002] d..2 82316.891659: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96505          <idle>-0     (-----) [002] d.h5 82316.891682: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
96506          <idle>-0     (-----) [002] dnh6 82316.891718: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96507          <idle>-0     (-----) [002] dnh5 82316.891736: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96508          <idle>-0     (-----) [005] dnh2 82316.891757: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96509          <idle>-0     (-----) [005] .n.1 82316.891762: cpu_idle: state=4294967295 cpu_id=5
96510          <idle>-0     (-----) [005] d..2 82316.891770: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96511  surfaceflinger-8858  ( 8858) [000] d.s2 82316.891822: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
96512<...>-5340 ( 788) [005] d..1 82316.891859: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
96513          <idle>-0     (-----) [002] dnH4 82316.891892: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
96514  surfaceflinger-8858  ( 8858) [000] d.s3 82316.891908: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
96515          <idle>-0     (-----) [002] dnH5 82316.891911: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
96516          <idle>-0     (-----) [001] .n.1 82316.891917: cpu_idle: state=4294967295 cpu_id=1
96517          <idle>-0     (-----) [002] dnH3 82316.891926: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
96518          <idle>-0     (-----) [001] d..2 82316.891930: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
96519          <idle>-0     (-----) [002] d..2 82316.891948: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
96520         sugov:0-576   (  576) [001] .... 82316.891963: clk_set_rate: pwrcl_clk 748800000
96521         sugov:0-576   (  576) [001] .... 82316.891981: clk_set_rate: cpu3_pwrcl_clk 825600000
96522         sugov:0-576   (  576) [001] .... 82316.891991: clk_set_rate: cpu2_pwrcl_clk 825600000
96523         sugov:0-576   (  576) [001] .... 82316.891999: clk_set_rate: cpu1_pwrcl_clk 825600000
96524 neuralnetworks@-13088 (  788) [002] d..2 82316.891999: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
96525         sugov:0-576   (  576) [001] .... 82316.892006: clk_set_rate: cpu0_pwrcl_clk 748800000
96526<...>-5340 ( 788) [005] d..2 82316.892012: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
96527<...>-86 ( 86) [002] d..2 82316.892040: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
96528         sugov:0-576   (  576) [001] d.h1 82316.892064: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
96529<...>-5340 ( 788) [005] d..2 82316.892071: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
96530         sugov:0-576   (  576) [001] .... 82316.892072: cpu_frequency: state=748800 cpu_id=0
96531          <idle>-0     (-----) [005] d..1 82316.892086: cpu_idle: state=0 cpu_id=5
96532         sugov:0-576   (  576) [001] .... 82316.892096: cpu_frequency: state=748800 cpu_id=1
96533         sugov:0-576   (  576) [001] .... 82316.892100: cpu_frequency: state=748800 cpu_id=2
96534         sugov:0-576   (  576) [001] .... 82316.892105: cpu_frequency: state=748800 cpu_id=3
96535  kworker/u16:15-1311  ( 1311) [002] d..2 82316.892107: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96536         sugov:0-576   (  576) [001] d..2 82316.892125: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
96537          <idle>-0     (-----) [002] d..1 82316.892126: cpu_idle: state=0 cpu_id=2
96538          <idle>-0     (-----) [002] d.h4 82316.892168: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96539<...>-87 ( 87) [001] d..2 82316.892173: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96540          <idle>-0     (-----) [002] dnh5 82316.892181: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96541          <idle>-0     (-----) [001] d..1 82316.892183: cpu_idle: state=0 cpu_id=1
96542  surfaceflinger-8858  ( 8858) [000] d..2 82316.892188: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96543          <idle>-0     (-----) [002] .n.1 82316.892193: cpu_idle: state=4294967295 cpu_id=2
96544          <idle>-0     (-----) [000] d..1 82316.892204: cpu_idle: state=0 cpu_id=0
96545          <idle>-0     (-----) [002] d..2 82316.892206: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
96546<...>-86 ( 86) [002] d..2 82316.892242: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96547          <idle>-0     (-----) [002] d..1 82316.892254: cpu_idle: state=0 cpu_id=2
96548          <idle>-0     (-----) [002] d.h4 82316.893859: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96549          <idle>-0     (-----) [005] dnh2 82316.893883: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96550          <idle>-0     (-----) [005] .n.1 82316.893887: cpu_idle: state=4294967295 cpu_id=5
96551          <idle>-0     (-----) [005] d..2 82316.893896: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96552          <idle>-0     (-----) [002] ...1 82316.893903: cpu_idle: state=4294967295 cpu_id=2
96553          <idle>-0     (-----) [002] d..1 82316.893910: cpu_idle: state=0 cpu_id=2
96554<...>-5340 ( 788) [005] d..1 82316.893948: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
96555          <idle>-0     (-----) [002] dnh2 82316.893975: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
96556          <idle>-0     (-----) [002] .n.1 82316.893981: cpu_idle: state=4294967295 cpu_id=2
96557          <idle>-0     (-----) [002] d..2 82316.893994: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
96558<...>-5340 ( 788) [005] ...1 82316.894043: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
96559<...>-5340 ( 788) [005] ...1 82316.894047: tracing_mark_write: E|788
96560<...>-5340 ( 788) [005] .... 82316.894064: binder_transaction: transaction=1571553 dest_node=1571550 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
96561 neuralnetworks@-13088 (  788) [002] d..2 82316.894064: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96562<...>-5340 ( 788) [005] .... 82316.894067: binder_transaction_alloc_buf: transaction=1571553 data_size=60 offsets_size=0
96563<...>-5340 ( 788) [005] d..4 82316.894070: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
96564          <idle>-0     (-----) [002] d..1 82316.894076: cpu_idle: state=0 cpu_id=2
96565<...>-5340 ( 788) [005] d..5 82316.894084: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
96566          <idle>-0     (-----) [004] .n.1 82316.894090: cpu_idle: state=4294967295 cpu_id=4
96567          <idle>-0     (-----) [004] d..2 82316.894098: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
96568           <...>-27571 (-----) [004] .... 82316.894103: binder_transaction_received: transaction=1571553
96569<...>-5340 ( 788) [005] ...1 82316.894106: tracing_mark_write: E|788
96570<...>-5340 ( 788) [005] .... 82316.894113: binder_transaction: transaction=1571554 dest_node=0 dest_proc=27550 dest_thread=27784 reply=1 flags=0x0 code=0x0
96571<...>-5340 ( 788) [005] .... 82316.894115: binder_transaction_alloc_buf: transaction=1571554 data_size=8 offsets_size=0
96572<...>-5340 ( 788) [005] d..2 82316.894116: sched_waking: comm=id.nn.benchmark pid=27784 prio=110 target_cpu=005
96573           <...>-27571 (-----) [004] ...1 82316.894122: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
96574<...>-5340 ( 788) [005] d..3 82316.894125: sched_wakeup: comm=id.nn.benchmark pid=27784 prio=110 target_cpu=005
96575<...>-5340 ( 788) [005] .... 82316.894126: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
96576           <...>-27571 (-----) [004] ...1 82316.894128: tracing_mark_write: E|27550
96577           <...>-27571 (-----) [004] d..2 82316.894158: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96578          <idle>-0     (-----) [004] d..1 82316.894166: cpu_idle: state=0 cpu_id=4
96579<...>-5340 ( 788) [005] d..2 82316.894169: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27784 next_prio=110
96580           <...>-27784 (-----) [005] .... 82316.894179: binder_transaction_received: transaction=1571554
96581           <...>-27784 (-----) [005] ...1 82316.894216: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
96582           <...>-27784 (-----) [005] ...1 82316.894222: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
96583           <...>-27784 (-----) [005] ...1 82316.894250: tracing_mark_write: E|27550
96584           <...>-27784 (-----) [005] ...1 82316.894254: tracing_mark_write: E|27550
96585           <...>-27784 (-----) [005] ...1 82316.894258: tracing_mark_write: E|27550
96586           <...>-27784 (-----) [005] ...1 82316.894453: tracing_mark_write: E|27550
96587           <...>-27784 (-----) [005] d..1 82316.894467: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96588           <...>-27784 (-----) [005] d..2 82316.894484: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96589          <idle>-0     (-----) [004] .n.1 82316.894489: cpu_idle: state=4294967295 cpu_id=4
96590          <idle>-0     (-----) [004] d..2 82316.894496: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
96591           <...>-27550 (-----) [004] d..2 82316.894515: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96592          <idle>-0     (-----) [004] d..1 82316.894524: cpu_idle: state=0 cpu_id=4
96593           <...>-27784 (-----) [005] d..1 82316.894576: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96594           <...>-27784 (-----) [005] d..2 82316.894586: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96595          <idle>-0     (-----) [004] .n.1 82316.894591: cpu_idle: state=4294967295 cpu_id=4
96596          <idle>-0     (-----) [004] d..2 82316.894599: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
96597           <...>-27784 (-----) [005] d..2 82316.894626: sched_switch: prev_comm=id.nn.benchmark prev_pid=27784 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
96598           <...>-27550 (-----) [004] ...1 82316.894633: tracing_mark_write: E|27550
96599           <...>-27550 (-----) [004] ...1 82316.894637: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
96600           <...>-27550 (-----) [004] ...1 82316.894643: tracing_mark_write: E|27550
96601          <idle>-0     (-----) [005] d..1 82316.894646: cpu_idle: state=0 cpu_id=5
96602           <...>-27550 (-----) [004] ...1 82316.894647: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
96603           <...>-27550 (-----) [004] ...1 82316.894651: tracing_mark_write: E|27550
96604           <...>-27550 (-----) [004] ...1 82316.894655: tracing_mark_write: E|27550
96605           <...>-27550 (-----) [004] ...1 82316.894768: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
96606           <...>-27550 (-----) [004] ...1 82316.894826: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
96607           <...>-27550 (-----) [004] ...1 82316.894831: tracing_mark_write: E|27550
96608           <...>-27550 (-----) [004] ...1 82316.894835: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
96609           <...>-27550 (-----) [004] ...1 82316.894841: tracing_mark_write: E|27550
96610           <...>-27550 (-----) [004] ...1 82316.894845: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
96611           <...>-27550 (-----) [004] ...1 82316.894849: tracing_mark_write: E|27550
96612           <...>-27550 (-----) [004] ...1 82316.894852: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
96613          <idle>-0     (-----) [005] .n.1 82316.894945: cpu_idle: state=4294967295 cpu_id=5
96614           <...>-27550 (-----) [004] ...1 82316.894947: tracing_mark_write: E|27550
96615           <...>-27550 (-----) [004] ...1 82316.894951: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
96616          <idle>-0     (-----) [005] d..2 82316.894953: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27785 next_prio=110
96617           <...>-27550 (-----) [004] d..2 82316.894967: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96618          <idle>-0     (-----) [004] d..1 82316.894982: cpu_idle: state=0 cpu_id=4
96619           <...>-27785 (-----) [005] ...1 82316.895015: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
96620           <...>-27785 (-----) [005] ...1 82316.895029: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
96621           <...>-27785 (-----) [005] ...1 82316.895033: tracing_mark_write: E|27550
96622           <...>-27785 (-----) [005] .... 82316.895054: binder_transaction: transaction=1571555 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
96623           <...>-27785 (-----) [005] .... 82316.895058: binder_transaction_alloc_buf: transaction=1571555 data_size=48 offsets_size=0
96624           <...>-27785 (-----) [005] ...2 82316.895061: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
96625           <...>-27785 (-----) [005] d..4 82316.895064: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
96626           <...>-27785 (-----) [005] dn.5 82316.895077: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
96627           <...>-27785 (-----) [005] d..2 82316.895083: sched_switch: prev_comm=id.nn.benchmark prev_pid=27785 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
96628<...>-770 ( 770) [005] .... 82316.895094: binder_transaction_received: transaction=1571555
96629          <idle>-0     (-----) [001] d.s2 82316.895136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96630          <idle>-0     (-----) [000] d.s2 82316.895141: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
96631<...>-770 ( 770) [005] ...1 82316.895145: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
96632          <idle>-0     (-----) [001] dns3 82316.895159: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96633          <idle>-0     (-----) [000] dns3 82316.895163: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
96634          <idle>-0     (-----) [000] .n.1 82316.895176: cpu_idle: state=4294967295 cpu_id=0
96635          <idle>-0     (-----) [001] .n.1 82316.895179: cpu_idle: state=4294967295 cpu_id=1
96636          <idle>-0     (-----) [000] d..2 82316.895187: 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
96637          <idle>-0     (-----) [001] d..2 82316.895190: 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
96638     rcu_preempt-7     (    7) [001] d..2 82316.895203: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
96639<...>-770 ( 770) [005] d..2 82316.895224: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
96640<...>-8 ( 8) [000] d..2 82316.895226: 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
96641          <idle>-0     (-----) [000] d..1 82316.895240: cpu_idle: state=0 cpu_id=0
96642     rcu_preempt-7     (    7) [001] d..3 82316.895253: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
96643     rcu_preempt-7     (    7) [001] d..2 82316.895259: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
96644          <idle>-0     (-----) [000] dnh2 82316.895264: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
96645          <idle>-0     (-----) [000] .n.1 82316.895274: cpu_idle: state=4294967295 cpu_id=0
96646     rcu_preempt-7     (    7) [001] d..3 82316.895278: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
96647<...>-770 ( 770) [005] ...1 82316.895282: tracing_mark_write: E|770
96648          <idle>-0     (-----) [000] d..2 82316.895287: 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
96649<...>-770 ( 770) [005] .... 82316.895291: binder_transaction: transaction=1571556 dest_node=0 dest_proc=27550 dest_thread=27785 reply=1 flags=0x0 code=0x0
96650<...>-770 ( 770) [005] .... 82316.895293: binder_transaction_alloc_buf: transaction=1571556 data_size=168 offsets_size=32
96651         rcuop/2-29    (   29) [000] d..2 82316.895293: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
96652     rcu_preempt-7     (    7) [001] d..2 82316.895296: 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
96653<...>-770 ( 770) [005] .... 82316.895300: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
96654         rcuop/4-45    (   45) [001] d..2 82316.895302: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
96655         rcuop/4-45    (   45) [001] d..3 82316.895319: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
96656         rcuop/4-45    (   45) [001] d..2 82316.895330: 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
96657<...>-770 ( 770) [005] d..2 82316.895335: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27785 next_prio=110
96658           <...>-27785 (-----) [005] .... 82316.895346: binder_transaction_received: transaction=1571556
96659         rcuop/2-29    (   29) [000] d..3 82316.895348: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
96660         rcuop/2-29    (   29) [000] d..2 82316.895362: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
96661         rcuop/5-53    (   53) [001] d..2 82316.895416: 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
96662           <...>-27785 (-----) [005] ...1 82316.895418: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
96663           <...>-27785 (-----) [005] ...1 82316.895423: tracing_mark_write: E|27550
96664           <...>-27785 (-----) [005] .... 82316.895437: binder_transaction: transaction=1571557 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
96665           <...>-27785 (-----) [005] .... 82316.895440: binder_transaction_alloc_buf: transaction=1571557 data_size=48 offsets_size=0
96666           <...>-27785 (-----) [005] ...2 82316.895442: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
96667         rcuop/3-37    (   37) [001] d..2 82316.895444: 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
96668           <...>-27785 (-----) [005] d..4 82316.895445: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
96669           <...>-27785 (-----) [005] dn.5 82316.895454: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
96670          <idle>-0     (-----) [001] d..1 82316.895460: cpu_idle: state=0 cpu_id=1
96671           <...>-27785 (-----) [005] d..2 82316.895461: sched_switch: prev_comm=id.nn.benchmark prev_pid=27785 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
96672<...>-581 ( 571) [000] d..2 82316.895465: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96673<...>-770 ( 770) [005] .... 82316.895468: binder_transaction_received: transaction=1571557
96674          <idle>-0     (-----) [000] d..1 82316.895483: cpu_idle: state=0 cpu_id=0
96675<...>-770 ( 770) [005] ...1 82316.895485: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
96676<...>-770 ( 770) [005] d..2 82316.895544: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
96677          <idle>-0     (-----) [000] dnh2 82316.895570: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
96678          <idle>-0     (-----) [000] .n.1 82316.895577: cpu_idle: state=4294967295 cpu_id=0
96679<...>-770 ( 770) [005] ...1 82316.895578: tracing_mark_write: E|770
96680<...>-770 ( 770) [005] .... 82316.895585: binder_transaction: transaction=1571558 dest_node=0 dest_proc=27550 dest_thread=27785 reply=1 flags=0x0 code=0x0
96681<...>-770 ( 770) [005] .... 82316.895588: binder_transaction_alloc_buf: transaction=1571558 data_size=168 offsets_size=32
96682          <idle>-0     (-----) [000] d..2 82316.895589: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
96683<...>-770 ( 770) [005] .... 82316.895594: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
96684<...>-770 ( 770) [005] d..2 82316.895627: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27785 next_prio=110
96685           <...>-27785 (-----) [005] .... 82316.895638: binder_transaction_received: transaction=1571558
96686<...>-581 ( 571) [000] d..2 82316.895659: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96687          <idle>-0     (-----) [000] d..1 82316.895673: cpu_idle: state=0 cpu_id=0
96688           <...>-27785 (-----) [005] ...1 82316.895913: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
96689           <...>-27785 (-----) [005] ...1 82316.895923: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
96690           <...>-27785 (-----) [005] ...1 82316.895927: tracing_mark_write: E|27550
96691           <...>-27785 (-----) [005] .... 82316.895993: binder_transaction: transaction=1571559 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
96692           <...>-27785 (-----) [005] .... 82316.895996: binder_transaction_alloc_buf: transaction=1571559 data_size=556 offsets_size=104
96693           <...>-27785 (-----) [005] ...2 82316.896010: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
96694           <...>-27785 (-----) [005] d..4 82316.896013: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96695           <...>-27785 (-----) [005] dn.5 82316.896024: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96696           <...>-27785 (-----) [005] d..2 82316.896031: sched_switch: prev_comm=id.nn.benchmark prev_pid=27785 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96697<...>-5340 ( 788) [005] .... 82316.896041: binder_transaction_received: transaction=1571559
96698<...>-5340 ( 788) [005] ...1 82316.896088: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
96699<...>-5340 ( 788) [005] d..2 82316.896134: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
96700<...>-5340 ( 788) [005] d..2 82316.896170: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27785 next_prio=110
96701          <idle>-0     (-----) [000] dnh2 82316.896175: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
96702          <idle>-0     (-----) [000] .n.1 82316.896182: cpu_idle: state=4294967295 cpu_id=0
96703          <idle>-0     (-----) [000] d..2 82316.896194: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
96704           <...>-27785 (-----) [005] d..2 82316.896195: sched_switch: prev_comm=id.nn.benchmark prev_pid=27785 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
96705          <idle>-0     (-----) [005] d..1 82316.896212: cpu_idle: state=0 cpu_id=5
96706<...>-87 ( 87) [000] d..2 82316.896242: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96707          <idle>-0     (-----) [002] d.h4 82316.896251: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96708          <idle>-0     (-----) [000] d..1 82316.896253: cpu_idle: state=0 cpu_id=0
96709          <idle>-0     (-----) [002] dnh5 82316.896270: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96710          <idle>-0     (-----) [002] .n.1 82316.896280: cpu_idle: state=4294967295 cpu_id=2
96711          <idle>-0     (-----) [002] d..2 82316.896294: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
96712<...>-86 ( 86) [002] d..2 82316.896333: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96713          <idle>-0     (-----) [002] d.h5 82316.896357: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96714          <idle>-0     (-----) [005] dnh2 82316.896379: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96715          <idle>-0     (-----) [005] .n.1 82316.896383: cpu_idle: state=4294967295 cpu_id=5
96716          <idle>-0     (-----) [005] d..2 82316.896391: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96717          <idle>-0     (-----) [002] d..1 82316.896405: cpu_idle: state=0 cpu_id=2
96718<...>-5340 ( 788) [005] d..1 82316.896445: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
96719          <idle>-0     (-----) [000] dnh2 82316.896483: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
96720          <idle>-0     (-----) [000] .n.1 82316.896490: cpu_idle: state=4294967295 cpu_id=0
96721          <idle>-0     (-----) [000] d..2 82316.896501: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
96722 neuralnetworks@-13088 (  788) [000] d..2 82316.896561: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96723          <idle>-0     (-----) [000] d..1 82316.896576: cpu_idle: state=0 cpu_id=0
96724<...>-5340 ( 788) [005] d..2 82316.896603: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
96725          <idle>-0     (-----) [000] dnh2 82316.896627: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
96726<...>-5340 ( 788) [005] d..2 82316.896630: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
96727          <idle>-0     (-----) [000] .n.1 82316.896634: cpu_idle: state=4294967295 cpu_id=0
96728          <idle>-0     (-----) [005] d..1 82316.896644: cpu_idle: state=0 cpu_id=5
96729          <idle>-0     (-----) [000] d..2 82316.896646: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
96730          <idle>-0     (-----) [002] d.h4 82316.896688: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96731<...>-87 ( 87) [000] d..2 82316.896689: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96732          <idle>-0     (-----) [002] dnh5 82316.896699: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96733          <idle>-0     (-----) [000] d..1 82316.896701: cpu_idle: state=0 cpu_id=0
96734          <idle>-0     (-----) [002] .n.1 82316.896708: cpu_idle: state=4294967295 cpu_id=2
96735          <idle>-0     (-----) [002] d..2 82316.896720: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
96736<...>-86 ( 86) [002] d..2 82316.896756: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96737          <idle>-0     (-----) [002] d..1 82316.896769: cpu_idle: state=0 cpu_id=2
96738          <idle>-0     (-----) [000] d.h5 82316.897291: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
96739          <idle>-0     (-----) [000] dnh6 82316.897310: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
96740          <idle>-0     (-----) [000] dnh5 82316.897314: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
96741          <idle>-0     (-----) [000] dnh6 82316.897329: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
96742          <idle>-0     (-----) [001] .n.1 82316.897336: cpu_idle: state=4294967295 cpu_id=1
96743          <idle>-0     (-----) [000] .n.1 82316.897342: cpu_idle: state=4294967295 cpu_id=0
96744          <idle>-0     (-----) [001] d..2 82316.897347: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
96745          <idle>-0     (-----) [000] d..2 82316.897354: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
96746  crtc_event:111-322   (  322) [000] d..2 82316.897385: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96747          <idle>-0     (-----) [000] d..1 82316.897398: cpu_idle: state=0 cpu_id=0
96748 crtc_commit:111-321   (  321) [001] d..2 82316.897466: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
96749          <idle>-0     (-----) [001] d..1 82316.897476: cpu_idle: state=0 cpu_id=1
96750          <idle>-0     (-----) [002] d.h4 82316.898436: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96751          <idle>-0     (-----) [005] dnh2 82316.898458: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96752          <idle>-0     (-----) [005] .n.1 82316.898463: cpu_idle: state=4294967295 cpu_id=5
96753          <idle>-0     (-----) [001] d.s3 82316.898472: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
96754          <idle>-0     (-----) [005] d..2 82316.898472: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96755          <idle>-0     (-----) [002] ...1 82316.898477: cpu_idle: state=4294967295 cpu_id=2
96756          <idle>-0     (-----) [002] d..1 82316.898483: cpu_idle: state=0 cpu_id=2
96757          <idle>-0     (-----) [001] d.s4 82316.898491: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
96758          <idle>-0     (-----) [000] .n.1 82316.898497: cpu_idle: state=4294967295 cpu_id=0
96759          <idle>-0     (-----) [001] d.s3 82316.898498: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
96760          <idle>-0     (-----) [000] d..2 82316.898509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
96761<...>-5340 ( 788) [005] d..1 82316.898525: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
96762          <idle>-0     (-----) [001] dns4 82316.898534: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
96763          <idle>-0     (-----) [001] dns3 82316.898544: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
96764  crtc_event:111-322   (  322) [000] d..2 82316.898545: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96765          <idle>-0     (-----) [001] dns4 82316.898562: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
96766          <idle>-0     (-----) [000] dnh3 82316.898562: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
96767          <idle>-0     (-----) [001] dns3 82316.898572: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
96768          <idle>-0     (-----) [000] d..2 82316.898573: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
96769<...>-5340 ( 788) [005] ...1 82316.898622: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
96770          <idle>-0     (-----) [001] dns4 82316.898625: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
96771<...>-5340 ( 788) [005] ...1 82316.898626: tracing_mark_write: E|788
96772 neuralnetworks@-13088 (  788) [000] d..2 82316.898639: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
96773<...>-5340 ( 788) [005] .... 82316.898642: binder_transaction: transaction=1571562 dest_node=1571560 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
96774<...>-5340 ( 788) [005] .... 82316.898645: binder_transaction_alloc_buf: transaction=1571562 data_size=60 offsets_size=0
96775<...>-8 ( 8) [000] d..2 82316.898647: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
96776<...>-5340 ( 788) [005] d..4 82316.898648: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
96777          <idle>-0     (-----) [001] .n.1 82316.898649: cpu_idle: state=4294967295 cpu_id=1
96778          <idle>-0     (-----) [001] d..2 82316.898661: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
96779<...>-5340 ( 788) [005] d..5 82316.898661: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
96780          <idle>-0     (-----) [004] .n.1 82316.898667: cpu_idle: state=4294967295 cpu_id=4
96781          <idle>-0     (-----) [004] d..2 82316.898676: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
96782           <...>-27571 (-----) [004] .... 82316.898681: binder_transaction_received: transaction=1571562
96783<...>-5340 ( 788) [005] ...1 82316.898683: tracing_mark_write: E|788
96784<...>-5340 ( 788) [005] .... 82316.898689: binder_transaction: transaction=1571563 dest_node=0 dest_proc=27550 dest_thread=27785 reply=1 flags=0x0 code=0x0
96785<...>-5340 ( 788) [005] .... 82316.898691: binder_transaction_alloc_buf: transaction=1571563 data_size=8 offsets_size=0
96786<...>-8 ( 8) [000] d..3 82316.898691: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
96787<...>-5340 ( 788) [005] d..2 82316.898693: sched_waking: comm=id.nn.benchmark pid=27785 prio=110 target_cpu=005
96788     kworker/1:1-25249 (25249) [001] d..2 82316.898697: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
96789           <...>-27571 (-----) [004] ...1 82316.898700: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
96790<...>-5340 ( 788) [005] d..3 82316.898700: sched_wakeup: comm=id.nn.benchmark pid=27785 prio=110 target_cpu=005
96791<...>-5340 ( 788) [005] .... 82316.898701: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
96792<...>-8 ( 8) [000] d..2 82316.898704: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
96793           <...>-27571 (-----) [004] ...1 82316.898706: tracing_mark_write: E|27550
96794<...>-46 ( 46) [000] d..2 82316.898728: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
96795           <...>-27571 (-----) [004] d..2 82316.898735: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96796<...>-5340 ( 788) [005] d..2 82316.898743: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27785 next_prio=110
96797          <idle>-0     (-----) [004] d..1 82316.898743: cpu_idle: state=0 cpu_id=4
96798<...>-46 ( 46) [000] d..3 82316.898744: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
96799           <...>-27785 (-----) [005] .... 82316.898752: binder_transaction_received: transaction=1571563
96800<...>-46 ( 46) [000] d..2 82316.898760: 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
96801  kworker/u16:15-1311  ( 1311) [001] .... 82316.898779: clk_set_rate: l3_cluster0_vote_clk 300000000
96802<...>-8 ( 8) [000] d..2 82316.898786: 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
96803           <...>-27785 (-----) [005] ...1 82316.898788: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
96804           <...>-27785 (-----) [005] ...1 82316.898794: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
96805          <idle>-0     (-----) [000] d..1 82316.898799: cpu_idle: state=0 cpu_id=0
96806           <...>-27785 (-----) [005] ...1 82316.898835: tracing_mark_write: E|27550
96807           <...>-27785 (-----) [005] ...1 82316.898839: tracing_mark_write: E|27550
96808           <...>-27785 (-----) [005] ...1 82316.898842: tracing_mark_write: E|27550
96809           <...>-27785 (-----) [005] ...1 82316.899033: tracing_mark_write: E|27550
96810           <...>-27785 (-----) [005] d..1 82316.899045: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96811           <...>-27785 (-----) [005] d..2 82316.899061: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96812          <idle>-0     (-----) [004] .n.1 82316.899066: cpu_idle: state=4294967295 cpu_id=4
96813          <idle>-0     (-----) [004] d..2 82316.899074: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
96814  kworker/u16:15-1311  ( 1311) [001] d..2 82316.899084: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
96815           <...>-27550 (-----) [004] d..2 82316.899094: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96816          <idle>-0     (-----) [004] d..1 82316.899103: cpu_idle: state=0 cpu_id=4
96817          <idle>-0     (-----) [001] d.s4 82316.899132: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
96818          <idle>-0     (-----) [001] d.s5 82316.899145: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
96819           <...>-27785 (-----) [005] d..1 82316.899149: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96820          <idle>-0     (-----) [001] dns5 82316.899151: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
96821           <...>-27785 (-----) [005] d..2 82316.899159: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
96822          <idle>-0     (-----) [004] .n.1 82316.899164: cpu_idle: state=4294967295 cpu_id=4
96823          <idle>-0     (-----) [001] d..2 82316.899164: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
96824          <idle>-0     (-----) [004] d..2 82316.899172: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
96825           <...>-27785 (-----) [005] d..2 82316.899196: sched_switch: prev_comm=id.nn.benchmark prev_pid=27785 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
96826           <...>-27550 (-----) [004] ...1 82316.899232: tracing_mark_write: E|27550
96827          <idle>-0     (-----) [005] d..1 82316.899233: cpu_idle: state=0 cpu_id=5
96828           <...>-27550 (-----) [004] ...1 82316.899237: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
96829           <...>-27550 (-----) [004] ...1 82316.899243: tracing_mark_write: E|27550
96830          <idle>-0     (-----) [005] ...1 82316.899244: cpu_idle: state=4294967295 cpu_id=5
96831           <...>-27550 (-----) [004] ...1 82316.899247: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
96832          <idle>-0     (-----) [005] d..1 82316.899248: cpu_idle: state=0 cpu_id=5
96833           <...>-27550 (-----) [004] ...1 82316.899251: tracing_mark_write: E|27550
96834           <...>-27550 (-----) [004] ...1 82316.899255: tracing_mark_write: E|27550
96835  kworker/u16:15-1311  ( 1311) [001] d..2 82316.899280: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96836          <idle>-0     (-----) [001] d..1 82316.899293: cpu_idle: state=0 cpu_id=1
96837           <...>-27550 (-----) [004] ...1 82316.899367: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
96838           <...>-27550 (-----) [004] ...1 82316.899425: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
96839           <...>-27550 (-----) [004] ...1 82316.899429: tracing_mark_write: E|27550
96840           <...>-27550 (-----) [004] ...1 82316.899433: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
96841           <...>-27550 (-----) [004] ...1 82316.899440: tracing_mark_write: E|27550
96842           <...>-27550 (-----) [004] ...1 82316.899444: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
96843           <...>-27550 (-----) [004] ...1 82316.899449: tracing_mark_write: E|27550
96844           <...>-27550 (-----) [004] ...1 82316.899452: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
96845          <idle>-0     (-----) [005] .n.1 82316.899541: cpu_idle: state=4294967295 cpu_id=5
96846           <...>-27550 (-----) [004] ...1 82316.899544: tracing_mark_write: E|27550
96847           <...>-27550 (-----) [004] ...1 82316.899548: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
96848          <idle>-0     (-----) [005] d..2 82316.899549: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27786 next_prio=110
96849           <...>-27550 (-----) [004] d..2 82316.899566: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
96850          <idle>-0     (-----) [004] d..1 82316.899600: cpu_idle: state=0 cpu_id=4
96851           <...>-27786 (-----) [005] ...1 82316.899630: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
96852          <idle>-0     (-----) [000] d.h5 82316.899635: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
96853           <...>-27786 (-----) [005] ...1 82316.899644: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
96854           <...>-27786 (-----) [005] ...1 82316.899648: tracing_mark_write: E|27550
96855          <idle>-0     (-----) [000] d.h6 82316.899655: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
96856          <idle>-0     (-----) [001] .n.1 82316.899660: cpu_idle: state=4294967295 cpu_id=1
96857           <...>-27786 (-----) [005] .... 82316.899667: binder_transaction: transaction=1571564 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
96858          <idle>-0     (-----) [001] d..2 82316.899669: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
96859          <idle>-0     (-----) [000] ...1 82316.899670: cpu_idle: state=4294967295 cpu_id=0
96860           <...>-27786 (-----) [005] .... 82316.899671: binder_transaction_alloc_buf: transaction=1571564 data_size=48 offsets_size=0
96861           <...>-27786 (-----) [005] ...2 82316.899674: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
96862          <idle>-0     (-----) [000] d..1 82316.899676: cpu_idle: state=0 cpu_id=0
96863           <...>-27786 (-----) [005] d..4 82316.899676: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
96864           <...>-27786 (-----) [005] dn.5 82316.899686: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
96865           <...>-27786 (-----) [005] d..2 82316.899693: sched_switch: prev_comm=id.nn.benchmark prev_pid=27786 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
96866<...>-770 ( 770) [005] .... 82316.899703: binder_transaction_received: transaction=1571564
96867<...>-770 ( 770) [005] ...1 82316.899724: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
96868 crtc_commit:111-321   (  321) [001] d..2 82316.899759: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96869          <idle>-0     (-----) [001] d..1 82316.899769: cpu_idle: state=0 cpu_id=1
96870<...>-770 ( 770) [005] d..2 82316.899795: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
96871          <idle>-0     (-----) [000] dnh2 82316.899824: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
96872          <idle>-0     (-----) [000] .n.1 82316.899830: cpu_idle: state=4294967295 cpu_id=0
96873<...>-770 ( 770) [005] ...1 82316.899837: tracing_mark_write: E|770
96874          <idle>-0     (-----) [000] d..2 82316.899841: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
96875<...>-770 ( 770) [005] .... 82316.899844: binder_transaction: transaction=1571565 dest_node=0 dest_proc=27550 dest_thread=27786 reply=1 flags=0x0 code=0x0
96876<...>-770 ( 770) [005] .... 82316.899847: binder_transaction_alloc_buf: transaction=1571565 data_size=168 offsets_size=32
96877<...>-770 ( 770) [005] .... 82316.899854: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
96878<...>-770 ( 770) [005] d..2 82316.899889: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27786 next_prio=110
96879           <...>-27786 (-----) [005] .... 82316.899900: binder_transaction_received: transaction=1571565
96880<...>-581 ( 571) [000] d.h4 82316.899909: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
96881<...>-581 ( 571) [000] d.h5 82316.899934: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
96882          <idle>-0     (-----) [003] .n.1 82316.899940: cpu_idle: state=4294967295 cpu_id=3
96883          <idle>-0     (-----) [003] d..2 82316.899951: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
96884           <...>-27786 (-----) [005] ...1 82316.899972: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
96885           <...>-27786 (-----) [005] ...1 82316.899978: tracing_mark_write: E|27550
96886  crtc_event:111-322   (  322) [003] d..2 82316.899983: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
96887           <...>-27786 (-----) [005] .... 82316.899992: binder_transaction: transaction=1571566 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
96888           <...>-27786 (-----) [005] .... 82316.899995: binder_transaction_alloc_buf: transaction=1571566 data_size=48 offsets_size=0
96889           <...>-27786 (-----) [005] ...2 82316.899997: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
96890          <idle>-0     (-----) [003] d..1 82316.899997: cpu_idle: state=0 cpu_id=3
96891           <...>-27786 (-----) [005] d..4 82316.899999: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
96892<...>-581 ( 571) [000] d..2 82316.900008: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96893           <...>-27786 (-----) [005] dn.5 82316.900009: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
96894           <...>-27786 (-----) [005] d..2 82316.900016: sched_switch: prev_comm=id.nn.benchmark prev_pid=27786 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
96895<...>-770 ( 770) [005] .... 82316.900024: binder_transaction_received: transaction=1571566
96896          <idle>-0     (-----) [000] d..1 82316.900024: cpu_idle: state=0 cpu_id=0
96897<...>-770 ( 770) [005] ...1 82316.900041: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
96898<...>-770 ( 770) [005] d..2 82316.900097: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
96899          <idle>-0     (-----) [000] dnh2 82316.900122: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
96900          <idle>-0     (-----) [000] .n.1 82316.900129: cpu_idle: state=4294967295 cpu_id=0
96901<...>-770 ( 770) [005] ...1 82316.900131: tracing_mark_write: E|770
96902<...>-770 ( 770) [005] .... 82316.900138: binder_transaction: transaction=1571567 dest_node=0 dest_proc=27550 dest_thread=27786 reply=1 flags=0x0 code=0x0
96903<...>-770 ( 770) [005] .... 82316.900141: binder_transaction_alloc_buf: transaction=1571567 data_size=168 offsets_size=32
96904          <idle>-0     (-----) [000] d..2 82316.900141: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
96905<...>-770 ( 770) [005] .... 82316.900146: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
96906<...>-770 ( 770) [005] d..2 82316.900181: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27786 next_prio=110
96907           <...>-27786 (-----) [005] .... 82316.900191: binder_transaction_received: transaction=1571567
96908<...>-581 ( 571) [000] d..2 82316.900212: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
96909          <idle>-0     (-----) [000] d..1 82316.900224: cpu_idle: state=0 cpu_id=0
96910          <idle>-0     (-----) [000] d.h3 82316.900276: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
96911          <idle>-0     (-----) [000] d.h4 82316.900293: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
96912          <idle>-0     (-----) [001] .n.1 82316.900300: cpu_idle: state=4294967295 cpu_id=1
96913          <idle>-0     (-----) [000] ...1 82316.900305: cpu_idle: state=4294967295 cpu_id=0
96914          <idle>-0     (-----) [000] d..1 82316.900310: cpu_idle: state=0 cpu_id=0
96915          <idle>-0     (-----) [001] d..2 82316.900310: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
96916  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900339: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
96917  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900355: clk_disable: gcc_ufs_phy_phy_aux_clk
96918  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900367: clk_disable: gcc_ufs_phy_phy_aux_clk_src
96919  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900379: clk_disable: gcc_ufs_mem_clkref_clk
96920  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900395: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
96921  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900400: clk_disable: gcc_ufs_phy_axi_clk
96922  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900410: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
96923  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900416: clk_disable: gcc_aggre_ufs_phy_axi_clk
96924  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900424: clk_disable: gcc_ufs_phy_axi_clk_src
96925  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900431: clk_disable: gcc_ufs_phy_ahb_clk
96926  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900440: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
96927  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900445: clk_disable: gcc_ufs_phy_unipro_core_clk
96928  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900453: clk_disable: gcc_ufs_phy_unipro_core_clk_src
96929  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900460: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
96930           <...>-27786 (-----) [005] ...1 82316.900461: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
96931  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900465: clk_disable: gcc_ufs_phy_ice_core_clk
96932           <...>-27786 (-----) [005] ...1 82316.900471: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
96933  kworker/u16:15-1311  ( 1311) [001] d..1 82316.900473: clk_disable: gcc_ufs_phy_ice_core_clk_src
96934           <...>-27786 (-----) [005] ...1 82316.900475: tracing_mark_write: E|27550
96935           <...>-27786 (-----) [005] .... 82316.900535: binder_transaction: transaction=1571568 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
96936           <...>-27786 (-----) [005] .... 82316.900538: binder_transaction_alloc_buf: transaction=1571568 data_size=556 offsets_size=104
96937           <...>-27786 (-----) [005] ...2 82316.900551: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
96938           <...>-27786 (-----) [005] d..4 82316.900553: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96939           <...>-27786 (-----) [005] dn.5 82316.900564: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96940           <...>-27786 (-----) [005] d..2 82316.900571: sched_switch: prev_comm=id.nn.benchmark prev_pid=27786 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96941<...>-5340 ( 788) [005] .... 82316.900581: binder_transaction_received: transaction=1571568
96942<...>-5340 ( 788) [005] ...1 82316.900625: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
96943<...>-5340 ( 788) [005] d..2 82316.900667: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
96944<...>-5340 ( 788) [005] d..2 82316.900705: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27786 next_prio=110
96945  kworker/u16:15-1311  ( 1311) [001] dnh2 82316.900727: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
96946           <...>-27786 (-----) [005] d..2 82316.900727: sched_switch: prev_comm=id.nn.benchmark prev_pid=27786 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
96947  kworker/u16:15-1311  ( 1311) [001] d..2 82316.900741: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
96948          <idle>-0     (-----) [005] d..1 82316.900745: cpu_idle: state=0 cpu_id=5
96949<...>-87 ( 87) [001] d..2 82316.900774: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
96950          <idle>-0     (-----) [002] d.h4 82316.900790: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96951          <idle>-0     (-----) [002] dnh5 82316.900807: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96952          <idle>-0     (-----) [002] .n.1 82316.900816: cpu_idle: state=4294967295 cpu_id=2
96953          <idle>-0     (-----) [002] d..2 82316.900831: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
96954<...>-86 ( 86) [002] d..2 82316.900867: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96955          <idle>-0     (-----) [002] d.h5 82316.900889: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96956  kworker/u16:15-1311  ( 1311) [001] d..2 82316.900906: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
96957          <idle>-0     (-----) [005] dnh2 82316.900911: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
96958          <idle>-0     (-----) [005] .n.1 82316.900916: cpu_idle: state=4294967295 cpu_id=5
96959          <idle>-0     (-----) [005] d..2 82316.900924: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
96960          <idle>-0     (-----) [002] d..1 82316.900937: cpu_idle: state=0 cpu_id=2
96961          <idle>-0     (-----) [001] d.s4 82316.900952: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
96962          <idle>-0     (-----) [001] d.s5 82316.900962: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
96963          <idle>-0     (-----) [001] dns5 82316.900968: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
96964<...>-5340 ( 788) [005] d..1 82316.900975: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
96965          <idle>-0     (-----) [001] d..2 82316.900981: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
96966  kworker/u16:15-1311  ( 1311) [001] d..2 82316.901016: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96967          <idle>-0     (-----) [001] dnh3 82316.901029: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
96968          <idle>-0     (-----) [001] d..2 82316.901039: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
96969 neuralnetworks@-13088 (  788) [001] d..2 82316.901100: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96970          <idle>-0     (-----) [001] d..1 82316.901114: cpu_idle: state=0 cpu_id=1
96971<...>-5340 ( 788) [005] d..2 82316.901135: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
96972          <idle>-0     (-----) [001] dnh2 82316.901159: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
96973<...>-5340 ( 788) [005] d..2 82316.901162: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
96974          <idle>-0     (-----) [001] .n.1 82316.901165: cpu_idle: state=4294967295 cpu_id=1
96975          <idle>-0     (-----) [001] d..2 82316.901175: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
96976          <idle>-0     (-----) [005] d..1 82316.901175: cpu_idle: state=0 cpu_id=5
96977          <idle>-0     (-----) [002] d.h4 82316.901215: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96978<...>-87 ( 87) [001] d..2 82316.901216: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
96979          <idle>-0     (-----) [001] d..1 82316.901225: cpu_idle: state=0 cpu_id=1
96980          <idle>-0     (-----) [002] dnh5 82316.901226: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
96981          <idle>-0     (-----) [002] .n.1 82316.901235: cpu_idle: state=4294967295 cpu_id=2
96982          <idle>-0     (-----) [002] d..2 82316.901248: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
96983<...>-86 ( 86) [002] d..2 82316.901283: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
96984          <idle>-0     (-----) [002] d..1 82316.901295: cpu_idle: state=0 cpu_id=2
96985          <idle>-0     (-----) [003] ...1 82316.901657: cpu_idle: state=4294967295 cpu_id=3
96986          <idle>-0     (-----) [003] d..1 82316.901661: cpu_idle: state=0 cpu_id=3
96987          <idle>-0     (-----) [001] d.h2 82316.901733: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
96988          <idle>-0     (-----) [001] dnh3 82316.901750: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
96989          <idle>-0     (-----) [001] .n.1 82316.901760: cpu_idle: state=4294967295 cpu_id=1
96990          <idle>-0     (-----) [001] d..2 82316.901768: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
96991        DispSync-8879  ( 8858) [001] d.s3 82316.901811: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96992        DispSync-8879  ( 8858) [001] d.s4 82316.901831: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
96993        DispSync-8879  ( 8858) [001] d..1 82316.901862: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
96994        DispSync-8879  ( 8858) [001] d..2 82316.901881: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
96995          <idle>-0     (-----) [003] .n.1 82316.901885: cpu_idle: state=4294967295 cpu_id=3
96996          <idle>-0     (-----) [003] d..2 82316.901898: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
96997        DispSync-8879  ( 8858) [001] d..2 82316.901906: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
96998     rcu_preempt-7     (    7) [001] d..2 82316.901946: 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
96999  appEventThread-8881  ( 8858) [003] d..3 82316.901951: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
97000          <idle>-0     (-----) [001] d..1 82316.901960: cpu_idle: state=0 cpu_id=1
97001  appEventThread-8881  ( 8858) [003] d..4 82316.901975: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
97002          <idle>-0     (-----) [000] .n.1 82316.901980: cpu_idle: state=4294967295 cpu_id=0
97003          <idle>-0     (-----) [000] d..2 82316.901996: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
97004  appEventThread-8881  ( 8858) [003] d..2 82316.902020: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97005          <idle>-0     (-----) [003] d..1 82316.902035: cpu_idle: state=0 cpu_id=3
97006<...>-9105 ( 9105) [000] .... 82316.902354: binder_transaction: transaction=1571571 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
97007<...>-9105 ( 9105) [000] .... 82316.902362: binder_transaction_alloc_buf: transaction=1571571 data_size=80 offsets_size=0
97008<...>-9105 ( 9105) [000] d..4 82316.902369: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
97009<...>-9105 ( 9105) [000] d..5 82316.902404: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
97010          <idle>-0     (-----) [001] .n.1 82316.902410: cpu_idle: state=4294967295 cpu_id=1
97011          <idle>-0     (-----) [001] d..2 82316.902423: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
97012<...>-13083 ( 8858) [001] .... 82316.902432: binder_transaction_received: transaction=1571571
97013<...>-9105 ( 9105) [000] d..3 82316.902445: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
97014<...>-9105 ( 9105) [000] d..4 82316.902466: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
97015<...>-13083 ( 8858) [001] d..1 82316.902470: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
97016          <idle>-0     (-----) [002] .n.1 82316.902472: cpu_idle: state=4294967295 cpu_id=2
97017          <idle>-0     (-----) [002] d..2 82316.902487: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
97018<...>-13083 ( 8858) [001] d..2 82316.902488: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
97019          <idle>-0     (-----) [003] .n.1 82316.902494: cpu_idle: state=4294967295 cpu_id=3
97020          <idle>-0     (-----) [003] d..2 82316.902505: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
97021<...>-13083 ( 8858) [001] d..2 82316.902537: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97022          <idle>-0     (-----) [001] d..1 82316.902550: cpu_idle: state=0 cpu_id=1
97023  appEventThread-8881  ( 8858) [003] d..2 82316.902550: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97024    RenderThread-9436  ( 9105) [002] d..2 82316.902553: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97025          <idle>-0     (-----) [003] d..1 82316.902563: cpu_idle: state=0 cpu_id=3
97026          <idle>-0     (-----) [002] d..1 82316.902567: cpu_idle: state=0 cpu_id=2
97027<...>-9105 ( 9105) [000] d..3 82316.902595: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
97028<...>-9105 ( 9105) [000] d..4 82316.902615: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
97029          <idle>-0     (-----) [002] .n.1 82316.902620: cpu_idle: state=4294967295 cpu_id=2
97030          <idle>-0     (-----) [002] d..2 82316.902634: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
97031<...>-9105 ( 9105) [000] d..2 82316.902655: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97032          <idle>-0     (-----) [000] d..1 82316.902670: cpu_idle: state=0 cpu_id=0
97033    RenderThread-9436  ( 9105) [002] d..1 82316.902769: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
97034    RenderThread-9436  ( 9105) [002] d..2 82316.902790: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
97035          <idle>-0     (-----) [000] .n.1 82316.902796: cpu_idle: state=4294967295 cpu_id=0
97036          <idle>-0     (-----) [000] d..2 82316.902808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
97037    RenderThread-9436  ( 9105) [002] d.h3 82316.902881: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97038<...>-9105 ( 9105) [000] d..2 82316.902895: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97039          <idle>-0     (-----) [005] dnh2 82316.902905: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97040          <idle>-0     (-----) [000] d..1 82316.902907: cpu_idle: state=0 cpu_id=0
97041          <idle>-0     (-----) [005] .n.1 82316.902909: cpu_idle: state=4294967295 cpu_id=5
97042          <idle>-0     (-----) [005] d..2 82316.902918: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97043    RenderThread-9436  ( 9105) [002] .... 82316.902927: binder_transaction: transaction=1571572 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
97044    RenderThread-9436  ( 9105) [002] .... 82316.902932: binder_transaction_alloc_buf: transaction=1571572 data_size=104 offsets_size=0
97045    RenderThread-9436  ( 9105) [002] d..4 82316.902938: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
97046    RenderThread-9436  ( 9105) [002] dn.5 82316.902960: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
97047<...>-5340 ( 788) [005] d..1 82316.902969: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
97048    RenderThread-9436  ( 9105) [002] d..2 82316.902971: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
97049<...>-13083 ( 8858) [002] .... 82316.902981: binder_transaction_received: transaction=1571572
97050          <idle>-0     (-----) [001] dnh2 82316.902996: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
97051          <idle>-0     (-----) [001] .n.1 82316.903003: cpu_idle: state=4294967295 cpu_id=1
97052          <idle>-0     (-----) [001] d..2 82316.903017: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
97053<...>-5340 ( 788) [005] ...1 82316.903063: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
97054<...>-5340 ( 788) [005] ...1 82316.903068: tracing_mark_write: E|788
97055<...>-5340 ( 788) [005] .... 82316.903085: binder_transaction: transaction=1571573 dest_node=1571569 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
97056<...>-5340 ( 788) [005] .... 82316.903088: binder_transaction_alloc_buf: transaction=1571573 data_size=60 offsets_size=0
97057<...>-5340 ( 788) [005] d..4 82316.903091: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
97058 neuralnetworks@-13088 (  788) [001] d..2 82316.903093: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97059<...>-13083 ( 8858) [002] .... 82316.903099: binder_transaction: transaction=1571574 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
97060<...>-5340 ( 788) [005] d..5 82316.903103: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
97061<...>-13083 ( 8858) [002] .... 82316.903104: binder_transaction_alloc_buf: transaction=1571574 data_size=52 offsets_size=8
97062          <idle>-0     (-----) [001] d..1 82316.903106: cpu_idle: state=0 cpu_id=1
97063          <idle>-0     (-----) [004] .n.1 82316.903109: cpu_idle: state=4294967295 cpu_id=4
97064          <idle>-0     (-----) [004] d..2 82316.903119: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
97065           <...>-27571 (-----) [004] .... 82316.903124: binder_transaction_received: transaction=1571573
97066<...>-5340 ( 788) [005] ...1 82316.903126: tracing_mark_write: E|788
97067<...>-5340 ( 788) [005] .... 82316.903133: binder_transaction: transaction=1571575 dest_node=0 dest_proc=27550 dest_thread=27786 reply=1 flags=0x0 code=0x0
97068<...>-5340 ( 788) [005] .... 82316.903135: binder_transaction_alloc_buf: transaction=1571575 data_size=8 offsets_size=0
97069<...>-5340 ( 788) [005] d..2 82316.903137: sched_waking: comm=id.nn.benchmark pid=27786 prio=110 target_cpu=005
97070           <...>-27571 (-----) [004] ...1 82316.903142: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
97071<...>-5340 ( 788) [005] d..3 82316.903144: sched_wakeup: comm=id.nn.benchmark pid=27786 prio=110 target_cpu=005
97072<...>-5340 ( 788) [005] .... 82316.903145: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
97073           <...>-27571 (-----) [004] ...1 82316.903149: tracing_mark_write: E|27550
97074<...>-13083 ( 8858) [002] d..2 82316.903161: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
97075    RenderThread-9436  ( 9105) [002] .... 82316.903172: binder_transaction_received: transaction=1571574
97076           <...>-27571 (-----) [004] d..2 82316.903176: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97077          <idle>-0     (-----) [004] d..1 82316.903183: cpu_idle: state=0 cpu_id=4
97078<...>-5340 ( 788) [005] d..2 82316.903187: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27786 next_prio=110
97079           <...>-27786 (-----) [005] .... 82316.903197: binder_transaction_received: transaction=1571575
97080           <...>-27786 (-----) [005] ...1 82316.903232: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
97081           <...>-27786 (-----) [005] ...1 82316.903239: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
97082           <...>-27786 (-----) [005] ...1 82316.903264: tracing_mark_write: E|27550
97083           <...>-27786 (-----) [005] ...1 82316.903267: tracing_mark_write: E|27550
97084           <...>-27786 (-----) [005] ...1 82316.903271: tracing_mark_write: E|27550
97085           <...>-27786 (-----) [005] ...1 82316.903460: tracing_mark_write: E|27550
97086           <...>-27786 (-----) [005] d..1 82316.903473: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97087           <...>-27786 (-----) [005] d..2 82316.903489: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97088          <idle>-0     (-----) [004] .n.1 82316.903494: cpu_idle: state=4294967295 cpu_id=4
97089          <idle>-0     (-----) [004] d..2 82316.903501: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
97090           <...>-27550 (-----) [004] d..2 82316.903520: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97091          <idle>-0     (-----) [004] d..1 82316.903529: cpu_idle: state=0 cpu_id=4
97092           <...>-27786 (-----) [005] d..1 82316.903575: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97093           <...>-27786 (-----) [005] d..2 82316.903584: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97094          <idle>-0     (-----) [004] .n.1 82316.903589: cpu_idle: state=4294967295 cpu_id=4
97095          <idle>-0     (-----) [004] d..2 82316.903597: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
97096           <...>-27786 (-----) [005] d..2 82316.903623: sched_switch: prev_comm=id.nn.benchmark prev_pid=27786 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
97097           <...>-27550 (-----) [004] ...1 82316.903631: tracing_mark_write: E|27550
97098           <...>-27550 (-----) [004] ...1 82316.903635: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
97099           <...>-27550 (-----) [004] ...1 82316.903641: tracing_mark_write: E|27550
97100          <idle>-0     (-----) [005] d..1 82316.903643: cpu_idle: state=0 cpu_id=5
97101           <...>-27550 (-----) [004] ...1 82316.903644: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
97102           <...>-27550 (-----) [004] ...1 82316.903648: tracing_mark_write: E|27550
97103           <...>-27550 (-----) [004] ...1 82316.903652: tracing_mark_write: E|27550
97104           <...>-27550 (-----) [004] ...1 82316.903765: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
97105           <...>-27550 (-----) [004] ...1 82316.903822: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
97106           <...>-27550 (-----) [004] ...1 82316.903827: tracing_mark_write: E|27550
97107           <...>-27550 (-----) [004] ...1 82316.903830: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
97108           <...>-27550 (-----) [004] ...1 82316.903835: tracing_mark_write: E|27550
97109           <...>-27550 (-----) [004] ...1 82316.903839: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
97110           <...>-27550 (-----) [004] ...1 82316.903842: tracing_mark_write: E|27550
97111           <...>-27550 (-----) [004] ...1 82316.903846: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
97112          <idle>-0     (-----) [005] .n.1 82316.903936: cpu_idle: state=4294967295 cpu_id=5
97113           <...>-27550 (-----) [004] ...1 82316.903938: tracing_mark_write: E|27550
97114           <...>-27550 (-----) [004] ...1 82316.903943: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
97115          <idle>-0     (-----) [005] d..2 82316.903945: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27787 next_prio=110
97116           <...>-27550 (-----) [004] d..2 82316.903959: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97117          <idle>-0     (-----) [004] d..1 82316.903974: cpu_idle: state=0 cpu_id=4
97118           <...>-27787 (-----) [005] ...1 82316.904007: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
97119           <...>-27787 (-----) [005] ...1 82316.904022: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
97120           <...>-27787 (-----) [005] ...1 82316.904025: tracing_mark_write: E|27550
97121           <...>-27787 (-----) [005] .... 82316.904047: binder_transaction: transaction=1571576 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
97122           <...>-27787 (-----) [005] .... 82316.904050: binder_transaction_alloc_buf: transaction=1571576 data_size=48 offsets_size=0
97123           <...>-27787 (-----) [005] ...2 82316.904053: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
97124           <...>-27787 (-----) [005] d..4 82316.904055: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
97125           <...>-27787 (-----) [005] dn.5 82316.904066: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
97126           <...>-27787 (-----) [005] d..2 82316.904072: sched_switch: prev_comm=id.nn.benchmark prev_pid=27787 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
97127<...>-770 ( 770) [005] .... 82316.904083: binder_transaction_received: transaction=1571576
97128<...>-770 ( 770) [005] ...1 82316.904107: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
97129<...>-770 ( 770) [005] d..2 82316.904187: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
97130    RenderThread-9436  ( 9105) [002] d.h2 82316.904237: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
97131<...>-770 ( 770) [005] ...1 82316.904243: tracing_mark_write: E|770
97132<...>-770 ( 770) [005] .... 82316.904252: binder_transaction: transaction=1571577 dest_node=0 dest_proc=27550 dest_thread=27787 reply=1 flags=0x0 code=0x0
97133<...>-770 ( 770) [005] .... 82316.904255: binder_transaction_alloc_buf: transaction=1571577 data_size=168 offsets_size=32
97134<...>-770 ( 770) [005] .... 82316.904261: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
97135    RenderThread-9436  ( 9105) [002] d..2 82316.904277: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
97136<...>-770 ( 770) [005] d..2 82316.904297: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27787 next_prio=110
97137           <...>-27787 (-----) [005] .... 82316.904308: binder_transaction_received: transaction=1571577
97138<...>-581 ( 571) [002] d..2 82316.904380: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97139           <...>-27787 (-----) [005] ...1 82316.904381: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
97140           <...>-27787 (-----) [005] ...1 82316.904386: tracing_mark_write: E|27550
97141          <idle>-0     (-----) [000] d.h3 82316.904390: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
97142          <idle>-0     (-----) [002] d.h3 82316.904394: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
97143           <...>-27787 (-----) [005] .... 82316.904400: binder_transaction: transaction=1571578 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
97144           <...>-27787 (-----) [005] .... 82316.904403: binder_transaction_alloc_buf: transaction=1571578 data_size=48 offsets_size=0
97145           <...>-27787 (-----) [005] ...2 82316.904405: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
97146          <idle>-0     (-----) [002] d.h4 82316.904405: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
97147           <...>-27787 (-----) [005] d..4 82316.904408: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
97148          <idle>-0     (-----) [002] dnh4 82316.904411: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
97149          <idle>-0     (-----) [000] d.h4 82316.904415: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
97150           <...>-27787 (-----) [005] dn.5 82316.904418: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
97151          <idle>-0     (-----) [003] .n.1 82316.904421: cpu_idle: state=4294967295 cpu_id=3
97152           <...>-27787 (-----) [005] d..2 82316.904424: sched_switch: prev_comm=id.nn.benchmark prev_pid=27787 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
97153          <idle>-0     (-----) [002] d..2 82316.904427: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
97154          <idle>-0     (-----) [000] ...1 82316.904431: cpu_idle: state=4294967295 cpu_id=0
97155          <idle>-0     (-----) [003] d..2 82316.904432: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
97156<...>-770 ( 770) [005] .... 82316.904432: binder_transaction_received: transaction=1571578
97157          <idle>-0     (-----) [000] d..1 82316.904437: cpu_idle: state=0 cpu_id=0
97158<...>-770 ( 770) [005] ...1 82316.904449: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
97159 kgsl_worker_thr-258   (  258) [003] d..2 82316.904496: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
97160<...>-770 ( 770) [005] d..2 82316.904507: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
97161 kgsl_worker_thr-258   (  258) [003] d..3 82316.904545: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
97162 kgsl_worker_thr-258   (  258) [003] d.h1 82316.904556: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
97163<...>-770 ( 770) [005] ...1 82316.904561: tracing_mark_write: E|770
97164<...>-770 ( 770) [005] .... 82316.904569: binder_transaction: transaction=1571579 dest_node=0 dest_proc=27550 dest_thread=27787 reply=1 flags=0x0 code=0x0
97165<...>-770 ( 770) [005] .... 82316.904572: binder_transaction_alloc_buf: transaction=1571579 data_size=168 offsets_size=32
97166 kgsl_worker_thr-258   (  258) [003] d..2 82316.904574: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
97167<...>-770 ( 770) [005] .... 82316.904578: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
97168  kworker/u16:15-1311  ( 1311) [003] d..2 82316.904613: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
97169<...>-770 ( 770) [005] d..2 82316.904613: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27787 next_prio=110
97170           <...>-27787 (-----) [005] .... 82316.904623: binder_transaction_received: transaction=1571579
97171    RenderThread-9436  ( 9105) [002] .... 82316.904648: binder_transaction: transaction=1571580 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
97172    RenderThread-9436  ( 9105) [002] .... 82316.904654: binder_transaction_alloc_buf: transaction=1571580 data_size=192 offsets_size=8
97173    RenderThread-9436  ( 9105) [002] d..4 82316.904668: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
97174    RenderThread-9436  ( 9105) [002] dn.5 82316.904685: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
97175    RenderThread-9436  ( 9105) [002] d..2 82316.904698: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
97176<...>-581 ( 571) [003] d..2 82316.904705: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97177<...>-13083 ( 8858) [002] .... 82316.904707: binder_transaction_received: transaction=1571580
97178          <idle>-0     (-----) [003] d..1 82316.904725: cpu_idle: state=0 cpu_id=3
97179<...>-13083 ( 8858) [002] .... 82316.904874: binder_transaction: transaction=1571581 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
97180<...>-13083 ( 8858) [002] .... 82316.904879: binder_transaction_alloc_buf: transaction=1571581 data_size=68 offsets_size=0
97181           <...>-27787 (-----) [005] ...1 82316.904900: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
97182           <...>-27787 (-----) [005] ...1 82316.904910: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
97183           <...>-27787 (-----) [005] ...1 82316.904913: tracing_mark_write: E|27550
97184<...>-13083 ( 8858) [002] d..2 82316.904925: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
97185    RenderThread-9436  ( 9105) [002] .... 82316.904936: binder_transaction_received: transaction=1571581
97186           <...>-27787 (-----) [005] .... 82316.904977: binder_transaction: transaction=1571582 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
97187           <...>-27787 (-----) [005] .... 82316.904980: binder_transaction_alloc_buf: transaction=1571582 data_size=556 offsets_size=104
97188           <...>-27787 (-----) [005] ...2 82316.904994: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
97189           <...>-27787 (-----) [005] d..4 82316.904997: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97190           <...>-27787 (-----) [005] dn.5 82316.905008: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97191           <...>-27787 (-----) [005] d..2 82316.905015: sched_switch: prev_comm=id.nn.benchmark prev_pid=27787 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97192<...>-5340 ( 788) [005] .... 82316.905025: binder_transaction_received: transaction=1571582
97193    RenderThread-9436  ( 9105) [002] d..2 82316.905033: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97194          <idle>-0     (-----) [002] d..1 82316.905053: cpu_idle: state=0 cpu_id=2
97195<...>-5340 ( 788) [005] ...1 82316.905072: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
97196          <idle>-0     (-----) [000] d.s2 82316.905138: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
97197          <idle>-0     (-----) [000] dns3 82316.905157: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
97198<...>-5340 ( 788) [005] d..2 82316.905161: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
97199          <idle>-0     (-----) [000] .n.1 82316.905180: cpu_idle: state=4294967295 cpu_id=0
97200          <idle>-0     (-----) [000] d..2 82316.905192: 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
97201<...>-5340 ( 788) [005] d..2 82316.905204: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27787 next_prio=110
97202<...>-8 ( 8) [000] d.h3 82316.905204: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97203<...>-8 ( 8) [000] d..2 82316.905226: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
97204           <...>-27787 (-----) [005] d..2 82316.905230: sched_switch: prev_comm=id.nn.benchmark prev_pid=27787 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
97205          <idle>-0     (-----) [005] d..1 82316.905247: cpu_idle: state=0 cpu_id=5
97206<...>-87 ( 87) [000] d..2 82316.905278: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97207          <idle>-0     (-----) [002] d.h4 82316.905284: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97208          <idle>-0     (-----) [000] d..1 82316.905293: cpu_idle: state=0 cpu_id=0
97209          <idle>-0     (-----) [002] dnh5 82316.905306: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97210          <idle>-0     (-----) [002] .n.1 82316.905317: cpu_idle: state=4294967295 cpu_id=2
97211          <idle>-0     (-----) [002] d..2 82316.905333: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
97212<...>-86 ( 86) [002] d.h4 82316.905366: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97213          <idle>-0     (-----) [005] dnh2 82316.905388: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97214          <idle>-0     (-----) [005] .n.1 82316.905392: cpu_idle: state=4294967295 cpu_id=5
97215          <idle>-0     (-----) [005] d..2 82316.905400: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97216<...>-86 ( 86) [002] d..2 82316.905433: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97217          <idle>-0     (-----) [002] d..1 82316.905450: cpu_idle: state=0 cpu_id=2
97218<...>-5340 ( 788) [005] d..1 82316.905456: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
97219          <idle>-0     (-----) [000] dnh2 82316.905494: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97220          <idle>-0     (-----) [000] .n.1 82316.905500: cpu_idle: state=4294967295 cpu_id=0
97221          <idle>-0     (-----) [000] d..2 82316.905512: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
97222 neuralnetworks@-13088 (  788) [000] d..2 82316.905574: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97223          <idle>-0     (-----) [000] d..1 82316.905590: cpu_idle: state=0 cpu_id=0
97224<...>-5340 ( 788) [005] d..2 82316.905614: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97225          <idle>-0     (-----) [000] dnh2 82316.905637: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97226<...>-5340 ( 788) [005] d..2 82316.905639: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
97227          <idle>-0     (-----) [000] .n.1 82316.905643: cpu_idle: state=4294967295 cpu_id=0
97228          <idle>-0     (-----) [005] d..1 82316.905653: cpu_idle: state=0 cpu_id=5
97229          <idle>-0     (-----) [000] d..2 82316.905655: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
97230          <idle>-0     (-----) [002] d.h4 82316.905696: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97231<...>-87 ( 87) [000] d..2 82316.905698: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97232          <idle>-0     (-----) [002] dnh5 82316.905708: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97233          <idle>-0     (-----) [000] d..1 82316.905711: cpu_idle: state=0 cpu_id=0
97234          <idle>-0     (-----) [002] .n.1 82316.905718: cpu_idle: state=4294967295 cpu_id=2
97235          <idle>-0     (-----) [002] d..2 82316.905730: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
97236          <idle>-0     (-----) [001] d.h2 82316.905744: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
97237          <idle>-0     (-----) [001] dnh3 82316.905758: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
97238<...>-86 ( 86) [002] d..2 82316.905766: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97239          <idle>-0     (-----) [001] .n.1 82316.905767: cpu_idle: state=4294967295 cpu_id=1
97240          <idle>-0     (-----) [001] d..2 82316.905779: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
97241          <idle>-0     (-----) [002] d..1 82316.905779: cpu_idle: state=0 cpu_id=2
97242        DispSync-8879  ( 8858) [001] d..1 82316.905798: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
97243        DispSync-8879  ( 8858) [001] d..2 82316.905816: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
97244          <idle>-0     (-----) [003] .n.1 82316.905823: cpu_idle: state=4294967295 cpu_id=3
97245          <idle>-0     (-----) [003] d..2 82316.905836: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
97246        DispSync-8879  ( 8858) [001] d..2 82316.905850: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97247          <idle>-0     (-----) [001] d..1 82316.905860: cpu_idle: state=0 cpu_id=1
97248   sfEventThread-8882  ( 8858) [003] d..3 82316.905874: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
97249   sfEventThread-8882  ( 8858) [003] d..4 82316.905895: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
97250          <idle>-0     (-----) [000] .n.1 82316.905900: cpu_idle: state=4294967295 cpu_id=0
97251          <idle>-0     (-----) [000] d..2 82316.905911: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
97252   sfEventThread-8882  ( 8858) [003] d..2 82316.905932: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97253          <idle>-0     (-----) [003] d..1 82316.905947: cpu_idle: state=0 cpu_id=3
97254          <idle>-0     (-----) [005] ...1 82316.905981: cpu_idle: state=4294967295 cpu_id=5
97255          <idle>-0     (-----) [005] d..1 82316.905985: cpu_idle: state=0 cpu_id=5
97256  surfaceflinger-8858  ( 8858) [000] d..1 82316.906292: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
97257  surfaceflinger-8858  ( 8858) [000] d..2 82316.906316: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
97258          <idle>-0     (-----) [003] .n.1 82316.906322: cpu_idle: state=4294967295 cpu_id=3
97259          <idle>-0     (-----) [003] d..2 82316.906333: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
97260   sfEventThread-8882  ( 8858) [003] d..2 82316.906369: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97261          <idle>-0     (-----) [003] d..1 82316.906381: cpu_idle: state=0 cpu_id=3
97262  surfaceflinger-8858  ( 8858) [000] ...1 82316.906519: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
97263  surfaceflinger-8858  ( 8858) [000] ...1 82316.906527: tracing_mark_write: E|8858
97264  surfaceflinger-8858  ( 8858) [000] .... 82316.906582: binder_transaction: transaction=1571585 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
97265  surfaceflinger-8858  ( 8858) [000] .... 82316.906587: binder_transaction_alloc_buf: transaction=1571585 data_size=540 offsets_size=96
97266  surfaceflinger-8858  ( 8858) [000] ...2 82316.906614: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
97267  surfaceflinger-8858  ( 8858) [000] d..4 82316.906623: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
97268  surfaceflinger-8858  ( 8858) [000] d..5 82316.906644: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
97269          <idle>-0     (-----) [002] .n.1 82316.906650: cpu_idle: state=4294967295 cpu_id=2
97270          <idle>-0     (-----) [002] d..2 82316.906661: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
97271 [email protected]   (  619) [002] .... 82316.906673: binder_transaction_received: transaction=1571585
97272  surfaceflinger-8858  ( 8858) [000] d..2 82316.906679: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97273          <idle>-0     (-----) [000] d..1 82316.906698: cpu_idle: state=0 cpu_id=0
97274 [email protected]   (  619) [002] ...1 82316.906723: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
97275 [email protected]   (  619) [002] ...1 82316.906849: tracing_mark_write: B|619|HWCSession::PresentDisplay::
97276 [email protected]   (  619) [002] ...1 82316.907043: tracing_mark_write: B|619|HWDeviceDRM::Commit::
97277 [email protected]   (  619) [002] ...1 82316.907057: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
97278 [email protected]   (  619) [002] d.h3 82316.907338: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97279          <idle>-0     (-----) [005] dnh2 82316.907362: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97280          <idle>-0     (-----) [005] .n.1 82316.907365: cpu_idle: state=4294967295 cpu_id=5
97281          <idle>-0     (-----) [005] d..2 82316.907373: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97282<...>-5340 ( 788) [005] d..1 82316.907426: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97283          <idle>-0     (-----) [000] dnh2 82316.907456: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97284          <idle>-0     (-----) [000] .n.1 82316.907463: cpu_idle: state=4294967295 cpu_id=0
97285          <idle>-0     (-----) [000] d..2 82316.907509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
97286<...>-5340 ( 788) [005] ...1 82316.907523: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
97287<...>-5340 ( 788) [005] ...1 82316.907527: tracing_mark_write: E|788
97288<...>-5340 ( 788) [005] .... 82316.907544: binder_transaction: transaction=1571586 dest_node=1571583 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
97289<...>-5340 ( 788) [005] .... 82316.907547: binder_transaction_alloc_buf: transaction=1571586 data_size=60 offsets_size=0
97290<...>-5340 ( 788) [005] d..4 82316.907552: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
97291 neuralnetworks@-13088 (  788) [000] d..2 82316.907558: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97292<...>-5340 ( 788) [005] d..5 82316.907566: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
97293          <idle>-0     (-----) [000] d..1 82316.907572: cpu_idle: state=0 cpu_id=0
97294          <idle>-0     (-----) [004] .n.1 82316.907572: cpu_idle: state=4294967295 cpu_id=4
97295          <idle>-0     (-----) [004] d..2 82316.907580: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
97296           <...>-27571 (-----) [004] .... 82316.907586: binder_transaction_received: transaction=1571586
97297<...>-5340 ( 788) [005] ...1 82316.907590: tracing_mark_write: E|788
97298<...>-5340 ( 788) [005] .... 82316.907596: binder_transaction: transaction=1571587 dest_node=0 dest_proc=27550 dest_thread=27787 reply=1 flags=0x0 code=0x0
97299<...>-5340 ( 788) [005] .... 82316.907598: binder_transaction_alloc_buf: transaction=1571587 data_size=8 offsets_size=0
97300<...>-5340 ( 788) [005] d..2 82316.907600: sched_waking: comm=id.nn.benchmark pid=27787 prio=110 target_cpu=005
97301           <...>-27571 (-----) [004] ...1 82316.907604: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
97302<...>-5340 ( 788) [005] d..3 82316.907607: sched_wakeup: comm=id.nn.benchmark pid=27787 prio=110 target_cpu=005
97303<...>-5340 ( 788) [005] .... 82316.907609: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
97304           <...>-27571 (-----) [004] ...1 82316.907610: tracing_mark_write: E|27550
97305           <...>-27571 (-----) [004] d..2 82316.907639: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97306          <idle>-0     (-----) [004] d..1 82316.907646: cpu_idle: state=0 cpu_id=4
97307<...>-5340 ( 788) [005] d..2 82316.907651: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27787 next_prio=110
97308           <...>-27787 (-----) [005] .... 82316.907661: binder_transaction_received: transaction=1571587
97309           <...>-27787 (-----) [005] ...1 82316.907697: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
97310           <...>-27787 (-----) [005] ...1 82316.907704: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
97311           <...>-27787 (-----) [005] ...1 82316.907730: tracing_mark_write: E|27550
97312           <...>-27787 (-----) [005] ...1 82316.907734: tracing_mark_write: E|27550
97313           <...>-27787 (-----) [005] ...1 82316.907737: tracing_mark_write: E|27550
97314 [email protected]   (  619) [002] d..2 82316.907870: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
97315 [email protected]   (  619) [002] d..3 82316.907895: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
97316          <idle>-0     (-----) [001] .n.1 82316.907900: cpu_idle: state=4294967295 cpu_id=1
97317          <idle>-0     (-----) [001] d..2 82316.907910: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
97318           <...>-27787 (-----) [005] ...1 82316.907927: tracing_mark_write: E|27550
97319           <...>-27787 (-----) [005] d..1 82316.907940: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97320           <...>-27787 (-----) [005] d..2 82316.907956: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97321          <idle>-0     (-----) [004] .n.1 82316.907961: cpu_idle: state=4294967295 cpu_id=4
97322          <idle>-0     (-----) [004] d..2 82316.907967: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
97323           <...>-27550 (-----) [004] d..2 82316.907987: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97324          <idle>-0     (-----) [004] d..1 82316.907996: cpu_idle: state=0 cpu_id=4
97325 [email protected]   (  619) [002] ...1 82316.908028: tracing_mark_write: E|619
97326 [email protected]   (  619) [002] ...1 82316.908035: tracing_mark_write: E|619
97327 [email protected]   (  619) [002] ...1 82316.908126: tracing_mark_write: E|619
97328           <...>-27787 (-----) [005] d..1 82316.908158: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97329           <...>-27787 (-----) [005] d..2 82316.908168: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97330          <idle>-0     (-----) [004] .n.1 82316.908173: cpu_idle: state=4294967295 cpu_id=4
97331 [email protected]   (  619) [002] ...1 82316.908175: tracing_mark_write: E|619
97332          <idle>-0     (-----) [004] d..2 82316.908180: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
97333 [email protected]   (  619) [002] .... 82316.908193: binder_transaction: transaction=1571588 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
97334 [email protected]   (  619) [002] .... 82316.908200: binder_transaction_alloc_buf: transaction=1571588 data_size=576 offsets_size=112
97335           <...>-27787 (-----) [005] d..2 82316.908208: sched_switch: prev_comm=id.nn.benchmark prev_pid=27787 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
97336           <...>-27550 (-----) [004] ...1 82316.908214: tracing_mark_write: E|27550
97337           <...>-27550 (-----) [004] ...1 82316.908219: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
97338 [email protected]   (  619) [002] d..2 82316.908223: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
97339           <...>-27550 (-----) [004] ...1 82316.908225: tracing_mark_write: E|27550
97340           <...>-27550 (-----) [004] ...1 82316.908229: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
97341          <idle>-0     (-----) [005] d..1 82316.908229: cpu_idle: state=0 cpu_id=5
97342           <...>-27550 (-----) [004] ...1 82316.908233: tracing_mark_write: E|27550
97343           <...>-27550 (-----) [004] ...1 82316.908237: tracing_mark_write: E|27550
97344 [email protected]   (  619) [002] d..3 82316.908242: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
97345 [email protected]   (  619) [002] .... 82316.908247: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
97346          <idle>-0     (-----) [000] .n.1 82316.908248: cpu_idle: state=4294967295 cpu_id=0
97347          <idle>-0     (-----) [000] d..2 82316.908260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
97348  surfaceflinger-8858  ( 8858) [000] .... 82316.908270: binder_transaction_received: transaction=1571588
97349 [email protected]   (  619) [002] d..2 82316.908340: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97350           <...>-27550 (-----) [004] ...1 82316.908349: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
97351          <idle>-0     (-----) [002] d..1 82316.908362: cpu_idle: state=0 cpu_id=2
97352           <...>-27550 (-----) [004] ...1 82316.908407: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
97353           <...>-27550 (-----) [004] ...1 82316.908412: tracing_mark_write: E|27550
97354           <...>-27550 (-----) [004] ...1 82316.908415: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
97355           <...>-27550 (-----) [004] ...1 82316.908420: tracing_mark_write: E|27550
97356           <...>-27550 (-----) [004] ...1 82316.908424: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
97357           <...>-27550 (-----) [004] ...1 82316.908428: tracing_mark_write: E|27550
97358           <...>-27550 (-----) [004] ...1 82316.908432: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
97359           <...>-27550 (-----) [004] d.s2 82316.908472: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
97360 crtc_commit:111-321   (  321) [001] d.s1 82316.908474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
97361 crtc_commit:111-321   (  321) [001] d.s2 82316.908497: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
97362 crtc_commit:111-321   (  321) [001] d.H1 82316.908517: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
97363          <idle>-0     (-----) [005] .n.1 82316.908599: cpu_idle: state=4294967295 cpu_id=5
97364           <...>-27550 (-----) [004] ...1 82316.908601: tracing_mark_write: E|27550
97365           <...>-27550 (-----) [004] ...1 82316.908607: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
97366          <idle>-0     (-----) [005] d..2 82316.908610: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27788 next_prio=110
97367           <...>-27550 (-----) [004] d..2 82316.908627: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97368          <idle>-0     (-----) [004] d..1 82316.908642: cpu_idle: state=0 cpu_id=4
97369           <...>-27788 (-----) [005] ...1 82316.908671: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
97370           <...>-27788 (-----) [005] ...1 82316.908685: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
97371           <...>-27788 (-----) [005] ...1 82316.908689: tracing_mark_write: E|27550
97372           <...>-27788 (-----) [005] .... 82316.908709: binder_transaction: transaction=1571589 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
97373           <...>-27788 (-----) [005] .... 82316.908713: binder_transaction_alloc_buf: transaction=1571589 data_size=48 offsets_size=0
97374           <...>-27788 (-----) [005] ...2 82316.908716: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
97375           <...>-27788 (-----) [005] d..4 82316.908719: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
97376           <...>-27788 (-----) [005] dn.5 82316.908729: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
97377           <...>-27788 (-----) [005] d..2 82316.908736: sched_switch: prev_comm=id.nn.benchmark prev_pid=27788 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
97378 crtc_commit:111-321   (  321) [001] d..2 82316.908744: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
97379<...>-770 ( 770) [005] .... 82316.908746: binder_transaction_received: transaction=1571589
97380     rcu_preempt-7     (    7) [001] d..2 82316.908756: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
97381<...>-770 ( 770) [005] ...1 82316.908770: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
97382  surfaceflinger-8858  ( 8858) [000] d..2 82316.908784: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97383          <idle>-0     (-----) [000] d..1 82316.908799: cpu_idle: state=0 cpu_id=0
97384          <idle>-0     (-----) [000] .n.1 82316.908805: cpu_idle: state=4294967295 cpu_id=0
97385     rcu_preempt-7     (    7) [001] d..3 82316.908805: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
97386          <idle>-0     (-----) [000] d..2 82316.908821: 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
97387     rcu_preempt-7     (    7) [001] d..2 82316.908825: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
97388         rcuop/0-10    (   10) [000] d..2 82316.908828: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
97389<...>-770 ( 770) [005] d..2 82316.908864: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
97390         rcuop/0-10    (   10) [000] d..3 82316.908875: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
97391         rcuop/0-10    (   10) [000] d..2 82316.908889: 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
97392         rcuop/1-21    (   21) [000] d..2 82316.908918: 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
97393          <idle>-0     (-----) [000] dnh3 82316.908930: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
97394<...>-770 ( 770) [005] ...1 82316.908934: tracing_mark_write: E|770
97395          <idle>-0     (-----) [000] d..2 82316.908941: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
97396<...>-770 ( 770) [005] .... 82316.908942: binder_transaction: transaction=1571590 dest_node=0 dest_proc=27550 dest_thread=27788 reply=1 flags=0x0 code=0x0
97397<...>-770 ( 770) [005] .... 82316.908945: binder_transaction_alloc_buf: transaction=1571590 data_size=168 offsets_size=32
97398<...>-770 ( 770) [005] .... 82316.908951: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
97399<...>-770 ( 770) [005] d..2 82316.908988: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27788 next_prio=110
97400           <...>-27788 (-----) [005] .... 82316.908998: binder_transaction_received: transaction=1571590
97401<...>-581 ( 571) [000] d..2 82316.909058: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97402          <idle>-0     (-----) [000] d..1 82316.909071: cpu_idle: state=0 cpu_id=0
97403           <...>-27788 (-----) [005] ...1 82316.909071: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
97404           <...>-27788 (-----) [005] ...1 82316.909076: tracing_mark_write: E|27550
97405           <...>-27788 (-----) [005] .... 82316.909091: binder_transaction: transaction=1571591 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
97406           <...>-27788 (-----) [005] .... 82316.909094: binder_transaction_alloc_buf: transaction=1571591 data_size=48 offsets_size=0
97407           <...>-27788 (-----) [005] ...2 82316.909096: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
97408           <...>-27788 (-----) [005] d..4 82316.909098: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
97409           <...>-27788 (-----) [005] dn.5 82316.909109: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
97410           <...>-27788 (-----) [005] d..2 82316.909115: sched_switch: prev_comm=id.nn.benchmark prev_pid=27788 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
97411<...>-770 ( 770) [005] .... 82316.909123: binder_transaction_received: transaction=1571591
97412<...>-770 ( 770) [005] ...1 82316.909140: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
97413  kworker/u16:15-1311  ( 1311) [001] d..2 82316.909175: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
97414<...>-770 ( 770) [005] d..2 82316.909198: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
97415          <idle>-0     (-----) [001] d.s4 82316.909221: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
97416          <idle>-0     (-----) [000] dnh2 82316.909222: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
97417          <idle>-0     (-----) [000] .n.1 82316.909229: cpu_idle: state=4294967295 cpu_id=0
97418<...>-770 ( 770) [005] ...1 82316.909231: tracing_mark_write: E|770
97419          <idle>-0     (-----) [001] d.s5 82316.909234: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
97420<...>-770 ( 770) [005] .... 82316.909238: binder_transaction: transaction=1571592 dest_node=0 dest_proc=27550 dest_thread=27788 reply=1 flags=0x0 code=0x0
97421          <idle>-0     (-----) [000] d..2 82316.909239: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
97422          <idle>-0     (-----) [001] dns5 82316.909240: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
97423<...>-770 ( 770) [005] .... 82316.909240: binder_transaction_alloc_buf: transaction=1571592 data_size=168 offsets_size=32
97424<...>-770 ( 770) [005] .... 82316.909246: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
97425          <idle>-0     (-----) [001] d..2 82316.909253: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
97426<...>-770 ( 770) [005] d..2 82316.909281: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27788 next_prio=110
97427           <...>-27788 (-----) [005] .... 82316.909302: binder_transaction_received: transaction=1571592
97428<...>-581 ( 571) [000] d..2 82316.909307: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97429          <idle>-0     (-----) [000] d..1 82316.909318: cpu_idle: state=0 cpu_id=0
97430  kworker/u16:15-1311  ( 1311) [001] .... 82316.909348: clk_set_rate: l3_cluster0_vote_clk 403200000
97431  kworker/u16:15-1311  ( 1311) [001] d..2 82316.909381: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97432          <idle>-0     (-----) [001] d..1 82316.909397: cpu_idle: state=0 cpu_id=1
97433           <...>-27788 (-----) [005] ...1 82316.909583: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
97434           <...>-27788 (-----) [005] ...1 82316.909593: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
97435           <...>-27788 (-----) [005] ...1 82316.909597: tracing_mark_write: E|27550
97436           <...>-27788 (-----) [005] .... 82316.909663: binder_transaction: transaction=1571593 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
97437           <...>-27788 (-----) [005] .... 82316.909666: binder_transaction_alloc_buf: transaction=1571593 data_size=556 offsets_size=104
97438           <...>-27788 (-----) [005] ...2 82316.909680: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
97439           <...>-27788 (-----) [005] d..4 82316.909683: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97440           <...>-27788 (-----) [005] dn.5 82316.909693: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97441           <...>-27788 (-----) [005] d..2 82316.909701: sched_switch: prev_comm=id.nn.benchmark prev_pid=27788 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97442<...>-5340 ( 788) [005] .... 82316.909710: binder_transaction_received: transaction=1571593
97443<...>-5340 ( 788) [005] ...1 82316.909758: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
97444<...>-5340 ( 788) [005] d..2 82316.909806: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97445<...>-5340 ( 788) [005] d..2 82316.909829: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27788 next_prio=110
97446          <idle>-0     (-----) [000] dnh2 82316.909834: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97447          <idle>-0     (-----) [000] .n.1 82316.909840: cpu_idle: state=4294967295 cpu_id=0
97448          <idle>-0     (-----) [000] d..2 82316.909849: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
97449           <...>-27788 (-----) [005] d..2 82316.909853: sched_switch: prev_comm=id.nn.benchmark prev_pid=27788 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
97450          <idle>-0     (-----) [005] d..1 82316.909871: cpu_idle: state=0 cpu_id=5
97451<...>-87 ( 87) [000] d..2 82316.909897: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97452          <idle>-0     (-----) [002] d.h4 82316.909903: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97453          <idle>-0     (-----) [000] d..1 82316.909906: cpu_idle: state=0 cpu_id=0
97454          <idle>-0     (-----) [002] dnh5 82316.909925: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97455          <idle>-0     (-----) [002] .n.1 82316.909940: cpu_idle: state=4294967295 cpu_id=2
97456          <idle>-0     (-----) [002] d..2 82316.909956: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
97457<...>-86 ( 86) [002] d.h4 82316.909988: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97458          <idle>-0     (-----) [005] dnh2 82316.910010: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97459          <idle>-0     (-----) [005] .n.1 82316.910014: cpu_idle: state=4294967295 cpu_id=5
97460          <idle>-0     (-----) [005] d..2 82316.910023: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97461<...>-86 ( 86) [002] d..2 82316.910056: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97462          <idle>-0     (-----) [002] d..1 82316.910070: cpu_idle: state=0 cpu_id=2
97463<...>-5340 ( 788) [005] d..1 82316.910076: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97464          <idle>-0     (-----) [000] dnh2 82316.910102: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97465          <idle>-0     (-----) [000] .n.1 82316.910109: cpu_idle: state=4294967295 cpu_id=0
97466          <idle>-0     (-----) [000] d..2 82316.910117: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
97467 neuralnetworks@-13088 (  788) [000] d..2 82316.910174: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97468          <idle>-0     (-----) [000] d..1 82316.910185: cpu_idle: state=0 cpu_id=0
97469<...>-5340 ( 788) [005] d..2 82316.910224: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97470          <idle>-0     (-----) [000] dnh2 82316.910246: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97471<...>-5340 ( 788) [005] d..2 82316.910249: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
97472          <idle>-0     (-----) [000] .n.1 82316.910252: cpu_idle: state=4294967295 cpu_id=0
97473          <idle>-0     (-----) [000] d..2 82316.910261: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
97474          <idle>-0     (-----) [005] d..1 82316.910263: cpu_idle: state=0 cpu_id=5
97475<...>-87 ( 87) [000] d..2 82316.910302: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97476          <idle>-0     (-----) [002] d.h4 82316.910305: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97477          <idle>-0     (-----) [000] d..1 82316.910311: cpu_idle: state=0 cpu_id=0
97478          <idle>-0     (-----) [002] dnh5 82316.910316: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97479          <idle>-0     (-----) [002] .n.1 82316.910326: cpu_idle: state=4294967295 cpu_id=2
97480          <idle>-0     (-----) [002] d..2 82316.910338: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
97481<...>-86 ( 86) [002] d..2 82316.910373: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97482          <idle>-0     (-----) [002] d..1 82316.910387: cpu_idle: state=0 cpu_id=2
97483          <idle>-0     (-----) [002] ...1 82316.911739: cpu_idle: state=4294967295 cpu_id=2
97484          <idle>-0     (-----) [002] d..1 82316.911744: cpu_idle: state=0 cpu_id=2
97485          <idle>-0     (-----) [000] d.H3 82316.911888: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
97486          <idle>-0     (-----) [000] d.H4 82316.911908: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
97487          <idle>-0     (-----) [001] .n.1 82316.911915: cpu_idle: state=4294967295 cpu_id=1
97488          <idle>-0     (-----) [000] d.s2 82316.911917: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
97489          <idle>-0     (-----) [001] d..2 82316.911930: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
97490          <idle>-0     (-----) [000] dns3 82316.911937: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
97491          <idle>-0     (-----) [000] .n.1 82316.911949: cpu_idle: state=4294967295 cpu_id=0
97492          <idle>-0     (-----) [000] d..2 82316.911960: 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
97493         sugov:0-576   (  576) [001] .... 82316.911962: clk_set_rate: pwrcl_clk 825600000
97494<...>-8 ( 8) [000] d..2 82316.911970: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
97495         sugov:0-576   (  576) [001] .... 82316.911978: clk_set_rate: cpu3_pwrcl_clk 748800000
97496         sugov:0-576   (  576) [001] .... 82316.911988: clk_set_rate: cpu2_pwrcl_clk 748800000
97497          <idle>-0     (-----) [002] d.h4 82316.911991: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97498         sugov:0-576   (  576) [001] .... 82316.911996: clk_set_rate: cpu1_pwrcl_clk 748800000
97499         sugov:0-576   (  576) [001] .... 82316.912004: clk_set_rate: cpu0_pwrcl_clk 825600000
97500<...>-8 ( 8) [000] d..3 82316.912011: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
97501         sugov:0-576   (  576) [001] .... 82316.912013: cpu_frequency: state=825600 cpu_id=0
97502          <idle>-0     (-----) [005] dnh2 82316.912017: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97503          <idle>-0     (-----) [005] .n.1 82316.912022: cpu_idle: state=4294967295 cpu_id=5
97504          <idle>-0     (-----) [005] d..2 82316.912032: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97505         sugov:0-576   (  576) [001] .... 82316.912037: cpu_frequency: state=825600 cpu_id=1
97506          <idle>-0     (-----) [002] ...1 82316.912038: cpu_idle: state=4294967295 cpu_id=2
97507         sugov:0-576   (  576) [001] .... 82316.912042: cpu_frequency: state=825600 cpu_id=2
97508<...>-8 ( 8) [000] d..2 82316.912043: 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
97509          <idle>-0     (-----) [002] d..1 82316.912044: cpu_idle: state=0 cpu_id=2
97510         sugov:0-576   (  576) [001] .... 82316.912046: cpu_frequency: state=825600 cpu_id=3
97511          <idle>-0     (-----) [000] d..1 82316.912060: cpu_idle: state=0 cpu_id=0
97512         sugov:0-576   (  576) [001] d..2 82316.912066: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
97513<...>-46 ( 46) [001] d..2 82316.912078: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
97514<...>-5340 ( 788) [005] d..1 82316.912082: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97515<...>-46 ( 46) [001] d..3 82316.912096: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
97516          <idle>-0     (-----) [000] dnh2 82316.912106: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97517          <idle>-0     (-----) [000] .n.1 82316.912119: cpu_idle: state=4294967295 cpu_id=0
97518          <idle>-0     (-----) [000] d..2 82316.912167: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
97519<...>-46 ( 46) [001] d..2 82316.912171: 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
97520<...>-5340 ( 788) [005] ...1 82316.912180: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
97521<...>-5340 ( 788) [005] ...1 82316.912184: tracing_mark_write: E|788
97522<...>-8 ( 8) [001] d..2 82316.912196: 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
97523<...>-5340 ( 788) [005] .... 82316.912200: binder_transaction: transaction=1571596 dest_node=1571594 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
97524<...>-5340 ( 788) [005] .... 82316.912203: binder_transaction_alloc_buf: transaction=1571596 data_size=60 offsets_size=0
97525 neuralnetworks@-13088 (  788) [000] d..2 82316.912205: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97526          <idle>-0     (-----) [001] d..1 82316.912205: cpu_idle: state=0 cpu_id=1
97527<...>-5340 ( 788) [005] d..4 82316.912207: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
97528          <idle>-0     (-----) [000] d..1 82316.912218: cpu_idle: state=0 cpu_id=0
97529<...>-5340 ( 788) [005] d..5 82316.912219: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
97530          <idle>-0     (-----) [004] .n.1 82316.912225: cpu_idle: state=4294967295 cpu_id=4
97531          <idle>-0     (-----) [004] d..2 82316.912234: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
97532           <...>-27571 (-----) [004] .... 82316.912239: binder_transaction_received: transaction=1571596
97533<...>-5340 ( 788) [005] ...1 82316.912242: tracing_mark_write: E|788
97534<...>-5340 ( 788) [005] .... 82316.912248: binder_transaction: transaction=1571597 dest_node=0 dest_proc=27550 dest_thread=27788 reply=1 flags=0x0 code=0x0
97535<...>-5340 ( 788) [005] .... 82316.912252: binder_transaction_alloc_buf: transaction=1571597 data_size=8 offsets_size=0
97536<...>-5340 ( 788) [005] d..2 82316.912254: sched_waking: comm=id.nn.benchmark pid=27788 prio=110 target_cpu=005
97537           <...>-27571 (-----) [004] ...1 82316.912258: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
97538<...>-5340 ( 788) [005] d..3 82316.912261: sched_wakeup: comm=id.nn.benchmark pid=27788 prio=110 target_cpu=005
97539<...>-5340 ( 788) [005] .... 82316.912263: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
97540           <...>-27571 (-----) [004] ...1 82316.912265: tracing_mark_write: E|27550
97541           <...>-27571 (-----) [004] d..2 82316.912293: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97542          <idle>-0     (-----) [004] d..1 82316.912301: cpu_idle: state=0 cpu_id=4
97543<...>-5340 ( 788) [005] d..2 82316.912304: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27788 next_prio=110
97544           <...>-27788 (-----) [005] .... 82316.912314: binder_transaction_received: transaction=1571597
97545           <...>-27788 (-----) [005] ...1 82316.912349: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
97546           <...>-27788 (-----) [005] ...1 82316.912356: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
97547           <...>-27788 (-----) [005] ...1 82316.912381: tracing_mark_write: E|27550
97548           <...>-27788 (-----) [005] ...1 82316.912385: tracing_mark_write: E|27550
97549           <...>-27788 (-----) [005] ...1 82316.912388: tracing_mark_write: E|27550
97550           <...>-27788 (-----) [005] ...1 82316.912579: tracing_mark_write: E|27550
97551           <...>-27788 (-----) [005] d..1 82316.912592: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97552           <...>-27788 (-----) [005] d..2 82316.912609: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97553          <idle>-0     (-----) [004] .n.1 82316.912614: cpu_idle: state=4294967295 cpu_id=4
97554          <idle>-0     (-----) [004] d..2 82316.912620: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
97555           <...>-27550 (-----) [004] d..2 82316.912640: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97556          <idle>-0     (-----) [004] d..1 82316.912649: cpu_idle: state=0 cpu_id=4
97557           <...>-27788 (-----) [005] d..1 82316.912700: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97558           <...>-27788 (-----) [005] d..2 82316.912709: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97559          <idle>-0     (-----) [004] .n.1 82316.912715: cpu_idle: state=4294967295 cpu_id=4
97560          <idle>-0     (-----) [004] d..2 82316.912723: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
97561           <...>-27788 (-----) [005] d..2 82316.912749: sched_switch: prev_comm=id.nn.benchmark prev_pid=27788 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
97562           <...>-27550 (-----) [004] ...1 82316.912755: tracing_mark_write: E|27550
97563           <...>-27550 (-----) [004] ...1 82316.912760: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
97564           <...>-27550 (-----) [004] ...1 82316.912766: tracing_mark_write: E|27550
97565          <idle>-0     (-----) [005] d..1 82316.912770: cpu_idle: state=0 cpu_id=5
97566           <...>-27550 (-----) [004] ...1 82316.912770: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
97567           <...>-27550 (-----) [004] ...1 82316.912774: tracing_mark_write: E|27550
97568           <...>-27550 (-----) [004] ...1 82316.912778: tracing_mark_write: E|27550
97569           <...>-27550 (-----) [004] ...1 82316.912890: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
97570           <...>-27550 (-----) [004] ...1 82316.912949: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
97571           <...>-27550 (-----) [004] ...1 82316.912953: tracing_mark_write: E|27550
97572           <...>-27550 (-----) [004] ...1 82316.912957: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
97573           <...>-27550 (-----) [004] ...1 82316.912962: tracing_mark_write: E|27550
97574           <...>-27550 (-----) [004] ...1 82316.912966: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
97575           <...>-27550 (-----) [004] ...1 82316.912970: tracing_mark_write: E|27550
97576           <...>-27550 (-----) [004] ...1 82316.912974: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
97577          <idle>-0     (-----) [005] .n.1 82316.913064: cpu_idle: state=4294967295 cpu_id=5
97578           <...>-27550 (-----) [004] ...1 82316.913066: tracing_mark_write: E|27550
97579           <...>-27550 (-----) [004] ...1 82316.913070: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
97580          <idle>-0     (-----) [005] d..2 82316.913073: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27789 next_prio=110
97581           <...>-27550 (-----) [004] d..2 82316.913087: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97582          <idle>-0     (-----) [004] d..1 82316.913101: cpu_idle: state=0 cpu_id=4
97583           <...>-27789 (-----) [005] ...1 82316.913135: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
97584           <...>-27789 (-----) [005] ...1 82316.913149: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
97585           <...>-27789 (-----) [005] ...1 82316.913153: tracing_mark_write: E|27550
97586           <...>-27789 (-----) [005] .... 82316.913173: binder_transaction: transaction=1571598 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
97587           <...>-27789 (-----) [005] .... 82316.913176: binder_transaction_alloc_buf: transaction=1571598 data_size=48 offsets_size=0
97588           <...>-27789 (-----) [005] ...2 82316.913179: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
97589           <...>-27789 (-----) [005] d..4 82316.913182: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
97590           <...>-27789 (-----) [005] dn.5 82316.913193: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
97591           <...>-27789 (-----) [005] d..2 82316.913200: sched_switch: prev_comm=id.nn.benchmark prev_pid=27789 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
97592<...>-770 ( 770) [005] .... 82316.913210: binder_transaction_received: transaction=1571598
97593<...>-770 ( 770) [005] ...1 82316.913232: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
97594<...>-770 ( 770) [005] d..2 82316.913300: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
97595          <idle>-0     (-----) [000] dnh2 82316.913328: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
97596          <idle>-0     (-----) [000] .n.1 82316.913335: cpu_idle: state=4294967295 cpu_id=0
97597<...>-770 ( 770) [005] ...1 82316.913341: tracing_mark_write: E|770
97598          <idle>-0     (-----) [000] d..2 82316.913346: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
97599<...>-770 ( 770) [005] .... 82316.913349: binder_transaction: transaction=1571599 dest_node=0 dest_proc=27550 dest_thread=27789 reply=1 flags=0x0 code=0x0
97600<...>-770 ( 770) [005] .... 82316.913351: binder_transaction_alloc_buf: transaction=1571599 data_size=168 offsets_size=32
97601<...>-770 ( 770) [005] .... 82316.913358: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
97602<...>-770 ( 770) [005] d..2 82316.913393: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27789 next_prio=110
97603           <...>-27789 (-----) [005] .... 82316.913404: binder_transaction_received: transaction=1571599
97604<...>-581 ( 571) [000] d..2 82316.913422: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97605          <idle>-0     (-----) [000] d..1 82316.913439: cpu_idle: state=0 cpu_id=0
97606           <...>-27789 (-----) [005] ...1 82316.913473: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
97607           <...>-27789 (-----) [005] ...1 82316.913478: tracing_mark_write: E|27550
97608           <...>-27789 (-----) [005] .... 82316.913492: binder_transaction: transaction=1571600 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
97609           <...>-27789 (-----) [005] .... 82316.913495: binder_transaction_alloc_buf: transaction=1571600 data_size=48 offsets_size=0
97610           <...>-27789 (-----) [005] ...2 82316.913497: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
97611           <...>-27789 (-----) [005] d..4 82316.913500: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
97612           <...>-27789 (-----) [005] dn.5 82316.913510: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
97613           <...>-27789 (-----) [005] d..2 82316.913516: sched_switch: prev_comm=id.nn.benchmark prev_pid=27789 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
97614<...>-770 ( 770) [005] .... 82316.913524: binder_transaction_received: transaction=1571600
97615<...>-770 ( 770) [005] ...1 82316.913541: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
97616<...>-770 ( 770) [005] d..2 82316.913598: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
97617          <idle>-0     (-----) [000] dnh2 82316.913621: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
97618          <idle>-0     (-----) [000] .n.1 82316.913629: cpu_idle: state=4294967295 cpu_id=0
97619<...>-770 ( 770) [005] ...1 82316.913631: tracing_mark_write: E|770
97620<...>-770 ( 770) [005] .... 82316.913638: binder_transaction: transaction=1571601 dest_node=0 dest_proc=27550 dest_thread=27789 reply=1 flags=0x0 code=0x0
97621          <idle>-0     (-----) [000] d..2 82316.913640: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
97622<...>-770 ( 770) [005] .... 82316.913641: binder_transaction_alloc_buf: transaction=1571601 data_size=168 offsets_size=32
97623<...>-770 ( 770) [005] .... 82316.913647: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
97624<...>-770 ( 770) [005] d..2 82316.913681: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27789 next_prio=110
97625           <...>-27789 (-----) [005] .... 82316.913692: binder_transaction_received: transaction=1571601
97626<...>-581 ( 571) [000] d..2 82316.913701: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97627          <idle>-0     (-----) [000] d.h6 82316.913797: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
97628          <idle>-0     (-----) [000] d.h7 82316.913818: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
97629          <idle>-0     (-----) [000] d.h6 82316.913823: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
97630          <idle>-0     (-----) [003] .n.1 82316.913824: cpu_idle: state=4294967295 cpu_id=3
97631          <idle>-0     (-----) [003] d..2 82316.913835: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
97632          <idle>-0     (-----) [000] d.h7 82316.913836: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
97633          <idle>-0     (-----) [001] .n.1 82316.913843: cpu_idle: state=4294967295 cpu_id=1
97634          <idle>-0     (-----) [001] d..2 82316.913852: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
97635          <idle>-0     (-----) [000] d..1 82316.913863: cpu_idle: state=0 cpu_id=0
97636  crtc_event:111-322   (  322) [003] d..2 82316.913872: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97637          <idle>-0     (-----) [003] d..1 82316.913883: cpu_idle: state=0 cpu_id=3
97638           <...>-27789 (-----) [005] ...1 82316.913963: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
97639           <...>-27789 (-----) [005] ...1 82316.913973: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
97640           <...>-27789 (-----) [005] ...1 82316.913977: tracing_mark_write: E|27550
97641 crtc_commit:111-321   (  321) [001] d..2 82316.914004: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
97642          <idle>-0     (-----) [001] d..1 82316.914013: cpu_idle: state=0 cpu_id=1
97643           <...>-27789 (-----) [005] .... 82316.914039: binder_transaction: transaction=1571602 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
97644           <...>-27789 (-----) [005] .... 82316.914042: binder_transaction_alloc_buf: transaction=1571602 data_size=556 offsets_size=104
97645           <...>-27789 (-----) [005] ...2 82316.914055: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
97646           <...>-27789 (-----) [005] d..4 82316.914058: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97647           <...>-27789 (-----) [005] dn.5 82316.914070: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97648           <...>-27789 (-----) [005] d..2 82316.914077: sched_switch: prev_comm=id.nn.benchmark prev_pid=27789 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97649<...>-5340 ( 788) [005] .... 82316.914087: binder_transaction_received: transaction=1571602
97650<...>-5340 ( 788) [005] ...1 82316.914133: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
97651<...>-5340 ( 788) [005] d..2 82316.914181: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97652<...>-5340 ( 788) [005] d..2 82316.914206: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27789 next_prio=110
97653          <idle>-0     (-----) [000] dnh2 82316.914210: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97654          <idle>-0     (-----) [000] .n.1 82316.914217: cpu_idle: state=4294967295 cpu_id=0
97655          <idle>-0     (-----) [000] d..2 82316.914229: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
97656           <...>-27789 (-----) [005] d..2 82316.914229: sched_switch: prev_comm=id.nn.benchmark prev_pid=27789 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
97657          <idle>-0     (-----) [005] d..1 82316.914247: cpu_idle: state=0 cpu_id=5
97658<...>-87 ( 87) [000] d..2 82316.914274: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97659          <idle>-0     (-----) [002] d.h4 82316.914279: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97660          <idle>-0     (-----) [000] d..1 82316.914287: cpu_idle: state=0 cpu_id=0
97661          <idle>-0     (-----) [002] dnh5 82316.914296: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97662          <idle>-0     (-----) [002] .n.1 82316.914305: cpu_idle: state=4294967295 cpu_id=2
97663          <idle>-0     (-----) [002] d..2 82316.914318: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
97664<...>-86 ( 86) [002] d..2 82316.914352: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97665          <idle>-0     (-----) [002] d.h5 82316.914373: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97666          <idle>-0     (-----) [005] dnh2 82316.914394: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97667          <idle>-0     (-----) [005] .n.1 82316.914399: cpu_idle: state=4294967295 cpu_id=5
97668          <idle>-0     (-----) [005] d..2 82316.914407: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97669          <idle>-0     (-----) [002] d..1 82316.914417: cpu_idle: state=0 cpu_id=2
97670<...>-5340 ( 788) [005] d..1 82316.914459: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97671          <idle>-0     (-----) [000] dnh2 82316.914485: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97672          <idle>-0     (-----) [000] .n.1 82316.914492: cpu_idle: state=4294967295 cpu_id=0
97673          <idle>-0     (-----) [000] d..2 82316.914502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
97674 neuralnetworks@-13088 (  788) [000] d..2 82316.914549: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97675          <idle>-0     (-----) [000] d..1 82316.914563: cpu_idle: state=0 cpu_id=0
97676<...>-5340 ( 788) [005] d..2 82316.914606: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97677          <idle>-0     (-----) [000] dnh2 82316.914628: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97678<...>-5340 ( 788) [005] d..2 82316.914632: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
97679          <idle>-0     (-----) [000] .n.1 82316.914635: cpu_idle: state=4294967295 cpu_id=0
97680          <idle>-0     (-----) [000] d..2 82316.914646: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
97681          <idle>-0     (-----) [005] d..1 82316.914646: cpu_idle: state=0 cpu_id=5
97682          <idle>-0     (-----) [002] d.h4 82316.914684: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97683<...>-87 ( 87) [000] d..2 82316.914685: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97684          <idle>-0     (-----) [002] dnh5 82316.914695: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97685          <idle>-0     (-----) [000] d..1 82316.914697: cpu_idle: state=0 cpu_id=0
97686          <idle>-0     (-----) [002] .n.1 82316.914703: cpu_idle: state=4294967295 cpu_id=2
97687          <idle>-0     (-----) [002] d..2 82316.914714: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
97688<...>-86 ( 86) [002] d..2 82316.914748: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97689          <idle>-0     (-----) [002] d..1 82316.914759: cpu_idle: state=0 cpu_id=2
97690          <idle>-0     (-----) [005] ...1 82316.914990: cpu_idle: state=4294967295 cpu_id=5
97691          <idle>-0     (-----) [005] d..1 82316.914993: cpu_idle: state=0 cpu_id=5
97692          <idle>-0     (-----) [001] d.s3 82316.915139: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
97693          <idle>-0     (-----) [001] d.s4 82316.915157: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
97694          <idle>-0     (-----) [001] d.s2 82316.915160: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
97695          <idle>-0     (-----) [003] .n.1 82316.915162: cpu_idle: state=4294967295 cpu_id=3
97696          <idle>-0     (-----) [003] d..2 82316.915173: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
97697          <idle>-0     (-----) [001] dns3 82316.915179: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
97698          <idle>-0     (-----) [001] .n.1 82316.915200: cpu_idle: state=4294967295 cpu_id=1
97699  crtc_event:111-322   (  322) [003] d..2 82316.915206: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97700          <idle>-0     (-----) [001] d..2 82316.915209: 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
97701          <idle>-0     (-----) [003] d..1 82316.915216: cpu_idle: state=0 cpu_id=3
97702     rcu_preempt-7     (    7) [001] d..2 82316.915221: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
97703     rcu_preempt-7     (    7) [001] d..3 82316.915260: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
97704     rcu_preempt-7     (    7) [001] d..2 82316.915263: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
97705     rcu_preempt-7     (    7) [001] d..3 82316.915280: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
97706     rcu_preempt-7     (    7) [001] d..2 82316.915294: 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
97707         rcuop/2-29    (   29) [001] d..2 82316.915301: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
97708         rcuop/2-29    (   29) [001] d..3 82316.915317: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
97709         rcuop/2-29    (   29) [001] d..2 82316.915327: 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
97710         rcuop/3-37    (   37) [001] d..2 82316.915343: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
97711         rcuop/4-45    (   45) [001] d..2 82316.915348: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
97712         rcuop/4-45    (   45) [001] d..3 82316.915364: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
97713         rcuop/4-45    (   45) [001] d..2 82316.915375: 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
97714         rcuop/5-53    (   53) [001] d..2 82316.915484: 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
97715          <idle>-0     (-----) [001] d..1 82316.915495: cpu_idle: state=0 cpu_id=1
97716          <idle>-0     (-----) [000] d.h5 82316.916106: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
97717          <idle>-0     (-----) [000] d.h6 82316.916124: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
97718          <idle>-0     (-----) [001] .n.1 82316.916131: cpu_idle: state=4294967295 cpu_id=1
97719          <idle>-0     (-----) [001] d..2 82316.916139: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
97720          <idle>-0     (-----) [000] ...1 82316.916152: cpu_idle: state=4294967295 cpu_id=0
97721          <idle>-0     (-----) [000] d..1 82316.916158: cpu_idle: state=0 cpu_id=0
97722 crtc_commit:111-321   (  321) [001] d..2 82316.916224: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97723          <idle>-0     (-----) [001] d..1 82316.916233: cpu_idle: state=0 cpu_id=1
97724          <idle>-0     (-----) [000] d.h5 82316.916399: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
97725          <idle>-0     (-----) [000] d.h6 82316.916415: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
97726          <idle>-0     (-----) [003] .n.1 82316.916420: cpu_idle: state=4294967295 cpu_id=3
97727          <idle>-0     (-----) [002] d.h4 82316.916421: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97728          <idle>-0     (-----) [003] d..2 82316.916430: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
97729          <idle>-0     (-----) [000] ...1 82316.916431: cpu_idle: state=4294967295 cpu_id=0
97730          <idle>-0     (-----) [000] d..1 82316.916438: cpu_idle: state=0 cpu_id=0
97731          <idle>-0     (-----) [005] dnh2 82316.916441: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97732          <idle>-0     (-----) [005] .n.1 82316.916445: cpu_idle: state=4294967295 cpu_id=5
97733          <idle>-0     (-----) [005] d..2 82316.916454: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97734  crtc_event:111-322   (  322) [003] d..2 82316.916456: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97735          <idle>-0     (-----) [002] ...1 82316.916461: cpu_idle: state=4294967295 cpu_id=2
97736          <idle>-0     (-----) [002] d..1 82316.916467: cpu_idle: state=0 cpu_id=2
97737          <idle>-0     (-----) [003] d..1 82316.916467: cpu_idle: state=0 cpu_id=3
97738<...>-5340 ( 788) [005] d..1 82316.916504: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97739          <idle>-0     (-----) [000] dnh2 82316.916529: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97740          <idle>-0     (-----) [000] .n.1 82316.916536: cpu_idle: state=4294967295 cpu_id=0
97741          <idle>-0     (-----) [000] d..2 82316.916547: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
97742<...>-5340 ( 788) [005] ...1 82316.916593: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
97743<...>-5340 ( 788) [005] ...1 82316.916598: tracing_mark_write: E|788
97744<...>-5340 ( 788) [005] .... 82316.916614: binder_transaction: transaction=1571605 dest_node=1571603 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
97745 neuralnetworks@-13088 (  788) [000] d..2 82316.916615: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97746<...>-5340 ( 788) [005] .... 82316.916617: binder_transaction_alloc_buf: transaction=1571605 data_size=60 offsets_size=0
97747<...>-5340 ( 788) [005] d..4 82316.916620: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
97748          <idle>-0     (-----) [000] d..1 82316.916628: cpu_idle: state=0 cpu_id=0
97749<...>-5340 ( 788) [005] d..5 82316.916633: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
97750          <idle>-0     (-----) [004] .n.1 82316.916638: cpu_idle: state=4294967295 cpu_id=4
97751          <idle>-0     (-----) [004] d..2 82316.916647: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
97752           <...>-27571 (-----) [004] .... 82316.916652: binder_transaction_received: transaction=1571605
97753<...>-5340 ( 788) [005] ...1 82316.916655: tracing_mark_write: E|788
97754<...>-5340 ( 788) [005] .... 82316.916661: binder_transaction: transaction=1571606 dest_node=0 dest_proc=27550 dest_thread=27789 reply=1 flags=0x0 code=0x0
97755<...>-5340 ( 788) [005] .... 82316.916663: binder_transaction_alloc_buf: transaction=1571606 data_size=8 offsets_size=0
97756<...>-5340 ( 788) [005] d..2 82316.916665: sched_waking: comm=id.nn.benchmark pid=27789 prio=110 target_cpu=005
97757           <...>-27571 (-----) [004] ...1 82316.916670: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
97758<...>-5340 ( 788) [005] d..3 82316.916673: sched_wakeup: comm=id.nn.benchmark pid=27789 prio=110 target_cpu=005
97759<...>-5340 ( 788) [005] .... 82316.916674: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
97760           <...>-27571 (-----) [004] ...1 82316.916676: tracing_mark_write: E|27550
97761           <...>-27571 (-----) [004] d..2 82316.916705: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97762          <idle>-0     (-----) [004] d..1 82316.916712: cpu_idle: state=0 cpu_id=4
97763<...>-5340 ( 788) [005] d..2 82316.916716: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27789 next_prio=110
97764           <...>-27789 (-----) [005] .... 82316.916725: binder_transaction_received: transaction=1571606
97765           <...>-27789 (-----) [005] ...1 82316.916761: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
97766           <...>-27789 (-----) [005] ...1 82316.916767: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
97767           <...>-27789 (-----) [005] ...1 82316.916792: tracing_mark_write: E|27550
97768           <...>-27789 (-----) [005] ...1 82316.916796: tracing_mark_write: E|27550
97769           <...>-27789 (-----) [005] ...1 82316.916799: tracing_mark_write: E|27550
97770           <...>-27789 (-----) [005] ...1 82316.916984: tracing_mark_write: E|27550
97771           <...>-27789 (-----) [005] d..1 82316.916996: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97772           <...>-27789 (-----) [005] d..2 82316.917012: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97773          <idle>-0     (-----) [004] .n.1 82316.917018: cpu_idle: state=4294967295 cpu_id=4
97774          <idle>-0     (-----) [004] d..2 82316.917024: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
97775           <...>-27550 (-----) [004] d..2 82316.917045: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97776          <idle>-0     (-----) [004] d..1 82316.917054: cpu_idle: state=0 cpu_id=4
97777           <...>-27789 (-----) [005] d..1 82316.917099: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97778           <...>-27789 (-----) [005] d..2 82316.917109: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
97779          <idle>-0     (-----) [004] .n.1 82316.917114: cpu_idle: state=4294967295 cpu_id=4
97780          <idle>-0     (-----) [004] d..2 82316.917121: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
97781           <...>-27789 (-----) [005] d..2 82316.917146: sched_switch: prev_comm=id.nn.benchmark prev_pid=27789 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
97782           <...>-27550 (-----) [004] ...1 82316.917165: tracing_mark_write: E|27550
97783           <...>-27550 (-----) [004] ...1 82316.917169: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
97784          <idle>-0     (-----) [005] d..1 82316.917172: cpu_idle: state=0 cpu_id=5
97785           <...>-27550 (-----) [004] ...1 82316.917175: tracing_mark_write: E|27550
97786           <...>-27550 (-----) [004] ...1 82316.917179: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
97787           <...>-27550 (-----) [004] ...1 82316.917183: tracing_mark_write: E|27550
97788           <...>-27550 (-----) [004] ...1 82316.917187: tracing_mark_write: E|27550
97789           <...>-27550 (-----) [004] ...1 82316.917301: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
97790           <...>-27550 (-----) [004] ...1 82316.917358: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
97791           <...>-27550 (-----) [004] ...1 82316.917363: tracing_mark_write: E|27550
97792           <...>-27550 (-----) [004] ...1 82316.917367: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
97793           <...>-27550 (-----) [004] ...1 82316.917372: tracing_mark_write: E|27550
97794           <...>-27550 (-----) [004] ...1 82316.917376: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
97795           <...>-27550 (-----) [004] ...1 82316.917380: tracing_mark_write: E|27550
97796           <...>-27550 (-----) [004] ...1 82316.917384: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
97797          <idle>-0     (-----) [005] .n.1 82316.917469: cpu_idle: state=4294967295 cpu_id=5
97798           <...>-27550 (-----) [004] ...1 82316.917470: tracing_mark_write: E|27550
97799           <...>-27550 (-----) [004] ...1 82316.917475: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
97800          <idle>-0     (-----) [005] d..2 82316.917478: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27790 next_prio=110
97801           <...>-27550 (-----) [004] d..2 82316.917491: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
97802          <idle>-0     (-----) [004] d..1 82316.917505: cpu_idle: state=0 cpu_id=4
97803           <...>-27790 (-----) [005] ...1 82316.917540: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
97804           <...>-27790 (-----) [005] ...1 82316.917554: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
97805           <...>-27790 (-----) [005] ...1 82316.917558: tracing_mark_write: E|27550
97806           <...>-27790 (-----) [005] .... 82316.917577: binder_transaction: transaction=1571607 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
97807           <...>-27790 (-----) [005] .... 82316.917581: binder_transaction_alloc_buf: transaction=1571607 data_size=48 offsets_size=0
97808           <...>-27790 (-----) [005] ...2 82316.917584: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
97809           <...>-27790 (-----) [005] d..4 82316.917586: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
97810           <...>-27790 (-----) [005] dn.5 82316.917596: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
97811           <...>-27790 (-----) [005] d..2 82316.917603: sched_switch: prev_comm=id.nn.benchmark prev_pid=27790 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
97812<...>-770 ( 770) [005] .... 82316.917613: binder_transaction_received: transaction=1571607
97813<...>-770 ( 770) [005] ...1 82316.917634: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
97814<...>-770 ( 770) [005] d..2 82316.917706: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
97815          <idle>-0     (-----) [000] dnh2 82316.917733: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
97816          <idle>-0     (-----) [000] .n.1 82316.917740: cpu_idle: state=4294967295 cpu_id=0
97817<...>-770 ( 770) [005] ...1 82316.917745: tracing_mark_write: E|770
97818          <idle>-0     (-----) [000] d..2 82316.917750: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
97819<...>-770 ( 770) [005] .... 82316.917753: binder_transaction: transaction=1571608 dest_node=0 dest_proc=27550 dest_thread=27790 reply=1 flags=0x0 code=0x0
97820<...>-770 ( 770) [005] .... 82316.917757: binder_transaction_alloc_buf: transaction=1571608 data_size=168 offsets_size=32
97821<...>-770 ( 770) [005] .... 82316.917763: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
97822<...>-770 ( 770) [005] d..2 82316.917799: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27790 next_prio=110
97823           <...>-27790 (-----) [005] .... 82316.917809: binder_transaction_received: transaction=1571608
97824<...>-581 ( 571) [000] d..2 82316.917826: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97825          <idle>-0     (-----) [000] d..1 82316.917842: cpu_idle: state=0 cpu_id=0
97826           <...>-27790 (-----) [005] ...1 82316.917877: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
97827           <...>-27790 (-----) [005] ...1 82316.917882: tracing_mark_write: E|27550
97828           <...>-27790 (-----) [005] .... 82316.917897: binder_transaction: transaction=1571609 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
97829           <...>-27790 (-----) [005] .... 82316.917900: binder_transaction_alloc_buf: transaction=1571609 data_size=48 offsets_size=0
97830           <...>-27790 (-----) [005] ...2 82316.917902: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
97831           <...>-27790 (-----) [005] d..4 82316.917904: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
97832           <...>-27790 (-----) [005] dn.5 82316.917914: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
97833           <...>-27790 (-----) [005] d..2 82316.917921: sched_switch: prev_comm=id.nn.benchmark prev_pid=27790 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
97834<...>-770 ( 770) [005] .... 82316.917929: binder_transaction_received: transaction=1571609
97835<...>-770 ( 770) [005] ...1 82316.917946: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
97836<...>-770 ( 770) [005] d..2 82316.918003: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
97837          <idle>-0     (-----) [000] dnh2 82316.918027: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
97838          <idle>-0     (-----) [000] .n.1 82316.918035: cpu_idle: state=4294967295 cpu_id=0
97839<...>-770 ( 770) [005] ...1 82316.918037: tracing_mark_write: E|770
97840<...>-770 ( 770) [005] .... 82316.918044: binder_transaction: transaction=1571610 dest_node=0 dest_proc=27550 dest_thread=27790 reply=1 flags=0x0 code=0x0
97841          <idle>-0     (-----) [000] d..2 82316.918045: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
97842<...>-770 ( 770) [005] .... 82316.918047: binder_transaction_alloc_buf: transaction=1571610 data_size=168 offsets_size=32
97843<...>-770 ( 770) [005] .... 82316.918053: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
97844<...>-770 ( 770) [005] d..2 82316.918087: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27790 next_prio=110
97845           <...>-27790 (-----) [005] .... 82316.918098: binder_transaction_received: transaction=1571610
97846<...>-581 ( 571) [000] d..2 82316.918106: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97847          <idle>-0     (-----) [000] d..1 82316.918121: cpu_idle: state=0 cpu_id=0
97848          <idle>-0     (-----) [001] d.h2 82316.918199: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
97849          <idle>-0     (-----) [001] dnh3 82316.918215: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
97850          <idle>-0     (-----) [001] .n.1 82316.918224: cpu_idle: state=4294967295 cpu_id=1
97851          <idle>-0     (-----) [001] d..2 82316.918231: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
97852        DispSync-8879  ( 8858) [001] d..1 82316.918251: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
97853        DispSync-8879  ( 8858) [001] d..2 82316.918267: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
97854          <idle>-0     (-----) [003] .n.1 82316.918273: cpu_idle: state=4294967295 cpu_id=3
97855          <idle>-0     (-----) [003] d..2 82316.918282: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
97856        DispSync-8879  ( 8858) [001] d..2 82316.918300: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97857          <idle>-0     (-----) [001] d..1 82316.918309: cpu_idle: state=0 cpu_id=1
97858  appEventThread-8881  ( 8858) [003] d..3 82316.918335: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
97859  appEventThread-8881  ( 8858) [003] d..4 82316.918358: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
97860          <idle>-0     (-----) [000] .n.1 82316.918365: cpu_idle: state=4294967295 cpu_id=0
97861           <...>-27790 (-----) [005] ...1 82316.918368: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
97862          <idle>-0     (-----) [000] d..2 82316.918378: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
97863           <...>-27790 (-----) [005] ...1 82316.918378: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
97864           <...>-27790 (-----) [005] ...1 82316.918382: tracing_mark_write: E|27550
97865  appEventThread-8881  ( 8858) [003] d..2 82316.918399: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97866          <idle>-0     (-----) [003] d..1 82316.918412: cpu_idle: state=0 cpu_id=3
97867          <idle>-0     (-----) [001] d.s2 82316.918470: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
97868           <...>-27790 (-----) [005] .... 82316.918474: binder_transaction: transaction=1571611 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
97869           <...>-27790 (-----) [005] .... 82316.918478: binder_transaction_alloc_buf: transaction=1571611 data_size=556 offsets_size=104
97870          <idle>-0     (-----) [001] dns3 82316.918488: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
97871           <...>-27790 (-----) [005] ...2 82316.918491: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
97872           <...>-27790 (-----) [005] d..4 82316.918494: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97873          <idle>-0     (-----) [001] dns3 82316.918495: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
97874           <...>-27790 (-----) [005] dn.5 82316.918502: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97875           <...>-27790 (-----) [005] d..2 82316.918508: sched_switch: prev_comm=id.nn.benchmark prev_pid=27790 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97876          <idle>-0     (-----) [001] dns4 82316.918509: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
97877<...>-5340 ( 788) [005] .... 82316.918518: binder_transaction_received: transaction=1571611
97878          <idle>-0     (-----) [001] .n.1 82316.918521: cpu_idle: state=4294967295 cpu_id=1
97879          <idle>-0     (-----) [001] d..2 82316.918530: 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
97880<...>-8 ( 8) [001] d..2 82316.918549: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
97881<...>-5340 ( 788) [005] ...1 82316.918561: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
97882<...>-5340 ( 788) [005] d..2 82316.918603: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97883  kworker/u16:15-1311  ( 1311) [001] .... 82316.918609: clk_set_rate: l3_cluster0_vote_clk 300000000
97884<...>-5340 ( 788) [005] d..2 82316.918627: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27790 next_prio=110
97885<...>-9105 ( 9105) [000] d.h1 82316.918631: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97886           <...>-27790 (-----) [005] d..2 82316.918660: sched_switch: prev_comm=id.nn.benchmark prev_pid=27790 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
97887          <idle>-0     (-----) [005] d..1 82316.918691: cpu_idle: state=0 cpu_id=5
97888<...>-9105 ( 9105) [000] .... 82316.918826: binder_transaction: transaction=1571614 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
97889<...>-9105 ( 9105) [000] .... 82316.918832: binder_transaction_alloc_buf: transaction=1571614 data_size=80 offsets_size=0
97890<...>-9105 ( 9105) [000] d..4 82316.918839: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
97891<...>-9105 ( 9105) [000] d..5 82316.918864: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
97892          <idle>-0     (-----) [002] .n.1 82316.918869: cpu_idle: state=4294967295 cpu_id=2
97893          <idle>-0     (-----) [002] d..2 82316.918884: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
97894  kworker/u16:15-1311  ( 1311) [001] d..2 82316.918891: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
97895<...>-13083 ( 8858) [002] .... 82316.918894: binder_transaction_received: transaction=1571614
97896<...>-9105 ( 9105) [000] d..3 82316.918905: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
97897<...>-9105 ( 9105) [000] d..4 82316.918936: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
97898<...>-13083 ( 8858) [002] d..1 82316.918936: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
97899          <idle>-0     (-----) [001] dns4 82316.918950: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
97900<...>-13083 ( 8858) [002] d..2 82316.918955: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
97901          <idle>-0     (-----) [003] .n.1 82316.918961: cpu_idle: state=4294967295 cpu_id=3
97902          <idle>-0     (-----) [003] d..2 82316.918972: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
97903          <idle>-0     (-----) [001] dns5 82316.918985: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
97904          <idle>-0     (-----) [001] dns5 82316.918990: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
97905<...>-13083 ( 8858) [002] d..2 82316.919004: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97906          <idle>-0     (-----) [001] d..2 82316.919005: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
97907  appEventThread-8881  ( 8858) [003] d..2 82316.919007: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
97908          <idle>-0     (-----) [002] d..1 82316.919020: cpu_idle: state=0 cpu_id=2
97909<...>-9105 ( 9105) [000] d..3 82316.919070: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
97910  kworker/u16:15-1311  ( 1311) [003] d..2 82316.919072: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97911    RenderThread-9436  ( 9105) [001] d..2 82316.919075: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
97912          <idle>-0     (-----) [001] d..1 82316.919088: cpu_idle: state=0 cpu_id=1
97913          <idle>-0     (-----) [003] d..1 82316.919088: cpu_idle: state=0 cpu_id=3
97914          <idle>-0     (-----) [001] .n.1 82316.919093: cpu_idle: state=4294967295 cpu_id=1
97915<...>-9105 ( 9105) [000] d..4 82316.919094: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
97916          <idle>-0     (-----) [001] d..2 82316.919107: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
97917<...>-9105 ( 9105) [000] d..2 82316.919117: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
97918<...>-87 ( 87) [000] d..2 82316.919167: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97919          <idle>-0     (-----) [002] d.h4 82316.919172: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
97920          <idle>-0     (-----) [000] d..1 82316.919187: cpu_idle: state=0 cpu_id=0
97921          <idle>-0     (-----) [002] d.h5 82316.919210: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
97922          <idle>-0     (-----) [000] .n.1 82316.919218: cpu_idle: state=4294967295 cpu_id=0
97923          <idle>-0     (-----) [002] ...1 82316.919223: cpu_idle: state=4294967295 cpu_id=2
97924          <idle>-0     (-----) [002] d..1 82316.919229: cpu_idle: state=0 cpu_id=2
97925          <idle>-0     (-----) [000] d..2 82316.919230: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
97926    RenderThread-9436  ( 9105) [001] d..1 82316.919231: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
97927          <idle>-0     (-----) [002] dnh4 82316.919258: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97928    RenderThread-9436  ( 9105) [001] d..2 82316.919261: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
97929          <idle>-0     (-----) [005] dnh2 82316.919278: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97930          <idle>-0     (-----) [005] .n.1 82316.919282: cpu_idle: state=4294967295 cpu_id=5
97931          <idle>-0     (-----) [005] d..2 82316.919290: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97932          <idle>-0     (-----) [002] .n.1 82316.919298: cpu_idle: state=4294967295 cpu_id=2
97933<...>-86 ( 86) [000] d..2 82316.919309: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97934          <idle>-0     (-----) [002] d..2 82316.919312: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
97935          <idle>-0     (-----) [000] d..1 82316.919322: cpu_idle: state=0 cpu_id=0
97936    RenderThread-9436  ( 9105) [001] .... 82316.919333: binder_transaction: transaction=1571615 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
97937    RenderThread-9436  ( 9105) [001] .... 82316.919338: binder_transaction_alloc_buf: transaction=1571615 data_size=104 offsets_size=0
97938<...>-5340 ( 788) [005] d..1 82316.919343: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
97939    RenderThread-9436  ( 9105) [001] d..4 82316.919343: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
97940    RenderThread-9436  ( 9105) [001] dn.5 82316.919366: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
97941    RenderThread-9436  ( 9105) [001] d..2 82316.919376: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
97942<...>-13083 ( 8858) [001] .... 82316.919384: binder_transaction_received: transaction=1571615
97943<...>-9105 ( 9105) [002] dnh2 82316.919387: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
97944<...>-9105 ( 9105) [002] d..2 82316.919400: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R+ ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
97945 neuralnetworks@-13088 (  788) [002] d..2 82316.919446: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
97946<...>-13083 ( 8858) [001] .... 82316.919459: binder_transaction: transaction=1571616 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
97947<...>-13083 ( 8858) [001] .... 82316.919464: binder_transaction_alloc_buf: transaction=1571616 data_size=52 offsets_size=8
97948<...>-5340 ( 788) [005] d..2 82316.919505: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97949<...>-9105 ( 9105) [002] d..2 82316.919510: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
97950<...>-13083 ( 8858) [001] d..2 82316.919515: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
97951    RenderThread-9436  ( 9105) [001] .... 82316.919524: binder_transaction_received: transaction=1571616
97952          <idle>-0     (-----) [002] d..1 82316.919526: cpu_idle: state=0 cpu_id=2
97953          <idle>-0     (-----) [000] dnh2 82316.919526: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
97954<...>-5340 ( 788) [005] d..2 82316.919531: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
97955          <idle>-0     (-----) [000] .n.1 82316.919534: cpu_idle: state=4294967295 cpu_id=0
97956          <idle>-0     (-----) [000] d..2 82316.919544: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
97957          <idle>-0     (-----) [005] d..1 82316.919545: cpu_idle: state=0 cpu_id=5
97958<...>-87 ( 87) [000] d..2 82316.919581: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97959          <idle>-0     (-----) [002] d.h4 82316.919586: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
97960          <idle>-0     (-----) [000] d..1 82316.919593: cpu_idle: state=0 cpu_id=0
97961          <idle>-0     (-----) [002] d.h5 82316.919604: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
97962          <idle>-0     (-----) [000] .n.1 82316.919610: cpu_idle: state=4294967295 cpu_id=0
97963          <idle>-0     (-----) [002] ...1 82316.919617: cpu_idle: state=4294967295 cpu_id=2
97964          <idle>-0     (-----) [000] d..2 82316.919620: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
97965          <idle>-0     (-----) [002] d..1 82316.919623: cpu_idle: state=0 cpu_id=2
97966<...>-86 ( 86) [000] d..2 82316.919654: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
97967          <idle>-0     (-----) [000] d..1 82316.919665: cpu_idle: state=0 cpu_id=0
97968    RenderThread-9436  ( 9105) [001] d..2 82316.920796: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
97969          <idle>-0     (-----) [000] ...1 82316.920807: cpu_idle: state=4294967295 cpu_id=0
97970          <idle>-0     (-----) [001] d..1 82316.920810: cpu_idle: state=0 cpu_id=1
97971          <idle>-0     (-----) [000] d..1 82316.920812: cpu_idle: state=0 cpu_id=0
97972          <idle>-0     (-----) [001] d.h2 82316.920877: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
97973          <idle>-0     (-----) [001] d.h3 82316.920888: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
97974          <idle>-0     (-----) [001] dnh3 82316.920893: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
97975          <idle>-0     (-----) [001] .n.1 82316.920902: cpu_idle: state=4294967295 cpu_id=1
97976          <idle>-0     (-----) [001] d..2 82316.920911: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
97977          <idle>-0     (-----) [000] d.h3 82316.920912: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
97978          <idle>-0     (-----) [000] d.h4 82316.920933: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
97979          <idle>-0     (-----) [003] .n.1 82316.920940: cpu_idle: state=4294967295 cpu_id=3
97980          <idle>-0     (-----) [000] ...1 82316.920948: cpu_idle: state=4294967295 cpu_id=0
97981          <idle>-0     (-----) [003] d..2 82316.920950: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
97982          <idle>-0     (-----) [000] d..1 82316.920955: cpu_idle: state=0 cpu_id=0
97983 kgsl_worker_thr-258   (  258) [003] d..2 82316.921000: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
97984 kgsl_worker_thr-258   (  258) [003] d..3 82316.921019: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
97985 kgsl_worker_thr-258   (  258) [003] d..2 82316.921035: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
97986  kworker/u16:15-1311  ( 1311) [003] d..2 82316.921077: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
97987          <idle>-0     (-----) [003] d..1 82316.921091: cpu_idle: state=0 cpu_id=3
97988    RenderThread-9436  ( 9105) [001] .... 82316.921109: binder_transaction: transaction=1571617 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
97989    RenderThread-9436  ( 9105) [001] .... 82316.921114: binder_transaction_alloc_buf: transaction=1571617 data_size=192 offsets_size=8
97990    RenderThread-9436  ( 9105) [001] d..4 82316.921124: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
97991    RenderThread-9436  ( 9105) [001] dn.5 82316.921141: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
97992    RenderThread-9436  ( 9105) [001] d..2 82316.921151: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
97993<...>-13083 ( 8858) [001] .... 82316.921159: binder_transaction_received: transaction=1571617
97994          <idle>-0     (-----) [002] d.h4 82316.921225: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97995          <idle>-0     (-----) [005] dnh2 82316.921248: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
97996          <idle>-0     (-----) [005] .n.1 82316.921252: cpu_idle: state=4294967295 cpu_id=5
97997          <idle>-0     (-----) [005] d..2 82316.921260: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
97998          <idle>-0     (-----) [002] ...1 82316.921264: cpu_idle: state=4294967295 cpu_id=2
97999          <idle>-0     (-----) [002] d..1 82316.921270: cpu_idle: state=0 cpu_id=2
98000<...>-5340 ( 788) [005] d..1 82316.921313: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
98001<...>-13083 ( 8858) [001] .... 82316.921313: binder_transaction: transaction=1571618 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
98002<...>-13083 ( 8858) [001] .... 82316.921317: binder_transaction_alloc_buf: transaction=1571618 data_size=68 offsets_size=0
98003          <idle>-0     (-----) [002] dnh2 82316.921334: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
98004          <idle>-0     (-----) [002] .n.1 82316.921343: cpu_idle: state=4294967295 cpu_id=2
98005          <idle>-0     (-----) [002] d..2 82316.921356: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
98006<...>-13083 ( 8858) [001] d..2 82316.921393: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
98007    RenderThread-9436  ( 9105) [001] .... 82316.921402: binder_transaction_received: transaction=1571618
98008<...>-5340 ( 788) [005] ...1 82316.921407: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
98009<...>-5340 ( 788) [005] ...1 82316.921411: tracing_mark_write: E|788
98010<...>-5340 ( 788) [005] .... 82316.921428: binder_transaction: transaction=1571619 dest_node=1571612 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
98011 neuralnetworks@-13088 (  788) [002] d..2 82316.921429: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98012<...>-5340 ( 788) [005] .... 82316.921431: binder_transaction_alloc_buf: transaction=1571619 data_size=60 offsets_size=0
98013<...>-5340 ( 788) [005] d..4 82316.921435: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
98014          <idle>-0     (-----) [002] d..1 82316.921443: cpu_idle: state=0 cpu_id=2
98015<...>-5340 ( 788) [005] d..5 82316.921448: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
98016          <idle>-0     (-----) [004] .n.1 82316.921455: cpu_idle: state=4294967295 cpu_id=4
98017          <idle>-0     (-----) [004] d..2 82316.921463: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
98018           <...>-27571 (-----) [004] .... 82316.921469: binder_transaction_received: transaction=1571619
98019<...>-5340 ( 788) [005] ...1 82316.921472: tracing_mark_write: E|788
98020<...>-5340 ( 788) [005] .... 82316.921478: binder_transaction: transaction=1571620 dest_node=0 dest_proc=27550 dest_thread=27790 reply=1 flags=0x0 code=0x0
98021<...>-5340 ( 788) [005] .... 82316.921481: binder_transaction_alloc_buf: transaction=1571620 data_size=8 offsets_size=0
98022<...>-5340 ( 788) [005] d..2 82316.921483: sched_waking: comm=id.nn.benchmark pid=27790 prio=110 target_cpu=005
98023           <...>-27571 (-----) [004] ...1 82316.921489: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
98024    RenderThread-9436  ( 9105) [001] d..2 82316.921489: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98025<...>-5340 ( 788) [005] d..3 82316.921490: sched_wakeup: comm=id.nn.benchmark pid=27790 prio=110 target_cpu=005
98026<...>-5340 ( 788) [005] .... 82316.921492: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
98027           <...>-27571 (-----) [004] ...1 82316.921495: tracing_mark_write: E|27550
98028          <idle>-0     (-----) [001] d..1 82316.921502: cpu_idle: state=0 cpu_id=1
98029           <...>-27571 (-----) [004] d..2 82316.921525: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98030          <idle>-0     (-----) [004] d..1 82316.921533: cpu_idle: state=0 cpu_id=4
98031<...>-5340 ( 788) [005] d..2 82316.921534: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27790 next_prio=110
98032           <...>-27790 (-----) [005] .... 82316.921545: binder_transaction_received: transaction=1571620
98033           <...>-27790 (-----) [005] ...1 82316.921586: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
98034           <...>-27790 (-----) [005] ...1 82316.921593: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
98035           <...>-27790 (-----) [005] ...1 82316.921620: tracing_mark_write: E|27550
98036           <...>-27790 (-----) [005] ...1 82316.921623: tracing_mark_write: E|27550
98037           <...>-27790 (-----) [005] ...1 82316.921627: tracing_mark_write: E|27550
98038          <idle>-0     (-----) [001] d.s2 82316.921809: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
98039          <idle>-0     (-----) [001] dns3 82316.921829: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
98040          <idle>-0     (-----) [001] .n.1 82316.921838: cpu_idle: state=4294967295 cpu_id=1
98041          <idle>-0     (-----) [001] d..2 82316.921848: 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
98042           <...>-27790 (-----) [005] ...1 82316.921858: tracing_mark_write: E|27550
98043     rcu_preempt-7     (    7) [001] d..2 82316.921862: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
98044           <...>-27790 (-----) [005] d..1 82316.921872: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98045           <...>-27790 (-----) [005] d..2 82316.921886: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98046          <idle>-0     (-----) [004] .n.1 82316.921892: cpu_idle: state=4294967295 cpu_id=4
98047          <idle>-0     (-----) [004] d..2 82316.921899: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
98048     rcu_preempt-7     (    7) [001] d..3 82316.921901: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
98049     rcu_preempt-7     (    7) [001] d..2 82316.921917: 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
98050           <...>-27550 (-----) [004] d..2 82316.921922: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98051         rcuop/0-10    (   10) [001] d..2 82316.921922: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
98052          <idle>-0     (-----) [004] d..1 82316.921931: cpu_idle: state=0 cpu_id=4
98053         rcuop/0-10    (   10) [001] d..3 82316.921956: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
98054         rcuop/0-10    (   10) [001] d..2 82316.921976: 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
98055           <...>-27790 (-----) [005] d..1 82316.921979: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98056           <...>-27790 (-----) [005] d..2 82316.921988: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98057          <idle>-0     (-----) [004] .n.1 82316.921994: cpu_idle: state=4294967295 cpu_id=4
98058         rcuop/1-21    (   21) [001] d..2 82316.922001: 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
98059          <idle>-0     (-----) [004] d..2 82316.922001: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
98060          <idle>-0     (-----) [001] d..1 82316.922011: cpu_idle: state=0 cpu_id=1
98061           <...>-27790 (-----) [005] d..2 82316.922029: sched_switch: prev_comm=id.nn.benchmark prev_pid=27790 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
98062           <...>-27550 (-----) [004] ...1 82316.922035: tracing_mark_write: E|27550
98063           <...>-27550 (-----) [004] ...1 82316.922040: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
98064           <...>-27550 (-----) [004] ...1 82316.922045: tracing_mark_write: E|27550
98065           <...>-27550 (-----) [004] ...1 82316.922049: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
98066          <idle>-0     (-----) [005] d..1 82316.922050: cpu_idle: state=0 cpu_id=5
98067           <...>-27550 (-----) [004] ...1 82316.922053: tracing_mark_write: E|27550
98068           <...>-27550 (-----) [004] ...1 82316.922057: tracing_mark_write: E|27550
98069           <...>-27550 (-----) [004] ...1 82316.922170: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
98070          <idle>-0     (-----) [001] d.h2 82316.922198: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
98071          <idle>-0     (-----) [001] dnh3 82316.922213: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
98072          <idle>-0     (-----) [001] .n.1 82316.922221: cpu_idle: state=4294967295 cpu_id=1
98073          <idle>-0     (-----) [001] d..2 82316.922229: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
98074           <...>-27550 (-----) [004] ...1 82316.922229: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
98075           <...>-27550 (-----) [004] ...1 82316.922235: tracing_mark_write: E|27550
98076           <...>-27550 (-----) [004] ...1 82316.922238: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
98077           <...>-27550 (-----) [004] ...1 82316.922244: tracing_mark_write: E|27550
98078           <...>-27550 (-----) [004] ...1 82316.922247: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
98079           <...>-27550 (-----) [004] ...1 82316.922251: tracing_mark_write: E|27550
98080        DispSync-8879  ( 8858) [001] d..1 82316.922251: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
98081           <...>-27550 (-----) [004] ...1 82316.922254: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
98082        DispSync-8879  ( 8858) [001] d..2 82316.922270: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
98083          <idle>-0     (-----) [003] .n.1 82316.922276: cpu_idle: state=4294967295 cpu_id=3
98084          <idle>-0     (-----) [003] d..2 82316.922287: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
98085          <idle>-0     (-----) [000] ...1 82316.922300: cpu_idle: state=4294967295 cpu_id=0
98086          <idle>-0     (-----) [000] d..1 82316.922304: cpu_idle: state=0 cpu_id=0
98087        DispSync-8879  ( 8858) [001] d..2 82316.922305: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98088          <idle>-0     (-----) [001] d..1 82316.922316: cpu_idle: state=0 cpu_id=1
98089   sfEventThread-8882  ( 8858) [003] d..3 82316.922326: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
98090   sfEventThread-8882  ( 8858) [003] d..4 82316.922345: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
98091          <idle>-0     (-----) [005] .n.1 82316.922347: cpu_idle: state=4294967295 cpu_id=5
98092           <...>-27550 (-----) [004] ...1 82316.922349: tracing_mark_write: E|27550
98093          <idle>-0     (-----) [000] .n.1 82316.922349: cpu_idle: state=4294967295 cpu_id=0
98094           <...>-27550 (-----) [004] ...1 82316.922354: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
98095          <idle>-0     (-----) [005] d..2 82316.922357: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27791 next_prio=110
98096          <idle>-0     (-----) [000] d..2 82316.922360: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
98097           <...>-27550 (-----) [004] d..2 82316.922371: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98098   sfEventThread-8882  ( 8858) [003] d..2 82316.922381: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98099          <idle>-0     (-----) [004] d..1 82316.922386: cpu_idle: state=0 cpu_id=4
98100          <idle>-0     (-----) [003] d..1 82316.922396: cpu_idle: state=0 cpu_id=3
98101           <...>-27791 (-----) [005] ...1 82316.922419: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
98102           <...>-27791 (-----) [005] ...1 82316.922435: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
98103           <...>-27791 (-----) [005] ...1 82316.922438: tracing_mark_write: E|27550
98104           <...>-27791 (-----) [005] .... 82316.922461: binder_transaction: transaction=1571621 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
98105           <...>-27791 (-----) [005] .... 82316.922464: binder_transaction_alloc_buf: transaction=1571621 data_size=48 offsets_size=0
98106           <...>-27791 (-----) [005] ...2 82316.922467: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
98107           <...>-27791 (-----) [005] d..4 82316.922470: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
98108           <...>-27791 (-----) [005] dn.5 82316.922482: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
98109           <...>-27791 (-----) [005] d..2 82316.922489: sched_switch: prev_comm=id.nn.benchmark prev_pid=27791 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
98110<...>-770 ( 770) [005] .... 82316.922499: binder_transaction_received: transaction=1571621
98111<...>-770 ( 770) [005] ...1 82316.922524: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
98112          <idle>-0     (-----) [002] ...1 82316.922562: cpu_idle: state=4294967295 cpu_id=2
98113          <idle>-0     (-----) [002] d..1 82316.922566: cpu_idle: state=0 cpu_id=2
98114<...>-770 ( 770) [005] d..2 82316.922613: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
98115  surfaceflinger-8858  ( 8858) [000] d.h1 82316.922644: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
98116<...>-770 ( 770) [005] ...1 82316.922656: tracing_mark_write: E|770
98117<...>-770 ( 770) [005] .... 82316.922664: binder_transaction: transaction=1571622 dest_node=0 dest_proc=27550 dest_thread=27791 reply=1 flags=0x0 code=0x0
98118<...>-770 ( 770) [005] .... 82316.922667: binder_transaction_alloc_buf: transaction=1571622 data_size=168 offsets_size=32
98119<...>-770 ( 770) [005] .... 82316.922674: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
98120<...>-770 ( 770) [005] d..2 82316.922710: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27791 next_prio=110
98121           <...>-27791 (-----) [005] .... 82316.922721: binder_transaction_received: transaction=1571622
98122  surfaceflinger-8858  ( 8858) [000] d..2 82316.922728: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
98123  surfaceflinger-8858  ( 8858) [000] d..3 82316.922748: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
98124          <idle>-0     (-----) [001] .n.1 82316.922755: cpu_idle: state=4294967295 cpu_id=1
98125          <idle>-0     (-----) [001] d..2 82316.922764: 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
98126  surfaceflinger-8858  ( 8858) [000] d..1 82316.922774: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
98127         rcuop/0-10    (   10) [001] d..2 82316.922789: 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
98128  surfaceflinger-8858  ( 8858) [000] d..2 82316.922792: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
98129          <idle>-0     (-----) [001] d..1 82316.922795: cpu_idle: state=0 cpu_id=1
98130           <...>-27791 (-----) [005] ...1 82316.922797: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
98131          <idle>-0     (-----) [003] .n.1 82316.922798: cpu_idle: state=4294967295 cpu_id=3
98132           <...>-27791 (-----) [005] ...1 82316.922802: tracing_mark_write: E|27550
98133          <idle>-0     (-----) [003] d..2 82316.922808: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
98134           <...>-27791 (-----) [005] .... 82316.922817: binder_transaction: transaction=1571623 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
98135           <...>-27791 (-----) [005] .... 82316.922820: binder_transaction_alloc_buf: transaction=1571623 data_size=48 offsets_size=0
98136           <...>-27791 (-----) [005] ...2 82316.922822: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
98137           <...>-27791 (-----) [005] d..4 82316.922825: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
98138           <...>-27791 (-----) [005] dn.5 82316.922835: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
98139           <...>-27791 (-----) [005] d..2 82316.922841: sched_switch: prev_comm=id.nn.benchmark prev_pid=27791 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
98140   sfEventThread-8882  ( 8858) [003] d..2 82316.922845: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98141<...>-770 ( 770) [005] .... 82316.922850: binder_transaction_received: transaction=1571623
98142          <idle>-0     (-----) [003] d..1 82316.922856: cpu_idle: state=0 cpu_id=3
98143<...>-770 ( 770) [005] ...1 82316.922866: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
98144<...>-770 ( 770) [005] ...1 82316.922946: tracing_mark_write: E|770
98145<...>-770 ( 770) [005] .... 82316.922954: binder_transaction: transaction=1571624 dest_node=0 dest_proc=27550 dest_thread=27791 reply=1 flags=0x0 code=0x0
98146<...>-770 ( 770) [005] .... 82316.922956: binder_transaction_alloc_buf: transaction=1571624 data_size=168 offsets_size=32
98147<...>-770 ( 770) [005] .... 82316.922962: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
98148  surfaceflinger-8858  ( 8858) [000] ...1 82316.922995: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
98149<...>-770 ( 770) [005] d..2 82316.922997: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27791 next_prio=110
98150  surfaceflinger-8858  ( 8858) [000] ...1 82316.923002: tracing_mark_write: E|8858
98151           <...>-27791 (-----) [005] .... 82316.923008: binder_transaction_received: transaction=1571624
98152  surfaceflinger-8858  ( 8858) [000] .... 82316.923058: binder_transaction: transaction=1571625 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
98153  surfaceflinger-8858  ( 8858) [000] .... 82316.923063: binder_transaction_alloc_buf: transaction=1571625 data_size=540 offsets_size=96
98154  surfaceflinger-8858  ( 8858) [000] ...2 82316.923091: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
98155  surfaceflinger-8858  ( 8858) [000] d..4 82316.923099: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
98156  surfaceflinger-8858  ( 8858) [000] d..5 82316.923119: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
98157          <idle>-0     (-----) [002] .n.1 82316.923124: cpu_idle: state=4294967295 cpu_id=2
98158          <idle>-0     (-----) [002] d..2 82316.923136: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
98159  surfaceflinger-8858  ( 8858) [000] d..2 82316.923142: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
98160 [email protected]   (  619) [002] .... 82316.923146: binder_transaction_received: transaction=1571625
98161 [email protected]   (  619) [002] ...1 82316.923193: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
98162<...>-581 ( 571) [000] d..2 82316.923271: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98163           <...>-27791 (-----) [005] ...1 82316.923282: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
98164          <idle>-0     (-----) [000] d..1 82316.923292: cpu_idle: state=0 cpu_id=0
98165           <...>-27791 (-----) [005] ...1 82316.923293: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
98166           <...>-27791 (-----) [005] ...1 82316.923297: tracing_mark_write: E|27550
98167 [email protected]   (  619) [002] ...1 82316.923303: tracing_mark_write: B|619|HWCSession::PresentDisplay::
98168           <...>-27791 (-----) [005] .... 82316.923362: binder_transaction: transaction=1571626 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
98169           <...>-27791 (-----) [005] .... 82316.923365: binder_transaction_alloc_buf: transaction=1571626 data_size=556 offsets_size=104
98170           <...>-27791 (-----) [005] ...2 82316.923380: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
98171           <...>-27791 (-----) [005] d..4 82316.923383: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98172           <...>-27791 (-----) [005] dn.5 82316.923394: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98173           <...>-27791 (-----) [005] d..2 82316.923401: sched_switch: prev_comm=id.nn.benchmark prev_pid=27791 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98174<...>-5340 ( 788) [005] .... 82316.923411: binder_transaction_received: transaction=1571626
98175<...>-5340 ( 788) [005] ...1 82316.923458: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
98176 [email protected]   (  619) [002] ...1 82316.923480: tracing_mark_write: B|619|HWDeviceDRM::Commit::
98177 [email protected]   (  619) [002] ...1 82316.923494: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
98178<...>-5340 ( 788) [005] d..2 82316.923503: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
98179<...>-5340 ( 788) [005] d..2 82316.923542: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27791 next_prio=110
98180 [email protected]   (  619) [002] d.h1 82316.923547: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
98181           <...>-27791 (-----) [005] d..2 82316.923564: sched_switch: prev_comm=id.nn.benchmark prev_pid=27791 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
98182          <idle>-0     (-----) [005] d..1 82316.923583: cpu_idle: state=0 cpu_id=5
98183 [email protected]   (  619) [002] d..2 82316.924152: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
98184 [email protected]   (  619) [002] d..3 82316.924176: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
98185          <idle>-0     (-----) [001] .n.1 82316.924180: cpu_idle: state=4294967295 cpu_id=1
98186          <idle>-0     (-----) [001] d..2 82316.924188: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
98187 [email protected]   (  619) [002] ...1 82316.924281: tracing_mark_write: E|619
98188 [email protected]   (  619) [002] ...1 82316.924288: tracing_mark_write: E|619
98189 [email protected]   (  619) [002] ...1 82316.924352: tracing_mark_write: E|619
98190 [email protected]   (  619) [002] ...1 82316.924398: tracing_mark_write: E|619
98191 [email protected]   (  619) [002] .... 82316.924413: binder_transaction: transaction=1571629 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
98192 [email protected]   (  619) [002] .... 82316.924417: binder_transaction_alloc_buf: transaction=1571629 data_size=576 offsets_size=112
98193 [email protected]   (  619) [002] d..2 82316.924438: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
98194 [email protected]   (  619) [002] d..3 82316.924455: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
98195 [email protected]   (  619) [002] .... 82316.924460: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
98196          <idle>-0     (-----) [000] .n.1 82316.924463: cpu_idle: state=4294967295 cpu_id=0
98197          <idle>-0     (-----) [000] d..2 82316.924474: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
98198  surfaceflinger-8858  ( 8858) [000] .... 82316.924484: binder_transaction_received: transaction=1571629
98199 [email protected]   (  619) [002] d..2 82316.924536: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
98200<...>-87 ( 87) [002] d..2 82316.924587: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98201          <idle>-0     (-----) [002] d.h5 82316.924608: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
98202          <idle>-0     (-----) [002] dnh6 82316.924644: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98203          <idle>-0     (-----) [002] dnh5 82316.924661: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98204          <idle>-0     (-----) [005] dnh2 82316.924683: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98205          <idle>-0     (-----) [005] .n.1 82316.924687: cpu_idle: state=4294967295 cpu_id=5
98206          <idle>-0     (-----) [005] d..2 82316.924696: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98207          <idle>-0     (-----) [002] d..2 82316.924714: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
98208<...>-86 ( 86) [002] d..2 82316.924749: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98209<...>-5340 ( 788) [005] d..1 82316.924750: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
98210          <idle>-0     (-----) [002] d..1 82316.924766: cpu_idle: state=0 cpu_id=2
98211          <idle>-0     (-----) [002] dnh2 82316.924782: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
98212          <idle>-0     (-----) [002] .n.1 82316.924788: cpu_idle: state=4294967295 cpu_id=2
98213          <idle>-0     (-----) [002] d..2 82316.924800: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
98214 neuralnetworks@-13088 (  788) [002] d..2 82316.924852: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98215          <idle>-0     (-----) [002] d..1 82316.924866: cpu_idle: state=0 cpu_id=2
98216<...>-5340 ( 788) [005] d..2 82316.924898: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
98217 crtc_commit:111-321   (  321) [001] d..2 82316.924901: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
98218          <idle>-0     (-----) [001] d..1 82316.924911: cpu_idle: state=0 cpu_id=1
98219          <idle>-0     (-----) [002] dnh2 82316.924919: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
98220<...>-5340 ( 788) [005] d..2 82316.924923: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
98221  surfaceflinger-8858  ( 8858) [000] d..2 82316.924925: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98222          <idle>-0     (-----) [002] .n.1 82316.924926: cpu_idle: state=4294967295 cpu_id=2
98223          <idle>-0     (-----) [002] d..2 82316.924937: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
98224          <idle>-0     (-----) [005] d..1 82316.924937: cpu_idle: state=0 cpu_id=5
98225          <idle>-0     (-----) [000] d..1 82316.924945: cpu_idle: state=0 cpu_id=0
98226<...>-87 ( 87) [002] d.h4 82316.924972: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98227<...>-87 ( 87) [002] d.h5 82316.924990: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98228<...>-87 ( 87) [002] d..2 82316.925006: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
98229<...>-86 ( 86) [002] d..2 82316.925039: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98230          <idle>-0     (-----) [002] d..1 82316.925052: cpu_idle: state=0 cpu_id=2
98231          <idle>-0     (-----) [001] d.s2 82316.925141: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
98232          <idle>-0     (-----) [001] dns3 82316.925160: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
98233          <idle>-0     (-----) [001] .n.1 82316.925181: cpu_idle: state=4294967295 cpu_id=1
98234          <idle>-0     (-----) [001] d..2 82316.925190: 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
98235<...>-8 ( 8) [001] d..2 82316.925200: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
98236<...>-8 ( 8) [001] d..3 82316.925216: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
98237<...>-8 ( 8) [001] d..2 82316.925229: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
98238<...>-46 ( 46) [001] d..2 82316.925242: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
98239<...>-46 ( 46) [001] d..3 82316.925255: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
98240<...>-46 ( 46) [001] d..2 82316.925265: 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
98241<...>-8 ( 8) [001] d..2 82316.925294: 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
98242          <idle>-0     (-----) [001] d..1 82316.925303: cpu_idle: state=0 cpu_id=1
98243          <idle>-0     (-----) [002] d.h4 82316.926664: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98244          <idle>-0     (-----) [005] dnh2 82316.926687: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98245          <idle>-0     (-----) [005] .n.1 82316.926691: cpu_idle: state=4294967295 cpu_id=5
98246          <idle>-0     (-----) [005] d..2 82316.926700: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98247          <idle>-0     (-----) [002] ...1 82316.926704: cpu_idle: state=4294967295 cpu_id=2
98248          <idle>-0     (-----) [002] d..1 82316.926710: cpu_idle: state=0 cpu_id=2
98249<...>-5340 ( 788) [005] d..1 82316.926751: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
98250          <idle>-0     (-----) [002] dnh2 82316.926774: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
98251          <idle>-0     (-----) [002] .n.1 82316.926782: cpu_idle: state=4294967295 cpu_id=2
98252          <idle>-0     (-----) [002] d..2 82316.926795: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
98253<...>-5340 ( 788) [005] ...1 82316.926842: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
98254<...>-5340 ( 788) [005] ...1 82316.926846: tracing_mark_write: E|788
98255<...>-5340 ( 788) [005] .... 82316.926863: binder_transaction: transaction=1571630 dest_node=1571627 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
98256 neuralnetworks@-13088 (  788) [002] d..2 82316.926864: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98257<...>-5340 ( 788) [005] .... 82316.926866: binder_transaction_alloc_buf: transaction=1571630 data_size=60 offsets_size=0
98258<...>-5340 ( 788) [005] d..4 82316.926869: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
98259          <idle>-0     (-----) [002] d..1 82316.926875: cpu_idle: state=0 cpu_id=2
98260<...>-5340 ( 788) [005] d..5 82316.926881: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
98261          <idle>-0     (-----) [004] .n.1 82316.926887: cpu_idle: state=4294967295 cpu_id=4
98262          <idle>-0     (-----) [004] d..2 82316.926896: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
98263           <...>-27571 (-----) [004] .... 82316.926902: binder_transaction_received: transaction=1571630
98264<...>-5340 ( 788) [005] ...1 82316.926904: tracing_mark_write: E|788
98265<...>-5340 ( 788) [005] .... 82316.926910: binder_transaction: transaction=1571631 dest_node=0 dest_proc=27550 dest_thread=27791 reply=1 flags=0x0 code=0x0
98266<...>-5340 ( 788) [005] .... 82316.926912: binder_transaction_alloc_buf: transaction=1571631 data_size=8 offsets_size=0
98267<...>-5340 ( 788) [005] d..2 82316.926914: sched_waking: comm=id.nn.benchmark pid=27791 prio=110 target_cpu=005
98268           <...>-27571 (-----) [004] ...1 82316.926921: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
98269<...>-5340 ( 788) [005] d..3 82316.926921: sched_wakeup: comm=id.nn.benchmark pid=27791 prio=110 target_cpu=005
98270<...>-5340 ( 788) [005] .... 82316.926923: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
98271           <...>-27571 (-----) [004] ...1 82316.926927: tracing_mark_write: E|27550
98272           <...>-27571 (-----) [004] d..2 82316.926957: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98273          <idle>-0     (-----) [004] d..1 82316.926964: cpu_idle: state=0 cpu_id=4
98274<...>-5340 ( 788) [005] d..2 82316.926965: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27791 next_prio=110
98275           <...>-27791 (-----) [005] .... 82316.926976: binder_transaction_received: transaction=1571631
98276           <...>-27791 (-----) [005] ...1 82316.927015: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
98277           <...>-27791 (-----) [005] ...1 82316.927021: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
98278           <...>-27791 (-----) [005] ...1 82316.927048: tracing_mark_write: E|27550
98279           <...>-27791 (-----) [005] ...1 82316.927053: tracing_mark_write: E|27550
98280           <...>-27791 (-----) [005] ...1 82316.927056: tracing_mark_write: E|27550
98281           <...>-27791 (-----) [005] ...1 82316.927251: tracing_mark_write: E|27550
98282           <...>-27791 (-----) [005] d..1 82316.927264: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98283           <...>-27791 (-----) [005] d..2 82316.927280: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98284          <idle>-0     (-----) [004] .n.1 82316.927286: cpu_idle: state=4294967295 cpu_id=4
98285          <idle>-0     (-----) [004] d..2 82316.927292: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
98286           <...>-27550 (-----) [004] d..2 82316.927312: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98287          <idle>-0     (-----) [004] d..1 82316.927321: cpu_idle: state=0 cpu_id=4
98288           <...>-27791 (-----) [005] d..1 82316.927371: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98289           <...>-27791 (-----) [005] d..2 82316.927380: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98290          <idle>-0     (-----) [004] .n.1 82316.927385: cpu_idle: state=4294967295 cpu_id=4
98291          <idle>-0     (-----) [004] d..2 82316.927393: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
98292           <...>-27791 (-----) [005] d..2 82316.927421: sched_switch: prev_comm=id.nn.benchmark prev_pid=27791 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
98293           <...>-27550 (-----) [004] ...1 82316.927426: tracing_mark_write: E|27550
98294           <...>-27550 (-----) [004] ...1 82316.927431: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
98295           <...>-27550 (-----) [004] ...1 82316.927437: tracing_mark_write: E|27550
98296           <...>-27550 (-----) [004] ...1 82316.927440: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
98297          <idle>-0     (-----) [005] d..1 82316.927442: cpu_idle: state=0 cpu_id=5
98298           <...>-27550 (-----) [004] ...1 82316.927445: tracing_mark_write: E|27550
98299           <...>-27550 (-----) [004] ...1 82316.927449: tracing_mark_write: E|27550
98300           <...>-27550 (-----) [004] ...1 82316.927561: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
98301           <...>-27550 (-----) [004] ...1 82316.927620: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
98302           <...>-27550 (-----) [004] ...1 82316.927624: tracing_mark_write: E|27550
98303           <...>-27550 (-----) [004] ...1 82316.927628: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
98304           <...>-27550 (-----) [004] ...1 82316.927634: tracing_mark_write: E|27550
98305           <...>-27550 (-----) [004] ...1 82316.927637: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
98306           <...>-27550 (-----) [004] ...1 82316.927642: tracing_mark_write: E|27550
98307           <...>-27550 (-----) [004] ...1 82316.927645: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
98308          <idle>-0     (-----) [005] .n.1 82316.927739: cpu_idle: state=4294967295 cpu_id=5
98309           <...>-27550 (-----) [004] ...1 82316.927740: tracing_mark_write: E|27550
98310           <...>-27550 (-----) [004] ...1 82316.927745: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
98311          <idle>-0     (-----) [005] d..2 82316.927748: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27792 next_prio=110
98312           <...>-27550 (-----) [004] d..2 82316.927762: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98313          <idle>-0     (-----) [004] d..1 82316.927776: cpu_idle: state=0 cpu_id=4
98314           <...>-27792 (-----) [005] ...1 82316.927810: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
98315           <...>-27792 (-----) [005] ...1 82316.927823: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
98316           <...>-27792 (-----) [005] ...1 82316.927827: tracing_mark_write: E|27550
98317           <...>-27792 (-----) [005] .... 82316.927848: binder_transaction: transaction=1571632 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
98318           <...>-27792 (-----) [005] .... 82316.927851: binder_transaction_alloc_buf: transaction=1571632 data_size=48 offsets_size=0
98319           <...>-27792 (-----) [005] ...2 82316.927854: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
98320           <...>-27792 (-----) [005] d..4 82316.927857: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
98321           <...>-27792 (-----) [005] dn.5 82316.927868: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
98322           <...>-27792 (-----) [005] d..2 82316.927874: sched_switch: prev_comm=id.nn.benchmark prev_pid=27792 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
98323<...>-770 ( 770) [005] .... 82316.927885: binder_transaction_received: transaction=1571632
98324<...>-770 ( 770) [005] ...1 82316.927909: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
98325<...>-770 ( 770) [005] d..2 82316.927988: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
98326          <idle>-0     (-----) [000] dnh2 82316.928018: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
98327          <idle>-0     (-----) [000] .n.1 82316.928025: cpu_idle: state=4294967295 cpu_id=0
98328<...>-770 ( 770) [005] ...1 82316.928028: tracing_mark_write: E|770
98329<...>-770 ( 770) [005] .... 82316.928036: binder_transaction: transaction=1571633 dest_node=0 dest_proc=27550 dest_thread=27792 reply=1 flags=0x0 code=0x0
98330          <idle>-0     (-----) [000] d..2 82316.928037: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
98331<...>-770 ( 770) [005] .... 82316.928038: binder_transaction_alloc_buf: transaction=1571633 data_size=168 offsets_size=32
98332<...>-770 ( 770) [005] .... 82316.928045: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
98333<...>-770 ( 770) [005] d..2 82316.928080: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27792 next_prio=110
98334           <...>-27792 (-----) [005] .... 82316.928091: binder_transaction_received: transaction=1571633
98335<...>-581 ( 571) [000] d..2 82316.928126: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98336          <idle>-0     (-----) [000] d..1 82316.928141: cpu_idle: state=0 cpu_id=0
98337           <...>-27792 (-----) [005] ...1 82316.928161: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
98338           <...>-27792 (-----) [005] ...1 82316.928167: tracing_mark_write: E|27550
98339           <...>-27792 (-----) [005] .... 82316.928181: binder_transaction: transaction=1571634 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
98340           <...>-27792 (-----) [005] .... 82316.928183: binder_transaction_alloc_buf: transaction=1571634 data_size=48 offsets_size=0
98341           <...>-27792 (-----) [005] ...2 82316.928186: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
98342           <...>-27792 (-----) [005] d..4 82316.928188: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
98343           <...>-27792 (-----) [005] dn.5 82316.928198: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
98344           <...>-27792 (-----) [005] d..2 82316.928204: sched_switch: prev_comm=id.nn.benchmark prev_pid=27792 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
98345<...>-770 ( 770) [005] .... 82316.928212: binder_transaction_received: transaction=1571634
98346<...>-770 ( 770) [005] ...1 82316.928229: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
98347<...>-770 ( 770) [005] d..2 82316.928287: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
98348          <idle>-0     (-----) [000] dnh2 82316.928312: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
98349          <idle>-0     (-----) [000] .n.1 82316.928318: cpu_idle: state=4294967295 cpu_id=0
98350<...>-770 ( 770) [005] ...1 82316.928320: tracing_mark_write: E|770
98351<...>-770 ( 770) [005] .... 82316.928328: binder_transaction: transaction=1571635 dest_node=0 dest_proc=27550 dest_thread=27792 reply=1 flags=0x0 code=0x0
98352          <idle>-0     (-----) [000] d..2 82316.928329: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
98353<...>-770 ( 770) [005] .... 82316.928330: binder_transaction_alloc_buf: transaction=1571635 data_size=168 offsets_size=32
98354<...>-770 ( 770) [005] .... 82316.928336: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
98355<...>-770 ( 770) [005] d..2 82316.928371: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27792 next_prio=110
98356           <...>-27792 (-----) [005] .... 82316.928381: binder_transaction_received: transaction=1571635
98357<...>-581 ( 571) [000] d..2 82316.928390: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98358          <idle>-0     (-----) [000] d..1 82316.928405: cpu_idle: state=0 cpu_id=0
98359          <idle>-0     (-----) [001] d.s2 82316.928469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
98360          <idle>-0     (-----) [001] dns3 82316.928486: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
98361          <idle>-0     (-----) [001] dns3 82316.928493: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
98362          <idle>-0     (-----) [001] dns4 82316.928528: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
98363          <idle>-0     (-----) [001] .n.1 82316.928541: cpu_idle: state=4294967295 cpu_id=1
98364          <idle>-0     (-----) [001] d..2 82316.928551: 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
98365     rcu_preempt-7     (    7) [001] d..2 82316.928569: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
98366           <...>-27792 (-----) [005] ...1 82316.928701: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
98367           <...>-27792 (-----) [005] ...1 82316.928710: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
98368           <...>-27792 (-----) [005] ...1 82316.928714: tracing_mark_write: E|27550
98369           <...>-27792 (-----) [005] .... 82316.928777: binder_transaction: transaction=1571636 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
98370           <...>-27792 (-----) [005] .... 82316.928780: binder_transaction_alloc_buf: transaction=1571636 data_size=556 offsets_size=104
98371           <...>-27792 (-----) [005] ...2 82316.928794: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
98372           <...>-27792 (-----) [005] d..4 82316.928797: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98373           <...>-27792 (-----) [005] dn.5 82316.928808: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98374           <...>-27792 (-----) [005] d..2 82316.928815: sched_switch: prev_comm=id.nn.benchmark prev_pid=27792 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98375<...>-5340 ( 788) [005] .... 82316.928824: binder_transaction_received: transaction=1571636
98376  kworker/u16:15-1311  ( 1311) [001] d..2 82316.928843: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
98377<...>-5340 ( 788) [005] ...1 82316.928868: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
98378          <idle>-0     (-----) [001] d.s4 82316.928888: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
98379          <idle>-0     (-----) [001] d.s5 82316.928898: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
98380          <idle>-0     (-----) [001] dns5 82316.928903: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
98381<...>-5340 ( 788) [005] d..2 82316.928910: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
98382          <idle>-0     (-----) [001] d..2 82316.928917: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
98383  kworker/u16:15-1311  ( 1311) [001] dnh3 82316.928949: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
98384<...>-5340 ( 788) [005] d..2 82316.928956: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27792 next_prio=110
98385  kworker/u16:15-1311  ( 1311) [001] d..2 82316.928959: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
98386           <...>-27792 (-----) [005] d..2 82316.928981: sched_switch: prev_comm=id.nn.benchmark prev_pid=27792 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
98387<...>-87 ( 87) [001] d..2 82316.928990: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
98388          <idle>-0     (-----) [005] d..1 82316.928999: cpu_idle: state=0 cpu_id=5
98389          <idle>-0     (-----) [002] d.h4 82316.929012: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98390          <idle>-0     (-----) [002] dnh5 82316.929028: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98391  kworker/u16:15-1311  ( 1311) [001] .... 82316.929032: clk_set_rate: l3_cluster0_vote_clk 403200000
98392          <idle>-0     (-----) [002] .n.1 82316.929038: cpu_idle: state=4294967295 cpu_id=2
98393          <idle>-0     (-----) [002] d..2 82316.929051: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
98394  kworker/u16:15-1311  ( 1311) [001] d..2 82316.929062: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98395          <idle>-0     (-----) [001] d..1 82316.929073: cpu_idle: state=0 cpu_id=1
98396<...>-86 ( 86) [002] d..2 82316.929087: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98397          <idle>-0     (-----) [002] d.h5 82316.929109: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98398          <idle>-0     (-----) [005] dnh2 82316.929129: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98399          <idle>-0     (-----) [005] .n.1 82316.929134: cpu_idle: state=4294967295 cpu_id=5
98400          <idle>-0     (-----) [005] d..2 82316.929142: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98401          <idle>-0     (-----) [002] d..1 82316.929156: cpu_idle: state=0 cpu_id=2
98402<...>-5340 ( 788) [005] d..1 82316.929194: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
98403          <idle>-0     (-----) [000] dnh2 82316.929233: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98404          <idle>-0     (-----) [000] .n.1 82316.929240: cpu_idle: state=4294967295 cpu_id=0
98405          <idle>-0     (-----) [000] d..2 82316.929252: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
98406 neuralnetworks@-13088 (  788) [000] d..2 82316.929309: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98407          <idle>-0     (-----) [000] d..1 82316.929324: cpu_idle: state=0 cpu_id=0
98408<...>-5340 ( 788) [005] d..2 82316.929352: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
98409          <idle>-0     (-----) [001] dnh2 82316.929375: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
98410<...>-5340 ( 788) [005] d..2 82316.929380: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
98411          <idle>-0     (-----) [001] .n.1 82316.929381: cpu_idle: state=4294967295 cpu_id=1
98412          <idle>-0     (-----) [001] d..2 82316.929390: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
98413          <idle>-0     (-----) [005] d..1 82316.929394: cpu_idle: state=0 cpu_id=5
98414          <idle>-0     (-----) [002] d.h4 82316.929427: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98415<...>-87 ( 87) [001] d..2 82316.929430: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98416          <idle>-0     (-----) [002] dnh5 82316.929438: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98417          <idle>-0     (-----) [001] d..1 82316.929438: cpu_idle: state=0 cpu_id=1
98418          <idle>-0     (-----) [002] .n.1 82316.929446: cpu_idle: state=4294967295 cpu_id=2
98419          <idle>-0     (-----) [002] d..2 82316.929457: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
98420<...>-86 ( 86) [002] d..2 82316.929491: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98421          <idle>-0     (-----) [002] d..1 82316.929503: cpu_idle: state=0 cpu_id=2
98422          <idle>-0     (-----) [000] d.h5 82316.930240: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
98423          <idle>-0     (-----) [000] d.h6 82316.930261: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
98424          <idle>-0     (-----) [000] d.h5 82316.930265: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
98425          <idle>-0     (-----) [003] .n.1 82316.930267: cpu_idle: state=4294967295 cpu_id=3
98426          <idle>-0     (-----) [003] d..2 82316.930278: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
98427          <idle>-0     (-----) [000] d.h6 82316.930278: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
98428          <idle>-0     (-----) [001] .n.1 82316.930284: cpu_idle: state=4294967295 cpu_id=1
98429          <idle>-0     (-----) [001] d..2 82316.930293: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
98430          <idle>-0     (-----) [000] ...1 82316.930297: cpu_idle: state=4294967295 cpu_id=0
98431          <idle>-0     (-----) [000] d..1 82316.930303: cpu_idle: state=0 cpu_id=0
98432  crtc_event:111-322   (  322) [003] d..2 82316.930311: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98433          <idle>-0     (-----) [003] d..1 82316.930322: cpu_idle: state=0 cpu_id=3
98434 crtc_commit:111-321   (  321) [001] d..2 82316.930441: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
98435          <idle>-0     (-----) [001] d..1 82316.930450: cpu_idle: state=0 cpu_id=1
98436          <idle>-0     (-----) [002] d.h4 82316.931184: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98437          <idle>-0     (-----) [005] dnh2 82316.931206: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98438          <idle>-0     (-----) [005] .n.1 82316.931210: cpu_idle: state=4294967295 cpu_id=5
98439          <idle>-0     (-----) [005] d..2 82316.931218: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98440          <idle>-0     (-----) [002] ...1 82316.931223: cpu_idle: state=4294967295 cpu_id=2
98441          <idle>-0     (-----) [002] d..1 82316.931229: cpu_idle: state=0 cpu_id=2
98442<...>-5340 ( 788) [005] d..1 82316.931269: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98443          <idle>-0     (-----) [000] dnh2 82316.931295: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98444          <idle>-0     (-----) [000] .n.1 82316.931301: cpu_idle: state=4294967295 cpu_id=0
98445          <idle>-0     (-----) [000] d..2 82316.931313: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
98446<...>-5340 ( 788) [005] ...1 82316.931359: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
98447<...>-5340 ( 788) [005] ...1 82316.931364: tracing_mark_write: E|788
98448<...>-5340 ( 788) [005] .... 82316.931379: binder_transaction: transaction=1571639 dest_node=1571637 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
98449 neuralnetworks@-13088 (  788) [000] d..2 82316.931379: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98450<...>-5340 ( 788) [005] .... 82316.931382: binder_transaction_alloc_buf: transaction=1571639 data_size=60 offsets_size=0
98451<...>-5340 ( 788) [005] d..4 82316.931385: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
98452          <idle>-0     (-----) [000] d..1 82316.931392: cpu_idle: state=0 cpu_id=0
98453<...>-5340 ( 788) [005] d..5 82316.931398: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
98454          <idle>-0     (-----) [004] .n.1 82316.931403: cpu_idle: state=4294967295 cpu_id=4
98455          <idle>-0     (-----) [004] d..2 82316.931411: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
98456           <...>-27571 (-----) [004] .... 82316.931416: binder_transaction_received: transaction=1571639
98457<...>-5340 ( 788) [005] ...1 82316.931420: tracing_mark_write: E|788
98458<...>-5340 ( 788) [005] .... 82316.931426: binder_transaction: transaction=1571640 dest_node=0 dest_proc=27550 dest_thread=27792 reply=1 flags=0x0 code=0x0
98459<...>-5340 ( 788) [005] .... 82316.931429: binder_transaction_alloc_buf: transaction=1571640 data_size=8 offsets_size=0
98460<...>-5340 ( 788) [005] d..2 82316.931430: sched_waking: comm=id.nn.benchmark pid=27792 prio=110 target_cpu=005
98461           <...>-27571 (-----) [004] ...1 82316.931435: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
98462<...>-5340 ( 788) [005] d..3 82316.931438: sched_wakeup: comm=id.nn.benchmark pid=27792 prio=110 target_cpu=005
98463<...>-5340 ( 788) [005] .... 82316.931440: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
98464           <...>-27571 (-----) [004] ...1 82316.931440: tracing_mark_write: E|27550
98465           <...>-27571 (-----) [004] d..2 82316.931470: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98466          <idle>-0     (-----) [004] d..1 82316.931477: cpu_idle: state=0 cpu_id=4
98467<...>-5340 ( 788) [005] d..2 82316.931481: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27792 next_prio=110
98468           <...>-27792 (-----) [005] .... 82316.931491: binder_transaction_received: transaction=1571640
98469           <...>-27792 (-----) [005] ...1 82316.931527: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
98470           <...>-27792 (-----) [005] ...1 82316.931533: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
98471           <...>-27792 (-----) [005] ...1 82316.931560: tracing_mark_write: E|27550
98472           <...>-27792 (-----) [005] ...1 82316.931564: tracing_mark_write: E|27550
98473           <...>-27792 (-----) [005] ...1 82316.931567: tracing_mark_write: E|27550
98474           <...>-27792 (-----) [005] ...1 82316.931757: tracing_mark_write: E|27550
98475           <...>-27792 (-----) [005] d..1 82316.931770: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98476           <...>-27792 (-----) [005] d..2 82316.931792: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98477          <idle>-0     (-----) [004] .n.1 82316.931796: cpu_idle: state=4294967295 cpu_id=4
98478          <idle>-0     (-----) [004] d..2 82316.931804: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
98479          <idle>-0     (-----) [001] d.s3 82316.931806: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
98480          <idle>-0     (-----) [001] d.s4 82316.931826: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
98481          <idle>-0     (-----) [003] .n.1 82316.931831: cpu_idle: state=4294967295 cpu_id=3
98482          <idle>-0     (-----) [001] d.s2 82316.931860: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
98483           <...>-27550 (-----) [004] d..2 82316.931862: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98484          <idle>-0     (-----) [003] d..2 82316.931864: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
98485          <idle>-0     (-----) [004] d..1 82316.931872: cpu_idle: state=0 cpu_id=4
98486          <idle>-0     (-----) [001] dns3 82316.931879: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
98487           <...>-27792 (-----) [005] d.s3 82316.931880: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
98488          <idle>-0     (-----) [001] .n.1 82316.931892: cpu_idle: state=4294967295 cpu_id=1
98489  crtc_event:111-322   (  322) [003] d..2 82316.931892: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98490          <idle>-0     (-----) [003] d..1 82316.931903: cpu_idle: state=0 cpu_id=3
98491          <idle>-0     (-----) [001] d..2 82316.931904: 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
98492           <...>-27792 (-----) [005] d.s3 82316.931916: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
98493          <idle>-0     (-----) [003] dnh2 82316.931929: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98494<...>-8 ( 8) [001] d..2 82316.931935: 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
98495          <idle>-0     (-----) [003] .n.1 82316.931936: cpu_idle: state=4294967295 cpu_id=3
98496          <idle>-0     (-----) [001] d..1 82316.931943: cpu_idle: state=0 cpu_id=1
98497          <idle>-0     (-----) [003] d..2 82316.931947: 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
98498     rcu_preempt-7     (    7) [003] d..2 82316.931954: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
98499          <idle>-0     (-----) [001] dnh2 82316.931957: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
98500          <idle>-0     (-----) [001] .n.1 82316.931968: cpu_idle: state=4294967295 cpu_id=1
98501          <idle>-0     (-----) [001] d..2 82316.931976: 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
98502<...>-8 ( 8) [001] d..2 82316.931981: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
98503     rcu_preempt-7     (    7) [003] d..3 82316.932000: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
98504     rcu_preempt-7     (    7) [003] d..2 82316.932023: 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
98505         rcuop/4-45    (   45) [003] d..2 82316.932031: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
98506<...>-8 ( 8) [001] d..3 82316.932034: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
98507           <...>-27792 (-----) [005] d..1 82316.932035: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98508           <...>-27792 (-----) [005] d..2 82316.932044: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98509          <idle>-0     (-----) [004] .n.1 82316.932050: cpu_idle: state=4294967295 cpu_id=4
98510<...>-8 ( 8) [001] d..2 82316.932056: 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
98511          <idle>-0     (-----) [004] d..2 82316.932058: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
98512          <idle>-0     (-----) [001] d..1 82316.932067: cpu_idle: state=0 cpu_id=1
98513         rcuop/4-45    (   45) [003] d..3 82316.932070: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
98514           <...>-27792 (-----) [005] d..2 82316.932084: sched_switch: prev_comm=id.nn.benchmark prev_pid=27792 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
98515         rcuop/4-45    (   45) [003] d..2 82316.932085: 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
98516           <...>-27550 (-----) [004] ...1 82316.932090: tracing_mark_write: E|27550
98517           <...>-27550 (-----) [004] ...1 82316.932095: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
98518           <...>-27550 (-----) [004] ...1 82316.932101: tracing_mark_write: E|27550
98519          <idle>-0     (-----) [005] d..1 82316.932104: cpu_idle: state=0 cpu_id=5
98520           <...>-27550 (-----) [004] ...1 82316.932104: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
98521           <...>-27550 (-----) [004] ...1 82316.932108: tracing_mark_write: E|27550
98522           <...>-27550 (-----) [004] ...1 82316.932112: tracing_mark_write: E|27550
98523         rcuop/5-53    (   53) [003] d..2 82316.932176: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
98524<...>-46 ( 46) [003] d..2 82316.932188: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
98525<...>-46 ( 46) [003] d..3 82316.932202: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
98526          <idle>-0     (-----) [001] .n.1 82316.932208: cpu_idle: state=4294967295 cpu_id=1
98527          <idle>-0     (-----) [001] d..2 82316.932219: 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
98528<...>-46 ( 46) [003] d..2 82316.932224: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98529           <...>-27550 (-----) [004] ...1 82316.932225: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
98530          <idle>-0     (-----) [003] d..1 82316.932238: cpu_idle: state=0 cpu_id=3
98531<...>-8 ( 8) [001] d..2 82316.932242: 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
98532          <idle>-0     (-----) [001] d..1 82316.932251: cpu_idle: state=0 cpu_id=1
98533           <...>-27550 (-----) [004] ...1 82316.932282: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
98534           <...>-27550 (-----) [004] ...1 82316.932287: tracing_mark_write: E|27550
98535           <...>-27550 (-----) [004] ...1 82316.932291: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
98536           <...>-27550 (-----) [004] ...1 82316.932297: tracing_mark_write: E|27550
98537           <...>-27550 (-----) [004] ...1 82316.932300: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
98538           <...>-27550 (-----) [004] ...1 82316.932305: tracing_mark_write: E|27550
98539           <...>-27550 (-----) [004] ...1 82316.932308: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
98540          <idle>-0     (-----) [005] .n.1 82316.932401: cpu_idle: state=4294967295 cpu_id=5
98541           <...>-27550 (-----) [004] ...1 82316.932403: tracing_mark_write: E|27550
98542           <...>-27550 (-----) [004] ...1 82316.932407: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
98543          <idle>-0     (-----) [005] d..2 82316.932410: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27793 next_prio=110
98544           <...>-27550 (-----) [004] d..2 82316.932424: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98545          <idle>-0     (-----) [004] d..1 82316.932438: cpu_idle: state=0 cpu_id=4
98546           <...>-27793 (-----) [005] ...1 82316.932472: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
98547           <...>-27793 (-----) [005] ...1 82316.932487: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
98548           <...>-27793 (-----) [005] ...1 82316.932492: tracing_mark_write: E|27550
98549           <...>-27793 (-----) [005] .... 82316.932528: binder_transaction: transaction=1571641 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
98550           <...>-27793 (-----) [005] .... 82316.932532: binder_transaction_alloc_buf: transaction=1571641 data_size=48 offsets_size=0
98551           <...>-27793 (-----) [005] ...2 82316.932535: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
98552           <...>-27793 (-----) [005] d..4 82316.932537: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
98553           <...>-27793 (-----) [005] dn.5 82316.932548: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
98554           <...>-27793 (-----) [005] d..2 82316.932555: sched_switch: prev_comm=id.nn.benchmark prev_pid=27793 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
98555<...>-770 ( 770) [005] .... 82316.932565: binder_transaction_received: transaction=1571641
98556          <idle>-0     (-----) [000] d.h5 82316.932572: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
98557<...>-770 ( 770) [005] ...1 82316.932587: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
98558          <idle>-0     (-----) [000] d.h6 82316.932589: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
98559          <idle>-0     (-----) [001] .n.1 82316.932595: cpu_idle: state=4294967295 cpu_id=1
98560          <idle>-0     (-----) [001] d..2 82316.932604: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
98561          <idle>-0     (-----) [000] ...1 82316.932606: cpu_idle: state=4294967295 cpu_id=0
98562          <idle>-0     (-----) [000] d..1 82316.932611: cpu_idle: state=0 cpu_id=0
98563<...>-770 ( 770) [005] d..2 82316.932658: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
98564 crtc_commit:111-321   (  321) [001] d..2 82316.932681: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98565          <idle>-0     (-----) [001] d..1 82316.932691: cpu_idle: state=0 cpu_id=1
98566          <idle>-0     (-----) [001] dnh2 82316.932706: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
98567          <idle>-0     (-----) [001] .n.1 82316.932713: cpu_idle: state=4294967295 cpu_id=1
98568<...>-770 ( 770) [005] ...1 82316.932718: tracing_mark_write: E|770
98569          <idle>-0     (-----) [001] d..2 82316.932723: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
98570<...>-770 ( 770) [005] .... 82316.932726: binder_transaction: transaction=1571642 dest_node=0 dest_proc=27550 dest_thread=27793 reply=1 flags=0x0 code=0x0
98571<...>-770 ( 770) [005] .... 82316.932728: binder_transaction_alloc_buf: transaction=1571642 data_size=168 offsets_size=32
98572<...>-770 ( 770) [005] .... 82316.932735: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
98573<...>-770 ( 770) [005] d..2 82316.932771: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27793 next_prio=110
98574           <...>-27793 (-----) [005] .... 82316.932783: binder_transaction_received: transaction=1571642
98575<...>-581 ( 571) [001] d..2 82316.932816: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98576          <idle>-0     (-----) [001] d..1 82316.932829: cpu_idle: state=0 cpu_id=1
98577           <...>-27793 (-----) [005] ...1 82316.932853: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
98578           <...>-27793 (-----) [005] ...1 82316.932858: tracing_mark_write: E|27550
98579          <idle>-0     (-----) [000] d.h5 82316.932859: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
98580           <...>-27793 (-----) [005] .... 82316.932872: binder_transaction: transaction=1571643 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
98581          <idle>-0     (-----) [000] d.h6 82316.932874: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
98582           <...>-27793 (-----) [005] .... 82316.932875: binder_transaction_alloc_buf: transaction=1571643 data_size=48 offsets_size=0
98583           <...>-27793 (-----) [005] ...2 82316.932877: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
98584           <...>-27793 (-----) [005] d..4 82316.932880: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
98585          <idle>-0     (-----) [003] .n.1 82316.932881: cpu_idle: state=4294967295 cpu_id=3
98586           <...>-27793 (-----) [005] dn.5 82316.932889: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
98587          <idle>-0     (-----) [000] ...1 82316.932891: cpu_idle: state=4294967295 cpu_id=0
98588          <idle>-0     (-----) [003] d..2 82316.932892: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
98589           <...>-27793 (-----) [005] d..2 82316.932896: sched_switch: prev_comm=id.nn.benchmark prev_pid=27793 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
98590          <idle>-0     (-----) [000] d..1 82316.932898: cpu_idle: state=0 cpu_id=0
98591<...>-770 ( 770) [005] .... 82316.932904: binder_transaction_received: transaction=1571643
98592  crtc_event:111-322   (  322) [003] d..2 82316.932920: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98593<...>-770 ( 770) [005] ...1 82316.932921: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
98594          <idle>-0     (-----) [003] d..1 82316.932930: cpu_idle: state=0 cpu_id=3
98595<...>-770 ( 770) [005] d..2 82316.932980: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
98596          <idle>-0     (-----) [001] dnh2 82316.933004: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
98597          <idle>-0     (-----) [001] .n.1 82316.933010: cpu_idle: state=4294967295 cpu_id=1
98598<...>-770 ( 770) [005] ...1 82316.933013: tracing_mark_write: E|770
98599<...>-770 ( 770) [005] .... 82316.933021: binder_transaction: transaction=1571644 dest_node=0 dest_proc=27550 dest_thread=27793 reply=1 flags=0x0 code=0x0
98600          <idle>-0     (-----) [001] d..2 82316.933021: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
98601<...>-770 ( 770) [005] .... 82316.933023: binder_transaction_alloc_buf: transaction=1571644 data_size=168 offsets_size=32
98602<...>-770 ( 770) [005] .... 82316.933029: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
98603<...>-770 ( 770) [005] d..2 82316.933063: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27793 next_prio=110
98604           <...>-27793 (-----) [005] .... 82316.933074: binder_transaction_received: transaction=1571644
98605<...>-581 ( 571) [001] d..2 82316.933083: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98606          <idle>-0     (-----) [001] d..1 82316.933094: cpu_idle: state=0 cpu_id=1
98607           <...>-27793 (-----) [005] ...1 82316.933350: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
98608           <...>-27793 (-----) [005] ...1 82316.933359: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
98609           <...>-27793 (-----) [005] ...1 82316.933364: tracing_mark_write: E|27550
98610           <...>-27793 (-----) [005] .... 82316.933428: binder_transaction: transaction=1571645 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
98611           <...>-27793 (-----) [005] .... 82316.933430: binder_transaction_alloc_buf: transaction=1571645 data_size=556 offsets_size=104
98612           <...>-27793 (-----) [005] ...2 82316.933445: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
98613           <...>-27793 (-----) [005] d..4 82316.933447: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98614           <...>-27793 (-----) [005] dn.5 82316.933459: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98615           <...>-27793 (-----) [005] d..2 82316.933466: sched_switch: prev_comm=id.nn.benchmark prev_pid=27793 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98616<...>-5340 ( 788) [005] .... 82316.933476: binder_transaction_received: transaction=1571645
98617<...>-5340 ( 788) [005] ...1 82316.933522: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
98618<...>-5340 ( 788) [005] d..2 82316.933566: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
98619<...>-5340 ( 788) [005] d..2 82316.933603: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27793 next_prio=110
98620          <idle>-0     (-----) [000] dnh2 82316.933607: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
98621          <idle>-0     (-----) [000] .n.1 82316.933613: cpu_idle: state=4294967295 cpu_id=0
98622          <idle>-0     (-----) [000] d..2 82316.933625: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
98623           <...>-27793 (-----) [005] d..2 82316.933626: sched_switch: prev_comm=id.nn.benchmark prev_pid=27793 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
98624          <idle>-0     (-----) [005] d..1 82316.933644: cpu_idle: state=0 cpu_id=5
98625<...>-87 ( 87) [000] d..2 82316.933670: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98626          <idle>-0     (-----) [002] d.h4 82316.933674: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98627          <idle>-0     (-----) [000] d..1 82316.933684: cpu_idle: state=0 cpu_id=0
98628          <idle>-0     (-----) [002] d.h5 82316.933712: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
98629          <idle>-0     (-----) [000] .n.1 82316.933719: cpu_idle: state=4294967295 cpu_id=0
98630          <idle>-0     (-----) [002] ...1 82316.933724: cpu_idle: state=4294967295 cpu_id=2
98631          <idle>-0     (-----) [002] d..1 82316.933730: cpu_idle: state=0 cpu_id=2
98632          <idle>-0     (-----) [000] d..2 82316.933730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
98633          <idle>-0     (-----) [002] d.h4 82316.933763: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98634          <idle>-0     (-----) [005] dnh2 82316.933784: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98635          <idle>-0     (-----) [005] .n.1 82316.933788: cpu_idle: state=4294967295 cpu_id=5
98636          <idle>-0     (-----) [005] d..2 82316.933796: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98637          <idle>-0     (-----) [002] ...1 82316.933800: cpu_idle: state=4294967295 cpu_id=2
98638          <idle>-0     (-----) [002] d..1 82316.933805: cpu_idle: state=0 cpu_id=2
98639<...>-86 ( 86) [000] d..2 82316.933811: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98640          <idle>-0     (-----) [000] d..1 82316.933824: cpu_idle: state=0 cpu_id=0
98641<...>-5340 ( 788) [005] d..1 82316.933849: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98642          <idle>-0     (-----) [000] dnh2 82316.933877: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98643          <idle>-0     (-----) [000] .n.1 82316.933884: cpu_idle: state=4294967295 cpu_id=0
98644          <idle>-0     (-----) [000] d..2 82316.933894: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
98645 neuralnetworks@-13088 (  788) [000] d..2 82316.933936: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98646          <idle>-0     (-----) [000] d..1 82316.933949: cpu_idle: state=0 cpu_id=0
98647<...>-5340 ( 788) [005] d..2 82316.933997: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
98648          <idle>-0     (-----) [000] dnh2 82316.934019: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
98649<...>-5340 ( 788) [005] d..2 82316.934023: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
98650          <idle>-0     (-----) [000] .n.1 82316.934026: cpu_idle: state=4294967295 cpu_id=0
98651          <idle>-0     (-----) [000] d..2 82316.934036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
98652          <idle>-0     (-----) [005] d..1 82316.934037: cpu_idle: state=0 cpu_id=5
98653          <idle>-0     (-----) [002] d.h4 82316.934074: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
98654<...>-87 ( 87) [000] d..2 82316.934075: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98655          <idle>-0     (-----) [002] d.h5 82316.934090: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
98656          <idle>-0     (-----) [000] d..2 82316.934098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
98657          <idle>-0     (-----) [002] ...1 82316.934109: cpu_idle: state=4294967295 cpu_id=2
98658          <idle>-0     (-----) [002] d..1 82316.934115: cpu_idle: state=0 cpu_id=2
98659<...>-86 ( 86) [000] d..2 82316.934138: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98660          <idle>-0     (-----) [000] d..1 82316.934147: cpu_idle: state=0 cpu_id=0
98661          <idle>-0     (-----) [005] ...1 82316.934358: cpu_idle: state=4294967295 cpu_id=5
98662          <idle>-0     (-----) [005] d..1 82316.934362: cpu_idle: state=0 cpu_id=5
98663          <idle>-0     (-----) [001] d.h2 82316.934664: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
98664          <idle>-0     (-----) [001] dnh3 82316.934681: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
98665          <idle>-0     (-----) [001] .n.1 82316.934690: cpu_idle: state=4294967295 cpu_id=1
98666          <idle>-0     (-----) [001] d..2 82316.934700: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
98667        DispSync-8879  ( 8858) [001] d..1 82316.934724: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
98668        DispSync-8879  ( 8858) [001] d..2 82316.934741: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
98669          <idle>-0     (-----) [003] .n.1 82316.934746: cpu_idle: state=4294967295 cpu_id=3
98670          <idle>-0     (-----) [003] d..2 82316.934756: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
98671        DispSync-8879  ( 8858) [001] d..2 82316.934775: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98672          <idle>-0     (-----) [001] d..1 82316.934788: cpu_idle: state=0 cpu_id=1
98673  appEventThread-8881  ( 8858) [003] d..3 82316.934807: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
98674  appEventThread-8881  ( 8858) [003] d..4 82316.934835: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
98675          <idle>-0     (-----) [000] .n.1 82316.934841: cpu_idle: state=4294967295 cpu_id=0
98676          <idle>-0     (-----) [000] d..2 82316.934853: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
98677  appEventThread-8881  ( 8858) [003] d..2 82316.934876: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98678          <idle>-0     (-----) [003] d..1 82316.934889: cpu_idle: state=0 cpu_id=3
98679<...>-9105 ( 9105) [000] d.s2 82316.935159: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
98680<...>-9105 ( 9105) [000] d.s3 82316.935203: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
98681<...>-9105 ( 9105) [000] .... 82316.935305: binder_transaction: transaction=1571648 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
98682<...>-9105 ( 9105) [000] .... 82316.935312: binder_transaction_alloc_buf: transaction=1571648 data_size=80 offsets_size=0
98683<...>-9105 ( 9105) [000] d..4 82316.935318: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
98684<...>-9105 ( 9105) [000] d..5 82316.935341: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
98685          <idle>-0     (-----) [001] .n.1 82316.935347: cpu_idle: state=4294967295 cpu_id=1
98686          <idle>-0     (-----) [001] d..2 82316.935362: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
98687<...>-13083 ( 8858) [001] .... 82316.935370: binder_transaction_received: transaction=1571648
98688<...>-9105 ( 9105) [000] d..3 82316.935379: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
98689<...>-13083 ( 8858) [001] d..1 82316.935406: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
98690<...>-9105 ( 9105) [000] d..4 82316.935406: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
98691          <idle>-0     (-----) [002] .n.1 82316.935411: cpu_idle: state=4294967295 cpu_id=2
98692<...>-13083 ( 8858) [001] d..2 82316.935423: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
98693          <idle>-0     (-----) [002] d..2 82316.935426: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
98694          <idle>-0     (-----) [003] .n.1 82316.935429: cpu_idle: state=4294967295 cpu_id=3
98695          <idle>-0     (-----) [003] d..2 82316.935441: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
98696<...>-13083 ( 8858) [001] d..2 82316.935472: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98697          <idle>-0     (-----) [001] d..1 82316.935483: cpu_idle: state=0 cpu_id=1
98698    RenderThread-9436  ( 9105) [002] d..2 82316.935497: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98699  appEventThread-8881  ( 8858) [003] d..2 82316.935500: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
98700          <idle>-0     (-----) [002] d..1 82316.935510: cpu_idle: state=0 cpu_id=2
98701<...>-9105 ( 9105) [000] d..3 82316.935530: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
98702<...>-9105 ( 9105) [000] d..4 82316.935548: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
98703          <idle>-0     (-----) [002] .n.1 82316.935554: cpu_idle: state=4294967295 cpu_id=2
98704          <idle>-0     (-----) [002] d..2 82316.935566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
98705  kworker/u16:15-1311  ( 1311) [003] d..2 82316.935571: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98706          <idle>-0     (-----) [003] d..1 82316.935580: cpu_idle: state=0 cpu_id=3
98707<...>-9105 ( 9105) [000] d..2 82316.935584: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98708          <idle>-0     (-----) [000] d..1 82316.935605: cpu_idle: state=0 cpu_id=0
98709    RenderThread-9436  ( 9105) [002] d..1 82316.935690: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
98710    RenderThread-9436  ( 9105) [002] d..2 82316.935710: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
98711          <idle>-0     (-----) [000] .n.1 82316.935717: cpu_idle: state=4294967295 cpu_id=0
98712          <idle>-0     (-----) [000] d..2 82316.935730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
98713    RenderThread-9436  ( 9105) [002] d.h4 82316.935734: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98714          <idle>-0     (-----) [005] dnh2 82316.935753: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98715          <idle>-0     (-----) [005] .n.1 82316.935758: cpu_idle: state=4294967295 cpu_id=5
98716<...>-9105 ( 9105) [000] d..2 82316.935761: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98717          <idle>-0     (-----) [005] d..2 82316.935767: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98718          <idle>-0     (-----) [000] d..1 82316.935774: cpu_idle: state=0 cpu_id=0
98719    RenderThread-9436  ( 9105) [002] d..1 82316.935774: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
98720    RenderThread-9436  ( 9105) [002] d..2 82316.935788: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
98721          <idle>-0     (-----) [000] .n.1 82316.935794: cpu_idle: state=4294967295 cpu_id=0
98722          <idle>-0     (-----) [000] d..2 82316.935805: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
98723<...>-5340 ( 788) [005] d..1 82316.935816: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98724<...>-9105 ( 9105) [000] dnh1 82316.935840: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98725<...>-9105 ( 9105) [000] d..2 82316.935854: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
98726    RenderThread-9436  ( 9105) [002] .... 82316.935862: binder_transaction: transaction=1571649 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
98727    RenderThread-9436  ( 9105) [002] .... 82316.935897: binder_transaction_alloc_buf: transaction=1571649 data_size=104 offsets_size=0
98728    RenderThread-9436  ( 9105) [002] d..4 82316.935903: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
98729<...>-5340 ( 788) [005] ...1 82316.935909: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
98730<...>-5340 ( 788) [005] ...1 82316.935913: tracing_mark_write: E|788
98731 neuralnetworks@-13088 (  788) [000] d..2 82316.935918: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
98732    RenderThread-9436  ( 9105) [002] dn.5 82316.935925: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
98733<...>-5340 ( 788) [005] .... 82316.935930: binder_transaction: transaction=1571650 dest_node=1571646 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
98734<...>-5340 ( 788) [005] .... 82316.935933: binder_transaction_alloc_buf: transaction=1571650 data_size=60 offsets_size=0
98735    RenderThread-9436  ( 9105) [002] d..2 82316.935935: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
98736<...>-5340 ( 788) [005] d..4 82316.935936: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
98737<...>-13083 ( 8858) [002] .... 82316.935944: binder_transaction_received: transaction=1571649
98738<...>-5340 ( 788) [005] d..5 82316.935950: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
98739          <idle>-0     (-----) [004] .n.1 82316.935956: cpu_idle: state=4294967295 cpu_id=4
98740          <idle>-0     (-----) [004] d..2 82316.935964: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
98741           <...>-27571 (-----) [004] .... 82316.935969: binder_transaction_received: transaction=1571650
98742<...>-5340 ( 788) [005] ...1 82316.935974: tracing_mark_write: E|788
98743<...>-5340 ( 788) [005] .... 82316.935980: binder_transaction: transaction=1571651 dest_node=0 dest_proc=27550 dest_thread=27793 reply=1 flags=0x0 code=0x0
98744<...>-5340 ( 788) [005] .... 82316.935982: binder_transaction_alloc_buf: transaction=1571651 data_size=8 offsets_size=0
98745<...>-5340 ( 788) [005] d..2 82316.935984: sched_waking: comm=id.nn.benchmark pid=27793 prio=110 target_cpu=005
98746           <...>-27571 (-----) [004] ...1 82316.935987: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
98747<...>-9105 ( 9105) [000] d..2 82316.935988: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98748<...>-5340 ( 788) [005] d..3 82316.935991: sched_wakeup: comm=id.nn.benchmark pid=27793 prio=110 target_cpu=005
98749<...>-5340 ( 788) [005] .... 82316.935993: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
98750           <...>-27571 (-----) [004] ...1 82316.935994: tracing_mark_write: E|27550
98751          <idle>-0     (-----) [000] d..1 82316.936006: cpu_idle: state=0 cpu_id=0
98752           <...>-27571 (-----) [004] d..2 82316.936022: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98753<...>-13083 ( 8858) [002] .... 82316.936028: binder_transaction: transaction=1571652 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
98754          <idle>-0     (-----) [004] d..1 82316.936029: cpu_idle: state=0 cpu_id=4
98755<...>-13083 ( 8858) [002] .... 82316.936033: binder_transaction_alloc_buf: transaction=1571652 data_size=52 offsets_size=8
98756<...>-5340 ( 788) [005] d..2 82316.936035: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27793 next_prio=110
98757           <...>-27793 (-----) [005] .... 82316.936045: binder_transaction_received: transaction=1571651
98758           <...>-27793 (-----) [005] ...1 82316.936082: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
98759<...>-13083 ( 8858) [002] d..2 82316.936086: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
98760           <...>-27793 (-----) [005] ...1 82316.936088: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
98761    RenderThread-9436  ( 9105) [002] .... 82316.936096: binder_transaction_received: transaction=1571652
98762           <...>-27793 (-----) [005] ...1 82316.936113: tracing_mark_write: E|27550
98763           <...>-27793 (-----) [005] ...1 82316.936117: tracing_mark_write: E|27550
98764           <...>-27793 (-----) [005] ...1 82316.936120: tracing_mark_write: E|27550
98765           <...>-27793 (-----) [005] ...1 82316.936307: tracing_mark_write: E|27550
98766           <...>-27793 (-----) [005] d..1 82316.936319: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98767           <...>-27793 (-----) [005] d..2 82316.936337: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98768          <idle>-0     (-----) [004] .n.1 82316.936341: cpu_idle: state=4294967295 cpu_id=4
98769          <idle>-0     (-----) [004] d..2 82316.936348: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
98770           <...>-27550 (-----) [004] d..2 82316.936367: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98771          <idle>-0     (-----) [004] d..1 82316.936376: cpu_idle: state=0 cpu_id=4
98772           <...>-27793 (-----) [005] d..1 82316.936424: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98773           <...>-27793 (-----) [005] d..2 82316.936433: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
98774          <idle>-0     (-----) [004] .n.1 82316.936439: cpu_idle: state=4294967295 cpu_id=4
98775          <idle>-0     (-----) [004] d..2 82316.936447: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
98776           <...>-27793 (-----) [005] d..2 82316.936470: sched_switch: prev_comm=id.nn.benchmark prev_pid=27793 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
98777          <idle>-0     (-----) [005] d..1 82316.936492: cpu_idle: state=0 cpu_id=5
98778           <...>-27550 (-----) [004] ...1 82316.936494: tracing_mark_write: E|27550
98779           <...>-27550 (-----) [004] ...1 82316.936498: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
98780           <...>-27550 (-----) [004] ...1 82316.936504: tracing_mark_write: E|27550
98781           <...>-27550 (-----) [004] ...1 82316.936507: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
98782           <...>-27550 (-----) [004] ...1 82316.936512: tracing_mark_write: E|27550
98783           <...>-27550 (-----) [004] ...1 82316.936516: tracing_mark_write: E|27550
98784           <...>-27550 (-----) [004] ...1 82316.936628: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
98785           <...>-27550 (-----) [004] ...1 82316.936686: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
98786           <...>-27550 (-----) [004] ...1 82316.936691: tracing_mark_write: E|27550
98787           <...>-27550 (-----) [004] ...1 82316.936694: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
98788           <...>-27550 (-----) [004] ...1 82316.936699: tracing_mark_write: E|27550
98789           <...>-27550 (-----) [004] ...1 82316.936703: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
98790           <...>-27550 (-----) [004] ...1 82316.936707: tracing_mark_write: E|27550
98791           <...>-27550 (-----) [004] ...1 82316.936711: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
98792          <idle>-0     (-----) [005] .n.1 82316.936799: cpu_idle: state=4294967295 cpu_id=5
98793           <...>-27550 (-----) [004] ...1 82316.936800: tracing_mark_write: E|27550
98794           <...>-27550 (-----) [004] ...1 82316.936805: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
98795          <idle>-0     (-----) [005] d..2 82316.936808: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27794 next_prio=110
98796           <...>-27550 (-----) [004] d..2 82316.936822: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
98797          <idle>-0     (-----) [004] d..1 82316.936837: cpu_idle: state=0 cpu_id=4
98798           <...>-27794 (-----) [005] ...1 82316.936869: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
98799           <...>-27794 (-----) [005] ...1 82316.936883: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
98800           <...>-27794 (-----) [005] ...1 82316.936887: tracing_mark_write: E|27550
98801           <...>-27794 (-----) [005] .... 82316.936907: binder_transaction: transaction=1571653 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
98802           <...>-27794 (-----) [005] .... 82316.936911: binder_transaction_alloc_buf: transaction=1571653 data_size=48 offsets_size=0
98803           <...>-27794 (-----) [005] ...2 82316.936914: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
98804           <...>-27794 (-----) [005] d..4 82316.936916: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
98805           <...>-27794 (-----) [005] dn.5 82316.936927: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
98806           <...>-27794 (-----) [005] d..2 82316.936934: sched_switch: prev_comm=id.nn.benchmark prev_pid=27794 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
98807<...>-770 ( 770) [005] .... 82316.936944: binder_transaction_received: transaction=1571653
98808<...>-770 ( 770) [005] ...1 82316.936968: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
98809<...>-770 ( 770) [005] d..2 82316.937043: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
98810<...>-770 ( 770) [005] ...1 82316.937100: tracing_mark_write: E|770
98811<...>-770 ( 770) [005] .... 82316.937108: binder_transaction: transaction=1571654 dest_node=0 dest_proc=27550 dest_thread=27794 reply=1 flags=0x0 code=0x0
98812<...>-770 ( 770) [005] .... 82316.937111: binder_transaction_alloc_buf: transaction=1571654 data_size=168 offsets_size=32
98813<...>-770 ( 770) [005] .... 82316.937118: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
98814    RenderThread-9436  ( 9105) [002] d.h2 82316.937120: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
98815<...>-770 ( 770) [005] d..2 82316.937155: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27794 next_prio=110
98816    RenderThread-9436  ( 9105) [002] d..2 82316.937157: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
98817           <...>-27794 (-----) [005] .... 82316.937166: binder_transaction_received: transaction=1571654
98818          <idle>-0     (-----) [000] ...1 82316.937204: cpu_idle: state=4294967295 cpu_id=0
98819          <idle>-0     (-----) [000] d..1 82316.937210: cpu_idle: state=0 cpu_id=0
98820           <...>-27794 (-----) [005] ...1 82316.937238: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
98821           <...>-27794 (-----) [005] ...1 82316.937243: tracing_mark_write: E|27550
98822<...>-581 ( 571) [002] d..2 82316.937255: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98823           <...>-27794 (-----) [005] .... 82316.937258: binder_transaction: transaction=1571655 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
98824           <...>-27794 (-----) [005] .... 82316.937260: binder_transaction_alloc_buf: transaction=1571655 data_size=48 offsets_size=0
98825           <...>-27794 (-----) [005] ...2 82316.937263: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
98826           <...>-27794 (-----) [005] d..4 82316.937265: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
98827          <idle>-0     (-----) [002] d.h3 82316.937268: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
98828          <idle>-0     (-----) [000] d.h3 82316.937273: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
98829           <...>-27794 (-----) [005] dn.5 82316.937275: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
98830          <idle>-0     (-----) [002] d.h4 82316.937278: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
98831           <...>-27794 (-----) [005] d..2 82316.937281: sched_switch: prev_comm=id.nn.benchmark prev_pid=27794 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
98832          <idle>-0     (-----) [002] dnh4 82316.937283: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
98833<...>-770 ( 770) [005] .... 82316.937289: binder_transaction_received: transaction=1571655
98834          <idle>-0     (-----) [000] d.h4 82316.937296: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
98835          <idle>-0     (-----) [002] d..2 82316.937298: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
98836          <idle>-0     (-----) [003] .n.1 82316.937302: cpu_idle: state=4294967295 cpu_id=3
98837<...>-770 ( 770) [005] ...1 82316.937306: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
98838          <idle>-0     (-----) [003] d..2 82316.937310: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
98839          <idle>-0     (-----) [000] ...1 82316.937312: cpu_idle: state=4294967295 cpu_id=0
98840          <idle>-0     (-----) [000] d..1 82316.937319: cpu_idle: state=0 cpu_id=0
98841<...>-770 ( 770) [005] d..2 82316.937364: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
98842 kgsl_worker_thr-258   (  258) [003] d..2 82316.937365: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
98843 kgsl_worker_thr-258   (  258) [003] d..3 82316.937384: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
98844 kgsl_worker_thr-258   (  258) [003] d..2 82316.937405: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
98845  kworker/u16:15-1311  ( 1311) [003] d.h3 82316.937415: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
98846<...>-770 ( 770) [005] ...1 82316.937417: tracing_mark_write: E|770
98847<...>-770 ( 770) [005] .... 82316.937425: binder_transaction: transaction=1571656 dest_node=0 dest_proc=27550 dest_thread=27794 reply=1 flags=0x0 code=0x0
98848<...>-770 ( 770) [005] .... 82316.937427: binder_transaction_alloc_buf: transaction=1571656 data_size=168 offsets_size=32
98849<...>-770 ( 770) [005] .... 82316.937433: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
98850<...>-770 ( 770) [005] d..2 82316.937467: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27794 next_prio=110
98851           <...>-27794 (-----) [005] .... 82316.937478: binder_transaction_received: transaction=1571656
98852    RenderThread-9436  ( 9105) [002] .... 82316.937512: binder_transaction: transaction=1571657 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
98853    RenderThread-9436  ( 9105) [002] .... 82316.937518: binder_transaction_alloc_buf: transaction=1571657 data_size=192 offsets_size=8
98854    RenderThread-9436  ( 9105) [002] d..4 82316.937529: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
98855    RenderThread-9436  ( 9105) [002] dn.5 82316.937546: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
98856    RenderThread-9436  ( 9105) [002] d..2 82316.937556: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
98857<...>-13083 ( 8858) [002] .... 82316.937565: binder_transaction_received: transaction=1571657
98858  kworker/u16:15-1311  ( 1311) [003] d..2 82316.937607: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
98859<...>-581 ( 571) [003] d..2 82316.937687: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98860          <idle>-0     (-----) [003] d..1 82316.937700: cpu_idle: state=0 cpu_id=3
98861<...>-13083 ( 8858) [002] .... 82316.937722: binder_transaction: transaction=1571658 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
98862<...>-13083 ( 8858) [002] .... 82316.937727: binder_transaction_alloc_buf: transaction=1571658 data_size=68 offsets_size=0
98863           <...>-27794 (-----) [005] ...1 82316.937753: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
98864           <...>-27794 (-----) [005] ...1 82316.937763: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
98865           <...>-27794 (-----) [005] ...1 82316.937767: tracing_mark_write: E|27550
98866<...>-13083 ( 8858) [002] d..2 82316.937772: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
98867    RenderThread-9436  ( 9105) [002] .... 82316.937782: binder_transaction_received: transaction=1571658
98868           <...>-27794 (-----) [005] .... 82316.937830: binder_transaction: transaction=1571659 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
98869           <...>-27794 (-----) [005] .... 82316.937833: binder_transaction_alloc_buf: transaction=1571659 data_size=556 offsets_size=104
98870           <...>-27794 (-----) [005] ...2 82316.937848: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
98871           <...>-27794 (-----) [005] d..4 82316.937850: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98872           <...>-27794 (-----) [005] dn.5 82316.937861: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98873           <...>-27794 (-----) [005] d..2 82316.937868: sched_switch: prev_comm=id.nn.benchmark prev_pid=27794 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98874    RenderThread-9436  ( 9105) [002] d..2 82316.937873: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98875<...>-5340 ( 788) [005] .... 82316.937878: binder_transaction_received: transaction=1571659
98876          <idle>-0     (-----) [002] d..1 82316.937892: cpu_idle: state=0 cpu_id=2
98877<...>-5340 ( 788) [005] ...1 82316.937925: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
98878<...>-5340 ( 788) [005] d..2 82316.937974: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
98879<...>-5340 ( 788) [005] d..2 82316.937999: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27794 next_prio=110
98880          <idle>-0     (-----) [000] dnh2 82316.938003: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
98881          <idle>-0     (-----) [000] .n.1 82316.938010: cpu_idle: state=4294967295 cpu_id=0
98882          <idle>-0     (-----) [000] d..2 82316.938021: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
98883           <...>-27794 (-----) [005] d..2 82316.938022: sched_switch: prev_comm=id.nn.benchmark prev_pid=27794 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
98884          <idle>-0     (-----) [005] d..1 82316.938040: cpu_idle: state=0 cpu_id=5
98885<...>-87 ( 87) [000] d..2 82316.938069: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98886          <idle>-0     (-----) [002] d.h4 82316.938080: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
98887          <idle>-0     (-----) [000] d..1 82316.938082: cpu_idle: state=0 cpu_id=0
98888          <idle>-0     (-----) [002] dnh5 82316.938116: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98889          <idle>-0     (-----) [002] .n.1 82316.938127: cpu_idle: state=4294967295 cpu_id=2
98890          <idle>-0     (-----) [002] d..2 82316.938140: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
98891<...>-86 ( 86) [002] d.h5 82316.938163: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98892          <idle>-0     (-----) [005] dnh2 82316.938185: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98893          <idle>-0     (-----) [005] .n.1 82316.938190: cpu_idle: state=4294967295 cpu_id=5
98894          <idle>-0     (-----) [005] d..2 82316.938198: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98895<...>-86 ( 86) [002] d..2 82316.938235: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98896          <idle>-0     (-----) [002] d..1 82316.938250: cpu_idle: state=0 cpu_id=2
98897<...>-5340 ( 788) [005] d..1 82316.938253: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98898          <idle>-0     (-----) [000] dnh2 82316.938278: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98899          <idle>-0     (-----) [000] .n.1 82316.938285: cpu_idle: state=4294967295 cpu_id=0
98900          <idle>-0     (-----) [000] d..2 82316.938296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
98901 neuralnetworks@-13088 (  788) [000] d..2 82316.938345: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98902          <idle>-0     (-----) [000] d..1 82316.938360: cpu_idle: state=0 cpu_id=0
98903<...>-5340 ( 788) [005] d..2 82316.938399: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
98904          <idle>-0     (-----) [000] dnh2 82316.938421: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
98905<...>-5340 ( 788) [005] d..2 82316.938424: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
98906          <idle>-0     (-----) [000] .n.1 82316.938428: cpu_idle: state=4294967295 cpu_id=0
98907          <idle>-0     (-----) [005] d..1 82316.938439: cpu_idle: state=0 cpu_id=5
98908          <idle>-0     (-----) [000] d..2 82316.938439: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
98909          <idle>-0     (-----) [001] d.s2 82316.938471: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
98910          <idle>-0     (-----) [003] d.s2 82316.938472: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98911<...>-87 ( 87) [000] d.s4 82316.938483: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
98912          <idle>-0     (-----) [001] dns3 82316.938490: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
98913          <idle>-0     (-----) [003] dns3 82316.938493: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
98914<...>-87 ( 87) [000] d.s5 82316.938501: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
98915          <idle>-0     (-----) [001] .n.1 82316.938512: cpu_idle: state=4294967295 cpu_id=1
98916          <idle>-0     (-----) [001] d..2 82316.938522: 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
98917          <idle>-0     (-----) [003] .n.1 82316.938524: cpu_idle: state=4294967295 cpu_id=3
98918          <idle>-0     (-----) [003] d..2 82316.938534: 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
98919          <idle>-0     (-----) [002] d.h4 82316.938552: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98920     rcu_preempt-7     (    7) [003] d..2 82316.938560: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
98921          <idle>-0     (-----) [002] dnh5 82316.938563: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
98922<...>-87 ( 87) [000] d..2 82316.938564: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98923<...>-8 ( 8) [001] d..2 82316.938565: 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
98924          <idle>-0     (-----) [002] .n.1 82316.938573: cpu_idle: state=4294967295 cpu_id=2
98925          <idle>-0     (-----) [001] d..1 82316.938576: cpu_idle: state=0 cpu_id=1
98926          <idle>-0     (-----) [000] d..1 82316.938579: cpu_idle: state=0 cpu_id=0
98927          <idle>-0     (-----) [002] d..2 82316.938586: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
98928          <idle>-0     (-----) [000] ...1 82316.938599: cpu_idle: state=4294967295 cpu_id=0
98929          <idle>-0     (-----) [000] d..1 82316.938604: cpu_idle: state=0 cpu_id=0
98930<...>-86 ( 86) [002] d..2 82316.938621: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
98931          <idle>-0     (-----) [002] d..1 82316.938655: cpu_idle: state=0 cpu_id=2
98932          <idle>-0     (-----) [001] d.h2 82316.938661: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
98933          <idle>-0     (-----) [002] ...1 82316.938672: cpu_idle: state=4294967295 cpu_id=2
98934          <idle>-0     (-----) [001] dnh3 82316.938674: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
98935          <idle>-0     (-----) [002] d..1 82316.938676: cpu_idle: state=0 cpu_id=2
98936          <idle>-0     (-----) [001] .n.1 82316.938682: cpu_idle: state=4294967295 cpu_id=1
98937  kworker/u16:15-1311  ( 1311) [003] .... 82316.938685: clk_set_rate: l3_cluster0_vote_clk 300000000
98938          <idle>-0     (-----) [001] d..2 82316.938692: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
98939        DispSync-8879  ( 8858) [001] d..1 82316.938709: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
98940        DispSync-8879  ( 8858) [001] d..2 82316.938733: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
98941          <idle>-0     (-----) [000] .n.1 82316.938738: cpu_idle: state=4294967295 cpu_id=0
98942          <idle>-0     (-----) [000] d..2 82316.938749: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
98943          <idle>-0     (-----) [005] ...1 82316.938766: cpu_idle: state=4294967295 cpu_id=5
98944          <idle>-0     (-----) [005] d..1 82316.938770: cpu_idle: state=0 cpu_id=5
98945        DispSync-8879  ( 8858) [001] d..2 82316.938783: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
98946   sfEventThread-8882  ( 8858) [000] d..3 82316.938794: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
98947          <idle>-0     (-----) [001] d..1 82316.938796: cpu_idle: state=0 cpu_id=1
98948   sfEventThread-8882  ( 8858) [000] d..4 82316.938824: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
98949          <idle>-0     (-----) [001] .n.1 82316.938829: cpu_idle: state=4294967295 cpu_id=1
98950          <idle>-0     (-----) [001] d..2 82316.938840: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
98951   sfEventThread-8882  ( 8858) [000] d..2 82316.938861: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98952          <idle>-0     (-----) [000] d..1 82316.938877: cpu_idle: state=0 cpu_id=0
98953  kworker/u16:15-1311  ( 1311) [003] d..2 82316.938942: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
98954          <idle>-0     (-----) [003] d..1 82316.938959: cpu_idle: state=0 cpu_id=3
98955  surfaceflinger-8858  ( 8858) [001] d.s1 82316.938962: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
98956  surfaceflinger-8858  ( 8858) [001] d.s2 82316.938979: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
98957  surfaceflinger-8858  ( 8858) [001] d..1 82316.939255: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
98958  surfaceflinger-8858  ( 8858) [001] d..2 82316.939275: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
98959          <idle>-0     (-----) [000] .n.1 82316.939282: cpu_idle: state=4294967295 cpu_id=0
98960          <idle>-0     (-----) [000] d..2 82316.939292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
98961   sfEventThread-8882  ( 8858) [000] d..2 82316.939328: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98962          <idle>-0     (-----) [000] d..1 82316.939341: cpu_idle: state=0 cpu_id=0
98963  surfaceflinger-8858  ( 8858) [001] ...1 82316.939468: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
98964  surfaceflinger-8858  ( 8858) [001] ...1 82316.939475: tracing_mark_write: E|8858
98965  surfaceflinger-8858  ( 8858) [001] .... 82316.939526: binder_transaction: transaction=1571662 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
98966  surfaceflinger-8858  ( 8858) [001] .... 82316.939531: binder_transaction_alloc_buf: transaction=1571662 data_size=540 offsets_size=96
98967  surfaceflinger-8858  ( 8858) [001] ...2 82316.939556: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
98968  surfaceflinger-8858  ( 8858) [001] d..4 82316.939565: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
98969  surfaceflinger-8858  ( 8858) [001] d..5 82316.939585: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
98970          <idle>-0     (-----) [002] .n.1 82316.939589: cpu_idle: state=4294967295 cpu_id=2
98971          <idle>-0     (-----) [002] d..2 82316.939600: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
98972  surfaceflinger-8858  ( 8858) [001] d..2 82316.939606: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
98973 [email protected]   (  619) [002] .... 82316.939612: binder_transaction_received: transaction=1571662
98974     ksoftirqd/1-18    (   18) [001] d.s2 82316.939626: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
98975     ksoftirqd/1-18    (   18) [001] d.s3 82316.939638: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
98976     ksoftirqd/1-18    (   18) [001] d.s3 82316.939646: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
98977          <idle>-0     (-----) [003] .n.1 82316.939653: cpu_idle: state=4294967295 cpu_id=3
98978 [email protected]   (  619) [002] ...1 82316.939659: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
98979          <idle>-0     (-----) [003] d..2 82316.939665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
98980     ksoftirqd/1-18    (   18) [001] d..2 82316.939674: 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
98981          <idle>-0     (-----) [001] d..1 82316.939691: cpu_idle: state=0 cpu_id=1
98982  kworker/u16:15-1311  ( 1311) [003] d..2 82316.939717: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
98983          <idle>-0     (-----) [003] d..1 82316.939728: cpu_idle: state=0 cpu_id=3
98984 [email protected]   (  619) [002] ...1 82316.939769: tracing_mark_write: B|619|HWCSession::PresentDisplay::
98985 [email protected]   (  619) [002] ...1 82316.939948: tracing_mark_write: B|619|HWDeviceDRM::Commit::
98986 [email protected]   (  619) [002] ...1 82316.939961: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
98987 [email protected]   (  619) [002] d.h3 82316.940211: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98988          <idle>-0     (-----) [005] dnh2 82316.940235: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
98989          <idle>-0     (-----) [005] .n.1 82316.940239: cpu_idle: state=4294967295 cpu_id=5
98990          <idle>-0     (-----) [005] d..2 82316.940247: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
98991<...>-5340 ( 788) [005] d..1 82316.940306: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98992          <idle>-0     (-----) [000] dnh2 82316.940332: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
98993          <idle>-0     (-----) [000] .n.1 82316.940339: cpu_idle: state=4294967295 cpu_id=0
98994          <idle>-0     (-----) [000] d..2 82316.940350: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
98995<...>-5340 ( 788) [005] ...1 82316.940398: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
98996<...>-5340 ( 788) [005] ...1 82316.940403: tracing_mark_write: E|788
98997<...>-5340 ( 788) [005] .... 82316.940420: binder_transaction: transaction=1571663 dest_node=1571660 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
98998 neuralnetworks@-13088 (  788) [000] d..2 82316.940421: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
98999<...>-5340 ( 788) [005] .... 82316.940423: binder_transaction_alloc_buf: transaction=1571663 data_size=60 offsets_size=0
99000<...>-5340 ( 788) [005] d..4 82316.940427: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
99001          <idle>-0     (-----) [000] d..1 82316.940435: cpu_idle: state=0 cpu_id=0
99002<...>-5340 ( 788) [005] d..5 82316.940440: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
99003          <idle>-0     (-----) [004] .n.1 82316.940445: cpu_idle: state=4294967295 cpu_id=4
99004          <idle>-0     (-----) [004] d..2 82316.940454: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
99005           <...>-27571 (-----) [004] .... 82316.940459: binder_transaction_received: transaction=1571663
99006<...>-5340 ( 788) [005] ...1 82316.940463: tracing_mark_write: E|788
99007<...>-5340 ( 788) [005] .... 82316.940470: binder_transaction: transaction=1571664 dest_node=0 dest_proc=27550 dest_thread=27794 reply=1 flags=0x0 code=0x0
99008<...>-5340 ( 788) [005] .... 82316.940472: binder_transaction_alloc_buf: transaction=1571664 data_size=8 offsets_size=0
99009<...>-5340 ( 788) [005] d..2 82316.940474: sched_waking: comm=id.nn.benchmark pid=27794 prio=110 target_cpu=005
99010           <...>-27571 (-----) [004] ...1 82316.940478: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
99011<...>-5340 ( 788) [005] d..3 82316.940481: sched_wakeup: comm=id.nn.benchmark pid=27794 prio=110 target_cpu=005
99012<...>-5340 ( 788) [005] .... 82316.940483: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
99013           <...>-27571 (-----) [004] ...1 82316.940485: tracing_mark_write: E|27550
99014           <...>-27571 (-----) [004] d..2 82316.940514: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99015          <idle>-0     (-----) [004] d..1 82316.940522: cpu_idle: state=0 cpu_id=4
99016<...>-5340 ( 788) [005] d..2 82316.940525: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27794 next_prio=110
99017           <...>-27794 (-----) [005] .... 82316.940536: binder_transaction_received: transaction=1571664
99018           <...>-27794 (-----) [005] ...1 82316.940574: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
99019           <...>-27794 (-----) [005] ...1 82316.940580: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
99020           <...>-27794 (-----) [005] ...1 82316.940606: tracing_mark_write: E|27550
99021           <...>-27794 (-----) [005] ...1 82316.940610: tracing_mark_write: E|27550
99022           <...>-27794 (-----) [005] ...1 82316.940613: tracing_mark_write: E|27550
99023 [email protected]   (  619) [002] d..2 82316.940680: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
99024 [email protected]   (  619) [002] d..3 82316.940704: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
99025          <idle>-0     (-----) [001] .n.1 82316.940738: cpu_idle: state=4294967295 cpu_id=1
99026          <idle>-0     (-----) [001] d..2 82316.940750: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
99027           <...>-27794 (-----) [005] ...1 82316.940803: tracing_mark_write: E|27550
99028           <...>-27794 (-----) [005] d..1 82316.940816: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99029           <...>-27794 (-----) [005] d..2 82316.940831: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99030          <idle>-0     (-----) [004] .n.1 82316.940836: cpu_idle: state=4294967295 cpu_id=4
99031 [email protected]   (  619) [002] ...1 82316.940840: tracing_mark_write: E|619
99032          <idle>-0     (-----) [004] d..2 82316.940843: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
99033 [email protected]   (  619) [002] ...1 82316.940847: tracing_mark_write: E|619
99034           <...>-27550 (-----) [004] d..2 82316.940863: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99035          <idle>-0     (-----) [004] d..1 82316.940871: cpu_idle: state=0 cpu_id=4
99036 [email protected]   (  619) [002] ...1 82316.940912: tracing_mark_write: E|619
99037           <...>-27794 (-----) [005] d..1 82316.940923: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99038           <...>-27794 (-----) [005] d..2 82316.940934: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99039          <idle>-0     (-----) [004] .n.1 82316.940938: cpu_idle: state=4294967295 cpu_id=4
99040          <idle>-0     (-----) [004] d..2 82316.940945: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
99041 [email protected]   (  619) [002] ...1 82316.940961: tracing_mark_write: E|619
99042           <...>-27794 (-----) [005] d..2 82316.940974: sched_switch: prev_comm=id.nn.benchmark prev_pid=27794 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
99043 [email protected]   (  619) [002] .... 82316.940978: binder_transaction: transaction=1571665 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
99044           <...>-27550 (-----) [004] ...1 82316.940980: tracing_mark_write: E|27550
99045 [email protected]   (  619) [002] .... 82316.940982: binder_transaction_alloc_buf: transaction=1571665 data_size=576 offsets_size=112
99046           <...>-27550 (-----) [004] ...1 82316.940984: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
99047           <...>-27550 (-----) [004] ...1 82316.940990: tracing_mark_write: E|27550
99048           <...>-27550 (-----) [004] ...1 82316.940993: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
99049          <idle>-0     (-----) [005] d..1 82316.940996: cpu_idle: state=0 cpu_id=5
99050           <...>-27550 (-----) [004] ...1 82316.940997: tracing_mark_write: E|27550
99051           <...>-27550 (-----) [004] ...1 82316.941001: tracing_mark_write: E|27550
99052 [email protected]   (  619) [002] d..2 82316.941003: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
99053 [email protected]   (  619) [002] d..3 82316.941030: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
99054 [email protected]   (  619) [002] .... 82316.941035: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
99055          <idle>-0     (-----) [000] .n.1 82316.941036: cpu_idle: state=4294967295 cpu_id=0
99056          <idle>-0     (-----) [000] d..2 82316.941047: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
99057  surfaceflinger-8858  ( 8858) [000] .... 82316.941057: binder_transaction_received: transaction=1571665
99058           <...>-27550 (-----) [004] ...1 82316.941114: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
99059 [email protected]   (  619) [002] d..2 82316.941122: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99060          <idle>-0     (-----) [002] d..1 82316.941142: cpu_idle: state=0 cpu_id=2
99061           <...>-27550 (-----) [004] ...1 82316.941172: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
99062           <...>-27550 (-----) [004] ...1 82316.941177: tracing_mark_write: E|27550
99063           <...>-27550 (-----) [004] ...1 82316.941180: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
99064           <...>-27550 (-----) [004] ...1 82316.941185: tracing_mark_write: E|27550
99065           <...>-27550 (-----) [004] ...1 82316.941189: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
99066           <...>-27550 (-----) [004] ...1 82316.941193: tracing_mark_write: E|27550
99067           <...>-27550 (-----) [004] ...1 82316.941196: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
99068          <idle>-0     (-----) [005] .n.1 82316.941292: cpu_idle: state=4294967295 cpu_id=5
99069           <...>-27550 (-----) [004] ...1 82316.941294: tracing_mark_write: E|27550
99070           <...>-27550 (-----) [004] ...1 82316.941298: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
99071          <idle>-0     (-----) [005] d..2 82316.941301: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27795 next_prio=110
99072           <...>-27550 (-----) [004] d..2 82316.941314: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99073          <idle>-0     (-----) [004] d..1 82316.941329: cpu_idle: state=0 cpu_id=4
99074           <...>-27795 (-----) [005] ...1 82316.941363: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
99075           <...>-27795 (-----) [005] ...1 82316.941378: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
99076           <...>-27795 (-----) [005] ...1 82316.941381: tracing_mark_write: E|27550
99077           <...>-27795 (-----) [005] .... 82316.941403: binder_transaction: transaction=1571666 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
99078           <...>-27795 (-----) [005] .... 82316.941407: binder_transaction_alloc_buf: transaction=1571666 data_size=48 offsets_size=0
99079           <...>-27795 (-----) [005] ...2 82316.941411: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
99080           <...>-27795 (-----) [005] d..4 82316.941413: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
99081           <...>-27795 (-----) [005] dn.5 82316.941424: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
99082           <...>-27795 (-----) [005] d..2 82316.941430: sched_switch: prev_comm=id.nn.benchmark prev_pid=27795 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
99083<...>-770 ( 770) [005] .... 82316.941440: binder_transaction_received: transaction=1571666
99084<...>-770 ( 770) [005] ...1 82316.941464: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
99085 crtc_commit:111-321   (  321) [001] d..2 82316.941465: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
99086          <idle>-0     (-----) [001] d..1 82316.941479: cpu_idle: state=0 cpu_id=1
99087  surfaceflinger-8858  ( 8858) [000] d..2 82316.941507: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99088          <idle>-0     (-----) [000] d..1 82316.941527: cpu_idle: state=0 cpu_id=0
99089<...>-770 ( 770) [005] d..2 82316.941546: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
99090          <idle>-0     (-----) [000] dnh2 82316.941588: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
99091          <idle>-0     (-----) [000] .n.1 82316.941596: cpu_idle: state=4294967295 cpu_id=0
99092<...>-770 ( 770) [005] ...1 82316.941600: tracing_mark_write: E|770
99093<...>-770 ( 770) [005] .... 82316.941608: binder_transaction: transaction=1571667 dest_node=0 dest_proc=27550 dest_thread=27795 reply=1 flags=0x0 code=0x0
99094          <idle>-0     (-----) [000] d..2 82316.941608: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
99095<...>-770 ( 770) [005] .... 82316.941610: binder_transaction_alloc_buf: transaction=1571667 data_size=168 offsets_size=32
99096<...>-770 ( 770) [005] .... 82316.941617: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
99097<...>-770 ( 770) [005] d..2 82316.941654: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27795 next_prio=110
99098           <...>-27795 (-----) [005] .... 82316.941664: binder_transaction_received: transaction=1571667
99099<...>-581 ( 571) [000] d..2 82316.941699: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99100          <idle>-0     (-----) [000] d..1 82316.941716: cpu_idle: state=0 cpu_id=0
99101           <...>-27795 (-----) [005] ...1 82316.941740: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
99102           <...>-27795 (-----) [005] ...1 82316.941745: tracing_mark_write: E|27550
99103           <...>-27795 (-----) [005] .... 82316.941760: binder_transaction: transaction=1571668 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
99104           <...>-27795 (-----) [005] .... 82316.941762: binder_transaction_alloc_buf: transaction=1571668 data_size=48 offsets_size=0
99105           <...>-27795 (-----) [005] ...2 82316.941765: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
99106           <...>-27795 (-----) [005] d..4 82316.941767: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
99107           <...>-27795 (-----) [005] dn.5 82316.941777: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
99108           <...>-27795 (-----) [005] dns5 82316.941811: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
99109           <...>-27795 (-----) [005] d..2 82316.941846: sched_switch: prev_comm=id.nn.benchmark prev_pid=27795 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
99110          <idle>-0     (-----) [000] dnh2 82316.941849: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
99111<...>-770 ( 770) [005] .... 82316.941854: binder_transaction_received: transaction=1571668
99112          <idle>-0     (-----) [000] .n.1 82316.941857: cpu_idle: state=4294967295 cpu_id=0
99113          <idle>-0     (-----) [000] d..2 82316.941870: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
99114<...>-770 ( 770) [005] ...1 82316.941873: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
99115<...>-770 ( 770) [005] d..2 82316.941932: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
99116  kworker/u16:15-1311  ( 1311) [000] d.h1 82316.941955: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
99117<...>-770 ( 770) [005] ...1 82316.941968: tracing_mark_write: E|770
99118<...>-770 ( 770) [005] .... 82316.941976: binder_transaction: transaction=1571669 dest_node=0 dest_proc=27550 dest_thread=27795 reply=1 flags=0x0 code=0x0
99119<...>-770 ( 770) [005] .... 82316.941978: binder_transaction_alloc_buf: transaction=1571669 data_size=168 offsets_size=32
99120<...>-770 ( 770) [005] .... 82316.941984: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
99121<...>-770 ( 770) [005] d..2 82316.942018: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27795 next_prio=110
99122           <...>-27795 (-----) [005] .... 82316.942028: binder_transaction_received: transaction=1571669
99123  kworker/u16:15-1311  ( 1311) [000] d..2 82316.942059: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
99124          <idle>-0     (-----) [001] d.s3 82316.942093: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
99125          <idle>-0     (-----) [001] d.s4 82316.942119: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
99126          <idle>-0     (-----) [001] dns4 82316.942125: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
99127          <idle>-0     (-----) [001] .n.1 82316.942134: cpu_idle: state=4294967295 cpu_id=1
99128<...>-581 ( 571) [000] d..2 82316.942148: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99129          <idle>-0     (-----) [001] d..2 82316.942149: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
99130          <idle>-0     (-----) [000] d..1 82316.942165: cpu_idle: state=0 cpu_id=0
99131  kworker/u16:15-1311  ( 1311) [001] d..2 82316.942184: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99132          <idle>-0     (-----) [001] d..1 82316.942193: cpu_idle: state=0 cpu_id=1
99133           <...>-27795 (-----) [005] ...1 82316.942311: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
99134           <...>-27795 (-----) [005] ...1 82316.942322: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
99135           <...>-27795 (-----) [005] ...1 82316.942326: tracing_mark_write: E|27550
99136           <...>-27795 (-----) [005] .... 82316.942391: binder_transaction: transaction=1571670 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
99137           <...>-27795 (-----) [005] .... 82316.942394: binder_transaction_alloc_buf: transaction=1571670 data_size=556 offsets_size=104
99138           <...>-27795 (-----) [005] ...2 82316.942409: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
99139           <...>-27795 (-----) [005] d..4 82316.942412: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99140           <...>-27795 (-----) [005] dn.5 82316.942423: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99141           <...>-27795 (-----) [005] d..2 82316.942430: sched_switch: prev_comm=id.nn.benchmark prev_pid=27795 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99142          <idle>-0     (-----) [002] ...1 82316.942439: cpu_idle: state=4294967295 cpu_id=2
99143<...>-5340 ( 788) [005] .... 82316.942440: binder_transaction_received: transaction=1571670
99144          <idle>-0     (-----) [002] d..1 82316.942444: cpu_idle: state=0 cpu_id=2
99145<...>-5340 ( 788) [005] ...1 82316.942489: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
99146<...>-5340 ( 788) [005] d..2 82316.942538: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99147<...>-5340 ( 788) [005] d..2 82316.942563: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27795 next_prio=110
99148          <idle>-0     (-----) [000] dnh2 82316.942567: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99149          <idle>-0     (-----) [000] .n.1 82316.942575: cpu_idle: state=4294967295 cpu_id=0
99150          <idle>-0     (-----) [000] d..2 82316.942586: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
99151           <...>-27795 (-----) [005] d..2 82316.942588: sched_switch: prev_comm=id.nn.benchmark prev_pid=27795 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
99152          <idle>-0     (-----) [005] d..1 82316.942606: cpu_idle: state=0 cpu_id=5
99153<...>-87 ( 87) [000] d..2 82316.942631: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99154          <idle>-0     (-----) [002] d.h4 82316.942640: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99155          <idle>-0     (-----) [000] d..1 82316.942645: cpu_idle: state=0 cpu_id=0
99156          <idle>-0     (-----) [002] dnh5 82316.942660: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99157          <idle>-0     (-----) [002] .n.1 82316.942670: cpu_idle: state=4294967295 cpu_id=2
99158          <idle>-0     (-----) [002] d..2 82316.942684: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
99159<...>-86 ( 86) [002] d.h4 82316.942721: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99160          <idle>-0     (-----) [005] dnh2 82316.942743: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99161          <idle>-0     (-----) [005] .n.1 82316.942748: cpu_idle: state=4294967295 cpu_id=5
99162          <idle>-0     (-----) [005] d..2 82316.942756: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99163<...>-86 ( 86) [002] d..2 82316.942780: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99164          <idle>-0     (-----) [002] d..1 82316.942795: cpu_idle: state=0 cpu_id=2
99165<...>-5340 ( 788) [005] d..1 82316.942810: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99166          <idle>-0     (-----) [000] dnh2 82316.942835: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99167          <idle>-0     (-----) [000] .n.1 82316.942842: cpu_idle: state=4294967295 cpu_id=0
99168          <idle>-0     (-----) [000] d..2 82316.942853: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
99169 neuralnetworks@-13088 (  788) [000] d..2 82316.942909: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99170          <idle>-0     (-----) [000] d..1 82316.942924: cpu_idle: state=0 cpu_id=0
99171<...>-5340 ( 788) [005] d..2 82316.942957: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99172          <idle>-0     (-----) [000] dnh2 82316.942980: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99173<...>-5340 ( 788) [005] d..2 82316.942984: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
99174          <idle>-0     (-----) [000] .n.1 82316.942989: cpu_idle: state=4294967295 cpu_id=0
99175          <idle>-0     (-----) [005] d..1 82316.942999: cpu_idle: state=0 cpu_id=5
99176          <idle>-0     (-----) [000] d..2 82316.942999: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
99177          <idle>-0     (-----) [002] d.h4 82316.943039: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99178<...>-87 ( 87) [000] d..2 82316.943039: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99179          <idle>-0     (-----) [002] dnh5 82316.943050: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99180          <idle>-0     (-----) [000] d..1 82316.943051: cpu_idle: state=0 cpu_id=0
99181          <idle>-0     (-----) [002] .n.1 82316.943060: cpu_idle: state=4294967295 cpu_id=2
99182          <idle>-0     (-----) [002] d..2 82316.943071: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
99183<...>-86 ( 86) [002] d..2 82316.943105: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99184          <idle>-0     (-----) [002] d..1 82316.943119: cpu_idle: state=0 cpu_id=2
99185          <idle>-0     (-----) [005] ...1 82316.943324: cpu_idle: state=4294967295 cpu_id=5
99186          <idle>-0     (-----) [005] d..1 82316.943328: cpu_idle: state=0 cpu_id=5
99187          <idle>-0     (-----) [000] ...1 82316.944222: cpu_idle: state=4294967295 cpu_id=0
99188          <idle>-0     (-----) [000] d..1 82316.944227: cpu_idle: state=0 cpu_id=0
99189          <idle>-0     (-----) [002] ...1 82316.944487: cpu_idle: state=4294967295 cpu_id=2
99190          <idle>-0     (-----) [002] d..1 82316.944492: cpu_idle: state=0 cpu_id=2
99191          <idle>-0     (-----) [002] d.h4 82316.944738: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99192          <idle>-0     (-----) [005] dnh2 82316.944759: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99193          <idle>-0     (-----) [005] .n.1 82316.944762: cpu_idle: state=4294967295 cpu_id=5
99194          <idle>-0     (-----) [005] d..2 82316.944770: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99195          <idle>-0     (-----) [002] ...1 82316.944777: cpu_idle: state=4294967295 cpu_id=2
99196          <idle>-0     (-----) [002] d..1 82316.944783: cpu_idle: state=0 cpu_id=2
99197<...>-5340 ( 788) [005] d..1 82316.944820: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99198          <idle>-0     (-----) [000] dnh2 82316.944844: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99199          <idle>-0     (-----) [000] .n.1 82316.944850: cpu_idle: state=4294967295 cpu_id=0
99200          <idle>-0     (-----) [000] d..2 82316.944860: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
99201<...>-5340 ( 788) [005] ...1 82316.944910: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
99202<...>-5340 ( 788) [005] ...1 82316.944914: tracing_mark_write: E|788
99203 neuralnetworks@-13088 (  788) [000] d..2 82316.944925: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99204<...>-5340 ( 788) [005] .... 82316.944929: binder_transaction: transaction=1571673 dest_node=1571671 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
99205<...>-5340 ( 788) [005] .... 82316.944932: binder_transaction_alloc_buf: transaction=1571673 data_size=60 offsets_size=0
99206<...>-5340 ( 788) [005] d..4 82316.944935: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
99207          <idle>-0     (-----) [000] d..1 82316.944938: cpu_idle: state=0 cpu_id=0
99208<...>-5340 ( 788) [005] d..5 82316.944947: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
99209          <idle>-0     (-----) [004] .n.1 82316.944954: cpu_idle: state=4294967295 cpu_id=4
99210          <idle>-0     (-----) [004] d..2 82316.944963: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
99211           <...>-27571 (-----) [004] .... 82316.944968: binder_transaction_received: transaction=1571673
99212<...>-5340 ( 788) [005] ...1 82316.944970: tracing_mark_write: E|788
99213<...>-5340 ( 788) [005] .... 82316.944976: binder_transaction: transaction=1571674 dest_node=0 dest_proc=27550 dest_thread=27795 reply=1 flags=0x0 code=0x0
99214<...>-5340 ( 788) [005] .... 82316.944978: binder_transaction_alloc_buf: transaction=1571674 data_size=8 offsets_size=0
99215<...>-5340 ( 788) [005] d..2 82316.944980: sched_waking: comm=id.nn.benchmark pid=27795 prio=110 target_cpu=005
99216           <...>-27571 (-----) [004] ...1 82316.944986: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
99217<...>-5340 ( 788) [005] d..3 82316.944987: sched_wakeup: comm=id.nn.benchmark pid=27795 prio=110 target_cpu=005
99218<...>-5340 ( 788) [005] .... 82316.944989: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
99219           <...>-27571 (-----) [004] ...1 82316.944992: tracing_mark_write: E|27550
99220           <...>-27571 (-----) [004] d..2 82316.945021: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99221          <idle>-0     (-----) [004] d..1 82316.945028: cpu_idle: state=0 cpu_id=4
99222<...>-5340 ( 788) [005] d..2 82316.945030: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27795 next_prio=110
99223           <...>-27795 (-----) [005] .... 82316.945040: binder_transaction_received: transaction=1571674
99224           <...>-27795 (-----) [005] ...1 82316.945076: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
99225           <...>-27795 (-----) [005] ...1 82316.945082: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
99226          <idle>-0     (-----) [001] d.s2 82316.945132: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
99227          <idle>-0     (-----) [003] d.s2 82316.945137: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
99228           <...>-27795 (-----) [005] ...1 82316.945139: tracing_mark_write: E|27550
99229           <...>-27795 (-----) [005] ...1 82316.945143: tracing_mark_write: E|27550
99230           <...>-27795 (-----) [005] ...1 82316.945147: tracing_mark_write: E|27550
99231          <idle>-0     (-----) [001] dns3 82316.945150: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
99232          <idle>-0     (-----) [003] dns3 82316.945155: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
99233          <idle>-0     (-----) [001] .n.1 82316.945167: cpu_idle: state=4294967295 cpu_id=1
99234          <idle>-0     (-----) [003] .n.1 82316.945170: cpu_idle: state=4294967295 cpu_id=3
99235          <idle>-0     (-----) [001] d..2 82316.945176: 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
99236          <idle>-0     (-----) [003] d..2 82316.945182: 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
99237<...>-8 ( 8) [001] d..2 82316.945184: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
99238     rcu_preempt-7     (    7) [003] d..2 82316.945192: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
99239<...>-8 ( 8) [001] d..3 82316.945203: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
99240     rcu_preempt-7     (    7) [003] d..3 82316.945214: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
99241<...>-8 ( 8) [001] d..2 82316.945225: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
99242     rcu_preempt-7     (    7) [003] d..2 82316.945274: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
99243<...>-46 ( 46) [003] d..2 82316.945287: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
99244         rcuop/0-10    (   10) [001] d..2 82316.945288: 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
99245          <idle>-0     (-----) [001] dn.1 82316.945300: cpu_idle: state=0 cpu_id=1
99246<...>-46 ( 46) [003] d..3 82316.945304: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
99247          <idle>-0     (-----) [001] .n.1 82316.945308: cpu_idle: state=4294967295 cpu_id=1
99248          <idle>-0     (-----) [001] d..2 82316.945319: 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
99249<...>-46 ( 46) [003] d..2 82316.945326: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99250           <...>-27795 (-----) [005] ...1 82316.945332: tracing_mark_write: E|27550
99251          <idle>-0     (-----) [003] d..1 82316.945339: cpu_idle: state=0 cpu_id=3
99252<...>-8 ( 8) [001] d..2 82316.945343: 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
99253           <...>-27795 (-----) [005] d..1 82316.945344: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99254          <idle>-0     (-----) [001] d..1 82316.945352: cpu_idle: state=0 cpu_id=1
99255           <...>-27795 (-----) [005] d..2 82316.945358: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99256          <idle>-0     (-----) [004] .n.1 82316.945363: cpu_idle: state=4294967295 cpu_id=4
99257          <idle>-0     (-----) [004] d..2 82316.945370: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
99258           <...>-27550 (-----) [004] d..2 82316.945392: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99259          <idle>-0     (-----) [004] d..1 82316.945401: cpu_idle: state=0 cpu_id=4
99260           <...>-27795 (-----) [005] d..1 82316.945446: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99261           <...>-27795 (-----) [005] d..2 82316.945455: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99262          <idle>-0     (-----) [004] .n.1 82316.945461: cpu_idle: state=4294967295 cpu_id=4
99263          <idle>-0     (-----) [004] d..2 82316.945469: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
99264           <...>-27795 (-----) [005] d..2 82316.945496: sched_switch: prev_comm=id.nn.benchmark prev_pid=27795 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
99265           <...>-27550 (-----) [004] ...1 82316.945501: tracing_mark_write: E|27550
99266           <...>-27550 (-----) [004] ...1 82316.945506: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
99267           <...>-27550 (-----) [004] ...1 82316.945511: tracing_mark_write: E|27550
99268           <...>-27550 (-----) [004] ...1 82316.945515: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
99269          <idle>-0     (-----) [005] d..1 82316.945516: cpu_idle: state=0 cpu_id=5
99270           <...>-27550 (-----) [004] ...1 82316.945520: tracing_mark_write: E|27550
99271           <...>-27550 (-----) [004] ...1 82316.945524: tracing_mark_write: E|27550
99272           <...>-27550 (-----) [004] ...1 82316.945637: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
99273           <...>-27550 (-----) [004] ...1 82316.945695: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
99274           <...>-27550 (-----) [004] ...1 82316.945701: tracing_mark_write: E|27550
99275           <...>-27550 (-----) [004] ...1 82316.945705: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
99276           <...>-27550 (-----) [004] ...1 82316.945711: tracing_mark_write: E|27550
99277           <...>-27550 (-----) [004] ...1 82316.945715: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
99278           <...>-27550 (-----) [004] ...1 82316.945719: tracing_mark_write: E|27550
99279           <...>-27550 (-----) [004] ...1 82316.945723: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
99280          <idle>-0     (-----) [005] .n.1 82316.945812: cpu_idle: state=4294967295 cpu_id=5
99281           <...>-27550 (-----) [004] ...1 82316.945812: tracing_mark_write: E|27550
99282           <...>-27550 (-----) [004] ...1 82316.945817: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
99283          <idle>-0     (-----) [005] d..2 82316.945821: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27796 next_prio=110
99284           <...>-27550 (-----) [004] d..2 82316.945834: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99285          <idle>-0     (-----) [004] d..1 82316.945848: cpu_idle: state=0 cpu_id=4
99286           <...>-27796 (-----) [005] ...1 82316.945882: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
99287           <...>-27796 (-----) [005] ...1 82316.945896: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
99288           <...>-27796 (-----) [005] ...1 82316.945900: tracing_mark_write: E|27550
99289           <...>-27796 (-----) [005] .... 82316.945922: binder_transaction: transaction=1571675 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
99290           <...>-27796 (-----) [005] .... 82316.945925: binder_transaction_alloc_buf: transaction=1571675 data_size=48 offsets_size=0
99291           <...>-27796 (-----) [005] ...2 82316.945928: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
99292           <...>-27796 (-----) [005] d..4 82316.945931: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
99293           <...>-27796 (-----) [005] dn.5 82316.945942: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
99294           <...>-27796 (-----) [005] d..2 82316.945948: sched_switch: prev_comm=id.nn.benchmark prev_pid=27796 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
99295<...>-770 ( 770) [005] .... 82316.945959: binder_transaction_received: transaction=1571675
99296<...>-770 ( 770) [005] ...1 82316.945981: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
99297<...>-770 ( 770) [005] d..2 82316.946055: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
99298          <idle>-0     (-----) [000] dnh2 82316.946082: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
99299          <idle>-0     (-----) [000] .n.1 82316.946089: cpu_idle: state=4294967295 cpu_id=0
99300<...>-770 ( 770) [005] ...1 82316.946095: tracing_mark_write: E|770
99301          <idle>-0     (-----) [000] d..2 82316.946101: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
99302<...>-770 ( 770) [005] .... 82316.946103: binder_transaction: transaction=1571676 dest_node=0 dest_proc=27550 dest_thread=27796 reply=1 flags=0x0 code=0x0
99303<...>-770 ( 770) [005] .... 82316.946105: binder_transaction_alloc_buf: transaction=1571676 data_size=168 offsets_size=32
99304<...>-770 ( 770) [005] .... 82316.946112: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
99305<...>-770 ( 770) [005] d..2 82316.946147: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27796 next_prio=110
99306           <...>-27796 (-----) [005] .... 82316.946158: binder_transaction_received: transaction=1571676
99307<...>-581 ( 571) [000] d..2 82316.946175: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99308          <idle>-0     (-----) [000] d..1 82316.946191: cpu_idle: state=0 cpu_id=0
99309           <...>-27796 (-----) [005] ...1 82316.946228: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
99310           <...>-27796 (-----) [005] ...1 82316.946233: tracing_mark_write: E|27550
99311           <...>-27796 (-----) [005] .... 82316.946248: binder_transaction: transaction=1571677 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
99312           <...>-27796 (-----) [005] .... 82316.946250: binder_transaction_alloc_buf: transaction=1571677 data_size=48 offsets_size=0
99313           <...>-27796 (-----) [005] ...2 82316.946252: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
99314           <...>-27796 (-----) [005] d..4 82316.946255: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
99315           <...>-27796 (-----) [005] dn.5 82316.946265: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
99316           <...>-27796 (-----) [005] d..2 82316.946272: sched_switch: prev_comm=id.nn.benchmark prev_pid=27796 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
99317<...>-770 ( 770) [005] .... 82316.946280: binder_transaction_received: transaction=1571677
99318<...>-770 ( 770) [005] ...1 82316.946298: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
99319<...>-770 ( 770) [005] d..2 82316.946359: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
99320          <idle>-0     (-----) [000] dnh2 82316.946383: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
99321          <idle>-0     (-----) [000] .n.1 82316.946391: cpu_idle: state=4294967295 cpu_id=0
99322<...>-770 ( 770) [005] ...1 82316.946393: tracing_mark_write: E|770
99323<...>-770 ( 770) [005] .... 82316.946400: binder_transaction: transaction=1571678 dest_node=0 dest_proc=27550 dest_thread=27796 reply=1 flags=0x0 code=0x0
99324          <idle>-0     (-----) [000] d..2 82316.946402: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
99325<...>-770 ( 770) [005] .... 82316.946403: binder_transaction_alloc_buf: transaction=1571678 data_size=168 offsets_size=32
99326<...>-770 ( 770) [005] .... 82316.946409: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
99327<...>-770 ( 770) [005] d..2 82316.946443: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27796 next_prio=110
99328           <...>-27796 (-----) [005] .... 82316.946454: binder_transaction_received: transaction=1571678
99329<...>-581 ( 571) [000] d..2 82316.946464: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99330          <idle>-0     (-----) [000] d..1 82316.946479: cpu_idle: state=0 cpu_id=0
99331          <idle>-0     (-----) [000] d.h5 82316.946700: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
99332          <idle>-0     (-----) [000] d.h6 82316.946721: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
99333          <idle>-0     (-----) [000] d.h5 82316.946727: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
99334          <idle>-0     (-----) [003] .n.1 82316.946727: cpu_idle: state=4294967295 cpu_id=3
99335           <...>-27796 (-----) [005] ...1 82316.946728: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
99336           <...>-27796 (-----) [005] ...1 82316.946738: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
99337          <idle>-0     (-----) [003] d..2 82316.946738: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
99338          <idle>-0     (-----) [000] d.h6 82316.946740: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
99339           <...>-27796 (-----) [005] ...1 82316.946742: tracing_mark_write: E|27550
99340          <idle>-0     (-----) [001] .n.1 82316.946745: cpu_idle: state=4294967295 cpu_id=1
99341          <idle>-0     (-----) [001] d..2 82316.946755: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
99342          <idle>-0     (-----) [000] ...1 82316.946759: cpu_idle: state=4294967295 cpu_id=0
99343          <idle>-0     (-----) [000] d..1 82316.946764: cpu_idle: state=0 cpu_id=0
99344  crtc_event:111-322   (  322) [003] d..2 82316.946775: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99345          <idle>-0     (-----) [003] d..1 82316.946785: cpu_idle: state=0 cpu_id=3
99346           <...>-27796 (-----) [005] .... 82316.946803: binder_transaction: transaction=1571679 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
99347           <...>-27796 (-----) [005] .... 82316.946806: binder_transaction_alloc_buf: transaction=1571679 data_size=556 offsets_size=104
99348           <...>-27796 (-----) [005] ...2 82316.946819: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
99349           <...>-27796 (-----) [005] d..4 82316.946822: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99350           <...>-27796 (-----) [005] dn.5 82316.946833: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99351           <...>-27796 (-----) [005] d..2 82316.946840: sched_switch: prev_comm=id.nn.benchmark prev_pid=27796 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99352<...>-5340 ( 788) [005] .... 82316.946850: binder_transaction_received: transaction=1571679
99353<...>-5340 ( 788) [005] ...1 82316.946894: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
99354 crtc_commit:111-321   (  321) [001] d..2 82316.946902: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
99355          <idle>-0     (-----) [001] d..1 82316.946912: cpu_idle: state=0 cpu_id=1
99356<...>-5340 ( 788) [005] d..2 82316.946940: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99357<...>-5340 ( 788) [005] d..2 82316.946965: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27796 next_prio=110
99358          <idle>-0     (-----) [000] dnh2 82316.946968: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99359          <idle>-0     (-----) [000] .n.1 82316.946974: cpu_idle: state=4294967295 cpu_id=0
99360          <idle>-0     (-----) [000] d..2 82316.946986: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
99361           <...>-27796 (-----) [005] d..2 82316.946988: sched_switch: prev_comm=id.nn.benchmark prev_pid=27796 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
99362          <idle>-0     (-----) [005] d..1 82316.947005: cpu_idle: state=0 cpu_id=5
99363<...>-87 ( 87) [000] d..2 82316.947031: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99364          <idle>-0     (-----) [002] d.h4 82316.947037: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99365          <idle>-0     (-----) [000] d..1 82316.947044: cpu_idle: state=0 cpu_id=0
99366          <idle>-0     (-----) [002] dnh5 82316.947052: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99367          <idle>-0     (-----) [002] .n.1 82316.947061: cpu_idle: state=4294967295 cpu_id=2
99368          <idle>-0     (-----) [002] d..2 82316.947074: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
99369<...>-86 ( 86) [002] d..2 82316.947110: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99370          <idle>-0     (-----) [002] d.h5 82316.947131: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99371          <idle>-0     (-----) [005] dnh2 82316.947153: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99372          <idle>-0     (-----) [005] .n.1 82316.947158: cpu_idle: state=4294967295 cpu_id=5
99373          <idle>-0     (-----) [005] d..2 82316.947166: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99374          <idle>-0     (-----) [002] d..1 82316.947175: cpu_idle: state=0 cpu_id=2
99375<...>-5340 ( 788) [005] d..1 82316.947219: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99376          <idle>-0     (-----) [000] dnh2 82316.947245: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99377          <idle>-0     (-----) [000] .n.1 82316.947252: cpu_idle: state=4294967295 cpu_id=0
99378          <idle>-0     (-----) [000] d..2 82316.947263: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
99379 neuralnetworks@-13088 (  788) [000] d..2 82316.947310: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99380          <idle>-0     (-----) [000] d..1 82316.947324: cpu_idle: state=0 cpu_id=0
99381<...>-5340 ( 788) [005] d..2 82316.947367: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99382          <idle>-0     (-----) [000] dnh2 82316.947389: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99383<...>-5340 ( 788) [005] d..2 82316.947392: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
99384          <idle>-0     (-----) [000] .n.1 82316.947396: cpu_idle: state=4294967295 cpu_id=0
99385          <idle>-0     (-----) [005] d..1 82316.947406: cpu_idle: state=0 cpu_id=5
99386          <idle>-0     (-----) [000] d..2 82316.947407: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
99387<...>-87 ( 87) [000] d..2 82316.947445: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99388          <idle>-0     (-----) [002] d.h4 82316.947445: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99389          <idle>-0     (-----) [002] dnh5 82316.947456: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99390          <idle>-0     (-----) [000] d..1 82316.947457: cpu_idle: state=0 cpu_id=0
99391          <idle>-0     (-----) [002] .n.1 82316.947464: cpu_idle: state=4294967295 cpu_id=2
99392          <idle>-0     (-----) [002] d..2 82316.947476: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
99393<...>-86 ( 86) [002] d..2 82316.947509: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99394          <idle>-0     (-----) [002] d..1 82316.947520: cpu_idle: state=0 cpu_id=2
99395          <idle>-0     (-----) [005] ...1 82316.947731: cpu_idle: state=4294967295 cpu_id=5
99396          <idle>-0     (-----) [005] d..1 82316.947734: cpu_idle: state=0 cpu_id=5
99397          <idle>-0     (-----) [001] d.s3 82316.948471: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
99398          <idle>-0     (-----) [001] d.s4 82316.948490: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
99399          <idle>-0     (-----) [003] .n.1 82316.948496: cpu_idle: state=4294967295 cpu_id=3
99400          <idle>-0     (-----) [001] d.s3 82316.948496: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
99401          <idle>-0     (-----) [003] d..2 82316.948507: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
99402          <idle>-0     (-----) [001] dns4 82316.948512: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
99403          <idle>-0     (-----) [001] .n.1 82316.948535: cpu_idle: state=4294967295 cpu_id=1
99404  crtc_event:111-322   (  322) [003] d..2 82316.948539: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99405          <idle>-0     (-----) [001] d..2 82316.948545: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
99406          <idle>-0     (-----) [003] d..1 82316.948547: cpu_idle: state=0 cpu_id=3
99407          <idle>-0     (-----) [000] ...1 82316.948621: cpu_idle: state=4294967295 cpu_id=0
99408          <idle>-0     (-----) [000] d..1 82316.948626: cpu_idle: state=0 cpu_id=0
99409  kworker/u16:15-1311  ( 1311) [001] d..2 82316.948652: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99410          <idle>-0     (-----) [001] d..1 82316.948662: cpu_idle: state=0 cpu_id=1
99411          <idle>-0     (-----) [000] d.h5 82316.949026: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
99412          <idle>-0     (-----) [000] d.h6 82316.949045: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
99413          <idle>-0     (-----) [001] .n.1 82316.949052: cpu_idle: state=4294967295 cpu_id=1
99414          <idle>-0     (-----) [001] d..2 82316.949060: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
99415          <idle>-0     (-----) [000] ...1 82316.949060: cpu_idle: state=4294967295 cpu_id=0
99416          <idle>-0     (-----) [000] d..1 82316.949067: cpu_idle: state=0 cpu_id=0
99417 crtc_commit:111-321   (  321) [001] d..2 82316.949138: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99418          <idle>-0     (-----) [001] d..1 82316.949147: cpu_idle: state=0 cpu_id=1
99419          <idle>-0     (-----) [002] d.h4 82316.949192: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99420          <idle>-0     (-----) [005] dnh2 82316.949213: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99421          <idle>-0     (-----) [005] .n.1 82316.949217: cpu_idle: state=4294967295 cpu_id=5
99422          <idle>-0     (-----) [005] d..2 82316.949226: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99423          <idle>-0     (-----) [002] ...1 82316.949233: cpu_idle: state=4294967295 cpu_id=2
99424          <idle>-0     (-----) [002] d..1 82316.949240: cpu_idle: state=0 cpu_id=2
99425<...>-5340 ( 788) [005] d..1 82316.949278: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99426          <idle>-0     (-----) [000] d.h5 82316.949357: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
99427<...>-5340 ( 788) [005] ...1 82316.949368: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
99428<...>-5340 ( 788) [005] ...1 82316.949372: tracing_mark_write: E|788
99429          <idle>-0     (-----) [000] d.h6 82316.949373: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
99430          <idle>-0     (-----) [003] .n.1 82316.949378: cpu_idle: state=4294967295 cpu_id=3
99431          <idle>-0     (-----) [003] d..2 82316.949386: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
99432<...>-5340 ( 788) [005] .... 82316.949387: binder_transaction: transaction=1571682 dest_node=1571680 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
99433<...>-5340 ( 788) [005] .... 82316.949390: binder_transaction_alloc_buf: transaction=1571682 data_size=60 offsets_size=0
99434<...>-5340 ( 788) [005] d..4 82316.949393: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
99435          <idle>-0     (-----) [000] dnh2 82316.949397: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99436          <idle>-0     (-----) [000] .n.1 82316.949404: cpu_idle: state=4294967295 cpu_id=0
99437<...>-5340 ( 788) [005] d..5 82316.949405: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
99438          <idle>-0     (-----) [004] .n.1 82316.949412: cpu_idle: state=4294967295 cpu_id=4
99439  crtc_event:111-322   (  322) [003] d..2 82316.949413: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99440          <idle>-0     (-----) [000] d..2 82316.949416: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
99441          <idle>-0     (-----) [004] d..2 82316.949420: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
99442          <idle>-0     (-----) [003] d..1 82316.949421: cpu_idle: state=0 cpu_id=3
99443           <...>-27571 (-----) [004] .... 82316.949425: binder_transaction_received: transaction=1571682
99444<...>-5340 ( 788) [005] ...1 82316.949429: tracing_mark_write: E|788
99445<...>-5340 ( 788) [005] .... 82316.949435: binder_transaction: transaction=1571683 dest_node=0 dest_proc=27550 dest_thread=27796 reply=1 flags=0x0 code=0x0
99446<...>-5340 ( 788) [005] .... 82316.949437: binder_transaction_alloc_buf: transaction=1571683 data_size=8 offsets_size=0
99447<...>-5340 ( 788) [005] d..2 82316.949439: sched_waking: comm=id.nn.benchmark pid=27796 prio=110 target_cpu=005
99448           <...>-27571 (-----) [004] ...1 82316.949445: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
99449<...>-5340 ( 788) [005] d..3 82316.949446: sched_wakeup: comm=id.nn.benchmark pid=27796 prio=110 target_cpu=005
99450<...>-5340 ( 788) [005] .... 82316.949448: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
99451           <...>-27571 (-----) [004] ...1 82316.949451: tracing_mark_write: E|27550
99452 neuralnetworks@-13088 (  788) [000] d..2 82316.949453: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99453          <idle>-0     (-----) [000] d..1 82316.949466: cpu_idle: state=0 cpu_id=0
99454           <...>-27571 (-----) [004] d..2 82316.949480: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99455          <idle>-0     (-----) [004] d..1 82316.949488: cpu_idle: state=0 cpu_id=4
99456<...>-5340 ( 788) [005] d..2 82316.949488: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27796 next_prio=110
99457           <...>-27796 (-----) [005] .... 82316.949498: binder_transaction_received: transaction=1571683
99458           <...>-27796 (-----) [005] ...1 82316.949534: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
99459           <...>-27796 (-----) [005] ...1 82316.949540: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
99460           <...>-27796 (-----) [005] ...1 82316.949567: tracing_mark_write: E|27550
99461           <...>-27796 (-----) [005] ...1 82316.949571: tracing_mark_write: E|27550
99462           <...>-27796 (-----) [005] ...1 82316.949575: tracing_mark_write: E|27550
99463           <...>-27796 (-----) [005] ...1 82316.949760: tracing_mark_write: E|27550
99464           <...>-27796 (-----) [005] d..1 82316.949773: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99465           <...>-27796 (-----) [005] d..2 82316.949789: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99466          <idle>-0     (-----) [004] .n.1 82316.949793: cpu_idle: state=4294967295 cpu_id=4
99467          <idle>-0     (-----) [004] d..2 82316.949800: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
99468           <...>-27550 (-----) [004] d..2 82316.949819: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99469          <idle>-0     (-----) [004] d..1 82316.949828: cpu_idle: state=0 cpu_id=4
99470           <...>-27796 (-----) [005] d..1 82316.949874: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99471           <...>-27796 (-----) [005] d..2 82316.949883: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99472          <idle>-0     (-----) [004] .n.1 82316.949888: cpu_idle: state=4294967295 cpu_id=4
99473          <idle>-0     (-----) [004] d..2 82316.949896: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
99474           <...>-27796 (-----) [005] d..2 82316.949921: sched_switch: prev_comm=id.nn.benchmark prev_pid=27796 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
99475           <...>-27550 (-----) [004] ...1 82316.949928: tracing_mark_write: E|27550
99476           <...>-27550 (-----) [004] ...1 82316.949932: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
99477           <...>-27550 (-----) [004] ...1 82316.949938: tracing_mark_write: E|27550
99478          <idle>-0     (-----) [005] d..1 82316.949941: cpu_idle: state=0 cpu_id=5
99479           <...>-27550 (-----) [004] ...1 82316.949942: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
99480           <...>-27550 (-----) [004] ...1 82316.949946: tracing_mark_write: E|27550
99481           <...>-27550 (-----) [004] ...1 82316.949951: tracing_mark_write: E|27550
99482           <...>-27550 (-----) [004] ...1 82316.950064: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
99483           <...>-27550 (-----) [004] ...1 82316.950121: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
99484           <...>-27550 (-----) [004] ...1 82316.950125: tracing_mark_write: E|27550
99485           <...>-27550 (-----) [004] ...1 82316.950130: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
99486           <...>-27550 (-----) [004] ...1 82316.950135: tracing_mark_write: E|27550
99487           <...>-27550 (-----) [004] ...1 82316.950139: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
99488           <...>-27550 (-----) [004] ...1 82316.950142: tracing_mark_write: E|27550
99489           <...>-27550 (-----) [004] ...1 82316.950146: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
99490          <idle>-0     (-----) [005] .n.1 82316.950232: cpu_idle: state=4294967295 cpu_id=5
99491           <...>-27550 (-----) [004] ...1 82316.950232: tracing_mark_write: E|27550
99492           <...>-27550 (-----) [004] ...1 82316.950237: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
99493          <idle>-0     (-----) [005] d..2 82316.950241: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27797 next_prio=110
99494           <...>-27550 (-----) [004] d..2 82316.950253: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99495          <idle>-0     (-----) [004] d..1 82316.950267: cpu_idle: state=0 cpu_id=4
99496           <...>-27797 (-----) [005] ...1 82316.950301: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
99497           <...>-27797 (-----) [005] ...1 82316.950316: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
99498           <...>-27797 (-----) [005] ...1 82316.950320: tracing_mark_write: E|27550
99499           <...>-27797 (-----) [005] .... 82316.950340: binder_transaction: transaction=1571684 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
99500           <...>-27797 (-----) [005] .... 82316.950344: binder_transaction_alloc_buf: transaction=1571684 data_size=48 offsets_size=0
99501           <...>-27797 (-----) [005] ...2 82316.950346: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
99502           <...>-27797 (-----) [005] d..4 82316.950349: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
99503           <...>-27797 (-----) [005] dn.5 82316.950359: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
99504           <...>-27797 (-----) [005] d..2 82316.950366: sched_switch: prev_comm=id.nn.benchmark prev_pid=27797 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
99505<...>-770 ( 770) [005] .... 82316.950376: binder_transaction_received: transaction=1571684
99506<...>-770 ( 770) [005] ...1 82316.950397: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
99507<...>-770 ( 770) [005] d..2 82316.950467: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
99508          <idle>-0     (-----) [000] dnh2 82316.950494: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
99509          <idle>-0     (-----) [000] .n.1 82316.950500: cpu_idle: state=4294967295 cpu_id=0
99510<...>-770 ( 770) [005] ...1 82316.950506: tracing_mark_write: E|770
99511          <idle>-0     (-----) [000] d..2 82316.950512: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
99512<...>-770 ( 770) [005] .... 82316.950514: binder_transaction: transaction=1571685 dest_node=0 dest_proc=27550 dest_thread=27797 reply=1 flags=0x0 code=0x0
99513<...>-770 ( 770) [005] .... 82316.950516: binder_transaction_alloc_buf: transaction=1571685 data_size=168 offsets_size=32
99514<...>-770 ( 770) [005] .... 82316.950523: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
99515<...>-770 ( 770) [005] d..2 82316.950560: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27797 next_prio=110
99516           <...>-27797 (-----) [005] .... 82316.950570: binder_transaction_received: transaction=1571685
99517<...>-581 ( 571) [000] d..2 82316.950588: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99518          <idle>-0     (-----) [000] d..1 82316.950604: cpu_idle: state=0 cpu_id=0
99519           <...>-27797 (-----) [005] ...1 82316.950639: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
99520           <...>-27797 (-----) [005] ...1 82316.950644: tracing_mark_write: E|27550
99521           <...>-27797 (-----) [005] .... 82316.950658: binder_transaction: transaction=1571686 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
99522           <...>-27797 (-----) [005] .... 82316.950661: binder_transaction_alloc_buf: transaction=1571686 data_size=48 offsets_size=0
99523           <...>-27797 (-----) [005] ...2 82316.950663: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
99524           <...>-27797 (-----) [005] d..4 82316.950665: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
99525           <...>-27797 (-----) [005] dn.5 82316.950675: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
99526           <...>-27797 (-----) [005] d..2 82316.950682: sched_switch: prev_comm=id.nn.benchmark prev_pid=27797 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
99527<...>-770 ( 770) [005] .... 82316.950690: binder_transaction_received: transaction=1571686
99528<...>-770 ( 770) [005] ...1 82316.950706: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
99529<...>-770 ( 770) [005] d..2 82316.950764: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
99530          <idle>-0     (-----) [000] dnh2 82316.950788: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
99531          <idle>-0     (-----) [000] .n.1 82316.950795: cpu_idle: state=4294967295 cpu_id=0
99532<...>-770 ( 770) [005] ...1 82316.950797: tracing_mark_write: E|770
99533<...>-770 ( 770) [005] .... 82316.950804: binder_transaction: transaction=1571687 dest_node=0 dest_proc=27550 dest_thread=27797 reply=1 flags=0x0 code=0x0
99534          <idle>-0     (-----) [000] d..2 82316.950807: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
99535<...>-770 ( 770) [005] .... 82316.950807: binder_transaction_alloc_buf: transaction=1571687 data_size=168 offsets_size=32
99536<...>-770 ( 770) [005] .... 82316.950813: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
99537<...>-770 ( 770) [005] d..2 82316.950848: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27797 next_prio=110
99538           <...>-27797 (-----) [005] .... 82316.950857: binder_transaction_received: transaction=1571687
99539<...>-581 ( 571) [000] d..2 82316.950867: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99540          <idle>-0     (-----) [000] d..1 82316.950881: cpu_idle: state=0 cpu_id=0
99541           <...>-27797 (-----) [005] ...1 82316.951131: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
99542          <idle>-0     (-----) [001] d.h2 82316.951137: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
99543           <...>-27797 (-----) [005] ...1 82316.951141: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
99544           <...>-27797 (-----) [005] ...1 82316.951145: tracing_mark_write: E|27550
99545          <idle>-0     (-----) [001] dnh3 82316.951150: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
99546          <idle>-0     (-----) [001] .n.1 82316.951159: cpu_idle: state=4294967295 cpu_id=1
99547          <idle>-0     (-----) [001] d..2 82316.951166: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
99548        DispSync-8879  ( 8858) [001] d..1 82316.951188: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
99549           <...>-27797 (-----) [005] .... 82316.951202: binder_transaction: transaction=1571688 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
99550        DispSync-8879  ( 8858) [001] d..2 82316.951202: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
99551           <...>-27797 (-----) [005] .... 82316.951206: binder_transaction_alloc_buf: transaction=1571688 data_size=556 offsets_size=104
99552          <idle>-0     (-----) [003] .n.1 82316.951207: cpu_idle: state=4294967295 cpu_id=3
99553          <idle>-0     (-----) [003] d..2 82316.951215: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
99554           <...>-27797 (-----) [005] ...2 82316.951219: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
99555           <...>-27797 (-----) [005] d..4 82316.951221: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99556           <...>-27797 (-----) [005] dn.5 82316.951232: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99557        DispSync-8879  ( 8858) [001] d..2 82316.951237: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99558           <...>-27797 (-----) [005] d..2 82316.951239: sched_switch: prev_comm=id.nn.benchmark prev_pid=27797 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99559          <idle>-0     (-----) [001] d..1 82316.951246: cpu_idle: state=0 cpu_id=1
99560<...>-5340 ( 788) [005] .... 82316.951248: binder_transaction_received: transaction=1571688
99561  appEventThread-8881  ( 8858) [003] d..3 82316.951275: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
99562<...>-5340 ( 788) [005] ...1 82316.951290: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
99563  appEventThread-8881  ( 8858) [003] d..4 82316.951296: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
99564          <idle>-0     (-----) [000] .n.1 82316.951303: cpu_idle: state=4294967295 cpu_id=0
99565          <idle>-0     (-----) [000] d..2 82316.951315: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
99566<...>-5340 ( 788) [005] d..2 82316.951332: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99567  appEventThread-8881  ( 8858) [003] d..2 82316.951339: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99568          <idle>-0     (-----) [003] d..1 82316.951350: cpu_idle: state=0 cpu_id=3
99569<...>-5340 ( 788) [005] d..2 82316.951363: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27797 next_prio=110
99570          <idle>-0     (-----) [003] dnh2 82316.951367: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
99571          <idle>-0     (-----) [003] .n.1 82316.951374: cpu_idle: state=4294967295 cpu_id=3
99572          <idle>-0     (-----) [003] d..2 82316.951382: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
99573           <...>-27797 (-----) [005] d..2 82316.951385: sched_switch: prev_comm=id.nn.benchmark prev_pid=27797 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
99574          <idle>-0     (-----) [005] d..1 82316.951403: cpu_idle: state=0 cpu_id=5
99575<...>-87 ( 87) [003] d..2 82316.951425: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99576          <idle>-0     (-----) [002] d.h4 82316.951431: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99577          <idle>-0     (-----) [003] d..1 82316.951433: cpu_idle: state=0 cpu_id=3
99578          <idle>-0     (-----) [002] dnh5 82316.951446: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99579          <idle>-0     (-----) [002] .n.1 82316.951454: cpu_idle: state=4294967295 cpu_id=2
99580          <idle>-0     (-----) [002] d..2 82316.951467: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
99581<...>-86 ( 86) [002] d..2 82316.951501: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99582          <idle>-0     (-----) [002] d.h5 82316.951522: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99583          <idle>-0     (-----) [005] dnh2 82316.951543: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99584          <idle>-0     (-----) [005] .n.1 82316.951548: cpu_idle: state=4294967295 cpu_id=5
99585          <idle>-0     (-----) [005] d..2 82316.951556: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99586          <idle>-0     (-----) [002] d..1 82316.951565: cpu_idle: state=0 cpu_id=2
99587<...>-5340 ( 788) [005] d..1 82316.951606: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99588<...>-9105 ( 9105) [000] dnh1 82316.951639: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99589<...>-9105 ( 9105) [000] d..2 82316.951655: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
99590 neuralnetworks@-13088 (  788) [000] d..2 82316.951699: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
99591<...>-9105 ( 9105) [000] .... 82316.951732: binder_transaction: transaction=1571691 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
99592<...>-9105 ( 9105) [000] .... 82316.951737: binder_transaction_alloc_buf: transaction=1571691 data_size=80 offsets_size=0
99593<...>-9105 ( 9105) [000] d..4 82316.951743: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
99594<...>-5340 ( 788) [005] d..2 82316.951752: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
99595          <idle>-0     (-----) [003] dnh2 82316.951773: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
99596<...>-9105 ( 9105) [000] d..5 82316.951773: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
99597<...>-5340 ( 788) [005] d..2 82316.951780: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
99598          <idle>-0     (-----) [001] dns2 82316.951812: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
99599          <idle>-0     (-----) [005] d..1 82316.951825: cpu_idle: state=0 cpu_id=5
99600          <idle>-0     (-----) [001] dns3 82316.951876: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
99601          <idle>-0     (-----) [003] dns2 82316.951881: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
99602          <idle>-0     (-----) [001] .n.1 82316.951888: cpu_idle: state=4294967295 cpu_id=1
99603          <idle>-0     (-----) [001] d..2 82316.951898: 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
99604<...>-9105 ( 9105) [000] d..3 82316.951905: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
99605<...>-9105 ( 9105) [000] d..4 82316.951926: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
99606<...>-8 ( 8) [001] d..2 82316.951927: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
99607          <idle>-0     (-----) [002] .n.1 82316.951931: cpu_idle: state=4294967295 cpu_id=2
99608<...>-13083 ( 8858) [001] .... 82316.951935: binder_transaction_received: transaction=1571691
99609          <idle>-0     (-----) [003] dns3 82316.951936: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
99610          <idle>-0     (-----) [002] d..2 82316.951946: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
99611          <idle>-0     (-----) [003] .n.1 82316.951950: cpu_idle: state=4294967295 cpu_id=3
99612          <idle>-0     (-----) [003] d..2 82316.951961: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
99613<...>-13083 ( 8858) [001] d..1 82316.951971: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
99614<...>-13083 ( 8858) [001] dn.2 82316.951994: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
99615    RenderThread-9436  ( 9105) [002] d.h3 82316.951999: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
99616<...>-13083 ( 8858) [001] d..2 82316.952003: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
99617<...>-87 ( 87) [003] d..2 82316.952009: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99618          <idle>-0     (-----) [003] d..1 82316.952023: cpu_idle: state=0 cpu_id=3
99619  appEventThread-8881  ( 8858) [001] d..2 82316.952024: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
99620     rcu_preempt-7     (    7) [001] d..2 82316.952041: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
99621    RenderThread-9436  ( 9105) [002] d.h4 82316.952043: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
99622<...>-13083 ( 8858) [001] d..1 82316.952047: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
99623          <idle>-0     (-----) [003] .n.1 82316.952049: cpu_idle: state=4294967295 cpu_id=3
99624          <idle>-0     (-----) [003] d..2 82316.952061: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
99625<...>-9105 ( 9105) [000] d..3 82316.952065: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
99626<...>-13083 ( 8858) [001] d..2 82316.952076: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
99627    RenderThread-9436  ( 9105) [002] d..2 82316.952080: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99628<...>-86 ( 86) [003] d..2 82316.952084: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
99629          <idle>-0     (-----) [002] dn.1 82316.952095: cpu_idle: state=0 cpu_id=2
99630<...>-9105 ( 9105) [000] d..4 82316.952099: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
99631          <idle>-0     (-----) [002] .n.1 82316.952103: cpu_idle: state=4294967295 cpu_id=2
99632          <idle>-0     (-----) [002] d..2 82316.952116: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
99633<...>-13083 ( 8858) [001] d..2 82316.952129: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99634<...>-9105 ( 9105) [000] d..2 82316.952132: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99635  appEventThread-8881  ( 8858) [003] d..2 82316.952134: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
99636          <idle>-0     (-----) [001] d..1 82316.952143: cpu_idle: state=0 cpu_id=1
99637          <idle>-0     (-----) [005] ...1 82316.952145: cpu_idle: state=4294967295 cpu_id=5
99638          <idle>-0     (-----) [005] d..1 82316.952148: cpu_idle: state=0 cpu_id=5
99639          <idle>-0     (-----) [000] d..1 82316.952154: cpu_idle: state=0 cpu_id=0
99640<...>-86 ( 86) [003] d..2 82316.952164: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99641          <idle>-0     (-----) [003] d..1 82316.952178: cpu_idle: state=0 cpu_id=3
99642    RenderThread-9436  ( 9105) [002] d..1 82316.952237: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
99643    RenderThread-9436  ( 9105) [002] d..2 82316.952256: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
99644          <idle>-0     (-----) [000] .n.1 82316.952264: cpu_idle: state=4294967295 cpu_id=0
99645          <idle>-0     (-----) [000] d..2 82316.952277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
99646    RenderThread-9436  ( 9105) [002] .... 82316.952325: binder_transaction: transaction=1571692 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
99647    RenderThread-9436  ( 9105) [002] .... 82316.952330: binder_transaction_alloc_buf: transaction=1571692 data_size=104 offsets_size=0
99648    RenderThread-9436  ( 9105) [002] d..4 82316.952336: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
99649    RenderThread-9436  ( 9105) [002] dn.5 82316.952357: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
99650<...>-9105 ( 9105) [000] d..2 82316.952360: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99651    RenderThread-9436  ( 9105) [002] d..2 82316.952368: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
99652          <idle>-0     (-----) [000] d..1 82316.952376: cpu_idle: state=0 cpu_id=0
99653<...>-13083 ( 8858) [002] .... 82316.952377: binder_transaction_received: transaction=1571692
99654<...>-13083 ( 8858) [002] .... 82316.952454: binder_transaction: transaction=1571693 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
99655<...>-13083 ( 8858) [002] .... 82316.952461: binder_transaction_alloc_buf: transaction=1571693 data_size=52 offsets_size=8
99656<...>-13083 ( 8858) [002] d..2 82316.952512: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
99657    RenderThread-9436  ( 9105) [002] .... 82316.952522: binder_transaction_received: transaction=1571693
99658          <idle>-0     (-----) [003] ...1 82316.953487: cpu_idle: state=4294967295 cpu_id=3
99659          <idle>-0     (-----) [003] d..1 82316.953492: cpu_idle: state=0 cpu_id=3
99660    RenderThread-9436  ( 9105) [002] d..2 82316.953532: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
99661          <idle>-0     (-----) [002] d..1 82316.953549: cpu_idle: state=0 cpu_id=2
99662          <idle>-0     (-----) [002] d.h2 82316.953613: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
99663          <idle>-0     (-----) [002] d.h3 82316.953624: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
99664          <idle>-0     (-----) [002] dnh3 82316.953629: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
99665          <idle>-0     (-----) [000] d.h3 82316.953652: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
99666          <idle>-0     (-----) [002] dnh4 82316.953661: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99667          <idle>-0     (-----) [000] d.h4 82316.953674: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
99668          <idle>-0     (-----) [003] .n.1 82316.953679: cpu_idle: state=4294967295 cpu_id=3
99669          <idle>-0     (-----) [005] dnh2 82316.953681: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99670          <idle>-0     (-----) [005] .n.1 82316.953685: cpu_idle: state=4294967295 cpu_id=5
99671          <idle>-0     (-----) [003] d..2 82316.953690: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
99672          <idle>-0     (-----) [000] ...1 82316.953691: cpu_idle: state=4294967295 cpu_id=0
99673          <idle>-0     (-----) [005] d..2 82316.953693: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99674          <idle>-0     (-----) [000] d..1 82316.953696: cpu_idle: state=0 cpu_id=0
99675          <idle>-0     (-----) [002] .n.1 82316.953698: cpu_idle: state=4294967295 cpu_id=2
99676          <idle>-0     (-----) [002] d..2 82316.953712: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
99677 kgsl_worker_thr-258   (  258) [003] d..2 82316.953716: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
99678          <idle>-0     (-----) [003] d..1 82316.953726: cpu_idle: state=0 cpu_id=3
99679    RenderThread-9436  ( 9105) [002] d..1 82316.953732: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
99680<...>-5340 ( 788) [005] d..1 82316.953746: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99681    RenderThread-9436  ( 9105) [002] d..2 82316.953751: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
99682          <idle>-0     (-----) [003] .n.1 82316.953756: cpu_idle: state=4294967295 cpu_id=3
99683          <idle>-0     (-----) [003] d..2 82316.953765: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
99684 kgsl_worker_thr-258   (  258) [003] d.h3 82316.953786: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
99685 kgsl_worker_thr-258   (  258) [003] d..2 82316.953858: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
99686<...>-5340 ( 788) [005] ...1 82316.953860: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
99687<...>-5340 ( 788) [005] ...1 82316.953864: tracing_mark_write: E|788
99688<...>-5340 ( 788) [005] .... 82316.953881: binder_transaction: transaction=1571694 dest_node=1571689 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
99689<...>-5340 ( 788) [005] .... 82316.953884: binder_transaction_alloc_buf: transaction=1571694 data_size=60 offsets_size=0
99690<...>-5340 ( 788) [005] d..4 82316.953888: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
99691 kgsl_worker_thr-258   (  258) [003] d..3 82316.953899: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
99692<...>-5340 ( 788) [005] d..5 82316.953900: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
99693          <idle>-0     (-----) [004] .n.1 82316.953906: cpu_idle: state=4294967295 cpu_id=4
99694          <idle>-0     (-----) [004] d..2 82316.953915: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
99695 kgsl_worker_thr-258   (  258) [003] d..2 82316.953915: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
99696           <...>-27571 (-----) [004] .... 82316.953920: binder_transaction_received: transaction=1571694
99697<...>-5340 ( 788) [005] ...1 82316.953924: tracing_mark_write: E|788
99698<...>-5340 ( 788) [005] .... 82316.953931: binder_transaction: transaction=1571695 dest_node=0 dest_proc=27550 dest_thread=27797 reply=1 flags=0x0 code=0x0
99699<...>-5340 ( 788) [005] .... 82316.953933: binder_transaction_alloc_buf: transaction=1571695 data_size=8 offsets_size=0
99700<...>-5340 ( 788) [005] d..2 82316.953935: sched_waking: comm=id.nn.benchmark pid=27797 prio=110 target_cpu=005
99701           <...>-27571 (-----) [004] ...1 82316.953940: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
99702<...>-5340 ( 788) [005] d..3 82316.953943: sched_wakeup: comm=id.nn.benchmark pid=27797 prio=110 target_cpu=005
99703<...>-5340 ( 788) [005] .... 82316.953944: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
99704           <...>-27571 (-----) [004] ...1 82316.953946: tracing_mark_write: E|27550
99705 neuralnetworks@-13088 (  788) [003] d..2 82316.953952: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
99706    RenderThread-9436  ( 9105) [002] .... 82316.953968: binder_transaction: transaction=1571696 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
99707    RenderThread-9436  ( 9105) [002] .... 82316.953973: binder_transaction_alloc_buf: transaction=1571696 data_size=192 offsets_size=8
99708           <...>-27571 (-----) [004] d..2 82316.953975: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99709          <idle>-0     (-----) [004] d..1 82316.953983: cpu_idle: state=0 cpu_id=4
99710    RenderThread-9436  ( 9105) [002] d..4 82316.953984: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
99711<...>-5340 ( 788) [005] d..2 82316.953988: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27797 next_prio=110
99712           <...>-27797 (-----) [005] .... 82316.953998: binder_transaction_received: transaction=1571695
99713    RenderThread-9436  ( 9105) [002] dn.5 82316.954000: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
99714  kworker/u16:15-1311  ( 1311) [003] d..2 82316.954003: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
99715    RenderThread-9436  ( 9105) [002] d..2 82316.954010: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
99716<...>-13083 ( 8858) [002] .... 82316.954019: binder_transaction_received: transaction=1571696
99717          <idle>-0     (-----) [003] d..1 82316.954020: cpu_idle: state=0 cpu_id=3
99718           <...>-27797 (-----) [005] ...1 82316.954037: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
99719           <...>-27797 (-----) [005] ...1 82316.954043: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
99720           <...>-27797 (-----) [005] ...1 82316.954069: tracing_mark_write: E|27550
99721           <...>-27797 (-----) [005] ...1 82316.954073: tracing_mark_write: E|27550
99722           <...>-27797 (-----) [005] ...1 82316.954076: tracing_mark_write: E|27550
99723<...>-13083 ( 8858) [002] .... 82316.954202: binder_transaction: transaction=1571697 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
99724<...>-13083 ( 8858) [002] .... 82316.954207: binder_transaction_alloc_buf: transaction=1571697 data_size=68 offsets_size=0
99725<...>-13083 ( 8858) [002] d..2 82316.954250: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
99726    RenderThread-9436  ( 9105) [002] .... 82316.954259: binder_transaction_received: transaction=1571697
99727           <...>-27797 (-----) [005] ...1 82316.954268: tracing_mark_write: E|27550
99728           <...>-27797 (-----) [005] d..1 82316.954280: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99729           <...>-27797 (-----) [005] d..2 82316.954298: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99730          <idle>-0     (-----) [004] .n.1 82316.954303: cpu_idle: state=4294967295 cpu_id=4
99731          <idle>-0     (-----) [004] d..2 82316.954310: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
99732           <...>-27550 (-----) [004] d..2 82316.954330: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99733          <idle>-0     (-----) [004] d..1 82316.954339: cpu_idle: state=0 cpu_id=4
99734    RenderThread-9436  ( 9105) [002] d..2 82316.954348: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99735          <idle>-0     (-----) [002] d..1 82316.954365: cpu_idle: state=0 cpu_id=2
99736           <...>-27797 (-----) [005] d..1 82316.954391: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99737           <...>-27797 (-----) [005] d..2 82316.954400: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99738          <idle>-0     (-----) [004] .n.1 82316.954406: cpu_idle: state=4294967295 cpu_id=4
99739          <idle>-0     (-----) [004] d..2 82316.954414: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
99740           <...>-27797 (-----) [005] d..2 82316.954441: sched_switch: prev_comm=id.nn.benchmark prev_pid=27797 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
99741           <...>-27550 (-----) [004] ...1 82316.954461: tracing_mark_write: E|27550
99742           <...>-27550 (-----) [004] ...1 82316.954465: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
99743          <idle>-0     (-----) [005] d..1 82316.954468: cpu_idle: state=0 cpu_id=5
99744           <...>-27550 (-----) [004] ...1 82316.954471: tracing_mark_write: E|27550
99745           <...>-27550 (-----) [004] ...1 82316.954475: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
99746           <...>-27550 (-----) [004] ...1 82316.954480: tracing_mark_write: E|27550
99747           <...>-27550 (-----) [004] ...1 82316.954484: tracing_mark_write: E|27550
99748           <...>-27550 (-----) [004] ...1 82316.954598: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
99749           <...>-27550 (-----) [004] ...1 82316.954655: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
99750           <...>-27550 (-----) [004] ...1 82316.954660: tracing_mark_write: E|27550
99751           <...>-27550 (-----) [004] ...1 82316.954665: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
99752           <...>-27550 (-----) [004] ...1 82316.954670: tracing_mark_write: E|27550
99753           <...>-27550 (-----) [004] ...1 82316.954674: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
99754           <...>-27550 (-----) [004] ...1 82316.954678: tracing_mark_write: E|27550
99755           <...>-27550 (-----) [004] ...1 82316.954681: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
99756          <idle>-0     (-----) [005] .n.1 82316.954779: cpu_idle: state=4294967295 cpu_id=5
99757           <...>-27550 (-----) [004] ...1 82316.954780: tracing_mark_write: E|27550
99758           <...>-27550 (-----) [004] ...1 82316.954785: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
99759          <idle>-0     (-----) [005] d..2 82316.954788: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27798 next_prio=110
99760           <...>-27550 (-----) [004] d..2 82316.954802: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99761          <idle>-0     (-----) [004] d..1 82316.954816: cpu_idle: state=0 cpu_id=4
99762           <...>-27798 (-----) [005] ...1 82316.954850: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
99763           <...>-27798 (-----) [005] ...1 82316.954864: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
99764           <...>-27798 (-----) [005] ...1 82316.954868: tracing_mark_write: E|27550
99765           <...>-27798 (-----) [005] .... 82316.954892: binder_transaction: transaction=1571698 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
99766           <...>-27798 (-----) [005] .... 82316.954895: binder_transaction_alloc_buf: transaction=1571698 data_size=48 offsets_size=0
99767           <...>-27798 (-----) [005] ...2 82316.954898: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
99768           <...>-27798 (-----) [005] d..4 82316.954901: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
99769           <...>-27798 (-----) [005] dn.5 82316.954913: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
99770           <...>-27798 (-----) [005] d..2 82316.954920: sched_switch: prev_comm=id.nn.benchmark prev_pid=27798 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
99771<...>-770 ( 770) [005] .... 82316.954930: binder_transaction_received: transaction=1571698
99772<...>-770 ( 770) [005] ...1 82316.954956: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
99773<...>-770 ( 770) [005] d..2 82316.955049: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
99774          <idle>-0     (-----) [000] dnh2 82316.955078: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
99775          <idle>-0     (-----) [000] .n.1 82316.955084: cpu_idle: state=4294967295 cpu_id=0
99776<...>-770 ( 770) [005] ...1 82316.955093: tracing_mark_write: E|770
99777          <idle>-0     (-----) [000] d..2 82316.955096: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
99778<...>-770 ( 770) [005] .... 82316.955101: binder_transaction: transaction=1571699 dest_node=0 dest_proc=27550 dest_thread=27798 reply=1 flags=0x0 code=0x0
99779          <idle>-0     (-----) [001] d.h2 82316.955123: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
99780          <idle>-0     (-----) [001] dnh3 82316.955138: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
99781<...>-770 ( 770) [005] .... 82316.955139: binder_transaction_alloc_buf: transaction=1571699 data_size=168 offsets_size=32
99782          <idle>-0     (-----) [003] ...1 82316.955140: cpu_idle: state=4294967295 cpu_id=3
99783          <idle>-0     (-----) [003] d..1 82316.955145: cpu_idle: state=0 cpu_id=3
99784          <idle>-0     (-----) [001] .n.1 82316.955146: cpu_idle: state=4294967295 cpu_id=1
99785<...>-770 ( 770) [005] .... 82316.955147: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
99786          <idle>-0     (-----) [001] d..2 82316.955159: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
99787        DispSync-8879  ( 8858) [001] d..1 82316.955176: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
99788<...>-770 ( 770) [005] d..2 82316.955181: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27798 next_prio=110
99789           <...>-27798 (-----) [005] .... 82316.955192: binder_transaction_received: transaction=1571699
99790        DispSync-8879  ( 8858) [001] d..2 82316.955199: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
99791          <idle>-0     (-----) [002] .n.1 82316.955205: cpu_idle: state=4294967295 cpu_id=2
99792          <idle>-0     (-----) [002] d..2 82316.955218: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
99793        DispSync-8879  ( 8858) [001] d..2 82316.955235: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
99794<...>-581 ( 571) [000] d..2 82316.955239: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99795          <idle>-0     (-----) [001] d..1 82316.955245: cpu_idle: state=0 cpu_id=1
99796          <idle>-0     (-----) [000] d..1 82316.955257: cpu_idle: state=0 cpu_id=0
99797   sfEventThread-8882  ( 8858) [002] d..3 82316.955261: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
99798           <...>-27798 (-----) [005] ...1 82316.955267: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
99799           <...>-27798 (-----) [005] ...1 82316.955272: tracing_mark_write: E|27550
99800   sfEventThread-8882  ( 8858) [002] d..4 82316.955284: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
99801           <...>-27798 (-----) [005] .... 82316.955287: binder_transaction: transaction=1571700 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
99802           <...>-27798 (-----) [005] .... 82316.955289: binder_transaction_alloc_buf: transaction=1571700 data_size=48 offsets_size=0
99803          <idle>-0     (-----) [000] .n.1 82316.955290: cpu_idle: state=4294967295 cpu_id=0
99804           <...>-27798 (-----) [005] ...2 82316.955292: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
99805           <...>-27798 (-----) [005] d..4 82316.955294: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
99806          <idle>-0     (-----) [000] d..2 82316.955301: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
99807           <...>-27798 (-----) [005] dn.5 82316.955304: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
99808           <...>-27798 (-----) [005] d..2 82316.955310: sched_switch: prev_comm=id.nn.benchmark prev_pid=27798 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
99809<...>-770 ( 770) [005] .... 82316.955318: binder_transaction_received: transaction=1571700
99810   sfEventThread-8882  ( 8858) [002] d..2 82316.955321: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99811<...>-770 ( 770) [005] ...1 82316.955336: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
99812          <idle>-0     (-----) [002] d..1 82316.955337: cpu_idle: state=0 cpu_id=2
99813<...>-770 ( 770) [005] d..2 82316.955396: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
99814  surfaceflinger-8858  ( 8858) [000] d.h1 82316.955424: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
99815<...>-770 ( 770) [005] ...1 82316.955432: tracing_mark_write: E|770
99816<...>-770 ( 770) [005] .... 82316.955440: binder_transaction: transaction=1571701 dest_node=0 dest_proc=27550 dest_thread=27798 reply=1 flags=0x0 code=0x0
99817<...>-770 ( 770) [005] .... 82316.955442: binder_transaction_alloc_buf: transaction=1571701 data_size=168 offsets_size=32
99818<...>-770 ( 770) [005] .... 82316.955448: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
99819<...>-770 ( 770) [005] d..2 82316.955483: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27798 next_prio=110
99820           <...>-27798 (-----) [005] .... 82316.955493: binder_transaction_received: transaction=1571701
99821  surfaceflinger-8858  ( 8858) [000] d..1 82316.955680: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
99822  surfaceflinger-8858  ( 8858) [000] d..2 82316.955703: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
99823          <idle>-0     (-----) [002] .n.1 82316.955709: cpu_idle: state=4294967295 cpu_id=2
99824          <idle>-0     (-----) [002] d..2 82316.955719: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
99825   sfEventThread-8882  ( 8858) [002] d..2 82316.955757: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99826          <idle>-0     (-----) [002] d..1 82316.955768: cpu_idle: state=0 cpu_id=2
99827           <...>-27798 (-----) [005] ...1 82316.955770: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
99828           <...>-27798 (-----) [005] ...1 82316.955780: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
99829           <...>-27798 (-----) [005] ...1 82316.955784: tracing_mark_write: E|27550
99830           <...>-27798 (-----) [005] .... 82316.955846: binder_transaction: transaction=1571702 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
99831           <...>-27798 (-----) [005] .... 82316.955850: binder_transaction_alloc_buf: transaction=1571702 data_size=556 offsets_size=104
99832           <...>-27798 (-----) [005] ...2 82316.955864: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
99833           <...>-27798 (-----) [005] d..4 82316.955867: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99834           <...>-27798 (-----) [005] dn.5 82316.955878: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99835           <...>-27798 (-----) [005] d..2 82316.955885: sched_switch: prev_comm=id.nn.benchmark prev_pid=27798 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99836<...>-5340 ( 788) [005] .... 82316.955895: binder_transaction_received: transaction=1571702
99837  surfaceflinger-8858  ( 8858) [000] ...1 82316.955898: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
99838  surfaceflinger-8858  ( 8858) [000] ...1 82316.955905: tracing_mark_write: E|8858
99839<...>-5340 ( 788) [005] ...1 82316.955942: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
99840  surfaceflinger-8858  ( 8858) [000] .... 82316.955959: binder_transaction: transaction=1571705 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
99841  surfaceflinger-8858  ( 8858) [000] .... 82316.955965: binder_transaction_alloc_buf: transaction=1571705 data_size=540 offsets_size=96
99842<...>-5340 ( 788) [005] d..2 82316.955988: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=003
99843  surfaceflinger-8858  ( 8858) [000] ...2 82316.955991: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
99844  surfaceflinger-8858  ( 8858) [000] d..4 82316.955999: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
99845  surfaceflinger-8858  ( 8858) [000] d..5 82316.956020: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
99846          <idle>-0     (-----) [002] .n.1 82316.956026: cpu_idle: state=4294967295 cpu_id=2
99847<...>-5340 ( 788) [005] d..2 82316.956027: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27798 next_prio=110
99848  surfaceflinger-8858  ( 8858) [000] d.h4 82316.956035: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99849          <idle>-0     (-----) [002] d..2 82316.956036: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
99850 [email protected]   (  619) [002] .... 82316.956047: binder_transaction_received: transaction=1571705
99851           <...>-27798 (-----) [005] d..2 82316.956050: sched_switch: prev_comm=id.nn.benchmark prev_pid=27798 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
99852  surfaceflinger-8858  ( 8858) [000] d..2 82316.956055: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
99853          <idle>-0     (-----) [005] d..1 82316.956068: cpu_idle: state=0 cpu_id=5
99854<...>-87 ( 87) [000] d..2 82316.956093: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
99855 [email protected]   (  619) [002] d.h3 82316.956109: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=003
99856 [email protected]   (  619) [002] d.h4 82316.956160: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
99857<...>-581 ( 571) [000] d..2 82316.956171: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=smem_native_cds next_pid=86 next_prio=120
99858 [email protected]   (  619) [002] d.h3 82316.956190: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99859          <idle>-0     (-----) [005] dnh2 82316.956213: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99860          <idle>-0     (-----) [005] .n.1 82316.956217: cpu_idle: state=4294967295 cpu_id=5
99861          <idle>-0     (-----) [005] d..2 82316.956225: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99862 [email protected]   (  619) [002] ...1 82316.956241: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
99863<...>-86 ( 86) [000] d..2 82316.956253: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
99864<...>-581 ( 571) [000] d..2 82316.956279: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99865<...>-5340 ( 788) [005] d..1 82316.956280: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
99866          <idle>-0     (-----) [000] d..1 82316.956299: cpu_idle: state=0 cpu_id=0
99867          <idle>-0     (-----) [000] dnh2 82316.956318: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99868          <idle>-0     (-----) [000] .n.1 82316.956326: cpu_idle: state=4294967295 cpu_id=0
99869          <idle>-0     (-----) [000] d..2 82316.956337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
99870 [email protected]   (  619) [002] ...1 82316.956352: tracing_mark_write: B|619|HWCSession::PresentDisplay::
99871 neuralnetworks@-13088 (  788) [000] d..2 82316.956394: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99872          <idle>-0     (-----) [000] d..1 82316.956409: cpu_idle: state=0 cpu_id=0
99873<...>-5340 ( 788) [005] d..2 82316.956437: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99874          <idle>-0     (-----) [000] dnh2 82316.956460: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
99875<...>-5340 ( 788) [005] d..2 82316.956463: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
99876          <idle>-0     (-----) [000] .n.1 82316.956466: cpu_idle: state=4294967295 cpu_id=0
99877          <idle>-0     (-----) [000] d..2 82316.956477: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
99878          <idle>-0     (-----) [005] d..1 82316.956478: cpu_idle: state=0 cpu_id=5
99879 [email protected]   (  619) [002] d.h3 82316.956517: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
99880<...>-87 ( 87) [000] d..2 82316.956518: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99881          <idle>-0     (-----) [000] d..1 82316.956530: cpu_idle: state=0 cpu_id=0
99882 [email protected]   (  619) [002] d.h4 82316.956538: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
99883          <idle>-0     (-----) [000] .n.1 82316.956543: cpu_idle: state=4294967295 cpu_id=0
99884          <idle>-0     (-----) [000] d..2 82316.956554: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
99885 [email protected]   (  619) [002] ...1 82316.956577: tracing_mark_write: B|619|HWDeviceDRM::Commit::
99886<...>-86 ( 86) [000] d..2 82316.956590: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99887 [email protected]   (  619) [002] ...1 82316.956592: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
99888          <idle>-0     (-----) [000] d..1 82316.956602: cpu_idle: state=0 cpu_id=0
99889          <idle>-0     (-----) [005] ...1 82316.956804: cpu_idle: state=4294967295 cpu_id=5
99890          <idle>-0     (-----) [005] d..1 82316.956807: cpu_idle: state=0 cpu_id=5
99891 [email protected]   (  619) [002] d..2 82316.957210: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
99892 [email protected]   (  619) [002] d..3 82316.957235: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
99893          <idle>-0     (-----) [001] .n.1 82316.957240: cpu_idle: state=4294967295 cpu_id=1
99894          <idle>-0     (-----) [001] d..2 82316.957249: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
99895 [email protected]   (  619) [002] ...1 82316.957336: tracing_mark_write: E|619
99896 [email protected]   (  619) [002] ...1 82316.957343: tracing_mark_write: E|619
99897 [email protected]   (  619) [002] ...1 82316.957405: tracing_mark_write: E|619
99898 [email protected]   (  619) [002] ...1 82316.957450: tracing_mark_write: E|619
99899 [email protected]   (  619) [002] .... 82316.957465: binder_transaction: transaction=1571706 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
99900 [email protected]   (  619) [002] .... 82316.957470: binder_transaction_alloc_buf: transaction=1571706 data_size=576 offsets_size=112
99901 [email protected]   (  619) [002] d..2 82316.957490: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
99902 [email protected]   (  619) [002] d..3 82316.957508: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
99903 [email protected]   (  619) [002] .... 82316.957512: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
99904          <idle>-0     (-----) [000] .n.1 82316.957513: cpu_idle: state=4294967295 cpu_id=0
99905          <idle>-0     (-----) [000] d..2 82316.957523: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
99906  surfaceflinger-8858  ( 8858) [000] .... 82316.957533: binder_transaction_received: transaction=1571706
99907 [email protected]   (  619) [002] d..2 82316.957598: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
99908          <idle>-0     (-----) [002] d..1 82316.957618: cpu_idle: state=0 cpu_id=2
99909 crtc_commit:111-321   (  321) [001] d..2 82316.957955: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
99910          <idle>-0     (-----) [001] d..1 82316.957965: cpu_idle: state=0 cpu_id=1
99911  surfaceflinger-8858  ( 8858) [000] d..2 82316.957982: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99912          <idle>-0     (-----) [000] d..1 82316.958003: cpu_idle: state=0 cpu_id=0
99913          <idle>-0     (-----) [002] d.h4 82316.958167: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99914          <idle>-0     (-----) [005] dnh2 82316.958189: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
99915          <idle>-0     (-----) [005] .n.1 82316.958192: cpu_idle: state=4294967295 cpu_id=5
99916          <idle>-0     (-----) [005] d..2 82316.958200: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
99917          <idle>-0     (-----) [002] ...1 82316.958211: cpu_idle: state=4294967295 cpu_id=2
99918          <idle>-0     (-----) [002] d..1 82316.958217: cpu_idle: state=0 cpu_id=2
99919<...>-5340 ( 788) [005] d..1 82316.958251: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99920          <idle>-0     (-----) [000] dnh2 82316.958281: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
99921          <idle>-0     (-----) [000] .n.1 82316.958289: cpu_idle: state=4294967295 cpu_id=0
99922          <idle>-0     (-----) [000] d..2 82316.958330: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
99923<...>-5340 ( 788) [005] ...1 82316.958344: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
99924<...>-5340 ( 788) [005] ...1 82316.958348: tracing_mark_write: E|788
99925<...>-5340 ( 788) [005] .... 82316.958365: binder_transaction: transaction=1571707 dest_node=1571703 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
99926<...>-5340 ( 788) [005] .... 82316.958368: binder_transaction_alloc_buf: transaction=1571707 data_size=60 offsets_size=0
99927<...>-5340 ( 788) [005] d..4 82316.958371: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
99928 neuralnetworks@-13088 (  788) [000] d..2 82316.958375: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
99929<...>-5340 ( 788) [005] d..5 82316.958383: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
99930          <idle>-0     (-----) [000] d..1 82316.958389: cpu_idle: state=0 cpu_id=0
99931          <idle>-0     (-----) [004] .n.1 82316.958390: cpu_idle: state=4294967295 cpu_id=4
99932          <idle>-0     (-----) [004] d..2 82316.958399: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
99933           <...>-27571 (-----) [004] .... 82316.958404: binder_transaction_received: transaction=1571707
99934<...>-5340 ( 788) [005] ...1 82316.958406: tracing_mark_write: E|788
99935<...>-5340 ( 788) [005] .... 82316.958412: binder_transaction: transaction=1571708 dest_node=0 dest_proc=27550 dest_thread=27798 reply=1 flags=0x0 code=0x0
99936<...>-5340 ( 788) [005] .... 82316.958414: binder_transaction_alloc_buf: transaction=1571708 data_size=8 offsets_size=0
99937<...>-5340 ( 788) [005] d..2 82316.958416: sched_waking: comm=id.nn.benchmark pid=27798 prio=110 target_cpu=005
99938           <...>-27571 (-----) [004] ...1 82316.958422: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
99939<...>-5340 ( 788) [005] d..3 82316.958424: sched_wakeup: comm=id.nn.benchmark pid=27798 prio=110 target_cpu=005
99940<...>-5340 ( 788) [005] .... 82316.958426: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
99941           <...>-27571 (-----) [004] ...1 82316.958429: tracing_mark_write: E|27550
99942<...>-5340 ( 788) [005] d.s2 82316.958467: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
99943          <idle>-0     (-----) [001] d.s2 82316.958469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
99944          <idle>-0     (-----) [001] dns3 82316.958488: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
99945          <idle>-0     (-----) [001] dns2 82316.958491: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
99946           <...>-27571 (-----) [004] d..2 82316.958495: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99947          <idle>-0     (-----) [000] dnh2 82316.958502: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
99948          <idle>-0     (-----) [004] d..1 82316.958504: cpu_idle: state=0 cpu_id=4
99949          <idle>-0     (-----) [001] dns3 82316.958504: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
99950          <idle>-0     (-----) [000] .n.1 82316.958509: cpu_idle: state=4294967295 cpu_id=0
99951          <idle>-0     (-----) [001] .n.1 82316.958520: cpu_idle: state=4294967295 cpu_id=1
99952          <idle>-0     (-----) [000] d..2 82316.958521: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
99953<...>-5340 ( 788) [005] d..2 82316.958530: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27798 next_prio=110
99954          <idle>-0     (-----) [001] d..2 82316.958531: 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
99955           <...>-27798 (-----) [005] .... 82316.958540: binder_transaction_received: transaction=1571708
99956<...>-8 ( 8) [001] d..2 82316.958541: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=003
99957           <...>-27798 (-----) [005] ...1 82316.958579: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
99958<...>-8 ( 8) [001] d..3 82316.958580: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
99959           <...>-27798 (-----) [005] ...1 82316.958585: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
99960<...>-8 ( 8) [001] d..2 82316.958602: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
99961           <...>-27798 (-----) [005] ...1 82316.958612: tracing_mark_write: E|27550
99962           <...>-27798 (-----) [005] ...1 82316.958615: tracing_mark_write: E|27550
99963           <...>-27798 (-----) [005] ...1 82316.958619: tracing_mark_write: E|27550
99964<...>-46 ( 46) [001] d..2 82316.958624: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
99965<...>-46 ( 46) [001] d..3 82316.958641: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
99966  kworker/u16:15-1311  ( 1311) [000] .... 82316.958647: clk_set_rate: l3_cluster0_vote_clk 403200000
99967<...>-46 ( 46) [001] d..2 82316.958650: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
99968     rcu_preempt-7     (    7) [001] d..2 82316.958658: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
99969     rcu_preempt-7     (    7) [001] d..3 82316.958693: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
99970     rcu_preempt-7     (    7) [001] d..2 82316.958708: 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
99971         rcuop/4-45    (   45) [001] d..2 82316.958714: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
99972         rcuop/4-45    (   45) [001] d..3 82316.958777: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
99973         rcuop/4-45    (   45) [001] d..2 82316.958795: 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
99974           <...>-27798 (-----) [005] ...1 82316.958823: tracing_mark_write: E|27550
99975           <...>-27798 (-----) [005] d..1 82316.958835: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99976           <...>-27798 (-----) [005] d..2 82316.958852: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99977          <idle>-0     (-----) [004] .n.1 82316.958857: cpu_idle: state=4294967295 cpu_id=4
99978          <idle>-0     (-----) [004] d..2 82316.958864: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
99979           <...>-27550 (-----) [004] d..2 82316.958886: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
99980         rcuop/5-53    (   53) [001] d..2 82316.958892: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
99981          <idle>-0     (-----) [004] d..1 82316.958895: cpu_idle: state=0 cpu_id=4
99982<...>-8 ( 8) [001] d..2 82316.958917: 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
99983          <idle>-0     (-----) [001] d..1 82316.958932: cpu_idle: state=0 cpu_id=1
99984           <...>-27798 (-----) [005] d..1 82316.958940: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99985           <...>-27798 (-----) [005] d..2 82316.958950: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
99986          <idle>-0     (-----) [004] .n.1 82316.958955: cpu_idle: state=4294967295 cpu_id=4
99987          <idle>-0     (-----) [004] d..2 82316.958962: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
99988           <...>-27798 (-----) [005] d..2 82316.958990: sched_switch: prev_comm=id.nn.benchmark prev_pid=27798 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
99989           <...>-27550 (-----) [004] ...1 82316.958996: tracing_mark_write: E|27550
99990           <...>-27550 (-----) [004] ...1 82316.959001: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
99991  kworker/u16:15-1311  ( 1311) [000] d..2 82316.959004: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
99992           <...>-27550 (-----) [004] ...1 82316.959007: tracing_mark_write: E|27550
99993           <...>-27550 (-----) [004] ...1 82316.959010: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
99994          <idle>-0     (-----) [005] d..1 82316.959010: cpu_idle: state=0 cpu_id=5
99995           <...>-27550 (-----) [004] ...1 82316.959014: tracing_mark_write: E|27550
99996           <...>-27550 (-----) [004] ...1 82316.959018: tracing_mark_write: E|27550
99997          <idle>-0     (-----) [000] d..1 82316.959020: cpu_idle: state=0 cpu_id=0
99998          <idle>-0     (-----) [001] d.s3 82316.959037: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
99999          <idle>-0     (-----) [001] d.s4 82316.959049: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
100000          <idle>-0     (-----) [001] d.s4 82316.959058: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
100001          <idle>-0     (-----) [000] .n.1 82316.959065: cpu_idle: state=4294967295 cpu_id=0
100002          <idle>-0     (-----) [001] ...1 82316.959067: cpu_idle: state=4294967295 cpu_id=1
100003          <idle>-0     (-----) [001] d..1 82316.959074: cpu_idle: state=0 cpu_id=1
100004          <idle>-0     (-----) [000] d..2 82316.959077: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
100005           <...>-27550 (-----) [004] ...1 82316.959146: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
100006  kworker/u16:15-1311  ( 1311) [000] d..2 82316.959158: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100007          <idle>-0     (-----) [000] d..1 82316.959172: cpu_idle: state=0 cpu_id=0
100008           <...>-27550 (-----) [004] ...1 82316.959204: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
100009           <...>-27550 (-----) [004] ...1 82316.959209: tracing_mark_write: E|27550
100010           <...>-27550 (-----) [004] ...1 82316.959213: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
100011           <...>-27550 (-----) [004] ...1 82316.959218: tracing_mark_write: E|27550
100012           <...>-27550 (-----) [004] ...1 82316.959221: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
100013           <...>-27550 (-----) [004] ...1 82316.959226: tracing_mark_write: E|27550
100014           <...>-27550 (-----) [004] ...1 82316.959231: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
100015          <idle>-0     (-----) [005] .n.1 82316.959329: cpu_idle: state=4294967295 cpu_id=5
100016           <...>-27550 (-----) [004] ...1 82316.959331: tracing_mark_write: E|27550
100017           <...>-27550 (-----) [004] ...1 82316.959335: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
100018          <idle>-0     (-----) [005] d..2 82316.959338: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27799 next_prio=110
100019           <...>-27550 (-----) [004] d..2 82316.959352: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100020          <idle>-0     (-----) [004] d..1 82316.959366: cpu_idle: state=0 cpu_id=4
100021           <...>-27799 (-----) [005] ...1 82316.959400: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
100022           <...>-27799 (-----) [005] ...1 82316.959416: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
100023           <...>-27799 (-----) [005] ...1 82316.959420: tracing_mark_write: E|27550
100024           <...>-27799 (-----) [005] .... 82316.959441: binder_transaction: transaction=1571709 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
100025           <...>-27799 (-----) [005] .... 82316.959444: binder_transaction_alloc_buf: transaction=1571709 data_size=48 offsets_size=0
100026           <...>-27799 (-----) [005] ...2 82316.959448: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
100027           <...>-27799 (-----) [005] d..4 82316.959451: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
100028           <...>-27799 (-----) [005] dn.5 82316.959461: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
100029           <...>-27799 (-----) [005] d..2 82316.959468: sched_switch: prev_comm=id.nn.benchmark prev_pid=27799 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
100030<...>-770 ( 770) [005] .... 82316.959478: binder_transaction_received: transaction=1571709
100031<...>-770 ( 770) [005] ...1 82316.959503: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
100032<...>-770 ( 770) [005] d..2 82316.959591: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
100033          <idle>-0     (-----) [000] dnh2 82316.959619: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
100034          <idle>-0     (-----) [000] .n.1 82316.959626: cpu_idle: state=4294967295 cpu_id=0
100035<...>-770 ( 770) [005] ...1 82316.959633: tracing_mark_write: E|770
100036          <idle>-0     (-----) [000] d..2 82316.959637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
100037<...>-770 ( 770) [005] .... 82316.959641: binder_transaction: transaction=1571710 dest_node=0 dest_proc=27550 dest_thread=27799 reply=1 flags=0x0 code=0x0
100038<...>-770 ( 770) [005] .... 82316.959643: binder_transaction_alloc_buf: transaction=1571710 data_size=168 offsets_size=32
100039<...>-770 ( 770) [005] .... 82316.959650: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
100040<...>-770 ( 770) [005] d..2 82316.959686: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27799 next_prio=110
100041           <...>-27799 (-----) [005] .... 82316.959698: binder_transaction_received: transaction=1571710
100042<...>-581 ( 571) [000] d..2 82316.959728: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100043          <idle>-0     (-----) [000] d..1 82316.959745: cpu_idle: state=0 cpu_id=0
100044           <...>-27799 (-----) [005] ...1 82316.959772: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
100045           <...>-27799 (-----) [005] ...1 82316.959777: tracing_mark_write: E|27550
100046           <...>-27799 (-----) [005] .... 82316.959792: binder_transaction: transaction=1571711 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
100047           <...>-27799 (-----) [005] .... 82316.959795: binder_transaction_alloc_buf: transaction=1571711 data_size=48 offsets_size=0
100048           <...>-27799 (-----) [005] ...2 82316.959797: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
100049           <...>-27799 (-----) [005] d..4 82316.959799: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
100050           <...>-27799 (-----) [005] dn.5 82316.959809: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
100051           <...>-27799 (-----) [005] d..2 82316.959816: sched_switch: prev_comm=id.nn.benchmark prev_pid=27799 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
100052<...>-770 ( 770) [005] .... 82316.959824: binder_transaction_received: transaction=1571711
100053<...>-770 ( 770) [005] ...1 82316.959840: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
100054<...>-770 ( 770) [005] d..2 82316.959899: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
100055          <idle>-0     (-----) [000] dnh2 82316.959924: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
100056          <idle>-0     (-----) [000] .n.1 82316.959931: cpu_idle: state=4294967295 cpu_id=0
100057<...>-770 ( 770) [005] ...1 82316.959933: tracing_mark_write: E|770
100058<...>-770 ( 770) [005] .... 82316.959940: binder_transaction: transaction=1571712 dest_node=0 dest_proc=27550 dest_thread=27799 reply=1 flags=0x0 code=0x0
100059          <idle>-0     (-----) [000] d..2 82316.959942: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
100060<...>-770 ( 770) [005] .... 82316.959943: binder_transaction_alloc_buf: transaction=1571712 data_size=168 offsets_size=32
100061<...>-770 ( 770) [005] .... 82316.959949: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
100062<...>-770 ( 770) [005] d..2 82316.959983: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27799 next_prio=110
100063           <...>-27799 (-----) [005] .... 82316.959994: binder_transaction_received: transaction=1571712
100064<...>-581 ( 571) [000] d..2 82316.960002: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100065          <idle>-0     (-----) [000] d..1 82316.960016: cpu_idle: state=0 cpu_id=0
100066           <...>-27799 (-----) [005] ...1 82316.960273: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
100067           <...>-27799 (-----) [005] ...1 82316.960283: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
100068           <...>-27799 (-----) [005] ...1 82316.960287: tracing_mark_write: E|27550
100069           <...>-27799 (-----) [005] .... 82316.960354: binder_transaction: transaction=1571713 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
100070           <...>-27799 (-----) [005] .... 82316.960357: binder_transaction_alloc_buf: transaction=1571713 data_size=556 offsets_size=104
100071           <...>-27799 (-----) [005] ...2 82316.960371: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
100072           <...>-27799 (-----) [005] d..4 82316.960374: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100073           <...>-27799 (-----) [005] dn.5 82316.960385: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100074           <...>-27799 (-----) [005] d..2 82316.960392: sched_switch: prev_comm=id.nn.benchmark prev_pid=27799 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100075<...>-5340 ( 788) [005] .... 82316.960402: binder_transaction_received: transaction=1571713
100076<...>-5340 ( 788) [005] ...1 82316.960450: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
100077<...>-5340 ( 788) [005] d..2 82316.960497: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
100078<...>-5340 ( 788) [005] d..2 82316.960521: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27799 next_prio=110
100079          <idle>-0     (-----) [000] dnh2 82316.960525: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
100080          <idle>-0     (-----) [000] .n.1 82316.960532: cpu_idle: state=4294967295 cpu_id=0
100081          <idle>-0     (-----) [000] d..2 82316.960543: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
100082           <...>-27799 (-----) [005] d..2 82316.960544: sched_switch: prev_comm=id.nn.benchmark prev_pid=27799 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
100083          <idle>-0     (-----) [005] d..1 82316.960561: cpu_idle: state=0 cpu_id=5
100084<...>-87 ( 87) [000] d..2 82316.960586: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100085          <idle>-0     (-----) [002] d.h4 82316.960594: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
100086          <idle>-0     (-----) [000] d..1 82316.960599: cpu_idle: state=0 cpu_id=0
100087          <idle>-0     (-----) [002] dnh5 82316.960629: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100088          <idle>-0     (-----) [002] .n.1 82316.960638: cpu_idle: state=4294967295 cpu_id=2
100089          <idle>-0     (-----) [002] d..2 82316.960651: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
100090<...>-86 ( 86) [002] d.h4 82316.960680: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100091          <idle>-0     (-----) [005] dnh2 82316.960701: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100092          <idle>-0     (-----) [005] .n.1 82316.960706: cpu_idle: state=4294967295 cpu_id=5
100093          <idle>-0     (-----) [005] d..2 82316.960714: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100094<...>-86 ( 86) [002] d..2 82316.960741: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100095          <idle>-0     (-----) [002] d..1 82316.960756: cpu_idle: state=0 cpu_id=2
100096<...>-5340 ( 788) [005] d..1 82316.960765: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
100097          <idle>-0     (-----) [000] dnh2 82316.960791: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
100098          <idle>-0     (-----) [000] .n.1 82316.960798: cpu_idle: state=4294967295 cpu_id=0
100099          <idle>-0     (-----) [000] d..2 82316.960808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
100100 neuralnetworks@-13088 (  788) [000] d..2 82316.960859: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100101          <idle>-0     (-----) [000] d..1 82316.960872: cpu_idle: state=0 cpu_id=0
100102<...>-5340 ( 788) [005] d..2 82316.960912: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
100103          <idle>-0     (-----) [000] dnh2 82316.960934: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
100104<...>-5340 ( 788) [005] d..2 82316.960938: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
100105          <idle>-0     (-----) [000] .n.1 82316.960941: cpu_idle: state=4294967295 cpu_id=0
100106          <idle>-0     (-----) [000] d..2 82316.960952: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
100107          <idle>-0     (-----) [005] d..1 82316.960952: cpu_idle: state=0 cpu_id=5
100108<...>-87 ( 87) [000] d..2 82316.960990: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100109          <idle>-0     (-----) [002] d.h4 82316.960990: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100110          <idle>-0     (-----) [000] d..1 82316.961003: cpu_idle: state=0 cpu_id=0
100111          <idle>-0     (-----) [002] dnh5 82316.961003: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100112          <idle>-0     (-----) [002] .n.1 82316.961012: cpu_idle: state=4294967295 cpu_id=2
100113          <idle>-0     (-----) [002] d..2 82316.961024: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
100114<...>-86 ( 86) [002] d..2 82316.961057: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100115          <idle>-0     (-----) [002] d..1 82316.961070: cpu_idle: state=0 cpu_id=2
100116          <idle>-0     (-----) [005] ...1 82316.961286: cpu_idle: state=4294967295 cpu_id=5
100117          <idle>-0     (-----) [005] d..1 82316.961289: cpu_idle: state=0 cpu_id=5
100118          <idle>-0     (-----) [000] d..2 82316.962287: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
100119          <idle>-0     (-----) [000] dn.3 82316.962300: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
100120          <idle>-0     (-----) [000] .n.1 82316.962304: cpu_idle: state=4294967295 cpu_id=0
100121          <idle>-0     (-----) [000] d..2 82316.962318: 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
100122     ksoftirqd/0-3     (    3) [000] d..2 82316.962352: 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
100123          <idle>-0     (-----) [000] d..1 82316.962363: cpu_idle: state=0 cpu_id=0
100124          <idle>-0     (-----) [002] ...1 82316.962425: cpu_idle: state=4294967295 cpu_id=2
100125          <idle>-0     (-----) [002] d..1 82316.962430: cpu_idle: state=0 cpu_id=2
100126          <idle>-0     (-----) [002] d.h4 82316.962713: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100127          <idle>-0     (-----) [005] dnh2 82316.962733: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100128          <idle>-0     (-----) [005] .n.1 82316.962737: cpu_idle: state=4294967295 cpu_id=5
100129          <idle>-0     (-----) [005] d..2 82316.962745: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100130          <idle>-0     (-----) [002] ...1 82316.962753: cpu_idle: state=4294967295 cpu_id=2
100131          <idle>-0     (-----) [002] d..1 82316.962759: cpu_idle: state=0 cpu_id=2
100132<...>-5340 ( 788) [005] d..1 82316.962796: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
100133          <idle>-0     (-----) [000] dnh2 82316.962821: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
100134          <idle>-0     (-----) [000] .n.1 82316.962827: cpu_idle: state=4294967295 cpu_id=0
100135          <idle>-0     (-----) [000] d..2 82316.962837: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
100136<...>-5340 ( 788) [005] ...1 82316.962886: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
100137<...>-5340 ( 788) [005] ...1 82316.962890: tracing_mark_write: E|788
100138 neuralnetworks@-13088 (  788) [000] d..2 82316.962900: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100139<...>-5340 ( 788) [005] .... 82316.962906: binder_transaction: transaction=1571716 dest_node=1571714 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
100140<...>-5340 ( 788) [005] .... 82316.962909: binder_transaction_alloc_buf: transaction=1571716 data_size=60 offsets_size=0
100141<...>-5340 ( 788) [005] d..4 82316.962912: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
100142          <idle>-0     (-----) [000] d..1 82316.962914: cpu_idle: state=0 cpu_id=0
100143<...>-5340 ( 788) [005] d..5 82316.962924: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
100144          <idle>-0     (-----) [004] .n.1 82316.962930: cpu_idle: state=4294967295 cpu_id=4
100145          <idle>-0     (-----) [004] d..2 82316.962939: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
100146           <...>-27571 (-----) [004] .... 82316.962944: binder_transaction_received: transaction=1571716
100147<...>-5340 ( 788) [005] ...1 82316.962946: tracing_mark_write: E|788
100148<...>-5340 ( 788) [005] .... 82316.962952: binder_transaction: transaction=1571717 dest_node=0 dest_proc=27550 dest_thread=27799 reply=1 flags=0x0 code=0x0
100149<...>-5340 ( 788) [005] .... 82316.962955: binder_transaction_alloc_buf: transaction=1571717 data_size=8 offsets_size=0
100150<...>-5340 ( 788) [005] d..2 82316.962956: sched_waking: comm=id.nn.benchmark pid=27799 prio=110 target_cpu=005
100151           <...>-27571 (-----) [004] ...1 82316.962962: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
100152<...>-5340 ( 788) [005] d..3 82316.962963: sched_wakeup: comm=id.nn.benchmark pid=27799 prio=110 target_cpu=005
100153<...>-5340 ( 788) [005] .... 82316.962965: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
100154           <...>-27571 (-----) [004] ...1 82316.962968: tracing_mark_write: E|27550
100155           <...>-27571 (-----) [004] d..2 82316.962997: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100156          <idle>-0     (-----) [004] d..1 82316.963005: cpu_idle: state=0 cpu_id=4
100157<...>-5340 ( 788) [005] d..2 82316.963006: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27799 next_prio=110
100158           <...>-27799 (-----) [005] .... 82316.963016: binder_transaction_received: transaction=1571717
100159           <...>-27799 (-----) [005] ...1 82316.963052: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
100160           <...>-27799 (-----) [005] ...1 82316.963058: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
100161           <...>-27799 (-----) [005] ...1 82316.963085: tracing_mark_write: E|27550
100162           <...>-27799 (-----) [005] ...1 82316.963089: tracing_mark_write: E|27550
100163           <...>-27799 (-----) [005] ...1 82316.963092: tracing_mark_write: E|27550
100164          <idle>-0     (-----) [000] d.h5 82316.963173: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
100165          <idle>-0     (-----) [000] d.h6 82316.963228: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
100166          <idle>-0     (-----) [003] .n.1 82316.963233: cpu_idle: state=4294967295 cpu_id=3
100167          <idle>-0     (-----) [000] d.h5 82316.963233: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
100168          <idle>-0     (-----) [003] d..2 82316.963245: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
100169          <idle>-0     (-----) [000] d.h6 82316.963246: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
100170          <idle>-0     (-----) [001] .n.1 82316.963252: cpu_idle: state=4294967295 cpu_id=1
100171          <idle>-0     (-----) [000] ...1 82316.963264: cpu_idle: state=4294967295 cpu_id=0
100172          <idle>-0     (-----) [001] d..2 82316.963265: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
100173          <idle>-0     (-----) [000] d..1 82316.963270: cpu_idle: state=0 cpu_id=0
100174           <...>-27799 (-----) [005] ...1 82316.963277: tracing_mark_write: E|27550
100175  crtc_event:111-322   (  322) [003] d..2 82316.963282: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100176           <...>-27799 (-----) [005] d..1 82316.963289: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100177          <idle>-0     (-----) [003] d..1 82316.963294: cpu_idle: state=0 cpu_id=3
100178           <...>-27799 (-----) [005] d..2 82316.963305: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100179          <idle>-0     (-----) [004] .n.1 82316.963310: cpu_idle: state=4294967295 cpu_id=4
100180          <idle>-0     (-----) [004] d..2 82316.963316: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
100181           <...>-27550 (-----) [004] d..2 82316.963335: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100182          <idle>-0     (-----) [004] d..1 82316.963344: cpu_idle: state=0 cpu_id=4
100183           <...>-27799 (-----) [005] d..1 82316.963392: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100184           <...>-27799 (-----) [005] d..2 82316.963401: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100185          <idle>-0     (-----) [004] .n.1 82316.963406: cpu_idle: state=4294967295 cpu_id=4
100186 crtc_commit:111-321   (  321) [001] d..2 82316.963412: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
100187          <idle>-0     (-----) [004] d..2 82316.963414: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
100188          <idle>-0     (-----) [001] d..1 82316.963420: cpu_idle: state=0 cpu_id=1
100189           <...>-27799 (-----) [005] d..2 82316.963439: sched_switch: prev_comm=id.nn.benchmark prev_pid=27799 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
100190           <...>-27550 (-----) [004] ...1 82316.963447: tracing_mark_write: E|27550
100191           <...>-27550 (-----) [004] ...1 82316.963451: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
100192           <...>-27550 (-----) [004] ...1 82316.963457: tracing_mark_write: E|27550
100193          <idle>-0     (-----) [005] d..1 82316.963460: cpu_idle: state=0 cpu_id=5
100194           <...>-27550 (-----) [004] ...1 82316.963460: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
100195           <...>-27550 (-----) [004] ...1 82316.963464: tracing_mark_write: E|27550
100196           <...>-27550 (-----) [004] ...1 82316.963468: tracing_mark_write: E|27550
100197           <...>-27550 (-----) [004] ...1 82316.963583: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
100198           <...>-27550 (-----) [004] ...1 82316.963641: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
100199           <...>-27550 (-----) [004] ...1 82316.963647: tracing_mark_write: E|27550
100200           <...>-27550 (-----) [004] ...1 82316.963651: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
100201           <...>-27550 (-----) [004] ...1 82316.963656: tracing_mark_write: E|27550
100202           <...>-27550 (-----) [004] ...1 82316.963660: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
100203           <...>-27550 (-----) [004] ...1 82316.963665: tracing_mark_write: E|27550
100204           <...>-27550 (-----) [004] ...1 82316.963669: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
100205          <idle>-0     (-----) [005] .n.1 82316.963757: cpu_idle: state=4294967295 cpu_id=5
100206           <...>-27550 (-----) [004] ...1 82316.963758: tracing_mark_write: E|27550
100207           <...>-27550 (-----) [004] ...1 82316.963763: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
100208          <idle>-0     (-----) [005] d..2 82316.963765: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27800 next_prio=110
100209           <...>-27550 (-----) [004] d..2 82316.963779: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100210          <idle>-0     (-----) [004] d..1 82316.963793: cpu_idle: state=0 cpu_id=4
100211           <...>-27800 (-----) [005] ...1 82316.963827: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
100212           <...>-27800 (-----) [005] ...1 82316.963840: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
100213           <...>-27800 (-----) [005] ...1 82316.963844: tracing_mark_write: E|27550
100214           <...>-27800 (-----) [005] .... 82316.963865: binder_transaction: transaction=1571718 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
100215           <...>-27800 (-----) [005] .... 82316.963869: binder_transaction_alloc_buf: transaction=1571718 data_size=48 offsets_size=0
100216           <...>-27800 (-----) [005] ...2 82316.963871: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
100217           <...>-27800 (-----) [005] d..4 82316.963874: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
100218           <...>-27800 (-----) [005] dn.5 82316.963885: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
100219           <...>-27800 (-----) [005] d..2 82316.963892: sched_switch: prev_comm=id.nn.benchmark prev_pid=27800 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
100220<...>-770 ( 770) [005] .... 82316.963902: binder_transaction_received: transaction=1571718
100221<...>-770 ( 770) [005] ...1 82316.963924: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
100222<...>-770 ( 770) [005] d..2 82316.963995: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
100223          <idle>-0     (-----) [000] dnh2 82316.964022: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
100224          <idle>-0     (-----) [000] .n.1 82316.964029: cpu_idle: state=4294967295 cpu_id=0
100225<...>-770 ( 770) [005] ...1 82316.964033: tracing_mark_write: E|770
100226          <idle>-0     (-----) [000] d..2 82316.964041: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
100227<...>-770 ( 770) [005] .... 82316.964042: binder_transaction: transaction=1571719 dest_node=0 dest_proc=27550 dest_thread=27800 reply=1 flags=0x0 code=0x0
100228<...>-770 ( 770) [005] .... 82316.964044: binder_transaction_alloc_buf: transaction=1571719 data_size=168 offsets_size=32
100229<...>-770 ( 770) [005] .... 82316.964051: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
100230<...>-770 ( 770) [005] d..2 82316.964086: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27800 next_prio=110
100231           <...>-27800 (-----) [005] .... 82316.964097: binder_transaction_received: transaction=1571719
100232<...>-581 ( 571) [000] d..2 82316.964119: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100233          <idle>-0     (-----) [000] d..1 82316.964135: cpu_idle: state=0 cpu_id=0
100234           <...>-27800 (-----) [005] ...1 82316.964165: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
100235           <...>-27800 (-----) [005] ...1 82316.964170: tracing_mark_write: E|27550
100236           <...>-27800 (-----) [005] .... 82316.964185: binder_transaction: transaction=1571720 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
100237           <...>-27800 (-----) [005] .... 82316.964188: binder_transaction_alloc_buf: transaction=1571720 data_size=48 offsets_size=0
100238           <...>-27800 (-----) [005] ...2 82316.964190: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
100239           <...>-27800 (-----) [005] d..4 82316.964192: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
100240           <...>-27800 (-----) [005] dn.5 82316.964202: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
100241           <...>-27800 (-----) [005] d..2 82316.964209: sched_switch: prev_comm=id.nn.benchmark prev_pid=27800 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
100242<...>-770 ( 770) [005] .... 82316.964217: binder_transaction_received: transaction=1571720
100243<...>-770 ( 770) [005] ...1 82316.964234: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
100244<...>-770 ( 770) [005] d..2 82316.964291: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
100245          <idle>-0     (-----) [000] dnh2 82316.964315: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
100246          <idle>-0     (-----) [000] .n.1 82316.964322: cpu_idle: state=4294967295 cpu_id=0
100247<...>-770 ( 770) [005] ...1 82316.964325: tracing_mark_write: E|770
100248<...>-770 ( 770) [005] .... 82316.964333: binder_transaction: transaction=1571721 dest_node=0 dest_proc=27550 dest_thread=27800 reply=1 flags=0x0 code=0x0
100249          <idle>-0     (-----) [000] d..2 82316.964333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
100250<...>-770 ( 770) [005] .... 82316.964335: binder_transaction_alloc_buf: transaction=1571721 data_size=168 offsets_size=32
100251<...>-770 ( 770) [005] .... 82316.964341: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
100252<...>-770 ( 770) [005] d..2 82316.964375: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27800 next_prio=110
100253           <...>-27800 (-----) [005] .... 82316.964385: binder_transaction_received: transaction=1571721
100254<...>-581 ( 571) [000] d..2 82316.964394: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100255          <idle>-0     (-----) [000] d..1 82316.964409: cpu_idle: state=0 cpu_id=0
100256           <...>-27800 (-----) [005] ...1 82316.964663: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
100257           <...>-27800 (-----) [005] ...1 82316.964673: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
100258           <...>-27800 (-----) [005] ...1 82316.964677: tracing_mark_write: E|27550
100259           <...>-27800 (-----) [005] .... 82316.964739: binder_transaction: transaction=1571722 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
100260           <...>-27800 (-----) [005] .... 82316.964742: binder_transaction_alloc_buf: transaction=1571722 data_size=556 offsets_size=104
100261           <...>-27800 (-----) [005] ...2 82316.964756: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
100262           <...>-27800 (-----) [005] d..4 82316.964758: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100263           <...>-27800 (-----) [005] dn.5 82316.964769: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100264           <...>-27800 (-----) [005] d..2 82316.964776: sched_switch: prev_comm=id.nn.benchmark prev_pid=27800 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100265<...>-5340 ( 788) [005] .... 82316.964787: binder_transaction_received: transaction=1571722
100266<...>-5340 ( 788) [005] ...1 82316.964830: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
100267<...>-5340 ( 788) [005] d..2 82316.964874: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
100268<...>-5340 ( 788) [005] d..2 82316.964898: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27800 next_prio=110
100269          <idle>-0     (-----) [000] dnh2 82316.964902: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
100270          <idle>-0     (-----) [000] .n.1 82316.964909: cpu_idle: state=4294967295 cpu_id=0
100271          <idle>-0     (-----) [000] d..2 82316.964920: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
100272           <...>-27800 (-----) [005] d..2 82316.964921: sched_switch: prev_comm=id.nn.benchmark prev_pid=27800 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
100273          <idle>-0     (-----) [005] d..1 82316.964939: cpu_idle: state=0 cpu_id=5
100274<...>-87 ( 87) [000] d..2 82316.964962: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100275          <idle>-0     (-----) [002] d.h4 82316.964969: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100276          <idle>-0     (-----) [000] d..1 82316.964975: cpu_idle: state=0 cpu_id=0
100277          <idle>-0     (-----) [002] dnh5 82316.964986: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100278          <idle>-0     (-----) [002] .n.1 82316.964994: cpu_idle: state=4294967295 cpu_id=2
100279          <idle>-0     (-----) [002] d..2 82316.965007: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
100280<...>-86 ( 86) [002] d..2 82316.965041: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100281          <idle>-0     (-----) [002] d.h5 82316.965062: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100282          <idle>-0     (-----) [005] dnh2 82316.965084: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100283          <idle>-0     (-----) [005] .n.1 82316.965088: cpu_idle: state=4294967295 cpu_id=5
100284          <idle>-0     (-----) [005] d..2 82316.965097: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100285          <idle>-0     (-----) [002] d..1 82316.965107: cpu_idle: state=0 cpu_id=2
100286          <idle>-0     (-----) [001] d.s3 82316.965135: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
100287          <idle>-0     (-----) [001] d.s4 82316.965153: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
100288          <idle>-0     (-----) [001] d.s2 82316.965157: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
100289          <idle>-0     (-----) [003] .n.1 82316.965159: cpu_idle: state=4294967295 cpu_id=3
100290          <idle>-0     (-----) [003] d..2 82316.965170: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
100291          <idle>-0     (-----) [001] dns3 82316.965173: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
100292          <idle>-0     (-----) [001] dns2 82316.965175: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
100293<...>-5340 ( 788) [005] d..1 82316.965179: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
100294  crtc_event:111-322   (  322) [003] d..2 82316.965213: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100295          <idle>-0     (-----) [001] dns3 82316.965223: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
100296          <idle>-0     (-----) [003] dnh3 82316.965233: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
100297          <idle>-0     (-----) [001] .n.1 82316.965242: cpu_idle: state=4294967295 cpu_id=1
100298          <idle>-0     (-----) [003] d..2 82316.965246: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
100299          <idle>-0     (-----) [001] d..2 82316.965252: 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
100300<...>-8 ( 8) [001] d..2 82316.965282: 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
100301 neuralnetworks@-13088 (  788) [003] d..2 82316.965285: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
100302          <idle>-0     (-----) [001] d..1 82316.965293: cpu_idle: state=0 cpu_id=1
100303     rcu_preempt-7     (    7) [003] d..2 82316.965317: 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
100304          <idle>-0     (-----) [003] d..1 82316.965331: cpu_idle: state=0 cpu_id=3
100305<...>-5340 ( 788) [005] d..2 82316.965349: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
100306          <idle>-0     (-----) [000] dnh2 82316.965371: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
100307<...>-5340 ( 788) [005] d..2 82316.965379: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
100308          <idle>-0     (-----) [000] .n.1 82316.965380: cpu_idle: state=4294967295 cpu_id=0
100309          <idle>-0     (-----) [000] d..2 82316.965391: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
100310          <idle>-0     (-----) [005] d..1 82316.965393: cpu_idle: state=0 cpu_id=5
100311<...>-87 ( 87) [000] d..2 82316.965429: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100312          <idle>-0     (-----) [002] d.h4 82316.965430: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100313          <idle>-0     (-----) [002] dnh5 82316.965441: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100314          <idle>-0     (-----) [002] .n.1 82316.965449: cpu_idle: state=4294967295 cpu_id=2
100315          <idle>-0     (-----) [002] d..2 82316.965461: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
100316<...>-86 ( 86) [002] d..2 82316.965495: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100317          <idle>-0     (-----) [002] d..1 82316.965507: cpu_idle: state=0 cpu_id=2
100318          <idle>-0     (-----) [000] d.h6 82316.965508: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
100319          <idle>-0     (-----) [000] d.h7 82316.965528: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
100320          <idle>-0     (-----) [001] .n.1 82316.965534: cpu_idle: state=4294967295 cpu_id=1
100321          <idle>-0     (-----) [001] d..2 82316.965543: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
100322          <idle>-0     (-----) [000] d..1 82316.965551: cpu_idle: state=0 cpu_id=0
100323 crtc_commit:111-321   (  321) [001] d..2 82316.965622: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100324          <idle>-0     (-----) [001] d..1 82316.965632: cpu_idle: state=0 cpu_id=1
100325          <idle>-0     (-----) [005] ...1 82316.965723: cpu_idle: state=4294967295 cpu_id=5
100326          <idle>-0     (-----) [005] d..1 82316.965727: cpu_idle: state=0 cpu_id=5
100327          <idle>-0     (-----) [000] d.h5 82316.965800: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
100328          <idle>-0     (-----) [000] d.h6 82316.965815: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
100329          <idle>-0     (-----) [003] .n.1 82316.965821: cpu_idle: state=4294967295 cpu_id=3
100330          <idle>-0     (-----) [003] d..2 82316.965832: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
100331          <idle>-0     (-----) [000] ...1 82316.965832: cpu_idle: state=4294967295 cpu_id=0
100332          <idle>-0     (-----) [000] d..1 82316.965838: cpu_idle: state=0 cpu_id=0
100333  crtc_event:111-322   (  322) [003] d..2 82316.965858: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100334          <idle>-0     (-----) [003] d..1 82316.965868: cpu_idle: state=0 cpu_id=3
100335          <idle>-0     (-----) [002] d.h4 82316.967147: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100336          <idle>-0     (-----) [005] dnh2 82316.967167: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100337          <idle>-0     (-----) [005] .n.1 82316.967171: cpu_idle: state=4294967295 cpu_id=5
100338          <idle>-0     (-----) [005] d..2 82316.967179: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100339          <idle>-0     (-----) [002] ...1 82316.967185: cpu_idle: state=4294967295 cpu_id=2
100340          <idle>-0     (-----) [002] d..1 82316.967191: cpu_idle: state=0 cpu_id=2
100341<...>-5340 ( 788) [005] d..1 82316.967229: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
100342          <idle>-0     (-----) [003] dnh2 82316.967254: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
100343          <idle>-0     (-----) [003] .n.1 82316.967261: cpu_idle: state=4294967295 cpu_id=3
100344          <idle>-0     (-----) [003] d..2 82316.967272: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
100345<...>-5340 ( 788) [005] ...1 82316.967318: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
100346<...>-5340 ( 788) [005] ...1 82316.967322: tracing_mark_write: E|788
100347 neuralnetworks@-13088 (  788) [003] d..2 82316.967335: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100348<...>-5340 ( 788) [005] .... 82316.967338: binder_transaction: transaction=1571725 dest_node=1571723 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
100349<...>-5340 ( 788) [005] .... 82316.967341: binder_transaction_alloc_buf: transaction=1571725 data_size=60 offsets_size=0
100350<...>-5340 ( 788) [005] d..4 82316.967344: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
100351          <idle>-0     (-----) [003] d..1 82316.967346: cpu_idle: state=0 cpu_id=3
100352<...>-5340 ( 788) [005] d..5 82316.967356: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
100353          <idle>-0     (-----) [004] .n.1 82316.967362: cpu_idle: state=4294967295 cpu_id=4
100354          <idle>-0     (-----) [004] d..2 82316.967370: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
100355           <...>-27571 (-----) [004] .... 82316.967375: binder_transaction_received: transaction=1571725
100356<...>-5340 ( 788) [005] ...1 82316.967378: tracing_mark_write: E|788
100357<...>-5340 ( 788) [005] .... 82316.967384: binder_transaction: transaction=1571726 dest_node=0 dest_proc=27550 dest_thread=27800 reply=1 flags=0x0 code=0x0
100358<...>-5340 ( 788) [005] .... 82316.967386: binder_transaction_alloc_buf: transaction=1571726 data_size=8 offsets_size=0
100359<...>-5340 ( 788) [005] d..2 82316.967388: sched_waking: comm=id.nn.benchmark pid=27800 prio=110 target_cpu=005
100360           <...>-27571 (-----) [004] ...1 82316.967394: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
100361<...>-5340 ( 788) [005] d..3 82316.967394: sched_wakeup: comm=id.nn.benchmark pid=27800 prio=110 target_cpu=005
100362<...>-5340 ( 788) [005] .... 82316.967396: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
100363           <...>-27571 (-----) [004] ...1 82316.967400: tracing_mark_write: E|27550
100364           <...>-27571 (-----) [004] d..2 82316.967428: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100365          <idle>-0     (-----) [004] d..1 82316.967435: cpu_idle: state=0 cpu_id=4
100366<...>-5340 ( 788) [005] d..2 82316.967437: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27800 next_prio=110
100367           <...>-27800 (-----) [005] .... 82316.967447: binder_transaction_received: transaction=1571726
100368           <...>-27800 (-----) [005] ...1 82316.967483: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
100369           <...>-27800 (-----) [005] ...1 82316.967489: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
100370           <...>-27800 (-----) [005] ...1 82316.967515: tracing_mark_write: E|27550
100371           <...>-27800 (-----) [005] ...1 82316.967519: tracing_mark_write: E|27550
100372           <...>-27800 (-----) [005] ...1 82316.967522: tracing_mark_write: E|27550
100373          <idle>-0     (-----) [001] d.h2 82316.967590: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
100374          <idle>-0     (-----) [001] dnh3 82316.967603: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
100375          <idle>-0     (-----) [001] .n.1 82316.967612: cpu_idle: state=4294967295 cpu_id=1
100376          <idle>-0     (-----) [001] d..2 82316.967653: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
100377        DispSync-8879  ( 8858) [001] d..1 82316.967671: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
100378        DispSync-8879  ( 8858) [001] d..2 82316.967686: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
100379          <idle>-0     (-----) [003] .n.1 82316.967692: cpu_idle: state=4294967295 cpu_id=3
100380          <idle>-0     (-----) [003] d..2 82316.967702: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
100381           <...>-27800 (-----) [005] ...1 82316.967710: tracing_mark_write: E|27550
100382        DispSync-8879  ( 8858) [001] d..2 82316.967717: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100383           <...>-27800 (-----) [005] d..1 82316.967722: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100384          <idle>-0     (-----) [001] d..1 82316.967728: cpu_idle: state=0 cpu_id=1
100385           <...>-27800 (-----) [005] d..2 82316.967738: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100386          <idle>-0     (-----) [004] .n.1 82316.967743: cpu_idle: state=4294967295 cpu_id=4
100387          <idle>-0     (-----) [004] d..2 82316.967749: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
100388  appEventThread-8881  ( 8858) [003] d..3 82316.967761: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
100389           <...>-27550 (-----) [004] d..2 82316.967769: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100390          <idle>-0     (-----) [004] d..1 82316.967778: cpu_idle: state=0 cpu_id=4
100391  appEventThread-8881  ( 8858) [003] d..4 82316.967782: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
100392          <idle>-0     (-----) [000] .n.1 82316.967787: cpu_idle: state=4294967295 cpu_id=0
100393          <idle>-0     (-----) [000] d..2 82316.967800: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
100394           <...>-27800 (-----) [005] d..1 82316.967822: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100395  appEventThread-8881  ( 8858) [003] d..2 82316.967824: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100396           <...>-27800 (-----) [005] d..2 82316.967832: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100397          <idle>-0     (-----) [004] .n.1 82316.967836: cpu_idle: state=4294967295 cpu_id=4
100398          <idle>-0     (-----) [003] d..1 82316.967838: cpu_idle: state=0 cpu_id=3
100399          <idle>-0     (-----) [004] d..2 82316.967844: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
100400           <...>-27800 (-----) [005] d..2 82316.967869: sched_switch: prev_comm=id.nn.benchmark prev_pid=27800 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
100401           <...>-27550 (-----) [004] ...1 82316.967876: tracing_mark_write: E|27550
100402           <...>-27550 (-----) [004] ...1 82316.967881: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
100403           <...>-27550 (-----) [004] ...1 82316.967887: tracing_mark_write: E|27550
100404          <idle>-0     (-----) [005] d..1 82316.967890: cpu_idle: state=0 cpu_id=5
100405           <...>-27550 (-----) [004] ...1 82316.967890: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
100406           <...>-27550 (-----) [004] ...1 82316.967894: tracing_mark_write: E|27550
100407           <...>-27550 (-----) [004] ...1 82316.967899: tracing_mark_write: E|27550
100408           <...>-27550 (-----) [004] ...1 82316.968011: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
100409           <...>-27550 (-----) [004] ...1 82316.968067: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
100410           <...>-27550 (-----) [004] ...1 82316.968073: tracing_mark_write: E|27550
100411           <...>-27550 (-----) [004] ...1 82316.968076: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
100412           <...>-27550 (-----) [004] ...1 82316.968081: tracing_mark_write: E|27550
100413           <...>-27550 (-----) [004] ...1 82316.968085: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
100414           <...>-27550 (-----) [004] ...1 82316.968088: tracing_mark_write: E|27550
100415           <...>-27550 (-----) [004] ...1 82316.968092: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
100416<...>-9105 ( 9105) [000] .... 82316.968149: binder_transaction: transaction=1571727 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
100417<...>-9105 ( 9105) [000] .... 82316.968155: binder_transaction_alloc_buf: transaction=1571727 data_size=80 offsets_size=0
100418<...>-9105 ( 9105) [000] d..4 82316.968161: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
100419          <idle>-0     (-----) [005] .n.1 82316.968176: cpu_idle: state=4294967295 cpu_id=5
100420           <...>-27550 (-----) [004] ...1 82316.968177: tracing_mark_write: E|27550
100421           <...>-27550 (-----) [004] ...1 82316.968181: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
100422          <idle>-0     (-----) [005] d..2 82316.968184: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27801 next_prio=110
100423<...>-9105 ( 9105) [000] d..5 82316.968193: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
100424           <...>-27550 (-----) [004] d..2 82316.968197: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100425          <idle>-0     (-----) [001] .n.1 82316.968199: cpu_idle: state=4294967295 cpu_id=1
100426          <idle>-0     (-----) [001] d..2 82316.968211: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
100427          <idle>-0     (-----) [004] d..1 82316.968212: cpu_idle: state=0 cpu_id=4
100428<...>-13083 ( 8858) [001] .... 82316.968219: binder_transaction_received: transaction=1571727
100429<...>-9105 ( 9105) [000] d..3 82316.968233: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
100430           <...>-27801 (-----) [005] ...1 82316.968245: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
100431<...>-13083 ( 8858) [001] d..1 82316.968251: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
100432<...>-9105 ( 9105) [000] d..4 82316.968252: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
100433          <idle>-0     (-----) [002] .n.1 82316.968258: cpu_idle: state=4294967295 cpu_id=2
100434           <...>-27801 (-----) [005] ...1 82316.968258: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
100435           <...>-27801 (-----) [005] ...1 82316.968262: tracing_mark_write: E|27550
100436<...>-13083 ( 8858) [001] d..2 82316.968267: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
100437          <idle>-0     (-----) [002] d..2 82316.968270: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
100438          <idle>-0     (-----) [003] .n.1 82316.968273: cpu_idle: state=4294967295 cpu_id=3
100439           <...>-27801 (-----) [005] .... 82316.968282: binder_transaction: transaction=1571728 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
100440          <idle>-0     (-----) [003] d..2 82316.968284: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
100441           <...>-27801 (-----) [005] .... 82316.968285: binder_transaction_alloc_buf: transaction=1571728 data_size=48 offsets_size=0
100442           <...>-27801 (-----) [005] ...2 82316.968288: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
100443           <...>-27801 (-----) [005] d..4 82316.968292: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
100444           <...>-27801 (-----) [005] dn.5 82316.968302: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
100445           <...>-27801 (-----) [005] d..2 82316.968309: sched_switch: prev_comm=id.nn.benchmark prev_pid=27801 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
100446<...>-13083 ( 8858) [001] d..2 82316.968312: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100447<...>-770 ( 770) [005] .... 82316.968319: binder_transaction_received: transaction=1571728
100448          <idle>-0     (-----) [001] d..1 82316.968325: cpu_idle: state=0 cpu_id=1
100449  appEventThread-8881  ( 8858) [003] d..2 82316.968327: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100450    RenderThread-9436  ( 9105) [002] d..2 82316.968331: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100451          <idle>-0     (-----) [003] d..1 82316.968337: cpu_idle: state=0 cpu_id=3
100452<...>-770 ( 770) [005] ...1 82316.968342: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
100453          <idle>-0     (-----) [002] d..1 82316.968345: cpu_idle: state=0 cpu_id=2
100454<...>-9105 ( 9105) [000] d..3 82316.968380: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
100455<...>-9105 ( 9105) [000] d..4 82316.968399: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
100456          <idle>-0     (-----) [002] .n.1 82316.968405: cpu_idle: state=4294967295 cpu_id=2
100457<...>-770 ( 770) [005] d..2 82316.968413: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
100458          <idle>-0     (-----) [002] d..2 82316.968417: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
100459<...>-9105 ( 9105) [000] d..2 82316.968438: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100460          <idle>-0     (-----) [000] dnh3 82316.968452: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
100461<...>-770 ( 770) [005] d.s3 82316.968466: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
100462          <idle>-0     (-----) [000] dnH3 82316.968494: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
100463<...>-770 ( 770) [005] ...1 82316.968502: tracing_mark_write: E|770
100464<...>-770 ( 770) [005] .... 82316.968511: binder_transaction: transaction=1571729 dest_node=0 dest_proc=27550 dest_thread=27801 reply=1 flags=0x0 code=0x0
100465<...>-770 ( 770) [005] .... 82316.968513: binder_transaction_alloc_buf: transaction=1571729 data_size=168 offsets_size=32
100466          <idle>-0     (-----) [000] d..2 82316.968513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
100467<...>-770 ( 770) [005] .... 82316.968520: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
100468<...>-770 ( 770) [005] d..2 82316.968571: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27801 next_prio=110
100469           <...>-27801 (-----) [005] .... 82316.968581: binder_transaction_received: transaction=1571729
100470    RenderThread-9436  ( 9105) [002] d..1 82316.968596: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
100471    RenderThread-9436  ( 9105) [002] d..2 82316.968627: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
100472          <idle>-0     (-----) [001] .n.1 82316.968632: cpu_idle: state=4294967295 cpu_id=1
100473          <idle>-0     (-----) [001] d..2 82316.968646: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
100474           <...>-27801 (-----) [005] ...1 82316.968655: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
100475           <...>-27801 (-----) [005] ...1 82316.968660: tracing_mark_write: E|27550
100476           <...>-27801 (-----) [005] .... 82316.968675: binder_transaction: transaction=1571730 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
100477           <...>-27801 (-----) [005] .... 82316.968677: binder_transaction_alloc_buf: transaction=1571730 data_size=48 offsets_size=0
100478           <...>-27801 (-----) [005] ...2 82316.968680: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
100479           <...>-27801 (-----) [005] d..4 82316.968682: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
100480           <...>-27801 (-----) [005] dn.5 82316.968692: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
100481           <...>-27801 (-----) [005] d..2 82316.968699: sched_switch: prev_comm=id.nn.benchmark prev_pid=27801 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
100482<...>-770 ( 770) [005] .... 82316.968707: binder_transaction_received: transaction=1571730
100483    RenderThread-9436  ( 9105) [002] .... 82316.968709: binder_transaction: transaction=1571731 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
100484    RenderThread-9436  ( 9105) [002] .... 82316.968715: binder_transaction_alloc_buf: transaction=1571731 data_size=104 offsets_size=0
100485    RenderThread-9436  ( 9105) [002] d..4 82316.968720: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
100486<...>-770 ( 770) [005] ...1 82316.968723: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
100487    RenderThread-9436  ( 9105) [002] dn.5 82316.968741: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
100488    RenderThread-9436  ( 9105) [002] d..2 82316.968750: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
100489<...>-13083 ( 8858) [002] .... 82316.968760: binder_transaction_received: transaction=1571731
100490<...>-9105 ( 9105) [001] d..2 82316.968772: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100491          <idle>-0     (-----) [001] d..1 82316.968784: cpu_idle: state=0 cpu_id=1
100492<...>-770 ( 770) [005] ...1 82316.968802: tracing_mark_write: E|770
100493  kworker/u16:15-1311  ( 1311) [000] d..2 82316.968805: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
100494<...>-770 ( 770) [005] .... 82316.968810: binder_transaction: transaction=1571732 dest_node=0 dest_proc=27550 dest_thread=27801 reply=1 flags=0x0 code=0x0
100495<...>-770 ( 770) [005] .... 82316.968813: binder_transaction_alloc_buf: transaction=1571732 data_size=168 offsets_size=32
100496<...>-770 ( 770) [005] .... 82316.968819: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
100497<...>-13083 ( 8858) [002] .... 82316.968841: binder_transaction: transaction=1571733 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
100498<...>-13083 ( 8858) [002] .... 82316.968846: binder_transaction_alloc_buf: transaction=1571733 data_size=52 offsets_size=8
100499          <idle>-0     (-----) [001] d.s3 82316.968851: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
100500<...>-770 ( 770) [005] d..2 82316.968854: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27801 next_prio=110
100501           <...>-27801 (-----) [005] .... 82316.968864: binder_transaction_received: transaction=1571732
100502          <idle>-0     (-----) [001] d.s4 82316.968874: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
100503          <idle>-0     (-----) [001] dns4 82316.968880: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
100504          <idle>-0     (-----) [001] .n.1 82316.968888: cpu_idle: state=4294967295 cpu_id=1
100505          <idle>-0     (-----) [001] d..2 82316.968899: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
100506<...>-13083 ( 8858) [002] d..2 82316.968900: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
100507    RenderThread-9436  ( 9105) [002] .... 82316.968910: binder_transaction_received: transaction=1571733
100508<...>-581 ( 571) [000] d..2 82316.968919: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100509          <idle>-0     (-----) [000] d..1 82316.968940: cpu_idle: state=0 cpu_id=0
100510  kworker/u16:15-1311  ( 1311) [001] .... 82316.969014: clk_set_rate: l3_cluster0_vote_clk 300000000
100511  kworker/u16:15-1311  ( 1311) [001] d..2 82316.969043: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100512          <idle>-0     (-----) [001] d..1 82316.969052: cpu_idle: state=0 cpu_id=1
100513           <...>-27801 (-----) [005] ...1 82316.969153: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
100514           <...>-27801 (-----) [005] ...1 82316.969161: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
100515           <...>-27801 (-----) [005] ...1 82316.969165: tracing_mark_write: E|27550
100516           <...>-27801 (-----) [005] .... 82316.969226: binder_transaction: transaction=1571734 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
100517           <...>-27801 (-----) [005] .... 82316.969229: binder_transaction_alloc_buf: transaction=1571734 data_size=556 offsets_size=104
100518           <...>-27801 (-----) [005] ...2 82316.969243: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
100519           <...>-27801 (-----) [005] d..4 82316.969246: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100520           <...>-27801 (-----) [005] dn.5 82316.969257: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100521           <...>-27801 (-----) [005] d..2 82316.969264: sched_switch: prev_comm=id.nn.benchmark prev_pid=27801 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100522<...>-5340 ( 788) [005] .... 82316.969274: binder_transaction_received: transaction=1571734
100523<...>-5340 ( 788) [005] ...1 82316.969320: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
100524<...>-5340 ( 788) [005] d..2 82316.969365: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
100525<...>-5340 ( 788) [005] d..2 82316.969403: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27801 next_prio=110
100526    RenderThread-9436  ( 9105) [002] dnh1 82316.969412: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
100527           <...>-27801 (-----) [005] d..2 82316.969426: sched_switch: prev_comm=id.nn.benchmark prev_pid=27801 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
100528    RenderThread-9436  ( 9105) [002] d..2 82316.969427: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
100529          <idle>-0     (-----) [005] d..1 82316.969444: cpu_idle: state=0 cpu_id=5
100530<...>-87 ( 87) [002] d..2 82316.969464: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
100531    RenderThread-9436  ( 9105) [002] d.h5 82316.969481: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100532    RenderThread-9436  ( 9105) [002] dnh6 82316.969500: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100533    RenderThread-9436  ( 9105) [002] d..2 82316.969513: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
100534<...>-86 ( 86) [002] d..2 82316.969542: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
100535    RenderThread-9436  ( 9105) [002] d.h5 82316.969562: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100536          <idle>-0     (-----) [005] dnh2 82316.969584: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100537          <idle>-0     (-----) [005] .n.1 82316.969589: cpu_idle: state=4294967295 cpu_id=5
100538          <idle>-0     (-----) [005] d..2 82316.969597: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100539<...>-5340 ( 788) [005] d..1 82316.969651: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
100540    RenderThread-9436  ( 9105) [002] dnh1 82316.969692: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
100541    RenderThread-9436  ( 9105) [002] d..2 82316.969704: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
100542 neuralnetworks@-13088 (  788) [002] d..2 82316.969754: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
100543<...>-5340 ( 788) [005] d..2 82316.969812: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
100544    RenderThread-9436  ( 9105) [002] dnh1 82316.969836: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
100545<...>-5340 ( 788) [005] d..2 82316.969839: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
100546    RenderThread-9436  ( 9105) [002] d..2 82316.969848: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
100547          <idle>-0     (-----) [005] d..1 82316.969854: cpu_idle: state=0 cpu_id=5
100548<...>-87 ( 87) [002] d.h4 82316.969882: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100549<...>-87 ( 87) [002] d.h5 82316.969899: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100550<...>-87 ( 87) [002] d..2 82316.969916: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
100551<...>-86 ( 86) [002] d..2 82316.969940: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
100552          <idle>-0     (-----) [005] ...1 82316.970175: cpu_idle: state=4294967295 cpu_id=5
100553          <idle>-0     (-----) [005] d..1 82316.970179: cpu_idle: state=0 cpu_id=5
100554          <idle>-0     (-----) [000] ...1 82316.970259: cpu_idle: state=4294967295 cpu_id=0
100555          <idle>-0     (-----) [000] d..1 82316.970265: cpu_idle: state=0 cpu_id=0
100556    RenderThread-9436  ( 9105) [002] d..2 82316.970346: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
100557          <idle>-0     (-----) [002] d..1 82316.970362: cpu_idle: state=0 cpu_id=2
100558          <idle>-0     (-----) [002] d.h2 82316.970428: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
100559          <idle>-0     (-----) [002] d.h3 82316.970439: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
100560          <idle>-0     (-----) [002] dnh3 82316.970443: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
100561          <idle>-0     (-----) [002] .n.1 82316.970453: cpu_idle: state=4294967295 cpu_id=2
100562          <idle>-0     (-----) [002] d..2 82316.970465: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
100563          <idle>-0     (-----) [000] d.h3 82316.970467: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
100564          <idle>-0     (-----) [000] d.h4 82316.970487: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
100565          <idle>-0     (-----) [003] .n.1 82316.970493: cpu_idle: state=4294967295 cpu_id=3
100566          <idle>-0     (-----) [000] ...1 82316.970502: cpu_idle: state=4294967295 cpu_id=0
100567          <idle>-0     (-----) [003] d..2 82316.970505: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
100568          <idle>-0     (-----) [000] d..1 82316.970509: cpu_idle: state=0 cpu_id=0
100569 kgsl_worker_thr-258   (  258) [003] d..2 82316.970554: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
100570 kgsl_worker_thr-258   (  258) [003] d..3 82316.970572: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
100571          <idle>-0     (-----) [001] .n.1 82316.970577: cpu_idle: state=4294967295 cpu_id=1
100572          <idle>-0     (-----) [001] d..2 82316.970587: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
100573 kgsl_worker_thr-258   (  258) [003] d..2 82316.970598: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
100574          <idle>-0     (-----) [003] d..1 82316.970608: cpu_idle: state=0 cpu_id=3
100575  kworker/u16:15-1311  ( 1311) [001] d..2 82316.970632: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100576          <idle>-0     (-----) [001] d..1 82316.970639: cpu_idle: state=0 cpu_id=1
100577    RenderThread-9436  ( 9105) [002] .... 82316.970660: binder_transaction: transaction=1571737 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
100578    RenderThread-9436  ( 9105) [002] .... 82316.970665: binder_transaction_alloc_buf: transaction=1571737 data_size=192 offsets_size=8
100579    RenderThread-9436  ( 9105) [002] d..4 82316.970676: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
100580    RenderThread-9436  ( 9105) [002] dn.5 82316.970692: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
100581    RenderThread-9436  ( 9105) [002] d..2 82316.970702: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
100582<...>-13083 ( 8858) [002] .... 82316.970710: binder_transaction_received: transaction=1571737
100583<...>-13083 ( 8858) [002] .... 82316.970865: binder_transaction: transaction=1571738 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
100584<...>-13083 ( 8858) [002] .... 82316.970870: binder_transaction_alloc_buf: transaction=1571738 data_size=68 offsets_size=0
100585<...>-13083 ( 8858) [002] d..2 82316.970915: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
100586    RenderThread-9436  ( 9105) [002] .... 82316.970925: binder_transaction_received: transaction=1571738
100587    RenderThread-9436  ( 9105) [002] d..2 82316.971012: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100588          <idle>-0     (-----) [002] d..1 82316.971031: cpu_idle: state=0 cpu_id=2
100589          <idle>-0     (-----) [002] d.h4 82316.971549: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100590          <idle>-0     (-----) [005] dnh2 82316.971570: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100591          <idle>-0     (-----) [005] .n.1 82316.971574: cpu_idle: state=4294967295 cpu_id=5
100592          <idle>-0     (-----) [005] d..2 82316.971582: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100593          <idle>-0     (-----) [001] d.h2 82316.971582: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
100594          <idle>-0     (-----) [002] ...1 82316.971594: cpu_idle: state=4294967295 cpu_id=2
100595          <idle>-0     (-----) [001] dnh3 82316.971598: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
100596          <idle>-0     (-----) [002] d..1 82316.971600: cpu_idle: state=0 cpu_id=2
100597          <idle>-0     (-----) [001] .n.1 82316.971606: cpu_idle: state=4294967295 cpu_id=1
100598          <idle>-0     (-----) [001] d..2 82316.971613: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
100599<...>-5340 ( 788) [005] d..1 82316.971633: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
100600        DispSync-8879  ( 8858) [001] d..1 82316.971634: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
100601        DispSync-8879  ( 8858) [001] d..2 82316.971651: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
100602          <idle>-0     (-----) [002] dnh2 82316.971665: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=002
100603          <idle>-0     (-----) [002] .n.1 82316.971674: cpu_idle: state=4294967295 cpu_id=2
100604          <idle>-0     (-----) [002] d..2 82316.971713: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
100605<...>-5340 ( 788) [005] ...1 82316.971727: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
100606<...>-5340 ( 788) [005] ...1 82316.971731: tracing_mark_write: E|788
100607        DispSync-8879  ( 8858) [001] d..2 82316.971743: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
100608<...>-5340 ( 788) [005] .... 82316.971748: binder_transaction: transaction=1571739 dest_node=1571735 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
100609<...>-5340 ( 788) [005] .... 82316.971750: binder_transaction_alloc_buf: transaction=1571739 data_size=60 offsets_size=0
100610<...>-5340 ( 788) [005] d..4 82316.971754: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
100611   sfEventThread-8882  ( 8858) [002] d..3 82316.971756: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
100612<...>-5340 ( 788) [005] d..5 82316.971766: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
100613          <idle>-0     (-----) [004] .n.1 82316.971772: cpu_idle: state=4294967295 cpu_id=4
100614   sfEventThread-8882  ( 8858) [002] d..4 82316.971775: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
100615          <idle>-0     (-----) [000] .n.1 82316.971782: cpu_idle: state=4294967295 cpu_id=0
100616          <idle>-0     (-----) [004] d..2 82316.971789: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
100617          <idle>-0     (-----) [000] d..2 82316.971799: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
100618          <idle>-0     (-----) [003] d.s2 82316.971801: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
100619 neuralnetworks@-13088 (  788) [001] d..2 82316.971805: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100620<...>-5340 ( 788) [005] ...1 82316.971821: tracing_mark_write: E|788
100621<...>-5340 ( 788) [005] .... 82316.971827: binder_transaction: transaction=1571740 dest_node=0 dest_proc=27550 dest_thread=27801 reply=1 flags=0x0 code=0x0
100622<...>-5340 ( 788) [005] .... 82316.971829: binder_transaction_alloc_buf: transaction=1571740 data_size=8 offsets_size=0
100623<...>-5340 ( 788) [005] d..2 82316.971831: sched_waking: comm=id.nn.benchmark pid=27801 prio=110 target_cpu=005
100624<...>-5340 ( 788) [005] d..3 82316.971845: sched_wakeup: comm=id.nn.benchmark pid=27801 prio=110 target_cpu=005
100625<...>-5340 ( 788) [005] .... 82316.971847: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
100626          <idle>-0     (-----) [003] d.s3 82316.971855: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
100627           <...>-27571 (-----) [004] .... 82316.971860: binder_transaction_received: transaction=1571739
100628          <idle>-0     (-----) [001] dns3 82316.971876: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
100629   sfEventThread-8882  ( 8858) [002] d..2 82316.971880: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100630           <...>-27571 (-----) [004] ...1 82316.971881: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
100631           <...>-27571 (-----) [004] ...1 82316.971887: tracing_mark_write: E|27550
100632          <idle>-0     (-----) [003] ...1 82316.971889: cpu_idle: state=4294967295 cpu_id=3
100633<...>-5340 ( 788) [005] d..2 82316.971891: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27801 next_prio=110
100634          <idle>-0     (-----) [002] d..1 82316.971897: cpu_idle: state=0 cpu_id=2
100635          <idle>-0     (-----) [003] d..1 82316.971897: cpu_idle: state=0 cpu_id=3
100636           <...>-27801 (-----) [005] .... 82316.971903: binder_transaction_received: transaction=1571740
100637          <idle>-0     (-----) [001] dns4 82316.971904: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
100638          <idle>-0     (-----) [002] .n.1 82316.971911: cpu_idle: state=4294967295 cpu_id=2
100639           <...>-27571 (-----) [004] d..2 82316.971915: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100640          <idle>-0     (-----) [001] d..2 82316.971921: 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
100641          <idle>-0     (-----) [002] d..2 82316.971924: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
100642          <idle>-0     (-----) [004] d..1 82316.971924: cpu_idle: state=0 cpu_id=4
100643     rcu_preempt-7     (    7) [001] d..2 82316.971932: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
100644<...>-8 ( 8) [002] d..2 82316.971933: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
100645           <...>-27801 (-----) [005] ...1 82316.971936: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
100646           <...>-27801 (-----) [005] ...1 82316.971942: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
100647           <...>-27801 (-----) [005] ...1 82316.971968: tracing_mark_write: E|27550
100648           <...>-27801 (-----) [005] ...1 82316.971971: tracing_mark_write: E|27550
100649     rcu_preempt-7     (    7) [001] d..3 82316.971972: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
100650           <...>-27801 (-----) [005] ...1 82316.971975: tracing_mark_write: E|27550
100651<...>-8 ( 8) [002] d..3 82316.971994: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
100652<...>-8 ( 8) [002] d..2 82316.972007: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
100653     rcu_preempt-7     (    7) [001] d..2 82316.972009: 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
100654         rcuop/0-10    (   10) [002] d..2 82316.972014: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
100655          <idle>-0     (-----) [001] d..1 82316.972026: cpu_idle: state=0 cpu_id=1
100656         rcuop/0-10    (   10) [002] d..3 82316.972034: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
100657          <idle>-0     (-----) [001] .n.1 82316.972040: cpu_idle: state=4294967295 cpu_id=1
100658          <idle>-0     (-----) [001] d..2 82316.972053: 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
100659         rcuop/0-10    (   10) [002] d..2 82316.972055: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
100660<...>-46 ( 46) [002] d..2 82316.972067: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
100661         rcuop/1-21    (   21) [001] d..2 82316.972107: 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
100662          <idle>-0     (-----) [001] d..1 82316.972118: cpu_idle: state=0 cpu_id=1
100663<...>-46 ( 46) [002] d..3 82316.972131: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
100664          <idle>-0     (-----) [001] .n.1 82316.972136: cpu_idle: state=4294967295 cpu_id=1
100665          <idle>-0     (-----) [001] d..2 82316.972147: 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
100666<...>-46 ( 46) [002] d..2 82316.972150: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100667          <idle>-0     (-----) [002] d..1 82316.972164: cpu_idle: state=0 cpu_id=2
100668           <...>-27801 (-----) [005] ...1 82316.972165: tracing_mark_write: E|27550
100669<...>-8 ( 8) [001] d..2 82316.972168: 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
100670           <...>-27801 (-----) [005] d..1 82316.972176: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100671          <idle>-0     (-----) [001] d..1 82316.972178: cpu_idle: state=0 cpu_id=1
100672  surfaceflinger-8858  ( 8858) [000] d..1 82316.972187: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
100673           <...>-27801 (-----) [005] d..2 82316.972194: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100674          <idle>-0     (-----) [004] .n.1 82316.972199: cpu_idle: state=4294967295 cpu_id=4
100675          <idle>-0     (-----) [004] d..2 82316.972206: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
100676  surfaceflinger-8858  ( 8858) [000] d..2 82316.972208: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
100677          <idle>-0     (-----) [002] .n.1 82316.972215: cpu_idle: state=4294967295 cpu_id=2
100678          <idle>-0     (-----) [002] d..2 82316.972225: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
100679           <...>-27550 (-----) [004] d..2 82316.972226: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100680          <idle>-0     (-----) [004] d..1 82316.972236: cpu_idle: state=0 cpu_id=4
100681           <...>-27801 (-----) [005] d..4 82316.972239: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
100682           <...>-27801 (-----) [005] d..5 82316.972248: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
100683          <idle>-0     (-----) [004] .n.1 82316.972253: cpu_idle: state=4294967295 cpu_id=4
100684          <idle>-0     (-----) [004] d..2 82316.972261: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
100685   sfEventThread-8882  ( 8858) [002] d..2 82316.972264: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100686          <idle>-0     (-----) [002] d..1 82316.972276: cpu_idle: state=0 cpu_id=2
100687           <...>-27801 (-----) [005] d..1 82316.972299: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100688           <...>-27571 (-----) [004] d..2 82316.972303: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100689           <...>-27801 (-----) [005] d..2 82316.972312: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100690          <idle>-0     (-----) [004] d..2 82316.972316: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
100691           <...>-27801 (-----) [005] d..2 82316.972358: sched_switch: prev_comm=id.nn.benchmark prev_pid=27801 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
100692           <...>-27550 (-----) [004] ...1 82316.972368: tracing_mark_write: E|27550
100693           <...>-27550 (-----) [004] ...1 82316.972373: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
100694           <...>-27550 (-----) [004] ...1 82316.972378: tracing_mark_write: E|27550
100695          <idle>-0     (-----) [005] d..1 82316.972379: cpu_idle: state=0 cpu_id=5
100696           <...>-27550 (-----) [004] ...1 82316.972382: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
100697           <...>-27550 (-----) [004] ...1 82316.972387: tracing_mark_write: E|27550
100698           <...>-27550 (-----) [004] ...1 82316.972391: tracing_mark_write: E|27550
100699  surfaceflinger-8858  ( 8858) [000] ...1 82316.972398: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
100700  surfaceflinger-8858  ( 8858) [000] ...1 82316.972406: tracing_mark_write: E|8858
100701  surfaceflinger-8858  ( 8858) [000] .... 82316.972458: binder_transaction: transaction=1571741 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
100702  surfaceflinger-8858  ( 8858) [000] .... 82316.972463: binder_transaction_alloc_buf: transaction=1571741 data_size=540 offsets_size=96
100703  surfaceflinger-8858  ( 8858) [000] ...2 82316.972488: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
100704  surfaceflinger-8858  ( 8858) [000] d..4 82316.972497: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
100705           <...>-27550 (-----) [004] ...1 82316.972503: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
100706  surfaceflinger-8858  ( 8858) [000] d..5 82316.972517: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
100707          <idle>-0     (-----) [002] .n.1 82316.972523: cpu_idle: state=4294967295 cpu_id=2
100708          <idle>-0     (-----) [002] d..2 82316.972533: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
100709 [email protected]   (  619) [002] .... 82316.972544: binder_transaction_received: transaction=1571741
100710  surfaceflinger-8858  ( 8858) [000] d..2 82316.972552: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100711           <...>-27550 (-----) [004] ...1 82316.972561: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
100712           <...>-27550 (-----) [004] ...1 82316.972568: tracing_mark_write: E|27550
100713          <idle>-0     (-----) [000] d..1 82316.972571: cpu_idle: state=0 cpu_id=0
100714           <...>-27550 (-----) [004] ...1 82316.972574: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
100715           <...>-27550 (-----) [004] ...1 82316.972580: tracing_mark_write: E|27550
100716           <...>-27550 (-----) [004] ...1 82316.972584: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
100717           <...>-27550 (-----) [004] ...1 82316.972588: tracing_mark_write: E|27550
100718           <...>-27550 (-----) [004] ...1 82316.972592: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
100719 [email protected]   (  619) [002] ...1 82316.972593: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
100720          <idle>-0     (-----) [005] .n.1 82316.972685: cpu_idle: state=4294967295 cpu_id=5
100721           <...>-27550 (-----) [004] ...1 82316.972687: tracing_mark_write: E|27550
100722           <...>-27550 (-----) [004] ...1 82316.972691: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
100723          <idle>-0     (-----) [005] d..2 82316.972695: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27802 next_prio=110
100724 [email protected]   (  619) [002] ...1 82316.972701: tracing_mark_write: B|619|HWCSession::PresentDisplay::
100725           <...>-27550 (-----) [004] d..2 82316.972709: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100726          <idle>-0     (-----) [004] d..1 82316.972725: cpu_idle: state=0 cpu_id=4
100727           <...>-27802 (-----) [005] ...1 82316.972755: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
100728           <...>-27802 (-----) [005] ...1 82316.972770: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
100729           <...>-27802 (-----) [005] ...1 82316.972773: tracing_mark_write: E|27550
100730           <...>-27802 (-----) [005] .... 82316.972795: binder_transaction: transaction=1571742 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
100731           <...>-27802 (-----) [005] .... 82316.972799: binder_transaction_alloc_buf: transaction=1571742 data_size=48 offsets_size=0
100732           <...>-27802 (-----) [005] ...2 82316.972802: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
100733           <...>-27802 (-----) [005] d..4 82316.972806: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
100734           <...>-27802 (-----) [005] dn.5 82316.972817: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
100735           <...>-27802 (-----) [005] d..2 82316.972823: sched_switch: prev_comm=id.nn.benchmark prev_pid=27802 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
100736<...>-770 ( 770) [005] .... 82316.972833: binder_transaction_received: transaction=1571742
100737<...>-770 ( 770) [005] ...1 82316.972857: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
100738 [email protected]   (  619) [002] ...1 82316.972874: tracing_mark_write: B|619|HWDeviceDRM::Commit::
100739 [email protected]   (  619) [002] ...1 82316.972888: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
100740<...>-770 ( 770) [005] d..2 82316.972940: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
100741 [email protected]   (  619) [002] d.h1 82316.972983: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
100742<...>-770 ( 770) [005] ...1 82316.972996: tracing_mark_write: E|770
100743<...>-770 ( 770) [005] .... 82316.973004: binder_transaction: transaction=1571743 dest_node=0 dest_proc=27550 dest_thread=27802 reply=1 flags=0x0 code=0x0
100744<...>-770 ( 770) [005] .... 82316.973007: binder_transaction_alloc_buf: transaction=1571743 data_size=168 offsets_size=32
100745<...>-770 ( 770) [005] .... 82316.973014: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
100746<...>-770 ( 770) [005] d..2 82316.973049: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27802 next_prio=110
100747           <...>-27802 (-----) [005] .... 82316.973061: binder_transaction_received: transaction=1571743
100748           <...>-27802 (-----) [005] ...1 82316.973135: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
100749           <...>-27802 (-----) [005] ...1 82316.973140: tracing_mark_write: E|27550
100750           <...>-27802 (-----) [005] .... 82316.973154: binder_transaction: transaction=1571744 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
100751           <...>-27802 (-----) [005] .... 82316.973157: binder_transaction_alloc_buf: transaction=1571744 data_size=48 offsets_size=0
100752           <...>-27802 (-----) [005] ...2 82316.973159: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
100753           <...>-27802 (-----) [005] d..4 82316.973162: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
100754           <...>-27802 (-----) [005] dn.5 82316.973171: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
100755           <...>-27802 (-----) [005] d..2 82316.973178: sched_switch: prev_comm=id.nn.benchmark prev_pid=27802 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
100756<...>-770 ( 770) [005] .... 82316.973185: binder_transaction_received: transaction=1571744
100757<...>-770 ( 770) [005] ...1 82316.973202: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
100758<...>-770 ( 770) [005] ...1 82316.973284: tracing_mark_write: E|770
100759<...>-770 ( 770) [005] .... 82316.973292: binder_transaction: transaction=1571745 dest_node=0 dest_proc=27550 dest_thread=27802 reply=1 flags=0x0 code=0x0
100760<...>-770 ( 770) [005] .... 82316.973295: binder_transaction_alloc_buf: transaction=1571745 data_size=168 offsets_size=32
100761<...>-770 ( 770) [005] .... 82316.973301: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
100762<...>-770 ( 770) [005] d..2 82316.973336: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27802 next_prio=110
100763           <...>-27802 (-----) [005] .... 82316.973346: binder_transaction_received: transaction=1571745
100764 [email protected]   (  619) [002] d..2 82316.973520: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
100765 [email protected]   (  619) [002] d..3 82316.973546: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
100766          <idle>-0     (-----) [001] .n.1 82316.973551: cpu_idle: state=4294967295 cpu_id=1
100767          <idle>-0     (-----) [001] d..2 82316.973561: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
100768           <...>-27802 (-----) [005] ...1 82316.973620: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
100769           <...>-27802 (-----) [005] ...1 82316.973636: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
100770           <...>-27802 (-----) [005] ...1 82316.973640: tracing_mark_write: E|27550
100771 [email protected]   (  619) [002] ...1 82316.973654: tracing_mark_write: E|619
100772 [email protected]   (  619) [002] ...1 82316.973662: tracing_mark_write: E|619
100773           <...>-27802 (-----) [005] .... 82316.973704: binder_transaction: transaction=1571746 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
100774           <...>-27802 (-----) [005] .... 82316.973707: binder_transaction_alloc_buf: transaction=1571746 data_size=556 offsets_size=104
100775           <...>-27802 (-----) [005] ...2 82316.973722: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
100776           <...>-27802 (-----) [005] d..4 82316.973724: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100777 [email protected]   (  619) [002] ...1 82316.973726: tracing_mark_write: E|619
100778           <...>-27802 (-----) [005] dn.5 82316.973736: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100779          <idle>-0     (-----) [003] ...1 82316.973736: cpu_idle: state=4294967295 cpu_id=3
100780          <idle>-0     (-----) [003] d..1 82316.973741: cpu_idle: state=0 cpu_id=3
100781           <...>-27802 (-----) [005] d..2 82316.973743: sched_switch: prev_comm=id.nn.benchmark prev_pid=27802 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100782<...>-5340 ( 788) [005] .... 82316.973753: binder_transaction_received: transaction=1571746
100783 [email protected]   (  619) [002] ...1 82316.973773: tracing_mark_write: E|619
100784 [email protected]   (  619) [002] .... 82316.973791: binder_transaction: transaction=1571749 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
100785 [email protected]   (  619) [002] .... 82316.973795: binder_transaction_alloc_buf: transaction=1571749 data_size=576 offsets_size=112
100786<...>-5340 ( 788) [005] ...1 82316.973801: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
100787 [email protected]   (  619) [002] d..2 82316.973818: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
100788 [email protected]   (  619) [002] d..3 82316.973836: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
100789 [email protected]   (  619) [002] .... 82316.973841: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
100790          <idle>-0     (-----) [000] .n.1 82316.973843: cpu_idle: state=4294967295 cpu_id=0
100791<...>-5340 ( 788) [005] d..2 82316.973847: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
100792          <idle>-0     (-----) [000] d..2 82316.973854: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
100793  surfaceflinger-8858  ( 8858) [000] .... 82316.973862: binder_transaction_received: transaction=1571749
100794<...>-5340 ( 788) [005] d..2 82316.973891: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27802 next_prio=110
100795 crtc_commit:111-321   (  321) [001] d.h1 82316.973891: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
100796           <...>-27802 (-----) [005] d..2 82316.973913: sched_switch: prev_comm=id.nn.benchmark prev_pid=27802 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
100797 [email protected]   (  619) [002] d..2 82316.973918: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
100798          <idle>-0     (-----) [005] d..1 82316.973931: cpu_idle: state=0 cpu_id=5
100799<...>-581 ( 571) [002] d..2 82316.974049: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100800          <idle>-0     (-----) [002] d..1 82316.974069: cpu_idle: state=0 cpu_id=2
100801 crtc_commit:111-321   (  321) [001] d..2 82316.974282: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
100802  surfaceflinger-8858  ( 8858) [000] d..2 82316.974309: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100803          <idle>-0     (-----) [000] d..1 82316.974328: cpu_idle: state=0 cpu_id=0
100804<...>-87 ( 87) [001] d..2 82316.974331: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100805          <idle>-0     (-----) [002] d.h4 82316.974341: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100806          <idle>-0     (-----) [001] d..1 82316.974345: cpu_idle: state=0 cpu_id=1
100807          <idle>-0     (-----) [002] dnh5 82316.974363: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100808          <idle>-0     (-----) [002] .n.1 82316.974376: cpu_idle: state=4294967295 cpu_id=2
100809          <idle>-0     (-----) [002] d..2 82316.974389: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
100810<...>-86 ( 86) [002] d.h4 82316.974421: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100811          <idle>-0     (-----) [005] dnh2 82316.974443: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100812          <idle>-0     (-----) [005] .n.1 82316.974447: cpu_idle: state=4294967295 cpu_id=5
100813          <idle>-0     (-----) [005] d..2 82316.974456: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100814<...>-86 ( 86) [002] d..2 82316.974485: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100815          <idle>-0     (-----) [002] d..1 82316.974499: cpu_idle: state=0 cpu_id=2
100816<...>-5340 ( 788) [005] d..1 82316.974512: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
100817          <idle>-0     (-----) [000] dnh2 82316.974553: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
100818          <idle>-0     (-----) [000] .n.1 82316.974560: cpu_idle: state=4294967295 cpu_id=0
100819          <idle>-0     (-----) [000] d..2 82316.974572: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
100820 neuralnetworks@-13088 (  788) [000] d..2 82316.974632: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100821          <idle>-0     (-----) [000] d..1 82316.974648: cpu_idle: state=0 cpu_id=0
100822<...>-5340 ( 788) [005] d..2 82316.974672: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
100823          <idle>-0     (-----) [001] dnh2 82316.974696: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
100824<...>-5340 ( 788) [005] d..2 82316.974698: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
100825          <idle>-0     (-----) [001] .n.1 82316.974702: cpu_idle: state=4294967295 cpu_id=1
100826          <idle>-0     (-----) [005] d..1 82316.974712: cpu_idle: state=0 cpu_id=5
100827          <idle>-0     (-----) [001] d..2 82316.974713: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
100828<...>-87 ( 87) [001] d..2 82316.974750: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
100829          <idle>-0     (-----) [002] d.h4 82316.974751: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100830          <idle>-0     (-----) [001] d..1 82316.974760: cpu_idle: state=0 cpu_id=1
100831          <idle>-0     (-----) [002] dnh5 82316.974763: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100832          <idle>-0     (-----) [002] .n.1 82316.974773: cpu_idle: state=4294967295 cpu_id=2
100833          <idle>-0     (-----) [002] d..2 82316.974784: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
100834<...>-86 ( 86) [002] d..2 82316.974817: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
100835          <idle>-0     (-----) [002] d..1 82316.974829: cpu_idle: state=0 cpu_id=2
100836          <idle>-0     (-----) [002] d..2 82316.976003: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
100837          <idle>-0     (-----) [002] dn.3 82316.976016: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
100838          <idle>-0     (-----) [002] .n.1 82316.976020: cpu_idle: state=4294967295 cpu_id=2
100839          <idle>-0     (-----) [002] d..2 82316.976034: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
100840     ksoftirqd/2-26    (   26) [002] d..2 82316.976069: 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
100841          <idle>-0     (-----) [002] d..1 82316.976078: cpu_idle: state=0 cpu_id=2
100842          <idle>-0     (-----) [002] d.h4 82316.976462: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100843          <idle>-0     (-----) [005] dnh2 82316.976484: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100844          <idle>-0     (-----) [005] .n.1 82316.976489: cpu_idle: state=4294967295 cpu_id=5
100845          <idle>-0     (-----) [005] d..2 82316.976498: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100846          <idle>-0     (-----) [002] ...1 82316.976502: cpu_idle: state=4294967295 cpu_id=2
100847          <idle>-0     (-----) [002] d..1 82316.976510: cpu_idle: state=0 cpu_id=2
100848<...>-5340 ( 788) [005] d..1 82316.976549: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
100849          <idle>-0     (-----) [000] dnh2 82316.976571: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
100850          <idle>-0     (-----) [000] .n.1 82316.976582: cpu_idle: state=4294967295 cpu_id=0
100851          <idle>-0     (-----) [000] d..2 82316.976595: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
100852<...>-5340 ( 788) [005] ...1 82316.976641: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
100853<...>-5340 ( 788) [005] ...1 82316.976645: tracing_mark_write: E|788
100854 neuralnetworks@-13088 (  788) [000] d..2 82316.976659: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100855<...>-5340 ( 788) [005] .... 82316.976661: binder_transaction: transaction=1571750 dest_node=1571747 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
100856<...>-5340 ( 788) [005] .... 82316.976663: binder_transaction_alloc_buf: transaction=1571750 data_size=60 offsets_size=0
100857<...>-5340 ( 788) [005] d..4 82316.976667: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
100858          <idle>-0     (-----) [000] d..1 82316.976672: cpu_idle: state=0 cpu_id=0
100859<...>-5340 ( 788) [005] d..5 82316.976679: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
100860          <idle>-0     (-----) [004] .n.1 82316.976685: cpu_idle: state=4294967295 cpu_id=4
100861          <idle>-0     (-----) [004] d..2 82316.976695: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
100862           <...>-27571 (-----) [004] .... 82316.976700: binder_transaction_received: transaction=1571750
100863<...>-5340 ( 788) [005] ...1 82316.976701: tracing_mark_write: E|788
100864<...>-5340 ( 788) [005] .... 82316.976707: binder_transaction: transaction=1571751 dest_node=0 dest_proc=27550 dest_thread=27802 reply=1 flags=0x0 code=0x0
100865<...>-5340 ( 788) [005] .... 82316.976709: binder_transaction_alloc_buf: transaction=1571751 data_size=8 offsets_size=0
100866<...>-5340 ( 788) [005] d..2 82316.976711: sched_waking: comm=id.nn.benchmark pid=27802 prio=110 target_cpu=005
100867<...>-5340 ( 788) [005] d..3 82316.976718: sched_wakeup: comm=id.nn.benchmark pid=27802 prio=110 target_cpu=005
100868           <...>-27571 (-----) [004] ...1 82316.976719: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
100869<...>-5340 ( 788) [005] .... 82316.976719: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
100870           <...>-27571 (-----) [004] ...1 82316.976725: tracing_mark_write: E|27550
100871           <...>-27571 (-----) [004] d..2 82316.976755: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100872<...>-5340 ( 788) [005] d..2 82316.976761: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27802 next_prio=110
100873          <idle>-0     (-----) [004] d..1 82316.976762: cpu_idle: state=0 cpu_id=4
100874           <...>-27802 (-----) [005] .... 82316.976771: binder_transaction_received: transaction=1571751
100875           <...>-27802 (-----) [005] ...1 82316.976808: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
100876           <...>-27802 (-----) [005] ...1 82316.976814: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
100877           <...>-27802 (-----) [005] ...1 82316.976839: tracing_mark_write: E|27550
100878           <...>-27802 (-----) [005] ...1 82316.976843: tracing_mark_write: E|27550
100879           <...>-27802 (-----) [005] ...1 82316.976846: tracing_mark_write: E|27550
100880           <...>-27802 (-----) [005] ...1 82316.977034: tracing_mark_write: E|27550
100881           <...>-27802 (-----) [005] d..1 82316.977047: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100882           <...>-27802 (-----) [005] d..2 82316.977063: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100883          <idle>-0     (-----) [004] .n.1 82316.977069: cpu_idle: state=4294967295 cpu_id=4
100884          <idle>-0     (-----) [004] d..2 82316.977075: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
100885           <...>-27550 (-----) [004] d..2 82316.977090: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100886          <idle>-0     (-----) [004] d..1 82316.977095: cpu_idle: state=0 cpu_id=4
100887           <...>-27802 (-----) [005] d..1 82316.977151: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100888           <...>-27802 (-----) [005] d..2 82316.977161: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
100889          <idle>-0     (-----) [004] .n.1 82316.977166: cpu_idle: state=4294967295 cpu_id=4
100890          <idle>-0     (-----) [004] d..2 82316.977172: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
100891           <...>-27802 (-----) [005] d..2 82316.977200: sched_switch: prev_comm=id.nn.benchmark prev_pid=27802 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
100892           <...>-27550 (-----) [004] ...1 82316.977202: tracing_mark_write: E|27550
100893           <...>-27550 (-----) [004] ...1 82316.977207: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
100894           <...>-27550 (-----) [004] ...1 82316.977214: tracing_mark_write: E|27550
100895           <...>-27550 (-----) [004] ...1 82316.977220: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
100896          <idle>-0     (-----) [005] d..1 82316.977221: cpu_idle: state=0 cpu_id=5
100897           <...>-27550 (-----) [004] ...1 82316.977225: tracing_mark_write: E|27550
100898           <...>-27550 (-----) [004] ...1 82316.977229: tracing_mark_write: E|27550
100899           <...>-27550 (-----) [004] ...1 82316.977342: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
100900           <...>-27550 (-----) [004] ...1 82316.977400: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
100901           <...>-27550 (-----) [004] ...1 82316.977405: tracing_mark_write: E|27550
100902           <...>-27550 (-----) [004] ...1 82316.977409: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
100903           <...>-27550 (-----) [004] ...1 82316.977415: tracing_mark_write: E|27550
100904           <...>-27550 (-----) [004] ...1 82316.977419: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
100905           <...>-27550 (-----) [004] ...1 82316.977423: tracing_mark_write: E|27550
100906           <...>-27550 (-----) [004] ...1 82316.977426: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
100907          <idle>-0     (-----) [005] .n.1 82316.977521: cpu_idle: state=4294967295 cpu_id=5
100908           <...>-27550 (-----) [004] ...1 82316.977523: tracing_mark_write: E|27550
100909           <...>-27550 (-----) [004] ...1 82316.977527: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
100910          <idle>-0     (-----) [005] d..2 82316.977530: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27803 next_prio=110
100911           <...>-27550 (-----) [004] d..2 82316.977545: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
100912          <idle>-0     (-----) [004] d..1 82316.977561: cpu_idle: state=0 cpu_id=4
100913           <...>-27803 (-----) [005] ...1 82316.977591: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
100914           <...>-27803 (-----) [005] ...1 82316.977606: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
100915           <...>-27803 (-----) [005] ...1 82316.977610: tracing_mark_write: E|27550
100916           <...>-27803 (-----) [005] .... 82316.977631: binder_transaction: transaction=1571752 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
100917           <...>-27803 (-----) [005] .... 82316.977635: binder_transaction_alloc_buf: transaction=1571752 data_size=48 offsets_size=0
100918           <...>-27803 (-----) [005] ...2 82316.977638: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
100919           <...>-27803 (-----) [005] d..4 82316.977641: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
100920           <...>-27803 (-----) [005] dn.5 82316.977652: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
100921           <...>-27803 (-----) [005] d..2 82316.977659: sched_switch: prev_comm=id.nn.benchmark prev_pid=27803 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
100922<...>-770 ( 770) [005] .... 82316.977669: binder_transaction_received: transaction=1571752
100923<...>-770 ( 770) [005] ...1 82316.977692: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
100924          <idle>-0     (-----) [002] ...1 82316.977714: cpu_idle: state=4294967295 cpu_id=2
100925          <idle>-0     (-----) [002] d..1 82316.977719: cpu_idle: state=0 cpu_id=2
100926<...>-770 ( 770) [005] d..2 82316.977769: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
100927          <idle>-0     (-----) [000] dnh2 82316.977807: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
100928          <idle>-0     (-----) [000] .n.1 82316.977814: cpu_idle: state=4294967295 cpu_id=0
100929<...>-770 ( 770) [005] ...1 82316.977820: tracing_mark_write: E|770
100930          <idle>-0     (-----) [000] d..2 82316.977825: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
100931<...>-770 ( 770) [005] .... 82316.977828: binder_transaction: transaction=1571753 dest_node=0 dest_proc=27550 dest_thread=27803 reply=1 flags=0x0 code=0x0
100932<...>-770 ( 770) [005] .... 82316.977831: binder_transaction_alloc_buf: transaction=1571753 data_size=168 offsets_size=32
100933<...>-770 ( 770) [005] .... 82316.977838: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
100934<...>-770 ( 770) [005] d..2 82316.977874: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27803 next_prio=110
100935           <...>-27803 (-----) [005] .... 82316.977885: binder_transaction_received: transaction=1571753
100936<...>-581 ( 571) [000] d..2 82316.977913: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100937          <idle>-0     (-----) [000] d..1 82316.977930: cpu_idle: state=0 cpu_id=0
100938           <...>-27803 (-----) [005] ...1 82316.977955: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
100939           <...>-27803 (-----) [005] ...1 82316.977960: tracing_mark_write: E|27550
100940           <...>-27803 (-----) [005] .... 82316.977974: binder_transaction: transaction=1571754 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
100941           <...>-27803 (-----) [005] .... 82316.977976: binder_transaction_alloc_buf: transaction=1571754 data_size=48 offsets_size=0
100942           <...>-27803 (-----) [005] ...2 82316.977979: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
100943           <...>-27803 (-----) [005] d..4 82316.977981: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
100944           <...>-27803 (-----) [005] dn.5 82316.977991: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
100945           <...>-27803 (-----) [005] d..2 82316.977998: sched_switch: prev_comm=id.nn.benchmark prev_pid=27803 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
100946<...>-770 ( 770) [005] .... 82316.978006: binder_transaction_received: transaction=1571754
100947<...>-770 ( 770) [005] ...1 82316.978023: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
100948<...>-770 ( 770) [005] d..2 82316.978081: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
100949          <idle>-0     (-----) [000] dnh2 82316.978106: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
100950          <idle>-0     (-----) [000] .n.1 82316.978113: cpu_idle: state=4294967295 cpu_id=0
100951<...>-770 ( 770) [005] ...1 82316.978114: tracing_mark_write: E|770
100952<...>-770 ( 770) [005] .... 82316.978121: binder_transaction: transaction=1571755 dest_node=0 dest_proc=27550 dest_thread=27803 reply=1 flags=0x0 code=0x0
100953<...>-770 ( 770) [005] .... 82316.978124: binder_transaction_alloc_buf: transaction=1571755 data_size=168 offsets_size=32
100954          <idle>-0     (-----) [000] d..2 82316.978124: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
100955<...>-770 ( 770) [005] .... 82316.978130: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
100956<...>-770 ( 770) [005] d..2 82316.978164: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27803 next_prio=110
100957           <...>-27803 (-----) [005] .... 82316.978175: binder_transaction_received: transaction=1571755
100958<...>-581 ( 571) [000] d..2 82316.978186: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100959          <idle>-0     (-----) [000] d..1 82316.978200: cpu_idle: state=0 cpu_id=0
100960          <idle>-0     (-----) [001] d.s2 82316.978469: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
100961           <...>-27803 (-----) [005] d.s2 82316.978472: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
100962          <idle>-0     (-----) [001] dns3 82316.978487: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
100963          <idle>-0     (-----) [001] dns2 82316.978491: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
100964          <idle>-0     (-----) [000] dnh2 82316.978514: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
100965          <idle>-0     (-----) [000] .n.1 82316.978521: cpu_idle: state=4294967295 cpu_id=0
100966           <...>-27803 (-----) [005] ...1 82316.978523: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
100967          <idle>-0     (-----) [001] dns3 82316.978530: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
100968           <...>-27803 (-----) [005] ...1 82316.978532: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
100969           <...>-27803 (-----) [005] ...1 82316.978536: tracing_mark_write: E|27550
100970          <idle>-0     (-----) [000] d..2 82316.978539: 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
100971          <idle>-0     (-----) [001] .n.1 82316.978559: cpu_idle: state=4294967295 cpu_id=1
100972     rcu_preempt-7     (    7) [000] d..2 82316.978564: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
100973          <idle>-0     (-----) [001] d..2 82316.978571: 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
100974           <...>-27803 (-----) [005] .... 82316.978595: binder_transaction: transaction=1571756 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
100975           <...>-27803 (-----) [005] .... 82316.978599: binder_transaction_alloc_buf: transaction=1571756 data_size=556 offsets_size=104
100976<...>-8 ( 8) [001] d..2 82316.978604: 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
100977           <...>-27803 (-----) [005] ...2 82316.978613: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
100978           <...>-27803 (-----) [005] d..4 82316.978615: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100979           <...>-27803 (-----) [005] dn.5 82316.978624: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
100980           <...>-27803 (-----) [005] d..2 82316.978631: sched_switch: prev_comm=id.nn.benchmark prev_pid=27803 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
100981          <idle>-0     (-----) [001] d..1 82316.978636: cpu_idle: state=0 cpu_id=1
100982<...>-5340 ( 788) [005] .... 82316.978641: binder_transaction_received: transaction=1571756
100983          <idle>-0     (-----) [001] ...1 82316.978651: cpu_idle: state=4294967295 cpu_id=1
100984          <idle>-0     (-----) [001] d..1 82316.978656: cpu_idle: state=0 cpu_id=1
100985  kworker/u16:15-1311  ( 1311) [000] .... 82316.978669: clk_set_rate: l3_cluster0_vote_clk 403200000
100986<...>-5340 ( 788) [005] ...1 82316.978685: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
100987<...>-5340 ( 788) [005] d..2 82316.978747: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=001
100988<...>-5340 ( 788) [005] d..2 82316.978785: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27803 next_prio=110
100989  kworker/u16:15-1311  ( 1311) [000] d.h1 82316.978788: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
100990           <...>-27803 (-----) [005] d..2 82316.978808: sched_switch: prev_comm=id.nn.benchmark prev_pid=27803 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
100991          <idle>-0     (-----) [005] d..1 82316.978826: cpu_idle: state=0 cpu_id=5
100992  kworker/u16:15-1311  ( 1311) [000] d..2 82316.978930: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
100993          <idle>-0     (-----) [001] d.s3 82316.978976: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
100994<...>-87 ( 87) [000] d..2 82316.978976: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
100995          <idle>-0     (-----) [002] d.h4 82316.978979: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
100996          <idle>-0     (-----) [001] d.s4 82316.978989: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
100997          <idle>-0     (-----) [000] d..1 82316.978992: cpu_idle: state=0 cpu_id=0
100998          <idle>-0     (-----) [000] .n.1 82316.978997: cpu_idle: state=4294967295 cpu_id=0
100999          <idle>-0     (-----) [001] d.s4 82316.978998: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
101000          <idle>-0     (-----) [001] ...1 82316.979008: cpu_idle: state=4294967295 cpu_id=1
101001          <idle>-0     (-----) [000] d..2 82316.979015: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
101002          <idle>-0     (-----) [001] d..1 82316.979015: cpu_idle: state=0 cpu_id=1
101003          <idle>-0     (-----) [002] d.h5 82316.979024: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
101004          <idle>-0     (-----) [002] ...1 82316.979036: cpu_idle: state=4294967295 cpu_id=2
101005          <idle>-0     (-----) [002] d..1 82316.979043: cpu_idle: state=0 cpu_id=2
101006  kworker/u16:15-1311  ( 1311) [000] d..2 82316.979060: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
101007          <idle>-0     (-----) [002] d.h4 82316.979068: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101008          <idle>-0     (-----) [005] dnh2 82316.979088: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101009          <idle>-0     (-----) [005] .n.1 82316.979092: cpu_idle: state=4294967295 cpu_id=5
101010          <idle>-0     (-----) [005] d..2 82316.979100: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101011          <idle>-0     (-----) [002] ...1 82316.979106: cpu_idle: state=4294967295 cpu_id=2
101012          <idle>-0     (-----) [002] d..1 82316.979111: cpu_idle: state=0 cpu_id=2
101013<...>-86 ( 86) [000] d..2 82316.979135: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101014          <idle>-0     (-----) [000] d..1 82316.979148: cpu_idle: state=0 cpu_id=0
101015<...>-5340 ( 788) [005] d..1 82316.979153: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101016          <idle>-0     (-----) [000] dnh2 82316.979181: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101017          <idle>-0     (-----) [000] .n.1 82316.979188: cpu_idle: state=4294967295 cpu_id=0
101018          <idle>-0     (-----) [000] d..2 82316.979199: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
101019 neuralnetworks@-13088 (  788) [000] d..2 82316.979250: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101020          <idle>-0     (-----) [000] d..1 82316.979263: cpu_idle: state=0 cpu_id=0
101021<...>-5340 ( 788) [005] d..2 82316.979302: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101022          <idle>-0     (-----) [000] dnh2 82316.979324: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101023<...>-5340 ( 788) [005] d..2 82316.979329: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
101024          <idle>-0     (-----) [000] .n.1 82316.979331: cpu_idle: state=4294967295 cpu_id=0
101025          <idle>-0     (-----) [000] d..2 82316.979342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
101026          <idle>-0     (-----) [005] d..1 82316.979343: cpu_idle: state=0 cpu_id=5
101027          <idle>-0     (-----) [002] d.h4 82316.979380: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
101028<...>-87 ( 87) [000] d..2 82316.979382: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101029          <idle>-0     (-----) [000] d..1 82316.979393: cpu_idle: state=0 cpu_id=0
101030          <idle>-0     (-----) [000] .n.1 82316.979396: cpu_idle: state=4294967295 cpu_id=0
101031          <idle>-0     (-----) [002] d.h5 82316.979397: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
101032          <idle>-0     (-----) [002] ...1 82316.979408: cpu_idle: state=4294967295 cpu_id=2
101033          <idle>-0     (-----) [000] d..2 82316.979411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
101034          <idle>-0     (-----) [002] d..1 82316.979413: cpu_idle: state=0 cpu_id=2
101035<...>-86 ( 86) [000] d..2 82316.979447: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101036          <idle>-0     (-----) [000] d..1 82316.979457: cpu_idle: state=0 cpu_id=0
101037          <idle>-0     (-----) [000] d.h5 82316.979635: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
101038          <idle>-0     (-----) [000] d.h6 82316.979658: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
101039          <idle>-0     (-----) [000] d.h5 82316.979662: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
101040          <idle>-0     (-----) [003] .n.1 82316.979663: cpu_idle: state=4294967295 cpu_id=3
101041          <idle>-0     (-----) [000] d.h6 82316.979675: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
101042          <idle>-0     (-----) [003] d..2 82316.979675: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
101043          <idle>-0     (-----) [001] .n.1 82316.979680: cpu_idle: state=4294967295 cpu_id=1
101044          <idle>-0     (-----) [000] ...1 82316.979690: cpu_idle: state=4294967295 cpu_id=0
101045          <idle>-0     (-----) [001] d..2 82316.979691: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
101046          <idle>-0     (-----) [000] d..1 82316.979696: cpu_idle: state=0 cpu_id=0
101047  crtc_event:111-322   (  322) [003] d..2 82316.979710: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101048          <idle>-0     (-----) [003] d..1 82316.979721: cpu_idle: state=0 cpu_id=3
101049          <idle>-0     (-----) [005] ...1 82316.979792: cpu_idle: state=4294967295 cpu_id=5
101050          <idle>-0     (-----) [005] d..1 82316.979796: cpu_idle: state=0 cpu_id=5
101051 crtc_commit:111-321   (  321) [001] d..2 82316.979838: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
101052          <idle>-0     (-----) [001] d..1 82316.979846: cpu_idle: state=0 cpu_id=1
101053          <idle>-0     (-----) [002] d.h4 82316.981121: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101054          <idle>-0     (-----) [005] dnh2 82316.981140: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101055          <idle>-0     (-----) [005] .n.1 82316.981144: cpu_idle: state=4294967295 cpu_id=5
101056          <idle>-0     (-----) [005] d..2 82316.981151: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101057          <idle>-0     (-----) [002] ...1 82316.981157: cpu_idle: state=4294967295 cpu_id=2
101058          <idle>-0     (-----) [002] d..1 82316.981163: cpu_idle: state=0 cpu_id=2
101059<...>-5340 ( 788) [005] d..1 82316.981204: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101060          <idle>-0     (-----) [000] dnh2 82316.981230: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101061          <idle>-0     (-----) [000] .n.1 82316.981236: cpu_idle: state=4294967295 cpu_id=0
101062          <idle>-0     (-----) [000] d..2 82316.981248: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
101063<...>-5340 ( 788) [005] ...1 82316.981295: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
101064<...>-5340 ( 788) [005] ...1 82316.981299: tracing_mark_write: E|788
101065<...>-5340 ( 788) [005] .... 82316.981314: binder_transaction: transaction=1571759 dest_node=1571757 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
101066 neuralnetworks@-13088 (  788) [000] d..2 82316.981315: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101067<...>-5340 ( 788) [005] .... 82316.981317: binder_transaction_alloc_buf: transaction=1571759 data_size=60 offsets_size=0
101068<...>-5340 ( 788) [005] d..4 82316.981320: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
101069          <idle>-0     (-----) [000] d..1 82316.981327: cpu_idle: state=0 cpu_id=0
101070<...>-5340 ( 788) [005] d..5 82316.981333: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
101071          <idle>-0     (-----) [004] .n.1 82316.981339: cpu_idle: state=4294967295 cpu_id=4
101072          <idle>-0     (-----) [004] d..2 82316.981349: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
101073           <...>-27571 (-----) [004] .... 82316.981354: binder_transaction_received: transaction=1571759
101074<...>-5340 ( 788) [005] ...1 82316.981355: tracing_mark_write: E|788
101075<...>-5340 ( 788) [005] .... 82316.981361: binder_transaction: transaction=1571760 dest_node=0 dest_proc=27550 dest_thread=27803 reply=1 flags=0x0 code=0x0
101076<...>-5340 ( 788) [005] .... 82316.981363: binder_transaction_alloc_buf: transaction=1571760 data_size=8 offsets_size=0
101077<...>-5340 ( 788) [005] d..2 82316.981365: sched_waking: comm=id.nn.benchmark pid=27803 prio=110 target_cpu=005
101078<...>-5340 ( 788) [005] d..3 82316.981372: sched_wakeup: comm=id.nn.benchmark pid=27803 prio=110 target_cpu=005
101079           <...>-27571 (-----) [004] ...1 82316.981372: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
101080<...>-5340 ( 788) [005] .... 82316.981374: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
101081           <...>-27571 (-----) [004] ...1 82316.981379: tracing_mark_write: E|27550
101082           <...>-27571 (-----) [004] d..2 82316.981407: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101083          <idle>-0     (-----) [004] d..1 82316.981415: cpu_idle: state=0 cpu_id=4
101084<...>-5340 ( 788) [005] d..2 82316.981415: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27803 next_prio=110
101085           <...>-27803 (-----) [005] .... 82316.981425: binder_transaction_received: transaction=1571760
101086           <...>-27803 (-----) [005] ...1 82316.981461: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
101087           <...>-27803 (-----) [005] ...1 82316.981467: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
101088           <...>-27803 (-----) [005] ...1 82316.981494: tracing_mark_write: E|27550
101089           <...>-27803 (-----) [005] ...1 82316.981497: tracing_mark_write: E|27550
101090           <...>-27803 (-----) [005] ...1 82316.981501: tracing_mark_write: E|27550
101091           <...>-27803 (-----) [005] ...1 82316.981690: tracing_mark_write: E|27550
101092           <...>-27803 (-----) [005] d..1 82316.981704: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101093           <...>-27803 (-----) [005] d..2 82316.981720: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101094          <idle>-0     (-----) [004] .n.1 82316.981725: cpu_idle: state=4294967295 cpu_id=4
101095          <idle>-0     (-----) [004] d..2 82316.981732: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
101096           <...>-27550 (-----) [004] d..2 82316.981752: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101097          <idle>-0     (-----) [004] d..1 82316.981761: cpu_idle: state=0 cpu_id=4
101098          <idle>-0     (-----) [001] d.s3 82316.981800: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
101099          <idle>-0     (-----) [001] d.s4 82316.981818: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
101100          <idle>-0     (-----) [003] .n.1 82316.981824: cpu_idle: state=4294967295 cpu_id=3
101101          <idle>-0     (-----) [001] ...1 82316.981832: cpu_idle: state=4294967295 cpu_id=1
101102          <idle>-0     (-----) [003] d..2 82316.981836: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
101103          <idle>-0     (-----) [001] d..1 82316.981837: cpu_idle: state=0 cpu_id=1
101104           <...>-27803 (-----) [005] d..1 82316.981840: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101105           <...>-27803 (-----) [005] d..2 82316.981850: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101106          <idle>-0     (-----) [004] .n.1 82316.981856: cpu_idle: state=4294967295 cpu_id=4
101107          <idle>-0     (-----) [004] d..2 82316.981864: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
101108  crtc_event:111-322   (  322) [003] d..2 82316.981868: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101109          <idle>-0     (-----) [003] d..1 82316.981880: cpu_idle: state=0 cpu_id=3
101110           <...>-27803 (-----) [005] d..2 82316.981888: sched_switch: prev_comm=id.nn.benchmark prev_pid=27803 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
101111           <...>-27550 (-----) [004] ...1 82316.981898: tracing_mark_write: E|27550
101112           <...>-27550 (-----) [004] ...1 82316.981912: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
101113           <...>-27550 (-----) [004] ...1 82316.981919: tracing_mark_write: E|27550
101114           <...>-27550 (-----) [004] ...1 82316.981922: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
101115           <...>-27550 (-----) [004] ...1 82316.981926: tracing_mark_write: E|27550
101116          <idle>-0     (-----) [005] d..1 82316.981929: cpu_idle: state=0 cpu_id=5
101117           <...>-27550 (-----) [004] ...1 82316.981930: tracing_mark_write: E|27550
101118          <idle>-0     (-----) [000] d.h5 82316.981975: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
101119          <idle>-0     (-----) [000] d.h6 82316.981991: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
101120          <idle>-0     (-----) [001] .n.1 82316.981997: cpu_idle: state=4294967295 cpu_id=1
101121          <idle>-0     (-----) [001] d..2 82316.982005: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
101122          <idle>-0     (-----) [000] ...1 82316.982006: cpu_idle: state=4294967295 cpu_id=0
101123          <idle>-0     (-----) [000] d..1 82316.982011: cpu_idle: state=0 cpu_id=0
101124           <...>-27550 (-----) [004] ...1 82316.982042: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
101125 crtc_commit:111-321   (  321) [001] d..2 82316.982086: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101126          <idle>-0     (-----) [001] d..1 82316.982094: cpu_idle: state=0 cpu_id=1
101127           <...>-27550 (-----) [004] ...1 82316.982099: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
101128           <...>-27550 (-----) [004] ...1 82316.982104: tracing_mark_write: E|27550
101129           <...>-27550 (-----) [004] ...1 82316.982108: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
101130           <...>-27550 (-----) [004] ...1 82316.982113: tracing_mark_write: E|27550
101131           <...>-27550 (-----) [004] ...1 82316.982117: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
101132           <...>-27550 (-----) [004] ...1 82316.982122: tracing_mark_write: E|27550
101133           <...>-27550 (-----) [004] ...1 82316.982125: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
101134          <idle>-0     (-----) [005] .n.1 82316.982217: cpu_idle: state=4294967295 cpu_id=5
101135           <...>-27550 (-----) [004] ...1 82316.982219: tracing_mark_write: E|27550
101136           <...>-27550 (-----) [004] ...1 82316.982224: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
101137          <idle>-0     (-----) [005] d..2 82316.982226: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27804 next_prio=110
101138           <...>-27550 (-----) [004] d..2 82316.982241: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101139          <idle>-0     (-----) [004] d..1 82316.982256: cpu_idle: state=0 cpu_id=4
101140          <idle>-0     (-----) [000] d.h5 82316.982265: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
101141          <idle>-0     (-----) [000] d.h6 82316.982280: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
101142          <idle>-0     (-----) [003] .n.1 82316.982286: cpu_idle: state=4294967295 cpu_id=3
101143           <...>-27804 (-----) [005] ...1 82316.982287: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
101144          <idle>-0     (-----) [000] ...1 82316.982296: cpu_idle: state=4294967295 cpu_id=0
101145          <idle>-0     (-----) [003] d..2 82316.982296: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
101146          <idle>-0     (-----) [000] d..1 82316.982300: cpu_idle: state=0 cpu_id=0
101147           <...>-27804 (-----) [005] ...1 82316.982301: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
101148           <...>-27804 (-----) [005] ...1 82316.982304: tracing_mark_write: E|27550
101149  crtc_event:111-322   (  322) [003] d..2 82316.982320: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101150           <...>-27804 (-----) [005] .... 82316.982325: binder_transaction: transaction=1571761 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
101151           <...>-27804 (-----) [005] .... 82316.982328: binder_transaction_alloc_buf: transaction=1571761 data_size=48 offsets_size=0
101152          <idle>-0     (-----) [003] d..1 82316.982330: cpu_idle: state=0 cpu_id=3
101153           <...>-27804 (-----) [005] ...2 82316.982331: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
101154           <...>-27804 (-----) [005] d..4 82316.982334: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
101155           <...>-27804 (-----) [005] dn.5 82316.982344: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
101156           <...>-27804 (-----) [005] d..2 82316.982351: sched_switch: prev_comm=id.nn.benchmark prev_pid=27804 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
101157<...>-770 ( 770) [005] .... 82316.982360: binder_transaction_received: transaction=1571761
101158<...>-770 ( 770) [005] ...1 82316.982382: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
101159<...>-770 ( 770) [005] d..2 82316.982459: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
101160          <idle>-0     (-----) [000] dnh2 82316.982487: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
101161          <idle>-0     (-----) [000] .n.1 82316.982492: cpu_idle: state=4294967295 cpu_id=0
101162<...>-770 ( 770) [005] ...1 82316.982499: tracing_mark_write: E|770
101163          <idle>-0     (-----) [000] d..2 82316.982506: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
101164<...>-770 ( 770) [005] .... 82316.982507: binder_transaction: transaction=1571762 dest_node=0 dest_proc=27550 dest_thread=27804 reply=1 flags=0x0 code=0x0
101165<...>-770 ( 770) [005] .... 82316.982509: binder_transaction_alloc_buf: transaction=1571762 data_size=168 offsets_size=32
101166<...>-770 ( 770) [005] .... 82316.982516: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
101167<...>-770 ( 770) [005] d..2 82316.982552: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27804 next_prio=110
101168           <...>-27804 (-----) [005] .... 82316.982563: binder_transaction_received: transaction=1571762
101169<...>-581 ( 571) [000] d..2 82316.982586: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101170          <idle>-0     (-----) [000] d..1 82316.982597: cpu_idle: state=0 cpu_id=0
101171           <...>-27804 (-----) [005] ...1 82316.982632: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
101172           <...>-27804 (-----) [005] ...1 82316.982637: tracing_mark_write: E|27550
101173           <...>-27804 (-----) [005] .... 82316.982652: binder_transaction: transaction=1571763 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
101174           <...>-27804 (-----) [005] .... 82316.982655: binder_transaction_alloc_buf: transaction=1571763 data_size=48 offsets_size=0
101175           <...>-27804 (-----) [005] ...2 82316.982657: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
101176           <...>-27804 (-----) [005] d..4 82316.982659: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
101177           <...>-27804 (-----) [005] dn.5 82316.982670: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
101178           <...>-27804 (-----) [005] d..2 82316.982676: sched_switch: prev_comm=id.nn.benchmark prev_pid=27804 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
101179<...>-770 ( 770) [005] .... 82316.982684: binder_transaction_received: transaction=1571763
101180<...>-770 ( 770) [005] ...1 82316.982701: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
101181<...>-770 ( 770) [005] d..2 82316.982758: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
101182          <idle>-0     (-----) [000] dnh2 82316.982782: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
101183          <idle>-0     (-----) [000] .n.1 82316.982788: cpu_idle: state=4294967295 cpu_id=0
101184<...>-770 ( 770) [005] ...1 82316.982791: tracing_mark_write: E|770
101185          <idle>-0     (-----) [000] d..2 82316.982796: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
101186<...>-770 ( 770) [005] .... 82316.982799: binder_transaction: transaction=1571764 dest_node=0 dest_proc=27550 dest_thread=27804 reply=1 flags=0x0 code=0x0
101187<...>-770 ( 770) [005] .... 82316.982801: binder_transaction_alloc_buf: transaction=1571764 data_size=168 offsets_size=32
101188<...>-770 ( 770) [005] .... 82316.982807: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
101189<...>-770 ( 770) [005] d..2 82316.982841: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27804 next_prio=110
101190           <...>-27804 (-----) [005] .... 82316.982852: binder_transaction_received: transaction=1571764
101191<...>-581 ( 571) [000] d..2 82316.982855: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101192          <idle>-0     (-----) [000] d..1 82316.982864: cpu_idle: state=0 cpu_id=0
101193           <...>-27804 (-----) [005] ...1 82316.983128: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
101194           <...>-27804 (-----) [005] ...1 82316.983138: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
101195           <...>-27804 (-----) [005] ...1 82316.983142: tracing_mark_write: E|27550
101196           <...>-27804 (-----) [005] .... 82316.983204: binder_transaction: transaction=1571765 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
101197           <...>-27804 (-----) [005] .... 82316.983207: binder_transaction_alloc_buf: transaction=1571765 data_size=556 offsets_size=104
101198           <...>-27804 (-----) [005] ...2 82316.983222: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
101199           <...>-27804 (-----) [005] d..4 82316.983224: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101200           <...>-27804 (-----) [005] dn.5 82316.983235: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101201           <...>-27804 (-----) [005] d..2 82316.983243: sched_switch: prev_comm=id.nn.benchmark prev_pid=27804 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101202<...>-5340 ( 788) [005] .... 82316.983252: binder_transaction_received: transaction=1571765
101203<...>-5340 ( 788) [005] ...1 82316.983296: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
101204<...>-5340 ( 788) [005] d..2 82316.983342: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101205<...>-5340 ( 788) [005] d..2 82316.983366: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27804 next_prio=110
101206          <idle>-0     (-----) [000] dnh2 82316.983370: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101207          <idle>-0     (-----) [000] .n.1 82316.983376: cpu_idle: state=4294967295 cpu_id=0
101208          <idle>-0     (-----) [000] d..2 82316.983384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
101209           <...>-27804 (-----) [005] d..2 82316.983388: sched_switch: prev_comm=id.nn.benchmark prev_pid=27804 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
101210          <idle>-0     (-----) [005] d..1 82316.983406: cpu_idle: state=0 cpu_id=5
101211<...>-87 ( 87) [000] d..2 82316.983425: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101212          <idle>-0     (-----) [002] d.h4 82316.983431: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
101213          <idle>-0     (-----) [000] d..1 82316.983433: cpu_idle: state=0 cpu_id=0
101214          <idle>-0     (-----) [002] dnh5 82316.983463: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
101215          <idle>-0     (-----) [002] .n.1 82316.983476: cpu_idle: state=4294967295 cpu_id=2
101216          <idle>-0     (-----) [002] d..2 82316.983489: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
101217<...>-86 ( 86) [002] d.h4 82316.983518: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101218          <idle>-0     (-----) [005] dnh2 82316.983539: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101219          <idle>-0     (-----) [005] .n.1 82316.983544: cpu_idle: state=4294967295 cpu_id=5
101220          <idle>-0     (-----) [005] d..2 82316.983552: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101221<...>-86 ( 86) [002] d..2 82316.983576: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101222          <idle>-0     (-----) [002] d..1 82316.983589: cpu_idle: state=0 cpu_id=2
101223<...>-5340 ( 788) [005] d..1 82316.983603: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101224          <idle>-0     (-----) [000] dnh2 82316.983629: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101225          <idle>-0     (-----) [000] .n.1 82316.983634: cpu_idle: state=4294967295 cpu_id=0
101226          <idle>-0     (-----) [000] d..2 82316.983642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
101227 neuralnetworks@-13088 (  788) [000] d..2 82316.983689: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101228          <idle>-0     (-----) [000] d..1 82316.983699: cpu_idle: state=0 cpu_id=0
101229<...>-5340 ( 788) [005] d..2 82316.983748: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101230          <idle>-0     (-----) [000] dnh2 82316.983771: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101231<...>-5340 ( 788) [005] d..2 82316.983774: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
101232          <idle>-0     (-----) [000] .n.1 82316.983776: cpu_idle: state=4294967295 cpu_id=0
101233          <idle>-0     (-----) [000] d..2 82316.983785: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
101234          <idle>-0     (-----) [005] d..1 82316.983789: cpu_idle: state=0 cpu_id=5
101235<...>-87 ( 87) [000] d..2 82316.983822: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101236          <idle>-0     (-----) [002] d.h4 82316.983825: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
101237          <idle>-0     (-----) [000] d..1 82316.983830: cpu_idle: state=0 cpu_id=0
101238          <idle>-0     (-----) [002] dnh5 82316.983836: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
101239          <idle>-0     (-----) [002] .n.1 82316.983844: cpu_idle: state=4294967295 cpu_id=2
101240          <idle>-0     (-----) [002] d..2 82316.983856: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
101241<...>-86 ( 86) [002] d..2 82316.983889: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101242          <idle>-0     (-----) [002] d..1 82316.983901: cpu_idle: state=0 cpu_id=2
101243          <idle>-0     (-----) [001] d.h2 82316.984052: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
101244          <idle>-0     (-----) [001] dnh3 82316.984067: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
101245          <idle>-0     (-----) [001] .n.1 82316.984075: cpu_idle: state=4294967295 cpu_id=1
101246          <idle>-0     (-----) [001] d..2 82316.984082: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
101247        DispSync-8879  ( 8858) [001] d..1 82316.984107: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
101248        DispSync-8879  ( 8858) [001] d..2 82316.984124: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
101249          <idle>-0     (-----) [003] .n.1 82316.984129: cpu_idle: state=4294967295 cpu_id=3
101250          <idle>-0     (-----) [005] ...1 82316.984139: cpu_idle: state=4294967295 cpu_id=5
101251          <idle>-0     (-----) [003] d..2 82316.984139: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
101252          <idle>-0     (-----) [005] d..1 82316.984143: cpu_idle: state=0 cpu_id=5
101253        DispSync-8879  ( 8858) [001] d..2 82316.984156: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101254          <idle>-0     (-----) [001] d..1 82316.984166: cpu_idle: state=0 cpu_id=1
101255  appEventThread-8881  ( 8858) [003] d..3 82316.984185: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
101256  appEventThread-8881  ( 8858) [003] d..4 82316.984214: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
101257          <idle>-0     (-----) [000] .n.1 82316.984219: cpu_idle: state=4294967295 cpu_id=0
101258          <idle>-0     (-----) [000] d..2 82316.984229: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
101259  appEventThread-8881  ( 8858) [003] d..2 82316.984252: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101260          <idle>-0     (-----) [003] d..1 82316.984266: cpu_idle: state=0 cpu_id=3
101261<...>-9105 ( 9105) [000] .... 82316.984572: binder_transaction: transaction=1571768 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
101262<...>-9105 ( 9105) [000] .... 82316.984579: binder_transaction_alloc_buf: transaction=1571768 data_size=80 offsets_size=0
101263<...>-9105 ( 9105) [000] d..4 82316.984585: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
101264<...>-9105 ( 9105) [000] d..5 82316.984619: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
101265          <idle>-0     (-----) [001] .n.1 82316.984625: cpu_idle: state=4294967295 cpu_id=1
101266          <idle>-0     (-----) [001] d..2 82316.984635: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
101267<...>-13083 ( 8858) [001] .... 82316.984643: binder_transaction_received: transaction=1571768
101268<...>-9105 ( 9105) [000] d..3 82316.984658: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
101269<...>-9105 ( 9105) [000] d..4 82316.984678: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
101270<...>-13083 ( 8858) [001] d..1 82316.984679: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
101271          <idle>-0     (-----) [002] .n.1 82316.984684: cpu_idle: state=4294967295 cpu_id=2
101272          <idle>-0     (-----) [002] d..2 82316.984696: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
101273<...>-13083 ( 8858) [001] d..2 82316.984696: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
101274          <idle>-0     (-----) [003] .n.1 82316.984702: cpu_idle: state=4294967295 cpu_id=3
101275          <idle>-0     (-----) [003] d..2 82316.984712: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
101276<...>-13083 ( 8858) [001] d..2 82316.984739: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101277          <idle>-0     (-----) [001] d..1 82316.984749: cpu_idle: state=0 cpu_id=1
101278  appEventThread-8881  ( 8858) [003] d..2 82316.984755: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101279    RenderThread-9436  ( 9105) [002] d..2 82316.984761: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101280          <idle>-0     (-----) [003] d..1 82316.984766: cpu_idle: state=0 cpu_id=3
101281          <idle>-0     (-----) [002] d..1 82316.984775: cpu_idle: state=0 cpu_id=2
101282<...>-9105 ( 9105) [000] d..3 82316.984806: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
101283<...>-9105 ( 9105) [000] d..4 82316.984825: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
101284          <idle>-0     (-----) [002] .n.1 82316.984831: cpu_idle: state=4294967295 cpu_id=2
101285          <idle>-0     (-----) [002] d..2 82316.984843: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
101286<...>-9105 ( 9105) [000] d..2 82316.984860: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101287          <idle>-0     (-----) [000] d..1 82316.984873: cpu_idle: state=0 cpu_id=0
101288    RenderThread-9436  ( 9105) [002] d..1 82316.984971: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
101289    RenderThread-9436  ( 9105) [002] d..2 82316.984990: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
101290          <idle>-0     (-----) [000] .n.1 82316.984997: cpu_idle: state=4294967295 cpu_id=0
101291          <idle>-0     (-----) [000] d..2 82316.985008: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
101292    RenderThread-9436  ( 9105) [002] .... 82316.985059: binder_transaction: transaction=1571769 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
101293    RenderThread-9436  ( 9105) [002] .... 82316.985064: binder_transaction_alloc_buf: transaction=1571769 data_size=104 offsets_size=0
101294    RenderThread-9436  ( 9105) [002] d..4 82316.985069: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
101295<...>-9105 ( 9105) [000] d..2 82316.985089: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101296    RenderThread-9436  ( 9105) [002] dn.5 82316.985090: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
101297          <idle>-0     (-----) [000] d..1 82316.985099: cpu_idle: state=0 cpu_id=0
101298    RenderThread-9436  ( 9105) [002] d..2 82316.985101: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
101299          <idle>-0     (-----) [001] d.s2 82316.985136: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
101300          <idle>-0     (-----) [000] d.s2 82316.985138: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101301<...>-13083 ( 8858) [002] d.s4 82316.985151: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
101302          <idle>-0     (-----) [001] dns3 82316.985154: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
101303          <idle>-0     (-----) [000] dns3 82316.985157: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101304          <idle>-0     (-----) [001] .n.1 82316.985163: cpu_idle: state=4294967295 cpu_id=1
101305          <idle>-0     (-----) [001] d..2 82316.985172: 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
101306<...>-8 ( 8) [001] d..2 82316.985182: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
101307          <idle>-0     (-----) [000] .n.1 82316.985183: cpu_idle: state=4294967295 cpu_id=0
101308          <idle>-0     (-----) [000] d..2 82316.985199: 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
101309<...>-13083 ( 8858) [002] d.s5 82316.985200: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
101310     rcu_preempt-7     (    7) [000] d..2 82316.985207: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
101311<...>-13083 ( 8858) [002] .... 82316.985222: binder_transaction_received: transaction=1571769
101312<...>-8 ( 8) [001] d..3 82316.985229: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
101313<...>-8 ( 8) [001] d..2 82316.985242: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
101314     rcu_preempt-7     (    7) [000] d..3 82316.985258: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
101315<...>-46 ( 46) [001] d..2 82316.985273: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
101316     rcu_preempt-7     (    7) [000] d..2 82316.985274: 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
101317         rcuop/4-45    (   45) [000] d..2 82316.985280: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
101318<...>-13083 ( 8858) [002] .... 82316.985297: binder_transaction: transaction=1571770 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
101319<...>-13083 ( 8858) [002] .... 82316.985302: binder_transaction_alloc_buf: transaction=1571770 data_size=52 offsets_size=8
101320<...>-46 ( 46) [001] d..3 82316.985310: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
101321         rcuop/4-45    (   45) [000] d..3 82316.985325: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
101322<...>-46 ( 46) [001] d..2 82316.985329: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
101323         rcuop/4-45    (   45) [000] d..2 82316.985336: 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
101324<...>-13083 ( 8858) [002] d..2 82316.985352: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
101325    RenderThread-9436  ( 9105) [002] .... 82316.985362: binder_transaction_received: transaction=1571770
101326  kworker/u16:15-1311  ( 1311) [001] d..2 82316.985406: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101327          <idle>-0     (-----) [001] d..1 82316.985418: cpu_idle: state=0 cpu_id=1
101328         rcuop/5-53    (   53) [000] d..2 82316.985438: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
101329<...>-8 ( 8) [000] d..2 82316.985464: 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
101330          <idle>-0     (-----) [000] d..1 82316.985478: cpu_idle: state=0 cpu_id=0
101331    RenderThread-9436  ( 9105) [002] d.h3 82316.985491: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101332          <idle>-0     (-----) [005] dnh2 82316.985514: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101333          <idle>-0     (-----) [005] .n.1 82316.985517: cpu_idle: state=4294967295 cpu_id=5
101334          <idle>-0     (-----) [005] d..2 82316.985526: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101335<...>-5340 ( 788) [005] d..1 82316.985579: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101336          <idle>-0     (-----) [000] dnh2 82316.985607: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101337          <idle>-0     (-----) [000] .n.1 82316.985614: cpu_idle: state=4294967295 cpu_id=0
101338          <idle>-0     (-----) [000] d..2 82316.985639: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
101339<...>-5340 ( 788) [005] ...1 82316.985670: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
101340<...>-5340 ( 788) [005] ...1 82316.985674: tracing_mark_write: E|788
101341<...>-5340 ( 788) [005] .... 82316.985690: binder_transaction: transaction=1571771 dest_node=1571766 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
101342<...>-5340 ( 788) [005] .... 82316.985693: binder_transaction_alloc_buf: transaction=1571771 data_size=60 offsets_size=0
101343<...>-5340 ( 788) [005] d..4 82316.985696: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
101344 neuralnetworks@-13088 (  788) [000] d..2 82316.985701: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101345<...>-5340 ( 788) [005] d..5 82316.985708: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
101346          <idle>-0     (-----) [000] d..1 82316.985713: cpu_idle: state=0 cpu_id=0
101347          <idle>-0     (-----) [004] .n.1 82316.985714: cpu_idle: state=4294967295 cpu_id=4
101348          <idle>-0     (-----) [004] d..2 82316.985723: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
101349           <...>-27571 (-----) [004] .... 82316.985728: binder_transaction_received: transaction=1571771
101350<...>-5340 ( 788) [005] ...1 82316.985730: tracing_mark_write: E|788
101351<...>-5340 ( 788) [005] .... 82316.985736: binder_transaction: transaction=1571772 dest_node=0 dest_proc=27550 dest_thread=27804 reply=1 flags=0x0 code=0x0
101352<...>-5340 ( 788) [005] .... 82316.985738: binder_transaction_alloc_buf: transaction=1571772 data_size=8 offsets_size=0
101353<...>-5340 ( 788) [005] d..2 82316.985740: sched_waking: comm=id.nn.benchmark pid=27804 prio=110 target_cpu=005
101354           <...>-27571 (-----) [004] ...1 82316.985747: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
101355<...>-5340 ( 788) [005] d..3 82316.985748: sched_wakeup: comm=id.nn.benchmark pid=27804 prio=110 target_cpu=005
101356<...>-5340 ( 788) [005] .... 82316.985749: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
101357           <...>-27571 (-----) [004] ...1 82316.985755: tracing_mark_write: E|27550
101358           <...>-27571 (-----) [004] d..2 82316.985789: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101359<...>-5340 ( 788) [005] d..2 82316.985791: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27804 next_prio=110
101360          <idle>-0     (-----) [004] d..1 82316.985799: cpu_idle: state=0 cpu_id=4
101361           <...>-27804 (-----) [005] .... 82316.985801: binder_transaction_received: transaction=1571772
101362           <...>-27804 (-----) [005] ...1 82316.985839: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
101363           <...>-27804 (-----) [005] ...1 82316.985845: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
101364           <...>-27804 (-----) [005] ...1 82316.985871: tracing_mark_write: E|27550
101365           <...>-27804 (-----) [005] ...1 82316.985874: tracing_mark_write: E|27550
101366           <...>-27804 (-----) [005] ...1 82316.985878: tracing_mark_write: E|27550
101367           <...>-27804 (-----) [005] ...1 82316.986064: tracing_mark_write: E|27550
101368           <...>-27804 (-----) [005] d..1 82316.986077: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101369           <...>-27804 (-----) [005] d..2 82316.986093: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101370          <idle>-0     (-----) [004] .n.1 82316.986098: cpu_idle: state=4294967295 cpu_id=4
101371          <idle>-0     (-----) [004] d..2 82316.986107: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
101372           <...>-27550 (-----) [004] d..2 82316.986123: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101373          <idle>-0     (-----) [004] d..1 82316.986130: cpu_idle: state=0 cpu_id=4
101374           <...>-27804 (-----) [005] d..1 82316.986184: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101375           <...>-27804 (-----) [005] d..2 82316.986193: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101376          <idle>-0     (-----) [004] .n.1 82316.986199: cpu_idle: state=4294967295 cpu_id=4
101377          <idle>-0     (-----) [004] d..2 82316.986205: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
101378           <...>-27804 (-----) [005] d..2 82316.986234: sched_switch: prev_comm=id.nn.benchmark prev_pid=27804 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
101379           <...>-27550 (-----) [004] ...1 82316.986238: tracing_mark_write: E|27550
101380           <...>-27550 (-----) [004] ...1 82316.986243: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
101381           <...>-27550 (-----) [004] ...1 82316.986248: tracing_mark_write: E|27550
101382           <...>-27550 (-----) [004] ...1 82316.986252: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
101383          <idle>-0     (-----) [005] d..1 82316.986254: cpu_idle: state=0 cpu_id=5
101384           <...>-27550 (-----) [004] ...1 82316.986256: tracing_mark_write: E|27550
101385           <...>-27550 (-----) [004] ...1 82316.986260: tracing_mark_write: E|27550
101386           <...>-27550 (-----) [004] ...1 82316.986372: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
101387           <...>-27550 (-----) [004] ...1 82316.986429: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
101388           <...>-27550 (-----) [004] ...1 82316.986434: tracing_mark_write: E|27550
101389           <...>-27550 (-----) [004] ...1 82316.986437: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
101390           <...>-27550 (-----) [004] ...1 82316.986443: tracing_mark_write: E|27550
101391           <...>-27550 (-----) [004] ...1 82316.986446: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
101392           <...>-27550 (-----) [004] ...1 82316.986450: tracing_mark_write: E|27550
101393           <...>-27550 (-----) [004] ...1 82316.986453: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
101394    RenderThread-9436  ( 9105) [002] d..2 82316.986495: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
101395          <idle>-0     (-----) [002] d..1 82316.986512: cpu_idle: state=0 cpu_id=2
101396          <idle>-0     (-----) [005] .n.1 82316.986544: cpu_idle: state=4294967295 cpu_id=5
101397           <...>-27550 (-----) [004] ...1 82316.986545: tracing_mark_write: E|27550
101398           <...>-27550 (-----) [004] ...1 82316.986549: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
101399          <idle>-0     (-----) [005] d..2 82316.986553: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27805 next_prio=110
101400           <...>-27550 (-----) [004] d..2 82316.986566: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101401          <idle>-0     (-----) [002] d.h2 82316.986575: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
101402          <idle>-0     (-----) [004] d..1 82316.986580: cpu_idle: state=0 cpu_id=4
101403          <idle>-0     (-----) [002] d.h3 82316.986586: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
101404          <idle>-0     (-----) [002] dnh3 82316.986592: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
101405          <idle>-0     (-----) [002] .n.1 82316.986601: cpu_idle: state=4294967295 cpu_id=2
101406          <idle>-0     (-----) [002] d..2 82316.986613: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
101407          <idle>-0     (-----) [000] d.h3 82316.986615: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
101408           <...>-27805 (-----) [005] ...1 82316.986615: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
101409           <...>-27805 (-----) [005] ...1 82316.986629: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
101410           <...>-27805 (-----) [005] ...1 82316.986634: tracing_mark_write: E|27550
101411          <idle>-0     (-----) [000] d.h4 82316.986638: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
101412          <idle>-0     (-----) [003] .n.1 82316.986643: cpu_idle: state=4294967295 cpu_id=3
101413          <idle>-0     (-----) [000] ...1 82316.986654: cpu_idle: state=4294967295 cpu_id=0
101414          <idle>-0     (-----) [003] d..2 82316.986654: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
101415           <...>-27805 (-----) [005] .... 82316.986655: binder_transaction: transaction=1571773 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
101416           <...>-27805 (-----) [005] .... 82316.986658: binder_transaction_alloc_buf: transaction=1571773 data_size=48 offsets_size=0
101417          <idle>-0     (-----) [000] d..1 82316.986659: cpu_idle: state=0 cpu_id=0
101418           <...>-27805 (-----) [005] ...2 82316.986661: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
101419           <...>-27805 (-----) [005] d..4 82316.986664: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
101420           <...>-27805 (-----) [005] dn.5 82316.986674: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
101421           <...>-27805 (-----) [005] d..2 82316.986681: sched_switch: prev_comm=id.nn.benchmark prev_pid=27805 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
101422<...>-770 ( 770) [005] .... 82316.986692: binder_transaction_received: transaction=1571773
101423 kgsl_worker_thr-258   (  258) [003] d..2 82316.986702: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
101424<...>-770 ( 770) [005] ...1 82316.986716: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
101425 kgsl_worker_thr-258   (  258) [003] d..3 82316.986719: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
101426          <idle>-0     (-----) [001] .n.1 82316.986725: cpu_idle: state=4294967295 cpu_id=1
101427          <idle>-0     (-----) [001] d..2 82316.986737: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
101428 kgsl_worker_thr-258   (  258) [003] d..2 82316.986746: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101429          <idle>-0     (-----) [003] d..1 82316.986758: cpu_idle: state=0 cpu_id=3
101430  kworker/u16:15-1311  ( 1311) [001] d..2 82316.986783: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101431          <idle>-0     (-----) [001] d..1 82316.986792: cpu_idle: state=0 cpu_id=1
101432<...>-770 ( 770) [005] d..2 82316.986797: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
101433    RenderThread-9436  ( 9105) [002] .... 82316.986814: binder_transaction: transaction=1571774 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
101434    RenderThread-9436  ( 9105) [002] .... 82316.986820: binder_transaction_alloc_buf: transaction=1571774 data_size=192 offsets_size=8
101435    RenderThread-9436  ( 9105) [002] d.h2 82316.986840: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
101436    RenderThread-9436  ( 9105) [002] d..4 82316.986848: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
101437<...>-770 ( 770) [005] ...1 82316.986855: tracing_mark_write: E|770
101438<...>-770 ( 770) [005] .... 82316.986863: binder_transaction: transaction=1571775 dest_node=0 dest_proc=27550 dest_thread=27805 reply=1 flags=0x0 code=0x0
101439<...>-770 ( 770) [005] .... 82316.986867: binder_transaction_alloc_buf: transaction=1571775 data_size=168 offsets_size=32
101440    RenderThread-9436  ( 9105) [002] d..5 82316.986874: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
101441<...>-770 ( 770) [005] .... 82316.986874: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
101442          <idle>-0     (-----) [000] .n.1 82316.986879: cpu_idle: state=4294967295 cpu_id=0
101443    RenderThread-9436  ( 9105) [002] d..2 82316.986890: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
101444          <idle>-0     (-----) [000] d..2 82316.986892: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
101445<...>-13083 ( 8858) [000] .... 82316.986903: binder_transaction_received: transaction=1571774
101446<...>-770 ( 770) [005] d..2 82316.986911: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27805 next_prio=110
101447           <...>-27805 (-----) [005] .... 82316.986921: binder_transaction_received: transaction=1571775
101448<...>-581 ( 571) [002] d..2 82316.986989: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101449           <...>-27805 (-----) [005] ...1 82316.986996: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
101450           <...>-27805 (-----) [005] ...1 82316.987001: tracing_mark_write: E|27550
101451          <idle>-0     (-----) [002] d..1 82316.987009: cpu_idle: state=0 cpu_id=2
101452           <...>-27805 (-----) [005] .... 82316.987016: binder_transaction: transaction=1571776 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
101453           <...>-27805 (-----) [005] .... 82316.987019: binder_transaction_alloc_buf: transaction=1571776 data_size=48 offsets_size=0
101454           <...>-27805 (-----) [005] ...2 82316.987021: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
101455           <...>-27805 (-----) [005] d..4 82316.987023: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
101456           <...>-27805 (-----) [005] dn.5 82316.987033: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
101457           <...>-27805 (-----) [005] d..2 82316.987040: sched_switch: prev_comm=id.nn.benchmark prev_pid=27805 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
101458<...>-770 ( 770) [005] .... 82316.987047: binder_transaction_received: transaction=1571776
101459<...>-770 ( 770) [005] ...1 82316.987064: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
101460<...>-13083 ( 8858) [000] .... 82316.987071: binder_transaction: transaction=1571777 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
101461<...>-13083 ( 8858) [000] .... 82316.987076: binder_transaction_alloc_buf: transaction=1571777 data_size=68 offsets_size=0
101462<...>-13083 ( 8858) [000] d..2 82316.987080: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
101463<...>-13083 ( 8858) [000] d..3 82316.987106: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
101464<...>-770 ( 770) [005] d..2 82316.987121: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
101465          <idle>-0     (-----) [002] dnh2 82316.987146: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
101466<...>-13083 ( 8858) [000] d..2 82316.987148: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
101467          <idle>-0     (-----) [002] .n.1 82316.987154: cpu_idle: state=4294967295 cpu_id=2
101468<...>-770 ( 770) [005] ...1 82316.987155: tracing_mark_write: E|770
101469    RenderThread-9436  ( 9105) [000] .... 82316.987157: binder_transaction_received: transaction=1571777
101470<...>-770 ( 770) [005] .... 82316.987162: binder_transaction: transaction=1571778 dest_node=0 dest_proc=27550 dest_thread=27805 reply=1 flags=0x0 code=0x0
101471<...>-770 ( 770) [005] .... 82316.987165: binder_transaction_alloc_buf: transaction=1571778 data_size=168 offsets_size=32
101472          <idle>-0     (-----) [002] d..2 82316.987166: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
101473<...>-770 ( 770) [005] .... 82316.987171: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
101474<...>-770 ( 770) [005] d..2 82316.987205: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27805 next_prio=110
101475           <...>-27805 (-----) [005] .... 82316.987215: binder_transaction_received: transaction=1571778
101476<...>-581 ( 571) [002] d..2 82316.987227: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101477          <idle>-0     (-----) [002] d..1 82316.987241: cpu_idle: state=0 cpu_id=2
101478    RenderThread-9436  ( 9105) [000] d..2 82316.987253: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101479          <idle>-0     (-----) [000] d..1 82316.987269: cpu_idle: state=0 cpu_id=0
101480           <...>-27805 (-----) [005] ...1 82316.987500: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
101481           <...>-27805 (-----) [005] ...1 82316.987510: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
101482           <...>-27805 (-----) [005] ...1 82316.987514: tracing_mark_write: E|27550
101483           <...>-27805 (-----) [005] .... 82316.987579: binder_transaction: transaction=1571779 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
101484           <...>-27805 (-----) [005] .... 82316.987581: binder_transaction_alloc_buf: transaction=1571779 data_size=556 offsets_size=104
101485           <...>-27805 (-----) [005] ...2 82316.987596: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
101486           <...>-27805 (-----) [005] d..4 82316.987598: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101487           <...>-27805 (-----) [005] dn.5 82316.987609: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101488           <...>-27805 (-----) [005] d..2 82316.987617: sched_switch: prev_comm=id.nn.benchmark prev_pid=27805 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101489<...>-5340 ( 788) [005] .... 82316.987626: binder_transaction_received: transaction=1571779
101490<...>-5340 ( 788) [005] ...1 82316.987675: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
101491<...>-5340 ( 788) [005] d..2 82316.987725: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101492<...>-5340 ( 788) [005] d..2 82316.987750: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27805 next_prio=110
101493          <idle>-0     (-----) [000] dnh2 82316.987756: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101494          <idle>-0     (-----) [000] .n.1 82316.987763: cpu_idle: state=4294967295 cpu_id=0
101495           <...>-27805 (-----) [005] d..2 82316.987772: sched_switch: prev_comm=id.nn.benchmark prev_pid=27805 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
101496          <idle>-0     (-----) [000] d..2 82316.987775: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
101497          <idle>-0     (-----) [005] d..1 82316.987789: cpu_idle: state=0 cpu_id=5
101498<...>-87 ( 87) [000] d..2 82316.987821: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101499          <idle>-0     (-----) [000] d..1 82316.987832: cpu_idle: state=0 cpu_id=0
101500          <idle>-0     (-----) [002] d.h4 82316.987835: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
101501          <idle>-0     (-----) [002] dnh5 82316.987854: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
101502          <idle>-0     (-----) [002] .n.1 82316.987866: cpu_idle: state=4294967295 cpu_id=2
101503          <idle>-0     (-----) [002] d..2 82316.987878: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
101504<...>-86 ( 86) [002] d.h4 82316.987913: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101505          <idle>-0     (-----) [005] dnh2 82316.987935: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101506          <idle>-0     (-----) [005] .n.1 82316.987940: cpu_idle: state=4294967295 cpu_id=5
101507          <idle>-0     (-----) [005] d..2 82316.987948: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101508<...>-86 ( 86) [002] d..2 82316.987974: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101509          <idle>-0     (-----) [002] d..1 82316.987988: cpu_idle: state=0 cpu_id=2
101510<...>-5340 ( 788) [005] d..1 82316.988002: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101511          <idle>-0     (-----) [000] dnh2 82316.988027: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101512          <idle>-0     (-----) [000] .n.1 82316.988034: cpu_idle: state=4294967295 cpu_id=0
101513          <idle>-0     (-----) [000] d..2 82316.988044: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
101514          <idle>-0     (-----) [001] d.h2 82316.988049: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
101515          <idle>-0     (-----) [001] dnh3 82316.988063: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
101516          <idle>-0     (-----) [001] .n.1 82316.988071: cpu_idle: state=4294967295 cpu_id=1
101517          <idle>-0     (-----) [001] d..2 82316.988081: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
101518 neuralnetworks@-13088 (  788) [000] d..2 82316.988097: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101519        DispSync-8879  ( 8858) [001] d..1 82316.988100: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
101520          <idle>-0     (-----) [000] d..1 82316.988109: cpu_idle: state=0 cpu_id=0
101521        DispSync-8879  ( 8858) [001] d..2 82316.988115: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
101522          <idle>-0     (-----) [002] .n.1 82316.988122: cpu_idle: state=4294967295 cpu_id=2
101523          <idle>-0     (-----) [002] d..2 82316.988133: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
101524        DispSync-8879  ( 8858) [001] d..2 82316.988146: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101525<...>-5340 ( 788) [005] d..2 82316.988148: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101526          <idle>-0     (-----) [001] d..1 82316.988161: cpu_idle: state=0 cpu_id=1
101527          <idle>-0     (-----) [000] dnh2 82316.988170: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101528<...>-5340 ( 788) [005] d..2 82316.988173: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
101529          <idle>-0     (-----) [000] .n.1 82316.988176: cpu_idle: state=4294967295 cpu_id=0
101530   sfEventThread-8882  ( 8858) [002] d..3 82316.988179: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
101531          <idle>-0     (-----) [005] d..1 82316.988188: cpu_idle: state=0 cpu_id=5
101532          <idle>-0     (-----) [000] d..2 82316.988190: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
101533   sfEventThread-8882  ( 8858) [002] d..4 82316.988209: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
101534          <idle>-0     (-----) [003] .n.1 82316.988214: cpu_idle: state=4294967295 cpu_id=3
101535          <idle>-0     (-----) [003] d..2 82316.988225: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
101536   sfEventThread-8882  ( 8858) [002] d.h4 82316.988230: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
101537<...>-87 ( 87) [000] d..2 82316.988230: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101538          <idle>-0     (-----) [000] d..1 82316.988241: cpu_idle: state=0 cpu_id=0
101539   sfEventThread-8882  ( 8858) [002] d.h5 82316.988257: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
101540          <idle>-0     (-----) [000] .n.1 82316.988263: cpu_idle: state=4294967295 cpu_id=0
101541          <idle>-0     (-----) [000] d..2 82316.988274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
101542   sfEventThread-8882  ( 8858) [002] d..2 82316.988298: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101543<...>-86 ( 86) [000] d..2 82316.988310: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101544          <idle>-0     (-----) [002] d..1 82316.988314: cpu_idle: state=0 cpu_id=2
101545          <idle>-0     (-----) [000] d..1 82316.988320: cpu_idle: state=0 cpu_id=0
101546  surfaceflinger-8858  ( 8858) [003] d.s2 82316.988486: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
101547  surfaceflinger-8858  ( 8858) [003] d.s3 82316.988505: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
101548          <idle>-0     (-----) [005] ...1 82316.988507: cpu_idle: state=4294967295 cpu_id=5
101549          <idle>-0     (-----) [005] d..1 82316.988511: cpu_idle: state=0 cpu_id=5
101550          <idle>-0     (-----) [001] .n.1 82316.988512: cpu_idle: state=4294967295 cpu_id=1
101551          <idle>-0     (-----) [001] d..2 82316.988525: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
101552  surfaceflinger-8858  ( 8858) [003] d..2 82316.988677: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
101553  kworker/u16:15-1311  ( 1311) [001] d..2 82316.988700: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101554  surfaceflinger-8858  ( 8858) [003] d..3 82316.988713: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
101555          <idle>-0     (-----) [001] d..2 82316.988722: 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
101556  surfaceflinger-8858  ( 8858) [003] d..1 82316.988749: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
101557         rcuop/2-29    (   29) [001] d..2 82316.988750: 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
101558          <idle>-0     (-----) [001] d..1 82316.988761: cpu_idle: state=0 cpu_id=1
101559  surfaceflinger-8858  ( 8858) [003] d..2 82316.988766: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
101560          <idle>-0     (-----) [002] .n.1 82316.988772: cpu_idle: state=4294967295 cpu_id=2
101561          <idle>-0     (-----) [002] d..2 82316.988783: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
101562   sfEventThread-8882  ( 8858) [002] d..2 82316.988824: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101563          <idle>-0     (-----) [002] d..1 82316.988837: cpu_idle: state=0 cpu_id=2
101564  surfaceflinger-8858  ( 8858) [003] ...1 82316.988966: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
101565  surfaceflinger-8858  ( 8858) [003] ...1 82316.988973: tracing_mark_write: E|8858
101566  surfaceflinger-8858  ( 8858) [003] .... 82316.989027: binder_transaction: transaction=1571782 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
101567  surfaceflinger-8858  ( 8858) [003] .... 82316.989033: binder_transaction_alloc_buf: transaction=1571782 data_size=540 offsets_size=96
101568  surfaceflinger-8858  ( 8858) [003] ...2 82316.989058: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
101569  surfaceflinger-8858  ( 8858) [003] d..4 82316.989065: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
101570  surfaceflinger-8858  ( 8858) [003] d..5 82316.989085: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
101571          <idle>-0     (-----) [002] .n.1 82316.989091: cpu_idle: state=4294967295 cpu_id=2
101572          <idle>-0     (-----) [002] d..2 82316.989101: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
101573 [email protected]   (  619) [002] .... 82316.989113: binder_transaction_received: transaction=1571782
101574  surfaceflinger-8858  ( 8858) [003] d..2 82316.989119: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101575          <idle>-0     (-----) [003] d..1 82316.989138: cpu_idle: state=0 cpu_id=3
101576 [email protected]   (  619) [002] ...1 82316.989159: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
101577 [email protected]   (  619) [002] ...1 82316.989280: tracing_mark_write: B|619|HWCSession::PresentDisplay::
101578 [email protected]   (  619) [002] ...1 82316.989467: tracing_mark_write: B|619|HWDeviceDRM::Commit::
101579 [email protected]   (  619) [002] ...1 82316.989481: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
101580 [email protected]   (  619) [002] d.h3 82316.989883: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101581          <idle>-0     (-----) [005] dnh2 82316.989907: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101582          <idle>-0     (-----) [005] .n.1 82316.989911: cpu_idle: state=4294967295 cpu_id=5
101583          <idle>-0     (-----) [005] d..2 82316.989920: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101584<...>-5340 ( 788) [005] d..1 82316.989973: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101585          <idle>-0     (-----) [000] dnh2 82316.989994: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101586          <idle>-0     (-----) [000] .n.1 82316.990004: cpu_idle: state=4294967295 cpu_id=0
101587          <idle>-0     (-----) [000] d..2 82316.990015: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
101588<...>-5340 ( 788) [005] ...1 82316.990066: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
101589<...>-5340 ( 788) [005] ...1 82316.990070: tracing_mark_write: E|788
101590 neuralnetworks@-13088 (  788) [000] d..2 82316.990081: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101591<...>-5340 ( 788) [005] .... 82316.990085: binder_transaction: transaction=1571783 dest_node=1571780 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
101592<...>-5340 ( 788) [005] .... 82316.990088: binder_transaction_alloc_buf: transaction=1571783 data_size=60 offsets_size=0
101593          <idle>-0     (-----) [000] d..1 82316.990090: cpu_idle: state=0 cpu_id=0
101594<...>-5340 ( 788) [005] d..4 82316.990092: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
101595<...>-5340 ( 788) [005] d..5 82316.990105: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
101596          <idle>-0     (-----) [004] .n.1 82316.990111: cpu_idle: state=4294967295 cpu_id=4
101597          <idle>-0     (-----) [004] d..2 82316.990120: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
101598           <...>-27571 (-----) [004] .... 82316.990124: binder_transaction_received: transaction=1571783
101599<...>-5340 ( 788) [005] ...1 82316.990127: tracing_mark_write: E|788
101600<...>-5340 ( 788) [005] .... 82316.990134: binder_transaction: transaction=1571784 dest_node=0 dest_proc=27550 dest_thread=27805 reply=1 flags=0x0 code=0x0
101601<...>-5340 ( 788) [005] .... 82316.990136: binder_transaction_alloc_buf: transaction=1571784 data_size=8 offsets_size=0
101602<...>-5340 ( 788) [005] d..2 82316.990137: sched_waking: comm=id.nn.benchmark pid=27805 prio=110 target_cpu=005
101603           <...>-27571 (-----) [004] ...1 82316.990144: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
101604<...>-5340 ( 788) [005] d..3 82316.990145: sched_wakeup: comm=id.nn.benchmark pid=27805 prio=110 target_cpu=005
101605<...>-5340 ( 788) [005] .... 82316.990147: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
101606           <...>-27571 (-----) [004] ...1 82316.990153: tracing_mark_write: E|27550
101607           <...>-27571 (-----) [004] d..2 82316.990187: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101608<...>-5340 ( 788) [005] d..2 82316.990189: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27805 next_prio=110
101609          <idle>-0     (-----) [004] d..1 82316.990197: cpu_idle: state=0 cpu_id=4
101610           <...>-27805 (-----) [005] .... 82316.990199: binder_transaction_received: transaction=1571784
101611 [email protected]   (  619) [002] d..2 82316.990210: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
101612 [email protected]   (  619) [002] d..3 82316.990234: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
101613           <...>-27805 (-----) [005] ...1 82316.990236: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
101614          <idle>-0     (-----) [001] .n.1 82316.990239: cpu_idle: state=4294967295 cpu_id=1
101615           <...>-27805 (-----) [005] ...1 82316.990242: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
101616          <idle>-0     (-----) [001] d..2 82316.990249: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
101617           <...>-27805 (-----) [005] ...1 82316.990268: tracing_mark_write: E|27550
101618           <...>-27805 (-----) [005] ...1 82316.990272: tracing_mark_write: E|27550
101619           <...>-27805 (-----) [005] ...1 82316.990276: tracing_mark_write: E|27550
101620 [email protected]   (  619) [002] ...1 82316.990339: tracing_mark_write: E|619
101621 [email protected]   (  619) [002] ...1 82316.990346: tracing_mark_write: E|619
101622 [email protected]   (  619) [002] ...1 82316.990439: tracing_mark_write: E|619
101623           <...>-27805 (-----) [005] ...1 82316.990462: tracing_mark_write: E|27550
101624           <...>-27805 (-----) [005] d..1 82316.990475: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101625 [email protected]   (  619) [002] ...1 82316.990485: tracing_mark_write: E|619
101626           <...>-27805 (-----) [005] d..2 82316.990490: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101627          <idle>-0     (-----) [004] .n.1 82316.990496: cpu_idle: state=4294967295 cpu_id=4
101628 [email protected]   (  619) [002] .... 82316.990500: binder_transaction: transaction=1571785 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
101629          <idle>-0     (-----) [004] d..2 82316.990504: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
101630 [email protected]   (  619) [002] .... 82316.990505: binder_transaction_alloc_buf: transaction=1571785 data_size=576 offsets_size=112
101631           <...>-27550 (-----) [004] d..2 82316.990520: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101632          <idle>-0     (-----) [004] d..1 82316.990525: cpu_idle: state=0 cpu_id=4
101633 [email protected]   (  619) [002] d..2 82316.990526: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
101634 [email protected]   (  619) [002] d..3 82316.990544: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
101635 [email protected]   (  619) [002] .... 82316.990549: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
101636          <idle>-0     (-----) [003] .n.1 82316.990550: cpu_idle: state=4294967295 cpu_id=3
101637          <idle>-0     (-----) [003] d..2 82316.990561: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
101638  surfaceflinger-8858  ( 8858) [003] .... 82316.990570: binder_transaction_received: transaction=1571785
101639           <...>-27805 (-----) [005] d..1 82316.990579: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101640           <...>-27805 (-----) [005] d..2 82316.990588: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101641          <idle>-0     (-----) [004] .n.1 82316.990593: cpu_idle: state=4294967295 cpu_id=4
101642          <idle>-0     (-----) [004] d..2 82316.990599: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
101643           <...>-27805 (-----) [005] d..2 82316.990628: sched_switch: prev_comm=id.nn.benchmark prev_pid=27805 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
101644 [email protected]   (  619) [002] d..2 82316.990638: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101645           <...>-27550 (-----) [004] ...1 82316.990644: tracing_mark_write: E|27550
101646           <...>-27550 (-----) [004] ...1 82316.990649: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
101647          <idle>-0     (-----) [005] d..1 82316.990652: cpu_idle: state=0 cpu_id=5
101648           <...>-27550 (-----) [004] ...1 82316.990655: tracing_mark_write: E|27550
101649          <idle>-0     (-----) [002] d..1 82316.990658: cpu_idle: state=0 cpu_id=2
101650           <...>-27550 (-----) [004] ...1 82316.990658: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
101651           <...>-27550 (-----) [004] ...1 82316.990663: tracing_mark_write: E|27550
101652           <...>-27550 (-----) [004] ...1 82316.990667: tracing_mark_write: E|27550
101653           <...>-27550 (-----) [004] ...1 82316.990780: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
101654           <...>-27550 (-----) [004] ...1 82316.990837: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
101655           <...>-27550 (-----) [004] ...1 82316.990842: tracing_mark_write: E|27550
101656           <...>-27550 (-----) [004] ...1 82316.990846: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
101657           <...>-27550 (-----) [004] ...1 82316.990851: tracing_mark_write: E|27550
101658           <...>-27550 (-----) [004] ...1 82316.990855: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
101659           <...>-27550 (-----) [004] ...1 82316.990859: tracing_mark_write: E|27550
101660           <...>-27550 (-----) [004] ...1 82316.990862: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
101661          <idle>-0     (-----) [005] .n.1 82316.990950: cpu_idle: state=4294967295 cpu_id=5
101662           <...>-27550 (-----) [004] ...1 82316.990951: tracing_mark_write: E|27550
101663           <...>-27550 (-----) [004] ...1 82316.990956: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
101664          <idle>-0     (-----) [005] d..2 82316.990959: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27806 next_prio=110
101665           <...>-27550 (-----) [004] d..2 82316.990973: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101666 crtc_commit:111-321   (  321) [001] d..2 82316.990986: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
101667          <idle>-0     (-----) [004] d..1 82316.990987: cpu_idle: state=0 cpu_id=4
101668  surfaceflinger-8858  ( 8858) [003] d..2 82316.990996: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101669          <idle>-0     (-----) [001] d..1 82316.991002: cpu_idle: state=0 cpu_id=1
101670          <idle>-0     (-----) [003] d..1 82316.991015: cpu_idle: state=0 cpu_id=3
101671           <...>-27806 (-----) [005] ...1 82316.991021: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
101672           <...>-27806 (-----) [005] ...1 82316.991035: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
101673           <...>-27806 (-----) [005] ...1 82316.991039: tracing_mark_write: E|27550
101674           <...>-27806 (-----) [005] .... 82316.991061: binder_transaction: transaction=1571786 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
101675           <...>-27806 (-----) [005] .... 82316.991065: binder_transaction_alloc_buf: transaction=1571786 data_size=48 offsets_size=0
101676           <...>-27806 (-----) [005] ...2 82316.991068: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
101677           <...>-27806 (-----) [005] d..4 82316.991071: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
101678           <...>-27806 (-----) [005] dn.5 82316.991081: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
101679           <...>-27806 (-----) [005] d..2 82316.991088: sched_switch: prev_comm=id.nn.benchmark prev_pid=27806 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
101680<...>-770 ( 770) [005] .... 82316.991099: binder_transaction_received: transaction=1571786
101681<...>-770 ( 770) [005] ...1 82316.991122: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
101682          <idle>-0     (-----) [000] d.h2 82316.991125: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
101683          <idle>-0     (-----) [000] dnh3 82316.991143: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
101684          <idle>-0     (-----) [000] .n.1 82316.991153: cpu_idle: state=4294967295 cpu_id=0
101685          <idle>-0     (-----) [000] d..2 82316.991161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
101686<...>-770 ( 770) [005] d..2 82316.991201: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
101687 s.nexuslauncher-10023 (10023) [000] d.h1 82316.991245: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
101688<...>-770 ( 770) [005] ...1 82316.991257: tracing_mark_write: E|770
101689<...>-770 ( 770) [005] .... 82316.991265: binder_transaction: transaction=1571787 dest_node=0 dest_proc=27550 dest_thread=27806 reply=1 flags=0x0 code=0x0
101690<...>-770 ( 770) [005] .... 82316.991267: binder_transaction_alloc_buf: transaction=1571787 data_size=168 offsets_size=32
101691<...>-770 ( 770) [005] .... 82316.991274: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
101692<...>-770 ( 770) [005] d..2 82316.991312: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27806 next_prio=110
101693           <...>-27806 (-----) [005] .... 82316.991323: binder_transaction_received: transaction=1571787
101694 s.nexuslauncher-10023 (10023) [000] .... 82316.991329: binder_transaction: transaction=1571788 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
101695 s.nexuslauncher-10023 (10023) [000] .... 82316.991334: binder_transaction_alloc_buf: transaction=1571788 data_size=80 offsets_size=0
101696 s.nexuslauncher-10023 (10023) [000] d..4 82316.991341: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
101697 s.nexuslauncher-10023 (10023) [000] d..5 82316.991369: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
101698          <idle>-0     (-----) [001] .n.1 82316.991375: cpu_idle: state=4294967295 cpu_id=1
101699          <idle>-0     (-----) [001] d..2 82316.991388: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
101700           <...>-27806 (-----) [005] ...1 82316.991395: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
101701<...>-13083 ( 8858) [001] .... 82316.991396: binder_transaction_received: transaction=1571788
101702           <...>-27806 (-----) [005] ...1 82316.991400: tracing_mark_write: E|27550
101703           <...>-27806 (-----) [005] .... 82316.991415: binder_transaction: transaction=1571789 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
101704           <...>-27806 (-----) [005] .... 82316.991418: binder_transaction_alloc_buf: transaction=1571789 data_size=48 offsets_size=0
101705           <...>-27806 (-----) [005] ...2 82316.991421: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
101706           <...>-27806 (-----) [005] d..4 82316.991423: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
101707<...>-13083 ( 8858) [001] d..1 82316.991428: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
101708           <...>-27806 (-----) [005] dn.5 82316.991433: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
101709           <...>-27806 (-----) [005] d..2 82316.991439: sched_switch: prev_comm=id.nn.benchmark prev_pid=27806 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
101710<...>-13083 ( 8858) [001] d..2 82316.991446: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
101711<...>-770 ( 770) [005] .... 82316.991447: binder_transaction_received: transaction=1571789
101712 s.nexuslauncher-10023 (10023) [000] d..2 82316.991448: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
101713          <idle>-0     (-----) [003] .n.1 82316.991452: cpu_idle: state=4294967295 cpu_id=3
101714          <idle>-0     (-----) [003] d..2 82316.991464: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
101715<...>-770 ( 770) [005] ...1 82316.991464: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
101716<...>-13083 ( 8858) [001] d..2 82316.991489: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
101717          <idle>-0     (-----) [001] d..1 82316.991503: cpu_idle: state=0 cpu_id=1
101718  appEventThread-8881  ( 8858) [003] d..2 82316.991524: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101719<...>-770 ( 770) [005] d..2 82316.991525: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
101720          <idle>-0     (-----) [003] d..1 82316.991538: cpu_idle: state=0 cpu_id=3
101721<...>-581 ( 571) [000] d..2 82316.991543: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101722          <idle>-0     (-----) [000] d..1 82316.991556: cpu_idle: state=0 cpu_id=0
101723          <idle>-0     (-----) [000] dnh2 82316.991573: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
101724<...>-770 ( 770) [005] ...1 82316.991577: tracing_mark_write: E|770
101725          <idle>-0     (-----) [000] .n.1 82316.991580: cpu_idle: state=4294967295 cpu_id=0
101726<...>-770 ( 770) [005] .... 82316.991585: binder_transaction: transaction=1571790 dest_node=0 dest_proc=27550 dest_thread=27806 reply=1 flags=0x0 code=0x0
101727<...>-770 ( 770) [005] .... 82316.991588: binder_transaction_alloc_buf: transaction=1571790 data_size=168 offsets_size=32
101728          <idle>-0     (-----) [000] d..2 82316.991589: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
101729<...>-770 ( 770) [005] .... 82316.991594: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
101730<...>-770 ( 770) [005] d..2 82316.991629: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27806 next_prio=110
101731           <...>-27806 (-----) [005] .... 82316.991639: binder_transaction_received: transaction=1571790
101732<...>-581 ( 571) [000] d..2 82316.991649: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101733          <idle>-0     (-----) [000] d..1 82316.991659: cpu_idle: state=0 cpu_id=0
101734           <...>-27806 (-----) [005] d.s3 82316.991808: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
101735          <idle>-0     (-----) [000] d.H3 82316.991888: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
101736          <idle>-0     (-----) [000] d.H4 82316.991908: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
101737          <idle>-0     (-----) [001] .n.1 82316.991916: cpu_idle: state=4294967295 cpu_id=1
101738          <idle>-0     (-----) [000] dnH2 82316.991925: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
101739          <idle>-0     (-----) [001] d..2 82316.991928: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
101740          <idle>-0     (-----) [000] dns2 82316.991932: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
101741         sugov:0-576   (  576) [001] .... 82316.991967: clk_set_rate: pwrcl_clk 902400000
101742          <idle>-0     (-----) [000] dns3 82316.991971: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
101743          <idle>-0     (-----) [000] dns2 82316.991975: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
101744          <idle>-0     (-----) [002] ...1 82316.991979: cpu_idle: state=4294967295 cpu_id=2
101745          <idle>-0     (-----) [002] d..1 82316.991984: cpu_idle: state=0 cpu_id=2
101746         sugov:0-576   (  576) [001] .... 82316.991989: clk_set_rate: cpu3_pwrcl_clk 825600000
101747         sugov:0-576   (  576) [001] .... 82316.991999: clk_set_rate: cpu2_pwrcl_clk 825600000
101748          <idle>-0     (-----) [000] dns3 82316.992007: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
101749         sugov:0-576   (  576) [001] .... 82316.992007: clk_set_rate: cpu1_pwrcl_clk 825600000
101750          <idle>-0     (-----) [002] .n.1 82316.992012: cpu_idle: state=4294967295 cpu_id=2
101751         sugov:0-576   (  576) [001] .... 82316.992015: clk_set_rate: cpu0_pwrcl_clk 902400000
101752          <idle>-0     (-----) [000] .n.1 82316.992019: cpu_idle: state=4294967295 cpu_id=0
101753         sugov:0-576   (  576) [001] .... 82316.992023: cpu_frequency: state=902400 cpu_id=0
101754          <idle>-0     (-----) [002] d..2 82316.992027: 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
101755          <idle>-0     (-----) [000] d..2 82316.992030: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
101756           <...>-27806 (-----) [005] ...1 82316.992042: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
101757         sugov:0-576   (  576) [001] .... 82316.992048: cpu_frequency: state=902400 cpu_id=1
101758           <...>-27806 (-----) [005] ...1 82316.992051: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
101759         sugov:0-576   (  576) [001] .... 82316.992053: cpu_frequency: state=902400 cpu_id=2
101760           <...>-27806 (-----) [005] ...1 82316.992055: tracing_mark_write: E|27550
101761         sugov:0-576   (  576) [001] .... 82316.992057: cpu_frequency: state=902400 cpu_id=3
101762     rcu_preempt-7     (    7) [002] d..2 82316.992066: 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
101763         sugov:0-576   (  576) [001] d..2 82316.992076: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
101764          <idle>-0     (-----) [002] d..1 82316.992076: cpu_idle: state=0 cpu_id=2
101765<...>-8 ( 8) [001] d..2 82316.992108: 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
101766           <...>-27806 (-----) [005] .... 82316.992119: binder_transaction: transaction=1571791 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
101767          <idle>-0     (-----) [001] d..1 82316.992120: cpu_idle: state=0 cpu_id=1
101768           <...>-27806 (-----) [005] .... 82316.992122: binder_transaction_alloc_buf: transaction=1571791 data_size=556 offsets_size=104
101769           <...>-27806 (-----) [005] ...2 82316.992136: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
101770           <...>-27806 (-----) [005] d..4 82316.992139: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101771           <...>-27806 (-----) [005] dn.5 82316.992150: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101772           <...>-27806 (-----) [005] d..2 82316.992157: sched_switch: prev_comm=id.nn.benchmark prev_pid=27806 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101773<...>-5340 ( 788) [005] .... 82316.992167: binder_transaction_received: transaction=1571791
101774<...>-5340 ( 788) [005] ...1 82316.992213: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
101775  kworker/u16:15-1311  ( 1311) [000] d..2 82316.992232: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
101776          <idle>-0     (-----) [000] d..1 82316.992250: cpu_idle: state=0 cpu_id=0
101777          <idle>-0     (-----) [001] d.s3 82316.992258: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
101778<...>-5340 ( 788) [005] d..2 82316.992259: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101779          <idle>-0     (-----) [001] d.s4 82316.992272: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
101780          <idle>-0     (-----) [001] d.s4 82316.992280: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
101781          <idle>-0     (-----) [001] ...1 82316.992290: cpu_idle: state=4294967295 cpu_id=1
101782          <idle>-0     (-----) [000] dnh2 82316.992291: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101783<...>-5340 ( 788) [005] d..2 82316.992292: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27806 next_prio=110
101784          <idle>-0     (-----) [001] d..1 82316.992296: cpu_idle: state=0 cpu_id=1
101785          <idle>-0     (-----) [000] .n.1 82316.992300: cpu_idle: state=4294967295 cpu_id=0
101786          <idle>-0     (-----) [000] d..2 82316.992311: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
101787           <...>-27806 (-----) [005] d..2 82316.992314: sched_switch: prev_comm=id.nn.benchmark prev_pid=27806 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
101788          <idle>-0     (-----) [005] d..1 82316.992332: cpu_idle: state=0 cpu_id=5
101789<...>-87 ( 87) [000] d..2 82316.992342: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
101790          <idle>-0     (-----) [002] d.h4 82316.992363: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
101791  kworker/u16:15-1311  ( 1311) [000] d..2 82316.992374: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101792          <idle>-0     (-----) [002] d.h5 82316.992386: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
101793          <idle>-0     (-----) [002] ...1 82316.992398: cpu_idle: state=4294967295 cpu_id=2
101794          <idle>-0     (-----) [000] d..2 82316.992399: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
101795          <idle>-0     (-----) [002] d..1 82316.992404: cpu_idle: state=0 cpu_id=2
101796<...>-86 ( 86) [000] d..2 82316.992436: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101797          <idle>-0     (-----) [000] d..1 82316.992445: cpu_idle: state=0 cpu_id=0
101798          <idle>-0     (-----) [002] d.h4 82316.992448: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101799          <idle>-0     (-----) [005] dnh2 82316.992470: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101800          <idle>-0     (-----) [005] .n.1 82316.992474: cpu_idle: state=4294967295 cpu_id=5
101801          <idle>-0     (-----) [005] d..2 82316.992483: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101802          <idle>-0     (-----) [002] ...1 82316.992486: cpu_idle: state=4294967295 cpu_id=2
101803          <idle>-0     (-----) [002] d..1 82316.992491: cpu_idle: state=0 cpu_id=2
101804<...>-5340 ( 788) [005] d..1 82316.992540: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101805          <idle>-0     (-----) [000] dnh2 82316.992567: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101806          <idle>-0     (-----) [000] .n.1 82316.992574: cpu_idle: state=4294967295 cpu_id=0
101807          <idle>-0     (-----) [000] d..2 82316.992584: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
101808 neuralnetworks@-13088 (  788) [000] d..2 82316.992634: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101809          <idle>-0     (-----) [000] d..1 82316.992648: cpu_idle: state=0 cpu_id=0
101810<...>-5340 ( 788) [005] d..2 82316.992690: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101811          <idle>-0     (-----) [000] dnh2 82316.992712: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101812<...>-5340 ( 788) [005] d..2 82316.992715: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
101813          <idle>-0     (-----) [000] .n.1 82316.992718: cpu_idle: state=4294967295 cpu_id=0
101814          <idle>-0     (-----) [000] d..2 82316.992728: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
101815          <idle>-0     (-----) [005] d..1 82316.992730: cpu_idle: state=0 cpu_id=5
101816          <idle>-0     (-----) [002] d.h4 82316.992764: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
101817<...>-87 ( 87) [000] d..2 82316.992765: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101818          <idle>-0     (-----) [000] dn.1 82316.992776: cpu_idle: state=0 cpu_id=0
101819          <idle>-0     (-----) [002] d.h5 82316.992779: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=000
101820          <idle>-0     (-----) [000] .n.1 82316.992783: cpu_idle: state=4294967295 cpu_id=0
101821          <idle>-0     (-----) [002] ...1 82316.992788: cpu_idle: state=4294967295 cpu_id=2
101822          <idle>-0     (-----) [002] d..1 82316.992792: cpu_idle: state=0 cpu_id=2
101823          <idle>-0     (-----) [000] d..2 82316.992794: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
101824<...>-86 ( 86) [000] d..2 82316.992828: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101825          <idle>-0     (-----) [000] d..1 82316.992839: cpu_idle: state=0 cpu_id=0
101826          <idle>-0     (-----) [005] ...1 82316.993052: cpu_idle: state=4294967295 cpu_id=5
101827          <idle>-0     (-----) [005] d..1 82316.993056: cpu_idle: state=0 cpu_id=5
101828          <idle>-0     (-----) [003] ...1 82316.993484: cpu_idle: state=4294967295 cpu_id=3
101829          <idle>-0     (-----) [003] d..1 82316.993488: cpu_idle: state=0 cpu_id=3
101830          <idle>-0     (-----) [000] ...1 82316.993955: cpu_idle: state=4294967295 cpu_id=0
101831          <idle>-0     (-----) [000] d..1 82316.993960: cpu_idle: state=0 cpu_id=0
101832          <idle>-0     (-----) [002] d.h4 82316.994489: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101833          <idle>-0     (-----) [005] dnh2 82316.994508: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101834          <idle>-0     (-----) [005] .n.1 82316.994512: cpu_idle: state=4294967295 cpu_id=5
101835          <idle>-0     (-----) [005] d..2 82316.994520: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101836          <idle>-0     (-----) [002] ...1 82316.994522: cpu_idle: state=4294967295 cpu_id=2
101837          <idle>-0     (-----) [002] d..1 82316.994527: cpu_idle: state=0 cpu_id=2
101838<...>-5340 ( 788) [005] d..1 82316.994570: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101839          <idle>-0     (-----) [000] dnh2 82316.994591: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101840          <idle>-0     (-----) [000] .n.1 82316.994599: cpu_idle: state=4294967295 cpu_id=0
101841          <idle>-0     (-----) [000] d..2 82316.994609: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
101842<...>-5340 ( 788) [005] ...1 82316.994659: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
101843<...>-5340 ( 788) [005] ...1 82316.994663: tracing_mark_write: E|788
101844 neuralnetworks@-13088 (  788) [000] d..2 82316.994663: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101845          <idle>-0     (-----) [000] d..1 82316.994675: cpu_idle: state=0 cpu_id=0
101846<...>-5340 ( 788) [005] .... 82316.994678: binder_transaction: transaction=1571794 dest_node=1571792 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
101847<...>-5340 ( 788) [005] .... 82316.994681: binder_transaction_alloc_buf: transaction=1571794 data_size=60 offsets_size=0
101848<...>-5340 ( 788) [005] d..4 82316.994684: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
101849<...>-5340 ( 788) [005] d..5 82316.994697: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
101850          <idle>-0     (-----) [004] .n.1 82316.994704: cpu_idle: state=4294967295 cpu_id=4
101851          <idle>-0     (-----) [004] d..2 82316.994712: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
101852           <...>-27571 (-----) [004] .... 82316.994717: binder_transaction_received: transaction=1571794
101853<...>-5340 ( 788) [005] ...1 82316.994719: tracing_mark_write: E|788
101854<...>-5340 ( 788) [005] .... 82316.994725: binder_transaction: transaction=1571795 dest_node=0 dest_proc=27550 dest_thread=27806 reply=1 flags=0x0 code=0x0
101855<...>-5340 ( 788) [005] .... 82316.994727: binder_transaction_alloc_buf: transaction=1571795 data_size=8 offsets_size=0
101856<...>-5340 ( 788) [005] d..2 82316.994730: sched_waking: comm=id.nn.benchmark pid=27806 prio=110 target_cpu=005
101857<...>-5340 ( 788) [005] d..3 82316.994737: sched_wakeup: comm=id.nn.benchmark pid=27806 prio=110 target_cpu=005
101858           <...>-27571 (-----) [004] ...1 82316.994737: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
101859<...>-5340 ( 788) [005] .... 82316.994738: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
101860           <...>-27571 (-----) [004] ...1 82316.994745: tracing_mark_write: E|27550
101861           <...>-27571 (-----) [004] d..2 82316.994779: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101862<...>-5340 ( 788) [005] d..2 82316.994781: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27806 next_prio=110
101863          <idle>-0     (-----) [004] d..1 82316.994788: cpu_idle: state=0 cpu_id=4
101864           <...>-27806 (-----) [005] .... 82316.994790: binder_transaction_received: transaction=1571795
101865           <...>-27806 (-----) [005] ...1 82316.994826: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
101866           <...>-27806 (-----) [005] ...1 82316.994832: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
101867           <...>-27806 (-----) [005] ...1 82316.994858: tracing_mark_write: E|27550
101868           <...>-27806 (-----) [005] ...1 82316.994862: tracing_mark_write: E|27550
101869           <...>-27806 (-----) [005] ...1 82316.994865: tracing_mark_write: E|27550
101870           <...>-27806 (-----) [005] ...1 82316.995053: tracing_mark_write: E|27550
101871           <...>-27806 (-----) [005] d..1 82316.995065: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101872           <...>-27806 (-----) [005] d..2 82316.995082: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101873          <idle>-0     (-----) [004] .n.1 82316.995088: cpu_idle: state=4294967295 cpu_id=4
101874          <idle>-0     (-----) [004] d..2 82316.995096: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
101875           <...>-27550 (-----) [004] d..2 82316.995146: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101876          <idle>-0     (-----) [004] d..1 82316.995154: cpu_idle: state=0 cpu_id=4
101877           <...>-27806 (-----) [005] d..1 82316.995200: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101878           <...>-27806 (-----) [005] d..2 82316.995210: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
101879          <idle>-0     (-----) [004] .n.1 82316.995215: cpu_idle: state=4294967295 cpu_id=4
101880          <idle>-0     (-----) [004] d..2 82316.995221: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
101881           <...>-27806 (-----) [005] d..2 82316.995250: sched_switch: prev_comm=id.nn.benchmark prev_pid=27806 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
101882           <...>-27550 (-----) [004] ...1 82316.995254: tracing_mark_write: E|27550
101883           <...>-27550 (-----) [004] ...1 82316.995258: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
101884           <...>-27550 (-----) [004] ...1 82316.995264: tracing_mark_write: E|27550
101885           <...>-27550 (-----) [004] ...1 82316.995268: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
101886          <idle>-0     (-----) [005] d..1 82316.995271: cpu_idle: state=0 cpu_id=5
101887           <...>-27550 (-----) [004] ...1 82316.995271: tracing_mark_write: E|27550
101888           <...>-27550 (-----) [004] ...1 82316.995275: tracing_mark_write: E|27550
101889           <...>-27550 (-----) [004] ...1 82316.995388: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
101890           <...>-27550 (-----) [004] ...1 82316.995446: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
101891           <...>-27550 (-----) [004] ...1 82316.995451: tracing_mark_write: E|27550
101892           <...>-27550 (-----) [004] ...1 82316.995455: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
101893           <...>-27550 (-----) [004] ...1 82316.995460: tracing_mark_write: E|27550
101894           <...>-27550 (-----) [004] ...1 82316.995464: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
101895           <...>-27550 (-----) [004] ...1 82316.995467: tracing_mark_write: E|27550
101896           <...>-27550 (-----) [004] ...1 82316.995471: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
101897          <idle>-0     (-----) [005] .n.1 82316.995561: cpu_idle: state=4294967295 cpu_id=5
101898           <...>-27550 (-----) [004] ...1 82316.995564: tracing_mark_write: E|27550
101899           <...>-27550 (-----) [004] ...1 82316.995569: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
101900          <idle>-0     (-----) [005] d..2 82316.995570: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27807 next_prio=110
101901           <...>-27550 (-----) [004] d..2 82316.995589: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
101902          <idle>-0     (-----) [004] d..1 82316.995604: cpu_idle: state=0 cpu_id=4
101903           <...>-27807 (-----) [005] ...1 82316.995632: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
101904           <...>-27807 (-----) [005] ...1 82316.995646: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
101905           <...>-27807 (-----) [005] ...1 82316.995650: tracing_mark_write: E|27550
101906           <...>-27807 (-----) [005] .... 82316.995669: binder_transaction: transaction=1571796 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
101907           <...>-27807 (-----) [005] .... 82316.995673: binder_transaction_alloc_buf: transaction=1571796 data_size=48 offsets_size=0
101908           <...>-27807 (-----) [005] ...2 82316.995676: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
101909           <...>-27807 (-----) [005] d..4 82316.995678: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
101910           <...>-27807 (-----) [005] dn.5 82316.995689: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
101911           <...>-27807 (-----) [005] d..2 82316.995697: sched_switch: prev_comm=id.nn.benchmark prev_pid=27807 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
101912<...>-770 ( 770) [005] .... 82316.995707: binder_transaction_received: transaction=1571796
101913<...>-770 ( 770) [005] ...1 82316.995729: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
101914          <idle>-0     (-----) [000] ...1 82316.995791: cpu_idle: state=4294967295 cpu_id=0
101915          <idle>-0     (-----) [000] d..1 82316.995795: cpu_idle: state=0 cpu_id=0
101916<...>-770 ( 770) [005] d..2 82316.995805: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
101917          <idle>-0     (-----) [000] dnh2 82316.995832: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
101918          <idle>-0     (-----) [000] .n.1 82316.995837: cpu_idle: state=4294967295 cpu_id=0
101919<...>-770 ( 770) [005] ...1 82316.995846: tracing_mark_write: E|770
101920          <idle>-0     (-----) [000] d..2 82316.995849: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
101921<...>-770 ( 770) [005] .... 82316.995854: binder_transaction: transaction=1571797 dest_node=0 dest_proc=27550 dest_thread=27807 reply=1 flags=0x0 code=0x0
101922<...>-770 ( 770) [005] .... 82316.995857: binder_transaction_alloc_buf: transaction=1571797 data_size=168 offsets_size=32
101923<...>-770 ( 770) [005] .... 82316.995863: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
101924<...>-770 ( 770) [005] d..2 82316.995900: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27807 next_prio=110
101925           <...>-27807 (-----) [005] .... 82316.995912: binder_transaction_received: transaction=1571797
101926<...>-581 ( 571) [000] d..2 82316.995928: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101927          <idle>-0     (-----) [000] d..1 82316.995942: cpu_idle: state=0 cpu_id=0
101928           <...>-27807 (-----) [005] ...1 82316.995981: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
101929           <...>-27807 (-----) [005] ...1 82316.995986: tracing_mark_write: E|27550
101930           <...>-27807 (-----) [005] .... 82316.996001: binder_transaction: transaction=1571798 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
101931           <...>-27807 (-----) [005] .... 82316.996004: binder_transaction_alloc_buf: transaction=1571798 data_size=48 offsets_size=0
101932           <...>-27807 (-----) [005] ...2 82316.996006: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
101933           <...>-27807 (-----) [005] d..4 82316.996008: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
101934           <...>-27807 (-----) [005] dn.5 82316.996018: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
101935           <...>-27807 (-----) [005] d..2 82316.996025: sched_switch: prev_comm=id.nn.benchmark prev_pid=27807 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
101936<...>-770 ( 770) [005] .... 82316.996033: binder_transaction_received: transaction=1571798
101937<...>-770 ( 770) [005] ...1 82316.996049: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
101938          <idle>-0     (-----) [000] d.h5 82316.996106: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
101939<...>-770 ( 770) [005] d..2 82316.996106: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
101940          <idle>-0     (-----) [000] d.h6 82316.996129: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
101941          <idle>-0     (-----) [003] .n.1 82316.996134: cpu_idle: state=4294967295 cpu_id=3
101942          <idle>-0     (-----) [000] d.h5 82316.996134: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
101943<...>-770 ( 770) [005] ...1 82316.996139: tracing_mark_write: E|770
101944          <idle>-0     (-----) [003] d..2 82316.996145: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
101945<...>-770 ( 770) [005] .... 82316.996147: binder_transaction: transaction=1571799 dest_node=0 dest_proc=27550 dest_thread=27807 reply=1 flags=0x0 code=0x0
101946          <idle>-0     (-----) [000] d.h6 82316.996147: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
101947<...>-770 ( 770) [005] .... 82316.996150: binder_transaction_alloc_buf: transaction=1571799 data_size=168 offsets_size=32
101948          <idle>-0     (-----) [001] .n.1 82316.996153: cpu_idle: state=4294967295 cpu_id=1
101949<...>-770 ( 770) [005] .... 82316.996156: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
101950          <idle>-0     (-----) [001] d..2 82316.996164: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
101951          <idle>-0     (-----) [000] dnh2 82316.996170: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
101952          <idle>-0     (-----) [000] .n.1 82316.996177: cpu_idle: state=4294967295 cpu_id=0
101953  crtc_event:111-322   (  322) [003] d..2 82316.996178: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
101954          <idle>-0     (-----) [003] d..1 82316.996188: cpu_idle: state=0 cpu_id=3
101955          <idle>-0     (-----) [000] d..2 82316.996188: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
101956<...>-770 ( 770) [005] d..2 82316.996190: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27807 next_prio=110
101957           <...>-27807 (-----) [005] .... 82316.996200: binder_transaction_received: transaction=1571799
101958<...>-581 ( 571) [000] d..2 82316.996251: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101959          <idle>-0     (-----) [000] d..1 82316.996265: cpu_idle: state=0 cpu_id=0
101960 crtc_commit:111-321   (  321) [001] d..2 82316.996310: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
101961          <idle>-0     (-----) [001] d..1 82316.996318: cpu_idle: state=0 cpu_id=1
101962           <...>-27807 (-----) [005] ...1 82316.996473: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
101963           <...>-27807 (-----) [005] ...1 82316.996482: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
101964           <...>-27807 (-----) [005] ...1 82316.996487: tracing_mark_write: E|27550
101965           <...>-27807 (-----) [005] .... 82316.996547: binder_transaction: transaction=1571800 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
101966           <...>-27807 (-----) [005] .... 82316.996550: binder_transaction_alloc_buf: transaction=1571800 data_size=556 offsets_size=104
101967           <...>-27807 (-----) [005] ...2 82316.996565: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
101968           <...>-27807 (-----) [005] d..4 82316.996567: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101969           <...>-27807 (-----) [005] dn.5 82316.996579: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101970           <...>-27807 (-----) [005] d..2 82316.996586: sched_switch: prev_comm=id.nn.benchmark prev_pid=27807 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101971<...>-5340 ( 788) [005] .... 82316.996596: binder_transaction_received: transaction=1571800
101972<...>-5340 ( 788) [005] ...1 82316.996641: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
101973<...>-5340 ( 788) [005] d..2 82316.996688: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101974<...>-5340 ( 788) [005] d..2 82316.996713: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27807 next_prio=110
101975          <idle>-0     (-----) [000] dnh2 82316.996716: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101976          <idle>-0     (-----) [000] .n.1 82316.996723: cpu_idle: state=4294967295 cpu_id=0
101977          <idle>-0     (-----) [000] d..2 82316.996733: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
101978           <...>-27807 (-----) [005] d..2 82316.996735: sched_switch: prev_comm=id.nn.benchmark prev_pid=27807 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
101979          <idle>-0     (-----) [005] d..1 82316.996753: cpu_idle: state=0 cpu_id=5
101980<...>-87 ( 87) [000] d..2 82316.996772: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101981          <idle>-0     (-----) [002] d.h4 82316.996780: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=000
101982          <idle>-0     (-----) [000] d..1 82316.996784: cpu_idle: state=0 cpu_id=0
101983          <idle>-0     (-----) [002] dnh5 82316.996811: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
101984          <idle>-0     (-----) [002] .n.1 82316.996819: cpu_idle: state=4294967295 cpu_id=2
101985          <idle>-0     (-----) [002] d..2 82316.996832: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
101986<...>-86 ( 86) [002] d..2 82316.996865: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
101987          <idle>-0     (-----) [002] d.h5 82316.996885: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101988          <idle>-0     (-----) [005] dnh2 82316.996907: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
101989          <idle>-0     (-----) [005] .n.1 82316.996911: cpu_idle: state=4294967295 cpu_id=5
101990          <idle>-0     (-----) [005] d..2 82316.996919: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
101991          <idle>-0     (-----) [002] d..1 82316.996925: cpu_idle: state=0 cpu_id=2
101992<...>-5340 ( 788) [005] d..1 82316.996971: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101993          <idle>-0     (-----) [000] dnh2 82316.996998: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
101994          <idle>-0     (-----) [000] .n.1 82316.997004: cpu_idle: state=4294967295 cpu_id=0
101995          <idle>-0     (-----) [000] d..2 82316.997014: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
101996 neuralnetworks@-13088 (  788) [000] d..2 82316.997058: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
101997          <idle>-0     (-----) [000] d..1 82316.997071: cpu_idle: state=0 cpu_id=0
101998<...>-5340 ( 788) [005] d..2 82316.997120: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
101999          <idle>-0     (-----) [000] dnh2 82316.997141: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
102000<...>-5340 ( 788) [005] d..2 82316.997145: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
102001          <idle>-0     (-----) [000] .n.1 82316.997148: cpu_idle: state=4294967295 cpu_id=0
102002          <idle>-0     (-----) [000] d..2 82316.997158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
102003          <idle>-0     (-----) [005] d..1 82316.997160: cpu_idle: state=0 cpu_id=5
102004<...>-87 ( 87) [000] d..2 82316.997193: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102005          <idle>-0     (-----) [002] d.h4 82316.997195: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102006          <idle>-0     (-----) [000] d..1 82316.997205: cpu_idle: state=0 cpu_id=0
102007          <idle>-0     (-----) [002] dnh5 82316.997205: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102008          <idle>-0     (-----) [002] .n.1 82316.997212: cpu_idle: state=4294967295 cpu_id=2
102009          <idle>-0     (-----) [002] d..2 82316.997221: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
102010<...>-86 ( 86) [002] d..2 82316.997252: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102011          <idle>-0     (-----) [002] d..1 82316.997260: cpu_idle: state=0 cpu_id=2
102012          <idle>-0     (-----) [005] ...1 82316.997484: cpu_idle: state=4294967295 cpu_id=5
102013          <idle>-0     (-----) [005] d..1 82316.997487: cpu_idle: state=0 cpu_id=5
102014          <idle>-0     (-----) [000] d.h5 82316.998434: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
102015          <idle>-0     (-----) [000] d.h6 82316.998452: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
102016          <idle>-0     (-----) [002] d.s2 82316.998471: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
102017          <idle>-0     (-----) [000] ...1 82316.998472: cpu_idle: state=4294967295 cpu_id=0
102018          <idle>-0     (-----) [001] dns3 82316.998475: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
102019          <idle>-0     (-----) [000] d..1 82316.998476: cpu_idle: state=0 cpu_id=0
102020          <idle>-0     (-----) [002] dns3 82316.998486: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
102021          <idle>-0     (-----) [002] dns3 82316.998492: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
102022          <idle>-0     (-----) [001] dns4 82316.998493: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
102023          <idle>-0     (-----) [001] dns2 82316.998496: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
102024          <idle>-0     (-----) [003] .n.1 82316.998499: cpu_idle: state=4294967295 cpu_id=3
102025          <idle>-0     (-----) [003] d..2 82316.998509: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
102026          <idle>-0     (-----) [002] dns4 82316.998528: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
102027          <idle>-0     (-----) [001] dns3 82316.998543: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
102028  crtc_event:111-322   (  322) [003] d..2 82316.998552: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
102029          <idle>-0     (-----) [002] .n.1 82316.998557: cpu_idle: state=4294967295 cpu_id=2
102030          <idle>-0     (-----) [001] .n.1 82316.998567: cpu_idle: state=4294967295 cpu_id=1
102031          <idle>-0     (-----) [002] d..2 82316.998567: 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
102032          <idle>-0     (-----) [001] d..2 82316.998576: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
102033     rcu_preempt-7     (    7) [002] d..2 82316.998583: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
102034     rcu_preempt-7     (    7) [002] d..3 82316.998601: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
102035     rcu_preempt-7     (    7) [002] d..2 82316.998625: 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
102036  kworker/u16:15-1311  ( 1311) [003] .... 82316.998633: clk_set_rate: l3_cluster0_vote_clk 300000000
102037 crtc_commit:111-321   (  321) [001] d..2 82316.998660: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102038          <idle>-0     (-----) [001] d..1 82316.998671: cpu_idle: state=0 cpu_id=1
102039         rcuop/0-10    (   10) [002] d..2 82316.998672: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
102040<...>-8 ( 8) [002] d..2 82316.998678: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
102041          <idle>-0     (-----) [001] ...1 82316.998691: cpu_idle: state=4294967295 cpu_id=1
102042          <idle>-0     (-----) [001] d..1 82316.998696: cpu_idle: state=0 cpu_id=1
102043<...>-8 ( 8) [002] d..3 82316.998713: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=002
102044<...>-8 ( 8) [002] d..2 82316.998729: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
102045          <idle>-0     (-----) [000] d.h5 82316.998734: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
102046<...>-46 ( 46) [002] d..2 82316.998750: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
102047          <idle>-0     (-----) [000] dnh6 82316.998753: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
102048          <idle>-0     (-----) [000] .n.1 82316.998767: cpu_idle: state=4294967295 cpu_id=0
102049          <idle>-0     (-----) [000] d..2 82316.998780: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
102050<...>-46 ( 46) [002] d..3 82316.998787: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
102051  crtc_event:111-322   (  322) [000] d..2 82316.998798: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
102052<...>-46 ( 46) [002] d..2 82316.998820: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102053<...>-8 ( 8) [000] d..2 82316.998823: 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
102054          <idle>-0     (-----) [002] d..1 82316.998834: cpu_idle: state=0 cpu_id=2
102055          <idle>-0     (-----) [000] d..1 82316.998835: cpu_idle: state=0 cpu_id=0
102056          <idle>-0     (-----) [002] d.h4 82316.998902: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102057  kworker/u16:15-1311  ( 1311) [003] d..2 82316.998907: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
102058          <idle>-0     (-----) [003] d..1 82316.998922: cpu_idle: state=0 cpu_id=3
102059          <idle>-0     (-----) [005] dnh2 82316.998923: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102060          <idle>-0     (-----) [005] .n.1 82316.998927: cpu_idle: state=4294967295 cpu_id=5
102061          <idle>-0     (-----) [005] d..2 82316.998936: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
102062          <idle>-0     (-----) [001] d.s3 82316.998937: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
102063          <idle>-0     (-----) [002] ...1 82316.998940: cpu_idle: state=4294967295 cpu_id=2
102064          <idle>-0     (-----) [002] d..1 82316.998946: cpu_idle: state=0 cpu_id=2
102065          <idle>-0     (-----) [001] d.s4 82316.998949: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
102066          <idle>-0     (-----) [001] d.s4 82316.998957: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
102067          <idle>-0     (-----) [003] .n.1 82316.998963: cpu_idle: state=4294967295 cpu_id=3
102068          <idle>-0     (-----) [001] ...1 82316.998967: cpu_idle: state=4294967295 cpu_id=1
102069          <idle>-0     (-----) [001] d..1 82316.998971: cpu_idle: state=0 cpu_id=1
102070          <idle>-0     (-----) [003] d..2 82316.998975: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
102071<...>-5340 ( 788) [005] d..1 82316.998986: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
102072          <idle>-0     (-----) [000] dnh2 82316.999006: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
102073          <idle>-0     (-----) [000] .n.1 82316.999012: cpu_idle: state=4294967295 cpu_id=0
102074          <idle>-0     (-----) [000] d..2 82316.999025: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
102075  kworker/u16:15-1311  ( 1311) [003] d..2 82316.999076: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102076 neuralnetworks@-13088 (  788) [000] d..2 82316.999085: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102077          <idle>-0     (-----) [003] d..1 82316.999088: cpu_idle: state=0 cpu_id=3
102078<...>-5340 ( 788) [005] ...1 82316.999089: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
102079<...>-5340 ( 788) [005] ...1 82316.999093: tracing_mark_write: E|788
102080          <idle>-0     (-----) [000] d..1 82316.999096: cpu_idle: state=0 cpu_id=0
102081<...>-5340 ( 788) [005] .... 82316.999109: binder_transaction: transaction=1571803 dest_node=1571801 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
102082<...>-5340 ( 788) [005] .... 82316.999112: binder_transaction_alloc_buf: transaction=1571803 data_size=60 offsets_size=0
102083<...>-5340 ( 788) [005] d..4 82316.999115: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
102084<...>-5340 ( 788) [005] d..5 82316.999127: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
102085          <idle>-0     (-----) [004] .n.1 82316.999133: cpu_idle: state=4294967295 cpu_id=4
102086          <idle>-0     (-----) [004] d..2 82316.999142: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
102087           <...>-27571 (-----) [004] .... 82316.999147: binder_transaction_received: transaction=1571803
102088<...>-5340 ( 788) [005] ...1 82316.999150: tracing_mark_write: E|788
102089<...>-5340 ( 788) [005] .... 82316.999156: binder_transaction: transaction=1571804 dest_node=0 dest_proc=27550 dest_thread=27807 reply=1 flags=0x0 code=0x0
102090<...>-5340 ( 788) [005] .... 82316.999158: binder_transaction_alloc_buf: transaction=1571804 data_size=8 offsets_size=0
102091<...>-5340 ( 788) [005] d..2 82316.999160: sched_waking: comm=id.nn.benchmark pid=27807 prio=110 target_cpu=005
102092           <...>-27571 (-----) [004] ...1 82316.999167: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
102093<...>-5340 ( 788) [005] d..3 82316.999167: sched_wakeup: comm=id.nn.benchmark pid=27807 prio=110 target_cpu=005
102094<...>-5340 ( 788) [005] .... 82316.999168: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
102095           <...>-27571 (-----) [004] ...1 82316.999173: tracing_mark_write: E|27550
102096           <...>-27571 (-----) [004] d..2 82316.999202: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102097<...>-5340 ( 788) [005] d..2 82316.999210: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27807 next_prio=110
102098          <idle>-0     (-----) [004] d..1 82316.999211: cpu_idle: state=0 cpu_id=4
102099           <...>-27807 (-----) [005] .... 82316.999220: binder_transaction_received: transaction=1571804
102100           <...>-27807 (-----) [005] ...1 82316.999257: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
102101           <...>-27807 (-----) [005] ...1 82316.999263: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
102102           <...>-27807 (-----) [005] ...1 82316.999289: tracing_mark_write: E|27550
102103           <...>-27807 (-----) [005] ...1 82316.999293: tracing_mark_write: E|27550
102104           <...>-27807 (-----) [005] ...1 82316.999296: tracing_mark_write: E|27550
102105           <...>-27807 (-----) [005] ...1 82316.999480: tracing_mark_write: E|27550
102106           <...>-27807 (-----) [005] d..1 82316.999492: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102107           <...>-27807 (-----) [005] d..2 82316.999508: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102108          <idle>-0     (-----) [004] .n.1 82316.999514: cpu_idle: state=4294967295 cpu_id=4
102109          <idle>-0     (-----) [004] d..2 82316.999521: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
102110           <...>-27550 (-----) [004] d..2 82316.999535: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102111          <idle>-0     (-----) [004] d..1 82316.999541: cpu_idle: state=0 cpu_id=4
102112           <...>-27807 (-----) [005] d..1 82316.999595: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102113           <...>-27807 (-----) [005] d..2 82316.999604: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102114          <idle>-0     (-----) [004] .n.1 82316.999609: cpu_idle: state=4294967295 cpu_id=4
102115          <idle>-0     (-----) [004] d..2 82316.999615: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
102116           <...>-27807 (-----) [005] d..2 82316.999642: sched_switch: prev_comm=id.nn.benchmark prev_pid=27807 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
102117           <...>-27550 (-----) [004] ...1 82316.999646: tracing_mark_write: E|27550
102118           <...>-27550 (-----) [004] ...1 82316.999650: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
102119           <...>-27550 (-----) [004] ...1 82316.999656: tracing_mark_write: E|27550
102120           <...>-27550 (-----) [004] ...1 82316.999659: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
102121          <idle>-0     (-----) [005] d..1 82316.999662: cpu_idle: state=0 cpu_id=5
102122           <...>-27550 (-----) [004] ...1 82316.999664: tracing_mark_write: E|27550
102123           <...>-27550 (-----) [004] ...1 82316.999669: tracing_mark_write: E|27550
102124           <...>-27550 (-----) [004] ...1 82316.999784: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
102125           <...>-27550 (-----) [004] ...1 82316.999842: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
102126           <...>-27550 (-----) [004] ...1 82316.999847: tracing_mark_write: E|27550
102127           <...>-27550 (-----) [004] ...1 82316.999851: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
102128           <...>-27550 (-----) [004] ...1 82316.999857: tracing_mark_write: E|27550
102129           <...>-27550 (-----) [004] ...1 82316.999861: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
102130           <...>-27550 (-----) [004] ...1 82316.999865: tracing_mark_write: E|27550
102131           <...>-27550 (-----) [004] ...1 82316.999868: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
102132          <idle>-0     (-----) [005] .n.1 82316.999959: cpu_idle: state=4294967295 cpu_id=5
102133           <...>-27550 (-----) [004] ...1 82316.999960: tracing_mark_write: E|27550
102134           <...>-27550 (-----) [004] ...1 82316.999964: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
102135          <idle>-0     (-----) [005] d..2 82316.999967: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27808 next_prio=110
102136           <...>-27550 (-----) [004] d..2 82316.999982: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102137          <idle>-0     (-----) [004] d..1 82316.999998: cpu_idle: state=0 cpu_id=4
102138           <...>-27808 (-----) [005] ...1 82317.000028: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
102139           <...>-27808 (-----) [005] ...1 82317.000044: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
102140           <...>-27808 (-----) [005] ...1 82317.000048: tracing_mark_write: E|27550
102141           <...>-27808 (-----) [005] .... 82317.000069: binder_transaction: transaction=1571805 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
102142           <...>-27808 (-----) [005] .... 82317.000072: binder_transaction_alloc_buf: transaction=1571805 data_size=48 offsets_size=0
102143           <...>-27808 (-----) [005] ...2 82317.000075: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
102144           <...>-27808 (-----) [005] d..4 82317.000077: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
102145           <...>-27808 (-----) [005] dn.5 82317.000088: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
102146           <...>-27808 (-----) [005] d..2 82317.000094: sched_switch: prev_comm=id.nn.benchmark prev_pid=27808 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
102147<...>-770 ( 770) [005] .... 82317.000105: binder_transaction_received: transaction=1571805
102148<...>-770 ( 770) [005] ...1 82317.000126: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
102149<...>-770 ( 770) [005] d..2 82317.000200: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
102150          <idle>-0     (-----) [000] dnh2 82317.000227: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
102151          <idle>-0     (-----) [000] .n.1 82317.000233: cpu_idle: state=4294967295 cpu_id=0
102152<...>-770 ( 770) [005] ...1 82317.000241: tracing_mark_write: E|770
102153          <idle>-0     (-----) [000] d..2 82317.000243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
102154<...>-770 ( 770) [005] .... 82317.000248: binder_transaction: transaction=1571806 dest_node=0 dest_proc=27550 dest_thread=27808 reply=1 flags=0x0 code=0x0
102155<...>-770 ( 770) [005] .... 82317.000251: binder_transaction_alloc_buf: transaction=1571806 data_size=168 offsets_size=32
102156<...>-770 ( 770) [005] .... 82317.000258: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
102157<...>-770 ( 770) [005] d..2 82317.000293: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27808 next_prio=110
102158           <...>-27808 (-----) [005] .... 82317.000304: binder_transaction_received: transaction=1571806
102159<...>-581 ( 571) [000] d..2 82317.000314: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102160          <idle>-0     (-----) [000] d..1 82317.000327: cpu_idle: state=0 cpu_id=0
102161           <...>-27808 (-----) [005] ...1 82317.000372: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
102162           <...>-27808 (-----) [005] ...1 82317.000377: tracing_mark_write: E|27550
102163           <...>-27808 (-----) [005] .... 82317.000393: binder_transaction: transaction=1571807 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
102164           <...>-27808 (-----) [005] .... 82317.000395: binder_transaction_alloc_buf: transaction=1571807 data_size=48 offsets_size=0
102165           <...>-27808 (-----) [005] ...2 82317.000398: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
102166           <...>-27808 (-----) [005] d..4 82317.000400: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
102167           <...>-27808 (-----) [005] dn.5 82317.000410: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
102168           <...>-27808 (-----) [005] d..2 82317.000417: sched_switch: prev_comm=id.nn.benchmark prev_pid=27808 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
102169<...>-770 ( 770) [005] .... 82317.000425: binder_transaction_received: transaction=1571807
102170<...>-770 ( 770) [005] ...1 82317.000441: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
102171<...>-770 ( 770) [005] d..2 82317.000498: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
102172          <idle>-0     (-----) [001] d.h2 82317.000507: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
102173          <idle>-0     (-----) [001] dnh3 82317.000520: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
102174          <idle>-0     (-----) [000] dnh2 82317.000522: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
102175          <idle>-0     (-----) [000] .n.1 82317.000528: cpu_idle: state=4294967295 cpu_id=0
102176          <idle>-0     (-----) [001] .n.1 82317.000529: cpu_idle: state=4294967295 cpu_id=1
102177<...>-770 ( 770) [005] ...1 82317.000532: tracing_mark_write: E|770
102178          <idle>-0     (-----) [001] d..2 82317.000539: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
102179<...>-770 ( 770) [005] .... 82317.000539: binder_transaction: transaction=1571808 dest_node=0 dest_proc=27550 dest_thread=27808 reply=1 flags=0x0 code=0x0
102180          <idle>-0     (-----) [000] d..2 82317.000540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
102181<...>-770 ( 770) [005] .... 82317.000542: binder_transaction_alloc_buf: transaction=1571808 data_size=168 offsets_size=32
102182<...>-770 ( 770) [005] .... 82317.000548: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
102183        DispSync-8879  ( 8858) [001] d..1 82317.000559: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
102184        DispSync-8879  ( 8858) [001] d..2 82317.000573: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
102185          <idle>-0     (-----) [003] .n.1 82317.000579: cpu_idle: state=4294967295 cpu_id=3
102186<...>-770 ( 770) [005] d..2 82317.000582: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27808 next_prio=110
102187          <idle>-0     (-----) [003] d..2 82317.000590: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
102188           <...>-27808 (-----) [005] .... 82317.000593: binder_transaction_received: transaction=1571808
102189<...>-581 ( 571) [000] d..2 82317.000596: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102190        DispSync-8879  ( 8858) [001] d..2 82317.000606: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102191          <idle>-0     (-----) [000] d..1 82317.000608: cpu_idle: state=0 cpu_id=0
102192          <idle>-0     (-----) [001] d..1 82317.000616: cpu_idle: state=0 cpu_id=1
102193  appEventThread-8881  ( 8858) [003] d..3 82317.000638: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
102194  appEventThread-8881  ( 8858) [003] d..4 82317.000660: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
102195          <idle>-0     (-----) [000] .n.1 82317.000666: cpu_idle: state=4294967295 cpu_id=0
102196          <idle>-0     (-----) [000] d..2 82317.000678: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
102197  appEventThread-8881  ( 8858) [003] d..3 82317.000678: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
102198  appEventThread-8881  ( 8858) [003] d..4 82317.000706: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=001
102199          <idle>-0     (-----) [001] .n.1 82317.000711: cpu_idle: state=4294967295 cpu_id=1
102200          <idle>-0     (-----) [001] d..2 82317.000723: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
102201  appEventThread-8881  ( 8858) [003] d..2 82317.000744: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102202          <idle>-0     (-----) [003] d..1 82317.000758: cpu_idle: state=0 cpu_id=3
102203           <...>-27808 (-----) [005] ...1 82317.000863: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
102204           <...>-27808 (-----) [005] ...1 82317.000873: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
102205           <...>-27808 (-----) [005] ...1 82317.000877: tracing_mark_write: E|27550
102206           <...>-27808 (-----) [005] .... 82317.000937: binder_transaction: transaction=1571809 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
102207           <...>-27808 (-----) [005] .... 82317.000940: binder_transaction_alloc_buf: transaction=1571809 data_size=556 offsets_size=104
102208           <...>-27808 (-----) [005] ...2 82317.000953: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
102209           <...>-27808 (-----) [005] d..4 82317.000956: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102210           <...>-27808 (-----) [005] dn.5 82317.000967: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102211           <...>-27808 (-----) [005] d..2 82317.000974: sched_switch: prev_comm=id.nn.benchmark prev_pid=27808 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
102212<...>-5340 ( 788) [005] .... 82317.000984: binder_transaction_received: transaction=1571809
102213<...>-9105 ( 9105) [000] .... 82317.001000: binder_transaction: transaction=1571812 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
102214<...>-9105 ( 9105) [000] .... 82317.001007: binder_transaction_alloc_buf: transaction=1571812 data_size=80 offsets_size=0
102215<...>-9105 ( 9105) [000] d..4 82317.001014: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
102216<...>-5340 ( 788) [005] ...1 82317.001028: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
102217 s.nexuslauncher-10023 (10023) [001] d..2 82317.001030: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102218          <idle>-0     (-----) [001] d..1 82317.001045: cpu_idle: state=0 cpu_id=1
102219<...>-9105 ( 9105) [000] d..5 82317.001051: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
102220          <idle>-0     (-----) [002] .n.1 82317.001055: cpu_idle: state=4294967295 cpu_id=2
102221          <idle>-0     (-----) [002] d..2 82317.001069: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
102222<...>-5340 ( 788) [005] d..2 82317.001072: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
102223<...>-13083 ( 8858) [002] .... 82317.001079: binder_transaction_received: transaction=1571812
102224<...>-9105 ( 9105) [000] d..3 82317.001089: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
102225<...>-5340 ( 788) [005] d..2 82317.001114: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27808 next_prio=110
102226<...>-9105 ( 9105) [000] d..4 82317.001115: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
102227<...>-13083 ( 8858) [002] d.h1 82317.001118: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
102228          <idle>-0     (-----) [001] .n.1 82317.001122: cpu_idle: state=4294967295 cpu_id=1
102229<...>-13083 ( 8858) [002] d..1 82317.001133: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
102230          <idle>-0     (-----) [001] d..2 82317.001135: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
102231           <...>-27808 (-----) [005] d..2 82317.001137: sched_switch: prev_comm=id.nn.benchmark prev_pid=27808 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
102232<...>-13083 ( 8858) [002] d..2 82317.001150: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
102233          <idle>-0     (-----) [005] d..1 82317.001155: cpu_idle: state=0 cpu_id=5
102234          <idle>-0     (-----) [003] .n.1 82317.001156: cpu_idle: state=4294967295 cpu_id=3
102235          <idle>-0     (-----) [003] d..2 82317.001166: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
102236<...>-13083 ( 8858) [002] d..2 82317.001183: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
102237    RenderThread-9436  ( 9105) [001] d..2 82317.001186: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102238          <idle>-0     (-----) [001] d..1 82317.001198: cpu_idle: state=0 cpu_id=1
102239  appEventThread-8881  ( 8858) [003] d..2 82317.001205: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102240          <idle>-0     (-----) [003] d..1 82317.001216: cpu_idle: state=0 cpu_id=3
102241<...>-87 ( 87) [002] d..2 82317.001224: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102242<...>-9105 ( 9105) [000] d..3 82317.001236: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
102243          <idle>-0     (-----) [002] d.h5 82317.001243: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102244<...>-9105 ( 9105) [000] d..4 82317.001253: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
102245          <idle>-0     (-----) [002] dnh6 82317.001259: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102246          <idle>-0     (-----) [001] .n.1 82317.001259: cpu_idle: state=4294967295 cpu_id=1
102247          <idle>-0     (-----) [001] d..2 82317.001270: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
102248          <idle>-0     (-----) [002] d..2 82317.001272: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
102249<...>-9105 ( 9105) [000] d..2 82317.001286: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102250          <idle>-0     (-----) [000] d..1 82317.001304: cpu_idle: state=0 cpu_id=0
102251<...>-86 ( 86) [002] d..2 82317.001306: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102252          <idle>-0     (-----) [002] d.h5 82317.001326: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102253          <idle>-0     (-----) [005] dnh2 82317.001347: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102254          <idle>-0     (-----) [005] .n.1 82317.001352: cpu_idle: state=4294967295 cpu_id=5
102255          <idle>-0     (-----) [005] d..2 82317.001360: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
102256          <idle>-0     (-----) [002] d..1 82317.001371: cpu_idle: state=0 cpu_id=2
102257    RenderThread-9436  ( 9105) [001] d..1 82317.001393: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
102258    RenderThread-9436  ( 9105) [001] d..2 82317.001412: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
102259<...>-5340 ( 788) [005] d..1 82317.001413: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
102260          <idle>-0     (-----) [000] .n.1 82317.001419: cpu_idle: state=4294967295 cpu_id=0
102261          <idle>-0     (-----) [000] dn.2 82317.001429: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
102262          <idle>-0     (-----) [000] d..2 82317.001441: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
102263 neuralnetworks@-13088 (  788) [000] d..2 82317.001482: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
102264    RenderThread-9436  ( 9105) [001] .... 82317.001482: binder_transaction: transaction=1571813 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
102265    RenderThread-9436  ( 9105) [001] .... 82317.001487: binder_transaction_alloc_buf: transaction=1571813 data_size=104 offsets_size=0
102266    RenderThread-9436  ( 9105) [001] d..4 82317.001492: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
102267    RenderThread-9436  ( 9105) [001] d..5 82317.001511: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
102268    RenderThread-9436  ( 9105) [001] d..2 82317.001525: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
102269<...>-13083 ( 8858) [001] .... 82317.001534: binder_transaction_received: transaction=1571813
102270<...>-9105 ( 9105) [000] d..2 82317.001563: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102271<...>-5340 ( 788) [005] d..2 82317.001564: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
102272          <idle>-0     (-----) [000] d..1 82317.001578: cpu_idle: state=0 cpu_id=0
102273          <idle>-0     (-----) [002] dnh2 82317.001585: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
102274<...>-5340 ( 788) [005] d..2 82317.001589: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
102275          <idle>-0     (-----) [002] .n.1 82317.001590: cpu_idle: state=4294967295 cpu_id=2
102276          <idle>-0     (-----) [002] d..2 82317.001602: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
102277          <idle>-0     (-----) [005] d..1 82317.001603: cpu_idle: state=0 cpu_id=5
102278<...>-13083 ( 8858) [001] .... 82317.001608: binder_transaction: transaction=1571814 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
102279<...>-13083 ( 8858) [001] .... 82317.001612: binder_transaction_alloc_buf: transaction=1571814 data_size=52 offsets_size=8
102280<...>-13083 ( 8858) [001] d..2 82317.001621: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
102281<...>-13083 ( 8858) [001] d..3 82317.001635: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
102282<...>-87 ( 87) [002] d..2 82317.001637: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102283          <idle>-0     (-----) [002] d.h5 82317.001653: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102284          <idle>-0     (-----) [002] dnh6 82317.001663: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102285<...>-13083 ( 8858) [001] d..2 82317.001673: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
102286          <idle>-0     (-----) [002] d..2 82317.001675: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
102287    RenderThread-9436  ( 9105) [001] .... 82317.001681: binder_transaction_received: transaction=1571814
102288<...>-86 ( 86) [002] d..2 82317.001703: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102289          <idle>-0     (-----) [002] d..1 82317.001714: cpu_idle: state=0 cpu_id=2
102290          <idle>-0     (-----) [005] ...1 82317.001941: cpu_idle: state=4294967295 cpu_id=5
102291          <idle>-0     (-----) [005] d..1 82317.001944: cpu_idle: state=0 cpu_id=5
102292    RenderThread-9436  ( 9105) [001] d..2 82317.002728: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
102293          <idle>-0     (-----) [001] d..1 82317.002744: cpu_idle: state=0 cpu_id=1
102294          <idle>-0     (-----) [001] d.h2 82317.002804: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
102295          <idle>-0     (-----) [001] d.h3 82317.002814: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
102296          <idle>-0     (-----) [001] dnh3 82317.002819: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
102297          <idle>-0     (-----) [001] .n.1 82317.002828: cpu_idle: state=4294967295 cpu_id=1
102298          <idle>-0     (-----) [001] d..2 82317.002839: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
102299          <idle>-0     (-----) [000] d.h3 82317.002843: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
102300          <idle>-0     (-----) [000] d.h4 82317.002865: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
102301          <idle>-0     (-----) [003] .n.1 82317.002870: cpu_idle: state=4294967295 cpu_id=3
102302          <idle>-0     (-----) [000] ...1 82317.002879: cpu_idle: state=4294967295 cpu_id=0
102303          <idle>-0     (-----) [003] d..2 82317.002880: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
102304          <idle>-0     (-----) [000] d..1 82317.002884: cpu_idle: state=0 cpu_id=0
102305 kgsl_worker_thr-258   (  258) [003] d..2 82317.002932: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
102306 kgsl_worker_thr-258   (  258) [003] d..3 82317.002949: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
102307 kgsl_worker_thr-258   (  258) [003] d..2 82317.002964: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
102308  kworker/u16:15-1311  ( 1311) [003] d..2 82317.003010: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102309          <idle>-0     (-----) [003] d..1 82317.003023: cpu_idle: state=0 cpu_id=3
102310    RenderThread-9436  ( 9105) [001] .... 82317.003029: binder_transaction: transaction=1571815 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
102311    RenderThread-9436  ( 9105) [001] .... 82317.003033: binder_transaction_alloc_buf: transaction=1571815 data_size=192 offsets_size=8
102312    RenderThread-9436  ( 9105) [001] d..4 82317.003043: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
102313    RenderThread-9436  ( 9105) [001] d..5 82317.003058: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
102314    RenderThread-9436  ( 9105) [001] d..2 82317.003073: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
102315<...>-13083 ( 8858) [001] .... 82317.003081: binder_transaction_received: transaction=1571815
102316<...>-13083 ( 8858) [001] .... 82317.003224: binder_transaction: transaction=1571816 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
102317<...>-13083 ( 8858) [001] .... 82317.003229: binder_transaction_alloc_buf: transaction=1571816 data_size=68 offsets_size=0
102318<...>-13083 ( 8858) [001] d..2 82317.003232: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
102319<...>-13083 ( 8858) [001] d..3 82317.003247: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
102320          <idle>-0     (-----) [002] d.h4 82317.003278: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102321<...>-13083 ( 8858) [001] d..2 82317.003282: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
102322    RenderThread-9436  ( 9105) [001] .... 82317.003289: binder_transaction_received: transaction=1571816
102323          <idle>-0     (-----) [005] dnh2 82317.003298: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102324          <idle>-0     (-----) [005] .n.1 82317.003302: cpu_idle: state=4294967295 cpu_id=5
102325          <idle>-0     (-----) [005] d..2 82317.003311: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
102326          <idle>-0     (-----) [002] ...1 82317.003313: cpu_idle: state=4294967295 cpu_id=2
102327          <idle>-0     (-----) [002] d..1 82317.003318: cpu_idle: state=0 cpu_id=2
102328<...>-5340 ( 788) [005] d..1 82317.003362: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
102329    RenderThread-9436  ( 9105) [001] d..2 82317.003374: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102330          <idle>-0     (-----) [000] dnh2 82317.003383: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
102331          <idle>-0     (-----) [000] .n.1 82317.003392: cpu_idle: state=4294967295 cpu_id=0
102332          <idle>-0     (-----) [001] d..1 82317.003392: cpu_idle: state=0 cpu_id=1
102333          <idle>-0     (-----) [000] d..2 82317.003406: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
102334<...>-5340 ( 788) [005] ...1 82317.003454: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
102335<...>-5340 ( 788) [005] ...1 82317.003459: tracing_mark_write: E|788
102336 neuralnetworks@-13088 (  788) [000] d..2 82317.003476: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102337<...>-5340 ( 788) [005] .... 82317.003476: binder_transaction: transaction=1571817 dest_node=1571810 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
102338<...>-5340 ( 788) [005] .... 82317.003479: binder_transaction_alloc_buf: transaction=1571817 data_size=60 offsets_size=0
102339<...>-5340 ( 788) [005] d..4 82317.003483: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
102340          <idle>-0     (-----) [000] d..1 82317.003485: cpu_idle: state=0 cpu_id=0
102341<...>-5340 ( 788) [005] d..5 82317.003495: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
102342          <idle>-0     (-----) [004] .n.1 82317.003502: cpu_idle: state=4294967295 cpu_id=4
102343          <idle>-0     (-----) [004] d..2 82317.003512: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
102344           <...>-27571 (-----) [004] .... 82317.003517: binder_transaction_received: transaction=1571817
102345<...>-5340 ( 788) [005] ...1 82317.003519: tracing_mark_write: E|788
102346<...>-5340 ( 788) [005] .... 82317.003526: binder_transaction: transaction=1571818 dest_node=0 dest_proc=27550 dest_thread=27808 reply=1 flags=0x0 code=0x0
102347<...>-5340 ( 788) [005] .... 82317.003528: binder_transaction_alloc_buf: transaction=1571818 data_size=8 offsets_size=0
102348<...>-5340 ( 788) [005] d..2 82317.003529: sched_waking: comm=id.nn.benchmark pid=27808 prio=110 target_cpu=005
102349<...>-5340 ( 788) [005] d..3 82317.003537: sched_wakeup: comm=id.nn.benchmark pid=27808 prio=110 target_cpu=005
102350           <...>-27571 (-----) [004] ...1 82317.003538: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
102351<...>-5340 ( 788) [005] .... 82317.003539: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
102352           <...>-27571 (-----) [004] ...1 82317.003545: tracing_mark_write: E|27550
102353           <...>-27571 (-----) [004] d..2 82317.003580: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102354<...>-5340 ( 788) [005] d..2 82317.003582: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27808 next_prio=110
102355          <idle>-0     (-----) [004] d..1 82317.003590: cpu_idle: state=0 cpu_id=4
102356           <...>-27808 (-----) [005] .... 82317.003592: binder_transaction_received: transaction=1571818
102357           <...>-27808 (-----) [005] ...1 82317.003629: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
102358           <...>-27808 (-----) [005] ...1 82317.003635: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
102359           <...>-27808 (-----) [005] ...1 82317.003662: tracing_mark_write: E|27550
102360           <...>-27808 (-----) [005] ...1 82317.003665: tracing_mark_write: E|27550
102361           <...>-27808 (-----) [005] ...1 82317.003669: tracing_mark_write: E|27550
102362           <...>-27808 (-----) [005] ...1 82317.003861: tracing_mark_write: E|27550
102363           <...>-27808 (-----) [005] d..1 82317.003875: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102364           <...>-27808 (-----) [005] d..2 82317.003892: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102365          <idle>-0     (-----) [004] .n.1 82317.003897: cpu_idle: state=4294967295 cpu_id=4
102366          <idle>-0     (-----) [004] d..2 82317.003904: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
102367           <...>-27550 (-----) [004] d..2 82317.003920: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102368          <idle>-0     (-----) [004] d..1 82317.003927: cpu_idle: state=0 cpu_id=4
102369           <...>-27808 (-----) [005] d..1 82317.003985: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102370           <...>-27808 (-----) [005] d..2 82317.003994: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102371          <idle>-0     (-----) [004] .n.1 82317.003999: cpu_idle: state=4294967295 cpu_id=4
102372          <idle>-0     (-----) [004] d..2 82317.004005: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
102373           <...>-27808 (-----) [005] d..2 82317.004034: sched_switch: prev_comm=id.nn.benchmark prev_pid=27808 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
102374           <...>-27550 (-----) [004] ...1 82317.004037: tracing_mark_write: E|27550
102375           <...>-27550 (-----) [004] ...1 82317.004042: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
102376           <...>-27550 (-----) [004] ...1 82317.004047: tracing_mark_write: E|27550
102377           <...>-27550 (-----) [004] ...1 82317.004051: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
102378          <idle>-0     (-----) [005] d..1 82317.004054: cpu_idle: state=0 cpu_id=5
102379           <...>-27550 (-----) [004] ...1 82317.004055: tracing_mark_write: E|27550
102380           <...>-27550 (-----) [004] ...1 82317.004060: tracing_mark_write: E|27550
102381           <...>-27550 (-----) [004] ...1 82317.004173: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
102382           <...>-27550 (-----) [004] ...1 82317.004230: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
102383           <...>-27550 (-----) [004] ...1 82317.004235: tracing_mark_write: E|27550
102384           <...>-27550 (-----) [004] ...1 82317.004238: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
102385           <...>-27550 (-----) [004] ...1 82317.004243: tracing_mark_write: E|27550
102386           <...>-27550 (-----) [004] ...1 82317.004247: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
102387           <...>-27550 (-----) [004] ...1 82317.004251: tracing_mark_write: E|27550
102388           <...>-27550 (-----) [004] ...1 82317.004255: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
102389          <idle>-0     (-----) [005] .n.1 82317.004349: cpu_idle: state=4294967295 cpu_id=5
102390           <...>-27550 (-----) [004] ...1 82317.004350: tracing_mark_write: E|27550
102391           <...>-27550 (-----) [004] ...1 82317.004354: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
102392          <idle>-0     (-----) [005] d..2 82317.004358: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27809 next_prio=110
102393           <...>-27550 (-----) [004] d..2 82317.004370: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102394          <idle>-0     (-----) [004] d..1 82317.004384: cpu_idle: state=0 cpu_id=4
102395           <...>-27809 (-----) [005] ...1 82317.004419: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
102396           <...>-27809 (-----) [005] ...1 82317.004434: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
102397           <...>-27809 (-----) [005] ...1 82317.004437: tracing_mark_write: E|27550
102398           <...>-27809 (-----) [005] .... 82317.004460: binder_transaction: transaction=1571819 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
102399           <...>-27809 (-----) [005] .... 82317.004463: binder_transaction_alloc_buf: transaction=1571819 data_size=48 offsets_size=0
102400           <...>-27809 (-----) [005] ...2 82317.004466: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
102401           <...>-27809 (-----) [005] d..4 82317.004469: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
102402           <...>-27809 (-----) [005] dn.5 82317.004481: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
102403           <...>-27809 (-----) [005] d..2 82317.004487: sched_switch: prev_comm=id.nn.benchmark prev_pid=27809 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
102404<...>-770 ( 770) [005] .... 82317.004498: binder_transaction_received: transaction=1571819
102405          <idle>-0     (-----) [001] d.h2 82317.004507: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
102406          <idle>-0     (-----) [001] dnh3 82317.004521: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
102407<...>-770 ( 770) [005] ...1 82317.004522: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
102408          <idle>-0     (-----) [001] .n.1 82317.004529: cpu_idle: state=4294967295 cpu_id=1
102409          <idle>-0     (-----) [001] d..2 82317.004540: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
102410        DispSync-8879  ( 8858) [001] d..1 82317.004561: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
102411        DispSync-8879  ( 8858) [001] d..2 82317.004578: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
102412          <idle>-0     (-----) [002] .n.1 82317.004583: cpu_idle: state=4294967295 cpu_id=2
102413          <idle>-0     (-----) [002] d..2 82317.004595: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
102414<...>-770 ( 770) [005] d..2 82317.004605: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
102415        DispSync-8879  ( 8858) [001] d..2 82317.004613: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102416          <idle>-0     (-----) [001] d..1 82317.004627: cpu_idle: state=0 cpu_id=1
102417   sfEventThread-8882  ( 8858) [002] d..3 82317.004635: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
102418          <idle>-0     (-----) [001] dnh2 82317.004646: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
102419          <idle>-0     (-----) [001] .n.1 82317.004653: cpu_idle: state=4294967295 cpu_id=1
102420   sfEventThread-8882  ( 8858) [002] d..4 82317.004654: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
102421          <idle>-0     (-----) [003] .n.1 82317.004660: cpu_idle: state=4294967295 cpu_id=3
102422<...>-770 ( 770) [005] ...1 82317.004661: tracing_mark_write: E|770
102423          <idle>-0     (-----) [001] d..2 82317.004664: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
102424<...>-770 ( 770) [005] .... 82317.004669: binder_transaction: transaction=1571820 dest_node=0 dest_proc=27550 dest_thread=27809 reply=1 flags=0x0 code=0x0
102425          <idle>-0     (-----) [003] d..2 82317.004670: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
102426<...>-770 ( 770) [005] .... 82317.004671: binder_transaction_alloc_buf: transaction=1571820 data_size=168 offsets_size=32
102427<...>-770 ( 770) [005] .... 82317.004678: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
102428   sfEventThread-8882  ( 8858) [002] d..2 82317.004686: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102429          <idle>-0     (-----) [002] d..1 82317.004695: cpu_idle: state=0 cpu_id=2
102430<...>-770 ( 770) [005] d..2 82317.004714: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27809 next_prio=110
102431           <...>-27809 (-----) [005] .... 82317.004725: binder_transaction_received: transaction=1571820
102432<...>-581 ( 571) [001] d..2 82317.004759: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102433          <idle>-0     (-----) [001] d..1 82317.004774: cpu_idle: state=0 cpu_id=1
102434           <...>-27809 (-----) [005] ...1 82317.004797: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
102435           <...>-27809 (-----) [005] ...1 82317.004802: tracing_mark_write: E|27550
102436           <...>-27809 (-----) [005] .... 82317.004816: binder_transaction: transaction=1571821 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
102437           <...>-27809 (-----) [005] .... 82317.004819: binder_transaction_alloc_buf: transaction=1571821 data_size=48 offsets_size=0
102438           <...>-27809 (-----) [005] ...2 82317.004821: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
102439           <...>-27809 (-----) [005] d..4 82317.004824: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
102440           <...>-27809 (-----) [005] dn.5 82317.004834: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
102441           <...>-27809 (-----) [005] d..2 82317.004840: sched_switch: prev_comm=id.nn.benchmark prev_pid=27809 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
102442<...>-770 ( 770) [005] .... 82317.004848: binder_transaction_received: transaction=1571821
102443<...>-770 ( 770) [005] ...1 82317.004865: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
102444<...>-770 ( 770) [005] d..2 82317.004926: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
102445          <idle>-0     (-----) [001] dnh2 82317.004950: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
102446          <idle>-0     (-----) [001] .n.1 82317.004957: cpu_idle: state=4294967295 cpu_id=1
102447<...>-770 ( 770) [005] ...1 82317.004960: tracing_mark_write: E|770
102448<...>-770 ( 770) [005] .... 82317.004967: binder_transaction: transaction=1571822 dest_node=0 dest_proc=27550 dest_thread=27809 reply=1 flags=0x0 code=0x0
102449          <idle>-0     (-----) [001] d..2 82317.004967: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
102450<...>-770 ( 770) [005] .... 82317.004970: binder_transaction_alloc_buf: transaction=1571822 data_size=168 offsets_size=32
102451<...>-770 ( 770) [005] .... 82317.004976: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
102452  surfaceflinger-8858  ( 8858) [003] d..1 82317.004986: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
102453  surfaceflinger-8858  ( 8858) [003] d..2 82317.005006: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
102454<...>-770 ( 770) [005] d..2 82317.005010: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27809 next_prio=110
102455          <idle>-0     (-----) [002] .n.1 82317.005010: cpu_idle: state=4294967295 cpu_id=2
102456          <idle>-0     (-----) [002] d..2 82317.005017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
102457           <...>-27809 (-----) [005] .... 82317.005021: binder_transaction_received: transaction=1571822
102458<...>-581 ( 571) [001] d..2 82317.005024: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102459          <idle>-0     (-----) [001] d..1 82317.005037: cpu_idle: state=0 cpu_id=1
102460   sfEventThread-8882  ( 8858) [002] d..2 82317.005051: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102461          <idle>-0     (-----) [002] d..1 82317.005058: cpu_idle: state=0 cpu_id=2
102462          <idle>-0     (-----) [000] d.s2 82317.005136: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
102463          <idle>-0     (-----) [002] d.s2 82317.005136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
102464          <idle>-0     (-----) [000] dns3 82317.005154: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
102465          <idle>-0     (-----) [002] dns3 82317.005154: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
102466          <idle>-0     (-----) [002] .n.1 82317.005167: cpu_idle: state=4294967295 cpu_id=2
102467          <idle>-0     (-----) [000] .n.1 82317.005172: cpu_idle: state=4294967295 cpu_id=0
102468          <idle>-0     (-----) [002] d..2 82317.005176: 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
102469          <idle>-0     (-----) [000] d..2 82317.005183: 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
102470     rcu_preempt-7     (    7) [002] d..2 82317.005210: 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
102471<...>-8 ( 8) [000] d..2 82317.005212: 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
102472          <idle>-0     (-----) [002] d..1 82317.005222: cpu_idle: state=0 cpu_id=2
102473          <idle>-0     (-----) [000] d..1 82317.005224: cpu_idle: state=0 cpu_id=0
102474  surfaceflinger-8858  ( 8858) [003] ...1 82317.005237: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
102475  surfaceflinger-8858  ( 8858) [003] ...1 82317.005244: tracing_mark_write: E|8858
102476  surfaceflinger-8858  ( 8858) [003] .... 82317.005294: binder_transaction: transaction=1571823 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
102477  surfaceflinger-8858  ( 8858) [003] .... 82317.005299: binder_transaction_alloc_buf: transaction=1571823 data_size=540 offsets_size=96
102478  surfaceflinger-8858  ( 8858) [003] ...2 82317.005323: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
102479  surfaceflinger-8858  ( 8858) [003] d..4 82317.005331: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
102480           <...>-27809 (-----) [005] ...1 82317.005340: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
102481  surfaceflinger-8858  ( 8858) [003] d..5 82317.005351: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
102482           <...>-27809 (-----) [005] ...1 82317.005351: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
102483           <...>-27809 (-----) [005] ...1 82317.005355: tracing_mark_write: E|27550
102484          <idle>-0     (-----) [002] .n.1 82317.005356: cpu_idle: state=4294967295 cpu_id=2
102485          <idle>-0     (-----) [002] d..2 82317.005366: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
102486 [email protected]   (  619) [002] .... 82317.005376: binder_transaction_received: transaction=1571823
102487  surfaceflinger-8858  ( 8858) [003] d..2 82317.005380: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102488          <idle>-0     (-----) [003] d..1 82317.005397: cpu_idle: state=0 cpu_id=3
102489           <...>-27809 (-----) [005] .... 82317.005418: binder_transaction: transaction=1571824 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
102490 [email protected]   (  619) [002] ...1 82317.005420: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
102491           <...>-27809 (-----) [005] .... 82317.005422: binder_transaction_alloc_buf: transaction=1571824 data_size=556 offsets_size=104
102492           <...>-27809 (-----) [005] ...2 82317.005437: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
102493           <...>-27809 (-----) [005] d..4 82317.005440: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102494           <...>-27809 (-----) [005] dn.5 82317.005450: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102495           <...>-27809 (-----) [005] d..2 82317.005457: sched_switch: prev_comm=id.nn.benchmark prev_pid=27809 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
102496<...>-5340 ( 788) [005] .... 82317.005467: binder_transaction_received: transaction=1571824
102497<...>-5340 ( 788) [005] ...1 82317.005514: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
102498 [email protected]   (  619) [002] ...1 82317.005523: tracing_mark_write: B|619|HWCSession::PresentDisplay::
102499<...>-5340 ( 788) [005] d..2 82317.005559: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
102500<...>-5340 ( 788) [005] d..2 82317.005584: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27809 next_prio=110
102501 [email protected]   (  619) [002] d.h1 82317.005588: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
102502           <...>-27809 (-----) [005] d..2 82317.005607: sched_switch: prev_comm=id.nn.benchmark prev_pid=27809 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
102503          <idle>-0     (-----) [005] d..1 82317.005624: cpu_idle: state=0 cpu_id=5
102504 [email protected]   (  619) [002] ...1 82317.005711: tracing_mark_write: B|619|HWDeviceDRM::Commit::
102505 [email protected]   (  619) [002] ...1 82317.005725: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
102506 [email protected]   (  619) [002] d..2 82317.006325: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
102507          <idle>-0     (-----) [001] ...1 82317.006328: cpu_idle: state=4294967295 cpu_id=1
102508          <idle>-0     (-----) [001] d..1 82317.006333: cpu_idle: state=0 cpu_id=1
102509 [email protected]   (  619) [002] d..3 82317.006347: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
102510          <idle>-0     (-----) [001] .n.1 82317.006351: cpu_idle: state=4294967295 cpu_id=1
102511          <idle>-0     (-----) [001] d..2 82317.006362: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
102512 [email protected]   (  619) [002] ...1 82317.006443: tracing_mark_write: E|619
102513 [email protected]   (  619) [002] ...1 82317.006449: tracing_mark_write: E|619
102514 [email protected]   (  619) [002] ...1 82317.006509: tracing_mark_write: E|619
102515 [email protected]   (  619) [002] ...1 82317.006552: tracing_mark_write: E|619
102516 [email protected]   (  619) [002] .... 82317.006566: binder_transaction: transaction=1571827 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
102517 [email protected]   (  619) [002] .... 82317.006570: binder_transaction_alloc_buf: transaction=1571827 data_size=576 offsets_size=112
102518 [email protected]   (  619) [002] d..2 82317.006590: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
102519 [email protected]   (  619) [002] d..3 82317.006607: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
102520 [email protected]   (  619) [002] .... 82317.006612: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
102521          <idle>-0     (-----) [003] .n.1 82317.006613: cpu_idle: state=4294967295 cpu_id=3
102522          <idle>-0     (-----) [003] d..2 82317.006623: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
102523  surfaceflinger-8858  ( 8858) [003] .... 82317.006631: binder_transaction_received: transaction=1571827
102524 [email protected]   (  619) [002] d..2 82317.006682: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
102525<...>-87 ( 87) [002] d..2 82317.006730: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102526          <idle>-0     (-----) [002] d.h5 82317.006749: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102527          <idle>-0     (-----) [002] dnh6 82317.006765: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102528          <idle>-0     (-----) [002] d..2 82317.006779: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
102529<...>-86 ( 86) [002] d.h3 82317.006811: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102530          <idle>-0     (-----) [005] dnh2 82317.006833: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102531          <idle>-0     (-----) [005] .n.1 82317.006837: cpu_idle: state=4294967295 cpu_id=5
102532          <idle>-0     (-----) [005] d..2 82317.006845: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
102533<...>-86 ( 86) [002] d..2 82317.006863: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102534          <idle>-0     (-----) [002] d..1 82317.006878: cpu_idle: state=0 cpu_id=2
102535<...>-5340 ( 788) [005] d..1 82317.006901: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
102536 crtc_commit:111-321   (  321) [001] d.h1 82317.006940: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
102537  surfaceflinger-8858  ( 8858) [003] d..2 82317.007050: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
102538<...>-5340 ( 788) [005] d..2 82317.007066: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
102539 crtc_commit:111-321   (  321) [001] d..2 82317.007077: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
102540          <idle>-0     (-----) [002] dnh2 82317.007087: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
102541          <idle>-0     (-----) [001] d..1 82317.007091: cpu_idle: state=0 cpu_id=1
102542<...>-5340 ( 788) [005] d..2 82317.007092: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
102543          <idle>-0     (-----) [002] .n.1 82317.007094: cpu_idle: state=4294967295 cpu_id=2
102544          <idle>-0     (-----) [002] d..2 82317.007105: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
102545          <idle>-0     (-----) [005] d..1 82317.007106: cpu_idle: state=0 cpu_id=5
102546 neuralnetworks@-13088 (  788) [003] d..2 82317.007108: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102547          <idle>-0     (-----) [003] d..1 82317.007126: cpu_idle: state=0 cpu_id=3
102548<...>-87 ( 87) [002] d..2 82317.007141: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102549          <idle>-0     (-----) [002] d.h5 82317.007158: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102550          <idle>-0     (-----) [002] dnh6 82317.007167: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102551          <idle>-0     (-----) [002] d..2 82317.007180: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
102552<...>-86 ( 86) [002] d..2 82317.007208: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102553          <idle>-0     (-----) [002] d..1 82317.007219: cpu_idle: state=0 cpu_id=2
102554          <idle>-0     (-----) [001] ...1 82317.008436: cpu_idle: state=4294967295 cpu_id=1
102555          <idle>-0     (-----) [001] d..1 82317.008440: cpu_idle: state=0 cpu_id=1
102556          <idle>-0     (-----) [002] d.h4 82317.008845: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102557          <idle>-0     (-----) [005] dnh2 82317.008867: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102558          <idle>-0     (-----) [005] .n.1 82317.008871: cpu_idle: state=4294967295 cpu_id=5
102559          <idle>-0     (-----) [002] d..2 82317.008878: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
102560          <idle>-0     (-----) [005] d..2 82317.008880: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
102561          <idle>-0     (-----) [002] dn.3 82317.008890: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
102562          <idle>-0     (-----) [002] .n.1 82317.008894: cpu_idle: state=4294967295 cpu_id=2
102563          <idle>-0     (-----) [002] d..2 82317.008907: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
102564     ksoftirqd/2-26    (   26) [002] d.s2 82317.008919: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
102565<...>-5340 ( 788) [005] d..1 82317.008936: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
102566     ksoftirqd/2-26    (   26) [002] d.s3 82317.008955: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
102567          <idle>-0     (-----) [003] dnh2 82317.008960: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
102568          <idle>-0     (-----) [003] .n.1 82317.008970: cpu_idle: state=4294967295 cpu_id=3
102569     ksoftirqd/2-26    (   26) [002] d..2 82317.008973: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
102570          <idle>-0     (-----) [003] d..2 82317.008983: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
102571 neuralnetworks@-13088 (  788) [003] d..2 82317.009045: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102572<...>-5340 ( 788) [005] ...1 82317.009046: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
102573<...>-5340 ( 788) [005] ...1 82317.009050: tracing_mark_write: E|788
102574          <idle>-0     (-----) [003] d..1 82317.009057: cpu_idle: state=0 cpu_id=3
102575<...>-5340 ( 788) [005] .... 82317.009066: binder_transaction: transaction=1571828 dest_node=1571825 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
102576<...>-5340 ( 788) [005] .... 82317.009070: binder_transaction_alloc_buf: transaction=1571828 data_size=60 offsets_size=0
102577<...>-5340 ( 788) [005] d..4 82317.009073: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
102578<...>-5340 ( 788) [005] d..5 82317.009085: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
102579          <idle>-0     (-----) [004] .n.1 82317.009091: cpu_idle: state=4294967295 cpu_id=4
102580          <idle>-0     (-----) [004] d..2 82317.009100: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
102581           <...>-27571 (-----) [004] .... 82317.009106: binder_transaction_received: transaction=1571828
102582<...>-5340 ( 788) [005] ...1 82317.009107: tracing_mark_write: E|788
102583<...>-5340 ( 788) [005] .... 82317.009113: binder_transaction: transaction=1571829 dest_node=0 dest_proc=27550 dest_thread=27809 reply=1 flags=0x0 code=0x0
102584<...>-5340 ( 788) [005] .... 82317.009115: binder_transaction_alloc_buf: transaction=1571829 data_size=8 offsets_size=0
102585<...>-5340 ( 788) [005] d..2 82317.009117: sched_waking: comm=id.nn.benchmark pid=27809 prio=110 target_cpu=005
102586<...>-5340 ( 788) [005] d..3 82317.009125: sched_wakeup: comm=id.nn.benchmark pid=27809 prio=110 target_cpu=005
102587           <...>-27571 (-----) [004] ...1 82317.009125: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
102588<...>-5340 ( 788) [005] .... 82317.009126: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
102589           <...>-27571 (-----) [004] ...1 82317.009132: tracing_mark_write: E|27550
102590           <...>-27571 (-----) [004] d..2 82317.009166: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102591<...>-5340 ( 788) [005] d..2 82317.009168: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27809 next_prio=110
102592          <idle>-0     (-----) [004] d..1 82317.009176: cpu_idle: state=0 cpu_id=4
102593           <...>-27809 (-----) [005] .... 82317.009178: binder_transaction_received: transaction=1571829
102594           <...>-27809 (-----) [005] ...1 82317.009215: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
102595           <...>-27809 (-----) [005] ...1 82317.009221: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
102596           <...>-27809 (-----) [005] ...1 82317.009246: tracing_mark_write: E|27550
102597  kworker/u16:15-1311  ( 1311) [002] d..2 82317.009248: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
102598           <...>-27809 (-----) [005] ...1 82317.009250: tracing_mark_write: E|27550
102599           <...>-27809 (-----) [005] ...1 82317.009253: tracing_mark_write: E|27550
102600          <idle>-0     (-----) [002] d..1 82317.009258: cpu_idle: state=0 cpu_id=2
102601          <idle>-0     (-----) [001] d.s3 82317.009285: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
102602          <idle>-0     (-----) [001] d.s4 82317.009298: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
102603          <idle>-0     (-----) [001] d.s4 82317.009308: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
102604          <idle>-0     (-----) [002] .n.1 82317.009314: cpu_idle: state=4294967295 cpu_id=2
102605          <idle>-0     (-----) [001] ...1 82317.009318: cpu_idle: state=4294967295 cpu_id=1
102606          <idle>-0     (-----) [002] d..2 82317.009323: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
102607          <idle>-0     (-----) [001] d..1 82317.009324: cpu_idle: state=0 cpu_id=1
102608  kworker/u16:15-1311  ( 1311) [002] .... 82317.009424: clk_set_rate: l3_cluster0_vote_clk 403200000
102609  kworker/u16:15-1311  ( 1311) [002] d..2 82317.009452: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102610           <...>-27809 (-----) [005] ...1 82317.009456: tracing_mark_write: E|27550
102611          <idle>-0     (-----) [002] d..1 82317.009460: cpu_idle: state=0 cpu_id=2
102612           <...>-27809 (-----) [005] d..1 82317.009469: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102613           <...>-27809 (-----) [005] d..2 82317.009485: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102614          <idle>-0     (-----) [004] .n.1 82317.009490: cpu_idle: state=4294967295 cpu_id=4
102615          <idle>-0     (-----) [004] d..2 82317.009498: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
102616           <...>-27550 (-----) [004] d..2 82317.009515: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102617          <idle>-0     (-----) [004] d..1 82317.009521: cpu_idle: state=0 cpu_id=4
102618           <...>-27809 (-----) [005] d..1 82317.009576: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102619           <...>-27809 (-----) [005] d..2 82317.009586: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102620          <idle>-0     (-----) [004] .n.1 82317.009591: cpu_idle: state=4294967295 cpu_id=4
102621          <idle>-0     (-----) [004] d..2 82317.009597: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
102622           <...>-27809 (-----) [005] d..2 82317.009628: sched_switch: prev_comm=id.nn.benchmark prev_pid=27809 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
102623           <...>-27550 (-----) [004] ...1 82317.009643: tracing_mark_write: E|27550
102624           <...>-27550 (-----) [004] ...1 82317.009648: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
102625          <idle>-0     (-----) [005] d..1 82317.009651: cpu_idle: state=0 cpu_id=5
102626           <...>-27550 (-----) [004] ...1 82317.009654: tracing_mark_write: E|27550
102627           <...>-27550 (-----) [004] ...1 82317.009658: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
102628           <...>-27550 (-----) [004] ...1 82317.009662: tracing_mark_write: E|27550
102629           <...>-27550 (-----) [004] ...1 82317.009667: tracing_mark_write: E|27550
102630           <...>-27550 (-----) [004] ...1 82317.009780: tracing_mark_write: B|27550|[NN_LA_PE]BenchmarkModel::benchmark
102631           <...>-27550 (-----) [004] ...1 82317.009838: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_create
102632           <...>-27550 (-----) [004] ...1 82317.009845: tracing_mark_write: E|27550
102633           <...>-27550 (-----) [004] ...1 82317.009850: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setInput
102634           <...>-27550 (-----) [004] ...1 82317.009855: tracing_mark_write: E|27550
102635           <...>-27550 (-----) [004] ...1 82317.009859: tracing_mark_write: B|27550|[NN_LR_PIO]ANeuralNetworksExecution_setOutput
102636           <...>-27550 (-----) [004] ...1 82317.009864: tracing_mark_write: E|27550
102637           <...>-27550 (-----) [004] ...1 82317.009867: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksExecution_startCompute
102638          <idle>-0     (-----) [005] .n.1 82317.009962: cpu_idle: state=4294967295 cpu_id=5
102639           <...>-27550 (-----) [004] ...1 82317.009963: tracing_mark_write: E|27550
102640           <...>-27550 (-----) [004] ...1 82317.009968: tracing_mark_write: B|27550|[NN_LR_PE]ANeuralNetworksEvent_wait
102641          <idle>-0     (-----) [005] d..2 82317.009971: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27810 next_prio=110
102642           <...>-27550 (-----) [004] d..2 82317.009984: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102643          <idle>-0     (-----) [004] d..1 82317.009998: cpu_idle: state=0 cpu_id=4
102644           <...>-27810 (-----) [005] ...1 82317.010034: tracing_mark_write: B|27550|[NN_LR_PIO]StepExecutor::startComputeOnDevice
102645           <...>-27810 (-----) [005] ...1 82317.010049: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
102646           <...>-27810 (-----) [005] ...1 82317.010053: tracing_mark_write: E|27550
102647           <...>-27810 (-----) [005] .... 82317.010075: binder_transaction: transaction=1571830 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
102648           <...>-27810 (-----) [005] .... 82317.010078: binder_transaction_alloc_buf: transaction=1571830 data_size=48 offsets_size=0
102649           <...>-27810 (-----) [005] ...2 82317.010081: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
102650           <...>-27810 (-----) [005] d..4 82317.010085: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
102651           <...>-27810 (-----) [005] dn.5 82317.010095: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
102652           <...>-27810 (-----) [005] d..2 82317.010102: sched_switch: prev_comm=id.nn.benchmark prev_pid=27810 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
102653<...>-770 ( 770) [005] .... 82317.010112: binder_transaction_received: transaction=1571830
102654<...>-770 ( 770) [005] ...1 82317.010137: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
102655<...>-770 ( 770) [005] d..2 82317.010221: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
102656          <idle>-0     (-----) [000] dnh2 82317.010260: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
102657          <idle>-0     (-----) [000] .n.1 82317.010265: cpu_idle: state=4294967295 cpu_id=0
102658<...>-770 ( 770) [005] ...1 82317.010275: tracing_mark_write: E|770
102659          <idle>-0     (-----) [000] d..2 82317.010277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
102660<...>-770 ( 770) [005] .... 82317.010283: binder_transaction: transaction=1571831 dest_node=0 dest_proc=27550 dest_thread=27810 reply=1 flags=0x0 code=0x0
102661<...>-770 ( 770) [005] .... 82317.010285: binder_transaction_alloc_buf: transaction=1571831 data_size=168 offsets_size=32
102662<...>-770 ( 770) [005] .... 82317.010292: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
102663<...>-770 ( 770) [005] d..2 82317.010328: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27810 next_prio=110
102664           <...>-27810 (-----) [005] .... 82317.010340: binder_transaction_received: transaction=1571831
102665<...>-581 ( 571) [000] d..2 82317.010363: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102666          <idle>-0     (-----) [000] d..1 82317.010374: cpu_idle: state=0 cpu_id=0
102667           <...>-27810 (-----) [005] ...1 82317.010413: tracing_mark_write: B|27550|HIDL::IAllocator::allocate::client
102668           <...>-27810 (-----) [005] ...1 82317.010418: tracing_mark_write: E|27550
102669           <...>-27810 (-----) [005] .... 82317.010433: binder_transaction: transaction=1571832 dest_node=635 dest_proc=770 dest_thread=0 reply=0 flags=0x10 code=0x1
102670           <...>-27810 (-----) [005] .... 82317.010436: binder_transaction_alloc_buf: transaction=1571832 data_size=48 offsets_size=0
102671           <...>-27810 (-----) [005] ...2 82317.010439: binder_set_priority: proc=770 thread=770 old=120 => new=110 desired=110
102672           <...>-27810 (-----) [005] d..4 82317.010441: sched_waking: [email protected] pid=770 prio=110 target_cpu=005
102673           <...>-27810 (-----) [005] dn.5 82317.010451: sched_wakeup: [email protected] pid=770 prio=110 target_cpu=005
102674           <...>-27810 (-----) [005] d..2 82317.010458: sched_switch: prev_comm=id.nn.benchmark prev_pid=27810 prev_prio=110 prev_state=R+ ==> [email protected] next_pid=770 next_prio=110
102675<...>-770 ( 770) [005] .... 82317.010467: binder_transaction_received: transaction=1571832
102676<...>-770 ( 770) [005] ...1 82317.010483: tracing_mark_write: B|770|HIDL::IAllocator::allocate::server
102677<...>-770 ( 770) [005] d..2 82317.010541: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
102678          <idle>-0     (-----) [000] dnh2 82317.010565: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
102679          <idle>-0     (-----) [000] .n.1 82317.010571: cpu_idle: state=4294967295 cpu_id=0
102680<...>-770 ( 770) [005] ...1 82317.010575: tracing_mark_write: E|770
102681          <idle>-0     (-----) [000] d..2 82317.010579: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
102682<...>-770 ( 770) [005] .... 82317.010582: binder_transaction: transaction=1571833 dest_node=0 dest_proc=27550 dest_thread=27810 reply=1 flags=0x0 code=0x0
102683<...>-770 ( 770) [005] .... 82317.010584: binder_transaction_alloc_buf: transaction=1571833 data_size=168 offsets_size=32
102684<...>-770 ( 770) [005] .... 82317.010590: binder_set_priority: proc=770 thread=770 old=110 => new=120 desired=120
102685<...>-770 ( 770) [005] d..2 82317.010624: sched_switch: [email protected] prev_pid=770 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27810 next_prio=110
102686<...>-581 ( 571) [000] d..2 82317.010633: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102687           <...>-27810 (-----) [005] .... 82317.010634: binder_transaction_received: transaction=1571833
102688          <idle>-0     (-----) [000] d..1 82317.010642: cpu_idle: state=0 cpu_id=0
102689           <...>-27810 (-----) [005] ...1 82317.010913: tracing_mark_write: B|27550|[SW][NN_LI_PE]StepExecutor::startComputeOnDevice::execute
102690           <...>-27810 (-----) [005] ...1 82317.010922: tracing_mark_write: B|27550|HIDL::IPreparedModel::execute::client
102691           <...>-27810 (-----) [005] ...1 82317.010927: tracing_mark_write: E|27550
102692           <...>-27810 (-----) [005] .... 82317.010990: binder_transaction: transaction=1571834 dest_node=1569113 dest_proc=788 dest_thread=0 reply=0 flags=0x10 code=0x1
102693           <...>-27810 (-----) [005] .... 82317.010993: binder_transaction_alloc_buf: transaction=1571834 data_size=556 offsets_size=104
102694           <...>-27810 (-----) [005] ...2 82317.011006: binder_set_priority: proc=788 thread=5340 old=120 => new=110 desired=110
102695           <...>-27810 (-----) [005] d..4 82317.011009: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102696           <...>-27810 (-----) [005] dn.5 82317.011021: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102697           <...>-27810 (-----) [005] d..2 82317.011028: sched_switch: prev_comm=id.nn.benchmark prev_pid=27810 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
102698<...>-5340 ( 788) [005] .... 82317.011037: binder_transaction_received: transaction=1571834
102699<...>-5340 ( 788) [005] ...1 82317.011082: tracing_mark_write: B|788|HIDL::IPreparedModel::execute::server
102700<...>-5340 ( 788) [005] d..2 82317.011127: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
102701<...>-5340 ( 788) [005] d..2 82317.011164: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27810 next_prio=110
102702          <idle>-0     (-----) [000] dnh2 82317.011166: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
102703          <idle>-0     (-----) [000] .n.1 82317.011172: cpu_idle: state=4294967295 cpu_id=0
102704          <idle>-0     (-----) [000] d..2 82317.011180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
102705           <...>-27810 (-----) [005] d..2 82317.011186: sched_switch: prev_comm=id.nn.benchmark prev_pid=27810 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
102706          <idle>-0     (-----) [005] d..1 82317.011204: cpu_idle: state=0 cpu_id=5
102707<...>-87 ( 87) [000] d..2 82317.011219: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102708          <idle>-0     (-----) [000] d..1 82317.011226: cpu_idle: state=0 cpu_id=0
102709          <idle>-0     (-----) [002] d.h4 82317.011232: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102710          <idle>-0     (-----) [002] dnh5 82317.011249: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102711          <idle>-0     (-----) [002] .n.1 82317.011258: cpu_idle: state=4294967295 cpu_id=2
102712          <idle>-0     (-----) [002] d..2 82317.011267: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
102713<...>-86 ( 86) [002] d..2 82317.011300: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102714          <idle>-0     (-----) [002] d.h5 82317.011321: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102715          <idle>-0     (-----) [005] dnh2 82317.011342: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102716          <idle>-0     (-----) [005] .n.1 82317.011347: cpu_idle: state=4294967295 cpu_id=5
102717          <idle>-0     (-----) [005] d..2 82317.011355: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
102718          <idle>-0     (-----) [002] d..1 82317.011361: cpu_idle: state=0 cpu_id=2
102719<...>-5340 ( 788) [005] d..1 82317.011410: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=003
102720          <idle>-0     (-----) [000] dnh2 82317.011445: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
102721          <idle>-0     (-----) [000] .n.1 82317.011451: cpu_idle: state=4294967295 cpu_id=0
102722          <idle>-0     (-----) [000] d..2 82317.011458: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
102723 neuralnetworks@-13088 (  788) [000] d..2 82317.011507: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102724          <idle>-0     (-----) [000] d..1 82317.011516: cpu_idle: state=0 cpu_id=0
102725<...>-5340 ( 788) [005] d..2 82317.011571: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
102726          <idle>-0     (-----) [000] dnh2 82317.011592: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
102727<...>-5340 ( 788) [005] d..2 82317.011596: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
102728          <idle>-0     (-----) [000] .n.1 82317.011598: cpu_idle: state=4294967295 cpu_id=0
102729          <idle>-0     (-----) [000] d..2 82317.011606: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
102730          <idle>-0     (-----) [005] d..1 82317.011610: cpu_idle: state=0 cpu_id=5
102731<...>-87 ( 87) [000] d..2 82317.011642: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102732          <idle>-0     (-----) [002] d.h4 82317.011643: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102733          <idle>-0     (-----) [000] d..1 82317.011649: cpu_idle: state=0 cpu_id=0
102734          <idle>-0     (-----) [002] dnh5 82317.011653: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=002
102735          <idle>-0     (-----) [002] .n.1 82317.011660: cpu_idle: state=4294967295 cpu_id=2
102736          <idle>-0     (-----) [002] d..2 82317.011669: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=smem_native_cds next_pid=86 next_prio=120
102737<...>-86 ( 86) [002] d..2 82317.011699: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102738          <idle>-0     (-----) [002] d..1 82317.011706: cpu_idle: state=0 cpu_id=2
102739          <idle>-0     (-----) [002] d.s2 82317.011806: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
102740          <idle>-0     (-----) [002] dns3 82317.011860: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
102741          <idle>-0     (-----) [002] .n.1 82317.011879: cpu_idle: state=4294967295 cpu_id=2
102742          <idle>-0     (-----) [000] d.H3 82317.011882: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
102743          <idle>-0     (-----) [002] d..2 82317.011889: 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
102744     rcu_preempt-7     (    7) [002] d..2 82317.011901: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
102745          <idle>-0     (-----) [000] d.H4 82317.011901: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
102746          <idle>-0     (-----) [001] .n.1 82317.011907: cpu_idle: state=4294967295 cpu_id=1
102747          <idle>-0     (-----) [000] d.s2 82317.011913: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
102748     rcu_preempt-7     (    7) [002] d..3 82317.011919: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
102749          <idle>-0     (-----) [001] d..2 82317.011926: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
102750          <idle>-0     (-----) [000] dns3 82317.011929: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
102751     rcu_preempt-7     (    7) [002] d..2 82317.011930: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
102752          <idle>-0     (-----) [000] .n.1 82317.011940: cpu_idle: state=4294967295 cpu_id=0
102753          <idle>-0     (-----) [000] d..2 82317.011949: 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
102754         sugov:0-576   (  576) [001] .... 82317.011956: clk_set_rate: pwrcl_clk 748800000
102755<...>-8 ( 8) [000] d..2 82317.011957: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=002
102756     rcu_preempt-7     (    7) [002] d..3 82317.011970: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
102757         sugov:0-576   (  576) [001] .... 82317.011974: clk_set_rate: cpu3_pwrcl_clk 902400000
102758         sugov:0-576   (  576) [001] .... 82317.011984: clk_set_rate: cpu2_pwrcl_clk 902400000
102759     rcu_preempt-7     (    7) [002] d..2 82317.011986: 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
102760         sugov:0-576   (  576) [001] .... 82317.011991: clk_set_rate: cpu1_pwrcl_clk 902400000
102761         rcuop/4-45    (   45) [002] d..2 82317.011993: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
102762         sugov:0-576   (  576) [001] .... 82317.011999: clk_set_rate: cpu0_pwrcl_clk 748800000
102763<...>-8 ( 8) [000] d..3 82317.012002: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=001
102764         rcuop/4-45    (   45) [002] d..3 82317.012036: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=002
102765<...>-8 ( 8) [000] d..2 82317.012039: 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
102766         rcuop/4-45    (   45) [002] d..2 82317.012050: 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
102767          <idle>-0     (-----) [000] d..1 82317.012057: cpu_idle: state=0 cpu_id=0
102768         sugov:0-576   (  576) [001] .... 82317.012112: cpu_frequency: state=748800 cpu_id=0
102769         sugov:0-576   (  576) [001] .... 82317.012134: cpu_frequency: state=748800 cpu_id=1
102770         sugov:0-576   (  576) [001] .... 82317.012140: cpu_frequency: state=748800 cpu_id=2
102771         sugov:0-576   (  576) [001] .... 82317.012145: cpu_frequency: state=748800 cpu_id=3
102772         sugov:0-576   (  576) [001] d..2 82317.012167: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
102773         rcuop/2-29    (   29) [001] d..2 82317.012175: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
102774         rcuop/5-53    (   53) [002] d..2 82317.012180: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102775          <idle>-0     (-----) [002] d..1 82317.012196: cpu_idle: state=0 cpu_id=2
102776         rcuop/2-29    (   29) [001] d..3 82317.012208: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
102777          <idle>-0     (-----) [002] .n.1 82317.012214: cpu_idle: state=4294967295 cpu_id=2
102778         rcuop/2-29    (   29) [001] d..2 82317.012222: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
102779          <idle>-0     (-----) [002] d..2 82317.012228: 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
102780<...>-46 ( 46) [001] d..2 82317.012236: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
102781<...>-46 ( 46) [001] d..3 82317.012251: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
102782         rcuop/3-37    (   37) [002] d..2 82317.012257: 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
102783          <idle>-0     (-----) [000] .n.1 82317.012259: cpu_idle: state=4294967295 cpu_id=0
102784          <idle>-0     (-----) [002] d..1 82317.012269: cpu_idle: state=0 cpu_id=2
102785          <idle>-0     (-----) [000] d..2 82317.012272: 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
102786<...>-46 ( 46) [001] d..2 82317.012277: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102787          <idle>-0     (-----) [001] d..1 82317.012291: cpu_idle: state=0 cpu_id=1
102788<...>-8 ( 8) [000] d..2 82317.012298: 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
102789          <idle>-0     (-----) [000] d..1 82317.012310: cpu_idle: state=0 cpu_id=0
102790          <idle>-0     (-----) [000] d.h5 82317.012576: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
102791          <idle>-0     (-----) [000] dnh6 82317.012593: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
102792          <idle>-0     (-----) [000] dnh5 82317.012597: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
102793          <idle>-0     (-----) [000] dnh6 82317.012611: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
102794          <idle>-0     (-----) [001] .n.1 82317.012618: cpu_idle: state=4294967295 cpu_id=1
102795          <idle>-0     (-----) [000] .n.1 82317.012625: cpu_idle: state=4294967295 cpu_id=0
102796          <idle>-0     (-----) [001] d..2 82317.012630: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
102797          <idle>-0     (-----) [000] d..2 82317.012637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
102798  crtc_event:111-322   (  322) [000] d..2 82317.012670: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102799          <idle>-0     (-----) [000] d..1 82317.012681: cpu_idle: state=0 cpu_id=0
102800 crtc_commit:111-321   (  321) [001] d..2 82317.012780: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
102801          <idle>-0     (-----) [001] d..1 82317.012789: cpu_idle: state=0 cpu_id=1
102802          <idle>-0     (-----) [002] d.h4 82317.013387: sched_waking: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102803          <idle>-0     (-----) [005] dnh2 82317.013412: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=110 target_cpu=005
102804          <idle>-0     (-----) [005] .n.1 82317.013417: cpu_idle: state=4294967295 cpu_id=5
102805          <idle>-0     (-----) [005] d..2 82317.013426: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=110
102806          <idle>-0     (-----) [002] ...1 82317.013431: cpu_idle: state=4294967295 cpu_id=2
102807          <idle>-0     (-----) [002] d..1 82317.013437: cpu_idle: state=0 cpu_id=2
102808<...>-5340 ( 788) [005] d..1 82317.013478: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
102809          <idle>-0     (-----) [000] dnh2 82317.013508: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
102810          <idle>-0     (-----) [000] .n.1 82317.013515: cpu_idle: state=4294967295 cpu_id=0
102811          <idle>-0     (-----) [000] d..2 82317.013558: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
102812<...>-5340 ( 788) [005] ...1 82317.013574: tracing_mark_write: B|788|HIDL::IExecutionCallback::notify::client
102813<...>-5340 ( 788) [005] ...1 82317.013578: tracing_mark_write: E|788
102814<...>-5340 ( 788) [005] .... 82317.013595: binder_transaction: transaction=1571837 dest_node=1571835 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x1
102815<...>-5340 ( 788) [005] .... 82317.013598: binder_transaction_alloc_buf: transaction=1571837 data_size=60 offsets_size=0
102816 neuralnetworks@-13088 (  788) [000] d..2 82317.013600: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102817<...>-5340 ( 788) [005] d..4 82317.013601: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
102818          <idle>-0     (-----) [000] d..1 82317.013612: cpu_idle: state=0 cpu_id=0
102819<...>-5340 ( 788) [005] d..5 82317.013614: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
102820          <idle>-0     (-----) [004] .n.1 82317.013620: cpu_idle: state=4294967295 cpu_id=4
102821          <idle>-0     (-----) [004] d..2 82317.013628: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
102822           <...>-27571 (-----) [004] .... 82317.013633: binder_transaction_received: transaction=1571837
102823<...>-5340 ( 788) [005] ...1 82317.013636: tracing_mark_write: E|788
102824<...>-5340 ( 788) [005] .... 82317.013642: binder_transaction: transaction=1571838 dest_node=0 dest_proc=27550 dest_thread=27810 reply=1 flags=0x0 code=0x0
102825<...>-5340 ( 788) [005] .... 82317.013644: binder_transaction_alloc_buf: transaction=1571838 data_size=8 offsets_size=0
102826<...>-5340 ( 788) [005] d..2 82317.013646: sched_waking: comm=id.nn.benchmark pid=27810 prio=110 target_cpu=005
102827           <...>-27571 (-----) [004] ...1 82317.013652: tracing_mark_write: B|27550|HIDL::IExecutionCallback::notify::server
102828<...>-5340 ( 788) [005] d..3 82317.013654: sched_wakeup: comm=id.nn.benchmark pid=27810 prio=110 target_cpu=005
102829<...>-5340 ( 788) [005] .... 82317.013656: binder_set_priority: proc=788 thread=5340 old=110 => new=120 desired=120
102830           <...>-27571 (-----) [004] ...1 82317.013659: tracing_mark_write: E|27550
102831           <...>-27571 (-----) [004] d..2 82317.013693: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102832<...>-5340 ( 788) [005] d..2 82317.013698: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27810 next_prio=110
102833          <idle>-0     (-----) [004] d..1 82317.013703: cpu_idle: state=0 cpu_id=4
102834           <...>-27810 (-----) [005] .... 82317.013708: binder_transaction_received: transaction=1571838
102835           <...>-27810 (-----) [005] ...1 82317.013745: tracing_mark_write: B|27550|[SW][NN_LR_PE]StepExecutor::startComputeOnDevice::waited
102836           <...>-27810 (-----) [005] ...1 82317.013751: tracing_mark_write: B|27550|[SW][NN_LR_PR]StepExecutor::startComputeOnDevice
102837           <...>-27810 (-----) [005] ...1 82317.013777: tracing_mark_write: E|27550
102838           <...>-27810 (-----) [005] ...1 82317.013781: tracing_mark_write: E|27550
102839           <...>-27810 (-----) [005] ...1 82317.013785: tracing_mark_write: E|27550
102840           <...>-27810 (-----) [005] ...1 82317.013976: tracing_mark_write: E|27550
102841           <...>-27810 (-----) [005] d..1 82317.013989: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102842           <...>-27810 (-----) [005] d..2 82317.014007: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102843          <idle>-0     (-----) [004] .n.1 82317.014012: cpu_idle: state=4294967295 cpu_id=4
102844          <idle>-0     (-----) [004] d..2 82317.014020: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
102845           <...>-27550 (-----) [004] d..2 82317.014036: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102846          <idle>-0     (-----) [004] d..1 82317.014042: cpu_idle: state=0 cpu_id=4
102847           <...>-27810 (-----) [005] d..1 82317.014097: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102848           <...>-27810 (-----) [005] d..2 82317.014106: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
102849          <idle>-0     (-----) [004] .n.1 82317.014111: cpu_idle: state=4294967295 cpu_id=4
102850          <idle>-0     (-----) [004] d..2 82317.014117: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
102851           <...>-27810 (-----) [005] d..2 82317.014144: sched_switch: prev_comm=id.nn.benchmark prev_pid=27810 prev_prio=110 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
102852           <...>-27550 (-----) [004] ...1 82317.014149: tracing_mark_write: E|27550
102853           <...>-27550 (-----) [004] ...1 82317.014153: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksEvent_free
102854           <...>-27550 (-----) [004] ...1 82317.014159: tracing_mark_write: E|27550
102855           <...>-27550 (-----) [004] ...1 82317.014162: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksExecution_free
102856          <idle>-0     (-----) [005] d..1 82317.014164: cpu_idle: state=0 cpu_id=5
102857           <...>-27550 (-----) [004] ...1 82317.014167: tracing_mark_write: E|27550
102858           <...>-27550 (-----) [004] ...1 82317.014171: tracing_mark_write: E|27550
102859           <...>-27550 (-----) [004] d..1 82317.014798: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=004
102860           <...>-27550 (-----) [004] d..2 82317.014823: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=005
102861          <idle>-0     (-----) [005] .n.1 82317.014829: cpu_idle: state=4294967295 cpu_id=5
102862          <idle>-0     (-----) [005] d..2 82317.014850: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
102863          <idle>-0     (-----) [000] d.h5 82317.014918: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
102864          <idle>-0     (-----) [000] d.h6 82317.014935: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
102865          <idle>-0     (-----) [001] .n.1 82317.014942: cpu_idle: state=4294967295 cpu_id=1
102866          <idle>-0     (-----) [001] d..2 82317.014950: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
102867          <idle>-0     (-----) [000] ...1 82317.014950: cpu_idle: state=4294967295 cpu_id=0
102868          <idle>-0     (-----) [000] d..1 82317.014956: cpu_idle: state=0 cpu_id=0
102869 crtc_commit:111-321   (  321) [001] d..2 82317.015026: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102870          <idle>-0     (-----) [001] d..1 82317.015034: cpu_idle: state=0 cpu_id=1
102871          <idle>-0     (-----) [001] d.s3 82317.015135: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
102872          <idle>-0     (-----) [001] d.s4 82317.015156: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
102873          <idle>-0     (-----) [001] ...1 82317.015185: cpu_idle: state=4294967295 cpu_id=1
102874          <idle>-0     (-----) [001] d..1 82317.015191: cpu_idle: state=0 cpu_id=1
102875          <idle>-0     (-----) [000] .n.1 82317.015224: cpu_idle: state=4294967295 cpu_id=0
102876          <idle>-0     (-----) [000] d..2 82317.015238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
102877  crtc_event:111-322   (  322) [000] d..2 82317.015277: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102878          <idle>-0     (-----) [000] d..1 82317.015286: cpu_idle: state=0 cpu_id=0
102879           <...>-27555 (-----) [005] d..2 82317.015405: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
102880          <idle>-0     (-----) [005] d..1 82317.015420: cpu_idle: state=0 cpu_id=5
102881           <...>-27550 (-----) [004] d..1 82317.015694: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=005
102882           <...>-27550 (-----) [004] d..2 82317.015709: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=005
102883          <idle>-0     (-----) [005] .n.1 82317.015715: cpu_idle: state=4294967295 cpu_id=5
102884          <idle>-0     (-----) [005] d..2 82317.015724: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
102885           <...>-27550 (-----) [004] ...1 82317.016398: tracing_mark_write: E|27550
102886           <...>-27550 (-----) [004] d..2 82317.016622: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
102887          <idle>-0     (-----) [000] dnh2 82317.016652: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
102888          <idle>-0     (-----) [000] .n.1 82317.016659: cpu_idle: state=4294967295 cpu_id=0
102889          <idle>-0     (-----) [000] d..2 82317.016668: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
102890           <...>-27550 (-----) [004] d..2 82317.016770: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
102891<...>-581 ( 571) [000] d..2 82317.016770: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102892          <idle>-0     (-----) [000] d..1 82317.016781: cpu_idle: state=0 cpu_id=0
102893          <idle>-0     (-----) [000] dnh2 82317.016797: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
102894          <idle>-0     (-----) [000] .n.1 82317.016803: cpu_idle: state=4294967295 cpu_id=0
102895           <...>-27550 (-----) [004] d..1 82317.016810: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=005
102896          <idle>-0     (-----) [000] d..2 82317.016812: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
102897           <...>-27550 (-----) [004] d..2 82317.016833: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
102898          <idle>-0     (-----) [006] .n.1 82317.016839: cpu_idle: state=4294967295 cpu_id=6
102899          <idle>-0     (-----) [006] d..2 82317.016851: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
102900<...>-581 ( 571) [000] d..2 82317.016875: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102901          <idle>-0     (-----) [000] d..1 82317.016885: cpu_idle: state=0 cpu_id=0
102902           <...>-27566 (-----) [006] ...1 82317.016898: tracing_mark_write: E|27550
102903           <...>-27550 (-----) [004] d..2 82317.016954: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102904          <idle>-0     (-----) [001] d.h2 82317.016971: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
102905          <idle>-0     (-----) [004] d..1 82317.016972: cpu_idle: state=0 cpu_id=4
102906          <idle>-0     (-----) [001] dnh3 82317.016986: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
102907          <idle>-0     (-----) [001] .n.1 82317.016994: cpu_idle: state=4294967295 cpu_id=1
102908          <idle>-0     (-----) [001] d..2 82317.017005: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
102909        DispSync-8879  ( 8858) [001] d..1 82317.017034: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
102910        DispSync-8879  ( 8858) [001] d..2 82317.017051: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
102911          <idle>-0     (-----) [003] .n.1 82317.017058: cpu_idle: state=4294967295 cpu_id=3
102912          <idle>-0     (-----) [003] d..2 82317.017072: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
102913        DispSync-8879  ( 8858) [001] d..2 82317.017088: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102914          <idle>-0     (-----) [001] d..1 82317.017100: cpu_idle: state=0 cpu_id=1
102915  appEventThread-8881  ( 8858) [003] d..3 82317.017136: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
102916  appEventThread-8881  ( 8858) [003] d..4 82317.017161: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
102917          <idle>-0     (-----) [000] .n.1 82317.017167: cpu_idle: state=4294967295 cpu_id=0
102918          <idle>-0     (-----) [000] d..2 82317.017177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
102919  appEventThread-8881  ( 8858) [003] d..2 82317.017208: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102920          <idle>-0     (-----) [003] d..1 82317.017226: cpu_idle: state=0 cpu_id=3
102921           <...>-27566 (-----) [006] .... 82317.017259: binder_transaction: transaction=1571839 dest_node=1568281 dest_proc=27541 dest_thread=0 reply=0 flags=0x10 code=0x1
102922           <...>-27566 (-----) [006] .... 82317.017263: binder_transaction_alloc_buf: transaction=1571839 data_size=584 offsets_size=0
102923           <...>-27566 (-----) [006] ...2 82317.017269: binder_set_priority: proc=27541 thread=27549 old=120 => new=112 desired=112
102924           <...>-27566 (-----) [006] d..4 82317.017272: sched_waking: comm=Binder:27541_2 pid=27549 prio=112 target_cpu=006
102925           <...>-27566 (-----) [006] d..5 82317.017286: sched_wakeup: comm=Binder:27541_2 pid=27549 prio=112 target_cpu=006
102926           <...>-27566 (-----) [006] d..2 82317.017298: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=Binder:27541_2 next_pid=27549 next_prio=112
102927           <...>-27549 (-----) [006] .... 82317.017310: binder_transaction_received: transaction=1571839
102928<...>-9105 ( 9105) [000] .... 82317.017491: binder_transaction: transaction=1571840 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
102929<...>-9105 ( 9105) [000] .... 82317.017499: binder_transaction_alloc_buf: transaction=1571840 data_size=80 offsets_size=0
102930<...>-9105 ( 9105) [000] d..4 82317.017506: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
102931<...>-9105 ( 9105) [000] d..5 82317.017534: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
102932          <idle>-0     (-----) [001] .n.1 82317.017540: cpu_idle: state=4294967295 cpu_id=1
102933          <idle>-0     (-----) [001] d..2 82317.017554: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
102934<...>-13083 ( 8858) [001] .... 82317.017563: binder_transaction_received: transaction=1571840
102935<...>-9105 ( 9105) [000] d..3 82317.017577: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
102936<...>-13083 ( 8858) [001] d..1 82317.017605: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
102937<...>-9105 ( 9105) [000] d..4 82317.017608: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
102938          <idle>-0     (-----) [002] .n.1 82317.017613: cpu_idle: state=4294967295 cpu_id=2
102939<...>-13083 ( 8858) [001] d..2 82317.017623: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
102940          <idle>-0     (-----) [002] d..2 82317.017629: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
102941          <idle>-0     (-----) [003] .n.1 82317.017630: cpu_idle: state=4294967295 cpu_id=3
102942          <idle>-0     (-----) [003] d..2 82317.017641: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
102943<...>-13083 ( 8858) [001] d..2 82317.017673: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
102944          <idle>-0     (-----) [001] d..1 82317.017687: cpu_idle: state=0 cpu_id=1
102945  appEventThread-8881  ( 8858) [003] d..2 82317.017687: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
102946          <idle>-0     (-----) [003] d..1 82317.017700: cpu_idle: state=0 cpu_id=3
102947    RenderThread-9436  ( 9105) [002] d..2 82317.017708: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
102948          <idle>-0     (-----) [002] d..1 82317.017719: cpu_idle: state=0 cpu_id=2
102949<...>-9105 ( 9105) [000] d..3 82317.017746: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
102950<...>-9105 ( 9105) [000] d..4 82317.017768: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
102951          <idle>-0     (-----) [002] .n.1 82317.017774: cpu_idle: state=4294967295 cpu_id=2
102952          <idle>-0     (-----) [002] d..2 82317.017785: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
102953<...>-9105 ( 9105) [000] d..2 82317.017808: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102954          <idle>-0     (-----) [000] d..1 82317.017843: cpu_idle: state=0 cpu_id=0
102955           <...>-27555 (-----) [005] d..1 82317.017896: sched_waking: comm=Profile Saver pid=27565 prio=129 target_cpu=003
102956           <...>-27555 (-----) [005] d..2 82317.017925: sched_wakeup: comm=Profile Saver pid=27565 prio=129 target_cpu=004
102957          <idle>-0     (-----) [004] .n.1 82317.017932: cpu_idle: state=4294967295 cpu_id=4
102958    RenderThread-9436  ( 9105) [002] d..1 82317.017955: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
102959          <idle>-0     (-----) [004] d..2 82317.017964: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Profile Saver next_pid=27565 next_prio=129
102960    RenderThread-9436  ( 9105) [002] d..2 82317.017976: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
102961          <idle>-0     (-----) [000] .n.1 82317.017983: cpu_idle: state=4294967295 cpu_id=0
102962           <...>-27555 (-----) [005] d..2 82317.017992: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
102963          <idle>-0     (-----) [000] d..2 82317.017994: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
102964           <...>-27565 (-----) [004] d..2 82317.017997: sched_switch: prev_comm=Profile Saver prev_pid=27565 prev_prio=129 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
102965          <idle>-0     (-----) [004] d..1 82317.018006: cpu_idle: state=0 cpu_id=4
102966          <idle>-0     (-----) [005] d..1 82317.018007: cpu_idle: state=0 cpu_id=5
102967           <...>-27549 (-----) [006] d..2 82317.018051: sched_waking: comm=shell svc 27539 pid=27540 prio=120 target_cpu=002
102968    RenderThread-9436  ( 9105) [002] .... 82317.018063: binder_transaction: transaction=1571841 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
102969    RenderThread-9436  ( 9105) [002] .... 82317.018069: binder_transaction_alloc_buf: transaction=1571841 data_size=104 offsets_size=0
102970    RenderThread-9436  ( 9105) [002] d..4 82317.018075: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
102971           <...>-27549 (-----) [006] d..3 82317.018076: sched_wakeup: comm=shell svc 27539 pid=27540 prio=120 target_cpu=006
102972<...>-9105 ( 9105) [000] d..2 82317.018084: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
102973          <idle>-0     (-----) [000] d..1 82317.018096: cpu_idle: state=0 cpu_id=0
102974    RenderThread-9436  ( 9105) [002] d..5 82317.018122: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
102975    RenderThread-9436  ( 9105) [002] d..2 82317.018139: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
102976<...>-13083 ( 8858) [002] .... 82317.018150: binder_transaction_received: transaction=1571841
102977<...>-13083 ( 8858) [002] .... 82317.018249: binder_transaction: transaction=1571842 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
102978<...>-13083 ( 8858) [002] .... 82317.018254: binder_transaction_alloc_buf: transaction=1571842 data_size=52 offsets_size=8
102979<...>-13083 ( 8858) [002] d..2 82317.018268: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
102980<...>-13083 ( 8858) [002] d..3 82317.018283: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
102981<...>-13083 ( 8858) [002] d..2 82317.018332: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
102982    RenderThread-9436  ( 9105) [002] .... 82317.018340: binder_transaction_received: transaction=1571842
102983          <idle>-0     (-----) [000] d.s2 82317.018471: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
102984           <...>-27549 (-----) [006] d.s2 82317.018476: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
102985    RenderThread-9436  ( 9105) [002] d.s1 82317.018480: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
102986          <idle>-0     (-----) [000] dns3 82317.018491: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
102987          <idle>-0     (-----) [000] .n.1 82317.018512: cpu_idle: state=4294967295 cpu_id=0
102988          <idle>-0     (-----) [000] d..2 82317.018528: 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
102989    RenderThread-9436  ( 9105) [002] d.s2 82317.018537: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
102990    RenderThread-9436  ( 9105) [002] d.H2 82317.018548: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
102991<...>-8 ( 8) [000] d..2 82317.018553: 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
102992     rcu_preempt-7     (    7) [000] d..2 82317.018593: 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
102993          <idle>-0     (-----) [000] d..1 82317.018608: cpu_idle: state=0 cpu_id=0
102994           <...>-27549 (-----) [006] d..1 82317.018974: sched_waking: comm=main pid=27541 prio=120 target_cpu=006
102995          <idle>-0     (-----) [000] dnh2 82317.019048: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=000
102996          <idle>-0     (-----) [000] .n.1 82317.019055: cpu_idle: state=4294967295 cpu_id=0
102997          <idle>-0     (-----) [000] d..2 82317.019067: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
102998           <...>-27549 (-----) [006] .... 82317.019135: binder_transaction: transaction=1571843 dest_node=0 dest_proc=27550 dest_thread=27566 reply=1 flags=0x0 code=0x0
102999           <...>-27549 (-----) [006] .... 82317.019139: binder_transaction_alloc_buf: transaction=1571843 data_size=4 offsets_size=0
103000           <...>-27549 (-----) [006] d..2 82317.019142: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
103001           <...>-27549 (-----) [006] d..3 82317.019162: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=004
103002           <...>-27549 (-----) [006] .... 82317.019165: binder_set_priority: proc=27541 thread=27549 old=112 => new=120 desired=120
103003          <idle>-0     (-----) [004] .n.1 82317.019167: cpu_idle: state=4294967295 cpu_id=4
103004           <...>-27541 (-----) [000] .... 82317.019171: binder_transaction: transaction=1571844 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
103005          <idle>-0     (-----) [004] d..2 82317.019176: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
103006           <...>-27549 (-----) [006] d..2 82317.019178: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27539 next_pid=27540 next_prio=120
103007           <...>-27541 (-----) [000] .... 82317.019178: binder_transaction_alloc_buf: transaction=1571844 data_size=0 offsets_size=0
103008           <...>-27566 (-----) [004] .... 82317.019183: binder_transaction_received: transaction=1571843
103009           <...>-27541 (-----) [000] d..4 82317.019185: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
103010           <...>-27541 (-----) [000] d..5 82317.019218: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
103011           <...>-27540 (-----) [006] d..2 82317.019242: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
103012           <...>-27541 (-----) [000] d..2 82317.019281: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
103013<...>-9062 ( 8943) [000] .... 82317.019294: binder_transaction_received: transaction=1571844
103014          <idle>-0     (-----) [003] dnh2 82317.019312: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
103015           <...>-27540 (-----) [006] d..2 82317.019313: sched_switch: prev_comm=shell svc 27539 prev_pid=27540 prev_prio=120 prev_state=S ==> next_comm=Binder:27541_2 next_pid=27549 next_prio=120
103016          <idle>-0     (-----) [003] .n.1 82317.019320: cpu_idle: state=4294967295 cpu_id=3
103017          <idle>-0     (-----) [003] d..2 82317.019333: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
103018<...>-9062 ( 8943) [000] .... 82317.019351: binder_transaction: transaction=1571845 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
103019<...>-9062 ( 8943) [000] .... 82317.019357: binder_transaction_alloc_buf: transaction=1571845 data_size=4 offsets_size=0
103020           <...>-27549 (-----) [006] d..2 82317.019359: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
103021<...>-9062 ( 8943) [000] d..2 82317.019361: sched_waking: comm=main pid=27541 prio=120 target_cpu=000
103022          <idle>-0     (-----) [006] d..1 82317.019374: cpu_idle: state=0 cpu_id=6
103023<...>-9062 ( 8943) [000] d..3 82317.019375: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=000
103024           <...>-27566 (-----) [004] .... 82317.019415: binder_transaction: transaction=1571846 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xe
103025<...>-9062 ( 8943) [000] d..2 82317.019416: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=main next_pid=27541 next_prio=120
103026           <...>-27566 (-----) [004] .... 82317.019420: binder_transaction_alloc_buf: transaction=1571846 data_size=112 offsets_size=8
103027           <...>-27541 (-----) [000] .... 82317.019424: binder_transaction_received: transaction=1571845
103028           <...>-27566 (-----) [004] ...2 82317.019430: binder_set_priority: proc=8943 thread=9062 old=120 => new=112 desired=112
103029           <...>-27566 (-----) [004] d..4 82317.019433: sched_waking: comm=Binder:8943_4 pid=9062 prio=112 target_cpu=000
103030           <...>-27566 (-----) [004] d..5 82317.019457: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=112 target_cpu=006
103031          <idle>-0     (-----) [006] .n.1 82317.019463: cpu_idle: state=4294967295 cpu_id=6
103032          <idle>-0     (-----) [006] d..2 82317.019492: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=112
103033<...>-9062 ( 8943) [006] .... 82317.019502: binder_transaction_received: transaction=1571846
103034           <...>-27566 (-----) [004] d..2 82317.019505: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103035           <...>-27541 (-----) [000] d..2 82317.019512: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103036          <idle>-0     (-----) [004] d..1 82317.019517: cpu_idle: state=0 cpu_id=4
103037          <idle>-0     (-----) [000] d..1 82317.019530: cpu_idle: state=0 cpu_id=0
103038            adbd-960   (  960) [003] d..1 82317.019552: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=007
103039            adbd-960   (  960) [003] d..2 82317.019625: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
103040    RenderThread-9436  ( 9105) [002] d..2 82317.019647: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
103041  kworker/u16:15-1311  ( 1311) [002] d.h1 82317.019734: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
103042  kworker/u16:15-1311  ( 1311) [002] d.h2 82317.019758: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
103043  kworker/u16:15-1311  ( 1311) [002] d.h2 82317.019768: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
103044<...>-9062 ( 8943) [006] d..3 82317.019779: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=002
103045  kworker/u16:15-1311  ( 1311) [002] .... 82317.019783: clk_set_rate: l3_cluster0_vote_clk 300000000
103046          <idle>-0     (-----) [000] dnh3 82317.019794: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
103047            adbd-960   (  960) [003] d..2 82317.019804: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
103048          <idle>-0     (-----) [001] dnh2 82317.019817: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=001
103049          <idle>-0     (-----) [001] .n.1 82317.019824: cpu_idle: state=4294967295 cpu_id=1
103050          <idle>-0     (-----) [001] d..2 82317.019837: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
103051          <idle>-0     (-----) [000] dnh4 82317.019839: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
103052  kworker/u16:15-1311  ( 1311) [002] d..2 82317.019851: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
103053          <idle>-0     (-----) [000] .n.1 82317.019870: cpu_idle: state=4294967295 cpu_id=0
103054 kgsl_worker_thr-258   (  258) [002] d..2 82317.019876: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
103055          <idle>-0     (-----) [000] d..2 82317.019886: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
103056    RenderThread-9436  ( 9105) [000] d..1 82317.019909: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
103057<...>-9062 ( 8943) [006] d..2 82317.019931: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
103058    RenderThread-9436  ( 9105) [000] d..2 82317.019935: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
103059            adbd-24055 (  960) [003] d.h2 82317.019944: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
103060<...>-8961 ( 8943) [001] d..2 82317.019945: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
103061 kgsl_worker_thr-258   (  258) [001] d.h1 82317.019968: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
103062            adbd-24055 (  960) [003] d.h3 82317.019990: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
103063            adbd-24055 (  960) [003] d..2 82317.020020: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103064 kgsl_worker_thr-258   (  258) [001] d..2 82317.020022: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
103065          <idle>-0     (-----) [003] d..1 82317.020039: cpu_idle: state=0 cpu_id=3
103066 kgsl_worker_thr-258   (  258) [001] d..3 82317.020051: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
103067          <idle>-0     (-----) [003] .n.1 82317.020057: cpu_idle: state=4294967295 cpu_id=3
103068          <idle>-0     (-----) [003] d..2 82317.020072: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
103069 kgsl_worker_thr-258   (  258) [001] d..2 82317.020073: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
103070  kworker/u16:15-1311  ( 1311) [002] d..2 82317.020082: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
103071          <idle>-0     (-----) [002] d..1 82317.020103: cpu_idle: state=0 cpu_id=2
103072   kworker/u17:1-570   (  570) [001] d.s4 82317.020120: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
103073   kworker/u17:1-570   (  570) [001] d.s5 82317.020132: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
103074   kworker/u17:1-570   (  570) [001] d.s5 82317.020141: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
103075          <idle>-0     (-----) [002] .n.1 82317.020149: cpu_idle: state=4294967295 cpu_id=2
103076          <idle>-0     (-----) [002] d..2 82317.020162: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
103077   kworker/u17:1-570   (  570) [001] d..2 82317.020169: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
103078   kworker/u17:1-570   (  570) [001] d..3 82317.020186: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
103079    RenderThread-9436  ( 9105) [000] .... 82317.020201: binder_transaction: transaction=1571847 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
103080    RenderThread-9436  ( 9105) [000] .... 82317.020212: binder_transaction_alloc_buf: transaction=1571847 data_size=192 offsets_size=8
103081   kworker/u17:1-570   (  570) [001] d..2 82317.020216: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
103082    RenderThread-9436  ( 9105) [000] d..4 82317.020224: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
103083    RenderThread-9436  ( 9105) [000] dn.5 82317.020249: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
103084     kworker/1:1-25249 (25249) [001] d..2 82317.020250: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
103085    RenderThread-9436  ( 9105) [000] d..2 82317.020261: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
103086     kworker/1:1-25249 (25249) [001] d..3 82317.020269: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
103087<...>-13083 ( 8858) [000] .... 82317.020270: binder_transaction_received: transaction=1571847
103088     kworker/1:1-25249 (25249) [001] d..2 82317.020291: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
103089  kworker/u16:13-1147  ( 1147) [003] d..2 82317.020293: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
103090<...>-581 ( 571) [001] d..2 82317.020409: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103091            adbd-24055 (  960) [003] d..2 82317.020410: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
103092  kworker/u16:15-1311  ( 1311) [002] d..2 82317.020424: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
103093    RenderThread-9436  ( 9105) [003] d.h4 82317.020437: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
103094          <idle>-0     (-----) [002] d..1 82317.020440: cpu_idle: state=0 cpu_id=2
103095    RenderThread-9436  ( 9105) [003] d.h5 82317.020455: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
103096<...>-13083 ( 8858) [000] .... 82317.020460: binder_transaction: transaction=1571848 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
103097<...>-13083 ( 8858) [000] .... 82317.020465: binder_transaction_alloc_buf: transaction=1571848 data_size=68 offsets_size=0
103098          <idle>-0     (-----) [001] dns3 82317.020474: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
103099    RenderThread-9436  ( 9105) [003] .... 82317.020477: binder_transaction_received: transaction=1571848
103100          <idle>-0     (-----) [001] dns4 82317.020487: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
103101          <idle>-0     (-----) [001] dns4 82317.020495: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
103102          <idle>-0     (-----) [002] .n.1 82317.020502: cpu_idle: state=4294967295 cpu_id=2
103103          <idle>-0     (-----) [001] d..2 82317.020513: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
103104          <idle>-0     (-----) [002] d..2 82317.020515: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
103105   kworker/u17:1-570   (  570) [001] d..2 82317.020529: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
103106<...>-13083 ( 8858) [000] d..2 82317.020530: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103107   kworker/u17:1-570   (  570) [001] d..3 82317.020540: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
103108          <idle>-0     (-----) [000] d..1 82317.020550: cpu_idle: state=0 cpu_id=0
103109   kworker/u17:1-570   (  570) [001] d..2 82317.020566: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
103110     kworker/1:1-25249 (25249) [001] d..2 82317.020578: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
103111  kworker/u16:15-1311  ( 1311) [002] .... 82317.020579: clk_set_rate: l3_cluster1_vote_clk 748800000
103112  kworker/u16:15-1311  ( 1311) [002] .... 82317.020585: clk_set_rate: l3_clk 748800000
103113     kworker/1:1-25249 (25249) [001] d..3 82317.020600: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
103114    RenderThread-9436  ( 9105) [003] d..2 82317.020612: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
103115  kworker/u16:15-1311  ( 1311) [002] d..2 82317.020640: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103116     kworker/1:1-25249 (25249) [001] d..2 82317.020645: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103117          <idle>-0     (-----) [002] d..1 82317.020657: cpu_idle: state=0 cpu_id=2
103118          <idle>-0     (-----) [001] d..1 82317.020664: cpu_idle: state=0 cpu_id=1
103119            adbd-24055 (  960) [003] d..2 82317.020678: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103120          <idle>-0     (-----) [003] d.h4 82317.020703: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
103121          <idle>-0     (-----) [003] d.h5 82317.020718: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
103122          <idle>-0     (-----) [001] .n.1 82317.020725: cpu_idle: state=4294967295 cpu_id=1
103123          <idle>-0     (-----) [001] d..2 82317.020737: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
103124          <idle>-0     (-----) [003] d..1 82317.020742: cpu_idle: state=0 cpu_id=3
103125   kworker/u17:1-570   (  570) [001] d..2 82317.020752: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
103126   kworker/u17:1-570   (  570) [001] d..3 82317.020763: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
103127   kworker/u17:1-570   (  570) [001] d..2 82317.020788: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
103128<...>-9062 ( 8943) [006] d..3 82317.020806: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=003
103129     kworker/1:1-25249 (25249) [001] d..2 82317.020808: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
103130          <idle>-0     (-----) [000] dnh2 82317.020843: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
103131          <idle>-0     (-----) [000] .n.1 82317.020857: cpu_idle: state=4294967295 cpu_id=0
103132     kworker/1:1-25249 (25249) [001] d..3 82317.020860: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=000
103133          <idle>-0     (-----) [000] d..2 82317.020871: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
103134     kworker/1:1-25249 (25249) [001] d..2 82317.020905: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
103135<...>-9039 ( 8943) [000] d..2 82317.020941: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103136            adbd-24054 (  960) [001] d..2 82317.020942: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
103137          <idle>-0     (-----) [000] d..1 82317.020956: cpu_idle: state=0 cpu_id=0
103138            adbd-24054 (  960) [001] d..3 82317.020959: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
103139            adbd-24054 (  960) [001] d.h1 82317.020976: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
103140            adbd-24054 (  960) [001] d.h2 82317.021000: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
103141          <idle>-0     (-----) [002] .n.1 82317.021007: cpu_idle: state=4294967295 cpu_id=2
103142          <idle>-0     (-----) [002] d..2 82317.021018: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
103143        DispSync-8879  ( 8858) [002] d..1 82317.021044: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
103144        DispSync-8879  ( 8858) [002] d..2 82317.021074: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
103145          <idle>-0     (-----) [003] .n.1 82317.021079: cpu_idle: state=4294967295 cpu_id=3
103146            adbd-24054 (  960) [001] d..2 82317.021084: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
103147          <idle>-0     (-----) [003] d..2 82317.021091: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
103148        DispSync-8879  ( 8858) [002] d..2 82317.021109: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103149<...>-9062 ( 8943) [006] d..3 82317.021110: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=005
103150          <idle>-0     (-----) [002] d..1 82317.021124: cpu_idle: state=0 cpu_id=2
103151<...>-9062 ( 8943) [006] d..4 82317.021134: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
103152          <idle>-0     (-----) [004] .n.1 82317.021139: cpu_idle: state=4294967295 cpu_id=4
103153   sfEventThread-8882  ( 8858) [003] d..3 82317.021141: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
103154          <idle>-0     (-----) [004] d..2 82317.021148: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
103155   sfEventThread-8882  ( 8858) [003] d..4 82317.021170: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
103156          <idle>-0     (-----) [002] .n.1 82317.021177: cpu_idle: state=4294967295 cpu_id=2
103157          <idle>-0     (-----) [002] d..2 82317.021188: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
103158   sfEventThread-8882  ( 8858) [003] d..2 82317.021208: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103159          <idle>-0     (-----) [003] d..1 82317.021224: cpu_idle: state=0 cpu_id=3
103160<...>-9005 ( 8943) [004] .... 82317.021225: binder_transaction: transaction=1571849 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
103161<...>-9005 ( 8943) [004] .... 82317.021230: binder_transaction_alloc_buf: transaction=1571849 data_size=80 offsets_size=0
103162<...>-9005 ( 8943) [004] d..4 82317.021234: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
103163            adbd-960   (  960) [001] d..2 82317.021246: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103164          <idle>-0     (-----) [000] dnh2 82317.021258: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
103165          <idle>-0     (-----) [000] .n.1 82317.021265: cpu_idle: state=4294967295 cpu_id=0
103166          <idle>-0     (-----) [001] d..1 82317.021265: cpu_idle: state=0 cpu_id=1
103167          <idle>-0     (-----) [000] d..2 82317.021277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
103168<...>-13083 ( 8858) [000] .... 82317.021285: binder_transaction_received: transaction=1571849
103169<...>-9005 ( 8943) [004] d..2 82317.021295: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103170          <idle>-0     (-----) [004] d..1 82317.021307: cpu_idle: state=0 cpu_id=4
103171<...>-13083 ( 8858) [000] d..1 82317.021313: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
103172<...>-13083 ( 8858) [000] d..2 82317.021331: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
103173          <idle>-0     (-----) [003] .n.1 82317.021338: cpu_idle: state=4294967295 cpu_id=3
103174          <idle>-0     (-----) [003] d..2 82317.021349: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
103175<...>-13083 ( 8858) [000] d..2 82317.021375: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103176   sfEventThread-8882  ( 8858) [003] d..2 82317.021386: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103177          <idle>-0     (-----) [000] d..1 82317.021390: cpu_idle: state=0 cpu_id=0
103178          <idle>-0     (-----) [003] d..1 82317.021400: cpu_idle: state=0 cpu_id=3
103179  surfaceflinger-8858  ( 8858) [002] d..1 82317.021618: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
103180  surfaceflinger-8858  ( 8858) [002] d..2 82317.021639: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
103181          <idle>-0     (-----) [003] .n.1 82317.021645: cpu_idle: state=4294967295 cpu_id=3
103182          <idle>-0     (-----) [003] d..2 82317.021655: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
103183   sfEventThread-8882  ( 8858) [003] d..2 82317.021687: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103184          <idle>-0     (-----) [003] d..1 82317.021699: cpu_idle: state=0 cpu_id=3
103185<...>-9062 ( 8943) [006] d..3 82317.021742: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
103186          <idle>-0     (-----) [000] dnh2 82317.021767: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
103187          <idle>-0     (-----) [000] .n.1 82317.021773: cpu_idle: state=4294967295 cpu_id=0
103188          <idle>-0     (-----) [000] d..2 82317.021792: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
103189<...>-9062 ( 8943) [006] d.s2 82317.021802: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
103190<...>-9062 ( 8943) [006] d.s3 82317.021812: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
103191<...>-9062 ( 8943) [006] d.s2 82317.021816: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
103192<...>-9039 ( 8943) [000] d..2 82317.021847: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103193          <idle>-0     (-----) [000] dnh3 82317.021861: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
103194          <idle>-0     (-----) [000] d..2 82317.021872: 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
103195<...>-8 ( 8) [000] d..2 82317.021880: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=001
103196<...>-9062 ( 8943) [006] d..2 82317.021908: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
103197  surfaceflinger-8858  ( 8858) [002] ...1 82317.021909: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
103198  surfaceflinger-8858  ( 8858) [002] ...1 82317.021918: tracing_mark_write: E|8858
103199<...>-8 ( 8) [000] d..3 82317.021920: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=000
103200<...>-8 ( 8) [000] d..2 82317.021934: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=rcuos/4 next_pid=46 next_prio=120
103201          <idle>-0     (-----) [001] dnh2 82317.021937: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
103202          <idle>-0     (-----) [001] .n.1 82317.021945: cpu_idle: state=4294967295 cpu_id=1
103203<...>-46 ( 46) [000] d..2 82317.021949: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
103204          <idle>-0     (-----) [001] d..2 82317.021959: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
103205<...>-46 ( 46) [000] d..3 82317.021964: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
103206<...>-46 ( 46) [000] d..2 82317.021974: 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
103207  surfaceflinger-8858  ( 8858) [002] .... 82317.021983: binder_transaction: transaction=1571850 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
103208  surfaceflinger-8858  ( 8858) [002] .... 82317.021989: binder_transaction_alloc_buf: transaction=1571850 data_size=540 offsets_size=96
103209<...>-8 ( 8) [000] d..2 82317.021998: 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
103210          <idle>-0     (-----) [000] d..1 82317.022009: cpu_idle: state=0 cpu_id=0
103211  surfaceflinger-8858  ( 8858) [002] ...2 82317.022018: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
103212  surfaceflinger-8858  ( 8858) [002] d..4 82317.022028: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
103213  surfaceflinger-8858  ( 8858) [002] d..5 82317.022057: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
103214          <idle>-0     (-----) [003] .n.1 82317.022063: cpu_idle: state=4294967295 cpu_id=3
103215          <idle>-0     (-----) [003] d..2 82317.022074: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
103216 [email protected]   (  619) [003] .... 82317.022088: binder_transaction_received: transaction=1571850
103217  surfaceflinger-8858  ( 8858) [002] d..2 82317.022091: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103218<...>-581 ( 571) [001] d..2 82317.022097: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103219          <idle>-0     (-----) [002] d..1 82317.022109: cpu_idle: state=0 cpu_id=2
103220          <idle>-0     (-----) [001] d..1 82317.022113: cpu_idle: state=0 cpu_id=1
103221 [email protected]   (  619) [003] ...1 82317.022151: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
103222 [email protected]   (  619) [003] ...1 82317.022293: tracing_mark_write: B|619|HWCSession::PresentDisplay::
103223 [email protected]   (  619) [003] ...1 82317.022571: tracing_mark_write: B|619|HWDeviceDRM::Commit::
103224 [email protected]   (  619) [003] ...1 82317.022587: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
103225<...>-9062 ( 8943) [006] d..3 82317.022691: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
103226          <idle>-0     (-----) [000] dnh2 82317.022716: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
103227          <idle>-0     (-----) [000] .n.1 82317.022722: cpu_idle: state=4294967295 cpu_id=0
103228          <idle>-0     (-----) [000] d..2 82317.022731: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
103229<...>-9039 ( 8943) [000] d..2 82317.022776: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103230          <idle>-0     (-----) [000] d..1 82317.022785: cpu_idle: state=0 cpu_id=0
103231<...>-9062 ( 8943) [006] d..2 82317.022794: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=R+ ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
103232<...>-560 ( 560) [006] d..2 82317.022820: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
103233<...>-9062 ( 8943) [006] d..3 82317.022853: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
103234          <idle>-0     (-----) [000] dnh2 82317.022880: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
103235          <idle>-0     (-----) [000] .n.1 82317.022887: cpu_idle: state=4294967295 cpu_id=0
103236<...>-9062 ( 8943) [006] d..3 82317.022887: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
103237          <idle>-0     (-----) [000] d..2 82317.022896: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
103238<...>-9062 ( 8943) [006] d..4 82317.022900: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
103239          <idle>-0     (-----) [004] .n.1 82317.022907: cpu_idle: state=4294967295 cpu_id=4
103240          <idle>-0     (-----) [004] d..2 82317.022916: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
103241<...>-8969 ( 8943) [004] d..2 82317.022963: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103242          <idle>-0     (-----) [004] d..1 82317.022972: cpu_idle: state=0 cpu_id=4
103243   system_server-8943  ( 8943) [000] .... 82317.023038: binder_transaction: transaction=1571851 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x16
103244   system_server-8943  ( 8943) [000] .... 82317.023044: binder_transaction_alloc_buf: transaction=1571851 data_size=92 offsets_size=0
103245   system_server-8943  ( 8943) [000] d..4 82317.023051: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
103246<...>-9062 ( 8943) [006] d..2 82317.023073: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
103247   system_server-8943  ( 8943) [000] d..5 82317.023076: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
103248          <idle>-0     (-----) [001] .n.1 82317.023082: cpu_idle: state=4294967295 cpu_id=1
103249          <idle>-0     (-----) [001] d..2 82317.023096: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
103250<...>-9132 ( 9105) [001] .... 82317.023107: binder_transaction_received: transaction=1571851
103251 [email protected]   (  619) [003] d.h1 82317.023126: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
103252<...>-9062 ( 8943) [006] d..2 82317.023165: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=003
103253   system_server-8943  ( 8943) [000] d..2 82317.023168: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103254          <idle>-0     (-----) [000] d..1 82317.023182: cpu_idle: state=0 cpu_id=0
103255          <idle>-0     (-----) [000] dnh2 82317.023203: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
103256          <idle>-0     (-----) [000] .n.1 82317.023210: cpu_idle: state=4294967295 cpu_id=0
103257<...>-9062 ( 8943) [006] d..3 82317.023215: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=001
103258          <idle>-0     (-----) [000] d..2 82317.023220: 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
103259          <idle>-0     (-----) [002] ...1 82317.023233: cpu_idle: state=4294967295 cpu_id=2
103260          <idle>-0     (-----) [002] d..1 82317.023238: cpu_idle: state=0 cpu_id=2
103261   statsd.writer-1044  (  901) [000] d.h1 82317.023253: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=000
103262<...>-9132 ( 9105) [001] d..3 82317.023299: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
103263 [email protected]   (  619) [003] d..2 82317.023308: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
103264<...>-9132 ( 9105) [001] d..4 82317.023333: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103265          <idle>-0     (-----) [002] .n.1 82317.023338: cpu_idle: state=4294967295 cpu_id=2
103266 [email protected]   (  619) [003] d..3 82317.023348: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
103267          <idle>-0     (-----) [002] d..2 82317.023356: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
103268<...>-9062 ( 8943) [006] .... 82317.023375: binder_transaction: transaction=1571852 dest_node=1568298 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x33
103269<...>-9062 ( 8943) [006] .... 82317.023379: binder_transaction_alloc_buf: transaction=1571852 data_size=252 offsets_size=16
103270<...>-9062 ( 8943) [006] d..4 82317.023392: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=005
103271<...>-9062 ( 8943) [006] d..5 82317.023413: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=004
103272          <idle>-0     (-----) [004] .n.1 82317.023418: cpu_idle: state=4294967295 cpu_id=4
103273          <idle>-0     (-----) [004] d..2 82317.023426: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
103274           <...>-27564 (-----) [004] .... 82317.023436: binder_transaction_received: transaction=1571852
103275<...>-9132 ( 9105) [001] d..2 82317.023447: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103276   statsd.writer-1044  (  901) [000] d..2 82317.023461: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=android.bg next_pid=8960 next_prio=120
103277          <idle>-0     (-----) [001] d..1 82317.023467: cpu_idle: state=0 cpu_id=1
103278 [email protected]   (  619) [003] ...1 82317.023471: tracing_mark_write: E|619
103279 [email protected]   (  619) [003] ...1 82317.023479: tracing_mark_write: E|619
103280<...>-9062 ( 8943) [006] d..3 82317.023540: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=000
103281 [email protected]   (  619) [003] ...1 82317.023551: tracing_mark_write: E|619
103282          <idle>-0     (-----) [001] dnh2 82317.023573: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=001
103283          <idle>-0     (-----) [001] .n.1 82317.023582: cpu_idle: state=4294967295 cpu_id=1
103284          <idle>-0     (-----) [001] d..2 82317.023594: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
103285 [email protected]   (  619) [003] ...1 82317.023605: tracing_mark_write: E|619
103286 [email protected]   (  619) [003] .... 82317.023622: binder_transaction: transaction=1571853 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
103287 [email protected]   (  619) [003] .... 82317.023626: binder_transaction_alloc_buf: transaction=1571853 data_size=576 offsets_size=112
103288 [email protected]   (  619) [003] d..2 82317.023649: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
103289<...>-9062 ( 8943) [006] d..2 82317.023652: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
103290<...>-8960 ( 8943) [000] d..2 82317.023659: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103291          <idle>-0     (-----) [000] d..1 82317.023673: cpu_idle: state=0 cpu_id=0
103292 PowerManagerSer-8971  ( 8943) [001] d..2 82317.023679: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103293 [email protected]   (  619) [003] d..3 82317.023682: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
103294<...>-9062 ( 8943) [006] d..1 82317.023685: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=001
103295 [email protected]   (  619) [003] .... 82317.023689: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
103296          <idle>-0     (-----) [000] dnh2 82317.023693: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
103297          <idle>-0     (-----) [001] d..1 82317.023697: cpu_idle: state=0 cpu_id=1
103298          <idle>-0     (-----) [000] .n.1 82317.023703: cpu_idle: state=4294967295 cpu_id=0
103299           <...>-27564 (-----) [004] d..3 82317.023708: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
103300          <idle>-0     (-----) [000] d..2 82317.023711: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
103301          <idle>-0     (-----) [001] dnh2 82317.023712: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=001
103302          <idle>-0     (-----) [001] .n.1 82317.023720: cpu_idle: state=4294967295 cpu_id=1
103303  surfaceflinger-8858  ( 8858) [000] .... 82317.023723: binder_transaction_received: transaction=1571853
103304           <...>-27564 (-----) [004] d..4 82317.023729: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
103305          <idle>-0     (-----) [001] d..2 82317.023732: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
103306          <idle>-0     (-----) [005] .n.1 82317.023735: cpu_idle: state=4294967295 cpu_id=5
103307          <idle>-0     (-----) [005] d..2 82317.023746: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
103308 [email protected]   (  619) [003] d..2 82317.023772: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
103309           <...>-27564 (-----) [004] d..2 82317.023815: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103310 PowerManagerSer-8971  ( 8943) [001] d..2 82317.023821: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103311          <idle>-0     (-----) [004] d..1 82317.023828: cpu_idle: state=0 cpu_id=4
103312          <idle>-0     (-----) [001] d..1 82317.023836: cpu_idle: state=0 cpu_id=1
103313<...>-581 ( 571) [003] d..2 82317.023870: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103314          <idle>-0     (-----) [003] d..1 82317.023896: cpu_idle: state=0 cpu_id=3
103315<...>-9062 ( 8943) [006] d..3 82317.023973: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
103316<...>-9062 ( 8943) [006] d..4 82317.023987: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
103317          <idle>-0     (-----) [004] .n.1 82317.023992: cpu_idle: state=4294967295 cpu_id=4
103318          <idle>-0     (-----) [004] d..2 82317.024001: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
103319<...>-8969 ( 8943) [004] d..2 82317.024058: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103320          <idle>-0     (-----) [004] d..1 82317.024069: cpu_idle: state=0 cpu_id=4
103321 crtc_commit:111-321   (  321) [002] d..2 82317.024075: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
103322           <...>-27550 (-----) [005] ...1 82317.024094: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksCompilation_free
103323           <...>-27550 (-----) [005] ...1 82317.024105: tracing_mark_write: E|27550
103324           <...>-27550 (-----) [005] ...1 82317.024124: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksModel_free
103325<...>-9062 ( 8943) [006] .... 82317.024137: binder_transaction: transaction=1571854 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
103326<...>-9062 ( 8943) [006] .... 82317.024141: binder_transaction_alloc_buf: transaction=1571854 data_size=96 offsets_size=0
103327<...>-9062 ( 8943) [006] d..4 82317.024145: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
103328           <...>-27550 (-----) [005] ...1 82317.024157: tracing_mark_write: E|27550
103329          <idle>-0     (-----) [001] dnh2 82317.024169: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
103330          <idle>-0     (-----) [001] .n.1 82317.024176: cpu_idle: state=4294967295 cpu_id=1
103331           <...>-27550 (-----) [005] ...1 82317.024180: tracing_mark_write: B|27550|[NN_LR_PT]ANeuralNetworksMemory_free
103332          <idle>-0     (-----) [001] d..2 82317.024188: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
103333           <...>-27550 (-----) [005] ...1 82317.024191: tracing_mark_write: E|27550
103334<...>-9132 ( 9105) [001] .... 82317.024196: binder_transaction_received: transaction=1571854
103335  surfaceflinger-8858  ( 8858) [000] d..2 82317.024300: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
103336<...>-9105 ( 9105) [002] d..2 82317.024318: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103337          <idle>-0     (-----) [002] d..1 82317.024337: cpu_idle: state=0 cpu_id=2
103338<...>-9062 ( 8943) [006] d..3 82317.024338: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
103339<...>-9062 ( 8943) [006] d..4 82317.024356: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
103340          <idle>-0     (-----) [007] .n.1 82317.024361: cpu_idle: state=4294967295 cpu_id=7
103341          <idle>-0     (-----) [007] d..2 82317.024369: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
103342           <...>-27550 (-----) [005] d..2 82317.024401: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
103343<...>-9132 ( 9105) [001] d..3 82317.024401: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103344<...>-9132 ( 9105) [001] d..4 82317.024422: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103345<...>-8962 ( 8943) [007] d..3 82317.024428: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
103346          <idle>-0     (-----) [003] dnh2 82317.024428: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
103347          <idle>-0     (-----) [002] .n.1 82317.024430: cpu_idle: state=4294967295 cpu_id=2
103348          <idle>-0     (-----) [003] .n.1 82317.024437: cpu_idle: state=4294967295 cpu_id=3
103349          <idle>-0     (-----) [002] d..2 82317.024443: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
103350          <idle>-0     (-----) [003] d..2 82317.024450: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
103351   statsd.writer-1044  (  901) [000] d..2 82317.024462: 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
103352          <idle>-0     (-----) [000] dnh3 82317.024478: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
103353          <idle>-0     (-----) [000] d..2 82317.024492: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
103354<...>-8962 ( 8943) [007] d..2 82317.024492: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
103355<...>-9132 ( 9105) [001] d..2 82317.024503: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103356          <idle>-0     (-----) [007] d..1 82317.024504: cpu_idle: state=0 cpu_id=7
103357          <idle>-0     (-----) [001] d..1 82317.024522: cpu_idle: state=0 cpu_id=1
103358<...>-9105 ( 9105) [002] d..2 82317.024535: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103359          <idle>-0     (-----) [002] d..1 82317.024551: cpu_idle: state=0 cpu_id=2
103360<...>-581 ( 571) [003] d..2 82317.024569: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103361          <idle>-0     (-----) [003] d..1 82317.024586: cpu_idle: state=0 cpu_id=3
103362   system_server-8943  ( 8943) [000] .... 82317.024612: binder_transaction: transaction=1571855 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
103363   system_server-8943  ( 8943) [000] .... 82317.024618: binder_transaction_alloc_buf: transaction=1571855 data_size=96 offsets_size=0
103364   system_server-8943  ( 8943) [000] d..4 82317.024624: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
103365   system_server-8943  ( 8943) [000] d..5 82317.024644: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
103366          <idle>-0     (-----) [001] .n.1 82317.024651: cpu_idle: state=4294967295 cpu_id=1
103367           <...>-27550 (-----) [005] .... 82317.024654: binder_transaction: transaction=1571856 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x12
103368           <...>-27550 (-----) [005] .... 82317.024658: binder_transaction_alloc_buf: transaction=1571856 data_size=100 offsets_size=8
103369          <idle>-0     (-----) [001] d..2 82317.024665: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
103370           <...>-27550 (-----) [005] ...2 82317.024665: binder_set_priority: proc=8943 thread=25493 old=120 => new=110 desired=110
103371           <...>-27550 (-----) [005] d..4 82317.024669: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=006
103372<...>-9132 ( 9105) [001] .... 82317.024671: binder_transaction_received: transaction=1571855
103373           <...>-27550 (-----) [005] d..5 82317.024692: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=007
103374          <idle>-0     (-----) [007] .n.1 82317.024697: cpu_idle: state=4294967295 cpu_id=7
103375<...>-9062 ( 8943) [006] .... 82317.024704: binder_transaction: transaction=1571857 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
103376          <idle>-0     (-----) [007] d..2 82317.024706: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
103377<...>-9062 ( 8943) [006] .... 82317.024709: binder_transaction_alloc_buf: transaction=1571857 data_size=988 offsets_size=48
103378           <...>-27550 (-----) [005] d..2 82317.024713: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
103379<...>-25493 ( 8943) [007] .... 82317.024713: binder_transaction_received: transaction=1571856
103380<...>-9062 ( 8943) [006] ...2 82317.024723: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
103381   system_server-8943  ( 8943) [000] d..2 82317.024727: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103382          <idle>-0     (-----) [005] d..1 82317.024730: cpu_idle: state=0 cpu_id=5
103383<...>-9062 ( 8943) [006] d..4 82317.024732: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=000
103384          <idle>-0     (-----) [000] d..1 82317.024742: cpu_idle: state=0 cpu_id=0
103385<...>-9062 ( 8943) [006] dn.5 82317.024751: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
103386<...>-9132 ( 9105) [001] d..3 82317.024776: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103387<...>-9062 ( 8943) [006] d..2 82317.024792: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
103388<...>-9132 ( 9105) [001] d..4 82317.024803: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103389<...>-13083 ( 8858) [006] .... 82317.024803: binder_transaction_received: transaction=1571857
103390          <idle>-0     (-----) [002] .n.1 82317.024809: cpu_idle: state=4294967295 cpu_id=2
103391          <idle>-0     (-----) [002] d..2 82317.024821: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
103392<...>-9132 ( 9105) [001] d..2 82317.024881: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103393<...>-13083 ( 8858) [006] .... 82317.024895: binder_transaction: transaction=1571858 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
103394<...>-13083 ( 8858) [006] .... 82317.024899: binder_transaction_alloc_buf: transaction=1571858 data_size=0 offsets_size=0
103395          <idle>-0     (-----) [001] d..1 82317.024899: cpu_idle: state=0 cpu_id=1
103396<...>-13083 ( 8858) [006] .... 82317.024901: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
103397<...>-25493 ( 8943) [007] d..2 82317.024902: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=110 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
103398<...>-9105 ( 9105) [002] d..2 82317.024909: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103399<...>-9062 ( 8943) [007] .... 82317.024911: binder_transaction_received: transaction=1571858
103400          <idle>-0     (-----) [002] d..1 82317.024924: cpu_idle: state=0 cpu_id=2
103401<...>-13083 ( 8858) [006] d..2 82317.024946: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
103402          <idle>-0     (-----) [006] d..1 82317.024961: cpu_idle: state=0 cpu_id=6
103403          <idle>-0     (-----) [000] d.s2 82317.025141: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
103404          <idle>-0     (-----) [000] dns3 82317.025161: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
103405          <idle>-0     (-----) [000] .n.1 82317.025179: cpu_idle: state=4294967295 cpu_id=0
103406          <idle>-0     (-----) [000] d..2 82317.025189: 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
103407     rcu_preempt-7     (    7) [000] d..2 82317.025198: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
103408     rcu_preempt-7     (    7) [000] d..3 82317.025240: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
103409          <idle>-0     (-----) [001] .n.1 82317.025248: cpu_idle: state=4294967295 cpu_id=1
103410          <idle>-0     (-----) [001] d..2 82317.025264: 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
103411     rcu_preempt-7     (    7) [000] d..2 82317.025274: 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
103412          <idle>-0     (-----) [000] d..1 82317.025284: cpu_idle: state=0 cpu_id=0
103413         rcuop/0-10    (   10) [001] d..2 82317.025304: 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
103414          <idle>-0     (-----) [001] d..1 82317.025316: cpu_idle: state=0 cpu_id=1
103415<...>-9062 ( 8943) [007] d..3 82317.025677: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
103416          <idle>-0     (-----) [000] dnh2 82317.025703: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
103417          <idle>-0     (-----) [000] .n.1 82317.025710: cpu_idle: state=4294967295 cpu_id=0
103418          <idle>-0     (-----) [000] d..2 82317.025718: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
103419<...>-9062 ( 8943) [007] d..1 82317.025758: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
103420<...>-9062 ( 8943) [007] d..2 82317.025772: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
103421<...>-9039 ( 8943) [000] d..2 82317.025772: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103422          <idle>-0     (-----) [004] .n.1 82317.025777: cpu_idle: state=4294967295 cpu_id=4
103423          <idle>-0     (-----) [000] d..1 82317.025783: cpu_idle: state=0 cpu_id=0
103424          <idle>-0     (-----) [004] d..2 82317.025786: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
103425<...>-9062 ( 8943) [007] d..1 82317.025812: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=001
103426          <idle>-0     (-----) [000] dnh2 82317.025841: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
103427          <idle>-0     (-----) [000] .n.1 82317.025847: cpu_idle: state=4294967295 cpu_id=0
103428          <idle>-0     (-----) [000] d..2 82317.025855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
103429          <idle>-0     (-----) [003] ...1 82317.025912: cpu_idle: state=4294967295 cpu_id=3
103430          <idle>-0     (-----) [003] d..1 82317.025918: cpu_idle: state=0 cpu_id=3
103431<...>-9062 ( 8943) [007] .... 82317.025918: binder_transaction: transaction=1571859 dest_node=0 dest_proc=27550 dest_thread=27566 reply=1 flags=0x0 code=0x0
103432<...>-9062 ( 8943) [007] .... 82317.025921: binder_transaction_alloc_buf: transaction=1571859 data_size=8 offsets_size=0
103433<...>-9062 ( 8943) [007] d..2 82317.025924: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=004
103434<...>-8969 ( 8943) [004] d..2 82317.025934: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103435          <idle>-0     (-----) [004] d..1 82317.025945: cpu_idle: state=0 cpu_id=4
103436<...>-9062 ( 8943) [007] dn.3 82317.025946: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=007
103437<...>-9062 ( 8943) [007] d..2 82317.025952: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=112 prev_state=R+ ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
103438           <...>-27566 (-----) [007] .... 82317.025963: binder_transaction_received: transaction=1571859
103439<...>-8961 ( 8943) [000] d..2 82317.025987: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
103440<...>-8961 ( 8943) [000] d..3 82317.026010: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
103441<...>-8961 ( 8943) [000] d..1 82317.026237: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=007
103442<...>-8961 ( 8943) [000] d..2 82317.026271: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
103443          <idle>-0     (-----) [001] .n.1 82317.026276: cpu_idle: state=4294967295 cpu_id=1
103444          <idle>-0     (-----) [001] d..2 82317.026320: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
103445          <idle>-0     (-----) [002] ...1 82317.026330: cpu_idle: state=4294967295 cpu_id=2
103446          <idle>-0     (-----) [002] d..1 82317.026336: cpu_idle: state=0 cpu_id=2
103447<...>-8961 ( 8943) [000] d..2 82317.026384: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
103448<...>-581 ( 571) [000] d..2 82317.026527: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103449          <idle>-0     (-----) [000] d..1 82317.026542: cpu_idle: state=0 cpu_id=0
103450<...>-25493 ( 8943) [001] .... 82317.026579: binder_transaction: transaction=1571860 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
103451<...>-25493 ( 8943) [001] .... 82317.026585: binder_transaction_alloc_buf: transaction=1571860 data_size=380 offsets_size=16
103452<...>-25493 ( 8943) [001] ...2 82317.026602: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
103453<...>-25493 ( 8943) [001] d..4 82317.026607: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
103454<...>-25493 ( 8943) [001] d..5 82317.026637: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=001
103455<...>-25493 ( 8943) [001] d..2 82317.026697: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
103456<...>-13083 ( 8858) [001] .... 82317.026707: binder_transaction_received: transaction=1571860
103457<...>-13083 ( 8858) [001] .... 82317.026792: binder_transaction: transaction=1571861 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x0 code=0x0
103458<...>-13083 ( 8858) [001] .... 82317.026797: binder_transaction_alloc_buf: transaction=1571861 data_size=0 offsets_size=0
103459<...>-13083 ( 8858) [001] d..2 82317.026801: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
103460<...>-13083 ( 8858) [001] dn.3 82317.026817: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
103461<...>-13083 ( 8858) [001] d..2 82317.026827: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
103462<...>-25493 ( 8943) [001] .... 82317.026836: binder_transaction_received: transaction=1571861
103463<...>-25493 ( 8943) [001] d..2 82317.027138: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
103464<...>-25493 ( 8943) [001] d..3 82317.027165: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
103465          <idle>-0     (-----) [000] .n.1 82317.027172: cpu_idle: state=4294967295 cpu_id=0
103466          <idle>-0     (-----) [000] d..2 82317.027184: 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
103467<...>-25493 ( 8943) [001] d..3 82317.027356: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
103468<...>-25493 ( 8943) [001] d..4 82317.027388: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
103469          <idle>-0     (-----) [002] .n.1 82317.027392: cpu_idle: state=4294967295 cpu_id=2
103470          <idle>-0     (-----) [003] d.h2 82317.027397: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
103471          <idle>-0     (-----) [002] d..2 82317.027407: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
103472          <idle>-0     (-----) [003] dnh3 82317.027410: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
103473   statsd.writer-1044  (  901) [000] d..2 82317.027413: 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
103474<...>-25493 ( 8943) [001] d..3 82317.027419: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
103475          <idle>-0     (-----) [003] .n.1 82317.027419: cpu_idle: state=4294967295 cpu_id=3
103476          <idle>-0     (-----) [000] d..1 82317.027426: cpu_idle: state=0 cpu_id=0
103477          <idle>-0     (-----) [003] d..2 82317.027431: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
103478          <idle>-0     (-----) [004] dnh2 82317.027441: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
103479          <idle>-0     (-----) [004] .n.1 82317.027445: cpu_idle: state=4294967295 cpu_id=4
103480          <idle>-0     (-----) [004] d..2 82317.027453: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
103481<...>-8969 ( 8943) [004] d..2 82317.027492: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103482          <idle>-0     (-----) [004] d..1 82317.027501: cpu_idle: state=0 cpu_id=4
103483   system_server-8943  ( 8943) [002] .... 82317.027524: binder_transaction: transaction=1571862 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x16
103484   system_server-8943  ( 8943) [002] .... 82317.027530: binder_transaction_alloc_buf: transaction=1571862 data_size=92 offsets_size=0
103485   system_server-8943  ( 8943) [002] d..4 82317.027536: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
103486   system_server-8943  ( 8943) [002] d..5 82317.027566: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
103487          <idle>-0     (-----) [000] .n.1 82317.027573: cpu_idle: state=4294967295 cpu_id=0
103488          <idle>-0     (-----) [000] d..2 82317.027585: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
103489<...>-25493 ( 8943) [001] .... 82317.027592: binder_transaction: transaction=1571863 dest_node=1160192 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x4
103490<...>-9132 ( 9105) [000] .... 82317.027594: binder_transaction_received: transaction=1571862
103491<...>-25493 ( 8943) [001] .... 82317.027598: binder_transaction_alloc_buf: transaction=1571863 data_size=56 offsets_size=0
103492<...>-25493 ( 8943) [001] d..4 82317.027605: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=001
103493   system_server-8943  ( 8943) [002] d..2 82317.027654: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103494          <idle>-0     (-----) [006] dnh2 82317.027658: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=006
103495          <idle>-0     (-----) [006] .n.1 82317.027662: cpu_idle: state=4294967295 cpu_id=6
103496 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.027664: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
103497          <idle>-0     (-----) [002] d..1 82317.027670: cpu_idle: state=0 cpu_id=2
103498          <idle>-0     (-----) [006] d..2 82317.027671: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
103499<...>-13083 ( 8858) [003] .... 82317.027672: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
103500<...>-25493 ( 8943) [001] d.s5 82317.027736: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
103501<...>-25493 ( 8943) [001] d.s6 82317.027752: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
103502<...>-13083 ( 8858) [003] d..2 82317.027761: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
103503  Binder:10023_2-10088 (10023) [006] .... 82317.027773: binder_transaction_received: transaction=1571863
103504<...>-9132 ( 9105) [000] d..3 82317.027776: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103505<...>-9132 ( 9105) [000] d..4 82317.027800: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103506          <idle>-0     (-----) [002] .n.1 82317.027807: cpu_idle: state=4294967295 cpu_id=2
103507 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.027808: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103508<...>-25493 ( 8943) [001] d..3 82317.027818: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
103509          <idle>-0     (-----) [002] d..2 82317.027821: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
103510          <idle>-0     (-----) [003] d..1 82317.027827: cpu_idle: state=0 cpu_id=3
103511          <idle>-0     (-----) [004] dnh2 82317.027842: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
103512          <idle>-0     (-----) [004] .n.1 82317.027846: cpu_idle: state=4294967295 cpu_id=4
103513          <idle>-0     (-----) [004] d..2 82317.027853: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
103514<...>-9132 ( 9105) [000] d..2 82317.027896: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103515<...>-9005 ( 8943) [004] d..2 82317.027898: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103516          <idle>-0     (-----) [004] d..1 82317.027908: cpu_idle: state=0 cpu_id=4
103517          <idle>-0     (-----) [000] d..1 82317.027910: cpu_idle: state=0 cpu_id=0
103518  Binder:10023_2-10088 (10023) [006] d..3 82317.027919: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=001
103519<...>-9105 ( 9105) [002] d..2 82317.027929: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103520          <idle>-0     (-----) [002] d..1 82317.027943: cpu_idle: state=0 cpu_id=2
103521          <idle>-0     (-----) [000] dnh2 82317.027955: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
103522          <idle>-0     (-----) [000] .n.1 82317.027962: cpu_idle: state=4294967295 cpu_id=0
103523          <idle>-0     (-----) [000] d..2 82317.027973: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
103524  Binder:10023_2-10088 (10023) [006] d..2 82317.028003: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=112
103525<...>-25493 ( 8943) [001] d..3 82317.028012: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
103526<...>-9062 ( 8943) [006] .... 82317.028012: binder_set_priority: proc=8943 thread=9062 old=112 => new=120 desired=120
103527<...>-25493 ( 8943) [001] d..4 82317.028043: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
103528          <idle>-0     (-----) [002] .n.1 82317.028049: cpu_idle: state=4294967295 cpu_id=2
103529          <idle>-0     (-----) [002] d..2 82317.028063: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
103530<...>-9062 ( 8943) [006] d..2 82317.028064: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
103531          <idle>-0     (-----) [006] d..1 82317.028077: cpu_idle: state=0 cpu_id=6
103532 s.nexuslauncher-10023 (10023) [000] .... 82317.028105: binder_transaction: transaction=1571864 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
103533 s.nexuslauncher-10023 (10023) [000] .... 82317.028111: binder_transaction_alloc_buf: transaction=1571864 data_size=80 offsets_size=0
103534 s.nexuslauncher-10023 (10023) [000] d..4 82317.028117: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
103535<...>-9039 ( 8943) [002] d..2 82317.028118: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103536          <idle>-0     (-----) [002] d..1 82317.028131: cpu_idle: state=0 cpu_id=2
103537 s.nexuslauncher-10023 (10023) [000] d..5 82317.028137: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
103538          <idle>-0     (-----) [003] .n.1 82317.028144: cpu_idle: state=4294967295 cpu_id=3
103539          <idle>-0     (-----) [003] d..2 82317.028156: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
103540<...>-13083 ( 8858) [003] .... 82317.028163: binder_transaction_received: transaction=1571864
103541 s.nexuslauncher-10023 (10023) [000] d..3 82317.028186: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=007
103542<...>-13083 ( 8858) [003] d..1 82317.028193: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
103543<...>-25493 ( 8943) [001] d..3 82317.028197: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
103544          <idle>-0     (-----) [004] dnh2 82317.028219: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
103545          <idle>-0     (-----) [004] .n.1 82317.028223: cpu_idle: state=4294967295 cpu_id=4
103546 s.nexuslauncher-10023 (10023) [000] d..4 82317.028229: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=002
103547          <idle>-0     (-----) [004] d..2 82317.028230: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
103548          <idle>-0     (-----) [002] .n.1 82317.028235: cpu_idle: state=4294967295 cpu_id=2
103549<...>-13083 ( 8858) [003] d..2 82317.028236: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
103550          <idle>-0     (-----) [002] d..2 82317.028246: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
103551<...>-8969 ( 8943) [004] d..2 82317.028301: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103552          <idle>-0     (-----) [004] d..1 82317.028309: cpu_idle: state=0 cpu_id=4
103553<...>-13083 ( 8858) [003] d..2 82317.028311: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103554  appEventThread-8881  ( 8858) [002] d..2 82317.028326: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=120
103555          <idle>-0     (-----) [003] d..1 82317.028328: cpu_idle: state=0 cpu_id=3
103556 s.nexuslauncher-10023 (10023) [000] d..2 82317.028365: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103557<...>-25493 ( 8943) [001] d..3 82317.028367: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
103558          <idle>-0     (-----) [000] d..1 82317.028379: cpu_idle: state=0 cpu_id=0
103559    RenderThread-16607 (10023) [002] d..2 82317.028388: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103560          <idle>-0     (-----) [006] dnh2 82317.028401: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
103561          <idle>-0     (-----) [002] d..1 82317.028402: cpu_idle: state=0 cpu_id=2
103562          <idle>-0     (-----) [006] .n.1 82317.028406: cpu_idle: state=4294967295 cpu_id=6
103563          <idle>-0     (-----) [006] d..2 82317.028414: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
103564          <idle>-0     (-----) [000] d.s2 82317.028472: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
103565           <...>-27566 (-----) [007] d.s2 82317.028475: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
103566          <idle>-0     (-----) [000] dns3 82317.028491: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
103567<...>-8962 ( 8943) [006] d..3 82317.028503: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
103568          <idle>-0     (-----) [000] dnh2 82317.028515: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
103569          <idle>-0     (-----) [000] .n.1 82317.028521: cpu_idle: state=4294967295 cpu_id=0
103570          <idle>-0     (-----) [002] dnh2 82317.028530: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
103571          <idle>-0     (-----) [000] d..2 82317.028531: 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
103572          <idle>-0     (-----) [002] .n.1 82317.028537: cpu_idle: state=4294967295 cpu_id=2
103573          <idle>-0     (-----) [002] d..2 82317.028550: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
103574<...>-8 ( 8) [000] d..2 82317.028554: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
103575<...>-8962 ( 8943) [006] d..2 82317.028557: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
103576          <idle>-0     (-----) [006] d..1 82317.028569: cpu_idle: state=0 cpu_id=6
103577   system_server-8943  ( 8943) [002] .... 82317.028659: binder_transaction: transaction=1571865 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
103578   system_server-8943  ( 8943) [002] .... 82317.028665: binder_transaction_alloc_buf: transaction=1571865 data_size=96 offsets_size=0
103579   system_server-8943  ( 8943) [002] d..4 82317.028669: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
103580   system_server-8943  ( 8943) [002] d..5 82317.028700: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=003
103581          <idle>-0     (-----) [003] .n.1 82317.028707: cpu_idle: state=4294967295 cpu_id=3
103582          <idle>-0     (-----) [003] d..2 82317.028720: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
103583<...>-9132 ( 9105) [003] .... 82317.028730: binder_transaction_received: transaction=1571865
103584   system_server-8943  ( 8943) [002] d..2 82317.028803: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103585          <idle>-0     (-----) [002] d..1 82317.028819: cpu_idle: state=0 cpu_id=2
103586<...>-9132 ( 9105) [003] d..3 82317.028875: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103587<...>-9132 ( 9105) [003] d..4 82317.028897: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103588          <idle>-0     (-----) [002] .n.1 82317.028903: cpu_idle: state=4294967295 cpu_id=2
103589          <idle>-0     (-----) [002] d..2 82317.028916: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
103590  kworker/u16:15-1311  ( 1311) [000] d..2 82317.028930: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
103591          <idle>-0     (-----) [000] d..1 82317.028942: cpu_idle: state=0 cpu_id=0
103592<...>-25493 ( 8943) [001] d.s2 82317.028957: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
103593<...>-25493 ( 8943) [001] d.s3 82317.028973: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
103594<...>-9132 ( 9105) [003] d..2 82317.028980: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103595<...>-25493 ( 8943) [001] d.s3 82317.028985: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
103596          <idle>-0     (-----) [003] d..1 82317.028999: cpu_idle: state=0 cpu_id=3
103597<...>-9105 ( 9105) [002] d..2 82317.029024: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103598          <idle>-0     (-----) [002] d..1 82317.029039: cpu_idle: state=0 cpu_id=2
103599          <idle>-0     (-----) [000] dnh5 82317.029054: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
103600          <idle>-0     (-----) [000] dnh6 82317.029082: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
103601          <idle>-0     (-----) [000] dnh5 82317.029087: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
103602          <idle>-0     (-----) [002] .n.1 82317.029088: cpu_idle: state=4294967295 cpu_id=2
103603          <idle>-0     (-----) [002] d..2 82317.029100: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
103604          <idle>-0     (-----) [000] dnh6 82317.029116: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
103605          <idle>-0     (-----) [003] .n.1 82317.029124: cpu_idle: state=4294967295 cpu_id=3
103606          <idle>-0     (-----) [000] .n.1 82317.029134: cpu_idle: state=4294967295 cpu_id=0
103607          <idle>-0     (-----) [003] d..2 82317.029136: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
103608  crtc_event:111-322   (  322) [002] d..2 82317.029141: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103609          <idle>-0     (-----) [000] d..2 82317.029145: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
103610          <idle>-0     (-----) [002] d..1 82317.029151: cpu_idle: state=0 cpu_id=2
103611  kworker/u16:15-1311  ( 1311) [000] .... 82317.029292: clk_set_rate: l3_cluster0_vote_clk 403200000
103612 crtc_commit:111-321   (  321) [003] d..2 82317.029321: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
103613  kworker/u16:15-1311  ( 1311) [000] d..2 82317.029324: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103614          <idle>-0     (-----) [003] d..1 82317.029331: cpu_idle: state=0 cpu_id=3
103615          <idle>-0     (-----) [000] d..1 82317.029335: cpu_idle: state=0 cpu_id=0
103616<...>-25493 ( 8943) [001] d..3 82317.029968: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
103617<...>-25493 ( 8943) [001] d..4 82317.029987: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
103618          <idle>-0     (-----) [002] .n.1 82317.029992: cpu_idle: state=4294967295 cpu_id=2
103619          <idle>-0     (-----) [002] d..2 82317.030004: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
103620<...>-9039 ( 8943) [002] d..2 82317.030058: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103621          <idle>-0     (-----) [002] d..1 82317.030072: cpu_idle: state=0 cpu_id=2
103622<...>-25493 ( 8943) [001] d..2 82317.030230: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
103623<...>-25493 ( 8943) [001] d..3 82317.030254: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
103624          <idle>-0     (-----) [000] d.h5 82317.031394: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
103625          <idle>-0     (-----) [000] d.h6 82317.031411: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
103626          <idle>-0     (-----) [003] .n.1 82317.031418: cpu_idle: state=4294967295 cpu_id=3
103627          <idle>-0     (-----) [003] d..2 82317.031426: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
103628          <idle>-0     (-----) [000] ...1 82317.031426: cpu_idle: state=4294967295 cpu_id=0
103629          <idle>-0     (-----) [000] d..1 82317.031431: cpu_idle: state=0 cpu_id=0
103630 crtc_commit:111-321   (  321) [003] d..2 82317.031518: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103631          <idle>-0     (-----) [003] d..1 82317.031527: cpu_idle: state=0 cpu_id=3
103632<...>-25493 ( 8943) [001] d..3 82317.031664: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
103633          <idle>-0     (-----) [000] d.h5 82317.031684: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
103634          <idle>-0     (-----) [006] dnh2 82317.031692: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
103635          <idle>-0     (-----) [006] .n.1 82317.031696: cpu_idle: state=4294967295 cpu_id=6
103636          <idle>-0     (-----) [000] d.h6 82317.031698: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
103637          <idle>-0     (-----) [006] d..2 82317.031704: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
103638          <idle>-0     (-----) [002] .n.1 82317.031705: cpu_idle: state=4294967295 cpu_id=2
103639          <idle>-0     (-----) [000] ...1 82317.031715: cpu_idle: state=4294967295 cpu_id=0
103640          <idle>-0     (-----) [002] d..2 82317.031716: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
103641          <idle>-0     (-----) [000] d..1 82317.031720: cpu_idle: state=0 cpu_id=0
103642<...>-8962 ( 8943) [006] d..2 82317.031742: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
103643          <idle>-0     (-----) [006] d..1 82317.031750: cpu_idle: state=0 cpu_id=6
103644  crtc_event:111-322   (  322) [002] d..2 82317.031761: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
103645          <idle>-0     (-----) [003] d.s3 82317.031805: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
103646          <idle>-0     (-----) [003] dns4 82317.031867: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
103647          <idle>-0     (-----) [000] d.H3 82317.031885: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
103648          <idle>-0     (-----) [003] .n.1 82317.031888: cpu_idle: state=4294967295 cpu_id=3
103649          <idle>-0     (-----) [003] d..2 82317.031897: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
103650          <idle>-0     (-----) [000] dnH4 82317.031906: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
103651          <idle>-0     (-----) [000] dns2 82317.031915: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
103652  crtc_event:111-322   (  322) [003] d..2 82317.031926: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103653          <idle>-0     (-----) [003] d..1 82317.031941: cpu_idle: state=0 cpu_id=3
103654          <idle>-0     (-----) [000] dns3 82317.031954: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103655<...>-25493 ( 8943) [001] .... 82317.031956: binder_transaction: transaction=1571866 dest_node=418757 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x33
103656          <idle>-0     (-----) [003] .n.1 82317.031961: cpu_idle: state=4294967295 cpu_id=3
103657          <idle>-0     (-----) [000] .n.1 82317.031962: cpu_idle: state=4294967295 cpu_id=0
103658<...>-25493 ( 8943) [001] .... 82317.031963: binder_transaction_alloc_buf: transaction=1571866 data_size=252 offsets_size=16
103659          <idle>-0     (-----) [000] d..2 82317.031971: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
103660          <idle>-0     (-----) [003] d..2 82317.031974: 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
103661<...>-25493 ( 8943) [001] d..4 82317.031983: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=006
103662<...>-581 ( 571) [002] d..2 82317.032004: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103663         sugov:0-576   (  576) [000] .... 82317.032004: clk_set_rate: pwrcl_clk 902400000
103664     rcu_preempt-7     (    7) [003] d..2 82317.032005: 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
103665          <idle>-0     (-----) [006] dnh2 82317.032011: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=006
103666          <idle>-0     (-----) [006] .n.1 82317.032015: cpu_idle: state=4294967295 cpu_id=6
103667          <idle>-0     (-----) [003] d..1 82317.032016: cpu_idle: state=0 cpu_id=3
103668          <idle>-0     (-----) [002] d..1 82317.032019: cpu_idle: state=0 cpu_id=2
103669          <idle>-0     (-----) [006] d..2 82317.032021: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
103670         sugov:0-576   (  576) [000] .... 82317.032025: clk_set_rate: cpu3_pwrcl_clk 748800000
103671  Binder:10023_2-10088 (10023) [006] .... 82317.032031: binder_transaction_received: transaction=1571866
103672         sugov:0-576   (  576) [000] .... 82317.032035: clk_set_rate: cpu2_pwrcl_clk 748800000
103673<...>-25493 ( 8943) [001] d..1 82317.032039: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
103674         sugov:0-576   (  576) [000] .... 82317.032043: clk_set_rate: cpu1_pwrcl_clk 748800000
103675         sugov:0-576   (  576) [000] .... 82317.032050: clk_set_rate: cpu0_pwrcl_clk 902400000
103676         sugov:0-576   (  576) [000] .... 82317.032060: cpu_frequency: state=902400 cpu_id=0
103677          <idle>-0     (-----) [004] dnh2 82317.032062: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
103678          <idle>-0     (-----) [004] .n.1 82317.032065: cpu_idle: state=4294967295 cpu_id=4
103679          <idle>-0     (-----) [004] d..2 82317.032073: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
103680         sugov:0-576   (  576) [000] .... 82317.032083: cpu_frequency: state=902400 cpu_id=1
103681         sugov:0-576   (  576) [000] .... 82317.032087: cpu_frequency: state=902400 cpu_id=2
103682         sugov:0-576   (  576) [000] .... 82317.032091: cpu_frequency: state=902400 cpu_id=3
103683<...>-9005 ( 8943) [004] d..2 82317.032093: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103684          <idle>-0     (-----) [004] d..1 82317.032099: cpu_idle: state=0 cpu_id=4
103685<...>-25493 ( 8943) [001] d..1 82317.032115: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
103686         sugov:0-576   (  576) [000] d..2 82317.032118: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103687          <idle>-0     (-----) [000] d..1 82317.032127: cpu_idle: state=0 cpu_id=0
103688          <idle>-0     (-----) [004] dnh2 82317.032136: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
103689          <idle>-0     (-----) [004] .n.1 82317.032139: cpu_idle: state=4294967295 cpu_id=4
103690          <idle>-0     (-----) [004] d..2 82317.032145: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
103691<...>-8969 ( 8943) [004] d..1 82317.032185: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
103692<...>-8969 ( 8943) [004] d..2 82317.032202: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
103693<...>-25493 ( 8943) [001] d..2 82317.032204: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
103694          <idle>-0     (-----) [005] .n.1 82317.032208: cpu_idle: state=4294967295 cpu_id=5
103695          <idle>-0     (-----) [005] d..2 82317.032218: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
103696<...>-25493 ( 8943) [001] d..3 82317.032227: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
103697  Binder:10023_2-10088 (10023) [006] d..2 82317.032231: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
103698          <idle>-0     (-----) [006] d..1 82317.032244: cpu_idle: state=0 cpu_id=6
103699<...>-25493 ( 8943) [001] d..3 82317.032262: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=000
103700<...>-8969 ( 8943) [004] .... 82317.032286: binder_transaction: transaction=1571867 dest_node=1568605 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x6
103701<...>-8969 ( 8943) [004] .... 82317.032290: binder_transaction_alloc_buf: transaction=1571867 data_size=60 offsets_size=0
103702<...>-8969 ( 8943) [004] d..4 82317.032294: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=004
103703<...>-9005 ( 8943) [005] d..2 82317.032295: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
103704<...>-25493 ( 8943) [001] d..4 82317.032298: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=001
103705          <idle>-0     (-----) [005] d..1 82317.032307: cpu_idle: state=0 cpu_id=5
103706<...>-8969 ( 8943) [004] d..5 82317.032313: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=005
103707          <idle>-0     (-----) [005] .n.1 82317.032319: cpu_idle: state=4294967295 cpu_id=5
103708          <idle>-0     (-----) [005] d..2 82317.032328: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
103709           <...>-27564 (-----) [005] .... 82317.032337: binder_transaction_received: transaction=1571867
103710<...>-8969 ( 8943) [004] d..2 82317.032363: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103711          <idle>-0     (-----) [004] d..1 82317.032374: cpu_idle: state=0 cpu_id=4
103712           <...>-27564 (-----) [005] d..2 82317.032630: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
103713          <idle>-0     (-----) [005] d..1 82317.032643: cpu_idle: state=0 cpu_id=5
103714          <idle>-0     (-----) [002] d.h2 82317.033451: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
103715          <idle>-0     (-----) [002] dnh3 82317.033466: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
103716          <idle>-0     (-----) [002] .n.1 82317.033475: cpu_idle: state=4294967295 cpu_id=2
103717          <idle>-0     (-----) [002] d..2 82317.033485: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
103718        DispSync-8879  ( 8858) [002] d..1 82317.033512: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
103719        DispSync-8879  ( 8858) [002] d..2 82317.033535: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
103720          <idle>-0     (-----) [000] .n.1 82317.033541: cpu_idle: state=4294967295 cpu_id=0
103721          <idle>-0     (-----) [000] d..2 82317.033548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
103722        DispSync-8879  ( 8858) [002] d..2 82317.033581: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
103723  appEventThread-8881  ( 8858) [000] d..3 82317.033607: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103724  appEventThread-8881  ( 8858) [000] d..4 82317.033636: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
103725          <idle>-0     (-----) [003] .n.1 82317.033642: cpu_idle: state=4294967295 cpu_id=3
103726          <idle>-0     (-----) [003] d..2 82317.033652: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
103727  appEventThread-8881  ( 8858) [000] d..3 82317.033653: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=000
103728          <idle>-0     (-----) [006] dnh2 82317.033719: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
103729          <idle>-0     (-----) [006] .n.1 82317.033723: cpu_idle: state=4294967295 cpu_id=6
103730          <idle>-0     (-----) [006] d..2 82317.033731: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
103731   statsd.writer-1044  (  901) [002] d..2 82317.033753: 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
103732          <idle>-0     (-----) [002] d..1 82317.033767: cpu_idle: state=0 cpu_id=2
103733  appEventThread-8881  ( 8858) [000] d..2 82317.033769: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=android.bg next_pid=8960 next_prio=120
103734<...>-9105 ( 9105) [003] .... 82317.033922: binder_transaction: transaction=1571868 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
103735<...>-9105 ( 9105) [003] .... 82317.033928: binder_transaction_alloc_buf: transaction=1571868 data_size=80 offsets_size=0
103736<...>-9105 ( 9105) [003] d..4 82317.033934: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
103737<...>-8960 ( 8943) [000] d..2 82317.033946: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103738          <idle>-0     (-----) [000] d..1 82317.033959: cpu_idle: state=0 cpu_id=0
103739          <idle>-0     (-----) [000] .n.1 82317.033963: cpu_idle: state=4294967295 cpu_id=0
103740<...>-9105 ( 9105) [003] d..5 82317.033964: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
103741<...>-25493 ( 8943) [001] d..3 82317.033976: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
103742          <idle>-0     (-----) [000] d..2 82317.033977: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
103743<...>-13083 ( 8858) [000] .... 82317.033985: binder_transaction_received: transaction=1571868
103744<...>-9105 ( 9105) [003] d..3 82317.034000: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
103745<...>-25493 ( 8943) [001] d..4 82317.034000: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
103746          <idle>-0     (-----) [002] .n.1 82317.034007: cpu_idle: state=4294967295 cpu_id=2
103747<...>-13083 ( 8858) [000] d..1 82317.034015: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
103748          <idle>-0     (-----) [002] d..2 82317.034019: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
103749<...>-13083 ( 8858) [000] d..2 82317.034039: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
103750<...>-9105 ( 9105) [003] d..4 82317.034043: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
103751<...>-9039 ( 8943) [002] d..2 82317.034051: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
103752<...>-13083 ( 8858) [000] d..2 82317.034078: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103753          <idle>-0     (-----) [000] d..1 82317.034089: cpu_idle: state=0 cpu_id=0
103754  appEventThread-8881  ( 8858) [002] d..2 82317.034094: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
103755<...>-9039 ( 8943) [002] d..2 82317.034127: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103756          <idle>-0     (-----) [002] d..1 82317.034140: cpu_idle: state=0 cpu_id=2
103757<...>-9105 ( 9105) [003] d..2 82317.034177: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
103758    RenderThread-9436  ( 9105) [003] d..1 82317.034324: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
103759    RenderThread-9436  ( 9105) [003] d..2 82317.034349: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
103760 s.nexuslauncher-10023 (10023) [006] d..3 82317.034353: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=002
103761          <idle>-0     (-----) [000] .n.1 82317.034355: cpu_idle: state=4294967295 cpu_id=0
103762          <idle>-0     (-----) [000] d..2 82317.034364: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
103763          <idle>-0     (-----) [002] dnh2 82317.034382: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=002
103764          <idle>-0     (-----) [002] .n.1 82317.034388: cpu_idle: state=4294967295 cpu_id=2
103765 s.nexuslauncher-10023 (10023) [006] d..2 82317.034392: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
103766          <idle>-0     (-----) [002] d..2 82317.034399: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
103767          <idle>-0     (-----) [006] d..1 82317.034405: cpu_idle: state=0 cpu_id=6
103768    RenderThread-9436  ( 9105) [003] .... 82317.034421: binder_transaction: transaction=1571869 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
103769    RenderThread-9436  ( 9105) [003] .... 82317.034426: binder_transaction_alloc_buf: transaction=1571869 data_size=104 offsets_size=0
103770    RenderThread-9436  ( 9105) [003] d..4 82317.034430: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
103771    RenderThread-9436  ( 9105) [003] d..5 82317.034453: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
103772<...>-9105 ( 9105) [000] d..2 82317.034463: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103773    RenderThread-9436  ( 9105) [003] d..2 82317.034468: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
103774          <idle>-0     (-----) [000] d..1 82317.034474: cpu_idle: state=0 cpu_id=0
103775    RenderThread-16607 (10023) [002] d..1 82317.034474: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
103776<...>-13083 ( 8858) [003] .... 82317.034476: binder_transaction_received: transaction=1571869
103777          <idle>-0     (-----) [006] dnh2 82317.034497: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
103778          <idle>-0     (-----) [006] .n.1 82317.034502: cpu_idle: state=4294967295 cpu_id=6
103779          <idle>-0     (-----) [006] d..2 82317.034509: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
103780    RenderThread-16607 (10023) [002] d..2 82317.034517: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103781 s.nexuslauncher-10023 (10023) [006] d..3 82317.034526: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=002
103782          <idle>-0     (-----) [002] d..1 82317.034529: cpu_idle: state=0 cpu_id=2
103783          <idle>-0     (-----) [002] dnh2 82317.034549: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=002
103784 s.nexuslauncher-10023 (10023) [006] d..2 82317.034552: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
103785          <idle>-0     (-----) [002] .n.1 82317.034555: cpu_idle: state=4294967295 cpu_id=2
103786<...>-13083 ( 8858) [003] .... 82317.034555: binder_transaction: transaction=1571870 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
103787<...>-13083 ( 8858) [003] .... 82317.034559: binder_transaction_alloc_buf: transaction=1571870 data_size=52 offsets_size=8
103788          <idle>-0     (-----) [006] d..1 82317.034561: cpu_idle: state=0 cpu_id=6
103789          <idle>-0     (-----) [002] d..2 82317.034566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
103790<...>-13083 ( 8858) [003] d..2 82317.034571: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
103791<...>-13083 ( 8858) [003] d..3 82317.034584: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
103792    RenderThread-16607 (10023) [002] d..1 82317.034597: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
103793          <idle>-0     (-----) [006] dnh2 82317.034618: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
103794<...>-13083 ( 8858) [003] d..2 82317.034621: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
103795          <idle>-0     (-----) [006] .n.1 82317.034622: cpu_idle: state=4294967295 cpu_id=6
103796    RenderThread-9436  ( 9105) [003] .... 82317.034628: binder_transaction_received: transaction=1571870
103797          <idle>-0     (-----) [006] d..2 82317.034629: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
103798    RenderThread-16607 (10023) [002] d..2 82317.034641: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103799          <idle>-0     (-----) [002] d..1 82317.034652: cpu_idle: state=0 cpu_id=2
103800<...>-25493 ( 8943) [001] d..3 82317.034661: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
103801 s.nexuslauncher-10023 (10023) [006] d..3 82317.034682: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=002
103802          <idle>-0     (-----) [004] dnh2 82317.034686: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
103803          <idle>-0     (-----) [004] .n.1 82317.034691: cpu_idle: state=4294967295 cpu_id=4
103804          <idle>-0     (-----) [004] d..2 82317.034698: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
103805          <idle>-0     (-----) [002] dnh2 82317.034703: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=002
103806          <idle>-0     (-----) [002] .n.1 82317.034709: cpu_idle: state=4294967295 cpu_id=2
103807 s.nexuslauncher-10023 (10023) [006] d..2 82317.034710: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
103808          <idle>-0     (-----) [002] d..2 82317.034719: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
103809          <idle>-0     (-----) [006] d..1 82317.034719: cpu_idle: state=0 cpu_id=6
103810    RenderThread-16607 (10023) [002] d..1 82317.034736: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
103811<...>-8969 ( 8943) [004] d..2 82317.034736: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103812          <idle>-0     (-----) [004] d..1 82317.034745: cpu_idle: state=0 cpu_id=4
103813          <idle>-0     (-----) [006] dnh2 82317.034755: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
103814          <idle>-0     (-----) [006] .n.1 82317.034759: cpu_idle: state=4294967295 cpu_id=6
103815          <idle>-0     (-----) [006] d..2 82317.034766: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
103816    RenderThread-16607 (10023) [002] d..2 82317.034769: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103817          <idle>-0     (-----) [002] d..1 82317.034779: cpu_idle: state=0 cpu_id=2
103818 s.nexuslauncher-10023 (10023) [006] .... 82317.034854: binder_transaction: transaction=1571871 dest_node=1160153 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x6
103819 s.nexuslauncher-10023 (10023) [006] .... 82317.034858: binder_transaction_alloc_buf: transaction=1571871 data_size=120 offsets_size=8
103820 s.nexuslauncher-10023 (10023) [006] d..4 82317.034868: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
103821 s.nexuslauncher-10023 (10023) [006] d..5 82317.034878: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
103822 s.nexuslauncher-10023 (10023) [006] d..2 82317.034888: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
103823<...>-25493 ( 8943) [001] .... 82317.034897: binder_transaction: transaction=1571872 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
103824<...>-9062 ( 8943) [006] .... 82317.034899: binder_transaction_received: transaction=1571871
103825<...>-25493 ( 8943) [001] .... 82317.034903: binder_transaction_alloc_buf: transaction=1571872 data_size=96 offsets_size=0
103826<...>-25493 ( 8943) [001] d..4 82317.034908: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=003
103827<...>-25493 ( 8943) [001] d..5 82317.034938: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
103828          <idle>-0     (-----) [000] .n.1 82317.034943: cpu_idle: state=4294967295 cpu_id=0
103829          <idle>-0     (-----) [000] d..2 82317.034953: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
103830<...>-9132 ( 9105) [000] .... 82317.034960: binder_transaction_received: transaction=1571872
103831<...>-9132 ( 9105) [000] d..3 82317.035068: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
103832<...>-9132 ( 9105) [000] d..4 82317.035095: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
103833          <idle>-0     (-----) [002] .n.1 82317.035100: cpu_idle: state=4294967295 cpu_id=2
103834          <idle>-0     (-----) [002] d..2 82317.035111: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
103835           <...>-27566 (-----) [007] d.s2 82317.035132: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
103836<...>-9132 ( 9105) [000] d.s1 82317.035143: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
103837<...>-9105 ( 9105) [002] d.s4 82317.035149: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
103838<...>-9132 ( 9105) [000] d.s2 82317.035186: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
103839<...>-9105 ( 9105) [002] d.s5 82317.035194: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
103840<...>-9105 ( 9105) [002] d.H4 82317.035204: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
103841<...>-9062 ( 8943) [006] d..2 82317.035233: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
103842          <idle>-0     (-----) [006] d..1 82317.035247: cpu_idle: state=0 cpu_id=6
103843<...>-9132 ( 9105) [000] d..2 82317.035269: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103844          <idle>-0     (-----) [000] d..1 82317.035288: cpu_idle: state=0 cpu_id=0
103845<...>-9105 ( 9105) [002] d..2 82317.035306: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
103846<...>-8 ( 8) [002] d..2 82317.035316: sched_waking: comm=rcuos/4 pid=46 prio=120 target_cpu=000
103847<...>-8 ( 8) [002] d..3 82317.035357: sched_wakeup: comm=rcuos/4 pid=46 prio=120 target_cpu=003
103848<...>-8 ( 8) [002] d..2 82317.035370: 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
103849    RenderThread-9436  ( 9105) [003] d..2 82317.035373: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=rcuos/4 next_pid=46 next_prio=120
103850     rcu_preempt-7     (    7) [002] d..2 82317.035375: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
103851<...>-46 ( 46) [003] d..2 82317.035397: sched_switch: prev_comm=rcuos/4 prev_pid=46 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
103852     rcu_preempt-7     (    7) [002] d..3 82317.035408: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
103853     rcu_preempt-7     (    7) [002] d..2 82317.035411: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
103854     rcu_preempt-7     (    7) [002] d..3 82317.035444: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
103855    RenderThread-9436  ( 9105) [003] d..2 82317.035459: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=rcuop/4 next_pid=45 next_prio=120
103856     rcu_preempt-7     (    7) [002] d..2 82317.035460: 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
103857          <idle>-0     (-----) [006] ...1 82317.035460: cpu_idle: state=4294967295 cpu_id=6
103858          <idle>-0     (-----) [006] d..1 82317.035463: cpu_idle: state=0 cpu_id=6
103859         rcuop/4-45    (   45) [003] d..2 82317.035466: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=002
103860         rcuop/2-29    (   29) [002] d..2 82317.035466: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
103861         rcuop/2-29    (   29) [002] d..3 82317.035482: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
103862         rcuop/2-29    (   29) [002] d..2 82317.035493: 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
103863         rcuop/4-45    (   45) [003] d..3 82317.035512: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
103864         rcuop/3-37    (   37) [002] d..2 82317.035514: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
103865         rcuop/4-45    (   45) [003] d..2 82317.035524: 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
103866<...>-25493 ( 8943) [001] .... 82317.035526: binder_transaction: transaction=1571873 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
103867<...>-25493 ( 8943) [001] .... 82317.035532: binder_transaction_alloc_buf: transaction=1571873 data_size=76 offsets_size=0
103868<...>-25493 ( 8943) [001] ...2 82317.035538: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
103869<...>-25493 ( 8943) [001] d..4 82317.035543: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=003
103870<...>-25493 ( 8943) [001] d..5 82317.035564: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=001
103871<...>-25493 ( 8943) [001] d..2 82317.035580: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
103872  kworker/u16:15-1311  ( 1311) [002] d..2 82317.035582: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103873<...>-13083 ( 8858) [001] .... 82317.035588: binder_transaction_received: transaction=1571873
103874          <idle>-0     (-----) [002] d..1 82317.035596: cpu_idle: state=0 cpu_id=2
103875         rcuop/5-53    (   53) [003] d..2 82317.035633: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
103876<...>-13083 ( 8858) [001] .... 82317.035635: binder_transaction: transaction=1571874 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x0 code=0x0
103877<...>-13083 ( 8858) [001] .... 82317.035640: binder_transaction_alloc_buf: transaction=1571874 data_size=0 offsets_size=0
103878<...>-13083 ( 8858) [001] d..2 82317.035643: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
103879<...>-13083 ( 8858) [001] dn.3 82317.035655: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
103880<...>-13083 ( 8858) [001] d..2 82317.035663: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
103881<...>-25493 ( 8943) [001] .... 82317.035669: binder_transaction_received: transaction=1571874
103882    RenderThread-9436  ( 9105) [003] d..2 82317.036080: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
103883          <idle>-0     (-----) [003] d..1 82317.036096: cpu_idle: state=0 cpu_id=3
103884          <idle>-0     (-----) [003] d.h2 82317.036159: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
103885          <idle>-0     (-----) [003] d.h3 82317.036169: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
103886          <idle>-0     (-----) [003] dnh3 82317.036175: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
103887          <idle>-0     (-----) [003] .n.1 82317.036183: cpu_idle: state=4294967295 cpu_id=3
103888          <idle>-0     (-----) [003] d..2 82317.036194: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
103889          <idle>-0     (-----) [000] d.h3 82317.036204: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
103890          <idle>-0     (-----) [000] dnh4 82317.036229: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
103891          <idle>-0     (-----) [000] .n.1 82317.036243: cpu_idle: state=4294967295 cpu_id=0
103892          <idle>-0     (-----) [000] d..2 82317.036253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
103893 kgsl_worker_thr-258   (  258) [000] d..2 82317.036310: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
103894 kgsl_worker_thr-258   (  258) [000] d..3 82317.036325: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
103895          <idle>-0     (-----) [002] .n.1 82317.036332: cpu_idle: state=4294967295 cpu_id=2
103896          <idle>-0     (-----) [002] d..2 82317.036343: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
103897 kgsl_worker_thr-258   (  258) [000] d..2 82317.036356: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103898          <idle>-0     (-----) [000] d..1 82317.036370: cpu_idle: state=0 cpu_id=0
103899  kworker/u16:15-1311  ( 1311) [002] d..2 82317.036390: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103900          <idle>-0     (-----) [002] d..1 82317.036398: cpu_idle: state=0 cpu_id=2
103901    RenderThread-9436  ( 9105) [003] .... 82317.036414: binder_transaction: transaction=1571875 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
103902    RenderThread-9436  ( 9105) [003] .... 82317.036418: binder_transaction_alloc_buf: transaction=1571875 data_size=192 offsets_size=8
103903    RenderThread-9436  ( 9105) [003] d..4 82317.036430: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
103904    RenderThread-9436  ( 9105) [003] dn.5 82317.036454: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
103905    RenderThread-9436  ( 9105) [003] d..2 82317.036464: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
103906<...>-8874 ( 8858) [003] .... 82317.036474: binder_transaction_received: transaction=1571875
103907<...>-8874 ( 8858) [003] .... 82317.036652: binder_transaction: transaction=1571876 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
103908<...>-8874 ( 8858) [003] .... 82317.036657: binder_transaction_alloc_buf: transaction=1571876 data_size=68 offsets_size=0
103909<...>-8874 ( 8858) [003] d..2 82317.036694: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
103910    RenderThread-9436  ( 9105) [003] .... 82317.036703: binder_transaction_received: transaction=1571876
103911    RenderThread-9436  ( 9105) [003] d..2 82317.036797: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103912          <idle>-0     (-----) [003] d..1 82317.036814: cpu_idle: state=0 cpu_id=3
103913<...>-25493 ( 8943) [001] d..3 82317.036882: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
103914<...>-25493 ( 8943) [001] d..4 82317.036911: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
103915          <idle>-0     (-----) [000] .n.1 82317.036916: cpu_idle: state=4294967295 cpu_id=0
103916          <idle>-0     (-----) [000] d..2 82317.036927: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
103917<...>-9039 ( 8943) [000] d..2 82317.036986: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103918          <idle>-0     (-----) [000] d..1 82317.037000: cpu_idle: state=0 cpu_id=0
103919<...>-25493 ( 8943) [001] d..1 82317.037010: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
103920          <idle>-0     (-----) [004] dnh2 82317.037033: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
103921          <idle>-0     (-----) [004] .n.1 82317.037037: cpu_idle: state=4294967295 cpu_id=4
103922          <idle>-0     (-----) [004] d..2 82317.037045: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
103923<...>-25493 ( 8943) [001] d..1 82317.037045: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
103924<...>-25493 ( 8943) [001] d..2 82317.037065: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
103925          <idle>-0     (-----) [000] .n.1 82317.037071: cpu_idle: state=4294967295 cpu_id=0
103926          <idle>-0     (-----) [000] d..2 82317.037083: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
103927<...>-8969 ( 8943) [004] d..1 82317.037097: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
103928<...>-8969 ( 8943) [004] d..2 82317.037108: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
103929          <idle>-0     (-----) [006] .n.1 82317.037113: cpu_idle: state=4294967295 cpu_id=6
103930          <idle>-0     (-----) [006] d..2 82317.037121: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
103931<...>-25493 ( 8943) [001] .... 82317.037191: binder_transaction: transaction=1571877 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
103932<...>-8969 ( 8943) [004] d..2 82317.037193: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103933<...>-25493 ( 8943) [001] .... 82317.037195: binder_transaction_alloc_buf: transaction=1571877 data_size=4 offsets_size=0
103934<...>-25493 ( 8943) [001] d..2 82317.037200: sched_waking: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=005
103935<...>-8961 ( 8943) [000] .... 82317.037201: binder_transaction: transaction=1571878 dest_node=401308 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xf
103936          <idle>-0     (-----) [004] d..1 82317.037203: cpu_idle: state=0 cpu_id=4
103937<...>-8961 ( 8943) [000] .... 82317.037207: binder_transaction_alloc_buf: transaction=1571878 data_size=76 offsets_size=0
103938<...>-8961 ( 8943) [000] d..4 82317.037211: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
103939<...>-25493 ( 8943) [001] .... 82317.037227: binder_set_priority: proc=8943 thread=25493 old=110 => new=120 desired=120
103940          <idle>-0     (-----) [004] dnh2 82317.037233: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=110 target_cpu=004
103941          <idle>-0     (-----) [004] .n.1 82317.037237: cpu_idle: state=4294967295 cpu_id=4
103942<...>-8961 ( 8943) [000] d..5 82317.037239: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
103943          <idle>-0     (-----) [002] .n.1 82317.037243: cpu_idle: state=4294967295 cpu_id=2
103944          <idle>-0     (-----) [004] d..2 82317.037245: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=110
103945          <idle>-0     (-----) [002] d..2 82317.037254: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
103946           <...>-27550 (-----) [004] .... 82317.037257: binder_transaction_received: transaction=1571877
103947<...>-9132 ( 9105) [002] .... 82317.037261: binder_transaction_received: transaction=1571878
103948<...>-25493 ( 8943) [001] d..2 82317.037289: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
103949<...>-13083 ( 8858) [001] .... 82317.037295: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
103950<...>-8961 ( 8943) [000] .... 82317.037308: binder_transaction: transaction=1571879 dest_node=424459 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xf
103951<...>-8961 ( 8943) [000] .... 82317.037312: binder_transaction_alloc_buf: transaction=1571879 data_size=76 offsets_size=0
103952<...>-8961 ( 8943) [000] d..4 82317.037317: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=001
103953<...>-8961 ( 8943) [000] d..5 82317.037350: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
103954          <idle>-0     (-----) [003] .n.1 82317.037356: cpu_idle: state=4294967295 cpu_id=3
103955<...>-13083 ( 8858) [001] d..2 82317.037361: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
103956<...>-9062 ( 8943) [006] d..3 82317.037363: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
103957          <idle>-0     (-----) [003] d..2 82317.037368: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
103958<...>-9131 ( 9105) [003] .... 82317.037376: binder_transaction_received: transaction=1571879
103959          <idle>-0     (-----) [001] d..1 82317.037383: cpu_idle: state=0 cpu_id=1
103960<...>-9062 ( 8943) [006] d..4 82317.037385: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
103961          <idle>-0     (-----) [005] .n.1 82317.037392: cpu_idle: state=4294967295 cpu_id=5
103962          <idle>-0     (-----) [005] d..2 82317.037402: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
103963<...>-8961 ( 8943) [000] .... 82317.037414: binder_transaction: transaction=1571880 dest_node=1159303 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0xf
103964<...>-8961 ( 8943) [000] .... 82317.037418: binder_transaction_alloc_buf: transaction=1571880 data_size=76 offsets_size=0
103965<...>-9132 ( 9105) [002] d..2 82317.037422: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103966<...>-8961 ( 8943) [000] d..4 82317.037423: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=006
103967          <idle>-0     (-----) [002] d..1 82317.037435: cpu_idle: state=0 cpu_id=2
103968          <idle>-0     (-----) [002] d.h2 82317.037447: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
103969<...>-8961 ( 8943) [000] d..5 82317.037454: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=001
103970<...>-8969 ( 8943) [005] d..2 82317.037460: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
103971          <idle>-0     (-----) [002] dnh3 82317.037461: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
103972          <idle>-0     (-----) [001] .n.1 82317.037462: cpu_idle: state=4294967295 cpu_id=1
103973          <idle>-0     (-----) [005] d..1 82317.037471: cpu_idle: state=0 cpu_id=5
103974          <idle>-0     (-----) [002] .n.1 82317.037508: cpu_idle: state=4294967295 cpu_id=2
103975          <idle>-0     (-----) [001] d..2 82317.037509: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
103976          <idle>-0     (-----) [002] d..2 82317.037518: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
103977  Binder:10023_2-10088 (10023) [001] .... 82317.037519: binder_transaction_received: transaction=1571880
103978<...>-8961 ( 8943) [000] d..1 82317.037526: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
103979        DispSync-8879  ( 8858) [002] d..1 82317.037541: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
103980<...>-9062 ( 8943) [006] dnh2 82317.037552: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
103981<...>-9062 ( 8943) [006] d..2 82317.037563: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=R+ ==> next_comm=android.ui next_pid=8962 next_prio=118
103982           <...>-27550 (-----) [004] d..2 82317.037568: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
103983        DispSync-8879  ( 8858) [002] d..2 82317.037569: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
103984<...>-9131 ( 9105) [003] d..2 82317.037579: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
103985          <idle>-0     (-----) [004] d..1 82317.037583: cpu_idle: state=0 cpu_id=4
103986  Binder:10023_2-10088 (10023) [001] d..2 82317.037584: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
103987<...>-8962 ( 8943) [006] d..1 82317.037585: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
103988          <idle>-0     (-----) [003] d..1 82317.037596: cpu_idle: state=0 cpu_id=3
103989<...>-8961 ( 8943) [000] d..2 82317.037601: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
103990        DispSync-8879  ( 8858) [002] d..2 82317.037602: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
103991          <idle>-0     (-----) [002] d..1 82317.037613: cpu_idle: state=0 cpu_id=2
103992          <idle>-0     (-----) [000] d..1 82317.037618: cpu_idle: state=0 cpu_id=0
103993          <idle>-0     (-----) [000] dnh2 82317.037633: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
103994          <idle>-0     (-----) [000] .n.1 82317.037640: cpu_idle: state=4294967295 cpu_id=0
103995   sfEventThread-8882  ( 8858) [001] d..3 82317.037640: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
103996          <idle>-0     (-----) [000] d..2 82317.037653: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
103997   sfEventThread-8882  ( 8858) [001] d..4 82317.037672: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
103998          <idle>-0     (-----) [003] .n.1 82317.037678: cpu_idle: state=4294967295 cpu_id=3
103999   sfEventThread-8882  ( 8858) [001] d..3 82317.037688: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
104000          <idle>-0     (-----) [003] d..2 82317.037688: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
104001<...>-8962 ( 8943) [006] d..3 82317.037688: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
104002          <idle>-0     (-----) [002] dnh2 82317.037717: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
104003          <idle>-0     (-----) [004] dnh2 82317.037718: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
104004          <idle>-0     (-----) [004] .n.1 82317.037723: cpu_idle: state=4294967295 cpu_id=4
104005          <idle>-0     (-----) [002] .n.1 82317.037723: cpu_idle: state=4294967295 cpu_id=2
104006   sfEventThread-8882  ( 8858) [001] d..2 82317.037730: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
104007          <idle>-0     (-----) [004] d..2 82317.037731: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
104008<...>-8962 ( 8943) [006] d..2 82317.037733: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
104009          <idle>-0     (-----) [002] d..2 82317.037733: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
104010<...>-9062 ( 8943) [006] .... 82317.037739: binder_transaction: transaction=1571881 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
104011<...>-9062 ( 8943) [006] .... 82317.037742: binder_transaction_alloc_buf: transaction=1571881 data_size=96 offsets_size=0
104012<...>-9062 ( 8943) [006] d..4 82317.037746: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
104013  surfaceflinger-8858  ( 8858) [003] d.h1 82317.037783: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
104014   system_server-8943  ( 8943) [002] .... 82317.037847: binder_transaction: transaction=1571882 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
104015   system_server-8943  ( 8943) [002] .... 82317.037853: binder_transaction_alloc_buf: transaction=1571882 data_size=96 offsets_size=0
104016<...>-9005 ( 8943) [004] d..2 82317.037865: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
104017  Binder:10023_2-10088 (10023) [001] d..2 82317.037867: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104018          <idle>-0     (-----) [004] d..1 82317.037878: cpu_idle: state=0 cpu_id=4
104019<...>-9062 ( 8943) [006] d..3 82317.037884: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
104020          <idle>-0     (-----) [001] d..1 82317.037885: cpu_idle: state=0 cpu_id=1
104021          <idle>-0     (-----) [001] dnh2 82317.037944: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=001
104022          <idle>-0     (-----) [001] .n.1 82317.037951: cpu_idle: state=4294967295 cpu_id=1
104023   system_server-8943  ( 8943) [002] d..2 82317.037954: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104024          <idle>-0     (-----) [001] d..2 82317.037962: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
104025          <idle>-0     (-----) [002] d..1 82317.037969: cpu_idle: state=0 cpu_id=2
104026<...>-8962 ( 8943) [001] d..3 82317.038034: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
104027<...>-8962 ( 8943) [001] d..4 82317.038053: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
104028          <idle>-0     (-----) [002] .n.1 82317.038059: cpu_idle: state=4294967295 cpu_id=2
104029          <idle>-0     (-----) [002] d..2 82317.038071: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
104030  surfaceflinger-8858  ( 8858) [003] d..1 82317.038106: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
104031<...>-8962 ( 8943) [001] d..2 82317.038106: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104032          <idle>-0     (-----) [001] dn.1 82317.038122: cpu_idle: state=0 cpu_id=1
104033  surfaceflinger-8858  ( 8858) [003] d..2 82317.038126: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
104034          <idle>-0     (-----) [001] .n.1 82317.038131: cpu_idle: state=4294967295 cpu_id=1
104035          <idle>-0     (-----) [001] d..2 82317.038141: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
104036   system_server-8943  ( 8943) [002] .... 82317.038144: binder_transaction: transaction=1571883 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
104037   system_server-8943  ( 8943) [002] .... 82317.038149: binder_transaction_alloc_buf: transaction=1571883 data_size=96 offsets_size=0
104038<...>-9062 ( 8943) [006] .... 82317.038167: binder_transaction: transaction=1571884 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
104039<...>-9062 ( 8943) [006] .... 82317.038172: binder_transaction_alloc_buf: transaction=1571884 data_size=76 offsets_size=0
104040<...>-9062 ( 8943) [006] ...2 82317.038175: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
104041<...>-9062 ( 8943) [006] d..4 82317.038178: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=001
104042   sfEventThread-8882  ( 8858) [001] d..2 82317.038189: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104043          <idle>-0     (-----) [001] d..1 82317.038201: cpu_idle: state=0 cpu_id=1
104044<...>-9062 ( 8943) [006] dn.5 82317.038205: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
104045   system_server-8943  ( 8943) [002] d..2 82317.038214: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104046          <idle>-0     (-----) [002] d..1 82317.038227: cpu_idle: state=0 cpu_id=2
104047<...>-9062 ( 8943) [006] d..2 82317.038245: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
104048<...>-13083 ( 8858) [006] .... 82317.038255: binder_transaction_received: transaction=1571884
104049<...>-13083 ( 8858) [006] .... 82317.038289: binder_transaction: transaction=1571885 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
104050<...>-13083 ( 8858) [006] .... 82317.038293: binder_transaction_alloc_buf: transaction=1571885 data_size=0 offsets_size=0
104051<...>-13083 ( 8858) [006] .... 82317.038295: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
104052  surfaceflinger-8858  ( 8858) [003] ...1 82317.038322: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
104053<...>-13083 ( 8858) [006] d..2 82317.038325: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
104054  surfaceflinger-8858  ( 8858) [003] ...1 82317.038331: tracing_mark_write: E|8858
104055<...>-9062 ( 8943) [006] .... 82317.038334: binder_transaction_received: transaction=1571885
104056  surfaceflinger-8858  ( 8858) [003] .... 82317.038393: binder_transaction: transaction=1571886 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
104057  surfaceflinger-8858  ( 8858) [003] .... 82317.038398: binder_transaction_alloc_buf: transaction=1571886 data_size=540 offsets_size=96
104058<...>-8961 ( 8943) [000] .... 82317.038405: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27550 comm=id.nn.benchmark
104059  surfaceflinger-8858  ( 8858) [003] ...2 82317.038425: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
104060  surfaceflinger-8858  ( 8858) [003] d..4 82317.038435: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
104061  surfaceflinger-8858  ( 8858) [003] d..5 82317.038462: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
104062          <idle>-0     (-----) [001] .n.1 82317.038468: cpu_idle: state=4294967295 cpu_id=1
104063           <...>-27566 (-----) [007] d.s2 82317.038468: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
104064          <idle>-0     (-----) [001] d..2 82317.038479: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
104065<...>-8961 ( 8943) [000] .... 82317.038492: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27550 comm=id.nn.benchmark
104066 [email protected]   (  619) [001] d.h2 82317.038506: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
104067<...>-8961 ( 8943) [000] .... 82317.038511: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27550 comm=id.nn.benchmark
104068 [email protected]   (  619) [001] .... 82317.038516: binder_transaction_received: transaction=1571886
104069  surfaceflinger-8858  ( 8858) [003] d..2 82317.038526: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
104070<...>-9131 ( 9105) [003] .... 82317.038535: binder_transaction_received: transaction=1571881
104071 [email protected]   (  619) [001] ...1 82317.038578: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
104072<...>-8961 ( 8943) [000] .... 82317.038585: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27555 comm=Jit thread pool
104073<...>-8961 ( 8943) [000] .... 82317.038603: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27555 comm=Jit thread pool
104074<...>-8961 ( 8943) [000] .... 82317.038615: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27555 comm=Jit thread pool
104075<...>-9131 ( 9105) [003] d..3 82317.038646: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
104076<...>-9131 ( 9105) [003] d..4 82317.038669: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
104077          <idle>-0     (-----) [002] .n.1 82317.038675: cpu_idle: state=4294967295 cpu_id=2
104078<...>-8961 ( 8943) [000] .... 82317.038676: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27556 comm=Signal Catcher
104079          <idle>-0     (-----) [002] d..2 82317.038690: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
104080<...>-8961 ( 8943) [000] .... 82317.038693: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27556 comm=Signal Catcher
104081 [email protected]   (  619) [001] ...1 82317.038700: tracing_mark_write: B|619|HWCSession::PresentDisplay::
104082<...>-8961 ( 8943) [000] .... 82317.038704: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27556 comm=Signal Catcher
104083<...>-9131 ( 9105) [003] d..4 82317.038714: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
104084<...>-9131 ( 9105) [003] d..5 82317.038752: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
104085<...>-9131 ( 9105) [003] .... 82317.038762: binder_transaction_received: transaction=1571882
104086<...>-8961 ( 8943) [000] .... 82317.038762: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27557 comm=ADB-JDWP Connec
104087<...>-8961 ( 8943) [000] .... 82317.038780: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27557 comm=ADB-JDWP Connec
104088<...>-9105 ( 9105) [002] d..2 82317.038790: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
104089<...>-8961 ( 8943) [000] .... 82317.038791: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27557 comm=ADB-JDWP Connec
104090<...>-9132 ( 9105) [002] d..2 82317.038821: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104091          <idle>-0     (-----) [002] d..1 82317.038830: cpu_idle: state=0 cpu_id=2
104092<...>-9131 ( 9105) [003] d..3 82317.038842: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
104093<...>-8961 ( 8943) [000] .... 82317.038852: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27558 comm=ReferenceQueueD
104094<...>-9131 ( 9105) [003] d..4 82317.038859: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
104095          <idle>-0     (-----) [002] .n.1 82317.038865: cpu_idle: state=4294967295 cpu_id=2
104096<...>-8961 ( 8943) [000] .... 82317.038869: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27558 comm=ReferenceQueueD
104097          <idle>-0     (-----) [002] d..2 82317.038874: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
104098<...>-8961 ( 8943) [000] .... 82317.038881: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27558 comm=ReferenceQueueD
104099 [email protected]   (  619) [001] ...1 82317.038885: tracing_mark_write: B|619|HWDeviceDRM::Commit::
104100<...>-9131 ( 9105) [003] d..4 82317.038896: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
104101 [email protected]   (  619) [001] ...1 82317.038897: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
104102<...>-9131 ( 9105) [003] d..5 82317.038929: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
104103<...>-9131 ( 9105) [003] .... 82317.038937: binder_transaction_received: transaction=1571883
104104<...>-8961 ( 8943) [000] .... 82317.038939: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27559 comm=FinalizerDaemon
104105<...>-9105 ( 9105) [002] d..2 82317.038942: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
104106<...>-8961 ( 8943) [000] .... 82317.038956: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27559 comm=FinalizerDaemon
104107<...>-9132 ( 9105) [002] d..2 82317.038967: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104108<...>-8961 ( 8943) [000] .... 82317.038968: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27559 comm=FinalizerDaemon
104109          <idle>-0     (-----) [002] d..1 82317.038975: cpu_idle: state=0 cpu_id=2
104110<...>-9131 ( 9105) [003] d..3 82317.039012: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
104111<...>-8961 ( 8943) [000] .... 82317.039028: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27560 comm=FinalizerWatchd
104112<...>-9131 ( 9105) [003] d..4 82317.039029: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
104113          <idle>-0     (-----) [002] .n.1 82317.039034: cpu_idle: state=4294967295 cpu_id=2
104114          <idle>-0     (-----) [002] d..2 82317.039044: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
104115<...>-8961 ( 8943) [000] .... 82317.039045: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27560 comm=FinalizerWatchd
104116<...>-8961 ( 8943) [000] .... 82317.039057: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27560 comm=FinalizerWatchd
104117<...>-9062 ( 8943) [006] d..3 82317.039061: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
104118<...>-9131 ( 9105) [003] d..2 82317.039095: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104119<...>-8961 ( 8943) [000] dnh1 82317.039101: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
104120<...>-9105 ( 9105) [002] d..2 82317.039110: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104121          <idle>-0     (-----) [003] d..1 82317.039113: cpu_idle: state=0 cpu_id=3
104122<...>-8961 ( 8943) [000] d..2 82317.039113: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R+ ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
104123          <idle>-0     (-----) [002] d..1 82317.039119: cpu_idle: state=0 cpu_id=2
104124<...>-9039 ( 8943) [000] d..2 82317.039153: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
104125<...>-8961 ( 8943) [000] .... 82317.039190: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27561 comm=HeapTaskDaemon
104126<...>-8961 ( 8943) [000] .... 82317.039210: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27561 comm=HeapTaskDaemon
104127<...>-8961 ( 8943) [000] .... 82317.039222: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27561 comm=HeapTaskDaemon
104128<...>-8961 ( 8943) [000] .... 82317.039287: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27562 comm=Binder:27550_1
104129<...>-8961 ( 8943) [000] .... 82317.039304: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27562 comm=Binder:27550_1
104130<...>-8961 ( 8943) [000] .... 82317.039315: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27562 comm=Binder:27550_1
104131<...>-8961 ( 8943) [000] .... 82317.039375: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27563 comm=Binder:27550_2
104132<...>-8961 ( 8943) [000] .... 82317.039392: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27563 comm=Binder:27550_2
104133<...>-8961 ( 8943) [000] .... 82317.039403: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27563 comm=Binder:27550_2
104134<...>-8961 ( 8943) [000] .... 82317.039463: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27564 comm=Binder:27550_3
104135<...>-8961 ( 8943) [000] .... 82317.039480: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27564 comm=Binder:27550_3
104136<...>-8961 ( 8943) [000] .... 82317.039491: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27564 comm=Binder:27550_3
104137 [email protected]   (  619) [001] d..2 82317.039528: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
104138<...>-8961 ( 8943) [000] .... 82317.039552: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27565 comm=Profile Saver
104139 [email protected]   (  619) [001] d..3 82317.039553: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
104140          <idle>-0     (-----) [003] .n.1 82317.039560: cpu_idle: state=4294967295 cpu_id=3
104141<...>-8961 ( 8943) [000] .... 82317.039569: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27565 comm=Profile Saver
104142          <idle>-0     (-----) [003] d..2 82317.039571: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
104143<...>-8961 ( 8943) [000] .... 82317.039581: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27565 comm=Profile Saver
104144<...>-8961 ( 8943) [000] .... 82317.039651: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27566 comm=roidJUnitRunner
104145 [email protected]   (  619) [001] ...1 82317.039656: tracing_mark_write: E|619
104146 [email protected]   (  619) [001] ...1 82317.039663: tracing_mark_write: E|619
104147<...>-8961 ( 8943) [000] .... 82317.039669: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27566 comm=roidJUnitRunner
104148<...>-8961 ( 8943) [000] .... 82317.039680: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27566 comm=roidJUnitRunner
104149 [email protected]   (  619) [001] ...1 82317.039727: tracing_mark_write: E|619
104150<...>-8961 ( 8943) [000] .... 82317.039744: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27567 comm=Instrumentation
104151<...>-8961 ( 8943) [000] .... 82317.039761: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27567 comm=Instrumentation
104152<...>-8961 ( 8943) [000] .... 82317.039772: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27567 comm=Instrumentation
104153 [email protected]   (  619) [001] ...1 82317.039782: tracing_mark_write: E|619
104154 [email protected]   (  619) [001] .... 82317.039798: binder_transaction: transaction=1571887 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
104155 [email protected]   (  619) [001] .... 82317.039802: binder_transaction_alloc_buf: transaction=1571887 data_size=576 offsets_size=112
104156 [email protected]   (  619) [001] d..2 82317.039822: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
104157<...>-8961 ( 8943) [000] .... 82317.039832: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27570 comm=RenderThread
104158 [email protected]   (  619) [001] d..3 82317.039845: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
104159 [email protected]   (  619) [001] .... 82317.039849: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
104160<...>-8961 ( 8943) [000] .... 82317.039849: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27570 comm=RenderThread
104161          <idle>-0     (-----) [002] .n.1 82317.039849: cpu_idle: state=4294967295 cpu_id=2
104162          <idle>-0     (-----) [002] d..2 82317.039857: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
104163<...>-8961 ( 8943) [000] .... 82317.039861: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27570 comm=RenderThread
104164<...>-9062 ( 8943) [006] d..3 82317.039865: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
104165  surfaceflinger-8858  ( 8858) [002] .... 82317.039868: binder_transaction_received: transaction=1571887
104166<...>-9062 ( 8943) [006] d..1 82317.039901: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
104167<...>-8961 ( 8943) [000] dnh1 82317.039904: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
104168<...>-8961 ( 8943) [000] d..2 82317.039917: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R+ ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
104169<...>-9062 ( 8943) [006] d..2 82317.039918: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
104170 [email protected]   (  619) [001] d..2 82317.039924: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
104171          <idle>-0     (-----) [004] .n.1 82317.039924: cpu_idle: state=4294967295 cpu_id=4
104172          <idle>-0     (-----) [004] d..2 82317.039933: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
104173<...>-9039 ( 8943) [000] d..2 82317.039949: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
104174<...>-8969 ( 8943) [004] d..1 82317.039993: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
104175<...>-8961 ( 8943) [000] .... 82317.040005: cgroup_attach_task: dst_root=5 dst_id=2 dst_level=1 dst_path=/foreground pid=27571 comm=HwBinder:27550_
104176<...>-8969 ( 8943) [004] d..2 82317.040013: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
104177          <idle>-0     (-----) [005] .n.1 82317.040019: cpu_idle: state=4294967295 cpu_id=5
104178<...>-8961 ( 8943) [000] .... 82317.040024: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27571 comm=HwBinder:27550_
104179          <idle>-0     (-----) [005] d..2 82317.040027: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
104180<...>-8961 ( 8943) [000] .... 82317.040036: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=27571 comm=HwBinder:27550_
104181  kworker/u16:15-1311  ( 1311) [001] .... 82317.040068: clk_set_rate: l3_cluster0_vote_clk 652800000
104182<...>-9005 ( 8943) [005] .... 82317.040091: binder_transaction: transaction=1571888 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
104183<...>-9005 ( 8943) [005] .... 82317.040096: binder_transaction_alloc_buf: transaction=1571888 data_size=80 offsets_size=0
104184<...>-9005 ( 8943) [005] d..4 82317.040099: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
104185<...>-8969 ( 8943) [004] d..2 82317.040109: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
104186<...>-9005 ( 8943) [005] d..5 82317.040126: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
104187          <idle>-0     (-----) [004] d..2 82317.040143: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
104188<...>-13083 ( 8858) [004] .... 82317.040154: binder_transaction_received: transaction=1571888
104189<...>-13083 ( 8858) [004] d..1 82317.040180: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
104190<...>-8961 ( 8943) [000] d..3 82317.040190: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
104191  kworker/u16:15-1311  ( 1311) [001] dnh3 82317.040203: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
104192  kworker/u16:15-1311  ( 1311) [001] d..2 82317.040214: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
104193<...>-8961 ( 8943) [000] dn.4 82317.040216: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=000
104194<...>-13083 ( 8858) [004] d..2 82317.040220: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
104195<...>-8961 ( 8943) [000] d..2 82317.040227: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R+ ==> next_comm=lmkd next_pid=821 next_prio=98
104196          <idle>-0     (-----) [004] d..1 82317.040233: cpu_idle: state=0 cpu_id=4
104197   sfEventThread-8882  ( 8858) [001] d..2 82317.040253: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
104198<...>-9062 ( 8943) [006] .... 82317.040284: binder_transaction: transaction=1571889 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
104199<...>-9062 ( 8943) [006] .... 82317.040289: binder_transaction_alloc_buf: transaction=1571889 data_size=1520 offsets_size=0
104200<...>-9062 ( 8943) [006] d..2 82317.040293: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
104201 crtc_commit:111-321   (  321) [003] d..2 82317.040299: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
104202<...>-9062 ( 8943) [006] d..3 82317.040304: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
104203          <idle>-0     (-----) [003] d..1 82317.040316: cpu_idle: state=0 cpu_id=3
104204<...>-9062 ( 8943) [006] d..2 82317.040337: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
104205 s.nexuslauncher-10023 (10023) [006] .... 82317.040349: binder_transaction_received: transaction=1571889
104206  surfaceflinger-8858  ( 8858) [002] d..2 82317.040376: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104207          <idle>-0     (-----) [002] d..1 82317.040388: cpu_idle: state=0 cpu_id=2
104208<...>-9005 ( 8943) [005] .... 82317.040479: binder_transaction: transaction=1571890 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
104209<...>-9005 ( 8943) [005] .... 82317.040483: binder_transaction_alloc_buf: transaction=1571890 data_size=988 offsets_size=48
104210<...>-9005 ( 8943) [005] ...2 82317.040501: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
104211<...>-9005 ( 8943) [005] d..4 82317.040503: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
104212<...>-9005 ( 8943) [005] d..5 82317.040518: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
104213<...>-9005 ( 8943) [005] d..2 82317.040529: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
104214<...>-13083 ( 8858) [005] .... 82317.040538: binder_transaction_received: transaction=1571890
104215  kworker/u16:15-1311  ( 1311) [001] d..2 82317.040539: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
104216          <idle>-0     (-----) [001] d.s4 82317.040586: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
104217          <idle>-0     (-----) [001] d.s5 82317.040597: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
104218          <idle>-0     (-----) [001] dns5 82317.040602: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
104219          <idle>-0     (-----) [001] d..2 82317.040615: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
104220<...>-13083 ( 8858) [005] .... 82317.040625: binder_transaction: transaction=1571891 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
104221<...>-13083 ( 8858) [005] .... 82317.040628: binder_transaction_alloc_buf: transaction=1571891 data_size=0 offsets_size=0
104222<...>-13083 ( 8858) [005] d..2 82317.040630: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
104223<...>-13083 ( 8858) [005] dn.3 82317.040639: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
104224<...>-13083 ( 8858) [005] d..2 82317.040652: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=android.anim next_pid=9005 next_prio=110
104225<...>-9005 ( 8943) [005] .... 82317.040665: binder_transaction_received: transaction=1571891
104226  kworker/u16:15-1311  ( 1311) [001] .... 82317.040741: clk_set_rate: l3_cluster1_vote_clk 576000000
104227  kworker/u16:15-1311  ( 1311) [001] .... 82317.040747: clk_set_rate: l3_clk 652800000
104228<...>-821 ( 821) [000] d..2 82317.040770: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
104229  kworker/u16:15-1311  ( 1311) [001] d..2 82317.040799: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104230          <idle>-0     (-----) [001] d..1 82317.040817: cpu_idle: state=0 cpu_id=1
104231 s.nexuslauncher-10023 (10023) [006] d..3 82317.040855: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=002
104232          <idle>-0     (-----) [001] dnh2 82317.040889: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=001
104233          <idle>-0     (-----) [001] .n.1 82317.040897: cpu_idle: state=4294967295 cpu_id=1
104234 s.nexuslauncher-10023 (10023) [006] d..2 82317.040901: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
104235          <idle>-0     (-----) [001] d..2 82317.040908: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
104236          <idle>-0     (-----) [006] d..1 82317.040917: cpu_idle: state=0 cpu_id=6
104237    RenderThread-16607 (10023) [001] d..1 82317.040946: sched_waking: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
104238          <idle>-0     (-----) [006] dnh2 82317.040971: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=120 target_cpu=006
104239<...>-9005 ( 8943) [005] .... 82317.040972: binder_transaction: transaction=1571892 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
104240          <idle>-0     (-----) [006] .n.1 82317.040975: cpu_idle: state=4294967295 cpu_id=6
104241<...>-9005 ( 8943) [005] .... 82317.040977: binder_transaction_alloc_buf: transaction=1571892 data_size=96 offsets_size=0
104242<...>-9005 ( 8943) [005] d..4 82317.040981: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
104243          <idle>-0     (-----) [006] d..2 82317.040983: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=120
104244    RenderThread-16607 (10023) [001] d..2 82317.040994: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104245          <idle>-0     (-----) [003] dnh2 82317.041006: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
104246          <idle>-0     (-----) [001] d..1 82317.041009: cpu_idle: state=0 cpu_id=1
104247          <idle>-0     (-----) [003] .n.1 82317.041013: cpu_idle: state=4294967295 cpu_id=3
104248<...>-8961 ( 8943) [000] .... 82317.041022: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10023 comm=s.nexuslauncher
104249          <idle>-0     (-----) [003] d..2 82317.041024: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
104250<...>-9131 ( 9105) [003] .... 82317.041031: binder_transaction_received: transaction=1571892
104251 s.nexuslauncher-10023 (10023) [006] .... 82317.041042: binder_transaction: transaction=1571893 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
104252 s.nexuslauncher-10023 (10023) [006] .... 82317.041046: binder_transaction_alloc_buf: transaction=1571893 data_size=80 offsets_size=0
104253 s.nexuslauncher-10023 (10023) [006] d..4 82317.041050: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
104254<...>-9005 ( 8943) [005] d..3 82317.041054: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=001
104255<...>-8961 ( 8943) [000] .... 82317.041056: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10023 comm=s.nexuslauncher
104256<...>-8961 ( 8943) [000] .... 82317.041070: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10023 comm=s.nexuslauncher
104257          <idle>-0     (-----) [001] dnh2 82317.041081: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=001
104258          <idle>-0     (-----) [001] dnh2 82317.041086: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
104259 s.nexuslauncher-10023 (10023) [006] d..3 82317.041090: sched_waking: comm=RenderThread pid=16607 prio=120 target_cpu=001
104260          <idle>-0     (-----) [001] .n.1 82317.041093: cpu_idle: state=4294967295 cpu_id=1
104261          <idle>-0     (-----) [001] d..2 82317.041108: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
104262<...>-8874 ( 8858) [001] .... 82317.041117: binder_transaction_received: transaction=1571893
104263          <idle>-0     (-----) [002] dnh2 82317.041120: sched_wakeup: comm=RenderThread pid=16607 prio=120 target_cpu=002
104264          <idle>-0     (-----) [002] .n.1 82317.041126: cpu_idle: state=4294967295 cpu_id=2
104265          <idle>-0     (-----) [002] d..2 82317.041135: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=120
104266<...>-9131 ( 9105) [003] d..3 82317.041136: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
104267<...>-8961 ( 8943) [000] .... 82317.041139: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10045 comm=Jit thread pool
104268<...>-8874 ( 8858) [001] d..1 82317.041150: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
104269<...>-8961 ( 8943) [000] .... 82317.041158: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10045 comm=Jit thread pool
104270<...>-8874 ( 8858) [001] d..2 82317.041171: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
104271<...>-8961 ( 8943) [000] .... 82317.041171: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10045 comm=Jit thread pool
104272    RenderThread-16607 (10023) [002] d..2 82317.041187: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
104273<...>-9131 ( 9105) [003] d..4 82317.041197: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
104274 s.nexuslauncher-10023 (10023) [006] d..2 82317.041241: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
104275<...>-8874 ( 8858) [001] d..2 82317.041251: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
104276<...>-8961 ( 8943) [000] .... 82317.041262: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10056 comm=Signal Catcher
104277  appEventThread-8881  ( 8858) [002] d..2 82317.041278: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
104278<...>-8962 ( 8943) [001] d.h1 82317.041280: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
104279<...>-8961 ( 8943) [000] .... 82317.041281: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10056 comm=Signal Catcher
104280<...>-9005 ( 8943) [005] .... 82317.041313: binder_transaction: transaction=1571894 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
104281<...>-9005 ( 8943) [005] .... 82317.041317: binder_transaction_alloc_buf: transaction=1571894 data_size=76 offsets_size=0
104282<...>-8961 ( 8943) [000] .... 82317.041319: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10056 comm=Signal Catcher
104283<...>-9005 ( 8943) [005] ...2 82317.041320: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
104284<...>-9131 ( 9105) [003] d..2 82317.041321: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104285<...>-9005 ( 8943) [005] d..4 82317.041323: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=001
104286          <idle>-0     (-----) [003] d..1 82317.041339: cpu_idle: state=0 cpu_id=3
104287<...>-9005 ( 8943) [005] d..5 82317.041351: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
104288          <idle>-0     (-----) [004] .n.1 82317.041361: cpu_idle: state=4294967295 cpu_id=4
104289<...>-8962 ( 8943) [001] d..3 82317.041398: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
104290<...>-9005 ( 8943) [005] d.h5 82317.041401: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
104291<...>-8961 ( 8943) [000] .... 82317.041402: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10058 comm=ADB-JDWP Connec
104292          <idle>-0     (-----) [004] d..2 82317.041402: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
104293<...>-8961 ( 8943) [000] .... 82317.041437: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10058 comm=ADB-JDWP Connec
104294<...>-8874 ( 8858) [004] .... 82317.041441: binder_transaction_received: transaction=1571894
104295<...>-8962 ( 8943) [001] d..4 82317.041448: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=003
104296          <idle>-0     (-----) [003] dnh2 82317.041449: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
104297<...>-8961 ( 8943) [000] .... 82317.041449: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10058 comm=ADB-JDWP Connec
104298<...>-9005 ( 8943) [005] d..2 82317.041449: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
104299<...>-13083 ( 8858) [005] .... 82317.041479: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
104300<...>-9105 ( 9105) [002] d..2 82317.041487: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104301<...>-8874 ( 8858) [004] .... 82317.041494: binder_transaction: transaction=1571896 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
104302 s.nexuslauncher-10023 (10023) [006] .... 82317.041497: binder_transaction: transaction=1571895 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3f
104303<...>-8874 ( 8858) [004] .... 82317.041497: binder_transaction_alloc_buf: transaction=1571896 data_size=0 offsets_size=0
104304          <idle>-0     (-----) [003] dnh3 82317.041500: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=002
104305<...>-8874 ( 8858) [004] d..2 82317.041500: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
104306 s.nexuslauncher-10023 (10023) [006] .... 82317.041501: binder_transaction_alloc_buf: transaction=1571895 data_size=100 offsets_size=8
104307          <idle>-0     (-----) [002] d..2 82317.041507: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
104308 s.nexuslauncher-10023 (10023) [006] d..4 82317.041509: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
104309<...>-8874 ( 8858) [004] d..3 82317.041514: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
104310<...>-8874 ( 8858) [004] .... 82317.041517: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
104311 s.nexuslauncher-10023 (10023) [006] d..5 82317.041519: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
104312<...>-8962 ( 8943) [001] d..2 82317.041521: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
104313          <idle>-0     (-----) [003] dnh2 82317.041525: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
104314<...>-8874 ( 8858) [004] d..2 82317.041526: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=android.anim next_pid=9005 next_prio=110
104315 s.nexuslauncher-10023 (10023) [006] d..2 82317.041532: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
104316 irq/81-114a000.-9677  ( 9677) [002] d..2 82317.041532: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
104317          <idle>-0     (-----) [003] .n.1 82317.041557: cpu_idle: state=4294967295 cpu_id=3
104318 irq/81-114a000.-9677  ( 9677) [002] dn.3 82317.041561: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
104319<...>-8961 ( 8943) [000] .... 82317.041563: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10059 comm=ReferenceQueueD
104320<...>-9062 ( 8943) [006] .... 82317.041564: binder_transaction_received: transaction=1571895
104321<...>-9005 ( 8943) [004] .... 82317.041564: binder_transaction_received: transaction=1571896
104322          <idle>-0     (-----) [003] d..2 82317.041568: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
104323 irq/81-114a000.-9677  ( 9677) [002] d..2 82317.041569: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=R+ ==> next_comm=migration/2 next_pid=25 next_prio=0
104324<...>-13083 ( 8858) [005] d..2 82317.041572: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
104325<...>-8961 ( 8943) [000] .... 82317.041582: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10059 comm=ReferenceQueueD
104326          <idle>-0     (-----) [005] d..1 82317.041585: cpu_idle: state=0 cpu_id=5
104327<...>-8961 ( 8943) [000] .... 82317.041596: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10059 comm=ReferenceQueueD
104328         sugov:0-576   (  576) [003] d..2 82317.041616: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=R+ ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
104329     migration/2-25    (   25) [002] d..2 82317.041630: 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
104330          <idle>-0     (-----) [002] d..1 82317.041644: cpu_idle: state=0 cpu_id=2
104331          <idle>-0     (-----) [002] .n.1 82317.041668: cpu_idle: state=4294967295 cpu_id=2
104332          <idle>-0     (-----) [002] d..2 82317.041678: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
104333<...>-8961 ( 8943) [000] .... 82317.041683: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10060 comm=FinalizerDaemon
104334         sugov:0-576   (  576) [002] .... 82317.041688: clk_set_rate: pwrcl_clk 1056000000
104335         sugov:0-576   (  576) [002] .... 82317.041717: clk_set_rate: cpu3_pwrcl_clk 902400000
104336<...>-8961 ( 8943) [000] .... 82317.041719: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10060 comm=FinalizerDaemon
104337         sugov:0-576   (  576) [002] .... 82317.041726: clk_set_rate: cpu2_pwrcl_clk 902400000
104338<...>-8961 ( 8943) [000] .... 82317.041731: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10060 comm=FinalizerDaemon
104339         sugov:0-576   (  576) [002] .... 82317.041733: clk_set_rate: cpu1_pwrcl_clk 902400000
104340<...>-581 ( 571) [001] d..2 82317.041740: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104341         sugov:0-576   (  576) [002] .... 82317.041743: clk_set_rate: cpu0_pwrcl_clk 1056000000
104342         sugov:0-576   (  576) [002] .... 82317.041760: cpu_frequency: state=1056000 cpu_id=0
104343          <idle>-0     (-----) [001] d..1 82317.041766: cpu_idle: state=0 cpu_id=1
104344<...>-9062 ( 8943) [006] d..2 82317.041774: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
104345         sugov:0-576   (  576) [002] d.s1 82317.041808: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
104346          <idle>-0     (-----) [006] d..1 82317.041822: cpu_idle: state=0 cpu_id=6
104347         sugov:0-576   (  576) [002] d.s2 82317.041832: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
104348         sugov:0-576   (  576) [002] .... 82317.041853: cpu_frequency: state=1056000 cpu_id=1
104349<...>-8961 ( 8943) [000] .... 82317.041855: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10061 comm=FinalizerWatchd
104350         sugov:0-576   (  576) [002] .... 82317.041860: cpu_frequency: state=1056000 cpu_id=2
104351         sugov:0-576   (  576) [002] .... 82317.041863: cpu_frequency: state=1056000 cpu_id=3
104352<...>-8961 ( 8943) [000] .... 82317.041874: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10061 comm=FinalizerWatchd
104353 irq/81-114a000.-9677  ( 9677) [003] d..2 82317.041877: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=D ==> next_comm=system_server next_pid=8943 next_prio=118
104354         sugov:0-576   (  576) [002] d..2 82317.041879: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
104355<...>-8961 ( 8943) [000] .... 82317.041885: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10061 comm=FinalizerWatchd
104356     rcu_preempt-7     (    7) [002] d..2 82317.041913: 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
104357          <idle>-0     (-----) [001] d.s3 82317.041914: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
104358          <idle>-0     (-----) [002] d..1 82317.041925: cpu_idle: state=0 cpu_id=2
104359          <idle>-0     (-----) [001] d.s4 82317.041927: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
104360          <idle>-0     (-----) [001] ...1 82317.041937: cpu_idle: state=4294967295 cpu_id=1
104361   system_server-8943  ( 8943) [003] d..2 82317.041941: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=R+ ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
104362<...>-8961 ( 8943) [000] .... 82317.041941: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10062 comm=HeapTaskDaemon
104363          <idle>-0     (-----) [001] d..1 82317.041942: cpu_idle: state=0 cpu_id=1
104364<...>-8961 ( 8943) [000] .... 82317.041957: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10062 comm=HeapTaskDaemon
104365<...>-8961 ( 8943) [000] .... 82317.041967: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10062 comm=HeapTaskDaemon
104366 irq/81-114a000.-9677  ( 9677) [003] d..2 82317.041968: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
104367           <...>-27566 (-----) [007] d..1 82317.042005: sched_waking: comm=HeapTaskDaemon pid=27561 prio=124 target_cpu=000
104368          <idle>-0     (-----) [006] ...1 82317.042016: cpu_idle: state=4294967295 cpu_id=6
104369<...>-8961 ( 8943) [000] .... 82317.042020: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10063 comm=Binder:10023_1
104370          <idle>-0     (-----) [006] d..1 82317.042020: cpu_idle: state=0 cpu_id=6
104371   system_server-8943  ( 8943) [003] .... 82317.042030: binder_transaction: transaction=1571897 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
104372<...>-8961 ( 8943) [000] .... 82317.042035: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10063 comm=Binder:10023_1
104373   system_server-8943  ( 8943) [003] .... 82317.042035: binder_transaction_alloc_buf: transaction=1571897 data_size=96 offsets_size=0
104374          <idle>-0     (-----) [001] dnh2 82317.042038: sched_wakeup: comm=HeapTaskDaemon pid=27561 prio=124 target_cpu=001
104375   system_server-8943  ( 8943) [003] d..4 82317.042039: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
104376          <idle>-0     (-----) [001] .n.1 82317.042043: cpu_idle: state=4294967295 cpu_id=1
104377<...>-8961 ( 8943) [000] .... 82317.042045: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10063 comm=Binder:10023_1
104378          <idle>-0     (-----) [001] d..2 82317.042055: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=27561 next_prio=124
104379           <...>-27566 (-----) [007] d..1 82317.042056: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
104380   system_server-8943  ( 8943) [003] d..5 82317.042070: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=002
104381          <idle>-0     (-----) [002] dnh2 82317.042080: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
104382          <idle>-0     (-----) [002] .n.1 82317.042085: cpu_idle: state=4294967295 cpu_id=2
104383          <idle>-0     (-----) [002] d..2 82317.042095: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
104384<...>-8961 ( 8943) [000] .... 82317.042097: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10088 comm=Binder:10023_2
104385           <...>-27561 (-----) [001] d..2 82317.042105: sched_switch: prev_comm=HeapTaskDaemon prev_pid=27561 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104386<...>-8961 ( 8943) [000] .... 82317.042113: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10088 comm=Binder:10023_2
104387          <idle>-0     (-----) [001] d..1 82317.042116: cpu_idle: state=0 cpu_id=1
104388<...>-8961 ( 8943) [000] .... 82317.042122: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10088 comm=Binder:10023_2
104389   system_server-8943  ( 8943) [003] d..2 82317.042142: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104390          <idle>-0     (-----) [003] d..1 82317.042159: cpu_idle: state=0 cpu_id=3
104391<...>-8961 ( 8943) [000] .... 82317.042176: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10100 comm=Profile Saver
104392<...>-8961 ( 8943) [000] .... 82317.042191: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10100 comm=Profile Saver
104393           <...>-27566 (-----) [007] d..2 82317.042198: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
104394<...>-8961 ( 8943) [000] .... 82317.042203: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10100 comm=Profile Saver
104395          <idle>-0     (-----) [001] dnh2 82317.042219: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
104396          <idle>-0     (-----) [001] .n.1 82317.042225: cpu_idle: state=4294967295 cpu_id=1
104397          <idle>-0     (-----) [001] d..2 82317.042234: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
104398<...>-8961 ( 8943) [000] .... 82317.042257: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10131 comm=pool-1-thread-1
104399<...>-8961 ( 8943) [000] .... 82317.042272: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10131 comm=pool-1-thread-1
104400<...>-8961 ( 8943) [000] .... 82317.042282: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10131 comm=pool-1-thread-1
104401<...>-581 ( 571) [001] d..2 82317.042310: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104402          <idle>-0     (-----) [001] d..1 82317.042322: cpu_idle: state=0 cpu_id=1
104403<...>-8961 ( 8943) [000] .... 82317.042335: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10136 comm=launcher-loader
104404           <...>-27566 (-----) [007] d..2 82317.042340: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
104405<...>-8961 ( 8943) [000] .... 82317.042351: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10136 comm=launcher-loader
104406          <idle>-0     (-----) [007] d..1 82317.042358: cpu_idle: state=0 cpu_id=7
104407<...>-8961 ( 8943) [000] .... 82317.042361: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10136 comm=launcher-loader
104408<...>-9005 ( 8943) [004] d..3 82317.042382: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
104409          <idle>-0     (-----) [001] dnh2 82317.042413: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
104410<...>-8961 ( 8943) [000] .... 82317.042414: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10175 comm=GAC_Executor[0]
104411          <idle>-0     (-----) [001] .n.1 82317.042419: cpu_idle: state=4294967295 cpu_id=1
104412<...>-9005 ( 8943) [004] d..3 82317.042424: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
104413          <idle>-0     (-----) [001] d..2 82317.042429: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
104414<...>-8961 ( 8943) [000] .... 82317.042430: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10175 comm=GAC_Executor[0]
104415<...>-8961 ( 8943) [000] .... 82317.042439: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10175 comm=GAC_Executor[0]
104416<...>-9005 ( 8943) [004] d..4 82317.042443: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
104417          <idle>-0     (-----) [005] .n.1 82317.042450: cpu_idle: state=4294967295 cpu_id=5
104418          <idle>-0     (-----) [005] d..2 82317.042460: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
104419<...>-9039 ( 8943) [001] d..2 82317.042479: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104420          <idle>-0     (-----) [001] d..1 82317.042491: cpu_idle: state=0 cpu_id=1
104421<...>-8961 ( 8943) [000] .... 82317.042494: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10177 comm=GoogleApiHandle
104422<...>-8961 ( 8943) [000] .... 82317.042510: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10177 comm=GoogleApiHandle
104423<...>-8961 ( 8943) [000] .... 82317.042520: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10177 comm=GoogleApiHandle
104424<...>-9005 ( 8943) [004] d..2 82317.042544: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
104425<...>-8969 ( 8943) [005] d..2 82317.042547: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
104426          <idle>-0     (-----) [005] d..1 82317.042558: cpu_idle: state=0 cpu_id=5
104427<...>-8961 ( 8943) [000] .... 82317.042574: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10205 comm=queued-work-loo
104428<...>-8961 ( 8943) [000] .... 82317.042589: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10205 comm=queued-work-loo
104429<...>-8874 ( 8858) [004] d..2 82317.042591: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
104430<...>-8961 ( 8943) [000] .... 82317.042599: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10205 comm=queued-work-loo
104431          <idle>-0     (-----) [004] d..1 82317.042605: cpu_idle: state=0 cpu_id=4
104432<...>-8961 ( 8943) [000] .... 82317.042654: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10472 comm=GAC_Executor[1]
104433<...>-8961 ( 8943) [000] .... 82317.042670: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10472 comm=GAC_Executor[1]
104434<...>-8961 ( 8943) [000] .... 82317.042680: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10472 comm=GAC_Executor[1]
104435<...>-8961 ( 8943) [000] .... 82317.042733: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10531 comm=Binder:10023_3
104436<...>-8961 ( 8943) [000] .... 82317.042749: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10531 comm=Binder:10023_3
104437<...>-8961 ( 8943) [000] .... 82317.042758: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10531 comm=Binder:10023_3
104438<...>-8961 ( 8943) [000] .... 82317.042812: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=10726 comm=Binder:10023_4
104439<...>-8961 ( 8943) [000] .... 82317.042828: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10726 comm=Binder:10023_4
104440<...>-8961 ( 8943) [000] .... 82317.042838: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=10726 comm=Binder:10023_4
104441<...>-8961 ( 8943) [000] .... 82317.042892: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=11605 comm=smartspace-load
104442<...>-8961 ( 8943) [000] .... 82317.042907: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=11605 comm=smartspace-load
104443<...>-8961 ( 8943) [000] .... 82317.042917: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=11605 comm=smartspace-load
104444<...>-8961 ( 8943) [000] .... 82317.042971: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16586 comm=UiThreadHelper
104445<...>-8961 ( 8943) [000] .... 82317.042987: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16586 comm=UiThreadHelper
104446<...>-8961 ( 8943) [000] .... 82317.042996: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16586 comm=UiThreadHelper
104447          <idle>-0     (-----) [003] d.h2 82317.043008: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
104448          <idle>-0     (-----) [003] dnh3 82317.043019: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
104449          <idle>-0     (-----) [003] .n.1 82317.043028: cpu_idle: state=4294967295 cpu_id=3
104450          <idle>-0     (-----) [003] d..2 82317.043036: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
104451<...>-8961 ( 8943) [000] .... 82317.043053: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16587 comm=pool-1-thread-2
104452<...>-8961 ( 8943) [000] .... 82317.043069: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16587 comm=pool-1-thread-2
104453<...>-8961 ( 8943) [000] .... 82317.043079: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16587 comm=pool-1-thread-2
104454<...>-8961 ( 8943) [000] .... 82317.043134: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16594 comm=Recents-HighRes
104455<...>-8961 ( 8943) [000] .... 82317.043150: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16594 comm=Recents-HighRes
104456<...>-8961 ( 8943) [000] .... 82317.043159: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16594 comm=Recents-HighRes
104457 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.043184: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
104458          <idle>-0     (-----) [003] d..1 82317.043196: cpu_idle: state=0 cpu_id=3
104459          <idle>-0     (-----) [001] d.s3 82317.043204: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
104460<...>-8961 ( 8943) [000] .... 82317.043212: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16595 comm=Recents-TaskRes
104461          <idle>-0     (-----) [001] d.s4 82317.043217: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
104462          <idle>-0     (-----) [003] .n.1 82317.043223: cpu_idle: state=4294967295 cpu_id=3
104463          <idle>-0     (-----) [001] ...1 82317.043227: cpu_idle: state=4294967295 cpu_id=1
104464<...>-8961 ( 8943) [000] .... 82317.043228: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16595 comm=Recents-TaskRes
104465          <idle>-0     (-----) [001] d..1 82317.043231: cpu_idle: state=0 cpu_id=1
104466          <idle>-0     (-----) [003] d..2 82317.043231: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
104467<...>-8961 ( 8943) [000] .... 82317.043238: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16595 comm=Recents-TaskRes
104468 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.043261: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104469          <idle>-0     (-----) [003] d..1 82317.043271: cpu_idle: state=0 cpu_id=3
104470<...>-8961 ( 8943) [000] .... 82317.043293: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16596 comm=pool-3-thread-1
104471<...>-8961 ( 8943) [000] .... 82317.043308: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16596 comm=pool-3-thread-1
104472<...>-8961 ( 8943) [000] .... 82317.043318: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16596 comm=pool-3-thread-1
104473<...>-8961 ( 8943) [000] .... 82317.043374: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16602 comm=qsb-experiments
104474<...>-8961 ( 8943) [000] .... 82317.043390: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16602 comm=qsb-experiments
104475<...>-8961 ( 8943) [000] .... 82317.043400: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16602 comm=qsb-experiments
104476<...>-8961 ( 8943) [000] .... 82317.043454: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16603 comm=magnifier pixel
104477<...>-8961 ( 8943) [000] .... 82317.043470: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16603 comm=magnifier pixel
104478<...>-8961 ( 8943) [000] .... 82317.043480: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16603 comm=magnifier pixel
104479<...>-8961 ( 8943) [000] .... 82317.043535: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16604 comm=search-thread
104480<...>-8961 ( 8943) [000] .... 82317.043550: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16604 comm=search-thread
104481<...>-8961 ( 8943) [000] .... 82317.043560: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16604 comm=search-thread
104482<...>-8961 ( 8943) [000] .... 82317.043619: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16607 comm=RenderThread
104483<...>-8961 ( 8943) [000] .... 82317.043634: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16607 comm=RenderThread
104484<...>-8961 ( 8943) [000] .... 82317.043644: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16607 comm=RenderThread
104485<...>-8961 ( 8943) [000] .... 82317.043697: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16608 comm=remote-ui
104486<...>-8961 ( 8943) [000] .... 82317.043712: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16608 comm=remote-ui
104487<...>-8961 ( 8943) [000] .... 82317.043722: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16608 comm=remote-ui
104488<...>-8961 ( 8943) [000] .... 82317.043777: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16610 comm=reflection-thre
104489<...>-8961 ( 8943) [000] .... 82317.043792: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16610 comm=reflection-thre
104490<...>-8961 ( 8943) [000] .... 82317.043802: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16610 comm=reflection-thre
104491<...>-8961 ( 8943) [000] .... 82317.043858: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16611 comm=reflection-plac
104492<...>-8961 ( 8943) [000] .... 82317.043873: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16611 comm=reflection-plac
104493<...>-8961 ( 8943) [000] .... 82317.043883: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16611 comm=reflection-plac
104494<...>-8961 ( 8943) [000] .... 82317.043937: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16612 comm=GrallocUploadTh
104495<...>-8961 ( 8943) [000] .... 82317.043953: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16612 comm=GrallocUploadTh
104496<...>-8961 ( 8943) [000] .... 82317.043963: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16612 comm=GrallocUploadTh
104497<...>-8961 ( 8943) [000] .... 82317.044017: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16614 comm=pool-1-thread-3
104498<...>-8961 ( 8943) [000] .... 82317.044033: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16614 comm=pool-1-thread-3
104499<...>-8961 ( 8943) [000] .... 82317.044043: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16614 comm=pool-1-thread-3
104500<...>-8961 ( 8943) [000] .... 82317.044097: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=16615 comm=file-logger
104501<...>-8961 ( 8943) [000] .... 82317.044112: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16615 comm=file-logger
104502<...>-8961 ( 8943) [000] .... 82317.044122: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=16615 comm=file-logger
104503<...>-8961 ( 8943) [000] .... 82317.044177: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=18018 comm=Binder:10023_5
104504<...>-8961 ( 8943) [000] .... 82317.044192: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=18018 comm=Binder:10023_5
104505<...>-8961 ( 8943) [000] .... 82317.044201: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=18018 comm=Binder:10023_5
104506           <...>-27558 (-----) [002] d..1 82317.044241: sched_waking: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=001
104507<...>-8961 ( 8943) [000] .... 82317.044256: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=18840 comm=hwuiTask1
104508           <...>-27558 (-----) [002] d..2 82317.044267: sched_wakeup: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=001
104509          <idle>-0     (-----) [001] .n.1 82317.044271: cpu_idle: state=4294967295 cpu_id=1
104510<...>-8961 ( 8943) [000] .... 82317.044271: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=18840 comm=hwuiTask1
104511<...>-8961 ( 8943) [000] .... 82317.044281: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=18840 comm=hwuiTask1
104512          <idle>-0     (-----) [001] d..2 82317.044282: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=27559 next_prio=124
104513           <...>-27559 (-----) [001] d..1 82317.044324: sched_waking: comm=FinalizerWatchd pid=27560 prio=124 target_cpu=000
104514           <...>-27558 (-----) [002] d..2 82317.044326: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
104515<...>-8961 ( 8943) [000] .... 82317.044334: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=23680 comm=Binder:10023_6
104516<...>-9131 ( 9105) [002] .... 82317.044335: binder_transaction_received: transaction=1571897
104517<...>-8961 ( 8943) [000] .... 82317.044350: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=23680 comm=Binder:10023_6
104518           <...>-27559 (-----) [001] d..2 82317.044353: sched_wakeup: comm=FinalizerWatchd pid=27560 prio=124 target_cpu=003
104519          <idle>-0     (-----) [003] .n.1 82317.044358: cpu_idle: state=4294967295 cpu_id=3
104520<...>-8961 ( 8943) [000] .... 82317.044360: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=23680 comm=Binder:10023_6
104521          <idle>-0     (-----) [003] d..2 82317.044368: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=27560 next_prio=124
104522<...>-8961 ( 8943) [000] .... 82317.044418: cgroup_attach_task: dst_root=5 dst_id=6 dst_level=1 dst_path=/top-app pid=24097 comm=pool-3-thread-2
104523           <...>-27559 (-----) [001] d..1 82317.044431: sched_waking: comm=FinalizerWatchd pid=27560 prio=124 target_cpu=003
104524<...>-8961 ( 8943) [000] .... 82317.044434: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24097 comm=pool-3-thread-2
104525<...>-8961 ( 8943) [000] .... 82317.044444: cgroup_attach_task: dst_root=3 dst_id=4 dst_level=1 dst_path=/top-app pid=24097 comm=pool-3-thread-2
104526           <...>-27560 (-----) [003] d..2 82317.044450: sched_switch: prev_comm=FinalizerWatchd prev_pid=27560 prev_prio=124 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
104527<...>-9131 ( 9105) [002] d..3 82317.044451: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
104528           <...>-27559 (-----) [001] d..2 82317.044463: sched_blocked_reason: pid=27560 iowait=0 caller=do_page_fault+0x4e0/0x594
104529          <idle>-0     (-----) [003] d..1 82317.044463: cpu_idle: state=0 cpu_id=3
104530           <...>-27559 (-----) [001] d..2 82317.044470: sched_wakeup: comm=FinalizerWatchd pid=27560 prio=124 target_cpu=003
104531          <idle>-0     (-----) [003] .n.1 82317.044476: cpu_idle: state=4294967295 cpu_id=3
104532<...>-9131 ( 9105) [002] d..4 82317.044483: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
104533          <idle>-0     (-----) [003] d..2 82317.044491: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=27560 next_prio=124
104534           <...>-27560 (-----) [003] d..2 82317.044529: sched_switch: prev_comm=FinalizerWatchd prev_pid=27560 prev_prio=124 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
104535<...>-9131 ( 9105) [002] d..2 82317.044564: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104536<...>-8961 ( 8943) [000] .... 82317.044577: binder_transaction: transaction=1571898 dest_node=418757 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x27
104537          <idle>-0     (-----) [002] d..1 82317.044578: cpu_idle: state=0 cpu_id=2
104538<...>-8961 ( 8943) [000] .... 82317.044582: binder_transaction_alloc_buf: transaction=1571898 data_size=76 offsets_size=0
104539<...>-8961 ( 8943) [000] d..4 82317.044587: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=001
104540<...>-9105 ( 9105) [003] d..2 82317.044658: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
104541          <idle>-0     (-----) [004] dnh2 82317.044659: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
104542          <idle>-0     (-----) [004] .n.1 82317.044663: cpu_idle: state=4294967295 cpu_id=4
104543          <idle>-0     (-----) [004] d..2 82317.044671: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
104544          <idle>-0     (-----) [003] d..1 82317.044673: cpu_idle: state=0 cpu_id=3
104545  Binder:10023_2-10088 (10023) [004] .... 82317.044680: binder_transaction_received: transaction=1571898
104546<...>-8961 ( 8943) [000] d..3 82317.044702: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=001
104547          <idle>-0     (-----) [006] dnh2 82317.044758: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
104548          <idle>-0     (-----) [006] .n.1 82317.044762: cpu_idle: state=4294967295 cpu_id=6
104549          <idle>-0     (-----) [006] d..2 82317.044770: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
104550<...>-8962 ( 8943) [006] d..2 82317.044820: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
104551  Binder:10023_2-10088 (10023) [004] d..2 82317.044829: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
104552<...>-8961 ( 8943) [000] d..3 82317.044830: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=000
104553          <idle>-0     (-----) [006] d..1 82317.044830: cpu_idle: state=0 cpu_id=6
104554           <...>-27559 (-----) [001] d..1 82317.044841: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=007
104555          <idle>-0     (-----) [004] d..1 82317.044842: cpu_idle: state=0 cpu_id=4
104556<...>-8961 ( 8943) [000] d..4 82317.044852: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
104557          <idle>-0     (-----) [002] .n.1 82317.044857: cpu_idle: state=4294967295 cpu_id=2
104558          <idle>-0     (-----) [002] d..2 82317.044867: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
104559           <...>-27559 (-----) [001] d..2 82317.044873: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
104560          <idle>-0     (-----) [003] .n.1 82317.044879: cpu_idle: state=4294967295 cpu_id=3
104561          <idle>-0     (-----) [003] d..2 82317.044919: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
104562<...>-8961 ( 8943) [000] .... 82317.044944: binder_transaction: transaction=1571899 dest_node=459102 dest_proc=11200 dest_thread=0 reply=0 flags=0x11 code=0x27
104563<...>-8961 ( 8943) [000] .... 82317.044948: binder_transaction_alloc_buf: transaction=1571899 data_size=76 offsets_size=0
104564<...>-8961 ( 8943) [000] d..4 82317.044954: sched_waking: comm=Binder:11200_3 pid=11214 prio=120 target_cpu=000
104565           <...>-27559 (-----) [001] d..2 82317.044971: sched_switch: prev_comm=FinalizerDaemon prev_pid=27559 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104566          <idle>-0     (-----) [001] d..1 82317.044987: cpu_idle: state=0 cpu_id=1
104567<...>-8961 ( 8943) [000] d..5 82317.044994: sched_wakeup: comm=Binder:11200_3 pid=11214 prio=120 target_cpu=001
104568          <idle>-0     (-----) [001] .n.1 82317.045001: cpu_idle: state=4294967295 cpu_id=1
104569          <idle>-0     (-----) [001] d..2 82317.045012: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:11200_3 next_pid=11214 next_prio=120
104570  Binder:11200_3-11214 (11200) [001] .... 82317.045023: binder_transaction_received: transaction=1571899
104571  Binder:11200_3-11214 (11200) [001] d..2 82317.045253: sched_switch: prev_comm=Binder:11200_3 prev_pid=11214 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104572          <idle>-0     (-----) [001] d..1 82317.045269: cpu_idle: state=0 cpu_id=1
104573<...>-8961 ( 8943) [000] d..2 82317.045325: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=002
104574<...>-8961 ( 8943) [000] dn.3 82317.045349: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
104575<...>-8961 ( 8943) [000] d..2 82317.045359: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R+ ==> next_comm=statsd.writer next_pid=1044 next_prio=120
104576   statsd.writer-1044  (  901) [000] d.h4 82317.045519: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
104577   statsd.writer-1044  (  901) [000] d.h5 82317.045545: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
104578   statsd.writer-1044  (  901) [000] d.h4 82317.045550: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
104579          <idle>-0     (-----) [001] .n.1 82317.045551: cpu_idle: state=4294967295 cpu_id=1
104580          <idle>-0     (-----) [001] d..2 82317.045562: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
104581   statsd.writer-1044  (  901) [000] dnh5 82317.045563: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
104582   statsd.writer-1044  (  901) [000] d..2 82317.045582: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
104583  crtc_event:111-322   (  322) [001] d..2 82317.045598: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104584          <idle>-0     (-----) [001] d..1 82317.045607: cpu_idle: state=0 cpu_id=1
104585 crtc_commit:111-321   (  321) [000] d..2 82317.045722: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=statsd.writer next_pid=1044 next_prio=120
104586   statsd.writer-1044  (  901) [000] d..2 82317.045820: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
104587<...>-8961 ( 8943) [000] d..2 82317.045898: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
104588<...>-8961 ( 8943) [000] dn.3 82317.045911: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
104589<...>-8961 ( 8943) [000] d..2 82317.045919: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R+ ==> next_comm=statsd.writer next_pid=1044 next_prio=120
104590   statsd.writer-1044  (  901) [000] d..2 82317.045989: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
104591<...>-8961 ( 8943) [000] d..1 82317.046082: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
104592<...>-8961 ( 8943) [000] d..2 82317.046114: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
104593          <idle>-0     (-----) [001] .n.1 82317.046119: cpu_idle: state=4294967295 cpu_id=1
104594          <idle>-0     (-----) [001] d..2 82317.046157: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
104595<...>-9062 ( 8943) [001] d..1 82317.046209: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
104596<...>-821 ( 821) [002] d..2 82317.046216: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104597<...>-9062 ( 8943) [001] d..1 82317.046225: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
104598          <idle>-0     (-----) [002] d..1 82317.046229: cpu_idle: state=0 cpu_id=2
104599          <idle>-0     (-----) [006] dnh2 82317.046230: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
104600          <idle>-0     (-----) [006] .n.1 82317.046234: cpu_idle: state=4294967295 cpu_id=6
104601          <idle>-0     (-----) [006] d..2 82317.046243: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
104602<...>-8961 ( 8943) [000] d..2 82317.046247: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104603<...>-9062 ( 8943) [001] d..2 82317.046264: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
104604          <idle>-0     (-----) [000] d..2 82317.046272: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
104605<...>-8962 ( 8943) [006] .... 82317.046340: binder_transaction: transaction=1571900 dest_node=417419 dest_proc=9748 dest_thread=0 reply=0 flags=0x11 code=0x1
104606<...>-8962 ( 8943) [006] .... 82317.046345: binder_transaction_alloc_buf: transaction=1571900 data_size=80 offsets_size=0
104607<...>-8962 ( 8943) [006] d..4 82317.046350: sched_waking: comm=Binder:9748_4 pid=10178 prio=120 target_cpu=002
104608<...>-8961 ( 8943) [000] dnh1 82317.046393: sched_wakeup: comm=Binder:9748_4 pid=10178 prio=120 target_cpu=000
104609<...>-8961 ( 8943) [000] d..2 82317.046404: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R ==> next_comm=Binder:9748_4 next_pid=10178 next_prio=120
104610<...>-9062 ( 8943) [001] .... 82317.046416: binder_transaction: transaction=1571901 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
104611<...>-10178 ( 9748) [000] .... 82317.046416: binder_transaction_received: transaction=1571900
104612<...>-8962 ( 8943) [006] d..2 82317.046419: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
104613<...>-9062 ( 8943) [001] .... 82317.046421: binder_transaction_alloc_buf: transaction=1571901 data_size=8 offsets_size=0
104614<...>-9062 ( 8943) [001] d..2 82317.046426: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=006
104615          <idle>-0     (-----) [006] d..1 82317.046431: cpu_idle: state=0 cpu_id=6
104616<...>-9062 ( 8943) [001] dn.3 82317.046450: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=001
104617<...>-9062 ( 8943) [001] dnh3 82317.046494: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
104618<...>-9062 ( 8943) [001] dnh4 82317.046508: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
104619          <idle>-0     (-----) [002] .n.1 82317.046514: cpu_idle: state=4294967295 cpu_id=2
104620<...>-9062 ( 8943) [001] d..2 82317.046517: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
104621          <idle>-0     (-----) [002] d..2 82317.046522: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
104622 s.nexuslauncher-10023 (10023) [001] .... 82317.046528: binder_transaction_received: transaction=1571901
104623         sugov:0-576   (  576) [002] .... 82317.046550: clk_set_rate: pwrcl_clk 1516800000
104624         sugov:0-576   (  576) [002] .... 82317.046564: clk_set_rate: cpu3_pwrcl_clk 1056000000
104625         sugov:0-576   (  576) [002] .... 82317.046573: clk_set_rate: cpu2_pwrcl_clk 1056000000
104626         sugov:0-576   (  576) [002] .... 82317.046580: clk_set_rate: cpu1_pwrcl_clk 1056000000
104627         sugov:0-576   (  576) [002] .... 82317.046587: clk_set_rate: cpu0_pwrcl_clk 1516800000
104628         sugov:0-576   (  576) [002] .... 82317.046595: cpu_frequency: state=1516800 cpu_id=0
104629         sugov:0-576   (  576) [002] .... 82317.046611: cpu_frequency: state=1516800 cpu_id=1
104630         sugov:0-576   (  576) [002] .... 82317.046615: cpu_frequency: state=1516800 cpu_id=2
104631         sugov:0-576   (  576) [002] .... 82317.046618: cpu_frequency: state=1516800 cpu_id=3
104632         sugov:0-576   (  576) [002] d..2 82317.046642: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104633          <idle>-0     (-----) [002] d..1 82317.046651: cpu_idle: state=0 cpu_id=2
104634<...>-10178 ( 9748) [000] d..2 82317.046671: sched_switch: prev_comm=Binder:9748_4 prev_pid=10178 prev_prio=120 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
104635<...>-8961 ( 8943) [000] d..1 82317.047099: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
104636          <idle>-0     (-----) [006] dnh2 82317.047122: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
104637          <idle>-0     (-----) [006] .n.1 82317.047127: cpu_idle: state=4294967295 cpu_id=6
104638          <idle>-0     (-----) [006] d..2 82317.047134: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
104639<...>-8962 ( 8943) [006] d..1 82317.047157: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
104640 s.nexuslauncher-10023 (10023) [001] .... 82317.047172: binder_transaction: transaction=1571902 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x19
104641<...>-8961 ( 8943) [000] d..2 82317.047173: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104642 s.nexuslauncher-10023 (10023) [001] .... 82317.047177: binder_transaction_alloc_buf: transaction=1571902 data_size=608 offsets_size=16
104643          <idle>-0     (-----) [000] d..1 82317.047186: cpu_idle: state=0 cpu_id=0
104644          <idle>-0     (-----) [000] dnh2 82317.047199: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
104645 s.nexuslauncher-10023 (10023) [001] ...2 82317.047200: binder_set_priority: proc=8943 thread=25493 old=120 => new=110 desired=110
104646          <idle>-0     (-----) [000] .n.1 82317.047204: cpu_idle: state=4294967295 cpu_id=0
104647 s.nexuslauncher-10023 (10023) [001] d..4 82317.047204: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
104648          <idle>-0     (-----) [000] d..2 82317.047210: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
104649<...>-8962 ( 8943) [006] d..1 82317.047224: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
104650 s.nexuslauncher-10023 (10023) [001] d..5 82317.047230: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=002
104651<...>-8961 ( 8943) [000] d..2 82317.047231: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104652          <idle>-0     (-----) [002] .n.1 82317.047235: cpu_idle: state=4294967295 cpu_id=2
104653          <idle>-0     (-----) [000] d..1 82317.047237: cpu_idle: state=0 cpu_id=0
104654          <idle>-0     (-----) [002] d..2 82317.047242: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
104655 s.nexuslauncher-10023 (10023) [001] d..2 82317.047243: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
104656          <idle>-0     (-----) [000] dnh2 82317.047249: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
104657<...>-25493 ( 8943) [002] .... 82317.047251: binder_transaction_received: transaction=1571902
104658          <idle>-0     (-----) [000] .n.1 82317.047253: cpu_idle: state=4294967295 cpu_id=0
104659          <idle>-0     (-----) [000] d..2 82317.047258: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
104660<...>-8962 ( 8943) [006] d..3 82317.047277: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=000
104661<...>-9062 ( 8943) [001] d..2 82317.047296: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104662<...>-8962 ( 8943) [006] d..4 82317.047304: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=007
104663          <idle>-0     (-----) [001] d..1 82317.047309: cpu_idle: state=0 cpu_id=1
104664          <idle>-0     (-----) [007] .n.1 82317.047310: cpu_idle: state=4294967295 cpu_id=7
104665          <idle>-0     (-----) [007] d..2 82317.047339: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=8967 next_prio=120
104666<...>-8961 ( 8943) [000] d..2 82317.047383: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
104667<...>-8962 ( 8943) [006] .... 82317.047396: binder_transaction: transaction=1571903 dest_node=402011 dest_proc=9083 dest_thread=0 reply=0 flags=0x11 code=0x4
104668<...>-8962 ( 8943) [006] .... 82317.047401: binder_transaction_alloc_buf: transaction=1571903 data_size=76 offsets_size=0
104669<...>-8961 ( 8943) [000] d..3 82317.047401: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
104670<...>-8962 ( 8943) [006] d..4 82317.047405: sched_waking: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=001
104671<...>-8967 ( 8943) [007] d..2 82317.047433: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
104672          <idle>-0     (-----) [007] d..1 82317.047445: cpu_idle: state=0 cpu_id=7
104673<...>-25493 ( 8943) [002] d.h1 82317.047446: sched_wakeup: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=002
104674<...>-8962 ( 8943) [006] d..3 82317.047468: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=000
104675          <idle>-0     (-----) [001] dnh2 82317.047497: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=001
104676          <idle>-0     (-----) [001] .n.1 82317.047502: cpu_idle: state=4294967295 cpu_id=1
104677          <idle>-0     (-----) [001] d..2 82317.047510: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
104678<...>-8962 ( 8943) [006] d..3 82317.047514: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=000
104679<...>-25493 ( 8943) [002] d..2 82317.047529: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=110 prev_state=S ==> next_comm=Binder:9083_6 next_pid=9638 next_prio=120
104680<...>-9638 ( 9083) [002] .... 82317.047540: binder_transaction_received: transaction=1571903
104681<...>-9047 ( 8943) [001] d.h1 82317.047544: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=001
104682<...>-8961 ( 8943) [000] d..1 82317.047549: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=002
104683<...>-8962 ( 8943) [006] d..3 82317.047559: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=003
104684<...>-8962 ( 8943) [006] d..4 82317.047585: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
104685          <idle>-0     (-----) [007] dnh2 82317.047622: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=007
104686<...>-8961 ( 8943) [000] d..1 82317.047622: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=001
104687<...>-9047 ( 8943) [001] d..2 82317.047623: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=android.bg next_pid=8960 next_prio=120
104688          <idle>-0     (-----) [007] .n.1 82317.047629: cpu_idle: state=4294967295 cpu_id=7
104689          <idle>-0     (-----) [007] d..2 82317.047637: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
104690<...>-25493 ( 8943) [007] d..2 82317.047660: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=110 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
104691<...>-8962 ( 8943) [006] d.h2 82317.047686: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
104692<...>-8962 ( 8943) [006] d..1 82317.047689: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=007
104693<...>-8962 ( 8943) [006] d..2 82317.047701: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=007
104694   system_server-8943  ( 8943) [007] d..2 82317.047712: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
104695<...>-8961 ( 8943) [000] d..2 82317.047723: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
104696<...>-8962 ( 8943) [006] d..2 82317.047737: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
104697<...>-9638 ( 9083) [002] d..2 82317.047765: sched_switch: prev_comm=Binder:9083_6 prev_pid=9638 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104698          <idle>-0     (-----) [002] d..1 82317.047775: cpu_idle: state=0 cpu_id=2
104699<...>-9047 ( 8943) [006] d..2 82317.047776: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
104700   system_server-8943  ( 8943) [006] d..2 82317.047809: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
104701          <idle>-0     (-----) [006] d..1 82317.047820: cpu_idle: state=0 cpu_id=6
104702<...>-581 ( 571) [000] d.h4 82317.047866: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
104703<...>-581 ( 571) [000] d.h5 82317.047888: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
104704          <idle>-0     (-----) [002] .n.1 82317.047893: cpu_idle: state=4294967295 cpu_id=2
104705          <idle>-0     (-----) [002] d..2 82317.047899: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
104706<...>-581 ( 571) [000] d..2 82317.047964: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104707          <idle>-0     (-----) [000] d..1 82317.047975: cpu_idle: state=0 cpu_id=0
104708 crtc_commit:111-321   (  321) [002] d..2 82317.047985: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104709          <idle>-0     (-----) [002] d..1 82317.047990: cpu_idle: state=0 cpu_id=2
104710<...>-25493 ( 8943) [007] d..2 82317.048045: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
104711          <idle>-0     (-----) [000] dnh2 82317.048068: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
104712          <idle>-0     (-----) [000] .n.1 82317.048072: cpu_idle: state=4294967295 cpu_id=0
104713          <idle>-0     (-----) [000] d..2 82317.048078: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
104714<...>-25493 ( 8943) [007] d..1 82317.048081: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
104715<...>-25493 ( 8943) [007] d..2 82317.048094: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
104716          <idle>-0     (-----) [006] .n.1 82317.048099: cpu_idle: state=4294967295 cpu_id=6
104717          <idle>-0     (-----) [006] d..2 82317.048106: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
104718<...>-9047 ( 8943) [006] d..1 82317.048134: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=006
104719<...>-581 ( 571) [000] d.h4 82317.048151: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
104720<...>-25493 ( 8943) [007] .... 82317.048183: binder_transaction: transaction=1571904 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
104721<...>-25493 ( 8943) [007] .... 82317.048188: binder_transaction_alloc_buf: transaction=1571904 data_size=8 offsets_size=0
104722<...>-25493 ( 8943) [007] d..2 82317.048191: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=001
104723          <idle>-0     (-----) [002] dnh2 82317.048191: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
104724<...>-581 ( 571) [000] d.h5 82317.048196: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
104725          <idle>-0     (-----) [002] .n.1 82317.048201: cpu_idle: state=4294967295 cpu_id=2
104726          <idle>-0     (-----) [002] d..2 82317.048206: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
104727<...>-25493 ( 8943) [007] d..3 82317.048210: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=007
104728  crtc_event:111-322   (  322) [002] d..2 82317.048221: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
104729<...>-9047 ( 8943) [006] d..1 82317.048247: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
104730<...>-25493 ( 8943) [007] .... 82317.048252: binder_set_priority: proc=8943 thread=25493 old=110 => new=120 desired=120
104731<...>-581 ( 571) [000] d..2 82317.048264: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104732   system_server-8943  ( 8943) [002] d..2 82317.048266: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104733          <idle>-0     (-----) [000] d..1 82317.048272: cpu_idle: state=0 cpu_id=0
104734          <idle>-0     (-----) [002] d..1 82317.048272: cpu_idle: state=0 cpu_id=2
104735          <idle>-0     (-----) [002] dnh2 82317.048285: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
104736          <idle>-0     (-----) [002] .n.1 82317.048289: cpu_idle: state=4294967295 cpu_id=2
104737<...>-25493 ( 8943) [007] d..2 82317.048292: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
104738          <idle>-0     (-----) [002] d..2 82317.048294: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
104739 s.nexuslauncher-10023 (10023) [007] .... 82317.048303: binder_transaction_received: transaction=1571904
104740<...>-9047 ( 8943) [006] d..2 82317.048316: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
104741          <idle>-0     (-----) [006] d..1 82317.048327: cpu_idle: state=0 cpu_id=6
104742   system_server-8943  ( 8943) [002] d..2 82317.048424: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104743          <idle>-0     (-----) [002] d..1 82317.048432: cpu_idle: state=0 cpu_id=2
104744          <idle>-0     (-----) [002] d.s2 82317.048468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
104745          <idle>-0     (-----) [000] d.s3 82317.048468: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
104746 s.nexuslauncher-10023 (10023) [007] d.s2 82317.048476: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
104747          <idle>-0     (-----) [000] d.s4 82317.048481: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
104748          <idle>-0     (-----) [002] dns3 82317.048486: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
104749          <idle>-0     (-----) [000] ...1 82317.048504: cpu_idle: state=4294967295 cpu_id=0
104750          <idle>-0     (-----) [002] .n.1 82317.048505: cpu_idle: state=4294967295 cpu_id=2
104751          <idle>-0     (-----) [000] d..1 82317.048510: cpu_idle: state=0 cpu_id=0
104752          <idle>-0     (-----) [002] dnh4 82317.048513: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
104753          <idle>-0     (-----) [002] d..2 82317.048521: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
104754  crtc_event:111-322   (  322) [002] d..2 82317.048536: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
104755     rcu_preempt-7     (    7) [002] d..2 82317.048548: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
104756     rcu_preempt-7     (    7) [002] d..3 82317.048563: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
104757     rcu_preempt-7     (    7) [002] d..2 82317.048576: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
104758 s.nexuslauncher-10023 (10023) [007] .... 82317.048590: binder_transaction: transaction=1571905 dest_node=397489 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
104759 s.nexuslauncher-10023 (10023) [007] .... 82317.048594: binder_transaction_alloc_buf: transaction=1571905 data_size=220 offsets_size=8
104760 s.nexuslauncher-10023 (10023) [007] ...2 82317.048603: binder_set_priority: proc=8943 thread=25493 old=120 => new=110 desired=110
104761 s.nexuslauncher-10023 (10023) [007] d..4 82317.048612: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=007
104762 s.nexuslauncher-10023 (10023) [007] dn.5 82317.048622: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=007
104763 s.nexuslauncher-10023 (10023) [007] d..2 82317.048633: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
104764<...>-25493 ( 8943) [007] .... 82317.048647: binder_transaction_received: transaction=1571905
104765  kworker/u16:15-1311  ( 1311) [002] d..2 82317.048913: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
104766          <idle>-0     (-----) [002] d..1 82317.048923: cpu_idle: state=0 cpu_id=2
104767<...>-8960 ( 8943) [001] d.s2 82317.048941: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
104768<...>-8960 ( 8943) [001] d.s3 82317.048952: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
104769<...>-8960 ( 8943) [001] d.s3 82317.048960: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
104770          <idle>-0     (-----) [002] .n.1 82317.048965: cpu_idle: state=4294967295 cpu_id=2
104771          <idle>-0     (-----) [002] d..2 82317.048974: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
104772  kworker/u16:15-1311  ( 1311) [002] .... 82317.049045: clk_set_rate: l3_cluster0_vote_clk 844800000
104773  kworker/u16:15-1311  ( 1311) [002] .... 82317.049050: clk_set_rate: l3_clk 844800000
104774  kworker/u16:15-1311  ( 1311) [002] d..2 82317.049084: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104775          <idle>-0     (-----) [002] d..1 82317.049090: cpu_idle: state=0 cpu_id=2
104776<...>-25493 ( 8943) [007] .... 82317.049091: binder_transaction: transaction=1571906 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
104777<...>-25493 ( 8943) [007] .... 82317.049096: binder_transaction_alloc_buf: transaction=1571906 data_size=12 offsets_size=0
104778<...>-25493 ( 8943) [007] .... 82317.049099: binder_set_priority: proc=8943 thread=25493 old=110 => new=120 desired=120
104779<...>-25493 ( 8943) [007] d..2 82317.049141: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
104780 s.nexuslauncher-10023 (10023) [007] .... 82317.049153: binder_transaction_received: transaction=1571906
104781 s.nexuslauncher-10023 (10023) [007] d..3 82317.049246: sched_waking: comm=launcher-loader pid=10136 prio=120 target_cpu=004
104782 s.nexuslauncher-10023 (10023) [007] d..4 82317.049263: sched_wakeup: comm=launcher-loader pid=10136 prio=120 target_cpu=004
104783          <idle>-0     (-----) [004] .n.1 82317.049269: cpu_idle: state=4294967295 cpu_id=4
104784          <idle>-0     (-----) [004] d..2 82317.049281: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=launcher-loader next_pid=10136 next_prio=120
104785 s.nexuslauncher-10023 (10023) [007] d..1 82317.049338: sched_waking: comm=Recents-HighRes pid=16594 prio=131 target_cpu=001
104786<...>-8960 ( 8943) [001] d..2 82317.049356: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
104787 s.nexuslauncher-10023 (10023) [007] d..2 82317.049372: sched_wakeup: comm=Recents-HighRes pid=16594 prio=131 target_cpu=005
104788          <idle>-0     (-----) [005] .n.1 82317.049378: cpu_idle: state=4294967295 cpu_id=5
104789          <idle>-0     (-----) [005] d..2 82317.049407: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Recents-HighRes next_pid=16594 next_prio=131
104790         rcuop/0-10    (   10) [001] d..2 82317.049407: 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
104791<...>-10136 ( 10023) [004] .... 82317.049408: binder_transaction: transaction=1571907 dest_node=397050 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x33
104792<...>-10136 ( 10023) [004] .... 82317.049411: binder_transaction_alloc_buf: transaction=1571907 data_size=108 offsets_size=8
104793          <idle>-0     (-----) [001] d..1 82317.049419: cpu_idle: state=0 cpu_id=1
104794<...>-10136 ( 10023) [004] d..4 82317.049421: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=007
104795<...>-10136 ( 10023) [004] d..5 82317.049441: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
104796          <idle>-0     (-----) [006] .n.1 82317.049447: cpu_idle: state=4294967295 cpu_id=6
104797          <idle>-0     (-----) [006] d..2 82317.049456: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
104798<...>-10136 ( 10023) [004] d..2 82317.049458: sched_switch: prev_comm=launcher-loader prev_pid=10136 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
104799<...>-25493 ( 8943) [006] .... 82317.049462: binder_transaction_received: transaction=1571907
104800          <idle>-0     (-----) [004] d..1 82317.049470: cpu_idle: state=0 cpu_id=4
104801<...>-16594 ( 10023) [005] d..2 82317.049485: sched_switch: prev_comm=Recents-HighRes prev_pid=16594 prev_prio=131 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
104802          <idle>-0     (-----) [005] d..1 82317.049497: cpu_idle: state=0 cpu_id=5
104803 s.nexuslauncher-10023 (10023) [007] d..2 82317.049503: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
104804          <idle>-0     (-----) [000] dnh2 82317.049522: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
104805          <idle>-0     (-----) [000] .n.1 82317.049526: cpu_idle: state=4294967295 cpu_id=0
104806          <idle>-0     (-----) [000] d..2 82317.049534: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
104807<...>-581 ( 571) [000] d..2 82317.049588: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104808          <idle>-0     (-----) [000] d..1 82317.049597: cpu_idle: state=0 cpu_id=0
104809 s.nexuslauncher-10023 (10023) [007] .... 82317.049795: binder_transaction: transaction=1571908 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x44
104810 s.nexuslauncher-10023 (10023) [007] .... 82317.049799: binder_transaction_alloc_buf: transaction=1571908 data_size=100 offsets_size=8
104811 s.nexuslauncher-10023 (10023) [007] ...2 82317.049807: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
104812 s.nexuslauncher-10023 (10023) [007] d..4 82317.049810: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=001
104813 s.nexuslauncher-10023 (10023) [007] d..5 82317.049830: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
104814 s.nexuslauncher-10023 (10023) [007] d..2 82317.049868: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
104815<...>-9062 ( 8943) [007] .... 82317.049878: binder_transaction_received: transaction=1571908
104816          <idle>-0     (-----) [002] d.h2 82317.049905: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
104817          <idle>-0     (-----) [002] dnh3 82317.049916: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
104818          <idle>-0     (-----) [002] .n.1 82317.049922: cpu_idle: state=4294967295 cpu_id=2
104819          <idle>-0     (-----) [002] d..2 82317.049928: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
104820        DispSync-8879  ( 8858) [002] d..1 82317.049960: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
104821        DispSync-8879  ( 8858) [002] d..2 82317.049978: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
104822          <idle>-0     (-----) [000] .n.1 82317.049984: cpu_idle: state=4294967295 cpu_id=0
104823          <idle>-0     (-----) [000] d..2 82317.049991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
104824        DispSync-8879  ( 8858) [002] d..2 82317.050004: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104825          <idle>-0     (-----) [002] d..1 82317.050011: cpu_idle: state=0 cpu_id=2
104826  appEventThread-8881  ( 8858) [000] d..3 82317.050057: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
104827<...>-9062 ( 8943) [007] .... 82317.050067: binder_transaction: transaction=1571909 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
104828<...>-9062 ( 8943) [007] .... 82317.050071: binder_transaction_alloc_buf: transaction=1571909 data_size=8 offsets_size=0
104829<...>-9062 ( 8943) [007] d..2 82317.050074: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=007
104830  appEventThread-8881  ( 8858) [000] d..4 82317.050079: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
104831<...>-9062 ( 8943) [007] dn.3 82317.050084: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=007
104832          <idle>-0     (-----) [001] .n.1 82317.050084: cpu_idle: state=4294967295 cpu_id=1
104833<...>-9062 ( 8943) [007] d..2 82317.050090: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
104834          <idle>-0     (-----) [001] d..2 82317.050092: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
104835 s.nexuslauncher-10023 (10023) [007] .... 82317.050099: binder_transaction_received: transaction=1571909
104836  appEventThread-8881  ( 8858) [000] d..2 82317.050119: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104837          <idle>-0     (-----) [000] d..1 82317.050129: cpu_idle: state=0 cpu_id=0
104838<...>-9105 ( 9105) [001] .... 82317.050351: binder_transaction: transaction=1571910 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
104839<...>-9105 ( 9105) [001] .... 82317.050358: binder_transaction_alloc_buf: transaction=1571910 data_size=80 offsets_size=0
104840 s.nexuslauncher-10023 (10023) [007] .... 82317.050359: binder_transaction: transaction=1571911 dest_node=395848 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x32
104841<...>-9105 ( 9105) [001] d..4 82317.050363: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
104842 s.nexuslauncher-10023 (10023) [007] .... 82317.050363: binder_transaction_alloc_buf: transaction=1571911 data_size=60 offsets_size=0
104843 s.nexuslauncher-10023 (10023) [007] ...2 82317.050367: binder_set_priority: proc=8943 thread=11815 old=120 => new=110 desired=110
104844 s.nexuslauncher-10023 (10023) [007] d..4 82317.050370: sched_waking: comm=Binder:8943_10 pid=11815 prio=110 target_cpu=006
104845<...>-9105 ( 9105) [001] d..5 82317.050394: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
104846          <idle>-0     (-----) [000] dnh2 82317.050402: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=110 target_cpu=000
104847 s.nexuslauncher-10023 (10023) [007] d..2 82317.050406: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
104848<...>-9062 ( 8943) [007] .... 82317.050413: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
104849          <idle>-0     (-----) [000] .n.1 82317.050445: cpu_idle: state=4294967295 cpu_id=0
104850          <idle>-0     (-----) [000] d..2 82317.050452: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=110
104851<...>-11815 ( 8943) [000] .... 82317.050460: binder_transaction_received: transaction=1571911
104852<...>-9105 ( 9105) [001] d..3 82317.050470: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
104853<...>-9105 ( 9105) [001] d..4 82317.050490: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
104854<...>-9062 ( 8943) [007] d..2 82317.050490: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
104855          <idle>-0     (-----) [002] .n.1 82317.050495: cpu_idle: state=4294967295 cpu_id=2
104856          <idle>-0     (-----) [002] d..2 82317.050503: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
104857          <idle>-0     (-----) [007] d..1 82317.050505: cpu_idle: state=0 cpu_id=7
104858    RenderThread-9436  ( 9105) [002] d..2 82317.050547: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
104859          <idle>-0     (-----) [002] d..1 82317.050554: cpu_idle: state=0 cpu_id=2
104860<...>-9105 ( 9105) [001] d..3 82317.050601: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
104861<...>-9105 ( 9105) [001] d..4 82317.050614: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
104862          <idle>-0     (-----) [002] .n.1 82317.050619: cpu_idle: state=4294967295 cpu_id=2
104863<...>-11815 ( 8943) [000] .... 82317.050625: binder_transaction: transaction=1571912 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
104864          <idle>-0     (-----) [002] d..2 82317.050626: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
104865<...>-11815 ( 8943) [000] .... 82317.050629: binder_transaction_alloc_buf: transaction=1571912 data_size=8 offsets_size=0
104866<...>-11815 ( 8943) [000] d..2 82317.050632: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=007
104867<...>-9105 ( 9105) [001] d..2 82317.050636: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104868<...>-11815 ( 8943) [000] .... 82317.050644: binder_set_priority: proc=8943 thread=11815 old=110 => new=120 desired=120
104869          <idle>-0     (-----) [001] d..1 82317.050647: cpu_idle: state=0 cpu_id=1
104870          <idle>-0     (-----) [007] dnh2 82317.050653: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=007
104871          <idle>-0     (-----) [007] .n.1 82317.050658: cpu_idle: state=4294967295 cpu_id=7
104872          <idle>-0     (-----) [007] d..2 82317.050666: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
104873 s.nexuslauncher-10023 (10023) [007] .... 82317.050674: binder_transaction_received: transaction=1571912
104874<...>-11815 ( 8943) [000] d..2 82317.050680: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
104875<...>-25493 ( 8943) [006] .... 82317.050686: binder_transaction: transaction=1571913 dest_node=0 dest_proc=10023 dest_thread=10136 reply=1 flags=0x0 code=0x0
104876<...>-8874 ( 8858) [000] .... 82317.050687: binder_transaction_received: transaction=1571910
104877<...>-25493 ( 8943) [006] .... 82317.050691: binder_transaction_alloc_buf: transaction=1571913 data_size=7404 offsets_size=72
104878<...>-8874 ( 8858) [000] d..1 82317.050714: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
104879<...>-8874 ( 8858) [000] d..2 82317.050732: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
104880          <idle>-0     (-----) [001] .n.1 82317.050738: cpu_idle: state=4294967295 cpu_id=1
104881<...>-25493 ( 8943) [006] d..2 82317.050742: sched_waking: comm=launcher-loader pid=10136 prio=120 target_cpu=004
104882          <idle>-0     (-----) [001] d..2 82317.050745: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
104883    RenderThread-9436  ( 9105) [002] d..1 82317.050750: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
104884<...>-25493 ( 8943) [006] d..3 82317.050758: sched_wakeup: comm=launcher-loader pid=10136 prio=120 target_cpu=006
104885<...>-8874 ( 8858) [000] d..2 82317.050761: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
104886          <idle>-0     (-----) [000] d..1 82317.050773: cpu_idle: state=0 cpu_id=0
104887<...>-25493 ( 8943) [006] d..2 82317.050793: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=launcher-loader next_pid=10136 next_prio=120
104888 s.nexuslauncher-10023 (10023) [007] d.h1 82317.050801: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
104889<...>-10136 ( 10023) [006] .... 82317.050803: binder_transaction_received: transaction=1571913
104890  appEventThread-8881  ( 8858) [001] d..2 82317.050834: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
104891    RenderThread-9436  ( 9105) [002] d.h3 82317.050834: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=006
104892          <idle>-0     (-----) [001] d..1 82317.050844: cpu_idle: state=0 cpu_id=1
104893          <idle>-0     (-----) [005] dnh2 82317.050860: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
104894          <idle>-0     (-----) [005] .n.1 82317.050864: cpu_idle: state=4294967295 cpu_id=5
104895          <idle>-0     (-----) [005] d..2 82317.050871: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
104896         sugov:4-577   (  577) [005] .... 82317.050893: clk_set_rate: perfcl_clk 902400000
104897         sugov:4-577   (  577) [005] .... 82317.050895: clk_set_rate: cpu7_perfcl_clk 825600000
104898         sugov:4-577   (  577) [005] .... 82317.050900: clk_set_rate: cpu6_perfcl_clk 825600000
104899         sugov:4-577   (  577) [005] .... 82317.050906: clk_set_rate: cpu5_perfcl_clk 825600000
104900         sugov:4-577   (  577) [005] .... 82317.050911: clk_set_rate: cpu4_perfcl_clk 902400000
104901    RenderThread-9436  ( 9105) [002] .... 82317.050912: binder_transaction: transaction=1571919 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
104902    RenderThread-9436  ( 9105) [002] .... 82317.050915: binder_transaction_alloc_buf: transaction=1571919 data_size=104 offsets_size=0
104903         sugov:4-577   (  577) [005] .... 82317.050916: cpu_frequency: state=902400 cpu_id=4
104904    RenderThread-9436  ( 9105) [002] d..4 82317.050918: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
104905         sugov:4-577   (  577) [005] .... 82317.050928: cpu_frequency: state=902400 cpu_id=5
104906         sugov:4-577   (  577) [005] .... 82317.050931: cpu_frequency: state=902400 cpu_id=6
104907    RenderThread-9436  ( 9105) [002] dn.5 82317.050932: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
104908         sugov:4-577   (  577) [005] .... 82317.050934: cpu_frequency: state=902400 cpu_id=7
104909    RenderThread-9436  ( 9105) [002] d..2 82317.050939: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
104910<...>-8874 ( 8858) [002] .... 82317.050945: binder_transaction_received: transaction=1571919
104911         sugov:4-577   (  577) [005] d..2 82317.050953: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
104912          <idle>-0     (-----) [005] d..1 82317.050959: cpu_idle: state=0 cpu_id=5
104913<...>-8874 ( 8858) [002] .... 82317.051010: binder_transaction: transaction=1571920 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
104914<...>-8874 ( 8858) [002] .... 82317.051012: binder_transaction_alloc_buf: transaction=1571920 data_size=52 offsets_size=8
104915<...>-8874 ( 8858) [002] d..2 82317.051047: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
104916    RenderThread-9436  ( 9105) [002] .... 82317.051052: binder_transaction_received: transaction=1571920
104917 s.nexuslauncher-10023 (10023) [007] .... 82317.051688: binder_transaction: transaction=1571921 dest_node=396343 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x45
104918 s.nexuslauncher-10023 (10023) [007] .... 82317.051692: binder_transaction_alloc_buf: transaction=1571921 data_size=72 offsets_size=0
104919 s.nexuslauncher-10023 (10023) [007] ...2 82317.051695: binder_set_priority: proc=8943 thread=25493 old=120 => new=110 desired=110
104920 s.nexuslauncher-10023 (10023) [007] d..4 82317.051697: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=006
104921          <idle>-0     (-----) [000] dnh2 82317.051750: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=000
104922          <idle>-0     (-----) [000] .n.1 82317.051756: cpu_idle: state=4294967295 cpu_id=0
104923 s.nexuslauncher-10023 (10023) [007] d..2 82317.051756: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
104924<...>-10136 ( 10023) [006] .... 82317.051762: binder_transaction: transaction=1571922 dest_node=397611 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x10
104925          <idle>-0     (-----) [000] d..2 82317.051764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
104926<...>-10136 ( 10023) [006] .... 82317.051766: binder_transaction_alloc_buf: transaction=1571922 data_size=156 offsets_size=0
104927<...>-25493 ( 8943) [000] .... 82317.051769: binder_transaction_received: transaction=1571921
104928<...>-10136 ( 10023) [006] d..4 82317.051770: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
104929<...>-10136 ( 10023) [006] d..5 82317.051793: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
104930<...>-10136 ( 10023) [006] d.H5 82317.051882: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
104931<...>-9105 ( 9105) [007] d..2 82317.051888: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
104932          <idle>-0     (-----) [001] dnh2 82317.051906: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
104933<...>-11815 ( 8943) [007] .... 82317.051908: binder_transaction_received: transaction=1571922
104934          <idle>-0     (-----) [001] .n.1 82317.051911: cpu_idle: state=4294967295 cpu_id=1
104935          <idle>-0     (-----) [001] d..2 82317.051918: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
104936<...>-10136 ( 10023) [006] d..2 82317.051920: sched_switch: prev_comm=launcher-loader prev_pid=10136 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
104937          <idle>-0     (-----) [006] d..1 82317.051933: cpu_idle: state=0 cpu_id=6
104938         sugov:0-576   (  576) [001] .... 82317.051942: clk_set_rate: pwrcl_clk 1766400000
104939<...>-25493 ( 8943) [000] d..1 82317.051975: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
104940<...>-11815 ( 8943) [007] d..2 82317.051976: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
104941          <idle>-0     (-----) [007] d..1 82317.051989: cpu_idle: state=0 cpu_id=7
104942          <idle>-0     (-----) [007] dnh2 82317.052000: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
104943          <idle>-0     (-----) [007] .n.1 82317.052004: cpu_idle: state=4294967295 cpu_id=7
104944          <idle>-0     (-----) [007] d..2 82317.052012: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
104945         sugov:0-576   (  576) [001] d..2 82317.052018: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
104946          <idle>-0     (-----) [001] d.s4 82317.052046: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
104947          <idle>-0     (-----) [001] d.s5 82317.052063: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
104948    RenderThread-9436  ( 9105) [002] d..2 82317.052072: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=576 next_prio=49
104949          <idle>-0     (-----) [001] d..1 82317.052086: cpu_idle: state=0 cpu_id=1
104950         sugov:0-576   (  576) [002] .... 82317.052089: clk_set_rate: cpu3_pwrcl_clk 1516800000
104951         sugov:0-576   (  576) [002] .... 82317.052097: clk_set_rate: cpu2_pwrcl_clk 1516800000
104952         sugov:0-576   (  576) [002] .... 82317.052103: clk_set_rate: cpu1_pwrcl_clk 1516800000
104953<...>-25493 ( 8943) [000] .... 82317.052103: binder_transaction: transaction=1571923 dest_node=409915 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x4
104954<...>-25493 ( 8943) [000] .... 82317.052108: binder_transaction_alloc_buf: transaction=1571923 data_size=84 offsets_size=0
104955         sugov:0-576   (  576) [002] .... 82317.052109: clk_set_rate: cpu0_pwrcl_clk 1766400000
104956<...>-25493 ( 8943) [000] d..4 82317.052112: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=002
104957         sugov:0-576   (  576) [002] .... 82317.052118: cpu_frequency: state=1766400 cpu_id=0
104958<...>-25493 ( 8943) [000] d..5 82317.052136: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=001
104959          <idle>-0     (-----) [001] .n.1 82317.052142: cpu_idle: state=4294967295 cpu_id=1
104960          <idle>-0     (-----) [001] d..2 82317.052151: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
104961<...>-9131 ( 9105) [001] .... 82317.052158: binder_transaction_received: transaction=1571923
104962<...>-25493 ( 8943) [000] d.h2 82317.052223: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
104963<...>-25493 ( 8943) [000] d.h3 82317.052243: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
104964<...>-9131 ( 9105) [001] d..2 82317.052253: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
104965         sugov:0-576   (  576) [002] d..2 82317.052254: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=RenderThread next_pid=9436 next_prio=120
104966<...>-11815 ( 8943) [007] .... 82317.052264: binder_transaction: transaction=1571924 dest_node=0 dest_proc=10023 dest_thread=10136 reply=1 flags=0x0 code=0x0
104967<...>-11815 ( 8943) [007] .... 82317.052268: binder_transaction_alloc_buf: transaction=1571924 data_size=8 offsets_size=0
104968<...>-11815 ( 8943) [007] d..2 82317.052271: sched_waking: comm=launcher-loader pid=10136 prio=120 target_cpu=006
104969 kgsl_worker_thr-258   (  258) [001] d.s2 82317.052280: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
104970<...>-11815 ( 8943) [007] d..3 82317.052286: sched_wakeup: comm=launcher-loader pid=10136 prio=120 target_cpu=007
104971 kgsl_worker_thr-258   (  258) [001] d.s3 82317.052290: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
104972<...>-11815 ( 8943) [007] d..2 82317.052311: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=launcher-loader next_pid=10136 next_prio=120
104973<...>-10136 ( 10023) [007] .... 82317.052320: binder_transaction_received: transaction=1571924
104974<...>-25493 ( 8943) [000] .... 82317.052321: binder_transaction: transaction=1571925 dest_node=409915 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x2
104975<...>-25493 ( 8943) [000] .... 82317.052325: binder_transaction_alloc_buf: transaction=1571925 data_size=148 offsets_size=0
104976 kgsl_worker_thr-258   (  258) [001] d..2 82317.052338: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
104977 kgsl_worker_thr-258   (  258) [001] d..3 82317.052354: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
104978    RenderThread-9436  ( 9105) [002] d..2 82317.052361: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
104979 kgsl_worker_thr-258   (  258) [001] d..2 82317.052374: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
104980     ksoftirqd/1-18    (   18) [001] d.s2 82317.052383: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
104981<...>-10136 ( 10023) [007] d..2 82317.052391: sched_switch: prev_comm=launcher-loader prev_pid=10136 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
104982     ksoftirqd/1-18    (   18) [001] d.s3 82317.052394: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
104983<...>-25493 ( 8943) [000] .... 82317.052400: binder_transaction: transaction=1571926 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
104984  kworker/u16:15-1311  ( 1311) [002] d..2 82317.052400: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=576 next_prio=49
104985<...>-25493 ( 8943) [000] .... 82317.052402: binder_transaction_alloc_buf: transaction=1571926 data_size=4 offsets_size=0
104986<...>-25493 ( 8943) [000] d..2 82317.052405: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=007
104987          <idle>-0     (-----) [007] d..1 82317.052405: cpu_idle: state=0 cpu_id=7
104988     ksoftirqd/1-18    (   18) [001] d..2 82317.052408: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
104989         sugov:0-576   (  576) [002] .... 82317.052410: cpu_frequency: state=1766400 cpu_id=1
104990         sugov:0-576   (  576) [002] .... 82317.052414: cpu_frequency: state=1766400 cpu_id=2
104991         sugov:0-576   (  576) [002] .... 82317.052416: cpu_frequency: state=1766400 cpu_id=3
104992<...>-25493 ( 8943) [000] d..3 82317.052424: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=000
104993         sugov:0-576   (  576) [002] d..2 82317.052426: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
104994  kworker/u16:15-1311  ( 1311) [002] d..2 82317.052432: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
104995<...>-25493 ( 8943) [000] .... 82317.052460: binder_set_priority: proc=8943 thread=25493 old=110 => new=120 desired=120
104996<...>-25493 ( 8943) [000] d..2 82317.052490: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
104997<...>-9131 ( 9105) [001] d..3 82317.052491: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
104998 s.nexuslauncher-10023 (10023) [000] .... 82317.052496: binder_transaction_received: transaction=1571926
104999          <idle>-0     (-----) [007] dnh2 82317.052509: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105000    RenderThread-9436  ( 9105) [002] .... 82317.052509: binder_transaction: transaction=1571927 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
105001    RenderThread-9436  ( 9105) [002] .... 82317.052513: binder_transaction_alloc_buf: transaction=1571927 data_size=192 offsets_size=8
105002          <idle>-0     (-----) [007] .n.1 82317.052514: cpu_idle: state=4294967295 cpu_id=7
105003    RenderThread-9436  ( 9105) [002] d..4 82317.052520: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
105004          <idle>-0     (-----) [007] d..2 82317.052521: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
105005    RenderThread-9436  ( 9105) [002] dn.5 82317.052530: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
105006    RenderThread-9436  ( 9105) [002] d..2 82317.052535: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
105007<...>-9131 ( 9105) [001] d..4 82317.052540: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
105008<...>-8874 ( 8858) [002] .... 82317.052541: binder_transaction_received: transaction=1571927
105009          <idle>-0     (-----) [006] dnh2 82317.052592: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
105010<...>-9131 ( 9105) [001] .... 82317.052594: binder_transaction_received: transaction=1571925
105011          <idle>-0     (-----) [006] .n.1 82317.052595: cpu_idle: state=4294967295 cpu_id=6
105012          <idle>-0     (-----) [006] d..2 82317.052603: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
105013<...>-9105 ( 9105) [007] d..2 82317.052609: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
105014          <idle>-0     (-----) [007] d..1 82317.052620: cpu_idle: state=0 cpu_id=7
105015<...>-9132 ( 9105) [006] d..2 82317.052624: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
105016 s.nexuslauncher-10023 (10023) [000] d..2 82317.052625: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
105017          <idle>-0     (-----) [006] d..1 82317.052633: cpu_idle: state=0 cpu_id=6
105018 s.nexuslauncher-10023 (10023) [000] d..3 82317.052637: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
105019<...>-9131 ( 9105) [001] d..3 82317.052687: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105020          <idle>-0     (-----) [007] dnh2 82317.052706: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105021          <idle>-0     (-----) [007] .n.1 82317.052710: cpu_idle: state=4294967295 cpu_id=7
105022<...>-8874 ( 8858) [002] .... 82317.052716: binder_transaction: transaction=1571928 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
105023          <idle>-0     (-----) [007] d..2 82317.052717: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
105024<...>-8874 ( 8858) [002] .... 82317.052719: binder_transaction_alloc_buf: transaction=1571928 data_size=68 offsets_size=0
105025<...>-8874 ( 8858) [002] d..2 82317.052743: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
105026    RenderThread-9436  ( 9105) [002] .... 82317.052748: binder_transaction_received: transaction=1571928
105027<...>-9131 ( 9105) [001] d..2 82317.052758: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105028          <idle>-0     (-----) [001] d..1 82317.052769: cpu_idle: state=0 cpu_id=1
105029    RenderThread-9436  ( 9105) [002] d..2 82317.052811: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105030          <idle>-0     (-----) [002] d..1 82317.052820: cpu_idle: state=0 cpu_id=2
105031 s.nexuslauncher-10023 (10023) [000] .... 82317.052846: binder_transaction: transaction=1571929 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x11
105032 s.nexuslauncher-10023 (10023) [000] .... 82317.052848: binder_transaction_alloc_buf: transaction=1571929 data_size=100 offsets_size=8
105033<...>-9105 ( 9105) [007] .... 82317.052852: binder_transaction: transaction=1571930 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
105034<...>-9105 ( 9105) [007] .... 82317.052856: binder_transaction_alloc_buf: transaction=1571930 data_size=96 offsets_size=0
105035 s.nexuslauncher-10023 (10023) [000] ...2 82317.052856: binder_set_priority: proc=8943 thread=25493 old=120 => new=110 desired=110
105036 s.nexuslauncher-10023 (10023) [000] d..4 82317.052858: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=000
105037 s.nexuslauncher-10023 (10023) [000] d..5 82317.052878: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
105038<...>-9105 ( 9105) [007] d..4 82317.052880: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
105039          <idle>-0     (-----) [001] .n.1 82317.052883: cpu_idle: state=4294967295 cpu_id=1
105040<...>-9105 ( 9105) [007] d..5 82317.052888: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
105041          <idle>-0     (-----) [001] d..2 82317.052891: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
105042<...>-25493 ( 8943) [001] .... 82317.052896: binder_transaction_received: transaction=1571929
105043<...>-9105 ( 9105) [007] d..2 82317.052899: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
105044 s.nexuslauncher-10023 (10023) [000] d..2 82317.052900: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
105045<...>-11815 ( 8943) [007] .... 82317.052907: binder_transaction_received: transaction=1571930
105046<...>-581 ( 571) [000] d..2 82317.052990: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105047          <idle>-0     (-----) [000] d..1 82317.053003: cpu_idle: state=0 cpu_id=0
105048<...>-25493 ( 8943) [001] .... 82317.053078: binder_transaction: transaction=1571931 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
105049<...>-25493 ( 8943) [001] .... 82317.053081: binder_transaction_alloc_buf: transaction=1571931 data_size=4 offsets_size=0
105050<...>-25493 ( 8943) [001] d..2 82317.053084: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=000
105051<...>-25493 ( 8943) [001] d..3 82317.053099: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=001
105052<...>-25493 ( 8943) [001] .... 82317.053102: binder_set_priority: proc=8943 thread=25493 old=110 => new=120 desired=120
105053<...>-11815 ( 8943) [007] .... 82317.053126: binder_transaction: transaction=1571932 dest_node=0 dest_proc=9105 dest_thread=9105 reply=1 flags=0x0 code=0x0
105054<...>-11815 ( 8943) [007] .... 82317.053131: binder_transaction_alloc_buf: transaction=1571932 data_size=340 offsets_size=0
105055<...>-11815 ( 8943) [007] d..2 82317.053133: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105056<...>-25493 ( 8943) [001] d..2 82317.053135: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105057 s.nexuslauncher-10023 (10023) [001] .... 82317.053141: binder_transaction_received: transaction=1571931
105058<...>-11815 ( 8943) [007] d..3 82317.053142: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105059<...>-11815 ( 8943) [007] d..2 82317.053167: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
105060<...>-9105 ( 9105) [007] .... 82317.053175: binder_transaction_received: transaction=1571932
105061<...>-9105 ( 9105) [007] .... 82317.053303: binder_transaction: transaction=1571933 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
105062<...>-9105 ( 9105) [007] .... 82317.053306: binder_transaction_alloc_buf: transaction=1571933 data_size=96 offsets_size=0
105063<...>-9105 ( 9105) [007] d..4 82317.053309: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
105064<...>-9105 ( 9105) [007] d..5 82317.053317: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
105065<...>-9105 ( 9105) [007] d..2 82317.053326: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
105066<...>-11815 ( 8943) [007] .... 82317.053333: binder_transaction_received: transaction=1571933
105067<...>-11815 ( 8943) [007] .... 82317.053511: binder_transaction: transaction=1571934 dest_node=0 dest_proc=9105 dest_thread=9105 reply=1 flags=0x0 code=0x0
105068<...>-11815 ( 8943) [007] .... 82317.053515: binder_transaction_alloc_buf: transaction=1571934 data_size=340 offsets_size=0
105069<...>-11815 ( 8943) [007] d..2 82317.053517: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105070<...>-11815 ( 8943) [007] d..3 82317.053526: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105071<...>-11815 ( 8943) [007] d..2 82317.053549: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
105072<...>-9105 ( 9105) [007] .... 82317.053557: binder_transaction_received: transaction=1571934
105073<...>-9105 ( 9105) [007] d..3 82317.053693: sched_waking: comm=recents.fg pid=9368 prio=120 target_cpu=006
105074          <idle>-0     (-----) [000] dnh2 82317.053747: sched_wakeup: comm=recents.fg pid=9368 prio=120 target_cpu=000
105075          <idle>-0     (-----) [000] .n.1 82317.053751: cpu_idle: state=4294967295 cpu_id=0
105076          <idle>-0     (-----) [000] d..2 82317.053758: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=recents.fg next_pid=9368 next_prio=120
105077<...>-9105 ( 9105) [007] .... 82317.053819: binder_transaction: transaction=1571935 dest_node=409920 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x2
105078<...>-9105 ( 9105) [007] .... 82317.053822: binder_transaction_alloc_buf: transaction=1571935 data_size=84 offsets_size=0
105079<...>-9105 ( 9105) [007] d..4 82317.053825: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
105080          <idle>-0     (-----) [002] dnh2 82317.053871: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
105081          <idle>-0     (-----) [002] .n.1 82317.053875: cpu_idle: state=4294967295 cpu_id=2
105082          <idle>-0     (-----) [002] d..2 82317.053880: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
105083<...>-11815 ( 8943) [002] .... 82317.053885: binder_transaction_received: transaction=1571935
105084<...>-9368 ( 9105) [000] .... 82317.053897: binder_transaction: transaction=1571936 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x5c
105085<...>-11815 ( 8943) [002] d.h1 82317.053898: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
105086<...>-9368 ( 9105) [000] .... 82317.053900: binder_transaction_alloc_buf: transaction=1571936 data_size=84 offsets_size=0
105087<...>-9368 ( 9105) [000] d..4 82317.053903: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=001
105088<...>-9105 ( 9105) [007] d..2 82317.053921: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
105089<...>-11815 ( 8943) [002] d.h2 82317.053922: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
105090<...>-9368 ( 9105) [000] dn.5 82317.053927: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=000
105091          <idle>-0     (-----) [007] d..1 82317.053934: cpu_idle: state=0 cpu_id=7
105092 s.nexuslauncher-10023 (10023) [001] .... 82317.053935: binder_transaction: transaction=1571937 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x9
105093<...>-9368 ( 9105) [000] d..2 82317.053936: sched_switch: prev_comm=recents.fg prev_pid=9368 prev_prio=120 prev_state=R+ ==> next_comm=DispSync next_pid=8879 next_prio=97
105094 s.nexuslauncher-10023 (10023) [001] .... 82317.053938: binder_transaction_alloc_buf: transaction=1571937 data_size=480 offsets_size=16
105095        DispSync-8879  ( 8858) [000] d..1 82317.053957: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
105096        DispSync-8879  ( 8858) [000] d..2 82317.053976: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
105097<...>-11815 ( 8943) [002] d..2 82317.053988: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
105098        DispSync-8879  ( 8858) [000] d..2 82317.053992: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=recents.fg next_pid=9368 next_prio=120
105099<...>-9368 ( 9105) [000] d..2 82317.054001: sched_switch: prev_comm=recents.fg prev_pid=9368 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
105100<...>-25493 ( 8943) [000] .... 82317.054005: binder_transaction_received: transaction=1571936
105101   sfEventThread-8882  ( 8858) [002] d..3 82317.054028: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
105102   sfEventThread-8882  ( 8858) [002] d..4 82317.054047: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
105103   sfEventThread-8882  ( 8858) [002] d..3 82317.054061: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
105104          <idle>-0     (-----) [004] dnh2 82317.054083: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
105105   sfEventThread-8882  ( 8858) [002] d..2 82317.054086: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
105106          <idle>-0     (-----) [004] .n.1 82317.054087: cpu_idle: state=4294967295 cpu_id=4
105107          <idle>-0     (-----) [004] d..2 82317.054095: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
105108<...>-11815 ( 8943) [002] d..3 82317.054130: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
105109          <idle>-0     (-----) [007] ...1 82317.054135: cpu_idle: state=4294967295 cpu_id=7
105110          <idle>-0     (-----) [007] d..1 82317.054138: cpu_idle: state=0 cpu_id=7
105111          <idle>-0     (-----) [006] dnh2 82317.054151: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
105112          <idle>-0     (-----) [006] .n.1 82317.054155: cpu_idle: state=4294967295 cpu_id=6
105113          <idle>-0     (-----) [006] d..2 82317.054161: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
105114 s.nexuslauncher-10023 (10023) [001] d..2 82317.054162: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
105115<...>-25493 ( 8943) [000] .... 82317.054203: binder_transaction: transaction=1571940 dest_node=0 dest_proc=9105 dest_thread=9368 reply=1 flags=0x0 code=0x0
105116<...>-25493 ( 8943) [000] .... 82317.054207: binder_transaction_alloc_buf: transaction=1571940 data_size=8 offsets_size=0
105117<...>-11815 ( 8943) [002] d..2 82317.054207: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105118<...>-25493 ( 8943) [000] d..2 82317.054210: sched_waking: comm=recents.fg pid=9368 prio=120 target_cpu=000
105119          <idle>-0     (-----) [002] d..1 82317.054216: cpu_idle: state=0 cpu_id=2
105120<...>-25493 ( 8943) [000] d..3 82317.054219: sched_wakeup: comm=recents.fg pid=9368 prio=120 target_cpu=000
105121<...>-8962 ( 8943) [006] d..2 82317.054227: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
105122<...>-9005 ( 8943) [004] .... 82317.054235: binder_transaction: transaction=1571941 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
105123          <idle>-0     (-----) [006] d..1 82317.054237: cpu_idle: state=0 cpu_id=6
105124<...>-9005 ( 8943) [004] .... 82317.054240: binder_transaction_alloc_buf: transaction=1571941 data_size=80 offsets_size=0
105125<...>-25493 ( 8943) [000] d..2 82317.054244: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=recents.fg next_pid=9368 next_prio=120
105126<...>-9005 ( 8943) [004] d..4 82317.054244: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
105127<...>-9368 ( 9105) [000] .... 82317.054249: binder_transaction_received: transaction=1571940
105128          <idle>-0     (-----) [002] dnh2 82317.054263: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
105129          <idle>-0     (-----) [002] .n.1 82317.054267: cpu_idle: state=4294967295 cpu_id=2
105130          <idle>-0     (-----) [002] d..2 82317.054273: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
105131<...>-8874 ( 8858) [002] .... 82317.054278: binder_transaction_received: transaction=1571941
105132<...>-8874 ( 8858) [002] d..1 82317.054297: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
105133<...>-8874 ( 8858) [002] d..2 82317.054312: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
105134<...>-9368 ( 9105) [000] d..2 82317.054318: sched_switch: prev_comm=recents.fg prev_pid=9368 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=8882 next_prio=97
105135<...>-8874 ( 8858) [002] d..2 82317.054345: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105136          <idle>-0     (-----) [002] d..1 82317.054351: cpu_idle: state=0 cpu_id=2
105137   sfEventThread-8882  ( 8858) [000] d..2 82317.054352: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105138          <idle>-0     (-----) [000] d..1 82317.054364: cpu_idle: state=0 cpu_id=0
105139  surfaceflinger-8858  ( 8858) [001] d..1 82317.054487: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
105140  surfaceflinger-8858  ( 8858) [001] d..2 82317.054502: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
105141          <idle>-0     (-----) [000] .n.1 82317.054507: cpu_idle: state=4294967295 cpu_id=0
105142          <idle>-0     (-----) [000] d..2 82317.054513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
105143   sfEventThread-8882  ( 8858) [000] d..2 82317.054530: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105144          <idle>-0     (-----) [000] d..1 82317.054536: cpu_idle: state=0 cpu_id=0
105145  surfaceflinger-8858  ( 8858) [001] ...1 82317.054653: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
105146  surfaceflinger-8858  ( 8858) [001] ...1 82317.054659: tracing_mark_write: E|8858
105147<...>-9005 ( 8943) [004] .... 82317.054663: binder_transaction: transaction=1571942 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
105148<...>-9005 ( 8943) [004] .... 82317.054668: binder_transaction_alloc_buf: transaction=1571942 data_size=988 offsets_size=48
105149<...>-9005 ( 8943) [004] ...2 82317.054681: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
105150<...>-9005 ( 8943) [004] d..4 82317.054683: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105151<...>-9005 ( 8943) [004] d..5 82317.054703: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
105152  surfaceflinger-8858  ( 8858) [001] .... 82317.054709: binder_transaction: transaction=1571943 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
105153  surfaceflinger-8858  ( 8858) [001] .... 82317.054713: binder_transaction_alloc_buf: transaction=1571943 data_size=540 offsets_size=96
105154  surfaceflinger-8858  ( 8858) [001] ...2 82317.054733: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
105155<...>-9005 ( 8943) [004] d..2 82317.054741: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105156  surfaceflinger-8858  ( 8858) [001] d..4 82317.054741: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
105157<...>-8874 ( 8858) [004] .... 82317.054751: binder_transaction_received: transaction=1571942
105158  surfaceflinger-8858  ( 8858) [001] d..5 82317.054761: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
105159          <idle>-0     (-----) [000] .n.1 82317.054765: cpu_idle: state=4294967295 cpu_id=0
105160          <idle>-0     (-----) [000] d..2 82317.054771: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
105161  surfaceflinger-8858  ( 8858) [001] d..2 82317.054773: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105162 s.nexuslauncher-10023 (10023) [001] ...2 82317.054779: binder_set_priority: proc=8943 thread=25493 old=120 => new=110 desired=110
105163 [email protected]   (  619) [000] .... 82317.054780: binder_transaction_received: transaction=1571943
105164 s.nexuslauncher-10023 (10023) [001] d..4 82317.054781: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=000
105165 s.nexuslauncher-10023 (10023) [001] d..5 82317.054792: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
105166 s.nexuslauncher-10023 (10023) [001] d..2 82317.054799: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
105167<...>-25493 ( 8943) [001] .... 82317.054803: binder_transaction_received: transaction=1571937
105168<...>-8874 ( 8858) [004] .... 82317.054831: binder_transaction: transaction=1571944 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
105169 [email protected]   (  619) [000] ...1 82317.054831: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
105170<...>-8874 ( 8858) [004] .... 82317.054834: binder_transaction_alloc_buf: transaction=1571944 data_size=0 offsets_size=0
105171<...>-8874 ( 8858) [004] d..2 82317.054837: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
105172<...>-8874 ( 8858) [004] dn.3 82317.054846: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
105173<...>-8874 ( 8858) [004] d..2 82317.054852: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=android.anim next_pid=9005 next_prio=110
105174<...>-9005 ( 8943) [004] .... 82317.054860: binder_transaction_received: transaction=1571944
105175 [email protected]   (  619) [000] ...1 82317.054923: tracing_mark_write: B|619|HWCSession::PresentDisplay::
105176<...>-9005 ( 8943) [004] d..2 82317.054949: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105177<...>-8874 ( 8858) [004] .... 82317.054956: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
105178<...>-8874 ( 8858) [004] d..2 82317.055005: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
105179          <idle>-0     (-----) [004] d..1 82317.055017: cpu_idle: state=0 cpu_id=4
105180 [email protected]   (  619) [000] ...1 82317.055053: tracing_mark_write: B|619|HWDeviceDRM::Commit::
105181 [email protected]   (  619) [000] ...1 82317.055061: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
105182          <idle>-0     (-----) [002] d.s2 82317.055131: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
105183<...>-25493 ( 8943) [001] .... 82317.055140: binder_transaction: transaction=1571945 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
105184<...>-25493 ( 8943) [001] .... 82317.055143: binder_transaction_alloc_buf: transaction=1571945 data_size=8 offsets_size=0
105185          <idle>-0     (-----) [002] dns3 82317.055145: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
105186<...>-25493 ( 8943) [001] d..2 82317.055146: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=001
105187          <idle>-0     (-----) [002] .n.1 82317.055151: cpu_idle: state=4294967295 cpu_id=2
105188<...>-25493 ( 8943) [001] d..3 82317.055153: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=001
105189<...>-25493 ( 8943) [001] .... 82317.055156: binder_set_priority: proc=8943 thread=25493 old=110 => new=120 desired=120
105190          <idle>-0     (-----) [002] d..2 82317.055156: 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
105191     rcu_preempt-7     (    7) [002] d..2 82317.055186: 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
105192<...>-25493 ( 8943) [001] d..2 82317.055190: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105193          <idle>-0     (-----) [002] d..1 82317.055193: cpu_idle: state=0 cpu_id=2
105194 s.nexuslauncher-10023 (10023) [001] .... 82317.055196: binder_transaction_received: transaction=1571945
105195 [email protected]   (  619) [000] d..2 82317.055525: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
105196 [email protected]   (  619) [000] d..3 82317.055541: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
105197          <idle>-0     (-----) [002] .n.1 82317.055546: cpu_idle: state=4294967295 cpu_id=2
105198          <idle>-0     (-----) [002] d..2 82317.055552: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
105199 [email protected]   (  619) [000] ...1 82317.055610: tracing_mark_write: E|619
105200 [email protected]   (  619) [000] ...1 82317.055614: tracing_mark_write: E|619
105201 [email protected]   (  619) [000] ...1 82317.055659: tracing_mark_write: E|619
105202 [email protected]   (  619) [000] ...1 82317.055698: tracing_mark_write: E|619
105203 [email protected]   (  619) [000] .... 82317.055708: binder_transaction: transaction=1571946 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
105204 [email protected]   (  619) [000] .... 82317.055711: binder_transaction_alloc_buf: transaction=1571946 data_size=576 offsets_size=112
105205 [email protected]   (  619) [000] d..2 82317.055723: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
105206 [email protected]   (  619) [000] d..3 82317.055733: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
105207 [email protected]   (  619) [000] .... 82317.055736: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
105208 s.nexuslauncher-10023 (10023) [001] d..2 82317.055747: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
105209  surfaceflinger-8858  ( 8858) [001] .... 82317.055755: binder_transaction_received: transaction=1571946
105210 [email protected]   (  619) [000] d..2 82317.055791: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105211          <idle>-0     (-----) [000] d..1 82317.055802: cpu_idle: state=0 cpu_id=0
105212  surfaceflinger-8858  ( 8858) [001] d..2 82317.056073: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105213 crtc_commit:111-321   (  321) [002] d..2 82317.056185: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
105214          <idle>-0     (-----) [002] d..1 82317.056192: cpu_idle: state=0 cpu_id=2
105215 s.nexuslauncher-10023 (10023) [001] .... 82317.056211: binder_transaction: transaction=1571947 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
105216 s.nexuslauncher-10023 (10023) [001] .... 82317.056214: binder_transaction_alloc_buf: transaction=1571947 data_size=80 offsets_size=0
105217 s.nexuslauncher-10023 (10023) [001] d..4 82317.056218: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
105218          <idle>-0     (-----) [004] dnh2 82317.056238: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
105219          <idle>-0     (-----) [004] .n.1 82317.056243: cpu_idle: state=4294967295 cpu_id=4
105220          <idle>-0     (-----) [004] d..2 82317.056251: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
105221 s.nexuslauncher-10023 (10023) [001] d..3 82317.056252: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=002
105222<...>-8874 ( 8858) [004] .... 82317.056255: binder_transaction_received: transaction=1571947
105223<...>-8874 ( 8858) [004] d..1 82317.056270: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
105224          <idle>-0     (-----) [005] dnh2 82317.056307: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
105225          <idle>-0     (-----) [005] .n.1 82317.056311: cpu_idle: state=4294967295 cpu_id=5
105226          <idle>-0     (-----) [005] d..2 82317.056318: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
105227          <idle>-0     (-----) [000] dnh2 82317.056320: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
105228          <idle>-0     (-----) [000] .n.1 82317.056325: cpu_idle: state=4294967295 cpu_id=0
105229          <idle>-0     (-----) [000] d..2 82317.056331: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
105230<...>-8874 ( 8858) [004] d..2 82317.056332: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
105231          <idle>-0     (-----) [004] d..1 82317.056339: cpu_idle: state=0 cpu_id=4
105232    RenderThread-16607 (10023) [005] d..2 82317.056357: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
105233          <idle>-0     (-----) [005] d..1 82317.056365: cpu_idle: state=0 cpu_id=5
105234  appEventThread-8881  ( 8858) [000] d..2 82317.056381: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105235          <idle>-0     (-----) [000] d..1 82317.056389: cpu_idle: state=0 cpu_id=0
105236 s.nexuslauncher-10023 (10023) [001] d..3 82317.057278: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
105237          <idle>-0     (-----) [005] dnh2 82317.057296: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
105238          <idle>-0     (-----) [005] .n.1 82317.057300: cpu_idle: state=4294967295 cpu_id=5
105239          <idle>-0     (-----) [005] d..2 82317.057305: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
105240 s.nexuslauncher-10023 (10023) [001] d..2 82317.057313: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105241    RenderThread-16607 (10023) [005] d..1 82317.057317: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=001
105242          <idle>-0     (-----) [001] d..1 82317.057328: cpu_idle: state=0 cpu_id=1
105243    RenderThread-16607 (10023) [005] d..2 82317.057338: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
105244          <idle>-0     (-----) [001] dnh2 82317.057339: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=001
105245          <idle>-0     (-----) [001] .n.1 82317.057344: cpu_idle: state=4294967295 cpu_id=1
105246          <idle>-0     (-----) [005] d..1 82317.057345: cpu_idle: state=0 cpu_id=5
105247          <idle>-0     (-----) [001] d..2 82317.057351: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105248 s.nexuslauncher-10023 (10023) [001] .... 82317.057425: binder_transaction: transaction=1571948 dest_node=1160153 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x6
105249 s.nexuslauncher-10023 (10023) [001] .... 82317.057428: binder_transaction_alloc_buf: transaction=1571948 data_size=120 offsets_size=8
105250 s.nexuslauncher-10023 (10023) [001] ...2 82317.057438: binder_set_priority: proc=8943 thread=25493 old=120 => new=110 desired=110
105251 s.nexuslauncher-10023 (10023) [001] d..4 82317.057440: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
105252 s.nexuslauncher-10023 (10023) [001] dn.5 82317.057449: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
105253 s.nexuslauncher-10023 (10023) [001] d..2 82317.057454: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
105254<...>-25493 ( 8943) [001] .... 82317.057460: binder_transaction_received: transaction=1571948
105255          <idle>-0     (-----) [000] ...1 82317.057931: cpu_idle: state=4294967295 cpu_id=0
105256          <idle>-0     (-----) [000] d..1 82317.057934: cpu_idle: state=0 cpu_id=0
105257<...>-25493 ( 8943) [001] d..3 82317.058125: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
105258           <...>-27566 (-----) [003] d..1 82317.058152: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=002
105259          <idle>-0     (-----) [004] dnh2 82317.058154: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
105260          <idle>-0     (-----) [004] .n.1 82317.058157: cpu_idle: state=4294967295 cpu_id=4
105261          <idle>-0     (-----) [004] d..2 82317.058163: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
105262           <...>-27566 (-----) [003] d..2 82317.058177: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=000
105263          <idle>-0     (-----) [000] .n.1 82317.058181: cpu_idle: state=4294967295 cpu_id=0
105264          <idle>-0     (-----) [000] d..2 82317.058188: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
105265<...>-8969 ( 8943) [004] d..2 82317.058217: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
105266          <idle>-0     (-----) [004] d..1 82317.058228: cpu_idle: state=0 cpu_id=4
105267           <...>-27558 (-----) [000] d..1 82317.058239: sched_waking: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=001
105268           <...>-27558 (-----) [000] d..2 82317.058262: sched_wakeup: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=002
105269          <idle>-0     (-----) [002] .n.1 82317.058267: cpu_idle: state=4294967295 cpu_id=2
105270          <idle>-0     (-----) [002] d..2 82317.058274: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=27559 next_prio=124
105271           <...>-27566 (-----) [003] d..2 82317.058298: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
105272<...>-25493 ( 8943) [001] .... 82317.058300: binder_transaction: transaction=1571949 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
105273           <...>-27558 (-----) [000] d..2 82317.058303: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105274<...>-25493 ( 8943) [001] .... 82317.058305: binder_transaction_alloc_buf: transaction=1571949 data_size=96 offsets_size=0
105275<...>-25493 ( 8943) [001] d..4 82317.058309: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=001
105276          <idle>-0     (-----) [000] d..1 82317.058313: cpu_idle: state=0 cpu_id=0
105277           <...>-27566 (-----) [003] d..3 82317.058318: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
105278<...>-25493 ( 8943) [001] d..5 82317.058330: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=000
105279          <idle>-0     (-----) [000] .n.1 82317.058335: cpu_idle: state=4294967295 cpu_id=0
105280          <idle>-0     (-----) [000] d..2 82317.058342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
105281<...>-9131 ( 9105) [000] .... 82317.058349: binder_transaction_received: transaction=1571949
105282           <...>-27559 (-----) [002] d..2 82317.058382: sched_switch: prev_comm=FinalizerDaemon prev_pid=27559 prev_prio=124 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105283          <idle>-0     (-----) [002] d..1 82317.058391: cpu_idle: state=0 cpu_id=2
105284<...>-25493 ( 8943) [001] d..3 82317.058434: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
105285          <idle>-0     (-----) [006] dnh2 82317.058455: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
105286          <idle>-0     (-----) [006] .n.1 82317.058460: cpu_idle: state=4294967295 cpu_id=6
105287          <idle>-0     (-----) [007] d.s3 82317.058465: sched_waking: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
105288          <idle>-0     (-----) [006] d..2 82317.058468: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
105289<...>-9131 ( 9105) [000] d.s2 82317.058468: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
105290           <...>-27566 (-----) [003] d..2 82317.058474: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
105291          <idle>-0     (-----) [007] dns4 82317.058474: sched_wakeup: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
105292          <idle>-0     (-----) [007] .n.1 82317.058485: cpu_idle: state=4294967295 cpu_id=7
105293          <idle>-0     (-----) [007] d..2 82317.058492: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/7:3 next_pid=442 next_prio=120
105294<...>-9131 ( 9105) [000] d.s3 82317.058499: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
105295     kworker/7:3-442   (  442) [007] d..2 82317.058513: sched_switch: prev_comm=kworker/7:3 prev_pid=442 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
105296          <idle>-0     (-----) [007] d..1 82317.058520: cpu_idle: state=0 cpu_id=7
105297<...>-8962 ( 8943) [006] d..3 82317.058521: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
105298<...>-9131 ( 9105) [000] d..3 82317.058526: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105299          <idle>-0     (-----) [007] dnh2 82317.058544: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105300          <idle>-0     (-----) [002] dnh2 82317.058545: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
105301          <idle>-0     (-----) [007] .n.1 82317.058548: cpu_idle: state=4294967295 cpu_id=7
105302          <idle>-0     (-----) [002] .n.1 82317.058549: cpu_idle: state=4294967295 cpu_id=2
105303          <idle>-0     (-----) [007] d..2 82317.058554: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
105304          <idle>-0     (-----) [002] d..2 82317.058556: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
105305<...>-581 ( 571) [003] d..2 82317.058568: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
105306<...>-8962 ( 8943) [006] d..2 82317.058569: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
105307          <idle>-0     (-----) [006] d..1 82317.058579: cpu_idle: state=0 cpu_id=6
105308<...>-9131 ( 9105) [000] d..2 82317.058588: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
105309   system_server-8943  ( 8943) [002] .... 82317.058632: binder_transaction: transaction=1571950 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
105310<...>-9105 ( 9105) [007] d..2 82317.058639: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
105311   system_server-8943  ( 8943) [002] .... 82317.058641: binder_transaction_alloc_buf: transaction=1571950 data_size=96 offsets_size=0
105312   system_server-8943  ( 8943) [002] d..4 82317.058644: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=000
105313          <idle>-0     (-----) [007] d..1 82317.058650: cpu_idle: state=0 cpu_id=7
105314          <idle>-0     (-----) [006] dnh2 82317.058698: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
105315          <idle>-0     (-----) [006] .n.1 82317.058703: cpu_idle: state=4294967295 cpu_id=6
105316          <idle>-0     (-----) [006] d..2 82317.058709: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
105317<...>-9131 ( 9105) [006] .... 82317.058718: binder_transaction_received: transaction=1571950
105318  kworker/u16:15-1311  ( 1311) [000] .... 82317.058742: clk_set_rate: l3_cluster0_vote_clk 1305600000
105319  kworker/u16:15-1311  ( 1311) [000] .... 82317.058747: clk_set_rate: l3_clk 1305600000
105320   system_server-8943  ( 8943) [002] d..2 82317.058751: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105321<...>-25493 ( 8943) [001] .... 82317.058754: binder_transaction: transaction=1571951 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
105322          <idle>-0     (-----) [002] d..1 82317.058758: cpu_idle: state=0 cpu_id=2
105323<...>-25493 ( 8943) [001] .... 82317.058758: binder_transaction_alloc_buf: transaction=1571951 data_size=76 offsets_size=0
105324<...>-25493 ( 8943) [001] ...2 82317.058762: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
105325<...>-25493 ( 8943) [001] d..4 82317.058765: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
105326<...>-25493 ( 8943) [001] d..5 82317.058789: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105327          <idle>-0     (-----) [002] .n.1 82317.058793: cpu_idle: state=4294967295 cpu_id=2
105328          <idle>-0     (-----) [002] d..2 82317.058821: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105329<...>-8874 ( 8858) [002] .... 82317.058826: binder_transaction_received: transaction=1571951
105330<...>-25493 ( 8943) [001] d..2 82317.058826: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=110 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105331<...>-9131 ( 9105) [006] d..3 82317.058835: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105332 s.nexuslauncher-10023 (10023) [001] d..2 82317.058843: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105333          <idle>-0     (-----) [007] ...1 82317.058845: cpu_idle: state=4294967295 cpu_id=7
105334<...>-9131 ( 9105) [006] d..4 82317.058849: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105335          <idle>-0     (-----) [007] d..2 82317.058854: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
105336<...>-8874 ( 8858) [002] .... 82317.058856: binder_transaction: transaction=1571952 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x0 code=0x0
105337<...>-8874 ( 8858) [002] .... 82317.058859: binder_transaction_alloc_buf: transaction=1571952 data_size=0 offsets_size=0
105338<...>-8874 ( 8858) [002] d..2 82317.058861: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=001
105339          <idle>-0     (-----) [001] d..1 82317.058867: cpu_idle: state=0 cpu_id=1
105340<...>-8874 ( 8858) [002] d..3 82317.058874: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=002
105341<...>-8874 ( 8858) [002] .... 82317.058876: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
105342          <idle>-0     (-----) [001] ...1 82317.058877: cpu_idle: state=4294967295 cpu_id=1
105343          <idle>-0     (-----) [001] d..1 82317.058879: cpu_idle: state=0 cpu_id=1
105344<...>-9131 ( 9105) [006] d..2 82317.058902: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
105345<...>-8874 ( 8858) [002] d..2 82317.058910: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
105346          <idle>-0     (-----) [006] d..1 82317.058913: cpu_idle: state=0 cpu_id=6
105347<...>-25493 ( 8943) [002] .... 82317.058915: binder_transaction_received: transaction=1571952
105348           <...>-27566 (-----) [003] d..2 82317.058927: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
105349<...>-9105 ( 9105) [007] d..2 82317.058932: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
105350           <...>-27566 (-----) [003] d..3 82317.058937: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
105351          <idle>-0     (-----) [007] d..1 82317.058940: cpu_idle: state=0 cpu_id=7
105352  kworker/u16:15-1311  ( 1311) [000] d..2 82317.059081: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
105353          <idle>-0     (-----) [001] d.s3 82317.059105: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
105354          <idle>-0     (-----) [001] d.s4 82317.059119: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
105355          <idle>-0     (-----) [001] dns4 82317.059123: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
105356          <idle>-0     (-----) [001] .n.1 82317.059127: cpu_idle: state=4294967295 cpu_id=1
105357          <idle>-0     (-----) [001] d..2 82317.059134: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
105358<...>-581 ( 571) [000] d..2 82317.059136: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105359          <idle>-0     (-----) [000] d..1 82317.059145: cpu_idle: state=0 cpu_id=0
105360           <...>-27566 (-----) [003] .... 82317.059171: binder_transaction: transaction=1571953 dest_node=1568281 dest_proc=27541 dest_thread=0 reply=0 flags=0x10 code=0x1
105361  kworker/u16:15-1311  ( 1311) [001] d..2 82317.059171: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105362           <...>-27566 (-----) [003] .... 82317.059173: binder_transaction_alloc_buf: transaction=1571953 data_size=612 offsets_size=0
105363           <...>-27566 (-----) [003] ...2 82317.059178: binder_set_priority: proc=27541 thread=27549 old=120 => new=112 desired=112
105364          <idle>-0     (-----) [001] d..1 82317.059178: cpu_idle: state=0 cpu_id=1
105365           <...>-27566 (-----) [003] d..4 82317.059181: sched_waking: comm=Binder:27541_2 pid=27549 prio=112 target_cpu=006
105366           <...>-27566 (-----) [003] dn.5 82317.059199: sched_wakeup: comm=Binder:27541_2 pid=27549 prio=112 target_cpu=003
105367           <...>-27566 (-----) [003] d..2 82317.059231: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=R+ ==> next_comm=Binder:27541_2 next_pid=27549 next_prio=112
105368           <...>-27549 (-----) [003] .... 82317.059239: binder_transaction_received: transaction=1571953
105369           <...>-27549 (-----) [003] d..2 82317.059626: sched_waking: comm=shell svc 27539 pid=27540 prio=120 target_cpu=006
105370<...>-25493 ( 8943) [002] d..3 82317.059641: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
105371          <idle>-0     (-----) [007] dnh2 82317.059655: sched_wakeup: comm=shell svc 27539 pid=27540 prio=120 target_cpu=007
105372<...>-25493 ( 8943) [002] d..4 82317.059658: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
105373          <idle>-0     (-----) [007] .n.1 82317.059659: cpu_idle: state=4294967295 cpu_id=7
105374           <...>-27549 (-----) [003] d..1 82317.059662: sched_waking: comm=main pid=27541 prio=120 target_cpu=000
105375          <idle>-0     (-----) [001] .n.1 82317.059663: cpu_idle: state=4294967295 cpu_id=1
105376          <idle>-0     (-----) [007] d..2 82317.059666: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 27539 next_pid=27540 next_prio=120
105377          <idle>-0     (-----) [001] d..2 82317.059669: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
105378           <...>-27549 (-----) [003] d..2 82317.059676: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=000
105379          <idle>-0     (-----) [000] .n.1 82317.059680: cpu_idle: state=4294967295 cpu_id=0
105380          <idle>-0     (-----) [000] d..2 82317.059687: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
105381           <...>-27540 (-----) [007] d..2 82317.059708: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
105382<...>-9039 ( 8943) [001] d..2 82317.059717: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
105383           <...>-27540 (-----) [007] d..3 82317.059731: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=007
105384           <...>-27566 (-----) [001] d..2 82317.059738: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105385           <...>-27549 (-----) [003] .... 82317.059738: binder_transaction: transaction=1571954 dest_node=0 dest_proc=27550 dest_thread=27566 reply=1 flags=0x0 code=0x0
105386           <...>-27549 (-----) [003] .... 82317.059741: binder_transaction_alloc_buf: transaction=1571954 data_size=4 offsets_size=0
105387           <...>-27541 (-----) [000] .... 82317.059742: binder_transaction: transaction=1571955 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x5f504e47
105388           <...>-27549 (-----) [003] d..2 82317.059743: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=001
105389          <idle>-0     (-----) [001] d..1 82317.059745: cpu_idle: state=0 cpu_id=1
105390           <...>-27541 (-----) [000] .... 82317.059745: binder_transaction_alloc_buf: transaction=1571955 data_size=0 offsets_size=0
105391           <...>-27541 (-----) [000] d..4 82317.059749: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
105392           <...>-27549 (-----) [003] d..3 82317.059773: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
105393           <...>-27540 (-----) [007] d..2 82317.059775: sched_switch: prev_comm=shell svc 27539 prev_pid=27540 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
105394           <...>-27549 (-----) [003] .... 82317.059776: binder_set_priority: proc=27541 thread=27549 old=112 => new=120 desired=120
105395           <...>-27541 (-----) [000] d..5 82317.059776: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
105396           <...>-27541 (-----) [000] d..2 82317.059785: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
105397<...>-11815 ( 8943) [000] .... 82317.059790: binder_transaction_received: transaction=1571955
105398           <...>-27549 (-----) [003] d..2 82317.059802: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=S ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
105399           <...>-27566 (-----) [003] .... 82317.059807: binder_transaction_received: transaction=1571954
105400<...>-11815 ( 8943) [000] .... 82317.059812: binder_transaction: transaction=1571956 dest_node=0 dest_proc=27541 dest_thread=27541 reply=1 flags=0x0 code=0x0
105401<...>-11815 ( 8943) [000] .... 82317.059815: binder_transaction_alloc_buf: transaction=1571956 data_size=4 offsets_size=0
105402<...>-11815 ( 8943) [000] d..2 82317.059816: sched_waking: comm=main pid=27541 prio=120 target_cpu=000
105403<...>-11815 ( 8943) [000] d..3 82317.059823: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=000
105404<...>-11815 ( 8943) [000] d..2 82317.059841: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=main next_pid=27541 next_prio=120
105405           <...>-27541 (-----) [000] .... 82317.059845: binder_transaction_received: transaction=1571956
105406<...>-25493 ( 8943) [002] .... 82317.059860: binder_transaction: transaction=1571957 dest_node=1160196 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
105407<...>-25493 ( 8943) [002] .... 82317.059863: binder_transaction_alloc_buf: transaction=1571957 data_size=228 offsets_size=8
105408<...>-25493 ( 8943) [002] ...2 82317.059870: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
105409<...>-25493 ( 8943) [002] d..4 82317.059872: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105410            adbd-960   (  960) [007] d..1 82317.059873: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
105411           <...>-27541 (-----) [000] d..2 82317.059875: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105412<...>-25493 ( 8943) [002] dn.5 82317.059881: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105413          <idle>-0     (-----) [000] d..1 82317.059884: cpu_idle: state=0 cpu_id=0
105414<...>-25493 ( 8943) [002] d..2 82317.059887: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105415<...>-8874 ( 8858) [002] .... 82317.059891: binder_transaction_received: transaction=1571957
105416          <idle>-0     (-----) [000] dnh2 82317.059907: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
105417          <idle>-0     (-----) [000] .n.1 82317.059911: cpu_idle: state=4294967295 cpu_id=0
105418          <idle>-0     (-----) [000] d..2 82317.059917: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
105419            adbd-960   (  960) [007] d..2 82317.059948: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
105420          <idle>-0     (-----) [007] d..1 82317.059959: cpu_idle: state=0 cpu_id=7
105421            adbd-24055 (  960) [000] d..2 82317.060015: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105422           <...>-27566 (-----) [003] d.h2 82317.060022: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
105423          <idle>-0     (-----) [000] d..1 82317.060023: cpu_idle: state=0 cpu_id=0
105424           <...>-27566 (-----) [003] d.h3 82317.060056: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
105425<...>-8874 ( 8858) [002] d..2 82317.060066: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
105426   kworker/u17:1-570   (  570) [002] d..2 82317.060086: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
105427   kworker/u17:1-570   (  570) [002] d..3 82317.060097: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
105428   kworker/u17:1-570   (  570) [002] d..2 82317.060117: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
105429     kworker/2:1-25259 (25259) [002] d..2 82317.060128: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
105430     kworker/2:1-25259 (25259) [002] d..3 82317.060137: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
105431          <idle>-0     (-----) [000] .n.1 82317.060142: cpu_idle: state=4294967295 cpu_id=0
105432          <idle>-0     (-----) [000] d..2 82317.060149: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
105433     kworker/2:1-25259 (25259) [002] d..2 82317.060150: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105434           <...>-27566 (-----) [003] d..3 82317.060168: sched_waking: comm=Instrumentation pid=27567 prio=120 target_cpu=001
105435           <...>-27566 (-----) [003] d..4 82317.060183: sched_wakeup: comm=Instrumentation pid=27567 prio=120 target_cpu=001
105436          <idle>-0     (-----) [001] .n.1 82317.060188: cpu_idle: state=4294967295 cpu_id=1
105437            adbd-24055 (  960) [000] d..2 82317.060194: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105438          <idle>-0     (-----) [001] d..2 82317.060195: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=27567 next_prio=120
105439           <...>-27566 (-----) [003] d.h2 82317.060200: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
105440          <idle>-0     (-----) [000] d..1 82317.060200: cpu_idle: state=0 cpu_id=0
105441           <...>-27566 (-----) [003] d.h3 82317.060223: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
105442<...>-8874 ( 8858) [002] .... 82317.060230: binder_transaction: transaction=1571958 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x0 code=0x0
105443           <...>-27567 (-----) [001] d..2 82317.060232: sched_switch: prev_comm=Instrumentation prev_pid=27567 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
105444<...>-8874 ( 8858) [002] .... 82317.060232: binder_transaction_alloc_buf: transaction=1571958 data_size=52 offsets_size=16
105445   kworker/u17:1-570   (  570) [001] d..2 82317.060243: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
105446   kworker/u17:1-570   (  570) [001] d..3 82317.060253: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
105447           <...>-27566 (-----) [003] d..2 82317.060258: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105448   kworker/u17:1-570   (  570) [001] d..2 82317.060270: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
105449          <idle>-0     (-----) [003] d..1 82317.060276: cpu_idle: state=0 cpu_id=3
105450     kworker/1:1-25249 (25249) [001] d..2 82317.060277: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
105451     kworker/1:1-25249 (25249) [001] d..3 82317.060287: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
105452          <idle>-0     (-----) [000] .n.1 82317.060291: cpu_idle: state=4294967295 cpu_id=0
105453     kworker/1:1-25249 (25249) [001] d..2 82317.060296: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=Instrumentation next_pid=27567 next_prio=120
105454          <idle>-0     (-----) [000] d..2 82317.060298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
105455            adbd-24055 (  960) [000] d..2 82317.060329: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105456           <...>-27567 (-----) [001] d..1 82317.060333: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
105457          <idle>-0     (-----) [000] d..1 82317.060335: cpu_idle: state=0 cpu_id=0
105458           <...>-27567 (-----) [001] d..2 82317.060343: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
105459          <idle>-0     (-----) [003] .n.1 82317.060349: cpu_idle: state=4294967295 cpu_id=3
105460          <idle>-0     (-----) [003] d..2 82317.060357: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
105461           <...>-27567 (-----) [001] d..2 82317.060369: sched_switch: prev_comm=Instrumentation prev_pid=27567 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105462          <idle>-0     (-----) [001] d..1 82317.060378: cpu_idle: state=0 cpu_id=1
105463           <...>-27566 (-----) [003] d..3 82317.060389: sched_waking: comm=Instrumentation pid=27567 prio=120 target_cpu=001
105464           <...>-27566 (-----) [003] d..4 82317.060399: sched_wakeup: comm=Instrumentation pid=27567 prio=120 target_cpu=001
105465          <idle>-0     (-----) [001] .n.1 82317.060405: cpu_idle: state=4294967295 cpu_id=1
105466          <idle>-0     (-----) [001] d..2 82317.060411: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=27567 next_prio=120
105467           <...>-27566 (-----) [003] d.h2 82317.060442: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
105468           <...>-27566 (-----) [003] d.h3 82317.060454: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
105469           <...>-27567 (-----) [001] d..2 82317.060463: sched_switch: prev_comm=Instrumentation prev_pid=27567 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
105470           <...>-27566 (-----) [003] d..2 82317.060469: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105471   kworker/u17:1-570   (  570) [001] d..2 82317.060472: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
105472<...>-8874 ( 8858) [002] .... 82317.060473: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
105473          <idle>-0     (-----) [003] d..1 82317.060477: cpu_idle: state=0 cpu_id=3
105474   kworker/u17:1-570   (  570) [001] d..3 82317.060478: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
105475   kworker/u17:1-570   (  570) [001] d..2 82317.060494: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
105476     kworker/1:1-25249 (25249) [001] d..2 82317.060506: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
105477<...>-8874 ( 8858) [002] d..2 82317.060509: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
105478<...>-25493 ( 8943) [002] .... 82317.060514: binder_transaction_received: transaction=1571958
105479     kworker/1:1-25249 (25249) [001] d..3 82317.060533: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=000
105480          <idle>-0     (-----) [000] .n.1 82317.060537: cpu_idle: state=4294967295 cpu_id=0
105481          <idle>-0     (-----) [000] d..2 82317.060544: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24054 next_prio=120
105482     kworker/1:1-25249 (25249) [001] d..2 82317.060545: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=Instrumentation next_pid=27567 next_prio=120
105483<...>-25493 ( 8943) [002] .... 82317.060554: binder_transaction: transaction=1571963 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
105484<...>-25493 ( 8943) [002] .... 82317.060557: binder_transaction_alloc_buf: transaction=1571963 data_size=80 offsets_size=0
105485<...>-25493 ( 8943) [002] ...2 82317.060559: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
105486<...>-25493 ( 8943) [002] d..4 82317.060561: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105487            adbd-24054 (  960) [000] d..2 82317.060566: sched_waking: comm=adbd pid=960 prio=120 target_cpu=007
105488<...>-25493 ( 8943) [002] dn.5 82317.060568: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105489<...>-25493 ( 8943) [002] d..2 82317.060574: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105490<...>-8874 ( 8858) [002] .... 82317.060577: binder_transaction_received: transaction=1571963
105491            adbd-24054 (  960) [000] d..3 82317.060582: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
105492<...>-8874 ( 8858) [002] .... 82317.060590: binder_transaction: transaction=1571964 dest_node=0 dest_proc=8943 dest_thread=25493 reply=1 flags=0x8 code=0x0
105493<...>-8874 ( 8858) [002] .... 82317.060591: binder_transaction_alloc_buf: transaction=1571964 data_size=4 offsets_size=0
105494<...>-8874 ( 8858) [002] .... 82317.060593: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
105495<...>-8874 ( 8858) [002] d..2 82317.060629: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
105496<...>-25493 ( 8943) [002] .... 82317.060633: binder_transaction_received: transaction=1571964
105497           <...>-27567 (-----) [001] d..1 82317.060656: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
105498            adbd-24054 (  960) [000] d..2 82317.060660: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
105499           <...>-27567 (-----) [001] d..2 82317.060668: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
105500          <idle>-0     (-----) [003] .n.1 82317.060673: cpu_idle: state=4294967295 cpu_id=3
105501          <idle>-0     (-----) [003] d..2 82317.060679: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
105502           <...>-27567 (-----) [001] d..2 82317.060694: sched_switch: prev_comm=Instrumentation prev_pid=27567 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105503          <idle>-0     (-----) [001] d..1 82317.060703: cpu_idle: state=0 cpu_id=1
105504           <...>-27566 (-----) [003] d..3 82317.060752: sched_waking: comm=Instrumentation pid=27567 prio=120 target_cpu=001
105505           <...>-27566 (-----) [003] d..4 82317.060764: sched_wakeup: comm=Instrumentation pid=27567 prio=120 target_cpu=001
105506            adbd-960   (  960) [000] d..2 82317.060768: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105507          <idle>-0     (-----) [001] .n.1 82317.060769: cpu_idle: state=4294967295 cpu_id=1
105508          <idle>-0     (-----) [000] d..1 82317.060775: cpu_idle: state=0 cpu_id=0
105509          <idle>-0     (-----) [001] d..2 82317.060776: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=27567 next_prio=120
105510           <...>-27566 (-----) [003] d..2 82317.060789: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105511          <idle>-0     (-----) [003] d..1 82317.060797: cpu_idle: state=0 cpu_id=3
105512           <...>-27567 (-----) [001] d..1 82317.060812: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
105513           <...>-27567 (-----) [001] d..2 82317.060823: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
105514          <idle>-0     (-----) [003] .n.1 82317.060828: cpu_idle: state=4294967295 cpu_id=3
105515          <idle>-0     (-----) [003] d..2 82317.060834: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
105516           <...>-27567 (-----) [001] d..2 82317.060844: sched_switch: prev_comm=Instrumentation prev_pid=27567 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105517          <idle>-0     (-----) [001] d..1 82317.060851: cpu_idle: state=0 cpu_id=1
105518           <...>-27566 (-----) [003] d..3 82317.060873: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=004
105519           <...>-27566 (-----) [003] d..4 82317.060895: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
105520<...>-25493 ( 8943) [002] d..3 82317.060897: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
105521          <idle>-0     (-----) [000] .n.1 82317.060900: cpu_idle: state=4294967295 cpu_id=0
105522          <idle>-0     (-----) [000] d..2 82317.060926: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
105523          <idle>-0     (-----) [006] dnh2 82317.060927: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
105524          <idle>-0     (-----) [006] .n.1 82317.060931: cpu_idle: state=4294967295 cpu_id=6
105525          <idle>-0     (-----) [006] d..2 82317.060938: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
105526           <...>-27566 (-----) [003] d..2 82317.060949: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105527          <idle>-0     (-----) [003] d..1 82317.060957: cpu_idle: state=0 cpu_id=3
105528<...>-8962 ( 8943) [006] d..3 82317.060981: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
105529          <idle>-0     (-----) [001] dnh2 82317.061006: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=001
105530          <idle>-0     (-----) [001] .n.1 82317.061011: cpu_idle: state=4294967295 cpu_id=1
105531          <idle>-0     (-----) [001] d..2 82317.061017: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
105532<...>-8962 ( 8943) [006] d..2 82317.061043: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
105533          <idle>-0     (-----) [006] d..1 82317.061054: cpu_idle: state=0 cpu_id=6
105534   system_server-8943  ( 8943) [001] .... 82317.061083: binder_transaction: transaction=1571965 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x9
105535   system_server-8943  ( 8943) [001] .... 82317.061086: binder_transaction_alloc_buf: transaction=1571965 data_size=148 offsets_size=0
105536   system_server-8943  ( 8943) [001] d..4 82317.061088: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=006
105537   system_server-8943  ( 8943) [001] d..5 82317.061110: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
105538          <idle>-0     (-----) [003] .n.1 82317.061115: cpu_idle: state=4294967295 cpu_id=3
105539          <idle>-0     (-----) [003] d..2 82317.061140: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
105540<...>-9131 ( 9105) [003] .... 82317.061146: binder_transaction_received: transaction=1571965
105541           <...>-27550 (-----) [000] d..2 82317.061160: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
105542           <...>-27550 (-----) [000] d..3 82317.061169: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
105543   system_server-8943  ( 8943) [001] .... 82317.061187: binder_transaction: transaction=1571966 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
105544   system_server-8943  ( 8943) [001] .... 82317.061189: binder_transaction_alloc_buf: transaction=1571966 data_size=96 offsets_size=0
105545           <...>-27550 (-----) [000] d..1 82317.061200: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
105546   system_server-8943  ( 8943) [001] d..2 82317.061224: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105547          <idle>-0     (-----) [006] dnh2 82317.061228: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
105548          <idle>-0     (-----) [001] d..1 82317.061233: cpu_idle: state=0 cpu_id=1
105549<...>-9131 ( 9105) [003] d..3 82317.061255: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
105550          <idle>-0     (-----) [006] .n.1 82317.061256: cpu_idle: state=4294967295 cpu_id=6
105551           <...>-27550 (-----) [000] d.h3 82317.061257: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
105552          <idle>-0     (-----) [006] d..2 82317.061263: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
105553          <idle>-0     (-----) [005] dnh2 82317.061275: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
105554<...>-9131 ( 9105) [003] d..4 82317.061277: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
105555          <idle>-0     (-----) [005] .n.1 82317.061279: cpu_idle: state=4294967295 cpu_id=5
105556          <idle>-0     (-----) [001] .n.1 82317.061282: cpu_idle: state=4294967295 cpu_id=1
105557          <idle>-0     (-----) [005] d..2 82317.061305: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
105558          <idle>-0     (-----) [001] d..2 82317.061307: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
105559         sugov:4-577   (  577) [005] .... 82317.061322: clk_set_rate: perfcl_clk 1209600000
105560         sugov:4-577   (  577) [005] .... 82317.061323: clk_set_rate: cpu7_perfcl_clk 902400000
105561           <...>-27550 (-----) [000] d..2 82317.061324: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
105562         sugov:4-577   (  577) [005] .... 82317.061328: clk_set_rate: cpu6_perfcl_clk 902400000
105563         sugov:4-577   (  577) [005] .... 82317.061333: clk_set_rate: cpu5_perfcl_clk 902400000
105564<...>-9131 ( 9105) [003] d..4 82317.061336: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
105565         sugov:4-577   (  577) [005] .... 82317.061338: clk_set_rate: cpu4_perfcl_clk 1209600000
105566         sugov:4-577   (  577) [005] .... 82317.061344: cpu_frequency: state=1209600 cpu_id=4
105567         sugov:4-577   (  577) [005] .... 82317.061352: cpu_frequency: state=1209600 cpu_id=5
105568         sugov:4-577   (  577) [005] .... 82317.061355: cpu_frequency: state=1209600 cpu_id=6
105569<...>-9131 ( 9105) [003] .... 82317.061356: binder_transaction_received: transaction=1571966
105570         sugov:4-577   (  577) [005] .... 82317.061357: cpu_frequency: state=1209600 cpu_id=7
105571          <idle>-0     (-----) [007] dnh2 82317.061361: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
105572          <idle>-0     (-----) [007] .n.1 82317.061365: cpu_idle: state=4294967295 cpu_id=7
105573         sugov:4-577   (  577) [005] d..2 82317.061370: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
105574<...>-581 ( 571) [000] d..2 82317.061372: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105575          <idle>-0     (-----) [007] d..2 82317.061372: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
105576           <...>-27566 (-----) [006] d..2 82317.061373: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
105577          <idle>-0     (-----) [005] d..1 82317.061376: cpu_idle: state=0 cpu_id=5
105578          <idle>-0     (-----) [000] d..1 82317.061381: cpu_idle: state=0 cpu_id=0
105579<...>-9105 ( 9105) [001] .... 82317.061392: binder_transaction: transaction=1571967 dest_node=396343 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x42
105580          <idle>-0     (-----) [000] dnh2 82317.061392: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
105581<...>-9132 ( 9105) [007] d..2 82317.061393: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
105582<...>-9105 ( 9105) [001] .... 82317.061395: binder_transaction_alloc_buf: transaction=1571967 data_size=68 offsets_size=0
105583          <idle>-0     (-----) [000] .n.1 82317.061396: cpu_idle: state=4294967295 cpu_id=0
105584<...>-9105 ( 9105) [001] d..4 82317.061397: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
105585          <idle>-0     (-----) [007] d..1 82317.061402: cpu_idle: state=0 cpu_id=7
105586          <idle>-0     (-----) [000] d..2 82317.061404: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
105587          <idle>-0     (-----) [007] dnh2 82317.061445: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
105588<...>-9131 ( 9105) [003] d..2 82317.061445: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105589          <idle>-0     (-----) [007] .n.1 82317.061448: cpu_idle: state=4294967295 cpu_id=7
105590           <...>-27566 (-----) [006] d..2 82317.061450: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
105591<...>-581 ( 571) [000] d..2 82317.061451: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105592          <idle>-0     (-----) [007] d..2 82317.061454: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
105593          <idle>-0     (-----) [003] d..1 82317.061455: cpu_idle: state=0 cpu_id=3
105594          <idle>-0     (-----) [000] d..1 82317.061457: cpu_idle: state=0 cpu_id=0
105595          <idle>-0     (-----) [006] d..1 82317.061458: cpu_idle: state=0 cpu_id=6
105596<...>-11815 ( 8943) [007] .... 82317.061459: binder_transaction_received: transaction=1571967
105597<...>-9105 ( 9105) [001] d..2 82317.061535: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105598          <idle>-0     (-----) [001] d..1 82317.061544: cpu_idle: state=0 cpu_id=1
105599<...>-11815 ( 8943) [007] d..2 82317.061595: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
105600          <idle>-0     (-----) [007] d..1 82317.061603: cpu_idle: state=0 cpu_id=7
105601<...>-25493 ( 8943) [002] d..3 82317.061619: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
105602<...>-25493 ( 8943) [002] d..4 82317.061632: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
105603          <idle>-0     (-----) [001] .n.1 82317.061637: cpu_idle: state=4294967295 cpu_id=1
105604<...>-25493 ( 8943) [002] d..1 82317.061641: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
105605          <idle>-0     (-----) [001] d..2 82317.061644: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
105606          <idle>-0     (-----) [004] dnh2 82317.061658: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
105607          <idle>-0     (-----) [004] .n.1 82317.061661: cpu_idle: state=4294967295 cpu_id=4
105608          <idle>-0     (-----) [004] d..2 82317.061667: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
105609<...>-9039 ( 8943) [001] d..2 82317.061673: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105610          <idle>-0     (-----) [001] d..1 82317.061680: cpu_idle: state=0 cpu_id=1
105611<...>-8969 ( 8943) [004] d..1 82317.061711: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
105612<...>-8969 ( 8943) [004] d..2 82317.061720: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
105613          <idle>-0     (-----) [007] .n.1 82317.061724: cpu_idle: state=4294967295 cpu_id=7
105614          <idle>-0     (-----) [007] d..2 82317.061731: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
105615<...>-25493 ( 8943) [002] d.s1 82317.061794: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
105616<...>-25493 ( 8943) [002] d.s2 82317.061813: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
105617          <idle>-0     (-----) [000] .n.1 82317.061817: cpu_idle: state=4294967295 cpu_id=0
105618<...>-8969 ( 8943) [004] d..2 82317.061818: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
105619          <idle>-0     (-----) [000] d..2 82317.061825: 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
105620          <idle>-0     (-----) [004] d..1 82317.061826: cpu_idle: state=0 cpu_id=4
105621<...>-11815 ( 8943) [007] d..1 82317.061828: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
105622     rcu_preempt-7     (    7) [000] d..2 82317.061834: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
105623<...>-11815 ( 8943) [007] d..2 82317.061839: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
105624          <idle>-0     (-----) [004] .n.1 82317.061844: cpu_idle: state=4294967295 cpu_id=4
105625          <idle>-0     (-----) [004] d..2 82317.061849: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
105626     rcu_preempt-7     (    7) [000] d..3 82317.061860: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
105627     rcu_preempt-7     (    7) [000] d..2 82317.061862: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
105628     rcu_preempt-7     (    7) [000] d..3 82317.061883: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
105629     rcu_preempt-7     (    7) [000] d..2 82317.061893: 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
105630         rcuop/4-45    (   45) [000] d..2 82317.061898: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
105631         rcuop/4-45    (   45) [000] d..3 82317.061918: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
105632<...>-11815 ( 8943) [007] d..2 82317.061919: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
105633<...>-8969 ( 8943) [004] .... 82317.061926: binder_transaction: transaction=1571968 dest_node=1160192 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x6
105634          <idle>-0     (-----) [007] d..1 82317.061927: cpu_idle: state=0 cpu_id=7
105635<...>-8969 ( 8943) [004] .... 82317.061930: binder_transaction_alloc_buf: transaction=1571968 data_size=60 offsets_size=0
105636<...>-8969 ( 8943) [004] d..4 82317.061933: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
105637<...>-8969 ( 8943) [004] d..5 82317.061950: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=005
105638          <idle>-0     (-----) [005] .n.1 82317.061954: cpu_idle: state=4294967295 cpu_id=5
105639<...>-25493 ( 8943) [002] .... 82317.061958: binder_transaction: transaction=1571969 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
105640          <idle>-0     (-----) [005] d..2 82317.061959: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
105641<...>-25493 ( 8943) [002] .... 82317.061962: binder_transaction_alloc_buf: transaction=1571969 data_size=1520 offsets_size=8
105642  Binder:10023_2-10088 (10023) [005] .... 82317.061963: binder_transaction_received: transaction=1571968
105643<...>-25493 ( 8943) [002] d..2 82317.061983: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=001
105644         rcuop/4-45    (   45) [000] d.h5 82317.061996: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
105645<...>-25493 ( 8943) [002] d..3 82317.061996: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=002
105646<...>-25493 ( 8943) [002] .... 82317.062002: binder_set_priority: proc=8943 thread=25493 old=110 => new=120 desired=120
105647<...>-25493 ( 8943) [002] d..2 82317.062014: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105648         rcuop/4-45    (   45) [000] d.h6 82317.062018: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
105649 s.nexuslauncher-10023 (10023) [002] .... 82317.062020: binder_transaction_received: transaction=1571969
105650         rcuop/4-45    (   45) [000] d.h5 82317.062021: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
105651<...>-8969 ( 8943) [004] d..2 82317.062023: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
105652          <idle>-0     (-----) [003] .n.1 82317.062023: cpu_idle: state=4294967295 cpu_id=3
105653          <idle>-0     (-----) [003] d..2 82317.062031: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
105654          <idle>-0     (-----) [004] d..1 82317.062031: cpu_idle: state=0 cpu_id=4
105655         rcuop/4-45    (   45) [000] d.h6 82317.062034: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
105656          <idle>-0     (-----) [001] .n.1 82317.062039: cpu_idle: state=4294967295 cpu_id=1
105657          <idle>-0     (-----) [001] d..2 82317.062046: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
105658         rcuop/4-45    (   45) [000] d..2 82317.062048: 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
105659  crtc_event:111-322   (  322) [003] d..2 82317.062067: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
105660  Binder:10023_2-10088 (10023) [005] d..2 82317.062081: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
105661         rcuop/5-53    (   53) [000] d..2 82317.062087: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
105662          <idle>-0     (-----) [005] d..1 82317.062090: cpu_idle: state=0 cpu_id=5
105663         rcuop/2-29    (   29) [000] d..2 82317.062103: 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
105664<...>-25493 ( 8943) [003] d..2 82317.062105: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105665          <idle>-0     (-----) [000] d..1 82317.062110: cpu_idle: state=0 cpu_id=0
105666          <idle>-0     (-----) [003] d..1 82317.062113: cpu_idle: state=0 cpu_id=3
105667 crtc_commit:111-321   (  321) [001] d..2 82317.062169: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
105668          <idle>-0     (-----) [001] d..1 82317.062173: cpu_idle: state=0 cpu_id=1
105669 s.nexuslauncher-10023 (10023) [002] .... 82317.062297: binder_transaction: transaction=1571971 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
105670 s.nexuslauncher-10023 (10023) [002] .... 82317.062300: binder_transaction_alloc_buf: transaction=1571971 data_size=80 offsets_size=0
105671 s.nexuslauncher-10023 (10023) [002] ...2 82317.062303: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
105672 s.nexuslauncher-10023 (10023) [002] d..4 82317.062305: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105673 s.nexuslauncher-10023 (10023) [002] dn.5 82317.062315: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105674 s.nexuslauncher-10023 (10023) [002] d..2 82317.062320: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105675<...>-8874 ( 8858) [002] .... 82317.062324: binder_transaction_received: transaction=1571971
105676<...>-8874 ( 8858) [002] .... 82317.062340: binder_transaction: transaction=1571972 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x8 code=0x0
105677<...>-8874 ( 8858) [002] .... 82317.062343: binder_transaction_alloc_buf: transaction=1571972 data_size=4 offsets_size=0
105678<...>-8874 ( 8858) [002] .... 82317.062344: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
105679<...>-8874 ( 8858) [002] d..2 82317.062367: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105680 s.nexuslauncher-10023 (10023) [002] .... 82317.062371: binder_transaction_received: transaction=1571972
105681 s.nexuslauncher-10023 (10023) [002] d..3 82317.062475: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
105682          <idle>-0     (-----) [004] dnh2 82317.062498: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
105683          <idle>-0     (-----) [004] .n.1 82317.062502: cpu_idle: state=4294967295 cpu_id=4
105684          <idle>-0     (-----) [004] d..2 82317.062507: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
105685 s.nexuslauncher-10023 (10023) [002] .... 82317.062511: binder_transaction: transaction=1571973 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0xc
105686 s.nexuslauncher-10023 (10023) [002] .... 82317.062513: binder_transaction_alloc_buf: transaction=1571973 data_size=100 offsets_size=0
105687 s.nexuslauncher-10023 (10023) [002] ...2 82317.062516: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
105688 s.nexuslauncher-10023 (10023) [002] d..4 82317.062517: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105689 s.nexuslauncher-10023 (10023) [002] dn.5 82317.062525: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105690 s.nexuslauncher-10023 (10023) [002] d..2 82317.062530: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105691<...>-8874 ( 8858) [002] .... 82317.062533: binder_transaction_received: transaction=1571973
105692    RenderThread-16607 (10023) [004] .... 82317.062559: binder_transaction: transaction=1571974 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x9
105693    RenderThread-16607 (10023) [004] .... 82317.062561: binder_transaction_alloc_buf: transaction=1571974 data_size=116 offsets_size=8
105694    RenderThread-16607 (10023) [004] ...2 82317.062569: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
105695<...>-8874 ( 8858) [002] ...1 82317.062570: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
105696    RenderThread-16607 (10023) [004] d..4 82317.062572: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
105697<...>-8874 ( 8858) [002] ...1 82317.062582: tracing_mark_write: E|8858
105698    RenderThread-16607 (10023) [004] d..5 82317.062585: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
105699    RenderThread-16607 (10023) [004] d..2 82317.062592: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
105700<...>-8874 ( 8858) [002] ...1 82317.062595: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
105701<...>-8874 ( 8858) [002] ...1 82317.062598: tracing_mark_write: E|8858
105702<...>-13083 ( 8858) [004] .... 82317.062599: binder_transaction_received: transaction=1571974
105703<...>-8874 ( 8858) [002] .... 82317.062627: binder_transaction: transaction=1571977 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
105704<...>-8874 ( 8858) [002] .... 82317.062630: binder_transaction_alloc_buf: transaction=1571977 data_size=136 offsets_size=16
105705<...>-8874 ( 8858) [002] ...2 82317.062636: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
105706<...>-8874 ( 8858) [002] d..4 82317.062639: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=005
105707<...>-8874 ( 8858) [002] d..5 82317.062661: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=000
105708          <idle>-0     (-----) [000] .n.1 82317.062665: cpu_idle: state=4294967295 cpu_id=0
105709<...>-13083 ( 8858) [004] .... 82317.062689: binder_transaction: transaction=1571978 dest_node=1571975 dest_proc=10023 dest_thread=16607 reply=0 flags=0x10 code=0x2
105710          <idle>-0     (-----) [000] d..2 82317.062691: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
105711<...>-13083 ( 8858) [004] .... 82317.062692: binder_transaction_alloc_buf: transaction=1571978 data_size=68 offsets_size=0
105712<...>-13083 ( 8858) [004] d..4 82317.062694: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
105713<...>-8874 ( 8858) [002] d..2 82317.062696: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105714<...>-1127 ( 621) [000] .... 82317.062699: binder_transaction_received: transaction=1571977
105715<...>-13083 ( 8858) [004] dn.5 82317.062701: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
105716<...>-13083 ( 8858) [004] d..2 82317.062706: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
105717    RenderThread-16607 (10023) [004] .... 82317.062713: binder_transaction_received: transaction=1571978
105718 s.nexuslauncher-10023 (10023) [002] d..2 82317.062714: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
105719          <idle>-0     (-----) [002] d..1 82317.062725: cpu_idle: state=0 cpu_id=2
105720    RenderThread-16607 (10023) [004] .... 82317.062731: binder_transaction: transaction=1571979 dest_node=0 dest_proc=8858 dest_thread=13083 reply=1 flags=0x0 code=0x0
105721    RenderThread-16607 (10023) [004] .... 82317.062733: binder_transaction_alloc_buf: transaction=1571979 data_size=4 offsets_size=0
105722<...>-1127 ( 621) [000] ...1 82317.062744: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
105723    RenderThread-16607 (10023) [004] d..2 82317.062748: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
105724<...>-13083 ( 8858) [004] .... 82317.062754: binder_transaction_received: transaction=1571979
105725<...>-13083 ( 8858) [004] .... 82317.062783: binder_transaction: transaction=1571980 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
105726<...>-13083 ( 8858) [004] .... 82317.062784: binder_transaction_alloc_buf: transaction=1571980 data_size=68 offsets_size=0
105727<...>-13083 ( 8858) [004] d..2 82317.062786: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
105728<...>-1127 ( 621) [000] ...1 82317.062791: tracing_mark_write: B|621|AllocBuffer
105729<...>-13083 ( 8858) [004] dn.3 82317.062792: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
105730<...>-13083 ( 8858) [004] d..2 82317.062796: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
105731    RenderThread-16607 (10023) [004] .... 82317.062800: binder_transaction_received: transaction=1571980
105732<...>-1127 ( 621) [000] ...1 82317.062801: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9400320
105733    RenderThread-16607 (10023) [004] .... 82317.062852: binder_transaction: transaction=1571981 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x11
105734    RenderThread-16607 (10023) [004] .... 82317.062853: binder_transaction_alloc_buf: transaction=1571981 data_size=84 offsets_size=0
105735    RenderThread-16607 (10023) [004] ...2 82317.062856: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
105736    RenderThread-16607 (10023) [004] d..4 82317.062858: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
105737    RenderThread-16607 (10023) [004] d..5 82317.062874: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
105738          <idle>-0     (-----) [005] .n.1 82317.062879: cpu_idle: state=4294967295 cpu_id=5
105739    RenderThread-16607 (10023) [004] d..2 82317.062882: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
105740          <idle>-0     (-----) [005] d..2 82317.062885: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
105741<...>-13083 ( 8858) [004] .... 82317.062886: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
105742<...>-8951 ( 8858) [005] .... 82317.062894: binder_transaction_received: transaction=1571981
105743<...>-13083 ( 8858) [004] d..2 82317.062916: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
105744          <idle>-0     (-----) [004] d..1 82317.062924: cpu_idle: state=0 cpu_id=4
105745<...>-8951 ( 8858) [005] d..2 82317.062925: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
105746          <idle>-0     (-----) [005] d..1 82317.062932: cpu_idle: state=0 cpu_id=5
105747<...>-1127 ( 621) [000] ...1 82317.062956: tracing_mark_write: E|621
105748<...>-1127 ( 621) [000] ...1 82317.062959: tracing_mark_write: B|621|ION_IOC_MAP
105749<...>-1127 ( 621) [000] ...1 82317.062981: tracing_mark_write: E|621
105750<...>-1127 ( 621) [000] ...1 82317.062985: tracing_mark_write: E|621
105751<...>-1127 ( 621) [000] ...1 82317.062988: tracing_mark_write: B|621|AllocBuffer
105752<...>-1127 ( 621) [000] ...1 82317.062991: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
105753<...>-1127 ( 621) [000] ...1 82317.063002: tracing_mark_write: E|621
105754<...>-1127 ( 621) [000] ...1 82317.063005: tracing_mark_write: B|621|ION_IOC_MAP
105755<...>-1127 ( 621) [000] ...1 82317.063013: tracing_mark_write: E|621
105756<...>-1127 ( 621) [000] ...1 82317.063015: tracing_mark_write: E|621
105757<...>-1127 ( 621) [000] ...1 82317.063096: tracing_mark_write: E|621
105758<...>-1127 ( 621) [000] .... 82317.063106: binder_transaction: transaction=1571982 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
105759<...>-1127 ( 621) [000] .... 82317.063110: binder_transaction_alloc_buf: transaction=1571982 data_size=172 offsets_size=32
105760<...>-1127 ( 621) [000] d..2 82317.063121: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
105761<...>-1127 ( 621) [000] d..3 82317.063135: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=000
105762<...>-1127 ( 621) [000] .... 82317.063138: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
105763<...>-1127 ( 621) [000] ...1 82317.063158: tracing_mark_write: B|621|FreeBuffer
105764<...>-1127 ( 621) [000] ...1 82317.063171: tracing_mark_write: E|621
105765<...>-1127 ( 621) [000] ...1 82317.063174: tracing_mark_write: B|621|FreeBuffer
105766<...>-1127 ( 621) [000] ...1 82317.063176: tracing_mark_write: B|621|UnmapBuffer
105767<...>-1127 ( 621) [000] ...1 82317.063200: tracing_mark_write: E|621
105768<...>-1127 ( 621) [000] ...1 82317.063206: tracing_mark_write: E|621
105769<...>-1127 ( 621) [000] d..2 82317.063230: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105770<...>-8874 ( 8858) [000] .... 82317.063236: binder_transaction_received: transaction=1571982
105771<...>-8874 ( 8858) [000] ...1 82317.063262: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
105772<...>-8874 ( 8858) [000] ...1 82317.063295: tracing_mark_write: E|8858
105773<...>-8874 ( 8858) [000] ...1 82317.063323: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
105774          <idle>-0     (-----) [003] ...1 82317.063324: cpu_idle: state=4294967295 cpu_id=3
105775          <idle>-0     (-----) [003] d..1 82317.063327: cpu_idle: state=0 cpu_id=3
105776<...>-8874 ( 8858) [000] ...1 82317.063327: tracing_mark_write: E|8858
105777<...>-8874 ( 8858) [000] ...1 82317.063337: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
105778<...>-8874 ( 8858) [000] ...1 82317.063340: tracing_mark_write: E|8858
105779<...>-8874 ( 8858) [000] ...1 82317.063344: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
105780<...>-8874 ( 8858) [000] ...1 82317.063347: tracing_mark_write: E|8858
105781<...>-8874 ( 8858) [000] .... 82317.063357: binder_transaction: transaction=1571983 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
105782<...>-8874 ( 8858) [000] .... 82317.063359: binder_transaction_alloc_buf: transaction=1571983 data_size=136 offsets_size=16
105783<...>-8874 ( 8858) [000] ...2 82317.063362: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
105784<...>-8874 ( 8858) [000] d..4 82317.063364: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=000
105785<...>-8874 ( 8858) [000] dn.5 82317.063373: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=000
105786<...>-8874 ( 8858) [000] d..2 82317.063378: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
105787<...>-1127 ( 621) [000] .... 82317.063381: binder_transaction_received: transaction=1571983
105788<...>-1127 ( 621) [000] ...1 82317.063393: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
105789<...>-1127 ( 621) [000] ...1 82317.063406: tracing_mark_write: B|621|AllocBuffer
105790<...>-1127 ( 621) [000] ...1 82317.063410: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9400320
105791<...>-1127 ( 621) [000] ...1 82317.063549: tracing_mark_write: E|621
105792<...>-1127 ( 621) [000] ...1 82317.063552: tracing_mark_write: B|621|ION_IOC_MAP
105793<...>-1127 ( 621) [000] ...1 82317.063560: tracing_mark_write: E|621
105794<...>-1127 ( 621) [000] ...1 82317.063563: tracing_mark_write: E|621
105795<...>-1127 ( 621) [000] ...1 82317.063566: tracing_mark_write: B|621|AllocBuffer
105796<...>-1127 ( 621) [000] ...1 82317.063570: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
105797<...>-1127 ( 621) [000] ...1 82317.063585: tracing_mark_write: E|621
105798<...>-1127 ( 621) [000] ...1 82317.063588: tracing_mark_write: B|621|ION_IOC_MAP
105799<...>-1127 ( 621) [000] ...1 82317.063595: tracing_mark_write: E|621
105800<...>-1127 ( 621) [000] ...1 82317.063598: tracing_mark_write: E|621
105801<...>-1127 ( 621) [000] ...1 82317.063630: tracing_mark_write: E|621
105802<...>-1127 ( 621) [000] .... 82317.063636: binder_transaction: transaction=1571984 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
105803<...>-1127 ( 621) [000] .... 82317.063638: binder_transaction_alloc_buf: transaction=1571984 data_size=172 offsets_size=32
105804<...>-1127 ( 621) [000] .... 82317.063644: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
105805<...>-1127 ( 621) [000] ...1 82317.063663: tracing_mark_write: B|621|FreeBuffer
105806<...>-1127 ( 621) [000] ...1 82317.063670: tracing_mark_write: E|621
105807<...>-1127 ( 621) [000] ...1 82317.063672: tracing_mark_write: B|621|FreeBuffer
105808<...>-1127 ( 621) [000] ...1 82317.063674: tracing_mark_write: B|621|UnmapBuffer
105809<...>-1127 ( 621) [000] ...1 82317.063684: tracing_mark_write: E|621
105810<...>-1127 ( 621) [000] ...1 82317.063689: tracing_mark_write: E|621
105811<...>-1127 ( 621) [000] d..2 82317.063707: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105812<...>-8874 ( 8858) [000] .... 82317.063712: binder_transaction_received: transaction=1571984
105813<...>-8874 ( 8858) [000] ...1 82317.063723: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
105814<...>-8874 ( 8858) [000] ...1 82317.063742: tracing_mark_write: E|8858
105815<...>-8874 ( 8858) [000] ...1 82317.063760: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
105816<...>-8874 ( 8858) [000] ...1 82317.063764: tracing_mark_write: E|8858
105817<...>-8874 ( 8858) [000] ...1 82317.063770: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
105818<...>-8874 ( 8858) [000] ...1 82317.063773: tracing_mark_write: E|8858
105819<...>-8874 ( 8858) [000] ...1 82317.063778: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
105820<...>-8874 ( 8858) [000] ...1 82317.063781: tracing_mark_write: E|8858
105821<...>-8874 ( 8858) [000] .... 82317.063789: binder_transaction: transaction=1571985 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
105822<...>-8874 ( 8858) [000] .... 82317.063792: binder_transaction_alloc_buf: transaction=1571985 data_size=136 offsets_size=16
105823<...>-8874 ( 8858) [000] ...2 82317.063795: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
105824<...>-8874 ( 8858) [000] d..4 82317.063798: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=000
105825<...>-8874 ( 8858) [000] dn.5 82317.063806: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=000
105826<...>-8874 ( 8858) [000] d..2 82317.063811: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
105827<...>-1127 ( 621) [000] .... 82317.063815: binder_transaction_received: transaction=1571985
105828<...>-1127 ( 621) [000] ...1 82317.063826: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
105829<...>-1127 ( 621) [000] ...1 82317.063837: tracing_mark_write: B|621|AllocBuffer
105830<...>-1127 ( 621) [000] ...1 82317.063841: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9400320
105831<...>-1127 ( 621) [000] ...1 82317.063978: tracing_mark_write: E|621
105832<...>-1127 ( 621) [000] ...1 82317.063981: tracing_mark_write: B|621|ION_IOC_MAP
105833<...>-1127 ( 621) [000] ...1 82317.063989: tracing_mark_write: E|621
105834<...>-1127 ( 621) [000] ...1 82317.063992: tracing_mark_write: E|621
105835<...>-1127 ( 621) [000] ...1 82317.063996: tracing_mark_write: B|621|AllocBuffer
105836<...>-1127 ( 621) [000] ...1 82317.063999: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
105837<...>-1127 ( 621) [000] ...1 82317.064011: tracing_mark_write: E|621
105838<...>-1127 ( 621) [000] ...1 82317.064014: tracing_mark_write: B|621|ION_IOC_MAP
105839<...>-1127 ( 621) [000] ...1 82317.064021: tracing_mark_write: E|621
105840<...>-1127 ( 621) [000] ...1 82317.064024: tracing_mark_write: E|621
105841<...>-1127 ( 621) [000] ...1 82317.064053: tracing_mark_write: E|621
105842          <idle>-0     (-----) [002] ...1 82317.064056: cpu_idle: state=4294967295 cpu_id=2
105843          <idle>-0     (-----) [002] d..1 82317.064059: cpu_idle: state=0 cpu_id=2
105844<...>-1127 ( 621) [000] .... 82317.064060: binder_transaction: transaction=1571986 dest_node=0 dest_proc=8858 dest_thread=8874 reply=1 flags=0x0 code=0x0
105845<...>-1127 ( 621) [000] .... 82317.064062: binder_transaction_alloc_buf: transaction=1571986 data_size=172 offsets_size=32
105846<...>-1127 ( 621) [000] .... 82317.064068: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
105847<...>-1127 ( 621) [000] ...1 82317.064086: tracing_mark_write: B|621|FreeBuffer
105848<...>-1127 ( 621) [000] ...1 82317.064092: tracing_mark_write: E|621
105849<...>-1127 ( 621) [000] ...1 82317.064095: tracing_mark_write: B|621|FreeBuffer
105850<...>-1127 ( 621) [000] ...1 82317.064097: tracing_mark_write: B|621|UnmapBuffer
105851<...>-1127 ( 621) [000] ...1 82317.064106: tracing_mark_write: E|621
105852<...>-1127 ( 621) [000] ...1 82317.064111: tracing_mark_write: E|621
105853<...>-1127 ( 621) [000] d..2 82317.064128: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
105854<...>-8874 ( 8858) [000] .... 82317.064134: binder_transaction_received: transaction=1571986
105855<...>-8874 ( 8858) [000] ...1 82317.064144: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
105856<...>-8874 ( 8858) [000] ...1 82317.064161: tracing_mark_write: E|8858
105857<...>-8874 ( 8858) [000] ...1 82317.064176: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
105858<...>-8874 ( 8858) [000] ...1 82317.064179: tracing_mark_write: E|8858
105859<...>-8874 ( 8858) [000] d..1 82317.064190: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
105860          <idle>-0     (-----) [005] dnh2 82317.064208: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
105861          <idle>-0     (-----) [005] .n.1 82317.064211: cpu_idle: state=4294967295 cpu_id=5
105862          <idle>-0     (-----) [005] d..2 82317.064217: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
105863<...>-8874 ( 8858) [000] .... 82317.064222: binder_transaction: transaction=1571987 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
105864<...>-8874 ( 8858) [000] .... 82317.064225: binder_transaction_alloc_buf: transaction=1571987 data_size=0 offsets_size=0
105865<...>-8874 ( 8858) [000] d..2 82317.064227: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=002
105866<...>-8951 ( 8858) [005] .... 82317.064227: binder_transaction: transaction=1571988 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
105867<...>-8951 ( 8858) [005] .... 82317.064229: binder_transaction_alloc_buf: transaction=1571988 data_size=4 offsets_size=0
105868<...>-8951 ( 8858) [005] d..2 82317.064231: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
105869<...>-8874 ( 8858) [000] d..3 82317.064240: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=000
105870<...>-8951 ( 8858) [005] d..3 82317.064240: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
105871<...>-8951 ( 8858) [005] .... 82317.064241: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
105872<...>-8874 ( 8858) [000] .... 82317.064242: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
105873<...>-8951 ( 8858) [005] d..2 82317.064262: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
105874    RenderThread-16607 (10023) [005] .... 82317.064276: binder_transaction_received: transaction=1571988
105875    RenderThread-16607 (10023) [005] .... 82317.064316: binder_transaction: transaction=1571989 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
105876    RenderThread-16607 (10023) [005] .... 82317.064318: binder_transaction_alloc_buf: transaction=1571989 data_size=84 offsets_size=0
105877    RenderThread-16607 (10023) [005] ...2 82317.064320: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
105878    RenderThread-16607 (10023) [005] d..4 82317.064321: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
105879    RenderThread-16607 (10023) [005] dn.5 82317.064328: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
105880<...>-8874 ( 8858) [000] d.h4 82317.064330: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
105881    RenderThread-16607 (10023) [005] d..2 82317.064332: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
105882<...>-8951 ( 8858) [005] .... 82317.064337: binder_transaction_received: transaction=1571989
105883<...>-8874 ( 8858) [000] d.h5 82317.064342: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
105884          <idle>-0     (-----) [001] .n.1 82317.064346: cpu_idle: state=4294967295 cpu_id=1
105885          <idle>-0     (-----) [001] d..2 82317.064351: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
105886<...>-8951 ( 8858) [005] .... 82317.064353: binder_transaction: transaction=1571990 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
105887<...>-8951 ( 8858) [005] .... 82317.064354: binder_transaction_alloc_buf: transaction=1571990 data_size=8 offsets_size=0
105888<...>-8951 ( 8858) [005] .... 82317.064356: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
105889<...>-8874 ( 8858) [000] d..2 82317.064364: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105890 s.nexuslauncher-10023 (10023) [000] .... 82317.064369: binder_transaction_received: transaction=1571987
105891<...>-8951 ( 8858) [005] d..2 82317.064375: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
105892    RenderThread-16607 (10023) [005] .... 82317.064381: binder_transaction_received: transaction=1571990
105893 crtc_commit:111-321   (  321) [001] d..2 82317.064414: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
105894          <idle>-0     (-----) [001] d..1 82317.064418: cpu_idle: state=0 cpu_id=1
105895 s.nexuslauncher-10023 (10023) [000] .... 82317.064443: binder_transaction: transaction=1571991 dest_node=395655 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
105896 s.nexuslauncher-10023 (10023) [000] .... 82317.064445: binder_transaction_alloc_buf: transaction=1571991 data_size=96 offsets_size=0
105897 s.nexuslauncher-10023 (10023) [000] ...2 82317.064448: binder_set_priority: proc=8943 thread=25493 old=120 => new=110 desired=110
105898 s.nexuslauncher-10023 (10023) [000] d..4 82317.064450: sched_waking: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=003
105899 s.nexuslauncher-10023 (10023) [000] d..5 82317.064462: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=110 target_cpu=000
105900    RenderThread-16607 (10023) [005] d..2 82317.064463: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
105901 s.nexuslauncher-10023 (10023) [000] d..2 82317.064472: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=110
105902<...>-25493 ( 8943) [000] .... 82317.064477: binder_transaction_received: transaction=1571991
105903          <idle>-0     (-----) [001] dnh2 82317.064491: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
105904          <idle>-0     (-----) [001] .n.1 82317.064494: cpu_idle: state=4294967295 cpu_id=1
105905          <idle>-0     (-----) [001] d..2 82317.064499: 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
105906         rcuop/4-45    (   45) [001] d..2 82317.064510: 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
105907          <idle>-0     (-----) [001] d..1 82317.064513: cpu_idle: state=0 cpu_id=1
105908<...>-25493 ( 8943) [000] d.h4 82317.064620: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
105909    RenderThread-16607 (10023) [005] d..2 82317.064632: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
105910<...>-25493 ( 8943) [000] d.h5 82317.064633: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
105911          <idle>-0     (-----) [003] .n.1 82317.064637: cpu_idle: state=4294967295 cpu_id=3
105912          <idle>-0     (-----) [003] d..2 82317.064643: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
105913  crtc_event:111-322   (  322) [003] d..2 82317.064659: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105914          <idle>-0     (-----) [003] dnh3 82317.064667: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
105915          <idle>-0     (-----) [003] d..2 82317.064673: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
105916    RenderThread-16607 (10023) [005] .... 82317.064681: binder_transaction: transaction=1571992 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
105917    RenderThread-16607 (10023) [005] .... 82317.064683: binder_transaction_alloc_buf: transaction=1571992 data_size=84 offsets_size=0
105918    RenderThread-16607 (10023) [005] ...2 82317.064685: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
105919    RenderThread-16607 (10023) [005] d..4 82317.064686: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
105920    RenderThread-16607 (10023) [005] dn.5 82317.064693: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
105921    RenderThread-16607 (10023) [005] d..2 82317.064697: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
105922<...>-8951 ( 8858) [005] .... 82317.064703: binder_transaction_received: transaction=1571992
105923<...>-8951 ( 8858) [005] .... 82317.064719: binder_transaction: transaction=1571993 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
105924<...>-8951 ( 8858) [005] .... 82317.064720: binder_transaction_alloc_buf: transaction=1571993 data_size=8 offsets_size=0
105925<...>-8951 ( 8858) [005] .... 82317.064722: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
105926<...>-581 ( 571) [003] d..2 82317.064729: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105927          <idle>-0     (-----) [003] d..1 82317.064737: cpu_idle: state=0 cpu_id=3
105928<...>-25493 ( 8943) [000] .... 82317.064738: binder_transaction: transaction=1571994 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
105929<...>-8951 ( 8858) [005] d..2 82317.064741: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
105930<...>-25493 ( 8943) [000] .... 82317.064742: binder_transaction_alloc_buf: transaction=1571994 data_size=340 offsets_size=0
105931<...>-25493 ( 8943) [000] d..2 82317.064744: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=000
105932    RenderThread-16607 (10023) [005] .... 82317.064747: binder_transaction_received: transaction=1571993
105933<...>-25493 ( 8943) [000] d..3 82317.064752: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=000
105934<...>-25493 ( 8943) [000] .... 82317.064754: binder_set_priority: proc=8943 thread=25493 old=110 => new=120 desired=120
105935<...>-25493 ( 8943) [000] d..2 82317.064762: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
105936 s.nexuslauncher-10023 (10023) [000] .... 82317.064767: binder_transaction_received: transaction=1571994
105937    RenderThread-16607 (10023) [005] d..2 82317.064800: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
105938          <idle>-0     (-----) [005] d..1 82317.064809: cpu_idle: state=0 cpu_id=5
105939 s.nexuslauncher-10023 (10023) [000] d..3 82317.064818: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
105940          <idle>-0     (-----) [005] dnh2 82317.064834: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
105941          <idle>-0     (-----) [005] .n.1 82317.064837: cpu_idle: state=4294967295 cpu_id=5
105942          <idle>-0     (-----) [005] d..2 82317.064843: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
105943    RenderThread-16607 (10023) [005] d..2 82317.064858: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
105944          <idle>-0     (-----) [005] d..1 82317.064863: cpu_idle: state=0 cpu_id=5
105945          <idle>-0     (-----) [001] d.s3 82317.065122: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
105946          <idle>-0     (-----) [001] d.s4 82317.065132: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
105947          <idle>-0     (-----) [003] .n.1 82317.065138: cpu_idle: state=4294967295 cpu_id=3
105948          <idle>-0     (-----) [003] d..2 82317.065145: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
105949          <idle>-0     (-----) [001] ...1 82317.065146: cpu_idle: state=4294967295 cpu_id=1
105950          <idle>-0     (-----) [001] d..1 82317.065150: cpu_idle: state=0 cpu_id=1
105951  crtc_event:111-322   (  322) [003] d..2 82317.065172: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
105952<...>-25493 ( 8943) [003] d..2 82317.065203: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
105953          <idle>-0     (-----) [003] d..1 82317.065211: cpu_idle: state=0 cpu_id=3
105954 s.nexuslauncher-10023 (10023) [000] d..3 82317.065771: sched_waking: comm=UiThreadHelper pid=16586 prio=118 target_cpu=000
105955          <idle>-0     (-----) [004] dnh2 82317.065825: sched_wakeup: comm=UiThreadHelper pid=16586 prio=118 target_cpu=004
105956          <idle>-0     (-----) [004] .n.1 82317.065828: cpu_idle: state=4294967295 cpu_id=4
105957          <idle>-0     (-----) [004] d..2 82317.065834: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=16586 next_prio=118
105958 s.nexuslauncher-10023 (10023) [000] d..3 82317.065888: sched_waking: comm=reflection-thre pid=16610 prio=120 target_cpu=003
105959          <idle>-0     (-----) [005] dnh2 82317.065931: sched_wakeup: comm=reflection-thre pid=16610 prio=120 target_cpu=005
105960          <idle>-0     (-----) [005] .n.1 82317.065934: cpu_idle: state=4294967295 cpu_id=5
105961          <idle>-0     (-----) [005] d..2 82317.065938: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=reflection-thre next_pid=16610 next_prio=120
105962<...>-16610 ( 10023) [005] .... 82317.066107: binder_transaction: transaction=1571995 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x27
105963<...>-16610 ( 10023) [005] .... 82317.066109: binder_transaction_alloc_buf: transaction=1571995 data_size=160 offsets_size=0
105964<...>-16610 ( 10023) [005] d..4 82317.066112: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=003
105965          <idle>-0     (-----) [003] dnh2 82317.066128: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=003
105966          <idle>-0     (-----) [003] .n.1 82317.066133: cpu_idle: state=4294967295 cpu_id=3
105967<...>-16610 ( 10023) [005] d..2 82317.066133: sched_switch: prev_comm=reflection-thre prev_pid=16610 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
105968          <idle>-0     (-----) [003] d..2 82317.066138: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
105969<...>-25493 ( 8943) [003] .... 82317.066142: binder_transaction_received: transaction=1571995
105970          <idle>-0     (-----) [005] d..1 82317.066143: cpu_idle: state=0 cpu_id=5
105971 s.nexuslauncher-10023 (10023) [000] d..2 82317.066229: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105972          <idle>-0     (-----) [000] d..1 82317.066239: cpu_idle: state=0 cpu_id=0
105973<...>-25493 ( 8943) [003] .... 82317.066295: binder_transaction: transaction=1571996 dest_node=0 dest_proc=10023 dest_thread=16610 reply=1 flags=0x0 code=0x0
105974<...>-25493 ( 8943) [003] .... 82317.066297: binder_transaction_alloc_buf: transaction=1571996 data_size=8 offsets_size=0
105975<...>-25493 ( 8943) [003] d..2 82317.066300: sched_waking: comm=reflection-thre pid=16610 prio=120 target_cpu=005
105976<...>-16586 ( 10023) [004] d..3 82317.066301: sched_waking: comm=GoogleApiHandle pid=10177 prio=129 target_cpu=001
105977<...>-25493 ( 8943) [003] dn.3 82317.066317: sched_wakeup: comm=reflection-thre pid=16610 prio=120 target_cpu=003
105978<...>-16586 ( 10023) [004] d..4 82317.066323: sched_wakeup: comm=GoogleApiHandle pid=10177 prio=129 target_cpu=005
105979          <idle>-0     (-----) [005] .n.1 82317.066328: cpu_idle: state=4294967295 cpu_id=5
105980          <idle>-0     (-----) [005] d..2 82317.066349: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=10177 next_prio=129
105981<...>-25493 ( 8943) [003] d..2 82317.066351: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=reflection-thre next_pid=16610 next_prio=120
105982          <idle>-0     (-----) [000] d.h2 82317.066354: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
105983<...>-16610 ( 10023) [003] .... 82317.066357: binder_transaction_received: transaction=1571996
105984          <idle>-0     (-----) [000] dnh3 82317.066363: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
105985          <idle>-0     (-----) [000] .n.1 82317.066368: cpu_idle: state=4294967295 cpu_id=0
105986          <idle>-0     (-----) [000] d..2 82317.066373: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
105987<...>-16586 ( 10023) [004] d..2 82317.066378: sched_switch: prev_comm=UiThreadHelper prev_pid=16586 prev_prio=118 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
105988          <idle>-0     (-----) [004] d..1 82317.066387: cpu_idle: state=0 cpu_id=4
105989        DispSync-8879  ( 8858) [000] d..1 82317.066393: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
105990        DispSync-8879  ( 8858) [000] d..2 82317.066409: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
105991          <idle>-0     (-----) [002] .n.1 82317.066413: cpu_idle: state=4294967295 cpu_id=2
105992          <idle>-0     (-----) [002] d..2 82317.066420: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
105993        DispSync-8879  ( 8858) [000] d..2 82317.066431: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
105994          <idle>-0     (-----) [001] ...1 82317.066433: cpu_idle: state=4294967295 cpu_id=1
105995          <idle>-0     (-----) [001] d..1 82317.066435: cpu_idle: state=0 cpu_id=1
105996          <idle>-0     (-----) [000] d..1 82317.066436: cpu_idle: state=0 cpu_id=0
105997  appEventThread-8881  ( 8858) [002] d..3 82317.066467: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
105998  appEventThread-8881  ( 8858) [002] d..4 82317.066484: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
105999          <idle>-0     (-----) [000] .n.1 82317.066489: cpu_idle: state=4294967295 cpu_id=0
106000  appEventThread-8881  ( 8858) [002] d..3 82317.066494: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=000
106001          <idle>-0     (-----) [000] d..2 82317.066495: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
106002          <idle>-0     (-----) [004] dnh2 82317.066538: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
106003          <idle>-0     (-----) [004] .n.1 82317.066541: cpu_idle: state=4294967295 cpu_id=4
106004          <idle>-0     (-----) [004] d..2 82317.066547: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
106005  appEventThread-8881  ( 8858) [002] d..2 82317.066564: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
106006<...>-25493 ( 8943) [002] d..2 82317.066597: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106007          <idle>-0     (-----) [002] d..1 82317.066605: cpu_idle: state=0 cpu_id=2
106008<...>-9105 ( 9105) [000] .... 82317.066698: binder_transaction: transaction=1571997 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
106009<...>-9105 ( 9105) [000] .... 82317.066701: binder_transaction_alloc_buf: transaction=1571997 data_size=80 offsets_size=0
106010<...>-9105 ( 9105) [000] d..4 82317.066704: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
106011 s.nexuslauncher-10023 (10023) [004] d..3 82317.066713: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
106012<...>-9105 ( 9105) [000] d..5 82317.066725: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
106013          <idle>-0     (-----) [001] .n.1 82317.066730: cpu_idle: state=4294967295 cpu_id=1
106014 s.nexuslauncher-10023 (10023) [004] d..4 82317.066734: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
106015          <idle>-0     (-----) [006] .n.1 82317.066739: cpu_idle: state=4294967295 cpu_id=6
106016<...>-9105 ( 9105) [000] d.h5 82317.066764: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
106017          <idle>-0     (-----) [001] d..2 82317.066764: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
106018          <idle>-0     (-----) [006] d..2 82317.066766: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
106019 s.nexuslauncher-10023 (10023) [004] d..2 82317.066776: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
106020<...>-8951 ( 8858) [001] .... 82317.066781: binder_transaction_received: transaction=1571997
106021    RenderThread-16607 (10023) [006] d..1 82317.066785: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
106022          <idle>-0     (-----) [004] dnh2 82317.066787: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=004
106023          <idle>-0     (-----) [004] d..2 82317.066800: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
106024<...>-8951 ( 8858) [001] d..1 82317.066800: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
106025<...>-9105 ( 9105) [000] d..3 82317.066802: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
106026    RenderThread-16607 (10023) [006] d..2 82317.066803: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=007
106027          <idle>-0     (-----) [007] .n.1 82317.066807: cpu_idle: state=4294967295 cpu_id=7
106028<...>-8951 ( 8858) [001] d..2 82317.066812: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
106029          <idle>-0     (-----) [007] d..2 82317.066814: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
106030          <idle>-0     (-----) [002] .n.1 82317.066816: cpu_idle: state=4294967295 cpu_id=2
106031    RenderThread-16607 (10023) [006] d..2 82317.066821: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
106032         sugov:4-577   (  577) [004] .... 82317.066821: clk_set_rate: perfcl_clk 1363200000
106033          <idle>-0     (-----) [002] d..2 82317.066822: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
106034         sugov:4-577   (  577) [004] .... 82317.066823: clk_set_rate: cpu7_perfcl_clk 1209600000
106035<...>-9105 ( 9105) [000] d..4 82317.066827: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
106036<...>-16610 ( 10023) [003] .... 82317.066827: binder_transaction: transaction=1571998 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xa9
106037          <idle>-0     (-----) [006] d..1 82317.066828: cpu_idle: state=0 cpu_id=6
106038         sugov:4-577   (  577) [004] .... 82317.066829: clk_set_rate: cpu6_perfcl_clk 1209600000
106039<...>-16610 ( 10023) [003] .... 82317.066830: binder_transaction_alloc_buf: transaction=1571998 data_size=84 offsets_size=0
106040<...>-16610 ( 10023) [003] d..4 82317.066832: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=002
106041         sugov:4-577   (  577) [004] .... 82317.066833: clk_set_rate: cpu5_perfcl_clk 1209600000
106042<...>-8951 ( 8858) [001] d..2 82317.066836: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106043         sugov:4-577   (  577) [004] .... 82317.066838: clk_set_rate: cpu4_perfcl_clk 1363200000
106044          <idle>-0     (-----) [001] d..1 82317.066843: cpu_idle: state=0 cpu_id=1
106045         sugov:4-577   (  577) [004] .... 82317.066845: cpu_frequency: state=1363200 cpu_id=4
106046<...>-16610 ( 10023) [003] d..5 82317.066847: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=003
106047  appEventThread-8881  ( 8858) [002] d..2 82317.066850: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
106048<...>-10177 ( 10023) [005] .... 82317.066852: binder_transaction: transaction=1571999 dest_node=1532915 dest_proc=9871 dest_thread=0 reply=0 flags=0x11 code=0x1
106049         sugov:4-577   (  577) [004] .... 82317.066855: cpu_frequency: state=1363200 cpu_id=5
106050<...>-16610 ( 10023) [003] d..2 82317.066856: sched_switch: prev_comm=reflection-thre prev_pid=16610 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
106051<...>-10177 ( 10023) [005] .... 82317.066856: binder_transaction_alloc_buf: transaction=1571999 data_size=432 offsets_size=8
106052         sugov:4-577   (  577) [004] .... 82317.066857: cpu_frequency: state=1363200 cpu_id=6
106053         sugov:4-577   (  577) [004] .... 82317.066859: cpu_frequency: state=1363200 cpu_id=7
106054<...>-25493 ( 8943) [003] .... 82317.066860: binder_transaction_received: transaction=1571998
106055         sugov:4-577   (  577) [004] d..2 82317.066870: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
106056          <idle>-0     (-----) [004] d..1 82317.066876: cpu_idle: state=0 cpu_id=4
106057    RenderThread-9436  ( 9105) [002] d..2 82317.066893: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106058          <idle>-0     (-----) [002] d..1 82317.066900: cpu_idle: state=0 cpu_id=2
106059<...>-9105 ( 9105) [000] d..3 82317.066905: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
106060<...>-9105 ( 9105) [000] d..4 82317.066916: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
106061          <idle>-0     (-----) [002] .n.1 82317.066920: cpu_idle: state=4294967295 cpu_id=2
106062          <idle>-0     (-----) [002] d..2 82317.066926: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
106063<...>-9105 ( 9105) [000] d..2 82317.066933: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106064          <idle>-0     (-----) [000] d..1 82317.066939: cpu_idle: state=0 cpu_id=0
106065<...>-10177 ( 10023) [005] d..4 82317.066940: sched_waking: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=001
106066    RenderThread-9436  ( 9105) [002] dnh1 82317.066969: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=002
106067    RenderThread-9436  ( 9105) [002] d..2 82317.066975: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=120
106068 s.nexuslauncher-10023 (10023) [007] d..3 82317.066980: sched_waking: comm=UiThreadHelper pid=16586 prio=118 target_cpu=004
106069   Binder:9871_1-9893  ( 9871) [002] .... 82317.066982: binder_transaction_received: transaction=1571999
106070 s.nexuslauncher-10023 (10023) [007] d..4 82317.066990: sched_wakeup: comm=UiThreadHelper pid=16586 prio=118 target_cpu=004
106071          <idle>-0     (-----) [004] .n.1 82317.066995: cpu_idle: state=4294967295 cpu_id=4
106072          <idle>-0     (-----) [004] d..2 82317.067000: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=16586 next_prio=118
106073<...>-16586 ( 10023) [004] d..2 82317.067058: sched_switch: prev_comm=UiThreadHelper prev_pid=16586 prev_prio=118 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
106074          <idle>-0     (-----) [004] d..1 82317.067064: cpu_idle: state=0 cpu_id=4
106075<...>-10177 ( 10023) [005] .... 82317.067164: binder_transaction: transaction=1572002 dest_node=1533687 dest_proc=9871 dest_thread=0 reply=0 flags=0x10 code=0x15
106076<...>-10177 ( 10023) [005] .... 82317.067167: binder_transaction_alloc_buf: transaction=1572002 data_size=232 offsets_size=0
106077<...>-10177 ( 10023) [005] ...2 82317.067170: binder_set_priority: proc=9871 thread=10122 old=120 => new=129 desired=129
106078<...>-10177 ( 10023) [005] d..4 82317.067173: sched_waking: comm=Binder:9871_6 pid=10122 prio=129 target_cpu=001
106079          <idle>-0     (-----) [001] dnh2 82317.067203: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=129 target_cpu=001
106080<...>-10177 ( 10023) [005] d..2 82317.067205: sched_switch: prev_comm=GoogleApiHandle prev_pid=10177 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
106081          <idle>-0     (-----) [001] .n.1 82317.067207: cpu_idle: state=4294967295 cpu_id=1
106082          <idle>-0     (-----) [001] d..2 82317.067213: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106083          <idle>-0     (-----) [005] d..1 82317.067213: cpu_idle: state=0 cpu_id=5
106084   Binder:9871_6-10122 ( 9871) [001] .... 82317.067220: binder_transaction_received: transaction=1572002
106085   Binder:9871_6-10122 ( 9871) [001] .... 82317.067419: binder_transaction: transaction=1572003 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x27
106086   Binder:9871_6-10122 ( 9871) [001] .... 82317.067423: binder_transaction_alloc_buf: transaction=1572003 data_size=160 offsets_size=0
106087   Binder:9871_6-10122 ( 9871) [001] d..4 82317.067426: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
106088   Binder:9871_6-10122 ( 9871) [001] d..5 82317.067443: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=001
106089   Binder:9871_6-10122 ( 9871) [001] d..2 82317.067479: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106090<...>-11815 ( 8943) [001] .... 82317.067484: binder_transaction_received: transaction=1572003
106091   Binder:9871_1-9893  ( 9871) [002] d..1 82317.067564: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=002
106092<...>-11815 ( 8943) [001] d..2 82317.067585: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106093<...>-25493 ( 8943) [003] d..1 82317.067593: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=001
106094          <idle>-0     (-----) [001] d..1 82317.067594: cpu_idle: state=0 cpu_id=1
106095          <idle>-0     (-----) [001] .n.1 82317.067596: cpu_idle: state=4294967295 cpu_id=1
106096   Binder:9871_1-9893  ( 9871) [002] d..2 82317.067598: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=001
106097          <idle>-0     (-----) [001] d..2 82317.067607: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106098<...>-25493 ( 8943) [003] d..2 82317.067620: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106099          <idle>-0     (-----) [000] .n.1 82317.067625: cpu_idle: state=4294967295 cpu_id=0
106100          <idle>-0     (-----) [000] d..2 82317.067631: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106101<...>-25493 ( 8943) [003] d..1 82317.067642: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106102<...>-11815 ( 8943) [000] d..2 82317.067651: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106103          <idle>-0     (-----) [000] d..1 82317.067656: cpu_idle: state=0 cpu_id=0
106104<...>-25493 ( 8943) [003] d..2 82317.067661: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106105          <idle>-0     (-----) [000] .n.1 82317.067666: cpu_idle: state=4294967295 cpu_id=0
106106   Binder:9871_1-9893  ( 9871) [002] d..2 82317.067669: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
106107          <idle>-0     (-----) [000] d..2 82317.067670: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106108<...>-25493 ( 8943) [003] d..1 82317.067683: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106109<...>-11815 ( 8943) [000] d..2 82317.067686: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106110          <idle>-0     (-----) [000] d..1 82317.067689: cpu_idle: state=0 cpu_id=0
106111<...>-25493 ( 8943) [003] d..2 82317.067695: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106112          <idle>-0     (-----) [000] .n.1 82317.067699: cpu_idle: state=4294967295 cpu_id=0
106113          <idle>-0     (-----) [000] d..2 82317.067703: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106114<...>-25493 ( 8943) [003] d..1 82317.067711: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106115<...>-11815 ( 8943) [000] d..2 82317.067715: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106116          <idle>-0     (-----) [000] d..1 82317.067719: cpu_idle: state=0 cpu_id=0
106117<...>-25493 ( 8943) [003] d..2 82317.067724: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106118          <idle>-0     (-----) [000] .n.1 82317.067728: cpu_idle: state=4294967295 cpu_id=0
106119          <idle>-0     (-----) [000] d..2 82317.067733: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106120<...>-11815 ( 8943) [000] d..2 82317.067745: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106121          <idle>-0     (-----) [000] d..1 82317.067749: cpu_idle: state=0 cpu_id=0
106122    RenderThread-9436  ( 9105) [002] d..1 82317.067755: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
106123    RenderThread-9436  ( 9105) [002] d..2 82317.067766: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
106124          <idle>-0     (-----) [000] .n.1 82317.067771: cpu_idle: state=4294967295 cpu_id=0
106125          <idle>-0     (-----) [000] d..2 82317.067776: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
106126    RenderThread-9436  ( 9105) [002] .... 82317.067816: binder_transaction: transaction=1572004 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
106127    RenderThread-9436  ( 9105) [002] .... 82317.067819: binder_transaction_alloc_buf: transaction=1572004 data_size=104 offsets_size=0
106128<...>-9105 ( 9105) [000] d..2 82317.067819: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106129    RenderThread-9436  ( 9105) [002] d..4 82317.067821: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
106130          <idle>-0     (-----) [000] d..1 82317.067824: cpu_idle: state=0 cpu_id=0
106131    RenderThread-9436  ( 9105) [002] dn.5 82317.067833: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
106132    RenderThread-9436  ( 9105) [002] d..2 82317.067838: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
106133<...>-8951 ( 8858) [002] .... 82317.067842: binder_transaction_received: transaction=1572004
106134<...>-16709 ( 9871) [001] .... 82317.067890: binder_transaction: transaction=1572005 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x17
106135<...>-16709 ( 9871) [001] .... 82317.067892: binder_transaction_alloc_buf: transaction=1572005 data_size=396 offsets_size=8
106136<...>-8951 ( 8858) [002] .... 82317.067893: binder_transaction: transaction=1572006 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
106137<...>-8951 ( 8858) [002] .... 82317.067895: binder_transaction_alloc_buf: transaction=1572006 data_size=52 offsets_size=8
106138<...>-16709 ( 9871) [001] d..4 82317.067904: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
106139<...>-8951 ( 8858) [002] d..2 82317.067922: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
106140<...>-16709 ( 9871) [001] d..5 82317.067924: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
106141    RenderThread-9436  ( 9105) [002] .... 82317.067927: binder_transaction_received: transaction=1572006
106142 s.nexuslauncher-10023 (10023) [007] d..3 82317.067946: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
106143<...>-16709 ( 9871) [001] d..2 82317.067959: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
106144 s.nexuslauncher-10023 (10023) [007] d..4 82317.067959: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
106145          <idle>-0     (-----) [006] .n.1 82317.067964: cpu_idle: state=4294967295 cpu_id=6
106146<...>-9062 ( 8943) [001] .... 82317.067965: binder_transaction_received: transaction=1572005
106147          <idle>-0     (-----) [006] d..2 82317.067969: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
106148 s.nexuslauncher-10023 (10023) [007] d..2 82317.067974: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
106149          <idle>-0     (-----) [007] d..1 82317.067983: cpu_idle: state=0 cpu_id=7
106150<...>-25493 ( 8943) [003] d..1 82317.068075: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106151<...>-25493 ( 8943) [003] d..2 82317.068086: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106152          <idle>-0     (-----) [000] .n.1 82317.068091: cpu_idle: state=4294967295 cpu_id=0
106153          <idle>-0     (-----) [000] d..2 82317.068096: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106154<...>-25493 ( 8943) [003] .... 82317.068150: binder_transaction: transaction=1572007 dest_node=0 dest_proc=10023 dest_thread=16610 reply=1 flags=0x0 code=0x0
106155<...>-25493 ( 8943) [003] .... 82317.068152: binder_transaction_alloc_buf: transaction=1572007 data_size=8 offsets_size=0
106156<...>-25493 ( 8943) [003] d..2 82317.068155: sched_waking: comm=reflection-thre pid=16610 prio=120 target_cpu=003
106157<...>-25493 ( 8943) [003] dn.3 82317.068163: sched_wakeup: comm=reflection-thre pid=16610 prio=120 target_cpu=003
106158<...>-25493 ( 8943) [003] d..2 82317.068169: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=R+ ==> next_comm=reflection-thre next_pid=16610 next_prio=120
106159<...>-16610 ( 10023) [003] .... 82317.068174: binder_transaction_received: transaction=1572007
106160<...>-11815 ( 8943) [000] .... 82317.068178: binder_transaction: transaction=1572008 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
106161<...>-11815 ( 8943) [000] .... 82317.068182: binder_transaction_alloc_buf: transaction=1572008 data_size=8 offsets_size=0
106162<...>-11815 ( 8943) [000] d..2 82317.068184: sched_waking: comm=Binder:9871_6 pid=10122 prio=129 target_cpu=001
106163<...>-11815 ( 8943) [000] d..3 82317.068197: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=129 target_cpu=000
106164<...>-11815 ( 8943) [000] d..2 82317.068219: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106165   Binder:9871_6-10122 ( 9871) [000] .... 82317.068223: binder_transaction_received: transaction=1572008
106166<...>-16610 ( 10023) [003] .... 82317.068275: binder_transaction: transaction=1572009 dest_node=396027 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x4
106167<...>-16610 ( 10023) [003] .... 82317.068277: binder_transaction_alloc_buf: transaction=1572009 data_size=180 offsets_size=0
106168<...>-16610 ( 10023) [003] d..4 82317.068280: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106169          <idle>-0     (-----) [007] dnh2 82317.068327: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
106170   Binder:9871_6-10122 ( 9871) [000] .... 82317.068327: binder_transaction: transaction=1572010 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x27
106171   Binder:9871_6-10122 ( 9871) [000] .... 82317.068330: binder_transaction_alloc_buf: transaction=1572010 data_size=160 offsets_size=0
106172          <idle>-0     (-----) [007] .n.1 82317.068330: cpu_idle: state=4294967295 cpu_id=7
106173<...>-16610 ( 10023) [003] d..2 82317.068333: sched_switch: prev_comm=reflection-thre prev_pid=16610 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
106174   Binder:9871_6-10122 ( 9871) [000] d..4 82317.068333: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=006
106175          <idle>-0     (-----) [007] d..2 82317.068336: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106176   Binder:9871_6-10122 ( 9871) [000] dn.5 82317.068353: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=000
106177<...>-9062 ( 8943) [001] d..3 82317.068387: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
106178<...>-11815 ( 8943) [007] .... 82317.068387: binder_transaction_received: transaction=1572009
106179   Binder:9871_6-10122 ( 9871) [000] d..2 82317.068389: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R+ ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
106180<...>-12998 ( 8943) [000] .... 82317.068396: binder_transaction_received: transaction=1572010
106181<...>-9062 ( 8943) [001] d..4 82317.068403: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=002
106182    RenderThread-9436  ( 9105) [002] d..2 82317.068415: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
106183<...>-25493 ( 8943) [003] d..2 82317.068420: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106184          <idle>-0     (-----) [003] d..1 82317.068434: cpu_idle: state=0 cpu_id=3
106185<...>-12998 ( 8943) [000] d.s1 82317.068468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
106186<...>-12998 ( 8943) [000] d.s2 82317.068491: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
106187<...>-12998 ( 8943) [000] d.s2 82317.068499: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
106188<...>-12998 ( 8943) [000] d.s3 82317.068518: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
106189<...>-9062 ( 8943) [001] .... 82317.068547: binder_transaction: transaction=1572011 dest_node=417398 dest_proc=9871 dest_thread=0 reply=0 flags=0x11 code=0x7
106190<...>-9062 ( 8943) [001] .... 82317.068551: binder_transaction_alloc_buf: transaction=1572011 data_size=424 offsets_size=8
106191<...>-9062 ( 8943) [001] d..4 82317.068561: sched_waking: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=002
106192<...>-9062 ( 8943) [001] d..5 82317.068586: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=003
106193          <idle>-0     (-----) [003] .n.1 82317.068592: cpu_idle: state=4294967295 cpu_id=3
106194<...>-12998 ( 8943) [000] d..2 82317.068597: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106195          <idle>-0     (-----) [003] d..2 82317.068601: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=120
106196   Binder:9871_1-9893  ( 9871) [003] .... 82317.068606: binder_transaction_received: transaction=1572011
106197   Binder:9871_6-10122 ( 9871) [000] d..2 82317.068613: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106198          <idle>-0     (-----) [000] d..1 82317.068623: cpu_idle: state=0 cpu_id=0
106199<...>-9062 ( 8943) [001] .... 82317.068687: binder_transaction: transaction=1572012 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
106200<...>-9062 ( 8943) [001] .... 82317.068690: binder_transaction_alloc_buf: transaction=1572012 data_size=200 offsets_size=0
106201<...>-9062 ( 8943) [001] d..2 82317.068692: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=001
106202<...>-9062 ( 8943) [001] d..3 82317.068700: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=001
106203<...>-9062 ( 8943) [001] d..2 82317.068721: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106204<...>-16709 ( 9871) [001] .... 82317.068726: binder_transaction_received: transaction=1572012
106205   Binder:9871_1-9893  ( 9871) [003] d..3 82317.068730: sched_waking: comm=.gms.persistent pid=9871 prio=120 target_cpu=002
106206   Binder:9871_1-9893  ( 9871) [003] d..4 82317.068756: sched_wakeup: comm=.gms.persistent pid=9871 prio=120 target_cpu=003
106207   Binder:9871_1-9893  ( 9871) [003] d..2 82317.068795: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=S ==> next_comm=.gms.persistent next_pid=9871 next_prio=120
106208<...>-11815 ( 8943) [007] d..1 82317.068807: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=000
106209          <idle>-0     (-----) [000] dnh2 82317.068824: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=000
106210          <idle>-0     (-----) [000] .n.1 82317.068828: cpu_idle: state=4294967295 cpu_id=0
106211          <idle>-0     (-----) [000] d..2 82317.068834: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
106212<...>-12998 ( 8943) [000] .... 82317.068911: binder_transaction: transaction=1572013 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
106213<...>-12998 ( 8943) [000] .... 82317.068914: binder_transaction_alloc_buf: transaction=1572013 data_size=8 offsets_size=0
106214<...>-12998 ( 8943) [000] d..2 82317.068916: sched_waking: comm=Binder:9871_6 pid=10122 prio=129 target_cpu=000
106215<...>-12998 ( 8943) [000] d..3 82317.068924: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=129 target_cpu=000
106216<...>-821 ( 821) [002] d..2 82317.068961: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
106217     rcu_preempt-7     (    7) [002] d..2 82317.068984: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
106218<...>-9871 ( 9871) [003] .... 82317.068996: binder_transaction: transaction=1572014 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x2f
106219<...>-9871 ( 9871) [003] .... 82317.068999: binder_transaction_alloc_buf: transaction=1572014 data_size=104 offsets_size=8
106220<...>-11815 ( 8943) [007] .... 82317.069000: binder_transaction: transaction=1572015 dest_node=0 dest_proc=10023 dest_thread=16610 reply=1 flags=0x0 code=0x0
106221<...>-11815 ( 8943) [007] .... 82317.069004: binder_transaction_alloc_buf: transaction=1572015 data_size=488 offsets_size=0
106222<...>-11815 ( 8943) [007] d..2 82317.069007: sched_waking: comm=reflection-thre pid=16610 prio=120 target_cpu=003
106223<...>-9871 ( 9871) [003] d..4 82317.069008: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
106224<...>-11815 ( 8943) [007] d..3 82317.069021: sched_wakeup: comm=reflection-thre pid=16610 prio=120 target_cpu=007
106225<...>-9871 ( 9871) [003] d..5 82317.069050: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
106226<...>-16709 ( 9871) [001] d..2 82317.069063: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
106227<...>-12998 ( 8943) [000] d..2 82317.069064: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106228<...>-9062 ( 8943) [001] .... 82317.069068: binder_transaction_received: transaction=1572014
106229   Binder:9871_6-10122 ( 9871) [000] .... 82317.069069: binder_transaction_received: transaction=1572013
106230<...>-11815 ( 8943) [007] d..2 82317.069076: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=16610 next_prio=120
106231<...>-16610 ( 10023) [007] .... 82317.069083: binder_transaction_received: transaction=1572015
106232<...>-9871 ( 9871) [003] d..2 82317.069105: sched_switch: prev_comm=.gms.persistent prev_pid=9871 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106233          <idle>-0     (-----) [003] d..1 82317.069116: cpu_idle: state=0 cpu_id=3
106234   Binder:9871_6-10122 ( 9871) [000] .... 82317.069172: binder_transaction: transaction=1572016 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x22
106235   Binder:9871_6-10122 ( 9871) [000] .... 82317.069174: binder_transaction_alloc_buf: transaction=1572016 data_size=84 offsets_size=0
106236   Binder:9871_6-10122 ( 9871) [000] d..4 82317.069177: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
106237   Binder:9871_6-10122 ( 9871) [000] d..5 82317.069193: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106238   Binder:9871_6-10122 ( 9871) [000] d..2 82317.069231: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106239<...>-11815 ( 8943) [000] .... 82317.069239: binder_transaction_received: transaction=1572016
106240  kworker/u16:15-1311  ( 1311) [002] .... 82317.069277: clk_set_rate: l3_cluster0_vote_clk 940800000
106241  kworker/u16:15-1311  ( 1311) [002] .... 82317.069282: clk_set_rate: l3_clk 940800000
106242<...>-9062 ( 8943) [001] d..3 82317.069287: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
106243<...>-9062 ( 8943) [001] d..4 82317.069307: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=003
106244          <idle>-0     (-----) [003] .n.1 82317.069313: cpu_idle: state=4294967295 cpu_id=3
106245  kworker/u16:15-1311  ( 1311) [002] d..2 82317.069318: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
106246          <idle>-0     (-----) [003] d..2 82317.069321: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
106247<...>-11815 ( 8943) [000] .... 82317.069393: binder_transaction: transaction=1572017 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
106248<...>-11815 ( 8943) [000] .... 82317.069396: binder_transaction_alloc_buf: transaction=1572017 data_size=88 offsets_size=0
106249<...>-11815 ( 8943) [000] d..2 82317.069399: sched_waking: comm=Binder:9871_6 pid=10122 prio=129 target_cpu=000
106250<...>-9062 ( 8943) [001] d..2 82317.069406: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106251<...>-11815 ( 8943) [000] d..3 82317.069408: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=129 target_cpu=000
106252<...>-11815 ( 8943) [000] d..2 82317.069432: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106253   Binder:9871_6-10122 ( 9871) [000] .... 82317.069436: binder_transaction_received: transaction=1572017
106254<...>-821 ( 821) [003] d.h1 82317.069456: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
106255<...>-821 ( 821) [003] dnh2 82317.069467: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
106256<...>-821 ( 821) [003] d..2 82317.069479: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=R+ ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
106257    RenderThread-9436  ( 9105) [002] d..2 82317.069509: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
106258   Binder:9871_6-10122 ( 9871) [000] .... 82317.069515: binder_transaction: transaction=1572018 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
106259   Binder:9871_6-10122 ( 9871) [000] .... 82317.069517: binder_transaction_alloc_buf: transaction=1572018 data_size=168 offsets_size=0
106260   Binder:9871_6-10122 ( 9871) [000] d..4 82317.069520: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106261   Binder:9871_6-10122 ( 9871) [000] dn.5 82317.069528: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106262   Binder:9871_6-10122 ( 9871) [000] d..2 82317.069534: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106263<...>-11815 ( 8943) [000] .... 82317.069538: binder_transaction_received: transaction=1572018
106264 irq/81-114a000.-9677  ( 9677) [003] d..2 82317.069664: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
106265          <idle>-0     (-----) [003] d..1 82317.069675: cpu_idle: state=0 cpu_id=3
106266<...>-16709 ( 9871) [001] d.s2 82317.069689: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
106267<...>-821 ( 821) [002] d..2 82317.069691: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
106268<...>-16709 ( 9871) [001] d.s3 82317.069700: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
106269          <idle>-0     (-----) [003] .n.1 82317.069705: cpu_idle: state=4294967295 cpu_id=3
106270          <idle>-0     (-----) [003] d..2 82317.069711: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
106271 irq/81-114a000.-9677  ( 9677) [003] d..2 82317.069733: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106272          <idle>-0     (-----) [003] d..1 82317.069739: cpu_idle: state=0 cpu_id=3
106273    RenderThread-16607 (10023) [006] d..1 82317.069770: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=007
106274    RenderThread-16607 (10023) [006] d..2 82317.069786: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
106275          <idle>-0     (-----) [004] .n.1 82317.069791: cpu_idle: state=4294967295 cpu_id=4
106276          <idle>-0     (-----) [004] d..2 82317.069797: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
106277    RenderThread-16607 (10023) [006] .... 82317.069822: binder_transaction: transaction=1572019 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
106278 s.nexuslauncher-10023 (10023) [004] d..2 82317.069825: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
106279    RenderThread-16607 (10023) [006] .... 82317.069825: binder_transaction_alloc_buf: transaction=1572019 data_size=104 offsets_size=0
106280    RenderThread-16607 (10023) [006] ...2 82317.069828: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
106281    RenderThread-16607 (10023) [006] d..4 82317.069830: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=002
106282          <idle>-0     (-----) [004] d..1 82317.069831: cpu_idle: state=0 cpu_id=4
106283    RenderThread-16607 (10023) [006] dn.5 82317.069844: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
106284    RenderThread-16607 (10023) [006] d..2 82317.069870: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
106285<...>-8951 ( 8858) [006] .... 82317.069878: binder_transaction_received: transaction=1572019
106286<...>-8951 ( 8858) [006] ...1 82317.069921: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
106287<...>-11815 ( 8943) [000] .... 82317.069922: binder_transaction: transaction=1572020 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
106288<...>-11815 ( 8943) [000] .... 82317.069927: binder_transaction_alloc_buf: transaction=1572020 data_size=2952 offsets_size=0
106289<...>-8951 ( 8858) [006] ...1 82317.069938: tracing_mark_write: B|8858|FreeBuffer
106290<...>-8951 ( 8858) [006] d..2 82317.069955: sched_waking: comm=system pid=104 prio=120 target_cpu=001
106291<...>-11815 ( 8943) [000] d..2 82317.069956: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106292   Binder:9871_6-10122 ( 9871) [000] .... 82317.069962: binder_transaction_received: transaction=1572020
106293<...>-8951 ( 8858) [006] d..2 82317.069979: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
106294<...>-8951 ( 8858) [006] ...1 82317.069999: tracing_mark_write: E|8858
106295<...>-8951 ( 8858) [006] ...1 82317.070001: tracing_mark_write: B|8858|FreeBuffer
106296<...>-8951 ( 8858) [006] ...1 82317.070007: tracing_mark_write: E|8858
106297<...>-8951 ( 8858) [006] ...1 82317.070012: tracing_mark_write: E|8858
106298    RenderThread-9436  ( 9105) [002] dnh2 82317.070021: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=002
106299    RenderThread-9436  ( 9105) [002] dnh2 82317.070024: sched_wakeup: comm=system pid=104 prio=120 target_cpu=002
106300<...>-8951 ( 8858) [006] ...1 82317.070028: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
106301    RenderThread-9436  ( 9105) [002] d..2 82317.070031: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/6 next_pid=61 next_prio=120
106302<...>-8951 ( 8858) [006] ...1 82317.070032: tracing_mark_write: E|8858
106303<...>-8951 ( 8858) [006] ...1 82317.070040: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
106304<...>-8951 ( 8858) [006] ...1 82317.070041: tracing_mark_write: E|8858
106305         rcuop/6-61    (   61) [002] d..2 82317.070042: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
106306<...>-8951 ( 8858) [006] .... 82317.070065: binder_transaction: transaction=1572021 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
106307<...>-8951 ( 8858) [006] .... 82317.070067: binder_transaction_alloc_buf: transaction=1572021 data_size=136 offsets_size=16
106308<...>-8951 ( 8858) [006] ...2 82317.070071: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
106309<...>-8951 ( 8858) [006] d..4 82317.070073: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=000
106310<...>-8951 ( 8858) [006] d..5 82317.070091: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=004
106311          <idle>-0     (-----) [004] .n.1 82317.070096: cpu_idle: state=4294967295 cpu_id=4
106312<...>-16709 ( 9871) [001] d..2 82317.070098: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=000
106313          <idle>-0     (-----) [004] d..2 82317.070115: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
106314<...>-8951 ( 8858) [006] d..2 82317.070120: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
106315<...>-1127 ( 621) [004] .... 82317.070124: binder_transaction_received: transaction=1572021
106316    RenderThread-16607 (10023) [006] d..2 82317.070136: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
106317<...>-16709 ( 9871) [001] dn.3 82317.070141: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=001
106318          <idle>-0     (-----) [006] d..1 82317.070147: cpu_idle: state=0 cpu_id=6
106319<...>-16709 ( 9871) [001] d..2 82317.070148: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=rcuos/0 next_pid=11 next_prio=120
106320         rcuos/0-11    (   11) [001] d..2 82317.070153: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
106321<...>-1127 ( 621) [004] ...1 82317.070157: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
106322         rcuos/0-11    (   11) [001] d..3 82317.070175: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
106323         rcuos/0-11    (   11) [001] d..2 82317.070181: 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
106324   Binder:9871_6-10122 ( 9871) [000] d.h2 82317.070183: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
106325<...>-1127 ( 621) [004] ...1 82317.070191: tracing_mark_write: B|621|AllocBuffer
106326<...>-8 ( 8) [001] d..2 82317.070193: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106327<...>-1127 ( 621) [004] ...1 82317.070198: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9469952
106328   Binder:9871_6-10122 ( 9871) [000] d.h3 82317.070206: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
106329          <idle>-0     (-----) [003] .n.1 82317.070211: cpu_idle: state=4294967295 cpu_id=3
106330          <idle>-0     (-----) [003] d..2 82317.070217: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
106331 kgsl_worker_thr-258   (  258) [003] d..2 82317.070236: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
106332          <idle>-0     (-----) [003] d..1 82317.070242: cpu_idle: state=0 cpu_id=3
106333   Binder:9871_6-10122 ( 9871) [000] .... 82317.070300: binder_transaction: transaction=1572022 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x6a
106334   Binder:9871_6-10122 ( 9871) [000] .... 82317.070303: binder_transaction_alloc_buf: transaction=1572022 data_size=180 offsets_size=0
106335   Binder:9871_6-10122 ( 9871) [000] d..4 82317.070306: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106336   Binder:9871_6-10122 ( 9871) [000] dn.5 82317.070315: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106337   Binder:9871_6-10122 ( 9871) [000] d..2 82317.070320: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106338<...>-11815 ( 8943) [000] .... 82317.070324: binder_transaction_received: transaction=1572022
106339<...>-11815 ( 8943) [000] d.h1 82317.070352: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
106340<...>-11815 ( 8943) [000] d.h2 82317.070371: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
106341          <idle>-0     (-----) [003] .n.1 82317.070376: cpu_idle: state=4294967295 cpu_id=3
106342          <idle>-0     (-----) [003] d..2 82317.070381: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
106343        DispSync-8879  ( 8858) [003] d..1 82317.070411: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
106344        DispSync-8879  ( 8858) [003] d..2 82317.070430: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
106345<...>-16709 ( 9871) [001] d..2 82317.070439: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
106346        DispSync-8879  ( 8858) [003] d..2 82317.070466: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106347          <idle>-0     (-----) [003] d..1 82317.070473: cpu_idle: state=0 cpu_id=3
106348<...>-11815 ( 8943) [000] .... 82317.070489: binder_transaction: transaction=1572023 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
106349<...>-11815 ( 8943) [000] .... 82317.070492: binder_transaction_alloc_buf: transaction=1572023 data_size=8 offsets_size=0
106350   sfEventThread-8882  ( 8858) [001] d..3 82317.070502: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
106351<...>-11815 ( 8943) [000] d..2 82317.070518: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106352   Binder:9871_6-10122 ( 9871) [000] .... 82317.070523: binder_transaction_received: transaction=1572023
106353   sfEventThread-8882  ( 8858) [001] d..4 82317.070525: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
106354          <idle>-0     (-----) [003] .n.1 82317.070530: cpu_idle: state=4294967295 cpu_id=3
106355          <idle>-0     (-----) [003] d..2 82317.070536: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
106356   sfEventThread-8882  ( 8858) [001] d..3 82317.070540: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
106357          <idle>-0     (-----) [005] dnh2 82317.070569: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
106358          <idle>-0     (-----) [005] .n.1 82317.070573: cpu_idle: state=4294967295 cpu_id=5
106359   sfEventThread-8882  ( 8858) [001] d..2 82317.070575: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106360          <idle>-0     (-----) [005] d..2 82317.070580: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
106361<...>-9005 ( 8943) [005] .... 82317.070752: binder_transaction: transaction=1572024 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
106362<...>-9005 ( 8943) [005] .... 82317.070755: binder_transaction_alloc_buf: transaction=1572024 data_size=80 offsets_size=0
106363<...>-9005 ( 8943) [005] d..4 82317.070760: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
106364<...>-9005 ( 8943) [005] d..5 82317.070781: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
106365          <idle>-0     (-----) [006] .n.1 82317.070788: cpu_idle: state=4294967295 cpu_id=6
106366          <idle>-0     (-----) [006] d..2 82317.070810: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
106367<...>-8874 ( 8858) [006] .... 82317.070817: binder_transaction_received: transaction=1572024
106368<...>-8874 ( 8858) [006] d..1 82317.070843: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
106369<...>-16709 ( 9871) [001] dnh1 82317.070860: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
106370<...>-16709 ( 9871) [001] d..2 82317.070870: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
106371<...>-8874 ( 8858) [006] d..2 82317.070872: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
106372          <idle>-0     (-----) [006] d..1 82317.070879: cpu_idle: state=0 cpu_id=6
106373   sfEventThread-8882  ( 8858) [001] d..2 82317.070903: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106374  surfaceflinger-8858  ( 8858) [003] d.h1 82317.070953: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
106375  surfaceflinger-8858  ( 8858) [003] dnh2 82317.070965: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
106376  surfaceflinger-8858  ( 8858) [003] d..2 82317.070977: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
106377<...>-16709 ( 9871) [001] d..2 82317.071007: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
106378   Binder:9871_6-10122 ( 9871) [000] .... 82317.071038: binder_transaction: transaction=1572025 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x74
106379   Binder:9871_6-10122 ( 9871) [000] .... 82317.071041: binder_transaction_alloc_buf: transaction=1572025 data_size=68 offsets_size=0
106380   Binder:9871_6-10122 ( 9871) [000] d..4 82317.071044: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106381   Binder:9871_6-10122 ( 9871) [000] dn.5 82317.071055: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106382   Binder:9871_6-10122 ( 9871) [000] d..2 82317.071062: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106383<...>-11815 ( 8943) [000] .... 82317.071066: binder_transaction_received: transaction=1572025
106384 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.071167: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
106385          <idle>-0     (-----) [003] d..1 82317.071177: cpu_idle: state=0 cpu_id=3
106386  surfaceflinger-8858  ( 8858) [001] d.s1 82317.071209: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
106387  surfaceflinger-8858  ( 8858) [001] d.s2 82317.071220: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
106388<...>-9005 ( 8943) [005] .... 82317.071266: binder_transaction: transaction=1572026 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
106389<...>-9005 ( 8943) [005] .... 82317.071269: binder_transaction_alloc_buf: transaction=1572026 data_size=1292 offsets_size=64
106390<...>-16610 ( 10023) [007] d..3 82317.071282: sched_waking: comm=queued-work-loo pid=10205 prio=118 target_cpu=004
106391<...>-9005 ( 8943) [005] ...2 82317.071289: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
106392<...>-9005 ( 8943) [005] d..4 82317.071291: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
106393<...>-9005 ( 8943) [005] dn.5 82317.071307: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
106394<...>-16610 ( 10023) [007] d..4 82317.071309: sched_wakeup: comm=queued-work-loo pid=10205 prio=118 target_cpu=006
106395<...>-9005 ( 8943) [005] d..2 82317.071312: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
106396          <idle>-0     (-----) [006] .n.1 82317.071313: cpu_idle: state=4294967295 cpu_id=6
106397          <idle>-0     (-----) [006] d..2 82317.071319: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=10205 next_prio=118
106398<...>-8874 ( 8858) [005] .... 82317.071320: binder_transaction_received: transaction=1572026
106399  surfaceflinger-8858  ( 8858) [001] d..1 82317.071340: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
106400  surfaceflinger-8858  ( 8858) [001] d..2 82317.071358: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
106401          <idle>-0     (-----) [003] .n.1 82317.071364: cpu_idle: state=4294967295 cpu_id=3
106402<...>-10205 ( 10023) [006] d..2 82317.071366: sched_switch: prev_comm=queued-work-loo prev_pid=10205 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
106403          <idle>-0     (-----) [003] d..2 82317.071371: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
106404          <idle>-0     (-----) [006] d..1 82317.071373: cpu_idle: state=0 cpu_id=6
106405<...>-11815 ( 8943) [000] .... 82317.071390: binder_transaction: transaction=1572027 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
106406<...>-11815 ( 8943) [000] .... 82317.071396: binder_transaction_alloc_buf: transaction=1572027 data_size=204 offsets_size=0
106407   sfEventThread-8882  ( 8858) [003] d..2 82317.071402: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106408          <idle>-0     (-----) [003] d..1 82317.071410: cpu_idle: state=0 cpu_id=3
106409<...>-8874 ( 8858) [005] .... 82317.071417: binder_transaction: transaction=1572028 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
106410<...>-8874 ( 8858) [005] .... 82317.071419: binder_transaction_alloc_buf: transaction=1572028 data_size=0 offsets_size=0
106411<...>-8874 ( 8858) [005] .... 82317.071421: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
106412<...>-11815 ( 8943) [000] d..2 82317.071430: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106413   Binder:9871_6-10122 ( 9871) [000] .... 82317.071437: binder_transaction_received: transaction=1572027
106414<...>-8874 ( 8858) [005] d..2 82317.071456: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
106415<...>-9005 ( 8943) [005] .... 82317.071463: binder_transaction_received: transaction=1572028
106416   Binder:9871_6-10122 ( 9871) [000] .... 82317.071536: binder_transaction: transaction=1572029 dest_node=395848 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x11
106417   Binder:9871_6-10122 ( 9871) [000] .... 82317.071538: binder_transaction_alloc_buf: transaction=1572029 data_size=64 offsets_size=0
106418   Binder:9871_6-10122 ( 9871) [000] d..4 82317.071541: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106419   Binder:9871_6-10122 ( 9871) [000] dn.5 82317.071550: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106420   Binder:9871_6-10122 ( 9871) [000] d..2 82317.071555: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106421<...>-11815 ( 8943) [000] .... 82317.071559: binder_transaction_received: transaction=1572029
106422<...>-11815 ( 8943) [000] .... 82317.071706: binder_transaction: transaction=1572031 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
106423<...>-9005 ( 8943) [005] .... 82317.071707: binder_transaction: transaction=1572030 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
106424<...>-11815 ( 8943) [000] .... 82317.071710: binder_transaction_alloc_buf: transaction=1572031 data_size=12 offsets_size=0
106425<...>-9005 ( 8943) [005] .... 82317.071711: binder_transaction_alloc_buf: transaction=1572030 data_size=96 offsets_size=0
106426<...>-1127 ( 621) [004] ...1 82317.071715: tracing_mark_write: E|621
106427<...>-9005 ( 8943) [005] d..4 82317.071715: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
106428<...>-1127 ( 621) [004] ...1 82317.071718: tracing_mark_write: B|621|ION_IOC_MAP
106429<...>-16610 ( 10023) [007] d..1 82317.071723: sched_waking: comm=Jit thread pool pid=10045 prio=129 target_cpu=005
106430<...>-1127 ( 621) [004] ...1 82317.071731: tracing_mark_write: E|621
106431<...>-1127 ( 621) [004] ...1 82317.071735: tracing_mark_write: E|621
106432<...>-11815 ( 8943) [000] d..2 82317.071737: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106433          <idle>-0     (-----) [003] dnh2 82317.071738: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
106434<...>-1127 ( 621) [004] ...1 82317.071738: tracing_mark_write: B|621|AllocBuffer
106435          <idle>-0     (-----) [003] .n.1 82317.071742: cpu_idle: state=4294967295 cpu_id=3
106436<...>-16610 ( 10023) [007] d..2 82317.071742: sched_wakeup: comm=Jit thread pool pid=10045 prio=129 target_cpu=006
106437   Binder:9871_6-10122 ( 9871) [000] .... 82317.071743: binder_transaction_received: transaction=1572031
106438<...>-1127 ( 621) [004] ...1 82317.071743: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
106439          <idle>-0     (-----) [006] .n.1 82317.071747: cpu_idle: state=4294967295 cpu_id=6
106440          <idle>-0     (-----) [003] d..2 82317.071749: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
106441<...>-1127 ( 621) [004] ...1 82317.071752: tracing_mark_write: E|621
106442          <idle>-0     (-----) [006] d..2 82317.071753: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=10045 next_prio=129
106443<...>-1127 ( 621) [004] ...1 82317.071754: tracing_mark_write: B|621|ION_IOC_MAP
106444<...>-9131 ( 9105) [003] .... 82317.071756: binder_transaction_received: transaction=1572030
106445<...>-1127 ( 621) [004] ...1 82317.071757: tracing_mark_write: E|621
106446<...>-1127 ( 621) [004] ...1 82317.071759: tracing_mark_write: E|621
106447          system-104   (  104) [002] d..2 82317.071838: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=9436 next_prio=120
106448<...>-10045 ( 10023) [006] d..2 82317.071843: sched_switch: prev_comm=Jit thread pool prev_pid=10045 prev_prio=129 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
106449          <idle>-0     (-----) [006] d..1 82317.071850: cpu_idle: state=0 cpu_id=6
106450    RenderThread-9436  ( 9105) [002] d..1 82317.071860: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
106451<...>-9005 ( 8943) [005] d..3 82317.071864: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
106452    RenderThread-9436  ( 9105) [002] d..2 82317.071873: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
106453<...>-1127 ( 621) [004] ...1 82317.071874: tracing_mark_write: E|621
106454<...>-9005 ( 8943) [005] d..4 82317.071876: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
106455          <idle>-0     (-----) [006] .n.1 82317.071881: cpu_idle: state=4294967295 cpu_id=6
106456<...>-9131 ( 9105) [003] d..2 82317.071882: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
106457<...>-16610 ( 10023) [007] .... 82317.071884: binder_transaction: transaction=1572032 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xa9
106458<...>-1127 ( 621) [004] .... 82317.071885: binder_transaction: transaction=1572033 dest_node=0 dest_proc=8858 dest_thread=8951 reply=1 flags=0x0 code=0x0
106459          <idle>-0     (-----) [006] d..2 82317.071886: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
106460<...>-16610 ( 10023) [007] .... 82317.071887: binder_transaction_alloc_buf: transaction=1572032 data_size=84 offsets_size=0
106461<...>-1127 ( 621) [004] .... 82317.071888: binder_transaction_alloc_buf: transaction=1572033 data_size=172 offsets_size=32
106462<...>-16610 ( 10023) [007] d..4 82317.071889: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106463<...>-1127 ( 621) [004] d..2 82317.071896: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
106464<...>-16610 ( 10023) [007] dn.5 82317.071904: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
106465<...>-1127 ( 621) [004] d..3 82317.071907: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
106466<...>-1127 ( 621) [004] .... 82317.071930: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
106467<...>-16610 ( 10023) [007] dnh5 82317.071932: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
106468<...>-1127 ( 621) [004] d..2 82317.071937: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
106469 kgsl_worker_thr-258   (  258) [003] d..2 82317.071937: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
106470<...>-8951 ( 8858) [004] .... 82317.071944: binder_transaction_received: transaction=1572033
106471<...>-8962 ( 8943) [006] d..3 82317.071947: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=001
106472<...>-16610 ( 10023) [007] d..2 82317.071948: sched_switch: prev_comm=reflection-thre prev_pid=16610 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106473   Binder:9871_6-10122 ( 9871) [000] dnh1 82317.071953: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
106474<...>-11815 ( 8943) [007] .... 82317.071956: binder_transaction_received: transaction=1572032
106475   Binder:9871_6-10122 ( 9871) [000] d..2 82317.071962: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
106476 kgsl_worker_thr-258   (  258) [003] d..3 82317.071969: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
106477<...>-8951 ( 8858) [004] ...1 82317.071971: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
106478  surfaceflinger-8858  ( 8858) [001] d.h1 82317.071978: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=001
106479 kgsl_worker_thr-258   (  258) [003] d..2 82317.071982: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
106480         sugov:0-576   (  576) [000] .... 82317.071995: clk_set_rate: pwrcl_clk 1324800000
106481<...>-8951 ( 8858) [004] ...1 82317.071996: tracing_mark_write: E|8858
106482<...>-8962 ( 8943) [006] d..2 82317.072003: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
106483          <idle>-0     (-----) [006] d..1 82317.072011: cpu_idle: state=0 cpu_id=6
106484  kworker/u16:15-1311  ( 1311) [003] d..2 82317.072017: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
106485<...>-8951 ( 8858) [004] ...1 82317.072020: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
106486<...>-8951 ( 8858) [004] ...1 82317.072023: tracing_mark_write: E|8858
106487<...>-8951 ( 8858) [004] .... 82317.072056: binder_transaction: transaction=1572034 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
106488<...>-8951 ( 8858) [004] .... 82317.072058: binder_transaction_alloc_buf: transaction=1572034 data_size=28 offsets_size=0
106489         sugov:0-576   (  576) [000] .... 82317.072060: clk_set_rate: cpu3_pwrcl_clk 1766400000
106490<...>-8951 ( 8858) [004] d..2 82317.072060: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
106491    RenderThread-9436  ( 9105) [002] .... 82317.072067: binder_transaction: transaction=1572035 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
106492         sugov:0-576   (  576) [000] .... 82317.072069: clk_set_rate: cpu2_pwrcl_clk 1766400000
106493    RenderThread-9436  ( 9105) [002] .... 82317.072070: binder_transaction_alloc_buf: transaction=1572035 data_size=192 offsets_size=8
106494<...>-8951 ( 8858) [004] d..3 82317.072071: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
106495<...>-8951 ( 8858) [004] .... 82317.072073: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
106496         sugov:0-576   (  576) [000] .... 82317.072075: clk_set_rate: cpu1_pwrcl_clk 1766400000
106497    RenderThread-9436  ( 9105) [002] d..4 82317.072075: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
106498          <idle>-0     (-----) [006] .n.1 82317.072077: cpu_idle: state=4294967295 cpu_id=6
106499         sugov:0-576   (  576) [000] .... 82317.072081: clk_set_rate: cpu0_pwrcl_clk 1324800000
106500          <idle>-0     (-----) [006] d..2 82317.072082: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
106501    RenderThread-16607 (10023) [006] .... 82317.072090: binder_transaction_received: transaction=1572034
106502<...>-9131 ( 9105) [003] d..3 82317.072090: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
106503<...>-9005 ( 8943) [005] d.h4 82317.072098: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
106504<...>-9005 ( 8943) [005] .... 82317.072102: binder_transaction: transaction=1572036 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
106505<...>-9005 ( 8943) [005] .... 82317.072104: binder_transaction_alloc_buf: transaction=1572036 data_size=380 offsets_size=16
106506<...>-9005 ( 8943) [005] ...2 82317.072111: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
106507<...>-9005 ( 8943) [005] d..4 82317.072114: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
106508    RenderThread-9436  ( 9105) [002] d..2 82317.072115: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
106509<...>-9005 ( 8943) [005] d..5 82317.072147: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
106510    RenderThread-16607 (10023) [006] d.h3 82317.072153: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
106511  surfaceflinger-8858  ( 8858) [001] ...1 82317.072154: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
106512    RenderThread-16607 (10023) [006] .... 82317.072159: binder_transaction: transaction=1572037 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
106513    RenderThread-16607 (10023) [006] .... 82317.072162: binder_transaction_alloc_buf: transaction=1572037 data_size=84 offsets_size=0
106514  surfaceflinger-8858  ( 8858) [001] ...1 82317.072164: tracing_mark_write: E|8858
106515    RenderThread-16607 (10023) [006] ...2 82317.072165: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
106516         sugov:0-576   (  576) [000] .... 82317.072193: cpu_frequency: state=1324800 cpu_id=0
106517<...>-8951 ( 8858) [004] d..2 82317.072194: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=120
106518<...>-9005 ( 8943) [005] d..2 82317.072195: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
106519    RenderThread-16607 (10023) [006] d..4 82317.072200: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
106520  surfaceflinger-8858  ( 8858) [001] .... 82317.072215: binder_transaction: transaction=1572038 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
106521    RenderThread-16607 (10023) [006] d..5 82317.072216: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
106522  surfaceflinger-8858  ( 8858) [001] .... 82317.072219: binder_transaction_alloc_buf: transaction=1572038 data_size=540 offsets_size=96
106523<...>-8874 ( 8858) [005] .... 82317.072221: binder_transaction_received: transaction=1572035
106524    RenderThread-16607 (10023) [006] d..2 82317.072224: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
106525         sugov:0-576   (  576) [000] d..2 82317.072227: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106526<...>-1127 ( 621) [004] ...1 82317.072232: tracing_mark_write: B|621|FreeBuffer
106527          system-104   (  104) [002] d..2 82317.072236: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106528  surfaceflinger-8858  ( 8858) [001] ...2 82317.072238: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
106529<...>-1127 ( 621) [004] ...1 82317.072239: tracing_mark_write: E|621
106530<...>-1127 ( 621) [004] ...1 82317.072241: tracing_mark_write: B|621|FreeBuffer
106531<...>-1127 ( 621) [004] ...1 82317.072243: tracing_mark_write: B|621|UnmapBuffer
106532  surfaceflinger-8858  ( 8858) [001] d..4 82317.072248: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
106533          <idle>-0     (-----) [002] d..1 82317.072251: cpu_idle: state=0 cpu_id=2
106534<...>-1127 ( 621) [004] ...1 82317.072262: tracing_mark_write: E|621
106535<...>-1127 ( 621) [004] ...1 82317.072267: tracing_mark_write: E|621
106536  surfaceflinger-8858  ( 8858) [001] d..5 82317.072277: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
106537<...>-9131 ( 9105) [003] d..2 82317.072287: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> [email protected] next_pid=619 next_prio=98
106538  surfaceflinger-8858  ( 8858) [001] d..2 82317.072296: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
106539 [email protected]   (  619) [003] .... 82317.072301: binder_transaction_received: transaction=1572038
106540<...>-8874 ( 8858) [005] .... 82317.072301: binder_transaction: transaction=1572039 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
106541<...>-8874 ( 8858) [005] .... 82317.072303: binder_transaction_alloc_buf: transaction=1572039 data_size=68 offsets_size=0
106542<...>-8874 ( 8858) [005] d..2 82317.072305: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
106543<...>-1127 ( 621) [004] d..2 82317.072305: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
106544<...>-9105 ( 9105) [006] d..2 82317.072310: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
106545     ksoftirqd/1-18    (   18) [001] d.s2 82317.072311: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
106546<...>-8951 ( 8858) [004] .... 82317.072311: binder_transaction_received: transaction=1572037
106547<...>-13083 ( 8858) [006] .... 82317.072317: binder_transaction_received: transaction=1572036
106548     ksoftirqd/1-18    (   18) [001] d.s3 82317.072321: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
106549          <idle>-0     (-----) [002] dnh2 82317.072324: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
106550          <idle>-0     (-----) [002] .n.1 82317.072329: cpu_idle: state=4294967295 cpu_id=2
106551 [email protected]   (  619) [003] d..2 82317.072333: sched_switch: [email protected] prev_pid=619 prev_prio=98 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
106552     ksoftirqd/1-18    (   18) [001] d..2 82317.072336: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106553          <idle>-0     (-----) [002] d..2 82317.072336: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
106554<...>-8951 ( 8858) [004] .... 82317.072340: binder_transaction: transaction=1572040 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
106555<...>-8874 ( 8858) [005] d..2 82317.072341: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
106556    RenderThread-9436  ( 9105) [002] .... 82317.072342: binder_transaction_received: transaction=1572039
106557<...>-8951 ( 8858) [004] .... 82317.072342: binder_transaction_alloc_buf: transaction=1572040 data_size=208 offsets_size=16
106558   Binder:9871_6-10122 ( 9871) [000] .n.. 82317.072350: binder_transaction: transaction=1572041 dest_node=395645 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
106559          <idle>-0     (-----) [005] d..1 82317.072353: cpu_idle: state=0 cpu_id=5
106560   Binder:9871_6-10122 ( 9871) [000] d..2 82317.072359: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R+ ==> [email protected] next_pid=619 next_prio=98
106561<...>-13083 ( 8858) [006] .... 82317.072361: binder_transaction: transaction=1572042 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
106562 irq/80-1436400.-9674  ( 9674) [003] d..1 82317.072362: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
106563<...>-13083 ( 8858) [006] .... 82317.072363: binder_transaction_alloc_buf: transaction=1572042 data_size=0 offsets_size=0
106564<...>-13083 ( 8858) [006] d..2 82317.072365: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
106565<...>-8951 ( 8858) [004] d..2 82317.072372: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
106566 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.072378: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
106567<...>-13083 ( 8858) [006] dn.3 82317.072380: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=006
106568<...>-8951 ( 8858) [004] d..3 82317.072387: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
106569<...>-13083 ( 8858) [006] d..2 82317.072388: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=android.anim next_pid=9005 next_prio=110
106570<...>-8951 ( 8858) [004] .... 82317.072388: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
106571<...>-16709 ( 9871) [001] d..2 82317.072390: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
106572 [email protected]   (  619) [000] ...1 82317.072393: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
106573<...>-9005 ( 8943) [006] .... 82317.072393: binder_transaction_received: transaction=1572042
106574 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.072398: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
106575<...>-8951 ( 8858) [004] d..2 82317.072410: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
106576    RenderThread-16607 (10023) [004] .... 82317.072416: binder_transaction_received: transaction=1572040
106577    RenderThread-9436  ( 9105) [002] d..2 82317.072425: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106578          <idle>-0     (-----) [002] d..1 82317.072433: cpu_idle: state=0 cpu_id=2
106579    RenderThread-16607 (10023) [004] ...1 82317.072450: tracing_mark_write: B|10023|HIDL::IMapper::importBuffer::passthrough
106580    RenderThread-16607 (10023) [004] ...1 82317.072474: tracing_mark_write: E|10023
106581    RenderThread-16607 (10023) [004] ...1 82317.072480: tracing_mark_write: B|10023|HIDL::IMapper::validateBufferSize::passthrough
106582    RenderThread-16607 (10023) [004] ...1 82317.072492: tracing_mark_write: E|10023
106583   system_server-8943  ( 8943) [003] .... 82317.072495: binder_transaction: transaction=1572043 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
106584    RenderThread-16607 (10023) [004] ...1 82317.072499: tracing_mark_write: B|10023|HIDL::IMapper::getTransportSize::passthrough
106585   system_server-8943  ( 8943) [003] .... 82317.072500: binder_transaction_alloc_buf: transaction=1572043 data_size=96 offsets_size=0
106586    RenderThread-16607 (10023) [004] ...1 82317.072501: tracing_mark_write: E|10023
106587   system_server-8943  ( 8943) [003] d..4 82317.072503: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=003
106588 [email protected]   (  619) [000] ...1 82317.072512: tracing_mark_write: B|619|HWCSession::PresentDisplay::
106589         sugov:0-576   (  576) [001] d..2 82317.072512: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106590   system_server-8943  ( 8943) [003] d..5 82317.072525: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=002
106591          <idle>-0     (-----) [002] .n.1 82317.072529: cpu_idle: state=4294967295 cpu_id=2
106592          <idle>-0     (-----) [002] d..2 82317.072536: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
106593<...>-9131 ( 9105) [002] .... 82317.072540: binder_transaction_received: transaction=1572043
106594<...>-16709 ( 9871) [001] d.s2 82317.072541: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
106595<...>-16709 ( 9871) [001] d.s3 82317.072562: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
106596   system_server-8943  ( 8943) [003] d..2 82317.072576: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
106597         sugov:0-576   (  576) [003] .... 82317.072591: cpu_frequency: state=1324800 cpu_id=1
106598         sugov:0-576   (  576) [003] .... 82317.072598: cpu_frequency: state=1324800 cpu_id=2
106599         sugov:0-576   (  576) [003] .... 82317.072601: cpu_frequency: state=1324800 cpu_id=3
106600         sugov:0-576   (  576) [003] d..2 82317.072614: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
106601<...>-9131 ( 9105) [002] d..3 82317.072636: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
106602<...>-9005 ( 8943) [006] d.h1 82317.072717: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
106603   system_server-8943  ( 8943) [003] d..2 82317.072719: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
106604 [email protected]   (  619) [000] ...1 82317.072737: tracing_mark_write: B|619|HWDeviceDRM::Commit::
106605 [email protected]   (  619) [000] ...1 82317.072747: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
106606<...>-13083 ( 8858) [003] .... 82317.072756: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
106607<...>-9131 ( 9105) [002] d..2 82317.072769: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106608          <idle>-0     (-----) [002] d..1 82317.072777: cpu_idle: state=0 cpu_id=2
106609<...>-11815 ( 8943) [007] .... 82317.072784: binder_transaction: transaction=1572044 dest_node=0 dest_proc=10023 dest_thread=16610 reply=1 flags=0x0 code=0x0
106610<...>-11815 ( 8943) [007] .... 82317.072786: binder_transaction_alloc_buf: transaction=1572044 data_size=8 offsets_size=0
106611<...>-11815 ( 8943) [007] d..2 82317.072807: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=16610 next_prio=120
106612<...>-13083 ( 8858) [003] d..2 82317.072809: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106613<...>-16610 ( 10023) [007] .... 82317.072815: binder_transaction_received: transaction=1572044
106614          <idle>-0     (-----) [003] d..1 82317.072884: cpu_idle: state=0 cpu_id=3
106615 [email protected]   (  619) [000] d..2 82317.073340: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
106616 [email protected]   (  619) [000] d..3 82317.073367: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
106617          <idle>-0     (-----) [003] .n.1 82317.073373: cpu_idle: state=4294967295 cpu_id=3
106618          <idle>-0     (-----) [003] d..2 82317.073382: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
106619 [email protected]   (  619) [000] ...1 82317.073447: tracing_mark_write: E|619
106620 [email protected]   (  619) [000] ...1 82317.073452: tracing_mark_write: E|619
106621<...>-9005 ( 8943) [006] d..3 82317.073503: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=001
106622 [email protected]   (  619) [000] ...1 82317.073505: tracing_mark_write: E|619
106623          <idle>-0     (-----) [002] dnh2 82317.073531: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
106624          <idle>-0     (-----) [002] .n.1 82317.073536: cpu_idle: state=4294967295 cpu_id=2
106625<...>-9005 ( 8943) [006] d..3 82317.073539: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
106626          <idle>-0     (-----) [002] d..2 82317.073543: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
106627 [email protected]   (  619) [000] ...1 82317.073547: tracing_mark_write: E|619
106628<...>-9005 ( 8943) [006] d..4 82317.073556: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
106629 [email protected]   (  619) [000] .... 82317.073560: binder_transaction: transaction=1572045 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
106630          <idle>-0     (-----) [005] .n.1 82317.073561: cpu_idle: state=4294967295 cpu_id=5
106631 [email protected]   (  619) [000] .... 82317.073563: binder_transaction_alloc_buf: transaction=1572045 data_size=576 offsets_size=112
106632          <idle>-0     (-----) [005] d..2 82317.073568: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
106633 [email protected]   (  619) [000] d..2 82317.073578: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
106634 [email protected]   (  619) [000] d..3 82317.073598: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
106635<...>-9039 ( 8943) [002] d..2 82317.073604: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
106636 [email protected]   (  619) [000] .... 82317.073609: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
106637  surfaceflinger-8858  ( 8858) [002] .... 82317.073616: binder_transaction_received: transaction=1572045
106638<...>-16610 ( 10023) [007] d..2 82317.073632: sched_switch: prev_comm=reflection-thre prev_pid=16610 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
106639<...>-8969 ( 8943) [005] d..2 82317.073640: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
106640<...>-9005 ( 8943) [006] d..2 82317.073642: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
106641          <idle>-0     (-----) [007] d..1 82317.073647: cpu_idle: state=0 cpu_id=7
106642          <idle>-0     (-----) [005] d..1 82317.073647: cpu_idle: state=0 cpu_id=5
106643 [email protected]   (  619) [000] d..2 82317.073670: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106644   Binder:9871_6-10122 ( 9871) [000] .... 82317.073677: binder_transaction_alloc_buf: transaction=1572041 data_size=268 offsets_size=8
106645    RenderThread-16607 (10023) [004] d..1 82317.073683: sched_waking: comm=reflection-thre pid=16610 prio=120 target_cpu=007
106646    RenderThread-16607 (10023) [004] d..2 82317.073692: sched_blocked_reason: pid=16610 iowait=0 caller=do_page_fault+0x4e0/0x594
106647   Binder:9871_6-10122 ( 9871) [000] d..4 82317.073693: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
106648    RenderThread-16607 (10023) [004] d..2 82317.073697: sched_wakeup: comm=reflection-thre pid=16610 prio=120 target_cpu=007
106649          <idle>-0     (-----) [007] .n.1 82317.073703: cpu_idle: state=4294967295 cpu_id=7
106650<...>-9105 ( 9105) [006] d..2 82317.073711: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
106651          <idle>-0     (-----) [007] d..2 82317.073715: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=reflection-thre next_pid=16610 next_prio=120
106652   Binder:9871_6-10122 ( 9871) [000] dn.5 82317.073717: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106653          <idle>-0     (-----) [006] d..1 82317.073723: cpu_idle: state=0 cpu_id=6
106654   Binder:9871_6-10122 ( 9871) [000] dnh5 82317.073757: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
106655   Binder:9871_6-10122 ( 9871) [000] dnh6 82317.073772: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
106656   Binder:9871_6-10122 ( 9871) [000] d..2 82317.073780: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106657<...>-11815 ( 8943) [000] .... 82317.073786: binder_transaction_received: transaction=1572041
106658<...>-16709 ( 9871) [001] d..2 82317.073787: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
106659         sugov:0-576   (  576) [001] .... 82317.073815: clk_set_rate: pwrcl_clk 1689600000
106660         sugov:0-576   (  576) [001] d..2 82317.073884: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106661<...>-16709 ( 9871) [001] d.s4 82317.073907: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
106662<...>-16709 ( 9871) [001] d.s5 82317.073924: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
106663<...>-11815 ( 8943) [000] d..2 82317.073937: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
106664         sugov:0-576   (  576) [000] .... 82317.073952: clk_set_rate: cpu3_pwrcl_clk 1324800000
106665         sugov:0-576   (  576) [000] .... 82317.073960: clk_set_rate: cpu2_pwrcl_clk 1324800000
106666         sugov:0-576   (  576) [000] .... 82317.073967: clk_set_rate: cpu1_pwrcl_clk 1324800000
106667         sugov:0-576   (  576) [000] .... 82317.073973: clk_set_rate: cpu0_pwrcl_clk 1689600000
106668         sugov:0-576   (  576) [000] .... 82317.073981: cpu_frequency: state=1689600 cpu_id=0
106669         sugov:0-576   (  576) [000] .... 82317.073997: cpu_frequency: state=1689600 cpu_id=1
106670         sugov:0-576   (  576) [000] .... 82317.074000: cpu_frequency: state=1689600 cpu_id=2
106671         sugov:0-576   (  576) [000] .... 82317.074003: cpu_frequency: state=1689600 cpu_id=3
106672         sugov:0-576   (  576) [000] d..2 82317.074015: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106673  surfaceflinger-8858  ( 8858) [002] d..2 82317.074019: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106674          <idle>-0     (-----) [002] d..1 82317.074028: cpu_idle: state=0 cpu_id=2
106675 crtc_commit:111-321   (  321) [003] d..2 82317.074041: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
106676          <idle>-0     (-----) [003] d..1 82317.074053: cpu_idle: state=0 cpu_id=3
106677<...>-16610 ( 10023) [007] .... 82317.074145: binder_transaction: transaction=1572046 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xa9
106678<...>-16610 ( 10023) [007] .... 82317.074147: binder_transaction_alloc_buf: transaction=1572046 data_size=84 offsets_size=0
106679<...>-16610 ( 10023) [007] d..4 82317.074151: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
106680<...>-16610 ( 10023) [007] dn.5 82317.074168: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
106681<...>-16610 ( 10023) [007] d..2 82317.074194: sched_switch: prev_comm=reflection-thre prev_pid=16610 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
106682<...>-9062 ( 8943) [007] .... 82317.074202: binder_transaction_received: transaction=1572046
106683<...>-11815 ( 8943) [000] d..3 82317.074258: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=001
106684<...>-11815 ( 8943) [000] d..4 82317.074281: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=002
106685          <idle>-0     (-----) [002] .n.1 82317.074286: cpu_idle: state=4294967295 cpu_id=2
106686          <idle>-0     (-----) [002] d..2 82317.074293: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
106687 PowerManagerSer-8971  ( 8943) [002] d..2 82317.074349: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106688          <idle>-0     (-----) [002] d..1 82317.074355: cpu_idle: state=0 cpu_id=2
106689<...>-11815 ( 8943) [000] d..2 82317.074388: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
106690<...>-11815 ( 8943) [000] d..3 82317.074424: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
106691<...>-16709 ( 9871) [001] d..2 82317.074438: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=statsd.writer next_pid=1044 next_prio=120
106692<...>-11815 ( 8943) [000] d..1 82317.074442: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=002
106693<...>-11815 ( 8943) [000] d..2 82317.074452: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=002
106694          <idle>-0     (-----) [002] .n.1 82317.074457: cpu_idle: state=4294967295 cpu_id=2
106695          <idle>-0     (-----) [002] d..2 82317.074462: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
106696 PowerManagerSer-8971  ( 8943) [002] d..2 82317.074512: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106697          <idle>-0     (-----) [002] d..1 82317.074517: cpu_idle: state=0 cpu_id=2
106698<...>-11815 ( 8943) [000] d.h2 82317.074518: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
106699<...>-11815 ( 8943) [000] d.h3 82317.074531: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
106700          <idle>-0     (-----) [003] .n.1 82317.074536: cpu_idle: state=4294967295 cpu_id=3
106701          <idle>-0     (-----) [003] d..2 82317.074542: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
106702    RenderThread-16607 (10023) [004] .... 82317.074576: binder_transaction: transaction=1572047 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
106703    RenderThread-16607 (10023) [004] .... 82317.074579: binder_transaction_alloc_buf: transaction=1572047 data_size=192 offsets_size=8
106704 kgsl_worker_thr-258   (  258) [003] d..2 82317.074588: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
106705          <idle>-0     (-----) [003] d..1 82317.074593: cpu_idle: state=0 cpu_id=3
106706<...>-11815 ( 8943) [000] .... 82317.074600: binder_transaction: transaction=1572048 dest_node=0 dest_proc=9871 dest_thread=10122 reply=1 flags=0x0 code=0x0
106707<...>-11815 ( 8943) [000] .... 82317.074604: binder_transaction_alloc_buf: transaction=1572048 data_size=4 offsets_size=0
106708   statsd.writer-1044  (  901) [001] d..2 82317.074615: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106709    RenderThread-16607 (10023) [004] ...2 82317.074621: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
106710    RenderThread-16607 (10023) [004] d..4 82317.074623: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=003
106711<...>-11815 ( 8943) [000] d..2 82317.074634: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106712    RenderThread-16607 (10023) [004] d..5 82317.074638: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
106713   Binder:9871_6-10122 ( 9871) [000] .... 82317.074640: binder_transaction_received: transaction=1572048
106714    RenderThread-16607 (10023) [004] d..2 82317.074669: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
106715<...>-13083 ( 8858) [004] .... 82317.074677: binder_transaction_received: transaction=1572047
106716          <idle>-0     (-----) [003] d.h2 82317.074685: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
106717          <idle>-0     (-----) [003] dnh3 82317.074693: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
106718          <idle>-0     (-----) [003] .n.1 82317.074699: cpu_idle: state=4294967295 cpu_id=3
106719          <idle>-0     (-----) [003] d..2 82317.074705: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
106720 kgsl_worker_thr-258   (  258) [003] d..2 82317.074728: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106721          <idle>-0     (-----) [003] d..1 82317.074734: cpu_idle: state=0 cpu_id=3
106722   Binder:9871_6-10122 ( 9871) [000] d..3 82317.074761: sched_waking: comm=FlpThread pid=10424 prio=120 target_cpu=002
106723<...>-13083 ( 8858) [004] .... 82317.074770: binder_transaction: transaction=1572049 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
106724<...>-13083 ( 8858) [004] .... 82317.074773: binder_transaction_alloc_buf: transaction=1572049 data_size=68 offsets_size=0
106725<...>-13083 ( 8858) [004] d..2 82317.074774: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
106726<...>-13083 ( 8858) [004] dn.3 82317.074781: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
106727<...>-13083 ( 8858) [004] d..2 82317.074785: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
106728    RenderThread-16607 (10023) [004] .... 82317.074791: binder_transaction_received: transaction=1572049
106729   Binder:9871_6-10122 ( 9871) [000] dn.4 82317.074793: sched_wakeup: comm=FlpThread pid=10424 prio=120 target_cpu=000
106730   Binder:9871_6-10122 ( 9871) [000] d..2 82317.074799: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R+ ==> next_comm=FlpThread next_pid=10424 next_prio=120
106731<...>-10424 ( 9871) [000] d..2 82317.074830: sched_switch: prev_comm=FlpThread prev_pid=10424 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106732   Binder:9871_6-10122 ( 9871) [000] d..1 82317.074834: sched_waking: comm=FlpThread pid=10424 prio=120 target_cpu=000
106733   Binder:9871_6-10122 ( 9871) [000] dn.2 82317.074842: sched_wakeup: comm=FlpThread pid=10424 prio=120 target_cpu=000
106734   Binder:9871_6-10122 ( 9871) [000] d..2 82317.074846: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R+ ==> next_comm=FlpThread next_pid=10424 next_prio=120
106735    RenderThread-16607 (10023) [004] d..1 82317.074850: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
106736<...>-10424 ( 9871) [000] d..2 82317.074854: sched_switch: prev_comm=FlpThread prev_pid=10424 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106737   Binder:9871_6-10122 ( 9871) [000] d..1 82317.074857: sched_waking: comm=FlpThread pid=10424 prio=120 target_cpu=000
106738   Binder:9871_6-10122 ( 9871) [000] dn.2 82317.074864: sched_wakeup: comm=FlpThread pid=10424 prio=120 target_cpu=000
106739    RenderThread-16607 (10023) [004] d..2 82317.074866: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
106740   Binder:9871_6-10122 ( 9871) [000] d..2 82317.074868: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=129 prev_state=R+ ==> next_comm=FlpThread next_pid=10424 next_prio=120
106741          <idle>-0     (-----) [005] .n.1 82317.074871: cpu_idle: state=4294967295 cpu_id=5
106742    RenderThread-16607 (10023) [004] d..2 82317.074876: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
106743          <idle>-0     (-----) [005] d..2 82317.074877: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
106744<...>-13083 ( 8858) [004] .... 82317.074880: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
106745<...>-13083 ( 8858) [004] d..2 82317.074912: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
106746<...>-9062 ( 8943) [007] .... 82317.074914: binder_transaction: transaction=1572050 dest_node=0 dest_proc=10023 dest_thread=16610 reply=1 flags=0x0 code=0x0
106747<...>-9062 ( 8943) [007] .... 82317.074917: binder_transaction_alloc_buf: transaction=1572050 data_size=8 offsets_size=0
106748          <idle>-0     (-----) [004] d..1 82317.074927: cpu_idle: state=0 cpu_id=4
106749<...>-9062 ( 8943) [007] d..2 82317.074939: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=reflection-thre next_pid=16610 next_prio=120
106750<...>-16610 ( 10023) [007] .... 82317.074947: binder_transaction_received: transaction=1572050
106751<...>-10424 ( 9871) [000] d..2 82317.074984: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
106752<...>-10424 ( 9871) [000] d..3 82317.075013: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
106753          <idle>-0     (-----) [002] .n.1 82317.075018: cpu_idle: state=4294967295 cpu_id=2
106754 s.nexuslauncher-10023 (10023) [005] .... 82317.075020: binder_transaction: transaction=1572051 dest_node=1160153 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xc
106755 s.nexuslauncher-10023 (10023) [005] .... 82317.075023: binder_transaction_alloc_buf: transaction=1572051 data_size=88 offsets_size=8
106756          <idle>-0     (-----) [002] d..2 82317.075024: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
106757 s.nexuslauncher-10023 (10023) [005] ...2 82317.075031: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
106758 s.nexuslauncher-10023 (10023) [005] d..4 82317.075033: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
106759 s.nexuslauncher-10023 (10023) [005] d..5 82317.075048: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
106760          <idle>-0     (-----) [006] .n.1 82317.075055: cpu_idle: state=4294967295 cpu_id=6
106761 s.nexuslauncher-10023 (10023) [005] d..2 82317.075059: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
106762          <idle>-0     (-----) [006] d..2 82317.075062: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
106763          <idle>-0     (-----) [005] d..1 82317.075068: cpu_idle: state=0 cpu_id=5
106764<...>-9062 ( 8943) [006] .... 82317.075068: binder_transaction_received: transaction=1572051
106765<...>-581 ( 571) [002] d..2 82317.075124: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106766<...>-16709 ( 9871) [001] d.s1 82317.075137: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
106767          <idle>-0     (-----) [002] d.s3 82317.075146: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
106768<...>-16709 ( 9871) [001] d.s2 82317.075162: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
106769          <idle>-0     (-----) [002] dns4 82317.075166: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
106770          <idle>-0     (-----) [002] d..2 82317.075184: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_sched next_pid=8 next_prio=120
106771<...>-8 ( 8) [002] d..2 82317.075199: 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
106772     rcu_preempt-7     (    7) [002] d..2 82317.075206: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
106773     rcu_preempt-7     (    7) [002] d..3 82317.075230: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
106774<...>-9062 ( 8943) [006] d..3 82317.075234: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=006
106775     rcu_preempt-7     (    7) [002] d..2 82317.075239: 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
106776         rcuop/0-10    (   10) [002] d..2 82317.075244: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
106777<...>-9062 ( 8943) [006] d..4 82317.075250: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
106778          <idle>-0     (-----) [004] .n.1 82317.075255: cpu_idle: state=4294967295 cpu_id=4
106779          <idle>-0     (-----) [004] d..2 82317.075262: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
106780         rcuop/0-10    (   10) [002] d..3 82317.075265: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
106781<...>-9062 ( 8943) [006] .... 82317.075296: binder_transaction: transaction=1572052 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
106782<...>-9062 ( 8943) [006] .... 82317.075299: binder_transaction_alloc_buf: transaction=1572052 data_size=4 offsets_size=0
106783<...>-9062 ( 8943) [006] d..2 82317.075301: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
106784<...>-9062 ( 8943) [006] d..3 82317.075312: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=006
106785<...>-9062 ( 8943) [006] .... 82317.075314: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
106786<...>-9062 ( 8943) [006] d..2 82317.075338: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
106787 s.nexuslauncher-10023 (10023) [006] .... 82317.075345: binder_transaction_received: transaction=1572052
106788         rcuop/0-10    (   10) [002] d..2 82317.075360: 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
106789<...>-10424 ( 9871) [000] .... 82317.075373: binder_transaction: transaction=1572053 dest_node=395645 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
106790<...>-10424 ( 9871) [000] .... 82317.075376: binder_transaction_alloc_buf: transaction=1572053 data_size=88 offsets_size=8
106791         rcuop/1-21    (   21) [002] d..2 82317.075382: 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
106792<...>-10424 ( 9871) [000] d..4 82317.075387: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
106793          <idle>-0     (-----) [002] d..1 82317.075391: cpu_idle: state=0 cpu_id=2
106794<...>-10424 ( 9871) [000] d..5 82317.075411: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
106795          <idle>-0     (-----) [002] .n.1 82317.075415: cpu_idle: state=4294967295 cpu_id=2
106796          <idle>-0     (-----) [002] d..2 82317.075443: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
106797<...>-9062 ( 8943) [002] .... 82317.075449: binder_transaction_received: transaction=1572053
106798<...>-10424 ( 9871) [000] d..2 82317.075449: sched_switch: prev_comm=FlpThread prev_pid=10424 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=129
106799<...>-9005 ( 8943) [004] d..3 82317.075529: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
106800<...>-9005 ( 8943) [004] d..4 82317.075540: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
106801          <idle>-0     (-----) [005] .n.1 82317.075546: cpu_idle: state=4294967295 cpu_id=5
106802   Binder:9871_6-10122 ( 9871) [000] .... 82317.075550: binder_transaction: transaction=1572054 dest_node=0 dest_proc=10023 dest_thread=10177 reply=1 flags=0x0 code=0x0
106803          <idle>-0     (-----) [005] d..2 82317.075553: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
106804   Binder:9871_6-10122 ( 9871) [000] .... 82317.075553: binder_transaction_alloc_buf: transaction=1572054 data_size=8 offsets_size=0
106805   Binder:9871_6-10122 ( 9871) [000] d..2 82317.075556: sched_waking: comm=GoogleApiHandle pid=10177 prio=129 target_cpu=005
106806   Binder:9871_6-10122 ( 9871) [000] d..3 82317.075576: sched_wakeup: comm=GoogleApiHandle pid=10177 prio=129 target_cpu=000
106807   Binder:9871_6-10122 ( 9871) [000] d.h3 82317.075611: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
106808<...>-8969 ( 8943) [005] d..2 82317.075615: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
106809          <idle>-0     (-----) [005] d..1 82317.075622: cpu_idle: state=0 cpu_id=5
106810   Binder:9871_6-10122 ( 9871) [000] d.h4 82317.075627: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
106811   Binder:9871_6-10122 ( 9871) [000] .... 82317.075630: binder_set_priority: proc=9871 thread=10122 old=129 => new=120 desired=120
106812          <idle>-0     (-----) [003] .n.1 82317.075632: cpu_idle: state=4294967295 cpu_id=3
106813          <idle>-0     (-----) [003] d..2 82317.075639: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
106814   Binder:9871_6-10122 ( 9871) [000] d..2 82317.075640: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=R+ ==> next_comm=GoogleApiHandle next_pid=10177 next_prio=129
106815<...>-9005 ( 8943) [004] .... 82317.075647: binder_transaction: transaction=1572055 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
106816<...>-10177 ( 10023) [000] .... 82317.075648: binder_transaction_received: transaction=1572054
106817<...>-9005 ( 8943) [004] .... 82317.075651: binder_transaction_alloc_buf: transaction=1572055 data_size=96 offsets_size=0
106818<...>-9005 ( 8943) [004] d..4 82317.075654: sched_waking: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=002
106819         sugov:0-576   (  576) [003] .... 82317.075664: clk_set_rate: pwrcl_clk 1766400000
106820         sugov:0-576   (  576) [003] .... 82317.075680: clk_set_rate: cpu3_pwrcl_clk 1689600000
106821<...>-16610 ( 10023) [007] d..2 82317.075685: sched_switch: prev_comm=reflection-thre prev_pid=16610 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
106822<...>-9062 ( 8943) [002] d.h1 82317.075685: sched_wakeup: comm=Binder:9105_1 pid=9131 prio=120 target_cpu=002
106823         sugov:0-576   (  576) [003] .... 82317.075688: clk_set_rate: cpu2_pwrcl_clk 1689600000
106824         sugov:0-576   (  576) [003] .... 82317.075694: clk_set_rate: cpu1_pwrcl_clk 1689600000
106825          <idle>-0     (-----) [007] d..1 82317.075698: cpu_idle: state=0 cpu_id=7
106826         sugov:0-576   (  576) [003] .... 82317.075700: clk_set_rate: cpu0_pwrcl_clk 1766400000
106827         sugov:0-576   (  576) [003] .... 82317.075708: cpu_frequency: state=1766400 cpu_id=0
106828<...>-9062 ( 8943) [002] d..2 82317.075710: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=001
106829<...>-9062 ( 8943) [002] d..3 82317.075734: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=003
106830<...>-9005 ( 8943) [004] d..3 82317.075737: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
106831<...>-9005 ( 8943) [004] d..4 82317.075754: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
106832          <idle>-0     (-----) [007] .n.1 82317.075759: cpu_idle: state=4294967295 cpu_id=7
106833          <idle>-0     (-----) [007] d..2 82317.075766: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
106834<...>-9062 ( 8943) [002] d..3 82317.075789: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=002
106835 s.nexuslauncher-10023 (10023) [006] .... 82317.075798: binder_transaction: transaction=1572056 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
106836 s.nexuslauncher-10023 (10023) [006] .... 82317.075801: binder_transaction_alloc_buf: transaction=1572056 data_size=80 offsets_size=0
106837 s.nexuslauncher-10023 (10023) [006] d..4 82317.075803: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
106838 s.nexuslauncher-10023 (10023) [006] d..5 82317.075821: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
106839          <idle>-0     (-----) [005] .n.1 82317.075826: cpu_idle: state=4294967295 cpu_id=5
106840<...>-10177 ( 10023) [000] d.h2 82317.075827: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
106841          <idle>-0     (-----) [005] d..2 82317.075849: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
106842<...>-8962 ( 8943) [007] d.h1 82317.075849: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=007
106843<...>-13083 ( 8858) [005] .... 82317.075855: binder_transaction_received: transaction=1572056
106844<...>-8962 ( 8943) [007] d..3 82317.075855: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=003
106845<...>-10177 ( 10023) [000] d.h3 82317.075864: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
106846         sugov:0-576   (  576) [003] d..2 82317.075872: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=statsd.writer next_pid=1044 next_prio=120
106847<...>-13083 ( 8858) [005] d..1 82317.075875: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
106848<...>-16709 ( 9871) [001] d..2 82317.075876: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
106849 s.nexuslauncher-10023 (10023) [006] d..3 82317.075883: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
106850   statsd.writer-1044  (  901) [003] d.h1 82317.075885: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=003
106851 s.nexuslauncher-10023 (10023) [006] d..4 82317.075894: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
106852   statsd.writer-1044  (  901) [003] dnh1 82317.075899: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
106853<...>-8962 ( 8943) [007] d..2 82317.075900: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
106854<...>-9062 ( 8943) [002] .... 82317.075903: binder_transaction: transaction=1572057 dest_node=0 dest_proc=9871 dest_thread=10424 reply=1 flags=0x0 code=0x0
106855 kgsl_worker_thr-258   (  258) [001] d.s3 82317.075904: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
106856   statsd.writer-1044  (  901) [003] d..2 82317.075904: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
106857<...>-9062 ( 8943) [002] .... 82317.075907: binder_transaction_alloc_buf: transaction=1572057 data_size=4 offsets_size=0
106858<...>-9062 ( 8943) [002] d..2 82317.075909: sched_waking: comm=FlpThread pid=10424 prio=120 target_cpu=000
106859<...>-13083 ( 8858) [005] d..2 82317.075913: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
106860 kgsl_worker_thr-258   (  258) [001] d.s4 82317.075913: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
106861          <idle>-0     (-----) [005] d..1 82317.075920: cpu_idle: state=0 cpu_id=5
106862<...>-9062 ( 8943) [002] d..3 82317.075931: sched_wakeup: comm=FlpThread pid=10424 prio=120 target_cpu=003
106863 PowerManagerSer-8971  ( 8943) [007] d..2 82317.075944: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
106864          <idle>-0     (-----) [007] d..1 82317.075952: cpu_idle: state=0 cpu_id=7
106865<...>-10177 ( 10023) [000] d..2 82317.075958: sched_switch: prev_comm=GoogleApiHandle prev_pid=10177 prev_prio=129 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
106866<...>-9062 ( 8943) [002] d..2 82317.075961: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
106867  appEventThread-8881  ( 8858) [003] d..2 82317.075962: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=FlpThread next_pid=10424 next_prio=120
106868 kgsl_worker_thr-258   (  258) [001] d..2 82317.075965: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
106869<...>-9131 ( 9105) [002] .... 82317.075967: binder_transaction_received: transaction=1572055
106870<...>-10424 ( 9871) [003] .... 82317.075968: binder_transaction_received: transaction=1572057
106871     ksoftirqd/1-18    (   18) [001] d.s2 82317.075977: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
106872<...>-9005 ( 8943) [004] .... 82317.075987: binder_transaction: transaction=1572058 dest_node=411275 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x1
106873<...>-9005 ( 8943) [004] .... 82317.075990: binder_transaction_alloc_buf: transaction=1572058 data_size=100 offsets_size=0
106874<...>-9005 ( 8943) [004] d..4 82317.075993: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
106875     ksoftirqd/1-18    (   18) [001] d.s3 82317.075994: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
106876   Binder:9871_6-10122 ( 9871) [000] d..2 82317.076000: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106877     ksoftirqd/1-18    (   18) [001] d..2 82317.076002: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
106878<...>-9131 ( 9105) [002] d..2 82317.076004: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
106879         sugov:0-576   (  576) [002] .... 82317.076015: cpu_frequency: state=1766400 cpu_id=1
106880         sugov:0-576   (  576) [002] .... 82317.076020: cpu_frequency: state=1766400 cpu_id=2
106881          <idle>-0     (-----) [000] d..1 82317.076022: cpu_idle: state=0 cpu_id=0
106882         sugov:0-576   (  576) [002] .... 82317.076022: cpu_frequency: state=1766400 cpu_id=3
106883          <idle>-0     (-----) [000] dnh2 82317.076038: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
106884         sugov:0-576   (  576) [002] d..2 82317.076040: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=Binder:9105_1 next_pid=9131 next_prio=120
106885<...>-10424 ( 9871) [003] d..2 82317.076042: sched_switch: prev_comm=FlpThread prev_pid=10424 prev_prio=120 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
106886          <idle>-0     (-----) [000] .n.1 82317.076043: cpu_idle: state=4294967295 cpu_id=0
106887          <idle>-0     (-----) [000] d..2 82317.076050: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
106888<...>-9132 ( 9105) [000] .... 82317.076057: binder_transaction_received: transaction=1572058
106889<...>-9005 ( 8943) [004] .... 82317.076064: binder_transaction: transaction=1572059 dest_node=406733 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x1
106890<...>-9005 ( 8943) [004] .... 82317.076067: binder_transaction_alloc_buf: transaction=1572059 data_size=100 offsets_size=0
106891<...>-9005 ( 8943) [004] d..4 82317.076069: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=001
106892<...>-9005 ( 8943) [004] d..5 82317.076088: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
106893          <idle>-0     (-----) [007] .n.1 82317.076093: cpu_idle: state=4294967295 cpu_id=7
106894          <idle>-0     (-----) [007] d..2 82317.076111: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
106895<...>-9380 ( 9105) [007] .... 82317.076118: binder_transaction_received: transaction=1572059
106896<...>-9131 ( 9105) [002] d..3 82317.076127: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
106897<...>-9380 ( 9105) [007] d.h1 82317.076157: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
106898   statsd.writer-1044  (  901) [003] d..2 82317.076164: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
106899<...>-9005 ( 8943) [004] .... 82317.076177: binder_transaction: transaction=1572060 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
106900<...>-9005 ( 8943) [004] .... 82317.076179: binder_transaction_alloc_buf: transaction=1572060 data_size=380 offsets_size=16
106901<...>-9005 ( 8943) [004] ...2 82317.076187: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
106902<...>-9005 ( 8943) [004] d..4 82317.076189: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
106903<...>-9005 ( 8943) [004] d..5 82317.076198: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
106904          <idle>-0     (-----) [005] .n.1 82317.076203: cpu_idle: state=4294967295 cpu_id=5
106905<...>-9005 ( 8943) [004] d..2 82317.076205: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
106906<...>-9131 ( 9105) [002] d..2 82317.076207: sched_switch: prev_comm=Binder:9105_1 prev_pid=9131 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
106907          <idle>-0     (-----) [005] d..2 82317.076209: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
106908<...>-9132 ( 9105) [000] d..2 82317.076210: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106909<...>-13083 ( 8858) [005] .... 82317.076212: binder_transaction_received: transaction=1572060
106910          <idle>-0     (-----) [002] d..1 82317.076218: cpu_idle: state=0 cpu_id=2
106911          <idle>-0     (-----) [000] d..1 82317.076223: cpu_idle: state=0 cpu_id=0
106912<...>-9380 ( 9105) [007] d..2 82317.076232: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
106913    RenderThread-16607 (10023) [004] d..2 82317.076235: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
106914   system_server-8943  ( 8943) [003] .... 82317.076240: binder_transaction: transaction=1572061 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
106915   system_server-8943  ( 8943) [003] .... 82317.076244: binder_transaction_alloc_buf: transaction=1572061 data_size=96 offsets_size=0
106916 s.nexuslauncher-10023 (10023) [006] .... 82317.076245: binder_transaction: transaction=1572062 dest_node=396616 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xc
106917          <idle>-0     (-----) [004] d..1 82317.076247: cpu_idle: state=0 cpu_id=4
106918   system_server-8943  ( 8943) [003] d..4 82317.076247: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
106919 s.nexuslauncher-10023 (10023) [006] .... 82317.076248: binder_transaction_alloc_buf: transaction=1572062 data_size=356 offsets_size=16
106920 s.nexuslauncher-10023 (10023) [006] ...2 82317.076256: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
106921 s.nexuslauncher-10023 (10023) [006] d..4 82317.076258: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=002
106922   system_server-8943  ( 8943) [003] d..5 82317.076269: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=000
106923 s.nexuslauncher-10023 (10023) [006] dn.5 82317.076269: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
106924<...>-13083 ( 8858) [005] .... 82317.076272: binder_transaction: transaction=1572063 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
106925<...>-13083 ( 8858) [005] .... 82317.076274: binder_transaction_alloc_buf: transaction=1572063 data_size=0 offsets_size=0
106926 s.nexuslauncher-10023 (10023) [006] d..2 82317.076275: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
106927          <idle>-0     (-----) [000] .n.1 82317.076275: cpu_idle: state=4294967295 cpu_id=0
106928<...>-13083 ( 8858) [005] d..2 82317.076276: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
106929<...>-9062 ( 8943) [006] .... 82317.076281: binder_transaction_received: transaction=1572062
106930<...>-16709 ( 9871) [001] .... 82317.076303: binder_transaction: transaction=1572064 dest_node=1572000 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x1
106931<...>-16709 ( 9871) [001] .... 82317.076306: binder_transaction_alloc_buf: transaction=1572064 data_size=168 offsets_size=0
106932          <idle>-0     (-----) [000] d..2 82317.076308: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
106933<...>-16709 ( 9871) [001] d..4 82317.076311: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=005
106934<...>-9380 ( 9105) [000] .... 82317.076312: binder_transaction_received: transaction=1572061
106935<...>-13083 ( 8858) [005] dn.3 82317.076313: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
106936<...>-13083 ( 8858) [005] d..2 82317.076322: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=110 prev_state=R+ ==> next_comm=android.anim next_pid=9005 next_prio=110
106937<...>-9005 ( 8943) [005] .... 82317.076328: binder_transaction_received: transaction=1572063
106938          <idle>-0     (-----) [004] dnh2 82317.076343: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
106939          <idle>-0     (-----) [004] .n.1 82317.076346: cpu_idle: state=4294967295 cpu_id=4
106940          <idle>-0     (-----) [004] d..2 82317.076352: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
106941  Binder:10023_2-10088 (10023) [004] .... 82317.076356: binder_transaction_received: transaction=1572064
106942   system_server-8943  ( 8943) [003] d..2 82317.076356: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
106943          <idle>-0     (-----) [003] d..1 82317.076367: cpu_idle: state=0 cpu_id=3
106944<...>-9380 ( 9105) [000] d..2 82317.076418: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106945<...>-9062 ( 8943) [006] d..2 82317.076421: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
106946          <idle>-0     (-----) [000] d..1 82317.076428: cpu_idle: state=0 cpu_id=0
106947 s.nexuslauncher-10023 (10023) [006] d..2 82317.076438: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
106948<...>-9105 ( 9105) [007] d..3 82317.076444: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
106949          <idle>-0     (-----) [006] d..1 82317.076449: cpu_idle: state=0 cpu_id=6
106950          <idle>-0     (-----) [000] dnh2 82317.076469: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
106951          <idle>-0     (-----) [000] .n.1 82317.076473: cpu_idle: state=4294967295 cpu_id=0
106952<...>-16709 ( 9871) [001] d..1 82317.076477: sched_waking: comm=lowpool[10] pid=24462 prio=130 target_cpu=000
106953          <idle>-0     (-----) [000] d..2 82317.076480: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
106954<...>-16709 ( 9871) [001] d..2 82317.076513: sched_wakeup: comm=lowpool[10] pid=24462 prio=130 target_cpu=002
106955    RenderThread-9436  ( 9105) [000] d..2 82317.076515: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106956          <idle>-0     (-----) [002] .n.1 82317.076518: cpu_idle: state=4294967295 cpu_id=2
106957          <idle>-0     (-----) [000] d..1 82317.076523: cpu_idle: state=0 cpu_id=0
106958          <idle>-0     (-----) [002] d..2 82317.076526: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
106959<...>-9005 ( 8943) [005] .... 82317.076531: binder_transaction: transaction=1572065 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
106960<...>-9005 ( 8943) [005] .... 82317.076534: binder_transaction_alloc_buf: transaction=1572065 data_size=292 offsets_size=8
106961<...>-9005 ( 8943) [005] ...2 82317.076538: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
106962<...>-9005 ( 8943) [005] d..4 82317.076541: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
106963<...>-9105 ( 9105) [007] .... 82317.076554: binder_transaction: transaction=1572066 dest_node=396473 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x3
106964<...>-9105 ( 9105) [007] .... 82317.076556: binder_transaction_alloc_buf: transaction=1572066 data_size=152 offsets_size=0
106965<...>-9005 ( 8943) [005] d..5 82317.076558: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
106966<...>-9105 ( 9105) [007] d..4 82317.076559: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
106967          <idle>-0     (-----) [006] .n.1 82317.076563: cpu_idle: state=4294967295 cpu_id=6
106968  Binder:10023_2-10088 (10023) [004] d..2 82317.076570: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
106969          <idle>-0     (-----) [006] d..2 82317.076570: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
106970<...>-9105 ( 9105) [007] d..5 82317.076574: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
106971<...>-8951 ( 8858) [006] .... 82317.076577: binder_transaction_received: transaction=1572065
106972          <idle>-0     (-----) [004] d..1 82317.076579: cpu_idle: state=0 cpu_id=4
106973<...>-9105 ( 9105) [007] d..2 82317.076606: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
106974<...>-9005 ( 8943) [005] d..2 82317.076607: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
106975<...>-13083 ( 8858) [005] .... 82317.076612: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
106976<...>-11815 ( 8943) [007] .... 82317.076613: binder_transaction_received: transaction=1572066
106977<...>-13083 ( 8858) [005] d..2 82317.076646: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
106978          <idle>-0     (-----) [005] d..1 82317.076654: cpu_idle: state=0 cpu_id=5
106979<...>-16709 ( 9871) [001] d..2 82317.076696: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
106980          <idle>-0     (-----) [001] d..1 82317.076714: cpu_idle: state=0 cpu_id=1
106981<...>-11815 ( 8943) [007] .... 82317.076766: binder_transaction: transaction=1572067 dest_node=0 dest_proc=9105 dest_thread=9105 reply=1 flags=0x0 code=0x0
106982<...>-11815 ( 8943) [007] .... 82317.076768: binder_transaction_alloc_buf: transaction=1572067 data_size=264 offsets_size=0
106983<...>-11815 ( 8943) [007] d..2 82317.076770: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
106984<...>-11815 ( 8943) [007] d..3 82317.076777: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
106985<...>-11815 ( 8943) [007] d..2 82317.076794: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
106986<...>-9105 ( 9105) [007] .... 82317.076800: binder_transaction_received: transaction=1572067
106987<...>-8951 ( 8858) [006] .... 82317.076803: binder_transaction: transaction=1572068 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
106988<...>-8951 ( 8858) [006] .... 82317.076805: binder_transaction_alloc_buf: transaction=1572068 data_size=52 offsets_size=16
106989<...>-9105 ( 9105) [007] d..3 82317.076881: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
106990          <idle>-0     (-----) [004] ...1 82317.076888: cpu_idle: state=4294967295 cpu_id=4
106991          <idle>-0     (-----) [004] d..1 82317.076890: cpu_idle: state=0 cpu_id=4
106992          <idle>-0     (-----) [000] dnh2 82317.076898: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
106993          <idle>-0     (-----) [000] .n.1 82317.076902: cpu_idle: state=4294967295 cpu_id=0
106994          <idle>-0     (-----) [000] d..2 82317.076909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
106995    RenderThread-9436  ( 9105) [000] d..2 82317.076928: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
106996          <idle>-0     (-----) [000] d..1 82317.076935: cpu_idle: state=0 cpu_id=0
106997<...>-9105 ( 9105) [007] d..2 82317.076947: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
106998          <idle>-0     (-----) [007] d..1 82317.076956: cpu_idle: state=0 cpu_id=7
106999<...>-8951 ( 8858) [006] d..2 82317.077074: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
107000<...>-8951 ( 8858) [006] d..3 82317.077087: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=006
107001<...>-8951 ( 8858) [006] .... 82317.077089: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107002<...>-8951 ( 8858) [006] d..2 82317.077120: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107003<...>-9005 ( 8943) [006] .... 82317.077126: binder_transaction_received: transaction=1572068
107004<...>-9005 ( 8943) [006] .... 82317.077170: binder_transaction: transaction=1572073 dest_node=1572071 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
107005<...>-9005 ( 8943) [006] .... 82317.077173: binder_transaction_alloc_buf: transaction=1572073 data_size=80 offsets_size=0
107006<...>-9005 ( 8943) [006] ...2 82317.077175: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
107007<...>-9005 ( 8943) [006] d..4 82317.077176: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107008<...>-9005 ( 8943) [006] dn.5 82317.077183: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107009<...>-9005 ( 8943) [006] d..2 82317.077187: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107010<...>-8951 ( 8858) [006] .... 82317.077192: binder_transaction_received: transaction=1572073
107011<...>-8951 ( 8858) [006] .... 82317.077204: binder_transaction: transaction=1572074 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x8 code=0x0
107012<...>-8951 ( 8858) [006] .... 82317.077206: binder_transaction_alloc_buf: transaction=1572074 data_size=4 offsets_size=0
107013<...>-8951 ( 8858) [006] .... 82317.077207: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107014<...>-8951 ( 8858) [006] d..2 82317.077225: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107015<...>-9005 ( 8943) [006] .... 82317.077230: binder_transaction_received: transaction=1572074
107016<...>-9005 ( 8943) [006] d..3 82317.077946: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
107017          <idle>-0     (-----) [000] dnh2 82317.077971: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
107018          <idle>-0     (-----) [000] .n.1 82317.077975: cpu_idle: state=4294967295 cpu_id=0
107019          <idle>-0     (-----) [001] ...1 82317.077978: cpu_idle: state=4294967295 cpu_id=1
107020          <idle>-0     (-----) [000] d..2 82317.077981: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
107021          <idle>-0     (-----) [001] d..1 82317.077981: cpu_idle: state=0 cpu_id=1
107022<...>-9039 ( 8943) [000] d..2 82317.078021: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107023          <idle>-0     (-----) [000] d..1 82317.078029: cpu_idle: state=0 cpu_id=0
107024<...>-9005 ( 8943) [006] .... 82317.078036: binder_transaction: transaction=1572075 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
107025<...>-9005 ( 8943) [006] .... 82317.078038: binder_transaction_alloc_buf: transaction=1572075 data_size=308 offsets_size=8
107026<...>-9005 ( 8943) [006] ...2 82317.078042: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
107027<...>-9005 ( 8943) [006] d..4 82317.078044: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107028<...>-9005 ( 8943) [006] dn.5 82317.078051: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107029<...>-9005 ( 8943) [006] d..2 82317.078056: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107030<...>-8951 ( 8858) [006] .... 82317.078062: binder_transaction_received: transaction=1572075
107031<...>-8951 ( 8858) [006] .... 82317.078187: binder_transaction: transaction=1572076 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
107032<...>-8951 ( 8858) [006] .... 82317.078189: binder_transaction_alloc_buf: transaction=1572076 data_size=52 offsets_size=16
107033<...>-24462 ( 9871) [002] .... 82317.078254: binder_transaction: transaction=1572079 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x24
107034<...>-24462 ( 9871) [002] .... 82317.078257: binder_transaction_alloc_buf: transaction=1572079 data_size=292 offsets_size=8
107035<...>-24462 ( 9871) [002] d..4 82317.078264: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
107036<...>-24462 ( 9871) [002] dn.5 82317.078283: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
107037<...>-8951 ( 8858) [006] .... 82317.078314: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107038<...>-24462 ( 9871) [002] d..2 82317.078317: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
107039<...>-11815 ( 8943) [002] .... 82317.078323: binder_transaction_received: transaction=1572079
107040<...>-8951 ( 8858) [006] d..2 82317.078343: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107041<...>-9005 ( 8943) [006] .... 82317.078350: binder_transaction_received: transaction=1572076
107042<...>-9005 ( 8943) [006] .... 82317.078384: binder_transaction: transaction=1572082 dest_node=1572080 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
107043<...>-9005 ( 8943) [006] .... 82317.078386: binder_transaction_alloc_buf: transaction=1572082 data_size=80 offsets_size=0
107044<...>-9005 ( 8943) [006] ...2 82317.078387: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
107045<...>-9005 ( 8943) [006] d..4 82317.078389: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107046<...>-9005 ( 8943) [006] dn.5 82317.078396: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107047<...>-9005 ( 8943) [006] d..2 82317.078400: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107048<...>-8951 ( 8858) [006] .... 82317.078405: binder_transaction_received: transaction=1572082
107049<...>-8951 ( 8858) [006] .... 82317.078416: binder_transaction: transaction=1572083 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x8 code=0x0
107050<...>-8951 ( 8858) [006] .... 82317.078418: binder_transaction_alloc_buf: transaction=1572083 data_size=4 offsets_size=0
107051<...>-8951 ( 8858) [006] .... 82317.078420: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107052<...>-8951 ( 8858) [006] d..2 82317.078437: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107053          <idle>-0     (-----) [000] d.h5 82317.078461: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
107054<...>-9005 ( 8943) [006] .... 82317.078468: binder_transaction_received: transaction=1572083
107055<...>-11815 ( 8943) [002] d.s3 82317.078476: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
107056          <idle>-0     (-----) [000] d.h6 82317.078476: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
107057          <idle>-0     (-----) [000] d.h5 82317.078479: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
107058          <idle>-0     (-----) [003] .n.1 82317.078481: cpu_idle: state=4294967295 cpu_id=3
107059          <idle>-0     (-----) [000] dnh6 82317.078490: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
107060          <idle>-0     (-----) [003] d..2 82317.078491: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
107061<...>-11815 ( 8943) [002] d.s4 82317.078498: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
107062          <idle>-0     (-----) [000] .n.1 82317.078501: cpu_idle: state=4294967295 cpu_id=0
107063          <idle>-0     (-----) [000] d..2 82317.078508: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
107064  crtc_event:111-322   (  322) [003] d..2 82317.078515: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
107065  kworker/u16:15-1311  ( 1311) [003] .... 82317.078600: clk_set_rate: l3_cluster0_vote_clk 1132800000
107066  kworker/u16:15-1311  ( 1311) [003] .... 82317.078606: clk_set_rate: l3_clk 1132800000
107067<...>-11815 ( 8943) [002] .... 82317.078647: binder_transaction: transaction=1572084 dest_node=0 dest_proc=9871 dest_thread=24462 reply=1 flags=0x0 code=0x0
107068<...>-11815 ( 8943) [002] .... 82317.078651: binder_transaction_alloc_buf: transaction=1572084 data_size=8 offsets_size=0
107069 crtc_commit:111-321   (  321) [000] d..2 82317.078659: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
107070          <idle>-0     (-----) [000] d..1 82317.078665: cpu_idle: state=0 cpu_id=0
107071<...>-11815 ( 8943) [002] d..2 82317.078680: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
107072<...>-24462 ( 9871) [002] .... 82317.078686: binder_transaction_received: transaction=1572084
107073  kworker/u16:15-1311  ( 1311) [003] d..2 82317.078800: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
107074          <idle>-0     (-----) [003] d..1 82317.078807: cpu_idle: state=0 cpu_id=3
107075          <idle>-0     (-----) [001] d.s3 82317.078830: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
107076          <idle>-0     (-----) [001] d.s4 82317.078839: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
107077          <idle>-0     (-----) [001] d.s4 82317.078846: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
107078          <idle>-0     (-----) [003] .n.1 82317.078851: cpu_idle: state=4294967295 cpu_id=3
107079          <idle>-0     (-----) [001] ...1 82317.078851: cpu_idle: state=4294967295 cpu_id=1
107080          <idle>-0     (-----) [001] d..1 82317.078854: cpu_idle: state=0 cpu_id=1
107081          <idle>-0     (-----) [003] d..2 82317.078858: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
107082<...>-24462 ( 9871) [002] d..2 82317.078870: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107083          <idle>-0     (-----) [002] d..1 82317.078878: cpu_idle: state=0 cpu_id=2
107084          <idle>-0     (-----) [002] ...1 82317.078889: cpu_idle: state=4294967295 cpu_id=2
107085          <idle>-0     (-----) [002] d..1 82317.078891: cpu_idle: state=0 cpu_id=2
107086  kworker/u16:15-1311  ( 1311) [003] .... 82317.078932: clk_set_rate: l3_cluster1_vote_clk 748800000
107087  kworker/u16:15-1311  ( 1311) [003] d..2 82317.078948: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107088          <idle>-0     (-----) [003] d..1 82317.078954: cpu_idle: state=0 cpu_id=3
107089<...>-9005 ( 8943) [006] d..3 82317.079034: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
107090          <idle>-0     (-----) [000] dnh2 82317.079052: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
107091          <idle>-0     (-----) [000] .n.1 82317.079055: cpu_idle: state=4294967295 cpu_id=0
107092          <idle>-0     (-----) [000] d..2 82317.079060: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
107093<...>-9039 ( 8943) [000] d..2 82317.079085: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107094          <idle>-0     (-----) [000] d..1 82317.079089: cpu_idle: state=0 cpu_id=0
107095<...>-9005 ( 8943) [006] .... 82317.079147: binder_transaction: transaction=1572085 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
107096<...>-9005 ( 8943) [006] .... 82317.079149: binder_transaction_alloc_buf: transaction=1572085 data_size=684 offsets_size=32
107097<...>-9005 ( 8943) [006] ...2 82317.079155: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
107098<...>-9005 ( 8943) [006] d..4 82317.079156: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107099<...>-9005 ( 8943) [006] dn.5 82317.079164: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107100<...>-9005 ( 8943) [006] d..2 82317.079169: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107101<...>-8951 ( 8858) [006] .... 82317.079174: binder_transaction_received: transaction=1572085
107102<...>-8951 ( 8858) [006] .... 82317.079219: binder_transaction: transaction=1572086 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
107103<...>-8951 ( 8858) [006] .... 82317.079221: binder_transaction_alloc_buf: transaction=1572086 data_size=0 offsets_size=0
107104<...>-8951 ( 8858) [006] .... 82317.079223: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107105<...>-8951 ( 8858) [006] d..2 82317.079244: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107106<...>-9005 ( 8943) [006] .... 82317.079250: binder_transaction_received: transaction=1572086
107107<...>-9005 ( 8943) [006] d..3 82317.079300: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=003
107108          <idle>-0     (-----) [000] dnh2 82317.079322: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
107109          <idle>-0     (-----) [000] .n.1 82317.079325: cpu_idle: state=4294967295 cpu_id=0
107110          <idle>-0     (-----) [000] d..2 82317.079330: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
107111   system_server-8943  ( 8943) [000] .... 82317.079395: binder_transaction: transaction=1572087 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x18
107112   system_server-8943  ( 8943) [000] .... 82317.079398: binder_transaction_alloc_buf: transaction=1572087 data_size=108 offsets_size=0
107113   system_server-8943  ( 8943) [000] d..4 82317.079401: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=000
107114   system_server-8943  ( 8943) [000] d..5 82317.079417: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=001
107115          <idle>-0     (-----) [001] .n.1 82317.079421: cpu_idle: state=4294967295 cpu_id=1
107116          <idle>-0     (-----) [001] d..2 82317.079430: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
107117<...>-9005 ( 8943) [006] .... 82317.079435: binder_transaction: transaction=1572088 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x10
107118<...>-9380 ( 9105) [001] .... 82317.079436: binder_transaction_received: transaction=1572087
107119<...>-9005 ( 8943) [006] .... 82317.079438: binder_transaction_alloc_buf: transaction=1572088 data_size=112 offsets_size=8
107120<...>-9005 ( 8943) [006] ...2 82317.079442: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
107121<...>-9005 ( 8943) [006] d..4 82317.079443: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107122<...>-9005 ( 8943) [006] dn.5 82317.079450: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107123<...>-9005 ( 8943) [006] d..2 82317.079455: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107124   system_server-8943  ( 8943) [000] d..2 82317.079460: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107125<...>-8951 ( 8858) [006] .... 82317.079460: binder_transaction_received: transaction=1572088
107126          <idle>-0     (-----) [000] d..1 82317.079466: cpu_idle: state=0 cpu_id=0
107127<...>-8951 ( 8858) [006] ...1 82317.079496: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
107128<...>-8951 ( 8858) [006] ...1 82317.079506: tracing_mark_write: E|8858
107129<...>-8951 ( 8858) [006] ...1 82317.079516: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
107130<...>-8951 ( 8858) [006] ...1 82317.079517: tracing_mark_write: E|8858
107131<...>-8951 ( 8858) [006] .... 82317.079539: binder_transaction: transaction=1572089 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
107132<...>-8951 ( 8858) [006] .... 82317.079541: binder_transaction_alloc_buf: transaction=1572089 data_size=136 offsets_size=16
107133<...>-8951 ( 8858) [006] ...2 82317.079546: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
107134<...>-8951 ( 8858) [006] d..4 82317.079548: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=004
107135<...>-8951 ( 8858) [006] d..5 82317.079559: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=004
107136          <idle>-0     (-----) [004] .n.1 82317.079564: cpu_idle: state=4294967295 cpu_id=4
107137<...>-8951 ( 8858) [006] d..2 82317.079567: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107138          <idle>-0     (-----) [004] d..2 82317.079570: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
107139<...>-9380 ( 9105) [001] d..2 82317.079573: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107140<...>-1127 ( 621) [004] .... 82317.079579: binder_transaction_received: transaction=1572089
107141<...>-9005 ( 8943) [006] d..2 82317.079582: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
107142          <idle>-0     (-----) [001] d..1 82317.079582: cpu_idle: state=0 cpu_id=1
107143          <idle>-0     (-----) [006] d..1 82317.079591: cpu_idle: state=0 cpu_id=6
107144<...>-1127 ( 621) [004] ...1 82317.079615: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
107145<...>-1127 ( 621) [004] ...1 82317.079649: tracing_mark_write: B|621|AllocBuffer
107146<...>-1127 ( 621) [004] ...1 82317.079657: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9400320
107147<...>-1127 ( 621) [004] ...1 82317.079789: tracing_mark_write: E|621
107148<...>-1127 ( 621) [004] ...1 82317.079792: tracing_mark_write: B|621|ION_IOC_MAP
107149<...>-1127 ( 621) [004] ...1 82317.079805: tracing_mark_write: E|621
107150<...>-1127 ( 621) [004] ...1 82317.079808: tracing_mark_write: E|621
107151<...>-1127 ( 621) [004] ...1 82317.079810: tracing_mark_write: B|621|AllocBuffer
107152<...>-1127 ( 621) [004] ...1 82317.079812: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
107153<...>-1127 ( 621) [004] ...1 82317.079822: tracing_mark_write: E|621
107154<...>-1127 ( 621) [004] ...1 82317.079823: tracing_mark_write: B|621|ION_IOC_MAP
107155<...>-1127 ( 621) [004] ...1 82317.079828: tracing_mark_write: E|621
107156<...>-1127 ( 621) [004] ...1 82317.079830: tracing_mark_write: E|621
107157<...>-1127 ( 621) [004] ...1 82317.079876: tracing_mark_write: E|621
107158<...>-1127 ( 621) [004] .... 82317.079884: binder_transaction: transaction=1572090 dest_node=0 dest_proc=8858 dest_thread=8951 reply=1 flags=0x0 code=0x0
107159<...>-1127 ( 621) [004] .... 82317.079887: binder_transaction_alloc_buf: transaction=1572090 data_size=172 offsets_size=32
107160<...>-1127 ( 621) [004] d..2 82317.079895: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
107161<...>-1127 ( 621) [004] d..3 82317.079907: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
107162<...>-1127 ( 621) [004] .... 82317.079909: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
107163<...>-1127 ( 621) [004] ...1 82317.079923: tracing_mark_write: B|621|FreeBuffer
107164<...>-1127 ( 621) [004] ...1 82317.079931: tracing_mark_write: E|621
107165<...>-1127 ( 621) [004] ...1 82317.079933: tracing_mark_write: B|621|FreeBuffer
107166<...>-1127 ( 621) [004] ...1 82317.079935: tracing_mark_write: B|621|UnmapBuffer
107167<...>-1127 ( 621) [004] ...1 82317.079951: tracing_mark_write: E|621
107168<...>-1127 ( 621) [004] ...1 82317.079956: tracing_mark_write: E|621
107169<...>-1127 ( 621) [004] d..2 82317.079974: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107170<...>-8951 ( 8858) [004] .... 82317.079980: binder_transaction_received: transaction=1572090
107171<...>-8951 ( 8858) [004] ...2 82317.080004: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
107172<...>-8951 ( 8858) [004] ...1 82317.080032: tracing_mark_write: E|8858
107173<...>-8951 ( 8858) [004] ...1 82317.080051: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
107174<...>-8951 ( 8858) [004] ...1 82317.080054: tracing_mark_write: E|8858
107175<...>-8951 ( 8858) [004] d..3 82317.080067: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
107176          <idle>-0     (-----) [002] dnh2 82317.080085: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
107177          <idle>-0     (-----) [002] .n.1 82317.080089: cpu_idle: state=4294967295 cpu_id=2
107178<...>-8951 ( 8858) [004] d..2 82317.080091: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
107179          <idle>-0     (-----) [002] d..2 82317.080093: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
107180          <idle>-0     (-----) [004] d..1 82317.080102: cpu_idle: state=0 cpu_id=4
107181  surfaceflinger-8858  ( 8858) [002] ...1 82317.080165: tracing_mark_write: B|8858|HIDL::IComposerClient::getActiveConfig::client
107182  surfaceflinger-8858  ( 8858) [002] ...1 82317.080168: tracing_mark_write: E|8858
107183  surfaceflinger-8858  ( 8858) [002] .... 82317.080196: binder_transaction: transaction=1572091 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x7
107184  surfaceflinger-8858  ( 8858) [002] .... 82317.080199: binder_transaction_alloc_buf: transaction=1572091 data_size=64 offsets_size=0
107185  surfaceflinger-8858  ( 8858) [002] ...2 82317.080204: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
107186  surfaceflinger-8858  ( 8858) [002] d..4 82317.080213: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
107187  surfaceflinger-8858  ( 8858) [002] d..5 82317.080227: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
107188          <idle>-0     (-----) [000] .n.1 82317.080231: cpu_idle: state=4294967295 cpu_id=0
107189          <idle>-0     (-----) [000] d..2 82317.080237: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
107190 [email protected]   (  619) [000] .... 82317.080246: binder_transaction_received: transaction=1572091
107191  surfaceflinger-8858  ( 8858) [002] d..2 82317.080246: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107192          <idle>-0     (-----) [002] d..1 82317.080252: cpu_idle: state=0 cpu_id=2
107193 [email protected]   (  619) [000] ...1 82317.080286: tracing_mark_write: B|619|HIDL::IComposerClient::getActiveConfig::server
107194 [email protected]   (  619) [000] ...1 82317.080316: tracing_mark_write: E|619
107195 [email protected]   (  619) [000] .... 82317.080325: binder_transaction: transaction=1572092 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
107196 [email protected]   (  619) [000] .... 82317.080328: binder_transaction_alloc_buf: transaction=1572092 data_size=12 offsets_size=0
107197 [email protected]   (  619) [000] d..2 82317.080330: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
107198 [email protected]   (  619) [000] d..3 82317.080343: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
107199 [email protected]   (  619) [000] .... 82317.080345: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
107200          <idle>-0     (-----) [002] .n.1 82317.080348: cpu_idle: state=4294967295 cpu_id=2
107201          <idle>-0     (-----) [002] d..2 82317.080352: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
107202  surfaceflinger-8858  ( 8858) [002] .... 82317.080356: binder_transaction_received: transaction=1572092
107203 [email protected]   (  619) [000] d..2 82317.080382: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107204          <idle>-0     (-----) [000] d..1 82317.080388: cpu_idle: state=0 cpu_id=0
107205          <idle>-0     (-----) [000] d.h5 82317.080803: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
107206          <idle>-0     (-----) [000] dnh6 82317.080810: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
107207          <idle>-0     (-----) [000] .n.1 82317.080818: cpu_idle: state=4294967295 cpu_id=0
107208          <idle>-0     (-----) [000] d..2 82317.080822: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
107209 crtc_commit:111-321   (  321) [000] d..2 82317.080892: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107210          <idle>-0     (-----) [000] d..1 82317.080897: cpu_idle: state=0 cpu_id=0
107211          <idle>-0     (-----) [000] d.h5 82317.081091: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
107212          <idle>-0     (-----) [000] d.h6 82317.081100: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
107213          <idle>-0     (-----) [003] .n.1 82317.081105: cpu_idle: state=4294967295 cpu_id=3
107214          <idle>-0     (-----) [000] ...1 82317.081111: cpu_idle: state=4294967295 cpu_id=0
107215          <idle>-0     (-----) [003] d..2 82317.081111: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
107216          <idle>-0     (-----) [000] d..1 82317.081113: cpu_idle: state=0 cpu_id=0
107217  crtc_event:111-322   (  322) [003] d..2 82317.081128: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107218          <idle>-0     (-----) [003] d..1 82317.081133: cpu_idle: state=0 cpu_id=3
107219          <idle>-0     (-----) [000] d.s3 82317.081791: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
107220          <idle>-0     (-----) [000] d.s4 82317.081800: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
107221  surfaceflinger-8858  ( 8858) [002] d.s1 82317.081800: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
107222          <idle>-0     (-----) [003] .n.1 82317.081804: cpu_idle: state=4294967295 cpu_id=3
107223          <idle>-0     (-----) [003] d..2 82317.081810: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
107224          <idle>-0     (-----) [000] ...1 82317.081816: cpu_idle: state=4294967295 cpu_id=0
107225          <idle>-0     (-----) [000] d..1 82317.081819: cpu_idle: state=0 cpu_id=0
107226  crtc_event:111-322   (  322) [003] d..2 82317.081827: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107227          <idle>-0     (-----) [003] d..1 82317.081832: cpu_idle: state=0 cpu_id=3
107228          <idle>-0     (-----) [003] .n.1 82317.081833: cpu_idle: state=4294967295 cpu_id=3
107229  surfaceflinger-8858  ( 8858) [002] d.s2 82317.081835: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
107230  surfaceflinger-8858  ( 8858) [002] d.s1 82317.081838: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
107231          <idle>-0     (-----) [003] d..2 82317.081842: 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
107232  surfaceflinger-8858  ( 8858) [002] d.s2 82317.081859: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
107233     rcu_preempt-7     (    7) [003] d..2 82317.081867: 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
107234<...>-8 ( 8) [003] d..2 82317.081874: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
107235<...>-8 ( 8) [003] d..3 82317.081898: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=003
107236<...>-8 ( 8) [003] d..2 82317.081906: 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
107237         rcuos/0-11    (   11) [003] d..2 82317.081910: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=003
107238         rcuos/0-11    (   11) [003] d..3 82317.081921: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=003
107239         rcuos/0-11    (   11) [003] d..2 82317.081924: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
107240         rcuos/0-11    (   11) [003] d..3 82317.081930: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
107241         rcuos/0-11    (   11) [003] d..2 82317.081935: 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
107242         rcuos/1-22    (   22) [003] d..2 82317.081948: 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
107243<...>-8 ( 8) [003] d..2 82317.081960: 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
107244          <idle>-0     (-----) [003] d..1 82317.081965: cpu_idle: state=0 cpu_id=3
107245  surfaceflinger-8858  ( 8858) [002] d..2 82317.082209: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
107246          <idle>-0     (-----) [000] d.h3 82317.082212: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
107247          <idle>-0     (-----) [002] d..1 82317.082218: cpu_idle: state=0 cpu_id=2
107248          <idle>-0     (-----) [000] d.h4 82317.082222: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
107249          <idle>-0     (-----) [001] .n.1 82317.082228: cpu_idle: state=4294967295 cpu_id=1
107250          <idle>-0     (-----) [000] ...1 82317.082231: cpu_idle: state=4294967295 cpu_id=0
107251          <idle>-0     (-----) [000] d..1 82317.082234: cpu_idle: state=0 cpu_id=0
107252          <idle>-0     (-----) [001] d..2 82317.082236: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
107253 kgsl_worker_thr-258   (  258) [001] d..2 82317.082252: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
107254          <idle>-0     (-----) [001] d..1 82317.082258: cpu_idle: state=0 cpu_id=1
107255          <idle>-0     (-----) [002] d.h2 82317.082300: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
107256          <idle>-0     (-----) [002] dnh3 82317.082307: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
107257          <idle>-0     (-----) [002] .n.1 82317.082312: cpu_idle: state=4294967295 cpu_id=2
107258          <idle>-0     (-----) [002] d..2 82317.082318: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
107259  surfaceflinger-8858  ( 8858) [002] d..1 82317.082332: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
107260  surfaceflinger-8858  ( 8858) [002] d..2 82317.082341: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
107261          <idle>-0     (-----) [001] .n.1 82317.082346: cpu_idle: state=4294967295 cpu_id=1
107262          <idle>-0     (-----) [001] d..2 82317.082351: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
107263 kgsl_worker_thr-258   (  258) [001] d..2 82317.082391: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
107264          <idle>-0     (-----) [001] d..1 82317.082395: cpu_idle: state=0 cpu_id=1
107265          <idle>-0     (-----) [001] d.h2 82317.082489: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
107266          <idle>-0     (-----) [001] dnh3 82317.082495: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
107267          <idle>-0     (-----) [001] .n.1 82317.082500: cpu_idle: state=4294967295 cpu_id=1
107268          <idle>-0     (-----) [001] d..2 82317.082505: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
107269  surfaceflinger-8858  ( 8858) [002] d..2 82317.082513: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107270 kgsl_worker_thr-258   (  258) [001] d..2 82317.082520: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
107271          <idle>-0     (-----) [002] d..1 82317.082522: cpu_idle: state=0 cpu_id=2
107272 kgsl_worker_thr-258   (  258) [001] d..3 82317.082542: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
107273 kgsl_worker_thr-258   (  258) [001] d..2 82317.082552: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
107274  kworker/u16:15-1311  ( 1311) [001] d..2 82317.082735: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107275          <idle>-0     (-----) [001] d..1 82317.082743: cpu_idle: state=0 cpu_id=1
107276          <idle>-0     (-----) [003] d.h2 82317.082835: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
107277          <idle>-0     (-----) [003] dnh3 82317.082845: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
107278          <idle>-0     (-----) [003] .n.1 82317.082850: cpu_idle: state=4294967295 cpu_id=3
107279          <idle>-0     (-----) [003] d..2 82317.082856: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
107280        DispSync-8879  ( 8858) [003] d..1 82317.082878: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
107281        DispSync-8879  ( 8858) [003] d..2 82317.082894: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
107282          <idle>-0     (-----) [001] .n.1 82317.082898: cpu_idle: state=4294967295 cpu_id=1
107283          <idle>-0     (-----) [001] d..2 82317.082904: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
107284        DispSync-8879  ( 8858) [003] d..2 82317.082914: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107285          <idle>-0     (-----) [003] d..1 82317.082921: cpu_idle: state=0 cpu_id=3
107286  appEventThread-8881  ( 8858) [001] d..3 82317.082970: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
107287  appEventThread-8881  ( 8858) [001] d..4 82317.082993: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
107288          <idle>-0     (-----) [000] .n.1 82317.082997: cpu_idle: state=4294967295 cpu_id=0
107289          <idle>-0     (-----) [000] d..2 82317.083031: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
107290  appEventThread-8881  ( 8858) [001] d..2 82317.083061: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107291          <idle>-0     (-----) [001] d..1 82317.083070: cpu_idle: state=0 cpu_id=1
107292<...>-9105 ( 9105) [000] .... 82317.083244: binder_transaction: transaction=1572093 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
107293<...>-9105 ( 9105) [000] .... 82317.083247: binder_transaction_alloc_buf: transaction=1572093 data_size=80 offsets_size=0
107294<...>-9105 ( 9105) [000] d..4 82317.083251: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
107295<...>-9105 ( 9105) [000] d..5 82317.083273: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
107296          <idle>-0     (-----) [001] .n.1 82317.083278: cpu_idle: state=4294967295 cpu_id=1
107297          <idle>-0     (-----) [001] d..2 82317.083303: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
107298<...>-13083 ( 8858) [001] .... 82317.083307: binder_transaction_received: transaction=1572093
107299<...>-13083 ( 8858) [001] d..1 82317.083326: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
107300<...>-13083 ( 8858) [001] d..2 82317.083341: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
107301          <idle>-0     (-----) [003] .n.1 82317.083345: cpu_idle: state=4294967295 cpu_id=3
107302          <idle>-0     (-----) [003] d..2 82317.083351: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
107303<...>-13083 ( 8858) [001] d..2 82317.083363: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107304          <idle>-0     (-----) [001] d..1 82317.083370: cpu_idle: state=0 cpu_id=1
107305  appEventThread-8881  ( 8858) [003] d..2 82317.083382: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
107306          <idle>-0     (-----) [003] d..1 82317.083387: cpu_idle: state=0 cpu_id=3
107307<...>-9105 ( 9105) [000] d..3 82317.083405: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
107308<...>-9105 ( 9105) [000] d..4 82317.083423: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
107309          <idle>-0     (-----) [001] .n.1 82317.083428: cpu_idle: state=4294967295 cpu_id=1
107310          <idle>-0     (-----) [001] d..2 82317.083435: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
107311<...>-9105 ( 9105) [000] d..2 82317.083442: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107312          <idle>-0     (-----) [000] d.h3 82317.083464: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
107313          <idle>-0     (-----) [000] dnh4 82317.083474: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
107314          <idle>-0     (-----) [000] d..2 82317.083488: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
107315 kgsl_worker_thr-258   (  258) [000] d..2 82317.083515: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
107316 kgsl_worker_thr-258   (  258) [000] d..3 82317.083524: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
107317          <idle>-0     (-----) [002] .n.1 82317.083529: cpu_idle: state=4294967295 cpu_id=2
107318          <idle>-0     (-----) [002] d..2 82317.083536: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
107319 kgsl_worker_thr-258   (  258) [000] d..2 82317.083536: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107320          <idle>-0     (-----) [000] d..1 82317.083544: cpu_idle: state=0 cpu_id=0
107321    RenderThread-9436  ( 9105) [001] d..1 82317.083553: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
107322    RenderThread-9436  ( 9105) [001] d..2 82317.083564: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
107323          <idle>-0     (-----) [000] .n.1 82317.083570: cpu_idle: state=4294967295 cpu_id=0
107324          <idle>-0     (-----) [000] d..2 82317.083576: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
107325    RenderThread-9436  ( 9105) [001] .... 82317.083616: binder_transaction: transaction=1572094 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
107326    RenderThread-9436  ( 9105) [001] .... 82317.083618: binder_transaction_alloc_buf: transaction=1572094 data_size=104 offsets_size=0
107327    RenderThread-9436  ( 9105) [001] d..4 82317.083621: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
107328    RenderThread-9436  ( 9105) [001] d..5 82317.083628: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
107329    RenderThread-9436  ( 9105) [001] d..2 82317.083635: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
107330<...>-13083 ( 8858) [001] .... 82317.083639: binder_transaction_received: transaction=1572094
107331<...>-13083 ( 8858) [001] .... 82317.083684: binder_transaction: transaction=1572095 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
107332  surfaceflinger-8858  ( 8858) [002] d..1 82317.083685: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
107333<...>-13083 ( 8858) [001] .... 82317.083687: binder_transaction_alloc_buf: transaction=1572095 data_size=52 offsets_size=8
107334<...>-13083 ( 8858) [001] d..2 82317.083694: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
107335<...>-13083 ( 8858) [001] d..3 82317.083702: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
107336  surfaceflinger-8858  ( 8858) [002] d..2 82317.083706: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=003
107337          <idle>-0     (-----) [003] .n.1 82317.083711: cpu_idle: state=4294967295 cpu_id=3
107338          <idle>-0     (-----) [003] d..2 82317.083735: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107339<...>-13083 ( 8858) [001] d..2 82317.083737: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
107340    RenderThread-9436  ( 9105) [001] .... 82317.083740: binder_transaction_received: transaction=1572095
107341  surfaceflinger-8858  ( 8858) [002] d..2 82317.083758: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107342          <idle>-0     (-----) [002] d..1 82317.083767: cpu_idle: state=0 cpu_id=2
107343<...>-8951 ( 8858) [003] ...1 82317.083789: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
107344<...>-8951 ( 8858) [003] ...1 82317.083799: tracing_mark_write: B|8858|FreeBuffer
107345<...>-8951 ( 8858) [003] ...1 82317.083809: tracing_mark_write: E|8858
107346<...>-8951 ( 8858) [003] ...1 82317.083812: tracing_mark_write: B|8858|FreeBuffer
107347<...>-8951 ( 8858) [003] ...1 82317.083814: tracing_mark_write: B|8858|UnmapBuffer
107348<...>-9105 ( 9105) [000] d..2 82317.083831: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107349<...>-8951 ( 8858) [003] ...1 82317.083832: tracing_mark_write: E|8858
107350<...>-8951 ( 8858) [003] ...1 82317.083838: tracing_mark_write: E|8858
107351          <idle>-0     (-----) [000] d..1 82317.083841: cpu_idle: state=0 cpu_id=0
107352<...>-8951 ( 8858) [003] ...1 82317.083843: tracing_mark_write: E|8858
107353<...>-8951 ( 8858) [003] .... 82317.083856: binder_transaction: transaction=1572096 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
107354<...>-8951 ( 8858) [003] .... 82317.083859: binder_transaction_alloc_buf: transaction=1572096 data_size=204 offsets_size=16
107355<...>-8951 ( 8858) [003] d..2 82317.083866: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=006
107356<...>-8951 ( 8858) [003] d..3 82317.083884: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=003
107357<...>-8951 ( 8858) [003] .... 82317.083914: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107358<...>-8951 ( 8858) [003] d..2 82317.083948: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107359<...>-9005 ( 8943) [003] .... 82317.083953: binder_transaction_received: transaction=1572096
107360<...>-9005 ( 8943) [003] ...1 82317.083987: tracing_mark_write: B|8943|HIDL::IMapper::importBuffer::passthrough
107361<...>-9005 ( 8943) [003] ...1 82317.084017: tracing_mark_write: E|8943
107362<...>-9005 ( 8943) [003] ...1 82317.084025: tracing_mark_write: B|8943|HIDL::IMapper::validateBufferSize::passthrough
107363<...>-9005 ( 8943) [003] ...1 82317.084038: tracing_mark_write: E|8943
107364<...>-9005 ( 8943) [003] ...1 82317.084045: tracing_mark_write: B|8943|HIDL::IMapper::getTransportSize::passthrough
107365<...>-9005 ( 8943) [003] ...1 82317.084049: tracing_mark_write: E|8943
107366    RenderThread-9436  ( 9105) [001] .... 82317.084628: binder_transaction: transaction=1572097 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
107367    RenderThread-9436  ( 9105) [001] .... 82317.084631: binder_transaction_alloc_buf: transaction=1572097 data_size=192 offsets_size=8
107368          <idle>-0     (-----) [000] ...1 82317.084633: cpu_idle: state=4294967295 cpu_id=0
107369          <idle>-0     (-----) [000] d..1 82317.084635: cpu_idle: state=0 cpu_id=0
107370    RenderThread-9436  ( 9105) [001] d..4 82317.084636: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
107371    RenderThread-9436  ( 9105) [001] d..5 82317.084650: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
107372    RenderThread-9436  ( 9105) [001] d..2 82317.084658: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
107373<...>-8951 ( 8858) [001] .... 82317.084663: binder_transaction_received: transaction=1572097
107374          <idle>-0     (-----) [000] d.h3 82317.084756: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
107375          <idle>-0     (-----) [000] dnh4 82317.084763: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
107376<...>-8951 ( 8858) [001] .... 82317.084766: binder_transaction: transaction=1572098 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
107377<...>-8951 ( 8858) [001] .... 82317.084768: binder_transaction_alloc_buf: transaction=1572098 data_size=68 offsets_size=0
107378          <idle>-0     (-----) [000] .n.1 82317.084769: cpu_idle: state=4294967295 cpu_id=0
107379<...>-8951 ( 8858) [001] d..2 82317.084770: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
107380          <idle>-0     (-----) [000] d..2 82317.084775: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
107381<...>-8951 ( 8858) [001] d..3 82317.084779: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
107382<...>-8951 ( 8858) [001] d..2 82317.084798: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
107383    RenderThread-9436  ( 9105) [001] .... 82317.084801: binder_transaction_received: transaction=1572098
107384 kgsl_worker_thr-258   (  258) [000] d..2 82317.084811: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107385          <idle>-0     (-----) [000] d..1 82317.084818: cpu_idle: state=0 cpu_id=0
107386<...>-9005 ( 8943) [003] d..3 82317.084887: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
107387<...>-9005 ( 8943) [003] d..4 82317.084902: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
107388          <idle>-0     (-----) [000] .n.1 82317.084907: cpu_idle: state=4294967295 cpu_id=0
107389          <idle>-0     (-----) [000] d..2 82317.084913: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
107390<...>-9039 ( 8943) [000] d..2 82317.084980: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107391          <idle>-0     (-----) [000] d..1 82317.084988: cpu_idle: state=0 cpu_id=0
107392          <idle>-0     (-----) [002] ...1 82317.085070: cpu_idle: state=4294967295 cpu_id=2
107393          <idle>-0     (-----) [002] d..1 82317.085072: cpu_idle: state=0 cpu_id=2
107394<...>-9005 ( 8943) [003] .... 82317.085448: binder_transaction: transaction=1572099 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
107395<...>-9005 ( 8943) [003] .... 82317.085451: binder_transaction_alloc_buf: transaction=1572099 data_size=96 offsets_size=0
107396<...>-9005 ( 8943) [003] d..4 82317.085454: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=001
107397<...>-9005 ( 8943) [003] d..5 82317.085472: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=000
107398          <idle>-0     (-----) [000] .n.1 82317.085477: cpu_idle: state=4294967295 cpu_id=0
107399          <idle>-0     (-----) [000] d..2 82317.085485: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
107400<...>-9380 ( 9105) [000] .... 82317.085490: binder_transaction_received: transaction=1572099
107401    RenderThread-9436  ( 9105) [001] d..1 82317.085542: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
107402<...>-9005 ( 8943) [003] d..3 82317.085543: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
107403    RenderThread-9436  ( 9105) [001] d..2 82317.085562: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
107404          <idle>-0     (-----) [002] .n.1 82317.085567: cpu_idle: state=4294967295 cpu_id=2
107405          <idle>-0     (-----) [006] dnh2 82317.085569: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
107406          <idle>-0     (-----) [006] .n.1 82317.085572: cpu_idle: state=4294967295 cpu_id=6
107407          <idle>-0     (-----) [002] d..2 82317.085574: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
107408          <idle>-0     (-----) [006] d..2 82317.085579: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
107409    RenderThread-9436  ( 9105) [001] .... 82317.085590: binder_transaction: transaction=1572100 dest_node=410793 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
107410    RenderThread-9436  ( 9105) [001] .... 82317.085592: binder_transaction_alloc_buf: transaction=1572100 data_size=104 offsets_size=0
107411    RenderThread-9436  ( 9105) [001] d..4 82317.085595: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
107412    RenderThread-9436  ( 9105) [001] d..5 82317.085602: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
107413<...>-9380 ( 9105) [000] d..2 82317.085606: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107414    RenderThread-9436  ( 9105) [001] d..2 82317.085610: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
107415<...>-8951 ( 8858) [001] .... 82317.085613: binder_transaction_received: transaction=1572100
107416          <idle>-0     (-----) [000] d..1 82317.085616: cpu_idle: state=0 cpu_id=0
107417<...>-8962 ( 8943) [006] d..3 82317.085631: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
107418<...>-8951 ( 8858) [001] .... 82317.085649: binder_transaction: transaction=1572101 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
107419          <idle>-0     (-----) [000] dnh2 82317.085651: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
107420<...>-8951 ( 8858) [001] .... 82317.085652: binder_transaction_alloc_buf: transaction=1572101 data_size=52 offsets_size=8
107421          <idle>-0     (-----) [000] .n.1 82317.085655: cpu_idle: state=4294967295 cpu_id=0
107422<...>-8951 ( 8858) [001] d..2 82317.085657: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
107423          <idle>-0     (-----) [000] d..2 82317.085662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
107424<...>-8951 ( 8858) [001] d..3 82317.085665: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
107425<...>-8962 ( 8943) [006] d..2 82317.085668: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
107426          <idle>-0     (-----) [006] d..1 82317.085674: cpu_idle: state=0 cpu_id=6
107427<...>-8951 ( 8858) [001] d..2 82317.085685: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
107428    RenderThread-9436  ( 9105) [001] .... 82317.085688: binder_transaction_received: transaction=1572101
107429<...>-9105 ( 9105) [002] d..1 82317.085697: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=002
107430   system_server-8943  ( 8943) [000] .... 82317.085727: binder_transaction: transaction=1572102 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
107431   system_server-8943  ( 8943) [000] .... 82317.085730: binder_transaction_alloc_buf: transaction=1572102 data_size=96 offsets_size=0
107432   system_server-8943  ( 8943) [000] d..4 82317.085733: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=000
107433          <idle>-0     (-----) [006] dnh2 82317.085750: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=006
107434          <idle>-0     (-----) [006] .n.1 82317.085753: cpu_idle: state=4294967295 cpu_id=6
107435          <idle>-0     (-----) [006] d..2 82317.085760: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
107436          <idle>-0     (-----) [007] dnh2 82317.085795: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
107437          <idle>-0     (-----) [007] .n.1 82317.085799: cpu_idle: state=4294967295 cpu_id=7
107438          <idle>-0     (-----) [007] d..2 82317.085805: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
107439<...>-9380 ( 9105) [007] .... 82317.085807: binder_transaction_received: transaction=1572102
107440   system_server-8943  ( 8943) [000] d..2 82317.085835: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107441          <idle>-0     (-----) [000] d..1 82317.085845: cpu_idle: state=0 cpu_id=0
107442<...>-9321 ( 9105) [006] .... 82317.085864: binder_transaction: transaction=1572103 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x84
107443<...>-9321 ( 9105) [006] .... 82317.085867: binder_transaction_alloc_buf: transaction=1572103 data_size=76 offsets_size=0
107444<...>-9321 ( 9105) [006] d..4 82317.085870: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
107445<...>-9105 ( 9105) [002] d..2 82317.085879: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107446<...>-9380 ( 9105) [007] d..2 82317.085887: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
107447          <idle>-0     (-----) [002] d..1 82317.085888: cpu_idle: state=0 cpu_id=2
107448<...>-9321 ( 9105) [006] d..5 82317.085892: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
107449          <idle>-0     (-----) [007] d..1 82317.085895: cpu_idle: state=0 cpu_id=7
107450<...>-9321 ( 9105) [006] d..2 82317.085921: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
107451<...>-11815 ( 8943) [006] .... 82317.085928: binder_transaction_received: transaction=1572103
107452<...>-9005 ( 8943) [003] .... 82317.085987: binder_transaction: transaction=1572104 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
107453<...>-9005 ( 8943) [003] .... 82317.085991: binder_transaction_alloc_buf: transaction=1572104 data_size=3116 offsets_size=176
107454<...>-9005 ( 8943) [003] ...2 82317.086021: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
107455<...>-9005 ( 8943) [003] d..4 82317.086024: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=001
107456<...>-9005 ( 8943) [003] dn.5 82317.086038: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=003
107457<...>-9005 ( 8943) [003] d..2 82317.086044: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107458<...>-8951 ( 8858) [003] .... 82317.086048: binder_transaction_received: transaction=1572104
107459<...>-11815 ( 8943) [006] .... 82317.086126: binder_transaction: transaction=1572105 dest_node=0 dest_proc=9105 dest_thread=9321 reply=1 flags=0x0 code=0x0
107460<...>-11815 ( 8943) [006] .... 82317.086130: binder_transaction_alloc_buf: transaction=1572105 data_size=8 offsets_size=0
107461<...>-11815 ( 8943) [006] d..2 82317.086131: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=006
107462<...>-11815 ( 8943) [006] d..3 82317.086138: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=006
107463<...>-11815 ( 8943) [006] d..2 82317.086155: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
107464<...>-9321 ( 9105) [006] .... 82317.086161: binder_transaction_received: transaction=1572105
107465<...>-8951 ( 8858) [003] .... 82317.086202: binder_transaction: transaction=1572106 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
107466<...>-8951 ( 8858) [003] .... 82317.086204: binder_transaction_alloc_buf: transaction=1572106 data_size=0 offsets_size=0
107467<...>-8951 ( 8858) [003] .... 82317.086207: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107468<...>-8951 ( 8858) [003] d..2 82317.086249: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107469<...>-9005 ( 8943) [003] .... 82317.086254: binder_transaction_received: transaction=1572106
107470<...>-9321 ( 9105) [006] .... 82317.086285: binder_transaction: transaction=1572107 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x37
107471<...>-9321 ( 9105) [006] .... 82317.086287: binder_transaction_alloc_buf: transaction=1572107 data_size=76 offsets_size=0
107472<...>-9321 ( 9105) [006] d..4 82317.086289: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
107473<...>-9321 ( 9105) [006] d..5 82317.086296: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
107474<...>-9321 ( 9105) [006] d..2 82317.086302: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
107475<...>-11815 ( 8943) [006] .... 82317.086307: binder_transaction_received: transaction=1572107
107476<...>-11815 ( 8943) [006] d..2 82317.086426: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
107477          <idle>-0     (-----) [006] d..1 82317.086436: cpu_idle: state=0 cpu_id=6
107478<...>-9005 ( 8943) [003] .... 82317.086527: binder_transaction: transaction=1572108 dest_node=1160015 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x1
107479<...>-9005 ( 8943) [003] .... 82317.086532: binder_transaction_alloc_buf: transaction=1572108 data_size=2052 offsets_size=56
107480<...>-9005 ( 8943) [003] d..4 82317.086583: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
107481          <idle>-0     (-----) [004] dnh2 82317.086604: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
107482          <idle>-0     (-----) [004] .n.1 82317.086608: cpu_idle: state=4294967295 cpu_id=4
107483          <idle>-0     (-----) [004] d..2 82317.086614: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
107484  Binder:10023_2-10088 (10023) [004] .... 82317.086622: binder_transaction_received: transaction=1572108
107485  Binder:10023_2-10088 (10023) [004] .... 82317.086777: binder_transaction: transaction=1572115 dest_node=1572080 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
107486  Binder:10023_2-10088 (10023) [004] .... 82317.086780: binder_transaction_alloc_buf: transaction=1572115 data_size=80 offsets_size=0
107487  Binder:10023_2-10088 (10023) [004] d..4 82317.086782: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
107488  Binder:10023_2-10088 (10023) [004] d..5 82317.086797: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
107489<...>-9005 ( 8943) [003] d.h1 82317.086812: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
107490  Binder:10023_2-10088 (10023) [004] d.h5 82317.086824: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=004
107491  Binder:10023_2-10088 (10023) [004] d.h6 82317.086838: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
107492<...>-9005 ( 8943) [003] d.h2 82317.086841: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
107493          <idle>-0     (-----) [005] .n.1 82317.086844: cpu_idle: state=4294967295 cpu_id=5
107494  Binder:10023_2-10088 (10023) [004] d..2 82317.086846: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
107495          <idle>-0     (-----) [000] .n.1 82317.086846: cpu_idle: state=4294967295 cpu_id=0
107496          <idle>-0     (-----) [005] d..2 82317.086850: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
107497<...>-8951 ( 8858) [004] .... 82317.086852: binder_transaction_received: transaction=1572115
107498          <idle>-0     (-----) [000] d..2 82317.086853: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
107499<...>-8951 ( 8858) [004] .... 82317.086865: binder_transaction: transaction=1572116 dest_node=0 dest_proc=10023 dest_thread=10088 reply=1 flags=0x8 code=0x0
107500<...>-8951 ( 8858) [004] .... 82317.086867: binder_transaction_alloc_buf: transaction=1572116 data_size=4 offsets_size=0
107501<...>-8951 ( 8858) [004] d..2 82317.086868: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
107502        DispSync-8879  ( 8858) [000] d..1 82317.086870: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
107503<...>-8951 ( 8858) [004] d..3 82317.086874: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
107504         sugov:4-577   (  577) [005] .... 82317.086874: clk_set_rate: perfcl_clk 1209600000
107505         sugov:4-577   (  577) [005] .... 82317.086876: clk_set_rate: cpu7_perfcl_clk 1363200000
107506         sugov:4-577   (  577) [005] .... 82317.086881: clk_set_rate: cpu6_perfcl_clk 1363200000
107507         sugov:4-577   (  577) [005] .... 82317.086886: clk_set_rate: cpu5_perfcl_clk 1363200000
107508<...>-8951 ( 8858) [004] d..2 82317.086886: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
107509        DispSync-8879  ( 8858) [000] d..2 82317.086889: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
107510  Binder:10023_2-10088 (10023) [004] .... 82317.086890: binder_transaction_received: transaction=1572116
107511         sugov:4-577   (  577) [005] .... 82317.086890: clk_set_rate: cpu4_perfcl_clk 1209600000
107512          <idle>-0     (-----) [002] .n.1 82317.086895: cpu_idle: state=4294967295 cpu_id=2
107513         sugov:4-577   (  577) [005] .... 82317.086895: cpu_frequency: state=1209600 cpu_id=4
107514          <idle>-0     (-----) [002] d..2 82317.086901: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
107515         sugov:4-577   (  577) [005] .... 82317.086908: cpu_frequency: state=1209600 cpu_id=5
107516        DispSync-8879  ( 8858) [000] d..2 82317.086908: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107517         sugov:4-577   (  577) [005] .... 82317.086911: cpu_frequency: state=1209600 cpu_id=6
107518         sugov:4-577   (  577) [005] .... 82317.086913: cpu_frequency: state=1209600 cpu_id=7
107519          <idle>-0     (-----) [000] d..1 82317.086916: cpu_idle: state=0 cpu_id=0
107520         sugov:4-577   (  577) [005] d..2 82317.086928: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
107521          <idle>-0     (-----) [005] d..1 82317.086937: cpu_idle: state=0 cpu_id=5
107522   sfEventThread-8882  ( 8858) [002] d..3 82317.086943: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
107523   sfEventThread-8882  ( 8858) [002] d..4 82317.086960: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
107524          <idle>-0     (-----) [000] .n.1 82317.086965: cpu_idle: state=4294967295 cpu_id=0
107525          <idle>-0     (-----) [000] d..2 82317.086971: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
107526  Binder:10023_2-10088 (10023) [004] .... 82317.086990: binder_transaction: transaction=1572117 dest_node=1572071 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x5f474854
107527   sfEventThread-8882  ( 8858) [002] d..2 82317.086990: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107528  Binder:10023_2-10088 (10023) [004] .... 82317.086992: binder_transaction_alloc_buf: transaction=1572117 data_size=80 offsets_size=0
107529  Binder:10023_2-10088 (10023) [004] d..4 82317.086994: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
107530          <idle>-0     (-----) [002] d..1 82317.086999: cpu_idle: state=0 cpu_id=2
107531  Binder:10023_2-10088 (10023) [004] d..5 82317.087001: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
107532  Binder:10023_2-10088 (10023) [004] d..2 82317.087007: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
107533<...>-8951 ( 8858) [004] .... 82317.087013: binder_transaction_received: transaction=1572117
107534<...>-8951 ( 8858) [004] .... 82317.087025: binder_transaction: transaction=1572118 dest_node=0 dest_proc=10023 dest_thread=10088 reply=1 flags=0x8 code=0x0
107535<...>-8951 ( 8858) [004] .... 82317.087027: binder_transaction_alloc_buf: transaction=1572118 data_size=4 offsets_size=0
107536<...>-8951 ( 8858) [004] d..2 82317.087029: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
107537<...>-8951 ( 8858) [004] d..3 82317.087035: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
107538<...>-8951 ( 8858) [004] d..2 82317.087048: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
107539  Binder:10023_2-10088 (10023) [004] .... 82317.087053: binder_transaction_received: transaction=1572118
107540    RenderThread-9436  ( 9105) [001] d..2 82317.087074: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
107541          <idle>-0     (-----) [001] d..1 82317.087085: cpu_idle: state=0 cpu_id=1
107542          <idle>-0     (-----) [001] d.h2 82317.087165: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
107543          <idle>-0     (-----) [001] d.h3 82317.087173: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
107544          <idle>-0     (-----) [001] dnh3 82317.087176: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
107545          <idle>-0     (-----) [001] .n.1 82317.087181: cpu_idle: state=4294967295 cpu_id=1
107546          <idle>-0     (-----) [001] d..2 82317.087188: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
107547<...>-9005 ( 8943) [003] d..3 82317.087277: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
107548  Binder:10023_2-10088 (10023) [004] d..2 82317.087291: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
107549<...>-9005 ( 8943) [003] d..4 82317.087296: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
107550          <idle>-0     (-----) [004] d..1 82317.087301: cpu_idle: state=0 cpu_id=4
107551          <idle>-0     (-----) [002] .n.1 82317.087301: cpu_idle: state=4294967295 cpu_id=2
107552          <idle>-0     (-----) [002] d..2 82317.087308: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
107553  surfaceflinger-8858  ( 8858) [000] d.h2 82317.087332: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
107554<...>-9039 ( 8943) [002] d..2 82317.087341: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107555          <idle>-0     (-----) [002] d..1 82317.087348: cpu_idle: state=0 cpu_id=2
107556          <idle>-0     (-----) [002] .n.1 82317.087350: cpu_idle: state=4294967295 cpu_id=2
107557  surfaceflinger-8858  ( 8858) [000] d.h3 82317.087352: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
107558          <idle>-0     (-----) [002] d..2 82317.087359: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
107559 kgsl_worker_thr-258   (  258) [002] d..2 82317.087399: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107560          <idle>-0     (-----) [002] d..1 82317.087405: cpu_idle: state=0 cpu_id=2
107561    RenderThread-9436  ( 9105) [001] .... 82317.087436: binder_transaction: transaction=1572119 dest_node=410793 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
107562    RenderThread-9436  ( 9105) [001] .... 82317.087438: binder_transaction_alloc_buf: transaction=1572119 data_size=192 offsets_size=8
107563    RenderThread-9436  ( 9105) [001] d..4 82317.087444: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
107564    RenderThread-9436  ( 9105) [001] dn.5 82317.087461: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
107565    RenderThread-9436  ( 9105) [001] d..2 82317.087494: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
107566<...>-8951 ( 8858) [001] .... 82317.087498: binder_transaction_received: transaction=1572119
107567  surfaceflinger-8858  ( 8858) [000] d..1 82317.087523: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
107568  surfaceflinger-8858  ( 8858) [000] d..2 82317.087535: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
107569          <idle>-0     (-----) [002] .n.1 82317.087539: cpu_idle: state=4294967295 cpu_id=2
107570          <idle>-0     (-----) [002] d..2 82317.087545: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
107571   sfEventThread-8882  ( 8858) [002] d..2 82317.087575: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107572<...>-8951 ( 8858) [001] .... 82317.087576: binder_transaction: transaction=1572120 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
107573<...>-8951 ( 8858) [001] .... 82317.087579: binder_transaction_alloc_buf: transaction=1572120 data_size=68 offsets_size=0
107574          <idle>-0     (-----) [002] d..1 82317.087581: cpu_idle: state=0 cpu_id=2
107575<...>-8951 ( 8858) [001] d..2 82317.087601: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
107576    RenderThread-9436  ( 9105) [001] .... 82317.087606: binder_transaction_received: transaction=1572120
107577<...>-9005 ( 8943) [003] .... 82317.087611: binder_transaction: transaction=1572121 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
107578<...>-9005 ( 8943) [003] .... 82317.087614: binder_transaction_alloc_buf: transaction=1572121 data_size=96 offsets_size=0
107579<...>-9005 ( 8943) [003] d..4 82317.087618: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
107580          <idle>-0     (-----) [007] dnh2 82317.087635: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
107581          <idle>-0     (-----) [007] .n.1 82317.087638: cpu_idle: state=4294967295 cpu_id=7
107582          <idle>-0     (-----) [007] d..2 82317.087644: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
107583<...>-9380 ( 9105) [007] .... 82317.087646: binder_transaction_received: transaction=1572121
107584    RenderThread-9436  ( 9105) [001] d..2 82317.087666: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107585          <idle>-0     (-----) [001] d..1 82317.087677: cpu_idle: state=0 cpu_id=1
107586<...>-9005 ( 8943) [003] d..3 82317.087684: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
107587          <idle>-0     (-----) [006] dnh2 82317.087702: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
107588          <idle>-0     (-----) [006] .n.1 82317.087706: cpu_idle: state=4294967295 cpu_id=6
107589<...>-9380 ( 9105) [007] d..2 82317.087713: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
107590          <idle>-0     (-----) [006] d..2 82317.087713: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
107591          <idle>-0     (-----) [007] d..1 82317.087720: cpu_idle: state=0 cpu_id=7
107592<...>-8962 ( 8943) [006] d..3 82317.087754: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
107593          <idle>-0     (-----) [001] dnh2 82317.087778: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=001
107594          <idle>-0     (-----) [001] .n.1 82317.087783: cpu_idle: state=4294967295 cpu_id=1
107595          <idle>-0     (-----) [001] d..2 82317.087789: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
107596<...>-8962 ( 8943) [006] d..2 82317.087797: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
107597          <idle>-0     (-----) [006] d..1 82317.087804: cpu_idle: state=0 cpu_id=6
107598   system_server-8943  ( 8943) [001] .... 82317.087854: binder_transaction: transaction=1572122 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
107599   system_server-8943  ( 8943) [001] .... 82317.087857: binder_transaction_alloc_buf: transaction=1572122 data_size=96 offsets_size=0
107600   system_server-8943  ( 8943) [001] d..4 82317.087860: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
107601          <idle>-0     (-----) [007] dnh2 82317.087877: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
107602          <idle>-0     (-----) [007] .n.1 82317.087880: cpu_idle: state=4294967295 cpu_id=7
107603          <idle>-0     (-----) [007] d..2 82317.087885: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
107604<...>-9380 ( 9105) [007] .... 82317.087888: binder_transaction_received: transaction=1572122
107605<...>-9005 ( 8943) [003] .... 82317.087912: binder_transaction: transaction=1572123 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
107606   system_server-8943  ( 8943) [001] d..2 82317.087912: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107607<...>-9005 ( 8943) [003] .... 82317.087915: binder_transaction_alloc_buf: transaction=1572123 data_size=380 offsets_size=16
107608          <idle>-0     (-----) [001] d..1 82317.087921: cpu_idle: state=0 cpu_id=1
107609<...>-9005 ( 8943) [003] ...2 82317.087923: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
107610<...>-9005 ( 8943) [003] d..4 82317.087926: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=001
107611<...>-9005 ( 8943) [003] dn.5 82317.087940: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=003
107612<...>-9005 ( 8943) [003] d..2 82317.087946: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107613<...>-8951 ( 8858) [003] .... 82317.087950: binder_transaction_received: transaction=1572123
107614<...>-9380 ( 9105) [007] d..2 82317.087956: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
107615          <idle>-0     (-----) [007] d..1 82317.087963: cpu_idle: state=0 cpu_id=7
107616<...>-8951 ( 8858) [003] .... 82317.087991: binder_transaction: transaction=1572124 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
107617<...>-8951 ( 8858) [003] .... 82317.087993: binder_transaction_alloc_buf: transaction=1572124 data_size=0 offsets_size=0
107618<...>-8951 ( 8858) [003] .... 82317.087995: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107619<...>-8951 ( 8858) [003] d..2 82317.088023: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107620<...>-9005 ( 8943) [003] .... 82317.088027: binder_transaction_received: transaction=1572124
107621  surfaceflinger-8858  ( 8858) [000] ...1 82317.088183: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
107622  surfaceflinger-8858  ( 8858) [000] ...1 82317.088188: tracing_mark_write: E|8858
107623  surfaceflinger-8858  ( 8858) [000] .... 82317.088227: binder_transaction: transaction=1572125 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
107624  surfaceflinger-8858  ( 8858) [000] .... 82317.088230: binder_transaction_alloc_buf: transaction=1572125 data_size=540 offsets_size=96
107625  surfaceflinger-8858  ( 8858) [000] ...2 82317.088248: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
107626  surfaceflinger-8858  ( 8858) [000] d..4 82317.088255: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
107627  surfaceflinger-8858  ( 8858) [000] d..5 82317.088272: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
107628          <idle>-0     (-----) [001] .n.1 82317.088277: cpu_idle: state=4294967295 cpu_id=1
107629          <idle>-0     (-----) [001] d..2 82317.088283: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
107630  surfaceflinger-8858  ( 8858) [000] d..2 82317.088288: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107631 [email protected]   (  619) [001] .... 82317.088291: binder_transaction_received: transaction=1572125
107632          <idle>-0     (-----) [000] d..1 82317.088298: cpu_idle: state=0 cpu_id=0
107633 [email protected]   (  619) [001] ...1 82317.088337: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
107634<...>-9005 ( 8943) [003] d.s1 82317.088467: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
107635 [email protected]   (  619) [001] ...1 82317.088476: tracing_mark_write: B|619|HWCSession::PresentDisplay::
107636<...>-9005 ( 8943) [003] d.s2 82317.088493: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
107637<...>-9005 ( 8943) [003] d.s1 82317.088496: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
107638<...>-9005 ( 8943) [003] d.s2 82317.088513: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
107639<...>-9005 ( 8943) [003] d.s2 82317.088519: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
107640<...>-9005 ( 8943) [003] d.s3 82317.088527: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
107641 [email protected]   (  619) [001] ...1 82317.088607: tracing_mark_write: B|619|HWDeviceDRM::Commit::
107642 [email protected]   (  619) [001] ...1 82317.088616: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
107643<...>-9005 ( 8943) [003] d..3 82317.088754: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
107644<...>-9005 ( 8943) [003] d..4 82317.088765: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
107645          <idle>-0     (-----) [002] .n.1 82317.088770: cpu_idle: state=4294967295 cpu_id=2
107646          <idle>-0     (-----) [002] d..2 82317.088777: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
107647<...>-9039 ( 8943) [002] d..2 82317.088805: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107648          <idle>-0     (-----) [002] d..1 82317.088811: cpu_idle: state=0 cpu_id=2
107649<...>-9005 ( 8943) [003] d..1 82317.088813: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
107650          <idle>-0     (-----) [004] dnh2 82317.088838: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
107651          <idle>-0     (-----) [004] .n.1 82317.088841: cpu_idle: state=4294967295 cpu_id=4
107652          <idle>-0     (-----) [004] d..2 82317.088848: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
107653<...>-8969 ( 8943) [004] d..1 82317.088917: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
107654<...>-8969 ( 8943) [004] d..1 82317.088966: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=003
107655<...>-9005 ( 8943) [003] d..2 82317.088967: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
107656          <idle>-0     (-----) [000] dnh2 82317.088968: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=000
107657          <idle>-0     (-----) [000] .n.1 82317.088972: cpu_idle: state=4294967295 cpu_id=0
107658          <idle>-0     (-----) [000] d..2 82317.088979: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
107659<...>-8969 ( 8943) [004] d..2 82317.088984: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
107660          <idle>-0     (-----) [005] .n.1 82317.088988: cpu_idle: state=4294967295 cpu_id=5
107661          <idle>-0     (-----) [005] d..2 82317.089007: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
107662<...>-9062 ( 8943) [000] d..1 82317.089022: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
107663<...>-9005 ( 8943) [005] d..2 82317.089028: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
107664 [email protected]   (  619) [001] d..2 82317.089034: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
107665<...>-9062 ( 8943) [000] d..2 82317.089044: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
107666          <idle>-0     (-----) [002] .n.1 82317.089049: cpu_idle: state=4294967295 cpu_id=2
107667          <idle>-0     (-----) [005] d..1 82317.089050: cpu_idle: state=0 cpu_id=5
107668          <idle>-0     (-----) [002] d..2 82317.089079: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
107669          <idle>-0     (-----) [005] ...1 82317.089080: cpu_idle: state=4294967295 cpu_id=5
107670 [email protected]   (  619) [001] d..3 82317.089081: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
107671          <idle>-0     (-----) [005] d..1 82317.089082: cpu_idle: state=0 cpu_id=5
107672<...>-8969 ( 8943) [004] d..2 82317.089086: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
107673  kworker/u16:15-1311  ( 1311) [003] d..2 82317.089087: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
107674          <idle>-0     (-----) [004] d..1 82317.089095: cpu_idle: state=0 cpu_id=4
107675<...>-11815 ( 8943) [002] d..1 82317.089122: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
107676          <idle>-0     (-----) [005] dnh2 82317.089137: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
107677          <idle>-0     (-----) [005] .n.1 82317.089140: cpu_idle: state=4294967295 cpu_id=5
107678          <idle>-0     (-----) [005] d..2 82317.089145: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
107679 [email protected]   (  619) [001] ...1 82317.089154: tracing_mark_write: E|619
107680 [email protected]   (  619) [001] ...1 82317.089157: tracing_mark_write: E|619
107681<...>-9062 ( 8943) [000] .... 82317.089174: binder_transaction: transaction=1572126 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x3
107682<...>-9062 ( 8943) [000] .... 82317.089178: binder_transaction_alloc_buf: transaction=1572126 data_size=88 offsets_size=0
107683<...>-9062 ( 8943) [000] d..4 82317.089183: sched_waking: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=000
107684<...>-9005 ( 8943) [005] .... 82317.089189: binder_transaction: transaction=1572127 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
107685<...>-9005 ( 8943) [005] .... 82317.089192: binder_transaction_alloc_buf: transaction=1572127 data_size=80 offsets_size=0
107686<...>-9005 ( 8943) [005] d..4 82317.089194: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
107687 [email protected]   (  619) [001] ...1 82317.089201: tracing_mark_write: E|619
107688<...>-11815 ( 8943) [002] d..2 82317.089206: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107689<...>-9062 ( 8943) [000] d..5 82317.089209: sched_wakeup: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=001
107690<...>-9005 ( 8943) [005] d..5 82317.089213: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
107691          <idle>-0     (-----) [002] d..1 82317.089215: cpu_idle: state=0 cpu_id=2
107692          <idle>-0     (-----) [004] .n.1 82317.089218: cpu_idle: state=4294967295 cpu_id=4
107693 [email protected]   (  619) [001] ...1 82317.089237: tracing_mark_write: E|619
107694          <idle>-0     (-----) [004] d..2 82317.089239: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
107695<...>-8951 ( 8858) [004] .... 82317.089246: binder_transaction_received: transaction=1572127
107696 [email protected]   (  619) [001] .... 82317.089247: binder_transaction: transaction=1572128 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
107697<...>-9005 ( 8943) [005] d..1 82317.089247: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
107698 [email protected]   (  619) [001] .... 82317.089250: binder_transaction_alloc_buf: transaction=1572128 data_size=576 offsets_size=112
107699 [email protected]   (  619) [001] d..2 82317.089261: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
107700<...>-8951 ( 8858) [004] d..1 82317.089262: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
107701<...>-9062 ( 8943) [000] .... 82317.089263: binder_transaction: transaction=1572129 dest_node=1568540 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x4
107702          <idle>-0     (-----) [002] dnh2 82317.089263: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
107703<...>-9062 ( 8943) [000] .... 82317.089266: binder_transaction_alloc_buf: transaction=1572129 data_size=108 offsets_size=0
107704          <idle>-0     (-----) [002] .n.1 82317.089270: cpu_idle: state=4294967295 cpu_id=2
107705<...>-9062 ( 8943) [000] dn.4 82317.089271: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=005
107706 [email protected]   (  619) [001] d..3 82317.089271: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
107707 [email protected]   (  619) [001] .... 82317.089277: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
107708          <idle>-0     (-----) [002] d..2 82317.089280: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
107709<...>-9062 ( 8943) [000] dnh4 82317.089295: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
107710<...>-11815 ( 8943) [002] d..2 82317.089296: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107711          <idle>-0     (-----) [006] dnh2 82317.089297: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=006
107712          <idle>-0     (-----) [006] .n.1 82317.089301: cpu_idle: state=4294967295 cpu_id=6
107713<...>-9062 ( 8943) [000] d..2 82317.089302: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
107714          <idle>-0     (-----) [002] d..1 82317.089302: cpu_idle: state=0 cpu_id=2
107715<...>-8951 ( 8858) [004] d..2 82317.089304: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
107716          <idle>-0     (-----) [006] d..2 82317.089307: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
107717          <idle>-0     (-----) [004] d..1 82317.089311: cpu_idle: state=0 cpu_id=4
107718           <...>-27564 (-----) [006] .... 82317.089316: binder_transaction_received: transaction=1572129
107719 [email protected]   (  619) [001] d..2 82317.089321: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=Binder:9090_5 next_pid=10478 next_prio=120
107720          <idle>-0     (-----) [002] .n.1 82317.089325: cpu_idle: state=4294967295 cpu_id=2
107721   Binder:9090_5-10478 ( 9090) [001] .... 82317.089328: binder_transaction_received: transaction=1572126
107722          <idle>-0     (-----) [002] d..2 82317.089330: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
107723  surfaceflinger-8858  ( 8858) [002] .... 82317.089335: binder_transaction_received: transaction=1572128
107724   sfEventThread-8882  ( 8858) [000] d..2 82317.089339: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
107725<...>-9062 ( 8943) [000] .... 82317.089380: binder_transaction: transaction=1572130 dest_node=1568540 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x3
107726<...>-9062 ( 8943) [000] .... 82317.089383: binder_transaction_alloc_buf: transaction=1572130 data_size=108 offsets_size=0
107727<...>-9062 ( 8943) [000] d..3 82317.089415: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=001
107728           <...>-27564 (-----) [006] d..3 82317.089438: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
107729          <idle>-0     (-----) [007] dnh2 82317.089463: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
107730   Binder:9090_5-10478 ( 9090) [001] d..3 82317.089464: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
107731          <idle>-0     (-----) [007] .n.1 82317.089466: cpu_idle: state=4294967295 cpu_id=7
107732          <idle>-0     (-----) [007] d..2 82317.089472: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
107733   Binder:9090_5-10478 ( 9090) [001] d..4 82317.089489: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
107734<...>-9062 ( 8943) [000] d.h1 82317.089490: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=000
107735<...>-9005 ( 8943) [005] .... 82317.089504: binder_transaction: transaction=1572131 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
107736<...>-9005 ( 8943) [005] .... 82317.089507: binder_transaction_alloc_buf: transaction=1572131 data_size=988 offsets_size=48
107737<...>-9062 ( 8943) [000] .... 82317.089517: binder_transaction: transaction=1572132 dest_node=1160142 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x4
107738<...>-9005 ( 8943) [005] ...2 82317.089518: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
107739<...>-9005 ( 8943) [005] d..4 82317.089520: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
107740<...>-9062 ( 8943) [000] .... 82317.089521: binder_transaction_alloc_buf: transaction=1572132 data_size=108 offsets_size=0
107741<...>-9062 ( 8943) [000] d..4 82317.089524: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
107742   Binder:9090_5-10478 ( 9090) [001] d..2 82317.089527: sched_switch: prev_comm=Binder:9090_5 prev_pid=10478 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
107743<...>-9005 ( 8943) [005] dn.5 82317.089532: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
107744<...>-9005 ( 8943) [005] d..2 82317.089538: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107745<...>-8951 ( 8858) [005] .... 82317.089544: binder_transaction_received: transaction=1572131
107746          <idle>-0     (-----) [004] dnh2 82317.089545: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
107747          <idle>-0     (-----) [004] .n.1 82317.089548: cpu_idle: state=4294967295 cpu_id=4
107748   system_server-8943  ( 8943) [007] .... 82317.089549: binder_transaction: transaction=1572133 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xb
107749   system_server-8943  ( 8943) [007] .... 82317.089552: binder_transaction_alloc_buf: transaction=1572133 data_size=128 offsets_size=8
107750          <idle>-0     (-----) [004] d..2 82317.089553: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
107751   system_server-8943  ( 8943) [007] d..4 82317.089559: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
107752  Binder:10023_2-10088 (10023) [004] .... 82317.089560: binder_transaction_received: transaction=1572132
107753           <...>-27564 (-----) [006] d..4 82317.089574: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
107754   system_server-8943  ( 8943) [007] d..5 82317.089579: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=006
107755<...>-9062 ( 8943) [000] .... 82317.089587: binder_transaction: transaction=1572134 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x2
107756<...>-9062 ( 8943) [000] .... 82317.089590: binder_transaction_alloc_buf: transaction=1572134 data_size=124 offsets_size=8
107757           <...>-27564 (-----) [006] .... 82317.089597: binder_transaction_received: transaction=1572130
107758<...>-8951 ( 8858) [005] .... 82317.089598: binder_transaction: transaction=1572135 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
107759<...>-9062 ( 8943) [000] d..4 82317.089599: sched_waking: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=001
107760<...>-8951 ( 8858) [005] .... 82317.089600: binder_transaction_alloc_buf: transaction=1572135 data_size=0 offsets_size=0
107761<...>-8951 ( 8858) [005] .... 82317.089601: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107762<...>-9090 ( 9090) [001] d.h1 82317.089603: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
107763<...>-9062 ( 8943) [000] d..5 82317.089623: sched_wakeup: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=000
107764   system_server-8943  ( 8943) [007] d..2 82317.089626: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
107765<...>-8951 ( 8858) [005] d..2 82317.089629: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107766  surfaceflinger-8858  ( 8858) [002] d..2 82317.089630: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107767<...>-9090 ( 9090) [001] d..2 82317.089630: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
107768<...>-9380 ( 9105) [007] .... 82317.089632: binder_transaction_received: transaction=1572133
107769<...>-9005 ( 8943) [005] .... 82317.089636: binder_transaction_received: transaction=1572135
107770          <idle>-0     (-----) [002] d..1 82317.089640: cpu_idle: state=0 cpu_id=2
107771           <...>-27562 (-----) [001] d..2 82317.089642: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
107772  Binder:10023_2-10088 (10023) [004] d..2 82317.089649: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
107773     rcu_preempt-7     (    7) [001] d..2 82317.089653: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=002
107774          <idle>-0     (-----) [004] d..1 82317.089659: cpu_idle: state=0 cpu_id=4
107775     rcu_preempt-7     (    7) [001] d..3 82317.089677: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
107776     rcu_preempt-7     (    7) [001] d..2 82317.089679: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
107777     rcu_preempt-7     (    7) [001] d..3 82317.089689: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
107778     rcu_preempt-7     (    7) [001] d..2 82317.089691: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
107779 crtc_commit:111-321   (  321) [003] d..2 82317.089702: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
107780           <...>-27564 (-----) [006] d..2 82317.089706: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
107781<...>-9062 ( 8943) [000] .... 82317.089708: binder_transaction: transaction=1572136 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x6
107782     rcu_preempt-7     (    7) [001] d..3 82317.089710: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
107783<...>-9062 ( 8943) [000] .... 82317.089711: binder_transaction_alloc_buf: transaction=1572136 data_size=116 offsets_size=8
107784     rcu_preempt-7     (    7) [001] d..2 82317.089720: 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
107785<...>-9005 ( 8943) [005] .... 82317.089722: binder_transaction: transaction=1572137 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
107786          <idle>-0     (-----) [006] d..1 82317.089724: cpu_idle: state=0 cpu_id=6
107787<...>-9005 ( 8943) [005] .... 82317.089725: binder_transaction_alloc_buf: transaction=1572137 data_size=76 offsets_size=0
107788<...>-9005 ( 8943) [005] ...2 82317.089727: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
107789<...>-9005 ( 8943) [005] d..4 82317.089728: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
107790          <idle>-0     (-----) [006] ...1 82317.089734: cpu_idle: state=4294967295 cpu_id=6
107791         rcuop/6-61    (   61) [001] d..2 82317.089734: 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
107792<...>-9005 ( 8943) [005] dn.5 82317.089736: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
107793          <idle>-0     (-----) [006] d..1 82317.089737: cpu_idle: state=0 cpu_id=6
107794         rcuop/4-45    (   45) [001] d..2 82317.089738: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
107795<...>-9005 ( 8943) [005] d..2 82317.089741: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107796<...>-8951 ( 8858) [005] .... 82317.089746: binder_transaction_received: transaction=1572137
107797<...>-9062 ( 8943) [000] .... 82317.089753: binder_transaction: transaction=1572138 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x6
107798<...>-9062 ( 8943) [000] .... 82317.089755: binder_transaction_alloc_buf: transaction=1572138 data_size=116 offsets_size=8
107799         rcuop/4-45    (   45) [001] d..3 82317.089759: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
107800<...>-8951 ( 8858) [005] .... 82317.089763: binder_transaction: transaction=1572139 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
107801         rcuop/4-45    (   45) [001] d..2 82317.089765: 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
107802<...>-8951 ( 8858) [005] .... 82317.089765: binder_transaction_alloc_buf: transaction=1572139 data_size=0 offsets_size=0
107803  kworker/u16:15-1311  ( 1311) [003] .... 82317.089766: clk_set_rate: l3_cluster1_vote_clk 300000000
107804<...>-8951 ( 8858) [005] .... 82317.089766: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107805         rcuop/2-29    (   29) [001] d..2 82317.089769: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
107806<...>-8951 ( 8858) [005] d..2 82317.089786: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107807         rcuop/2-29    (   29) [001] d..3 82317.089789: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
107808<...>-9005 ( 8943) [005] .... 82317.089792: binder_transaction_received: transaction=1572139
107809<...>-9380 ( 9105) [007] d..2 82317.089793: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
107810         rcuop/2-29    (   29) [001] d..2 82317.089800: 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
107811          <idle>-0     (-----) [007] d..1 82317.089802: cpu_idle: state=0 cpu_id=7
107812<...>-9005 ( 8943) [005] d..1 82317.089807: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
107813         rcuop/5-53    (   53) [001] d..2 82317.089815: 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
107814          <idle>-0     (-----) [002] dnh2 82317.089825: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
107815         rcuop/3-37    (   37) [001] d..2 82317.089827: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
107816          <idle>-0     (-----) [002] .n.1 82317.089830: cpu_idle: state=4294967295 cpu_id=2
107817          <idle>-0     (-----) [002] d..2 82317.089836: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
107818<...>-9062 ( 8943) [000] .... 82317.089842: binder_transaction: transaction=1572140 dest_node=405027 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x4
107819<...>-9062 ( 8943) [000] .... 82317.089845: binder_transaction_alloc_buf: transaction=1572140 data_size=304 offsets_size=8
107820<...>-8 ( 8) [001] d..2 82317.089848: 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
107821          <idle>-0     (-----) [001] d..1 82317.089857: cpu_idle: state=0 cpu_id=1
107822<...>-11815 ( 8943) [002] d..2 82317.089869: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107823          <idle>-0     (-----) [002] d..1 82317.089875: cpu_idle: state=0 cpu_id=2
107824<...>-9005 ( 8943) [005] .... 82317.089946: binder_transaction: transaction=1572143 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
107825<...>-9005 ( 8943) [005] .... 82317.089949: binder_transaction_alloc_buf: transaction=1572143 data_size=96 offsets_size=0
107826<...>-9005 ( 8943) [005] d..4 82317.089952: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
107827<...>-9005 ( 8943) [005] d..5 82317.089962: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
107828          <idle>-0     (-----) [007] .n.1 82317.089966: cpu_idle: state=4294967295 cpu_id=7
107829          <idle>-0     (-----) [007] d..2 82317.089973: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
107830<...>-9380 ( 9105) [007] .... 82317.089975: binder_transaction_received: transaction=1572143
107831<...>-9005 ( 8943) [005] d..3 82317.090018: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
107832  kworker/u16:15-1311  ( 1311) [003] d..2 82317.090021: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
107833<...>-9005 ( 8943) [005] d..4 82317.090030: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
107834          <idle>-0     (-----) [006] .n.1 82317.090034: cpu_idle: state=4294967295 cpu_id=6
107835          <idle>-0     (-----) [006] d..2 82317.090041: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
107836<...>-9380 ( 9105) [007] d..2 82317.090044: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
107837          <idle>-0     (-----) [001] d.s3 82317.090048: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
107838          <idle>-0     (-----) [007] d..1 82317.090051: cpu_idle: state=0 cpu_id=7
107839          <idle>-0     (-----) [001] d.s4 82317.090061: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
107840          <idle>-0     (-----) [001] dns4 82317.090064: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
107841          <idle>-0     (-----) [001] .n.1 82317.090069: cpu_idle: state=4294967295 cpu_id=1
107842<...>-9062 ( 8943) [000] .... 82317.090075: binder_transaction: transaction=1572144 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
107843          <idle>-0     (-----) [001] d..2 82317.090076: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
107844<...>-9062 ( 8943) [000] .... 82317.090078: binder_transaction_alloc_buf: transaction=1572144 data_size=288 offsets_size=16
107845<...>-8962 ( 8943) [006] d..3 82317.090082: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
107846<...>-9062 ( 8943) [000] d..2 82317.090090: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=006
107847<...>-8962 ( 8943) [006] d..4 82317.090093: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=007
107848          <idle>-0     (-----) [007] .n.1 82317.090098: cpu_idle: state=4294967295 cpu_id=7
107849          <idle>-0     (-----) [007] d..2 82317.090104: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
107850<...>-9062 ( 8943) [000] .... 82317.090110: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
107851          <idle>-0     (-----) [004] dnh2 82317.090116: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
107852          <idle>-0     (-----) [004] .n.1 82317.090119: cpu_idle: state=4294967295 cpu_id=4
107853<...>-9062 ( 8943) [000] d..2 82317.090121: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=R+ ==> next_comm=Binder:9090_5 next_pid=10478 next_prio=120
107854<...>-8962 ( 8943) [006] d..2 82317.090122: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
107855          <idle>-0     (-----) [004] d..2 82317.090125: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
107856   Binder:9090_5-10478 ( 9090) [000] .... 82317.090125: binder_transaction_received: transaction=1572134
107857 s.nexuslauncher-10023 (10023) [004] .... 82317.090130: binder_transaction_received: transaction=1572144
107858          <idle>-0     (-----) [006] d..1 82317.090144: cpu_idle: state=0 cpu_id=6
107859          <idle>-0     (-----) [006] ...1 82317.090153: cpu_idle: state=4294967295 cpu_id=6
107860          <idle>-0     (-----) [006] d..1 82317.090155: cpu_idle: state=0 cpu_id=6
107861   system_server-8943  ( 8943) [007] .... 82317.090161: binder_transaction: transaction=1572145 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
107862   system_server-8943  ( 8943) [007] .... 82317.090167: binder_transaction_alloc_buf: transaction=1572145 data_size=96 offsets_size=0
107863   system_server-8943  ( 8943) [007] d..4 82317.090169: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
107864<...>-9005 ( 8943) [005] .... 82317.090189: binder_transaction: transaction=1572146 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
107865<...>-9005 ( 8943) [005] .... 82317.090192: binder_transaction_alloc_buf: transaction=1572146 data_size=76 offsets_size=0
107866<...>-9005 ( 8943) [005] ...2 82317.090194: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
107867<...>-9005 ( 8943) [005] d..4 82317.090209: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
107868          <idle>-0     (-----) [002] dnh2 82317.090213: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=002
107869          <idle>-0     (-----) [002] .n.1 82317.090216: cpu_idle: state=4294967295 cpu_id=2
107870<...>-9005 ( 8943) [005] dn.5 82317.090217: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
107871<...>-9005 ( 8943) [005] d..2 82317.090223: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
107872          <idle>-0     (-----) [002] d..2 82317.090223: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
107873   Binder:9090_5-10478 ( 9090) [000] d..3 82317.090225: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
107874<...>-9380 ( 9105) [002] .... 82317.090228: binder_transaction_received: transaction=1572145
107875<...>-8951 ( 8858) [005] .... 82317.090229: binder_transaction_received: transaction=1572146
107876   Binder:9090_5-10478 ( 9090) [000] d..4 82317.090240: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
107877<...>-8951 ( 8858) [005] .... 82317.090248: binder_transaction: transaction=1572147 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
107878<...>-8951 ( 8858) [005] .... 82317.090250: binder_transaction_alloc_buf: transaction=1572147 data_size=0 offsets_size=0
107879   system_server-8943  ( 8943) [007] d..2 82317.090250: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
107880<...>-8951 ( 8858) [005] .... 82317.090252: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
107881          <idle>-0     (-----) [007] d..1 82317.090258: cpu_idle: state=0 cpu_id=7
107882   Binder:9090_5-10478 ( 9090) [000] d..4 82317.090263: sched_waking: comm=Binder:9090_7 pid=3293 prio=120 target_cpu=000
107883<...>-8951 ( 8858) [005] d..2 82317.090273: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
107884<...>-9005 ( 8943) [005] .... 82317.090279: binder_transaction_received: transaction=1572147
107885  kworker/u16:15-1311  ( 1311) [001] d..2 82317.090281: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
107886   Binder:9090_5-10478 ( 9090) [000] d..5 82317.090291: sched_wakeup: comm=Binder:9090_7 pid=3293 prio=120 target_cpu=001
107887   Binder:9090_5-10478 ( 9090) [000] .... 82317.090298: binder_transaction_received: transaction=1572136
107888<...>-9380 ( 9105) [002] d..2 82317.090328: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107889          <idle>-0     (-----) [002] d..1 82317.090338: cpu_idle: state=0 cpu_id=2
107890   Binder:9090_5-10478 ( 9090) [000] d..4 82317.090370: sched_waking: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=000
107891   Binder:9090_5-10478 ( 9090) [000] d..5 82317.090382: sched_wakeup: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=000
107892   Binder:9090_5-10478 ( 9090) [000] .... 82317.090392: binder_transaction_received: transaction=1572138
107893<...>-9090 ( 9090) [001] .... 82317.090392: binder_transaction: transaction=1572148 dest_node=396616 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x22
107894<...>-9090 ( 9090) [001] .... 82317.090395: binder_transaction_alloc_buf: transaction=1572148 data_size=128 offsets_size=8
107895 s.nexuslauncher-10023 (10023) [004] d..3 82317.090401: sched_waking: comm=UiThreadHelper pid=16586 prio=118 target_cpu=004
107896<...>-9090 ( 9090) [001] d..4 82317.090402: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=000
107897 s.nexuslauncher-10023 (10023) [004] d..4 82317.090421: sched_wakeup: comm=UiThreadHelper pid=16586 prio=118 target_cpu=006
107898<...>-9090 ( 9090) [001] d..5 82317.090423: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
107899          <idle>-0     (-----) [006] .n.1 82317.090426: cpu_idle: state=4294967295 cpu_id=6
107900          <idle>-0     (-----) [002] .n.1 82317.090428: cpu_idle: state=4294967295 cpu_id=2
107901          <idle>-0     (-----) [006] d..2 82317.090432: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=16586 next_prio=118
107902<...>-9090 ( 9090) [001] d..2 82317.090433: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=Binder:9090_7 next_pid=3293 next_prio=120
107903          <idle>-0     (-----) [002] d..2 82317.090436: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
107904   Binder:9090_7-3293  ( 9090) [001] d..2 82317.090442: sched_switch: prev_comm=Binder:9090_7 prev_pid=3293 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
107905<...>-12998 ( 8943) [002] .... 82317.090443: binder_transaction_received: transaction=1572148
107906   Binder:9090_5-10478 ( 9090) [000] d..4 82317.090450: sched_waking: comm=Binder:9090_7 pid=3293 prio=120 target_cpu=001
107907   Binder:9090_5-10478 ( 9090) [000] d..5 82317.090464: sched_wakeup: comm=Binder:9090_7 pid=3293 prio=120 target_cpu=001
107908  kworker/u16:15-1311  ( 1311) [001] d..2 82317.090474: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=Binder:9090_7 next_pid=3293 next_prio=120
107909   Binder:9090_5-10478 ( 9090) [000] .... 82317.090476: binder_transaction_received: transaction=1572140
107910   Binder:9090_7-3293  ( 9090) [001] d..2 82317.090480: sched_switch: prev_comm=Binder:9090_7 prev_pid=3293 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
107911           <...>-27550 (-----) [003] .... 82317.090517: binder_transaction: transaction=1572149 dest_node=10 dest_proc=608 dest_thread=0 reply=0 flags=0x10 code=0x1
107912           <...>-27550 (-----) [003] .... 82317.090521: binder_transaction_alloc_buf: transaction=1572149 data_size=88 offsets_size=0
107913           <...>-27550 (-----) [003] d..4 82317.090526: sched_waking: comm=servicemanager pid=608 prio=120 target_cpu=000
107914           <...>-27550 (-----) [003] d..5 82317.090542: sched_wakeup: comm=servicemanager pid=608 prio=120 target_cpu=003
107915           <...>-27550 (-----) [003] d..2 82317.090557: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=servicemanager next_pid=608 next_prio=120
107916<...>-608 ( 608) [003] .... 82317.090571: binder_transaction_received: transaction=1572149
107917  kworker/u16:15-1311  ( 1311) [001] .... 82317.090579: clk_set_rate: l3_cluster0_vote_clk 844800000
107918  kworker/u16:15-1311  ( 1311) [001] .... 82317.090583: clk_set_rate: l3_clk 844800000
107919<...>-16586 ( 10023) [006] .... 82317.090586: binder_transaction: transaction=1572150 dest_node=1160283 dest_proc=9105 dest_thread=0 reply=0 flags=0x10 code=0x9
107920<...>-16586 ( 10023) [006] .... 82317.090590: binder_transaction_alloc_buf: transaction=1572150 data_size=120 offsets_size=0
107921<...>-16586 ( 10023) [006] ...2 82317.090593: binder_set_priority: proc=9105 thread=9380 old=120 => new=118 desired=118
107922<...>-12998 ( 8943) [002] .... 82317.090595: binder_transaction: transaction=1572151 dest_node=1160142 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x6
107923<...>-16586 ( 10023) [006] d..4 82317.090596: sched_waking: comm=Binder:9105_4 pid=9380 prio=118 target_cpu=002
107924<...>-12998 ( 8943) [002] .... 82317.090600: binder_transaction_alloc_buf: transaction=1572151 data_size=104 offsets_size=0
107925 s.nexuslauncher-10023 (10023) [004] .... 82317.090601: binder_transaction: transaction=1572152 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
107926<...>-12998 ( 8943) [002] d..4 82317.090604: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
107927 s.nexuslauncher-10023 (10023) [004] .... 82317.090604: binder_transaction_alloc_buf: transaction=1572152 data_size=80 offsets_size=0
107928<...>-16586 ( 10023) [006] d..5 82317.090613: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=118 target_cpu=006
107929   Binder:9090_5-10478 ( 9090) [000] d..2 82317.090616: sched_switch: prev_comm=Binder:9090_5 prev_pid=10478 prev_prio=120 prev_state=S ==> next_comm=Binder:9090_6 next_pid=10728 next_prio=120
107930 s.nexuslauncher-10023 (10023) [004] d..4 82317.090645: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
107931  kworker/u16:15-1311  ( 1311) [001] d..2 82317.090646: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107932          <idle>-0     (-----) [007] dnh2 82317.090647: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=007
107933   Binder:9090_6-10728 ( 9090) [000] d..2 82317.090648: sched_switch: prev_comm=Binder:9090_6 prev_pid=10728 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
107934          <idle>-0     (-----) [007] .n.1 82317.090650: cpu_idle: state=4294967295 cpu_id=7
107935<...>-16586 ( 10023) [006] d..2 82317.090651: sched_switch: prev_comm=UiThreadHelper prev_pid=16586 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=118
107936          <idle>-0     (-----) [001] d..1 82317.090655: cpu_idle: state=0 cpu_id=1
107937          <idle>-0     (-----) [007] d..2 82317.090656: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
107938<...>-9380 ( 9105) [006] .... 82317.090658: binder_transaction_received: transaction=1572150
107939  Binder:10023_2-10088 (10023) [007] .... 82317.090663: binder_transaction_received: transaction=1572151
107940          <idle>-0     (-----) [001] dnh2 82317.090691: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
107941          <idle>-0     (-----) [001] .n.1 82317.090695: cpu_idle: state=4294967295 cpu_id=1
107942<...>-9062 ( 8943) [000] d..2 82317.090701: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
107943          <idle>-0     (-----) [001] d..2 82317.090702: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
107944<...>-12998 ( 8943) [002] .... 82317.090705: binder_transaction: transaction=1572153 dest_node=0 dest_proc=9090 dest_thread=9090 reply=1 flags=0x0 code=0x0
107945<...>-12998 ( 8943) [002] .... 82317.090708: binder_transaction_alloc_buf: transaction=1572153 data_size=4 offsets_size=0
107946<...>-8951 ( 8858) [001] .... 82317.090708: binder_transaction_received: transaction=1572152
107947<...>-12998 ( 8943) [002] d..2 82317.090710: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=001
107948          <idle>-0     (-----) [000] d..1 82317.090715: cpu_idle: state=0 cpu_id=0
107949<...>-8951 ( 8858) [001] d..1 82317.090729: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
107950<...>-12998 ( 8943) [002] d..3 82317.090730: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
107951          <idle>-0     (-----) [000] .n.1 82317.090735: cpu_idle: state=4294967295 cpu_id=0
107952          <idle>-0     (-----) [000] d..2 82317.090743: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
107953<...>-8951 ( 8858) [001] d..2 82317.090744: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
107954<...>-9005 ( 8943) [005] d..3 82317.090747: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=002
107955<...>-9090 ( 9090) [000] .... 82317.090749: binder_transaction_received: transaction=1572153
107956<...>-608 ( 608) [003] d..2 82317.090755: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
107957  Binder:10023_2-10088 (10023) [007] d..2 82317.090758: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
107958<...>-12998 ( 8943) [002] d..2 82317.090766: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
107959          <idle>-0     (-----) [007] d..1 82317.090767: cpu_idle: state=0 cpu_id=7
107960          <idle>-0     (-----) [002] d..1 82317.090777: cpu_idle: state=0 cpu_id=2
107961<...>-9005 ( 8943) [005] d..4 82317.090781: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
107962<...>-8951 ( 8858) [001] d..2 82317.090783: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
107963          <idle>-0     (-----) [007] .n.1 82317.090787: cpu_idle: state=4294967295 cpu_id=7
107964          <idle>-0     (-----) [001] d..1 82317.090791: cpu_idle: state=0 cpu_id=1
107965<...>-9380 ( 9105) [006] .... 82317.090806: binder_transaction: transaction=1572154 dest_node=0 dest_proc=10023 dest_thread=16586 reply=1 flags=0x0 code=0x0
107966<...>-9380 ( 9105) [006] .... 82317.090809: binder_transaction_alloc_buf: transaction=1572154 data_size=4 offsets_size=0
107967          <idle>-0     (-----) [007] d..2 82317.090810: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
107968<...>-9380 ( 9105) [006] d..2 82317.090811: sched_waking: comm=UiThreadHelper pid=16586 prio=118 target_cpu=006
107969  appEventThread-8881  ( 8858) [003] d..2 82317.090816: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=servicemanager next_pid=608 next_prio=120
107970<...>-9380 ( 9105) [006] d..3 82317.090819: sched_wakeup: comm=UiThreadHelper pid=16586 prio=118 target_cpu=006
107971<...>-9380 ( 9105) [006] .... 82317.090821: binder_set_priority: proc=9105 thread=9380 old=118 => new=120 desired=120
107972<...>-608 ( 608) [003] .... 82317.090822: binder_transaction: transaction=1572155 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
107973<...>-608 ( 608) [003] .... 82317.090824: binder_transaction_alloc_buf: transaction=1572155 data_size=24 offsets_size=8
107974<...>-9380 ( 9105) [006] d..2 82317.090828: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=R+ ==> next_comm=UiThreadHelper next_pid=16586 next_prio=118
107975<...>-16586 ( 10023) [006] .... 82317.090835: binder_transaction_received: transaction=1572154
107976<...>-608 ( 608) [003] d..2 82317.090841: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
107977<...>-9039 ( 8943) [007] d..2 82317.090843: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
107978<...>-608 ( 608) [003] d..3 82317.090848: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
107979          <idle>-0     (-----) [007] d..1 82317.090850: cpu_idle: state=0 cpu_id=7
107980<...>-9005 ( 8943) [005] d..1 82317.090857: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
107981<...>-608 ( 608) [003] d..2 82317.090864: sched_switch: prev_comm=servicemanager prev_pid=608 prev_prio=120 prev_state=S ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
107982           <...>-27550 (-----) [003] .... 82317.090868: binder_transaction_received: transaction=1572155
107983          <idle>-0     (-----) [002] dnh2 82317.090875: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
107984          <idle>-0     (-----) [002] .n.1 82317.090879: cpu_idle: state=4294967295 cpu_id=2
107985          <idle>-0     (-----) [002] d..2 82317.090886: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
107986<...>-16586 ( 10023) [006] d..2 82317.090888: sched_switch: prev_comm=UiThreadHelper prev_pid=16586 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
107987<...>-9090 ( 9090) [000] .... 82317.090898: binder_transaction: transaction=1572157 dest_node=396616 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x16
107988<...>-9090 ( 9090) [000] .... 82317.090901: binder_transaction_alloc_buf: transaction=1572157 data_size=148 offsets_size=16
107989<...>-9005 ( 8943) [005] d..2 82317.090904: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
107990<...>-9090 ( 9090) [000] d..4 82317.090908: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
107991          <idle>-0     (-----) [005] d..1 82317.090915: cpu_idle: state=0 cpu_id=5
107992 s.nexuslauncher-10023 (10023) [004] d..3 82317.090915: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
107993<...>-9380 ( 9105) [006] d..2 82317.090919: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
107994<...>-9090 ( 9090) [000] d..5 82317.090923: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=000
107995          <idle>-0     (-----) [006] d..1 82317.090929: cpu_idle: state=0 cpu_id=6
107996<...>-9090 ( 9090) [000] d..2 82317.090931: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
107997 s.nexuslauncher-10023 (10023) [004] d..4 82317.090933: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
107998<...>-12998 ( 8943) [000] .... 82317.090936: binder_transaction_received: transaction=1572157
107999          <idle>-0     (-----) [005] .n.1 82317.090939: cpu_idle: state=4294967295 cpu_id=5
108000          <idle>-0     (-----) [005] d..2 82317.090946: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
108001 s.nexuslauncher-10023 (10023) [004] d..2 82317.090950: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
108002          <idle>-0     (-----) [004] d..1 82317.090959: cpu_idle: state=0 cpu_id=4
108003<...>-11815 ( 8943) [002] d..1 82317.090975: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
108004          <idle>-0     (-----) [004] dnh2 82317.090993: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
108005          <idle>-0     (-----) [004] .n.1 82317.090996: cpu_idle: state=4294967295 cpu_id=4
108006          <idle>-0     (-----) [004] d..2 82317.091002: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
108007<...>-12998 ( 8943) [000] .... 82317.091068: binder_transaction: transaction=1572158 dest_node=0 dest_proc=9090 dest_thread=9090 reply=1 flags=0x0 code=0x0
108008<...>-12998 ( 8943) [000] .... 82317.091071: binder_transaction_alloc_buf: transaction=1572158 data_size=4 offsets_size=0
108009<...>-12998 ( 8943) [000] d..2 82317.091073: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
108010    RenderThread-16607 (10023) [005] d..1 82317.091079: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
108011<...>-12998 ( 8943) [000] d..3 82317.091082: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
108012    RenderThread-16607 (10023) [005] d..2 82317.091097: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=006
108013          <idle>-0     (-----) [006] .n.1 82317.091103: cpu_idle: state=4294967295 cpu_id=6
108014<...>-12998 ( 8943) [000] d..2 82317.091109: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
108015          <idle>-0     (-----) [006] d..2 82317.091110: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
108016<...>-9090 ( 9090) [000] .... 82317.091113: binder_transaction_received: transaction=1572158
108017           <...>-27550 (-----) [003] d..2 82317.091118: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108018          <idle>-0     (-----) [003] d..1 82317.091138: cpu_idle: state=0 cpu_id=3
108019<...>-8969 ( 8943) [004] d..3 82317.091138: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
108020    RenderThread-16607 (10023) [005] .... 82317.091142: binder_transaction: transaction=1572159 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
108021<...>-11815 ( 8943) [002] .... 82317.091145: binder_transaction: transaction=1572160 dest_node=0 dest_proc=9105 dest_thread=9321 reply=1 flags=0x0 code=0x0
108022    RenderThread-16607 (10023) [005] .... 82317.091145: binder_transaction_alloc_buf: transaction=1572159 data_size=104 offsets_size=0
108023    RenderThread-16607 (10023) [005] ...2 82317.091147: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
108024<...>-11815 ( 8943) [002] .... 82317.091149: binder_transaction_alloc_buf: transaction=1572160 data_size=860 offsets_size=0
108025<...>-11815 ( 8943) [002] d..2 82317.091153: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=006
108026    RenderThread-16607 (10023) [005] d..4 82317.091153: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=001
108027    RenderThread-16607 (10023) [005] d..5 82317.091167: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
108028          <idle>-0     (-----) [001] dnh2 82317.091169: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=001
108029<...>-11815 ( 8943) [002] d..3 82317.091170: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=002
108030          <idle>-0     (-----) [001] .n.1 82317.091173: cpu_idle: state=4294967295 cpu_id=1
108031          <idle>-0     (-----) [001] d..2 82317.091196: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
108032<...>-11815 ( 8943) [002] d..2 82317.091198: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
108033    RenderThread-16607 (10023) [005] d..2 82317.091200: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
108034<...>-9321 ( 9105) [002] .... 82317.091205: binder_transaction_received: transaction=1572160
108035<...>-8951 ( 8858) [005] .... 82317.091206: binder_transaction_received: transaction=1572159
108036<...>-8951 ( 8858) [005] ...1 82317.091246: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
108037<...>-8951 ( 8858) [005] ...1 82317.091260: tracing_mark_write: B|8858|FreeBuffer
108038<...>-8951 ( 8858) [005] d..2 82317.091277: sched_waking: comm=system pid=104 prio=120 target_cpu=002
108039<...>-8951 ( 8858) [005] ...1 82317.091297: tracing_mark_write: E|8858
108040<...>-9321 ( 9105) [002] d.h1 82317.091299: sched_wakeup: comm=system pid=104 prio=120 target_cpu=002
108041<...>-8951 ( 8858) [005] ...1 82317.091300: tracing_mark_write: B|8858|FreeBuffer
108042<...>-8951 ( 8858) [005] ...1 82317.091310: tracing_mark_write: E|8858
108043<...>-8951 ( 8858) [005] ...1 82317.091314: tracing_mark_write: E|8858
108044<...>-9090 ( 9090) [000] d..2 82317.091322: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
108045<...>-8961 ( 8943) [001] .... 82317.091328: binder_transaction: transaction=1572161 dest_node=401308 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x11
108046<...>-8951 ( 8858) [005] ...1 82317.091329: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
108047<...>-8961 ( 8943) [001] .... 82317.091331: binder_transaction_alloc_buf: transaction=1572161 data_size=456 offsets_size=16
108048<...>-8951 ( 8858) [005] ...1 82317.091333: tracing_mark_write: E|8858
108049<...>-9090 ( 9090) [000] d..3 82317.091340: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
108050<...>-8951 ( 8858) [005] ...1 82317.091342: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
108051<...>-8951 ( 8858) [005] ...1 82317.091343: tracing_mark_write: E|8858
108052<...>-8969 ( 8943) [004] d..2 82317.091354: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
108053<...>-8951 ( 8858) [005] .... 82317.091362: binder_transaction: transaction=1572162 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
108054          <idle>-0     (-----) [004] d..1 82317.091363: cpu_idle: state=0 cpu_id=4
108055<...>-8951 ( 8858) [005] .... 82317.091364: binder_transaction_alloc_buf: transaction=1572162 data_size=136 offsets_size=16
108056<...>-8961 ( 8943) [001] d..4 82317.091365: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=006
108057<...>-8951 ( 8858) [005] ...2 82317.091368: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
108058<...>-8951 ( 8858) [005] d..4 82317.091370: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=004
108059<...>-8951 ( 8858) [005] dn.5 82317.091383: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=005
108060<...>-8961 ( 8943) [001] d..5 82317.091388: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=003
108061<...>-8951 ( 8858) [005] d..2 82317.091388: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
108062          <idle>-0     (-----) [003] .n.1 82317.091394: cpu_idle: state=4294967295 cpu_id=3
108063<...>-1127 ( 621) [005] .... 82317.091396: binder_transaction_received: transaction=1572162
108064          <idle>-0     (-----) [003] d..2 82317.091422: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
108065<...>-1127 ( 621) [005] ...1 82317.091426: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
108066<...>-9380 ( 9105) [003] .... 82317.091427: binder_transaction_received: transaction=1572161
108067<...>-1127 ( 621) [005] ...1 82317.091461: tracing_mark_write: B|621|AllocBuffer
108068<...>-1127 ( 621) [005] ...1 82317.091468: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9469952
108069<...>-9090 ( 9090) [000] d..3 82317.091496: sched_waking: comm=queued-work-loo pid=9203 prio=118 target_cpu=000
108070<...>-8961 ( 8943) [001] .... 82317.091498: binder_transaction: transaction=1572163 dest_node=424459 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x11
108071<...>-8961 ( 8943) [001] .... 82317.091501: binder_transaction_alloc_buf: transaction=1572163 data_size=456 offsets_size=16
108072<...>-9321 ( 9105) [002] .... 82317.091503: binder_transaction: transaction=1572164 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xd
108073<...>-9321 ( 9105) [002] .... 82317.091506: binder_transaction_alloc_buf: transaction=1572164 data_size=168 offsets_size=0
108074<...>-8961 ( 8943) [001] d..4 82317.091508: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
108075<...>-9090 ( 9090) [000] d..4 82317.091512: sched_wakeup: comm=queued-work-loo pid=9203 prio=118 target_cpu=000
108076<...>-9380 ( 9105) [003] ...1 82317.091558: tracing_mark_write: B|9105|HIDL::IMapper::importBuffer::passthrough
108077<...>-9321 ( 9105) [002] d..4 82317.091559: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
108078          <idle>-0     (-----) [007] dnh2 82317.091560: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
108079          <idle>-0     (-----) [007] .n.1 82317.091564: cpu_idle: state=4294967295 cpu_id=7
108080          <idle>-0     (-----) [007] d..2 82317.091569: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
108081<...>-9132 ( 9105) [007] .... 82317.091576: binder_transaction_received: transaction=1572163
108082<...>-9321 ( 9105) [002] d..5 82317.091585: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
108083 s.nexuslauncher-10023 (10023) [006] .... 82317.091590: binder_transaction: transaction=1572165 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x22
108084 s.nexuslauncher-10023 (10023) [006] .... 82317.091593: binder_transaction_alloc_buf: transaction=1572165 data_size=104 offsets_size=8
108085<...>-9321 ( 9105) [002] d..2 82317.091597: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
108086 s.nexuslauncher-10023 (10023) [006] ...2 82317.091598: binder_set_priority: proc=8943 thread=12998 old=120 => new=110 desired=110
108087 s.nexuslauncher-10023 (10023) [006] d..4 82317.091600: sched_waking: comm=Binder:8943_15 pid=12998 prio=110 target_cpu=000
108088 s.nexuslauncher-10023 (10023) [006] dn.5 82317.091616: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=110 target_cpu=006
108089<...>-9380 ( 9105) [003] ...1 82317.091616: tracing_mark_write: E|9105
108090<...>-9380 ( 9105) [003] ...1 82317.091624: tracing_mark_write: B|9105|HIDL::IMapper::validateBufferSize::passthrough
108091<...>-9380 ( 9105) [003] ...1 82317.091637: tracing_mark_write: E|9105
108092<...>-9380 ( 9105) [003] ...1 82317.091646: tracing_mark_write: B|9105|HIDL::IMapper::getTransportSize::passthrough
108093 s.nexuslauncher-10023 (10023) [006] d..2 82317.091647: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=110
108094<...>-9380 ( 9105) [003] ...1 82317.091649: tracing_mark_write: E|9105
108095<...>-12998 ( 8943) [006] .... 82317.091653: binder_transaction_received: transaction=1572165
108096<...>-8961 ( 8943) [001] .... 82317.091680: binder_transaction: transaction=1572166 dest_node=1159303 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x11
108097<...>-9132 ( 9105) [007] ...1 82317.091682: tracing_mark_write: B|9105|HIDL::IMapper::importBuffer::passthrough
108098<...>-8961 ( 8943) [001] .... 82317.091683: binder_transaction_alloc_buf: transaction=1572166 data_size=456 offsets_size=16
108099<...>-8961 ( 8943) [001] d..4 82317.091690: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=007
108100<...>-9132 ( 9105) [007] ...1 82317.091700: tracing_mark_write: E|9105
108101<...>-9132 ( 9105) [007] ...1 82317.091705: tracing_mark_write: B|9105|HIDL::IMapper::validateBufferSize::passthrough
108102<...>-9132 ( 9105) [007] ...1 82317.091711: tracing_mark_write: E|9105
108103          <idle>-0     (-----) [004] dnh2 82317.091714: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
108104          <idle>-0     (-----) [004] .n.1 82317.091717: cpu_idle: state=4294967295 cpu_id=4
108105<...>-9132 ( 9105) [007] ...1 82317.091717: tracing_mark_write: B|9105|HIDL::IMapper::getTransportSize::passthrough
108106<...>-9132 ( 9105) [007] ...1 82317.091720: tracing_mark_write: E|9105
108107          <idle>-0     (-----) [004] d..2 82317.091723: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
108108  Binder:10023_2-10088 (10023) [004] .... 82317.091730: binder_transaction_received: transaction=1572166
108109<...>-9090 ( 9090) [000] d..3 82317.091756: sched_waking: comm=MetricsManager pid=9867 prio=139 target_cpu=000
108110<...>-9380 ( 9105) [003] d..2 82317.091756: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108111<...>-8961 ( 8943) [001] d..2 82317.091763: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108112          <idle>-0     (-----) [003] d..1 82317.091770: cpu_idle: state=0 cpu_id=3
108113          <idle>-0     (-----) [001] d..1 82317.091774: cpu_idle: state=0 cpu_id=1
108114<...>-9090 ( 9090) [000] d..4 82317.091779: sched_wakeup: comm=MetricsManager pid=9867 prio=139 target_cpu=001
108115          <idle>-0     (-----) [001] .n.1 82317.091784: cpu_idle: state=4294967295 cpu_id=1
108116<...>-9132 ( 9105) [007] d..2 82317.091785: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
108117          <idle>-0     (-----) [001] d..2 82317.091797: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MetricsManager next_pid=9867 next_prio=139
108118          system-104   (  104) [002] d..2 82317.091839: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
108119<...>-12998 ( 8943) [006] .... 82317.091839: binder_transaction: transaction=1572167 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
108120<...>-12998 ( 8943) [006] .... 82317.091842: binder_transaction_alloc_buf: transaction=1572167 data_size=8 offsets_size=0
108121<...>-11815 ( 8943) [002] .... 82317.091845: binder_transaction_received: transaction=1572164
108122<...>-12998 ( 8943) [006] .... 82317.091845: binder_set_priority: proc=8943 thread=12998 old=110 => new=120 desired=120
108123          <idle>-0     (-----) [007] d..1 82317.091868: cpu_idle: state=0 cpu_id=7
108124  Binder:10023_2-10088 (10023) [004] ...1 82317.091872: tracing_mark_write: B|10023|HIDL::IMapper::importBuffer::passthrough
108125<...>-12998 ( 8943) [006] d..2 82317.091875: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
108126 s.nexuslauncher-10023 (10023) [006] .... 82317.091883: binder_transaction_received: transaction=1572167
108127  Binder:10023_2-10088 (10023) [004] ...1 82317.091899: tracing_mark_write: E|10023
108128  Binder:10023_2-10088 (10023) [004] ...1 82317.091903: tracing_mark_write: B|10023|HIDL::IMapper::validateBufferSize::passthrough
108129<...>-9867 ( 9090) [001] d..2 82317.091911: sched_switch: prev_comm=MetricsManager prev_pid=9867 prev_prio=139 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108130  Binder:10023_2-10088 (10023) [004] ...1 82317.091911: tracing_mark_write: E|10023
108131  Binder:10023_2-10088 (10023) [004] ...1 82317.091917: tracing_mark_write: B|10023|HIDL::IMapper::getTransportSize::passthrough
108132          <idle>-0     (-----) [001] d..1 82317.091918: cpu_idle: state=0 cpu_id=1
108133  Binder:10023_2-10088 (10023) [004] ...1 82317.091920: tracing_mark_write: E|10023
108134  Binder:10023_2-10088 (10023) [004] d..2 82317.091994: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
108135          <idle>-0     (-----) [004] d..1 82317.092004: cpu_idle: state=0 cpu_id=4
108136<...>-11815 ( 8943) [002] .... 82317.092184: binder_transaction: transaction=1572168 dest_node=0 dest_proc=9105 dest_thread=9321 reply=1 flags=0x0 code=0x0
108137<...>-11815 ( 8943) [002] .... 82317.092188: binder_transaction_alloc_buf: transaction=1572168 data_size=1712 offsets_size=0
108138<...>-11815 ( 8943) [002] d..2 82317.092191: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=002
108139<...>-11815 ( 8943) [002] d..3 82317.092212: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=001
108140          <idle>-0     (-----) [001] .n.1 82317.092217: cpu_idle: state=4294967295 cpu_id=1
108141          <idle>-0     (-----) [001] d..2 82317.092223: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
108142<...>-9321 ( 9105) [001] .... 82317.092230: binder_transaction_received: transaction=1572168
108143<...>-11815 ( 8943) [002] d..2 82317.092237: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
108144<...>-9090 ( 9090) [000] d..3 82317.092361: sched_waking: comm=MetricsManager pid=9867 prio=139 target_cpu=001
108145<...>-9090 ( 9090) [000] d..4 82317.092378: sched_wakeup: comm=MetricsManager pid=9867 prio=139 target_cpu=001
108146<...>-9321 ( 9105) [001] d..2 82317.092410: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=MetricsManager next_pid=9867 next_prio=139
108147 s.nexuslauncher-10023 (10023) [006] d..1 82317.092541: sched_waking: comm=Jit thread pool pid=10045 prio=129 target_cpu=006
108148 s.nexuslauncher-10023 (10023) [006] d..2 82317.092563: sched_wakeup: comm=Jit thread pool pid=10045 prio=129 target_cpu=004
108149          <idle>-0     (-----) [004] .n.1 82317.092568: cpu_idle: state=4294967295 cpu_id=4
108150          <idle>-0     (-----) [004] d..2 82317.092575: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=10045 next_prio=129
108151 s.nexuslauncher-10023 (10023) [006] d..2 82317.092610: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
108152<...>-9867 ( 9090) [001] d..2 82317.092626: sched_switch: prev_comm=MetricsManager prev_pid=9867 prev_prio=139 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108153          <idle>-0     (-----) [006] d..1 82317.092628: cpu_idle: state=0 cpu_id=6
108154          <idle>-0     (-----) [001] d..1 82317.092634: cpu_idle: state=0 cpu_id=1
108155<...>-1127 ( 621) [005] ...1 82317.092846: tracing_mark_write: E|621
108156<...>-1127 ( 621) [005] ...1 82317.092849: tracing_mark_write: B|621|ION_IOC_MAP
108157<...>-1127 ( 621) [005] ...1 82317.092870: tracing_mark_write: E|621
108158<...>-1127 ( 621) [005] ...1 82317.092875: tracing_mark_write: E|621
108159<...>-1127 ( 621) [005] ...1 82317.092878: tracing_mark_write: B|621|AllocBuffer
108160<...>-1127 ( 621) [005] ...1 82317.092884: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
108161<...>-1127 ( 621) [005] ...1 82317.092894: tracing_mark_write: E|621
108162<...>-1127 ( 621) [005] ...1 82317.092896: tracing_mark_write: B|621|ION_IOC_MAP
108163<...>-1127 ( 621) [005] ...1 82317.092901: tracing_mark_write: E|621
108164<...>-1127 ( 621) [005] ...1 82317.092903: tracing_mark_write: E|621
108165<...>-9090 ( 9090) [000] d..3 82317.092933: sched_waking: comm=MetricsManager pid=9867 prio=139 target_cpu=001
108166<...>-9090 ( 9090) [000] d..4 82317.092950: sched_wakeup: comm=MetricsManager pid=9867 prio=139 target_cpu=001
108167          <idle>-0     (-----) [001] .n.1 82317.092956: cpu_idle: state=4294967295 cpu_id=1
108168          <idle>-0     (-----) [001] d..2 82317.092963: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=MetricsManager next_pid=9867 next_prio=139
108169<...>-1127 ( 621) [005] ...1 82317.092979: tracing_mark_write: E|621
108170<...>-1127 ( 621) [005] .... 82317.092993: binder_transaction: transaction=1572169 dest_node=0 dest_proc=8858 dest_thread=8951 reply=1 flags=0x0 code=0x0
108171<...>-1127 ( 621) [005] .... 82317.092996: binder_transaction_alloc_buf: transaction=1572169 data_size=172 offsets_size=32
108172<...>-1127 ( 621) [005] .... 82317.093008: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
108173<...>-1127 ( 621) [005] ...1 82317.093032: tracing_mark_write: B|621|FreeBuffer
108174<...>-1127 ( 621) [005] ...1 82317.093041: tracing_mark_write: E|621
108175<...>-1127 ( 621) [005] ...1 82317.093042: tracing_mark_write: B|621|FreeBuffer
108176<...>-1127 ( 621) [005] ...1 82317.093045: tracing_mark_write: B|621|UnmapBuffer
108177<...>-9090 ( 9090) [000] d..2 82317.093049: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
108178<...>-1127 ( 621) [005] ...1 82317.093072: tracing_mark_write: E|621
108179<...>-1127 ( 621) [005] ...1 82317.093078: tracing_mark_write: E|621
108180<...>-1127 ( 621) [005] d..2 82317.093111: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
108181<...>-8951 ( 8858) [005] .... 82317.093125: binder_transaction_received: transaction=1572169
108182          <idle>-0     (-----) [003] ...1 82317.093157: cpu_idle: state=4294967295 cpu_id=3
108183          <idle>-0     (-----) [003] d..1 82317.093161: cpu_idle: state=0 cpu_id=3
108184<...>-8951 ( 8858) [005] ...1 82317.093165: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
108185<...>-8951 ( 8858) [005] ...1 82317.093189: tracing_mark_write: E|8858
108186<...>-581 ( 571) [000] d..2 82317.093218: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=queued-work-loo next_pid=9203 next_prio=118
108187<...>-8951 ( 8858) [005] ...1 82317.093221: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
108188<...>-9867 ( 9090) [001] d..1 82317.093223: sched_waking: comm=Primes-2 pid=10213 prio=120 target_cpu=001
108189<...>-8951 ( 8858) [005] ...1 82317.093224: tracing_mark_write: E|8858
108190<...>-9867 ( 9090) [001] d..2 82317.093257: sched_wakeup: comm=Primes-2 pid=10213 prio=120 target_cpu=000
108191<...>-9203 ( 9090) [000] d..2 82317.093266: sched_switch: prev_comm=queued-work-loo prev_pid=9203 prev_prio=118 prev_state=S ==> next_comm=Primes-2 next_pid=10213 next_prio=120
108192<...>-8951 ( 8858) [005] .... 82317.093267: binder_transaction: transaction=1572170 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
108193<...>-8951 ( 8858) [005] .... 82317.093270: binder_transaction_alloc_buf: transaction=1572170 data_size=28 offsets_size=0
108194<...>-8951 ( 8858) [005] d..2 82317.093273: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
108195<...>-8951 ( 8858) [005] dn.3 82317.093283: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
108196<...>-8951 ( 8858) [005] d..2 82317.093288: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
108197    RenderThread-16607 (10023) [005] .... 82317.093296: binder_transaction_received: transaction=1572170
108198    RenderThread-16607 (10023) [005] .... 82317.093336: binder_transaction: transaction=1572171 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
108199    RenderThread-16607 (10023) [005] .... 82317.093338: binder_transaction_alloc_buf: transaction=1572171 data_size=84 offsets_size=0
108200    RenderThread-16607 (10023) [005] ...2 82317.093341: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
108201    RenderThread-16607 (10023) [005] d..4 82317.093344: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=001
108202    RenderThread-16607 (10023) [005] d..5 82317.093367: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
108203          <idle>-0     (-----) [006] .n.1 82317.093373: cpu_idle: state=4294967295 cpu_id=6
108204          <idle>-0     (-----) [006] d..2 82317.093400: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
108205    RenderThread-16607 (10023) [005] d.h5 82317.093400: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
108206<...>-9867 ( 9090) [001] d..2 82317.093413: sched_switch: prev_comm=MetricsManager prev_pid=9867 prev_prio=139 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108207    RenderThread-16607 (10023) [005] d.h6 82317.093418: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
108208          <idle>-0     (-----) [001] d..1 82317.093420: cpu_idle: state=0 cpu_id=1
108209          <idle>-0     (-----) [007] .n.1 82317.093424: cpu_idle: state=4294967295 cpu_id=7
108210<...>-13083 ( 8858) [006] .... 82317.093425: binder_transaction_received: transaction=1572171
108211    RenderThread-16607 (10023) [005] d..2 82317.093429: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
108212          <idle>-0     (-----) [007] d..2 82317.093430: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
108213<...>-8951 ( 8858) [005] .... 82317.093434: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
108214         sugov:4-577   (  577) [007] .... 82317.093457: clk_set_rate: perfcl_clk 1459200000
108215         sugov:4-577   (  577) [007] .... 82317.093460: clk_set_rate: cpu7_perfcl_clk 1209600000
108216         sugov:4-577   (  577) [007] .... 82317.093465: clk_set_rate: cpu6_perfcl_clk 1209600000
108217<...>-8951 ( 8858) [005] d..2 82317.093468: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
108218         sugov:4-577   (  577) [007] .... 82317.093470: clk_set_rate: cpu5_perfcl_clk 1209600000
108219         sugov:4-577   (  577) [007] .... 82317.093475: clk_set_rate: cpu4_perfcl_clk 1459200000
108220<...>-13083 ( 8858) [006] .... 82317.093477: binder_transaction: transaction=1572172 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
108221<...>-13083 ( 8858) [006] .... 82317.093480: binder_transaction_alloc_buf: transaction=1572172 data_size=208 offsets_size=16
108222         sugov:4-577   (  577) [007] .... 82317.093480: cpu_frequency: state=1459200 cpu_id=4
108223          <idle>-0     (-----) [005] d..1 82317.093484: cpu_idle: state=0 cpu_id=5
108224<...>-13083 ( 8858) [006] d..2 82317.093485: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
108225         sugov:4-577   (  577) [007] .... 82317.093494: cpu_frequency: state=1459200 cpu_id=5
108226         sugov:4-577   (  577) [007] .... 82317.093496: cpu_frequency: state=1459200 cpu_id=6
108227         sugov:4-577   (  577) [007] .... 82317.093498: cpu_frequency: state=1459200 cpu_id=7
108228<...>-13083 ( 8858) [006] d..3 82317.093498: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
108229<...>-13083 ( 8858) [006] .... 82317.093500: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
108230<...>-10213 ( 9090) [000] d..3 82317.093506: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
108231<...>-10213 ( 9090) [000] d..4 82317.093521: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
108232         sugov:4-577   (  577) [007] d..2 82317.093523: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
108233    RenderThread-16607 (10023) [007] .... 82317.093533: binder_transaction_received: transaction=1572172
108234<...>-13083 ( 8858) [006] d..2 82317.093536: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
108235          <idle>-0     (-----) [006] d..1 82317.093545: cpu_idle: state=0 cpu_id=6
108236    RenderThread-16607 (10023) [007] ...1 82317.093568: tracing_mark_write: B|10023|HIDL::IMapper::importBuffer::passthrough
108237    RenderThread-16607 (10023) [007] ...1 82317.093592: tracing_mark_write: E|10023
108238    RenderThread-16607 (10023) [007] ...1 82317.093597: tracing_mark_write: B|10023|HIDL::IMapper::validateBufferSize::passthrough
108239    RenderThread-16607 (10023) [007] ...1 82317.093607: tracing_mark_write: E|10023
108240    RenderThread-16607 (10023) [007] ...1 82317.093613: tracing_mark_write: B|10023|HIDL::IMapper::getTransportSize::passthrough
108241    RenderThread-16607 (10023) [007] ...1 82317.093615: tracing_mark_write: E|10023
108242<...>-10045 ( 10023) [004] d..2 82317.093859: sched_switch: prev_comm=Jit thread pool prev_pid=10045 prev_prio=129 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
108243          <idle>-0     (-----) [004] d..1 82317.093871: cpu_idle: state=0 cpu_id=4
108244          system-104   (  104) [002] d..2 82317.093908: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108245          <idle>-0     (-----) [002] d..1 82317.093925: cpu_idle: state=0 cpu_id=2
108246<...>-10213 ( 9090) [000] d..3 82317.094136: sched_waking: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=001
108247<...>-10213 ( 9090) [000] d..4 82317.094165: sched_wakeup: comm=GoogleApiHandle pid=9833 prio=129 target_cpu=001
108248          <idle>-0     (-----) [001] .n.1 82317.094171: cpu_idle: state=4294967295 cpu_id=1
108249          <idle>-0     (-----) [001] d..2 82317.094178: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=9833 next_prio=129
108250<...>-10213 ( 9090) [000] d..2 82317.094247: sched_switch: prev_comm=Primes-2 prev_pid=10213 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
108251<...>-9090 ( 9090) [000] d..2 82317.094290: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108252          <idle>-0     (-----) [000] d..1 82317.094307: cpu_idle: state=0 cpu_id=0
108253<...>-9833 ( 9090) [001] .... 82317.094778: binder_transaction: transaction=1572173 dest_node=1568852 dest_proc=9871 dest_thread=0 reply=0 flags=0x11 code=0x1
108254<...>-9833 ( 9090) [001] .... 82317.094784: binder_transaction_alloc_buf: transaction=1572173 data_size=544 offsets_size=8
108255<...>-9833 ( 9090) [001] d..4 82317.094881: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=000
108256<...>-9833 ( 9090) [001] d..5 82317.094908: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=000
108257          <idle>-0     (-----) [000] dnh5 82317.094937: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
108258          <idle>-0     (-----) [000] dnh6 82317.094954: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
108259          <idle>-0     (-----) [000] dnh5 82317.094957: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
108260          <idle>-0     (-----) [003] .n.1 82317.094958: cpu_idle: state=4294967295 cpu_id=3
108261          <idle>-0     (-----) [003] d..2 82317.094971: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
108262          <idle>-0     (-----) [000] dnh6 82317.094973: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
108263          <idle>-0     (-----) [002] .n.1 82317.094980: cpu_idle: state=4294967295 cpu_id=2
108264          <idle>-0     (-----) [002] d..2 82317.094987: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
108265          <idle>-0     (-----) [000] .n.1 82317.094988: cpu_idle: state=4294967295 cpu_id=0
108266<...>-9833 ( 9090) [001] d..2 82317.094992: sched_switch: prev_comm=GoogleApiHandle prev_pid=9833 prev_prio=129 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108267          <idle>-0     (-----) [000] d..2 82317.094998: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
108268          <idle>-0     (-----) [001] d..1 82317.095000: cpu_idle: state=0 cpu_id=1
108269  crtc_event:111-322   (  322) [003] d..2 82317.095003: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108270   Binder:9871_6-10122 ( 9871) [000] .... 82317.095006: binder_transaction_received: transaction=1572173
108271          <idle>-0     (-----) [003] d..1 82317.095009: cpu_idle: state=0 cpu_id=3
108272          <idle>-0     (-----) [001] d.s2 82317.095134: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
108273 crtc_commit:111-321   (  321) [002] d.s2 82317.095134: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
108274          <idle>-0     (-----) [001] dns3 82317.095147: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
108275 crtc_commit:111-321   (  321) [002] d.s3 82317.095147: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
108276          <idle>-0     (-----) [001] dns2 82317.095149: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
108277          <idle>-0     (-----) [003] .n.1 82317.095152: cpu_idle: state=4294967295 cpu_id=3
108278          <idle>-0     (-----) [003] d..2 82317.095158: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
108279          <idle>-0     (-----) [001] dns3 82317.095171: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108280 crtc_commit:111-321   (  321) [002] d..2 82317.095174: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
108281  crtc_event:111-322   (  322) [003] d..2 82317.095180: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
108282          <idle>-0     (-----) [002] d..1 82317.095182: cpu_idle: state=0 cpu_id=2
108283          <idle>-0     (-----) [001] .n.1 82317.095183: cpu_idle: state=4294967295 cpu_id=1
108284          <idle>-0     (-----) [001] d..2 82317.095189: 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
108285   Binder:9871_6-10122 ( 9871) [000] d.h2 82317.095193: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
108286<...>-8 ( 8) [001] d..2 82317.095198: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=003
108287     rcu_preempt-7     (    7) [003] d..2 82317.095201: 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
108288    RenderThread-16607 (10023) [007] .... 82317.095202: binder_transaction: transaction=1572176 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
108289    RenderThread-16607 (10023) [007] .... 82317.095206: binder_transaction_alloc_buf: transaction=1572176 data_size=192 offsets_size=8
108290          <idle>-0     (-----) [003] d..1 82317.095207: cpu_idle: state=0 cpu_id=3
108291   Binder:9871_6-10122 ( 9871) [000] d.h3 82317.095209: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
108292    RenderThread-16607 (10023) [007] ...2 82317.095211: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
108293    RenderThread-16607 (10023) [007] d..4 82317.095213: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
108294          <idle>-0     (-----) [002] .n.1 82317.095214: cpu_idle: state=4294967295 cpu_id=2
108295          <idle>-0     (-----) [002] d..2 82317.095223: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
108296    RenderThread-16607 (10023) [007] dn.5 82317.095223: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
108297<...>-8 ( 8) [001] d..3 82317.095228: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=002
108298    RenderThread-16607 (10023) [007] d..2 82317.095228: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
108299<...>-13083 ( 8858) [007] .... 82317.095236: binder_transaction_received: transaction=1572176
108300<...>-8 ( 8) [001] d..2 82317.095242: 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
108301          <idle>-0     (-----) [001] d..1 82317.095250: cpu_idle: state=0 cpu_id=1
108302 kgsl_worker_thr-258   (  258) [002] d..2 82317.095261: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=rcuos/0 next_pid=11 next_prio=120
108303         rcuos/0-11    (   11) [002] d..2 82317.095267: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=003
108304         rcuos/0-11    (   11) [002] d..3 82317.095292: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=002
108305         rcuos/0-11    (   11) [002] d..2 82317.095299: 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
108306         rcuos/1-22    (   22) [002] d..2 82317.095317: sched_switch: prev_comm=rcuos/1 prev_pid=22 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108307          <idle>-0     (-----) [002] d..1 82317.095323: cpu_idle: state=0 cpu_id=2
108308<...>-13083 ( 8858) [007] .... 82317.095328: binder_transaction: transaction=1572177 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
108309<...>-13083 ( 8858) [007] .... 82317.095331: binder_transaction_alloc_buf: transaction=1572177 data_size=68 offsets_size=0
108310<...>-13083 ( 8858) [007] .... 82317.095333: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
108311<...>-13083 ( 8858) [007] d..2 82317.095353: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
108312    RenderThread-16607 (10023) [007] .... 82317.095359: binder_transaction_received: transaction=1572177
108313          <idle>-0     (-----) [002] d.h2 82317.095360: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
108314          <idle>-0     (-----) [002] dnh3 82317.095367: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
108315          <idle>-0     (-----) [002] .n.1 82317.095371: cpu_idle: state=4294967295 cpu_id=2
108316          <idle>-0     (-----) [002] d..2 82317.095377: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
108317 kgsl_worker_thr-258   (  258) [002] d..2 82317.095395: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
108318    RenderThread-16607 (10023) [007] d..2 82317.095414: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
108319 kgsl_worker_thr-258   (  258) [002] d..3 82317.095418: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
108320          <idle>-0     (-----) [007] d..1 82317.095423: cpu_idle: state=0 cpu_id=7
108321 kgsl_worker_thr-258   (  258) [002] d..2 82317.095429: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
108322  kworker/u16:15-1311  ( 1311) [002] d..2 82317.095748: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
108323          <idle>-0     (-----) [002] d..1 82317.095757: cpu_idle: state=0 cpu_id=2
108324          <idle>-0     (-----) [001] d.s3 82317.095782: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
108325          <idle>-0     (-----) [001] d.s4 82317.095790: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
108326   Binder:9871_6-10122 ( 9871) [000] d..1 82317.095795: sched_waking: comm=lowpool[10] pid=24462 prio=130 target_cpu=002
108327          <idle>-0     (-----) [001] d.s4 82317.095796: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
108328          <idle>-0     (-----) [002] .n.1 82317.095802: cpu_idle: state=4294967295 cpu_id=2
108329          <idle>-0     (-----) [001] ...1 82317.095808: cpu_idle: state=4294967295 cpu_id=1
108330          <idle>-0     (-----) [002] d..2 82317.095810: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
108331          <idle>-0     (-----) [001] d..1 82317.095810: cpu_idle: state=0 cpu_id=1
108332   Binder:9871_6-10122 ( 9871) [000] d..2 82317.095817: sched_wakeup: comm=lowpool[10] pid=24462 prio=130 target_cpu=002
108333  kworker/u16:15-1311  ( 1311) [002] d..2 82317.095825: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
108334   Binder:9871_6-10122 ( 9871) [000] d..2 82317.095906: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108335          <idle>-0     (-----) [000] d..1 82317.095918: cpu_idle: state=0 cpu_id=0
108336<...>-24462 ( 9871) [002] .... 82317.096168: binder_transaction: transaction=1572178 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x17
108337<...>-24462 ( 9871) [002] .... 82317.096172: binder_transaction_alloc_buf: transaction=1572178 data_size=396 offsets_size=8
108338<...>-24462 ( 9871) [002] d..4 82317.096185: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
108339<...>-24462 ( 9871) [002] dn.5 82317.096195: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
108340<...>-24462 ( 9871) [002] d..2 82317.096201: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=R+ ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
108341<...>-11815 ( 8943) [002] .... 82317.096206: binder_transaction_received: transaction=1572178
108342          <idle>-0     (-----) [000] d.h3 82317.096511: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
108343          <idle>-0     (-----) [000] dnh4 82317.096524: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
108344          <idle>-0     (-----) [000] .n.1 82317.096533: cpu_idle: state=4294967295 cpu_id=0
108345          <idle>-0     (-----) [000] d..2 82317.096539: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
108346 kgsl_worker_thr-258   (  258) [000] d..2 82317.096586: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108347          <idle>-0     (-----) [000] d..1 82317.096592: cpu_idle: state=0 cpu_id=0
108348<...>-11815 ( 8943) [002] d..3 82317.096798: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=002
108349<...>-11815 ( 8943) [002] d..4 82317.096820: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=003
108350          <idle>-0     (-----) [003] .n.1 82317.096824: cpu_idle: state=4294967295 cpu_id=3
108351          <idle>-0     (-----) [003] d..2 82317.096830: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
108352<...>-11815 ( 8943) [002] .... 82317.096945: binder_transaction: transaction=1572179 dest_node=417398 dest_proc=9871 dest_thread=0 reply=0 flags=0x11 code=0x7
108353<...>-11815 ( 8943) [002] .... 82317.096948: binder_transaction_alloc_buf: transaction=1572179 data_size=424 offsets_size=8
108354<...>-11815 ( 8943) [002] d..4 82317.096958: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=000
108355<...>-11815 ( 8943) [002] d..5 82317.096971: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=000
108356          <idle>-0     (-----) [000] .n.1 82317.096975: cpu_idle: state=4294967295 cpu_id=0
108357          <idle>-0     (-----) [000] d..2 82317.096982: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
108358   Binder:9871_6-10122 ( 9871) [000] .... 82317.096986: binder_transaction_received: transaction=1572179
108359<...>-11815 ( 8943) [002] .... 82317.097095: binder_transaction: transaction=1572180 dest_node=0 dest_proc=9871 dest_thread=24462 reply=1 flags=0x0 code=0x0
108360<...>-11815 ( 8943) [002] .... 82317.097099: binder_transaction_alloc_buf: transaction=1572180 data_size=200 offsets_size=0
108361   Binder:9871_6-10122 ( 9871) [000] d..3 82317.097105: sched_waking: comm=.gms.persistent pid=9871 prio=120 target_cpu=003
108362   Binder:9871_6-10122 ( 9871) [000] d..4 82317.097121: sched_wakeup: comm=.gms.persistent pid=9871 prio=120 target_cpu=003
108363<...>-11815 ( 8943) [002] d..2 82317.097125: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
108364<...>-24462 ( 9871) [002] .... 82317.097131: binder_transaction_received: transaction=1572180
108365   Binder:9871_6-10122 ( 9871) [000] d..2 82317.097166: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108366          <idle>-0     (-----) [000] d..1 82317.097175: cpu_idle: state=0 cpu_id=0
108367          <idle>-0     (-----) [000] d.h5 82317.097278: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
108368          <idle>-0     (-----) [000] dnh6 82317.097290: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
108369          <idle>-0     (-----) [000] .n.1 82317.097299: cpu_idle: state=4294967295 cpu_id=0
108370          <idle>-0     (-----) [000] d..2 82317.097305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
108371<...>-821 ( 821) [003] d..2 82317.097377: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=.gms.persistent next_pid=9871 next_prio=120
108372 crtc_commit:111-321   (  321) [000] d..2 82317.097379: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108373          <idle>-0     (-----) [000] d..1 82317.097386: cpu_idle: state=0 cpu_id=0
108374          <idle>-0     (-----) [000] d.h5 82317.097561: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
108375          <idle>-0     (-----) [000] dnh6 82317.097573: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
108376          <idle>-0     (-----) [000] .n.1 82317.097583: cpu_idle: state=4294967295 cpu_id=0
108377          <idle>-0     (-----) [000] d..2 82317.097589: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
108378<...>-9871 ( 9871) [003] .... 82317.097594: binder_transaction: transaction=1572181 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x2f
108379<...>-9871 ( 9871) [003] .... 82317.097597: binder_transaction_alloc_buf: transaction=1572181 data_size=104 offsets_size=8
108380  crtc_event:111-322   (  322) [000] d..2 82317.097603: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108381<...>-9871 ( 9871) [003] d..4 82317.097605: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
108382          <idle>-0     (-----) [000] d..1 82317.097608: cpu_idle: state=0 cpu_id=0
108383<...>-9871 ( 9871) [003] d..5 82317.097626: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
108384          <idle>-0     (-----) [000] .n.1 82317.097629: cpu_idle: state=4294967295 cpu_id=0
108385          <idle>-0     (-----) [000] d..2 82317.097636: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
108386<...>-11815 ( 8943) [000] .... 82317.097642: binder_transaction_received: transaction=1572181
108387<...>-9871 ( 9871) [003] d..2 82317.097677: sched_switch: prev_comm=.gms.persistent prev_pid=9871 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108388          <idle>-0     (-----) [003] d..1 82317.097687: cpu_idle: state=0 cpu_id=3
108389<...>-11815 ( 8943) [000] d..3 82317.097856: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=003
108390<...>-11815 ( 8943) [000] d..4 82317.097869: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=003
108391          <idle>-0     (-----) [003] .n.1 82317.097875: cpu_idle: state=4294967295 cpu_id=3
108392          <idle>-0     (-----) [003] d..2 82317.097882: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
108393<...>-11815 ( 8943) [000] d..2 82317.097967: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108394          <idle>-0     (-----) [000] d..1 82317.097977: cpu_idle: state=0 cpu_id=0
108395<...>-24462 ( 9871) [002] d..2 82317.098074: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=003
108396<...>-24462 ( 9871) [002] d..3 82317.098092: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=003
108397<...>-821 ( 821) [003] d..2 82317.098131: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=rcuos/2 next_pid=30 next_prio=120
108398<...>-30 ( 30) [003] d..2 82317.098137: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
108399<...>-30 ( 30) [003] d..3 82317.098161: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
108400<...>-30 ( 30) [003] d..2 82317.098168: 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
108401<...>-8 ( 8) [003] d..2 82317.098184: 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
108402          <idle>-0     (-----) [003] d..1 82317.098192: cpu_idle: state=0 cpu_id=3
108403<...>-24462 ( 9871) [002] d.s2 82317.098476: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
108404<...>-24462 ( 9871) [002] dns3 82317.098487: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
108405<...>-24462 ( 9871) [002] d..2 82317.098501: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
108406  kworker/u16:15-1311  ( 1311) [002] .... 82317.098544: clk_set_rate: l3_cluster0_vote_clk 1209600000
108407  kworker/u16:15-1311  ( 1311) [002] .... 82317.098550: clk_set_rate: l3_clk 1209600000
108408  kworker/u16:15-1311  ( 1311) [002] d..2 82317.098728: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
108409          <idle>-0     (-----) [001] d.s3 82317.098761: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
108410          <idle>-0     (-----) [001] d.s4 82317.098772: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
108411          <idle>-0     (-----) [001] dns4 82317.098774: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
108412          <idle>-0     (-----) [001] .n.1 82317.098778: cpu_idle: state=4294967295 cpu_id=1
108413          <idle>-0     (-----) [001] d..2 82317.098785: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
108414  kworker/u16:15-1311  ( 1311) [001] .... 82317.098810: clk_set_rate: l3_cluster1_vote_clk 576000000
108415  kworker/u16:15-1311  ( 1311) [001] d..2 82317.098826: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108416          <idle>-0     (-----) [001] d..1 82317.098834: cpu_idle: state=0 cpu_id=1
108417          <idle>-0     (-----) [000] d.h2 82317.099278: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
108418          <idle>-0     (-----) [000] dnh3 82317.099287: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
108419          <idle>-0     (-----) [000] .n.1 82317.099293: cpu_idle: state=4294967295 cpu_id=0
108420          <idle>-0     (-----) [000] d..2 82317.099299: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
108421        DispSync-8879  ( 8858) [000] d..1 82317.099321: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
108422        DispSync-8879  ( 8858) [000] d..2 82317.099333: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
108423          <idle>-0     (-----) [003] .n.1 82317.099339: cpu_idle: state=4294967295 cpu_id=3
108424          <idle>-0     (-----) [003] d..2 82317.099345: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
108425        DispSync-8879  ( 8858) [000] d..2 82317.099355: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108426          <idle>-0     (-----) [000] d..1 82317.099362: cpu_idle: state=0 cpu_id=0
108427  appEventThread-8881  ( 8858) [003] d..3 82317.099403: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
108428  appEventThread-8881  ( 8858) [003] d..4 82317.099424: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
108429          <idle>-0     (-----) [000] .n.1 82317.099429: cpu_idle: state=4294967295 cpu_id=0
108430          <idle>-0     (-----) [000] d..2 82317.099436: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
108431  appEventThread-8881  ( 8858) [003] d..3 82317.099436: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=006
108432          <idle>-0     (-----) [004] dnh2 82317.099458: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
108433          <idle>-0     (-----) [004] .n.1 82317.099461: cpu_idle: state=4294967295 cpu_id=4
108434          <idle>-0     (-----) [004] d..2 82317.099467: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
108435  appEventThread-8881  ( 8858) [003] d..2 82317.099473: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108436          <idle>-0     (-----) [003] d..1 82317.099479: cpu_idle: state=0 cpu_id=3
108437<...>-9105 ( 9105) [000] .... 82317.099661: binder_transaction: transaction=1572182 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
108438 s.nexuslauncher-10023 (10023) [004] d..1 82317.099662: sched_waking: comm=HeapTaskDaemon pid=10062 prio=124 target_cpu=004
108439<...>-9105 ( 9105) [000] .... 82317.099665: binder_transaction_alloc_buf: transaction=1572182 data_size=80 offsets_size=0
108440<...>-9105 ( 9105) [000] d..4 82317.099669: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
108441 s.nexuslauncher-10023 (10023) [004] d..2 82317.099680: sched_wakeup: comm=HeapTaskDaemon pid=10062 prio=124 target_cpu=005
108442          <idle>-0     (-----) [005] .n.1 82317.099685: cpu_idle: state=4294967295 cpu_id=5
108443          <idle>-0     (-----) [005] d..2 82317.099691: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=10062 next_prio=124
108444<...>-9105 ( 9105) [000] d..5 82317.099692: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
108445          <idle>-0     (-----) [001] .n.1 82317.099697: cpu_idle: state=4294967295 cpu_id=1
108446          <idle>-0     (-----) [001] d..2 82317.099726: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
108447 s.nexuslauncher-10023 (10023) [004] .... 82317.099726: binder_transaction: transaction=1572183 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
108448 s.nexuslauncher-10023 (10023) [004] .... 82317.099728: binder_transaction_alloc_buf: transaction=1572183 data_size=80 offsets_size=0
108449 s.nexuslauncher-10023 (10023) [004] d..4 82317.099731: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
108450<...>-9105 ( 9105) [000] d..3 82317.099766: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
108451          <idle>-0     (-----) [003] dnh2 82317.099813: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
108452<...>-13083 ( 8858) [001] .... 82317.099834: binder_transaction_received: transaction=1572182
108453          <idle>-0     (-----) [003] .n.1 82317.099834: cpu_idle: state=4294967295 cpu_id=3
108454          <idle>-0     (-----) [006] dnh2 82317.099836: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
108455          <idle>-0     (-----) [006] .n.1 82317.099839: cpu_idle: state=4294967295 cpu_id=6
108456          <idle>-0     (-----) [003] d..2 82317.099839: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
108457<...>-8951 ( 8858) [003] .... 82317.099843: binder_transaction_received: transaction=1572183
108458          <idle>-0     (-----) [006] d..2 82317.099844: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
108459<...>-13083 ( 8858) [001] d..1 82317.099855: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
108460<...>-13083 ( 8858) [001] dn.2 82317.099870: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
108461    RenderThread-9436  ( 9105) [006] d..2 82317.099875: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
108462<...>-13083 ( 8858) [001] d..2 82317.099876: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
108463<...>-8951 ( 8858) [003] d..2 82317.099879: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108464          <idle>-0     (-----) [006] d..1 82317.099881: cpu_idle: state=0 cpu_id=6
108465          <idle>-0     (-----) [003] d..1 82317.099884: cpu_idle: state=0 cpu_id=3
108466  appEventThread-8881  ( 8858) [001] d..2 82317.099887: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
108467<...>-13083 ( 8858) [001] d..1 82317.099890: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
108468<...>-13083 ( 8858) [001] d..2 82317.099902: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
108469          <idle>-0     (-----) [003] .n.1 82317.099906: cpu_idle: state=4294967295 cpu_id=3
108470          <idle>-0     (-----) [003] d..2 82317.099911: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
108471 s.nexuslauncher-10023 (10023) [004] d..2 82317.099918: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
108472<...>-13083 ( 8858) [001] d..2 82317.099923: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108473<...>-9105 ( 9105) [000] d..3 82317.099926: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
108474          <idle>-0     (-----) [004] d..1 82317.099927: cpu_idle: state=0 cpu_id=4
108475  appEventThread-8881  ( 8858) [003] d..1 82317.099928: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
108476<...>-10062 ( 10023) [005] d..1 82317.099928: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
108477          <idle>-0     (-----) [001] d..1 82317.099932: cpu_idle: state=0 cpu_id=1
108478<...>-10062 ( 10023) [005] d..2 82317.099938: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
108479          <idle>-0     (-----) [006] dnh2 82317.099942: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
108480          <idle>-0     (-----) [004] .n.1 82317.099943: cpu_idle: state=4294967295 cpu_id=4
108481  appEventThread-8881  ( 8858) [003] d..2 82317.099943: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
108482          <idle>-0     (-----) [006] .n.1 82317.099945: cpu_idle: state=4294967295 cpu_id=6
108483          <idle>-0     (-----) [004] d..2 82317.099948: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
108484          <idle>-0     (-----) [001] .n.1 82317.099948: cpu_idle: state=4294967295 cpu_id=1
108485          <idle>-0     (-----) [006] d..2 82317.099950: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
108486<...>-9105 ( 9105) [000] d..2 82317.099952: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108487          <idle>-0     (-----) [001] d..2 82317.099955: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
108488  appEventThread-8881  ( 8858) [003] d..2 82317.099959: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108489<...>-8951 ( 8858) [001] d..1 82317.099960: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
108490          <idle>-0     (-----) [000] d..1 82317.099961: cpu_idle: state=0 cpu_id=0
108491          <idle>-0     (-----) [003] d..1 82317.099963: cpu_idle: state=0 cpu_id=3
108492<...>-8951 ( 8858) [001] d..2 82317.099969: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
108493          <idle>-0     (-----) [003] .n.1 82317.099974: cpu_idle: state=4294967295 cpu_id=3
108494          <idle>-0     (-----) [003] d..2 82317.099978: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
108495<...>-8951 ( 8858) [001] d..2 82317.099990: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108496          <idle>-0     (-----) [001] d..1 82317.099997: cpu_idle: state=0 cpu_id=1
108497  appEventThread-8881  ( 8858) [003] d..2 82317.099998: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108498          <idle>-0     (-----) [003] d..1 82317.100002: cpu_idle: state=0 cpu_id=3
108499 s.nexuslauncher-10023 (10023) [004] d..3 82317.100139: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
108500 s.nexuslauncher-10023 (10023) [004] d..4 82317.100150: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=007
108501          <idle>-0     (-----) [007] .n.1 82317.100156: cpu_idle: state=4294967295 cpu_id=7
108502 s.nexuslauncher-10023 (10023) [004] d..2 82317.100163: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
108503          <idle>-0     (-----) [007] d..2 82317.100164: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
108504    RenderThread-9436  ( 9105) [006] d..1 82317.100166: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
108505          <idle>-0     (-----) [004] d..1 82317.100170: cpu_idle: state=0 cpu_id=4
108506          <idle>-0     (-----) [000] dnh2 82317.100185: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
108507          <idle>-0     (-----) [000] .n.1 82317.100189: cpu_idle: state=4294967295 cpu_id=0
108508          <idle>-0     (-----) [000] d..2 82317.100196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
108509    RenderThread-9436  ( 9105) [006] .... 82317.100208: binder_transaction: transaction=1572184 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
108510    RenderThread-9436  ( 9105) [006] .... 82317.100210: binder_transaction_alloc_buf: transaction=1572184 data_size=104 offsets_size=0
108511    RenderThread-9436  ( 9105) [006] d..4 82317.100212: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
108512    RenderThread-9436  ( 9105) [006] d..5 82317.100225: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
108513    RenderThread-9436  ( 9105) [006] d..2 82317.100253: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
108514<...>-8951 ( 8858) [006] .... 82317.100261: binder_transaction_received: transaction=1572184
108515    RenderThread-16607 (10023) [007] d..1 82317.100263: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
108516    RenderThread-16607 (10023) [007] d..2 82317.100272: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
108517          <idle>-0     (-----) [004] .n.1 82317.100277: cpu_idle: state=4294967295 cpu_id=4
108518          <idle>-0     (-----) [004] d..2 82317.100282: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
108519    RenderThread-16607 (10023) [007] d..1 82317.100283: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
108520 s.nexuslauncher-10023 (10023) [004] d..2 82317.100294: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
108521          <idle>-0     (-----) [004] d..1 82317.100298: cpu_idle: state=0 cpu_id=4
108522<...>-8951 ( 8858) [006] .... 82317.100300: binder_transaction: transaction=1572185 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
108523<...>-8951 ( 8858) [006] .... 82317.100302: binder_transaction_alloc_buf: transaction=1572185 data_size=52 offsets_size=8
108524<...>-8951 ( 8858) [006] d..2 82317.100308: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
108525          <idle>-0     (-----) [001] dnh2 82317.100326: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=001
108526<...>-8951 ( 8858) [006] d..3 82317.100326: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
108527          <idle>-0     (-----) [001] .n.1 82317.100330: cpu_idle: state=4294967295 cpu_id=1
108528          <idle>-0     (-----) [001] d..2 82317.100337: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
108529<...>-8951 ( 8858) [006] d..2 82317.100341: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
108530    RenderThread-9436  ( 9105) [006] .... 82317.100345: binder_transaction_received: transaction=1572185
108531    RenderThread-16607 (10023) [007] .... 82317.100349: binder_transaction: transaction=1572186 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
108532    RenderThread-16607 (10023) [007] .... 82317.100351: binder_transaction_alloc_buf: transaction=1572186 data_size=104 offsets_size=0
108533    RenderThread-16607 (10023) [007] ...2 82317.100354: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
108534    RenderThread-16607 (10023) [007] d..4 82317.100356: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
108535    RenderThread-16607 (10023) [007] d..5 82317.100365: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=007
108536<...>-18840 ( 10023) [001] d..2 82317.100370: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108537    RenderThread-16607 (10023) [007] d..2 82317.100372: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
108538          <idle>-0     (-----) [001] d..1 82317.100377: cpu_idle: state=0 cpu_id=1
108539<...>-8951 ( 8858) [007] .... 82317.100378: binder_transaction_received: transaction=1572186
108540<...>-8951 ( 8858) [007] ...1 82317.100406: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
108541<...>-8951 ( 8858) [007] ...1 82317.100421: tracing_mark_write: B|8858|FreeBuffer
108542<...>-8951 ( 8858) [007] d..2 82317.100436: sched_waking: comm=system pid=104 prio=120 target_cpu=002
108543<...>-8951 ( 8858) [007] ...1 82317.100454: tracing_mark_write: E|8858
108544<...>-8951 ( 8858) [007] ...1 82317.100456: tracing_mark_write: B|8858|FreeBuffer
108545<...>-24462 ( 9871) [002] d.h1 82317.100457: sched_wakeup: comm=system pid=104 prio=120 target_cpu=002
108546<...>-8951 ( 8858) [007] ...1 82317.100464: tracing_mark_write: E|8858
108547<...>-8951 ( 8858) [007] ...1 82317.100468: tracing_mark_write: E|8858
108548<...>-8951 ( 8858) [007] ...1 82317.100478: tracing_mark_write: B|8858|HIDL::IMapper::createDescriptor_2_1::passthrough
108549<...>-8951 ( 8858) [007] ...1 82317.100482: tracing_mark_write: E|8858
108550<...>-8951 ( 8858) [007] ...1 82317.100489: tracing_mark_write: B|8858|HIDL::IAllocator::allocate::client
108551<...>-8951 ( 8858) [007] ...1 82317.100490: tracing_mark_write: E|8858
108552<...>-8951 ( 8858) [007] .... 82317.100509: binder_transaction: transaction=1572187 dest_node=36 dest_proc=621 dest_thread=0 reply=0 flags=0x10 code=0x2
108553<...>-8951 ( 8858) [007] .... 82317.100511: binder_transaction_alloc_buf: transaction=1572187 data_size=136 offsets_size=16
108554<...>-8951 ( 8858) [007] ...2 82317.100514: binder_set_priority: proc=621 thread=1127 old=120 => new=110 desired=110
108555<...>-8951 ( 8858) [007] d..4 82317.100516: sched_waking: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=005
108556<...>-8951 ( 8858) [007] dn.5 82317.100527: sched_wakeup: comm=HwBinder:621_2 pid=1127 prio=110 target_cpu=007
108557<...>-8951 ( 8858) [007] d..2 82317.100531: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=R+ ==> next_comm=HwBinder:621_2 next_pid=1127 next_prio=110
108558<...>-10062 ( 10023) [005] d..1 82317.100536: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
108559<...>-1127 ( 621) [007] .... 82317.100537: binder_transaction_received: transaction=1572187
108560<...>-10062 ( 10023) [005] d..2 82317.100545: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
108561          <idle>-0     (-----) [004] .n.1 82317.100549: cpu_idle: state=4294967295 cpu_id=4
108562          <idle>-0     (-----) [004] d..2 82317.100553: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
108563 s.nexuslauncher-10023 (10023) [004] d..1 82317.100556: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=001
108564<...>-1127 ( 621) [007] ...1 82317.100566: tracing_mark_write: B|621|HIDL::IAllocator::allocate::server
108565          <idle>-0     (-----) [001] dnh2 82317.100570: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=001
108566          <idle>-0     (-----) [001] .n.1 82317.100574: cpu_idle: state=4294967295 cpu_id=1
108567          <idle>-0     (-----) [001] d..2 82317.100579: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
108568<...>-1127 ( 621) [007] ...1 82317.100598: tracing_mark_write: B|621|AllocBuffer
108569<...>-1127 ( 621) [007] ...1 82317.100606: tracing_mark_write: B|621|ION_IOC_ALLOC size: 9469952
108570 s.nexuslauncher-10023 (10023) [004] .... 82317.100702: binder_transaction: transaction=1572188 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x10
108571<...>-1127 ( 621) [007] ...1 82317.100702: tracing_mark_write: E|621
108572 s.nexuslauncher-10023 (10023) [004] .... 82317.100704: binder_transaction_alloc_buf: transaction=1572188 data_size=108 offsets_size=8
108573<...>-1127 ( 621) [007] ...1 82317.100705: tracing_mark_write: B|621|ION_IOC_MAP
108574 s.nexuslauncher-10023 (10023) [004] d..4 82317.100710: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
108575<...>-1127 ( 621) [007] ...1 82317.100714: tracing_mark_write: E|621
108576<...>-1127 ( 621) [007] ...1 82317.100717: tracing_mark_write: E|621
108577<...>-1127 ( 621) [007] ...1 82317.100719: tracing_mark_write: B|621|AllocBuffer
108578<...>-1127 ( 621) [007] ...1 82317.100721: tracing_mark_write: B|621|ION_IOC_ALLOC size: 20480
108579<...>-1127 ( 621) [007] ...1 82317.100728: tracing_mark_write: E|621
108580<...>-1127 ( 621) [007] ...1 82317.100729: tracing_mark_write: B|621|ION_IOC_MAP
108581          <idle>-0     (-----) [003] dnh2 82317.100732: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=003
108582<...>-1127 ( 621) [007] ...1 82317.100734: tracing_mark_write: E|621
108583<...>-1127 ( 621) [007] ...1 82317.100735: tracing_mark_write: E|621
108584          <idle>-0     (-----) [003] .n.1 82317.100735: cpu_idle: state=4294967295 cpu_id=3
108585          <idle>-0     (-----) [003] d..2 82317.100740: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
108586<...>-11815 ( 8943) [003] .... 82317.100745: binder_transaction_received: transaction=1572188
108587<...>-9105 ( 9105) [000] d..1 82317.100764: sched_waking: comm=HeapTaskDaemon pid=9125 prio=124 target_cpu=006
108588 s.nexuslauncher-10023 (10023) [004] d..2 82317.100765: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
108589          <idle>-0     (-----) [004] d..1 82317.100772: cpu_idle: state=0 cpu_id=4
108590<...>-1127 ( 621) [007] ...1 82317.100776: tracing_mark_write: E|621
108591<...>-1127 ( 621) [007] .... 82317.100783: binder_transaction: transaction=1572189 dest_node=0 dest_proc=8858 dest_thread=8951 reply=1 flags=0x0 code=0x0
108592<...>-1127 ( 621) [007] .... 82317.100786: binder_transaction_alloc_buf: transaction=1572189 data_size=172 offsets_size=32
108593    RenderThread-9436  ( 9105) [006] d.h1 82317.100788: sched_wakeup: comm=HeapTaskDaemon pid=9125 prio=124 target_cpu=006
108594<...>-1127 ( 621) [007] .... 82317.100792: binder_set_priority: proc=621 thread=1127 old=110 => new=120 desired=120
108595<...>-1127 ( 621) [007] ...1 82317.100807: tracing_mark_write: B|621|FreeBuffer
108596<...>-1127 ( 621) [007] ...1 82317.100813: tracing_mark_write: E|621
108597<...>-1127 ( 621) [007] ...1 82317.100814: tracing_mark_write: B|621|FreeBuffer
108598<...>-1127 ( 621) [007] ...1 82317.100816: tracing_mark_write: B|621|UnmapBuffer
108599<...>-1127 ( 621) [007] ...1 82317.100825: tracing_mark_write: E|621
108600<...>-1127 ( 621) [007] ...1 82317.100829: tracing_mark_write: E|621
108601<...>-1127 ( 621) [007] d..2 82317.100844: sched_switch: prev_comm=HwBinder:621_2 prev_pid=1127 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
108602<...>-8951 ( 8858) [007] .... 82317.100851: binder_transaction_received: transaction=1572189
108603<...>-8951 ( 8858) [007] ...1 82317.100869: tracing_mark_write: B|8858|HIDL::IMapper::importBuffer::passthrough
108604<...>-8951 ( 8858) [007] ...1 82317.100889: tracing_mark_write: E|8858
108605<...>-8951 ( 8858) [007] ...1 82317.100907: tracing_mark_write: B|8858|HIDL::IMapper::getTransportSize::passthrough
108606<...>-8951 ( 8858) [007] ...1 82317.100910: tracing_mark_write: E|8858
108607<...>-8951 ( 8858) [007] .... 82317.100936: binder_transaction: transaction=1572191 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
108608<...>-18840 ( 10023) [001] .... 82317.100936: binder_transaction: transaction=1572190 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
108609<...>-8951 ( 8858) [007] .... 82317.100938: binder_transaction_alloc_buf: transaction=1572191 data_size=28 offsets_size=0
108610<...>-18840 ( 10023) [001] .... 82317.100939: binder_transaction_alloc_buf: transaction=1572190 data_size=684 offsets_size=48
108611<...>-8951 ( 8858) [007] d..2 82317.100940: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
108612<...>-9105 ( 9105) [000] d..2 82317.100944: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108613<...>-8951 ( 8858) [007] dn.3 82317.100947: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=007
108614<...>-8951 ( 8858) [007] d..2 82317.100951: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
108615<...>-18840 ( 10023) [001] ...2 82317.100952: binder_set_priority: proc=8858 thread=13083 old=120 => new=118 desired=118
108616<...>-18840 ( 10023) [001] d..4 82317.100955: sched_waking: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=001
108617          <idle>-0     (-----) [000] d..1 82317.100956: cpu_idle: state=0 cpu_id=0
108618    RenderThread-16607 (10023) [007] .... 82317.100956: binder_transaction_received: transaction=1572191
108619<...>-18840 ( 10023) [001] d..5 82317.100964: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=001
108620<...>-18840 ( 10023) [001] d..2 82317.100973: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=118
108621    RenderThread-16607 (10023) [007] .... 82317.100978: binder_transaction: transaction=1572192 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x1
108622<...>-13083 ( 8858) [001] .... 82317.100978: binder_transaction_received: transaction=1572190
108623    RenderThread-16607 (10023) [007] .... 82317.100979: binder_transaction_alloc_buf: transaction=1572192 data_size=84 offsets_size=0
108624    RenderThread-16607 (10023) [007] ...2 82317.100981: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
108625    RenderThread-16607 (10023) [007] d..4 82317.100983: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
108626    RenderThread-16607 (10023) [007] d..5 82317.100999: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
108627          <idle>-0     (-----) [004] .n.1 82317.101004: cpu_idle: state=4294967295 cpu_id=4
108628    RenderThread-16607 (10023) [007] d..2 82317.101005: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
108629<...>-8951 ( 8858) [007] .... 82317.101009: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
108630          <idle>-0     (-----) [004] d..2 82317.101009: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
108631<...>-8874 ( 8858) [004] .... 82317.101017: binder_transaction_received: transaction=1572192
108632<...>-8951 ( 8858) [007] d..2 82317.101036: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
108633<...>-11815 ( 8943) [003] d..2 82317.101042: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=003
108634          <idle>-0     (-----) [007] d..1 82317.101045: cpu_idle: state=0 cpu_id=7
108635<...>-8874 ( 8858) [004] .... 82317.101053: binder_transaction: transaction=1572193 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
108636<...>-11815 ( 8943) [003] d..3 82317.101055: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=003
108637<...>-8874 ( 8858) [004] .... 82317.101056: binder_transaction_alloc_buf: transaction=1572193 data_size=208 offsets_size=16
108638<...>-8874 ( 8858) [004] d..2 82317.101061: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
108639<...>-8874 ( 8858) [004] d..3 82317.101072: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
108640<...>-8874 ( 8858) [004] .... 82317.101074: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
108641<...>-13083 ( 8858) [001] d..1 82317.101079: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
108642<...>-8874 ( 8858) [004] d..2 82317.101094: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
108643<...>-13083 ( 8858) [001] d..2 82317.101094: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
108644    RenderThread-16607 (10023) [004] .... 82317.101099: binder_transaction_received: transaction=1572193
108645<...>-13083 ( 8858) [001] .... 82317.101110: binder_transaction: transaction=1572194 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
108646<...>-13083 ( 8858) [001] .... 82317.101112: binder_transaction_alloc_buf: transaction=1572194 data_size=0 offsets_size=0
108647<...>-13083 ( 8858) [001] d..2 82317.101114: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=001
108648<...>-11815 ( 8943) [003] d..3 82317.101117: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=007
108649<...>-13083 ( 8858) [001] d..3 82317.101121: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=001
108650<...>-13083 ( 8858) [001] .... 82317.101123: binder_set_priority: proc=8858 thread=13083 old=118 => new=120 desired=120
108651    RenderThread-16607 (10023) [004] ...1 82317.101125: tracing_mark_write: B|10023|HIDL::IMapper::importBuffer::passthrough
108652<...>-13083 ( 8858) [001] d..2 82317.101131: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
108653<...>-18840 ( 10023) [001] .... 82317.101135: binder_transaction_received: transaction=1572194
108654          <idle>-0     (-----) [007] dnh2 82317.101139: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=007
108655          <idle>-0     (-----) [000] .n.1 82317.101141: cpu_idle: state=4294967295 cpu_id=0
108656          <idle>-0     (-----) [007] .n.1 82317.101142: cpu_idle: state=4294967295 cpu_id=7
108657    RenderThread-16607 (10023) [004] ...1 82317.101147: tracing_mark_write: E|10023
108658          <idle>-0     (-----) [007] d..2 82317.101147: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
108659          <idle>-0     (-----) [000] d..2 82317.101149: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
108660    RenderThread-16607 (10023) [004] ...1 82317.101153: tracing_mark_write: B|10023|HIDL::IMapper::validateBufferSize::passthrough
108661    RenderThread-16607 (10023) [004] ...1 82317.101164: tracing_mark_write: E|10023
108662        DispSync-8879  ( 8858) [000] d..1 82317.101167: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
108663    RenderThread-16607 (10023) [004] ...1 82317.101170: tracing_mark_write: B|10023|HIDL::IMapper::getTransportSize::passthrough
108664    RenderThread-16607 (10023) [004] ...1 82317.101172: tracing_mark_write: E|10023
108665<...>-18840 ( 10023) [001] d..2 82317.101172: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
108666    RenderThread-9436  ( 9105) [006] .... 82317.101172: binder_transaction: transaction=1572195 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
108667    RenderThread-9436  ( 9105) [006] .... 82317.101175: binder_transaction_alloc_buf: transaction=1572195 data_size=192 offsets_size=8
108668    RenderThread-9436  ( 9105) [006] d..4 82317.101179: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
108669        DispSync-8879  ( 8858) [000] d..2 82317.101187: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
108670<...>-13083 ( 8858) [001] d..2 82317.101192: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
108671    RenderThread-9436  ( 9105) [006] d..5 82317.101200: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
108672 PowerManagerSer-8971  ( 8943) [007] d..2 82317.101207: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
108673<...>-8874 ( 8858) [007] .... 82317.101213: binder_transaction_received: transaction=1572195
108674        DispSync-8879  ( 8858) [000] d..2 82317.101214: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108675    RenderThread-9436  ( 9105) [006] d..2 82317.101218: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=9125 next_prio=124
108676          <idle>-0     (-----) [000] d..1 82317.101223: cpu_idle: state=0 cpu_id=0
108677   sfEventThread-8882  ( 8858) [001] d..3 82317.101228: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
108678<...>-11815 ( 8943) [003] d..2 82317.101244: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=110 prev_state=R+ ==> next_comm=statsd.writer next_pid=1044 next_prio=120
108679   sfEventThread-8882  ( 8858) [001] d..4 82317.101248: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
108680   sfEventThread-8882  ( 8858) [001] d..3 82317.101260: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
108681<...>-24462 ( 9871) [002] .... 82317.101263: binder_transaction: transaction=1572196 dest_node=1572174 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x1
108682          <idle>-0     (-----) [000] dnh3 82317.101270: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
108683<...>-8874 ( 8858) [007] d..2 82317.101272: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
108684<...>-24462 ( 9871) [002] .... 82317.101272: binder_transaction_alloc_buf: transaction=1572196 data_size=168 offsets_size=0
108685<...>-24462 ( 9871) [002] d..4 82317.101285: sched_waking: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=000
108686   sfEventThread-8882  ( 8858) [001] d..1 82317.101315: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
108687          <idle>-0     (-----) [007] dnh2 82317.101332: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=007
108688          <idle>-0     (-----) [000] dnh4 82317.101347: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
108689<...>-24462 ( 9871) [002] d..5 82317.101378: sched_wakeup: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=001
108690   statsd.writer-1044  (  901) [003] d..2 82317.101382: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
108691          <idle>-0     (-----) [007] d..2 82317.101383: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
108692          <idle>-0     (-----) [000] .n.1 82317.101430: cpu_idle: state=4294967295 cpu_id=0
108693   sfEventThread-8882  ( 8858) [001] d..2 82317.101467: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:9090_6 next_pid=10728 next_prio=120
108694          <idle>-0     (-----) [000] d..2 82317.101484: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
108695   Binder:9090_6-10728 ( 9090) [001] .... 82317.101489: binder_transaction_received: transaction=1572196
108696<...>-9005 ( 8943) [007] d.h3 82317.101558: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
108697 kgsl_worker_thr-258   (  258) [003] d..2 82317.101592: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
108698<...>-9005 ( 8943) [007] d..2 82317.101648: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
108699<...>-24462 ( 9871) [002] d..1 82317.101651: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=001
108700<...>-8874 ( 8858) [007] d..1 82317.101656: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
108701<...>-24462 ( 9871) [002] d..2 82317.101668: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=001
108702   Binder:9090_6-10728 ( 9090) [001] dnh1 82317.101673: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
108703   Binder:9090_6-10728 ( 9090) [001] d..2 82317.101681: sched_switch: prev_comm=Binder:9090_6 prev_pid=10728 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
108704   statsd.writer-1044  (  901) [003] d..2 82317.101688: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=110
108705   sfEventThread-8882  ( 8858) [001] d..2 82317.101703: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
108706<...>-8874 ( 8858) [007] .... 82317.101706: binder_transaction: transaction=1572197 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
108707<...>-8874 ( 8858) [007] .... 82317.101708: binder_transaction_alloc_buf: transaction=1572197 data_size=68 offsets_size=0
108708<...>-8874 ( 8858) [007] d..2 82317.101709: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
108709<...>-11815 ( 8943) [003] d..1 82317.101710: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=007
108710<...>-8874 ( 8858) [007] d..3 82317.101720: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
108711<...>-8874 ( 8858) [007] d.h2 82317.101725: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=007
108712<...>-8874 ( 8858) [007] d..2 82317.101741: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
108713    RenderThread-9436  ( 9105) [007] .... 82317.101747: binder_transaction_received: transaction=1572197
108714<...>-11815 ( 8943) [003] d.s1 82317.101802: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
108715<...>-11815 ( 8943) [003] d.s2 82317.101812: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
108716<...>-11815 ( 8943) [003] d.s1 82317.101814: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108717<...>-24462 ( 9871) [002] d..2 82317.101815: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=R ==> next_comm=system next_pid=104 next_prio=120
108718<...>-11815 ( 8943) [003] d.s2 82317.101829: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108719    RenderThread-9436  ( 9105) [007] d..2 82317.101829: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
108720<...>-11815 ( 8943) [003] d..2 82317.101843: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=R+ ==> next_comm=rcu_sched next_pid=8 next_prio=120
108721<...>-8 ( 8) [003] d..2 82317.101858: 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
108722     rcu_preempt-7     (    7) [003] d..2 82317.101866: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
108723<...>-11815 ( 8943) [003] d..2 82317.101868: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108724<...>-11815 ( 8943) [003] d..3 82317.101874: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108725<...>-9005 ( 8943) [007] .... 82317.101880: binder_transaction: transaction=1572198 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
108726<...>-9005 ( 8943) [007] .... 82317.101882: binder_transaction_alloc_buf: transaction=1572198 data_size=80 offsets_size=0
108727<...>-9005 ( 8943) [007] d..4 82317.101884: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
108728<...>-9005 ( 8943) [007] d..5 82317.101897: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
108729<...>-11815 ( 8943) [003] d..2 82317.101991: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
108730     rcu_preempt-7     (    7) [003] d..2 82317.101996: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
108731     rcu_preempt-7     (    7) [003] d..3 82317.102019: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
108732     rcu_preempt-7     (    7) [003] d..2 82317.102029: 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
108733         rcuop/0-10    (   10) [003] d..2 82317.102034: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
108734         rcuop/0-10    (   10) [003] d..3 82317.102052: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
108735         rcuop/0-10    (   10) [003] d..2 82317.102064: 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
108736         rcuop/1-21    (   21) [003] d..2 82317.102121: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
108737<...>-8874 ( 8858) [003] .... 82317.102166: binder_transaction_received: transaction=1572198
108738<...>-8874 ( 8858) [003] d..1 82317.102185: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
108739<...>-8874 ( 8858) [003] dn.2 82317.102198: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
108740<...>-8874 ( 8858) [003] d..2 82317.102203: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
108741   sfEventThread-8882  ( 8858) [003] d..2 82317.102217: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
108742  surfaceflinger-8858  ( 8858) [000] d..2 82317.102220: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108743<...>-8874 ( 8858) [003] d..1 82317.102220: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
108744<...>-8874 ( 8858) [003] d..2 82317.102233: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
108745          <idle>-0     (-----) [000] d..2 82317.102241: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
108746<...>-8874 ( 8858) [003] d..2 82317.102257: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108747   sfEventThread-8882  ( 8858) [000] d..1 82317.102259: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
108748<...>-9005 ( 8943) [007] .... 82317.102272: binder_transaction: transaction=1572199 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
108749<...>-9005 ( 8943) [007] .... 82317.102275: binder_transaction_alloc_buf: transaction=1572199 data_size=988 offsets_size=48
108750   sfEventThread-8882  ( 8858) [000] d..2 82317.102278: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
108751          <idle>-0     (-----) [003] d..2 82317.102286: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
108752<...>-9005 ( 8943) [007] ...2 82317.102295: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
108753<...>-9005 ( 8943) [007] d..4 82317.102297: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=003
108754   sfEventThread-8882  ( 8858) [000] d..2 82317.102309: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:9090_6 next_pid=10728 next_prio=120
108755<...>-9005 ( 8943) [007] dn.5 82317.102312: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=007
108756<...>-9005 ( 8943) [007] d..2 82317.102340: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
108757<...>-8874 ( 8858) [007] .... 82317.102349: binder_transaction_received: transaction=1572199
108758<...>-8874 ( 8858) [007] .... 82317.102424: binder_transaction: transaction=1572200 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
108759<...>-8874 ( 8858) [007] .... 82317.102427: binder_transaction_alloc_buf: transaction=1572200 data_size=0 offsets_size=0
108760<...>-8874 ( 8858) [007] .... 82317.102429: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
108761<...>-8874 ( 8858) [007] d..2 82317.102457: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=110
108762<...>-9005 ( 8943) [007] .... 82317.102462: binder_transaction_received: transaction=1572200
108763<...>-9005 ( 8943) [007] d..1 82317.102494: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=003
108764  surfaceflinger-8858  ( 8858) [003] d.h1 82317.102521: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=003
108765<...>-9005 ( 8943) [007] d..2 82317.102576: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
108766          <idle>-0     (-----) [007] d..1 82317.102597: cpu_idle: state=0 cpu_id=7
108767    RenderThread-16607 (10023) [004] .... 82317.102642: binder_transaction: transaction=1572201 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
108768    RenderThread-16607 (10023) [004] .... 82317.102645: binder_transaction_alloc_buf: transaction=1572201 data_size=192 offsets_size=8
108769    RenderThread-16607 (10023) [004] ...2 82317.102652: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
108770    RenderThread-16607 (10023) [004] d..4 82317.102654: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=007
108771    RenderThread-16607 (10023) [004] dn.5 82317.102667: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
108772    RenderThread-16607 (10023) [004] d..2 82317.102672: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
108773<...>-8874 ( 8858) [004] .... 82317.102681: binder_transaction_received: transaction=1572201
108774   Binder:9090_6-10728 ( 9090) [000] d..3 82317.102713: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
108775   Binder:9090_6-10728 ( 9090) [000] d..4 82317.102733: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
108776<...>-8874 ( 8858) [004] .... 82317.102761: binder_transaction: transaction=1572202 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
108777<...>-8874 ( 8858) [004] .... 82317.102762: binder_transaction_alloc_buf: transaction=1572202 data_size=68 offsets_size=0
108778<...>-8874 ( 8858) [004] .... 82317.102764: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
108779<...>-8874 ( 8858) [004] d..2 82317.102784: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
108780    RenderThread-16607 (10023) [004] .... 82317.102790: binder_transaction_received: transaction=1572202
108781   Binder:9090_6-10728 ( 9090) [000] d..2 82317.102845: sched_switch: prev_comm=Binder:9090_6 prev_pid=10728 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
108782    RenderThread-16607 (10023) [004] d..2 82317.102852: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
108783          <idle>-0     (-----) [004] d..1 82317.102870: cpu_idle: state=0 cpu_id=4
108784<...>-9090 ( 9090) [000] d..2 82317.103015: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108785          <idle>-0     (-----) [000] d..1 82317.103030: cpu_idle: state=0 cpu_id=0
108786  surfaceflinger-8858  ( 8858) [003] ...1 82317.103063: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
108787  surfaceflinger-8858  ( 8858) [003] ...1 82317.103069: tracing_mark_write: E|8858
108788  surfaceflinger-8858  ( 8858) [003] .... 82317.103117: binder_transaction: transaction=1572203 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
108789  surfaceflinger-8858  ( 8858) [003] .... 82317.103122: binder_transaction_alloc_buf: transaction=1572203 data_size=540 offsets_size=96
108790          <idle>-0     (-----) [004] ...1 82317.103128: cpu_idle: state=4294967295 cpu_id=4
108791          <idle>-0     (-----) [004] d..1 82317.103131: cpu_idle: state=0 cpu_id=4
108792  surfaceflinger-8858  ( 8858) [003] ...2 82317.103140: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
108793  surfaceflinger-8858  ( 8858) [003] d..4 82317.103148: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
108794  surfaceflinger-8858  ( 8858) [003] d..5 82317.103167: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
108795          <idle>-0     (-----) [000] .n.1 82317.103173: cpu_idle: state=4294967295 cpu_id=0
108796  surfaceflinger-8858  ( 8858) [003] d..2 82317.103178: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
108797          <idle>-0     (-----) [000] d..2 82317.103181: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
108798 [email protected]   (  619) [000] .... 82317.103191: binder_transaction_received: transaction=1572203
108799 [email protected]   (  619) [000] ...1 82317.103241: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
108800 [email protected]   (  619) [000] ...1 82317.103356: tracing_mark_write: B|619|HWCSession::PresentDisplay::
108801          system-104   (  104) [002] d..2 82317.103399: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
108802<...>-16709 ( 9871) [001] .... 82317.103489: binder_transaction: transaction=1572204 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x24
108803<...>-16709 ( 9871) [001] .... 82317.103492: binder_transaction_alloc_buf: transaction=1572204 data_size=292 offsets_size=8
108804<...>-24462 ( 9871) [002] d..2 82317.103498: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108805<...>-16709 ( 9871) [001] d..4 82317.103502: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=006
108806          <idle>-0     (-----) [002] d..1 82317.103517: cpu_idle: state=0 cpu_id=2
108807<...>-16709 ( 9871) [001] d..5 82317.103530: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
108808          <idle>-0     (-----) [002] .n.1 82317.103537: cpu_idle: state=4294967295 cpu_id=2
108809          <idle>-0     (-----) [002] d..2 82317.103567: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
108810<...>-16709 ( 9871) [001] d..2 82317.103574: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
108811<...>-12998 ( 8943) [002] .... 82317.103576: binder_transaction_received: transaction=1572204
108812<...>-13083 ( 8858) [001] d..2 82317.103614: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108813          <idle>-0     (-----) [001] d..1 82317.103630: cpu_idle: state=0 cpu_id=1
108814<...>-11815 ( 8943) [003] d..1 82317.103777: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
108815<...>-12998 ( 8943) [002] d..2 82317.103783: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108816<...>-11815 ( 8943) [003] d..2 82317.103795: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
108817          <idle>-0     (-----) [002] d..2 82317.103800: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
108818 [email protected]   (  619) [000] d.h2 82317.103805: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
108819 [email protected]   (  619) [000] d.h3 82317.103825: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
108820          <idle>-0     (-----) [001] .n.1 82317.103831: cpu_idle: state=4294967295 cpu_id=1
108821          <idle>-0     (-----) [001] d..2 82317.103837: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
108822 [email protected]   (  619) [000] ...1 82317.103841: tracing_mark_write: B|619|HWDeviceDRM::Validate::
108823<...>-11815 ( 8943) [003] d..2 82317.103893: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108824 kgsl_worker_thr-258   (  258) [001] d..2 82317.103905: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
108825          <idle>-0     (-----) [003] d..1 82317.103907: cpu_idle: state=0 cpu_id=3
108826          <idle>-0     (-----) [001] d..1 82317.103911: cpu_idle: state=0 cpu_id=1
108827<...>-12998 ( 8943) [002] .... 82317.103932: binder_transaction: transaction=1572205 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
108828<...>-12998 ( 8943) [002] .... 82317.103937: binder_transaction_alloc_buf: transaction=1572205 data_size=8 offsets_size=0
108829<...>-12998 ( 8943) [002] d..2 82317.103940: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=001
108830<...>-12998 ( 8943) [002] d..3 82317.103953: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=002
108831<...>-12998 ( 8943) [002] d..2 82317.103979: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
108832<...>-16709 ( 9871) [002] .... 82317.103984: binder_transaction_received: transaction=1572205
108833<...>-16709 ( 9871) [002] d..2 82317.104203: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108834          <idle>-0     (-----) [002] d..1 82317.104211: cpu_idle: state=0 cpu_id=2
108835 [email protected]   (  619) [000] ...1 82317.104256: tracing_mark_write: E|619
108836 [email protected]   (  619) [000] ...1 82317.104348: tracing_mark_write: B|619|HWDeviceDRM::Commit::
108837 [email protected]   (  619) [000] ...1 82317.104355: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
108838 [email protected]   (  619) [000] d..2 82317.104606: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
108839 [email protected]   (  619) [000] d..3 82317.104626: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
108840          <idle>-0     (-----) [002] .n.1 82317.104632: cpu_idle: state=4294967295 cpu_id=2
108841          <idle>-0     (-----) [002] d..2 82317.104639: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
108842 [email protected]   (  619) [000] ...1 82317.104691: tracing_mark_write: E|619
108843 [email protected]   (  619) [000] ...1 82317.104695: tracing_mark_write: E|619
108844 [email protected]   (  619) [000] ...1 82317.104729: tracing_mark_write: E|619
108845 [email protected]   (  619) [000] ...1 82317.104767: tracing_mark_write: E|619
108846 [email protected]   (  619) [000] .... 82317.104779: binder_transaction: transaction=1572206 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
108847 [email protected]   (  619) [000] .... 82317.104781: binder_transaction_alloc_buf: transaction=1572206 data_size=576 offsets_size=112
108848 [email protected]   (  619) [000] d..2 82317.104793: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
108849 [email protected]   (  619) [000] d..3 82317.104804: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
108850 [email protected]   (  619) [000] .... 82317.104807: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
108851          <idle>-0     (-----) [003] .n.1 82317.104810: cpu_idle: state=4294967295 cpu_id=3
108852          <idle>-0     (-----) [003] d..2 82317.104817: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
108853  surfaceflinger-8858  ( 8858) [003] .... 82317.104822: binder_transaction_received: transaction=1572206
108854 [email protected]   (  619) [000] d..2 82317.104862: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108855          <idle>-0     (-----) [000] d..1 82317.104874: cpu_idle: state=0 cpu_id=0
108856          <idle>-0     (-----) [001] ...1 82317.105232: cpu_idle: state=4294967295 cpu_id=1
108857          <idle>-0     (-----) [001] d..1 82317.105235: cpu_idle: state=0 cpu_id=1
108858  surfaceflinger-8858  ( 8858) [003] d..2 82317.105274: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108859          <idle>-0     (-----) [003] d..1 82317.105283: cpu_idle: state=0 cpu_id=3
108860 crtc_commit:111-321   (  321) [002] d..2 82317.105286: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
108861          <idle>-0     (-----) [002] d..1 82317.105294: cpu_idle: state=0 cpu_id=2
108862          <idle>-0     (-----) [000] ...1 82317.106000: cpu_idle: state=4294967295 cpu_id=0
108863          <idle>-0     (-----) [000] d..1 82317.106003: cpu_idle: state=0 cpu_id=0
108864          <idle>-0     (-----) [002] ...1 82317.106409: cpu_idle: state=4294967295 cpu_id=2
108865          <idle>-0     (-----) [002] d..1 82317.106411: cpu_idle: state=0 cpu_id=2
108866          <idle>-0     (-----) [003] d.s2 82317.108463: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108867          <idle>-0     (-----) [003] dns3 82317.108479: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
108868          <idle>-0     (-----) [003] dns2 82317.108481: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
108869          <idle>-0     (-----) [003] dns3 82317.108490: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
108870          <idle>-0     (-----) [003] dns3 82317.108497: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
108871          <idle>-0     (-----) [003] dns4 82317.108522: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
108872          <idle>-0     (-----) [000] .n.1 82317.108527: cpu_idle: state=4294967295 cpu_id=0
108873          <idle>-0     (-----) [003] .n.1 82317.108535: cpu_idle: state=4294967295 cpu_id=3
108874          <idle>-0     (-----) [000] d..2 82317.108536: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
108875          <idle>-0     (-----) [003] d..2 82317.108542: 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
108876<...>-8 ( 8) [003] d..2 82317.108553: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=003
108877<...>-8 ( 8) [003] d..3 82317.108575: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=001
108878          <idle>-0     (-----) [001] .n.1 82317.108580: cpu_idle: state=4294967295 cpu_id=1
108879<...>-8 ( 8) [003] d..2 82317.108583: 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
108880          <idle>-0     (-----) [001] d..2 82317.108587: 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
108881<...>-30 ( 30) [001] d..2 82317.108599: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
108882     rcu_preempt-7     (    7) [003] d..2 82317.108600: 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
108883<...>-30 ( 30) [001] d..3 82317.108611: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
108884          <idle>-0     (-----) [003] d..2 82317.108615: 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
108885  kworker/u16:15-1311  ( 1311) [000] .... 82317.108624: clk_set_rate: l3_cluster1_vote_clk 940800000
108886<...>-30 ( 30) [001] d..2 82317.108629: 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
108887<...>-8 ( 8) [003] d..2 82317.108632: 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
108888          <idle>-0     (-----) [001] d..1 82317.108635: cpu_idle: state=0 cpu_id=1
108889          <idle>-0     (-----) [003] d..1 82317.108637: cpu_idle: state=0 cpu_id=3
108890  kworker/u16:15-1311  ( 1311) [000] d..2 82317.108805: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
108891          <idle>-0     (-----) [000] d..1 82317.108812: cpu_idle: state=0 cpu_id=0
108892          <idle>-0     (-----) [001] d.s3 82317.108838: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
108893          <idle>-0     (-----) [001] d.s4 82317.108846: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
108894          <idle>-0     (-----) [001] d.s4 82317.108852: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
108895          <idle>-0     (-----) [000] .n.1 82317.108858: cpu_idle: state=4294967295 cpu_id=0
108896          <idle>-0     (-----) [001] ...1 82317.108859: cpu_idle: state=4294967295 cpu_id=1
108897          <idle>-0     (-----) [001] d..1 82317.108861: cpu_idle: state=0 cpu_id=1
108898          <idle>-0     (-----) [000] d..2 82317.108864: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
108899  kworker/u16:15-1311  ( 1311) [000] d..2 82317.109008: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
108900          <idle>-0     (-----) [000] d..1 82317.109014: cpu_idle: state=0 cpu_id=0
108901          <idle>-0     (-----) [001] d.s3 82317.109035: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
108902          <idle>-0     (-----) [001] d.s4 82317.109040: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
108903          <idle>-0     (-----) [001] d.s4 82317.109045: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
108904          <idle>-0     (-----) [000] .n.1 82317.109050: cpu_idle: state=4294967295 cpu_id=0
108905          <idle>-0     (-----) [001] ...1 82317.109050: cpu_idle: state=4294967295 cpu_id=1
108906          <idle>-0     (-----) [001] d..1 82317.109054: cpu_idle: state=0 cpu_id=1
108907          <idle>-0     (-----) [000] d..2 82317.109057: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
108908  kworker/u16:15-1311  ( 1311) [000] .... 82317.109079: clk_set_rate: l3_cluster0_vote_clk 844800000
108909  kworker/u16:15-1311  ( 1311) [000] .... 82317.109082: clk_set_rate: l3_clk 940800000
108910  kworker/u16:15-1311  ( 1311) [000] d..2 82317.109120: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108911          <idle>-0     (-----) [000] d..1 82317.109127: cpu_idle: state=0 cpu_id=0
108912          <idle>-0     (-----) [001] ...1 82317.110237: cpu_idle: state=4294967295 cpu_id=1
108913          <idle>-0     (-----) [001] d..1 82317.110240: cpu_idle: state=0 cpu_id=1
108914          <idle>-0     (-----) [000] d.h5 82317.111400: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
108915          <idle>-0     (-----) [000] dnh6 82317.111415: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
108916          <idle>-0     (-----) [000] dnh5 82317.111418: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
108917          <idle>-0     (-----) [000] dnh6 82317.111427: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
108918          <idle>-0     (-----) [002] .n.1 82317.111432: cpu_idle: state=4294967295 cpu_id=2
108919          <idle>-0     (-----) [000] .n.1 82317.111438: cpu_idle: state=4294967295 cpu_id=0
108920          <idle>-0     (-----) [002] d..2 82317.111440: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
108921          <idle>-0     (-----) [000] d..2 82317.111445: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
108922  crtc_event:111-322   (  322) [000] d..2 82317.111469: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108923<...>-9125 ( 9105) [006] d.h1 82317.111473: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
108924          <idle>-0     (-----) [000] d..1 82317.111474: cpu_idle: state=0 cpu_id=0
108925          <idle>-0     (-----) [000] dnh2 82317.111527: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=000
108926          <idle>-0     (-----) [000] .n.1 82317.111531: cpu_idle: state=4294967295 cpu_id=0
108927          <idle>-0     (-----) [000] d..2 82317.111537: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
108928 crtc_commit:111-321   (  321) [002] d..2 82317.111566: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
108929          <idle>-0     (-----) [002] d..1 82317.111570: cpu_idle: state=0 cpu_id=2
108930           <...>-27566 (-----) [000] d..2 82317.111747: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
108931           <...>-27566 (-----) [000] d..3 82317.111761: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
108932          <idle>-0     (-----) [002] d.H3 82317.111842: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
108933          <idle>-0     (-----) [002] dnH4 82317.111852: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
108934          <idle>-0     (-----) [002] dns3 82317.111858: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
108935          <idle>-0     (-----) [002] dns4 82317.111871: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
108936          <idle>-0     (-----) [003] .n.1 82317.111877: cpu_idle: state=4294967295 cpu_id=3
108937          <idle>-0     (-----) [002] .n.1 82317.111882: cpu_idle: state=4294967295 cpu_id=2
108938          <idle>-0     (-----) [003] d..2 82317.111883: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
108939          <idle>-0     (-----) [002] d..2 82317.111889: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
108940           <...>-27566 (-----) [000] d..2 82317.111896: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
108941  crtc_event:111-322   (  322) [003] d..2 82317.111903: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108942          <idle>-0     (-----) [003] d..1 82317.111907: cpu_idle: state=0 cpu_id=3
108943         sugov:0-576   (  576) [002] .... 82317.111916: clk_set_rate: pwrcl_clk 1612800000
108944         sugov:0-576   (  576) [002] .... 82317.111971: clk_set_rate: cpu3_pwrcl_clk 1766400000
108945         sugov:0-576   (  576) [002] .... 82317.111981: clk_set_rate: cpu2_pwrcl_clk 1766400000
108946         sugov:0-576   (  576) [002] .... 82317.111987: clk_set_rate: cpu1_pwrcl_clk 1766400000
108947         sugov:0-576   (  576) [002] .... 82317.111993: clk_set_rate: cpu0_pwrcl_clk 1612800000
108948          <idle>-0     (-----) [001] ...1 82317.111994: cpu_idle: state=4294967295 cpu_id=1
108949          <idle>-0     (-----) [001] d..1 82317.111997: cpu_idle: state=0 cpu_id=1
108950<...>-581 ( 571) [000] d..2 82317.112021: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108951          <idle>-0     (-----) [000] d..1 82317.112033: cpu_idle: state=0 cpu_id=0
108952         sugov:0-576   (  576) [002] .... 82317.112105: cpu_frequency: state=1612800 cpu_id=0
108953         sugov:0-576   (  576) [002] d..2 82317.112233: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
108954          <idle>-0     (-----) [002] d..1 82317.112243: cpu_idle: state=0 cpu_id=2
108955          <idle>-0     (-----) [001] d.s3 82317.112255: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
108956          <idle>-0     (-----) [001] d.s4 82317.112266: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
108957          <idle>-0     (-----) [001] ...1 82317.112272: cpu_idle: state=4294967295 cpu_id=1
108958          <idle>-0     (-----) [002] .n.1 82317.112272: cpu_idle: state=4294967295 cpu_id=2
108959          <idle>-0     (-----) [001] d..1 82317.112275: cpu_idle: state=0 cpu_id=1
108960          <idle>-0     (-----) [002] d..2 82317.112278: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
108961         sugov:0-576   (  576) [002] .... 82317.112284: cpu_frequency: state=1612800 cpu_id=1
108962         sugov:0-576   (  576) [002] .... 82317.112288: cpu_frequency: state=1612800 cpu_id=2
108963         sugov:0-576   (  576) [002] .... 82317.112290: cpu_frequency: state=1612800 cpu_id=3
108964         sugov:0-576   (  576) [002] d..2 82317.112305: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108965          <idle>-0     (-----) [002] d..1 82317.112311: cpu_idle: state=0 cpu_id=2
108966          <idle>-0     (-----) [002] ...1 82317.113484: cpu_idle: state=4294967295 cpu_id=2
108967          <idle>-0     (-----) [002] d..1 82317.113487: cpu_idle: state=0 cpu_id=2
108968          <idle>-0     (-----) [000] d.h5 82317.113751: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
108969          <idle>-0     (-----) [000] d.h6 82317.113765: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
108970          <idle>-0     (-----) [002] .n.1 82317.113770: cpu_idle: state=4294967295 cpu_id=2
108971          <idle>-0     (-----) [002] d..2 82317.113776: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
108972          <idle>-0     (-----) [000] ...1 82317.113777: cpu_idle: state=4294967295 cpu_id=0
108973          <idle>-0     (-----) [000] d..1 82317.113780: cpu_idle: state=0 cpu_id=0
108974 crtc_commit:111-321   (  321) [002] d..2 82317.113850: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
108975          <idle>-0     (-----) [002] d..1 82317.113857: cpu_idle: state=0 cpu_id=2
108976          <idle>-0     (-----) [000] d.h5 82317.114030: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
108977          <idle>-0     (-----) [000] d.h6 82317.114040: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
108978          <idle>-0     (-----) [003] .n.1 82317.114045: cpu_idle: state=4294967295 cpu_id=3
108979          <idle>-0     (-----) [003] d..2 82317.114050: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
108980          <idle>-0     (-----) [000] ...1 82317.114053: cpu_idle: state=4294967295 cpu_id=0
108981          <idle>-0     (-----) [000] d..1 82317.114055: cpu_idle: state=0 cpu_id=0
108982  crtc_event:111-322   (  322) [003] d..2 82317.114068: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
108983          <idle>-0     (-----) [003] d..1 82317.114071: cpu_idle: state=0 cpu_id=3
108984          <idle>-0     (-----) [000] d.h2 82317.114246: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
108985          <idle>-0     (-----) [000] dnh3 82317.114254: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
108986          <idle>-0     (-----) [000] .n.1 82317.114259: cpu_idle: state=4294967295 cpu_id=0
108987          <idle>-0     (-----) [000] d..2 82317.114265: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
108988        DispSync-8879  ( 8858) [000] d..1 82317.114294: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
108989        DispSync-8879  ( 8858) [000] d..2 82317.114312: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
108990          <idle>-0     (-----) [001] .n.1 82317.114316: cpu_idle: state=4294967295 cpu_id=1
108991        DispSync-8879  ( 8858) [000] d..1 82317.114317: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
108992          <idle>-0     (-----) [001] d..2 82317.114323: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
108993        DispSync-8879  ( 8858) [000] d..2 82317.114326: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
108994          <idle>-0     (-----) [003] .n.1 82317.114331: cpu_idle: state=4294967295 cpu_id=3
108995          <idle>-0     (-----) [003] d..2 82317.114336: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
108996        DispSync-8879  ( 8858) [000] d..2 82317.114351: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
108997          <idle>-0     (-----) [000] d..1 82317.114360: cpu_idle: state=0 cpu_id=0
108998   sfEventThread-8882  ( 8858) [001] d..3 82317.114372: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
108999  appEventThread-8881  ( 8858) [003] d..3 82317.114388: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
109000   sfEventThread-8882  ( 8858) [001] d..4 82317.114390: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
109001          <idle>-0     (-----) [002] .n.1 82317.114395: cpu_idle: state=4294967295 cpu_id=2
109002          <idle>-0     (-----) [002] d..2 82317.114401: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
109003   sfEventThread-8882  ( 8858) [001] d..3 82317.114403: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=007
109004  appEventThread-8881  ( 8858) [003] d..4 82317.114405: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
109005          <idle>-0     (-----) [000] .n.1 82317.114410: cpu_idle: state=4294967295 cpu_id=0
109006          <idle>-0     (-----) [000] d..2 82317.114418: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
109007  appEventThread-8881  ( 8858) [003] d..3 82317.114419: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
109008          <idle>-0     (-----) [004] dnh2 82317.114427: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
109009          <idle>-0     (-----) [004] dnh2 82317.114434: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
109010          <idle>-0     (-----) [004] .n.1 82317.114437: cpu_idle: state=4294967295 cpu_id=4
109011   sfEventThread-8882  ( 8858) [001] d..2 82317.114441: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109012          <idle>-0     (-----) [004] d..2 82317.114444: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
109013          <idle>-0     (-----) [001] d..1 82317.114449: cpu_idle: state=0 cpu_id=1
109014  appEventThread-8881  ( 8858) [003] d..2 82317.114453: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109015          <idle>-0     (-----) [003] d..1 82317.114459: cpu_idle: state=0 cpu_id=3
109016<...>-9005 ( 8943) [004] d..2 82317.114574: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
109017 s.nexuslauncher-10023 (10023) [004] .... 82317.114751: binder_transaction: transaction=1572207 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
109018 s.nexuslauncher-10023 (10023) [004] .... 82317.114757: binder_transaction_alloc_buf: transaction=1572207 data_size=80 offsets_size=0
109019 s.nexuslauncher-10023 (10023) [004] d..4 82317.114761: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
109020<...>-9105 ( 9105) [000] .... 82317.114778: binder_transaction: transaction=1572208 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
109021          <idle>-0     (-----) [001] dnh2 82317.114782: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
109022<...>-9105 ( 9105) [000] .... 82317.114782: binder_transaction_alloc_buf: transaction=1572208 data_size=80 offsets_size=0
109023          <idle>-0     (-----) [001] .n.1 82317.114785: cpu_idle: state=4294967295 cpu_id=1
109024<...>-9105 ( 9105) [000] d..4 82317.114786: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
109025          <idle>-0     (-----) [001] d..2 82317.114792: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
109026 s.nexuslauncher-10023 (10023) [004] d..3 82317.114798: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
109027<...>-9105 ( 9105) [000] d..5 82317.114813: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
109028          <idle>-0     (-----) [003] .n.1 82317.114817: cpu_idle: state=4294967295 cpu_id=3
109029 s.nexuslauncher-10023 (10023) [004] d..4 82317.114820: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=007
109030          <idle>-0     (-----) [007] .n.1 82317.114826: cpu_idle: state=4294967295 cpu_id=7
109031          <idle>-0     (-----) [003] d..2 82317.114852: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
109032          <idle>-0     (-----) [007] d..2 82317.114854: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
109033<...>-13083 ( 8858) [001] .... 82317.114855: binder_transaction_received: transaction=1572207
109034<...>-8874 ( 8858) [003] .... 82317.114857: binder_transaction_received: transaction=1572208
109035<...>-8874 ( 8858) [003] d..1 82317.114882: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
109036    RenderThread-16607 (10023) [007] d..2 82317.114884: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
109037          <idle>-0     (-----) [007] d..1 82317.114890: cpu_idle: state=0 cpu_id=7
109038<...>-13083 ( 8858) [001] d..2 82317.114896: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109039<...>-8874 ( 8858) [003] d..2 82317.114903: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
109040          <idle>-0     (-----) [001] d..2 82317.114907: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
109041<...>-8874 ( 8858) [003] d..1 82317.114910: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
109042          <idle>-0     (-----) [007] dnh2 82317.114956: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
109043          <idle>-0     (-----) [007] .n.1 82317.114959: cpu_idle: state=4294967295 cpu_id=7
109044  appEventThread-8881  ( 8858) [001] d..2 82317.114963: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109045          <idle>-0     (-----) [007] d..2 82317.114963: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
109046          <idle>-0     (-----) [001] d..1 82317.114970: cpu_idle: state=0 cpu_id=1
109047<...>-13083 ( 8858) [007] d..1 82317.114972: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
109048<...>-8874 ( 8858) [003] d..2 82317.114981: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109049          <idle>-0     (-----) [003] d..1 82317.114988: cpu_idle: state=0 cpu_id=3
109050          <idle>-0     (-----) [001] dnh2 82317.114988: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
109051          <idle>-0     (-----) [001] .n.1 82317.114992: cpu_idle: state=4294967295 cpu_id=1
109052          <idle>-0     (-----) [001] d..2 82317.114998: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
109053<...>-13083 ( 8858) [007] d..2 82317.115000: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
109054          <idle>-0     (-----) [007] d..1 82317.115006: cpu_idle: state=0 cpu_id=7
109055  appEventThread-8881  ( 8858) [001] d..2 82317.115019: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109056          <idle>-0     (-----) [001] d..1 82317.115025: cpu_idle: state=0 cpu_id=1
109057  surfaceflinger-8858  ( 8858) [002] d..1 82317.115092: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
109058  surfaceflinger-8858  ( 8858) [002] d..2 82317.115108: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
109059          <idle>-0     (-----) [001] .n.1 82317.115112: cpu_idle: state=4294967295 cpu_id=1
109060          <idle>-0     (-----) [001] d..2 82317.115120: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
109061          <idle>-0     (-----) [003] d.s2 82317.115131: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
109062   sfEventThread-8882  ( 8858) [001] d..2 82317.115137: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109063  surfaceflinger-8858  ( 8858) [002] d..1 82317.115140: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
109064          <idle>-0     (-----) [001] d..1 82317.115143: cpu_idle: state=0 cpu_id=1
109065  surfaceflinger-8858  ( 8858) [002] d..2 82317.115150: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
109066          <idle>-0     (-----) [001] .n.1 82317.115155: cpu_idle: state=4294967295 cpu_id=1
109067          <idle>-0     (-----) [003] d.s3 82317.115159: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
109068          <idle>-0     (-----) [001] d..2 82317.115163: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
109069          <idle>-0     (-----) [003] d.s2 82317.115165: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109070          <idle>-0     (-----) [003] dns3 82317.115173: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109071   sfEventThread-8882  ( 8858) [001] d..2 82317.115178: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
109072          <idle>-0     (-----) [003] .n.1 82317.115180: cpu_idle: state=4294967295 cpu_id=3
109073          <idle>-0     (-----) [003] d..2 82317.115187: 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
109074 s.nexuslauncher-10023 (10023) [004] d..3 82317.115191: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
109075     rcu_preempt-7     (    7) [003] d..2 82317.115194: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
109076 s.nexuslauncher-10023 (10023) [004] d..4 82317.115201: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=007
109077<...>-9105 ( 9105) [000] d..3 82317.115202: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
109078<...>-8 ( 8) [001] d..2 82317.115202: 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
109079          <idle>-0     (-----) [007] .n.1 82317.115206: cpu_idle: state=4294967295 cpu_id=7
109080     rcu_preempt-7     (    7) [003] d..3 82317.115209: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
109081          <idle>-0     (-----) [007] d..2 82317.115212: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
109082          <idle>-0     (-----) [001] d..2 82317.115214: 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
109083 s.nexuslauncher-10023 (10023) [004] d..2 82317.115215: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
109084     rcu_preempt-7     (    7) [003] d..2 82317.115217: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
109085    RenderThread-16607 (10023) [007] d.h1 82317.115224: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
109086          <idle>-0     (-----) [004] d..1 82317.115225: cpu_idle: state=0 cpu_id=4
109087     rcu_preempt-7     (    7) [003] d..3 82317.115228: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
109088     rcu_preempt-7     (    7) [003] d..2 82317.115231: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
109089<...>-9105 ( 9105) [000] d..2 82317.115236: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109090     rcu_preempt-7     (    7) [003] d..3 82317.115247: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
109091          <idle>-0     (-----) [000] d..2 82317.115253: 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
109092         rcuop/2-29    (   29) [001] d..2 82317.115258: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
109093         rcuop/6-61    (   61) [000] d..2 82317.115262: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=000
109094     rcu_preempt-7     (    7) [003] d..2 82317.115271: 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
109095          <idle>-0     (-----) [003] d..1 82317.115279: cpu_idle: state=0 cpu_id=3
109096         rcuop/2-29    (   29) [001] d..3 82317.115289: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
109097          <idle>-0     (-----) [003] .n.1 82317.115293: cpu_idle: state=4294967295 cpu_id=3
109098         rcuop/6-61    (   61) [000] d..3 82317.115294: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=003
109099          <idle>-0     (-----) [003] d..2 82317.115301: 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
109100         rcuop/6-61    (   61) [000] d..2 82317.115307: 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
109101         rcuop/2-29    (   29) [001] d..2 82317.115312: 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
109102         rcuop/3-37    (   37) [003] d..2 82317.115316: 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
109103          <idle>-0     (-----) [000] d..1 82317.115316: cpu_idle: state=0 cpu_id=0
109104         rcuop/4-45    (   45) [001] d..2 82317.115317: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
109105<...>-69 ( 69) [003] d..2 82317.115331: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109106    RenderThread-16607 (10023) [007] d..1 82317.115334: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
109107          <idle>-0     (-----) [003] d..1 82317.115337: cpu_idle: state=0 cpu_id=3
109108         rcuop/4-45    (   45) [001] d..3 82317.115342: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
109109    RenderThread-16607 (10023) [007] d..2 82317.115344: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
109110          <idle>-0     (-----) [003] .n.1 82317.115346: cpu_idle: state=4294967295 cpu_id=3
109111          <idle>-0     (-----) [004] .n.1 82317.115350: cpu_idle: state=4294967295 cpu_id=4
109112          <idle>-0     (-----) [003] d..2 82317.115353: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/5 next_pid=53 next_prio=120
109113          <idle>-0     (-----) [004] d..2 82317.115355: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
109114    RenderThread-16607 (10023) [007] d..1 82317.115356: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=001
109115          <idle>-0     (-----) [000] dnh2 82317.115380: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109116         rcuop/4-45    (   45) [001] d..2 82317.115384: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
109117         rcuop/5-53    (   53) [003] d..2 82317.115385: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109118          <idle>-0     (-----) [000] .n.1 82317.115387: cpu_idle: state=4294967295 cpu_id=0
109119          <idle>-0     (-----) [003] d..1 82317.115391: cpu_idle: state=0 cpu_id=3
109120 s.nexuslauncher-10023 (10023) [004] d..2 82317.115392: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
109121          <idle>-0     (-----) [000] d..2 82317.115394: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
109122          <idle>-0     (-----) [004] d..1 82317.115398: cpu_idle: state=0 cpu_id=4
109123<...>-10062 ( 10023) [005] d..1 82317.115407: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
109124    RenderThread-16607 (10023) [007] .... 82317.115410: binder_transaction: transaction=1572209 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
109125    RenderThread-16607 (10023) [007] .... 82317.115412: binder_transaction_alloc_buf: transaction=1572209 data_size=104 offsets_size=0
109126    RenderThread-16607 (10023) [007] ...2 82317.115416: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
109127    RenderThread-16607 (10023) [007] d..4 82317.115424: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
109128    RenderThread-16607 (10023) [007] dn.5 82317.115429: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
109129<...>-10062 ( 10023) [005] d..2 82317.115430: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
109130    RenderThread-16607 (10023) [007] d..2 82317.115433: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
109131          <idle>-0     (-----) [004] .n.1 82317.115434: cpu_idle: state=4294967295 cpu_id=4
109132          <idle>-0     (-----) [004] d..2 82317.115439: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
109133<...>-13083 ( 8858) [007] .... 82317.115440: binder_transaction_received: transaction=1572209
109134<...>-18840 ( 10023) [000] d..2 82317.115444: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109135          <idle>-0     (-----) [000] d..1 82317.115452: cpu_idle: state=0 cpu_id=0
109136<...>-10062 ( 10023) [005] d..1 82317.115474: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109137 s.nexuslauncher-10023 (10023) [004] d..2 82317.115476: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
109138<...>-13083 ( 8858) [007] .... 82317.115478: binder_transaction: transaction=1572210 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
109139<...>-13083 ( 8858) [007] .... 82317.115480: binder_transaction_alloc_buf: transaction=1572210 data_size=52 offsets_size=8
109140          <idle>-0     (-----) [004] d..1 82317.115482: cpu_idle: state=0 cpu_id=4
109141          <idle>-0     (-----) [000] dnh2 82317.115489: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109142          <idle>-0     (-----) [000] .n.1 82317.115493: cpu_idle: state=4294967295 cpu_id=0
109143          <idle>-0     (-----) [000] d..2 82317.115499: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
109144<...>-18840 ( 10023) [000] d..2 82317.115515: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109145          <idle>-0     (-----) [000] d..1 82317.115522: cpu_idle: state=0 cpu_id=0
109146<...>-13083 ( 8858) [007] .... 82317.115524: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
109147<...>-10062 ( 10023) [005] d..1 82317.115536: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109148    RenderThread-9436  ( 9105) [001] d..1 82317.115541: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
109149<...>-13083 ( 8858) [007] d..2 82317.115546: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
109150          <idle>-0     (-----) [000] dnh2 82317.115550: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109151    RenderThread-16607 (10023) [007] .... 82317.115552: binder_transaction_received: transaction=1572210
109152          <idle>-0     (-----) [000] .n.1 82317.115558: cpu_idle: state=4294967295 cpu_id=0
109153    RenderThread-9436  ( 9105) [001] d..2 82317.115562: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
109154          <idle>-0     (-----) [000] d..2 82317.115564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
109155          <idle>-0     (-----) [003] .n.1 82317.115566: cpu_idle: state=4294967295 cpu_id=3
109156          <idle>-0     (-----) [003] d..2 82317.115572: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
109157<...>-18840 ( 10023) [000] d..2 82317.115579: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109158<...>-10062 ( 10023) [005] d..1 82317.115584: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109159          <idle>-0     (-----) [000] d..1 82317.115586: cpu_idle: state=0 cpu_id=0
109160          <idle>-0     (-----) [000] dnh2 82317.115597: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109161          <idle>-0     (-----) [000] .n.1 82317.115601: cpu_idle: state=4294967295 cpu_id=0
109162          <idle>-0     (-----) [000] d..2 82317.115607: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
109163    RenderThread-9436  ( 9105) [001] .... 82317.115613: binder_transaction: transaction=1572211 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
109164    RenderThread-9436  ( 9105) [001] .... 82317.115616: binder_transaction_alloc_buf: transaction=1572211 data_size=104 offsets_size=0
109165    RenderThread-9436  ( 9105) [001] d..4 82317.115620: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
109166<...>-18840 ( 10023) [000] d..2 82317.115625: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109167          <idle>-0     (-----) [000] d..1 82317.115631: cpu_idle: state=0 cpu_id=0
109168<...>-10062 ( 10023) [005] d..1 82317.115633: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109169    RenderThread-9436  ( 9105) [001] d..5 82317.115636: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
109170          <idle>-0     (-----) [000] dnh2 82317.115666: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109171          <idle>-0     (-----) [000] .n.1 82317.115670: cpu_idle: state=4294967295 cpu_id=0
109172<...>-9105 ( 9105) [003] d..2 82317.115672: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109173    RenderThread-9436  ( 9105) [001] d..2 82317.115673: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
109174          <idle>-0     (-----) [000] d..2 82317.115676: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
109175<...>-13083 ( 8858) [001] .... 82317.115679: binder_transaction_received: transaction=1572211
109176          <idle>-0     (-----) [003] d..1 82317.115682: cpu_idle: state=0 cpu_id=3
109177  surfaceflinger-8858  ( 8858) [002] ...1 82317.115706: tracing_mark_write: B|8858|HIDL::IComposerClient::createLayer::client
109178  surfaceflinger-8858  ( 8858) [002] ...1 82317.115712: tracing_mark_write: E|8858
109179<...>-13083 ( 8858) [001] .... 82317.115718: binder_transaction: transaction=1572212 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
109180<...>-13083 ( 8858) [001] .... 82317.115720: binder_transaction_alloc_buf: transaction=1572212 data_size=52 offsets_size=8
109181<...>-13083 ( 8858) [001] d..2 82317.115727: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
109182<...>-13083 ( 8858) [001] d..3 82317.115736: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
109183          <idle>-0     (-----) [004] ...1 82317.115747: cpu_idle: state=4294967295 cpu_id=4
109184  surfaceflinger-8858  ( 8858) [002] .... 82317.115749: binder_transaction: transaction=1572213 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x5
109185          <idle>-0     (-----) [004] d..1 82317.115750: cpu_idle: state=0 cpu_id=4
109186  surfaceflinger-8858  ( 8858) [002] .... 82317.115752: binder_transaction_alloc_buf: transaction=1572213 data_size=68 offsets_size=0
109187  surfaceflinger-8858  ( 8858) [002] ...2 82317.115757: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
109188<...>-13083 ( 8858) [001] d..2 82317.115760: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
109189    RenderThread-9436  ( 9105) [001] .... 82317.115764: binder_transaction_received: transaction=1572212
109190  surfaceflinger-8858  ( 8858) [002] d..4 82317.115765: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
109191  surfaceflinger-8858  ( 8858) [002] d..5 82317.115784: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
109192          <idle>-0     (-----) [003] .n.1 82317.115789: cpu_idle: state=4294967295 cpu_id=3
109193          <idle>-0     (-----) [003] d..2 82317.115796: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
109194  surfaceflinger-8858  ( 8858) [002] d..2 82317.115804: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109195 [email protected]   (  619) [003] .... 82317.115805: binder_transaction_received: transaction=1572213
109196          <idle>-0     (-----) [002] d..1 82317.115814: cpu_idle: state=0 cpu_id=2
109197 [email protected]   (  619) [003] ...1 82317.115854: tracing_mark_write: B|619|HIDL::IComposerClient::createLayer::server
109198 [email protected]   (  619) [003] ...1 82317.115900: tracing_mark_write: E|619
109199 [email protected]   (  619) [003] .... 82317.115911: binder_transaction: transaction=1572214 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
109200 [email protected]   (  619) [003] .... 82317.115914: binder_transaction_alloc_buf: transaction=1572214 data_size=16 offsets_size=0
109201 [email protected]   (  619) [003] d..2 82317.115917: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
109202 [email protected]   (  619) [003] d..3 82317.115931: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
109203 [email protected]   (  619) [003] .... 82317.115934: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
109204<...>-18840 ( 10023) [000] .... 82317.115937: binder_transaction: transaction=1572215 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
109205          <idle>-0     (-----) [002] .n.1 82317.115937: cpu_idle: state=4294967295 cpu_id=2
109206<...>-18840 ( 10023) [000] .... 82317.115940: binder_transaction_alloc_buf: transaction=1572215 data_size=684 offsets_size=48
109207          <idle>-0     (-----) [002] d..2 82317.115944: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
109208  surfaceflinger-8858  ( 8858) [002] .... 82317.115949: binder_transaction_received: transaction=1572214
109209<...>-18840 ( 10023) [000] ...2 82317.115958: binder_set_priority: proc=8858 thread=13083 old=120 => new=118 desired=118
109210<...>-18840 ( 10023) [000] d..4 82317.115960: sched_waking: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=001
109211<...>-18840 ( 10023) [000] d..5 82317.115975: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=000
109212 [email protected]   (  619) [003] d..2 82317.115976: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109213<...>-18840 ( 10023) [000] d..2 82317.115984: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=118
109214          <idle>-0     (-----) [003] d..1 82317.115985: cpu_idle: state=0 cpu_id=3
109215<...>-13083 ( 8858) [000] .... 82317.115989: binder_transaction_received: transaction=1572215
109216<...>-13083 ( 8858) [000] .... 82317.116086: binder_transaction: transaction=1572216 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
109217<...>-13083 ( 8858) [000] .... 82317.116089: binder_transaction_alloc_buf: transaction=1572216 data_size=0 offsets_size=0
109218<...>-13083 ( 8858) [000] d..2 82317.116091: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109219<...>-13083 ( 8858) [000] d..3 82317.116100: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109220<...>-13083 ( 8858) [000] .... 82317.116103: binder_set_priority: proc=8858 thread=13083 old=118 => new=120 desired=120
109221<...>-13083 ( 8858) [000] d..2 82317.116111: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
109222<...>-18840 ( 10023) [000] .... 82317.116116: binder_transaction_received: transaction=1572216
109223<...>-18840 ( 10023) [000] d..2 82317.116153: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
109224  surfaceflinger-8858  ( 8858) [002] ...1 82317.116170: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
109225  surfaceflinger-8858  ( 8858) [002] ...1 82317.116174: tracing_mark_write: E|8858
109226<...>-13083 ( 8858) [000] d..2 82317.116193: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109227          <idle>-0     (-----) [000] d..1 82317.116204: cpu_idle: state=0 cpu_id=0
109228  surfaceflinger-8858  ( 8858) [002] .... 82317.116205: binder_transaction: transaction=1572217 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
109229  surfaceflinger-8858  ( 8858) [002] .... 82317.116208: binder_transaction_alloc_buf: transaction=1572217 data_size=700 offsets_size=128
109230  surfaceflinger-8858  ( 8858) [002] ...2 82317.116229: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
109231  surfaceflinger-8858  ( 8858) [002] d..4 82317.116233: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
109232  surfaceflinger-8858  ( 8858) [002] d..5 82317.116245: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
109233          <idle>-0     (-----) [003] .n.1 82317.116250: cpu_idle: state=4294967295 cpu_id=3
109234          <idle>-0     (-----) [003] d..2 82317.116256: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
109235 [email protected]   (  619) [003] .... 82317.116260: binder_transaction_received: transaction=1572217
109236  surfaceflinger-8858  ( 8858) [002] d..2 82317.116262: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109237          <idle>-0     (-----) [002] d..1 82317.116273: cpu_idle: state=0 cpu_id=2
109238 [email protected]   (  619) [003] ...1 82317.116282: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
109239 [email protected]   (  619) [003] ...1 82317.116340: tracing_mark_write: B|619|HIDL::IMapper::importBuffer::passthrough
109240 [email protected]   (  619) [003] ...1 82317.116374: tracing_mark_write: E|619
109241    RenderThread-16607 (10023) [007] d..2 82317.116457: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
109242          <idle>-0     (-----) [007] d..1 82317.116466: cpu_idle: state=0 cpu_id=7
109243 [email protected]   (  619) [003] ...1 82317.116477: tracing_mark_write: B|619|HWCSession::PresentDisplay::
109244          <idle>-0     (-----) [007] d.h2 82317.116552: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
109245          <idle>-0     (-----) [007] d.h3 82317.116558: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
109246          <idle>-0     (-----) [007] dnh3 82317.116560: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=007
109247          <idle>-0     (-----) [007] .n.1 82317.116564: cpu_idle: state=4294967295 cpu_id=7
109248          <idle>-0     (-----) [007] d..2 82317.116569: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
109249    RenderThread-16607 (10023) [007] .... 82317.116686: binder_transaction: transaction=1572218 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
109250    RenderThread-16607 (10023) [007] .... 82317.116689: binder_transaction_alloc_buf: transaction=1572218 data_size=192 offsets_size=8
109251    RenderThread-16607 (10023) [007] ...2 82317.116693: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
109252    RenderThread-16607 (10023) [007] d..4 82317.116695: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=000
109253    RenderThread-16607 (10023) [007] dn.5 82317.116711: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
109254    RenderThread-16607 (10023) [007] d..2 82317.116741: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
109255<...>-13083 ( 8858) [007] .... 82317.116750: binder_transaction_received: transaction=1572218
109256<...>-13083 ( 8858) [007] .... 82317.116834: binder_transaction: transaction=1572219 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
109257<...>-13083 ( 8858) [007] .... 82317.116837: binder_transaction_alloc_buf: transaction=1572219 data_size=68 offsets_size=0
109258<...>-13083 ( 8858) [007] .... 82317.116838: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
109259<...>-13083 ( 8858) [007] d..2 82317.116860: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
109260    RenderThread-16607 (10023) [007] .... 82317.116867: binder_transaction_received: transaction=1572219
109261    RenderThread-9436  ( 9105) [001] d..2 82317.116897: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
109262          <idle>-0     (-----) [001] d..1 82317.116912: cpu_idle: state=0 cpu_id=1
109263    RenderThread-16607 (10023) [007] d..2 82317.116924: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
109264          <idle>-0     (-----) [007] d..1 82317.116933: cpu_idle: state=0 cpu_id=7
109265          <idle>-0     (-----) [001] d.h2 82317.116985: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
109266 [email protected]   (  619) [003] ...1 82317.116992: tracing_mark_write: B|619|HWDeviceDRM::Validate::
109267          <idle>-0     (-----) [001] d.h3 82317.116992: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
109268          <idle>-0     (-----) [001] dnh3 82317.116995: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
109269          <idle>-0     (-----) [001] .n.1 82317.117001: cpu_idle: state=4294967295 cpu_id=1
109270          <idle>-0     (-----) [001] d..2 82317.117010: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
109271          <idle>-0     (-----) [007] ...1 82317.117142: cpu_idle: state=4294967295 cpu_id=7
109272          <idle>-0     (-----) [007] d..1 82317.117144: cpu_idle: state=0 cpu_id=7
109273    RenderThread-9436  ( 9105) [001] .... 82317.117309: binder_transaction: transaction=1572220 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
109274    RenderThread-9436  ( 9105) [001] .... 82317.117314: binder_transaction_alloc_buf: transaction=1572220 data_size=192 offsets_size=8
109275          <idle>-0     (-----) [000] ...1 82317.117319: cpu_idle: state=4294967295 cpu_id=0
109276    RenderThread-9436  ( 9105) [001] d..4 82317.117322: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
109277          <idle>-0     (-----) [000] d..1 82317.117323: cpu_idle: state=0 cpu_id=0
109278    RenderThread-9436  ( 9105) [001] dn.5 82317.117343: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
109279    RenderThread-9436  ( 9105) [001] d..2 82317.117384: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
109280<...>-13083 ( 8858) [001] .... 82317.117392: binder_transaction_received: transaction=1572220
109281<...>-13083 ( 8858) [001] .... 82317.117557: binder_transaction: transaction=1572221 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
109282          <idle>-0     (-----) [002] ...1 82317.117569: cpu_idle: state=4294967295 cpu_id=2
109283<...>-13083 ( 8858) [001] .... 82317.117576: binder_transaction_alloc_buf: transaction=1572221 data_size=68 offsets_size=0
109284          <idle>-0     (-----) [002] d..1 82317.117592: cpu_idle: state=0 cpu_id=2
109285<...>-13083 ( 8858) [001] d..2 82317.117730: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
109286          <idle>-0     (-----) [000] d.h3 82317.117735: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
109287    RenderThread-9436  ( 9105) [001] .... 82317.117736: binder_transaction_received: transaction=1572221
109288          <idle>-0     (-----) [000] dnh4 82317.117758: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
109289          <idle>-0     (-----) [000] .n.1 82317.117769: cpu_idle: state=4294967295 cpu_id=0
109290          <idle>-0     (-----) [000] d..2 82317.117776: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
109291    RenderThread-9436  ( 9105) [001] d..2 82317.117806: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109292 kgsl_worker_thr-258   (  258) [000] d..2 82317.117815: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109293          <idle>-0     (-----) [001] d..1 82317.117820: cpu_idle: state=0 cpu_id=1
109294 kgsl_worker_thr-258   (  258) [000] d..3 82317.117839: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109295 kgsl_worker_thr-258   (  258) [000] d..2 82317.117885: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
109296<...>-10062 ( 10023) [005] d..1 82317.117935: sched_waking: comm=ReferenceQueueD pid=10059 prio=124 target_cpu=003
109297<...>-10062 ( 10023) [005] d..2 82317.117958: sched_wakeup: comm=ReferenceQueueD pid=10059 prio=124 target_cpu=004
109298          <idle>-0     (-----) [004] .n.1 82317.117962: cpu_idle: state=4294967295 cpu_id=4
109299 [email protected]   (  619) [003] ...1 82317.117963: tracing_mark_write: E|619
109300          <idle>-0     (-----) [004] d..2 82317.117985: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=10059 next_prio=124
109301<...>-10062 ( 10023) [005] d..2 82317.118027: sched_switch: prev_comm=HeapTaskDaemon prev_pid=10062 prev_prio=124 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
109302          <idle>-0     (-----) [005] d..1 82317.118043: cpu_idle: state=0 cpu_id=5
109303<...>-10059 ( 10023) [004] d..5 82317.118051: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
109304  kworker/u16:15-1311  ( 1311) [000] d..2 82317.118070: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109305          <idle>-0     (-----) [001] dnh2 82317.118079: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=001
109306          <idle>-0     (-----) [000] d..1 82317.118080: cpu_idle: state=0 cpu_id=0
109307          <idle>-0     (-----) [001] .n.1 82317.118083: cpu_idle: state=4294967295 cpu_id=1
109308          <idle>-0     (-----) [001] d..2 82317.118091: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
109309 [email protected]   (  619) [003] ...1 82317.118095: tracing_mark_write: B|619|HWDeviceDRM::Commit::
109310 [email protected]   (  619) [003] ...1 82317.118103: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
109311<...>-10059 ( 10023) [004] d..3 82317.118129: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
109312<...>-10059 ( 10023) [004] d..4 82317.118139: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=007
109313          <idle>-0     (-----) [000] d.h3 82317.118142: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
109314          <idle>-0     (-----) [007] .n.1 82317.118144: cpu_idle: state=4294967295 cpu_id=7
109315          <idle>-0     (-----) [007] d..2 82317.118149: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
109316          <idle>-0     (-----) [000] dnh4 82317.118150: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
109317          <idle>-0     (-----) [000] .n.1 82317.118158: cpu_idle: state=4294967295 cpu_id=0
109318          <idle>-0     (-----) [000] d..2 82317.118164: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
109319<...>-10059 ( 10023) [004] d..3 82317.118167: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
109320    RenderThread-16607 (10023) [007] d..2 82317.118168: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
109321<...>-12998 ( 8943) [001] d..2 82317.118168: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109322          <idle>-0     (-----) [007] d..1 82317.118172: cpu_idle: state=0 cpu_id=7
109323          <idle>-0     (-----) [001] d..1 82317.118176: cpu_idle: state=0 cpu_id=1
109324<...>-10059 ( 10023) [004] d..4 82317.118176: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=007
109325          <idle>-0     (-----) [007] .n.1 82317.118181: cpu_idle: state=4294967295 cpu_id=7
109326          <idle>-0     (-----) [007] d..2 82317.118185: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
109327    RenderThread-16607 (10023) [007] d..2 82317.118195: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
109328          <idle>-0     (-----) [007] d..1 82317.118199: cpu_idle: state=0 cpu_id=7
109329 kgsl_worker_thr-258   (  258) [000] d..2 82317.118260: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109330          <idle>-0     (-----) [000] d..1 82317.118268: cpu_idle: state=0 cpu_id=0
109331          <idle>-0     (-----) [007] ...1 82317.118390: cpu_idle: state=4294967295 cpu_id=7
109332          <idle>-0     (-----) [007] d..1 82317.118392: cpu_idle: state=0 cpu_id=7
109333<...>-9125 ( 9105) [006] d.s2 82317.118463: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109334          <idle>-0     (-----) [000] dnh2 82317.118480: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109335          <idle>-0     (-----) [000] .n.1 82317.118485: cpu_idle: state=4294967295 cpu_id=0
109336          <idle>-0     (-----) [000] d..2 82317.118492: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
109337<...>-10059 ( 10023) [004] d..3 82317.118498: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
109338<...>-10059 ( 10023) [004] d..4 82317.118507: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=007
109339          <idle>-0     (-----) [007] .n.1 82317.118512: cpu_idle: state=4294967295 cpu_id=7
109340          <idle>-0     (-----) [007] d..2 82317.118517: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
109341    RenderThread-16607 (10023) [007] d..2 82317.118528: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
109342<...>-10059 ( 10023) [004] d..1 82317.118530: sched_waking: comm=FinalizerDaemon pid=10060 prio=124 target_cpu=004
109343          <idle>-0     (-----) [007] d..1 82317.118532: cpu_idle: state=0 cpu_id=7
109344<...>-10059 ( 10023) [004] d..2 82317.118545: sched_wakeup: comm=FinalizerDaemon pid=10060 prio=124 target_cpu=005
109345          <idle>-0     (-----) [005] .n.1 82317.118551: cpu_idle: state=4294967295 cpu_id=5
109346          <idle>-0     (-----) [005] d..2 82317.118558: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=10060 next_prio=124
109347<...>-10060 ( 10023) [005] d..1 82317.118575: sched_waking: comm=FinalizerWatchd pid=10061 prio=124 target_cpu=004
109348<...>-10059 ( 10023) [004] d..2 82317.118581: sched_switch: prev_comm=ReferenceQueueD prev_pid=10059 prev_prio=124 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
109349          <idle>-0     (-----) [004] d..1 82317.118589: cpu_idle: state=0 cpu_id=4
109350<...>-10060 ( 10023) [005] d..2 82317.118590: sched_wakeup: comm=FinalizerWatchd pid=10061 prio=124 target_cpu=007
109351          <idle>-0     (-----) [007] .n.1 82317.118595: cpu_idle: state=4294967295 cpu_id=7
109352          <idle>-0     (-----) [007] d..2 82317.118599: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=10061 next_prio=124
109353  kworker/u16:15-1311  ( 1311) [000] .... 82317.118633: clk_set_rate: l3_cluster0_vote_clk 480000000
109354 [email protected]   (  619) [003] d..2 82317.118638: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
109355<...>-10061 ( 10023) [007] d..2 82317.118640: sched_switch: prev_comm=FinalizerWatchd prev_pid=10061 prev_prio=124 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
109356          <idle>-0     (-----) [007] d..1 82317.118645: cpu_idle: state=0 cpu_id=7
109357 [email protected]   (  619) [003] d..3 82317.118653: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
109358          <idle>-0     (-----) [002] .n.1 82317.118658: cpu_idle: state=4294967295 cpu_id=2
109359          <idle>-0     (-----) [002] d..2 82317.118666: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
109360<...>-10060 ( 10023) [005] d..2 82317.118713: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
109361 [email protected]   (  619) [003] ...1 82317.118729: tracing_mark_write: E|619
109362 [email protected]   (  619) [003] ...1 82317.118733: tracing_mark_write: E|619
109363 crtc_commit:111-321   (  321) [002] d.h1 82317.118744: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
109364 [email protected]   (  619) [003] ...1 82317.118793: tracing_mark_write: E|619
109365 [email protected]   (  619) [003] ...1 82317.118841: tracing_mark_write: E|619
109366 [email protected]   (  619) [003] .... 82317.118857: binder_transaction: transaction=1572222 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
109367 [email protected]   (  619) [003] .... 82317.118861: binder_transaction_alloc_buf: transaction=1572222 data_size=576 offsets_size=112
109368 [email protected]   (  619) [003] d..2 82317.118874: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
109369 [email protected]   (  619) [003] d..3 82317.118893: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
109370 [email protected]   (  619) [003] .... 82317.118897: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
109371          <idle>-0     (-----) [001] .n.1 82317.118898: cpu_idle: state=4294967295 cpu_id=1
109372<...>-10060 ( 10023) [005] d..3 82317.118904: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
109373          <idle>-0     (-----) [001] d..2 82317.118905: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
109374  kworker/u16:15-1311  ( 1311) [000] d..2 82317.118909: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
109375<...>-10060 ( 10023) [005] d..4 82317.118914: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=007
109376          <idle>-0     (-----) [007] .n.1 82317.118918: cpu_idle: state=4294967295 cpu_id=7
109377          <idle>-0     (-----) [000] d..1 82317.118919: cpu_idle: state=0 cpu_id=0
109378          <idle>-0     (-----) [007] d..2 82317.118923: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
109379  surfaceflinger-8858  ( 8858) [001] d.s3 82317.118933: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
109380    RenderThread-16607 (10023) [007] d..2 82317.118940: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
109381  surfaceflinger-8858  ( 8858) [001] d.s4 82317.118943: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
109382          <idle>-0     (-----) [007] d..1 82317.118944: cpu_idle: state=0 cpu_id=7
109383  surfaceflinger-8858  ( 8858) [001] .... 82317.118949: binder_transaction_received: transaction=1572222
109384 [email protected]   (  619) [003] d..2 82317.118976: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109385          <idle>-0     (-----) [003] d..1 82317.118989: cpu_idle: state=0 cpu_id=3
109386<...>-10060 ( 10023) [005] ...1 82317.119016: tracing_mark_write: B|10023|HIDL::IMapper::freeBuffer::passthrough
109387<...>-10060 ( 10023) [005] ...1 82317.119030: tracing_mark_write: B|10023|FreeBuffer
109388<...>-10060 ( 10023) [005] ...1 82317.119043: tracing_mark_write: E|10023
109389<...>-10060 ( 10023) [005] ...1 82317.119045: tracing_mark_write: B|10023|FreeBuffer
109390<...>-10060 ( 10023) [005] ...1 82317.119051: tracing_mark_write: E|10023
109391<...>-10060 ( 10023) [005] ...1 82317.119055: tracing_mark_write: E|10023
109392<...>-10060 ( 10023) [005] ...1 82317.119086: tracing_mark_write: B|10023|HIDL::IMapper::freeBuffer::passthrough
109393<...>-10060 ( 10023) [005] ...1 82317.119092: tracing_mark_write: B|10023|FreeBuffer
109394<...>-10060 ( 10023) [005] ...1 82317.119098: tracing_mark_write: E|10023
109395<...>-10060 ( 10023) [005] ...1 82317.119100: tracing_mark_write: B|10023|FreeBuffer
109396<...>-10060 ( 10023) [005] ...1 82317.119105: tracing_mark_write: E|10023
109397<...>-10060 ( 10023) [005] ...1 82317.119107: tracing_mark_write: E|10023
109398<...>-10060 ( 10023) [005] d..2 82317.119133: sched_switch: prev_comm=FinalizerDaemon prev_pid=10060 prev_prio=124 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
109399          <idle>-0     (-----) [005] d..1 82317.119141: cpu_idle: state=0 cpu_id=5
109400  surfaceflinger-8858  ( 8858) [001] d..2 82317.119399: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
109401     ksoftirqd/1-18    (   18) [001] d.s2 82317.119414: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109402     ksoftirqd/1-18    (   18) [001] d.s3 82317.119422: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
109403     ksoftirqd/1-18    (   18) [001] d.s3 82317.119430: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109404          <idle>-0     (-----) [000] .n.1 82317.119435: cpu_idle: state=4294967295 cpu_id=0
109405          <idle>-0     (-----) [000] d..2 82317.119442: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
109406     ksoftirqd/1-18    (   18) [001] d..2 82317.119447: 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
109407          <idle>-0     (-----) [001] d..1 82317.119454: cpu_idle: state=0 cpu_id=1
109408  kworker/u16:15-1311  ( 1311) [000] .... 82317.119489: clk_set_rate: l3_cluster1_vote_clk 1209600000
109409  kworker/u16:15-1311  ( 1311) [000] .... 82317.119493: clk_set_rate: l3_clk 1209600000
109410  kworker/u16:15-1311  ( 1311) [000] d..2 82317.119634: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
109411          <idle>-0     (-----) [000] d..1 82317.119642: cpu_idle: state=0 cpu_id=0
109412          <idle>-0     (-----) [001] d.s3 82317.119656: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109413          <idle>-0     (-----) [001] d.s4 82317.119662: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
109414          <idle>-0     (-----) [001] d.s4 82317.119668: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109415          <idle>-0     (-----) [001] ...1 82317.119673: cpu_idle: state=4294967295 cpu_id=1
109416          <idle>-0     (-----) [000] .n.1 82317.119674: cpu_idle: state=4294967295 cpu_id=0
109417          <idle>-0     (-----) [001] d..1 82317.119676: cpu_idle: state=0 cpu_id=1
109418          <idle>-0     (-----) [000] d..2 82317.119680: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
109419  kworker/u16:15-1311  ( 1311) [000] d..2 82317.119696: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109420          <idle>-0     (-----) [000] d..1 82317.119702: cpu_idle: state=0 cpu_id=0
109421          <idle>-0     (-----) [000] ...1 82317.120908: cpu_idle: state=4294967295 cpu_id=0
109422          <idle>-0     (-----) [000] d..1 82317.120911: cpu_idle: state=0 cpu_id=0
109423 crtc_commit:111-321   (  321) [002] d..2 82317.121199: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
109424<...>-581 ( 571) [002] d..2 82317.121323: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109425          <idle>-0     (-----) [002] d..1 82317.121333: cpu_idle: state=0 cpu_id=2
109426<...>-9125 ( 9105) [006] d.s2 82317.121787: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109427          <idle>-0     (-----) [001] d.s2 82317.121791: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
109428          <idle>-0     (-----) [003] d.s2 82317.121792: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109429          <idle>-0     (-----) [001] dns3 82317.121802: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
109430          <idle>-0     (-----) [003] dns3 82317.121805: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109431          <idle>-0     (-----) [000] dnh2 82317.121805: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109432          <idle>-0     (-----) [000] .n.1 82317.121809: cpu_idle: state=4294967295 cpu_id=0
109433          <idle>-0     (-----) [003] .n.1 82317.121810: cpu_idle: state=4294967295 cpu_id=3
109434          <idle>-0     (-----) [001] .n.1 82317.121815: cpu_idle: state=4294967295 cpu_id=1
109435          <idle>-0     (-----) [000] d..2 82317.121816: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
109436          <idle>-0     (-----) [003] d..2 82317.121817: 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
109437          <idle>-0     (-----) [001] d..2 82317.121820: 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
109438<...>-8 ( 8) [001] d..2 82317.121828: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=001
109439     rcu_preempt-7     (    7) [003] d..2 82317.121840: 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
109440          <idle>-0     (-----) [003] d..1 82317.121847: cpu_idle: state=0 cpu_id=3
109441<...>-8 ( 8) [001] d..3 82317.121857: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=003
109442          <idle>-0     (-----) [003] .n.1 82317.121861: cpu_idle: state=4294967295 cpu_id=3
109443  kworker/u16:15-1311  ( 1311) [000] d..2 82317.121868: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109444          <idle>-0     (-----) [003] d..2 82317.121869: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/2 next_pid=30 next_prio=120
109445<...>-8 ( 8) [001] d..2 82317.121871: 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
109446          <idle>-0     (-----) [000] d..1 82317.121874: cpu_idle: state=0 cpu_id=0
109447          <idle>-0     (-----) [001] d..1 82317.121879: cpu_idle: state=0 cpu_id=1
109448<...>-30 ( 30) [003] d..2 82317.121889: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109449          <idle>-0     (-----) [003] d..1 82317.121895: cpu_idle: state=0 cpu_id=3
109450          <idle>-0     (-----) [000] ...1 82317.123080: cpu_idle: state=4294967295 cpu_id=0
109451          <idle>-0     (-----) [000] d..1 82317.123082: cpu_idle: state=0 cpu_id=0
109452          <idle>-0     (-----) [001] ...1 82317.123190: cpu_idle: state=4294967295 cpu_id=1
109453          <idle>-0     (-----) [001] d..1 82317.123193: cpu_idle: state=0 cpu_id=1
109454          <idle>-0     (-----) [000] d.h5 82317.127867: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
109455          <idle>-0     (-----) [000] d.h6 82317.127884: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
109456          <idle>-0     (-----) [003] .n.1 82317.127888: cpu_idle: state=4294967295 cpu_id=3
109457          <idle>-0     (-----) [000] d.h5 82317.127889: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
109458          <idle>-0     (-----) [003] d..2 82317.127895: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
109459          <idle>-0     (-----) [000] d.h6 82317.127897: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
109460          <idle>-0     (-----) [002] .n.1 82317.127904: cpu_idle: state=4294967295 cpu_id=2
109461          <idle>-0     (-----) [000] ...1 82317.127909: cpu_idle: state=4294967295 cpu_id=0
109462          <idle>-0     (-----) [002] d..2 82317.127912: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
109463          <idle>-0     (-----) [000] d..1 82317.127912: cpu_idle: state=0 cpu_id=0
109464  crtc_event:111-322   (  322) [003] d..2 82317.127922: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109465          <idle>-0     (-----) [003] d..1 82317.127926: cpu_idle: state=0 cpu_id=3
109466 crtc_commit:111-321   (  321) [002] d..2 82317.128040: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
109467          <idle>-0     (-----) [002] d..1 82317.128045: cpu_idle: state=0 cpu_id=2
109468<...>-9125 ( 9105) [006] d.s2 82317.128455: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109469          <idle>-0     (-----) [002] d.s3 82317.128458: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
109470          <idle>-0     (-----) [003] d.s2 82317.128458: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109471          <idle>-0     (-----) [002] d.s4 82317.128470: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
109472          <idle>-0     (-----) [000] dnh2 82317.128473: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109473          <idle>-0     (-----) [003] dns3 82317.128473: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109474          <idle>-0     (-----) [000] .n.1 82317.128476: cpu_idle: state=4294967295 cpu_id=0
109475          <idle>-0     (-----) [000] d..2 82317.128483: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
109476          <idle>-0     (-----) [003] .n.1 82317.128487: cpu_idle: state=4294967295 cpu_id=3
109477          <idle>-0     (-----) [002] ...1 82317.128488: cpu_idle: state=4294967295 cpu_id=2
109478          <idle>-0     (-----) [003] d..2 82317.128491: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
109479          <idle>-0     (-----) [002] d..1 82317.128492: cpu_idle: state=0 cpu_id=2
109480  crtc_event:111-322   (  322) [003] d..2 82317.128503: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
109481     rcu_preempt-7     (    7) [003] d..2 82317.128509: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
109482     rcu_preempt-7     (    7) [003] d..3 82317.128522: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
109483     rcu_preempt-7     (    7) [003] d..2 82317.128531: 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
109484         rcuop/0-10    (   10) [003] d..2 82317.128536: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109485         rcuop/0-10    (   10) [003] d..3 82317.128547: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
109486         rcuop/0-10    (   10) [003] d..2 82317.128567: 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
109487         rcuop/1-21    (   21) [003] d..2 82317.128594: 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
109488          <idle>-0     (-----) [003] d..1 82317.128602: cpu_idle: state=0 cpu_id=3
109489  kworker/u16:15-1311  ( 1311) [000] d..2 82317.128632: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109490          <idle>-0     (-----) [000] d..1 82317.128638: cpu_idle: state=0 cpu_id=0
109491          <idle>-0     (-----) [000] d.h5 82317.130214: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
109492          <idle>-0     (-----) [000] d.h6 82317.130224: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
109493          <idle>-0     (-----) [002] .n.1 82317.130230: cpu_idle: state=4294967295 cpu_id=2
109494          <idle>-0     (-----) [000] ...1 82317.130235: cpu_idle: state=4294967295 cpu_id=0
109495          <idle>-0     (-----) [002] d..2 82317.130237: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
109496          <idle>-0     (-----) [000] d..1 82317.130238: cpu_idle: state=0 cpu_id=0
109497 crtc_commit:111-321   (  321) [002] d..2 82317.130313: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109498          <idle>-0     (-----) [002] d..1 82317.130320: cpu_idle: state=0 cpu_id=2
109499          <idle>-0     (-----) [000] d.h5 82317.130496: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
109500          <idle>-0     (-----) [000] d.h6 82317.130506: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
109501          <idle>-0     (-----) [003] .n.1 82317.130511: cpu_idle: state=4294967295 cpu_id=3
109502          <idle>-0     (-----) [000] ...1 82317.130517: cpu_idle: state=4294967295 cpu_id=0
109503          <idle>-0     (-----) [003] d..2 82317.130517: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
109504          <idle>-0     (-----) [000] d..1 82317.130519: cpu_idle: state=0 cpu_id=0
109505  crtc_event:111-322   (  322) [003] d..2 82317.130534: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109506          <idle>-0     (-----) [003] d..1 82317.130539: cpu_idle: state=0 cpu_id=3
109507          <idle>-0     (-----) [000] d.h2 82317.130721: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
109508          <idle>-0     (-----) [000] dnh3 82317.130727: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
109509          <idle>-0     (-----) [000] .n.1 82317.130732: cpu_idle: state=4294967295 cpu_id=0
109510          <idle>-0     (-----) [000] d..2 82317.130738: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
109511        DispSync-8879  ( 8858) [000] d..1 82317.130765: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
109512        DispSync-8879  ( 8858) [000] d..2 82317.130775: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
109513          <idle>-0     (-----) [001] .n.1 82317.130779: cpu_idle: state=4294967295 cpu_id=1
109514        DispSync-8879  ( 8858) [000] d..1 82317.130780: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
109515          <idle>-0     (-----) [001] d..2 82317.130793: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
109516        DispSync-8879  ( 8858) [000] d..2 82317.130795: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
109517          <idle>-0     (-----) [002] .n.1 82317.130800: cpu_idle: state=4294967295 cpu_id=2
109518          <idle>-0     (-----) [002] d..2 82317.130806: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
109519        DispSync-8879  ( 8858) [000] d..2 82317.130818: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109520          <idle>-0     (-----) [000] d..1 82317.130825: cpu_idle: state=0 cpu_id=0
109521   sfEventThread-8882  ( 8858) [001] d..3 82317.130846: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
109522  appEventThread-8881  ( 8858) [002] d..3 82317.130858: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
109523   sfEventThread-8882  ( 8858) [001] d..4 82317.130864: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
109524          <idle>-0     (-----) [003] .n.1 82317.130869: cpu_idle: state=4294967295 cpu_id=3
109525          <idle>-0     (-----) [003] d..2 82317.130874: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
109526   sfEventThread-8882  ( 8858) [001] d..2 82317.130888: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109527  appEventThread-8881  ( 8858) [002] d..4 82317.130891: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
109528          <idle>-0     (-----) [000] .n.1 82317.130895: cpu_idle: state=4294967295 cpu_id=0
109529          <idle>-0     (-----) [001] d..1 82317.130895: cpu_idle: state=0 cpu_id=1
109530          <idle>-0     (-----) [000] d..2 82317.130902: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
109531  appEventThread-8881  ( 8858) [002] d..3 82317.130904: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
109532          <idle>-0     (-----) [004] dnh2 82317.130923: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
109533          <idle>-0     (-----) [004] .n.1 82317.130926: cpu_idle: state=4294967295 cpu_id=4
109534          <idle>-0     (-----) [004] d..2 82317.130931: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
109535  appEventThread-8881  ( 8858) [002] d..2 82317.130939: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109536          <idle>-0     (-----) [002] d..1 82317.130947: cpu_idle: state=0 cpu_id=2
109537 s.nexuslauncher-10023 (10023) [004] .... 82317.131124: binder_transaction: transaction=1572223 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
109538<...>-9105 ( 9105) [000] .... 82317.131125: binder_transaction: transaction=1572224 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
109539 s.nexuslauncher-10023 (10023) [004] .... 82317.131131: binder_transaction_alloc_buf: transaction=1572223 data_size=80 offsets_size=0
109540<...>-9105 ( 9105) [000] .... 82317.131134: binder_transaction_alloc_buf: transaction=1572224 data_size=80 offsets_size=0
109541 s.nexuslauncher-10023 (10023) [004] d..4 82317.131136: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
109542<...>-9105 ( 9105) [000] d..4 82317.131150: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
109543          <idle>-0     (-----) [001] dnh2 82317.131156: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
109544          <idle>-0     (-----) [001] .n.1 82317.131160: cpu_idle: state=4294967295 cpu_id=1
109545          <idle>-0     (-----) [001] d..2 82317.131166: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
109546<...>-9105 ( 9105) [000] d..5 82317.131172: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
109547          <idle>-0     (-----) [002] .n.1 82317.131176: cpu_idle: state=4294967295 cpu_id=2
109548<...>-13083 ( 8858) [001] .... 82317.131179: binder_transaction_received: transaction=1572223
109549          <idle>-0     (-----) [002] d..2 82317.131184: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
109550<...>-8874 ( 8858) [002] .... 82317.131189: binder_transaction_received: transaction=1572224
109551 s.nexuslauncher-10023 (10023) [004] d..3 82317.131200: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
109552<...>-9105 ( 9105) [000] d..3 82317.131205: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
109553<...>-13083 ( 8858) [001] d..1 82317.131208: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
109554 s.nexuslauncher-10023 (10023) [004] d..4 82317.131214: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
109555          <idle>-0     (-----) [005] .n.1 82317.131221: cpu_idle: state=4294967295 cpu_id=5
109556<...>-13083 ( 8858) [001] d..2 82317.131221: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
109557<...>-13083 ( 8858) [001] d..1 82317.131225: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
109558          <idle>-0     (-----) [005] d..2 82317.131227: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
109559<...>-8874 ( 8858) [002] d..2 82317.131229: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
109560          <idle>-0     (-----) [007] dnh2 82317.131236: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
109561          <idle>-0     (-----) [007] .n.1 82317.131273: cpu_idle: state=4294967295 cpu_id=7
109562<...>-13083 ( 8858) [001] d..2 82317.131276: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
109563    RenderThread-16607 (10023) [005] d..2 82317.131278: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
109564          <idle>-0     (-----) [007] d..2 82317.131279: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
109565          <idle>-0     (-----) [005] d..1 82317.131282: cpu_idle: state=0 cpu_id=5
109566  appEventThread-8881  ( 8858) [002] d..2 82317.131284: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
109567<...>-8874 ( 8858) [002] d..1 82317.131289: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
109568<...>-8874 ( 8858) [002] dn.2 82317.131295: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
109569<...>-8874 ( 8858) [002] d..2 82317.131300: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
109570<...>-13083 ( 8858) [001] d..2 82317.131304: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109571  appEventThread-8881  ( 8858) [002] d..2 82317.131308: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
109572<...>-8874 ( 8858) [002] d..1 82317.131310: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
109573          <idle>-0     (-----) [001] d..1 82317.131311: cpu_idle: state=0 cpu_id=1
109574    RenderThread-9436  ( 9105) [007] d..2 82317.131312: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
109575          <idle>-0     (-----) [007] d..1 82317.131319: cpu_idle: state=0 cpu_id=7
109576<...>-8874 ( 8858) [002] d..2 82317.131323: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
109577          <idle>-0     (-----) [001] .n.1 82317.131345: cpu_idle: state=4294967295 cpu_id=1
109578          <idle>-0     (-----) [001] d..2 82317.131351: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
109579<...>-8874 ( 8858) [002] d..2 82317.131366: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109580          <idle>-0     (-----) [002] d..1 82317.131374: cpu_idle: state=0 cpu_id=2
109581  appEventThread-8881  ( 8858) [001] d..2 82317.131382: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109582          <idle>-0     (-----) [001] d..1 82317.131387: cpu_idle: state=0 cpu_id=1
109583<...>-9105 ( 9105) [000] d..3 82317.131416: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
109584          <idle>-0     (-----) [007] dnh2 82317.131433: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
109585          <idle>-0     (-----) [007] .n.1 82317.131436: cpu_idle: state=4294967295 cpu_id=7
109586          <idle>-0     (-----) [007] d..2 82317.131441: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
109587<...>-9105 ( 9105) [000] d..2 82317.131445: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109588          <idle>-0     (-----) [000] d..1 82317.131457: cpu_idle: state=0 cpu_id=0
109589    RenderThread-9436  ( 9105) [007] d..1 82317.131511: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
109590          <idle>-0     (-----) [000] dnh2 82317.131572: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
109591          <idle>-0     (-----) [000] .n.1 82317.131606: cpu_idle: state=4294967295 cpu_id=0
109592          <idle>-0     (-----) [000] d..2 82317.131644: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
109593 s.nexuslauncher-10023 (10023) [004] d..3 82317.131676: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
109594 s.nexuslauncher-10023 (10023) [004] d..4 82317.131692: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
109595          <idle>-0     (-----) [005] .n.1 82317.131696: cpu_idle: state=4294967295 cpu_id=5
109596          <idle>-0     (-----) [005] d..2 82317.131701: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
109597 s.nexuslauncher-10023 (10023) [004] d..2 82317.131706: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
109598  surfaceflinger-8858  ( 8858) [003] d..1 82317.131707: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
109599    RenderThread-9436  ( 9105) [007] .... 82317.131713: binder_transaction: transaction=1572225 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
109600          <idle>-0     (-----) [004] d..1 82317.131714: cpu_idle: state=0 cpu_id=4
109601    RenderThread-9436  ( 9105) [007] .... 82317.131715: binder_transaction_alloc_buf: transaction=1572225 data_size=104 offsets_size=0
109602    RenderThread-9436  ( 9105) [007] d..4 82317.131717: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
109603  surfaceflinger-8858  ( 8858) [003] d..2 82317.131722: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
109604          <idle>-0     (-----) [001] .n.1 82317.131726: cpu_idle: state=4294967295 cpu_id=1
109605<...>-9105 ( 9105) [000] d..2 82317.131728: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109606    RenderThread-9436  ( 9105) [007] dn.5 82317.131730: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
109607          <idle>-0     (-----) [001] d..2 82317.131732: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
109608          <idle>-0     (-----) [000] d..1 82317.131736: cpu_idle: state=0 cpu_id=0
109609    RenderThread-9436  ( 9105) [007] d..2 82317.131756: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
109610   sfEventThread-8882  ( 8858) [001] d..2 82317.131776: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109611<...>-8874 ( 8858) [007] .... 82317.131805: binder_transaction_received: transaction=1572225
109612<...>-8874 ( 8858) [007] .... 82317.131850: binder_transaction: transaction=1572226 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
109613    RenderThread-16607 (10023) [005] d..1 82317.131852: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
109614<...>-8874 ( 8858) [007] .... 82317.131852: binder_transaction_alloc_buf: transaction=1572226 data_size=52 offsets_size=8
109615          <idle>-0     (-----) [001] d.H4 82317.131857: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
109616    RenderThread-16607 (10023) [005] d..2 82317.131861: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
109617          <idle>-0     (-----) [004] .n.1 82317.131867: cpu_idle: state=4294967295 cpu_id=4
109618          <idle>-0     (-----) [004] d..2 82317.131872: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
109619    RenderThread-16607 (10023) [005] d..1 82317.131872: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109620          <idle>-0     (-----) [001] d.H4 82317.131874: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
109621<...>-8874 ( 8858) [007] d..2 82317.131875: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
109622    RenderThread-9436  ( 9105) [007] .... 82317.131881: binder_transaction_received: transaction=1572226
109623          <idle>-0     (-----) [001] d.H5 82317.131884: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
109624    RenderThread-16607 (10023) [005] dnh2 82317.131886: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
109625          <idle>-0     (-----) [002] .n.1 82317.131889: cpu_idle: state=4294967295 cpu_id=2
109626    RenderThread-16607 (10023) [005] d..2 82317.131890: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=sugov:4 next_pid=577 next_prio=49
109627          <idle>-0     (-----) [000] dnh2 82317.131892: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109628<...>-9125 ( 9105) [006] d..1 82317.131896: sched_waking: comm=ReferenceQueueD pid=9121 prio=124 target_cpu=000
109629          <idle>-0     (-----) [001] d..1 82317.131897: cpu_idle: state=0 cpu_id=1
109630          <idle>-0     (-----) [000] .n.1 82317.131897: cpu_idle: state=4294967295 cpu_id=0
109631          <idle>-0     (-----) [002] d..2 82317.131897: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
109632          <idle>-0     (-----) [000] d..2 82317.131907: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
109633         sugov:4-577   (  577) [005] .... 82317.131915: clk_set_rate: perfcl_clk 1056000000
109634         sugov:4-577   (  577) [005] .... 82317.131917: clk_set_rate: cpu7_perfcl_clk 1459200000
109635 s.nexuslauncher-10023 (10023) [004] d..2 82317.131921: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
109636         sugov:4-577   (  577) [005] .... 82317.131922: clk_set_rate: cpu6_perfcl_clk 1459200000
109637          <idle>-0     (-----) [001] dnh2 82317.131925: sched_wakeup: comm=ReferenceQueueD pid=9121 prio=124 target_cpu=001
109638         sugov:4-577   (  577) [005] .... 82317.131927: clk_set_rate: cpu5_perfcl_clk 1459200000
109639          <idle>-0     (-----) [004] d..1 82317.131927: cpu_idle: state=0 cpu_id=4
109640          <idle>-0     (-----) [001] .n.1 82317.131928: cpu_idle: state=4294967295 cpu_id=1
109641         sugov:4-577   (  577) [005] .... 82317.131931: clk_set_rate: cpu4_perfcl_clk 1056000000
109642          <idle>-0     (-----) [001] d..2 82317.131935: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=9121 next_prio=124
109643         sugov:4-577   (  577) [005] .... 82317.131937: cpu_frequency: state=1056000 cpu_id=4
109644         sugov:0-576   (  576) [002] .... 82317.131950: clk_set_rate: pwrcl_clk 1324800000
109645         sugov:4-577   (  577) [005] .... 82317.131950: cpu_frequency: state=1056000 cpu_id=5
109646         sugov:4-577   (  577) [005] .... 82317.131953: cpu_frequency: state=1056000 cpu_id=6
109647<...>-9125 ( 9105) [006] d..2 82317.131955: sched_switch: prev_comm=HeapTaskDaemon prev_pid=9125 prev_prio=124 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
109648         sugov:4-577   (  577) [005] .... 82317.131956: cpu_frequency: state=1056000 cpu_id=7
109649         sugov:0-576   (  576) [002] .... 82317.131965: clk_set_rate: cpu3_pwrcl_clk 1612800000
109650         sugov:4-577   (  577) [005] d..2 82317.131970: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
109651         sugov:0-576   (  576) [002] .... 82317.131973: clk_set_rate: cpu2_pwrcl_clk 1612800000
109652         sugov:0-576   (  576) [002] .... 82317.131979: clk_set_rate: cpu1_pwrcl_clk 1612800000
109653          <idle>-0     (-----) [006] d..1 82317.131982: cpu_idle: state=0 cpu_id=6
109654         sugov:0-576   (  576) [002] .... 82317.131985: clk_set_rate: cpu0_pwrcl_clk 1324800000
109655    RenderThread-16607 (10023) [005] .... 82317.132025: binder_transaction: transaction=1572227 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
109656    RenderThread-16607 (10023) [005] .... 82317.132028: binder_transaction_alloc_buf: transaction=1572227 data_size=104 offsets_size=0
109657    RenderThread-16607 (10023) [005] ...2 82317.132032: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
109658    RenderThread-16607 (10023) [005] d..4 82317.132035: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=007
109659    RenderThread-16607 (10023) [005] dn.5 82317.132047: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
109660    RenderThread-16607 (10023) [005] d..2 82317.132052: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
109661<...>-9121 ( 9105) [001] d..5 82317.132053: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=001
109662<...>-8874 ( 8858) [005] .... 82317.132060: binder_transaction_received: transaction=1572227
109663         sugov:0-576   (  576) [002] .... 82317.132096: cpu_frequency: state=1324800 cpu_id=0
109664<...>-8874 ( 8858) [005] .... 82317.132096: binder_transaction: transaction=1572228 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
109665<...>-8874 ( 8858) [005] .... 82317.132098: binder_transaction_alloc_buf: transaction=1572228 data_size=52 offsets_size=8
109666<...>-8874 ( 8858) [005] .... 82317.132104: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
109667         sugov:0-576   (  576) [002] .... 82317.132107: cpu_frequency: state=1324800 cpu_id=1
109668          <idle>-0     (-----) [006] dnh2 82317.132107: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=006
109669         sugov:0-576   (  576) [002] .... 82317.132110: cpu_frequency: state=1324800 cpu_id=2
109670          <idle>-0     (-----) [006] .n.1 82317.132111: cpu_idle: state=4294967295 cpu_id=6
109671         sugov:0-576   (  576) [002] .... 82317.132112: cpu_frequency: state=1324800 cpu_id=3
109672          <idle>-0     (-----) [006] d..2 82317.132118: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
109673         sugov:0-576   (  576) [002] d..2 82317.132130: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109674<...>-8874 ( 8858) [005] d..2 82317.132131: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
109675    RenderThread-16607 (10023) [005] .... 82317.132139: binder_transaction_received: transaction=1572228
109676          <idle>-0     (-----) [002] d..1 82317.132139: cpu_idle: state=0 cpu_id=2
109677<...>-9121 ( 9105) [001] d..5 82317.132141: sched_waking: comm=Binder:11200_3 pid=11214 prio=120 target_cpu=001
109678<...>-9121 ( 9105) [001] d..6 82317.132170: sched_wakeup: comm=Binder:11200_3 pid=11214 prio=120 target_cpu=000
109679<...>-18840 ( 10023) [000] .... 82317.132179: binder_transaction: transaction=1572229 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
109680<...>-18840 ( 10023) [000] .... 82317.132183: binder_transaction_alloc_buf: transaction=1572229 data_size=684 offsets_size=48
109681<...>-12998 ( 8943) [006] d..2 82317.132184: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
109682          <idle>-0     (-----) [006] d..1 82317.132193: cpu_idle: state=0 cpu_id=6
109683<...>-9121 ( 9105) [001] d..5 82317.132193: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=006
109684<...>-18840 ( 10023) [000] ...2 82317.132200: binder_set_priority: proc=8858 thread=8874 old=120 => new=118 desired=118
109685<...>-18840 ( 10023) [000] d..4 82317.132203: sched_waking: comm=Binder:8858_2 pid=8874 prio=118 target_cpu=005
109686          <idle>-0     (-----) [006] dnh2 82317.132210: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=006
109687          <idle>-0     (-----) [006] .n.1 82317.132213: cpu_idle: state=4294967295 cpu_id=6
109688          <idle>-0     (-----) [006] d..2 82317.132219: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
109689<...>-9121 ( 9105) [001] d..5 82317.132223: sched_waking: comm=Binder:11200_6 pid=25119 prio=120 target_cpu=001
109690<...>-18840 ( 10023) [000] d..5 82317.132227: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=118 target_cpu=002
109691          <idle>-0     (-----) [002] .n.1 82317.132233: cpu_idle: state=4294967295 cpu_id=2
109692          <idle>-0     (-----) [002] d..2 82317.132261: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=118
109693<...>-12998 ( 8943) [006] d..2 82317.132264: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
109694<...>-9121 ( 9105) [001] d..6 82317.132264: sched_wakeup: comm=Binder:11200_6 pid=25119 prio=120 target_cpu=000
109695<...>-8874 ( 8858) [002] .... 82317.132266: binder_transaction_received: transaction=1572229
109696          <idle>-0     (-----) [006] d..1 82317.132269: cpu_idle: state=0 cpu_id=6
109697<...>-18840 ( 10023) [000] d..2 82317.132275: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:11200_3 next_pid=11214 next_prio=120
109698<...>-9121 ( 9105) [001] d..5 82317.132297: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=006
109699          <idle>-0     (-----) [006] dnh2 82317.132312: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=006
109700          <idle>-0     (-----) [006] .n.1 82317.132315: cpu_idle: state=4294967295 cpu_id=6
109701          <idle>-0     (-----) [006] d..2 82317.132320: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
109702<...>-9121 ( 9105) [001] d..5 82317.132337: sched_waking: comm=Binder:11200_5 pid=16648 prio=120 target_cpu=000
109703<...>-12998 ( 8943) [006] d..2 82317.132339: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
109704          <idle>-0     (-----) [006] d..1 82317.132345: cpu_idle: state=0 cpu_id=6
109705<...>-9121 ( 9105) [001] d..6 82317.132351: sched_wakeup: comm=Binder:11200_5 pid=16648 prio=120 target_cpu=000
109706<...>-8874 ( 8858) [002] .... 82317.132362: binder_transaction: transaction=1572230 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
109707<...>-8874 ( 8858) [002] .... 82317.132365: binder_transaction_alloc_buf: transaction=1572230 data_size=0 offsets_size=0
109708<...>-8874 ( 8858) [002] d..2 82317.132367: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=000
109709  Binder:11200_3-11214 (11200) [000] d..2 82317.132382: sched_switch: prev_comm=Binder:11200_3 prev_pid=11214 prev_prio=120 prev_state=S ==> next_comm=Binder:11200_6 next_pid=25119 next_prio=120
109710<...>-8874 ( 8858) [002] d..3 82317.132395: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=002
109711  Binder:11200_6-25119 (11200) [000] d..2 82317.132396: sched_switch: prev_comm=Binder:11200_6 prev_pid=25119 prev_prio=120 prev_state=S ==> next_comm=Binder:11200_5 next_pid=16648 next_prio=120
109712<...>-8874 ( 8858) [002] .... 82317.132397: binder_set_priority: proc=8858 thread=8874 old=118 => new=120 desired=120
109713<...>-8874 ( 8858) [002] d..2 82317.132407: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
109714  Binder:11200_5-16648 (11200) [000] d..2 82317.132413: sched_switch: prev_comm=Binder:11200_5 prev_pid=16648 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109715<...>-18840 ( 10023) [002] .... 82317.132414: binder_transaction_received: transaction=1572230
109716          <idle>-0     (-----) [000] d..1 82317.132425: cpu_idle: state=0 cpu_id=0
109717<...>-9121 ( 9105) [001] d..1 82317.132458: sched_waking: comm=FinalizerDaemon pid=9122 prio=124 target_cpu=001
109718<...>-18840 ( 10023) [002] d..2 82317.132458: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
109719<...>-9121 ( 9105) [001] d..2 82317.132479: sched_wakeup: comm=FinalizerDaemon pid=9122 prio=124 target_cpu=000
109720          <idle>-0     (-----) [000] .n.1 82317.132485: cpu_idle: state=4294967295 cpu_id=0
109721          <idle>-0     (-----) [000] d..2 82317.132493: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=9122 next_prio=124
109722<...>-8874 ( 8858) [002] d..2 82317.132501: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109723          <idle>-0     (-----) [002] d..1 82317.132511: cpu_idle: state=0 cpu_id=2
109724<...>-9121 ( 9105) [001] d..2 82317.132523: sched_switch: prev_comm=ReferenceQueueD prev_pid=9121 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109725<...>-9122 ( 9105) [000] d..1 82317.132524: sched_waking: comm=FinalizerWatchd pid=9124 prio=124 target_cpu=000
109726          <idle>-0     (-----) [001] d..1 82317.132533: cpu_idle: state=0 cpu_id=1
109727          <idle>-0     (-----) [006] ...1 82317.132539: cpu_idle: state=4294967295 cpu_id=6
109728          <idle>-0     (-----) [006] d..1 82317.132541: cpu_idle: state=0 cpu_id=6
109729<...>-9122 ( 9105) [000] d..2 82317.132547: sched_wakeup: comm=FinalizerWatchd pid=9124 prio=124 target_cpu=001
109730          <idle>-0     (-----) [001] .n.1 82317.132552: cpu_idle: state=4294967295 cpu_id=1
109731          <idle>-0     (-----) [001] d..2 82317.132560: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=9124 next_prio=124
109732  surfaceflinger-8858  ( 8858) [003] ...1 82317.132593: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
109733  surfaceflinger-8858  ( 8858) [003] ...1 82317.132599: tracing_mark_write: E|8858
109734<...>-9124 ( 9105) [001] d..2 82317.132611: sched_switch: prev_comm=FinalizerWatchd prev_pid=9124 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
109735          <idle>-0     (-----) [001] d..1 82317.132617: cpu_idle: state=0 cpu_id=1
109736  surfaceflinger-8858  ( 8858) [003] .... 82317.132653: binder_transaction: transaction=1572231 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
109737  surfaceflinger-8858  ( 8858) [003] .... 82317.132657: binder_transaction_alloc_buf: transaction=1572231 data_size=700 offsets_size=128
109738  surfaceflinger-8858  ( 8858) [003] ...2 82317.132684: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
109739  surfaceflinger-8858  ( 8858) [003] d..4 82317.132692: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
109740<...>-9122 ( 9105) [000] ...1 82317.132693: tracing_mark_write: B|9105|HIDL::IMapper::freeBuffer::passthrough
109741<...>-9122 ( 9105) [000] ...1 82317.132710: tracing_mark_write: B|9105|FreeBuffer
109742  surfaceflinger-8858  ( 8858) [003] d..5 82317.132713: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
109743          <idle>-0     (-----) [002] .n.1 82317.132718: cpu_idle: state=4294967295 cpu_id=2
109744<...>-9122 ( 9105) [000] ...1 82317.132724: tracing_mark_write: E|9105
109745          <idle>-0     (-----) [002] d..2 82317.132726: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
109746<...>-9122 ( 9105) [000] ...1 82317.132728: tracing_mark_write: B|9105|FreeBuffer
109747  surfaceflinger-8858  ( 8858) [003] d..2 82317.132734: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109748 [email protected]   (  619) [002] .... 82317.132734: binder_transaction_received: transaction=1572231
109749<...>-9122 ( 9105) [000] ...1 82317.132735: tracing_mark_write: E|9105
109750    RenderThread-16607 (10023) [005] d..2 82317.132737: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
109751<...>-9122 ( 9105) [000] ...1 82317.132742: tracing_mark_write: E|9105
109752          <idle>-0     (-----) [003] d..1 82317.132745: cpu_idle: state=0 cpu_id=3
109753<...>-9122 ( 9105) [000] ...1 82317.132763: tracing_mark_write: B|9105|HIDL::IMapper::freeBuffer::passthrough
109754          <idle>-0     (-----) [003] dnh2 82317.132764: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
109755          <idle>-0     (-----) [003] .n.1 82317.132769: cpu_idle: state=4294967295 cpu_id=3
109756<...>-9122 ( 9105) [000] ...1 82317.132771: tracing_mark_write: B|9105|FreeBuffer
109757          <idle>-0     (-----) [003] d..2 82317.132774: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
109758<...>-9122 ( 9105) [000] ...1 82317.132782: tracing_mark_write: E|9105
109759 [email protected]   (  619) [002] ...1 82317.132783: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
109760<...>-9122 ( 9105) [000] ...1 82317.132786: tracing_mark_write: B|9105|FreeBuffer
109761<...>-9122 ( 9105) [000] ...1 82317.132794: tracing_mark_write: E|9105
109762<...>-9122 ( 9105) [000] ...1 82317.132799: tracing_mark_write: E|9105
109763 kgsl_worker_thr-258   (  258) [003] d..2 82317.132820: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109764          <idle>-0     (-----) [003] d..1 82317.132825: cpu_idle: state=0 cpu_id=3
109765    RenderThread-16607 (10023) [005] d..2 82317.132828: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
109766<...>-9122 ( 9105) [000] d..2 82317.132837: sched_switch: prev_comm=FinalizerDaemon prev_pid=9122 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109767          <idle>-0     (-----) [003] dnh2 82317.132843: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
109768          <idle>-0     (-----) [003] .n.1 82317.132847: cpu_idle: state=4294967295 cpu_id=3
109769          <idle>-0     (-----) [000] d..1 82317.132849: cpu_idle: state=0 cpu_id=0
109770 [email protected]   (  619) [002] ...1 82317.132850: tracing_mark_write: B|619|HIDL::IMapper::importBuffer::passthrough
109771          <idle>-0     (-----) [003] d..2 82317.132851: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
109772 [email protected]   (  619) [002] ...1 82317.132882: tracing_mark_write: E|619
109773    RenderThread-16607 (10023) [005] .... 82317.132940: binder_transaction: transaction=1572232 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
109774    RenderThread-16607 (10023) [005] .... 82317.132943: binder_transaction_alloc_buf: transaction=1572232 data_size=192 offsets_size=8
109775    RenderThread-16607 (10023) [005] ...2 82317.132947: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
109776    RenderThread-16607 (10023) [005] d..4 82317.132949: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=002
109777    RenderThread-16607 (10023) [005] dn.5 82317.132965: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
109778 [email protected]   (  619) [002] ...1 82317.132981: tracing_mark_write: B|619|HWCSession::PresentDisplay::
109779    RenderThread-16607 (10023) [005] dnh5 82317.132995: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
109780 kgsl_worker_thr-258   (  258) [003] d..2 82317.132996: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
109781    RenderThread-16607 (10023) [005] dnh6 82317.133007: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=004
109782          <idle>-0     (-----) [004] .n.1 82317.133012: cpu_idle: state=4294967295 cpu_id=4
109783    RenderThread-16607 (10023) [005] d..2 82317.133013: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
109784          <idle>-0     (-----) [004] d..2 82317.133017: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
109785<...>-8874 ( 8858) [005] .... 82317.133021: binder_transaction_received: transaction=1572232
109786 kgsl_worker_thr-258   (  258) [003] d..3 82317.133025: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
109787         sugov:4-577   (  577) [004] .... 82317.133033: clk_set_rate: perfcl_clk 1843200000
109788         sugov:4-577   (  577) [004] .... 82317.133034: clk_set_rate: cpu7_perfcl_clk 1056000000
109789 kgsl_worker_thr-258   (  258) [003] d..2 82317.133036: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
109790         sugov:4-577   (  577) [004] .... 82317.133039: clk_set_rate: cpu6_perfcl_clk 1056000000
109791         sugov:4-577   (  577) [004] .... 82317.133044: clk_set_rate: cpu5_perfcl_clk 1056000000
109792         sugov:4-577   (  577) [004] .... 82317.133048: clk_set_rate: cpu4_perfcl_clk 1843200000
109793         sugov:4-577   (  577) [004] .... 82317.133054: cpu_frequency: state=1843200 cpu_id=4
109794         sugov:4-577   (  577) [004] .... 82317.133061: cpu_frequency: state=1843200 cpu_id=5
109795         sugov:4-577   (  577) [004] .... 82317.133063: cpu_frequency: state=1843200 cpu_id=6
109796         sugov:4-577   (  577) [004] .... 82317.133065: cpu_frequency: state=1843200 cpu_id=7
109797  kworker/u16:15-1311  ( 1311) [003] d..2 82317.133079: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109798         sugov:4-577   (  577) [004] d..2 82317.133083: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
109799          <idle>-0     (-----) [003] d..1 82317.133085: cpu_idle: state=0 cpu_id=3
109800          <idle>-0     (-----) [004] d..1 82317.133089: cpu_idle: state=0 cpu_id=4
109801    RenderThread-9436  ( 9105) [007] .... 82317.133101: binder_transaction: transaction=1572233 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
109802          <idle>-0     (-----) [000] ...1 82317.133103: cpu_idle: state=4294967295 cpu_id=0
109803<...>-8874 ( 8858) [005] .... 82317.133103: binder_transaction: transaction=1572234 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
109804    RenderThread-9436  ( 9105) [007] .... 82317.133104: binder_transaction_alloc_buf: transaction=1572233 data_size=192 offsets_size=8
109805<...>-8874 ( 8858) [005] .... 82317.133106: binder_transaction_alloc_buf: transaction=1572234 data_size=68 offsets_size=0
109806          <idle>-0     (-----) [000] d..1 82317.133106: cpu_idle: state=0 cpu_id=0
109807<...>-8874 ( 8858) [005] .... 82317.133108: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
109808    RenderThread-9436  ( 9105) [007] d..4 82317.133109: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
109809    RenderThread-9436  ( 9105) [007] dn.5 82317.133127: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
109810    RenderThread-9436  ( 9105) [007] d..2 82317.133154: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
109811<...>-13083 ( 8858) [007] .... 82317.133160: binder_transaction_received: transaction=1572233
109812<...>-8874 ( 8858) [005] d..2 82317.133161: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
109813    RenderThread-16607 (10023) [005] .... 82317.133166: binder_transaction_received: transaction=1572234
109814    RenderThread-16607 (10023) [005] d..2 82317.133210: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
109815<...>-13083 ( 8858) [007] .... 82317.133213: binder_transaction: transaction=1572235 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
109816<...>-13083 ( 8858) [007] .... 82317.133214: binder_transaction_alloc_buf: transaction=1572235 data_size=68 offsets_size=0
109817          <idle>-0     (-----) [005] d..1 82317.133219: cpu_idle: state=0 cpu_id=5
109818<...>-13083 ( 8858) [007] d..2 82317.133228: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
109819    RenderThread-9436  ( 9105) [007] .... 82317.133233: binder_transaction_received: transaction=1572235
109820    RenderThread-9436  ( 9105) [007] d..2 82317.133272: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
109821          <idle>-0     (-----) [007] d..1 82317.133282: cpu_idle: state=0 cpu_id=7
109822 [email protected]   (  619) [002] ...1 82317.133493: tracing_mark_write: B|619|HWDeviceDRM::Validate::
109823 [email protected]   (  619) [002] ...1 82317.134209: tracing_mark_write: E|619
109824          <idle>-0     (-----) [000] d.h3 82317.134274: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
109825          <idle>-0     (-----) [000] d.h4 82317.134287: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
109826          <idle>-0     (-----) [003] .n.1 82317.134293: cpu_idle: state=4294967295 cpu_id=3
109827          <idle>-0     (-----) [000] ...1 82317.134297: cpu_idle: state=4294967295 cpu_id=0
109828          <idle>-0     (-----) [003] d..2 82317.134298: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
109829          <idle>-0     (-----) [000] d..1 82317.134302: cpu_idle: state=0 cpu_id=0
109830 kgsl_worker_thr-258   (  258) [003] d..2 82317.134331: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109831 [email protected]   (  619) [002] ...1 82317.134332: tracing_mark_write: B|619|HWDeviceDRM::Commit::
109832          <idle>-0     (-----) [003] d..1 82317.134336: cpu_idle: state=0 cpu_id=3
109833 [email protected]   (  619) [002] ...1 82317.134340: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
109834          <idle>-0     (-----) [000] ...1 82317.134383: cpu_idle: state=4294967295 cpu_id=0
109835          <idle>-0     (-----) [000] d..1 82317.134386: cpu_idle: state=0 cpu_id=0
109836          <idle>-0     (-----) [000] d.h3 82317.134674: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
109837          <idle>-0     (-----) [000] d.h4 82317.134684: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
109838          <idle>-0     (-----) [003] .n.1 82317.134689: cpu_idle: state=4294967295 cpu_id=3
109839          <idle>-0     (-----) [000] ...1 82317.134693: cpu_idle: state=4294967295 cpu_id=0
109840          <idle>-0     (-----) [003] d..2 82317.134693: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
109841          <idle>-0     (-----) [000] d..1 82317.134697: cpu_idle: state=0 cpu_id=0
109842 kgsl_worker_thr-258   (  258) [003] d..2 82317.134785: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109843          <idle>-0     (-----) [003] d..1 82317.134790: cpu_idle: state=0 cpu_id=3
109844          <idle>-0     (-----) [001] d.h2 82317.134799: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=001
109845          <idle>-0     (-----) [001] d.h3 82317.134819: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
109846          <idle>-0     (-----) [000] .n.1 82317.134823: cpu_idle: state=4294967295 cpu_id=0
109847          <idle>-0     (-----) [001] ...1 82317.134826: cpu_idle: state=4294967295 cpu_id=1
109848          <idle>-0     (-----) [001] d..1 82317.134832: cpu_idle: state=0 cpu_id=1
109849          <idle>-0     (-----) [000] d..2 82317.134833: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
109850 [email protected]   (  619) [002] d..2 82317.134945: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
109851 [email protected]   (  619) [002] d..3 82317.134969: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
109852          <idle>-0     (-----) [001] .n.1 82317.134974: cpu_idle: state=4294967295 cpu_id=1
109853          <idle>-0     (-----) [001] d..2 82317.134982: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
109854<...>-8961 ( 8943) [000] .... 82317.134994: binder_transaction: transaction=1572236 dest_node=401308 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x1
109855<...>-8961 ( 8943) [000] .... 82317.134997: binder_transaction_alloc_buf: transaction=1572236 data_size=72 offsets_size=0
109856<...>-8961 ( 8943) [000] d..4 82317.135003: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
109857<...>-8961 ( 8943) [000] d..5 82317.135029: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=003
109858          <idle>-0     (-----) [003] .n.1 82317.135033: cpu_idle: state=4294967295 cpu_id=3
109859 [email protected]   (  619) [002] ...1 82317.135044: tracing_mark_write: E|619
109860 [email protected]   (  619) [002] ...1 82317.135049: tracing_mark_write: E|619
109861          <idle>-0     (-----) [003] d..2 82317.135064: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
109862<...>-9132 ( 9105) [003] .... 82317.135071: binder_transaction_received: transaction=1572236
109863 [email protected]   (  619) [002] ...1 82317.135091: tracing_mark_write: E|619
109864<...>-9132 ( 9105) [003] d.s1 82317.135135: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109865<...>-8961 ( 8943) [000] .... 82317.135148: binder_transaction: transaction=1572237 dest_node=424459 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x1
109866<...>-9132 ( 9105) [003] d.s2 82317.135150: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
109867<...>-8961 ( 8943) [000] .... 82317.135151: binder_transaction_alloc_buf: transaction=1572237 data_size=72 offsets_size=0
109868<...>-8961 ( 8943) [000] d..4 82317.135155: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=003
109869 [email protected]   (  619) [002] ...1 82317.135168: tracing_mark_write: E|619
109870 [email protected]   (  619) [002] .... 82317.135182: binder_transaction: transaction=1572238 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
109871 [email protected]   (  619) [002] .... 82317.135185: binder_transaction_alloc_buf: transaction=1572238 data_size=656 offsets_size=128
109872 [email protected]   (  619) [002] d..2 82317.135200: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
109873          <idle>-0     (-----) [006] dnh2 82317.135205: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=006
109874          <idle>-0     (-----) [006] .n.1 82317.135207: cpu_idle: state=4294967295 cpu_id=6
109875          <idle>-0     (-----) [006] d..2 82317.135211: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
109876 [email protected]   (  619) [002] d..3 82317.135215: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
109877<...>-9380 ( 9105) [006] .... 82317.135217: binder_transaction_received: transaction=1572237
109878 [email protected]   (  619) [002] .... 82317.135218: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
109879<...>-9132 ( 9105) [003] d..2 82317.135226: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
109880  surfaceflinger-8858  ( 8858) [003] .... 82317.135232: binder_transaction_received: transaction=1572238
109881<...>-8961 ( 8943) [000] .... 82317.135251: binder_transaction: transaction=1572239 dest_node=1159303 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x1
109882<...>-8961 ( 8943) [000] .... 82317.135254: binder_transaction_alloc_buf: transaction=1572239 data_size=72 offsets_size=0
109883<...>-8961 ( 8943) [000] d..4 82317.135258: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
109884          <idle>-0     (-----) [004] dnh2 82317.135277: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
109885          <idle>-0     (-----) [004] .n.1 82317.135280: cpu_idle: state=4294967295 cpu_id=4
109886          <idle>-0     (-----) [004] d..2 82317.135284: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
109887  Binder:10023_2-10088 (10023) [004] .... 82317.135287: binder_transaction_received: transaction=1572239
109888 [email protected]   (  619) [002] d..2 82317.135288: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109889          <idle>-0     (-----) [002] d..1 82317.135301: cpu_idle: state=0 cpu_id=2
109890<...>-9380 ( 9105) [006] d..3 82317.135315: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
109891<...>-8961 ( 8943) [000] d..2 82317.135320: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109892          <idle>-0     (-----) [000] d..1 82317.135332: cpu_idle: state=0 cpu_id=0
109893          <idle>-0     (-----) [000] dnh2 82317.135343: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
109894          <idle>-0     (-----) [000] .n.1 82317.135349: cpu_idle: state=4294967295 cpu_id=0
109895          <idle>-0     (-----) [000] d..2 82317.135357: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
109896<...>-9380 ( 9105) [006] d..2 82317.135372: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
109897          <idle>-0     (-----) [006] d..1 82317.135379: cpu_idle: state=0 cpu_id=6
109898<...>-9105 ( 9105) [000] .... 82317.135464: binder_transaction: transaction=1572240 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xf
109899<...>-9105 ( 9105) [000] .... 82317.135468: binder_transaction_alloc_buf: transaction=1572240 data_size=72 offsets_size=0
109900<...>-9105 ( 9105) [000] d..4 82317.135471: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=006
109901<...>-9105 ( 9105) [000] dn.5 82317.135490: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=000
109902  Binder:10023_2-10088 (10023) [004] .... 82317.135525: binder_transaction: transaction=1572241 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x10
109903  Binder:10023_2-10088 (10023) [004] .... 82317.135527: binder_transaction_alloc_buf: transaction=1572241 data_size=80 offsets_size=0
109904<...>-9105 ( 9105) [000] d..2 82317.135528: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
109905  Binder:10023_2-10088 (10023) [004] d..4 82317.135530: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=003
109906  Binder:10023_2-10088 (10023) [004] d..5 82317.135548: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
109907          <idle>-0     (-----) [006] .n.1 82317.135553: cpu_idle: state=4294967295 cpu_id=6
109908          <idle>-0     (-----) [006] d..2 82317.135571: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
109909<...>-12998 ( 8943) [000] .... 82317.135572: binder_transaction_received: transaction=1572240
109910  Binder:10023_2-10088 (10023) [004] d..2 82317.135578: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
109911<...>-11815 ( 8943) [006] .... 82317.135578: binder_transaction_received: transaction=1572241
109912          <idle>-0     (-----) [004] d..1 82317.135583: cpu_idle: state=0 cpu_id=4
109913<...>-12998 ( 8943) [000] d..2 82317.135638: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
109914<...>-11815 ( 8943) [006] d..1 82317.135642: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=000
109915<...>-9105 ( 9105) [000] d..2 82317.135659: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
109916  surfaceflinger-8858  ( 8858) [003] d..2 82317.135662: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
109917          <idle>-0     (-----) [002] dnh2 82317.135666: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
109918          <idle>-0     (-----) [000] d..1 82317.135670: cpu_idle: state=0 cpu_id=0
109919          <idle>-0     (-----) [002] .n.1 82317.135672: cpu_idle: state=4294967295 cpu_id=2
109920          <idle>-0     (-----) [002] d..2 82317.135679: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
109921     rcu_preempt-7     (    7) [003] d..2 82317.135684: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
109922<...>-11815 ( 8943) [006] d..1 82317.135782: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
109923<...>-12998 ( 8943) [002] d..2 82317.135793: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109924          <idle>-0     (-----) [002] d..1 82317.135805: cpu_idle: state=0 cpu_id=2
109925          <idle>-0     (-----) [002] dnh2 82317.135816: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
109926          <idle>-0     (-----) [002] .n.1 82317.135821: cpu_idle: state=4294967295 cpu_id=2
109927          <idle>-0     (-----) [002] d..2 82317.135828: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
109928<...>-9132 ( 9105) [003] .... 82317.135840: binder_transaction: transaction=1572242 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x5c
109929<...>-9132 ( 9105) [003] .... 82317.135844: binder_transaction_alloc_buf: transaction=1572242 data_size=84 offsets_size=0
109930<...>-9132 ( 9105) [003] d..4 82317.135849: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
109931<...>-9132 ( 9105) [003] d..5 82317.135866: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=003
109932<...>-9132 ( 9105) [003] d..2 82317.135876: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
109933<...>-9062 ( 8943) [003] .... 82317.135883: binder_transaction_received: transaction=1572242
109934<...>-11815 ( 8943) [006] .... 82317.135915: binder_transaction: transaction=1572243 dest_node=0 dest_proc=10023 dest_thread=10088 reply=1 flags=0x0 code=0x0
109935<...>-11815 ( 8943) [006] .... 82317.135917: binder_transaction_alloc_buf: transaction=1572243 data_size=824 offsets_size=0
109936<...>-11815 ( 8943) [006] d..2 82317.135919: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
109937<...>-11815 ( 8943) [006] dn.3 82317.135929: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=006
109938<...>-11815 ( 8943) [006] d..2 82317.135932: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=R+ ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
109939  Binder:10023_2-10088 (10023) [006] .... 82317.135938: binder_transaction_received: transaction=1572243
109940<...>-12998 ( 8943) [002] .... 82317.136087: binder_transaction: transaction=1572244 dest_node=0 dest_proc=9105 dest_thread=9105 reply=1 flags=0x0 code=0x0
109941<...>-12998 ( 8943) [002] .... 82317.136092: binder_transaction_alloc_buf: transaction=1572244 data_size=824 offsets_size=0
109942 crtc_commit:111-321   (  321) [001] d..2 82317.136094: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
109943<...>-12998 ( 8943) [002] d..2 82317.136095: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
109944          <idle>-0     (-----) [001] d..1 82317.136105: cpu_idle: state=0 cpu_id=1
109945<...>-9062 ( 8943) [003] .... 82317.136107: binder_transaction: transaction=1572245 dest_node=0 dest_proc=9105 dest_thread=9132 reply=1 flags=0x0 code=0x0
109946<...>-12998 ( 8943) [002] d..3 82317.136111: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
109947<...>-9062 ( 8943) [003] .... 82317.136112: binder_transaction_alloc_buf: transaction=1572245 data_size=8 offsets_size=0
109948<...>-9062 ( 8943) [003] d..2 82317.136115: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=003
109949<...>-9062 ( 8943) [003] d..3 82317.136126: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=003
109950<...>-12998 ( 8943) [002] d..2 82317.136139: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
109951<...>-9105 ( 9105) [002] .... 82317.136145: binder_transaction_received: transaction=1572244
109952<...>-9062 ( 8943) [003] d..2 82317.136153: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
109953<...>-9132 ( 9105) [003] .... 82317.136159: binder_transaction_received: transaction=1572245
109954  Binder:10023_2-10088 (10023) [006] .... 82317.136221: binder_transaction: transaction=1572246 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x2e
109955  Binder:10023_2-10088 (10023) [006] .... 82317.136223: binder_transaction_alloc_buf: transaction=1572246 data_size=80 offsets_size=0
109956  Binder:10023_2-10088 (10023) [006] d..4 82317.136225: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=003
109957  Binder:10023_2-10088 (10023) [006] d..5 82317.136241: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
109958          <idle>-0     (-----) [007] .n.1 82317.136247: cpu_idle: state=4294967295 cpu_id=7
109959  Binder:10023_2-10088 (10023) [006] d.h3 82317.136267: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=004
109960          <idle>-0     (-----) [007] d..2 82317.136269: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
109961<...>-9132 ( 9105) [003] d..2 82317.136270: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
109962<...>-9062 ( 8943) [007] .... 82317.136273: binder_transaction_received: transaction=1572246
109963  Binder:10023_2-10088 (10023) [006] d.h4 82317.136274: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=004
109964          <idle>-0     (-----) [004] .n.1 82317.136280: cpu_idle: state=4294967295 cpu_id=4
109965  Binder:10023_2-10088 (10023) [006] d..2 82317.136280: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
109966          <idle>-0     (-----) [003] d..1 82317.136282: cpu_idle: state=0 cpu_id=3
109967          <idle>-0     (-----) [004] d..2 82317.136284: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
109968         sugov:4-577   (  577) [004] .... 82317.136296: clk_set_rate: perfcl_clk 1996800000
109969         sugov:4-577   (  577) [004] .... 82317.136297: clk_set_rate: cpu7_perfcl_clk 1843200000
109970         sugov:4-577   (  577) [004] .... 82317.136301: clk_set_rate: cpu6_perfcl_clk 1843200000
109971<...>-11815 ( 8943) [006] d..2 82317.136305: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
109972         sugov:4-577   (  577) [004] .... 82317.136306: clk_set_rate: cpu5_perfcl_clk 1843200000
109973         sugov:4-577   (  577) [004] .... 82317.136311: clk_set_rate: cpu4_perfcl_clk 1996800000
109974          <idle>-0     (-----) [006] d..1 82317.136312: cpu_idle: state=0 cpu_id=6
109975         sugov:4-577   (  577) [004] .... 82317.136315: cpu_frequency: state=1996800 cpu_id=4
109976<...>-9105 ( 9105) [002] d..1 82317.136416: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=001
109977<...>-9105 ( 9105) [002] d..2 82317.136441: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=000
109978         sugov:4-577   (  577) [004] d..2 82317.136443: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
109979          <idle>-0     (-----) [004] d..1 82317.136446: cpu_idle: state=0 cpu_id=4
109980          <idle>-0     (-----) [000] .n.1 82317.136447: cpu_idle: state=4294967295 cpu_id=0
109981          <idle>-0     (-----) [000] d..2 82317.136455: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
109982          <idle>-0     (-----) [001] d.s3 82317.136491: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=004
109983<...>-9105 ( 9105) [002] d..2 82317.136495: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
109984          <idle>-0     (-----) [006] ...1 82317.136504: cpu_idle: state=4294967295 cpu_id=6
109985          <idle>-0     (-----) [006] d..1 82317.136505: cpu_idle: state=0 cpu_id=6
109986          <idle>-0     (-----) [004] dnh2 82317.136507: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=004
109987          <idle>-0     (-----) [002] d..1 82317.136507: cpu_idle: state=0 cpu_id=2
109988          <idle>-0     (-----) [001] ...1 82317.136507: cpu_idle: state=4294967295 cpu_id=1
109989          <idle>-0     (-----) [004] .n.1 82317.136509: cpu_idle: state=4294967295 cpu_id=4
109990          <idle>-0     (-----) [001] d..1 82317.136511: cpu_idle: state=0 cpu_id=1
109991          <idle>-0     (-----) [004] d..2 82317.136512: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
109992         sugov:4-577   (  577) [004] .... 82317.136516: cpu_frequency: state=1996800 cpu_id=5
109993         sugov:4-577   (  577) [004] .... 82317.136517: cpu_frequency: state=1996800 cpu_id=6
109994         sugov:4-577   (  577) [004] .... 82317.136519: cpu_frequency: state=1996800 cpu_id=7
109995         sugov:4-577   (  577) [004] d..2 82317.136525: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
109996          <idle>-0     (-----) [004] d..1 82317.136528: cpu_idle: state=0 cpu_id=4
109997<...>-9321 ( 9105) [000] .... 82317.136575: binder_transaction: transaction=1572247 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x37
109998<...>-9321 ( 9105) [000] .... 82317.136578: binder_transaction_alloc_buf: transaction=1572247 data_size=76 offsets_size=0
109999<...>-9321 ( 9105) [000] d..4 82317.136581: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
110000<...>-9321 ( 9105) [000] d..5 82317.136600: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
110001<...>-9062 ( 8943) [007] .... 82317.136632: binder_transaction: transaction=1572248 dest_node=0 dest_proc=10023 dest_thread=10088 reply=1 flags=0x0 code=0x0
110002<...>-9062 ( 8943) [007] .... 82317.136635: binder_transaction_alloc_buf: transaction=1572248 data_size=2844 offsets_size=0
110003<...>-9062 ( 8943) [007] d..2 82317.136638: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=006
110004<...>-9321 ( 9105) [000] d..2 82317.136638: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
110005<...>-11815 ( 8943) [000] .... 82317.136644: binder_transaction_received: transaction=1572247
110006<...>-9062 ( 8943) [007] d..3 82317.136646: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=007
110007<...>-9062 ( 8943) [007] d..2 82317.136664: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
110008  Binder:10023_2-10088 (10023) [007] .... 82317.136668: binder_transaction_received: transaction=1572248
110009  Binder:10023_2-10088 (10023) [007] .... 82317.136986: binder_transaction: transaction=1572249 dest_node=397475 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x8
110010  Binder:10023_2-10088 (10023) [007] .... 82317.136987: binder_transaction_alloc_buf: transaction=1572249 data_size=76 offsets_size=0
110011  Binder:10023_2-10088 (10023) [007] d..4 82317.136989: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
110012  Binder:10023_2-10088 (10023) [007] d..5 82317.136996: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
110013  Binder:10023_2-10088 (10023) [007] d..2 82317.137001: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
110014<...>-9062 ( 8943) [007] .... 82317.137005: binder_transaction_received: transaction=1572249
110015<...>-11815 ( 8943) [000] .... 82317.137095: binder_transaction: transaction=1572250 dest_node=0 dest_proc=9105 dest_thread=9321 reply=1 flags=0x0 code=0x0
110016<...>-11815 ( 8943) [000] .... 82317.137098: binder_transaction_alloc_buf: transaction=1572250 data_size=860 offsets_size=0
110017<...>-11815 ( 8943) [000] d..2 82317.137102: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=000
110018<...>-11815 ( 8943) [000] dn.3 82317.137112: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=000
110019<...>-11815 ( 8943) [000] d..2 82317.137118: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=R+ ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
110020<...>-9321 ( 9105) [000] .... 82317.137124: binder_transaction_received: transaction=1572250
110021<...>-9062 ( 8943) [007] .... 82317.137150: binder_transaction: transaction=1572251 dest_node=0 dest_proc=10023 dest_thread=10088 reply=1 flags=0x0 code=0x0
110022<...>-9062 ( 8943) [007] .... 82317.137152: binder_transaction_alloc_buf: transaction=1572251 data_size=8 offsets_size=0
110023<...>-9062 ( 8943) [007] d..2 82317.137153: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=007
110024<...>-9062 ( 8943) [007] d..3 82317.137158: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=007
110025<...>-9062 ( 8943) [007] d..2 82317.137171: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
110026  Binder:10023_2-10088 (10023) [007] .... 82317.137175: binder_transaction_received: transaction=1572251
110027<...>-9321 ( 9105) [000] .... 82317.137354: binder_transaction: transaction=1572252 dest_node=395822 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xd
110028<...>-9321 ( 9105) [000] .... 82317.137357: binder_transaction_alloc_buf: transaction=1572252 data_size=168 offsets_size=0
110029<...>-9321 ( 9105) [000] d..4 82317.137360: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
110030<...>-9321 ( 9105) [000] d..5 82317.137384: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
110031          <idle>-0     (-----) [001] .n.1 82317.137388: cpu_idle: state=4294967295 cpu_id=1
110032          <idle>-0     (-----) [001] d..2 82317.137417: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
110033<...>-9062 ( 8943) [001] .... 82317.137423: binder_transaction_received: transaction=1572252
110034<...>-9321 ( 9105) [000] d..2 82317.137424: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
110035<...>-11815 ( 8943) [000] d..2 82317.137462: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110036          <idle>-0     (-----) [000] d..1 82317.137474: cpu_idle: state=0 cpu_id=0
110037          <idle>-0     (-----) [002] ...1 82317.137751: cpu_idle: state=4294967295 cpu_id=2
110038          <idle>-0     (-----) [002] d..1 82317.137755: cpu_idle: state=0 cpu_id=2
110039<...>-9062 ( 8943) [001] .... 82317.137794: binder_transaction: transaction=1572253 dest_node=0 dest_proc=9105 dest_thread=9321 reply=1 flags=0x0 code=0x0
110040<...>-9062 ( 8943) [001] .... 82317.137798: binder_transaction_alloc_buf: transaction=1572253 data_size=1712 offsets_size=0
110041<...>-9062 ( 8943) [001] d..2 82317.137802: sched_waking: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=000
110042<...>-9062 ( 8943) [001] d..3 82317.137817: sched_wakeup: comm=pool-1-thread-1 pid=9321 prio=120 target_cpu=001
110043<...>-9062 ( 8943) [001] d..2 82317.137844: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=pool-1-thread-1 next_pid=9321 next_prio=120
110044<...>-9321 ( 9105) [001] .... 82317.137849: binder_transaction_received: transaction=1572253
110045<...>-9321 ( 9105) [001] d..2 82317.138010: sched_switch: prev_comm=pool-1-thread-1 prev_pid=9321 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110046          <idle>-0     (-----) [001] d..1 82317.138022: cpu_idle: state=0 cpu_id=1
110047  Binder:10023_2-10088 (10023) [007] d.s2 82317.138461: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110048          <idle>-0     (-----) [000] dnh2 82317.138488: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
110049          <idle>-0     (-----) [000] .n.1 82317.138493: cpu_idle: state=4294967295 cpu_id=0
110050          <idle>-0     (-----) [000] d..2 82317.138502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110051  kworker/u16:15-1311  ( 1311) [000] d..2 82317.138699: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
110052          <idle>-0     (-----) [000] d..1 82317.138709: cpu_idle: state=0 cpu_id=0
110053          <idle>-0     (-----) [001] d.s3 82317.138727: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
110054          <idle>-0     (-----) [001] d.s4 82317.138736: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
110055          <idle>-0     (-----) [001] d.s4 82317.138744: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
110056          <idle>-0     (-----) [000] .n.1 82317.138749: cpu_idle: state=4294967295 cpu_id=0
110057          <idle>-0     (-----) [001] ...1 82317.138751: cpu_idle: state=4294967295 cpu_id=1
110058          <idle>-0     (-----) [001] d..1 82317.138755: cpu_idle: state=0 cpu_id=1
110059          <idle>-0     (-----) [000] d..2 82317.138757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110060  kworker/u16:15-1311  ( 1311) [000] .... 82317.138818: clk_set_rate: l3_cluster1_vote_clk 576000000
110061  kworker/u16:15-1311  ( 1311) [000] .... 82317.138823: clk_set_rate: l3_clk 576000000
110062  kworker/u16:15-1311  ( 1311) [000] d..2 82317.138880: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110063          <idle>-0     (-----) [000] d..1 82317.138898: cpu_idle: state=0 cpu_id=0
110064          <idle>-0     (-----) [000] ...1 82317.140297: cpu_idle: state=4294967295 cpu_id=0
110065          <idle>-0     (-----) [000] d..1 82317.140300: cpu_idle: state=0 cpu_id=0
110066  Binder:10023_2-10088 (10023) [007] d..3 82317.140569: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
110067  Binder:10023_2-10088 (10023) [007] d..4 82317.140587: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
110068          <idle>-0     (-----) [004] .n.1 82317.140591: cpu_idle: state=4294967295 cpu_id=4
110069          <idle>-0     (-----) [004] d..2 82317.140596: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
110070    RenderThread-16607 (10023) [004] d..2 82317.140621: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
110071          <idle>-0     (-----) [004] d..1 82317.140625: cpu_idle: state=0 cpu_id=4
110072          <idle>-0     (-----) [003] d.s2 82317.141804: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110073          <idle>-0     (-----) [003] dns3 82317.141820: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110074          <idle>-0     (-----) [003] .n.1 82317.141827: cpu_idle: state=4294967295 cpu_id=3
110075          <idle>-0     (-----) [003] d..2 82317.141838: 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
110076     rcu_preempt-7     (    7) [003] d..2 82317.141851: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
110077     rcu_preempt-7     (    7) [003] d..3 82317.141886: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
110078     rcu_preempt-7     (    7) [003] d..2 82317.141888: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
110079     rcu_preempt-7     (    7) [003] d..3 82317.141912: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
110080     rcu_preempt-7     (    7) [003] d..2 82317.141914: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
110081     rcu_preempt-7     (    7) [003] d..3 82317.141937: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
110082     rcu_preempt-7     (    7) [003] d..2 82317.141951: 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
110083         rcuop/6-61    (   61) [003] d..2 82317.141956: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=003
110084         rcuop/6-61    (   61) [003] d..3 82317.141970: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=003
110085         rcuop/6-61    (   61) [003] d..2 82317.141977: 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
110086<...>-69 ( 69) [003] d..2 82317.141994: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
110087         rcuop/4-45    (   45) [003] d..2 82317.142000: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
110088         rcuop/4-45    (   45) [003] d..3 82317.142014: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
110089         rcuop/4-45    (   45) [003] d..2 82317.142020: 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
110090         rcuop/5-53    (   53) [003] d..2 82317.142033: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
110091         rcuop/2-29    (   29) [003] d..2 82317.142038: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
110092         rcuop/2-29    (   29) [003] d..3 82317.142051: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
110093         rcuop/2-29    (   29) [003] d..2 82317.142079: 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
110094         rcuop/3-37    (   37) [003] d..2 82317.142109: 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
110095          <idle>-0     (-----) [003] d..1 82317.142123: cpu_idle: state=0 cpu_id=3
110096          <idle>-0     (-----) [000] d.h5 82317.144352: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110097          <idle>-0     (-----) [000] d.h6 82317.144373: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110098          <idle>-0     (-----) [000] d.h5 82317.144377: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110099          <idle>-0     (-----) [003] .n.1 82317.144379: cpu_idle: state=4294967295 cpu_id=3
110100          <idle>-0     (-----) [003] d..2 82317.144387: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
110101          <idle>-0     (-----) [000] d.h6 82317.144388: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110102          <idle>-0     (-----) [001] .n.1 82317.144393: cpu_idle: state=4294967295 cpu_id=1
110103          <idle>-0     (-----) [000] ...1 82317.144402: cpu_idle: state=4294967295 cpu_id=0
110104          <idle>-0     (-----) [001] d..2 82317.144404: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
110105          <idle>-0     (-----) [000] d..1 82317.144405: cpu_idle: state=0 cpu_id=0
110106  crtc_event:111-322   (  322) [003] d..2 82317.144422: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110107          <idle>-0     (-----) [003] d..1 82317.144429: cpu_idle: state=0 cpu_id=3
110108 crtc_commit:111-321   (  321) [001] d..2 82317.144568: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
110109          <idle>-0     (-----) [001] d..1 82317.144575: cpu_idle: state=0 cpu_id=1
110110  Binder:10023_2-10088 (10023) [007] .... 82317.145095: binder_transaction: transaction=1572254 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0xc8
110111  Binder:10023_2-10088 (10023) [007] .... 82317.145098: binder_transaction_alloc_buf: transaction=1572254 data_size=76 offsets_size=0
110112  Binder:10023_2-10088 (10023) [007] d..4 82317.145102: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
110113  Binder:10023_2-10088 (10023) [007] dn.5 82317.145121: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
110114          <idle>-0     (-----) [001] d.s3 82317.145130: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110115          <idle>-0     (-----) [001] d.s4 82317.145145: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110116          <idle>-0     (-----) [003] .n.1 82317.145150: cpu_idle: state=4294967295 cpu_id=3
110117  Binder:10023_2-10088 (10023) [007] dns5 82317.145169: sched_waking: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
110118          <idle>-0     (-----) [003] d..2 82317.145172: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
110119  Binder:10023_2-10088 (10023) [007] dns6 82317.145175: sched_wakeup: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
110120  Binder:10023_2-10088 (10023) [007] d..2 82317.145182: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
110121          <idle>-0     (-----) [001] ...1 82317.145185: cpu_idle: state=4294967295 cpu_id=1
110122          <idle>-0     (-----) [001] d..1 82317.145190: cpu_idle: state=0 cpu_id=1
110123<...>-9062 ( 8943) [007] .... 82317.145192: binder_transaction_received: transaction=1572254
110124  crtc_event:111-322   (  322) [003] d..2 82317.145197: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110125          <idle>-0     (-----) [003] d..1 82317.145202: cpu_idle: state=0 cpu_id=3
110126<...>-9062 ( 8943) [007] d..2 82317.145362: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=R+ ==> next_comm=kworker/7:3 next_pid=442 next_prio=120
110127     kworker/7:3-442   (  442) [007] d..2 82317.145378: sched_switch: prev_comm=kworker/7:3 prev_pid=442 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
110128<...>-9062 ( 8943) [007] .... 82317.145489: binder_transaction: transaction=1572255 dest_node=0 dest_proc=10023 dest_thread=10088 reply=1 flags=0x0 code=0x0
110129<...>-9062 ( 8943) [007] .... 82317.145492: binder_transaction_alloc_buf: transaction=1572255 data_size=384 offsets_size=16
110130<...>-9062 ( 8943) [007] d..2 82317.145522: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
110131  Binder:10023_2-10088 (10023) [007] .... 82317.145529: binder_transaction_received: transaction=1572255
110132  Binder:10023_2-10088 (10023) [007] ...1 82317.145589: tracing_mark_write: B|10023|HIDL::IMapper::importBuffer::passthrough
110133  Binder:10023_2-10088 (10023) [007] ...1 82317.145625: tracing_mark_write: E|10023
110134  Binder:10023_2-10088 (10023) [007] ...1 82317.145632: tracing_mark_write: B|10023|HIDL::IMapper::validateBufferSize::passthrough
110135  Binder:10023_2-10088 (10023) [007] ...1 82317.145646: tracing_mark_write: E|10023
110136  Binder:10023_2-10088 (10023) [007] ...1 82317.145653: tracing_mark_write: B|10023|HIDL::IMapper::getTransportSize::passthrough
110137  Binder:10023_2-10088 (10023) [007] ...1 82317.145656: tracing_mark_write: E|10023
110138  Binder:10023_2-10088 (10023) [007] d..3 82317.145777: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
110139  Binder:10023_2-10088 (10023) [007] d..4 82317.145791: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
110140          <idle>-0     (-----) [004] .n.1 82317.145795: cpu_idle: state=4294967295 cpu_id=4
110141          <idle>-0     (-----) [004] d..2 82317.145799: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
110142  Binder:10023_2-10088 (10023) [007] d..2 82317.145837: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
110143 s.nexuslauncher-10023 (10023) [004] d..2 82317.145847: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
110144          <idle>-0     (-----) [007] d..1 82317.145849: cpu_idle: state=0 cpu_id=7
110145          <idle>-0     (-----) [004] d..1 82317.145852: cpu_idle: state=0 cpu_id=4
110146          <idle>-0     (-----) [000] d.h5 82317.146666: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110147          <idle>-0     (-----) [000] d.h6 82317.146677: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110148          <idle>-0     (-----) [001] .n.1 82317.146683: cpu_idle: state=4294967295 cpu_id=1
110149          <idle>-0     (-----) [000] ...1 82317.146687: cpu_idle: state=4294967295 cpu_id=0
110150          <idle>-0     (-----) [000] d..1 82317.146690: cpu_idle: state=0 cpu_id=0
110151          <idle>-0     (-----) [001] d..2 82317.146691: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
110152 crtc_commit:111-321   (  321) [001] d..2 82317.146784: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110153          <idle>-0     (-----) [001] d..1 82317.146794: cpu_idle: state=0 cpu_id=1
110154          <idle>-0     (-----) [000] d.h5 82317.146968: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110155          <idle>-0     (-----) [000] d.h6 82317.146980: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110156          <idle>-0     (-----) [003] .n.1 82317.146985: cpu_idle: state=4294967295 cpu_id=3
110157          <idle>-0     (-----) [003] d..2 82317.146990: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
110158          <idle>-0     (-----) [000] ...1 82317.146993: cpu_idle: state=4294967295 cpu_id=0
110159          <idle>-0     (-----) [000] d..1 82317.146996: cpu_idle: state=0 cpu_id=0
110160  crtc_event:111-322   (  322) [003] d..2 82317.147010: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110161          <idle>-0     (-----) [003] d..1 82317.147014: cpu_idle: state=0 cpu_id=3
110162          <idle>-0     (-----) [000] d.h2 82317.147183: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
110163          <idle>-0     (-----) [000] dnh3 82317.147193: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
110164          <idle>-0     (-----) [000] .n.1 82317.147199: cpu_idle: state=4294967295 cpu_id=0
110165          <idle>-0     (-----) [000] d..2 82317.147208: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
110166        DispSync-8879  ( 8858) [000] d..1 82317.147243: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
110167        DispSync-8879  ( 8858) [000] d..2 82317.147258: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
110168        DispSync-8879  ( 8858) [000] d..1 82317.147264: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
110169          <idle>-0     (-----) [001] .n.1 82317.147264: cpu_idle: state=4294967295 cpu_id=1
110170          <idle>-0     (-----) [001] d..2 82317.147273: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
110171        DispSync-8879  ( 8858) [000] d..2 82317.147288: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
110172          <idle>-0     (-----) [003] .n.1 82317.147293: cpu_idle: state=4294967295 cpu_id=3
110173          <idle>-0     (-----) [003] d..2 82317.147299: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
110174        DispSync-8879  ( 8858) [000] d..2 82317.147318: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110175          <idle>-0     (-----) [000] d..1 82317.147329: cpu_idle: state=0 cpu_id=0
110176   sfEventThread-8882  ( 8858) [001] d..3 82317.147341: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
110177  appEventThread-8881  ( 8858) [003] d..3 82317.147364: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
110178   sfEventThread-8882  ( 8858) [001] d..4 82317.147366: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
110179          <idle>-0     (-----) [002] .n.1 82317.147370: cpu_idle: state=4294967295 cpu_id=2
110180          <idle>-0     (-----) [002] d..2 82317.147379: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
110181  appEventThread-8881  ( 8858) [003] d..4 82317.147396: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
110182   sfEventThread-8882  ( 8858) [001] d..2 82317.147398: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110183          <idle>-0     (-----) [000] .n.1 82317.147402: cpu_idle: state=4294967295 cpu_id=0
110184          <idle>-0     (-----) [001] d..1 82317.147410: cpu_idle: state=0 cpu_id=1
110185          <idle>-0     (-----) [000] d..2 82317.147411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
110186  appEventThread-8881  ( 8858) [003] d..3 82317.147413: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
110187          <idle>-0     (-----) [004] dnh2 82317.147429: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
110188          <idle>-0     (-----) [004] .n.1 82317.147431: cpu_idle: state=4294967295 cpu_id=4
110189          <idle>-0     (-----) [004] d..2 82317.147435: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
110190  appEventThread-8881  ( 8858) [003] d..2 82317.147453: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110191          <idle>-0     (-----) [003] d..1 82317.147463: cpu_idle: state=0 cpu_id=3
110192 s.nexuslauncher-10023 (10023) [004] .... 82317.147589: binder_transaction: transaction=1572256 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
110193 s.nexuslauncher-10023 (10023) [004] .... 82317.147593: binder_transaction_alloc_buf: transaction=1572256 data_size=80 offsets_size=0
110194 s.nexuslauncher-10023 (10023) [004] d..4 82317.147596: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
110195          <idle>-0     (-----) [001] dnh2 82317.147639: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
110196          <idle>-0     (-----) [001] .n.1 82317.147645: cpu_idle: state=4294967295 cpu_id=1
110197<...>-9105 ( 9105) [000] .... 82317.147649: binder_transaction: transaction=1572257 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
110198 s.nexuslauncher-10023 (10023) [004] d..3 82317.147649: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
110199          <idle>-0     (-----) [001] d..2 82317.147653: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
110200<...>-9105 ( 9105) [000] .... 82317.147653: binder_transaction_alloc_buf: transaction=1572257 data_size=80 offsets_size=0
110201<...>-9105 ( 9105) [000] d..4 82317.147658: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
110202 s.nexuslauncher-10023 (10023) [004] d..4 82317.147662: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
110203          <idle>-0     (-----) [005] .n.1 82317.147667: cpu_idle: state=4294967295 cpu_id=5
110204          <idle>-0     (-----) [005] d..2 82317.147674: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
110205<...>-9105 ( 9105) [000] d..5 82317.147693: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
110206    RenderThread-16607 (10023) [005] d..2 82317.147694: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
110207          <idle>-0     (-----) [005] d..1 82317.147698: cpu_idle: state=0 cpu_id=5
110208          <idle>-0     (-----) [003] .n.1 82317.147698: cpu_idle: state=4294967295 cpu_id=3
110209          <idle>-0     (-----) [003] d..2 82317.147734: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
110210<...>-13083 ( 8858) [001] .... 82317.147735: binder_transaction_received: transaction=1572256
110211<...>-8874 ( 8858) [003] .... 82317.147741: binder_transaction_received: transaction=1572257
110212<...>-9105 ( 9105) [000] d..3 82317.147762: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
110213<...>-13083 ( 8858) [001] d..1 82317.147769: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
110214<...>-13083 ( 8858) [001] d..2 82317.147786: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
110215          <idle>-0     (-----) [006] dnh2 82317.147787: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
110216          <idle>-0     (-----) [006] .n.1 82317.147789: cpu_idle: state=4294967295 cpu_id=6
110217<...>-8874 ( 8858) [003] d..2 82317.147792: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
110218          <idle>-0     (-----) [006] d..2 82317.147794: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
110219<...>-13083 ( 8858) [001] d..1 82317.147797: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
110220    RenderThread-9436  ( 9105) [006] d..2 82317.147822: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
110221          <idle>-0     (-----) [006] d..1 82317.147827: cpu_idle: state=0 cpu_id=6
110222          <idle>-0     (-----) [005] dnh2 82317.147855: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
110223          <idle>-0     (-----) [005] .n.1 82317.147858: cpu_idle: state=4294967295 cpu_id=5
110224          <idle>-0     (-----) [005] d..2 82317.147861: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
110225  appEventThread-8881  ( 8858) [003] d..2 82317.147863: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110226<...>-8874 ( 8858) [005] d..1 82317.147870: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
110227          <idle>-0     (-----) [003] d..1 82317.147871: cpu_idle: state=0 cpu_id=3
110228<...>-13083 ( 8858) [001] d..2 82317.147887: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110229          <idle>-0     (-----) [003] dnh2 82317.147889: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
110230          <idle>-0     (-----) [003] .n.1 82317.147894: cpu_idle: state=4294967295 cpu_id=3
110231<...>-8874 ( 8858) [005] d..2 82317.147899: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
110232          <idle>-0     (-----) [001] d..1 82317.147899: cpu_idle: state=0 cpu_id=1
110233          <idle>-0     (-----) [003] d..2 82317.147899: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
110234          <idle>-0     (-----) [005] d..1 82317.147904: cpu_idle: state=0 cpu_id=5
110235<...>-9105 ( 9105) [000] d..3 82317.147923: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
110236  appEventThread-8881  ( 8858) [003] d..2 82317.147925: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110237          <idle>-0     (-----) [003] d..1 82317.147931: cpu_idle: state=0 cpu_id=3
110238          <idle>-0     (-----) [006] dnh2 82317.147939: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
110239          <idle>-0     (-----) [006] .n.1 82317.147942: cpu_idle: state=4294967295 cpu_id=6
110240          <idle>-0     (-----) [006] d..2 82317.147946: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
110241<...>-9105 ( 9105) [000] d..2 82317.147959: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110242          <idle>-0     (-----) [000] d..1 82317.147973: cpu_idle: state=0 cpu_id=0
110243 s.nexuslauncher-10023 (10023) [004] d..3 82317.147996: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
110244 s.nexuslauncher-10023 (10023) [004] d..4 82317.148008: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
110245    RenderThread-9436  ( 9105) [006] d..1 82317.148011: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
110246          <idle>-0     (-----) [005] .n.1 82317.148013: cpu_idle: state=4294967295 cpu_id=5
110247          <idle>-0     (-----) [005] d..2 82317.148018: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
110248 s.nexuslauncher-10023 (10023) [004] d..2 82317.148022: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
110249          <idle>-0     (-----) [000] dnh2 82317.148030: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
110250          <idle>-0     (-----) [004] d..1 82317.148030: cpu_idle: state=0 cpu_id=4
110251          <idle>-0     (-----) [000] .n.1 82317.148035: cpu_idle: state=4294967295 cpu_id=0
110252          <idle>-0     (-----) [000] d..2 82317.148044: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
110253    RenderThread-9436  ( 9105) [006] .... 82317.148058: binder_transaction: transaction=1572258 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
110254    RenderThread-9436  ( 9105) [006] .... 82317.148060: binder_transaction_alloc_buf: transaction=1572258 data_size=104 offsets_size=0
110255    RenderThread-9436  ( 9105) [006] d..4 82317.148062: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
110256    RenderThread-9436  ( 9105) [006] d..5 82317.148072: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
110257    RenderThread-9436  ( 9105) [006] d..2 82317.148078: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
110258<...>-8874 ( 8858) [006] .... 82317.148084: binder_transaction_received: transaction=1572258
110259<...>-9105 ( 9105) [000] d..2 82317.148103: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110260          <idle>-0     (-----) [000] d..1 82317.148115: cpu_idle: state=0 cpu_id=0
110261    RenderThread-16607 (10023) [005] d..1 82317.148125: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
110262<...>-8874 ( 8858) [006] .... 82317.148126: binder_transaction: transaction=1572259 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
110263<...>-8874 ( 8858) [006] .... 82317.148127: binder_transaction_alloc_buf: transaction=1572259 data_size=52 offsets_size=8
110264<...>-8874 ( 8858) [006] d..2 82317.148133: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
110265    RenderThread-16607 (10023) [005] d..2 82317.148135: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
110266<...>-8874 ( 8858) [006] d..3 82317.148139: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
110267          <idle>-0     (-----) [004] .n.1 82317.148140: cpu_idle: state=4294967295 cpu_id=4
110268          <idle>-0     (-----) [004] d..2 82317.148144: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
110269    RenderThread-16607 (10023) [005] d..1 82317.148147: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=002
110270<...>-8874 ( 8858) [006] d..2 82317.148152: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
110271    RenderThread-9436  ( 9105) [006] .... 82317.148157: binder_transaction_received: transaction=1572259
110272    RenderThread-16607 (10023) [005] d..2 82317.148164: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
110273          <idle>-0     (-----) [007] .n.1 82317.148169: cpu_idle: state=4294967295 cpu_id=7
110274  surfaceflinger-8858  ( 8858) [002] d..1 82317.148172: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
110275          <idle>-0     (-----) [007] d..2 82317.148189: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
110276 s.nexuslauncher-10023 (10023) [004] d..2 82317.148193: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
110277          <idle>-0     (-----) [004] d..1 82317.148198: cpu_idle: state=0 cpu_id=4
110278  surfaceflinger-8858  ( 8858) [002] d..2 82317.148201: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
110279          <idle>-0     (-----) [001] .n.1 82317.148206: cpu_idle: state=4294967295 cpu_id=1
110280          <idle>-0     (-----) [001] d..2 82317.148214: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
110281    RenderThread-16607 (10023) [005] .... 82317.148221: binder_transaction: transaction=1572260 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
110282    RenderThread-16607 (10023) [005] .... 82317.148223: binder_transaction_alloc_buf: transaction=1572260 data_size=104 offsets_size=0
110283    RenderThread-16607 (10023) [005] ...2 82317.148226: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
110284    RenderThread-16607 (10023) [005] d..4 82317.148228: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
110285    RenderThread-16607 (10023) [005] dn.5 82317.148237: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
110286    RenderThread-16607 (10023) [005] d..2 82317.148241: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
110287   sfEventThread-8882  ( 8858) [001] d..2 82317.148245: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110288<...>-8874 ( 8858) [005] .... 82317.148246: binder_transaction_received: transaction=1572260
110289          <idle>-0     (-----) [001] d..1 82317.148253: cpu_idle: state=0 cpu_id=1
110290<...>-8874 ( 8858) [005] .... 82317.148274: binder_transaction: transaction=1572261 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
110291<...>-8874 ( 8858) [005] .... 82317.148276: binder_transaction_alloc_buf: transaction=1572261 data_size=52 offsets_size=8
110292<...>-8874 ( 8858) [005] .... 82317.148301: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
110293<...>-8874 ( 8858) [005] d..2 82317.148320: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
110294    RenderThread-16607 (10023) [005] .... 82317.148325: binder_transaction_received: transaction=1572261
110295<...>-18840 ( 10023) [007] .... 82317.148358: binder_transaction: transaction=1572262 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
110296<...>-18840 ( 10023) [007] .... 82317.148361: binder_transaction_alloc_buf: transaction=1572262 data_size=684 offsets_size=48
110297<...>-18840 ( 10023) [007] ...2 82317.148372: binder_set_priority: proc=8858 thread=8874 old=120 => new=118 desired=118
110298<...>-18840 ( 10023) [007] d..4 82317.148374: sched_waking: comm=Binder:8858_2 pid=8874 prio=118 target_cpu=005
110299<...>-18840 ( 10023) [007] d..5 82317.148385: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=118 target_cpu=007
110300<...>-18840 ( 10023) [007] d..2 82317.148391: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=118
110301<...>-8874 ( 8858) [007] .... 82317.148397: binder_transaction_received: transaction=1572262
110302          <idle>-0     (-----) [003] d.s2 82317.148462: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110303    RenderThread-16607 (10023) [005] d.s2 82317.148465: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
110304          <idle>-0     (-----) [003] dns3 82317.148477: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110305          <idle>-0     (-----) [003] .n.1 82317.148491: cpu_idle: state=4294967295 cpu_id=3
110306  surfaceflinger-8858  ( 8858) [002] d.h1 82317.148496: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
110307          <idle>-0     (-----) [003] d..2 82317.148498: 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
110308<...>-8874 ( 8858) [007] .... 82317.148505: binder_transaction: transaction=1572263 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
110309<...>-8874 ( 8858) [007] .... 82317.148506: binder_transaction_alloc_buf: transaction=1572263 data_size=0 offsets_size=0
110310<...>-8874 ( 8858) [007] d..2 82317.148508: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
110311<...>-8874 ( 8858) [007] d..3 82317.148512: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
110312<...>-8874 ( 8858) [007] .... 82317.148514: binder_set_priority: proc=8858 thread=8874 old=118 => new=120 desired=120
110313<...>-8874 ( 8858) [007] d..2 82317.148519: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
110314<...>-18840 ( 10023) [007] .... 82317.148524: binder_transaction_received: transaction=1572263
110315     rcu_preempt-7     (    7) [003] d..2 82317.148539: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110316<...>-18840 ( 10023) [007] d..2 82317.148553: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
110317<...>-8874 ( 8858) [007] d..2 82317.148582: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
110318          <idle>-0     (-----) [007] d..1 82317.148590: cpu_idle: state=0 cpu_id=7
110319  kworker/u16:15-1311  ( 1311) [003] .... 82317.148619: clk_set_rate: l3_cluster1_vote_clk 1209600000
110320  kworker/u16:15-1311  ( 1311) [003] .... 82317.148625: clk_set_rate: l3_clk 1209600000
110321  kworker/u16:15-1311  ( 1311) [003] d..2 82317.148855: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110322          <idle>-0     (-----) [003] d..1 82317.148865: cpu_idle: state=0 cpu_id=3
110323          <idle>-0     (-----) [001] d.s3 82317.148887: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110324          <idle>-0     (-----) [001] d.s4 82317.148895: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
110325          <idle>-0     (-----) [001] d.s4 82317.148902: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110326          <idle>-0     (-----) [003] .n.1 82317.148907: cpu_idle: state=4294967295 cpu_id=3
110327          <idle>-0     (-----) [001] ...1 82317.148909: cpu_idle: state=4294967295 cpu_id=1
110328          <idle>-0     (-----) [001] d..1 82317.148913: cpu_idle: state=0 cpu_id=1
110329          <idle>-0     (-----) [003] d..2 82317.148915: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110330    RenderThread-9436  ( 9105) [006] d..2 82317.148990: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
110331          <idle>-0     (-----) [001] dnh2 82317.149011: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
110332          <idle>-0     (-----) [001] .n.1 82317.149015: cpu_idle: state=4294967295 cpu_id=1
110333          <idle>-0     (-----) [001] d..2 82317.149023: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
110334  kworker/u16:15-1311  ( 1311) [003] d..2 82317.149075: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110335          <idle>-0     (-----) [003] d..1 82317.149083: cpu_idle: state=0 cpu_id=3
110336 kgsl_worker_thr-258   (  258) [001] d.s2 82317.149095: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
110337 kgsl_worker_thr-258   (  258) [001] d.s3 82317.149106: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
110338    RenderThread-9436  ( 9105) [006] .... 82317.149114: binder_transaction: transaction=1572264 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
110339    RenderThread-9436  ( 9105) [006] .... 82317.149116: binder_transaction_alloc_buf: transaction=1572264 data_size=192 offsets_size=8
110340    RenderThread-9436  ( 9105) [006] d..4 82317.149120: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
110341    RenderThread-9436  ( 9105) [006] d..5 82317.149129: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
110342    RenderThread-9436  ( 9105) [006] d..2 82317.149135: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
110343  surfaceflinger-8858  ( 8858) [002] ...1 82317.149135: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
110344<...>-8874 ( 8858) [006] .... 82317.149140: binder_transaction_received: transaction=1572264
110345  surfaceflinger-8858  ( 8858) [002] ...1 82317.149141: tracing_mark_write: E|8858
110346 kgsl_worker_thr-258   (  258) [001] d..2 82317.149168: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
110347  surfaceflinger-8858  ( 8858) [002] .... 82317.149195: binder_transaction: transaction=1572265 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
110348 kgsl_worker_thr-258   (  258) [001] d..3 82317.149196: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
110349    RenderThread-16607 (10023) [005] .... 82317.149197: binder_transaction: transaction=1572266 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
110350<...>-8874 ( 8858) [006] .... 82317.149197: binder_transaction: transaction=1572267 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
110351  surfaceflinger-8858  ( 8858) [002] .... 82317.149198: binder_transaction_alloc_buf: transaction=1572265 data_size=700 offsets_size=128
110352    RenderThread-16607 (10023) [005] .... 82317.149199: binder_transaction_alloc_buf: transaction=1572266 data_size=192 offsets_size=8
110353<...>-8874 ( 8858) [006] .... 82317.149199: binder_transaction_alloc_buf: transaction=1572267 data_size=68 offsets_size=0
110354<...>-8874 ( 8858) [006] d..2 82317.149200: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
110355    RenderThread-16607 (10023) [005] ...2 82317.149202: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
110356<...>-8874 ( 8858) [006] d..3 82317.149205: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
110357 kgsl_worker_thr-258   (  258) [001] d..2 82317.149208: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
110358    RenderThread-16607 (10023) [005] d..4 82317.149211: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=001
110359  surfaceflinger-8858  ( 8858) [002] ...2 82317.149224: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
110360    RenderThread-16607 (10023) [005] dn.5 82317.149224: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
110361  surfaceflinger-8858  ( 8858) [002] d..4 82317.149232: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
110362    RenderThread-16607 (10023) [005] d..2 82317.149250: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
110363<...>-13083 ( 8858) [005] .... 82317.149255: binder_transaction_received: transaction=1572266
110364<...>-8874 ( 8858) [006] d..2 82317.149257: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
110365    RenderThread-9436  ( 9105) [006] .... 82317.149261: binder_transaction_received: transaction=1572267
110366  surfaceflinger-8858  ( 8858) [002] d..5 82317.149264: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
110367          <idle>-0     (-----) [003] .n.1 82317.149268: cpu_idle: state=4294967295 cpu_id=3
110368          <idle>-0     (-----) [000] ...1 82317.149271: cpu_idle: state=4294967295 cpu_id=0
110369          <idle>-0     (-----) [000] d..1 82317.149274: cpu_idle: state=0 cpu_id=0
110370          <idle>-0     (-----) [003] d..2 82317.149275: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
110371 [email protected]   (  619) [003] .... 82317.149285: binder_transaction_received: transaction=1572265
110372  surfaceflinger-8858  ( 8858) [002] d..2 82317.149290: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110373    RenderThread-9436  ( 9105) [006] d..2 82317.149298: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
110374<...>-13083 ( 8858) [005] .... 82317.149302: binder_transaction: transaction=1572268 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
110375          <idle>-0     (-----) [002] d..1 82317.149303: cpu_idle: state=0 cpu_id=2
110376<...>-13083 ( 8858) [005] .... 82317.149304: binder_transaction_alloc_buf: transaction=1572268 data_size=68 offsets_size=0
110377<...>-13083 ( 8858) [005] .... 82317.149305: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
110378          <idle>-0     (-----) [006] d..1 82317.149308: cpu_idle: state=0 cpu_id=6
110379<...>-13083 ( 8858) [005] d..2 82317.149321: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
110380    RenderThread-16607 (10023) [005] .... 82317.149325: binder_transaction_received: transaction=1572268
110381 [email protected]   (  619) [003] ...1 82317.149338: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
110382    RenderThread-16607 (10023) [005] d..2 82317.149364: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
110383          <idle>-0     (-----) [005] d..1 82317.149371: cpu_idle: state=0 cpu_id=5
110384  kworker/u16:13-1147  ( 1147) [001] d..2 82317.149390: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
110385     ksoftirqd/1-18    (   18) [001] d.s2 82317.149401: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110386 [email protected]   (  619) [003] ...1 82317.149404: tracing_mark_write: B|619|HIDL::IMapper::importBuffer::passthrough
110387     ksoftirqd/1-18    (   18) [001] d.s3 82317.149424: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
110388     ksoftirqd/1-18    (   18) [001] d.s3 82317.149428: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
110389 [email protected]   (  619) [003] ...1 82317.149436: tracing_mark_write: E|619
110390     ksoftirqd/1-18    (   18) [001] d..2 82317.149437: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110391  kworker/u16:15-1311  ( 1311) [001] d..1 82317.149444: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
110392  kworker/u16:15-1311  ( 1311) [001] d..2 82317.149452: sched_blocked_reason: pid=1147 iowait=0 caller=update_request_adhoc+0x384/0x480
110393  kworker/u16:15-1311  ( 1311) [001] dn.2 82317.149454: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
110394  kworker/u16:15-1311  ( 1311) [001] d..2 82317.149459: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
110395 [email protected]   (  619) [003] ...1 82317.149539: tracing_mark_write: B|619|HWCSession::PresentDisplay::
110396  kworker/u16:13-1147  ( 1147) [001] d..2 82317.149550: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110397  kworker/u16:15-1311  ( 1311) [001] d.s2 82317.149578: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
110398  kworker/u16:15-1311  ( 1311) [001] d.s3 82317.149586: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
110399  kworker/u16:15-1311  ( 1311) [001] dns3 82317.149590: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
110400  kworker/u16:15-1311  ( 1311) [001] d..2 82317.149596: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
110401  kworker/u16:13-1147  ( 1147) [001] d..2 82317.149609: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110402  kworker/u16:15-1311  ( 1311) [001] .... 82317.149654: clk_set_rate: l3_cluster0_vote_clk 300000000
110403  kworker/u16:15-1311  ( 1311) [001] d..2 82317.149671: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110404          <idle>-0     (-----) [001] d..1 82317.149681: cpu_idle: state=0 cpu_id=1
110405 [email protected]   (  619) [003] ...1 82317.150066: tracing_mark_write: B|619|HWDeviceDRM::Validate::
110406          <idle>-0     (-----) [000] d.h3 82317.150429: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
110407          <idle>-0     (-----) [000] d.h4 82317.150442: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
110408          <idle>-0     (-----) [001] .n.1 82317.150448: cpu_idle: state=4294967295 cpu_id=1
110409          <idle>-0     (-----) [000] ...1 82317.150452: cpu_idle: state=4294967295 cpu_id=0
110410          <idle>-0     (-----) [001] d..2 82317.150455: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
110411          <idle>-0     (-----) [000] d..1 82317.150457: cpu_idle: state=0 cpu_id=0
110412          <idle>-0     (-----) [002] ...1 82317.150477: cpu_idle: state=4294967295 cpu_id=2
110413          <idle>-0     (-----) [002] d..1 82317.150480: cpu_idle: state=0 cpu_id=2
110414 kgsl_worker_thr-258   (  258) [001] d..2 82317.150494: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110415          <idle>-0     (-----) [001] d..1 82317.150502: cpu_idle: state=0 cpu_id=1
110416          <idle>-0     (-----) [000] ...1 82317.150536: cpu_idle: state=4294967295 cpu_id=0
110417          <idle>-0     (-----) [000] d..1 82317.150539: cpu_idle: state=0 cpu_id=0
110418 [email protected]   (  619) [003] ...1 82317.150812: tracing_mark_write: E|619
110419          <idle>-0     (-----) [000] d.h3 82317.150820: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
110420          <idle>-0     (-----) [000] d.h4 82317.150830: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
110421          <idle>-0     (-----) [001] .n.1 82317.150836: cpu_idle: state=4294967295 cpu_id=1
110422          <idle>-0     (-----) [000] ...1 82317.150839: cpu_idle: state=4294967295 cpu_id=0
110423          <idle>-0     (-----) [001] d..2 82317.150842: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
110424          <idle>-0     (-----) [000] d..1 82317.150843: cpu_idle: state=0 cpu_id=0
110425 [email protected]   (  619) [003] ...1 82317.150936: tracing_mark_write: B|619|HWDeviceDRM::Commit::
110426 kgsl_worker_thr-258   (  258) [001] d..2 82317.150938: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110427 [email protected]   (  619) [003] ...1 82317.150944: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
110428          <idle>-0     (-----) [001] d..1 82317.150946: cpu_idle: state=0 cpu_id=1
110429 [email protected]   (  619) [003] d..2 82317.151580: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110430 [email protected]   (  619) [003] d..3 82317.151598: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110431          <idle>-0     (-----) [001] .n.1 82317.151603: cpu_idle: state=4294967295 cpu_id=1
110432          <idle>-0     (-----) [001] d..2 82317.151610: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
110433 [email protected]   (  619) [003] ...1 82317.151673: tracing_mark_write: E|619
110434 [email protected]   (  619) [003] ...1 82317.151677: tracing_mark_write: E|619
110435 [email protected]   (  619) [003] ...1 82317.151720: tracing_mark_write: E|619
110436 [email protected]   (  619) [003] ...1 82317.151762: tracing_mark_write: E|619
110437 [email protected]   (  619) [003] .... 82317.151807: binder_transaction: transaction=1572269 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
110438 [email protected]   (  619) [003] .... 82317.151810: binder_transaction_alloc_buf: transaction=1572269 data_size=656 offsets_size=128
110439 [email protected]   (  619) [003] d..2 82317.151826: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
110440 [email protected]   (  619) [003] d..3 82317.151846: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
110441 [email protected]   (  619) [003] .... 82317.151849: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
110442          <idle>-0     (-----) [002] .n.1 82317.151850: cpu_idle: state=4294967295 cpu_id=2
110443 crtc_commit:111-321   (  321) [001] d.H2 82317.151853: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
110444          <idle>-0     (-----) [002] d..2 82317.151858: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
110445  surfaceflinger-8858  ( 8858) [002] .... 82317.151864: binder_transaction_received: transaction=1572269
110446 crtc_commit:111-321   (  321) [001] d.H3 82317.151877: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
110447          <idle>-0     (-----) [000] .n.1 82317.151882: cpu_idle: state=4294967295 cpu_id=0
110448          <idle>-0     (-----) [000] d..2 82317.151890: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
110449 [email protected]   (  619) [003] d..2 82317.151915: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110450         sugov:0-576   (  576) [000] .... 82317.151916: clk_set_rate: pwrcl_clk 979200000
110451          <idle>-0     (-----) [003] d..1 82317.151923: cpu_idle: state=0 cpu_id=3
110452         sugov:0-576   (  576) [000] .... 82317.151928: clk_set_rate: cpu3_pwrcl_clk 1324800000
110453         sugov:0-576   (  576) [000] .... 82317.151936: clk_set_rate: cpu2_pwrcl_clk 1324800000
110454         sugov:0-576   (  576) [000] .... 82317.151942: clk_set_rate: cpu1_pwrcl_clk 1324800000
110455         sugov:0-576   (  576) [000] .... 82317.151949: clk_set_rate: cpu0_pwrcl_clk 979200000
110456         sugov:0-576   (  576) [000] .... 82317.152060: cpu_frequency: state=979200 cpu_id=0
110457         sugov:0-576   (  576) [000] .... 82317.152079: cpu_frequency: state=979200 cpu_id=1
110458         sugov:0-576   (  576) [000] .... 82317.152082: cpu_frequency: state=979200 cpu_id=2
110459         sugov:0-576   (  576) [000] .... 82317.152086: cpu_frequency: state=979200 cpu_id=3
110460         sugov:0-576   (  576) [000] d..2 82317.152112: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110461          <idle>-0     (-----) [000] d..1 82317.152123: cpu_idle: state=0 cpu_id=0
110462  surfaceflinger-8858  ( 8858) [002] d..2 82317.152340: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110463          <idle>-0     (-----) [002] d..1 82317.152353: cpu_idle: state=0 cpu_id=2
110464 crtc_commit:111-321   (  321) [001] d..2 82317.152871: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
110465          <idle>-0     (-----) [001] d..1 82317.152884: cpu_idle: state=0 cpu_id=1
110466          <idle>-0     (-----) [000] ...1 82317.153484: cpu_idle: state=4294967295 cpu_id=0
110467          <idle>-0     (-----) [000] d..1 82317.153488: cpu_idle: state=0 cpu_id=0
110468          <idle>-0     (-----) [001] ...1 82317.154385: cpu_idle: state=4294967295 cpu_id=1
110469          <idle>-0     (-----) [001] d..1 82317.154389: cpu_idle: state=0 cpu_id=1
110470          <idle>-0     (-----) [003] d.s2 82317.155131: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110471          <idle>-0     (-----) [003] dns3 82317.155150: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110472          <idle>-0     (-----) [003] .n.1 82317.155159: cpu_idle: state=4294967295 cpu_id=3
110473          <idle>-0     (-----) [003] d..2 82317.155168: 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
110474     rcu_preempt-7     (    7) [003] d..2 82317.155181: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
110475     rcu_preempt-7     (    7) [003] d..3 82317.155198: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
110476     rcu_preempt-7     (    7) [003] d..2 82317.155213: 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
110477         rcuop/0-10    (   10) [003] d..2 82317.155220: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
110478         rcuop/0-10    (   10) [003] d..3 82317.155235: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
110479         rcuop/0-10    (   10) [003] d..2 82317.155248: 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
110480         rcuop/1-21    (   21) [003] d..2 82317.155275: 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
110481          <idle>-0     (-----) [003] d..1 82317.155287: cpu_idle: state=0 cpu_id=3
110482          <idle>-0     (-----) [000] d.h5 82317.160810: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110483          <idle>-0     (-----) [000] d.h6 82317.160827: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110484          <idle>-0     (-----) [000] d.h5 82317.160832: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110485          <idle>-0     (-----) [003] .n.1 82317.160832: cpu_idle: state=4294967295 cpu_id=3
110486          <idle>-0     (-----) [000] d.h6 82317.160842: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110487          <idle>-0     (-----) [003] d..2 82317.160842: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
110488          <idle>-0     (-----) [001] .n.1 82317.160847: cpu_idle: state=4294967295 cpu_id=1
110489          <idle>-0     (-----) [000] d..2 82317.160854: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
110490          <idle>-0     (-----) [001] d..2 82317.160857: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
110491          <idle>-0     (-----) [000] dn.3 82317.160865: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
110492          <idle>-0     (-----) [000] .n.1 82317.160868: cpu_idle: state=4294967295 cpu_id=0
110493  crtc_event:111-322   (  322) [003] d..2 82317.160879: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110494          <idle>-0     (-----) [000] d..2 82317.160880: 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
110495          <idle>-0     (-----) [003] d..1 82317.160886: cpu_idle: state=0 cpu_id=3
110496     ksoftirqd/0-3     (    3) [000] d.s2 82317.160891: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
110497     ksoftirqd/0-3     (    3) [000] d.s3 82317.160924: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
110498     ksoftirqd/0-3     (    3) [000] d..2 82317.160937: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110499 crtc_commit:111-321   (  321) [001] d..2 82317.161001: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
110500          <idle>-0     (-----) [001] d..1 82317.161007: cpu_idle: state=0 cpu_id=1
110501          <idle>-0     (-----) [001] ...1 82317.161021: cpu_idle: state=4294967295 cpu_id=1
110502          <idle>-0     (-----) [001] d..1 82317.161025: cpu_idle: state=0 cpu_id=1
110503  kworker/u16:15-1311  ( 1311) [000] d..2 82317.161164: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
110504          <idle>-0     (-----) [000] d..1 82317.161175: cpu_idle: state=0 cpu_id=0
110505          <idle>-0     (-----) [001] d.s3 82317.161196: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
110506          <idle>-0     (-----) [001] d.s4 82317.161207: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
110507          <idle>-0     (-----) [001] d.s4 82317.161214: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
110508          <idle>-0     (-----) [000] .n.1 82317.161220: cpu_idle: state=4294967295 cpu_id=0
110509          <idle>-0     (-----) [001] ...1 82317.161222: cpu_idle: state=4294967295 cpu_id=1
110510          <idle>-0     (-----) [001] d..1 82317.161226: cpu_idle: state=0 cpu_id=1
110511          <idle>-0     (-----) [000] d..2 82317.161230: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110512  kworker/u16:15-1311  ( 1311) [000] .... 82317.161257: clk_set_rate: l3_cluster1_vote_clk 300000000
110513  kworker/u16:15-1311  ( 1311) [000] .... 82317.161262: clk_set_rate: l3_clk 300000000
110514  kworker/u16:15-1311  ( 1311) [000] d..2 82317.161307: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110515          <idle>-0     (-----) [000] d..1 82317.161325: cpu_idle: state=0 cpu_id=0
110516          <idle>-0     (-----) [003] d.s2 82317.161802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110517          <idle>-0     (-----) [001] d.s3 82317.161805: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110518          <idle>-0     (-----) [003] dns3 82317.161820: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110519          <idle>-0     (-----) [001] d.s4 82317.161827: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110520          <idle>-0     (-----) [003] .n.1 82317.161846: cpu_idle: state=4294967295 cpu_id=3
110521          <idle>-0     (-----) [001] ...1 82317.161853: cpu_idle: state=4294967295 cpu_id=1
110522          <idle>-0     (-----) [003] d..2 82317.161854: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
110523          <idle>-0     (-----) [001] d..1 82317.161860: cpu_idle: state=0 cpu_id=1
110524  crtc_event:111-322   (  322) [003] d..2 82317.161874: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
110525     rcu_preempt-7     (    7) [003] d..2 82317.161887: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
110526     rcu_preempt-7     (    7) [003] d..3 82317.161908: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
110527     rcu_preempt-7     (    7) [003] d..2 82317.161919: 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
110528         rcuop/2-29    (   29) [003] d..2 82317.161926: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
110529         rcuop/2-29    (   29) [003] d..3 82317.161944: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
110530          <idle>-0     (-----) [000] d.h2 82317.161947: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=000
110531         rcuop/2-29    (   29) [003] d..2 82317.161952: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110532         rcuop/2-29    (   29) [003] d..3 82317.161963: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110533          <idle>-0     (-----) [000] dnh3 82317.161970: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=000
110534         rcuop/2-29    (   29) [003] d..2 82317.161972: 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
110535          <idle>-0     (-----) [000] .n.1 82317.161980: cpu_idle: state=4294967295 cpu_id=0
110536          <idle>-0     (-----) [000] d..2 82317.161994: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
110537         rcuop/3-37    (   37) [003] d..2 82317.161996: 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
110538     rcu_preempt-7     (    7) [003] d..2 82317.162020: 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
110539          <idle>-0     (-----) [003] d..1 82317.162036: cpu_idle: state=0 cpu_id=3
110540           <...>-27566 (-----) [000] d..2 82317.162308: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
110541           <...>-27566 (-----) [000] d..3 82317.162343: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
110542           <...>-27566 (-----) [000] d..2 82317.162469: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
110543<...>-581 ( 571) [000] d..2 82317.162672: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110544          <idle>-0     (-----) [000] d..1 82317.162692: cpu_idle: state=0 cpu_id=0
110545          <idle>-0     (-----) [000] d.h5 82317.163163: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110546          <idle>-0     (-----) [000] d.h6 82317.163186: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110547          <idle>-0     (-----) [001] .n.1 82317.163202: cpu_idle: state=4294967295 cpu_id=1
110548          <idle>-0     (-----) [000] ...1 82317.163205: cpu_idle: state=4294967295 cpu_id=0
110549          <idle>-0     (-----) [000] d..1 82317.163210: cpu_idle: state=0 cpu_id=0
110550          <idle>-0     (-----) [001] d..2 82317.163212: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
110551 crtc_commit:111-321   (  321) [001] d..2 82317.163296: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110552          <idle>-0     (-----) [001] d..1 82317.163310: cpu_idle: state=0 cpu_id=1
110553          <idle>-0     (-----) [000] d.h5 82317.163443: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110554          <idle>-0     (-----) [000] d.h6 82317.163458: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110555          <idle>-0     (-----) [003] .n.1 82317.163466: cpu_idle: state=4294967295 cpu_id=3
110556          <idle>-0     (-----) [000] ...1 82317.163477: cpu_idle: state=4294967295 cpu_id=0
110557          <idle>-0     (-----) [003] d..2 82317.163479: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
110558          <idle>-0     (-----) [000] d..1 82317.163481: cpu_idle: state=0 cpu_id=0
110559  crtc_event:111-322   (  322) [003] d..2 82317.163506: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110560          <idle>-0     (-----) [003] d..1 82317.163517: cpu_idle: state=0 cpu_id=3
110561          <idle>-0     (-----) [000] d.h2 82317.163667: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
110562          <idle>-0     (-----) [000] dnh3 82317.163683: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
110563          <idle>-0     (-----) [000] .n.1 82317.163691: cpu_idle: state=4294967295 cpu_id=0
110564          <idle>-0     (-----) [000] d..2 82317.163702: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
110565        DispSync-8879  ( 8858) [000] d..1 82317.163735: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
110566        DispSync-8879  ( 8858) [000] d..2 82317.163754: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
110567          <idle>-0     (-----) [001] .n.1 82317.163760: cpu_idle: state=4294967295 cpu_id=1
110568        DispSync-8879  ( 8858) [000] d..1 82317.163761: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
110569          <idle>-0     (-----) [001] d..2 82317.163771: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
110570        DispSync-8879  ( 8858) [000] d..2 82317.163774: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
110571          <idle>-0     (-----) [003] .n.1 82317.163779: cpu_idle: state=4294967295 cpu_id=3
110572          <idle>-0     (-----) [003] d..2 82317.163790: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
110573        DispSync-8879  ( 8858) [000] d..2 82317.163814: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110574   sfEventThread-8882  ( 8858) [001] d..3 82317.163822: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
110575          <idle>-0     (-----) [000] d..1 82317.163830: cpu_idle: state=0 cpu_id=0
110576   sfEventThread-8882  ( 8858) [001] d..4 82317.163842: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
110577          <idle>-0     (-----) [002] .n.1 82317.163849: cpu_idle: state=4294967295 cpu_id=2
110578          <idle>-0     (-----) [002] d..2 82317.163862: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
110579  appEventThread-8881  ( 8858) [003] d..3 82317.163868: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
110580   sfEventThread-8882  ( 8858) [001] d..2 82317.163880: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110581  appEventThread-8881  ( 8858) [003] d..4 82317.163894: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
110582          <idle>-0     (-----) [001] d..1 82317.163896: cpu_idle: state=0 cpu_id=1
110583          <idle>-0     (-----) [000] .n.1 82317.163901: cpu_idle: state=4294967295 cpu_id=0
110584  appEventThread-8881  ( 8858) [003] d..3 82317.163914: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
110585          <idle>-0     (-----) [000] d..2 82317.163915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
110586          <idle>-0     (-----) [004] dnh2 82317.163937: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
110587          <idle>-0     (-----) [004] .n.1 82317.163940: cpu_idle: state=4294967295 cpu_id=4
110588          <idle>-0     (-----) [004] d..2 82317.163945: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
110589  appEventThread-8881  ( 8858) [003] d..2 82317.163975: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110590          <idle>-0     (-----) [003] d..1 82317.163992: cpu_idle: state=0 cpu_id=3
110591 s.nexuslauncher-10023 (10023) [004] .... 82317.164121: binder_transaction: transaction=1572270 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
110592 s.nexuslauncher-10023 (10023) [004] .... 82317.164126: binder_transaction_alloc_buf: transaction=1572270 data_size=80 offsets_size=0
110593 s.nexuslauncher-10023 (10023) [004] d..4 82317.164130: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
110594 s.nexuslauncher-10023 (10023) [004] d.h5 82317.164182: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=004
110595          <idle>-0     (-----) [001] dnh2 82317.164188: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
110596          <idle>-0     (-----) [001] .n.1 82317.164196: cpu_idle: state=4294967295 cpu_id=1
110597 s.nexuslauncher-10023 (10023) [004] d.h6 82317.164197: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
110598          <idle>-0     (-----) [007] .n.1 82317.164203: cpu_idle: state=4294967295 cpu_id=7
110599          <idle>-0     (-----) [001] d..2 82317.164207: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
110600          <idle>-0     (-----) [007] d..2 82317.164212: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
110601<...>-13083 ( 8858) [001] .... 82317.164216: binder_transaction_received: transaction=1572270
110602 s.nexuslauncher-10023 (10023) [004] d..3 82317.164226: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
110603<...>-9105 ( 9105) [000] .... 82317.164233: binder_transaction: transaction=1572271 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
110604         sugov:4-577   (  577) [007] .... 82317.164235: clk_set_rate: perfcl_clk 1459200000
110605         sugov:4-577   (  577) [007] .... 82317.164237: clk_set_rate: cpu7_perfcl_clk 1996800000
110606 s.nexuslauncher-10023 (10023) [004] d..4 82317.164238: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
110607<...>-9105 ( 9105) [000] .... 82317.164241: binder_transaction_alloc_buf: transaction=1572271 data_size=80 offsets_size=0
110608         sugov:4-577   (  577) [007] .... 82317.164242: clk_set_rate: cpu6_perfcl_clk 1996800000
110609          <idle>-0     (-----) [005] .n.1 82317.164245: cpu_idle: state=4294967295 cpu_id=5
110610         sugov:4-577   (  577) [007] .... 82317.164247: clk_set_rate: cpu5_perfcl_clk 1996800000
110611<...>-9105 ( 9105) [000] d..4 82317.164248: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
110612         sugov:4-577   (  577) [007] .... 82317.164252: clk_set_rate: cpu4_perfcl_clk 1459200000
110613<...>-13083 ( 8858) [001] d..1 82317.164255: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
110614          <idle>-0     (-----) [005] d..2 82317.164256: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
110615         sugov:4-577   (  577) [007] .... 82317.164258: cpu_frequency: state=1459200 cpu_id=4
110616<...>-13083 ( 8858) [001] d..2 82317.164274: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
110617          <idle>-0     (-----) [003] .n.1 82317.164281: cpu_idle: state=4294967295 cpu_id=3
110618    RenderThread-16607 (10023) [005] d..2 82317.164282: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
110619          <idle>-0     (-----) [005] d..1 82317.164289: cpu_idle: state=0 cpu_id=5
110620          <idle>-0     (-----) [003] d..2 82317.164294: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
110621<...>-9105 ( 9105) [000] d..5 82317.164312: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
110622  appEventThread-8881  ( 8858) [003] d..2 82317.164377: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
110623<...>-8874 ( 8858) [003] .... 82317.164386: binder_transaction_received: transaction=1572271
110624<...>-13083 ( 8858) [001] d..2 82317.164403: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110625<...>-9105 ( 9105) [000] d..3 82317.164420: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
110626          <idle>-0     (-----) [001] d..1 82317.164421: cpu_idle: state=0 cpu_id=1
110627<...>-8874 ( 8858) [003] d..1 82317.164422: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
110628         sugov:4-577   (  577) [007] d..2 82317.164424: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
110629          <idle>-0     (-----) [007] d..1 82317.164431: cpu_idle: state=0 cpu_id=7
110630<...>-8874 ( 8858) [003] d..2 82317.164458: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
110631<...>-9105 ( 9105) [000] d..4 82317.164468: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
110632          <idle>-0     (-----) [001] dns2 82317.164481: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
110633          <idle>-0     (-----) [001] dns3 82317.164521: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
110634          <idle>-0     (-----) [001] .n.1 82317.164531: cpu_idle: state=4294967295 cpu_id=1
110635<...>-8874 ( 8858) [003] d..2 82317.164539: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110636          <idle>-0     (-----) [001] d..2 82317.164543: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
110637          <idle>-0     (-----) [003] d..1 82317.164558: cpu_idle: state=0 cpu_id=3
110638  appEventThread-8881  ( 8858) [001] d..2 82317.164602: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
110639     ksoftirqd/1-18    (   18) [001] d.s2 82317.164618: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
110640          <idle>-0     (-----) [007] dnh2 82317.164642: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
110641          <idle>-0     (-----) [007] .n.1 82317.164645: cpu_idle: state=4294967295 cpu_id=7
110642     ksoftirqd/1-18    (   18) [001] d..2 82317.164645: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
110643          <idle>-0     (-----) [007] d..2 82317.164649: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
110644         sugov:4-577   (  577) [007] .... 82317.164654: cpu_frequency: state=1459200 cpu_id=5
110645         sugov:4-577   (  577) [007] .... 82317.164657: cpu_frequency: state=1459200 cpu_id=6
110646         sugov:4-577   (  577) [007] .... 82317.164658: cpu_frequency: state=1459200 cpu_id=7
110647         sugov:4-577   (  577) [007] d..2 82317.164668: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
110648          <idle>-0     (-----) [007] d..1 82317.164672: cpu_idle: state=0 cpu_id=7
110649<...>-9105 ( 9105) [000] d..3 82317.164703: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
110650  surfaceflinger-8858  ( 8858) [002] d..1 82317.164704: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
110651    RenderThread-9436  ( 9105) [001] d..2 82317.164712: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110652          <idle>-0     (-----) [001] d..1 82317.164732: cpu_idle: state=0 cpu_id=1
110653          <idle>-0     (-----) [001] .n.1 82317.164738: cpu_idle: state=4294967295 cpu_id=1
110654  surfaceflinger-8858  ( 8858) [002] d..2 82317.164739: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
110655<...>-9105 ( 9105) [000] d..4 82317.164750: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
110656 s.nexuslauncher-10023 (10023) [004] d..3 82317.164753: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
110657          <idle>-0     (-----) [001] d..2 82317.164759: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
110658 s.nexuslauncher-10023 (10023) [004] d..4 82317.164772: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
110659          <idle>-0     (-----) [005] .n.1 82317.164776: cpu_idle: state=4294967295 cpu_id=5
110660          <idle>-0     (-----) [005] d..2 82317.164782: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
110661 s.nexuslauncher-10023 (10023) [004] d..2 82317.164795: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
110662   sfEventThread-8882  ( 8858) [001] d..2 82317.164797: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
110663<...>-9105 ( 9105) [000] d..2 82317.164802: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110664          <idle>-0     (-----) [004] d..1 82317.164810: cpu_idle: state=0 cpu_id=4
110665          <idle>-0     (-----) [000] d..1 82317.164826: cpu_idle: state=0 cpu_id=0
110666    RenderThread-9436  ( 9105) [001] d..1 82317.164941: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
110667    RenderThread-16607 (10023) [005] d..1 82317.164942: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
110668    RenderThread-16607 (10023) [005] d..2 82317.164956: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
110669          <idle>-0     (-----) [004] .n.1 82317.164962: cpu_idle: state=4294967295 cpu_id=4
110670    RenderThread-9436  ( 9105) [001] d..2 82317.164965: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
110671          <idle>-0     (-----) [004] d..2 82317.164969: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
110672    RenderThread-16607 (10023) [005] d..1 82317.164969: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
110673          <idle>-0     (-----) [000] .n.1 82317.164973: cpu_idle: state=4294967295 cpu_id=0
110674    RenderThread-16607 (10023) [005] d..2 82317.164987: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
110675          <idle>-0     (-----) [000] d..2 82317.164988: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
110676          <idle>-0     (-----) [006] .n.1 82317.164994: cpu_idle: state=4294967295 cpu_id=6
110677          <idle>-0     (-----) [006] d..2 82317.165004: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
110678    RenderThread-16607 (10023) [005] .... 82317.165035: binder_transaction: transaction=1572272 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
110679    RenderThread-16607 (10023) [005] .... 82317.165039: binder_transaction_alloc_buf: transaction=1572272 data_size=104 offsets_size=0
110680 s.nexuslauncher-10023 (10023) [004] d..2 82317.165042: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
110681    RenderThread-16607 (10023) [005] ...2 82317.165043: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
110682    RenderThread-16607 (10023) [005] d..4 82317.165046: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=003
110683          <idle>-0     (-----) [004] d..1 82317.165050: cpu_idle: state=0 cpu_id=4
110684    RenderThread-16607 (10023) [005] d..5 82317.165062: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
110685    RenderThread-9436  ( 9105) [001] .... 82317.165097: binder_transaction: transaction=1572273 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
110686    RenderThread-16607 (10023) [005] d..2 82317.165099: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
110687    RenderThread-9436  ( 9105) [001] .... 82317.165102: binder_transaction_alloc_buf: transaction=1572273 data_size=104 offsets_size=0
110688<...>-9105 ( 9105) [000] d..2 82317.165115: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110689<...>-8874 ( 8858) [005] .... 82317.165148: binder_transaction_received: transaction=1572272
110690    RenderThread-9436  ( 9105) [001] d..4 82317.165162: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
110691    RenderThread-9436  ( 9105) [001] d..5 82317.165175: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
110692          <idle>-0     (-----) [000] d..1 82317.165190: cpu_idle: state=0 cpu_id=0
110693    RenderThread-9436  ( 9105) [001] d..2 82317.165191: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
110694<...>-13083 ( 8858) [001] .... 82317.165201: binder_transaction_received: transaction=1572273
110695<...>-8874 ( 8858) [005] .... 82317.165209: binder_transaction: transaction=1572274 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
110696<...>-8874 ( 8858) [005] .... 82317.165212: binder_transaction_alloc_buf: transaction=1572274 data_size=52 offsets_size=8
110697<...>-8874 ( 8858) [005] d..2 82317.165219: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
110698<...>-8874 ( 8858) [005] d..3 82317.165226: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
110699<...>-8874 ( 8858) [005] .... 82317.165228: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
110700<...>-8874 ( 8858) [005] d..2 82317.165254: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
110701    RenderThread-16607 (10023) [005] .... 82317.165261: binder_transaction_received: transaction=1572274
110702<...>-13083 ( 8858) [001] .... 82317.165282: binder_transaction: transaction=1572275 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
110703<...>-13083 ( 8858) [001] .... 82317.165287: binder_transaction_alloc_buf: transaction=1572275 data_size=52 offsets_size=8
110704<...>-13083 ( 8858) [001] d..2 82317.165299: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
110705<...>-18840 ( 10023) [006] .... 82317.165313: binder_transaction: transaction=1572276 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
110706<...>-13083 ( 8858) [001] d..3 82317.165315: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
110707<...>-18840 ( 10023) [006] .... 82317.165317: binder_transaction_alloc_buf: transaction=1572276 data_size=684 offsets_size=48
110708<...>-18840 ( 10023) [006] ...2 82317.165332: binder_set_priority: proc=8858 thread=8874 old=120 => new=118 desired=118
110709<...>-18840 ( 10023) [006] d..4 82317.165335: sched_waking: comm=Binder:8858_2 pid=8874 prio=118 target_cpu=005
110710<...>-18840 ( 10023) [006] d..5 82317.165351: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=118 target_cpu=006
110711<...>-18840 ( 10023) [006] d..2 82317.165361: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=118
110712<...>-8874 ( 8858) [006] .... 82317.165370: binder_transaction_received: transaction=1572276
110713<...>-13083 ( 8858) [001] d..2 82317.165373: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
110714    RenderThread-9436  ( 9105) [001] .... 82317.165382: binder_transaction_received: transaction=1572275
110715<...>-8874 ( 8858) [006] .... 82317.165483: binder_transaction: transaction=1572277 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
110716<...>-8874 ( 8858) [006] .... 82317.165486: binder_transaction_alloc_buf: transaction=1572277 data_size=0 offsets_size=0
110717<...>-8874 ( 8858) [006] d..2 82317.165487: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
110718<...>-8874 ( 8858) [006] d..3 82317.165495: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
110719<...>-8874 ( 8858) [006] .... 82317.165497: binder_set_priority: proc=8858 thread=8874 old=118 => new=120 desired=120
110720<...>-8874 ( 8858) [006] d..2 82317.165504: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
110721<...>-18840 ( 10023) [006] .... 82317.165510: binder_transaction_received: transaction=1572277
110722<...>-18840 ( 10023) [006] d..2 82317.165550: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
110723<...>-8874 ( 8858) [006] d..2 82317.165590: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
110724          <idle>-0     (-----) [006] d..1 82317.165604: cpu_idle: state=0 cpu_id=6
110725  surfaceflinger-8858  ( 8858) [002] ...1 82317.165979: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
110726  surfaceflinger-8858  ( 8858) [002] ...1 82317.165988: tracing_mark_write: E|8858
110727  surfaceflinger-8858  ( 8858) [002] .... 82317.166055: binder_transaction: transaction=1572278 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
110728  surfaceflinger-8858  ( 8858) [002] .... 82317.166061: binder_transaction_alloc_buf: transaction=1572278 data_size=620 offsets_size=112
110729  surfaceflinger-8858  ( 8858) [002] ...2 82317.166087: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
110730  surfaceflinger-8858  ( 8858) [002] d..4 82317.166095: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
110731  surfaceflinger-8858  ( 8858) [002] d..5 82317.166117: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
110732          <idle>-0     (-----) [003] .n.1 82317.166123: cpu_idle: state=4294967295 cpu_id=3
110733          <idle>-0     (-----) [003] d..2 82317.166137: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
110734 [email protected]   (  619) [003] .... 82317.166150: binder_transaction_received: transaction=1572278
110735  surfaceflinger-8858  ( 8858) [002] d..2 82317.166158: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110736          <idle>-0     (-----) [002] d..1 82317.166180: cpu_idle: state=0 cpu_id=2
110737 [email protected]   (  619) [003] ...1 82317.166208: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
110738 [email protected]   (  619) [003] ...1 82317.166355: tracing_mark_write: B|619|HWCSession::PresentDisplay::
110739          <idle>-0     (-----) [000] ...1 82317.166384: cpu_idle: state=4294967295 cpu_id=0
110740          <idle>-0     (-----) [000] d..1 82317.166389: cpu_idle: state=0 cpu_id=0
110741          <idle>-0     (-----) [000] ...1 82317.166960: cpu_idle: state=4294967295 cpu_id=0
110742          <idle>-0     (-----) [000] d..1 82317.166967: cpu_idle: state=0 cpu_id=0
110743    RenderThread-16607 (10023) [005] .... 82317.166987: binder_transaction: transaction=1572279 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
110744    RenderThread-16607 (10023) [005] .... 82317.166993: binder_transaction_alloc_buf: transaction=1572279 data_size=192 offsets_size=8
110745    RenderThread-16607 (10023) [005] ...2 82317.167000: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
110746    RenderThread-16607 (10023) [005] d..4 82317.167004: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
110747    RenderThread-16607 (10023) [005] d..5 82317.167025: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
110748 [email protected]   (  619) [003] ...1 82317.167031: tracing_mark_write: B|619|HWDeviceDRM::Validate::
110749    RenderThread-16607 (10023) [005] d..2 82317.167036: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
110750<...>-8874 ( 8858) [005] .... 82317.167047: binder_transaction_received: transaction=1572279
110751    RenderThread-9436  ( 9105) [001] d..2 82317.167123: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
110752          <idle>-0     (-----) [001] d..1 82317.167147: cpu_idle: state=0 cpu_id=1
110753<...>-8874 ( 8858) [005] .... 82317.167148: binder_transaction: transaction=1572280 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
110754<...>-8874 ( 8858) [005] .... 82317.167151: binder_transaction_alloc_buf: transaction=1572280 data_size=68 offsets_size=0
110755<...>-8874 ( 8858) [005] d..2 82317.167152: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
110756<...>-8874 ( 8858) [005] d..3 82317.167161: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
110757<...>-8874 ( 8858) [005] .... 82317.167163: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
110758<...>-8874 ( 8858) [005] d..2 82317.167185: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
110759    RenderThread-16607 (10023) [005] .... 82317.167192: binder_transaction_received: transaction=1572280
110760          <idle>-0     (-----) [001] d.h2 82317.167195: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
110761          <idle>-0     (-----) [001] d.h3 82317.167208: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
110762          <idle>-0     (-----) [001] dnh3 82317.167216: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=001
110763          <idle>-0     (-----) [001] .n.1 82317.167226: cpu_idle: state=4294967295 cpu_id=1
110764          <idle>-0     (-----) [001] d..2 82317.167240: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
110765    RenderThread-16607 (10023) [005] d..2 82317.167268: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
110766          <idle>-0     (-----) [005] d..1 82317.167289: cpu_idle: state=0 cpu_id=5
110767    RenderThread-9436  ( 9105) [001] .... 82317.167530: binder_transaction: transaction=1572281 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
110768    RenderThread-9436  ( 9105) [001] .... 82317.167537: binder_transaction_alloc_buf: transaction=1572281 data_size=192 offsets_size=8
110769    RenderThread-9436  ( 9105) [001] d..4 82317.167549: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
110770    RenderThread-9436  ( 9105) [001] dn.5 82317.167584: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
110771    RenderThread-9436  ( 9105) [001] d..2 82317.167649: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
110772<...>-8874 ( 8858) [001] .... 82317.167660: binder_transaction_received: transaction=1572281
110773 [email protected]   (  619) [003] ...1 82317.167687: tracing_mark_write: E|619
110774<...>-8874 ( 8858) [001] .... 82317.167810: binder_transaction: transaction=1572282 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
110775<...>-8874 ( 8858) [001] .... 82317.167817: binder_transaction_alloc_buf: transaction=1572282 data_size=68 offsets_size=0
110776<...>-8874 ( 8858) [001] d..2 82317.167869: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
110777 [email protected]   (  619) [003] ...1 82317.167874: tracing_mark_write: B|619|HWDeviceDRM::Commit::
110778    RenderThread-9436  ( 9105) [001] .... 82317.167880: binder_transaction_received: transaction=1572282
110779 [email protected]   (  619) [003] ...1 82317.167887: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
110780    RenderThread-9436  ( 9105) [001] d..2 82317.167985: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
110781          <idle>-0     (-----) [001] d..1 82317.168008: cpu_idle: state=0 cpu_id=1
110782          <idle>-0     (-----) [000] ...1 82317.168112: cpu_idle: state=4294967295 cpu_id=0
110783          <idle>-0     (-----) [000] d..1 82317.168116: cpu_idle: state=0 cpu_id=0
110784 [email protected]   (  619) [003] d.s2 82317.168496: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110785          <idle>-0     (-----) [000] d.h3 82317.168513: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
110786 [email protected]   (  619) [003] d.s3 82317.168526: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110787 [email protected]   (  619) [003] d.s3 82317.168537: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
110788          <idle>-0     (-----) [000] d.h4 82317.168541: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
110789          <idle>-0     (-----) [001] .n.1 82317.168549: cpu_idle: state=4294967295 cpu_id=1
110790          <idle>-0     (-----) [000] ...1 82317.168556: cpu_idle: state=4294967295 cpu_id=0
110791          <idle>-0     (-----) [000] d..1 82317.168561: cpu_idle: state=0 cpu_id=0
110792          <idle>-0     (-----) [001] d..2 82317.168564: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
110793 [email protected]   (  619) [003] d.s4 82317.168582: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
110794 [email protected]   (  619) [003] d..2 82317.168603: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
110795 [email protected]   (  619) [003] d..3 82317.168629: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
110796          <idle>-0     (-----) [000] ...1 82317.168635: cpu_idle: state=4294967295 cpu_id=0
110797          <idle>-0     (-----) [002] .n.1 82317.168638: cpu_idle: state=4294967295 cpu_id=2
110798          <idle>-0     (-----) [000] d..1 82317.168639: cpu_idle: state=0 cpu_id=0
110799          <idle>-0     (-----) [002] d..2 82317.168653: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
110800 kgsl_worker_thr-258   (  258) [001] d..2 82317.168718: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110801  kworker/u16:15-1311  ( 1311) [001] d..2 82317.168727: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
110802 [email protected]   (  619) [003] ...1 82317.168747: tracing_mark_write: E|619
110803 [email protected]   (  619) [003] ...1 82317.168754: tracing_mark_write: E|619
110804  kworker/u16:15-1311  ( 1311) [001] d..3 82317.168776: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
110805 [email protected]   (  619) [003] ...1 82317.168818: tracing_mark_write: E|619
110806  kworker/u16:15-1311  ( 1311) [001] .... 82317.168818: clk_set_rate: l3_cluster1_vote_clk 576000000
110807  kworker/u16:15-1311  ( 1311) [001] .... 82317.168825: clk_set_rate: l3_clk 576000000
110808 [email protected]   (  619) [003] ...1 82317.168879: tracing_mark_write: E|619
110809 [email protected]   (  619) [003] .... 82317.168898: binder_transaction: transaction=1572283 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
110810 [email protected]   (  619) [003] .... 82317.168902: binder_transaction_alloc_buf: transaction=1572283 data_size=656 offsets_size=128
110811          <idle>-0     (-----) [000] d.h3 82317.168912: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
110812 [email protected]   (  619) [003] d..2 82317.168921: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
110813          <idle>-0     (-----) [000] dnh4 82317.168928: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
110814          <idle>-0     (-----) [000] .n.1 82317.168938: cpu_idle: state=4294967295 cpu_id=0
110815 [email protected]   (  619) [003] d..3 82317.168947: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
110816          <idle>-0     (-----) [000] d..2 82317.168949: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
110817 [email protected]   (  619) [003] .... 82317.168951: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
110818 [email protected]   (  619) [003] d..2 82317.169028: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
110819  kworker/u16:15-1311  ( 1311) [001] d..2 82317.169048: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
110820  surfaceflinger-8858  ( 8858) [001] .... 82317.169058: binder_transaction_received: transaction=1572283
110821 kgsl_worker_thr-258   (  258) [000] d..2 82317.169070: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
110822     rcu_preempt-7     (    7) [003] d..2 82317.169078: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110823          <idle>-0     (-----) [000] d..1 82317.169082: cpu_idle: state=0 cpu_id=0
110824  surfaceflinger-8858  ( 8858) [001] d..2 82317.169287: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
110825  surfaceflinger-8858  ( 8858) [001] d..3 82317.169315: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
110826  kworker/u16:15-1311  ( 1311) [003] d..2 82317.169329: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
110827         rcuop/0-10    (   10) [003] d..2 82317.169345: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110828  surfaceflinger-8858  ( 8858) [001] d.s1 82317.169363: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
110829  kworker/u16:15-1311  ( 1311) [003] d..2 82317.169367: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110830  surfaceflinger-8858  ( 8858) [001] d.s2 82317.169375: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
110831          <idle>-0     (-----) [003] d..1 82317.169382: cpu_idle: state=0 cpu_id=3
110832  surfaceflinger-8858  ( 8858) [001] d..2 82317.169702: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
110833     ksoftirqd/1-18    (   18) [001] d.s2 82317.169721: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110834     ksoftirqd/1-18    (   18) [001] d.s3 82317.169733: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
110835     ksoftirqd/1-18    (   18) [001] d.s3 82317.169742: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110836          <idle>-0     (-----) [003] .n.1 82317.169748: cpu_idle: state=4294967295 cpu_id=3
110837          <idle>-0     (-----) [003] d..2 82317.169759: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110838     ksoftirqd/1-18    (   18) [001] d..2 82317.169767: 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
110839          <idle>-0     (-----) [001] d..1 82317.169784: cpu_idle: state=0 cpu_id=1
110840          <idle>-0     (-----) [001] ...1 82317.169803: cpu_idle: state=4294967295 cpu_id=1
110841          <idle>-0     (-----) [001] d..1 82317.169808: cpu_idle: state=0 cpu_id=1
110842  kworker/u16:15-1311  ( 1311) [003] .... 82317.169840: clk_set_rate: l3_cluster0_vote_clk 480000000
110843 crtc_commit:111-321   (  321) [002] d..2 82317.169919: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
110844  kworker/u16:13-1147  ( 1147) [002] d..2 82317.169945: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
110845          <idle>-0     (-----) [002] d..1 82317.169959: cpu_idle: state=0 cpu_id=2
110846  kworker/u16:15-1311  ( 1311) [003] d..2 82317.169993: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110847          <idle>-0     (-----) [003] d..1 82317.170005: cpu_idle: state=0 cpu_id=3
110848          <idle>-0     (-----) [001] d.s3 82317.170015: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110849          <idle>-0     (-----) [001] d.s4 82317.170025: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
110850          <idle>-0     (-----) [001] d.s4 82317.170032: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110851          <idle>-0     (-----) [003] .n.1 82317.170039: cpu_idle: state=4294967295 cpu_id=3
110852          <idle>-0     (-----) [001] ...1 82317.170040: cpu_idle: state=4294967295 cpu_id=1
110853          <idle>-0     (-----) [001] d..1 82317.170047: cpu_idle: state=0 cpu_id=1
110854          <idle>-0     (-----) [003] d..2 82317.170050: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110855  kworker/u16:15-1311  ( 1311) [003] d..2 82317.170074: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110856          <idle>-0     (-----) [003] d..1 82317.170083: cpu_idle: state=0 cpu_id=3
110857          <idle>-0     (-----) [001] ...1 82317.171208: cpu_idle: state=4294967295 cpu_id=1
110858          <idle>-0     (-----) [001] d..1 82317.171212: cpu_idle: state=0 cpu_id=1
110859          <idle>-0     (-----) [006] d.h2 82317.171465: sched_waking: comm=queued-work-loo pid=10205 prio=118 target_cpu=006
110860          <idle>-0     (-----) [006] d.h3 82317.171482: sched_wakeup: comm=queued-work-loo pid=10205 prio=118 target_cpu=004
110861          <idle>-0     (-----) [004] .n.1 82317.171487: cpu_idle: state=4294967295 cpu_id=4
110862          <idle>-0     (-----) [006] ...1 82317.171488: cpu_idle: state=4294967295 cpu_id=6
110863          <idle>-0     (-----) [006] d..1 82317.171491: cpu_idle: state=0 cpu_id=6
110864          <idle>-0     (-----) [004] d..2 82317.171493: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=queued-work-loo next_pid=10205 next_prio=118
110865<...>-10205 ( 10023) [004] d..2 82317.171683: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
110866          <idle>-0     (-----) [000] dnh2 82317.171720: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
110867          <idle>-0     (-----) [000] .n.1 82317.171726: cpu_idle: state=4294967295 cpu_id=0
110868          <idle>-0     (-----) [000] d..2 82317.171736: 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
110869         rcuop/4-45    (   45) [000] d..2 82317.171758: 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
110870          <idle>-0     (-----) [000] d..1 82317.171768: cpu_idle: state=0 cpu_id=0
110871<...>-10205 ( 10023) [004] d.s2 82317.171836: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110872          <idle>-0     (-----) [003] dnh2 82317.171857: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110873          <idle>-0     (-----) [003] .n.1 82317.171862: cpu_idle: state=4294967295 cpu_id=3
110874          <idle>-0     (-----) [003] d..2 82317.171873: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110875  kworker/u16:15-1311  ( 1311) [003] d..2 82317.171940: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110876          <idle>-0     (-----) [003] d..1 82317.171947: cpu_idle: state=0 cpu_id=3
110877<...>-10205 ( 10023) [004] d..3 82317.172778: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110878<...>-10205 ( 10023) [004] d..3 82317.172794: sched_waking: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
110879          <idle>-0     (-----) [003] dnh2 82317.172799: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110880<...>-10205 ( 10023) [004] dn.4 82317.172803: sched_wakeup: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
110881          <idle>-0     (-----) [003] .n.1 82317.172804: cpu_idle: state=4294967295 cpu_id=3
110882<...>-10205 ( 10023) [004] d..2 82317.172808: sched_switch: prev_comm=queued-work-loo prev_pid=10205 prev_prio=118 prev_state=R+ ==> next_comm=kworker/4:1H next_pid=545 next_prio=100
110883          <idle>-0     (-----) [003] d..2 82317.172811: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110884<...>-545 ( 545) [004] d..2 82317.172820: sched_switch: prev_comm=kworker/4:1H prev_pid=545 prev_prio=100 prev_state=S ==> next_comm=queued-work-loo next_pid=10205 next_prio=118
110885<...>-10205 ( 10023) [004] d..2 82317.172834: sched_switch: prev_comm=queued-work-loo prev_pid=10205 prev_prio=118 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
110886          <idle>-0     (-----) [004] d..1 82317.172844: cpu_idle: state=0 cpu_id=4
110887  kworker/u16:15-1311  ( 1311) [003] d..2 82317.173028: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110888          <idle>-0     (-----) [003] d..1 82317.173037: cpu_idle: state=0 cpu_id=3
110889          <idle>-0     (-----) [001] d.s3 82317.173094: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110890          <idle>-0     (-----) [001] d.s4 82317.173103: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
110891          <idle>-0     (-----) [001] d.s4 82317.173110: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110892          <idle>-0     (-----) [003] .n.1 82317.173116: cpu_idle: state=4294967295 cpu_id=3
110893          <idle>-0     (-----) [001] ...1 82317.173118: cpu_idle: state=4294967295 cpu_id=1
110894          <idle>-0     (-----) [001] d..1 82317.173124: cpu_idle: state=0 cpu_id=1
110895          <idle>-0     (-----) [003] d..2 82317.173125: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110896  kworker/u16:15-1311  ( 1311) [003] d..2 82317.173230: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
110897          <idle>-0     (-----) [003] d..1 82317.173238: cpu_idle: state=0 cpu_id=3
110898          <idle>-0     (-----) [001] d.s3 82317.173243: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110899          <idle>-0     (-----) [001] d.s4 82317.173251: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
110900          <idle>-0     (-----) [001] d.s4 82317.173258: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110901          <idle>-0     (-----) [003] .n.1 82317.173264: cpu_idle: state=4294967295 cpu_id=3
110902          <idle>-0     (-----) [001] ...1 82317.173267: cpu_idle: state=4294967295 cpu_id=1
110903          <idle>-0     (-----) [001] d..1 82317.173272: cpu_idle: state=0 cpu_id=1
110904          <idle>-0     (-----) [003] d..2 82317.173272: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110905  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173294: clk_enable: gcc_ufs_phy_axi_clk_src
110906  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173311: clk_enable: gcc_ufs_phy_axi_clk
110907  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173321: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
110908  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173329: clk_enable: gcc_aggre_ufs_phy_axi_clk
110909  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173336: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
110910  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173343: clk_enable: gcc_ufs_phy_ahb_clk
110911  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173353: clk_enable: gcc_ufs_phy_unipro_core_clk_src
110912  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173358: clk_enable: gcc_ufs_phy_unipro_core_clk
110913  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173364: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
110914  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173372: clk_enable: gcc_ufs_phy_ice_core_clk_src
110915  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173377: clk_enable: gcc_ufs_phy_ice_core_clk
110916  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173383: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
110917  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173397: clk_enable: gcc_ufs_mem_clkref_clk
110918  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173406: clk_enable: gcc_ufs_phy_phy_aux_clk_src
110919  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173411: clk_enable: gcc_ufs_phy_phy_aux_clk
110920  kworker/u16:15-1311  ( 1311) [003] d..1 82317.173417: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
110921  kworker/u16:15-1311  ( 1311) [003] d..3 82317.173465: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
110922  kworker/u16:15-1311  ( 1311) [003] dn.4 82317.173503: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
110923  kworker/u16:15-1311  ( 1311) [003] d..2 82317.173514: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
110924          <idle>-0     (-----) [004] ...1 82317.173544: cpu_idle: state=4294967295 cpu_id=4
110925          <idle>-0     (-----) [004] d..1 82317.173546: cpu_idle: state=0 cpu_id=4
110926          <idle>-0     (-----) [005] ...1 82317.173548: cpu_idle: state=4294967295 cpu_id=5
110927          <idle>-0     (-----) [006] ...1 82317.173549: cpu_idle: state=4294967295 cpu_id=6
110928          <idle>-0     (-----) [005] d..1 82317.173551: cpu_idle: state=0 cpu_id=5
110929          <idle>-0     (-----) [007] ...1 82317.173551: cpu_idle: state=4294967295 cpu_id=7
110930          <idle>-0     (-----) [006] d..1 82317.173551: cpu_idle: state=0 cpu_id=6
110931          <idle>-0     (-----) [007] d..1 82317.173553: cpu_idle: state=0 cpu_id=7
110932  kworker/u16:13-1147  ( 1147) [003] d..2 82317.173555: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110933  kworker/u16:15-1311  ( 1311) [003] d..2 82317.173630: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110934          <idle>-0     (-----) [003] d..1 82317.173640: cpu_idle: state=0 cpu_id=3
110935          <idle>-0     (-----) [003] d.h4 82317.174705: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110936          <idle>-0     (-----) [003] dnh5 82317.174716: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110937          <idle>-0     (-----) [003] .n.1 82317.174738: cpu_idle: state=4294967295 cpu_id=3
110938          <idle>-0     (-----) [003] d..2 82317.174746: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110939          <idle>-0     (-----) [004] d.s3 82317.174751: sched_waking: comm=queued-work-loo pid=10205 prio=118 target_cpu=004
110940          <idle>-0     (-----) [004] d.s4 82317.174755: sched_blocked_reason: pid=10205 iowait=1 caller=__filemap_fdatawait_range+0x120/0x184
110941          <idle>-0     (-----) [004] dns4 82317.174757: sched_wakeup: comm=queued-work-loo pid=10205 prio=118 target_cpu=004
110942          <idle>-0     (-----) [004] dns4 82317.174765: sched_waking: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
110943  kworker/u16:15-1311  ( 1311) [003] d..2 82317.174768: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110944          <idle>-0     (-----) [004] dns5 82317.174768: sched_wakeup: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
110945          <idle>-0     (-----) [004] .n.1 82317.174775: cpu_idle: state=4294967295 cpu_id=4
110946          <idle>-0     (-----) [003] d..1 82317.174776: cpu_idle: state=0 cpu_id=3
110947          <idle>-0     (-----) [004] d..2 82317.174779: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1H next_pid=545 next_prio=100
110948<...>-545 ( 545) [004] d..2 82317.174784: sched_switch: prev_comm=kworker/4:1H prev_pid=545 prev_prio=100 prev_state=S ==> next_comm=queued-work-loo next_pid=10205 next_prio=118
110949<...>-10205 ( 10023) [004] d..3 82317.174840: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110950          <idle>-0     (-----) [003] dnh2 82317.174858: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110951          <idle>-0     (-----) [003] .n.1 82317.174863: cpu_idle: state=4294967295 cpu_id=3
110952<...>-10205 ( 10023) [004] d..2 82317.174867: sched_switch: prev_comm=queued-work-loo prev_pid=10205 prev_prio=118 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
110953          <idle>-0     (-----) [003] d..2 82317.174870: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110954          <idle>-0     (-----) [004] d..1 82317.174873: cpu_idle: state=0 cpu_id=4
110955  kworker/u16:15-1311  ( 1311) [003] d..2 82317.174888: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110956          <idle>-0     (-----) [003] d.h5 82317.174913: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110957          <idle>-0     (-----) [003] dnh6 82317.174922: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
110958          <idle>-0     (-----) [003] d..2 82317.174941: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
110959          <idle>-0     (-----) [004] d.s3 82317.174943: sched_waking: comm=queued-work-loo pid=10205 prio=118 target_cpu=004
110960          <idle>-0     (-----) [004] d.s4 82317.174946: sched_blocked_reason: pid=10205 iowait=1 caller=wait_on_node_pages_writeback+0x140/0x248
110961          <idle>-0     (-----) [004] dns4 82317.174948: sched_wakeup: comm=queued-work-loo pid=10205 prio=118 target_cpu=004
110962          <idle>-0     (-----) [004] dns4 82317.174950: sched_waking: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
110963          <idle>-0     (-----) [004] dns5 82317.174953: sched_wakeup: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
110964          <idle>-0     (-----) [004] .n.1 82317.174958: cpu_idle: state=4294967295 cpu_id=4
110965  kworker/u16:15-1311  ( 1311) [003] d..2 82317.174960: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110966          <idle>-0     (-----) [004] d..2 82317.174962: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1H next_pid=545 next_prio=100
110967<...>-545 ( 545) [004] d..2 82317.174966: sched_switch: prev_comm=kworker/4:1H prev_pid=545 prev_prio=100 prev_state=S ==> next_comm=queued-work-loo next_pid=10205 next_prio=118
110968          <idle>-0     (-----) [003] d..1 82317.174967: cpu_idle: state=0 cpu_id=3
110969<...>-10205 ( 10023) [004] d.s2 82317.175126: sched_waking: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
110970          <idle>-0     (-----) [003] d.s2 82317.175130: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110971<...>-10205 ( 10023) [004] dns3 82317.175132: sched_wakeup: comm=kworker/4:1H pid=545 prio=100 target_cpu=004
110972<...>-10205 ( 10023) [004] d..2 82317.175139: sched_switch: prev_comm=queued-work-loo prev_pid=10205 prev_prio=118 prev_state=R+ ==> next_comm=kworker/4:1H next_pid=545 next_prio=100
110973          <idle>-0     (-----) [003] dns3 82317.175145: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
110974<...>-545 ( 545) [004] d..2 82317.175145: sched_switch: prev_comm=kworker/4:1H prev_pid=545 prev_prio=100 prev_state=S ==> next_comm=queued-work-loo next_pid=10205 next_prio=118
110975          <idle>-0     (-----) [003] .n.1 82317.175158: cpu_idle: state=4294967295 cpu_id=3
110976          <idle>-0     (-----) [003] d..2 82317.175166: 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
110977     rcu_preempt-7     (    7) [003] d..2 82317.175176: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
110978     rcu_preempt-7     (    7) [003] d..3 82317.175192: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
110979     rcu_preempt-7     (    7) [003] d..2 82317.175206: 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
110980         rcuop/2-29    (   29) [003] d..2 82317.175212: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
110981         rcuop/2-29    (   29) [003] d..3 82317.175226: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
110982         rcuop/2-29    (   29) [003] d..2 82317.175246: 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
110983         rcuop/3-37    (   37) [003] d..2 82317.175270: 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
110984<...>-10205 ( 10023) [004] d..2 82317.175271: sched_switch: prev_comm=queued-work-loo prev_pid=10205 prev_prio=118 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
110985          <idle>-0     (-----) [004] d..1 82317.175282: cpu_idle: state=0 cpu_id=4
110986          <idle>-0     (-----) [003] d..1 82317.175282: cpu_idle: state=0 cpu_id=3
110987          <idle>-0     (-----) [000] d.h5 82317.177251: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110988          <idle>-0     (-----) [000] d.h6 82317.177271: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
110989          <idle>-0     (-----) [000] d.h5 82317.177277: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
110990          <idle>-0     (-----) [003] .n.1 82317.177277: cpu_idle: state=4294967295 cpu_id=3
110991          <idle>-0     (-----) [003] d..2 82317.177288: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
110992          <idle>-0     (-----) [000] d.h6 82317.177288: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
110993          <idle>-0     (-----) [002] .n.1 82317.177295: cpu_idle: state=4294967295 cpu_id=2
110994          <idle>-0     (-----) [000] ...1 82317.177302: cpu_idle: state=4294967295 cpu_id=0
110995          <idle>-0     (-----) [002] d..2 82317.177305: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
110996          <idle>-0     (-----) [000] d..1 82317.177307: cpu_idle: state=0 cpu_id=0
110997  crtc_event:111-322   (  322) [003] d..2 82317.177321: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
110998          <idle>-0     (-----) [003] d..1 82317.177330: cpu_idle: state=0 cpu_id=3
110999 crtc_commit:111-321   (  321) [002] d..2 82317.177416: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
111000          <idle>-0     (-----) [002] d..1 82317.177424: cpu_idle: state=0 cpu_id=2
111001          <idle>-0     (-----) [002] d.s3 82317.178468: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111002          <idle>-0     (-----) [002] d.s4 82317.178484: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111003          <idle>-0     (-----) [003] .n.1 82317.178489: cpu_idle: state=4294967295 cpu_id=3
111004          <idle>-0     (-----) [002] d.s3 82317.178490: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
111005          <idle>-0     (-----) [003] d..2 82317.178502: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
111006          <idle>-0     (-----) [002] dns4 82317.178515: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
111007  crtc_event:111-322   (  322) [003] d..2 82317.178528: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111008          <idle>-0     (-----) [003] d..1 82317.178534: cpu_idle: state=0 cpu_id=3
111009          <idle>-0     (-----) [002] .n.1 82317.178535: cpu_idle: state=4294967295 cpu_id=2
111010          <idle>-0     (-----) [002] d..2 82317.178545: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111011  kworker/u16:15-1311  ( 1311) [002] .... 82317.178572: clk_set_rate: l3_cluster0_vote_clk 300000000
111012  kworker/u16:15-1311  ( 1311) [002] d..2 82317.178732: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
111013          <idle>-0     (-----) [002] d..1 82317.178746: cpu_idle: state=0 cpu_id=2
111014          <idle>-0     (-----) [001] d.s3 82317.178759: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
111015          <idle>-0     (-----) [001] d.s4 82317.178768: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
111016          <idle>-0     (-----) [001] d.s4 82317.178775: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
111017          <idle>-0     (-----) [002] .n.1 82317.178782: cpu_idle: state=4294967295 cpu_id=2
111018          <idle>-0     (-----) [001] ...1 82317.178783: cpu_idle: state=4294967295 cpu_id=1
111019          <idle>-0     (-----) [001] d..1 82317.178788: cpu_idle: state=0 cpu_id=1
111020          <idle>-0     (-----) [002] d..2 82317.178793: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111021  kworker/u16:15-1311  ( 1311) [002] d..2 82317.178948: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
111022          <idle>-0     (-----) [002] d..1 82317.178960: cpu_idle: state=0 cpu_id=2
111023          <idle>-0     (-----) [001] d.s3 82317.178976: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
111024          <idle>-0     (-----) [001] d.s4 82317.178984: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
111025          <idle>-0     (-----) [001] d.s4 82317.178991: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
111026          <idle>-0     (-----) [002] .n.1 82317.178998: cpu_idle: state=4294967295 cpu_id=2
111027          <idle>-0     (-----) [001] ...1 82317.178999: cpu_idle: state=4294967295 cpu_id=1
111028          <idle>-0     (-----) [001] d..1 82317.179004: cpu_idle: state=0 cpu_id=1
111029          <idle>-0     (-----) [002] d..2 82317.179009: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111030  kworker/u16:15-1311  ( 1311) [002] .... 82317.179035: clk_set_rate: l3_cluster1_vote_clk 300000000
111031  kworker/u16:15-1311  ( 1311) [002] .... 82317.179040: clk_set_rate: l3_clk 300000000
111032  kworker/u16:15-1311  ( 1311) [002] d..2 82317.179088: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111033          <idle>-0     (-----) [002] d..1 82317.179101: cpu_idle: state=0 cpu_id=2
111034          <idle>-0     (-----) [000] d.h5 82317.179573: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
111035          <idle>-0     (-----) [000] d.h6 82317.179588: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
111036          <idle>-0     (-----) [002] .n.1 82317.179596: cpu_idle: state=4294967295 cpu_id=2
111037          <idle>-0     (-----) [000] ...1 82317.179600: cpu_idle: state=4294967295 cpu_id=0
111038          <idle>-0     (-----) [000] d..1 82317.179604: cpu_idle: state=0 cpu_id=0
111039          <idle>-0     (-----) [002] d..2 82317.179606: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
111040 crtc_commit:111-321   (  321) [002] d..2 82317.179692: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111041          <idle>-0     (-----) [002] d..1 82317.179707: cpu_idle: state=0 cpu_id=2
111042          <idle>-0     (-----) [000] d.h5 82317.179877: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111043          <idle>-0     (-----) [000] d.h6 82317.179893: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111044          <idle>-0     (-----) [003] .n.1 82317.179898: cpu_idle: state=4294967295 cpu_id=3
111045          <idle>-0     (-----) [003] d..2 82317.179906: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
111046          <idle>-0     (-----) [000] ...1 82317.179909: cpu_idle: state=4294967295 cpu_id=0
111047          <idle>-0     (-----) [000] d..1 82317.179913: cpu_idle: state=0 cpu_id=0
111048  crtc_event:111-322   (  322) [003] d..2 82317.179929: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111049          <idle>-0     (-----) [003] d..1 82317.179936: cpu_idle: state=0 cpu_id=3
111050          <idle>-0     (-----) [000] d.h2 82317.180118: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
111051          <idle>-0     (-----) [000] dnh3 82317.180132: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
111052          <idle>-0     (-----) [000] .n.1 82317.180140: cpu_idle: state=4294967295 cpu_id=0
111053          <idle>-0     (-----) [000] d..2 82317.180151: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
111054        DispSync-8879  ( 8858) [000] d..1 82317.180190: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
111055        DispSync-8879  ( 8858) [000] d..2 82317.180211: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
111056          <idle>-0     (-----) [001] .n.1 82317.180216: cpu_idle: state=4294967295 cpu_id=1
111057        DispSync-8879  ( 8858) [000] d..1 82317.180219: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
111058          <idle>-0     (-----) [001] d..2 82317.180232: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
111059        DispSync-8879  ( 8858) [000] d..2 82317.180249: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
111060          <idle>-0     (-----) [003] .n.1 82317.180255: cpu_idle: state=4294967295 cpu_id=3
111061          <idle>-0     (-----) [003] d..2 82317.180262: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
111062        DispSync-8879  ( 8858) [000] d..2 82317.180293: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111063   sfEventThread-8882  ( 8858) [001] d..3 82317.180304: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
111064          <idle>-0     (-----) [000] d..1 82317.180308: cpu_idle: state=0 cpu_id=0
111065   sfEventThread-8882  ( 8858) [001] d..4 82317.180334: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
111066          <idle>-0     (-----) [000] .n.1 82317.180340: cpu_idle: state=4294967295 cpu_id=0
111067  appEventThread-8881  ( 8858) [003] d..3 82317.180347: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
111068          <idle>-0     (-----) [000] d..2 82317.180351: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
111069   sfEventThread-8882  ( 8858) [001] d..2 82317.180379: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111070  appEventThread-8881  ( 8858) [003] d..4 82317.180389: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
111071          <idle>-0     (-----) [001] d..1 82317.180395: cpu_idle: state=0 cpu_id=1
111072          <idle>-0     (-----) [002] .n.1 82317.180395: cpu_idle: state=4294967295 cpu_id=2
111073          <idle>-0     (-----) [002] d..2 82317.180409: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
111074  appEventThread-8881  ( 8858) [003] d..3 82317.180410: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111075          <idle>-0     (-----) [004] dnh2 82317.180435: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111076          <idle>-0     (-----) [004] .n.1 82317.180439: cpu_idle: state=4294967295 cpu_id=4
111077          <idle>-0     (-----) [004] d..2 82317.180446: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
111078  appEventThread-8881  ( 8858) [003] d..2 82317.180470: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111079          <idle>-0     (-----) [003] d..1 82317.180484: cpu_idle: state=0 cpu_id=3
111080 s.nexuslauncher-10023 (10023) [004] .... 82317.180669: binder_transaction: transaction=1572284 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
111081 s.nexuslauncher-10023 (10023) [004] .... 82317.180674: binder_transaction_alloc_buf: transaction=1572284 data_size=80 offsets_size=0
111082 s.nexuslauncher-10023 (10023) [004] d..4 82317.180678: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
111083          <idle>-0     (-----) [001] dnh2 82317.180707: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
111084          <idle>-0     (-----) [001] .n.1 82317.180713: cpu_idle: state=4294967295 cpu_id=1
111085 s.nexuslauncher-10023 (10023) [004] d..3 82317.180719: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
111086          <idle>-0     (-----) [001] d..2 82317.180724: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
111087 s.nexuslauncher-10023 (10023) [004] d..4 82317.180733: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
111088<...>-8874 ( 8858) [001] .... 82317.180734: binder_transaction_received: transaction=1572284
111089          <idle>-0     (-----) [005] .n.1 82317.180737: cpu_idle: state=4294967295 cpu_id=5
111090          <idle>-0     (-----) [005] d..2 82317.180747: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
111091<...>-9105 ( 9105) [002] .... 82317.180762: binder_transaction: transaction=1572285 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
111092<...>-9105 ( 9105) [002] .... 82317.180769: binder_transaction_alloc_buf: transaction=1572285 data_size=80 offsets_size=0
111093    RenderThread-16607 (10023) [005] d..2 82317.180773: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
111094<...>-8874 ( 8858) [001] d..1 82317.180774: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
111095<...>-9105 ( 9105) [002] d..4 82317.180777: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
111096          <idle>-0     (-----) [005] d..1 82317.180778: cpu_idle: state=0 cpu_id=5
111097<...>-8874 ( 8858) [001] d..2 82317.180792: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
111098          <idle>-0     (-----) [003] .n.1 82317.180799: cpu_idle: state=4294967295 cpu_id=3
111099          <idle>-0     (-----) [003] d..2 82317.180807: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
111100          <idle>-0     (-----) [005] dnh2 82317.180826: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
111101          <idle>-0     (-----) [005] .n.1 82317.180874: cpu_idle: state=4294967295 cpu_id=5
111102<...>-9105 ( 9105) [002] d.h5 82317.180877: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
111103          <idle>-0     (-----) [005] d..2 82317.180878: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
111104  appEventThread-8881  ( 8858) [003] d..2 82317.180892: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111105          <idle>-0     (-----) [003] d..1 82317.180900: cpu_idle: state=0 cpu_id=3
111106<...>-9105 ( 9105) [002] d.h6 82317.180911: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
111107          <idle>-0     (-----) [003] .n.1 82317.180916: cpu_idle: state=4294967295 cpu_id=3
111108<...>-13083 ( 8858) [005] .... 82317.180921: binder_transaction_received: transaction=1572285
111109          <idle>-0     (-----) [003] d..2 82317.180925: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
111110<...>-13083 ( 8858) [005] d..1 82317.180947: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
111111<...>-8874 ( 8858) [001] d..2 82317.180953: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111112         sugov:0-576   (  576) [003] .... 82317.180959: clk_set_rate: pwrcl_clk 825600000
111113<...>-9105 ( 9105) [002] d..3 82317.180965: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=001
111114         sugov:0-576   (  576) [003] .... 82317.180971: clk_set_rate: cpu3_pwrcl_clk 979200000
111115          <idle>-0     (-----) [001] d..1 82317.180971: cpu_idle: state=0 cpu_id=1
111116         sugov:0-576   (  576) [003] .... 82317.180980: clk_set_rate: cpu2_pwrcl_clk 979200000
111117         sugov:0-576   (  576) [003] .... 82317.180989: clk_set_rate: cpu1_pwrcl_clk 979200000
111118<...>-13083 ( 8858) [005] d..2 82317.180993: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
111119          <idle>-0     (-----) [001] dnh2 82317.180996: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
111120         sugov:0-576   (  576) [003] .... 82317.180997: clk_set_rate: cpu0_pwrcl_clk 825600000
111121          <idle>-0     (-----) [005] d..1 82317.181001: cpu_idle: state=0 cpu_id=5
111122          <idle>-0     (-----) [006] dnh2 82317.181004: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
111123          <idle>-0     (-----) [001] .n.1 82317.181006: cpu_idle: state=4294967295 cpu_id=1
111124          <idle>-0     (-----) [006] .n.1 82317.181049: cpu_idle: state=4294967295 cpu_id=6
111125          <idle>-0     (-----) [001] d..2 82317.181054: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
111126          <idle>-0     (-----) [006] d..2 82317.181057: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
111127 s.nexuslauncher-10023 (10023) [004] d..3 82317.181096: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
111128    RenderThread-9436  ( 9105) [006] d..2 82317.181101: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
111129          <idle>-0     (-----) [006] d..1 82317.181110: cpu_idle: state=0 cpu_id=6
111130         sugov:0-576   (  576) [003] .... 82317.181110: cpu_frequency: state=825600 cpu_id=0
111131 s.nexuslauncher-10023 (10023) [004] d..4 82317.181114: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
111132          <idle>-0     (-----) [005] .n.1 82317.181118: cpu_idle: state=4294967295 cpu_id=5
111133          <idle>-0     (-----) [005] d..2 82317.181125: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
111134         sugov:0-576   (  576) [003] .... 82317.181130: cpu_frequency: state=825600 cpu_id=1
111135         sugov:0-576   (  576) [003] .... 82317.181135: cpu_frequency: state=825600 cpu_id=2
111136         sugov:0-576   (  576) [003] .... 82317.181139: cpu_frequency: state=825600 cpu_id=3
111137  appEventThread-8881  ( 8858) [001] d..2 82317.181140: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111138 s.nexuslauncher-10023 (10023) [004] d..2 82317.181141: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
111139          <idle>-0     (-----) [004] d..1 82317.181157: cpu_idle: state=0 cpu_id=4
111140          <idle>-0     (-----) [001] d..1 82317.181157: cpu_idle: state=0 cpu_id=1
111141         sugov:0-576   (  576) [003] d..2 82317.181171: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111142          <idle>-0     (-----) [003] d..1 82317.181181: cpu_idle: state=0 cpu_id=3
111143<...>-9105 ( 9105) [002] d..3 82317.181258: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
111144    RenderThread-16607 (10023) [005] d..1 82317.181272: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111145          <idle>-0     (-----) [006] dnh2 82317.181283: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
111146    RenderThread-16607 (10023) [005] d..2 82317.181286: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111147          <idle>-0     (-----) [006] .n.1 82317.181287: cpu_idle: state=4294967295 cpu_id=6
111148          <idle>-0     (-----) [006] d..2 82317.181292: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
111149          <idle>-0     (-----) [004] .n.1 82317.181292: cpu_idle: state=4294967295 cpu_id=4
111150          <idle>-0     (-----) [004] d..2 82317.181299: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
111151    RenderThread-16607 (10023) [005] d..1 82317.181302: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
111152    RenderThread-16607 (10023) [005] d..2 82317.181322: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
111153<...>-9105 ( 9105) [002] d..2 82317.181326: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111154          <idle>-0     (-----) [007] .n.1 82317.181327: cpu_idle: state=4294967295 cpu_id=7
111155          <idle>-0     (-----) [007] d..2 82317.181334: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
111156  surfaceflinger-8858  ( 8858) [000] d..1 82317.181340: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
111157          <idle>-0     (-----) [002] d..1 82317.181355: cpu_idle: state=0 cpu_id=2
111158    RenderThread-9436  ( 9105) [006] d..1 82317.181366: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
111159 s.nexuslauncher-10023 (10023) [004] d..2 82317.181370: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
111160  surfaceflinger-8858  ( 8858) [000] d..2 82317.181371: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
111161          <idle>-0     (-----) [001] .n.1 82317.181377: cpu_idle: state=4294967295 cpu_id=1
111162          <idle>-0     (-----) [004] d..1 82317.181377: cpu_idle: state=0 cpu_id=4
111163    RenderThread-16607 (10023) [005] .... 82317.181378: binder_transaction: transaction=1572286 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
111164    RenderThread-16607 (10023) [005] .... 82317.181381: binder_transaction_alloc_buf: transaction=1572286 data_size=104 offsets_size=0
111165    RenderThread-16607 (10023) [005] ...2 82317.181385: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
111166    RenderThread-16607 (10023) [005] d..4 82317.181388: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
111167          <idle>-0     (-----) [001] d..2 82317.181389: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
111168          <idle>-0     (-----) [002] dnh2 82317.181396: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
111169    RenderThread-16607 (10023) [005] dn.5 82317.181396: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
111170    RenderThread-16607 (10023) [005] d..2 82317.181402: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
111171          <idle>-0     (-----) [002] .n.1 82317.181406: cpu_idle: state=4294967295 cpu_id=2
111172<...>-13083 ( 8858) [005] .... 82317.181412: binder_transaction_received: transaction=1572286
111173          <idle>-0     (-----) [002] d..2 82317.181420: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
111174    RenderThread-9436  ( 9105) [006] .... 82317.181427: binder_transaction: transaction=1572287 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
111175    RenderThread-9436  ( 9105) [006] .... 82317.181430: binder_transaction_alloc_buf: transaction=1572287 data_size=104 offsets_size=0
111176   sfEventThread-8882  ( 8858) [001] d..2 82317.181433: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111177    RenderThread-9436  ( 9105) [006] d..4 82317.181434: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
111178          <idle>-0     (-----) [001] d..1 82317.181445: cpu_idle: state=0 cpu_id=1
111179    RenderThread-9436  ( 9105) [006] dn.5 82317.181453: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
111180<...>-13083 ( 8858) [005] .... 82317.181485: binder_transaction: transaction=1572288 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
111181    RenderThread-9436  ( 9105) [006] d..2 82317.181485: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
111182<...>-13083 ( 8858) [005] .... 82317.181488: binder_transaction_alloc_buf: transaction=1572288 data_size=52 offsets_size=8
111183<...>-13083 ( 8858) [005] .... 82317.181495: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
111184<...>-8874 ( 8858) [006] .... 82317.181495: binder_transaction_received: transaction=1572287
111185<...>-13083 ( 8858) [005] d..2 82317.181526: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
111186    RenderThread-16607 (10023) [005] .... 82317.181534: binder_transaction_received: transaction=1572288
111187<...>-9105 ( 9105) [002] d..2 82317.181539: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111188<...>-8874 ( 8858) [006] .... 82317.181549: binder_transaction: transaction=1572289 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
111189<...>-8874 ( 8858) [006] .... 82317.181552: binder_transaction_alloc_buf: transaction=1572289 data_size=52 offsets_size=8
111190          <idle>-0     (-----) [002] d..1 82317.181559: cpu_idle: state=0 cpu_id=2
111191<...>-18840 ( 10023) [007] .... 82317.181584: binder_transaction: transaction=1572290 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
111192<...>-18840 ( 10023) [007] .... 82317.181587: binder_transaction_alloc_buf: transaction=1572290 data_size=684 offsets_size=48
111193<...>-18840 ( 10023) [007] ...2 82317.181601: binder_set_priority: proc=8858 thread=13083 old=120 => new=118 desired=118
111194<...>-18840 ( 10023) [007] d..4 82317.181604: sched_waking: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=005
111195<...>-18840 ( 10023) [007] d..5 82317.181620: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=007
111196<...>-8874 ( 8858) [006] d..2 82317.181632: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
111197<...>-18840 ( 10023) [007] d..2 82317.181632: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=118
111198    RenderThread-9436  ( 9105) [006] .... 82317.181640: binder_transaction_received: transaction=1572289
111199<...>-13083 ( 8858) [007] .... 82317.181641: binder_transaction_received: transaction=1572290
111200<...>-13083 ( 8858) [007] .... 82317.181756: binder_transaction: transaction=1572291 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
111201<...>-13083 ( 8858) [007] .... 82317.181758: binder_transaction_alloc_buf: transaction=1572291 data_size=0 offsets_size=0
111202<...>-13083 ( 8858) [007] d..2 82317.181760: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
111203<...>-13083 ( 8858) [007] d..3 82317.181768: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
111204<...>-13083 ( 8858) [007] .... 82317.181770: binder_set_priority: proc=8858 thread=13083 old=118 => new=120 desired=120
111205          <idle>-0     (-----) [003] d.s2 82317.181813: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111206          <idle>-0     (-----) [003] dns3 82317.181837: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111207<...>-13083 ( 8858) [007] d..2 82317.181842: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
111208          <idle>-0     (-----) [003] dns3 82317.181844: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
111209<...>-18840 ( 10023) [007] .... 82317.181850: binder_transaction_received: transaction=1572291
111210          <idle>-0     (-----) [003] dns4 82317.181858: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
111211          <idle>-0     (-----) [003] .n.1 82317.181869: cpu_idle: state=4294967295 cpu_id=3
111212          <idle>-0     (-----) [003] d..2 82317.181881: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
111213<...>-18840 ( 10023) [007] d..2 82317.181905: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
111214          <idle>-0     (-----) [004] ...1 82317.181908: cpu_idle: state=4294967295 cpu_id=4
111215          <idle>-0     (-----) [004] d..1 82317.181911: cpu_idle: state=0 cpu_id=4
111216          <idle>-0     (-----) [007] d..1 82317.181922: cpu_idle: state=0 cpu_id=7
111217     kworker/3:1-25210 (25210) [003] d..2 82317.181923: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
111218     rcu_preempt-7     (    7) [003] d..2 82317.181960: 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
111219          <idle>-0     (-----) [003] d..1 82317.181975: cpu_idle: state=0 cpu_id=3
111220    RenderThread-9436  ( 9105) [006] d..2 82317.182701: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
111221          <idle>-0     (-----) [006] d..1 82317.182716: cpu_idle: state=0 cpu_id=6
111222    RenderThread-16607 (10023) [005] .... 82317.182756: binder_transaction: transaction=1572292 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
111223    RenderThread-16607 (10023) [005] .... 82317.182760: binder_transaction_alloc_buf: transaction=1572292 data_size=192 offsets_size=8
111224    RenderThread-16607 (10023) [005] ...2 82317.182767: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
111225    RenderThread-16607 (10023) [005] d..4 82317.182771: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
111226          <idle>-0     (-----) [006] d.h2 82317.182789: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
111227    RenderThread-16607 (10023) [005] dn.5 82317.182790: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
111228          <idle>-0     (-----) [006] d.h3 82317.182796: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
111229    RenderThread-16607 (10023) [005] d..2 82317.182797: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
111230          <idle>-0     (-----) [006] dnh3 82317.182799: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
111231          <idle>-0     (-----) [006] .n.1 82317.182804: cpu_idle: state=4294967295 cpu_id=6
111232<...>-13083 ( 8858) [005] .... 82317.182809: binder_transaction_received: transaction=1572292
111233          <idle>-0     (-----) [006] d..2 82317.182810: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
111234          <idle>-0     (-----) [002] ...1 82317.182831: cpu_idle: state=4294967295 cpu_id=2
111235          <idle>-0     (-----) [002] d..1 82317.182839: cpu_idle: state=0 cpu_id=2
111236          <idle>-0     (-----) [001] ...1 82317.182843: cpu_idle: state=4294967295 cpu_id=1
111237          <idle>-0     (-----) [001] d..1 82317.182848: cpu_idle: state=0 cpu_id=1
111238  surfaceflinger-8858  ( 8858) [000] ...1 82317.182900: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
111239<...>-13083 ( 8858) [005] .... 82317.182911: binder_transaction: transaction=1572293 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
111240  surfaceflinger-8858  ( 8858) [000] ...1 82317.182911: tracing_mark_write: E|8858
111241<...>-13083 ( 8858) [005] .... 82317.182914: binder_transaction_alloc_buf: transaction=1572293 data_size=68 offsets_size=0
111242<...>-13083 ( 8858) [005] .... 82317.182916: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
111243<...>-13083 ( 8858) [005] d..2 82317.182946: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
111244    RenderThread-16607 (10023) [005] .... 82317.182953: binder_transaction_received: transaction=1572293
111245    RenderThread-9436  ( 9105) [006] .... 82317.182972: binder_transaction: transaction=1572294 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
111246    RenderThread-9436  ( 9105) [006] .... 82317.182976: binder_transaction_alloc_buf: transaction=1572294 data_size=192 offsets_size=8
111247    RenderThread-9436  ( 9105) [006] d..4 82317.182984: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
111248  surfaceflinger-8858  ( 8858) [000] .... 82317.182992: binder_transaction: transaction=1572295 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
111249  surfaceflinger-8858  ( 8858) [000] .... 82317.183000: binder_transaction_alloc_buf: transaction=1572295 data_size=620 offsets_size=112
111250    RenderThread-9436  ( 9105) [006] dn.5 82317.183002: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
111251    RenderThread-9436  ( 9105) [006] d..2 82317.183008: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
111252<...>-13083 ( 8858) [006] .... 82317.183019: binder_transaction_received: transaction=1572294
111253  surfaceflinger-8858  ( 8858) [000] ...2 82317.183032: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
111254    RenderThread-16607 (10023) [005] d..2 82317.183038: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
111255  surfaceflinger-8858  ( 8858) [000] d..4 82317.183043: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
111256          <idle>-0     (-----) [005] d..1 82317.183055: cpu_idle: state=0 cpu_id=5
111257  surfaceflinger-8858  ( 8858) [000] d..5 82317.183071: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
111258          <idle>-0     (-----) [003] .n.1 82317.183077: cpu_idle: state=4294967295 cpu_id=3
111259          <idle>-0     (-----) [003] d..2 82317.183090: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
111260 [email protected]   (  619) [003] .... 82317.183104: binder_transaction_received: transaction=1572295
111261<...>-13083 ( 8858) [006] .... 82317.183111: binder_transaction: transaction=1572296 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
111262  surfaceflinger-8858  ( 8858) [000] d..2 82317.183113: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111263<...>-13083 ( 8858) [006] .... 82317.183114: binder_transaction_alloc_buf: transaction=1572296 data_size=68 offsets_size=0
111264<...>-13083 ( 8858) [006] d..2 82317.183139: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
111265          <idle>-0     (-----) [000] d..1 82317.183144: cpu_idle: state=0 cpu_id=0
111266    RenderThread-9436  ( 9105) [006] .... 82317.183147: binder_transaction_received: transaction=1572296
111267 [email protected]   (  619) [003] ...1 82317.183176: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
111268    RenderThread-9436  ( 9105) [006] d..2 82317.183210: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
111269          <idle>-0     (-----) [006] d..1 82317.183223: cpu_idle: state=0 cpu_id=6
111270 [email protected]   (  619) [003] ...1 82317.183372: tracing_mark_write: B|619|HWCSession::PresentDisplay::
111271          <idle>-0     (-----) [000] d.h3 82317.183918: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
111272          <idle>-0     (-----) [000] dnh4 82317.183934: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
111273          <idle>-0     (-----) [000] .n.1 82317.183947: cpu_idle: state=4294967295 cpu_id=0
111274          <idle>-0     (-----) [000] d..2 82317.183961: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
111275 kgsl_worker_thr-258   (  258) [000] d..2 82317.184060: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
111276          <idle>-0     (-----) [000] d..1 82317.184073: cpu_idle: state=0 cpu_id=0
111277          <idle>-0     (-----) [000] d.h2 82317.184147: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
111278 [email protected]   (  619) [003] ...1 82317.184154: tracing_mark_write: B|619|HWDeviceDRM::Validate::
111279          <idle>-0     (-----) [000] dnh3 82317.184158: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
111280          <idle>-0     (-----) [000] .n.1 82317.184166: cpu_idle: state=4294967295 cpu_id=0
111281          <idle>-0     (-----) [000] d..2 82317.184177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
111282 kgsl_worker_thr-258   (  258) [000] d..2 82317.184196: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
111283 kgsl_worker_thr-258   (  258) [000] d..3 82317.184249: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
111284 kgsl_worker_thr-258   (  258) [000] d..2 82317.184274: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111285  kworker/u16:15-1311  ( 1311) [000] d.h4 82317.184292: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
111286  kworker/u16:15-1311  ( 1311) [000] d.h5 82317.184316: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
111287          <idle>-0     (-----) [001] .n.1 82317.184321: cpu_idle: state=4294967295 cpu_id=1
111288          <idle>-0     (-----) [001] d..2 82317.184334: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
111289 kgsl_worker_thr-258   (  258) [001] d..2 82317.184477: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111290          <idle>-0     (-----) [001] d..1 82317.184495: cpu_idle: state=0 cpu_id=1
111291  kworker/u16:15-1311  ( 1311) [000] d..2 82317.184549: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111292          <idle>-0     (-----) [000] d..1 82317.184571: cpu_idle: state=0 cpu_id=0
111293 [email protected]   (  619) [003] ...1 82317.184965: tracing_mark_write: E|619
111294 [email protected]   (  619) [003] ...1 82317.185251: tracing_mark_write: B|619|HWDeviceDRM::Commit::
111295 [email protected]   (  619) [003] ...1 82317.185266: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
111296          <idle>-0     (-----) [000] ...1 82317.185834: cpu_idle: state=4294967295 cpu_id=0
111297          <idle>-0     (-----) [000] d..1 82317.185839: cpu_idle: state=0 cpu_id=0
111298 [email protected]   (  619) [003] d..2 82317.185897: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
111299 [email protected]   (  619) [003] d..3 82317.185927: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
111300          <idle>-0     (-----) [002] .n.1 82317.185932: cpu_idle: state=4294967295 cpu_id=2
111301          <idle>-0     (-----) [001] ...1 82317.185940: cpu_idle: state=4294967295 cpu_id=1
111302          <idle>-0     (-----) [001] d..1 82317.185945: cpu_idle: state=0 cpu_id=1
111303          <idle>-0     (-----) [002] d..2 82317.185947: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
111304 [email protected]   (  619) [003] ...1 82317.186051: tracing_mark_write: E|619
111305 [email protected]   (  619) [003] ...1 82317.186059: tracing_mark_write: E|619
111306 [email protected]   (  619) [003] ...1 82317.186129: tracing_mark_write: E|619
111307 [email protected]   (  619) [003] ...1 82317.186193: tracing_mark_write: E|619
111308 [email protected]   (  619) [003] .... 82317.186214: binder_transaction: transaction=1572297 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
111309 [email protected]   (  619) [003] .... 82317.186221: binder_transaction_alloc_buf: transaction=1572297 data_size=656 offsets_size=128
111310 [email protected]   (  619) [003] d..2 82317.186247: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
111311 [email protected]   (  619) [003] d..3 82317.186269: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
111312          <idle>-0     (-----) [000] .n.1 82317.186274: cpu_idle: state=4294967295 cpu_id=0
111313 [email protected]   (  619) [003] .... 82317.186274: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
111314          <idle>-0     (-----) [000] d..2 82317.186288: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
111315  surfaceflinger-8858  ( 8858) [000] .... 82317.186299: binder_transaction_received: transaction=1572297
111316 [email protected]   (  619) [003] d..2 82317.186395: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111317          <idle>-0     (-----) [003] d..1 82317.186415: cpu_idle: state=0 cpu_id=3
111318 crtc_commit:111-321   (  321) [002] d..2 82317.186727: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
111319          <idle>-0     (-----) [002] d..1 82317.186748: cpu_idle: state=0 cpu_id=2
111320  surfaceflinger-8858  ( 8858) [000] d..2 82317.186971: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111321          <idle>-0     (-----) [000] d..1 82317.186997: cpu_idle: state=0 cpu_id=0
111322          <idle>-0     (-----) [002] ...1 82317.188071: cpu_idle: state=4294967295 cpu_id=2
111323          <idle>-0     (-----) [002] d..1 82317.188076: cpu_idle: state=0 cpu_id=2
111324          <idle>-0     (-----) [000] ...1 82317.188265: cpu_idle: state=4294967295 cpu_id=0
111325          <idle>-0     (-----) [000] d..1 82317.188271: cpu_idle: state=0 cpu_id=0
111326          <idle>-0     (-----) [003] d.s2 82317.188480: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111327          <idle>-0     (-----) [003] dns3 82317.188503: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111328          <idle>-0     (-----) [003] dns3 82317.188510: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
111329          <idle>-0     (-----) [003] dns4 82317.188548: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
111330          <idle>-0     (-----) [003] .n.1 82317.188570: cpu_idle: state=4294967295 cpu_id=3
111331          <idle>-0     (-----) [003] d..2 82317.188583: 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
111332     rcu_preempt-7     (    7) [003] d..2 82317.188596: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
111333     rcu_preempt-7     (    7) [003] d..3 82317.188634: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
111334     rcu_preempt-7     (    7) [003] d..2 82317.188639: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
111335     rcu_preempt-7     (    7) [003] d..3 82317.188658: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
111336     rcu_preempt-7     (    7) [003] d..2 82317.188676: 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
111337         rcuop/4-45    (   45) [003] d..2 82317.188704: 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
111338         rcuop/0-10    (   10) [003] d..2 82317.188711: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
111339         rcuop/0-10    (   10) [003] d..3 82317.188731: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
111340         rcuop/0-10    (   10) [003] d..2 82317.188742: 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
111341         rcuop/1-21    (   21) [003] d..2 82317.188757: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111342  kworker/u16:15-1311  ( 1311) [003] .... 82317.188806: clk_set_rate: l3_cluster1_vote_clk 576000000
111343  kworker/u16:15-1311  ( 1311) [003] .... 82317.188814: clk_set_rate: l3_clk 576000000
111344  kworker/u16:15-1311  ( 1311) [003] d..2 82317.189076: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
111345          <idle>-0     (-----) [003] d..1 82317.189094: cpu_idle: state=0 cpu_id=3
111346          <idle>-0     (-----) [001] d.s3 82317.189106: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
111347          <idle>-0     (-----) [001] d.s4 82317.189119: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
111348          <idle>-0     (-----) [001] d.s4 82317.189128: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
111349          <idle>-0     (-----) [003] .n.1 82317.189135: cpu_idle: state=4294967295 cpu_id=3
111350          <idle>-0     (-----) [001] ...1 82317.189138: cpu_idle: state=4294967295 cpu_id=1
111351          <idle>-0     (-----) [001] d..1 82317.189144: cpu_idle: state=0 cpu_id=1
111352          <idle>-0     (-----) [003] d..2 82317.189149: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111353  kworker/u16:15-1311  ( 1311) [003] .... 82317.189204: clk_set_rate: l3_cluster0_vote_clk 403200000
111354  kworker/u16:15-1311  ( 1311) [003] d..2 82317.189231: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111355          <idle>-0     (-----) [003] d..1 82317.189243: cpu_idle: state=0 cpu_id=3
111356          <idle>-0     (-----) [000] d.h5 82317.193717: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111357          <idle>-0     (-----) [000] d.h6 82317.193743: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111358          <idle>-0     (-----) [003] .n.1 82317.193749: cpu_idle: state=4294967295 cpu_id=3
111359          <idle>-0     (-----) [000] d.h5 82317.193750: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
111360          <idle>-0     (-----) [003] d..2 82317.193761: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
111361          <idle>-0     (-----) [000] d.h6 82317.193764: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
111362          <idle>-0     (-----) [002] .n.1 82317.193770: cpu_idle: state=4294967295 cpu_id=2
111363          <idle>-0     (-----) [000] d..2 82317.193778: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
111364          <idle>-0     (-----) [002] d..2 82317.193782: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
111365          <idle>-0     (-----) [000] dn.3 82317.193792: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
111366  crtc_event:111-322   (  322) [003] d..2 82317.193800: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111367          <idle>-0     (-----) [003] d..1 82317.193808: cpu_idle: state=0 cpu_id=3
111368          <idle>-0     (-----) [000] dnH3 82317.193875: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
111369 crtc_commit:111-321   (  321) [002] d..2 82317.193891: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
111370          <idle>-0     (-----) [007] dnh2 82317.193897: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
111371          <idle>-0     (-----) [000] .n.1 82317.193899: cpu_idle: state=4294967295 cpu_id=0
111372          <idle>-0     (-----) [002] d..1 82317.193900: cpu_idle: state=0 cpu_id=2
111373          <idle>-0     (-----) [007] .n.1 82317.193901: cpu_idle: state=4294967295 cpu_id=7
111374          <idle>-0     (-----) [007] d..2 82317.193907: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
111375          <idle>-0     (-----) [000] d..2 82317.193914: 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
111376         sugov:4-577   (  577) [007] .... 82317.193928: clk_set_rate: perfcl_clk 825600000
111377         sugov:4-577   (  577) [007] .... 82317.193930: clk_set_rate: cpu7_perfcl_clk 1459200000
111378         sugov:4-577   (  577) [007] .... 82317.193936: clk_set_rate: cpu6_perfcl_clk 1459200000
111379     ksoftirqd/0-3     (    3) [000] d..2 82317.193940: 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
111380         sugov:4-577   (  577) [007] .... 82317.193941: clk_set_rate: cpu5_perfcl_clk 1459200000
111381         sugov:4-577   (  577) [007] .... 82317.193946: clk_set_rate: cpu4_perfcl_clk 825600000
111382         sugov:4-577   (  577) [007] .... 82317.193951: cpu_frequency: state=825600 cpu_id=4
111383          <idle>-0     (-----) [000] d..1 82317.193952: cpu_idle: state=0 cpu_id=0
111384         sugov:4-577   (  577) [007] .... 82317.193963: cpu_frequency: state=825600 cpu_id=5
111385         sugov:4-577   (  577) [007] .... 82317.193966: cpu_frequency: state=825600 cpu_id=6
111386         sugov:4-577   (  577) [007] .... 82317.193970: cpu_frequency: state=825600 cpu_id=7
111387         sugov:4-577   (  577) [007] d..2 82317.193991: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
111388          <idle>-0     (-----) [007] d..1 82317.194000: cpu_idle: state=0 cpu_id=7
111389          <idle>-0     (-----) [003] d.s2 82317.195133: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111390          <idle>-0     (-----) [002] d.s3 82317.195136: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111391          <idle>-0     (-----) [003] dns3 82317.195154: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111392          <idle>-0     (-----) [002] d.s4 82317.195161: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111393          <idle>-0     (-----) [003] .n.1 82317.195176: cpu_idle: state=4294967295 cpu_id=3
111394          <idle>-0     (-----) [003] d..2 82317.195183: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
111395          <idle>-0     (-----) [002] ...1 82317.195186: cpu_idle: state=4294967295 cpu_id=2
111396          <idle>-0     (-----) [002] d..1 82317.195193: cpu_idle: state=0 cpu_id=2
111397  crtc_event:111-322   (  322) [003] d..2 82317.195200: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
111398     rcu_preempt-7     (    7) [003] d..2 82317.195211: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
111399     rcu_preempt-7     (    7) [003] d..3 82317.195231: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
111400     rcu_preempt-7     (    7) [003] d..2 82317.195244: 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
111401         rcuop/2-29    (   29) [003] d..2 82317.195277: 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
111402          <idle>-0     (-----) [003] d..1 82317.195292: cpu_idle: state=0 cpu_id=3
111403          <idle>-0     (-----) [000] d.h5 82317.196046: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
111404          <idle>-0     (-----) [000] d.h6 82317.196063: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
111405          <idle>-0     (-----) [002] .n.1 82317.196068: cpu_idle: state=4294967295 cpu_id=2
111406          <idle>-0     (-----) [000] ...1 82317.196076: cpu_idle: state=4294967295 cpu_id=0
111407          <idle>-0     (-----) [002] d..2 82317.196079: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
111408          <idle>-0     (-----) [000] d..1 82317.196081: cpu_idle: state=0 cpu_id=0
111409 crtc_commit:111-321   (  321) [002] d..2 82317.196150: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111410          <idle>-0     (-----) [002] d..1 82317.196163: cpu_idle: state=0 cpu_id=2
111411          <idle>-0     (-----) [000] d.h5 82317.196347: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111412          <idle>-0     (-----) [000] d.h6 82317.196361: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111413          <idle>-0     (-----) [003] .n.1 82317.196368: cpu_idle: state=4294967295 cpu_id=3
111414          <idle>-0     (-----) [000] ...1 82317.196377: cpu_idle: state=4294967295 cpu_id=0
111415          <idle>-0     (-----) [003] d..2 82317.196378: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
111416          <idle>-0     (-----) [000] d..1 82317.196382: cpu_idle: state=0 cpu_id=0
111417  crtc_event:111-322   (  322) [003] d..2 82317.196405: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111418          <idle>-0     (-----) [003] d..1 82317.196415: cpu_idle: state=0 cpu_id=3
111419          <idle>-0     (-----) [000] d.h2 82317.196602: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
111420          <idle>-0     (-----) [000] dnh3 82317.196617: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
111421          <idle>-0     (-----) [000] .n.1 82317.196625: cpu_idle: state=4294967295 cpu_id=0
111422          <idle>-0     (-----) [000] d..2 82317.196636: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
111423        DispSync-8879  ( 8858) [000] d..1 82317.196662: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
111424        DispSync-8879  ( 8858) [000] d..2 82317.196677: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
111425          <idle>-0     (-----) [001] .n.1 82317.196682: cpu_idle: state=4294967295 cpu_id=1
111426        DispSync-8879  ( 8858) [000] d..1 82317.196684: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
111427          <idle>-0     (-----) [001] d..2 82317.196694: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
111428        DispSync-8879  ( 8858) [000] d..2 82317.196711: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
111429          <idle>-0     (-----) [003] .n.1 82317.196717: cpu_idle: state=4294967295 cpu_id=3
111430          <idle>-0     (-----) [003] d..2 82317.196726: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
111431   sfEventThread-8882  ( 8858) [001] d..3 82317.196742: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
111432        DispSync-8879  ( 8858) [000] d..2 82317.196747: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111433          <idle>-0     (-----) [000] d..1 82317.196760: cpu_idle: state=0 cpu_id=0
111434          <idle>-0     (-----) [000] .n.1 82317.196764: cpu_idle: state=4294967295 cpu_id=0
111435   sfEventThread-8882  ( 8858) [001] d..4 82317.196766: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
111436          <idle>-0     (-----) [000] d..2 82317.196778: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
111437  appEventThread-8881  ( 8858) [003] d..3 82317.196789: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
111438   sfEventThread-8882  ( 8858) [001] d..2 82317.196802: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111439          <idle>-0     (-----) [001] dn.1 82317.196816: cpu_idle: state=0 cpu_id=1
111440  appEventThread-8881  ( 8858) [003] d..4 82317.196820: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
111441          <idle>-0     (-----) [001] .n.1 82317.196825: cpu_idle: state=4294967295 cpu_id=1
111442          <idle>-0     (-----) [001] d..2 82317.196837: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
111443  appEventThread-8881  ( 8858) [003] d..3 82317.196839: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111444          <idle>-0     (-----) [004] dnh2 82317.196863: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111445          <idle>-0     (-----) [004] .n.1 82317.196867: cpu_idle: state=4294967295 cpu_id=4
111446          <idle>-0     (-----) [004] d..2 82317.196874: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
111447  appEventThread-8881  ( 8858) [003] d..2 82317.196893: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111448          <idle>-0     (-----) [003] d..1 82317.196908: cpu_idle: state=0 cpu_id=3
111449 s.nexuslauncher-10023 (10023) [004] .... 82317.197082: binder_transaction: transaction=1572298 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
111450 s.nexuslauncher-10023 (10023) [004] .... 82317.197086: binder_transaction_alloc_buf: transaction=1572298 data_size=80 offsets_size=0
111451 s.nexuslauncher-10023 (10023) [004] d..4 82317.197090: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
111452<...>-9105 ( 9105) [001] .... 82317.197151: binder_transaction: transaction=1572299 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
111453          <idle>-0     (-----) [002] dnh2 82317.197152: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
111454<...>-9105 ( 9105) [001] .... 82317.197157: binder_transaction_alloc_buf: transaction=1572299 data_size=80 offsets_size=0
111455          <idle>-0     (-----) [002] .n.1 82317.197158: cpu_idle: state=4294967295 cpu_id=2
111456<...>-9105 ( 9105) [001] d..4 82317.197163: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
111457          <idle>-0     (-----) [002] d..2 82317.197169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
111458 s.nexuslauncher-10023 (10023) [004] d..3 82317.197171: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
111459 s.nexuslauncher-10023 (10023) [004] d..4 82317.197187: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
111460          <idle>-0     (-----) [005] .n.1 82317.197193: cpu_idle: state=4294967295 cpu_id=5
111461          <idle>-0     (-----) [005] d..2 82317.197204: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
111462<...>-9105 ( 9105) [001] d..5 82317.197204: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
111463          <idle>-0     (-----) [003] .n.1 82317.197210: cpu_idle: state=4294967295 cpu_id=3
111464          <idle>-0     (-----) [003] d..2 82317.197258: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
111465<...>-13083 ( 8858) [002] .... 82317.197259: binder_transaction_received: transaction=1572298
111466    RenderThread-16607 (10023) [005] d..2 82317.197263: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
111467<...>-8874 ( 8858) [003] .... 82317.197266: binder_transaction_received: transaction=1572299
111468          <idle>-0     (-----) [005] d..1 82317.197271: cpu_idle: state=0 cpu_id=5
111469<...>-9105 ( 9105) [001] d..3 82317.197298: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
111470<...>-13083 ( 8858) [002] d..1 82317.197299: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
111471<...>-13083 ( 8858) [002] d..2 82317.197322: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
111472          <idle>-0     (-----) [006] dnh2 82317.197327: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
111473<...>-8874 ( 8858) [003] d..2 82317.197331: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
111474          <idle>-0     (-----) [006] .n.1 82317.197332: cpu_idle: state=4294967295 cpu_id=6
111475<...>-13083 ( 8858) [002] d..1 82317.197337: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
111476          <idle>-0     (-----) [006] d..2 82317.197341: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
111477    RenderThread-9436  ( 9105) [006] d..2 82317.197366: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
111478          <idle>-0     (-----) [006] d..1 82317.197373: cpu_idle: state=0 cpu_id=6
111479          <idle>-0     (-----) [005] dnh2 82317.197409: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
111480  appEventThread-8881  ( 8858) [003] d..2 82317.197414: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111481          <idle>-0     (-----) [005] .n.1 82317.197414: cpu_idle: state=4294967295 cpu_id=5
111482          <idle>-0     (-----) [005] d..2 82317.197421: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
111483          <idle>-0     (-----) [003] d..1 82317.197426: cpu_idle: state=0 cpu_id=3
111484<...>-8874 ( 8858) [005] d..1 82317.197436: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
111485<...>-13083 ( 8858) [002] d..2 82317.197455: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111486          <idle>-0     (-----) [003] dnh2 82317.197460: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
111487          <idle>-0     (-----) [003] .n.1 82317.197467: cpu_idle: state=4294967295 cpu_id=3
111488          <idle>-0     (-----) [002] d..1 82317.197471: cpu_idle: state=0 cpu_id=2
111489          <idle>-0     (-----) [003] d..2 82317.197476: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
111490<...>-9105 ( 9105) [001] d..3 82317.197477: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
111491<...>-8874 ( 8858) [005] d..2 82317.197482: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
111492          <idle>-0     (-----) [005] d..1 82317.197493: cpu_idle: state=0 cpu_id=5
111493          <idle>-0     (-----) [006] dnh2 82317.197497: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
111494          <idle>-0     (-----) [006] .n.1 82317.197501: cpu_idle: state=4294967295 cpu_id=6
111495          <idle>-0     (-----) [006] d..2 82317.197507: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
111496 s.nexuslauncher-10023 (10023) [004] d..3 82317.197515: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
111497  appEventThread-8881  ( 8858) [003] d..2 82317.197516: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111498<...>-9105 ( 9105) [001] d..2 82317.197525: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111499          <idle>-0     (-----) [003] d..1 82317.197527: cpu_idle: state=0 cpu_id=3
111500 s.nexuslauncher-10023 (10023) [004] d..4 82317.197531: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
111501  surfaceflinger-8858  ( 8858) [000] d..1 82317.197533: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
111502          <idle>-0     (-----) [005] .n.1 82317.197536: cpu_idle: state=4294967295 cpu_id=5
111503          <idle>-0     (-----) [001] d..1 82317.197544: cpu_idle: state=0 cpu_id=1
111504          <idle>-0     (-----) [005] d..2 82317.197545: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
111505  surfaceflinger-8858  ( 8858) [000] d..2 82317.197554: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
111506 s.nexuslauncher-10023 (10023) [004] d..2 82317.197554: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
111507          <idle>-0     (-----) [001] .n.1 82317.197560: cpu_idle: state=4294967295 cpu_id=1
111508          <idle>-0     (-----) [004] d..1 82317.197568: cpu_idle: state=0 cpu_id=4
111509          <idle>-0     (-----) [001] d..2 82317.197572: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
111510    RenderThread-9436  ( 9105) [006] d..1 82317.197576: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
111511          <idle>-0     (-----) [002] dnh2 82317.197609: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
111512          <idle>-0     (-----) [002] .n.1 82317.197615: cpu_idle: state=4294967295 cpu_id=2
111513   sfEventThread-8882  ( 8858) [001] d..2 82317.197623: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111514          <idle>-0     (-----) [002] d..2 82317.197627: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
111515    RenderThread-9436  ( 9105) [006] .... 82317.197634: binder_transaction: transaction=1572300 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
111516          <idle>-0     (-----) [001] d..1 82317.197636: cpu_idle: state=0 cpu_id=1
111517    RenderThread-9436  ( 9105) [006] .... 82317.197638: binder_transaction_alloc_buf: transaction=1572300 data_size=104 offsets_size=0
111518    RenderThread-9436  ( 9105) [006] d..4 82317.197641: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
111519    RenderThread-9436  ( 9105) [006] dn.5 82317.197654: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
111520    RenderThread-9436  ( 9105) [006] d..2 82317.197661: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
111521<...>-8874 ( 8858) [006] .... 82317.197671: binder_transaction_received: transaction=1572300
111522    RenderThread-16607 (10023) [005] d..1 82317.197677: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111523    RenderThread-16607 (10023) [005] d..2 82317.197692: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111524          <idle>-0     (-----) [004] .n.1 82317.197698: cpu_idle: state=4294967295 cpu_id=4
111525          <idle>-0     (-----) [004] d..2 82317.197706: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
111526    RenderThread-16607 (10023) [005] d..1 82317.197707: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
111527<...>-8874 ( 8858) [006] .... 82317.197719: binder_transaction: transaction=1572301 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
111528    RenderThread-16607 (10023) [005] d..2 82317.197720: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
111529<...>-8874 ( 8858) [006] .... 82317.197722: binder_transaction_alloc_buf: transaction=1572301 data_size=52 offsets_size=8
111530          <idle>-0     (-----) [007] .n.1 82317.197726: cpu_idle: state=4294967295 cpu_id=7
111531          <idle>-0     (-----) [007] d..2 82317.197734: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
111532<...>-9105 ( 9105) [002] d..2 82317.197738: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111533<...>-8874 ( 8858) [006] d..2 82317.197752: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
111534          <idle>-0     (-----) [002] d..1 82317.197755: cpu_idle: state=0 cpu_id=2
111535    RenderThread-9436  ( 9105) [006] .... 82317.197761: binder_transaction_received: transaction=1572301
111536    RenderThread-16607 (10023) [005] .... 82317.197764: binder_transaction: transaction=1572302 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
111537    RenderThread-16607 (10023) [005] .... 82317.197767: binder_transaction_alloc_buf: transaction=1572302 data_size=104 offsets_size=0
111538    RenderThread-16607 (10023) [005] ...2 82317.197771: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
111539    RenderThread-16607 (10023) [005] d..4 82317.197773: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
111540 s.nexuslauncher-10023 (10023) [004] d..2 82317.197782: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
111541    RenderThread-16607 (10023) [005] d..5 82317.197788: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
111542          <idle>-0     (-----) [004] d..1 82317.197792: cpu_idle: state=0 cpu_id=4
111543    RenderThread-16607 (10023) [005] d..2 82317.197798: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
111544<...>-8874 ( 8858) [005] .... 82317.197807: binder_transaction_received: transaction=1572302
111545<...>-8874 ( 8858) [005] .... 82317.197852: binder_transaction: transaction=1572303 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
111546<...>-8874 ( 8858) [005] .... 82317.197856: binder_transaction_alloc_buf: transaction=1572303 data_size=52 offsets_size=8
111547<...>-8874 ( 8858) [005] d..2 82317.197863: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
111548<...>-8874 ( 8858) [005] d..3 82317.197872: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
111549<...>-8874 ( 8858) [005] .... 82317.197874: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
111550<...>-8874 ( 8858) [005] d..2 82317.197904: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
111551    RenderThread-16607 (10023) [005] .... 82317.197912: binder_transaction_received: transaction=1572303
111552<...>-18840 ( 10023) [007] .... 82317.197955: binder_transaction: transaction=1572304 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
111553<...>-18840 ( 10023) [007] .... 82317.197959: binder_transaction_alloc_buf: transaction=1572304 data_size=684 offsets_size=48
111554<...>-18840 ( 10023) [007] ...2 82317.197973: binder_set_priority: proc=8858 thread=8874 old=120 => new=118 desired=118
111555<...>-18840 ( 10023) [007] d..4 82317.197976: sched_waking: comm=Binder:8858_2 pid=8874 prio=118 target_cpu=005
111556<...>-18840 ( 10023) [007] d..5 82317.197991: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=118 target_cpu=007
111557<...>-18840 ( 10023) [007] d..2 82317.198002: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=118
111558<...>-8874 ( 8858) [007] .... 82317.198011: binder_transaction_received: transaction=1572304
111559<...>-8874 ( 8858) [007] .... 82317.198107: binder_transaction: transaction=1572305 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
111560<...>-8874 ( 8858) [007] .... 82317.198110: binder_transaction_alloc_buf: transaction=1572305 data_size=0 offsets_size=0
111561<...>-8874 ( 8858) [007] d..2 82317.198112: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
111562<...>-8874 ( 8858) [007] d..3 82317.198121: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
111563<...>-8874 ( 8858) [007] .... 82317.198123: binder_set_priority: proc=8858 thread=8874 old=118 => new=120 desired=120
111564<...>-8874 ( 8858) [007] d..2 82317.198133: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
111565<...>-18840 ( 10023) [007] .... 82317.198141: binder_transaction_received: transaction=1572305
111566<...>-18840 ( 10023) [007] d..2 82317.198183: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
111567<...>-8874 ( 8858) [007] d..2 82317.198228: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
111568          <idle>-0     (-----) [007] d..1 82317.198241: cpu_idle: state=0 cpu_id=7
111569  surfaceflinger-8858  ( 8858) [000] d.s2 82317.198482: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
111570  surfaceflinger-8858  ( 8858) [000] d.s3 82317.198532: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
111571          <idle>-0     (-----) [001] .n.1 82317.198538: cpu_idle: state=4294967295 cpu_id=1
111572          <idle>-0     (-----) [001] d..2 82317.198553: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111573  kworker/u16:15-1311  ( 1311) [001] .... 82317.198613: clk_set_rate: l3_cluster0_vote_clk 300000000
111574    RenderThread-16607 (10023) [005] d..2 82317.198758: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
111575          <idle>-0     (-----) [003] dnh2 82317.198791: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111576          <idle>-0     (-----) [003] .n.1 82317.198796: cpu_idle: state=4294967295 cpu_id=3
111577          <idle>-0     (-----) [003] d..2 82317.198808: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
111578    RenderThread-9436  ( 9105) [006] d..2 82317.198864: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
111579          <idle>-0     (-----) [006] d..1 82317.198877: cpu_idle: state=0 cpu_id=6
111580    RenderThread-16607 (10023) [005] .... 82317.198891: binder_transaction: transaction=1572306 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
111581 kgsl_worker_thr-258   (  258) [003] d..2 82317.198891: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
111582  kworker/u16:15-1311  ( 1311) [001] d..2 82317.198893: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
111583    RenderThread-16607 (10023) [005] .... 82317.198896: binder_transaction_alloc_buf: transaction=1572306 data_size=192 offsets_size=8
111584          <idle>-0     (-----) [003] d..1 82317.198899: cpu_idle: state=0 cpu_id=3
111585    RenderThread-16607 (10023) [005] ...2 82317.198903: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
111586    RenderThread-16607 (10023) [005] d..4 82317.198906: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=007
111587    RenderThread-16607 (10023) [005] d..5 82317.198921: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
111588    RenderThread-16607 (10023) [005] d..2 82317.198932: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
111589  surfaceflinger-8858  ( 8858) [000] ...1 82317.198939: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
111590<...>-8874 ( 8858) [005] .... 82317.198943: binder_transaction_received: transaction=1572306
111591          <idle>-0     (-----) [001] d.s4 82317.198944: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
111592  surfaceflinger-8858  ( 8858) [000] ...1 82317.198947: tracing_mark_write: E|8858
111593          <idle>-0     (-----) [006] d.h2 82317.198952: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
111594          <idle>-0     (-----) [001] d.s5 82317.198955: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
111595          <idle>-0     (-----) [006] d.h3 82317.198959: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
111596          <idle>-0     (-----) [001] dns5 82317.198961: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
111597          <idle>-0     (-----) [006] dnh3 82317.198962: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
111598          <idle>-0     (-----) [006] .n.1 82317.198968: cpu_idle: state=4294967295 cpu_id=6
111599          <idle>-0     (-----) [001] d..2 82317.198974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111600          <idle>-0     (-----) [006] d..2 82317.198977: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
111601  surfaceflinger-8858  ( 8858) [000] .... 82317.199006: binder_transaction: transaction=1572307 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
111602  surfaceflinger-8858  ( 8858) [000] .... 82317.199011: binder_transaction_alloc_buf: transaction=1572307 data_size=620 offsets_size=112
111603    RenderThread-9436  ( 9105) [006] d..1 82317.199020: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111604  surfaceflinger-8858  ( 8858) [000] ...2 82317.199037: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
111605          <idle>-0     (-----) [003] dnh2 82317.199040: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111606  surfaceflinger-8858  ( 8858) [000] d..4 82317.199046: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
111607          <idle>-0     (-----) [003] .n.1 82317.199048: cpu_idle: state=4294967295 cpu_id=3
111608          <idle>-0     (-----) [003] d..2 82317.199058: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
111609<...>-8874 ( 8858) [005] .... 82317.199059: binder_transaction: transaction=1572308 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
111610  kworker/u16:15-1311  ( 1311) [001] .... 82317.199061: clk_set_rate: l3_cluster1_vote_clk 300000000
111611<...>-8874 ( 8858) [005] .... 82317.199063: binder_transaction_alloc_buf: transaction=1572308 data_size=68 offsets_size=0
111612<...>-8874 ( 8858) [005] d..2 82317.199065: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
111613  kworker/u16:15-1311  ( 1311) [001] .... 82317.199066: clk_set_rate: l3_clk 300000000
111614<...>-8874 ( 8858) [005] d..3 82317.199076: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
111615  surfaceflinger-8858  ( 8858) [000] d..5 82317.199077: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
111616<...>-8874 ( 8858) [005] .... 82317.199080: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
111617          <idle>-0     (-----) [002] .n.1 82317.199087: cpu_idle: state=4294967295 cpu_id=2
111618 kgsl_worker_thr-258   (  258) [003] d..2 82317.199098: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
111619          <idle>-0     (-----) [002] d..2 82317.199104: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
111620<...>-8874 ( 8858) [005] d..2 82317.199120: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
111621 [email protected]   (  619) [002] .... 82317.199121: binder_transaction_received: transaction=1572307
111622  kworker/u16:15-1311  ( 1311) [001] d..2 82317.199123: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111623  surfaceflinger-8858  ( 8858) [000] d..2 82317.199125: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111624    RenderThread-16607 (10023) [005] .... 82317.199131: binder_transaction_received: transaction=1572308
111625 kgsl_worker_thr-258   (  258) [003] d..3 82317.199146: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
111626          <idle>-0     (-----) [000] d..1 82317.199152: cpu_idle: state=0 cpu_id=0
111627          <idle>-0     (-----) [001] d..2 82317.199162: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111628 kgsl_worker_thr-258   (  258) [003] d..2 82317.199179: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111629          <idle>-0     (-----) [003] d..1 82317.199189: cpu_idle: state=0 cpu_id=3
111630 [email protected]   (  619) [002] ...1 82317.199190: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
111631  kworker/u16:15-1311  ( 1311) [001] d..2 82317.199216: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111632          <idle>-0     (-----) [000] ...1 82317.199219: cpu_idle: state=4294967295 cpu_id=0
111633          <idle>-0     (-----) [000] d..1 82317.199228: cpu_idle: state=0 cpu_id=0
111634          <idle>-0     (-----) [001] d..1 82317.199229: cpu_idle: state=0 cpu_id=1
111635    RenderThread-9436  ( 9105) [006] .... 82317.199230: binder_transaction: transaction=1572309 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
111636    RenderThread-16607 (10023) [005] d..2 82317.199231: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
111637    RenderThread-9436  ( 9105) [006] .... 82317.199235: binder_transaction_alloc_buf: transaction=1572309 data_size=192 offsets_size=8
111638    RenderThread-9436  ( 9105) [006] d..4 82317.199244: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
111639          <idle>-0     (-----) [005] d..1 82317.199252: cpu_idle: state=0 cpu_id=5
111640    RenderThread-9436  ( 9105) [006] dn.5 82317.199263: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
111641    RenderThread-9436  ( 9105) [006] d..2 82317.199272: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
111642<...>-8874 ( 8858) [006] .... 82317.199285: binder_transaction_received: transaction=1572309
111643 [email protected]   (  619) [002] ...1 82317.199356: tracing_mark_write: B|619|HWCSession::PresentDisplay::
111644<...>-8874 ( 8858) [006] .... 82317.199401: binder_transaction: transaction=1572310 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
111645<...>-8874 ( 8858) [006] .... 82317.199406: binder_transaction_alloc_buf: transaction=1572310 data_size=68 offsets_size=0
111646<...>-8874 ( 8858) [006] d..2 82317.199439: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
111647    RenderThread-9436  ( 9105) [006] .... 82317.199450: binder_transaction_received: transaction=1572310
111648          <idle>-0     (-----) [005] ...1 82317.199452: cpu_idle: state=4294967295 cpu_id=5
111649          <idle>-0     (-----) [005] d..1 82317.199456: cpu_idle: state=0 cpu_id=5
111650    RenderThread-9436  ( 9105) [006] d..2 82317.199526: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
111651          <idle>-0     (-----) [006] d..1 82317.199545: cpu_idle: state=0 cpu_id=6
111652          <idle>-0     (-----) [006] ...1 82317.199765: cpu_idle: state=4294967295 cpu_id=6
111653          <idle>-0     (-----) [006] d..1 82317.199769: cpu_idle: state=0 cpu_id=6
111654 [email protected]   (  619) [002] ...1 82317.200087: tracing_mark_write: B|619|HWDeviceDRM::Validate::
111655          <idle>-0     (-----) [000] ...1 82317.200355: cpu_idle: state=4294967295 cpu_id=0
111656          <idle>-0     (-----) [000] d..1 82317.200360: cpu_idle: state=0 cpu_id=0
111657          <idle>-0     (-----) [000] d.h3 82317.200468: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111658          <idle>-0     (-----) [000] d.h4 82317.200488: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111659          <idle>-0     (-----) [003] .n.1 82317.200493: cpu_idle: state=4294967295 cpu_id=3
111660          <idle>-0     (-----) [000] ...1 82317.200501: cpu_idle: state=4294967295 cpu_id=0
111661          <idle>-0     (-----) [003] d..2 82317.200502: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
111662          <idle>-0     (-----) [000] d..1 82317.200508: cpu_idle: state=0 cpu_id=0
111663 kgsl_worker_thr-258   (  258) [003] d..2 82317.200558: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111664          <idle>-0     (-----) [003] d..1 82317.200567: cpu_idle: state=0 cpu_id=3
111665          <idle>-0     (-----) [000] ...1 82317.200576: cpu_idle: state=4294967295 cpu_id=0
111666          <idle>-0     (-----) [000] d..1 82317.200580: cpu_idle: state=0 cpu_id=0
111667          <idle>-0     (-----) [000] d.h3 82317.200636: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111668          <idle>-0     (-----) [000] d.h4 82317.200652: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111669          <idle>-0     (-----) [003] .n.1 82317.200658: cpu_idle: state=4294967295 cpu_id=3
111670          <idle>-0     (-----) [000] ...1 82317.200663: cpu_idle: state=4294967295 cpu_id=0
111671          <idle>-0     (-----) [003] d..2 82317.200665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
111672          <idle>-0     (-----) [000] d..1 82317.200670: cpu_idle: state=0 cpu_id=0
111673 kgsl_worker_thr-258   (  258) [003] d..2 82317.200801: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111674          <idle>-0     (-----) [003] d..1 82317.200812: cpu_idle: state=0 cpu_id=3
111675 [email protected]   (  619) [002] ...1 82317.200832: tracing_mark_write: E|619
111676 [email protected]   (  619) [002] ...1 82317.201043: tracing_mark_write: B|619|HWDeviceDRM::Commit::
111677 [email protected]   (  619) [002] ...1 82317.201057: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
111678 [email protected]   (  619) [002] d..2 82317.201688: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
111679 [email protected]   (  619) [002] d..3 82317.201732: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
111680          <idle>-0     (-----) [003] .n.1 82317.201737: cpu_idle: state=4294967295 cpu_id=3
111681          <idle>-0     (-----) [003] d..2 82317.201746: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
111682 crtc_commit:111-321   (  321) [003] d.s1 82317.201821: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111683 crtc_commit:111-321   (  321) [003] d.s2 82317.201846: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111684 [email protected]   (  619) [002] ...1 82317.201910: tracing_mark_write: E|619
111685 [email protected]   (  619) [002] ...1 82317.201918: tracing_mark_write: E|619
111686          <idle>-0     (-----) [000] ...1 82317.201934: cpu_idle: state=4294967295 cpu_id=0
111687          <idle>-0     (-----) [000] d..1 82317.201938: cpu_idle: state=0 cpu_id=0
111688 [email protected]   (  619) [002] ...1 82317.201987: tracing_mark_write: E|619
111689 [email protected]   (  619) [002] ...1 82317.202049: tracing_mark_write: E|619
111690 [email protected]   (  619) [002] .... 82317.202071: binder_transaction: transaction=1572311 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
111691 [email protected]   (  619) [002] .... 82317.202077: binder_transaction_alloc_buf: transaction=1572311 data_size=656 offsets_size=128
111692 [email protected]   (  619) [002] d..2 82317.202103: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
111693 [email protected]   (  619) [002] d..3 82317.202128: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
111694          <idle>-0     (-----) [000] .n.1 82317.202131: cpu_idle: state=4294967295 cpu_id=0
111695 [email protected]   (  619) [002] .... 82317.202134: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
111696          <idle>-0     (-----) [000] d..2 82317.202145: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
111697  surfaceflinger-8858  ( 8858) [000] .... 82317.202158: binder_transaction_received: transaction=1572311
111698 [email protected]   (  619) [002] d..2 82317.202254: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111699          <idle>-0     (-----) [002] d..1 82317.202279: cpu_idle: state=0 cpu_id=2
111700 crtc_commit:111-321   (  321) [003] d..2 82317.202588: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
111701     rcu_preempt-7     (    7) [003] d..2 82317.202634: 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
111702          <idle>-0     (-----) [003] d..1 82317.202652: cpu_idle: state=0 cpu_id=3
111703  surfaceflinger-8858  ( 8858) [000] d..2 82317.202800: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111704          <idle>-0     (-----) [000] d..1 82317.202826: cpu_idle: state=0 cpu_id=0
111705          <idle>-0     (-----) [000] ...1 82317.204157: cpu_idle: state=4294967295 cpu_id=0
111706          <idle>-0     (-----) [000] d..1 82317.204163: cpu_idle: state=0 cpu_id=0
111707          <idle>-0     (-----) [002] ...1 82317.204193: cpu_idle: state=4294967295 cpu_id=2
111708          <idle>-0     (-----) [002] d..1 82317.204198: cpu_idle: state=0 cpu_id=2
111709          <idle>-0     (-----) [003] d.s2 82317.208475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111710          <idle>-0     (-----) [003] dns3 82317.208495: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111711          <idle>-0     (-----) [003] dns3 82317.208502: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
111712          <idle>-0     (-----) [003] dns4 82317.208542: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
111713          <idle>-0     (-----) [003] .n.1 82317.208563: cpu_idle: state=4294967295 cpu_id=3
111714          <idle>-0     (-----) [003] d..2 82317.208578: 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
111715     rcu_preempt-7     (    7) [003] d..2 82317.208589: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
111716     rcu_preempt-7     (    7) [003] d..3 82317.208610: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
111717     rcu_preempt-7     (    7) [003] d..2 82317.208614: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
111718     rcu_preempt-7     (    7) [003] d..3 82317.208630: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
111719     rcu_preempt-7     (    7) [003] d..2 82317.208642: 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
111720         rcuop/4-45    (   45) [003] d..2 82317.208697: 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
111721         rcuop/0-10    (   10) [003] d..2 82317.208705: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
111722         rcuop/0-10    (   10) [003] d..3 82317.208723: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
111723         rcuop/0-10    (   10) [003] d..2 82317.208742: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111724         rcuop/0-10    (   10) [003] d..3 82317.208754: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111725         rcuop/0-10    (   10) [003] d..2 82317.208764: 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
111726         rcuop/1-21    (   21) [003] d..2 82317.208781: 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
111727     rcu_preempt-7     (    7) [003] d..2 82317.208795: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111728  kworker/u16:15-1311  ( 1311) [003] d..2 82317.208929: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111729          <idle>-0     (-----) [003] d..1 82317.208949: cpu_idle: state=0 cpu_id=3
111730          <idle>-0     (-----) [000] d.h5 82317.210194: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111731          <idle>-0     (-----) [000] d.h6 82317.210216: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111732          <idle>-0     (-----) [000] d.h5 82317.210222: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
111733          <idle>-0     (-----) [003] .n.1 82317.210223: cpu_idle: state=4294967295 cpu_id=3
111734          <idle>-0     (-----) [000] dnh6 82317.210240: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
111735          <idle>-0     (-----) [003] d..2 82317.210243: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
111736          <idle>-0     (-----) [000] .n.1 82317.210253: cpu_idle: state=4294967295 cpu_id=0
111737          <idle>-0     (-----) [000] d..2 82317.210267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
111738  crtc_event:111-322   (  322) [003] d..2 82317.210283: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111739          <idle>-0     (-----) [003] d..1 82317.210294: cpu_idle: state=0 cpu_id=3
111740 crtc_commit:111-321   (  321) [000] d..2 82317.210399: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
111741          <idle>-0     (-----) [000] d..1 82317.210413: cpu_idle: state=0 cpu_id=0
111742          <idle>-0     (-----) [000] d.s3 82317.211903: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111743          <idle>-0     (-----) [000] d.s4 82317.211923: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111744          <idle>-0     (-----) [003] .n.1 82317.211929: cpu_idle: state=4294967295 cpu_id=3
111745          <idle>-0     (-----) [003] d..2 82317.211941: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
111746          <idle>-0     (-----) [000] ...1 82317.211956: cpu_idle: state=4294967295 cpu_id=0
111747          <idle>-0     (-----) [000] d..1 82317.211964: cpu_idle: state=0 cpu_id=0
111748  crtc_event:111-322   (  322) [003] d..2 82317.211975: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111749          <idle>-0     (-----) [003] d..1 82317.211983: cpu_idle: state=0 cpu_id=3
111750          <idle>-0     (-----) [000] d.h5 82317.212518: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
111751          <idle>-0     (-----) [000] dnh6 82317.212532: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
111752          <idle>-0     (-----) [000] dnh2 82317.212551: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=000
111753          <idle>-0     (-----) [000] dnh3 82317.212585: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=001
111754          <idle>-0     (-----) [001] .n.1 82317.212592: cpu_idle: state=4294967295 cpu_id=1
111755          <idle>-0     (-----) [000] .n.1 82317.212595: cpu_idle: state=4294967295 cpu_id=0
111756          <idle>-0     (-----) [000] d..2 82317.212607: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
111757          <idle>-0     (-----) [001] d..2 82317.212610: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
111758 crtc_commit:111-321   (  321) [000] d..2 82317.212690: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111759          <idle>-0     (-----) [000] d..1 82317.212705: cpu_idle: state=0 cpu_id=0
111760          <idle>-0     (-----) [000] d.h5 82317.212824: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111761          <idle>-0     (-----) [000] d.h6 82317.212843: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
111762          <idle>-0     (-----) [003] .n.1 82317.212849: cpu_idle: state=4294967295 cpu_id=3
111763          <idle>-0     (-----) [003] d..2 82317.212857: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
111764          <idle>-0     (-----) [000] ...1 82317.212862: cpu_idle: state=4294967295 cpu_id=0
111765          <idle>-0     (-----) [000] d..1 82317.212868: cpu_idle: state=0 cpu_id=0
111766  crtc_event:111-322   (  322) [003] d..2 82317.212883: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111767          <idle>-0     (-----) [003] d..1 82317.212891: cpu_idle: state=0 cpu_id=3
111768           <...>-27566 (-----) [001] d..2 82317.212926: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
111769           <...>-27566 (-----) [001] d..3 82317.212964: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
111770          <idle>-0     (-----) [000] d.h2 82317.213046: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
111771          <idle>-0     (-----) [000] dnh3 82317.213061: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
111772          <idle>-0     (-----) [000] dnh2 82317.213065: sched_waking: comm=queued-work-loo pid=9203 prio=118 target_cpu=000
111773          <idle>-0     (-----) [000] dnh3 82317.213085: sched_wakeup: comm=queued-work-loo pid=9203 prio=118 target_cpu=000
111774          <idle>-0     (-----) [000] .n.1 82317.213094: cpu_idle: state=4294967295 cpu_id=0
111775           <...>-27566 (-----) [001] d..2 82317.213098: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
111776          <idle>-0     (-----) [000] d..2 82317.213106: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
111777        DispSync-8879  ( 8858) [000] d..1 82317.213134: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
111778        DispSync-8879  ( 8858) [000] d..2 82317.213160: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
111779          <idle>-0     (-----) [002] .n.1 82317.213166: cpu_idle: state=4294967295 cpu_id=2
111780        DispSync-8879  ( 8858) [000] d..1 82317.213166: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
111781          <idle>-0     (-----) [002] d..2 82317.213179: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
111782        DispSync-8879  ( 8858) [000] d..2 82317.213180: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
111783          <idle>-0     (-----) [003] .n.1 82317.213186: cpu_idle: state=4294967295 cpu_id=3
111784          <idle>-0     (-----) [003] d..2 82317.213194: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
111785        DispSync-8879  ( 8858) [000] d..2 82317.213207: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=queued-work-loo next_pid=9203 next_prio=118
111786   sfEventThread-8882  ( 8858) [002] d..3 82317.213238: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
111787<...>-581 ( 571) [001] d..2 82317.213246: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111788  appEventThread-8881  ( 8858) [003] d..3 82317.213256: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
111789          <idle>-0     (-----) [001] dn.1 82317.213268: cpu_idle: state=0 cpu_id=1
111790   sfEventThread-8882  ( 8858) [002] d..4 82317.213274: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
111791          <idle>-0     (-----) [001] .n.1 82317.213279: cpu_idle: state=4294967295 cpu_id=1
111792          <idle>-0     (-----) [001] d..2 82317.213293: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
111793          <idle>-0     (-----) [006] dnh2 82317.213304: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
111794          <idle>-0     (-----) [006] .n.1 82317.213349: cpu_idle: state=4294967295 cpu_id=6
111795   sfEventThread-8882  ( 8858) [002] d..2 82317.213358: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111796          <idle>-0     (-----) [006] d..2 82317.213359: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
111797  appEventThread-8881  ( 8858) [003] d..3 82317.213367: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111798          <idle>-0     (-----) [002] d..1 82317.213377: cpu_idle: state=0 cpu_id=2
111799          <idle>-0     (-----) [004] dnh2 82317.213396: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111800          <idle>-0     (-----) [004] .n.1 82317.213401: cpu_idle: state=4294967295 cpu_id=4
111801          <idle>-0     (-----) [004] d..2 82317.213409: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
111802  appEventThread-8881  ( 8858) [003] d..2 82317.213433: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111803          <idle>-0     (-----) [003] d..1 82317.213447: cpu_idle: state=0 cpu_id=3
111804<...>-9105 ( 9105) [006] .... 82317.213625: binder_transaction: transaction=1572312 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
111805<...>-9105 ( 9105) [006] .... 82317.213630: binder_transaction_alloc_buf: transaction=1572312 data_size=80 offsets_size=0
111806<...>-9105 ( 9105) [006] d..4 82317.213635: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
111807 s.nexuslauncher-10023 (10023) [004] .... 82317.213638: binder_transaction: transaction=1572313 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
111808<...>-9203 ( 9090) [000] d..2 82317.213643: sched_switch: prev_comm=queued-work-loo prev_pid=9203 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111809 s.nexuslauncher-10023 (10023) [004] .... 82317.213643: binder_transaction_alloc_buf: transaction=1572313 data_size=80 offsets_size=0
111810          <idle>-0     (-----) [000] d..1 82317.213668: cpu_idle: state=0 cpu_id=0
111811<...>-9105 ( 9105) [006] d.h5 82317.213703: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
111812          <idle>-0     (-----) [000] dnh2 82317.213709: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
111813          <idle>-0     (-----) [000] .n.1 82317.213717: cpu_idle: state=4294967295 cpu_id=0
111814 s.nexuslauncher-10023 (10023) [004] d..4 82317.213718: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
111815          <idle>-0     (-----) [003] dnh2 82317.213731: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
111816          <idle>-0     (-----) [000] d..2 82317.213731: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
111817          <idle>-0     (-----) [003] .n.1 82317.213738: cpu_idle: state=4294967295 cpu_id=3
111818<...>-8874 ( 8858) [000] .... 82317.213746: binder_transaction_received: transaction=1572312
111819          <idle>-0     (-----) [003] d..2 82317.213746: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
111820          <idle>-0     (-----) [002] dnh2 82317.213756: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
111821          <idle>-0     (-----) [002] .n.1 82317.213765: cpu_idle: state=4294967295 cpu_id=2
111822 s.nexuslauncher-10023 (10023) [004] d..3 82317.213771: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
111823<...>-9105 ( 9105) [006] d..3 82317.213772: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
111824          <idle>-0     (-----) [002] d..2 82317.213778: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
111825         sugov:0-576   (  576) [003] .... 82317.213785: clk_set_rate: pwrcl_clk 902400000
111826<...>-13083 ( 8858) [002] .... 82317.213789: binder_transaction_received: transaction=1572313
111827 s.nexuslauncher-10023 (10023) [004] d..4 82317.213791: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
111828<...>-8874 ( 8858) [000] d..1 82317.213791: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
111829          <idle>-0     (-----) [005] .n.1 82317.213796: cpu_idle: state=4294967295 cpu_id=5
111830<...>-9105 ( 9105) [006] d..4 82317.213796: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
111831         sugov:0-576   (  576) [003] .... 82317.213800: clk_set_rate: cpu3_pwrcl_clk 825600000
111832          <idle>-0     (-----) [007] .n.1 82317.213805: cpu_idle: state=4294967295 cpu_id=7
111833          <idle>-0     (-----) [005] d..2 82317.213809: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
111834         sugov:0-576   (  576) [003] .... 82317.213811: clk_set_rate: cpu2_pwrcl_clk 825600000
111835          <idle>-0     (-----) [007] d..2 82317.213816: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
111836         sugov:0-576   (  576) [003] .... 82317.213819: clk_set_rate: cpu1_pwrcl_clk 825600000
111837<...>-8874 ( 8858) [000] d..2 82317.213827: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
111838         sugov:0-576   (  576) [003] .... 82317.213827: clk_set_rate: cpu0_pwrcl_clk 902400000
111839         sugov:0-576   (  576) [003] .... 82317.213838: cpu_frequency: state=902400 cpu_id=0
111840    RenderThread-16607 (10023) [005] d..2 82317.213843: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
111841<...>-13083 ( 8858) [002] d..2 82317.213843: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
111842          <idle>-0     (-----) [005] d..1 82317.213854: cpu_idle: state=0 cpu_id=5
111843         sugov:0-576   (  576) [003] .... 82317.213862: cpu_frequency: state=902400 cpu_id=1
111844         sugov:0-576   (  576) [003] .... 82317.213866: cpu_frequency: state=902400 cpu_id=2
111845         sugov:0-576   (  576) [003] .... 82317.213870: cpu_frequency: state=902400 cpu_id=3
111846    RenderThread-9436  ( 9105) [007] d..2 82317.213878: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
111847<...>-8874 ( 8858) [000] d..2 82317.213889: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
111848          <idle>-0     (-----) [007] d..1 82317.213890: cpu_idle: state=0 cpu_id=7
111849         sugov:0-576   (  576) [003] d..2 82317.213909: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111850  appEventThread-8881  ( 8858) [002] d..2 82317.213909: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
111851          <idle>-0     (-----) [000] d..1 82317.213911: cpu_idle: state=0 cpu_id=0
111852          <idle>-0     (-----) [003] d..1 82317.213920: cpu_idle: state=0 cpu_id=3
111853<...>-13083 ( 8858) [002] d..1 82317.213922: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
111854<...>-13083 ( 8858) [002] d..2 82317.213948: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
111855          <idle>-0     (-----) [003] .n.1 82317.213954: cpu_idle: state=4294967295 cpu_id=3
111856<...>-9105 ( 9105) [006] d..3 82317.213958: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
111857          <idle>-0     (-----) [003] d..2 82317.213965: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
111858<...>-9105 ( 9105) [006] d..4 82317.213976: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
111859          <idle>-0     (-----) [007] .n.1 82317.213982: cpu_idle: state=4294967295 cpu_id=7
111860          <idle>-0     (-----) [007] d..2 82317.213991: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
111861<...>-13083 ( 8858) [002] d..2 82317.214005: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111862<...>-9105 ( 9105) [006] d..2 82317.214005: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
111863          <idle>-0     (-----) [006] d..1 82317.214026: cpu_idle: state=0 cpu_id=6
111864          <idle>-0     (-----) [002] d..1 82317.214026: cpu_idle: state=0 cpu_id=2
111865  appEventThread-8881  ( 8858) [003] d..2 82317.214032: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
111866          <idle>-0     (-----) [003] d..1 82317.214041: cpu_idle: state=0 cpu_id=3
111867    RenderThread-9436  ( 9105) [007] d..1 82317.214082: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
111868    RenderThread-9436  ( 9105) [007] d..2 82317.214097: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
111869          <idle>-0     (-----) [006] .n.1 82317.214104: cpu_idle: state=4294967295 cpu_id=6
111870          <idle>-0     (-----) [006] d..2 82317.214114: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
111871    RenderThread-9436  ( 9105) [007] .... 82317.214154: binder_transaction: transaction=1572314 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
111872    RenderThread-9436  ( 9105) [007] .... 82317.214158: binder_transaction_alloc_buf: transaction=1572314 data_size=104 offsets_size=0
111873 s.nexuslauncher-10023 (10023) [004] d..3 82317.214161: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
111874    RenderThread-9436  ( 9105) [007] d..4 82317.214163: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
111875<...>-9105 ( 9105) [006] d..2 82317.214179: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
111876 s.nexuslauncher-10023 (10023) [004] d..4 82317.214181: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
111877    RenderThread-9436  ( 9105) [007] dn.5 82317.214182: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
111878          <idle>-0     (-----) [005] .n.1 82317.214186: cpu_idle: state=4294967295 cpu_id=5
111879          <idle>-0     (-----) [006] d..1 82317.214190: cpu_idle: state=0 cpu_id=6
111880          <idle>-0     (-----) [005] d..2 82317.214220: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
111881    RenderThread-9436  ( 9105) [007] d..2 82317.214223: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
111882  surfaceflinger-8858  ( 8858) [001] d..1 82317.214233: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
111883 s.nexuslauncher-10023 (10023) [004] d..2 82317.214234: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
111884<...>-13083 ( 8858) [007] .... 82317.214237: binder_transaction_received: transaction=1572314
111885          <idle>-0     (-----) [004] d..1 82317.214253: cpu_idle: state=0 cpu_id=4
111886  surfaceflinger-8858  ( 8858) [001] d..2 82317.214261: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
111887          <idle>-0     (-----) [002] .n.1 82317.214267: cpu_idle: state=4294967295 cpu_id=2
111888          <idle>-0     (-----) [002] d..2 82317.214279: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
111889<...>-13083 ( 8858) [007] .... 82317.214301: binder_transaction: transaction=1572315 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
111890<...>-13083 ( 8858) [007] .... 82317.214304: binder_transaction_alloc_buf: transaction=1572315 data_size=52 offsets_size=8
111891   sfEventThread-8882  ( 8858) [002] d..2 82317.214324: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
111892          <idle>-0     (-----) [002] d..1 82317.214336: cpu_idle: state=0 cpu_id=2
111893<...>-13083 ( 8858) [007] d..2 82317.214340: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
111894    RenderThread-9436  ( 9105) [007] .... 82317.214350: binder_transaction_received: transaction=1572315
111895    RenderThread-16607 (10023) [005] d..1 82317.214360: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111896    RenderThread-16607 (10023) [005] d..2 82317.214375: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
111897          <idle>-0     (-----) [004] .n.1 82317.214381: cpu_idle: state=4294967295 cpu_id=4
111898    RenderThread-16607 (10023) [005] d..1 82317.214390: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
111899          <idle>-0     (-----) [004] d..2 82317.214391: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
111900    RenderThread-16607 (10023) [005] d..2 82317.214412: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
111901          <idle>-0     (-----) [006] .n.1 82317.214418: cpu_idle: state=4294967295 cpu_id=6
111902          <idle>-0     (-----) [006] d..2 82317.214428: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
111903    RenderThread-16607 (10023) [005] .... 82317.214467: binder_transaction: transaction=1572316 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
111904    RenderThread-16607 (10023) [005] .... 82317.214471: binder_transaction_alloc_buf: transaction=1572316 data_size=104 offsets_size=0
111905    RenderThread-16607 (10023) [005] ...2 82317.214476: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
111906 s.nexuslauncher-10023 (10023) [004] d..2 82317.214479: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
111907    RenderThread-16607 (10023) [005] d..4 82317.214480: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
111908          <idle>-0     (-----) [004] d..1 82317.214490: cpu_idle: state=0 cpu_id=4
111909    RenderThread-16607 (10023) [005] dn.5 82317.214495: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
111910    RenderThread-16607 (10023) [005] d..2 82317.214503: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
111911<...>-13083 ( 8858) [005] .... 82317.214516: binder_transaction_received: transaction=1572316
111912<...>-13083 ( 8858) [005] .... 82317.214570: binder_transaction: transaction=1572317 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
111913<...>-13083 ( 8858) [005] .... 82317.214573: binder_transaction_alloc_buf: transaction=1572317 data_size=52 offsets_size=8
111914<...>-13083 ( 8858) [005] .... 82317.214580: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
111915<...>-13083 ( 8858) [005] d..2 82317.214618: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
111916    RenderThread-16607 (10023) [005] .... 82317.214629: binder_transaction_received: transaction=1572317
111917<...>-18840 ( 10023) [006] .... 82317.214723: binder_transaction: transaction=1572318 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
111918<...>-18840 ( 10023) [006] .... 82317.214728: binder_transaction_alloc_buf: transaction=1572318 data_size=684 offsets_size=48
111919<...>-18840 ( 10023) [006] ...2 82317.214745: binder_set_priority: proc=8858 thread=13083 old=120 => new=118 desired=118
111920<...>-18840 ( 10023) [006] d..4 82317.214749: sched_waking: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=005
111921<...>-18840 ( 10023) [006] d..5 82317.214769: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=006
111922<...>-18840 ( 10023) [006] d..2 82317.214781: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=118
111923<...>-13083 ( 8858) [006] .... 82317.214792: binder_transaction_received: transaction=1572318
111924<...>-13083 ( 8858) [006] .... 82317.214926: binder_transaction: transaction=1572319 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
111925<...>-13083 ( 8858) [006] .... 82317.214930: binder_transaction_alloc_buf: transaction=1572319 data_size=0 offsets_size=0
111926<...>-13083 ( 8858) [006] d..2 82317.214932: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
111927<...>-13083 ( 8858) [006] d..3 82317.214944: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
111928<...>-13083 ( 8858) [006] .... 82317.214947: binder_set_priority: proc=8858 thread=13083 old=118 => new=120 desired=120
111929<...>-13083 ( 8858) [006] d..2 82317.214986: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
111930<...>-18840 ( 10023) [006] .... 82317.214996: binder_transaction_received: transaction=1572319
111931<...>-18840 ( 10023) [006] d..2 82317.215061: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
111932          <idle>-0     (-----) [006] d..1 82317.215079: cpu_idle: state=0 cpu_id=6
111933          <idle>-0     (-----) [003] d.s2 82317.215146: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111934          <idle>-0     (-----) [003] dns3 82317.215172: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
111935          <idle>-0     (-----) [003] .n.1 82317.215188: cpu_idle: state=4294967295 cpu_id=3
111936          <idle>-0     (-----) [003] d..2 82317.215198: 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
111937     rcu_preempt-7     (    7) [003] d..2 82317.215237: 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
111938          <idle>-0     (-----) [003] d..1 82317.215251: cpu_idle: state=0 cpu_id=3
111939          <idle>-0     (-----) [006] ...1 82317.215315: cpu_idle: state=4294967295 cpu_id=6
111940          <idle>-0     (-----) [006] d..1 82317.215319: cpu_idle: state=0 cpu_id=6
111941          <idle>-0     (-----) [000] ...1 82317.215352: cpu_idle: state=4294967295 cpu_id=0
111942          <idle>-0     (-----) [000] d..1 82317.215357: cpu_idle: state=0 cpu_id=0
111943  surfaceflinger-8858  ( 8858) [001] ...1 82317.215564: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
111944  surfaceflinger-8858  ( 8858) [001] ...1 82317.215573: tracing_mark_write: E|8858
111945    RenderThread-16607 (10023) [005] d..2 82317.215614: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111946  surfaceflinger-8858  ( 8858) [001] .... 82317.215641: binder_transaction: transaction=1572320 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
111947          <idle>-0     (-----) [003] dnh2 82317.215647: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111948  surfaceflinger-8858  ( 8858) [001] .... 82317.215648: binder_transaction_alloc_buf: transaction=1572320 data_size=620 offsets_size=112
111949          <idle>-0     (-----) [003] .n.1 82317.215653: cpu_idle: state=4294967295 cpu_id=3
111950          <idle>-0     (-----) [003] d..2 82317.215662: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
111951  surfaceflinger-8858  ( 8858) [001] ...2 82317.215677: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
111952  surfaceflinger-8858  ( 8858) [001] d..4 82317.215685: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
111953    RenderThread-9436  ( 9105) [007] d..2 82317.215709: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
111954  surfaceflinger-8858  ( 8858) [001] d..5 82317.215711: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
111955          <idle>-0     (-----) [002] .n.1 82317.215717: cpu_idle: state=4294967295 cpu_id=2
111956          <idle>-0     (-----) [007] d..1 82317.215727: cpu_idle: state=0 cpu_id=7
111957          <idle>-0     (-----) [002] d..2 82317.215728: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
111958 kgsl_worker_thr-258   (  258) [003] d..2 82317.215738: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
111959 [email protected]   (  619) [002] .... 82317.215742: binder_transaction_received: transaction=1572320
111960          <idle>-0     (-----) [003] d..1 82317.215748: cpu_idle: state=0 cpu_id=3
111961  surfaceflinger-8858  ( 8858) [001] d..2 82317.215753: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
111962    RenderThread-16607 (10023) [005] .... 82317.215774: binder_transaction: transaction=1572321 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
111963          <idle>-0     (-----) [001] d..1 82317.215779: cpu_idle: state=0 cpu_id=1
111964    RenderThread-16607 (10023) [005] .... 82317.215779: binder_transaction_alloc_buf: transaction=1572321 data_size=192 offsets_size=8
111965    RenderThread-16607 (10023) [005] ...2 82317.215788: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
111966    RenderThread-16607 (10023) [005] d..4 82317.215792: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
111967          <idle>-0     (-----) [007] d.h2 82317.215793: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
111968 [email protected]   (  619) [002] ...1 82317.215798: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
111969          <idle>-0     (-----) [007] d.h3 82317.215803: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
111970          <idle>-0     (-----) [007] dnh3 82317.215806: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
111971    RenderThread-16607 (10023) [005] dn.5 82317.215811: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
111972          <idle>-0     (-----) [007] .n.1 82317.215813: cpu_idle: state=4294967295 cpu_id=7
111973    RenderThread-16607 (10023) [005] d..2 82317.215820: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
111974          <idle>-0     (-----) [007] d..2 82317.215822: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
111975<...>-13083 ( 8858) [005] .... 82317.215833: binder_transaction_received: transaction=1572321
111976    RenderThread-9436  ( 9105) [007] d..1 82317.215875: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111977          <idle>-0     (-----) [003] dnh2 82317.215899: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
111978          <idle>-0     (-----) [003] .n.1 82317.215904: cpu_idle: state=4294967295 cpu_id=3
111979          <idle>-0     (-----) [003] d..2 82317.215913: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
111980 [email protected]   (  619) [002] ...1 82317.215947: tracing_mark_write: B|619|HWCSession::PresentDisplay::
111981 kgsl_worker_thr-258   (  258) [003] d..2 82317.215952: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
111982<...>-13083 ( 8858) [005] .... 82317.215959: binder_transaction: transaction=1572322 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
111983<...>-13083 ( 8858) [005] .... 82317.215964: binder_transaction_alloc_buf: transaction=1572322 data_size=68 offsets_size=0
111984<...>-13083 ( 8858) [005] .... 82317.215968: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
111985 kgsl_worker_thr-258   (  258) [003] d..3 82317.215974: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
111986 kgsl_worker_thr-258   (  258) [003] d..2 82317.215989: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
111987<...>-13083 ( 8858) [005] d..2 82317.216009: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
111988    RenderThread-16607 (10023) [005] .... 82317.216024: binder_transaction_received: transaction=1572322
111989          <idle>-0     (-----) [000] ...1 82317.216085: cpu_idle: state=4294967295 cpu_id=0
111990    RenderThread-9436  ( 9105) [007] .... 82317.216091: binder_transaction: transaction=1572323 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
111991          <idle>-0     (-----) [000] d..1 82317.216092: cpu_idle: state=0 cpu_id=0
111992    RenderThread-9436  ( 9105) [007] .... 82317.216097: binder_transaction_alloc_buf: transaction=1572323 data_size=192 offsets_size=8
111993    RenderThread-9436  ( 9105) [007] d..4 82317.216107: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
111994    RenderThread-9436  ( 9105) [007] dn.5 82317.216133: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
111995    RenderThread-9436  ( 9105) [007] d..2 82317.216143: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
111996    RenderThread-16607 (10023) [005] d..2 82317.216149: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
111997<...>-13083 ( 8858) [007] .... 82317.216158: binder_transaction_received: transaction=1572323
111998          <idle>-0     (-----) [005] d..1 82317.216171: cpu_idle: state=0 cpu_id=5
111999  kworker/u16:15-1311  ( 1311) [003] d..2 82317.216215: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112000          <idle>-0     (-----) [003] d..1 82317.216232: cpu_idle: state=0 cpu_id=3
112001<...>-13083 ( 8858) [007] .... 82317.216271: binder_transaction: transaction=1572324 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
112002<...>-13083 ( 8858) [007] .... 82317.216275: binder_transaction_alloc_buf: transaction=1572324 data_size=68 offsets_size=0
112003<...>-13083 ( 8858) [007] d..2 82317.216306: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
112004    RenderThread-9436  ( 9105) [007] .... 82317.216317: binder_transaction_received: transaction=1572324
112005    RenderThread-9436  ( 9105) [007] d..2 82317.216400: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
112006          <idle>-0     (-----) [007] d..1 82317.216416: cpu_idle: state=0 cpu_id=7
112007 [email protected]   (  619) [002] ...1 82317.216645: tracing_mark_write: B|619|HWDeviceDRM::Validate::
112008          <idle>-0     (-----) [001] ...1 82317.217025: cpu_idle: state=4294967295 cpu_id=1
112009          <idle>-0     (-----) [001] d..1 82317.217031: cpu_idle: state=0 cpu_id=1
112010          <idle>-0     (-----) [000] d.h3 82317.217330: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
112011          <idle>-0     (-----) [000] d.h4 82317.217349: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
112012 [email protected]   (  619) [002] ...1 82317.217353: tracing_mark_write: E|619
112013          <idle>-0     (-----) [003] .n.1 82317.217356: cpu_idle: state=4294967295 cpu_id=3
112014          <idle>-0     (-----) [000] ...1 82317.217362: cpu_idle: state=4294967295 cpu_id=0
112015          <idle>-0     (-----) [000] d..1 82317.217367: cpu_idle: state=0 cpu_id=0
112016          <idle>-0     (-----) [003] d..2 82317.217368: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
112017 kgsl_worker_thr-258   (  258) [003] d..2 82317.217428: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112018          <idle>-0     (-----) [003] d..1 82317.217439: cpu_idle: state=0 cpu_id=3
112019          <idle>-0     (-----) [000] d.h3 82317.217447: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
112020          <idle>-0     (-----) [000] d.h4 82317.217462: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
112021          <idle>-0     (-----) [003] .n.1 82317.217468: cpu_idle: state=4294967295 cpu_id=3
112022          <idle>-0     (-----) [000] ...1 82317.217473: cpu_idle: state=4294967295 cpu_id=0
112023          <idle>-0     (-----) [003] d..2 82317.217478: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
112024          <idle>-0     (-----) [000] d..1 82317.217480: cpu_idle: state=0 cpu_id=0
112025 [email protected]   (  619) [002] ...1 82317.217547: tracing_mark_write: B|619|HWDeviceDRM::Commit::
112026 [email protected]   (  619) [002] ...1 82317.217560: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
112027 kgsl_worker_thr-258   (  258) [003] d..2 82317.217611: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112028          <idle>-0     (-----) [003] d..1 82317.217625: cpu_idle: state=0 cpu_id=3
112029 [email protected]   (  619) [002] d..2 82317.218144: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112030 [email protected]   (  619) [002] d..3 82317.218174: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112031          <idle>-0     (-----) [000] .n.1 82317.218180: cpu_idle: state=4294967295 cpu_id=0
112032          <idle>-0     (-----) [000] d..2 82317.218194: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
112033 [email protected]   (  619) [002] ...1 82317.218291: tracing_mark_write: E|619
112034 [email protected]   (  619) [002] ...1 82317.218298: tracing_mark_write: E|619
112035 [email protected]   (  619) [002] ...1 82317.218363: tracing_mark_write: E|619
112036 [email protected]   (  619) [002] ...1 82317.218423: tracing_mark_write: E|619
112037 crtc_commit:111-321   (  321) [000] d.s2 82317.218488: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112038 [email protected]   (  619) [002] .... 82317.218504: binder_transaction: transaction=1572325 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
112039 [email protected]   (  619) [002] .... 82317.218511: binder_transaction_alloc_buf: transaction=1572325 data_size=656 offsets_size=128
112040 [email protected]   (  619) [002] d..2 82317.218537: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
112041 crtc_commit:111-321   (  321) [000] d.s3 82317.218540: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
112042 [email protected]   (  619) [002] d..3 82317.218558: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
112043          <idle>-0     (-----) [001] .n.1 82317.218562: cpu_idle: state=4294967295 cpu_id=1
112044 [email protected]   (  619) [002] .... 82317.218564: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
112045          <idle>-0     (-----) [001] d..2 82317.218576: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
112046  surfaceflinger-8858  ( 8858) [001] .... 82317.218587: binder_transaction_received: transaction=1572325
112047 [email protected]   (  619) [002] d..2 82317.218697: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112048  kworker/u16:15-1311  ( 1311) [002] .... 82317.218811: clk_set_rate: l3_cluster0_vote_clk 403200000
112049  kworker/u16:15-1311  ( 1311) [002] .... 82317.218818: clk_set_rate: l3_clk 403200000
112050 crtc_commit:111-321   (  321) [000] d..2 82317.219087: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
112051          <idle>-0     (-----) [000] d..1 82317.219107: cpu_idle: state=0 cpu_id=0
112052  kworker/u16:15-1311  ( 1311) [002] d..2 82317.219154: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
112053          <idle>-0     (-----) [002] d..1 82317.219173: cpu_idle: state=0 cpu_id=2
112054  surfaceflinger-8858  ( 8858) [001] d.s1 82317.219173: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
112055  surfaceflinger-8858  ( 8858) [001] d.s2 82317.219196: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
112056  surfaceflinger-8858  ( 8858) [001] d..2 82317.219276: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
112057     ksoftirqd/1-18    (   18) [001] d.s2 82317.219297: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
112058     ksoftirqd/1-18    (   18) [001] d.s3 82317.219311: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
112059     ksoftirqd/1-18    (   18) [001] d.s3 82317.219321: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
112060          <idle>-0     (-----) [002] .n.1 82317.219328: cpu_idle: state=4294967295 cpu_id=2
112061          <idle>-0     (-----) [002] d..2 82317.219342: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112062     ksoftirqd/1-18    (   18) [001] d..2 82317.219352: 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
112063          <idle>-0     (-----) [001] d..1 82317.219371: cpu_idle: state=0 cpu_id=1
112064  kworker/u16:15-1311  ( 1311) [002] d..2 82317.219530: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
112065          <idle>-0     (-----) [002] d..1 82317.219546: cpu_idle: state=0 cpu_id=2
112066          <idle>-0     (-----) [001] d.s3 82317.219551: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
112067          <idle>-0     (-----) [001] d.s4 82317.219563: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
112068          <idle>-0     (-----) [001] d.s4 82317.219571: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
112069          <idle>-0     (-----) [002] .n.1 82317.219578: cpu_idle: state=4294967295 cpu_id=2
112070          <idle>-0     (-----) [001] ...1 82317.219581: cpu_idle: state=4294967295 cpu_id=1
112071          <idle>-0     (-----) [001] d..1 82317.219588: cpu_idle: state=0 cpu_id=1
112072          <idle>-0     (-----) [002] d..2 82317.219590: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112073  kworker/u16:15-1311  ( 1311) [002] d..2 82317.219619: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112074          <idle>-0     (-----) [002] d..1 82317.219630: cpu_idle: state=0 cpu_id=2
112075          <idle>-0     (-----) [000] ...1 82317.220644: cpu_idle: state=4294967295 cpu_id=0
112076          <idle>-0     (-----) [000] d..1 82317.220649: cpu_idle: state=0 cpu_id=0
112077          <idle>-0     (-----) [002] ...1 82317.221075: cpu_idle: state=4294967295 cpu_id=2
112078          <idle>-0     (-----) [002] d..1 82317.221079: cpu_idle: state=0 cpu_id=2
112079          <idle>-0     (-----) [003] d.s2 82317.221806: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112080          <idle>-0     (-----) [003] dns3 82317.221826: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112081          <idle>-0     (-----) [003] dns3 82317.221835: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
112082          <idle>-0     (-----) [003] dns4 82317.221868: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112083          <idle>-0     (-----) [003] .n.1 82317.221876: cpu_idle: state=4294967295 cpu_id=3
112084          <idle>-0     (-----) [003] d..2 82317.221888: 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
112085     rcu_preempt-7     (    7) [003] d..2 82317.221901: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112086     rcu_preempt-7     (    7) [003] d..3 82317.221921: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112087     rcu_preempt-7     (    7) [003] d..2 82317.221932: 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
112088         rcuop/0-10    (   10) [003] d..2 82317.221949: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112089         rcuop/0-10    (   10) [003] d..3 82317.221962: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112090         rcuop/0-10    (   10) [003] d..2 82317.221970: 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
112091     rcu_preempt-7     (    7) [003] d..2 82317.221984: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112092  kworker/u16:15-1311  ( 1311) [003] d..2 82317.222156: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112093          <idle>-0     (-----) [001] d.s3 82317.222166: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112094          <idle>-0     (-----) [003] d..1 82317.222170: cpu_idle: state=0 cpu_id=3
112095          <idle>-0     (-----) [001] d.s4 82317.222176: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
112096          <idle>-0     (-----) [001] d.s4 82317.222184: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112097          <idle>-0     (-----) [003] .n.1 82317.222191: cpu_idle: state=4294967295 cpu_id=3
112098          <idle>-0     (-----) [001] ...1 82317.222193: cpu_idle: state=4294967295 cpu_id=1
112099          <idle>-0     (-----) [001] d..1 82317.222199: cpu_idle: state=0 cpu_id=1
112100          <idle>-0     (-----) [003] d..2 82317.222203: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112101  kworker/u16:15-1311  ( 1311) [003] d..2 82317.222236: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112102          <idle>-0     (-----) [003] d..1 82317.222245: cpu_idle: state=0 cpu_id=3
112103          <idle>-0     (-----) [003] d.h3 82317.224923: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112104          <idle>-0     (-----) [003] dnh4 82317.224939: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112105          <idle>-0     (-----) [003] .n.1 82317.224948: cpu_idle: state=4294967295 cpu_id=3
112106          <idle>-0     (-----) [003] d..2 82317.224959: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112107  kworker/u16:15-1311  ( 1311) [003] d..1 82317.224986: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
112108  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225004: clk_disable: gcc_ufs_phy_phy_aux_clk
112109  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225016: clk_disable: gcc_ufs_phy_phy_aux_clk_src
112110  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225026: clk_disable: gcc_ufs_mem_clkref_clk
112111  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225042: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
112112  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225048: clk_disable: gcc_ufs_phy_axi_clk
112113  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225058: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
112114  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225063: clk_disable: gcc_aggre_ufs_phy_axi_clk
112115  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225071: clk_disable: gcc_ufs_phy_axi_clk_src
112116  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225078: clk_disable: gcc_ufs_phy_ahb_clk
112117  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225087: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
112118  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225092: clk_disable: gcc_ufs_phy_unipro_core_clk
112119  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225100: clk_disable: gcc_ufs_phy_unipro_core_clk_src
112120  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225147: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
112121  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225154: clk_disable: gcc_ufs_phy_ice_core_clk
112122  kworker/u16:15-1311  ( 1311) [003] d..1 82317.225162: clk_disable: gcc_ufs_phy_ice_core_clk_src
112123          <idle>-0     (-----) [001] ...1 82317.225287: cpu_idle: state=4294967295 cpu_id=1
112124          <idle>-0     (-----) [001] d..1 82317.225293: cpu_idle: state=0 cpu_id=1
112125  kworker/u16:15-1311  ( 1311) [003] d..2 82317.225502: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112126          <idle>-0     (-----) [003] d..1 82317.225515: cpu_idle: state=0 cpu_id=3
112127          <idle>-0     (-----) [001] d.s3 82317.225535: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112128          <idle>-0     (-----) [001] d.s4 82317.225545: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
112129          <idle>-0     (-----) [001] d.s4 82317.225553: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112130          <idle>-0     (-----) [003] .n.1 82317.225559: cpu_idle: state=4294967295 cpu_id=3
112131          <idle>-0     (-----) [001] ...1 82317.225562: cpu_idle: state=4294967295 cpu_id=1
112132          <idle>-0     (-----) [001] d..1 82317.225567: cpu_idle: state=0 cpu_id=1
112133          <idle>-0     (-----) [003] d..2 82317.225570: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112134  kworker/u16:15-1311  ( 1311) [003] d..2 82317.225605: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112135          <idle>-0     (-----) [003] d..1 82317.225613: cpu_idle: state=0 cpu_id=3
112136          <idle>-0     (-----) [000] d.h5 82317.226689: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112137          <idle>-0     (-----) [000] d.h6 82317.226710: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112138          <idle>-0     (-----) [003] .n.1 82317.226714: cpu_idle: state=4294967295 cpu_id=3
112139          <idle>-0     (-----) [000] d.h5 82317.226716: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112140          <idle>-0     (-----) [003] d..2 82317.226723: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
112141          <idle>-0     (-----) [000] dnh6 82317.226724: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112142          <idle>-0     (-----) [000] .n.1 82317.226737: cpu_idle: state=4294967295 cpu_id=0
112143          <idle>-0     (-----) [000] d..2 82317.226748: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
112144  crtc_event:111-322   (  322) [003] d..2 82317.226760: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112145          <idle>-0     (-----) [003] d..1 82317.226767: cpu_idle: state=0 cpu_id=3
112146 crtc_commit:111-321   (  321) [000] d..2 82317.226901: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
112147          <idle>-0     (-----) [000] d..1 82317.226911: cpu_idle: state=0 cpu_id=0
112148          <idle>-0     (-----) [000] d.s3 82317.228465: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112149          <idle>-0     (-----) [003] d.s2 82317.228477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112150          <idle>-0     (-----) [000] d.s4 82317.228484: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112151          <idle>-0     (-----) [003] dns3 82317.228503: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112152          <idle>-0     (-----) [003] dns3 82317.228512: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112153          <idle>-0     (-----) [000] ...1 82317.228513: cpu_idle: state=4294967295 cpu_id=0
112154          <idle>-0     (-----) [000] d..1 82317.228518: cpu_idle: state=0 cpu_id=0
112155          <idle>-0     (-----) [003] dns4 82317.228524: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112156          <idle>-0     (-----) [003] .n.1 82317.228541: cpu_idle: state=4294967295 cpu_id=3
112157          <idle>-0     (-----) [003] d..2 82317.228549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
112158  crtc_event:111-322   (  322) [003] d..2 82317.228569: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
112159     rcu_preempt-7     (    7) [003] d..2 82317.228580: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112160     rcu_preempt-7     (    7) [003] d..3 82317.228594: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112161     rcu_preempt-7     (    7) [003] d..2 82317.228605: 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
112162         rcuop/0-10    (   10) [003] d..2 82317.228610: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112163         rcuop/0-10    (   10) [003] d..3 82317.228627: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112164         rcuop/0-10    (   10) [003] d..2 82317.228648: 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
112165         rcuop/1-21    (   21) [003] d..2 82317.228669: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112166  kworker/u16:15-1311  ( 1311) [003] d..2 82317.228863: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112167          <idle>-0     (-----) [003] d..1 82317.228882: cpu_idle: state=0 cpu_id=3
112168          <idle>-0     (-----) [001] d.s3 82317.228884: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112169          <idle>-0     (-----) [001] d.s4 82317.228894: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
112170          <idle>-0     (-----) [001] d.s4 82317.228902: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112171          <idle>-0     (-----) [003] .n.1 82317.228908: cpu_idle: state=4294967295 cpu_id=3
112172          <idle>-0     (-----) [001] ...1 82317.228911: cpu_idle: state=4294967295 cpu_id=1
112173          <idle>-0     (-----) [001] d..1 82317.228917: cpu_idle: state=0 cpu_id=1
112174          <idle>-0     (-----) [003] d..2 82317.228921: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112175  kworker/u16:15-1311  ( 1311) [003] .... 82317.228979: clk_set_rate: l3_cluster0_vote_clk 300000000
112176  kworker/u16:15-1311  ( 1311) [003] .... 82317.228984: clk_set_rate: l3_clk 300000000
112177          <idle>-0     (-----) [000] d.h5 82317.229033: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112178  kworker/u16:15-1311  ( 1311) [003] d..2 82317.229033: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112179          <idle>-0     (-----) [000] dnh6 82317.229044: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112180          <idle>-0     (-----) [003] d..1 82317.229050: cpu_idle: state=0 cpu_id=3
112181          <idle>-0     (-----) [000] .n.1 82317.229056: cpu_idle: state=4294967295 cpu_id=0
112182          <idle>-0     (-----) [000] d..2 82317.229066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
112183 crtc_commit:111-321   (  321) [000] d..2 82317.229149: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112184          <idle>-0     (-----) [000] d..1 82317.229162: cpu_idle: state=0 cpu_id=0
112185          <idle>-0     (-----) [000] d.h5 82317.229326: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112186          <idle>-0     (-----) [000] d.h6 82317.229343: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112187          <idle>-0     (-----) [003] .n.1 82317.229350: cpu_idle: state=4294967295 cpu_id=3
112188          <idle>-0     (-----) [003] d..2 82317.229363: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
112189          <idle>-0     (-----) [000] ...1 82317.229365: cpu_idle: state=4294967295 cpu_id=0
112190          <idle>-0     (-----) [000] d..1 82317.229369: cpu_idle: state=0 cpu_id=0
112191  crtc_event:111-322   (  322) [003] d..2 82317.229398: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112192          <idle>-0     (-----) [003] d..1 82317.229411: cpu_idle: state=0 cpu_id=3
112193          <idle>-0     (-----) [000] d.h2 82317.229507: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
112194          <idle>-0     (-----) [000] dnh3 82317.229519: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
112195          <idle>-0     (-----) [000] .n.1 82317.229527: cpu_idle: state=4294967295 cpu_id=0
112196          <idle>-0     (-----) [000] d..2 82317.229539: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
112197        DispSync-8879  ( 8858) [000] d..1 82317.229568: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112198        DispSync-8879  ( 8858) [000] d..2 82317.229583: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112199          <idle>-0     (-----) [002] .n.1 82317.229588: cpu_idle: state=4294967295 cpu_id=2
112200        DispSync-8879  ( 8858) [000] d..1 82317.229589: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
112201          <idle>-0     (-----) [002] d..2 82317.229599: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
112202        DispSync-8879  ( 8858) [000] d..2 82317.229600: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
112203          <idle>-0     (-----) [003] .n.1 82317.229607: cpu_idle: state=4294967295 cpu_id=3
112204          <idle>-0     (-----) [003] d..2 82317.229617: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
112205        DispSync-8879  ( 8858) [000] d..2 82317.229641: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112206          <idle>-0     (-----) [000] d..1 82317.229655: cpu_idle: state=0 cpu_id=0
112207   sfEventThread-8882  ( 8858) [002] d..3 82317.229661: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
112208  appEventThread-8881  ( 8858) [003] d..3 82317.229681: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
112209   sfEventThread-8882  ( 8858) [002] d..4 82317.229685: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
112210          <idle>-0     (-----) [001] .n.1 82317.229689: cpu_idle: state=4294967295 cpu_id=1
112211          <idle>-0     (-----) [001] d..2 82317.229704: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
112212  appEventThread-8881  ( 8858) [003] d..4 82317.229721: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
112213          <idle>-0     (-----) [000] .n.1 82317.229727: cpu_idle: state=4294967295 cpu_id=0
112214   sfEventThread-8882  ( 8858) [002] d..2 82317.229731: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112215          <idle>-0     (-----) [002] d..1 82317.229748: cpu_idle: state=0 cpu_id=2
112216          <idle>-0     (-----) [000] d..2 82317.229791: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
112217  appEventThread-8881  ( 8858) [003] d..3 82317.229804: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
112218          <idle>-0     (-----) [004] dnh2 82317.229829: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
112219          <idle>-0     (-----) [004] .n.1 82317.229833: cpu_idle: state=4294967295 cpu_id=4
112220          <idle>-0     (-----) [004] d..2 82317.229842: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
112221  appEventThread-8881  ( 8858) [003] d..2 82317.229866: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112222          <idle>-0     (-----) [003] d..1 82317.229887: cpu_idle: state=0 cpu_id=3
112223 s.nexuslauncher-10023 (10023) [004] .... 82317.230084: binder_transaction: transaction=1572326 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
112224 s.nexuslauncher-10023 (10023) [004] .... 82317.230090: binder_transaction_alloc_buf: transaction=1572326 data_size=80 offsets_size=0
112225 s.nexuslauncher-10023 (10023) [004] d..4 82317.230096: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
112226<...>-9105 ( 9105) [000] .... 82317.230165: binder_transaction: transaction=1572327 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
112227          <idle>-0     (-----) [002] dnh2 82317.230166: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
112228          <idle>-0     (-----) [002] .n.1 82317.230173: cpu_idle: state=4294967295 cpu_id=2
112229<...>-9105 ( 9105) [000] .... 82317.230173: binder_transaction_alloc_buf: transaction=1572327 data_size=80 offsets_size=0
112230<...>-9105 ( 9105) [000] d..4 82317.230181: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
112231          <idle>-0     (-----) [002] d..2 82317.230184: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
112232 s.nexuslauncher-10023 (10023) [004] d..3 82317.230188: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
112233 s.nexuslauncher-10023 (10023) [004] d..4 82317.230203: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
112234          <idle>-0     (-----) [005] .n.1 82317.230211: cpu_idle: state=4294967295 cpu_id=5
112235<...>-9105 ( 9105) [000] d..5 82317.230223: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
112236          <idle>-0     (-----) [005] d..2 82317.230224: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
112237          <idle>-0     (-----) [003] .n.1 82317.230230: cpu_idle: state=4294967295 cpu_id=3
112238<...>-13083 ( 8858) [002] .... 82317.230234: binder_transaction_received: transaction=1572326
112239          <idle>-0     (-----) [003] d..2 82317.230244: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
112240<...>-8874 ( 8858) [003] .... 82317.230254: binder_transaction_received: transaction=1572327
112241    RenderThread-16607 (10023) [005] d..2 82317.230260: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
112242          <idle>-0     (-----) [005] d..1 82317.230271: cpu_idle: state=0 cpu_id=5
112243<...>-13083 ( 8858) [002] d..1 82317.230274: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
112244<...>-9105 ( 9105) [000] d..3 82317.230279: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
112245<...>-13083 ( 8858) [002] dn.2 82317.230299: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
112246<...>-13083 ( 8858) [002] d..2 82317.230309: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
112247  surfaceflinger-8858  ( 8858) [001] d..2 82317.230311: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112248          <idle>-0     (-----) [006] dnh2 82317.230318: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
112249          <idle>-0     (-----) [006] .n.1 82317.230322: cpu_idle: state=4294967295 cpu_id=6
112250<...>-8874 ( 8858) [003] d..2 82317.230331: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112251  appEventThread-8881  ( 8858) [002] d..2 82317.230333: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
112252          <idle>-0     (-----) [006] d..2 82317.230333: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
112253<...>-13083 ( 8858) [002] d..1 82317.230338: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
112254  surfaceflinger-8858  ( 8858) [001] d..3 82317.230347: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112255          <idle>-0     (-----) [003] d..2 82317.230362: 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
112256<...>-13083 ( 8858) [002] d..2 82317.230373: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
112257         rcuop/0-10    (   10) [003] d..2 82317.230381: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
112258    RenderThread-9436  ( 9105) [006] d..2 82317.230388: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
112259          <idle>-0     (-----) [006] d..1 82317.230400: cpu_idle: state=0 cpu_id=6
112260  appEventThread-8881  ( 8858) [003] d..1 82317.230415: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
112261<...>-13083 ( 8858) [002] d..2 82317.230432: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112262          <idle>-0     (-----) [002] d..1 82317.230449: cpu_idle: state=0 cpu_id=2
112263          <idle>-0     (-----) [005] dnh2 82317.230496: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
112264          <idle>-0     (-----) [005] .n.1 82317.230501: cpu_idle: state=4294967295 cpu_id=5
112265          <idle>-0     (-----) [005] d..2 82317.230510: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
112266  appEventThread-8881  ( 8858) [003] d..2 82317.230523: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
112267<...>-8874 ( 8858) [005] d..1 82317.230528: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
112268         rcuop/0-10    (   10) [003] d..2 82317.230529: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112269         rcuop/0-10    (   10) [003] d..3 82317.230552: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112270         rcuop/0-10    (   10) [003] d..2 82317.230563: 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
112271          <idle>-0     (-----) [002] dnh2 82317.230564: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
112272          <idle>-0     (-----) [002] .n.1 82317.230572: cpu_idle: state=4294967295 cpu_id=2
112273 s.nexuslauncher-10023 (10023) [004] d..3 82317.230574: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
112274          <idle>-0     (-----) [002] d..2 82317.230581: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
112275     rcu_preempt-7     (    7) [003] d..2 82317.230591: 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
112276<...>-8874 ( 8858) [005] d..2 82317.230601: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
112277 s.nexuslauncher-10023 (10023) [004] d..4 82317.230605: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
112278          <idle>-0     (-----) [003] d..1 82317.230607: cpu_idle: state=0 cpu_id=3
112279          <idle>-0     (-----) [006] .n.1 82317.230611: cpu_idle: state=4294967295 cpu_id=6
112280          <idle>-0     (-----) [005] d..1 82317.230614: cpu_idle: state=0 cpu_id=5
112281          <idle>-0     (-----) [006] d..2 82317.230621: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
112282 s.nexuslauncher-10023 (10023) [004] d..2 82317.230635: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
112283  surfaceflinger-8858  ( 8858) [001] d..1 82317.230635: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112284          <idle>-0     (-----) [004] d..1 82317.230652: cpu_idle: state=0 cpu_id=4
112285  appEventThread-8881  ( 8858) [002] d..2 82317.230653: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112286  surfaceflinger-8858  ( 8858) [001] d..2 82317.230666: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112287          <idle>-0     (-----) [002] d..2 82317.230673: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
112288   sfEventThread-8882  ( 8858) [002] d..2 82317.230713: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112289          <idle>-0     (-----) [002] d..1 82317.230726: cpu_idle: state=0 cpu_id=2
112290<...>-9105 ( 9105) [000] d..3 82317.230772: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
112291    RenderThread-16607 (10023) [006] d..1 82317.230793: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
112292    RenderThread-16607 (10023) [006] d..2 82317.230811: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
112293          <idle>-0     (-----) [004] .n.1 82317.230818: cpu_idle: state=4294967295 cpu_id=4
112294<...>-9105 ( 9105) [000] d..4 82317.230818: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
112295          <idle>-0     (-----) [002] .n.1 82317.230823: cpu_idle: state=4294967295 cpu_id=2
112296          <idle>-0     (-----) [004] d..2 82317.230827: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
112297    RenderThread-16607 (10023) [006] d..1 82317.230828: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
112298          <idle>-0     (-----) [002] d..2 82317.230885: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
112299    RenderThread-16607 (10023) [006] d..2 82317.230889: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=005
112300          <idle>-0     (-----) [005] .n.1 82317.230894: cpu_idle: state=4294967295 cpu_id=5
112301          <idle>-0     (-----) [005] d..2 82317.230904: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
112302 s.nexuslauncher-10023 (10023) [004] d..2 82317.230919: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
112303<...>-9105 ( 9105) [000] d..2 82317.230921: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112304          <idle>-0     (-----) [004] d..1 82317.230930: cpu_idle: state=0 cpu_id=4
112305          <idle>-0     (-----) [000] d..1 82317.230948: cpu_idle: state=0 cpu_id=0
112306    RenderThread-16607 (10023) [006] .... 82317.230949: binder_transaction: transaction=1572328 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
112307    RenderThread-16607 (10023) [006] .... 82317.230953: binder_transaction_alloc_buf: transaction=1572328 data_size=104 offsets_size=0
112308    RenderThread-16607 (10023) [006] ...2 82317.230957: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
112309    RenderThread-16607 (10023) [006] d..4 82317.230961: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
112310    RenderThread-16607 (10023) [006] d..5 82317.230975: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
112311    RenderThread-16607 (10023) [006] d..2 82317.230986: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
112312<...>-8874 ( 8858) [006] .... 82317.230998: binder_transaction_received: transaction=1572328
112313    RenderThread-9436  ( 9105) [002] d..1 82317.231056: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
112314<...>-8874 ( 8858) [006] .... 82317.231063: binder_transaction: transaction=1572329 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
112315<...>-8874 ( 8858) [006] .... 82317.231068: binder_transaction_alloc_buf: transaction=1572329 data_size=52 offsets_size=8
112316<...>-8874 ( 8858) [006] d..2 82317.231075: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
112317    RenderThread-9436  ( 9105) [002] d..2 82317.231081: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
112318<...>-8874 ( 8858) [006] d..3 82317.231086: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
112319<...>-8874 ( 8858) [006] .... 82317.231089: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
112320          <idle>-0     (-----) [000] .n.1 82317.231089: cpu_idle: state=4294967295 cpu_id=0
112321<...>-8874 ( 8858) [006] d..2 82317.231099: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
112322          <idle>-0     (-----) [000] d..2 82317.231104: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
112323    RenderThread-16607 (10023) [006] .... 82317.231108: binder_transaction_received: transaction=1572329
112324    RenderThread-9436  ( 9105) [002] .... 82317.231161: binder_transaction: transaction=1572330 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
112325    RenderThread-9436  ( 9105) [002] .... 82317.231166: binder_transaction_alloc_buf: transaction=1572330 data_size=104 offsets_size=0
112326    RenderThread-9436  ( 9105) [002] d..4 82317.231173: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
112327    RenderThread-9436  ( 9105) [002] dn.5 82317.231190: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
112328<...>-18840 ( 10023) [005] .... 82317.231198: binder_transaction: transaction=1572331 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
112329<...>-18840 ( 10023) [005] .... 82317.231203: binder_transaction_alloc_buf: transaction=1572331 data_size=684 offsets_size=48
112330    RenderThread-9436  ( 9105) [002] d..2 82317.231203: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
112331<...>-13083 ( 8858) [002] .... 82317.231214: binder_transaction_received: transaction=1572330
112332<...>-18840 ( 10023) [005] ...2 82317.231220: binder_set_priority: proc=8858 thread=8951 old=120 => new=118 desired=118
112333<...>-18840 ( 10023) [005] d..4 82317.231224: sched_waking: comm=Binder:8858_4 pid=8951 prio=118 target_cpu=007
112334<...>-9105 ( 9105) [000] d..2 82317.231225: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112335          <idle>-0     (-----) [000] d..1 82317.231243: cpu_idle: state=0 cpu_id=0
112336<...>-18840 ( 10023) [005] dn.5 82317.231245: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=118 target_cpu=005
112337<...>-18840 ( 10023) [005] d..2 82317.231254: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=118
112338<...>-8951 ( 8858) [005] .... 82317.231267: binder_transaction_received: transaction=1572331
112339<...>-13083 ( 8858) [002] .... 82317.231323: binder_transaction: transaction=1572332 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
112340<...>-13083 ( 8858) [002] .... 82317.231328: binder_transaction_alloc_buf: transaction=1572332 data_size=52 offsets_size=8
112341<...>-13083 ( 8858) [002] d..2 82317.231388: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
112342    RenderThread-9436  ( 9105) [002] .... 82317.231399: binder_transaction_received: transaction=1572332
112343<...>-8951 ( 8858) [005] .... 82317.231400: binder_transaction: transaction=1572333 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
112344<...>-8951 ( 8858) [005] .... 82317.231404: binder_transaction_alloc_buf: transaction=1572333 data_size=0 offsets_size=0
112345<...>-8951 ( 8858) [005] .... 82317.231407: binder_set_priority: proc=8858 thread=8951 old=118 => new=120 desired=120
112346<...>-8951 ( 8858) [005] d..2 82317.231452: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
112347<...>-18840 ( 10023) [005] .... 82317.231463: binder_transaction_received: transaction=1572333
112348<...>-18840 ( 10023) [005] d..2 82317.231528: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
112349          <idle>-0     (-----) [005] d..1 82317.231546: cpu_idle: state=0 cpu_id=5
112350  surfaceflinger-8858  ( 8858) [001] ...1 82317.232003: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
112351  surfaceflinger-8858  ( 8858) [001] ...1 82317.232012: tracing_mark_write: E|8858
112352  surfaceflinger-8858  ( 8858) [001] .... 82317.232079: binder_transaction: transaction=1572334 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
112353  surfaceflinger-8858  ( 8858) [001] .... 82317.232084: binder_transaction_alloc_buf: transaction=1572334 data_size=620 offsets_size=112
112354  surfaceflinger-8858  ( 8858) [001] ...2 82317.232112: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
112355  surfaceflinger-8858  ( 8858) [001] d..4 82317.232120: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
112356  surfaceflinger-8858  ( 8858) [001] d..5 82317.232152: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
112357          <idle>-0     (-----) [003] .n.1 82317.232158: cpu_idle: state=4294967295 cpu_id=3
112358          <idle>-0     (-----) [003] d..2 82317.232173: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
112359 [email protected]   (  619) [003] .... 82317.232187: binder_transaction_received: transaction=1572334
112360  surfaceflinger-8858  ( 8858) [001] d..2 82317.232195: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112361          <idle>-0     (-----) [001] d..1 82317.232218: cpu_idle: state=0 cpu_id=1
112362 [email protected]   (  619) [003] ...1 82317.232246: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
112363 [email protected]   (  619) [003] ...1 82317.232400: tracing_mark_write: B|619|HWCSession::PresentDisplay::
112364          <idle>-0     (-----) [000] ...1 82317.232431: cpu_idle: state=4294967295 cpu_id=0
112365          <idle>-0     (-----) [000] d..1 82317.232436: cpu_idle: state=0 cpu_id=0
112366          <idle>-0     (-----) [000] ...1 82317.232557: cpu_idle: state=4294967295 cpu_id=0
112367          <idle>-0     (-----) [000] d..1 82317.232564: cpu_idle: state=0 cpu_id=0
112368    RenderThread-16607 (10023) [006] .... 82317.232567: binder_transaction: transaction=1572335 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
112369    RenderThread-16607 (10023) [006] .... 82317.232572: binder_transaction_alloc_buf: transaction=1572335 data_size=192 offsets_size=8
112370    RenderThread-16607 (10023) [006] ...2 82317.232582: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
112371    RenderThread-16607 (10023) [006] d..4 82317.232587: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
112372    RenderThread-16607 (10023) [006] d..5 82317.232609: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
112373          <idle>-0     (-----) [005] .n.1 82317.232617: cpu_idle: state=4294967295 cpu_id=5
112374    RenderThread-16607 (10023) [006] d..2 82317.232627: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
112375          <idle>-0     (-----) [005] d..2 82317.232630: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
112376<...>-8951 ( 8858) [005] .... 82317.232641: binder_transaction_received: transaction=1572335
112377<...>-8874 ( 8858) [006] d..2 82317.232697: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
112378          <idle>-0     (-----) [006] d..1 82317.232718: cpu_idle: state=0 cpu_id=6
112379<...>-8951 ( 8858) [005] .... 82317.232761: binder_transaction: transaction=1572336 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
112380<...>-8951 ( 8858) [005] .... 82317.232765: binder_transaction_alloc_buf: transaction=1572336 data_size=68 offsets_size=0
112381<...>-8951 ( 8858) [005] d..2 82317.232769: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
112382<...>-8951 ( 8858) [005] d..3 82317.232790: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
112383<...>-8951 ( 8858) [005] .... 82317.232793: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
112384<...>-8951 ( 8858) [005] d..2 82317.232831: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
112385    RenderThread-16607 (10023) [005] .... 82317.232842: binder_transaction_received: transaction=1572336
112386    RenderThread-16607 (10023) [005] d..2 82317.232939: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
112387          <idle>-0     (-----) [005] d..1 82317.232955: cpu_idle: state=0 cpu_id=5
112388 [email protected]   (  619) [003] ...1 82317.233098: tracing_mark_write: B|619|HWDeviceDRM::Validate::
112389    RenderThread-9436  ( 9105) [002] d..2 82317.233232: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
112390          <idle>-0     (-----) [002] d..1 82317.233254: cpu_idle: state=0 cpu_id=2
112391          <idle>-0     (-----) [002] d.h2 82317.233307: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
112392          <idle>-0     (-----) [002] d.h3 82317.233320: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
112393          <idle>-0     (-----) [002] dnh3 82317.233327: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
112394          <idle>-0     (-----) [002] .n.1 82317.233338: cpu_idle: state=4294967295 cpu_id=2
112395          <idle>-0     (-----) [002] d..2 82317.233352: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
112396    RenderThread-9436  ( 9105) [002] .... 82317.233661: binder_transaction: transaction=1572337 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
112397    RenderThread-9436  ( 9105) [002] .... 82317.233668: binder_transaction_alloc_buf: transaction=1572337 data_size=192 offsets_size=8
112398    RenderThread-9436  ( 9105) [002] d..4 82317.233682: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
112399    RenderThread-9436  ( 9105) [002] dn.5 82317.233716: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
112400    RenderThread-9436  ( 9105) [002] d..2 82317.233779: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
112401 [email protected]   (  619) [003] ...1 82317.233788: tracing_mark_write: E|619
112402<...>-8951 ( 8858) [002] .... 82317.233792: binder_transaction_received: transaction=1572337
112403          <idle>-0     (-----) [000] d.h3 82317.233828: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
112404          <idle>-0     (-----) [000] dnh4 82317.233860: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
112405          <idle>-0     (-----) [000] .n.1 82317.233872: cpu_idle: state=4294967295 cpu_id=0
112406          <idle>-0     (-----) [000] d..2 82317.233885: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
112407<...>-8951 ( 8858) [002] .... 82317.233944: binder_transaction: transaction=1572338 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
112408<...>-8951 ( 8858) [002] .... 82317.233950: binder_transaction_alloc_buf: transaction=1572338 data_size=68 offsets_size=0
112409 [email protected]   (  619) [003] ...1 82317.233985: tracing_mark_write: B|619|HWDeviceDRM::Commit::
112410 kgsl_worker_thr-258   (  258) [000] d..2 82317.233997: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
112411 [email protected]   (  619) [003] ...1 82317.233998: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
112412<...>-8951 ( 8858) [002] d..2 82317.234004: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
112413          <idle>-0     (-----) [000] d..1 82317.234009: cpu_idle: state=0 cpu_id=0
112414    RenderThread-9436  ( 9105) [002] .... 82317.234015: binder_transaction_received: transaction=1572338
112415          <idle>-0     (-----) [000] d.h2 82317.234077: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
112416          <idle>-0     (-----) [000] dnh3 82317.234088: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
112417          <idle>-0     (-----) [000] .n.1 82317.234097: cpu_idle: state=4294967295 cpu_id=0
112418          <idle>-0     (-----) [000] d..2 82317.234106: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
112419    RenderThread-9436  ( 9105) [002] d..2 82317.234121: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112420 kgsl_worker_thr-258   (  258) [000] d..2 82317.234130: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112421          <idle>-0     (-----) [002] d..1 82317.234145: cpu_idle: state=0 cpu_id=2
112422 kgsl_worker_thr-258   (  258) [000] d..3 82317.234184: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
112423 kgsl_worker_thr-258   (  258) [000] d..2 82317.234211: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112424  kworker/u16:15-1311  ( 1311) [000] d.h4 82317.234233: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
112425  kworker/u16:15-1311  ( 1311) [000] d.h5 82317.234255: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
112426          <idle>-0     (-----) [001] .n.1 82317.234264: cpu_idle: state=4294967295 cpu_id=1
112427          <idle>-0     (-----) [001] d..2 82317.234277: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
112428 kgsl_worker_thr-258   (  258) [001] d..2 82317.234434: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112429          <idle>-0     (-----) [001] d..1 82317.234450: cpu_idle: state=0 cpu_id=1
112430  kworker/u16:15-1311  ( 1311) [000] d..2 82317.234494: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112431          <idle>-0     (-----) [000] d..1 82317.234514: cpu_idle: state=0 cpu_id=0
112432 [email protected]   (  619) [003] d..2 82317.234590: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112433 [email protected]   (  619) [003] d..3 82317.234622: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112434          <idle>-0     (-----) [000] .n.1 82317.234629: cpu_idle: state=4294967295 cpu_id=0
112435          <idle>-0     (-----) [000] d..2 82317.234642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
112436 [email protected]   (  619) [003] ...1 82317.234741: tracing_mark_write: E|619
112437 [email protected]   (  619) [003] ...1 82317.234748: tracing_mark_write: E|619
112438 [email protected]   (  619) [003] ...1 82317.234813: tracing_mark_write: E|619
112439 [email protected]   (  619) [003] ...1 82317.234873: tracing_mark_write: E|619
112440 [email protected]   (  619) [003] .... 82317.234893: binder_transaction: transaction=1572339 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
112441 [email protected]   (  619) [003] .... 82317.234899: binder_transaction_alloc_buf: transaction=1572339 data_size=656 offsets_size=128
112442 [email protected]   (  619) [003] d..2 82317.234923: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
112443 [email protected]   (  619) [003] d..3 82317.234945: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
112444 [email protected]   (  619) [003] .... 82317.234950: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
112445          <idle>-0     (-----) [001] .n.1 82317.234951: cpu_idle: state=4294967295 cpu_id=1
112446          <idle>-0     (-----) [001] d..2 82317.234962: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
112447  surfaceflinger-8858  ( 8858) [001] .... 82317.234972: binder_transaction_received: transaction=1572339
112448 [email protected]   (  619) [003] d..2 82317.235067: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112449          <idle>-0     (-----) [003] d..1 82317.235087: cpu_idle: state=0 cpu_id=3
112450          <idle>-0     (-----) [003] d.s2 82317.235146: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112451          <idle>-0     (-----) [003] dns3 82317.235170: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112452          <idle>-0     (-----) [003] .n.1 82317.235187: cpu_idle: state=4294967295 cpu_id=3
112453          <idle>-0     (-----) [003] d..2 82317.235199: 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
112454     rcu_preempt-7     (    7) [003] d..2 82317.235238: 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
112455          <idle>-0     (-----) [003] d..1 82317.235253: cpu_idle: state=0 cpu_id=3
112456          <idle>-0     (-----) [002] ...1 82317.235315: cpu_idle: state=4294967295 cpu_id=2
112457          <idle>-0     (-----) [002] d..1 82317.235321: cpu_idle: state=0 cpu_id=2
112458  surfaceflinger-8858  ( 8858) [001] d..2 82317.235657: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112459          <idle>-0     (-----) [001] d..1 82317.235680: cpu_idle: state=0 cpu_id=1
112460 crtc_commit:111-321   (  321) [000] d..2 82317.235992: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
112461          <idle>-0     (-----) [000] d..1 82317.236013: cpu_idle: state=0 cpu_id=0
112462          <idle>-0     (-----) [000] ...1 82317.237405: cpu_idle: state=4294967295 cpu_id=0
112463          <idle>-0     (-----) [000] d..1 82317.237410: cpu_idle: state=0 cpu_id=0
112464          <idle>-0     (-----) [003] d.s2 82317.241803: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112465          <idle>-0     (-----) [003] dns3 82317.241820: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112466          <idle>-0     (-----) [003] dns3 82317.241826: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
112467          <idle>-0     (-----) [003] dns4 82317.241862: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112468          <idle>-0     (-----) [003] .n.1 82317.241873: cpu_idle: state=4294967295 cpu_id=3
112469          <idle>-0     (-----) [003] d..2 82317.241885: 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
112470     rcu_preempt-7     (    7) [003] d..2 82317.241895: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112471     rcu_preempt-7     (    7) [003] d..3 82317.241913: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112472     rcu_preempt-7     (    7) [003] d..2 82317.241925: 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
112473         rcuop/0-10    (   10) [003] d..2 82317.241931: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112474         rcuop/0-10    (   10) [003] d..3 82317.241948: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112475         rcuop/0-10    (   10) [003] d..2 82317.241952: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112476         rcuop/0-10    (   10) [003] d..3 82317.241963: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112477         rcuop/0-10    (   10) [003] d..2 82317.241971: 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
112478         rcuop/1-21    (   21) [003] d..2 82317.241986: 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
112479     rcu_preempt-7     (    7) [003] d..2 82317.241999: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112480  kworker/u16:15-1311  ( 1311) [003] d..2 82317.242304: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112481          <idle>-0     (-----) [003] d..1 82317.242325: cpu_idle: state=0 cpu_id=3
112482          <idle>-0     (-----) [001] d.s3 82317.242342: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112483          <idle>-0     (-----) [001] d.s4 82317.242359: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
112484          <idle>-0     (-----) [001] d.s4 82317.242370: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112485          <idle>-0     (-----) [003] .n.1 82317.242378: cpu_idle: state=4294967295 cpu_id=3
112486          <idle>-0     (-----) [001] ...1 82317.242383: cpu_idle: state=4294967295 cpu_id=1
112487          <idle>-0     (-----) [001] d..1 82317.242390: cpu_idle: state=0 cpu_id=1
112488          <idle>-0     (-----) [003] d..2 82317.242392: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112489  kworker/u16:15-1311  ( 1311) [003] d..2 82317.242455: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112490          <idle>-0     (-----) [003] d..1 82317.242467: cpu_idle: state=0 cpu_id=3
112491          <idle>-0     (-----) [000] d.h5 82317.243167: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112492          <idle>-0     (-----) [000] d.h6 82317.243192: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112493          <idle>-0     (-----) [000] d.h5 82317.243198: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112494          <idle>-0     (-----) [003] .n.1 82317.243198: cpu_idle: state=4294967295 cpu_id=3
112495          <idle>-0     (-----) [000] dnh6 82317.243206: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112496          <idle>-0     (-----) [003] d..2 82317.243209: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
112497          <idle>-0     (-----) [000] .n.1 82317.243220: cpu_idle: state=4294967295 cpu_id=0
112498          <idle>-0     (-----) [000] d..2 82317.243233: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
112499  crtc_event:111-322   (  322) [003] d..2 82317.243249: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112500          <idle>-0     (-----) [003] d..1 82317.243258: cpu_idle: state=0 cpu_id=3
112501 crtc_commit:111-321   (  321) [000] d..2 82317.243397: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
112502          <idle>-0     (-----) [000] d..1 82317.243409: cpu_idle: state=0 cpu_id=0
112503          <idle>-0     (-----) [000] d.s3 82317.245141: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112504          <idle>-0     (-----) [000] d.s4 82317.245158: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112505          <idle>-0     (-----) [003] .n.1 82317.245164: cpu_idle: state=4294967295 cpu_id=3
112506          <idle>-0     (-----) [003] d..2 82317.245177: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
112507          <idle>-0     (-----) [000] ...1 82317.245187: cpu_idle: state=4294967295 cpu_id=0
112508          <idle>-0     (-----) [000] d..1 82317.245192: cpu_idle: state=0 cpu_id=0
112509  crtc_event:111-322   (  322) [003] d..2 82317.245210: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112510          <idle>-0     (-----) [003] d..1 82317.245218: cpu_idle: state=0 cpu_id=3
112511          <idle>-0     (-----) [000] d.h5 82317.245490: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112512          <idle>-0     (-----) [000] dnh6 82317.245501: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112513          <idle>-0     (-----) [000] .n.1 82317.245514: cpu_idle: state=4294967295 cpu_id=0
112514          <idle>-0     (-----) [000] d..2 82317.245525: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
112515 crtc_commit:111-321   (  321) [000] d..2 82317.245603: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112516          <idle>-0     (-----) [000] d..1 82317.245617: cpu_idle: state=0 cpu_id=0
112517          <idle>-0     (-----) [000] d.h5 82317.245802: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112518          <idle>-0     (-----) [000] d.h6 82317.245820: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112519          <idle>-0     (-----) [003] .n.1 82317.245825: cpu_idle: state=4294967295 cpu_id=3
112520          <idle>-0     (-----) [003] d..2 82317.245833: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
112521          <idle>-0     (-----) [000] ...1 82317.245840: cpu_idle: state=4294967295 cpu_id=0
112522          <idle>-0     (-----) [000] d..1 82317.245845: cpu_idle: state=0 cpu_id=0
112523  crtc_event:111-322   (  322) [003] d..2 82317.245859: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112524          <idle>-0     (-----) [003] d..1 82317.245867: cpu_idle: state=0 cpu_id=3
112525          <idle>-0     (-----) [000] d.h2 82317.245954: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
112526          <idle>-0     (-----) [000] dnh3 82317.245968: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
112527          <idle>-0     (-----) [000] .n.1 82317.245976: cpu_idle: state=4294967295 cpu_id=0
112528          <idle>-0     (-----) [000] d..2 82317.245987: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
112529        DispSync-8879  ( 8858) [000] d..1 82317.246020: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112530        DispSync-8879  ( 8858) [000] d..2 82317.246038: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112531          <idle>-0     (-----) [002] .n.1 82317.246043: cpu_idle: state=4294967295 cpu_id=2
112532        DispSync-8879  ( 8858) [000] d..1 82317.246045: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
112533          <idle>-0     (-----) [002] d..2 82317.246058: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
112534        DispSync-8879  ( 8858) [000] d..2 82317.246077: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
112535          <idle>-0     (-----) [001] .n.1 82317.246082: cpu_idle: state=4294967295 cpu_id=1
112536          <idle>-0     (-----) [001] d..2 82317.246096: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
112537        DispSync-8879  ( 8858) [000] d..2 82317.246121: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112538   sfEventThread-8882  ( 8858) [002] d..3 82317.246123: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
112539          <idle>-0     (-----) [000] d..1 82317.246136: cpu_idle: state=0 cpu_id=0
112540   sfEventThread-8882  ( 8858) [002] d..4 82317.246157: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
112541          <idle>-0     (-----) [000] .n.1 82317.246163: cpu_idle: state=4294967295 cpu_id=0
112542  appEventThread-8881  ( 8858) [001] d..3 82317.246166: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
112543          <idle>-0     (-----) [000] d..2 82317.246179: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
112544  appEventThread-8881  ( 8858) [001] d..4 82317.246202: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
112545   sfEventThread-8882  ( 8858) [002] d..2 82317.246206: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112546          <idle>-0     (-----) [003] .n.1 82317.246207: cpu_idle: state=4294967295 cpu_id=3
112547          <idle>-0     (-----) [003] d..2 82317.246217: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
112548  appEventThread-8881  ( 8858) [001] d..3 82317.246223: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
112549          <idle>-0     (-----) [002] d..1 82317.246226: cpu_idle: state=0 cpu_id=2
112550          <idle>-0     (-----) [004] dnh2 82317.246250: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
112551          <idle>-0     (-----) [004] .n.1 82317.246254: cpu_idle: state=4294967295 cpu_id=4
112552          <idle>-0     (-----) [004] d..2 82317.246263: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
112553  appEventThread-8881  ( 8858) [001] d..2 82317.246288: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112554          <idle>-0     (-----) [001] d..1 82317.246305: cpu_idle: state=0 cpu_id=1
112555 s.nexuslauncher-10023 (10023) [004] .... 82317.246499: binder_transaction: transaction=1572340 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
112556 s.nexuslauncher-10023 (10023) [004] .... 82317.246505: binder_transaction_alloc_buf: transaction=1572340 data_size=80 offsets_size=0
112557 s.nexuslauncher-10023 (10023) [004] d..4 82317.246509: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
112558          <idle>-0     (-----) [001] dnh2 82317.246548: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
112559          <idle>-0     (-----) [001] .n.1 82317.246555: cpu_idle: state=4294967295 cpu_id=1
112560 s.nexuslauncher-10023 (10023) [004] d..3 82317.246560: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
112561<...>-9105 ( 9105) [003] .... 82317.246561: binder_transaction: transaction=1572341 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
112562          <idle>-0     (-----) [001] d..2 82317.246567: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
112563<...>-9105 ( 9105) [003] .... 82317.246568: binder_transaction_alloc_buf: transaction=1572341 data_size=80 offsets_size=0
112564<...>-8951 ( 8858) [001] .... 82317.246576: binder_transaction_received: transaction=1572340
112565 s.nexuslauncher-10023 (10023) [004] d..4 82317.246577: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
112566<...>-9105 ( 9105) [003] d..4 82317.246577: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
112567          <idle>-0     (-----) [005] .n.1 82317.246583: cpu_idle: state=4294967295 cpu_id=5
112568          <idle>-0     (-----) [005] d..2 82317.246596: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
112569<...>-9105 ( 9105) [003] d..5 82317.246622: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
112570    RenderThread-16607 (10023) [005] d..2 82317.246629: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
112571          <idle>-0     (-----) [002] .n.1 82317.246630: cpu_idle: state=4294967295 cpu_id=2
112572          <idle>-0     (-----) [005] d..1 82317.246637: cpu_idle: state=0 cpu_id=5
112573          <idle>-0     (-----) [002] d..2 82317.246686: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
112574<...>-8874 ( 8858) [002] .... 82317.246695: binder_transaction_received: transaction=1572341
112575<...>-8951 ( 8858) [001] d..1 82317.246713: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
112576<...>-9105 ( 9105) [003] d..3 82317.246726: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
112577<...>-8951 ( 8858) [001] d..2 82317.246752: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
112578<...>-8951 ( 8858) [001] d..1 82317.246769: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
112579<...>-8874 ( 8858) [002] d..2 82317.246773: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
112580          <idle>-0     (-----) [006] dnh2 82317.246813: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
112581          <idle>-0     (-----) [006] .n.1 82317.246818: cpu_idle: state=4294967295 cpu_id=6
112582          <idle>-0     (-----) [006] d..2 82317.246829: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
112583          <idle>-0     (-----) [005] dnh2 82317.246887: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
112584  appEventThread-8881  ( 8858) [002] d..2 82317.246893: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112585          <idle>-0     (-----) [005] .n.1 82317.246893: cpu_idle: state=4294967295 cpu_id=5
112586          <idle>-0     (-----) [005] d..2 82317.246900: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
112587    RenderThread-9436  ( 9105) [006] d..2 82317.246903: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
112588          <idle>-0     (-----) [002] d..1 82317.246909: cpu_idle: state=0 cpu_id=2
112589          <idle>-0     (-----) [006] d..1 82317.246914: cpu_idle: state=0 cpu_id=6
112590<...>-8874 ( 8858) [005] d..1 82317.246919: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
112591<...>-8951 ( 8858) [001] d..2 82317.246940: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112592 s.nexuslauncher-10023 (10023) [004] d..3 82317.246947: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
112593          <idle>-0     (-----) [002] dnh2 82317.246947: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
112594<...>-9105 ( 9105) [003] d..3 82317.246951: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
112595          <idle>-0     (-----) [002] .n.1 82317.246956: cpu_idle: state=4294967295 cpu_id=2
112596          <idle>-0     (-----) [001] d..1 82317.246960: cpu_idle: state=0 cpu_id=1
112597          <idle>-0     (-----) [002] d..2 82317.246965: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
112598 s.nexuslauncher-10023 (10023) [004] d..4 82317.246981: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
112599<...>-8874 ( 8858) [005] d..2 82317.246984: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
112600          <idle>-0     (-----) [006] dnh2 82317.246988: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
112601          <idle>-0     (-----) [006] .n.1 82317.246996: cpu_idle: state=4294967295 cpu_id=6
112602          <idle>-0     (-----) [005] d..1 82317.246997: cpu_idle: state=0 cpu_id=5
112603          <idle>-0     (-----) [006] d..2 82317.247004: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
112604  appEventThread-8881  ( 8858) [002] d..2 82317.247009: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112605<...>-9105 ( 9105) [003] d..2 82317.247015: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112606          <idle>-0     (-----) [002] d..1 82317.247022: cpu_idle: state=0 cpu_id=2
112607 s.nexuslauncher-10023 (10023) [004] d..2 82317.247022: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
112608          <idle>-0     (-----) [003] d..1 82317.247033: cpu_idle: state=0 cpu_id=3
112609          <idle>-0     (-----) [004] d..1 82317.247039: cpu_idle: state=0 cpu_id=4
112610  surfaceflinger-8858  ( 8858) [000] d..1 82317.247081: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112611  surfaceflinger-8858  ( 8858) [000] d..2 82317.247107: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112612          <idle>-0     (-----) [002] .n.1 82317.247113: cpu_idle: state=4294967295 cpu_id=2
112613          <idle>-0     (-----) [002] d..2 82317.247123: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
112614   sfEventThread-8882  ( 8858) [002] d..2 82317.247160: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112615    RenderThread-16607 (10023) [006] d..1 82317.247162: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
112616          <idle>-0     (-----) [002] d..1 82317.247172: cpu_idle: state=0 cpu_id=2
112617    RenderThread-16607 (10023) [006] d..2 82317.247180: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
112618          <idle>-0     (-----) [004] .n.1 82317.247186: cpu_idle: state=4294967295 cpu_id=4
112619          <idle>-0     (-----) [004] d..2 82317.247196: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
112620    RenderThread-16607 (10023) [006] d..1 82317.247196: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=005
112621    RenderThread-16607 (10023) [006] d..2 82317.247211: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=005
112622          <idle>-0     (-----) [005] .n.1 82317.247217: cpu_idle: state=4294967295 cpu_id=5
112623          <idle>-0     (-----) [005] d..2 82317.247227: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
112624    RenderThread-16607 (10023) [006] .... 82317.247267: binder_transaction: transaction=1572342 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
112625    RenderThread-16607 (10023) [006] .... 82317.247272: binder_transaction_alloc_buf: transaction=1572342 data_size=104 offsets_size=0
112626    RenderThread-16607 (10023) [006] ...2 82317.247276: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
112627    RenderThread-16607 (10023) [006] d..4 82317.247280: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
112628 s.nexuslauncher-10023 (10023) [004] d..2 82317.247289: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
112629          <idle>-0     (-----) [004] d..1 82317.247300: cpu_idle: state=0 cpu_id=4
112630          <idle>-0     (-----) [004] .n.1 82317.247303: cpu_idle: state=4294967295 cpu_id=4
112631    RenderThread-16607 (10023) [006] d..5 82317.247305: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
112632          <idle>-0     (-----) [004] d..2 82317.247315: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
112633    RenderThread-16607 (10023) [006] d..2 82317.247319: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
112634<...>-8874 ( 8858) [004] .... 82317.247330: binder_transaction_received: transaction=1572342
112635<...>-8874 ( 8858) [004] .... 82317.247399: binder_transaction: transaction=1572343 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
112636    RenderThread-9436  ( 9105) [006] d..1 82317.247402: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
112637<...>-8874 ( 8858) [004] .... 82317.247404: binder_transaction_alloc_buf: transaction=1572343 data_size=52 offsets_size=8
112638<...>-8874 ( 8858) [004] d..2 82317.247412: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
112639<...>-8874 ( 8858) [004] d..3 82317.247431: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
112640          <idle>-0     (-----) [003] dnh2 82317.247432: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
112641<...>-8874 ( 8858) [004] .... 82317.247435: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
112642          <idle>-0     (-----) [003] .n.1 82317.247440: cpu_idle: state=4294967295 cpu_id=3
112643<...>-8874 ( 8858) [004] d..2 82317.247446: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
112644          <idle>-0     (-----) [003] d..2 82317.247450: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
112645    RenderThread-16607 (10023) [004] .... 82317.247456: binder_transaction_received: transaction=1572343
112646    RenderThread-9436  ( 9105) [006] .... 82317.247462: binder_transaction: transaction=1572344 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
112647    RenderThread-9436  ( 9105) [006] .... 82317.247465: binder_transaction_alloc_buf: transaction=1572344 data_size=104 offsets_size=0
112648    RenderThread-9436  ( 9105) [006] d..4 82317.247469: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
112649    RenderThread-9436  ( 9105) [006] dn.5 82317.247491: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
112650<...>-18840 ( 10023) [005] .... 82317.247532: binder_transaction: transaction=1572345 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
112651    RenderThread-9436  ( 9105) [006] d..2 82317.247533: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
112652<...>-18840 ( 10023) [005] .... 82317.247537: binder_transaction_alloc_buf: transaction=1572345 data_size=684 offsets_size=48
112653<...>-8951 ( 8858) [006] .... 82317.247544: binder_transaction_received: transaction=1572344
112654<...>-18840 ( 10023) [005] ...2 82317.247554: binder_set_priority: proc=8858 thread=13083 old=120 => new=118 desired=118
112655<...>-18840 ( 10023) [005] d..4 82317.247558: sched_waking: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=002
112656<...>-9105 ( 9105) [003] d..2 82317.247560: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112657          <idle>-0     (-----) [003] d..1 82317.247574: cpu_idle: state=0 cpu_id=3
112658<...>-18840 ( 10023) [005] dn.5 82317.247584: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=005
112659<...>-18840 ( 10023) [005] d..2 82317.247628: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=118
112660<...>-8951 ( 8858) [006] .... 82317.247628: binder_transaction: transaction=1572346 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
112661<...>-8951 ( 8858) [006] .... 82317.247632: binder_transaction_alloc_buf: transaction=1572346 data_size=52 offsets_size=8
112662<...>-13083 ( 8858) [005] .... 82317.247640: binder_transaction_received: transaction=1572345
112663<...>-8951 ( 8858) [006] d..2 82317.247676: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
112664    RenderThread-9436  ( 9105) [006] .... 82317.247687: binder_transaction_received: transaction=1572346
112665<...>-13083 ( 8858) [005] .... 82317.247782: binder_transaction: transaction=1572347 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
112666<...>-13083 ( 8858) [005] .... 82317.247786: binder_transaction_alloc_buf: transaction=1572347 data_size=0 offsets_size=0
112667<...>-13083 ( 8858) [005] .... 82317.247788: binder_set_priority: proc=8858 thread=13083 old=118 => new=120 desired=120
112668<...>-13083 ( 8858) [005] d..2 82317.247832: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
112669<...>-18840 ( 10023) [005] .... 82317.247844: binder_transaction_received: transaction=1572347
112670  surfaceflinger-8858  ( 8858) [000] ...1 82317.247871: tracing_mark_write: B|8858|HIDL::IComposerClient::destroyLayer::client
112671  surfaceflinger-8858  ( 8858) [000] ...1 82317.247879: tracing_mark_write: E|8858
112672<...>-18840 ( 10023) [005] d..2 82317.247922: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
112673  surfaceflinger-8858  ( 8858) [000] .... 82317.247930: binder_transaction: transaction=1572348 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x6
112674  surfaceflinger-8858  ( 8858) [000] .... 82317.247935: binder_transaction_alloc_buf: transaction=1572348 data_size=72 offsets_size=0
112675  surfaceflinger-8858  ( 8858) [000] ...2 82317.247943: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
112676  surfaceflinger-8858  ( 8858) [000] d..4 82317.247950: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
112677  surfaceflinger-8858  ( 8858) [000] d..5 82317.247973: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
112678          <idle>-0     (-----) [003] .n.1 82317.247979: cpu_idle: state=4294967295 cpu_id=3
112679<...>-8874 ( 8858) [005] d..2 82317.247980: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
112680          <idle>-0     (-----) [003] d..2 82317.247989: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
112681          <idle>-0     (-----) [005] d..1 82317.247999: cpu_idle: state=0 cpu_id=5
112682 [email protected]   (  619) [003] .... 82317.248005: binder_transaction_received: transaction=1572348
112683  surfaceflinger-8858  ( 8858) [000] d..2 82317.248017: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112684          <idle>-0     (-----) [000] d..1 82317.248043: cpu_idle: state=0 cpu_id=0
112685 [email protected]   (  619) [003] ...1 82317.248059: tracing_mark_write: B|619|HIDL::IComposerClient::destroyLayer::server
112686 [email protected]   (  619) [003] ...1 82317.248106: tracing_mark_write: B|619|HIDL::IMapper::freeBuffer::passthrough
112687 [email protected]   (  619) [003] ...1 82317.248123: tracing_mark_write: B|619|FreeBuffer
112688 [email protected]   (  619) [003] ...1 82317.248148: tracing_mark_write: E|619
112689 [email protected]   (  619) [003] ...1 82317.248152: tracing_mark_write: B|619|FreeBuffer
112690 [email protected]   (  619) [003] ...1 82317.248158: tracing_mark_write: B|619|UnmapBuffer
112691 [email protected]   (  619) [003] ...1 82317.248201: tracing_mark_write: E|619
112692 [email protected]   (  619) [003] ...1 82317.248212: tracing_mark_write: E|619
112693 [email protected]   (  619) [003] ...1 82317.248223: tracing_mark_write: E|619
112694 [email protected]   (  619) [003] ...1 82317.248240: tracing_mark_write: E|619
112695 [email protected]   (  619) [003] .... 82317.248256: binder_transaction: transaction=1572349 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
112696 [email protected]   (  619) [003] .... 82317.248262: binder_transaction_alloc_buf: transaction=1572349 data_size=8 offsets_size=0
112697 [email protected]   (  619) [003] d..2 82317.248268: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
112698 [email protected]   (  619) [003] d..3 82317.248293: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
112699 [email protected]   (  619) [003] .... 82317.248299: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
112700          <idle>-0     (-----) [000] .n.1 82317.248302: cpu_idle: state=4294967295 cpu_id=0
112701          <idle>-0     (-----) [000] d..2 82317.248315: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
112702  surfaceflinger-8858  ( 8858) [000] .... 82317.248325: binder_transaction_received: transaction=1572349
112703          <idle>-0     (-----) [002] ...1 82317.248327: cpu_idle: state=4294967295 cpu_id=2
112704          <idle>-0     (-----) [002] d..1 82317.248331: cpu_idle: state=0 cpu_id=2
112705    RenderThread-16607 (10023) [004] d..2 82317.248334: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
112706          <idle>-0     (-----) [001] dnh2 82317.248366: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
112707          <idle>-0     (-----) [001] .n.1 82317.248374: cpu_idle: state=4294967295 cpu_id=1
112708    RenderThread-9436  ( 9105) [006] d..2 82317.248380: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
112709 [email protected]   (  619) [003] d..2 82317.248381: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112710          <idle>-0     (-----) [001] d..2 82317.248384: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
112711          <idle>-0     (-----) [006] d..1 82317.248398: cpu_idle: state=0 cpu_id=6
112712          <idle>-0     (-----) [003] d..1 82317.248403: cpu_idle: state=0 cpu_id=3
112713 kgsl_worker_thr-258   (  258) [001] d..2 82317.248413: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
112714          <idle>-0     (-----) [001] d..1 82317.248423: cpu_idle: state=0 cpu_id=1
112715          <idle>-0     (-----) [006] d.h2 82317.248464: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
112716          <idle>-0     (-----) [006] d.h3 82317.248472: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
112717          <idle>-0     (-----) [003] d.s2 82317.248474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112718          <idle>-0     (-----) [006] dnh3 82317.248476: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
112719          <idle>-0     (-----) [006] .n.1 82317.248483: cpu_idle: state=4294967295 cpu_id=6
112720          <idle>-0     (-----) [006] d..2 82317.248493: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
112721          <idle>-0     (-----) [003] dns3 82317.248498: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112722          <idle>-0     (-----) [003] .n.1 82317.248520: cpu_idle: state=4294967295 cpu_id=3
112723          <idle>-0     (-----) [003] d..2 82317.248531: 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
112724     rcu_preempt-7     (    7) [003] d..2 82317.248567: 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
112725    RenderThread-9436  ( 9105) [006] d..1 82317.248569: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
112726          <idle>-0     (-----) [003] d..1 82317.248582: cpu_idle: state=0 cpu_id=3
112727          <idle>-0     (-----) [001] dnh2 82317.248592: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
112728          <idle>-0     (-----) [001] .n.1 82317.248597: cpu_idle: state=4294967295 cpu_id=1
112729          <idle>-0     (-----) [001] d..2 82317.248608: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
112730    RenderThread-16607 (10023) [004] .... 82317.248648: binder_transaction: transaction=1572350 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
112731 kgsl_worker_thr-258   (  258) [001] d..2 82317.248651: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112732    RenderThread-16607 (10023) [004] .... 82317.248653: binder_transaction_alloc_buf: transaction=1572350 data_size=192 offsets_size=8
112733    RenderThread-16607 (10023) [004] ...2 82317.248661: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
112734    RenderThread-16607 (10023) [004] d..4 82317.248665: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
112735    RenderThread-16607 (10023) [004] d..5 82317.248685: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
112736 kgsl_worker_thr-258   (  258) [001] d..3 82317.248697: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
112737    RenderThread-16607 (10023) [004] d..2 82317.248699: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
112738<...>-8874 ( 8858) [004] .... 82317.248712: binder_transaction_received: transaction=1572350
112739    RenderThread-9436  ( 9105) [006] .... 82317.248723: binder_transaction: transaction=1572351 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
112740    RenderThread-9436  ( 9105) [006] .... 82317.248728: binder_transaction_alloc_buf: transaction=1572351 data_size=192 offsets_size=8
112741    RenderThread-9436  ( 9105) [006] d..4 82317.248737: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
112742 kgsl_worker_thr-258   (  258) [001] d..2 82317.248738: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112743    RenderThread-9436  ( 9105) [006] dn.5 82317.248756: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
112744    RenderThread-9436  ( 9105) [006] d..2 82317.248764: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
112745  kworker/u16:15-1311  ( 1311) [001] d..2 82317.248774: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
112746<...>-13083 ( 8858) [006] .... 82317.248777: binder_transaction_received: transaction=1572351
112747          <idle>-0     (-----) [001] d..1 82317.248786: cpu_idle: state=0 cpu_id=1
112748<...>-8874 ( 8858) [004] .... 82317.248836: binder_transaction: transaction=1572352 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
112749          <idle>-0     (-----) [001] d.h2 82317.248837: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
112750<...>-8874 ( 8858) [004] .... 82317.248840: binder_transaction_alloc_buf: transaction=1572352 data_size=68 offsets_size=0
112751<...>-8874 ( 8858) [004] d..2 82317.248843: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
112752          <idle>-0     (-----) [001] dnh3 82317.248849: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
112753<...>-8874 ( 8858) [004] d..3 82317.248854: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
112754<...>-8874 ( 8858) [004] .... 82317.248857: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
112755          <idle>-0     (-----) [001] .n.1 82317.248858: cpu_idle: state=4294967295 cpu_id=1
112756<...>-8874 ( 8858) [004] d..2 82317.248868: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
112757          <idle>-0     (-----) [001] d..2 82317.248868: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
112758    RenderThread-16607 (10023) [004] .... 82317.248877: binder_transaction_received: transaction=1572352
112759 kgsl_worker_thr-258   (  258) [001] d..1 82317.248884: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
112760  surfaceflinger-8858  ( 8858) [000] ...1 82317.248886: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
112761<...>-13083 ( 8858) [006] .... 82317.248890: binder_transaction: transaction=1572353 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
112762<...>-13083 ( 8858) [006] .... 82317.248894: binder_transaction_alloc_buf: transaction=1572353 data_size=68 offsets_size=0
112763  surfaceflinger-8858  ( 8858) [000] ...1 82317.248894: tracing_mark_write: E|8858
112764 kgsl_worker_thr-258   (  258) [001] d..2 82317.248898: sched_blocked_reason: pid=1311 iowait=0 caller=kgsl_devfreq_get_dev_status+0x2f4/0x428
112765 kgsl_worker_thr-258   (  258) [001] d..2 82317.248903: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
112766 kgsl_worker_thr-258   (  258) [001] d..2 82317.248916: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112767<...>-13083 ( 8858) [006] d..2 82317.248924: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
112768    RenderThread-9436  ( 9105) [006] .... 82317.248935: binder_transaction_received: transaction=1572353
112769  surfaceflinger-8858  ( 8858) [000] .... 82317.248945: binder_transaction: transaction=1572354 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
112770  surfaceflinger-8858  ( 8858) [000] .... 82317.248951: binder_transaction_alloc_buf: transaction=1572354 data_size=540 offsets_size=96
112771  kworker/u16:15-1311  ( 1311) [001] d..2 82317.248963: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112772    RenderThread-16607 (10023) [004] d..2 82317.248968: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
112773  surfaceflinger-8858  ( 8858) [000] ...2 82317.248975: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
112774          <idle>-0     (-----) [001] d..1 82317.248976: cpu_idle: state=0 cpu_id=1
112775  surfaceflinger-8858  ( 8858) [000] d..4 82317.248982: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
112776  surfaceflinger-8858  ( 8858) [000] d..5 82317.249006: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
112777          <idle>-0     (-----) [003] .n.1 82317.249011: cpu_idle: state=4294967295 cpu_id=3
112778    RenderThread-9436  ( 9105) [006] d..2 82317.249015: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
112779          <idle>-0     (-----) [003] d..2 82317.249022: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
112780<...>-8874 ( 8858) [004] d..2 82317.249025: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
112781 [email protected]   (  619) [003] .... 82317.249031: binder_transaction_received: transaction=1572354
112782          <idle>-0     (-----) [006] d..1 82317.249032: cpu_idle: state=0 cpu_id=6
112783          <idle>-0     (-----) [004] d..1 82317.249044: cpu_idle: state=0 cpu_id=4
112784  surfaceflinger-8858  ( 8858) [000] d..2 82317.249047: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112785          <idle>-0     (-----) [000] d..1 82317.249071: cpu_idle: state=0 cpu_id=0
112786 [email protected]   (  619) [003] ...1 82317.249072: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
112787 [email protected]   (  619) [003] ...1 82317.249227: tracing_mark_write: B|619|HWCSession::PresentDisplay::
112788 [email protected]   (  619) [003] ...1 82317.249910: tracing_mark_write: B|619|HWDeviceDRM::Validate::
112789          <idle>-0     (-----) [000] d.h3 82317.249949: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
112790          <idle>-0     (-----) [000] d.h4 82317.249966: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
112791          <idle>-0     (-----) [001] .n.1 82317.249972: cpu_idle: state=4294967295 cpu_id=1
112792          <idle>-0     (-----) [001] d..2 82317.249983: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
112793          <idle>-0     (-----) [000] ...1 82317.249985: cpu_idle: state=4294967295 cpu_id=0
112794          <idle>-0     (-----) [000] d..1 82317.249990: cpu_idle: state=0 cpu_id=0
112795 kgsl_worker_thr-258   (  258) [001] d..2 82317.250052: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112796          <idle>-0     (-----) [001] d..1 82317.250065: cpu_idle: state=0 cpu_id=1
112797 [email protected]   (  619) [003] ...1 82317.250572: tracing_mark_write: E|619
112798 [email protected]   (  619) [003] ...1 82317.250744: tracing_mark_write: B|619|HWDeviceDRM::Commit::
112799 [email protected]   (  619) [003] ...1 82317.250757: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
112800 [email protected]   (  619) [003] d..2 82317.251288: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112801 [email protected]   (  619) [003] d..3 82317.251318: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112802          <idle>-0     (-----) [000] .n.1 82317.251322: cpu_idle: state=4294967295 cpu_id=0
112803          <idle>-0     (-----) [000] d..2 82317.251335: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
112804          <idle>-0     (-----) [001] ...1 82317.251434: cpu_idle: state=4294967295 cpu_id=1
112805 [email protected]   (  619) [003] ...1 82317.251434: tracing_mark_write: E|619
112806          <idle>-0     (-----) [001] d..1 82317.251438: cpu_idle: state=0 cpu_id=1
112807 [email protected]   (  619) [003] ...1 82317.251441: tracing_mark_write: E|619
112808 [email protected]   (  619) [003] ...1 82317.251500: tracing_mark_write: E|619
112809 [email protected]   (  619) [003] ...1 82317.251554: tracing_mark_write: E|619
112810 [email protected]   (  619) [003] .... 82317.251571: binder_transaction: transaction=1572355 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
112811 [email protected]   (  619) [003] .... 82317.251576: binder_transaction_alloc_buf: transaction=1572355 data_size=576 offsets_size=112
112812 [email protected]   (  619) [003] d..2 82317.251599: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
112813 [email protected]   (  619) [003] d..3 82317.251634: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
112814          <idle>-0     (-----) [002] .n.1 82317.251638: cpu_idle: state=4294967295 cpu_id=2
112815 [email protected]   (  619) [003] .... 82317.251639: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
112816          <idle>-0     (-----) [002] d..2 82317.251651: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
112817  surfaceflinger-8858  ( 8858) [002] .... 82317.251662: binder_transaction_received: transaction=1572355
112818 [email protected]   (  619) [003] d..2 82317.251740: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112819          <idle>-0     (-----) [003] d..1 82317.251763: cpu_idle: state=0 cpu_id=3
112820  surfaceflinger-8858  ( 8858) [002] d.s2 82317.251831: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
112821  surfaceflinger-8858  ( 8858) [002] d.s3 82317.251920: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
112822  surfaceflinger-8858  ( 8858) [002] d..2 82317.252055: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
112823  surfaceflinger-8858  ( 8858) [002] d..3 82317.252104: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
112824          <idle>-0     (-----) [001] .n.1 82317.252108: cpu_idle: state=4294967295 cpu_id=1
112825          <idle>-0     (-----) [001] d..2 82317.252124: 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
112826         rcuop/2-29    (   29) [001] d..2 82317.252162: 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
112827          <idle>-0     (-----) [001] d..1 82317.252172: cpu_idle: state=0 cpu_id=1
112828  surfaceflinger-8858  ( 8858) [002] d..2 82317.252484: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112829          <idle>-0     (-----) [002] d..1 82317.252507: cpu_idle: state=0 cpu_id=2
112830 crtc_commit:111-321   (  321) [000] d..2 82317.254068: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112831  kworker/u16:15-1311  ( 1311) [000] .... 82317.254196: clk_set_rate: l3_cluster0_vote_clk 480000000
112832  kworker/u16:15-1311  ( 1311) [000] .... 82317.254205: clk_set_rate: l3_clk 480000000
112833  kworker/u16:15-1311  ( 1311) [000] d..2 82317.254275: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112834          <idle>-0     (-----) [000] d..1 82317.254293: cpu_idle: state=0 cpu_id=0
112835          <idle>-0     (-----) [003] d.s2 82317.255138: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112836          <idle>-0     (-----) [003] dns3 82317.255159: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112837          <idle>-0     (-----) [003] .n.1 82317.255170: cpu_idle: state=4294967295 cpu_id=3
112838          <idle>-0     (-----) [003] d..2 82317.255183: 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
112839     rcu_preempt-7     (    7) [003] d..2 82317.255194: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112840     rcu_preempt-7     (    7) [003] d..3 82317.255213: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
112841     rcu_preempt-7     (    7) [003] d..2 82317.255230: 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
112842         rcuop/0-10    (   10) [003] d..2 82317.255236: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112843         rcuop/0-10    (   10) [003] d..3 82317.255252: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
112844         rcuop/0-10    (   10) [003] d..2 82317.255263: 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
112845         rcuop/1-21    (   21) [003] d..2 82317.255299: 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
112846          <idle>-0     (-----) [003] d..1 82317.255313: cpu_idle: state=0 cpu_id=3
112847          <idle>-0     (-----) [000] ...1 82317.255615: cpu_idle: state=4294967295 cpu_id=0
112848          <idle>-0     (-----) [000] d..1 82317.255620: cpu_idle: state=0 cpu_id=0
112849          <idle>-0     (-----) [000] d.h5 82317.259636: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112850          <idle>-0     (-----) [000] d.h6 82317.259656: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112851          <idle>-0     (-----) [000] d.h5 82317.259661: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112852          <idle>-0     (-----) [003] .n.1 82317.259662: cpu_idle: state=4294967295 cpu_id=3
112853          <idle>-0     (-----) [000] dnh6 82317.259669: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112854          <idle>-0     (-----) [003] d..2 82317.259674: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
112855          <idle>-0     (-----) [000] .n.1 82317.259682: cpu_idle: state=4294967295 cpu_id=0
112856          <idle>-0     (-----) [000] d..2 82317.259694: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
112857  crtc_event:111-322   (  322) [003] d..2 82317.259711: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112858          <idle>-0     (-----) [003] d..2 82317.259716: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
112859          <idle>-0     (-----) [003] dn.3 82317.259729: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
112860          <idle>-0     (-----) [003] d..2 82317.259738: 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
112861     ksoftirqd/3-34    (   34) [003] d..2 82317.259764: 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
112862          <idle>-0     (-----) [003] d..1 82317.259772: cpu_idle: state=0 cpu_id=3
112863 crtc_commit:111-321   (  321) [000] d..2 82317.259840: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
112864          <idle>-0     (-----) [000] d..1 82317.259850: cpu_idle: state=0 cpu_id=0
112865          <idle>-0     (-----) [003] d.s2 82317.261797: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112866          <idle>-0     (-----) [000] d.s3 82317.261803: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112867          <idle>-0     (-----) [003] dns3 82317.261813: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
112868          <idle>-0     (-----) [000] d.s4 82317.261820: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112869          <idle>-0     (-----) [003] dns3 82317.261825: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
112870          <idle>-0     (-----) [000] ...1 82317.261844: cpu_idle: state=4294967295 cpu_id=0
112871          <idle>-0     (-----) [000] d..1 82317.261850: cpu_idle: state=0 cpu_id=0
112872          <idle>-0     (-----) [003] dns4 82317.261856: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112873          <idle>-0     (-----) [003] .n.1 82317.261869: cpu_idle: state=4294967295 cpu_id=3
112874          <idle>-0     (-----) [003] d..2 82317.261877: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
112875  crtc_event:111-322   (  322) [003] d..2 82317.261896: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
112876     rcu_preempt-7     (    7) [003] d..2 82317.261914: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112877  kworker/u16:15-1311  ( 1311) [003] .... 82317.261939: clk_set_rate: l3_cluster0_vote_clk 300000000
112878  kworker/u16:15-1311  ( 1311) [003] .... 82317.261943: clk_set_rate: l3_clk 300000000
112879          <idle>-0     (-----) [000] d.h5 82317.261976: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112880          <idle>-0     (-----) [000] dnh6 82317.261987: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
112881          <idle>-0     (-----) [000] .n.1 82317.262006: cpu_idle: state=4294967295 cpu_id=0
112882          <idle>-0     (-----) [000] d..2 82317.262017: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
112883  kworker/u16:15-1311  ( 1311) [003] d..2 82317.262200: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
112884 crtc_commit:111-321   (  321) [000] d..2 82317.262202: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112885          <idle>-0     (-----) [003] d..1 82317.262220: cpu_idle: state=0 cpu_id=3
112886          <idle>-0     (-----) [001] d.s3 82317.262232: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112887          <idle>-0     (-----) [001] d.s4 82317.262246: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
112888          <idle>-0     (-----) [001] d.s4 82317.262256: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
112889          <idle>-0     (-----) [003] .n.1 82317.262263: cpu_idle: state=4294967295 cpu_id=3
112890          <idle>-0     (-----) [001] ...1 82317.262268: cpu_idle: state=4294967295 cpu_id=1
112891          <idle>-0     (-----) [001] d..1 82317.262274: cpu_idle: state=0 cpu_id=1
112892          <idle>-0     (-----) [003] d..2 82317.262277: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
112893          <idle>-0     (-----) [000] d.h6 82317.262278: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
112894          <idle>-0     (-----) [000] dnh7 82317.262301: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
112895          <idle>-0     (-----) [000] d..2 82317.262324: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
112896  kworker/u16:15-1311  ( 1311) [003] d..2 82317.262335: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112897          <idle>-0     (-----) [003] d..1 82317.262348: cpu_idle: state=0 cpu_id=3
112898  crtc_event:111-322   (  322) [000] d..2 82317.262351: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112899          <idle>-0     (-----) [000] d..1 82317.262367: cpu_idle: state=0 cpu_id=0
112900          <idle>-0     (-----) [000] d.h2 82317.262445: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
112901          <idle>-0     (-----) [000] dnh3 82317.262460: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
112902          <idle>-0     (-----) [000] .n.1 82317.262469: cpu_idle: state=4294967295 cpu_id=0
112903          <idle>-0     (-----) [000] d..2 82317.262479: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
112904        DispSync-8879  ( 8858) [000] d..1 82317.262508: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112905        DispSync-8879  ( 8858) [000] d..2 82317.262525: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112906        DispSync-8879  ( 8858) [000] d..1 82317.262531: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
112907          <idle>-0     (-----) [002] .n.1 82317.262533: cpu_idle: state=4294967295 cpu_id=2
112908          <idle>-0     (-----) [002] d..2 82317.262550: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
112909        DispSync-8879  ( 8858) [000] d..2 82317.262551: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
112910          <idle>-0     (-----) [001] .n.1 82317.262556: cpu_idle: state=4294967295 cpu_id=1
112911          <idle>-0     (-----) [001] d..2 82317.262569: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
112912        DispSync-8879  ( 8858) [000] d..2 82317.262589: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
112913          <idle>-0     (-----) [000] d..1 82317.262603: cpu_idle: state=0 cpu_id=0
112914   sfEventThread-8882  ( 8858) [002] d..3 82317.262604: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
112915  appEventThread-8881  ( 8858) [001] d..3 82317.262632: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
112916   sfEventThread-8882  ( 8858) [002] d..4 82317.262634: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
112917          <idle>-0     (-----) [000] .n.1 82317.262640: cpu_idle: state=4294967295 cpu_id=0
112918          <idle>-0     (-----) [000] d..2 82317.262652: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
112919  appEventThread-8881  ( 8858) [001] d..4 82317.262659: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
112920          <idle>-0     (-----) [003] .n.1 82317.262664: cpu_idle: state=4294967295 cpu_id=3
112921  appEventThread-8881  ( 8858) [001] d..3 82317.262676: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
112922   sfEventThread-8882  ( 8858) [002] d..2 82317.262677: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112923          <idle>-0     (-----) [003] d..2 82317.262678: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
112924          <idle>-0     (-----) [002] d..1 82317.262694: cpu_idle: state=0 cpu_id=2
112925          <idle>-0     (-----) [004] dnh2 82317.262705: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
112926          <idle>-0     (-----) [004] .n.1 82317.262711: cpu_idle: state=4294967295 cpu_id=4
112927          <idle>-0     (-----) [004] d..2 82317.262721: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
112928  appEventThread-8881  ( 8858) [001] d..2 82317.262736: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112929          <idle>-0     (-----) [001] d..1 82317.262751: cpu_idle: state=0 cpu_id=1
112930 s.nexuslauncher-10023 (10023) [004] .... 82317.263007: binder_transaction: transaction=1572356 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
112931 s.nexuslauncher-10023 (10023) [004] .... 82317.263012: binder_transaction_alloc_buf: transaction=1572356 data_size=80 offsets_size=0
112932 s.nexuslauncher-10023 (10023) [004] d..4 82317.263018: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
112933<...>-9105 ( 9105) [003] .... 82317.263023: binder_transaction: transaction=1572357 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
112934<...>-9105 ( 9105) [003] .... 82317.263031: binder_transaction_alloc_buf: transaction=1572357 data_size=80 offsets_size=0
112935<...>-9105 ( 9105) [003] d..4 82317.263084: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
112936          <idle>-0     (-----) [001] dnh2 82317.263088: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
112937          <idle>-0     (-----) [001] .n.1 82317.263095: cpu_idle: state=4294967295 cpu_id=1
112938          <idle>-0     (-----) [001] d..2 82317.263106: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
112939<...>-8874 ( 8858) [001] d.h2 82317.263131: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=001
112940<...>-9105 ( 9105) [003] d..5 82317.263132: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
112941          <idle>-0     (-----) [002] .n.1 82317.263137: cpu_idle: state=4294967295 cpu_id=2
112942          <idle>-0     (-----) [002] d..2 82317.263197: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
112943          <idle>-0     (-----) [006] dnh2 82317.263257: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
112944<...>-8874 ( 8858) [001] .... 82317.263263: binder_transaction_received: transaction=1572356
112945          <idle>-0     (-----) [006] .n.1 82317.263263: cpu_idle: state=4294967295 cpu_id=6
112946<...>-13083 ( 8858) [002] .... 82317.263264: binder_transaction_received: transaction=1572357
112947          <idle>-0     (-----) [006] d..2 82317.263273: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
112948 s.nexuslauncher-10023 (10023) [004] d..3 82317.263285: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
112949 s.nexuslauncher-10023 (10023) [004] d..4 82317.263308: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
112950<...>-13083 ( 8858) [002] d..1 82317.263313: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
112951<...>-9105 ( 9105) [003] d..3 82317.263313: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
112952          <idle>-0     (-----) [005] .n.1 82317.263315: cpu_idle: state=4294967295 cpu_id=5
112953          <idle>-0     (-----) [005] d..2 82317.263329: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
112954<...>-13083 ( 8858) [002] d..2 82317.263336: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
112955<...>-8874 ( 8858) [001] d..2 82317.263346: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
112956<...>-13083 ( 8858) [002] d..1 82317.263354: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
112957          <idle>-0     (-----) [007] dnh2 82317.263357: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
112958          <idle>-0     (-----) [007] .n.1 82317.263362: cpu_idle: state=4294967295 cpu_id=7
112959          <idle>-0     (-----) [007] d..2 82317.263373: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
112960    RenderThread-16607 (10023) [005] d..2 82317.263379: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
112961          <idle>-0     (-----) [005] d..1 82317.263390: cpu_idle: state=0 cpu_id=5
112962<...>-13083 ( 8858) [002] d..2 82317.263399: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
112963    RenderThread-9436  ( 9105) [007] d..2 82317.263405: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
112964  appEventThread-8881  ( 8858) [001] d..2 82317.263410: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
112965          <idle>-0     (-----) [007] d..1 82317.263413: cpu_idle: state=0 cpu_id=7
112966<...>-8874 ( 8858) [001] d..1 82317.263420: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
112967<...>-8874 ( 8858) [001] d..2 82317.263444: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
112968<...>-13083 ( 8858) [002] d..2 82317.263458: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
112969           <...>-27566 (-----) [006] d..2 82317.263478: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
112970<...>-9105 ( 9105) [003] d..3 82317.263490: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
112971          <idle>-0     (-----) [007] dnh2 82317.263514: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
112972<...>-8874 ( 8858) [001] d..2 82317.263515: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
112973          <idle>-0     (-----) [007] .n.1 82317.263518: cpu_idle: state=4294967295 cpu_id=7
112974  surfaceflinger-8858  ( 8858) [000] d..1 82317.263523: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112975          <idle>-0     (-----) [007] d..2 82317.263524: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
112976          <idle>-0     (-----) [001] d..1 82317.263535: cpu_idle: state=0 cpu_id=1
112977  appEventThread-8881  ( 8858) [002] d..2 82317.263539: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
112978<...>-9105 ( 9105) [003] d..2 82317.263547: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
112979  surfaceflinger-8858  ( 8858) [000] d..2 82317.263553: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
112980          <idle>-0     (-----) [002] dnh3 82317.263565: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
112981          <idle>-0     (-----) [003] d..1 82317.263569: cpu_idle: state=0 cpu_id=3
112982          <idle>-0     (-----) [002] d..2 82317.263578: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
112983    RenderThread-9436  ( 9105) [007] d..1 82317.263599: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
112984           <...>-27566 (-----) [006] d..2 82317.263603: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
112985   sfEventThread-8882  ( 8858) [002] d..2 82317.263605: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
112986          <idle>-0     (-----) [006] d..1 82317.263618: cpu_idle: state=0 cpu_id=6
112987          <idle>-0     (-----) [003] dnh2 82317.263630: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
112988          <idle>-0     (-----) [003] .n.1 82317.263637: cpu_idle: state=4294967295 cpu_id=3
112989          <idle>-0     (-----) [003] d..2 82317.263650: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
112990    RenderThread-9436  ( 9105) [007] .... 82317.263663: binder_transaction: transaction=1572358 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
112991    RenderThread-9436  ( 9105) [007] .... 82317.263668: binder_transaction_alloc_buf: transaction=1572358 data_size=104 offsets_size=0
112992    RenderThread-9436  ( 9105) [007] d..4 82317.263673: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=001
112993    RenderThread-9436  ( 9105) [007] d..5 82317.263693: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
112994 s.nexuslauncher-10023 (10023) [004] d..3 82317.263707: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
112995    RenderThread-9436  ( 9105) [007] d..2 82317.263739: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
112996 s.nexuslauncher-10023 (10023) [004] d..4 82317.263743: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
112997          <idle>-0     (-----) [005] .n.1 82317.263749: cpu_idle: state=4294967295 cpu_id=5
112998<...>-8874 ( 8858) [007] .... 82317.263751: binder_transaction_received: transaction=1572358
112999<...>-9105 ( 9105) [003] d..2 82317.263754: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113000<...>-581 ( 571) [002] d..2 82317.263757: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113001          <idle>-0     (-----) [005] d..2 82317.263758: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
113002          <idle>-0     (-----) [003] d..1 82317.263771: cpu_idle: state=0 cpu_id=3
113003 s.nexuslauncher-10023 (10023) [004] d..2 82317.263773: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
113004          <idle>-0     (-----) [002] d..1 82317.263779: cpu_idle: state=0 cpu_id=2
113005          <idle>-0     (-----) [004] d..1 82317.263792: cpu_idle: state=0 cpu_id=4
113006<...>-8874 ( 8858) [007] .... 82317.263814: binder_transaction: transaction=1572359 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
113007<...>-8874 ( 8858) [007] .... 82317.263818: binder_transaction_alloc_buf: transaction=1572359 data_size=52 offsets_size=8
113008<...>-8874 ( 8858) [007] d..2 82317.263825: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
113009<...>-8874 ( 8858) [007] d..3 82317.263836: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=007
113010<...>-8874 ( 8858) [007] d..2 82317.263863: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
113011    RenderThread-9436  ( 9105) [007] .... 82317.263872: binder_transaction_received: transaction=1572359
113012    RenderThread-16607 (10023) [005] d..1 82317.263902: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113013    RenderThread-16607 (10023) [005] d..2 82317.263918: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113014          <idle>-0     (-----) [004] .n.1 82317.263926: cpu_idle: state=4294967295 cpu_id=4
113015    RenderThread-16607 (10023) [005] d..1 82317.263934: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=005
113016          <idle>-0     (-----) [004] d..2 82317.263936: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
113017    RenderThread-16607 (10023) [005] d..2 82317.263954: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
113018          <idle>-0     (-----) [006] .n.1 82317.263961: cpu_idle: state=4294967295 cpu_id=6
113019          <idle>-0     (-----) [006] d..2 82317.263972: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
113020    RenderThread-16607 (10023) [005] .... 82317.264011: binder_transaction: transaction=1572360 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
113021    RenderThread-16607 (10023) [005] .... 82317.264016: binder_transaction_alloc_buf: transaction=1572360 data_size=104 offsets_size=0
113022    RenderThread-16607 (10023) [005] ...2 82317.264021: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
113023    RenderThread-16607 (10023) [005] d..4 82317.264025: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=007
113024    RenderThread-16607 (10023) [005] d..5 82317.264041: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
113025    RenderThread-16607 (10023) [005] d..2 82317.264054: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
113026<...>-8874 ( 8858) [005] .... 82317.264065: binder_transaction_received: transaction=1572360
113027 s.nexuslauncher-10023 (10023) [004] d..2 82317.264070: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
113028          <idle>-0     (-----) [004] d..1 82317.264082: cpu_idle: state=0 cpu_id=4
113029<...>-8874 ( 8858) [005] .... 82317.264120: binder_transaction: transaction=1572361 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
113030<...>-8874 ( 8858) [005] .... 82317.264124: binder_transaction_alloc_buf: transaction=1572361 data_size=52 offsets_size=8
113031<...>-8874 ( 8858) [005] d..2 82317.264131: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
113032<...>-8874 ( 8858) [005] dn.3 82317.264143: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
113033<...>-8874 ( 8858) [005] d..2 82317.264149: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
113034    RenderThread-16607 (10023) [005] .... 82317.264158: binder_transaction_received: transaction=1572361
113035<...>-18840 ( 10023) [006] d..1 82317.264179: sched_waking: comm=Jit thread pool pid=10045 prio=129 target_cpu=004
113036<...>-18840 ( 10023) [006] d..2 82317.264202: sched_wakeup: comm=Jit thread pool pid=10045 prio=129 target_cpu=004
113037          <idle>-0     (-----) [004] .n.1 82317.264207: cpu_idle: state=4294967295 cpu_id=4
113038          <idle>-0     (-----) [004] d..2 82317.264217: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=10045 next_prio=129
113039<...>-18840 ( 10023) [006] .... 82317.264334: binder_transaction: transaction=1572362 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
113040<...>-18840 ( 10023) [006] .... 82317.264337: binder_transaction_alloc_buf: transaction=1572362 data_size=684 offsets_size=48
113041<...>-18840 ( 10023) [006] ...2 82317.264353: binder_set_priority: proc=8858 thread=13083 old=120 => new=118 desired=118
113042<...>-18840 ( 10023) [006] d..4 82317.264357: sched_waking: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=002
113043<...>-18840 ( 10023) [006] dn.5 82317.264380: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=006
113044<...>-18840 ( 10023) [006] d..2 82317.264424: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=118
113045<...>-13083 ( 8858) [006] .... 82317.264436: binder_transaction_received: transaction=1572362
113046<...>-13083 ( 8858) [006] .... 82317.264573: binder_transaction: transaction=1572363 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
113047<...>-13083 ( 8858) [006] .... 82317.264577: binder_transaction_alloc_buf: transaction=1572363 data_size=0 offsets_size=0
113048<...>-13083 ( 8858) [006] .... 82317.264580: binder_set_priority: proc=8858 thread=13083 old=118 => new=120 desired=120
113049<...>-13083 ( 8858) [006] d..2 82317.264624: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
113050<...>-18840 ( 10023) [006] .... 82317.264635: binder_transaction_received: transaction=1572363
113051  surfaceflinger-8858  ( 8858) [000] ...1 82317.264646: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
113052  surfaceflinger-8858  ( 8858) [000] ...1 82317.264655: tracing_mark_write: E|8858
113053<...>-18840 ( 10023) [006] d..2 82317.264706: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
113054          <idle>-0     (-----) [006] d..1 82317.264726: cpu_idle: state=0 cpu_id=6
113055    RenderThread-9436  ( 9105) [007] .... 82317.264763: binder_transaction: transaction=1572364 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
113056    RenderThread-9436  ( 9105) [007] .... 82317.264768: binder_transaction_alloc_buf: transaction=1572364 data_size=192 offsets_size=8
113057  surfaceflinger-8858  ( 8858) [000] .... 82317.264774: binder_transaction: transaction=1572365 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
113058    RenderThread-9436  ( 9105) [007] d..4 82317.264778: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
113059  surfaceflinger-8858  ( 8858) [000] .... 82317.264780: binder_transaction_alloc_buf: transaction=1572365 data_size=540 offsets_size=96
113060    RenderThread-9436  ( 9105) [007] dn.5 82317.264801: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
113061  surfaceflinger-8858  ( 8858) [000] ...2 82317.264806: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
113062    RenderThread-9436  ( 9105) [007] d..2 82317.264810: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
113063  surfaceflinger-8858  ( 8858) [000] d..4 82317.264815: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
113064<...>-13083 ( 8858) [007] .... 82317.264824: binder_transaction_received: transaction=1572364
113065  surfaceflinger-8858  ( 8858) [000] d..5 82317.264842: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
113066          <idle>-0     (-----) [003] .n.1 82317.264848: cpu_idle: state=4294967295 cpu_id=3
113067          <idle>-0     (-----) [003] d..2 82317.264861: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
113068  surfaceflinger-8858  ( 8858) [000] d.h4 82317.264868: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
113069  surfaceflinger-8858  ( 8858) [000] d.h5 82317.264885: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
113070          <idle>-0     (-----) [001] .n.1 82317.264892: cpu_idle: state=4294967295 cpu_id=1
113071 [email protected]   (  619) [003] .... 82317.264905: binder_transaction_received: transaction=1572365
113072          <idle>-0     (-----) [001] d..2 82317.264905: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
113073  surfaceflinger-8858  ( 8858) [000] d..2 82317.264940: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113074<...>-13083 ( 8858) [007] .... 82317.264946: binder_transaction: transaction=1572366 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
113075<...>-13083 ( 8858) [007] .... 82317.264951: binder_transaction_alloc_buf: transaction=1572366 data_size=68 offsets_size=0
113076 [email protected]   (  619) [003] ...1 82317.264965: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
113077 kgsl_worker_thr-258   (  258) [001] d..2 82317.264966: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
113078          <idle>-0     (-----) [000] d..1 82317.264967: cpu_idle: state=0 cpu_id=0
113079<...>-13083 ( 8858) [007] d..2 82317.264982: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
113080    RenderThread-9436  ( 9105) [007] .... 82317.264992: binder_transaction_received: transaction=1572366
113081 kgsl_worker_thr-258   (  258) [001] d..3 82317.265013: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
113082 kgsl_worker_thr-258   (  258) [001] d..2 82317.265058: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113083    RenderThread-9436  ( 9105) [007] d..2 82317.265078: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
113084          <idle>-0     (-----) [007] d..1 82317.265097: cpu_idle: state=0 cpu_id=7
113085 [email protected]   (  619) [003] ...1 82317.265102: tracing_mark_write: B|619|HWCSession::PresentDisplay::
113086 [email protected]   (  619) [003] ...1 82317.265333: tracing_mark_write: B|619|HWDeviceDRM::Commit::
113087 [email protected]   (  619) [003] ...1 82317.265347: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
113088  kworker/u16:15-1311  ( 1311) [001] d..2 82317.265392: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113089          <idle>-0     (-----) [001] d..1 82317.265412: cpu_idle: state=0 cpu_id=1
113090          <idle>-0     (-----) [000] ...1 82317.265485: cpu_idle: state=4294967295 cpu_id=0
113091          <idle>-0     (-----) [000] d..1 82317.265494: cpu_idle: state=0 cpu_id=0
113092    RenderThread-16607 (10023) [005] .... 82317.265498: binder_transaction: transaction=1572367 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
113093    RenderThread-16607 (10023) [005] .... 82317.265503: binder_transaction_alloc_buf: transaction=1572367 data_size=192 offsets_size=8
113094    RenderThread-16607 (10023) [005] ...2 82317.265511: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
113095    RenderThread-16607 (10023) [005] d..4 82317.265515: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
113096    RenderThread-16607 (10023) [005] d..5 82317.265533: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=007
113097          <idle>-0     (-----) [007] .n.1 82317.265540: cpu_idle: state=4294967295 cpu_id=7
113098    RenderThread-16607 (10023) [005] d..2 82317.265547: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
113099          <idle>-0     (-----) [007] d..2 82317.265553: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
113100<...>-8874 ( 8858) [005] .... 82317.265559: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
113101<...>-13083 ( 8858) [007] .... 82317.265565: binder_transaction_received: transaction=1572367
113102<...>-8874 ( 8858) [005] d..2 82317.265624: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
113103          <idle>-0     (-----) [005] d..1 82317.265643: cpu_idle: state=0 cpu_id=5
113104<...>-13083 ( 8858) [007] .... 82317.265677: binder_transaction: transaction=1572368 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
113105<...>-13083 ( 8858) [007] .... 82317.265682: binder_transaction_alloc_buf: transaction=1572368 data_size=68 offsets_size=0
113106<...>-13083 ( 8858) [007] d..2 82317.265685: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
113107<...>-13083 ( 8858) [007] d..3 82317.265706: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=007
113108<...>-13083 ( 8858) [007] .... 82317.265711: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
113109<...>-13083 ( 8858) [007] d..2 82317.265750: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
113110    RenderThread-16607 (10023) [007] .... 82317.265761: binder_transaction_received: transaction=1572368
113111    RenderThread-16607 (10023) [007] d..2 82317.265867: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
113112          <idle>-0     (-----) [007] d..1 82317.265883: cpu_idle: state=0 cpu_id=7
113113 [email protected]   (  619) [003] d..2 82317.265948: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
113114 [email protected]   (  619) [003] d..3 82317.265978: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
113115          <idle>-0     (-----) [000] .n.1 82317.265983: cpu_idle: state=4294967295 cpu_id=0
113116          <idle>-0     (-----) [000] d..2 82317.265997: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
113117 [email protected]   (  619) [003] ...1 82317.266101: tracing_mark_write: E|619
113118 [email protected]   (  619) [003] ...1 82317.266108: tracing_mark_write: E|619
113119 [email protected]   (  619) [003] ...1 82317.266191: tracing_mark_write: E|619
113120 [email protected]   (  619) [003] ...1 82317.266246: tracing_mark_write: E|619
113121 [email protected]   (  619) [003] .... 82317.266267: binder_transaction: transaction=1572369 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
113122 [email protected]   (  619) [003] .... 82317.266272: binder_transaction_alloc_buf: transaction=1572369 data_size=576 offsets_size=112
113123 [email protected]   (  619) [003] d..2 82317.266295: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
113124 [email protected]   (  619) [003] d..3 82317.266329: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
113125 [email protected]   (  619) [003] .... 82317.266335: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
113126          <idle>-0     (-----) [001] .n.1 82317.266335: cpu_idle: state=4294967295 cpu_id=1
113127          <idle>-0     (-----) [001] d..2 82317.266348: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
113128  surfaceflinger-8858  ( 8858) [001] .... 82317.266359: binder_transaction_received: transaction=1572369
113129 [email protected]   (  619) [003] d..2 82317.266440: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113130          <idle>-0     (-----) [003] d..1 82317.266458: cpu_idle: state=0 cpu_id=3
113131 crtc_commit:111-321   (  321) [000] d.h2 82317.266731: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
113132 crtc_commit:111-321   (  321) [000] d.h3 82317.266762: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
113133          <idle>-0     (-----) [002] .n.1 82317.266769: cpu_idle: state=4294967295 cpu_id=2
113134          <idle>-0     (-----) [002] d..2 82317.266783: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
113135 crtc_commit:111-321   (  321) [000] d..2 82317.266827: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
113136          <idle>-0     (-----) [000] d..1 82317.266846: cpu_idle: state=0 cpu_id=0
113137 kgsl_worker_thr-258   (  258) [002] d..2 82317.266867: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113138          <idle>-0     (-----) [002] d..1 82317.266881: cpu_idle: state=0 cpu_id=2
113139  surfaceflinger-8858  ( 8858) [001] d..2 82317.266949: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113140          <idle>-0     (-----) [001] d..1 82317.266970: cpu_idle: state=0 cpu_id=1
113141          <idle>-0     (-----) [000] ...1 82317.268080: cpu_idle: state=4294967295 cpu_id=0
113142          <idle>-0     (-----) [000] d..1 82317.268086: cpu_idle: state=0 cpu_id=0
113143<...>-10045 ( 10023) [004] d..2 82317.268298: sched_switch: prev_comm=Jit thread pool prev_pid=10045 prev_prio=129 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
113144          <idle>-0     (-----) [004] d..1 82317.268324: cpu_idle: state=0 cpu_id=4
113145          <idle>-0     (-----) [003] d.s2 82317.268489: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113146          <idle>-0     (-----) [003] dns3 82317.268517: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113147          <idle>-0     (-----) [003] dns3 82317.268528: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
113148          <idle>-0     (-----) [004] ...1 82317.268537: cpu_idle: state=4294967295 cpu_id=4
113149          <idle>-0     (-----) [004] d..1 82317.268541: cpu_idle: state=0 cpu_id=4
113150          <idle>-0     (-----) [003] dns4 82317.268564: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
113151          <idle>-0     (-----) [003] dns3 82317.268571: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
113152          <idle>-0     (-----) [003] dns4 82317.268588: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
113153          <idle>-0     (-----) [003] .n.1 82317.268605: cpu_idle: state=4294967295 cpu_id=3
113154          <idle>-0     (-----) [003] d..2 82317.268618: 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
113155     rcu_preempt-7     (    7) [003] d..2 82317.268636: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
113156     rcu_preempt-7     (    7) [003] d..3 82317.268670: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
113157     rcu_preempt-7     (    7) [003] d..2 82317.268689: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
113158     kworker/3:1-25210 (25210) [003] d..2 82317.268727: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
113159         rcuop/2-29    (   29) [003] d..2 82317.268749: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113160  kworker/u16:15-1311  ( 1311) [003] d..2 82317.268996: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
113161          <idle>-0     (-----) [003] d..1 82317.269017: cpu_idle: state=0 cpu_id=3
113162          <idle>-0     (-----) [001] d.s3 82317.269029: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
113163          <idle>-0     (-----) [001] d.s4 82317.269046: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
113164          <idle>-0     (-----) [001] d.s4 82317.269058: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
113165          <idle>-0     (-----) [003] .n.1 82317.269065: cpu_idle: state=4294967295 cpu_id=3
113166          <idle>-0     (-----) [001] ...1 82317.269069: cpu_idle: state=4294967295 cpu_id=1
113167          <idle>-0     (-----) [001] d..1 82317.269075: cpu_idle: state=0 cpu_id=1
113168          <idle>-0     (-----) [003] d..2 82317.269079: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113169  kworker/u16:15-1311  ( 1311) [003] d..2 82317.269112: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113170          <idle>-0     (-----) [003] d..1 82317.269122: cpu_idle: state=0 cpu_id=3
113171          <idle>-0     (-----) [001] d.s3 82317.271814: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
113172          <idle>-0     (-----) [001] dns4 82317.271862: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
113173          <idle>-0     (-----) [001] dns3 82317.271869: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
113174          <idle>-0     (-----) [005] d.H3 82317.271871: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
113175          <idle>-0     (-----) [003] dnh2 82317.271904: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
113176          <idle>-0     (-----) [005] ...1 82317.271915: cpu_idle: state=4294967295 cpu_id=5
113177          <idle>-0     (-----) [001] dns4 82317.271916: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
113178          <idle>-0     (-----) [003] .n.1 82317.271917: cpu_idle: state=4294967295 cpu_id=3
113179          <idle>-0     (-----) [005] d..1 82317.271919: cpu_idle: state=0 cpu_id=5
113180          <idle>-0     (-----) [003] d..2 82317.271927: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
113181          <idle>-0     (-----) [001] .n.1 82317.271944: cpu_idle: state=4294967295 cpu_id=1
113182          <idle>-0     (-----) [001] d..2 82317.271960: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
113183         sugov:0-576   (  576) [003] .... 82317.271974: clk_set_rate: pwrcl_clk 979200000
113184         sugov:0-576   (  576) [003] .... 82317.271996: clk_set_rate: cpu3_pwrcl_clk 902400000
113185         sugov:0-576   (  576) [003] .... 82317.272007: clk_set_rate: cpu2_pwrcl_clk 902400000
113186         sugov:0-576   (  576) [003] .... 82317.272014: clk_set_rate: cpu1_pwrcl_clk 902400000
113187         sugov:0-576   (  576) [003] .... 82317.272022: clk_set_rate: cpu0_pwrcl_clk 979200000
113188         sugov:0-576   (  576) [003] .... 82317.272032: cpu_frequency: state=979200 cpu_id=0
113189         sugov:0-576   (  576) [003] .... 82317.272066: cpu_frequency: state=979200 cpu_id=1
113190         sugov:0-576   (  576) [003] .... 82317.272072: cpu_frequency: state=979200 cpu_id=2
113191         sugov:0-576   (  576) [003] .... 82317.272076: cpu_frequency: state=979200 cpu_id=3
113192     kworker/1:1-25249 (25249) [001] d..2 82317.272077: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113193         sugov:0-576   (  576) [003] d..2 82317.272111: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113194          <idle>-0     (-----) [003] d..1 82317.272121: cpu_idle: state=0 cpu_id=3
113195  kworker/u16:15-1311  ( 1311) [001] .... 82317.272125: clk_set_rate: l3_cluster1_vote_clk 576000000
113196  kworker/u16:15-1311  ( 1311) [001] .... 82317.272133: clk_set_rate: l3_clk 576000000
113197  kworker/u16:15-1311  ( 1311) [001] d..2 82317.272346: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
113198          <idle>-0     (-----) [001] d.s4 82317.272382: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
113199          <idle>-0     (-----) [001] d.s5 82317.272391: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
113200          <idle>-0     (-----) [001] dns5 82317.272395: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
113201          <idle>-0     (-----) [001] d..2 82317.272407: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113202  kworker/u16:15-1311  ( 1311) [001] d..2 82317.272555: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
113203          <idle>-0     (-----) [001] d.s4 82317.272591: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
113204          <idle>-0     (-----) [001] d.s5 82317.272599: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
113205          <idle>-0     (-----) [001] dns5 82317.272603: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
113206          <idle>-0     (-----) [001] d..2 82317.272614: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113207  kworker/u16:15-1311  ( 1311) [001] .... 82317.272645: clk_set_rate: l3_cluster0_vote_clk 403200000
113208  kworker/u16:15-1311  ( 1311) [001] d..2 82317.272798: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
113209          <idle>-0     (-----) [000] d.h3 82317.272811: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
113210          <idle>-0     (-----) [001] d..1 82317.272813: cpu_idle: state=0 cpu_id=1
113211          <idle>-0     (-----) [000] dnh4 82317.272826: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
113212          <idle>-0     (-----) [000] .n.1 82317.272845: cpu_idle: state=4294967295 cpu_id=0
113213          <idle>-0     (-----) [001] d.s3 82317.272847: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
113214          <idle>-0     (-----) [001] d.s4 82317.272855: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
113215          <idle>-0     (-----) [000] d..2 82317.272856: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
113216          <idle>-0     (-----) [001] dns4 82317.272860: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
113217     kworker/0:1-25262 (25262) [000] d..2 82317.272862: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
113218          <idle>-0     (-----) [001] .n.1 82317.272867: cpu_idle: state=4294967295 cpu_id=1
113219     kworker/0:1-25262 (25262) [000] d..3 82317.272871: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
113220     kworker/0:1-25262 (25262) [000] d..3 82317.272876: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
113221          <idle>-0     (-----) [001] d..2 82317.272884: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
113222     kworker/0:1-25262 (25262) [000] d..2 82317.272909: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113223          <idle>-0     (-----) [000] d..1 82317.272918: cpu_idle: state=0 cpu_id=0
113224     kworker/1:1-25249 (25249) [001] d..2 82317.272976: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113225  kworker/u16:15-1311  ( 1311) [001] d..2 82317.273001: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113226          <idle>-0     (-----) [001] d..1 82317.273012: cpu_idle: state=0 cpu_id=1
113227          <idle>-0     (-----) [003] d.s2 82317.275131: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113228          <idle>-0     (-----) [003] dns3 82317.275148: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113229          <idle>-0     (-----) [003] .n.1 82317.275160: cpu_idle: state=4294967295 cpu_id=3
113230          <idle>-0     (-----) [003] d..2 82317.275168: 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
113231     rcu_preempt-7     (    7) [003] d..2 82317.275179: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
113232     rcu_preempt-7     (    7) [003] d..3 82317.275197: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
113233     rcu_preempt-7     (    7) [003] d..2 82317.275210: 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
113234         rcuop/0-10    (   10) [003] d..2 82317.275239: 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
113235          <idle>-0     (-----) [003] d..1 82317.275252: cpu_idle: state=0 cpu_id=3
113236          <idle>-0     (-----) [000] d.h5 82317.276109: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113237          <idle>-0     (-----) [000] dnh6 82317.276124: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113238          <idle>-0     (-----) [000] dnh5 82317.276128: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
113239          <idle>-0     (-----) [000] dnh6 82317.276148: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113240          <idle>-0     (-----) [002] .n.1 82317.276154: cpu_idle: state=4294967295 cpu_id=2
113241          <idle>-0     (-----) [000] .n.1 82317.276162: cpu_idle: state=4294967295 cpu_id=0
113242          <idle>-0     (-----) [002] d..2 82317.276165: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
113243          <idle>-0     (-----) [000] d..2 82317.276172: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
113244  crtc_event:111-322   (  322) [000] d..2 82317.276202: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113245          <idle>-0     (-----) [000] d..1 82317.276212: cpu_idle: state=0 cpu_id=0
113246 crtc_commit:111-321   (  321) [002] d..2 82317.276317: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
113247          <idle>-0     (-----) [002] d..1 82317.276324: cpu_idle: state=0 cpu_id=2
113248          <idle>-0     (-----) [000] d.h5 82317.278436: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113249          <idle>-0     (-----) [000] d.h6 82317.278450: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113250          <idle>-0     (-----) [000] ...1 82317.278464: cpu_idle: state=4294967295 cpu_id=0
113251          <idle>-0     (-----) [000] d..1 82317.278468: cpu_idle: state=0 cpu_id=0
113252          <idle>-0     (-----) [002] dns3 82317.278473: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113253          <idle>-0     (-----) [002] dns4 82317.278490: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113254          <idle>-0     (-----) [000] .n.1 82317.278495: cpu_idle: state=4294967295 cpu_id=0
113255          <idle>-0     (-----) [002] .n.1 82317.278503: cpu_idle: state=4294967295 cpu_id=2
113256          <idle>-0     (-----) [000] d..2 82317.278505: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
113257          <idle>-0     (-----) [002] d..2 82317.278511: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
113258  crtc_event:111-322   (  322) [000] d..2 82317.278535: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113259          <idle>-0     (-----) [000] d..1 82317.278543: cpu_idle: state=0 cpu_id=0
113260 crtc_commit:111-321   (  321) [002] d..2 82317.278581: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113261          <idle>-0     (-----) [002] d..1 82317.278595: cpu_idle: state=0 cpu_id=2
113262          <idle>-0     (-----) [000] d.h5 82317.278742: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113263          <idle>-0     (-----) [000] dnh6 82317.278752: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113264          <idle>-0     (-----) [000] .n.1 82317.278766: cpu_idle: state=4294967295 cpu_id=0
113265          <idle>-0     (-----) [000] d..2 82317.278774: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
113266  crtc_event:111-322   (  322) [000] d..2 82317.278794: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113267          <idle>-0     (-----) [000] d..1 82317.278803: cpu_idle: state=0 cpu_id=0
113268          <idle>-0     (-----) [000] d.h2 82317.278886: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
113269          <idle>-0     (-----) [000] dnh3 82317.278899: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
113270          <idle>-0     (-----) [000] .n.1 82317.278906: cpu_idle: state=4294967295 cpu_id=0
113271          <idle>-0     (-----) [000] d..2 82317.278915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
113272        DispSync-8879  ( 8858) [000] d..1 82317.278938: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
113273        DispSync-8879  ( 8858) [000] d..2 82317.278952: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
113274        DispSync-8879  ( 8858) [000] d..1 82317.278958: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
113275          <idle>-0     (-----) [002] .n.1 82317.278958: cpu_idle: state=4294967295 cpu_id=2
113276          <idle>-0     (-----) [002] d..2 82317.278967: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
113277        DispSync-8879  ( 8858) [000] d..2 82317.278982: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
113278          <idle>-0     (-----) [003] .n.1 82317.278988: cpu_idle: state=4294967295 cpu_id=3
113279          <idle>-0     (-----) [003] d..2 82317.278998: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
113280        DispSync-8879  ( 8858) [000] d..2 82317.279011: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113281   sfEventThread-8882  ( 8858) [002] d..3 82317.279016: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
113282          <idle>-0     (-----) [000] d..1 82317.279022: cpu_idle: state=0 cpu_id=0
113283   sfEventThread-8882  ( 8858) [002] d..4 82317.279033: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
113284          <idle>-0     (-----) [001] .n.1 82317.279038: cpu_idle: state=4294967295 cpu_id=1
113285          <idle>-0     (-----) [001] d..2 82317.279049: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
113286  appEventThread-8881  ( 8858) [003] d..3 82317.279063: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
113287   sfEventThread-8882  ( 8858) [002] d..2 82317.279067: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113288          <idle>-0     (-----) [002] d..1 82317.279080: cpu_idle: state=0 cpu_id=2
113289  appEventThread-8881  ( 8858) [003] d..4 82317.279090: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
113290          <idle>-0     (-----) [000] .n.1 82317.279095: cpu_idle: state=4294967295 cpu_id=0
113291          <idle>-0     (-----) [000] d..2 82317.279107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
113292  appEventThread-8881  ( 8858) [003] d..3 82317.279108: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113293          <idle>-0     (-----) [004] dnh2 82317.279131: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113294          <idle>-0     (-----) [004] .n.1 82317.279135: cpu_idle: state=4294967295 cpu_id=4
113295          <idle>-0     (-----) [004] d..2 82317.279143: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
113296  appEventThread-8881  ( 8858) [003] d..2 82317.279158: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113297          <idle>-0     (-----) [003] d..1 82317.279169: cpu_idle: state=0 cpu_id=3
113298<...>-9105 ( 9105) [000] .... 82317.279402: binder_transaction: transaction=1572370 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
113299 s.nexuslauncher-10023 (10023) [004] .... 82317.279408: binder_transaction: transaction=1572371 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
113300<...>-9105 ( 9105) [000] .... 82317.279410: binder_transaction_alloc_buf: transaction=1572370 data_size=80 offsets_size=0
113301 s.nexuslauncher-10023 (10023) [004] .... 82317.279412: binder_transaction_alloc_buf: transaction=1572371 data_size=80 offsets_size=0
113302<...>-9105 ( 9105) [000] d..4 82317.279416: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
113303<...>-9105 ( 9105) [000] d..5 82317.279451: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
113304          <idle>-0     (-----) [002] .n.1 82317.279456: cpu_idle: state=4294967295 cpu_id=2
113305 s.nexuslauncher-10023 (10023) [004] d..4 82317.279500: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
113306          <idle>-0     (-----) [002] d..2 82317.279501: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
113307<...>-13083 ( 8858) [002] .... 82317.279560: binder_transaction_received: transaction=1572370
113308          <idle>-0     (-----) [003] dnh2 82317.279560: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
113309          <idle>-0     (-----) [003] .n.1 82317.279566: cpu_idle: state=4294967295 cpu_id=3
113310          <idle>-0     (-----) [003] d..2 82317.279573: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
113311<...>-8874 ( 8858) [003] .... 82317.279580: binder_transaction_received: transaction=1572371
113312 s.nexuslauncher-10023 (10023) [004] d..3 82317.279584: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=007
113313<...>-13083 ( 8858) [002] d..1 82317.279589: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
113314<...>-9105 ( 9105) [000] d..3 82317.279591: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=007
113315 s.nexuslauncher-10023 (10023) [004] d..4 82317.279603: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
113316          <idle>-0     (-----) [005] .n.1 82317.279609: cpu_idle: state=4294967295 cpu_id=5
113317<...>-13083 ( 8858) [002] d..2 82317.279610: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
113318<...>-13083 ( 8858) [002] d..1 82317.279615: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
113319          <idle>-0     (-----) [005] d..2 82317.279619: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
113320<...>-8874 ( 8858) [003] d..2 82317.279627: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113321          <idle>-0     (-----) [006] dnh2 82317.279631: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
113322<...>-9105 ( 9105) [000] d..2 82317.279632: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
113323          <idle>-0     (-----) [003] d..1 82317.279636: cpu_idle: state=0 cpu_id=3
113324          <idle>-0     (-----) [006] .n.1 82317.279636: cpu_idle: state=4294967295 cpu_id=6
113325<...>-13083 ( 8858) [002] d..2 82317.279643: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
113326          <idle>-0     (-----) [006] d..2 82317.279646: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
113327          <idle>-0     (-----) [003] .n.1 82317.279649: cpu_idle: state=4294967295 cpu_id=3
113328          <idle>-0     (-----) [003] d..2 82317.279658: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
113329    RenderThread-16607 (10023) [005] d..2 82317.279666: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
113330  appEventThread-8881  ( 8858) [000] d..1 82317.279668: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
113331<...>-8874 ( 8858) [003] d..2 82317.279677: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113332          <idle>-0     (-----) [005] d..1 82317.279678: cpu_idle: state=0 cpu_id=5
113333<...>-13083 ( 8858) [002] d..2 82317.279680: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113334          <idle>-0     (-----) [003] d..1 82317.279684: cpu_idle: state=0 cpu_id=3
113335    RenderThread-9436  ( 9105) [006] d..2 82317.279693: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
113336          <idle>-0     (-----) [002] d..1 82317.279693: cpu_idle: state=0 cpu_id=2
113337  appEventThread-8881  ( 8858) [000] d..2 82317.279693: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
113338          <idle>-0     (-----) [003] .n.1 82317.279698: cpu_idle: state=4294967295 cpu_id=3
113339          <idle>-0     (-----) [006] d..1 82317.279703: cpu_idle: state=0 cpu_id=6
113340          <idle>-0     (-----) [003] d..2 82317.279705: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
113341<...>-8874 ( 8858) [003] d..1 82317.279714: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
113342  appEventThread-8881  ( 8858) [000] d..2 82317.279714: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
113343<...>-8874 ( 8858) [003] d..2 82317.279738: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
113344          <idle>-0     (-----) [002] .n.1 82317.279744: cpu_idle: state=4294967295 cpu_id=2
113345          <idle>-0     (-----) [002] d..2 82317.279754: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
113346  surfaceflinger-8858  ( 8858) [001] d..1 82317.279762: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
113347<...>-8874 ( 8858) [003] d..2 82317.279784: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113348  surfaceflinger-8858  ( 8858) [001] d..2 82317.279794: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
113349          <idle>-0     (-----) [003] d..2 82317.279800: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
113350  appEventThread-8881  ( 8858) [002] d..2 82317.279803: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113351          <idle>-0     (-----) [002] d..1 82317.279813: cpu_idle: state=0 cpu_id=2
113352   sfEventThread-8882  ( 8858) [003] d..2 82317.279840: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113353<...>-9105 ( 9105) [000] d..3 82317.279841: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
113354          <idle>-0     (-----) [003] d..1 82317.279847: cpu_idle: state=0 cpu_id=3
113355          <idle>-0     (-----) [006] dnh2 82317.279863: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
113356          <idle>-0     (-----) [006] .n.1 82317.279868: cpu_idle: state=4294967295 cpu_id=6
113357          <idle>-0     (-----) [006] d..2 82317.279875: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
113358<...>-9105 ( 9105) [000] d..2 82317.279882: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113359          <idle>-0     (-----) [000] d..1 82317.279901: cpu_idle: state=0 cpu_id=0
113360    RenderThread-9436  ( 9105) [006] d..1 82317.279946: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
113361 s.nexuslauncher-10023 (10023) [004] d..3 82317.279961: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
113362          <idle>-0     (-----) [000] dnh2 82317.279970: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
113363 s.nexuslauncher-10023 (10023) [004] d..4 82317.279977: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
113364          <idle>-0     (-----) [000] .n.1 82317.279977: cpu_idle: state=4294967295 cpu_id=0
113365          <idle>-0     (-----) [005] .n.1 82317.279982: cpu_idle: state=4294967295 cpu_id=5
113366          <idle>-0     (-----) [000] d..2 82317.279987: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
113367          <idle>-0     (-----) [005] d..2 82317.279991: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
113368 s.nexuslauncher-10023 (10023) [004] d..2 82317.280000: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
113369    RenderThread-9436  ( 9105) [006] .... 82317.280005: binder_transaction: transaction=1572372 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
113370    RenderThread-9436  ( 9105) [006] .... 82317.280008: binder_transaction_alloc_buf: transaction=1572372 data_size=104 offsets_size=0
113371    RenderThread-9436  ( 9105) [006] d..4 82317.280012: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
113372          <idle>-0     (-----) [004] d..1 82317.280014: cpu_idle: state=0 cpu_id=4
113373    RenderThread-9436  ( 9105) [006] d..5 82317.280029: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
113374    RenderThread-9436  ( 9105) [006] d..2 82317.280068: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
113375<...>-9105 ( 9105) [000] d..2 82317.280077: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113376<...>-8874 ( 8858) [006] .... 82317.280078: binder_transaction_received: transaction=1572372
113377          <idle>-0     (-----) [000] d..1 82317.280091: cpu_idle: state=0 cpu_id=0
113378    RenderThread-16607 (10023) [005] d..1 82317.280116: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113379<...>-8874 ( 8858) [006] .... 82317.280128: binder_transaction: transaction=1572373 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
113380    RenderThread-16607 (10023) [005] d..2 82317.280129: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113381<...>-8874 ( 8858) [006] .... 82317.280132: binder_transaction_alloc_buf: transaction=1572373 data_size=52 offsets_size=8
113382          <idle>-0     (-----) [004] .n.1 82317.280135: cpu_idle: state=4294967295 cpu_id=4
113383<...>-8874 ( 8858) [006] d..2 82317.280140: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
113384    RenderThread-16607 (10023) [005] d..1 82317.280142: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
113385          <idle>-0     (-----) [004] d..2 82317.280145: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
113386<...>-8874 ( 8858) [006] d..3 82317.280153: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
113387    RenderThread-16607 (10023) [005] d..2 82317.280164: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
113388          <idle>-0     (-----) [007] .n.1 82317.280172: cpu_idle: state=4294967295 cpu_id=7
113389          <idle>-0     (-----) [007] d..2 82317.280183: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
113390<...>-8874 ( 8858) [006] d..2 82317.280184: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
113391    RenderThread-9436  ( 9105) [006] .... 82317.280193: binder_transaction_received: transaction=1572373
113392    RenderThread-16607 (10023) [005] .... 82317.280213: binder_transaction: transaction=1572374 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
113393    RenderThread-16607 (10023) [005] .... 82317.280217: binder_transaction_alloc_buf: transaction=1572374 data_size=104 offsets_size=0
113394    RenderThread-16607 (10023) [005] ...2 82317.280220: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
113395 s.nexuslauncher-10023 (10023) [004] d..2 82317.280223: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
113396    RenderThread-16607 (10023) [005] d..4 82317.280224: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
113397          <idle>-0     (-----) [004] d..1 82317.280233: cpu_idle: state=0 cpu_id=4
113398    RenderThread-16607 (10023) [005] d..5 82317.280238: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
113399    RenderThread-16607 (10023) [005] d..2 82317.280249: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
113400<...>-8874 ( 8858) [005] .... 82317.280258: binder_transaction_received: transaction=1572374
113401<...>-8874 ( 8858) [005] .... 82317.280304: binder_transaction: transaction=1572375 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
113402<...>-8874 ( 8858) [005] .... 82317.280307: binder_transaction_alloc_buf: transaction=1572375 data_size=52 offsets_size=8
113403<...>-8874 ( 8858) [005] d..2 82317.280313: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
113404<...>-8874 ( 8858) [005] dn.3 82317.280323: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
113405<...>-8874 ( 8858) [005] d..2 82317.280329: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
113406    RenderThread-16607 (10023) [005] .... 82317.280337: binder_transaction_received: transaction=1572375
113407<...>-18840 ( 10023) [007] .... 82317.280380: binder_transaction: transaction=1572376 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
113408<...>-18840 ( 10023) [007] .... 82317.280384: binder_transaction_alloc_buf: transaction=1572376 data_size=684 offsets_size=48
113409<...>-18840 ( 10023) [007] ...2 82317.280398: binder_set_priority: proc=8858 thread=13083 old=120 => new=118 desired=118
113410<...>-18840 ( 10023) [007] d..4 82317.280400: sched_waking: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=002
113411<...>-18840 ( 10023) [007] dn.5 82317.280420: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=007
113412<...>-18840 ( 10023) [007] d..2 82317.280457: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=118
113413<...>-13083 ( 8858) [007] .... 82317.280467: binder_transaction_received: transaction=1572376
113414<...>-13083 ( 8858) [007] .... 82317.280565: binder_transaction: transaction=1572377 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
113415<...>-13083 ( 8858) [007] .... 82317.280568: binder_transaction_alloc_buf: transaction=1572377 data_size=0 offsets_size=0
113416<...>-13083 ( 8858) [007] .... 82317.280570: binder_set_priority: proc=8858 thread=13083 old=118 => new=120 desired=120
113417<...>-13083 ( 8858) [007] d..2 82317.280608: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
113418<...>-18840 ( 10023) [007] .... 82317.280618: binder_transaction_received: transaction=1572377
113419<...>-18840 ( 10023) [007] d..2 82317.280672: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
113420          <idle>-0     (-----) [007] d..1 82317.280685: cpu_idle: state=0 cpu_id=7
113421  surfaceflinger-8858  ( 8858) [001] ...1 82317.280769: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
113422  surfaceflinger-8858  ( 8858) [001] ...1 82317.280776: tracing_mark_write: E|8858
113423  surfaceflinger-8858  ( 8858) [001] .... 82317.280828: binder_transaction: transaction=1572378 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
113424  surfaceflinger-8858  ( 8858) [001] .... 82317.280832: binder_transaction_alloc_buf: transaction=1572378 data_size=540 offsets_size=96
113425  surfaceflinger-8858  ( 8858) [001] ...2 82317.280853: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
113426  surfaceflinger-8858  ( 8858) [001] d..4 82317.280859: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
113427  surfaceflinger-8858  ( 8858) [001] d..5 82317.280878: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
113428          <idle>-0     (-----) [003] .n.1 82317.280883: cpu_idle: state=4294967295 cpu_id=3
113429          <idle>-0     (-----) [003] d..2 82317.280890: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
113430 [email protected]   (  619) [003] .... 82317.280899: binder_transaction_received: transaction=1572378
113431  surfaceflinger-8858  ( 8858) [001] d..2 82317.280908: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113432          <idle>-0     (-----) [001] d..1 82317.280924: cpu_idle: state=0 cpu_id=1
113433 [email protected]   (  619) [003] ...1 82317.280944: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
113434    RenderThread-9436  ( 9105) [006] .... 82317.281003: binder_transaction: transaction=1572379 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
113435    RenderThread-9436  ( 9105) [006] .... 82317.281008: binder_transaction_alloc_buf: transaction=1572379 data_size=192 offsets_size=8
113436    RenderThread-9436  ( 9105) [006] d..4 82317.281015: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
113437          <idle>-0     (-----) [000] ...1 82317.281022: cpu_idle: state=4294967295 cpu_id=0
113438          <idle>-0     (-----) [000] d..1 82317.281027: cpu_idle: state=0 cpu_id=0
113439    RenderThread-9436  ( 9105) [006] dn.5 82317.281034: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
113440    RenderThread-9436  ( 9105) [006] d..2 82317.281041: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
113441<...>-13083 ( 8858) [006] .... 82317.281051: binder_transaction_received: transaction=1572379
113442 [email protected]   (  619) [003] ...1 82317.281064: tracing_mark_write: B|619|HWCSession::PresentDisplay::
113443          <idle>-0     (-----) [000] d.h3 82317.281134: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
113444<...>-13083 ( 8858) [006] .... 82317.281146: binder_transaction: transaction=1572380 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
113445<...>-13083 ( 8858) [006] .... 82317.281150: binder_transaction_alloc_buf: transaction=1572380 data_size=68 offsets_size=0
113446          <idle>-0     (-----) [000] d.h4 82317.281153: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
113447          <idle>-0     (-----) [002] .n.1 82317.281158: cpu_idle: state=4294967295 cpu_id=2
113448          <idle>-0     (-----) [000] ...1 82317.281165: cpu_idle: state=4294967295 cpu_id=0
113449          <idle>-0     (-----) [002] d..2 82317.281167: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
113450          <idle>-0     (-----) [000] d..1 82317.281171: cpu_idle: state=0 cpu_id=0
113451<...>-13083 ( 8858) [006] d..2 82317.281176: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
113452    RenderThread-9436  ( 9105) [006] .... 82317.281186: binder_transaction_received: transaction=1572380
113453 kgsl_worker_thr-258   (  258) [002] d..2 82317.281202: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
113454    RenderThread-16607 (10023) [005] .... 82317.281210: binder_transaction: transaction=1572381 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
113455    RenderThread-16607 (10023) [005] .... 82317.281214: binder_transaction_alloc_buf: transaction=1572381 data_size=192 offsets_size=8
113456 [email protected]   (  619) [003] ...1 82317.281219: tracing_mark_write: B|619|HWDeviceDRM::Commit::
113457    RenderThread-16607 (10023) [005] ...2 82317.281221: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
113458          <idle>-0     (-----) [000] ...1 82317.281222: cpu_idle: state=4294967295 cpu_id=0
113459    RenderThread-16607 (10023) [005] d..4 82317.281224: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
113460          <idle>-0     (-----) [000] d..1 82317.281225: cpu_idle: state=0 cpu_id=0
113461 [email protected]   (  619) [003] ...1 82317.281231: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
113462 kgsl_worker_thr-258   (  258) [002] d..3 82317.281241: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
113463    RenderThread-16607 (10023) [005] d..5 82317.281247: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=004
113464          <idle>-0     (-----) [004] .n.1 82317.281252: cpu_idle: state=4294967295 cpu_id=4
113465 kgsl_worker_thr-258   (  258) [002] d..2 82317.281259: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113466    RenderThread-9436  ( 9105) [006] d..2 82317.281260: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
113467    RenderThread-16607 (10023) [005] d..2 82317.281261: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
113468          <idle>-0     (-----) [004] d..2 82317.281262: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
113469<...>-8874 ( 8858) [005] .... 82317.281270: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
113470<...>-13083 ( 8858) [004] .... 82317.281274: binder_transaction_received: transaction=1572381
113471          <idle>-0     (-----) [006] d..1 82317.281275: cpu_idle: state=0 cpu_id=6
113472<...>-8874 ( 8858) [005] d..2 82317.281323: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
113473          <idle>-0     (-----) [005] d..1 82317.281338: cpu_idle: state=0 cpu_id=5
113474<...>-13083 ( 8858) [004] .... 82317.281374: binder_transaction: transaction=1572382 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
113475<...>-13083 ( 8858) [004] .... 82317.281378: binder_transaction_alloc_buf: transaction=1572382 data_size=68 offsets_size=0
113476<...>-13083 ( 8858) [004] d..2 82317.281381: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
113477<...>-13083 ( 8858) [004] d..3 82317.281398: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
113478<...>-13083 ( 8858) [004] .... 82317.281401: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
113479<...>-13083 ( 8858) [004] d..2 82317.281433: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
113480    RenderThread-16607 (10023) [004] .... 82317.281442: binder_transaction_received: transaction=1572382
113481  kworker/u16:15-1311  ( 1311) [002] d..2 82317.281455: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113482          <idle>-0     (-----) [002] d..1 82317.281471: cpu_idle: state=0 cpu_id=2
113483    RenderThread-16607 (10023) [004] d..2 82317.281527: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
113484          <idle>-0     (-----) [004] d..1 82317.281541: cpu_idle: state=0 cpu_id=4
113485 [email protected]   (  619) [003] d.s1 82317.281824: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113486 [email protected]   (  619) [003] d.s2 82317.281844: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113487 [email protected]   (  619) [003] d.s2 82317.281851: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
113488 [email protected]   (  619) [003] d.s3 82317.281864: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
113489          <idle>-0     (-----) [002] .n.1 82317.281871: cpu_idle: state=4294967295 cpu_id=2
113490 [email protected]   (  619) [003] d..2 82317.281880: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113491          <idle>-0     (-----) [002] d..2 82317.281884: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113492 [email protected]   (  619) [003] d..3 82317.281908: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
113493          <idle>-0     (-----) [000] .n.1 82317.281913: cpu_idle: state=4294967295 cpu_id=0
113494          <idle>-0     (-----) [000] d..2 82317.281925: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
113495  kworker/u16:15-1311  ( 1311) [002] .... 82317.281949: clk_set_rate: l3_cluster0_vote_clk 300000000
113496 [email protected]   (  619) [003] ...1 82317.282024: tracing_mark_write: E|619
113497 [email protected]   (  619) [003] ...1 82317.282030: tracing_mark_write: E|619
113498 [email protected]   (  619) [003] ...1 82317.282091: tracing_mark_write: E|619
113499 [email protected]   (  619) [003] ...1 82317.282137: tracing_mark_write: E|619
113500  kworker/u16:15-1311  ( 1311) [002] d..2 82317.282143: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
113501 [email protected]   (  619) [003] .... 82317.282151: binder_transaction: transaction=1572383 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
113502 [email protected]   (  619) [003] .... 82317.282155: binder_transaction_alloc_buf: transaction=1572383 data_size=576 offsets_size=112
113503          <idle>-0     (-----) [002] d..1 82317.282158: cpu_idle: state=0 cpu_id=2
113504 [email protected]   (  619) [003] d..2 82317.282173: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
113505          <idle>-0     (-----) [001] d.s3 82317.282176: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
113506          <idle>-0     (-----) [001] d.s4 82317.282192: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
113507          <idle>-0     (-----) [001] d.s4 82317.282201: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
113508 [email protected]   (  619) [003] d..3 82317.282207: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
113509          <idle>-0     (-----) [002] .n.1 82317.282207: cpu_idle: state=4294967295 cpu_id=2
113510 [email protected]   (  619) [003] .... 82317.282212: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
113511          <idle>-0     (-----) [002] d..2 82317.282217: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
113512          <idle>-0     (-----) [001] ...1 82317.282218: cpu_idle: state=4294967295 cpu_id=1
113513          <idle>-0     (-----) [001] d..1 82317.282224: cpu_idle: state=0 cpu_id=1
113514  surfaceflinger-8858  ( 8858) [002] .... 82317.282226: binder_transaction_received: transaction=1572383
113515 [email protected]   (  619) [003] d..2 82317.282283: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
113516     rcu_preempt-7     (    7) [003] d..2 82317.282323: 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
113517          <idle>-0     (-----) [003] d..1 82317.282340: cpu_idle: state=0 cpu_id=3
113518 crtc_commit:111-321   (  321) [000] d.h2 82317.282361: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
113519 crtc_commit:111-321   (  321) [000] d.h3 82317.282384: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
113520          <idle>-0     (-----) [001] .n.1 82317.282389: cpu_idle: state=4294967295 cpu_id=1
113521          <idle>-0     (-----) [001] d..2 82317.282401: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
113522 kgsl_worker_thr-258   (  258) [001] d..2 82317.282473: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113523          <idle>-0     (-----) [001] d..1 82317.282484: cpu_idle: state=0 cpu_id=1
113524 crtc_commit:111-321   (  321) [000] d..2 82317.282676: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
113525          <idle>-0     (-----) [000] d..1 82317.282691: cpu_idle: state=0 cpu_id=0
113526  surfaceflinger-8858  ( 8858) [002] d..2 82317.282707: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113527  kworker/u16:15-1311  ( 1311) [002] d..2 82317.282884: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
113528          <idle>-0     (-----) [002] d..1 82317.282899: cpu_idle: state=0 cpu_id=2
113529          <idle>-0     (-----) [001] d.s3 82317.282914: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
113530          <idle>-0     (-----) [001] d.s4 82317.282925: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
113531          <idle>-0     (-----) [001] d.s4 82317.282933: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
113532          <idle>-0     (-----) [002] .n.1 82317.282941: cpu_idle: state=4294967295 cpu_id=2
113533          <idle>-0     (-----) [001] ...1 82317.282943: cpu_idle: state=4294967295 cpu_id=1
113534          <idle>-0     (-----) [001] d..1 82317.282951: cpu_idle: state=0 cpu_id=1
113535          <idle>-0     (-----) [002] d..2 82317.282952: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113536  kworker/u16:15-1311  ( 1311) [002] .... 82317.282985: clk_set_rate: l3_cluster1_vote_clk 300000000
113537  kworker/u16:15-1311  ( 1311) [002] .... 82317.282992: clk_set_rate: l3_clk 300000000
113538  kworker/u16:15-1311  ( 1311) [002] d..2 82317.283050: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113539          <idle>-0     (-----) [002] d..1 82317.283065: cpu_idle: state=0 cpu_id=2
113540          <idle>-0     (-----) [000] ...1 82317.284054: cpu_idle: state=4294967295 cpu_id=0
113541          <idle>-0     (-----) [000] d..1 82317.284060: cpu_idle: state=0 cpu_id=0
113542          <idle>-0     (-----) [002] ...1 82317.284215: cpu_idle: state=4294967295 cpu_id=2
113543          <idle>-0     (-----) [002] d..1 82317.284219: cpu_idle: state=0 cpu_id=2
113544          <idle>-0     (-----) [001] ...1 82317.284405: cpu_idle: state=4294967295 cpu_id=1
113545          <idle>-0     (-----) [001] d..1 82317.284409: cpu_idle: state=0 cpu_id=1
113546          <idle>-0     (-----) [003] d.s2 82317.288478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113547          <idle>-0     (-----) [003] dns3 82317.288498: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113548          <idle>-0     (-----) [003] .n.1 82317.288518: cpu_idle: state=4294967295 cpu_id=3
113549          <idle>-0     (-----) [003] d..2 82317.288531: 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
113550     rcu_preempt-7     (    7) [003] d..2 82317.288544: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
113551     rcu_preempt-7     (    7) [003] d..3 82317.288564: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
113552     rcu_preempt-7     (    7) [003] d..2 82317.288582: 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
113553         rcuop/2-29    (   29) [003] d..2 82317.288618: 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
113554          <idle>-0     (-----) [003] d..1 82317.288633: cpu_idle: state=0 cpu_id=3
113555          <idle>-0     (-----) [000] d.h5 82317.292585: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113556          <idle>-0     (-----) [000] dnh6 82317.292606: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113557          <idle>-0     (-----) [000] dnh5 82317.292611: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
113558          <idle>-0     (-----) [000] dnh6 82317.292631: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
113559          <idle>-0     (-----) [001] .n.1 82317.292637: cpu_idle: state=4294967295 cpu_id=1
113560          <idle>-0     (-----) [001] d..2 82317.292653: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
113561          <idle>-0     (-----) [000] dnh3 82317.292724: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
113562          <idle>-0     (-----) [000] dnh4 82317.292742: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
113563          <idle>-0     (-----) [003] .n.1 82317.292749: cpu_idle: state=4294967295 cpu_id=3
113564          <idle>-0     (-----) [000] .n.1 82317.292750: cpu_idle: state=4294967295 cpu_id=0
113565 crtc_commit:111-321   (  321) [001] d..2 82317.292753: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
113566          <idle>-0     (-----) [001] d..2 82317.292758: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113567          <idle>-0     (-----) [003] d..2 82317.292761: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
113568          <idle>-0     (-----) [000] d..2 82317.292764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
113569          <idle>-0     (-----) [001] dn.3 82317.292774: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
113570  crtc_event:111-322   (  322) [000] d..2 82317.292780: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
113571          <idle>-0     (-----) [001] d..2 82317.292784: 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
113572     ksoftirqd/1-18    (   18) [001] d.s2 82317.292798: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
113573         sugov:0-576   (  576) [003] .... 82317.292798: clk_set_rate: pwrcl_clk 748800000
113574  crtc_event:111-322   (  322) [000] d..3 82317.292812: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113575         sugov:0-576   (  576) [003] .... 82317.292813: clk_set_rate: cpu3_pwrcl_clk 979200000
113576          <idle>-0     (-----) [002] .n.1 82317.292817: cpu_idle: state=4294967295 cpu_id=2
113577         sugov:0-576   (  576) [003] .... 82317.292823: clk_set_rate: cpu2_pwrcl_clk 979200000
113578          <idle>-0     (-----) [002] d..2 82317.292830: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
113579         sugov:0-576   (  576) [003] .... 82317.292830: clk_set_rate: cpu1_pwrcl_clk 979200000
113580         sugov:0-576   (  576) [003] .... 82317.292839: clk_set_rate: cpu0_pwrcl_clk 748800000
113581  crtc_event:111-322   (  322) [000] d..2 82317.292849: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113582     ksoftirqd/1-18    (   18) [001] d.s3 82317.292865: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
113583          <idle>-0     (-----) [000] d..2 82317.292882: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113584     ksoftirqd/1-18    (   18) [001] d..2 82317.292907: 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
113585          <idle>-0     (-----) [001] d..1 82317.292923: cpu_idle: state=0 cpu_id=1
113586 crtc_commit:111-321   (  321) [002] d..2 82317.292954: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
113587         sugov:0-576   (  576) [003] .... 82317.292954: cpu_frequency: state=748800 cpu_id=0
113588          <idle>-0     (-----) [002] d..1 82317.292964: cpu_idle: state=0 cpu_id=2
113589         sugov:0-576   (  576) [003] .... 82317.292981: cpu_frequency: state=748800 cpu_id=1
113590         sugov:0-576   (  576) [003] .... 82317.292986: cpu_frequency: state=748800 cpu_id=2
113591         sugov:0-576   (  576) [003] .... 82317.293006: cpu_frequency: state=748800 cpu_id=3
113592         sugov:0-576   (  576) [003] d..2 82317.293051: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113593          <idle>-0     (-----) [003] d..1 82317.293096: cpu_idle: state=0 cpu_id=3
113594  kworker/u16:15-1311  ( 1311) [000] d..2 82317.293123: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113595          <idle>-0     (-----) [000] d..1 82317.293140: cpu_idle: state=0 cpu_id=0
113596          <idle>-0     (-----) [000] d.h5 82317.294926: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113597          <idle>-0     (-----) [000] d.h6 82317.294947: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113598          <idle>-0     (-----) [002] .n.1 82317.294954: cpu_idle: state=4294967295 cpu_id=2
113599          <idle>-0     (-----) [002] d..2 82317.294963: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
113600          <idle>-0     (-----) [000] ...1 82317.294969: cpu_idle: state=4294967295 cpu_id=0
113601          <idle>-0     (-----) [000] d..1 82317.294974: cpu_idle: state=0 cpu_id=0
113602 crtc_commit:111-321   (  321) [002] d..2 82317.295050: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113603          <idle>-0     (-----) [002] d..1 82317.295061: cpu_idle: state=0 cpu_id=2
113604          <idle>-0     (-----) [003] d.s2 82317.295143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113605          <idle>-0     (-----) [002] d.s3 82317.295144: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113606          <idle>-0     (-----) [003] dns3 82317.295166: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113607          <idle>-0     (-----) [002] d.s4 82317.295167: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113608          <idle>-0     (-----) [003] .n.1 82317.295183: cpu_idle: state=4294967295 cpu_id=3
113609          <idle>-0     (-----) [003] d..2 82317.295195: 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
113610          <idle>-0     (-----) [002] ...1 82317.295198: cpu_idle: state=4294967295 cpu_id=2
113611          <idle>-0     (-----) [002] d..1 82317.295206: cpu_idle: state=0 cpu_id=2
113612     rcu_preempt-7     (    7) [003] d..2 82317.295233: 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
113613          <idle>-0     (-----) [000] .n.1 82317.295237: cpu_idle: state=4294967295 cpu_id=0
113614          <idle>-0     (-----) [003] d..1 82317.295250: cpu_idle: state=0 cpu_id=3
113615          <idle>-0     (-----) [000] d..2 82317.295252: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
113616  crtc_event:111-322   (  322) [000] d..2 82317.295294: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113617          <idle>-0     (-----) [000] d..1 82317.295306: cpu_idle: state=0 cpu_id=0
113618          <idle>-0     (-----) [000] d.h2 82317.295349: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
113619          <idle>-0     (-----) [000] dnh3 82317.295368: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
113620          <idle>-0     (-----) [000] .n.1 82317.295379: cpu_idle: state=4294967295 cpu_id=0
113621          <idle>-0     (-----) [000] d..2 82317.295389: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
113622        DispSync-8879  ( 8858) [000] d..1 82317.295422: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
113623        DispSync-8879  ( 8858) [000] d..2 82317.295443: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
113624          <idle>-0     (-----) [003] .n.1 82317.295449: cpu_idle: state=4294967295 cpu_id=3
113625        DispSync-8879  ( 8858) [000] d..1 82317.295450: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
113626          <idle>-0     (-----) [003] d..2 82317.295462: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
113627        DispSync-8879  ( 8858) [000] d..2 82317.295464: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
113628          <idle>-0     (-----) [002] .n.1 82317.295470: cpu_idle: state=4294967295 cpu_id=2
113629          <idle>-0     (-----) [002] d..2 82317.295484: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
113630        DispSync-8879  ( 8858) [000] d..2 82317.295508: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113631   sfEventThread-8882  ( 8858) [003] d..3 82317.295525: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
113632          <idle>-0     (-----) [000] d..1 82317.295526: cpu_idle: state=0 cpu_id=0
113633  appEventThread-8881  ( 8858) [002] d..3 82317.295554: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
113634   sfEventThread-8882  ( 8858) [003] d..4 82317.295560: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
113635          <idle>-0     (-----) [001] .n.1 82317.295566: cpu_idle: state=4294967295 cpu_id=1
113636          <idle>-0     (-----) [001] d..2 82317.295581: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
113637  appEventThread-8881  ( 8858) [002] d..4 82317.295582: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
113638          <idle>-0     (-----) [000] .n.1 82317.295589: cpu_idle: state=4294967295 cpu_id=0
113639  appEventThread-8881  ( 8858) [002] d..3 82317.295603: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113640          <idle>-0     (-----) [000] d..2 82317.295606: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
113641   sfEventThread-8882  ( 8858) [003] d..2 82317.295608: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113642          <idle>-0     (-----) [003] d..1 82317.295627: cpu_idle: state=0 cpu_id=3
113643          <idle>-0     (-----) [004] dnh2 82317.295632: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113644          <idle>-0     (-----) [004] .n.1 82317.295637: cpu_idle: state=4294967295 cpu_id=4
113645          <idle>-0     (-----) [004] d..2 82317.295646: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
113646  appEventThread-8881  ( 8858) [002] d..2 82317.295671: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113647          <idle>-0     (-----) [002] d..1 82317.295690: cpu_idle: state=0 cpu_id=2
113648 s.nexuslauncher-10023 (10023) [004] .... 82317.295892: binder_transaction: transaction=1572384 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
113649 s.nexuslauncher-10023 (10023) [004] .... 82317.295898: binder_transaction_alloc_buf: transaction=1572384 data_size=80 offsets_size=0
113650 s.nexuslauncher-10023 (10023) [004] d..4 82317.295902: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
113651          <idle>-0     (-----) [002] dnh2 82317.295971: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
113652<...>-9105 ( 9105) [000] .... 82317.295971: binder_transaction: transaction=1572385 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
113653<...>-9105 ( 9105) [000] .... 82317.295979: binder_transaction_alloc_buf: transaction=1572385 data_size=80 offsets_size=0
113654          <idle>-0     (-----) [002] .n.1 82317.295980: cpu_idle: state=4294967295 cpu_id=2
113655<...>-9105 ( 9105) [000] d..4 82317.295987: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
113656 s.nexuslauncher-10023 (10023) [004] d..3 82317.295992: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
113657          <idle>-0     (-----) [002] d..2 82317.295993: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
113658 s.nexuslauncher-10023 (10023) [004] d..4 82317.296014: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
113659          <idle>-0     (-----) [005] .n.1 82317.296020: cpu_idle: state=4294967295 cpu_id=5
113660          <idle>-0     (-----) [005] d..2 82317.296039: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
113661<...>-9105 ( 9105) [000] d..5 82317.296043: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
113662          <idle>-0     (-----) [003] .n.1 82317.296049: cpu_idle: state=4294967295 cpu_id=3
113663          <idle>-0     (-----) [003] d..2 82317.296110: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
113664<...>-13083 ( 8858) [002] .... 82317.296111: binder_transaction_received: transaction=1572384
113665    RenderThread-16607 (10023) [005] d..2 82317.296118: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
113666<...>-8874 ( 8858) [003] .... 82317.296122: binder_transaction_received: transaction=1572385
113667          <idle>-0     (-----) [005] d..1 82317.296129: cpu_idle: state=0 cpu_id=5
113668<...>-13083 ( 8858) [002] d..1 82317.296151: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
113669<...>-9105 ( 9105) [000] d..3 82317.296161: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
113670<...>-13083 ( 8858) [002] dn.2 82317.296168: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
113671<...>-13083 ( 8858) [002] d..2 82317.296178: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
113672<...>-8874 ( 8858) [003] d..2 82317.296190: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113673          <idle>-0     (-----) [006] dnh2 82317.296195: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
113674          <idle>-0     (-----) [006] .n.1 82317.296200: cpu_idle: state=4294967295 cpu_id=6
113675  appEventThread-8881  ( 8858) [002] d..2 82317.296201: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
113676          <idle>-0     (-----) [003] d..1 82317.296206: cpu_idle: state=0 cpu_id=3
113677<...>-13083 ( 8858) [002] d..1 82317.296207: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
113678          <idle>-0     (-----) [006] d..2 82317.296210: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
113679<...>-13083 ( 8858) [002] d..2 82317.296230: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
113680          <idle>-0     (-----) [003] .n.1 82317.296237: cpu_idle: state=4294967295 cpu_id=3
113681    RenderThread-9436  ( 9105) [006] d..2 82317.296239: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
113682          <idle>-0     (-----) [006] d..1 82317.296247: cpu_idle: state=0 cpu_id=6
113683          <idle>-0     (-----) [003] d..2 82317.296250: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
113684<...>-13083 ( 8858) [002] d..2 82317.296283: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113685  appEventThread-8881  ( 8858) [003] d..1 82317.296293: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
113686          <idle>-0     (-----) [002] d..1 82317.296301: cpu_idle: state=0 cpu_id=2
113687  appEventThread-8881  ( 8858) [003] d..2 82317.296326: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
113688<...>-9105 ( 9105) [000] d..3 82317.296329: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
113689          <idle>-0     (-----) [002] .n.1 82317.296333: cpu_idle: state=4294967295 cpu_id=2
113690          <idle>-0     (-----) [002] d..2 82317.296348: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
113691          <idle>-0     (-----) [006] dnh2 82317.296353: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
113692          <idle>-0     (-----) [006] .n.1 82317.296357: cpu_idle: state=4294967295 cpu_id=6
113693<...>-8874 ( 8858) [002] d..1 82317.296363: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
113694          <idle>-0     (-----) [006] d..2 82317.296363: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
113695  appEventThread-8881  ( 8858) [003] d..2 82317.296364: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113696          <idle>-0     (-----) [003] d..1 82317.296379: cpu_idle: state=0 cpu_id=3
113697          <idle>-0     (-----) [003] .n.1 82317.296384: cpu_idle: state=4294967295 cpu_id=3
113698<...>-8874 ( 8858) [002] d..2 82317.296385: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
113699<...>-9105 ( 9105) [000] d..2 82317.296391: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113700          <idle>-0     (-----) [003] d..2 82317.296400: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
113701          <idle>-0     (-----) [000] d..1 82317.296418: cpu_idle: state=0 cpu_id=0
113702    RenderThread-9436  ( 9105) [006] d..1 82317.296434: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
113703<...>-8874 ( 8858) [002] d..2 82317.296440: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113704  appEventThread-8881  ( 8858) [003] d..2 82317.296449: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113705          <idle>-0     (-----) [002] d..1 82317.296459: cpu_idle: state=0 cpu_id=2
113706          <idle>-0     (-----) [003] d..1 82317.296461: cpu_idle: state=0 cpu_id=3
113707          <idle>-0     (-----) [000] dnh2 82317.296466: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
113708          <idle>-0     (-----) [000] .n.1 82317.296475: cpu_idle: state=4294967295 cpu_id=0
113709 s.nexuslauncher-10023 (10023) [004] d..3 82317.296483: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
113710          <idle>-0     (-----) [000] d..2 82317.296490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
113711    RenderThread-9436  ( 9105) [006] .... 82317.296494: binder_transaction: transaction=1572386 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
113712    RenderThread-9436  ( 9105) [006] .... 82317.296498: binder_transaction_alloc_buf: transaction=1572386 data_size=104 offsets_size=0
113713    RenderThread-9436  ( 9105) [006] d..4 82317.296502: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
113714 s.nexuslauncher-10023 (10023) [004] d..4 82317.296503: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
113715          <idle>-0     (-----) [005] .n.1 82317.296508: cpu_idle: state=4294967295 cpu_id=5
113716  surfaceflinger-8858  ( 8858) [001] d..1 82317.296513: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
113717          <idle>-0     (-----) [005] d..2 82317.296517: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
113718    RenderThread-9436  ( 9105) [006] d..5 82317.296524: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
113719 s.nexuslauncher-10023 (10023) [004] d..2 82317.296533: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
113720  surfaceflinger-8858  ( 8858) [001] d..2 82317.296543: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
113721          <idle>-0     (-----) [003] .n.1 82317.296547: cpu_idle: state=4294967295 cpu_id=3
113722          <idle>-0     (-----) [004] d..1 82317.296551: cpu_idle: state=0 cpu_id=4
113723          <idle>-0     (-----) [003] d..2 82317.296579: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
113724    RenderThread-9436  ( 9105) [006] d..2 82317.296584: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
113725<...>-8874 ( 8858) [006] .... 82317.296596: binder_transaction_received: transaction=1572386
113726<...>-9105 ( 9105) [000] d..2 82317.296601: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113727   sfEventThread-8882  ( 8858) [003] d..2 82317.296622: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113728          <idle>-0     (-----) [000] d..1 82317.296623: cpu_idle: state=0 cpu_id=0
113729          <idle>-0     (-----) [003] d..1 82317.296634: cpu_idle: state=0 cpu_id=3
113730    RenderThread-16607 (10023) [005] d..1 82317.296649: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113731<...>-8874 ( 8858) [006] .... 82317.296656: binder_transaction: transaction=1572387 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
113732<...>-8874 ( 8858) [006] .... 82317.296660: binder_transaction_alloc_buf: transaction=1572387 data_size=52 offsets_size=8
113733    RenderThread-16607 (10023) [005] d..2 82317.296664: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113734<...>-8874 ( 8858) [006] d..2 82317.296667: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
113735          <idle>-0     (-----) [004] .n.1 82317.296671: cpu_idle: state=4294967295 cpu_id=4
113736<...>-8874 ( 8858) [006] d..3 82317.296678: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
113737    RenderThread-16607 (10023) [005] d..1 82317.296681: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
113738          <idle>-0     (-----) [004] d..2 82317.296681: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
113739    RenderThread-16607 (10023) [005] d..2 82317.296695: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
113740          <idle>-0     (-----) [007] .n.1 82317.296702: cpu_idle: state=4294967295 cpu_id=7
113741<...>-8874 ( 8858) [006] d..2 82317.296706: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
113742          <idle>-0     (-----) [007] d..2 82317.296713: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
113743    RenderThread-9436  ( 9105) [006] .... 82317.296715: binder_transaction_received: transaction=1572387
113744    RenderThread-16607 (10023) [005] .... 82317.296746: binder_transaction: transaction=1572388 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
113745    RenderThread-16607 (10023) [005] .... 82317.296750: binder_transaction_alloc_buf: transaction=1572388 data_size=104 offsets_size=0
113746    RenderThread-16607 (10023) [005] ...2 82317.296754: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
113747    RenderThread-16607 (10023) [005] d..4 82317.296758: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=006
113748 s.nexuslauncher-10023 (10023) [004] d..2 82317.296773: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
113749    RenderThread-16607 (10023) [005] d..5 82317.296774: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
113750          <idle>-0     (-----) [004] d..1 82317.296784: cpu_idle: state=0 cpu_id=4
113751    RenderThread-16607 (10023) [005] d..2 82317.296785: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
113752<...>-8874 ( 8858) [005] .... 82317.296796: binder_transaction_received: transaction=1572388
113753<...>-8874 ( 8858) [005] .... 82317.296852: binder_transaction: transaction=1572389 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
113754<...>-8874 ( 8858) [005] .... 82317.296857: binder_transaction_alloc_buf: transaction=1572389 data_size=52 offsets_size=8
113755<...>-8874 ( 8858) [005] d..2 82317.296864: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
113756<...>-8874 ( 8858) [005] dn.3 82317.296875: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
113757<...>-8874 ( 8858) [005] d..2 82317.296881: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
113758    RenderThread-16607 (10023) [005] .... 82317.296890: binder_transaction_received: transaction=1572389
113759<...>-18840 ( 10023) [007] .... 82317.296921: binder_transaction: transaction=1572390 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
113760<...>-18840 ( 10023) [007] .... 82317.296925: binder_transaction_alloc_buf: transaction=1572390 data_size=684 offsets_size=48
113761<...>-18840 ( 10023) [007] ...2 82317.296938: binder_set_priority: proc=8858 thread=13083 old=120 => new=118 desired=118
113762<...>-18840 ( 10023) [007] d..4 82317.296942: sched_waking: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=002
113763<...>-18840 ( 10023) [007] dn.5 82317.296967: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=007
113764<...>-18840 ( 10023) [007] d..2 82317.297006: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=118
113765<...>-13083 ( 8858) [007] .... 82317.297018: binder_transaction_received: transaction=1572390
113766<...>-13083 ( 8858) [007] .... 82317.297143: binder_transaction: transaction=1572391 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
113767<...>-13083 ( 8858) [007] .... 82317.297146: binder_transaction_alloc_buf: transaction=1572391 data_size=0 offsets_size=0
113768<...>-13083 ( 8858) [007] .... 82317.297149: binder_set_priority: proc=8858 thread=13083 old=118 => new=120 desired=120
113769<...>-13083 ( 8858) [007] d..2 82317.297191: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
113770<...>-18840 ( 10023) [007] .... 82317.297202: binder_transaction_received: transaction=1572391
113771<...>-18840 ( 10023) [007] d..2 82317.297267: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
113772          <idle>-0     (-----) [007] d..1 82317.297283: cpu_idle: state=0 cpu_id=7
113773    RenderThread-9436  ( 9105) [006] .... 82317.297541: binder_transaction: transaction=1572392 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
113774    RenderThread-9436  ( 9105) [006] .... 82317.297546: binder_transaction_alloc_buf: transaction=1572392 data_size=192 offsets_size=8
113775    RenderThread-9436  ( 9105) [006] d..4 82317.297555: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=007
113776          <idle>-0     (-----) [000] ...1 82317.297563: cpu_idle: state=4294967295 cpu_id=0
113777          <idle>-0     (-----) [000] d..1 82317.297569: cpu_idle: state=0 cpu_id=0
113778    RenderThread-9436  ( 9105) [006] dn.5 82317.297579: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
113779    RenderThread-9436  ( 9105) [006] d..2 82317.297587: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
113780<...>-13083 ( 8858) [006] .... 82317.297601: binder_transaction_received: transaction=1572392
113781          <idle>-0     (-----) [002] ...1 82317.297624: cpu_idle: state=4294967295 cpu_id=2
113782          <idle>-0     (-----) [002] d..1 82317.297629: cpu_idle: state=0 cpu_id=2
113783          <idle>-0     (-----) [000] d.h3 82317.297664: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
113784          <idle>-0     (-----) [000] dnh4 82317.297695: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
113785          <idle>-0     (-----) [000] .n.1 82317.297708: cpu_idle: state=4294967295 cpu_id=0
113786<...>-13083 ( 8858) [006] .... 82317.297716: binder_transaction: transaction=1572393 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
113787          <idle>-0     (-----) [000] d..2 82317.297721: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
113788<...>-13083 ( 8858) [006] .... 82317.297721: binder_transaction_alloc_buf: transaction=1572393 data_size=68 offsets_size=0
113789<...>-13083 ( 8858) [006] d..2 82317.297751: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
113790    RenderThread-9436  ( 9105) [006] .... 82317.297763: binder_transaction_received: transaction=1572393
113791 kgsl_worker_thr-258   (  258) [000] d..2 82317.297797: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
113792 kgsl_worker_thr-258   (  258) [000] d..3 82317.297823: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
113793    RenderThread-9436  ( 9105) [006] d..2 82317.297842: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
113794  surfaceflinger-8858  ( 8858) [001] ...1 82317.297849: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
113795  surfaceflinger-8858  ( 8858) [001] ...1 82317.297859: tracing_mark_write: E|8858
113796          <idle>-0     (-----) [006] d..1 82317.297861: cpu_idle: state=0 cpu_id=6
113797    RenderThread-16607 (10023) [005] .... 82317.297878: binder_transaction: transaction=1572394 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
113798    RenderThread-16607 (10023) [005] .... 82317.297883: binder_transaction_alloc_buf: transaction=1572394 data_size=192 offsets_size=8
113799    RenderThread-16607 (10023) [005] ...2 82317.297892: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
113800 kgsl_worker_thr-258   (  258) [000] d..2 82317.297892: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113801    RenderThread-16607 (10023) [005] d..4 82317.297896: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
113802    RenderThread-16607 (10023) [005] d..5 82317.297914: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
113803          <idle>-0     (-----) [006] .n.1 82317.297921: cpu_idle: state=4294967295 cpu_id=6
113804  surfaceflinger-8858  ( 8858) [001] .... 82317.297929: binder_transaction: transaction=1572395 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
113805    RenderThread-16607 (10023) [005] d..2 82317.297930: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
113806          <idle>-0     (-----) [006] d..2 82317.297932: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
113807  surfaceflinger-8858  ( 8858) [001] .... 82317.297935: binder_transaction_alloc_buf: transaction=1572395 data_size=540 offsets_size=96
113808<...>-8874 ( 8858) [005] .... 82317.297941: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
113809<...>-13083 ( 8858) [006] .... 82317.297944: binder_transaction_received: transaction=1572394
113810  surfaceflinger-8858  ( 8858) [001] ...2 82317.297963: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
113811  surfaceflinger-8858  ( 8858) [001] d..4 82317.297972: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
113812  surfaceflinger-8858  ( 8858) [001] d..5 82317.297999: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
113813          <idle>-0     (-----) [003] .n.1 82317.298004: cpu_idle: state=4294967295 cpu_id=3
113814<...>-8874 ( 8858) [005] d..2 82317.298006: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
113815          <idle>-0     (-----) [003] d..2 82317.298016: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
113816          <idle>-0     (-----) [005] d..1 82317.298024: cpu_idle: state=0 cpu_id=5
113817 [email protected]   (  619) [003] .... 82317.298029: binder_transaction_received: transaction=1572395
113818  surfaceflinger-8858  ( 8858) [001] d..2 82317.298044: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113819<...>-13083 ( 8858) [006] .... 82317.298050: binder_transaction: transaction=1572396 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
113820<...>-13083 ( 8858) [006] .... 82317.298055: binder_transaction_alloc_buf: transaction=1572396 data_size=68 offsets_size=0
113821<...>-13083 ( 8858) [006] d..2 82317.298059: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
113822          <idle>-0     (-----) [001] d..1 82317.298069: cpu_idle: state=0 cpu_id=1
113823<...>-13083 ( 8858) [006] d..3 82317.298078: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
113824<...>-13083 ( 8858) [006] .... 82317.298081: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
113825 [email protected]   (  619) [003] ...1 82317.298086: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
113826  kworker/u16:15-1311  ( 1311) [000] d..2 82317.298109: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113827<...>-13083 ( 8858) [006] d..2 82317.298120: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
113828          <idle>-0     (-----) [000] d..1 82317.298130: cpu_idle: state=0 cpu_id=0
113829    RenderThread-16607 (10023) [006] .... 82317.298131: binder_transaction_received: transaction=1572396
113830    RenderThread-16607 (10023) [006] d..2 82317.298234: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
113831 [email protected]   (  619) [003] ...1 82317.298235: tracing_mark_write: B|619|HWCSession::PresentDisplay::
113832          <idle>-0     (-----) [006] d..1 82317.298251: cpu_idle: state=0 cpu_id=6
113833 [email protected]   (  619) [003] d.s2 82317.298510: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
113834 [email protected]   (  619) [003] d.s2 82317.298533: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
113835          <idle>-0     (-----) [005] dnh2 82317.298542: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
113836          <idle>-0     (-----) [005] .n.1 82317.298548: cpu_idle: state=4294967295 cpu_id=5
113837 [email protected]   (  619) [003] d.s2 82317.298549: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
113838          <idle>-0     (-----) [004] dnh2 82317.298558: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
113839          <idle>-0     (-----) [005] d..2 82317.298559: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
113840          <idle>-0     (-----) [004] .n.1 82317.298563: cpu_idle: state=4294967295 cpu_id=4
113841 [email protected]   (  619) [003] ...1 82317.298571: tracing_mark_write: B|619|HWDeviceDRM::Commit::
113842          <idle>-0     (-----) [004] d..2 82317.298573: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
113843          <idle>-0     (-----) [006] dnh2 82317.298575: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
113844          <idle>-0     (-----) [006] .n.1 82317.298581: cpu_idle: state=4294967295 cpu_id=6
113845     kworker/5:0-23997 (23997) [005] d..2 82317.298588: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
113846 [email protected]   (  619) [003] ...1 82317.298590: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
113847          <idle>-0     (-----) [006] d..2 82317.298592: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
113848          <idle>-0     (-----) [005] d..1 82317.298595: cpu_idle: state=0 cpu_id=5
113849     kworker/4:1-25432 (25432) [004] d..2 82317.298599: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
113850          <idle>-0     (-----) [004] d..1 82317.298607: cpu_idle: state=0 cpu_id=4
113851<...>-560 ( 560) [006] d..2 82317.298618: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
113852          <idle>-0     (-----) [006] d..1 82317.298626: cpu_idle: state=0 cpu_id=6
113853          <idle>-0     (-----) [006] ...1 82317.298892: cpu_idle: state=4294967295 cpu_id=6
113854          <idle>-0     (-----) [006] d..1 82317.298895: cpu_idle: state=0 cpu_id=6
113855          <idle>-0     (-----) [000] d.h3 82317.299022: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
113856          <idle>-0     (-----) [000] dnh4 82317.299039: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
113857          <idle>-0     (-----) [000] .n.1 82317.299054: cpu_idle: state=4294967295 cpu_id=0
113858          <idle>-0     (-----) [000] d..2 82317.299069: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
113859 kgsl_worker_thr-258   (  258) [000] d..2 82317.299147: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113860          <idle>-0     (-----) [000] d..1 82317.299164: cpu_idle: state=0 cpu_id=0
113861 [email protected]   (  619) [003] d..2 82317.299299: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113862 [email protected]   (  619) [003] d..3 82317.299329: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113863          <idle>-0     (-----) [002] .n.1 82317.299333: cpu_idle: state=4294967295 cpu_id=2
113864          <idle>-0     (-----) [002] d..2 82317.299349: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
113865 [email protected]   (  619) [003] ...1 82317.299464: tracing_mark_write: E|619
113866 [email protected]   (  619) [003] ...1 82317.299473: tracing_mark_write: E|619
113867 [email protected]   (  619) [003] ...1 82317.299546: tracing_mark_write: E|619
113868 [email protected]   (  619) [003] ...1 82317.299604: tracing_mark_write: E|619
113869 [email protected]   (  619) [003] .... 82317.299624: binder_transaction: transaction=1572397 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
113870 [email protected]   (  619) [003] .... 82317.299630: binder_transaction_alloc_buf: transaction=1572397 data_size=576 offsets_size=112
113871 [email protected]   (  619) [003] d..2 82317.299655: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
113872 [email protected]   (  619) [003] d..3 82317.299679: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
113873 [email protected]   (  619) [003] .... 82317.299685: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
113874          <idle>-0     (-----) [001] .n.1 82317.299687: cpu_idle: state=4294967295 cpu_id=1
113875          <idle>-0     (-----) [001] d..2 82317.299703: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
113876  surfaceflinger-8858  ( 8858) [001] .... 82317.299714: binder_transaction_received: transaction=1572397
113877 [email protected]   (  619) [003] d..2 82317.299796: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113878          <idle>-0     (-----) [003] d..1 82317.299814: cpu_idle: state=0 cpu_id=3
113879 crtc_commit:111-321   (  321) [002] d..2 82317.300143: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
113880          <idle>-0     (-----) [002] d..1 82317.300164: cpu_idle: state=0 cpu_id=2
113881  surfaceflinger-8858  ( 8858) [001] d..2 82317.300324: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113882          <idle>-0     (-----) [001] d..1 82317.300349: cpu_idle: state=0 cpu_id=1
113883          <idle>-0     (-----) [000] ...1 82317.300561: cpu_idle: state=4294967295 cpu_id=0
113884          <idle>-0     (-----) [000] d..1 82317.300567: cpu_idle: state=0 cpu_id=0
113885          <idle>-0     (-----) [002] ...1 82317.301321: cpu_idle: state=4294967295 cpu_id=2
113886          <idle>-0     (-----) [002] d..1 82317.301326: cpu_idle: state=0 cpu_id=2
113887          <idle>-0     (-----) [003] d.s2 82317.301820: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113888          <idle>-0     (-----) [003] dns3 82317.301846: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113889          <idle>-0     (-----) [003] dns3 82317.301855: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
113890          <idle>-0     (-----) [003] dns4 82317.301905: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
113891          <idle>-0     (-----) [003] .n.1 82317.301919: cpu_idle: state=4294967295 cpu_id=3
113892          <idle>-0     (-----) [003] d..2 82317.301932: 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
113893     rcu_preempt-7     (    7) [003] d..2 82317.301950: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
113894     rcu_preempt-7     (    7) [003] d..3 82317.301976: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
113895     rcu_preempt-7     (    7) [003] d..2 82317.302000: 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
113896         rcuop/0-10    (   10) [003] d..2 82317.302009: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
113897         rcuop/0-10    (   10) [003] d..3 82317.302030: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
113898         rcuop/0-10    (   10) [003] d..2 82317.302051: 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
113899         rcuop/1-21    (   21) [003] d..2 82317.302074: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113900  kworker/u16:15-1311  ( 1311) [003] d..2 82317.302226: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113901          <idle>-0     (-----) [003] d..1 82317.302248: cpu_idle: state=0 cpu_id=3
113902          <idle>-0     (-----) [003] d.s2 82317.308475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113903          <idle>-0     (-----) [003] dns3 82317.308495: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
113904          <idle>-0     (-----) [003] .n.1 82317.308518: cpu_idle: state=4294967295 cpu_id=3
113905          <idle>-0     (-----) [003] d..2 82317.308534: 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
113906     rcu_preempt-7     (    7) [003] d..2 82317.308547: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
113907     rcu_preempt-7     (    7) [003] d..3 82317.308569: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
113908     rcu_preempt-7     (    7) [003] d..2 82317.308585: 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
113909         rcuop/2-29    (   29) [003] d..2 82317.308625: 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
113910          <idle>-0     (-----) [003] d..1 82317.308641: cpu_idle: state=0 cpu_id=3
113911          <idle>-0     (-----) [000] d.h5 82317.309063: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113912          <idle>-0     (-----) [000] dnh6 82317.309080: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113913          <idle>-0     (-----) [000] dnh5 82317.309085: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113914          <idle>-0     (-----) [000] dnh6 82317.309101: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113915          <idle>-0     (-----) [002] .n.1 82317.309107: cpu_idle: state=4294967295 cpu_id=2
113916          <idle>-0     (-----) [000] .n.1 82317.309116: cpu_idle: state=4294967295 cpu_id=0
113917          <idle>-0     (-----) [002] d..2 82317.309122: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
113918          <idle>-0     (-----) [000] d..2 82317.309131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
113919  crtc_event:111-322   (  322) [000] d..2 82317.309168: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113920          <idle>-0     (-----) [000] d..1 82317.309182: cpu_idle: state=0 cpu_id=0
113921 crtc_commit:111-321   (  321) [002] d..2 82317.309287: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
113922          <idle>-0     (-----) [002] d..1 82317.309298: cpu_idle: state=0 cpu_id=2
113923          <idle>-0     (-----) [000] d.h5 82317.311386: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113924          <idle>-0     (-----) [000] d.h6 82317.311405: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
113925          <idle>-0     (-----) [002] .n.1 82317.311411: cpu_idle: state=4294967295 cpu_id=2
113926          <idle>-0     (-----) [002] d..2 82317.311420: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
113927          <idle>-0     (-----) [000] ...1 82317.311422: cpu_idle: state=4294967295 cpu_id=0
113928          <idle>-0     (-----) [000] d..1 82317.311427: cpu_idle: state=0 cpu_id=0
113929 crtc_commit:111-321   (  321) [002] d..2 82317.311497: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113930          <idle>-0     (-----) [002] d..1 82317.311507: cpu_idle: state=0 cpu_id=2
113931          <idle>-0     (-----) [000] d.h5 82317.311696: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113932          <idle>-0     (-----) [000] dnh6 82317.311708: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113933          <idle>-0     (-----) [000] .n.1 82317.311725: cpu_idle: state=4294967295 cpu_id=0
113934          <idle>-0     (-----) [000] d..2 82317.311737: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
113935  crtc_event:111-322   (  322) [000] d..2 82317.311766: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
113936          <idle>-0     (-----) [000] d..1 82317.311779: cpu_idle: state=0 cpu_id=0
113937          <idle>-0     (-----) [000] d.h2 82317.311814: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
113938          <idle>-0     (-----) [000] dnh3 82317.311878: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
113939          <idle>-0     (-----) [000] dnh2 82317.311883: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
113940          <idle>-0     (-----) [002] d.s3 82317.311907: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
113941          <idle>-0     (-----) [000] dnh3 82317.311909: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
113942          <idle>-0     (-----) [000] .n.1 82317.311925: cpu_idle: state=4294967295 cpu_id=0
113943          <idle>-0     (-----) [002] dns4 82317.311938: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
113944          <idle>-0     (-----) [000] d..2 82317.311940: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
113945          <idle>-0     (-----) [002] dns3 82317.311946: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
113946        DispSync-8879  ( 8858) [000] d..1 82317.311973: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
113947          <idle>-0     (-----) [002] dns4 82317.311995: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
113948        DispSync-8879  ( 8858) [000] d..2 82317.311995: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
113949        DispSync-8879  ( 8858) [000] d..1 82317.312002: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
113950          <idle>-0     (-----) [003] .n.1 82317.312003: cpu_idle: state=4294967295 cpu_id=3
113951          <idle>-0     (-----) [002] .n.1 82317.312023: cpu_idle: state=4294967295 cpu_id=2
113952          <idle>-0     (-----) [003] d..2 82317.312024: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
113953        DispSync-8879  ( 8858) [000] d..2 82317.312025: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
113954          <idle>-0     (-----) [002] d..2 82317.312034: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
113955          <idle>-0     (-----) [001] .n.1 82317.312034: cpu_idle: state=4294967295 cpu_id=1
113956          <idle>-0     (-----) [001] d..2 82317.312052: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
113957        DispSync-8879  ( 8858) [000] d..2 82317.312056: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
113958  crtc_event:111-322   (  322) [002] d..2 82317.312057: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
113959   sfEventThread-8882  ( 8858) [003] d..3 82317.312083: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
113960  appEventThread-8881  ( 8858) [001] d..3 82317.312115: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
113961   sfEventThread-8882  ( 8858) [003] d..4 82317.312120: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
113962 RxSchedulerPurg-25567 (25538) [000] d..2 82317.312153: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
113963   sfEventThread-8882  ( 8858) [003] d..2 82317.312182: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
113964          <idle>-0     (-----) [006] dnh2 82317.312186: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
113965          <idle>-0     (-----) [006] .n.1 82317.312190: cpu_idle: state=4294967295 cpu_id=6
113966          <idle>-0     (-----) [003] d..1 82317.312196: cpu_idle: state=0 cpu_id=3
113967          <idle>-0     (-----) [006] d..2 82317.312238: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
113968  appEventThread-8881  ( 8858) [001] d..3 82317.312267: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113969          <idle>-0     (-----) [004] dnh2 82317.312293: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
113970          <idle>-0     (-----) [004] .n.1 82317.312297: cpu_idle: state=4294967295 cpu_id=4
113971          <idle>-0     (-----) [004] d..2 82317.312302: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
113972  appEventThread-8881  ( 8858) [001] d..2 82317.312337: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
113973          <idle>-0     (-----) [001] d..1 82317.312384: cpu_idle: state=0 cpu_id=1
113974          <idle>-0     (-----) [001] ...1 82317.312402: cpu_idle: state=4294967295 cpu_id=1
113975          <idle>-0     (-----) [001] d..1 82317.312408: cpu_idle: state=0 cpu_id=1
113976  kworker/u16:15-1311  ( 1311) [002] d..2 82317.312438: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
113977          <idle>-0     (-----) [002] d..1 82317.312457: cpu_idle: state=0 cpu_id=2
113978<...>-9105 ( 9105) [006] .... 82317.312510: binder_transaction: transaction=1572398 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
113979<...>-9105 ( 9105) [006] .... 82317.312517: binder_transaction_alloc_buf: transaction=1572398 data_size=80 offsets_size=0
113980 s.nexuslauncher-10023 (10023) [004] .... 82317.312521: binder_transaction: transaction=1572399 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
113981<...>-9105 ( 9105) [006] d..4 82317.312522: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
113982 s.nexuslauncher-10023 (10023) [004] .... 82317.312526: binder_transaction_alloc_buf: transaction=1572399 data_size=80 offsets_size=0
113983 s.nexuslauncher-10023 (10023) [004] d..4 82317.312588: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
113984          <idle>-0     (-----) [001] dnh2 82317.312592: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
113985          <idle>-0     (-----) [001] .n.1 82317.312599: cpu_idle: state=4294967295 cpu_id=1
113986          <idle>-0     (-----) [001] d..2 82317.312613: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
113987<...>-13083 ( 8858) [001] .... 82317.312659: binder_transaction_received: transaction=1572398
113988          <idle>-0     (-----) [002] dnh2 82317.312660: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
113989          <idle>-0     (-----) [002] .n.1 82317.312667: cpu_idle: state=4294967295 cpu_id=2
113990          <idle>-0     (-----) [002] d..2 82317.312681: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
113991<...>-9105 ( 9105) [006] d..3 82317.312684: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
113992 s.nexuslauncher-10023 (10023) [004] d..3 82317.312686: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
113993<...>-8874 ( 8858) [002] .... 82317.312691: binder_transaction_received: transaction=1572399
113994<...>-13083 ( 8858) [001] d..1 82317.312696: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
113995 s.nexuslauncher-10023 (10023) [004] d..4 82317.312716: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
113996          <idle>-0     (-----) [005] .n.1 82317.312721: cpu_idle: state=4294967295 cpu_id=5
113997          <idle>-0     (-----) [005] d..2 82317.312750: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
113998<...>-13083 ( 8858) [001] d..2 82317.312754: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
113999          <idle>-0     (-----) [003] dnh2 82317.312765: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
114000<...>-8874 ( 8858) [002] d..2 82317.312770: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114001<...>-13083 ( 8858) [001] d..1 82317.312772: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
114002          <idle>-0     (-----) [003] .n.1 82317.312776: cpu_idle: state=4294967295 cpu_id=3
114003          <idle>-0     (-----) [003] d..2 82317.312785: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
114004          <idle>-0     (-----) [002] d..1 82317.312786: cpu_idle: state=0 cpu_id=2
114005          <idle>-0     (-----) [002] .n.1 82317.312791: cpu_idle: state=4294967295 cpu_id=2
114006<...>-13083 ( 8858) [001] d..2 82317.312791: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
114007    RenderThread-16607 (10023) [005] d..2 82317.312798: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
114008          <idle>-0     (-----) [005] d..1 82317.312809: cpu_idle: state=0 cpu_id=5
114009          <idle>-0     (-----) [002] d..2 82317.312809: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
114010  appEventThread-8881  ( 8858) [003] d..1 82317.312826: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
114011<...>-8874 ( 8858) [002] d..2 82317.312836: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114012          <idle>-0     (-----) [002] d..1 82317.312848: cpu_idle: state=0 cpu_id=2
114013<...>-13083 ( 8858) [001] d..2 82317.312852: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114014  appEventThread-8881  ( 8858) [003] d..2 82317.312857: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
114015          <idle>-0     (-----) [002] .n.1 82317.312863: cpu_idle: state=4294967295 cpu_id=2
114016<...>-9105 ( 9105) [006] d..2 82317.312870: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
114017          <idle>-0     (-----) [001] d..1 82317.312871: cpu_idle: state=0 cpu_id=1
114018          <idle>-0     (-----) [002] d..2 82317.312876: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
114019  appEventThread-8881  ( 8858) [003] d..2 82317.312883: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
114020          <idle>-0     (-----) [006] d..1 82317.312886: cpu_idle: state=0 cpu_id=6
114021<...>-8874 ( 8858) [002] d..1 82317.312888: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
114022<...>-8874 ( 8858) [002] d..2 82317.312918: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
114023          <idle>-0     (-----) [001] .n.1 82317.312924: cpu_idle: state=4294967295 cpu_id=1
114024          <idle>-0     (-----) [001] d..2 82317.312938: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
114025<...>-8874 ( 8858) [002] d..2 82317.312975: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114026          <idle>-0     (-----) [002] d..1 82317.312994: cpu_idle: state=0 cpu_id=2
114027  appEventThread-8881  ( 8858) [001] d..2 82317.313011: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114028          <idle>-0     (-----) [001] d..1 82317.313025: cpu_idle: state=0 cpu_id=1
114029    RenderThread-9436  ( 9105) [003] d..1 82317.313035: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
114030 s.nexuslauncher-10023 (10023) [004] d..3 82317.313051: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
114031          <idle>-0     (-----) [006] dnh2 82317.313064: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
114032          <idle>-0     (-----) [006] .n.1 82317.313069: cpu_idle: state=4294967295 cpu_id=6
114033 s.nexuslauncher-10023 (10023) [004] d..4 82317.313070: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
114034          <idle>-0     (-----) [005] .n.1 82317.313075: cpu_idle: state=4294967295 cpu_id=5
114035          <idle>-0     (-----) [006] d..2 82317.313077: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
114036          <idle>-0     (-----) [005] d..2 82317.313084: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
114037 s.nexuslauncher-10023 (10023) [004] d..2 82317.313098: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
114038          <idle>-0     (-----) [004] d..1 82317.313117: cpu_idle: state=0 cpu_id=4
114039  surfaceflinger-8858  ( 8858) [000] d..1 82317.313120: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
114040    RenderThread-9436  ( 9105) [003] .... 82317.313137: binder_transaction: transaction=1572400 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
114041    RenderThread-9436  ( 9105) [003] .... 82317.313145: binder_transaction_alloc_buf: transaction=1572400 data_size=104 offsets_size=0
114042<...>-9105 ( 9105) [006] d..2 82317.313148: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
114043    RenderThread-9436  ( 9105) [003] d..4 82317.313152: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
114044          <idle>-0     (-----) [006] d..1 82317.313157: cpu_idle: state=0 cpu_id=6
114045  surfaceflinger-8858  ( 8858) [000] d..2 82317.313160: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114046          <idle>-0     (-----) [001] .n.1 82317.313165: cpu_idle: state=4294967295 cpu_id=1
114047          <idle>-0     (-----) [001] d..2 82317.313177: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
114048    RenderThread-9436  ( 9105) [003] d..5 82317.313182: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
114049    RenderThread-9436  ( 9105) [003] d..2 82317.313202: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
114050    RenderThread-16607 (10023) [005] d..1 82317.313207: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
114051<...>-8874 ( 8858) [003] .... 82317.313214: binder_transaction_received: transaction=1572400
114052   sfEventThread-8882  ( 8858) [001] d..2 82317.313220: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114053    RenderThread-16607 (10023) [005] d..2 82317.313223: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
114054          <idle>-0     (-----) [004] .n.1 82317.313230: cpu_idle: state=4294967295 cpu_id=4
114055          <idle>-0     (-----) [001] d..1 82317.313235: cpu_idle: state=0 cpu_id=1
114056    RenderThread-16607 (10023) [005] d..1 82317.313239: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
114057          <idle>-0     (-----) [004] d..2 82317.313239: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
114058    RenderThread-16607 (10023) [005] d..2 82317.313260: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
114059          <idle>-0     (-----) [006] .n.1 82317.313266: cpu_idle: state=4294967295 cpu_id=6
114060          <idle>-0     (-----) [006] d..2 82317.313275: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
114061<...>-8874 ( 8858) [003] .... 82317.313305: binder_transaction: transaction=1572401 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
114062<...>-8874 ( 8858) [003] .... 82317.313311: binder_transaction_alloc_buf: transaction=1572401 data_size=52 offsets_size=8
114063    RenderThread-16607 (10023) [005] .... 82317.313314: binder_transaction: transaction=1572402 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
114064    RenderThread-16607 (10023) [005] .... 82317.313318: binder_transaction_alloc_buf: transaction=1572402 data_size=104 offsets_size=0
114065    RenderThread-16607 (10023) [005] ...2 82317.313322: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
114066    RenderThread-16607 (10023) [005] d..4 82317.313325: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=001
114067 s.nexuslauncher-10023 (10023) [004] d..2 82317.313329: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
114068          <idle>-0     (-----) [004] d..1 82317.313339: cpu_idle: state=0 cpu_id=4
114069    RenderThread-16607 (10023) [005] dn.5 82317.313343: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
114070<...>-8874 ( 8858) [003] d..2 82317.313379: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
114071    RenderThread-16607 (10023) [005] d..2 82317.313382: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
114072<...>-13083 ( 8858) [005] .... 82317.313394: binder_transaction_received: transaction=1572402
114073<...>-8874 ( 8858) [003] d..3 82317.313398: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
114074<...>-8874 ( 8858) [003] d..2 82317.313451: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
114075<...>-13083 ( 8858) [005] .... 82317.313453: binder_transaction: transaction=1572403 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
114076<...>-13083 ( 8858) [005] .... 82317.313457: binder_transaction_alloc_buf: transaction=1572403 data_size=52 offsets_size=8
114077    RenderThread-9436  ( 9105) [003] .... 82317.313462: binder_transaction_received: transaction=1572401
114078<...>-13083 ( 8858) [005] .... 82317.313465: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
114079<...>-13083 ( 8858) [005] d..2 82317.313506: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
114080    RenderThread-16607 (10023) [005] .... 82317.313517: binder_transaction_received: transaction=1572403
114081<...>-18840 ( 10023) [006] .... 82317.313533: binder_transaction: transaction=1572404 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
114082<...>-18840 ( 10023) [006] .... 82317.313539: binder_transaction_alloc_buf: transaction=1572404 data_size=684 offsets_size=48
114083<...>-18840 ( 10023) [006] ...2 82317.313556: binder_set_priority: proc=8858 thread=13083 old=120 => new=118 desired=118
114084<...>-18840 ( 10023) [006] d..4 82317.313560: sched_waking: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=005
114085<...>-18840 ( 10023) [006] dn.5 82317.313581: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=006
114086<...>-18840 ( 10023) [006] d..2 82317.313589: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=118
114087<...>-13083 ( 8858) [006] .... 82317.313600: binder_transaction_received: transaction=1572404
114088<...>-13083 ( 8858) [006] d.h1 82317.313638: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
114089          <idle>-0     (-----) [001] dnh2 82317.313706: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=001
114090          <idle>-0     (-----) [001] .n.1 82317.313715: cpu_idle: state=4294967295 cpu_id=1
114091          <idle>-0     (-----) [001] d..2 82317.313727: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
114092<...>-13083 ( 8858) [006] .... 82317.313804: binder_transaction: transaction=1572405 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
114093<...>-13083 ( 8858) [006] .... 82317.313807: binder_transaction_alloc_buf: transaction=1572405 data_size=0 offsets_size=0
114094<...>-13083 ( 8858) [006] .... 82317.313810: binder_set_priority: proc=8858 thread=13083 old=118 => new=120 desired=120
114095<...>-13083 ( 8858) [006] d..2 82317.313855: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
114096<...>-18840 ( 10023) [006] .... 82317.313867: binder_transaction_received: transaction=1572405
114097<...>-18840 ( 10023) [006] d..2 82317.313932: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
114098          <idle>-0     (-----) [006] d..1 82317.313951: cpu_idle: state=0 cpu_id=6
114099           <...>-27566 (-----) [001] d..2 82317.314038: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
114100           <...>-27566 (-----) [001] d..3 82317.314075: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
114101          <idle>-0     (-----) [002] ...1 82317.314124: cpu_idle: state=4294967295 cpu_id=2
114102          <idle>-0     (-----) [002] d..1 82317.314130: cpu_idle: state=0 cpu_id=2
114103           <...>-27566 (-----) [001] d..2 82317.314205: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
114104          <idle>-0     (-----) [006] ...1 82317.314225: cpu_idle: state=4294967295 cpu_id=6
114105          <idle>-0     (-----) [006] d..1 82317.314229: cpu_idle: state=0 cpu_id=6
114106<...>-581 ( 571) [001] d..2 82317.314346: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114107    RenderThread-9436  ( 9105) [003] d..2 82317.314366: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
114108          <idle>-0     (-----) [001] d..1 82317.314371: cpu_idle: state=0 cpu_id=1
114109    RenderThread-9436  ( 9105) [003] d..3 82317.314410: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
114110  surfaceflinger-8858  ( 8858) [000] ...1 82317.314413: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
114111          <idle>-0     (-----) [002] .n.1 82317.314414: cpu_idle: state=4294967295 cpu_id=2
114112  surfaceflinger-8858  ( 8858) [000] ...1 82317.314423: tracing_mark_write: E|8858
114113          <idle>-0     (-----) [002] d..2 82317.314426: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
114114  surfaceflinger-8858  ( 8858) [000] .... 82317.314489: binder_transaction: transaction=1572406 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
114115  surfaceflinger-8858  ( 8858) [000] .... 82317.314495: binder_transaction_alloc_buf: transaction=1572406 data_size=540 offsets_size=96
114116    RenderThread-16607 (10023) [005] d..2 82317.314511: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
114117  surfaceflinger-8858  ( 8858) [000] ...2 82317.314524: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
114118          <idle>-0     (-----) [005] d..1 82317.314528: cpu_idle: state=0 cpu_id=5
114119  surfaceflinger-8858  ( 8858) [000] d..4 82317.314531: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
114120 kgsl_worker_thr-258   (  258) [002] d..2 82317.314543: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
114121          <idle>-0     (-----) [002] d..1 82317.314555: cpu_idle: state=0 cpu_id=2
114122  surfaceflinger-8858  ( 8858) [000] d..5 82317.314569: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
114123          <idle>-0     (-----) [002] .n.1 82317.314575: cpu_idle: state=4294967295 cpu_id=2
114124          <idle>-0     (-----) [002] d..2 82317.314587: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
114125          <idle>-0     (-----) [005] d.h2 82317.314596: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
114126  surfaceflinger-8858  ( 8858) [000] d..2 82317.314599: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
114127 [email protected]   (  619) [002] .... 82317.314602: binder_transaction_received: transaction=1572406
114128          <idle>-0     (-----) [005] d.h3 82317.314605: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
114129          <idle>-0     (-----) [005] dnh3 82317.314609: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
114130          <idle>-0     (-----) [005] .n.1 82317.314615: cpu_idle: state=4294967295 cpu_id=5
114131          <idle>-0     (-----) [005] d..2 82317.314624: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
114132    RenderThread-9436  ( 9105) [003] .... 82317.314632: binder_transaction: transaction=1572407 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
114133    RenderThread-9436  ( 9105) [003] .... 82317.314640: binder_transaction_alloc_buf: transaction=1572407 data_size=192 offsets_size=8
114134    RenderThread-9436  ( 9105) [003] d..4 82317.314655: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
114135 [email protected]   (  619) [002] ...1 82317.314663: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
114136    RenderThread-16607 (10023) [005] d..2 82317.314666: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
114137          <idle>-0     (-----) [005] d..1 82317.314672: cpu_idle: state=0 cpu_id=5
114138    RenderThread-9436  ( 9105) [003] dn.5 82317.314695: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
114139    RenderThread-9436  ( 9105) [003] d..2 82317.314763: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
114140          <idle>-0     (-----) [005] d.h2 82317.314764: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
114141          <idle>-0     (-----) [005] d.h3 82317.314769: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
114142          <idle>-0     (-----) [005] dnh3 82317.314771: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
114143          <idle>-0     (-----) [005] .n.1 82317.314776: cpu_idle: state=4294967295 cpu_id=5
114144<...>-13083 ( 8858) [003] .... 82317.314776: binder_transaction_received: transaction=1572407
114145          <idle>-0     (-----) [005] d..2 82317.314781: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
114146    RenderThread-16607 (10023) [005] d..1 82317.314795: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
114147 [email protected]   (  619) [002] ...1 82317.314811: tracing_mark_write: B|619|HWCSession::PresentDisplay::
114148          <idle>-0     (-----) [001] dnh2 82317.314833: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
114149          <idle>-0     (-----) [001] .n.1 82317.314843: cpu_idle: state=4294967295 cpu_id=1
114150          <idle>-0     (-----) [001] d..2 82317.314855: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
114151 RxSchedulerPurg-25567 (25538) [000] d..2 82317.314890: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114152          <idle>-0     (-----) [000] d..1 82317.314919: cpu_idle: state=0 cpu_id=0
114153 kgsl_worker_thr-258   (  258) [001] d..2 82317.314930: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
114154          <idle>-0     (-----) [001] d..1 82317.314942: cpu_idle: state=0 cpu_id=1
114155    RenderThread-16607 (10023) [005] .... 82317.314948: binder_transaction: transaction=1572408 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
114156<...>-13083 ( 8858) [003] .... 82317.314949: binder_transaction: transaction=1572409 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
114157    RenderThread-16607 (10023) [005] .... 82317.314952: binder_transaction_alloc_buf: transaction=1572408 data_size=192 offsets_size=8
114158<...>-13083 ( 8858) [003] .... 82317.314957: binder_transaction_alloc_buf: transaction=1572409 data_size=68 offsets_size=0
114159    RenderThread-16607 (10023) [005] ...2 82317.314960: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
114160    RenderThread-16607 (10023) [005] d..4 82317.314964: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=003
114161    RenderThread-16607 (10023) [005] dn.5 82317.314985: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
114162 [email protected]   (  619) [002] ...1 82317.315006: tracing_mark_write: B|619|HWDeviceDRM::Commit::
114163 [email protected]   (  619) [002] ...1 82317.315023: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
114164    RenderThread-16607 (10023) [005] d..2 82317.315026: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
114165          <idle>-0     (-----) [001] d.h2 82317.315026: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
114166<...>-8874 ( 8858) [005] .... 82317.315040: binder_transaction_received: transaction=1572408
114167          <idle>-0     (-----) [001] dnh3 82317.315041: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
114168          <idle>-0     (-----) [001] .n.1 82317.315052: cpu_idle: state=4294967295 cpu_id=1
114169          <idle>-0     (-----) [001] d..2 82317.315062: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
114170<...>-13083 ( 8858) [003] d..2 82317.315077: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
114171 kgsl_worker_thr-258   (  258) [001] d..2 82317.315088: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
114172    RenderThread-9436  ( 9105) [003] .... 82317.315090: binder_transaction_received: transaction=1572409
114173 kgsl_worker_thr-258   (  258) [001] d..3 82317.315153: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
114174    RenderThread-9436  ( 9105) [003] d.s1 82317.315154: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
114175<...>-8874 ( 8858) [005] .... 82317.315212: binder_transaction: transaction=1572410 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
114176<...>-8874 ( 8858) [005] .... 82317.315217: binder_transaction_alloc_buf: transaction=1572410 data_size=68 offsets_size=0
114177 kgsl_worker_thr-258   (  258) [001] d..2 82317.315218: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
114178<...>-8874 ( 8858) [005] .... 82317.315220: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
114179    RenderThread-9436  ( 9105) [003] d.s2 82317.315237: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
114180  kworker/u16:15-1311  ( 1311) [001] d..2 82317.315251: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
114181<...>-8874 ( 8858) [005] d..2 82317.315260: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
114182    RenderThread-16607 (10023) [005] .... 82317.315272: binder_transaction_received: transaction=1572410
114183     rcu_preempt-7     (    7) [001] d..2 82317.315278: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
114184    RenderThread-9436  ( 9105) [003] d..2 82317.315377: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114185    RenderThread-16607 (10023) [005] d..2 82317.315378: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
114186          <idle>-0     (-----) [005] d..1 82317.315394: cpu_idle: state=0 cpu_id=5
114187          <idle>-0     (-----) [003] d..1 82317.315406: cpu_idle: state=0 cpu_id=3
114188  kworker/u16:15-1311  ( 1311) [001] d..2 82317.315494: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114189          <idle>-0     (-----) [001] d..1 82317.315515: cpu_idle: state=0 cpu_id=1
114190          <idle>-0     (-----) [000] d.h3 82317.315717: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
114191          <idle>-0     (-----) [000] d.h4 82317.315741: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
114192          <idle>-0     (-----) [001] .n.1 82317.315749: cpu_idle: state=4294967295 cpu_id=1
114193          <idle>-0     (-----) [001] d..2 82317.315762: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
114194          <idle>-0     (-----) [000] ...1 82317.315762: cpu_idle: state=4294967295 cpu_id=0
114195          <idle>-0     (-----) [000] d..1 82317.315770: cpu_idle: state=0 cpu_id=0
114196 [email protected]   (  619) [002] d..2 82317.315777: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
114197 [email protected]   (  619) [002] d..3 82317.315822: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
114198 kgsl_worker_thr-258   (  258) [001] d..2 82317.315839: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114199          <idle>-0     (-----) [000] .n.1 82317.315851: cpu_idle: state=4294967295 cpu_id=0
114200          <idle>-0     (-----) [001] d..1 82317.315853: cpu_idle: state=0 cpu_id=1
114201          <idle>-0     (-----) [000] d..2 82317.315867: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
114202 [email protected]   (  619) [002] ...1 82317.315954: tracing_mark_write: E|619
114203 crtc_commit:111-321   (  321) [000] d.h2 82317.315960: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
114204 [email protected]   (  619) [002] ...1 82317.315963: tracing_mark_write: E|619
114205 crtc_commit:111-321   (  321) [000] d.h3 82317.315979: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
114206          <idle>-0     (-----) [001] .n.1 82317.315986: cpu_idle: state=4294967295 cpu_id=1
114207          <idle>-0     (-----) [001] d..2 82317.315998: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
114208 [email protected]   (  619) [002] ...1 82317.316038: tracing_mark_write: E|619
114209 kgsl_worker_thr-258   (  258) [001] d..2 82317.316061: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114210          <idle>-0     (-----) [001] d..1 82317.316073: cpu_idle: state=0 cpu_id=1
114211 [email protected]   (  619) [002] ...1 82317.316099: tracing_mark_write: E|619
114212 [email protected]   (  619) [002] .... 82317.316120: binder_transaction: transaction=1572411 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
114213 [email protected]   (  619) [002] .... 82317.316126: binder_transaction_alloc_buf: transaction=1572411 data_size=576 offsets_size=112
114214 [email protected]   (  619) [002] d..2 82317.316151: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
114215 [email protected]   (  619) [002] d..3 82317.316188: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
114216 [email protected]   (  619) [002] .... 82317.316195: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
114217          <idle>-0     (-----) [003] .n.1 82317.316196: cpu_idle: state=4294967295 cpu_id=3
114218          <idle>-0     (-----) [003] d..2 82317.316211: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
114219  surfaceflinger-8858  ( 8858) [003] .... 82317.316225: binder_transaction_received: transaction=1572411
114220 [email protected]   (  619) [002] d..2 82317.316307: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114221          <idle>-0     (-----) [002] d..1 82317.316335: cpu_idle: state=0 cpu_id=2
114222  surfaceflinger-8858  ( 8858) [003] d..2 82317.316473: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
114223  surfaceflinger-8858  ( 8858) [003] d..3 82317.316538: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
114224          <idle>-0     (-----) [001] .n.1 82317.316543: cpu_idle: state=4294967295 cpu_id=1
114225          <idle>-0     (-----) [001] d..2 82317.316558: 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
114226         rcuop/2-29    (   29) [001] d..2 82317.316587: 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
114227          <idle>-0     (-----) [001] d..1 82317.316597: cpu_idle: state=0 cpu_id=1
114228 crtc_commit:111-321   (  321) [000] d..2 82317.316716: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
114229          <idle>-0     (-----) [000] d..1 82317.316739: cpu_idle: state=0 cpu_id=0
114230  surfaceflinger-8858  ( 8858) [003] d..2 82317.316966: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114231          <idle>-0     (-----) [003] d..1 82317.316992: cpu_idle: state=0 cpu_id=3
114232          <idle>-0     (-----) [002] ...1 82317.317459: cpu_idle: state=4294967295 cpu_id=2
114233          <idle>-0     (-----) [002] d..1 82317.317466: cpu_idle: state=0 cpu_id=2
114234          <idle>-0     (-----) [000] ...1 82317.317999: cpu_idle: state=4294967295 cpu_id=0
114235          <idle>-0     (-----) [000] d..1 82317.318004: cpu_idle: state=0 cpu_id=0
114236          <idle>-0     (-----) [001] d.s2 82317.321811: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
114237          <idle>-0     (-----) [001] dns3 82317.321833: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
114238          <idle>-0     (-----) [001] dns3 82317.321842: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
114239          <idle>-0     (-----) [001] dns4 82317.321856: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
114240          <idle>-0     (-----) [001] .n.1 82317.321883: cpu_idle: state=4294967295 cpu_id=1
114241          <idle>-0     (-----) [001] d..2 82317.321898: 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
114242     rcu_preempt-7     (    7) [001] d..2 82317.321910: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
114243     rcu_preempt-7     (    7) [001] d..3 82317.321959: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
114244     rcu_preempt-7     (    7) [001] d..2 82317.321979: 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
114245         rcuop/0-10    (   10) [001] d..2 82317.321986: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
114246         rcuop/0-10    (   10) [001] d..3 82317.322029: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
114247          <idle>-0     (-----) [000] .n.1 82317.322034: cpu_idle: state=4294967295 cpu_id=0
114248         rcuop/0-10    (   10) [001] d..2 82317.322043: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
114249          <idle>-0     (-----) [000] d..2 82317.322053: 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
114250         rcuop/1-21    (   21) [000] d..2 82317.322106: 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
114251          <idle>-0     (-----) [000] d..1 82317.322158: cpu_idle: state=0 cpu_id=0
114252  kworker/u16:15-1311  ( 1311) [001] d..2 82317.322458: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
114253          <idle>-0     (-----) [001] d.s4 82317.322513: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
114254          <idle>-0     (-----) [001] d.s5 82317.322527: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
114255          <idle>-0     (-----) [001] dns5 82317.322533: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
114256          <idle>-0     (-----) [001] d..2 82317.322548: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
114257  kworker/u16:15-1311  ( 1311) [001] d..2 82317.322772: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
114258          <idle>-0     (-----) [001] d.s4 82317.322811: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
114259          <idle>-0     (-----) [001] d.s5 82317.322823: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
114260          <idle>-0     (-----) [001] dns5 82317.322830: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
114261          <idle>-0     (-----) [001] d..2 82317.322844: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
114262  kworker/u16:15-1311  ( 1311) [001] d..2 82317.322877: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114263          <idle>-0     (-----) [001] d..1 82317.322897: cpu_idle: state=0 cpu_id=1
114264          <idle>-0     (-----) [000] d.h5 82317.325545: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
114265          <idle>-0     (-----) [000] d.h6 82317.325567: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
114266          <idle>-0     (-----) [002] .n.1 82317.325573: cpu_idle: state=4294967295 cpu_id=2
114267          <idle>-0     (-----) [000] d.h5 82317.325574: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
114268          <idle>-0     (-----) [000] dnh6 82317.325583: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
114269          <idle>-0     (-----) [002] d..2 82317.325589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
114270          <idle>-0     (-----) [000] .n.1 82317.325598: cpu_idle: state=4294967295 cpu_id=0
114271          <idle>-0     (-----) [000] d..2 82317.325613: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
114272  crtc_event:111-322   (  322) [002] d..2 82317.325643: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114273          <idle>-0     (-----) [002] d..2 82317.325649: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114274          <idle>-0     (-----) [002] dn.3 82317.325668: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
114275          <idle>-0     (-----) [002] d..2 82317.325679: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
114276     ksoftirqd/2-26    (   26) [002] d.s2 82317.325695: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
114277     ksoftirqd/2-26    (   26) [002] d.s3 82317.325713: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
114278     ksoftirqd/2-26    (   26) [002] d.s2 82317.325719: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
114279     ksoftirqd/2-26    (   26) [002] d.s3 82317.325735: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
114280          <idle>-0     (-----) [003] .n.1 82317.325744: cpu_idle: state=4294967295 cpu_id=3
114281     ksoftirqd/2-26    (   26) [002] d..2 82317.325750: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
114282          <idle>-0     (-----) [003] d..2 82317.325764: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
114283     kworker/2:1-25259 (25259) [002] d..2 82317.325765: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
114284 crtc_commit:111-321   (  321) [000] d..2 82317.325774: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
114285     kworker/2:1-25259 (25259) [002] d..3 82317.325784: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
114286          <idle>-0     (-----) [000] d..1 82317.325788: cpu_idle: state=0 cpu_id=0
114287          <idle>-0     (-----) [001] .n.1 82317.325791: cpu_idle: state=4294967295 cpu_id=1
114288     kworker/2:1-25259 (25259) [002] d..2 82317.325796: sched_waking: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
114289          <idle>-0     (-----) [001] d..2 82317.325807: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
114290     kworker/3:1-25210 (25210) [003] d..2 82317.325810: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114291          <idle>-0     (-----) [007] dnh2 82317.325822: sched_wakeup: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
114292          <idle>-0     (-----) [003] d..1 82317.325824: cpu_idle: state=0 cpu_id=3
114293          <idle>-0     (-----) [007] .n.1 82317.325828: cpu_idle: state=4294967295 cpu_id=7
114294          <idle>-0     (-----) [007] d..2 82317.325837: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/7:3 next_pid=442 next_prio=120
114295     kworker/2:1-25259 (25259) [002] d..2 82317.325848: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114296     kworker/1:1-25249 (25249) [001] d..2 82317.325849: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114297          <idle>-0     (-----) [001] d..1 82317.325861: cpu_idle: state=0 cpu_id=1
114298     kworker/7:3-442   (  442) [007] d..2 82317.325863: sched_switch: prev_comm=kworker/7:3 prev_pid=442 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
114299          <idle>-0     (-----) [002] d..1 82317.325866: cpu_idle: state=0 cpu_id=2
114300          <idle>-0     (-----) [007] d..1 82317.325870: cpu_idle: state=0 cpu_id=7
114301          <idle>-0     (-----) [000] d.h5 82317.327866: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
114302          <idle>-0     (-----) [000] dnh6 82317.327879: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
114303          <idle>-0     (-----) [000] .n.1 82317.327894: cpu_idle: state=4294967295 cpu_id=0
114304          <idle>-0     (-----) [000] d..2 82317.327902: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
114305 crtc_commit:111-321   (  321) [000] d..2 82317.327981: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114306          <idle>-0     (-----) [000] d..1 82317.327993: cpu_idle: state=0 cpu_id=0
114307          <idle>-0     (-----) [000] d.h5 82317.328170: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
114308          <idle>-0     (-----) [000] d.h6 82317.328188: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
114309          <idle>-0     (-----) [002] .n.1 82317.328196: cpu_idle: state=4294967295 cpu_id=2
114310          <idle>-0     (-----) [000] ...1 82317.328209: cpu_idle: state=4294967295 cpu_id=0
114311          <idle>-0     (-----) [002] d..2 82317.328209: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
114312          <idle>-0     (-----) [000] d..1 82317.328214: cpu_idle: state=0 cpu_id=0
114313  crtc_event:111-322   (  322) [002] d..2 82317.328239: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114314          <idle>-0     (-----) [002] d..1 82317.328252: cpu_idle: state=0 cpu_id=2
114315          <idle>-0     (-----) [000] d.h2 82317.328282: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
114316          <idle>-0     (-----) [000] dnh3 82317.328297: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
114317          <idle>-0     (-----) [000] .n.1 82317.328307: cpu_idle: state=4294967295 cpu_id=0
114318          <idle>-0     (-----) [000] d..2 82317.328316: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
114319        DispSync-8879  ( 8858) [000] d..1 82317.328348: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114320        DispSync-8879  ( 8858) [000] d..2 82317.328364: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114321          <idle>-0     (-----) [001] .n.1 82317.328370: cpu_idle: state=4294967295 cpu_id=1
114322        DispSync-8879  ( 8858) [000] d..1 82317.328371: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
114323          <idle>-0     (-----) [001] d..2 82317.328382: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
114324        DispSync-8879  ( 8858) [000] d..2 82317.328402: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
114325          <idle>-0     (-----) [002] .n.1 82317.328408: cpu_idle: state=4294967295 cpu_id=2
114326          <idle>-0     (-----) [002] d..2 82317.328419: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
114327        DispSync-8879  ( 8858) [000] d..2 82317.328445: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114328          <idle>-0     (-----) [000] d.s4 82317.328483: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
114329   sfEventThread-8882  ( 8858) [001] d.s1 82317.328488: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
114330          <idle>-0     (-----) [000] dns5 82317.328506: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
114331   sfEventThread-8882  ( 8858) [001] d.s2 82317.328527: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
114332   sfEventThread-8882  ( 8858) [001] d..3 82317.328548: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
114333  appEventThread-8881  ( 8858) [002] d..3 82317.328550: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
114334          <idle>-0     (-----) [000] d..2 82317.328554: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
114335   sfEventThread-8882  ( 8858) [001] d..4 82317.328569: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
114336          <idle>-0     (-----) [003] .n.1 82317.328574: cpu_idle: state=4294967295 cpu_id=3
114337  crtc_event:111-322   (  322) [000] d..2 82317.328577: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
114338          <idle>-0     (-----) [006] dnh2 82317.328584: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
114339          <idle>-0     (-----) [003] d..2 82317.328588: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
114340          <idle>-0     (-----) [006] .n.1 82317.328588: cpu_idle: state=4294967295 cpu_id=6
114341  appEventThread-8881  ( 8858) [002] d..3 82317.328590: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
114342          <idle>-0     (-----) [006] d..2 82317.328599: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
114343          <idle>-0     (-----) [004] dnh2 82317.328615: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
114344     rcu_preempt-7     (    7) [000] d..2 82317.328618: 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
114345          <idle>-0     (-----) [004] .n.1 82317.328620: cpu_idle: state=4294967295 cpu_id=4
114346   sfEventThread-8882  ( 8858) [001] d..2 82317.328620: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114347          <idle>-0     (-----) [004] d..2 82317.328627: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
114348          <idle>-0     (-----) [000] d..1 82317.328639: cpu_idle: state=0 cpu_id=0
114349          <idle>-0     (-----) [001] d..1 82317.328643: cpu_idle: state=0 cpu_id=1
114350  appEventThread-8881  ( 8858) [002] d..2 82317.328656: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114351          <idle>-0     (-----) [002] d..1 82317.328678: cpu_idle: state=0 cpu_id=2
114352<...>-9105 ( 9105) [006] .... 82317.328843: binder_transaction: transaction=1572412 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
114353 s.nexuslauncher-10023 (10023) [004] .... 82317.328848: binder_transaction: transaction=1572413 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
114354<...>-9105 ( 9105) [006] .... 82317.328849: binder_transaction_alloc_buf: transaction=1572412 data_size=80 offsets_size=0
114355 s.nexuslauncher-10023 (10023) [004] .... 82317.328852: binder_transaction_alloc_buf: transaction=1572413 data_size=80 offsets_size=0
114356<...>-9105 ( 9105) [006] d..4 82317.328854: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
114357 s.nexuslauncher-10023 (10023) [004] d..4 82317.328918: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
114358          <idle>-0     (-----) [000] dnh2 82317.328923: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
114359          <idle>-0     (-----) [000] .n.1 82317.328931: cpu_idle: state=4294967295 cpu_id=0
114360          <idle>-0     (-----) [000] d..2 82317.328944: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
114361<...>-8874 ( 8858) [000] .... 82317.328955: binder_transaction_received: transaction=1572412
114362          <idle>-0     (-----) [001] dnh2 82317.328959: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
114363          <idle>-0     (-----) [001] .n.1 82317.328966: cpu_idle: state=4294967295 cpu_id=1
114364 s.nexuslauncher-10023 (10023) [004] d..3 82317.328972: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
114365<...>-9105 ( 9105) [006] d..3 82317.328973: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
114366          <idle>-0     (-----) [001] d..2 82317.328981: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
114367 s.nexuslauncher-10023 (10023) [004] d..4 82317.328989: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
114368<...>-13083 ( 8858) [001] .... 82317.328991: binder_transaction_received: transaction=1572413
114369          <idle>-0     (-----) [005] .n.1 82317.328996: cpu_idle: state=4294967295 cpu_id=5
114370<...>-8874 ( 8858) [000] d..1 82317.328999: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
114371          <idle>-0     (-----) [005] d..2 82317.329008: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
114372          <idle>-0     (-----) [002] dnh2 82317.329016: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
114373<...>-8874 ( 8858) [000] d..2 82317.329025: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
114374          <idle>-0     (-----) [002] .n.1 82317.329034: cpu_idle: state=4294967295 cpu_id=2
114375<...>-8874 ( 8858) [000] d..1 82317.329036: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
114376    RenderThread-16607 (10023) [005] d..2 82317.329039: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
114377          <idle>-0     (-----) [002] d..2 82317.329046: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
114378          <idle>-0     (-----) [005] d..1 82317.329047: cpu_idle: state=0 cpu_id=5
114379<...>-13083 ( 8858) [001] d..2 82317.329060: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114380          <idle>-0     (-----) [001] dn.1 82317.329077: cpu_idle: state=0 cpu_id=1
114381<...>-8874 ( 8858) [000] d..2 82317.329082: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
114382          <idle>-0     (-----) [001] .n.1 82317.329086: cpu_idle: state=4294967295 cpu_id=1
114383  appEventThread-8881  ( 8858) [002] d..2 82317.329091: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
114384          <idle>-0     (-----) [001] d..2 82317.329101: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
114385<...>-13083 ( 8858) [001] d..1 82317.329114: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
114386<...>-9105 ( 9105) [006] d..2 82317.329116: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
114387          <idle>-0     (-----) [006] d..1 82317.329134: cpu_idle: state=0 cpu_id=6
114388<...>-8874 ( 8858) [000] d..2 82317.329140: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114389<...>-13083 ( 8858) [001] d..2 82317.329154: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
114390          <idle>-0     (-----) [000] d..2 82317.329169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
114391<...>-13083 ( 8858) [001] d..2 82317.329212: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114392          <idle>-0     (-----) [001] d..1 82317.329229: cpu_idle: state=0 cpu_id=1
114393  appEventThread-8881  ( 8858) [000] d..2 82317.329249: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114394          <idle>-0     (-----) [000] d..1 82317.329266: cpu_idle: state=0 cpu_id=0
114395    RenderThread-9436  ( 9105) [002] d..1 82317.329288: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
114396          <idle>-0     (-----) [006] dnh2 82317.329317: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
114397          <idle>-0     (-----) [006] .n.1 82317.329321: cpu_idle: state=4294967295 cpu_id=6
114398          <idle>-0     (-----) [006] d..2 82317.329330: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
114399    RenderThread-9436  ( 9105) [002] .... 82317.329385: binder_transaction: transaction=1572414 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
114400    RenderThread-9436  ( 9105) [002] .... 82317.329392: binder_transaction_alloc_buf: transaction=1572414 data_size=104 offsets_size=0
114401<...>-9105 ( 9105) [006] d..2 82317.329399: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
114402    RenderThread-9436  ( 9105) [002] d..4 82317.329399: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
114403 s.nexuslauncher-10023 (10023) [004] d..3 82317.329404: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
114404          <idle>-0     (-----) [006] d..1 82317.329409: cpu_idle: state=0 cpu_id=6
114405 s.nexuslauncher-10023 (10023) [004] d..4 82317.329423: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
114406          <idle>-0     (-----) [005] .n.1 82317.329428: cpu_idle: state=4294967295 cpu_id=5
114407    RenderThread-9436  ( 9105) [002] dn.5 82317.329432: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
114408          <idle>-0     (-----) [005] d..2 82317.329435: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
114409    RenderThread-9436  ( 9105) [002] d..2 82317.329445: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
114410 s.nexuslauncher-10023 (10023) [004] d..2 82317.329451: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
114411<...>-13083 ( 8858) [002] .... 82317.329456: binder_transaction_received: transaction=1572414
114412          <idle>-0     (-----) [004] d..1 82317.329469: cpu_idle: state=0 cpu_id=4
114413  surfaceflinger-8858  ( 8858) [003] d..1 82317.329495: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114414  surfaceflinger-8858  ( 8858) [003] d..2 82317.329524: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114415          <idle>-0     (-----) [001] .n.1 82317.329530: cpu_idle: state=4294967295 cpu_id=1
114416          <idle>-0     (-----) [001] d..2 82317.329543: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
114417<...>-13083 ( 8858) [002] .... 82317.329547: binder_transaction: transaction=1572415 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
114418<...>-13083 ( 8858) [002] .... 82317.329552: binder_transaction_alloc_buf: transaction=1572415 data_size=52 offsets_size=8
114419    RenderThread-16607 (10023) [005] d..1 82317.329580: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
114420    RenderThread-16607 (10023) [005] d..2 82317.329596: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
114421   sfEventThread-8882  ( 8858) [001] d..2 82317.329600: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114422          <idle>-0     (-----) [004] .n.1 82317.329603: cpu_idle: state=4294967295 cpu_id=4
114423    RenderThread-16607 (10023) [005] d..1 82317.329611: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
114424          <idle>-0     (-----) [004] d..2 82317.329612: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
114425          <idle>-0     (-----) [001] d..1 82317.329613: cpu_idle: state=0 cpu_id=1
114426<...>-13083 ( 8858) [002] d..2 82317.329618: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
114427    RenderThread-16607 (10023) [005] d..2 82317.329624: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
114428    RenderThread-9436  ( 9105) [002] .... 82317.329629: binder_transaction_received: transaction=1572415
114429          <idle>-0     (-----) [006] .n.1 82317.329629: cpu_idle: state=4294967295 cpu_id=6
114430          <idle>-0     (-----) [006] d..2 82317.329639: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
114431    RenderThread-16607 (10023) [005] .... 82317.329675: binder_transaction: transaction=1572416 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
114432    RenderThread-16607 (10023) [005] .... 82317.329679: binder_transaction_alloc_buf: transaction=1572416 data_size=104 offsets_size=0
114433    RenderThread-16607 (10023) [005] ...2 82317.329684: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
114434    RenderThread-16607 (10023) [005] d..4 82317.329687: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=002
114435 s.nexuslauncher-10023 (10023) [004] d..2 82317.329701: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
114436    RenderThread-16607 (10023) [005] dn.5 82317.329708: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
114437          <idle>-0     (-----) [004] d..1 82317.329712: cpu_idle: state=0 cpu_id=4
114438    RenderThread-16607 (10023) [005] d..2 82317.329751: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
114439<...>-13083 ( 8858) [005] .... 82317.329764: binder_transaction_received: transaction=1572416
114440<...>-13083 ( 8858) [005] .... 82317.329819: binder_transaction: transaction=1572417 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
114441<...>-13083 ( 8858) [005] .... 82317.329823: binder_transaction_alloc_buf: transaction=1572417 data_size=52 offsets_size=8
114442<...>-13083 ( 8858) [005] .... 82317.329830: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
114443<...>-13083 ( 8858) [005] d..2 82317.329868: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
114444<...>-18840 ( 10023) [006] .... 82317.329876: binder_transaction: transaction=1572418 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
114445    RenderThread-16607 (10023) [005] .... 82317.329879: binder_transaction_received: transaction=1572417
114446<...>-18840 ( 10023) [006] .... 82317.329882: binder_transaction_alloc_buf: transaction=1572418 data_size=684 offsets_size=48
114447<...>-18840 ( 10023) [006] ...2 82317.329898: binder_set_priority: proc=8858 thread=13083 old=120 => new=118 desired=118
114448<...>-18840 ( 10023) [006] d..4 82317.329902: sched_waking: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=005
114449<...>-18840 ( 10023) [006] d..5 82317.329923: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=118 target_cpu=006
114450<...>-18840 ( 10023) [006] d..2 82317.329935: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=118
114451<...>-13083 ( 8858) [006] .... 82317.329947: binder_transaction_received: transaction=1572418
114452<...>-13083 ( 8858) [006] .... 82317.330079: binder_transaction: transaction=1572419 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
114453<...>-13083 ( 8858) [006] .... 82317.330082: binder_transaction_alloc_buf: transaction=1572419 data_size=0 offsets_size=0
114454<...>-13083 ( 8858) [006] d..2 82317.330085: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
114455<...>-13083 ( 8858) [006] d..3 82317.330095: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
114456<...>-13083 ( 8858) [006] .... 82317.330098: binder_set_priority: proc=8858 thread=13083 old=118 => new=120 desired=120
114457<...>-13083 ( 8858) [006] d..2 82317.330136: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
114458<...>-18840 ( 10023) [006] .... 82317.330145: binder_transaction_received: transaction=1572419
114459<...>-18840 ( 10023) [006] d..2 82317.330206: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
114460          <idle>-0     (-----) [006] d..1 82317.330223: cpu_idle: state=0 cpu_id=6
114461          <idle>-0     (-----) [006] ...1 82317.330503: cpu_idle: state=4294967295 cpu_id=6
114462          <idle>-0     (-----) [006] d..1 82317.330507: cpu_idle: state=0 cpu_id=6
114463  surfaceflinger-8858  ( 8858) [003] ...1 82317.330796: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
114464  surfaceflinger-8858  ( 8858) [003] ...1 82317.330806: tracing_mark_write: E|8858
114465  surfaceflinger-8858  ( 8858) [003] .... 82317.330872: binder_transaction: transaction=1572420 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
114466  surfaceflinger-8858  ( 8858) [003] .... 82317.330879: binder_transaction_alloc_buf: transaction=1572420 data_size=540 offsets_size=96
114467  surfaceflinger-8858  ( 8858) [003] ...2 82317.330907: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
114468  surfaceflinger-8858  ( 8858) [003] d..4 82317.330916: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
114469  surfaceflinger-8858  ( 8858) [003] d..5 82317.330950: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
114470          <idle>-0     (-----) [001] .n.1 82317.330955: cpu_idle: state=4294967295 cpu_id=1
114471    RenderThread-16607 (10023) [005] d..2 82317.330964: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
114472          <idle>-0     (-----) [001] d..2 82317.330968: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
114473 [email protected]   (  619) [001] .... 82317.330984: binder_transaction_received: transaction=1572420
114474  surfaceflinger-8858  ( 8858) [003] d..2 82317.330998: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114475          <idle>-0     (-----) [003] dnh3 82317.331015: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
114476          <idle>-0     (-----) [003] d..2 82317.331027: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
114477 [email protected]   (  619) [001] ...1 82317.331045: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
114478    RenderThread-9436  ( 9105) [002] d..2 82317.331076: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
114479          <idle>-0     (-----) [002] d..1 82317.331099: cpu_idle: state=0 cpu_id=2
114480 kgsl_worker_thr-258   (  258) [003] d..2 82317.331103: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
114481          <idle>-0     (-----) [003] d..1 82317.331127: cpu_idle: state=0 cpu_id=3
114482    RenderThread-16607 (10023) [005] .... 82317.331133: binder_transaction: transaction=1572421 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
114483    RenderThread-16607 (10023) [005] .... 82317.331137: binder_transaction_alloc_buf: transaction=1572421 data_size=192 offsets_size=8
114484          <idle>-0     (-----) [002] d.h2 82317.331146: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
114485    RenderThread-16607 (10023) [005] ...2 82317.331146: binder_set_priority: proc=8858 thread=13083 old=120 => new=110 desired=110
114486    RenderThread-16607 (10023) [005] d..4 82317.331149: sched_waking: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=006
114487          <idle>-0     (-----) [002] d.h3 82317.331159: sched_blocked_reason: pid=9436 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
114488          <idle>-0     (-----) [002] dnh3 82317.331166: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=002
114489    RenderThread-16607 (10023) [005] dn.5 82317.331171: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=110 target_cpu=005
114490          <idle>-0     (-----) [002] .n.1 82317.331177: cpu_idle: state=4294967295 cpu_id=2
114491    RenderThread-16607 (10023) [005] d..2 82317.331179: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=110
114492<...>-13083 ( 8858) [005] .... 82317.331193: binder_transaction_received: transaction=1572421
114493          <idle>-0     (-----) [002] d..2 82317.331194: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
114494 [email protected]   (  619) [001] ...1 82317.331200: tracing_mark_write: B|619|HWCSession::PresentDisplay::
114495          <idle>-0     (-----) [000] ...1 82317.331237: cpu_idle: state=4294967295 cpu_id=0
114496          <idle>-0     (-----) [000] d..1 82317.331243: cpu_idle: state=0 cpu_id=0
114497    RenderThread-9436  ( 9105) [002] d..1 82317.331281: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
114498    RenderThread-9436  ( 9105) [002] d..2 82317.331305: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
114499<...>-13083 ( 8858) [005] .... 82317.331310: binder_transaction: transaction=1572422 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
114500          <idle>-0     (-----) [003] .n.1 82317.331312: cpu_idle: state=4294967295 cpu_id=3
114501<...>-13083 ( 8858) [005] .... 82317.331314: binder_transaction_alloc_buf: transaction=1572422 data_size=68 offsets_size=0
114502<...>-13083 ( 8858) [005] .... 82317.331317: binder_set_priority: proc=8858 thread=13083 old=110 => new=120 desired=120
114503          <idle>-0     (-----) [003] d..2 82317.331326: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
114504<...>-13083 ( 8858) [005] d..2 82317.331355: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
114505    RenderThread-16607 (10023) [005] .... 82317.331367: binder_transaction_received: transaction=1572422
114506 kgsl_worker_thr-258   (  258) [003] d..2 82317.331375: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
114507 [email protected]   (  619) [001] ...1 82317.331396: tracing_mark_write: B|619|HWDeviceDRM::Commit::
114508          <idle>-0     (-----) [000] ...1 82317.331409: cpu_idle: state=4294967295 cpu_id=0
114509 [email protected]   (  619) [001] ...1 82317.331412: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
114510          <idle>-0     (-----) [000] d..1 82317.331414: cpu_idle: state=0 cpu_id=0
114511 kgsl_worker_thr-258   (  258) [003] d..3 82317.331429: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
114512    RenderThread-16607 (10023) [005] d..2 82317.331458: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
114513 kgsl_worker_thr-258   (  258) [003] d..2 82317.331477: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
114514          <idle>-0     (-----) [005] d..1 82317.331477: cpu_idle: state=0 cpu_id=5
114515  kworker/u16:15-1311  ( 1311) [003] d..2 82317.331510: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
114516          <idle>-0     (-----) [003] d..1 82317.331525: cpu_idle: state=0 cpu_id=3
114517    RenderThread-9436  ( 9105) [002] .... 82317.331528: binder_transaction: transaction=1572423 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
114518    RenderThread-9436  ( 9105) [002] .... 82317.331536: binder_transaction_alloc_buf: transaction=1572423 data_size=192 offsets_size=8
114519    RenderThread-9436  ( 9105) [002] d..4 82317.331550: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
114520          <idle>-0     (-----) [003] d.h2 82317.331574: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
114521          <idle>-0     (-----) [003] dnh3 82317.331589: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
114522    RenderThread-9436  ( 9105) [002] dn.5 82317.331589: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
114523          <idle>-0     (-----) [003] .n.1 82317.331600: cpu_idle: state=4294967295 cpu_id=3
114524          <idle>-0     (-----) [003] d..2 82317.331648: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
114525    RenderThread-9436  ( 9105) [002] d..2 82317.331657: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
114526 kgsl_worker_thr-258   (  258) [003] d..1 82317.331665: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
114527<...>-13083 ( 8858) [002] .... 82317.331669: binder_transaction_received: transaction=1572423
114528 kgsl_worker_thr-258   (  258) [003] d..2 82317.331681: sched_blocked_reason: pid=1311 iowait=0 caller=kgsl_devfreq_get_dev_status+0x2f4/0x428
114529 kgsl_worker_thr-258   (  258) [003] d..2 82317.331687: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
114530 kgsl_worker_thr-258   (  258) [003] d..2 82317.331703: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
114531<...>-13083 ( 8858) [002] d.s2 82317.331843: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
114532 [email protected]   (  619) [001] d.H2 82317.331919: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
114533<...>-13083 ( 8858) [002] d.s3 82317.331930: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
114534  kworker/u16:15-1311  ( 1311) [003] d..2 82317.331966: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
114535 [email protected]   (  619) [001] d.H3 82317.331966: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
114536          <idle>-0     (-----) [000] .n.1 82317.331971: cpu_idle: state=4294967295 cpu_id=0
114537          <idle>-0     (-----) [000] d..2 82317.331987: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
114538<...>-13083 ( 8858) [002] .... 82317.332029: binder_transaction: transaction=1572424 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
114539<...>-13083 ( 8858) [002] .... 82317.332036: binder_transaction_alloc_buf: transaction=1572424 data_size=68 offsets_size=0
114540         sugov:0-576   (  576) [000] .... 82317.332053: clk_set_rate: pwrcl_clk 902400000
114541         sugov:0-576   (  576) [000] .... 82317.332078: clk_set_rate: cpu3_pwrcl_clk 748800000
114542         sugov:0-576   (  576) [000] .... 82317.332090: clk_set_rate: cpu2_pwrcl_clk 748800000
114543<...>-13083 ( 8858) [002] d..2 82317.332096: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
114544         sugov:0-576   (  576) [000] .... 82317.332098: clk_set_rate: cpu1_pwrcl_clk 748800000
114545         sugov:0-576   (  576) [000] .... 82317.332106: clk_set_rate: cpu0_pwrcl_clk 902400000
114546         sugov:0-576   (  576) [000] .... 82317.332116: cpu_frequency: state=902400 cpu_id=0
114547    RenderThread-9436  ( 9105) [002] .... 82317.332135: binder_transaction_received: transaction=1572424
114548         sugov:0-576   (  576) [000] .... 82317.332148: cpu_frequency: state=902400 cpu_id=1
114549         sugov:0-576   (  576) [000] .... 82317.332152: cpu_frequency: state=902400 cpu_id=2
114550         sugov:0-576   (  576) [000] .... 82317.332156: cpu_frequency: state=902400 cpu_id=3
114551         sugov:0-576   (  576) [000] d..2 82317.332194: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114552          <idle>-0     (-----) [000] d..1 82317.332204: cpu_idle: state=0 cpu_id=0
114553    RenderThread-9436  ( 9105) [002] d..2 82317.332257: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114554          <idle>-0     (-----) [002] d..1 82317.332280: cpu_idle: state=0 cpu_id=2
114555  kworker/u16:13-1147  ( 1147) [003] d..2 82317.332331: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
114556 [email protected]   (  619) [001] d.s1 82317.332363: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114557  kworker/u16:15-1311  ( 1311) [003] d..2 82317.332371: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114558 [email protected]   (  619) [001] d.s2 82317.332387: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114559          <idle>-0     (-----) [003] d..1 82317.332391: cpu_idle: state=0 cpu_id=3
114560 [email protected]   (  619) [001] d..2 82317.332396: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
114561 [email protected]   (  619) [001] d..3 82317.332417: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
114562          <idle>-0     (-----) [000] .n.1 82317.332423: cpu_idle: state=4294967295 cpu_id=0
114563          <idle>-0     (-----) [000] d..2 82317.332432: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
114564 crtc_commit:111-321   (  321) [000] d.h2 82317.332527: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
114565 [email protected]   (  619) [001] ...1 82317.332537: tracing_mark_write: E|619
114566 [email protected]   (  619) [001] ...1 82317.332544: tracing_mark_write: E|619
114567 crtc_commit:111-321   (  321) [000] d.h3 82317.332550: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
114568          <idle>-0     (-----) [003] .n.1 82317.332556: cpu_idle: state=4294967295 cpu_id=3
114569          <idle>-0     (-----) [003] d..2 82317.332569: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
114570 [email protected]   (  619) [001] ...1 82317.332612: tracing_mark_write: E|619
114571 kgsl_worker_thr-258   (  258) [003] d..2 82317.332639: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114572          <idle>-0     (-----) [003] d..1 82317.332652: cpu_idle: state=0 cpu_id=3
114573 [email protected]   (  619) [001] ...1 82317.332665: tracing_mark_write: E|619
114574 [email protected]   (  619) [001] .... 82317.332684: binder_transaction: transaction=1572425 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
114575 [email protected]   (  619) [001] .... 82317.332689: binder_transaction_alloc_buf: transaction=1572425 data_size=576 offsets_size=112
114576 [email protected]   (  619) [001] d..2 82317.332711: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
114577 [email protected]   (  619) [001] d..3 82317.332735: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
114578          <idle>-0     (-----) [003] .n.1 82317.332741: cpu_idle: state=4294967295 cpu_id=3
114579 [email protected]   (  619) [001] .... 82317.332741: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
114580          <idle>-0     (-----) [003] d..2 82317.332751: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
114581  surfaceflinger-8858  ( 8858) [003] .... 82317.332763: binder_transaction_received: transaction=1572425
114582 [email protected]   (  619) [001] d..2 82317.332831: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
114583     ksoftirqd/1-18    (   18) [001] d.s2 82317.332852: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
114584     ksoftirqd/1-18    (   18) [001] d.s3 82317.332896: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
114585     ksoftirqd/1-18    (   18) [001] d.s3 82317.332904: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
114586     ksoftirqd/1-18    (   18) [001] d..2 82317.332918: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
114587  kworker/u16:13-1147  ( 1147) [001] d..2 82317.333071: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114588          <idle>-0     (-----) [001] d..1 82317.333091: cpu_idle: state=0 cpu_id=1
114589 crtc_commit:111-321   (  321) [000] d..2 82317.333267: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
114590          <idle>-0     (-----) [000] d..1 82317.333281: cpu_idle: state=0 cpu_id=0
114591  surfaceflinger-8858  ( 8858) [003] d..2 82317.333354: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114592          <idle>-0     (-----) [003] d..1 82317.333378: cpu_idle: state=0 cpu_id=3
114593          <idle>-0     (-----) [003] ...1 82317.334510: cpu_idle: state=4294967295 cpu_id=3
114594          <idle>-0     (-----) [003] d..1 82317.334515: cpu_idle: state=0 cpu_id=3
114595          <idle>-0     (-----) [000] d.s2 82317.335145: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
114596          <idle>-0     (-----) [000] dns3 82317.335171: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
114597          <idle>-0     (-----) [000] .n.1 82317.335184: cpu_idle: state=4294967295 cpu_id=0
114598          <idle>-0     (-----) [000] d..2 82317.335195: 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
114599     rcu_preempt-7     (    7) [000] d..2 82317.335209: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
114600     rcu_preempt-7     (    7) [000] d..3 82317.335251: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
114601     rcu_preempt-7     (    7) [000] d..2 82317.335269: 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
114602         rcuop/2-29    (   29) [000] d..2 82317.335278: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
114603         rcuop/2-29    (   29) [000] d..3 82317.335319: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
114604         rcuop/2-29    (   29) [000] d..2 82317.335333: 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
114605         rcuop/3-37    (   37) [000] d..2 82317.335368: 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
114606          <idle>-0     (-----) [000] d..1 82317.335384: cpu_idle: state=0 cpu_id=0
114607          <idle>-0     (-----) [001] d.h2 82317.336178: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
114608          <idle>-0     (-----) [001] dnh3 82317.336198: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
114609          <idle>-0     (-----) [001] .n.1 82317.336208: cpu_idle: state=4294967295 cpu_id=1
114610          <idle>-0     (-----) [001] d..2 82317.336222: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
114611 [email protected]  (  776) [001] d..2 82317.336319: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114612          <idle>-0     (-----) [001] d..1 82317.336334: cpu_idle: state=0 cpu_id=1
114613          <idle>-0     (-----) [000] d.s2 82317.341802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
114614          <idle>-0     (-----) [000] dns3 82317.341819: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
114615          <idle>-0     (-----) [000] dns3 82317.341826: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
114616          <idle>-0     (-----) [000] dns4 82317.341857: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
114617          <idle>-0     (-----) [000] .n.1 82317.341878: cpu_idle: state=4294967295 cpu_id=0
114618          <idle>-0     (-----) [000] d..2 82317.341892: 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
114619     rcu_preempt-7     (    7) [000] d..2 82317.341904: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
114620     rcu_preempt-7     (    7) [000] d..3 82317.341943: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
114621     rcu_preempt-7     (    7) [000] d.h5 82317.342037: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
114622     rcu_preempt-7     (    7) [000] d.h6 82317.342064: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
114623     rcu_preempt-7     (    7) [000] d.h5 82317.342070: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
114624          <idle>-0     (-----) [001] .n.1 82317.342071: cpu_idle: state=4294967295 cpu_id=1
114625          <idle>-0     (-----) [001] d..2 82317.342084: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
114626     rcu_preempt-7     (    7) [000] d.h6 82317.342088: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
114627          <idle>-0     (-----) [002] .n.1 82317.342097: cpu_idle: state=4294967295 cpu_id=2
114628          <idle>-0     (-----) [002] d..2 82317.342112: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
114629     rcu_preempt-7     (    7) [000] d..2 82317.342113: 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
114630  crtc_event:111-322   (  322) [001] d..2 82317.342129: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114631         rcuop/0-10    (   10) [000] d..2 82317.342133: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
114632          <idle>-0     (-----) [001] d..1 82317.342139: cpu_idle: state=0 cpu_id=1
114633  kworker/u16:13-1147  ( 1147) [000] d..2 82317.342291: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114634          <idle>-0     (-----) [000] d..1 82317.342307: cpu_idle: state=0 cpu_id=0
114635 crtc_commit:111-321   (  321) [002] d..2 82317.342310: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
114636          <idle>-0     (-----) [002] d..1 82317.342321: cpu_idle: state=0 cpu_id=2
114637          <idle>-0     (-----) [000] d.h5 82317.344339: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
114638          <idle>-0     (-----) [000] d.h6 82317.344358: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
114639          <idle>-0     (-----) [002] .n.1 82317.344365: cpu_idle: state=4294967295 cpu_id=2
114640          <idle>-0     (-----) [002] d..2 82317.344373: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
114641          <idle>-0     (-----) [000] ...1 82317.344375: cpu_idle: state=4294967295 cpu_id=0
114642          <idle>-0     (-----) [000] d..1 82317.344380: cpu_idle: state=0 cpu_id=0
114643 crtc_commit:111-321   (  321) [002] d..2 82317.344449: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114644          <idle>-0     (-----) [002] d..1 82317.344458: cpu_idle: state=0 cpu_id=2
114645          <idle>-0     (-----) [000] d.h5 82317.344639: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
114646          <idle>-0     (-----) [000] d.h6 82317.344654: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
114647          <idle>-0     (-----) [001] .n.1 82317.344660: cpu_idle: state=4294967295 cpu_id=1
114648          <idle>-0     (-----) [001] d..2 82317.344671: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
114649          <idle>-0     (-----) [000] ...1 82317.344671: cpu_idle: state=4294967295 cpu_id=0
114650          <idle>-0     (-----) [000] d..1 82317.344677: cpu_idle: state=0 cpu_id=0
114651  crtc_event:111-322   (  322) [001] d..2 82317.344694: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114652          <idle>-0     (-----) [001] d..1 82317.344704: cpu_idle: state=0 cpu_id=1
114653          <idle>-0     (-----) [000] d.h2 82317.344745: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
114654          <idle>-0     (-----) [000] dnh3 82317.344759: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
114655          <idle>-0     (-----) [000] .n.1 82317.344770: cpu_idle: state=4294967295 cpu_id=0
114656          <idle>-0     (-----) [000] d..2 82317.344781: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
114657        DispSync-8879  ( 8858) [000] d..1 82317.344805: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114658        DispSync-8879  ( 8858) [000] d..2 82317.344821: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114659          <idle>-0     (-----) [001] .n.1 82317.344826: cpu_idle: state=4294967295 cpu_id=1
114660        DispSync-8879  ( 8858) [000] d..1 82317.344826: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
114661          <idle>-0     (-----) [001] d..2 82317.344836: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
114662        DispSync-8879  ( 8858) [000] d..2 82317.344847: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
114663          <idle>-0     (-----) [003] .n.1 82317.344852: cpu_idle: state=4294967295 cpu_id=3
114664          <idle>-0     (-----) [003] d..2 82317.344866: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
114665        DispSync-8879  ( 8858) [000] d..2 82317.344883: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114666   sfEventThread-8882  ( 8858) [001] d..3 82317.344892: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
114667          <idle>-0     (-----) [000] d..1 82317.344897: cpu_idle: state=0 cpu_id=0
114668   sfEventThread-8882  ( 8858) [001] d..4 82317.344925: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
114669  appEventThread-8881  ( 8858) [003] d..3 82317.344929: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
114670          <idle>-0     (-----) [000] .n.1 82317.344931: cpu_idle: state=4294967295 cpu_id=0
114671          <idle>-0     (-----) [000] d..2 82317.344942: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
114672   sfEventThread-8882  ( 8858) [001] d..2 82317.344965: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114673  appEventThread-8881  ( 8858) [003] d..4 82317.344971: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
114674          <idle>-0     (-----) [002] .n.1 82317.344976: cpu_idle: state=4294967295 cpu_id=2
114675          <idle>-0     (-----) [001] d..1 82317.344981: cpu_idle: state=0 cpu_id=1
114676          <idle>-0     (-----) [002] d..2 82317.344988: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
114677  appEventThread-8881  ( 8858) [003] d..3 82317.345049: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
114678          <idle>-0     (-----) [004] dnh2 82317.345076: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
114679          <idle>-0     (-----) [004] .n.1 82317.345081: cpu_idle: state=4294967295 cpu_id=4
114680          <idle>-0     (-----) [004] d..2 82317.345089: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
114681  appEventThread-8881  ( 8858) [003] d..2 82317.345112: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114682<...>-9105 ( 9105) [002] d.s2 82317.345155: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
114683<...>-9105 ( 9105) [002] d.s3 82317.345179: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
114684          <idle>-0     (-----) [003] d..1 82317.345183: cpu_idle: state=0 cpu_id=3
114685          <idle>-0     (-----) [001] .n.1 82317.345185: cpu_idle: state=4294967295 cpu_id=1
114686          <idle>-0     (-----) [001] d..2 82317.345198: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
114687  crtc_event:111-322   (  322) [001] d..2 82317.345231: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114688          <idle>-0     (-----) [001] d..1 82317.345241: cpu_idle: state=0 cpu_id=1
114689 s.nexuslauncher-10023 (10023) [004] .... 82317.345351: binder_transaction: transaction=1572426 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
114690 s.nexuslauncher-10023 (10023) [004] .... 82317.345357: binder_transaction_alloc_buf: transaction=1572426 data_size=80 offsets_size=0
114691 s.nexuslauncher-10023 (10023) [004] d..4 82317.345361: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
114692          <idle>-0     (-----) [001] dnh2 82317.345399: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
114693          <idle>-0     (-----) [001] .n.1 82317.345406: cpu_idle: state=4294967295 cpu_id=1
114694 s.nexuslauncher-10023 (10023) [004] d..3 82317.345411: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
114695          <idle>-0     (-----) [001] d..2 82317.345416: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
114696<...>-9105 ( 9105) [002] .... 82317.345419: binder_transaction: transaction=1572427 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
114697<...>-13083 ( 8858) [001] .... 82317.345425: binder_transaction_received: transaction=1572426
114698<...>-9105 ( 9105) [002] .... 82317.345426: binder_transaction_alloc_buf: transaction=1572427 data_size=80 offsets_size=0
114699 s.nexuslauncher-10023 (10023) [004] d..4 82317.345430: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
114700<...>-9105 ( 9105) [002] d..4 82317.345434: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
114701          <idle>-0     (-----) [005] .n.1 82317.345437: cpu_idle: state=4294967295 cpu_id=5
114702          <idle>-0     (-----) [005] d..2 82317.345450: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
114703<...>-9105 ( 9105) [002] d..5 82317.345476: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
114704          <idle>-0     (-----) [003] .n.1 82317.345483: cpu_idle: state=4294967295 cpu_id=3
114705    RenderThread-16607 (10023) [005] d..2 82317.345486: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
114706          <idle>-0     (-----) [005] d..1 82317.345494: cpu_idle: state=0 cpu_id=5
114707          <idle>-0     (-----) [003] d..2 82317.345498: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
114708<...>-8874 ( 8858) [003] .... 82317.345507: binder_transaction_received: transaction=1572427
114709<...>-13083 ( 8858) [001] d..1 82317.345512: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
114710<...>-9105 ( 9105) [002] d..3 82317.345518: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=002
114711<...>-13083 ( 8858) [001] d..2 82317.345552: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
114712<...>-13083 ( 8858) [001] d..1 82317.345559: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
114713          <idle>-0     (-----) [006] dnh2 82317.345559: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
114714  surfaceflinger-8858  ( 8858) [000] d..2 82317.345596: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
114715          <idle>-0     (-----) [006] .n.1 82317.345604: cpu_idle: state=4294967295 cpu_id=6
114716<...>-8874 ( 8858) [003] d..2 82317.345607: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114717          <idle>-0     (-----) [006] d..2 82317.345614: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
114718<...>-9105 ( 9105) [002] d..2 82317.345617: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
114719          <idle>-0     (-----) [003] dn.1 82317.345623: cpu_idle: state=0 cpu_id=3
114720<...>-13083 ( 8858) [001] d..2 82317.345627: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
114721          <idle>-0     (-----) [003] .n.1 82317.345632: cpu_idle: state=4294967295 cpu_id=3
114722  surfaceflinger-8858  ( 8858) [000] d..3 82317.345647: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
114723          <idle>-0     (-----) [003] d..2 82317.345658: 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
114724    RenderThread-9436  ( 9105) [006] d..2 82317.345672: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
114725         rcuop/0-10    (   10) [003] d..2 82317.345674: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
114726<...>-13083 ( 8858) [001] d..2 82317.345678: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114727          <idle>-0     (-----) [006] d..1 82317.345683: cpu_idle: state=0 cpu_id=6
114728<...>-8874 ( 8858) [003] d..1 82317.345686: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
114729  appEventThread-8881  ( 8858) [002] d..2 82317.345688: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
114730          <idle>-0     (-----) [001] d..1 82317.345696: cpu_idle: state=0 cpu_id=1
114731<...>-8874 ( 8858) [003] d..2 82317.345720: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
114732          <idle>-0     (-----) [001] .n.1 82317.345727: cpu_idle: state=4294967295 cpu_id=1
114733          <idle>-0     (-----) [001] d..2 82317.345739: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
114734 s.nexuslauncher-10023 (10023) [004] d..3 82317.345771: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
114735<...>-8874 ( 8858) [003] d..2 82317.345773: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114736          <idle>-0     (-----) [003] d..1 82317.345790: cpu_idle: state=0 cpu_id=3
114737 s.nexuslauncher-10023 (10023) [004] d..4 82317.345791: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
114738          <idle>-0     (-----) [005] .n.1 82317.345796: cpu_idle: state=4294967295 cpu_id=5
114739          <idle>-0     (-----) [005] d..2 82317.345804: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
114740  appEventThread-8881  ( 8858) [001] d..2 82317.345810: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114741 s.nexuslauncher-10023 (10023) [004] d..2 82317.345818: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
114742          <idle>-0     (-----) [001] d..1 82317.345824: cpu_idle: state=0 cpu_id=1
114743          <idle>-0     (-----) [004] d..1 82317.345836: cpu_idle: state=0 cpu_id=4
114744<...>-9105 ( 9105) [002] d..3 82317.345877: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
114745          <idle>-0     (-----) [006] dnh2 82317.345904: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
114746          <idle>-0     (-----) [006] .n.1 82317.345909: cpu_idle: state=4294967295 cpu_id=6
114747          <idle>-0     (-----) [006] d..2 82317.345916: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
114748  surfaceflinger-8858  ( 8858) [000] d..1 82317.345930: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114749    RenderThread-16607 (10023) [005] d..1 82317.345930: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
114750<...>-9105 ( 9105) [002] d..2 82317.345934: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114751    RenderThread-16607 (10023) [005] d..2 82317.345946: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
114752          <idle>-0     (-----) [004] .n.1 82317.345953: cpu_idle: state=4294967295 cpu_id=4
114753  surfaceflinger-8858  ( 8858) [000] d..2 82317.345954: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114754          <idle>-0     (-----) [002] d..1 82317.345958: cpu_idle: state=0 cpu_id=2
114755          <idle>-0     (-----) [001] .n.1 82317.345960: cpu_idle: state=4294967295 cpu_id=1
114756    RenderThread-16607 (10023) [005] d..1 82317.345961: sched_waking: comm=hwuiTask1 pid=18840 prio=118 target_cpu=006
114757          <idle>-0     (-----) [004] d..2 82317.345963: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
114758          <idle>-0     (-----) [001] d..2 82317.345971: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
114759    RenderThread-9436  ( 9105) [006] d..1 82317.345978: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
114760    RenderThread-16607 (10023) [005] d..2 82317.345982: sched_wakeup: comm=hwuiTask1 pid=18840 prio=118 target_cpu=007
114761          <idle>-0     (-----) [007] .n.1 82317.345988: cpu_idle: state=4294967295 cpu_id=7
114762          <idle>-0     (-----) [007] d..2 82317.345995: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
114763          <idle>-0     (-----) [002] dnh2 82317.346007: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
114764   sfEventThread-8882  ( 8858) [001] d..2 82317.346013: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114765          <idle>-0     (-----) [002] .n.1 82317.346015: cpu_idle: state=4294967295 cpu_id=2
114766          <idle>-0     (-----) [001] d..1 82317.346025: cpu_idle: state=0 cpu_id=1
114767          <idle>-0     (-----) [002] d..2 82317.346028: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
114768    RenderThread-16607 (10023) [005] .... 82317.346039: binder_transaction: transaction=1572428 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
114769    RenderThread-16607 (10023) [005] .... 82317.346044: binder_transaction_alloc_buf: transaction=1572428 data_size=104 offsets_size=0
114770    RenderThread-9436  ( 9105) [006] .... 82317.346045: binder_transaction: transaction=1572429 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
114771    RenderThread-16607 (10023) [005] ...2 82317.346048: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
114772    RenderThread-9436  ( 9105) [006] .... 82317.346049: binder_transaction_alloc_buf: transaction=1572429 data_size=104 offsets_size=0
114773    RenderThread-16607 (10023) [005] d..4 82317.346052: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=003
114774 s.nexuslauncher-10023 (10023) [004] d..2 82317.346055: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
114775          <idle>-0     (-----) [004] d..1 82317.346066: cpu_idle: state=0 cpu_id=4
114776    RenderThread-16607 (10023) [005] d..5 82317.346072: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
114777    RenderThread-9436  ( 9105) [006] d..4 82317.346110: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
114778    RenderThread-9436  ( 9105) [006] dn.5 82317.346133: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
114779<...>-9105 ( 9105) [002] d..2 82317.346136: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114780          <idle>-0     (-----) [002] d..1 82317.346154: cpu_idle: state=0 cpu_id=2
114781    RenderThread-9436  ( 9105) [006] d..2 82317.346176: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
114782    RenderThread-16607 (10023) [005] d..2 82317.346182: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
114783<...>-13083 ( 8858) [006] .... 82317.346189: binder_transaction_received: transaction=1572429
114784<...>-8874 ( 8858) [005] .... 82317.346195: binder_transaction_received: transaction=1572428
114785<...>-18840 ( 10023) [007] .... 82317.346211: binder_transaction: transaction=1572430 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
114786<...>-18840 ( 10023) [007] .... 82317.346216: binder_transaction_alloc_buf: transaction=1572430 data_size=684 offsets_size=48
114787<...>-18840 ( 10023) [007] ...2 82317.346232: binder_set_priority: proc=8858 thread=8951 old=120 => new=118 desired=118
114788<...>-18840 ( 10023) [007] d..4 82317.346236: sched_waking: comm=Binder:8858_4 pid=8951 prio=118 target_cpu=006
114789<...>-18840 ( 10023) [007] dn.5 82317.346258: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=118 target_cpu=007
114790<...>-13083 ( 8858) [006] .... 82317.346265: binder_transaction: transaction=1572431 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
114791<...>-18840 ( 10023) [007] d..2 82317.346266: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=118
114792<...>-8874 ( 8858) [005] .... 82317.346267: binder_transaction: transaction=1572432 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
114793<...>-13083 ( 8858) [006] .... 82317.346269: binder_transaction_alloc_buf: transaction=1572431 data_size=52 offsets_size=8
114794<...>-8874 ( 8858) [005] .... 82317.346271: binder_transaction_alloc_buf: transaction=1572432 data_size=52 offsets_size=8
114795<...>-8951 ( 8858) [007] .... 82317.346279: binder_transaction_received: transaction=1572430
114796<...>-8874 ( 8858) [005] d..2 82317.346279: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
114797<...>-8874 ( 8858) [005] d..3 82317.346290: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
114798<...>-8874 ( 8858) [005] .... 82317.346293: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
114799<...>-13083 ( 8858) [006] d..2 82317.346308: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
114800    RenderThread-9436  ( 9105) [006] .... 82317.346319: binder_transaction_received: transaction=1572431
114801<...>-8874 ( 8858) [005] d..2 82317.346331: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
114802    RenderThread-16607 (10023) [005] .... 82317.346341: binder_transaction_received: transaction=1572432
114803<...>-8951 ( 8858) [007] .... 82317.346411: binder_transaction: transaction=1572433 dest_node=0 dest_proc=10023 dest_thread=18840 reply=1 flags=0x0 code=0x0
114804<...>-8951 ( 8858) [007] .... 82317.346415: binder_transaction_alloc_buf: transaction=1572433 data_size=0 offsets_size=0
114805<...>-8951 ( 8858) [007] .... 82317.346417: binder_set_priority: proc=8858 thread=8951 old=118 => new=120 desired=120
114806<...>-8951 ( 8858) [007] d..2 82317.346463: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=hwuiTask1 next_pid=18840 next_prio=118
114807<...>-18840 ( 10023) [007] .... 82317.346473: binder_transaction_received: transaction=1572433
114808<...>-18840 ( 10023) [007] d..2 82317.346536: sched_switch: prev_comm=hwuiTask1 prev_pid=18840 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
114809          <idle>-0     (-----) [007] d..1 82317.346552: cpu_idle: state=0 cpu_id=7
114810          <idle>-0     (-----) [003] ...1 82317.346942: cpu_idle: state=4294967295 cpu_id=3
114811          <idle>-0     (-----) [003] d..1 82317.346947: cpu_idle: state=0 cpu_id=3
114812  surfaceflinger-8858  ( 8858) [000] ...1 82317.347042: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
114813  surfaceflinger-8858  ( 8858) [000] ...1 82317.347051: tracing_mark_write: E|8858
114814  surfaceflinger-8858  ( 8858) [000] .... 82317.347109: binder_transaction: transaction=1572434 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
114815  surfaceflinger-8858  ( 8858) [000] .... 82317.347115: binder_transaction_alloc_buf: transaction=1572434 data_size=540 offsets_size=96
114816  surfaceflinger-8858  ( 8858) [000] ...2 82317.347139: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
114817  surfaceflinger-8858  ( 8858) [000] d..4 82317.347146: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
114818  surfaceflinger-8858  ( 8858) [000] d..5 82317.347169: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
114819          <idle>-0     (-----) [001] .n.1 82317.347179: cpu_idle: state=4294967295 cpu_id=1
114820          <idle>-0     (-----) [001] d..2 82317.347189: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
114821 [email protected]   (  619) [001] .... 82317.347202: binder_transaction_received: transaction=1572434
114822  surfaceflinger-8858  ( 8858) [000] d..2 82317.347213: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114823          <idle>-0     (-----) [000] d..1 82317.347232: cpu_idle: state=0 cpu_id=0
114824 [email protected]   (  619) [001] ...1 82317.347256: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
114825    RenderThread-9436  ( 9105) [006] .... 82317.347353: binder_transaction: transaction=1572435 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
114826    RenderThread-9436  ( 9105) [006] .... 82317.347359: binder_transaction_alloc_buf: transaction=1572435 data_size=192 offsets_size=8
114827          <idle>-0     (-----) [000] ...1 82317.347363: cpu_idle: state=4294967295 cpu_id=0
114828          <idle>-0     (-----) [000] d..1 82317.347368: cpu_idle: state=0 cpu_id=0
114829    RenderThread-9436  ( 9105) [006] d..4 82317.347369: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=007
114830 [email protected]   (  619) [001] ...1 82317.347389: tracing_mark_write: B|619|HWCSession::PresentDisplay::
114831    RenderThread-9436  ( 9105) [006] dn.5 82317.347391: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
114832    RenderThread-9436  ( 9105) [006] d..2 82317.347400: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
114833<...>-8951 ( 8858) [006] .... 82317.347413: binder_transaction_received: transaction=1572435
114834<...>-8951 ( 8858) [006] .... 82317.347530: binder_transaction: transaction=1572436 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
114835<...>-8951 ( 8858) [006] .... 82317.347535: binder_transaction_alloc_buf: transaction=1572436 data_size=68 offsets_size=0
114836 [email protected]   (  619) [001] ...1 82317.347559: tracing_mark_write: B|619|HWDeviceDRM::Commit::
114837<...>-8951 ( 8858) [006] d..2 82317.347567: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
114838 [email protected]   (  619) [001] ...1 82317.347573: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
114839    RenderThread-16607 (10023) [005] .... 82317.347574: binder_transaction: transaction=1572437 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
114840    RenderThread-9436  ( 9105) [006] .... 82317.347578: binder_transaction_received: transaction=1572436
114841    RenderThread-16607 (10023) [005] .... 82317.347580: binder_transaction_alloc_buf: transaction=1572437 data_size=192 offsets_size=8
114842    RenderThread-16607 (10023) [005] ...2 82317.347589: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
114843    RenderThread-16607 (10023) [005] d..4 82317.347593: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=006
114844    RenderThread-16607 (10023) [005] dn.5 82317.347615: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
114845    RenderThread-16607 (10023) [005] d..2 82317.347623: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
114846          <idle>-0     (-----) [000] ...1 82317.347626: cpu_idle: state=4294967295 cpu_id=0
114847          <idle>-0     (-----) [000] d..1 82317.347630: cpu_idle: state=0 cpu_id=0
114848<...>-8951 ( 8858) [005] .... 82317.347636: binder_transaction_received: transaction=1572437
114849    RenderThread-9436  ( 9105) [006] d..2 82317.347662: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
114850          <idle>-0     (-----) [006] d..1 82317.347681: cpu_idle: state=0 cpu_id=6
114851<...>-8951 ( 8858) [005] .... 82317.347755: binder_transaction: transaction=1572438 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
114852<...>-8951 ( 8858) [005] .... 82317.347760: binder_transaction_alloc_buf: transaction=1572438 data_size=68 offsets_size=0
114853<...>-8951 ( 8858) [005] .... 82317.347763: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
114854<...>-8951 ( 8858) [005] d..2 82317.347800: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
114855    RenderThread-16607 (10023) [005] .... 82317.347812: binder_transaction_received: transaction=1572438
114856    RenderThread-16607 (10023) [005] d..2 82317.347903: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
114857          <idle>-0     (-----) [005] d..1 82317.347923: cpu_idle: state=0 cpu_id=5
114858 [email protected]   (  619) [001] d..2 82317.348174: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
114859 [email protected]   (  619) [001] d..3 82317.348203: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
114860          <idle>-0     (-----) [002] .n.1 82317.348210: cpu_idle: state=4294967295 cpu_id=2
114861          <idle>-0     (-----) [002] d..2 82317.348223: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
114862 [email protected]   (  619) [001] ...1 82317.348318: tracing_mark_write: E|619
114863 [email protected]   (  619) [001] ...1 82317.348325: tracing_mark_write: E|619
114864 [email protected]   (  619) [001] ...1 82317.348389: tracing_mark_write: E|619
114865          <idle>-0     (-----) [000] d.s2 82317.348476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
114866 [email protected]   (  619) [001] ...1 82317.348497: tracing_mark_write: E|619
114867          <idle>-0     (-----) [000] dns3 82317.348500: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
114868          <idle>-0     (-----) [000] .n.1 82317.348512: cpu_idle: state=4294967295 cpu_id=0
114869 [email protected]   (  619) [001] .... 82317.348520: binder_transaction: transaction=1572439 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
114870          <idle>-0     (-----) [000] d..2 82317.348523: 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
114871 [email protected]   (  619) [001] .... 82317.348525: binder_transaction_alloc_buf: transaction=1572439 data_size=576 offsets_size=112
114872 [email protected]   (  619) [001] d..2 82317.348548: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
114873     rcu_preempt-7     (    7) [000] d..2 82317.348564: 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
114874 [email protected]   (  619) [001] d..3 82317.348577: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
114875 [email protected]   (  619) [001] .... 82317.348583: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
114876          <idle>-0     (-----) [000] d..2 82317.348587: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
114877  surfaceflinger-8858  ( 8858) [000] .... 82317.348598: binder_transaction_received: transaction=1572439
114878 [email protected]   (  619) [001] d..2 82317.348684: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114879          <idle>-0     (-----) [001] d..1 82317.348705: cpu_idle: state=0 cpu_id=1
114880  surfaceflinger-8858  ( 8858) [000] d.h2 82317.348799: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
114881  surfaceflinger-8858  ( 8858) [000] d.h3 82317.348823: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
114882          <idle>-0     (-----) [003] .n.1 82317.348828: cpu_idle: state=4294967295 cpu_id=3
114883          <idle>-0     (-----) [003] d..2 82317.348841: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
114884 kgsl_worker_thr-258   (  258) [003] d..2 82317.348887: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
114885 kgsl_worker_thr-258   (  258) [003] d..3 82317.348934: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
114886 kgsl_worker_thr-258   (  258) [003] d..2 82317.348996: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
114887 crtc_commit:111-321   (  321) [002] d..2 82317.349042: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
114888          <idle>-0     (-----) [002] d..1 82317.349061: cpu_idle: state=0 cpu_id=2
114889  kworker/u16:13-1147  ( 1147) [003] d..2 82317.349221: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114890          <idle>-0     (-----) [003] d..1 82317.349240: cpu_idle: state=0 cpu_id=3
114891  surfaceflinger-8858  ( 8858) [000] d..2 82317.349312: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114892          <idle>-0     (-----) [000] d..1 82317.349335: cpu_idle: state=0 cpu_id=0
114893          <idle>-0     (-----) [003] d.h2 82317.351227: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
114894          <idle>-0     (-----) [003] dnh3 82317.351243: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
114895          <idle>-0     (-----) [003] .n.1 82317.351263: cpu_idle: state=4294967295 cpu_id=3
114896          <idle>-0     (-----) [003] d..2 82317.351276: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
114897 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.351503: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
114898          <idle>-0     (-----) [003] d..1 82317.351520: cpu_idle: state=0 cpu_id=3
114899          <idle>-0     (-----) [001] d.s3 82317.351535: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
114900          <idle>-0     (-----) [001] d.s4 82317.351551: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
114901          <idle>-0     (-----) [003] .n.1 82317.351558: cpu_idle: state=4294967295 cpu_id=3
114902          <idle>-0     (-----) [001] ...1 82317.351562: cpu_idle: state=4294967295 cpu_id=1
114903          <idle>-0     (-----) [003] d..2 82317.351568: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
114904          <idle>-0     (-----) [001] d..1 82317.351572: cpu_idle: state=0 cpu_id=1
114905 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.351609: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
114906          <idle>-0     (-----) [003] d..1 82317.351620: cpu_idle: state=0 cpu_id=3
114907          <idle>-0     (-----) [001] d..2 82317.352719: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114908          <idle>-0     (-----) [001] dn.3 82317.352736: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
114909          <idle>-0     (-----) [001] dns3 82317.352829: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
114910          <idle>-0     (-----) [001] dns4 82317.352849: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
114911          <idle>-0     (-----) [001] dns3 82317.352854: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
114912          <idle>-0     (-----) [000] .n.1 82317.352856: cpu_idle: state=4294967295 cpu_id=0
114913          <idle>-0     (-----) [000] d..2 82317.352876: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
114914          <idle>-0     (-----) [001] dns4 82317.352897: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
114915     kworker/0:1-25262 (25262) [000] d..2 82317.352913: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
114916          <idle>-0     (-----) [001] dns3 82317.352919: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
114917          <idle>-0     (-----) [001] dns4 82317.352950: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
114918          <idle>-0     (-----) [001] .n.1 82317.352961: cpu_idle: state=4294967295 cpu_id=1
114919          <idle>-0     (-----) [001] d..2 82317.352978: 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
114920     ksoftirqd/1-18    (   18) [001] d..2 82317.353002: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
114921  kworker/u16:15-1311  ( 1311) [001] d..2 82317.353037: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114922          <idle>-0     (-----) [001] d..1 82317.353060: cpu_idle: state=0 cpu_id=1
114923  kworker/u16:13-1147  ( 1147) [000] d..2 82317.353243: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
114924          <idle>-0     (-----) [000] d..1 82317.353256: cpu_idle: state=0 cpu_id=0
114925          <idle>-0     (-----) [001] d.s3 82317.353272: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
114926          <idle>-0     (-----) [001] d.s4 82317.353286: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
114927          <idle>-0     (-----) [001] d.s4 82317.353296: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
114928          <idle>-0     (-----) [000] .n.1 82317.353303: cpu_idle: state=4294967295 cpu_id=0
114929          <idle>-0     (-----) [001] ...1 82317.353306: cpu_idle: state=4294967295 cpu_id=1
114930          <idle>-0     (-----) [001] d..1 82317.353313: cpu_idle: state=0 cpu_id=1
114931          <idle>-0     (-----) [000] d..2 82317.353314: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
114932  kworker/u16:13-1147  ( 1147) [000] .... 82317.353376: clk_set_rate: l3_cluster0_vote_clk 403200000
114933  kworker/u16:13-1147  ( 1147) [000] .... 82317.353385: clk_set_rate: l3_clk 403200000
114934  kworker/u16:13-1147  ( 1147) [000] d..2 82317.353443: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114935          <idle>-0     (-----) [000] d..1 82317.353454: cpu_idle: state=0 cpu_id=0
114936          <idle>-0     (-----) [000] d.s2 82317.355137: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
114937          <idle>-0     (-----) [000] dns3 82317.355158: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
114938          <idle>-0     (-----) [000] .n.1 82317.355174: cpu_idle: state=4294967295 cpu_id=0
114939          <idle>-0     (-----) [000] d..2 82317.355183: 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
114940     rcu_preempt-7     (    7) [000] d..2 82317.355192: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
114941     rcu_preempt-7     (    7) [000] d..3 82317.355209: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
114942     rcu_preempt-7     (    7) [000] d..2 82317.355225: 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
114943         rcuop/2-29    (   29) [000] d..2 82317.355231: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
114944         rcuop/2-29    (   29) [000] d..3 82317.355246: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
114945         rcuop/2-29    (   29) [000] d..2 82317.355255: 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
114946         rcuop/3-37    (   37) [000] d..2 82317.355295: 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
114947          <idle>-0     (-----) [000] d..1 82317.355307: cpu_idle: state=0 cpu_id=0
114948          <idle>-0     (-----) [000] d.h5 82317.358470: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
114949          <idle>-0     (-----) [000] d.h6 82317.358491: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
114950          <idle>-0     (-----) [001] .n.1 82317.358497: cpu_idle: state=4294967295 cpu_id=1
114951          <idle>-0     (-----) [000] d.h5 82317.358497: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
114952          <idle>-0     (-----) [000] d.h6 82317.358510: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
114953          <idle>-0     (-----) [001] d..2 82317.358512: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
114954          <idle>-0     (-----) [002] .n.1 82317.358517: cpu_idle: state=4294967295 cpu_id=2
114955          <idle>-0     (-----) [000] d..2 82317.358523: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
114956          <idle>-0     (-----) [002] d..2 82317.358530: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
114957          <idle>-0     (-----) [000] dn.3 82317.358536: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
114958          <idle>-0     (-----) [000] .n.1 82317.358540: cpu_idle: state=4294967295 cpu_id=0
114959          <idle>-0     (-----) [000] d..2 82317.358553: 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
114960  crtc_event:111-322   (  322) [001] d..2 82317.358555: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114961          <idle>-0     (-----) [001] d..1 82317.358565: cpu_idle: state=0 cpu_id=1
114962     ksoftirqd/0-3     (    3) [000] d..2 82317.358583: 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
114963          <idle>-0     (-----) [000] d..1 82317.358592: cpu_idle: state=0 cpu_id=0
114964 crtc_commit:111-321   (  321) [002] d..2 82317.358675: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
114965          <idle>-0     (-----) [002] d..1 82317.358684: cpu_idle: state=0 cpu_id=2
114966          <idle>-0     (-----) [001] d.h2 82317.359794: sched_waking: comm=HeapTaskDaemon pid=27561 prio=124 target_cpu=001
114967          <idle>-0     (-----) [001] d.h3 82317.359825: sched_wakeup: comm=HeapTaskDaemon pid=27561 prio=124 target_cpu=000
114968          <idle>-0     (-----) [000] .n.1 82317.359831: cpu_idle: state=4294967295 cpu_id=0
114969          <idle>-0     (-----) [001] ...1 82317.359837: cpu_idle: state=4294967295 cpu_id=1
114970          <idle>-0     (-----) [000] d..2 82317.359841: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=27561 next_prio=124
114971          <idle>-0     (-----) [001] d..1 82317.359842: cpu_idle: state=0 cpu_id=1
114972           <...>-27561 (-----) [000] d..2 82317.359934: sched_switch: prev_comm=HeapTaskDaemon prev_pid=27561 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
114973          <idle>-0     (-----) [000] d..1 82317.359944: cpu_idle: state=0 cpu_id=0
114974          <idle>-0     (-----) [000] d.h5 82317.360806: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
114975          <idle>-0     (-----) [000] d.h6 82317.360825: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
114976          <idle>-0     (-----) [002] .n.1 82317.360830: cpu_idle: state=4294967295 cpu_id=2
114977          <idle>-0     (-----) [002] d..2 82317.360838: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
114978          <idle>-0     (-----) [000] ...1 82317.360839: cpu_idle: state=4294967295 cpu_id=0
114979          <idle>-0     (-----) [000] d..1 82317.360844: cpu_idle: state=0 cpu_id=0
114980 crtc_commit:111-321   (  321) [002] d..2 82317.360906: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
114981          <idle>-0     (-----) [002] d..1 82317.360915: cpu_idle: state=0 cpu_id=2
114982          <idle>-0     (-----) [000] d.h5 82317.361111: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
114983          <idle>-0     (-----) [000] d.h6 82317.361126: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
114984          <idle>-0     (-----) [001] .n.1 82317.361131: cpu_idle: state=4294967295 cpu_id=1
114985          <idle>-0     (-----) [001] d..2 82317.361142: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
114986          <idle>-0     (-----) [000] ...1 82317.361142: cpu_idle: state=4294967295 cpu_id=0
114987          <idle>-0     (-----) [000] d..1 82317.361146: cpu_idle: state=0 cpu_id=0
114988  crtc_event:111-322   (  322) [001] d..2 82317.361168: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
114989          <idle>-0     (-----) [001] d..1 82317.361177: cpu_idle: state=0 cpu_id=1
114990          <idle>-0     (-----) [000] d.h2 82317.361189: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
114991          <idle>-0     (-----) [000] dnh3 82317.361203: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
114992          <idle>-0     (-----) [000] .n.1 82317.361212: cpu_idle: state=4294967295 cpu_id=0
114993          <idle>-0     (-----) [000] d..2 82317.361220: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
114994        DispSync-8879  ( 8858) [000] d..1 82317.361244: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114995        DispSync-8879  ( 8858) [000] d..2 82317.361259: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
114996        DispSync-8879  ( 8858) [000] d..1 82317.361265: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
114997          <idle>-0     (-----) [001] .n.1 82317.361265: cpu_idle: state=4294967295 cpu_id=1
114998          <idle>-0     (-----) [001] d..2 82317.361275: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
114999        DispSync-8879  ( 8858) [000] d..2 82317.361293: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
115000          <idle>-0     (-----) [003] .n.1 82317.361298: cpu_idle: state=4294967295 cpu_id=3
115001          <idle>-0     (-----) [003] d..2 82317.361308: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
115002        DispSync-8879  ( 8858) [000] d..2 82317.361325: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115003   sfEventThread-8882  ( 8858) [001] d..3 82317.361328: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115004          <idle>-0     (-----) [000] d..1 82317.361334: cpu_idle: state=0 cpu_id=0
115005   sfEventThread-8882  ( 8858) [001] d..4 82317.361350: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115006          <idle>-0     (-----) [000] .n.1 82317.361356: cpu_idle: state=4294967295 cpu_id=0
115007  appEventThread-8881  ( 8858) [003] d..3 82317.361361: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
115008          <idle>-0     (-----) [000] d..2 82317.361364: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
115009   sfEventThread-8882  ( 8858) [001] d..2 82317.361385: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115010  appEventThread-8881  ( 8858) [003] d..4 82317.361386: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
115011          <idle>-0     (-----) [002] .n.1 82317.361391: cpu_idle: state=4294967295 cpu_id=2
115012          <idle>-0     (-----) [001] d..1 82317.361399: cpu_idle: state=0 cpu_id=1
115013          <idle>-0     (-----) [002] d..2 82317.361402: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
115014  appEventThread-8881  ( 8858) [003] d..3 82317.361402: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115015          <idle>-0     (-----) [004] dnh2 82317.361426: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115016          <idle>-0     (-----) [004] .n.1 82317.361430: cpu_idle: state=4294967295 cpu_id=4
115017          <idle>-0     (-----) [004] d..2 82317.361438: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
115018  appEventThread-8881  ( 8858) [003] d..2 82317.361455: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115019          <idle>-0     (-----) [003] d..1 82317.361470: cpu_idle: state=0 cpu_id=3
115020 s.nexuslauncher-10023 (10023) [004] .... 82317.361621: binder_transaction: transaction=1572440 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
115021 s.nexuslauncher-10023 (10023) [004] .... 82317.361626: binder_transaction_alloc_buf: transaction=1572440 data_size=80 offsets_size=0
115022 s.nexuslauncher-10023 (10023) [004] d..4 82317.361631: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
115023<...>-9105 ( 9105) [002] d..2 82317.361631: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115024          <idle>-0     (-----) [002] d..1 82317.361645: cpu_idle: state=0 cpu_id=2
115025          <idle>-0     (-----) [001] dnh2 82317.361694: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
115026          <idle>-0     (-----) [001] .n.1 82317.361700: cpu_idle: state=4294967295 cpu_id=1
115027          <idle>-0     (-----) [001] d..2 82317.361711: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
115028 s.nexuslauncher-10023 (10023) [004] d..3 82317.361713: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
115029<...>-8951 ( 8858) [001] .... 82317.361719: binder_transaction_received: transaction=1572440
115030 s.nexuslauncher-10023 (10023) [004] d..4 82317.361729: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
115031          <idle>-0     (-----) [005] .n.1 82317.361736: cpu_idle: state=4294967295 cpu_id=5
115032          <idle>-0     (-----) [005] d..2 82317.361747: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115033<...>-8951 ( 8858) [001] d..1 82317.361753: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
115034<...>-8951 ( 8858) [001] d..2 82317.361770: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
115035    RenderThread-16607 (10023) [005] d..2 82317.361777: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
115036          <idle>-0     (-----) [003] .n.1 82317.361778: cpu_idle: state=4294967295 cpu_id=3
115037          <idle>-0     (-----) [003] d..2 82317.361791: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
115038 s.nexuslauncher-10023 (10023) [004] d.s2 82317.361806: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115039          <idle>-0     (-----) [002] d.s3 82317.361808: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
115040  surfaceflinger-8858  ( 8858) [000] d.s1 82317.361813: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115041          <idle>-0     (-----) [005] d..1 82317.361820: cpu_idle: state=0 cpu_id=5
115042<...>-8951 ( 8858) [001] d..1 82317.361820: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
115043  appEventThread-8881  ( 8858) [003] d..2 82317.361823: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115044          <idle>-0     (-----) [003] d..1 82317.361834: cpu_idle: state=0 cpu_id=3
115045          <idle>-0     (-----) [002] d.s4 82317.361848: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115046<...>-8951 ( 8858) [001] d..2 82317.361864: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
115047  surfaceflinger-8858  ( 8858) [000] d.s2 82317.361877: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115048          <idle>-0     (-----) [003] dnh2 82317.361886: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
115049          <idle>-0     (-----) [003] .n.1 82317.361896: cpu_idle: state=4294967295 cpu_id=3
115050          <idle>-0     (-----) [002] ...1 82317.361897: cpu_idle: state=4294967295 cpu_id=2
115051          <idle>-0     (-----) [002] d..1 82317.361904: cpu_idle: state=0 cpu_id=2
115052          <idle>-0     (-----) [003] d..2 82317.361905: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115053<...>-8951 ( 8858) [001] d..2 82317.361940: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
115054  crtc_event:111-322   (  322) [003] d..2 82317.361952: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
115055     rcu_preempt-7     (    7) [003] d..2 82317.361972: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115056  appEventThread-8881  ( 8858) [001] d..2 82317.362005: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115057          <idle>-0     (-----) [001] d..1 82317.362043: cpu_idle: state=0 cpu_id=1
115058          <idle>-0     (-----) [001] ...1 82317.362057: cpu_idle: state=4294967295 cpu_id=1
115059          <idle>-0     (-----) [001] d..1 82317.362061: cpu_idle: state=0 cpu_id=1
115060  kworker/u16:13-1147  ( 1147) [003] .... 82317.362070: clk_set_rate: l3_cluster0_vote_clk 300000000
115061 s.nexuslauncher-10023 (10023) [004] d..3 82317.362074: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
115062  kworker/u16:13-1147  ( 1147) [003] .... 82317.362074: clk_set_rate: l3_clk 300000000
115063 s.nexuslauncher-10023 (10023) [004] d..4 82317.362092: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
115064          <idle>-0     (-----) [005] .n.1 82317.362099: cpu_idle: state=4294967295 cpu_id=5
115065          <idle>-0     (-----) [005] d..2 82317.362108: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115066 s.nexuslauncher-10023 (10023) [004] d..2 82317.362123: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
115067          <idle>-0     (-----) [004] d..1 82317.362159: cpu_idle: state=0 cpu_id=4
115068          <idle>-0     (-----) [004] ...1 82317.362173: cpu_idle: state=4294967295 cpu_id=4
115069          <idle>-0     (-----) [004] d..1 82317.362177: cpu_idle: state=0 cpu_id=4
115070    RenderThread-16607 (10023) [005] d..1 82317.362250: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115071    RenderThread-16607 (10023) [005] d..2 82317.362268: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115072          <idle>-0     (-----) [004] .n.1 82317.362273: cpu_idle: state=4294967295 cpu_id=4
115073          <idle>-0     (-----) [004] d..2 82317.362282: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
115074  surfaceflinger-8858  ( 8858) [000] d..1 82317.362308: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115075    RenderThread-16607 (10023) [005] .... 82317.362317: binder_transaction: transaction=1572441 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
115076    RenderThread-16607 (10023) [005] .... 82317.362322: binder_transaction_alloc_buf: transaction=1572441 data_size=104 offsets_size=0
115077    RenderThread-16607 (10023) [005] ...2 82317.362326: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
115078  surfaceflinger-8858  ( 8858) [000] d..2 82317.362333: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115079    RenderThread-16607 (10023) [005] d..4 82317.362336: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=001
115080          <idle>-0     (-----) [001] .n.1 82317.362337: cpu_idle: state=4294967295 cpu_id=1
115081          <idle>-0     (-----) [001] d..2 82317.362348: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
115082 s.nexuslauncher-10023 (10023) [004] d..2 82317.362365: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
115083    RenderThread-16607 (10023) [005] dn.5 82317.362365: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
115084          <idle>-0     (-----) [004] d..1 82317.362376: cpu_idle: state=0 cpu_id=4
115085    RenderThread-16607 (10023) [005] d..2 82317.362409: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
115086   sfEventThread-8882  ( 8858) [001] d..2 82317.362420: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115087<...>-8951 ( 8858) [005] .... 82317.362421: binder_transaction_received: transaction=1572441
115088  kworker/u16:13-1147  ( 1147) [003] d..2 82317.362428: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
115089          <idle>-0     (-----) [003] d..1 82317.362448: cpu_idle: state=0 cpu_id=3
115090          <idle>-0     (-----) [001] d.s4 82317.362471: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
115091<...>-8951 ( 8858) [005] .... 82317.362480: binder_transaction: transaction=1572442 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
115092<...>-8951 ( 8858) [005] .... 82317.362483: binder_transaction_alloc_buf: transaction=1572442 data_size=52 offsets_size=8
115093          <idle>-0     (-----) [001] d.s5 82317.362486: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
115094<...>-8951 ( 8858) [005] .... 82317.362491: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
115095          <idle>-0     (-----) [001] d.s5 82317.362496: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
115096          <idle>-0     (-----) [003] .n.1 82317.362503: cpu_idle: state=4294967295 cpu_id=3
115097          <idle>-0     (-----) [001] d..1 82317.362513: cpu_idle: state=0 cpu_id=1
115098          <idle>-0     (-----) [003] d..2 82317.362517: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115099<...>-8951 ( 8858) [005] d..2 82317.362528: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
115100    RenderThread-16607 (10023) [005] .... 82317.362538: binder_transaction_received: transaction=1572442
115101  kworker/u16:13-1147  ( 1147) [003] d..2 82317.362600: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115102          <idle>-0     (-----) [003] d..1 82317.362612: cpu_idle: state=0 cpu_id=3
115103  surfaceflinger-8858  ( 8858) [000] ...1 82317.363419: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
115104  surfaceflinger-8858  ( 8858) [000] ...1 82317.363428: tracing_mark_write: E|8858
115105  surfaceflinger-8858  ( 8858) [000] .... 82317.363485: binder_transaction: transaction=1572443 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
115106  surfaceflinger-8858  ( 8858) [000] .... 82317.363490: binder_transaction_alloc_buf: transaction=1572443 data_size=540 offsets_size=96
115107  surfaceflinger-8858  ( 8858) [000] ...2 82317.363514: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
115108  surfaceflinger-8858  ( 8858) [000] d..4 82317.363520: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
115109  surfaceflinger-8858  ( 8858) [000] d..5 82317.363546: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
115110          <idle>-0     (-----) [001] .n.1 82317.363551: cpu_idle: state=4294967295 cpu_id=1
115111          <idle>-0     (-----) [001] d..2 82317.363562: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
115112 [email protected]   (  619) [001] .... 82317.363574: binder_transaction_received: transaction=1572443
115113  surfaceflinger-8858  ( 8858) [000] d..2 82317.363584: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115114          <idle>-0     (-----) [000] d..1 82317.363609: cpu_idle: state=0 cpu_id=0
115115 [email protected]   (  619) [001] ...1 82317.363623: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
115116 [email protected]   (  619) [001] ...1 82317.363757: tracing_mark_write: B|619|HWCSession::PresentDisplay::
115117    RenderThread-16607 (10023) [005] .... 82317.363900: binder_transaction: transaction=1572444 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
115118    RenderThread-16607 (10023) [005] .... 82317.363906: binder_transaction_alloc_buf: transaction=1572444 data_size=192 offsets_size=8
115119    RenderThread-16607 (10023) [005] ...2 82317.363915: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
115120          <idle>-0     (-----) [000] ...1 82317.363915: cpu_idle: state=4294967295 cpu_id=0
115121    RenderThread-16607 (10023) [005] d..4 82317.363918: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
115122          <idle>-0     (-----) [000] d..1 82317.363920: cpu_idle: state=0 cpu_id=0
115123 [email protected]   (  619) [001] ...1 82317.363921: tracing_mark_write: B|619|HWDeviceDRM::Commit::
115124    RenderThread-16607 (10023) [005] dn.5 82317.363932: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
115125 [email protected]   (  619) [001] ...1 82317.363934: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
115126    RenderThread-16607 (10023) [005] d..2 82317.363940: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
115127<...>-8951 ( 8858) [005] .... 82317.363952: binder_transaction_received: transaction=1572444
115128<...>-8951 ( 8858) [005] .... 82317.364062: binder_transaction: transaction=1572445 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
115129<...>-8951 ( 8858) [005] .... 82317.364066: binder_transaction_alloc_buf: transaction=1572445 data_size=68 offsets_size=0
115130<...>-8951 ( 8858) [005] .... 82317.364069: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
115131<...>-8951 ( 8858) [005] d..2 82317.364105: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
115132    RenderThread-16607 (10023) [005] .... 82317.364117: binder_transaction_received: transaction=1572445
115133    RenderThread-16607 (10023) [005] d..2 82317.364191: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
115134          <idle>-0     (-----) [005] d..1 82317.364209: cpu_idle: state=0 cpu_id=5
115135 [email protected]   (  619) [001] d.h1 82317.364242: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=001
115136 [email protected]   (  619) [001] d.h2 82317.364285: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=000
115137          <idle>-0     (-----) [000] .n.1 82317.364289: cpu_idle: state=4294967295 cpu_id=0
115138          <idle>-0     (-----) [000] d..2 82317.364305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
115139           <...>-27566 (-----) [000] d..2 82317.364565: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=001
115140 [email protected]   (  619) [001] d..2 82317.364576: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115141 [email protected]   (  619) [001] d..3 82317.364601: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115142           <...>-27566 (-----) [000] d..3 82317.364601: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
115143          <idle>-0     (-----) [002] .n.1 82317.364606: cpu_idle: state=4294967295 cpu_id=2
115144          <idle>-0     (-----) [002] d..2 82317.364619: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115145           <...>-27566 (-----) [000] d..2 82317.364715: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
115146 [email protected]   (  619) [001] ...1 82317.364715: tracing_mark_write: E|619
115147 [email protected]   (  619) [001] ...1 82317.364722: tracing_mark_write: E|619
115148 [email protected]   (  619) [001] ...1 82317.364783: tracing_mark_write: E|619
115149 [email protected]   (  619) [001] ...1 82317.364831: tracing_mark_write: E|619
115150<...>-581 ( 571) [000] d..2 82317.364839: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115151 [email protected]   (  619) [001] .... 82317.364849: binder_transaction: transaction=1572446 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
115152 [email protected]   (  619) [001] .... 82317.364855: binder_transaction_alloc_buf: transaction=1572446 data_size=576 offsets_size=112
115153          <idle>-0     (-----) [000] d..1 82317.364864: cpu_idle: state=0 cpu_id=0
115154 [email protected]   (  619) [001] d..2 82317.364878: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115155 [email protected]   (  619) [001] d..3 82317.364900: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115156 [email protected]   (  619) [001] .... 82317.364906: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
115157          <idle>-0     (-----) [000] .n.1 82317.364908: cpu_idle: state=4294967295 cpu_id=0
115158          <idle>-0     (-----) [000] d..2 82317.364921: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
115159  surfaceflinger-8858  ( 8858) [000] .... 82317.364934: binder_transaction_received: transaction=1572446
115160 [email protected]   (  619) [001] d..2 82317.365001: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115161  surfaceflinger-8858  ( 8858) [000] d.h2 82317.365023: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
115162          <idle>-0     (-----) [001] d..1 82317.365025: cpu_idle: state=0 cpu_id=1
115163  surfaceflinger-8858  ( 8858) [000] d.h3 82317.365049: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
115164          <idle>-0     (-----) [003] .n.1 82317.365055: cpu_idle: state=4294967295 cpu_id=3
115165          <idle>-0     (-----) [003] d..2 82317.365066: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
115166 kgsl_worker_thr-258   (  258) [003] d..2 82317.365172: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
115167 kgsl_worker_thr-258   (  258) [003] d..3 82317.365193: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
115168 kgsl_worker_thr-258   (  258) [003] d..2 82317.365216: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115169 crtc_commit:111-321   (  321) [002] d..2 82317.365410: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
115170  kworker/u16:13-1147  ( 1147) [003] d..2 82317.365417: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115171          <idle>-0     (-----) [002] d..1 82317.365429: cpu_idle: state=0 cpu_id=2
115172          <idle>-0     (-----) [003] d..1 82317.365431: cpu_idle: state=0 cpu_id=3
115173  surfaceflinger-8858  ( 8858) [000] d..1 82317.365553: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
115174  surfaceflinger-8858  ( 8858) [000] d..2 82317.365589: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
115175          <idle>-0     (-----) [003] .n.1 82317.365595: cpu_idle: state=4294967295 cpu_id=3
115176          <idle>-0     (-----) [003] d..2 82317.365604: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
115177  surfaceflinger-8858  ( 8858) [000] d..2 82317.365642: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115178        DispSync-8879  ( 8858) [003] d..2 82317.365651: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115179          <idle>-0     (-----) [003] d..1 82317.365660: cpu_idle: state=0 cpu_id=3
115180          <idle>-0     (-----) [000] d..1 82317.365666: cpu_idle: state=0 cpu_id=0
115181          <idle>-0     (-----) [001] ...1 82317.366374: cpu_idle: state=4294967295 cpu_id=1
115182          <idle>-0     (-----) [001] d..1 82317.366379: cpu_idle: state=0 cpu_id=1
115183          <idle>-0     (-----) [000] ...1 82317.366824: cpu_idle: state=4294967295 cpu_id=0
115184          <idle>-0     (-----) [000] d..1 82317.366829: cpu_idle: state=0 cpu_id=0
115185          <idle>-0     (-----) [003] d.s2 82317.368476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115186          <idle>-0     (-----) [003] dns3 82317.368497: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115187          <idle>-0     (-----) [003] .n.1 82317.368517: cpu_idle: state=4294967295 cpu_id=3
115188          <idle>-0     (-----) [003] d..2 82317.368528: 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
115189     rcu_preempt-7     (    7) [003] d..2 82317.368540: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115190     rcu_preempt-7     (    7) [003] d..3 82317.368562: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115191     rcu_preempt-7     (    7) [003] d..2 82317.368576: 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
115192         rcuop/0-10    (   10) [003] d..2 82317.368587: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115193         rcuop/0-10    (   10) [003] d..3 82317.368599: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115194         rcuop/0-10    (   10) [003] d..2 82317.368610: 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
115195     rcu_preempt-7     (    7) [003] d..2 82317.368640: 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
115196          <idle>-0     (-----) [003] d..1 82317.368656: cpu_idle: state=0 cpu_id=3
115197          <idle>-0     (-----) [000] d.h5 82317.374957: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115198          <idle>-0     (-----) [000] d.h6 82317.374985: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115199          <idle>-0     (-----) [000] d.h5 82317.374991: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115200          <idle>-0     (-----) [003] .n.1 82317.374991: cpu_idle: state=4294967295 cpu_id=3
115201          <idle>-0     (-----) [003] d..2 82317.375005: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115202          <idle>-0     (-----) [000] d.h6 82317.375006: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115203          <idle>-0     (-----) [002] .n.1 82317.375014: cpu_idle: state=4294967295 cpu_id=2
115204          <idle>-0     (-----) [000] d..2 82317.375023: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
115205          <idle>-0     (-----) [002] d..2 82317.375028: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115206          <idle>-0     (-----) [000] dn.3 82317.375038: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
115207  crtc_event:111-322   (  322) [003] d..2 82317.375045: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115208          <idle>-0     (-----) [003] d..1 82317.375053: cpu_idle: state=0 cpu_id=3
115209          <idle>-0     (-----) [000] .n.1 82317.375122: cpu_idle: state=4294967295 cpu_id=0
115210          <idle>-0     (-----) [003] d.s2 82317.375133: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115211          <idle>-0     (-----) [000] d..2 82317.375140: 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
115212 crtc_commit:111-321   (  321) [002] d.s3 82317.375141: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
115213          <idle>-0     (-----) [003] dns3 82317.375155: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115214          <idle>-0     (-----) [003] .n.1 82317.375165: cpu_idle: state=4294967295 cpu_id=3
115215     ksoftirqd/0-3     (    3) [000] d..2 82317.375172: 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
115216          <idle>-0     (-----) [003] d..2 82317.375175: 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
115217          <idle>-0     (-----) [000] d..1 82317.375188: cpu_idle: state=0 cpu_id=0
115218 crtc_commit:111-321   (  321) [002] d.s4 82317.375198: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115219          <idle>-0     (-----) [000] .n.1 82317.375205: cpu_idle: state=4294967295 cpu_id=0
115220     rcu_preempt-7     (    7) [003] d..2 82317.375206: 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
115221          <idle>-0     (-----) [000] d..2 82317.375216: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115222          <idle>-0     (-----) [003] d..1 82317.375217: cpu_idle: state=0 cpu_id=3
115223 crtc_commit:111-321   (  321) [002] d..2 82317.375284: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
115224          <idle>-0     (-----) [002] d..1 82317.375319: cpu_idle: state=0 cpu_id=2
115225          <idle>-0     (-----) [002] ...1 82317.375334: cpu_idle: state=4294967295 cpu_id=2
115226          <idle>-0     (-----) [002] d..1 82317.375338: cpu_idle: state=0 cpu_id=2
115227  kworker/u16:13-1147  ( 1147) [000] d..2 82317.375568: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
115228          <idle>-0     (-----) [000] d..1 82317.375588: cpu_idle: state=0 cpu_id=0
115229          <idle>-0     (-----) [001] d.s3 82317.375594: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115230          <idle>-0     (-----) [001] d.s4 82317.375610: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
115231          <idle>-0     (-----) [001] d.s4 82317.375621: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115232          <idle>-0     (-----) [000] .n.1 82317.375628: cpu_idle: state=4294967295 cpu_id=0
115233          <idle>-0     (-----) [001] ...1 82317.375632: cpu_idle: state=4294967295 cpu_id=1
115234          <idle>-0     (-----) [001] d..1 82317.375640: cpu_idle: state=0 cpu_id=1
115235          <idle>-0     (-----) [000] d..2 82317.375642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115236  kworker/u16:13-1147  ( 1147) [000] d..2 82317.375673: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115237          <idle>-0     (-----) [000] d..1 82317.375685: cpu_idle: state=0 cpu_id=0
115238          <idle>-0     (-----) [000] ...1 82317.376814: cpu_idle: state=4294967295 cpu_id=0
115239          <idle>-0     (-----) [000] d..1 82317.376818: cpu_idle: state=0 cpu_id=0
115240          <idle>-0     (-----) [001] ...1 82317.377046: cpu_idle: state=4294967295 cpu_id=1
115241          <idle>-0     (-----) [001] d..1 82317.377050: cpu_idle: state=0 cpu_id=1
115242          <idle>-0     (-----) [000] d.h5 82317.377280: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115243          <idle>-0     (-----) [000] d.h6 82317.377300: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115244          <idle>-0     (-----) [002] .n.1 82317.377305: cpu_idle: state=4294967295 cpu_id=2
115245          <idle>-0     (-----) [002] d..2 82317.377315: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115246          <idle>-0     (-----) [000] ...1 82317.377316: cpu_idle: state=4294967295 cpu_id=0
115247          <idle>-0     (-----) [000] d..1 82317.377322: cpu_idle: state=0 cpu_id=0
115248 crtc_commit:111-321   (  321) [002] d..2 82317.377387: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115249          <idle>-0     (-----) [002] d..1 82317.377397: cpu_idle: state=0 cpu_id=2
115250          <idle>-0     (-----) [000] d.h5 82317.377587: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115251          <idle>-0     (-----) [000] d.h6 82317.377603: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115252          <idle>-0     (-----) [003] .n.1 82317.377609: cpu_idle: state=4294967295 cpu_id=3
115253          <idle>-0     (-----) [000] ...1 82317.377620: cpu_idle: state=4294967295 cpu_id=0
115254          <idle>-0     (-----) [003] d..2 82317.377620: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115255          <idle>-0     (-----) [000] d..1 82317.377625: cpu_idle: state=0 cpu_id=0
115256  crtc_event:111-322   (  322) [003] d..2 82317.377647: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115257          <idle>-0     (-----) [003] d..1 82317.377657: cpu_idle: state=0 cpu_id=3
115258          <idle>-0     (-----) [002] d.s3 82317.378473: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115259          <idle>-0     (-----) [002] d.s4 82317.378495: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115260          <idle>-0     (-----) [003] .n.1 82317.378501: cpu_idle: state=4294967295 cpu_id=3
115261          <idle>-0     (-----) [003] d..2 82317.378511: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115262          <idle>-0     (-----) [002] ...1 82317.378521: cpu_idle: state=4294967295 cpu_id=2
115263          <idle>-0     (-----) [002] d..1 82317.378528: cpu_idle: state=0 cpu_id=2
115264  crtc_event:111-322   (  322) [003] d..2 82317.378542: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115265          <idle>-0     (-----) [003] d..1 82317.378550: cpu_idle: state=0 cpu_id=3
115266          <idle>-0     (-----) [003] d.h2 82317.379094: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
115267          <idle>-0     (-----) [003] dnh3 82317.379109: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
115268          <idle>-0     (-----) [003] .n.1 82317.379118: cpu_idle: state=4294967295 cpu_id=3
115269          <idle>-0     (-----) [003] d..2 82317.379124: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
115270        DispSync-8879  ( 8858) [003] d..1 82317.379142: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
115271        DispSync-8879  ( 8858) [003] d..2 82317.379158: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
115272          <idle>-0     (-----) [001] .n.1 82317.379163: cpu_idle: state=4294967295 cpu_id=1
115273          <idle>-0     (-----) [001] d..2 82317.379176: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
115274        DispSync-8879  ( 8858) [003] d..2 82317.379189: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115275          <idle>-0     (-----) [003] d..1 82317.379199: cpu_idle: state=0 cpu_id=3
115276  appEventThread-8881  ( 8858) [001] d..3 82317.379241: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115277          <idle>-0     (-----) [004] dnh2 82317.379274: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115278          <idle>-0     (-----) [004] .n.1 82317.379278: cpu_idle: state=4294967295 cpu_id=4
115279          <idle>-0     (-----) [004] d..2 82317.379286: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
115280  appEventThread-8881  ( 8858) [001] d..2 82317.379311: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115281          <idle>-0     (-----) [001] d..1 82317.379328: cpu_idle: state=0 cpu_id=1
115282 s.nexuslauncher-10023 (10023) [004] .... 82317.379488: binder_transaction: transaction=1572447 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
115283 s.nexuslauncher-10023 (10023) [004] .... 82317.379493: binder_transaction_alloc_buf: transaction=1572447 data_size=80 offsets_size=0
115284 s.nexuslauncher-10023 (10023) [004] d..4 82317.379498: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
115285          <idle>-0     (-----) [000] dnh2 82317.379564: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
115286          <idle>-0     (-----) [000] .n.1 82317.379570: cpu_idle: state=4294967295 cpu_id=0
115287          <idle>-0     (-----) [000] d..2 82317.379583: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
115288 s.nexuslauncher-10023 (10023) [004] d..3 82317.379586: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
115289<...>-8951 ( 8858) [000] .... 82317.379594: binder_transaction_received: transaction=1572447
115290 s.nexuslauncher-10023 (10023) [004] d..4 82317.379603: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
115291          <idle>-0     (-----) [005] .n.1 82317.379609: cpu_idle: state=4294967295 cpu_id=5
115292          <idle>-0     (-----) [005] d..2 82317.379621: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115293<...>-8951 ( 8858) [000] d..1 82317.379635: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
115294<...>-8951 ( 8858) [000] d..2 82317.379654: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
115295    RenderThread-16607 (10023) [005] d..2 82317.379656: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
115296          <idle>-0     (-----) [001] .n.1 82317.379660: cpu_idle: state=4294967295 cpu_id=1
115297          <idle>-0     (-----) [005] d..1 82317.379664: cpu_idle: state=0 cpu_id=5
115298          <idle>-0     (-----) [001] d..2 82317.379671: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
115299<...>-8951 ( 8858) [000] d..2 82317.379704: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115300  appEventThread-8881  ( 8858) [001] d..2 82317.379716: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115301          <idle>-0     (-----) [000] d..1 82317.379721: cpu_idle: state=0 cpu_id=0
115302          <idle>-0     (-----) [001] d..1 82317.379727: cpu_idle: state=0 cpu_id=1
115303 s.nexuslauncher-10023 (10023) [004] d..3 82317.379858: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
115304 s.nexuslauncher-10023 (10023) [004] d..4 82317.379876: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
115305          <idle>-0     (-----) [005] .n.1 82317.379881: cpu_idle: state=4294967295 cpu_id=5
115306          <idle>-0     (-----) [005] d..2 82317.379888: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115307 s.nexuslauncher-10023 (10023) [004] d..2 82317.379902: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
115308          <idle>-0     (-----) [004] d..1 82317.379919: cpu_idle: state=0 cpu_id=4
115309    RenderThread-16607 (10023) [005] d..1 82317.380008: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115310    RenderThread-16607 (10023) [005] d..2 82317.380026: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115311          <idle>-0     (-----) [004] .n.1 82317.380033: cpu_idle: state=4294967295 cpu_id=4
115312          <idle>-0     (-----) [004] d..2 82317.380042: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
115313    RenderThread-16607 (10023) [005] .... 82317.380075: binder_transaction: transaction=1572448 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
115314    RenderThread-16607 (10023) [005] .... 82317.380079: binder_transaction_alloc_buf: transaction=1572448 data_size=104 offsets_size=0
115315    RenderThread-16607 (10023) [005] ...2 82317.380083: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
115316    RenderThread-16607 (10023) [005] d..4 82317.380086: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
115317    RenderThread-16607 (10023) [005] dn.5 82317.380105: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
115318    RenderThread-16607 (10023) [005] d..2 82317.380148: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
115319<...>-8951 ( 8858) [005] .... 82317.380160: binder_transaction_received: transaction=1572448
115320 s.nexuslauncher-10023 (10023) [004] d..2 82317.380168: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
115321          <idle>-0     (-----) [004] d..1 82317.380178: cpu_idle: state=0 cpu_id=4
115322<...>-8951 ( 8858) [005] .... 82317.380219: binder_transaction: transaction=1572449 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
115323<...>-8951 ( 8858) [005] .... 82317.380224: binder_transaction_alloc_buf: transaction=1572449 data_size=52 offsets_size=8
115324<...>-8951 ( 8858) [005] .... 82317.380230: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
115325<...>-8951 ( 8858) [005] d..2 82317.380269: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
115326    RenderThread-16607 (10023) [005] .... 82317.380280: binder_transaction_received: transaction=1572449
115327    RenderThread-16607 (10023) [005] d..2 82317.381511: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
115328          <idle>-0     (-----) [005] d..1 82317.381527: cpu_idle: state=0 cpu_id=5
115329          <idle>-0     (-----) [005] d.h2 82317.381598: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
115330          <idle>-0     (-----) [005] d.h3 82317.381607: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
115331          <idle>-0     (-----) [005] dnh3 82317.381610: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
115332          <idle>-0     (-----) [005] .n.1 82317.381617: cpu_idle: state=4294967295 cpu_id=5
115333          <idle>-0     (-----) [005] d..2 82317.381626: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115334          <idle>-0     (-----) [003] d.s2 82317.381802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115335    RenderThread-16607 (10023) [005] .... 82317.381815: binder_transaction: transaction=1572450 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
115336    RenderThread-16607 (10023) [005] .... 82317.381820: binder_transaction_alloc_buf: transaction=1572450 data_size=192 offsets_size=8
115337          <idle>-0     (-----) [003] dns3 82317.381822: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115338    RenderThread-16607 (10023) [005] ...2 82317.381828: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
115339          <idle>-0     (-----) [003] .n.1 82317.381830: cpu_idle: state=4294967295 cpu_id=3
115340    RenderThread-16607 (10023) [005] d..4 82317.381830: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
115341          <idle>-0     (-----) [003] d..2 82317.381839: 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
115342    RenderThread-16607 (10023) [005] dn.5 82317.381840: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
115343    RenderThread-16607 (10023) [005] d..2 82317.381847: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
115344     rcu_preempt-7     (    7) [003] d..2 82317.381849: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115345<...>-8951 ( 8858) [005] .... 82317.381859: binder_transaction_received: transaction=1572450
115346     rcu_preempt-7     (    7) [003] d..3 82317.381866: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115347     rcu_preempt-7     (    7) [003] d..2 82317.381878: 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
115348         rcuop/0-10    (   10) [003] d..2 82317.381915: 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
115349          <idle>-0     (-----) [003] d..1 82317.381927: cpu_idle: state=0 cpu_id=3
115350<...>-8951 ( 8858) [005] .... 82317.381985: binder_transaction: transaction=1572451 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
115351<...>-8951 ( 8858) [005] .... 82317.381989: binder_transaction_alloc_buf: transaction=1572451 data_size=68 offsets_size=0
115352<...>-8951 ( 8858) [005] .... 82317.381992: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
115353<...>-8951 ( 8858) [005] d..2 82317.382031: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
115354    RenderThread-16607 (10023) [005] .... 82317.382042: binder_transaction_received: transaction=1572451
115355    RenderThread-16607 (10023) [005] d..2 82317.382112: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
115356          <idle>-0     (-----) [005] d..1 82317.382128: cpu_idle: state=0 cpu_id=5
115357          <idle>-0     (-----) [000] d.h3 82317.382658: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
115358          <idle>-0     (-----) [000] d.h4 82317.382680: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
115359          <idle>-0     (-----) [003] .n.1 82317.382687: cpu_idle: state=4294967295 cpu_id=3
115360          <idle>-0     (-----) [000] ...1 82317.382696: cpu_idle: state=4294967295 cpu_id=0
115361          <idle>-0     (-----) [003] d..2 82317.382697: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
115362          <idle>-0     (-----) [000] d..1 82317.382703: cpu_idle: state=0 cpu_id=0
115363 kgsl_worker_thr-258   (  258) [003] d..2 82317.382755: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115364 kgsl_worker_thr-258   (  258) [003] d..3 82317.382798: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
115365 kgsl_worker_thr-258   (  258) [003] d..2 82317.382821: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115366  kworker/u16:13-1147  ( 1147) [003] d..2 82317.383008: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115367          <idle>-0     (-----) [003] d..1 82317.383024: cpu_idle: state=0 cpu_id=3
115368          <idle>-0     (-----) [003] d.h2 82317.383128: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
115369          <idle>-0     (-----) [003] dnh3 82317.383143: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
115370          <idle>-0     (-----) [003] .n.1 82317.383152: cpu_idle: state=4294967295 cpu_id=3
115371          <idle>-0     (-----) [003] d..2 82317.383164: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
115372        DispSync-8879  ( 8858) [003] d..1 82317.383182: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115373        DispSync-8879  ( 8858) [003] d..2 82317.383199: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115374          <idle>-0     (-----) [001] .n.1 82317.383205: cpu_idle: state=4294967295 cpu_id=1
115375          <idle>-0     (-----) [001] d..2 82317.383217: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
115376        DispSync-8879  ( 8858) [003] d..2 82317.383231: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115377          <idle>-0     (-----) [003] d..1 82317.383246: cpu_idle: state=0 cpu_id=3
115378   sfEventThread-8882  ( 8858) [001] d..3 82317.383257: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115379   sfEventThread-8882  ( 8858) [001] d..4 82317.383279: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115380          <idle>-0     (-----) [000] .n.1 82317.383283: cpu_idle: state=4294967295 cpu_id=0
115381          <idle>-0     (-----) [000] d..2 82317.383296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
115382   sfEventThread-8882  ( 8858) [001] d..2 82317.383313: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115383          <idle>-0     (-----) [001] d..1 82317.383328: cpu_idle: state=0 cpu_id=1
115384  surfaceflinger-8858  ( 8858) [000] d..2 82317.383673: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115385  surfaceflinger-8858  ( 8858) [000] d..3 82317.383700: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115386          <idle>-0     (-----) [003] .n.1 82317.383706: cpu_idle: state=4294967295 cpu_id=3
115387          <idle>-0     (-----) [003] d..2 82317.383718: 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
115388         rcuop/0-10    (   10) [003] d..2 82317.383725: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115389  surfaceflinger-8858  ( 8858) [000] d..1 82317.383733: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115390         rcuop/0-10    (   10) [003] d..3 82317.383745: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115391  surfaceflinger-8858  ( 8858) [000] d..2 82317.383752: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115392         rcuop/0-10    (   10) [003] d..2 82317.383757: 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
115393          <idle>-0     (-----) [001] .n.1 82317.383758: cpu_idle: state=4294967295 cpu_id=1
115394          <idle>-0     (-----) [001] d..2 82317.383769: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
115395     rcu_preempt-7     (    7) [003] d..2 82317.383780: 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
115396          <idle>-0     (-----) [003] d..1 82317.383791: cpu_idle: state=0 cpu_id=3
115397   sfEventThread-8882  ( 8858) [001] d..2 82317.383803: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115398          <idle>-0     (-----) [001] d..1 82317.383814: cpu_idle: state=0 cpu_id=1
115399  surfaceflinger-8858  ( 8858) [000] ...1 82317.383967: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
115400  surfaceflinger-8858  ( 8858) [000] ...1 82317.383976: tracing_mark_write: E|8858
115401  surfaceflinger-8858  ( 8858) [000] .... 82317.384041: binder_transaction: transaction=1572452 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
115402  surfaceflinger-8858  ( 8858) [000] .... 82317.384048: binder_transaction_alloc_buf: transaction=1572452 data_size=540 offsets_size=96
115403  surfaceflinger-8858  ( 8858) [000] ...2 82317.384073: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
115404  surfaceflinger-8858  ( 8858) [000] d..4 82317.384080: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
115405  surfaceflinger-8858  ( 8858) [000] d..5 82317.384103: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
115406          <idle>-0     (-----) [001] .n.1 82317.384108: cpu_idle: state=4294967295 cpu_id=1
115407          <idle>-0     (-----) [001] d..2 82317.384118: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
115408 [email protected]   (  619) [001] .... 82317.384131: binder_transaction_received: transaction=1572452
115409  surfaceflinger-8858  ( 8858) [000] d..2 82317.384140: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115410          <idle>-0     (-----) [000] d..1 82317.384162: cpu_idle: state=0 cpu_id=0
115411 [email protected]   (  619) [001] ...1 82317.384184: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
115412 [email protected]   (  619) [001] ...1 82317.384303: tracing_mark_write: B|619|HWCSession::PresentDisplay::
115413 [email protected]   (  619) [001] ...1 82317.385013: tracing_mark_write: B|619|HWDeviceDRM::Validate::
115414 [email protected]   (  619) [001] d.s2 82317.385157: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
115415 [email protected]   (  619) [001] d.s3 82317.385206: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
115416 [email protected]   (  619) [001] ...1 82317.385742: tracing_mark_write: E|619
115417 [email protected]   (  619) [001] ...1 82317.385917: tracing_mark_write: B|619|HWDeviceDRM::Commit::
115418 [email protected]   (  619) [001] ...1 82317.385930: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
115419 [email protected]   (  619) [001] d..2 82317.386424: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115420 [email protected]   (  619) [001] d..3 82317.386450: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115421          <idle>-0     (-----) [002] .n.1 82317.386456: cpu_idle: state=4294967295 cpu_id=2
115422          <idle>-0     (-----) [002] d..2 82317.386470: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115423 [email protected]   (  619) [001] ...1 82317.386566: tracing_mark_write: E|619
115424 [email protected]   (  619) [001] ...1 82317.386574: tracing_mark_write: E|619
115425 [email protected]   (  619) [001] ...1 82317.386630: tracing_mark_write: E|619
115426 [email protected]   (  619) [001] ...1 82317.386679: tracing_mark_write: E|619
115427 [email protected]   (  619) [001] .... 82317.386698: binder_transaction: transaction=1572453 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
115428 [email protected]   (  619) [001] .... 82317.386703: binder_transaction_alloc_buf: transaction=1572453 data_size=576 offsets_size=112
115429 [email protected]   (  619) [001] d..2 82317.386726: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115430 [email protected]   (  619) [001] d..3 82317.386748: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115431 [email protected]   (  619) [001] .... 82317.386754: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
115432          <idle>-0     (-----) [000] .n.1 82317.386755: cpu_idle: state=4294967295 cpu_id=0
115433          <idle>-0     (-----) [000] d..2 82317.386769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
115434  surfaceflinger-8858  ( 8858) [000] .... 82317.386779: binder_transaction_received: transaction=1572453
115435 [email protected]   (  619) [001] d..2 82317.386838: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115436  kworker/u16:13-1147  ( 1147) [001] d..2 82317.387074: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115437          <idle>-0     (-----) [001] d..1 82317.387095: cpu_idle: state=0 cpu_id=1
115438 crtc_commit:111-321   (  321) [002] d..2 82317.387251: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
115439          <idle>-0     (-----) [002] d..1 82317.387269: cpu_idle: state=0 cpu_id=2
115440  surfaceflinger-8858  ( 8858) [000] d..2 82317.387269: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115441          <idle>-0     (-----) [000] d..1 82317.387292: cpu_idle: state=0 cpu_id=0
115442          <idle>-0     (-----) [003] d.s2 82317.388471: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115443          <idle>-0     (-----) [003] dns3 82317.388488: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115444          <idle>-0     (-----) [003] .n.1 82317.388507: cpu_idle: state=4294967295 cpu_id=3
115445          <idle>-0     (-----) [003] d..2 82317.388520: 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
115446     rcu_preempt-7     (    7) [003] d..2 82317.388532: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115447     rcu_preempt-7     (    7) [003] d..3 82317.388547: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115448     rcu_preempt-7     (    7) [003] d..2 82317.388558: 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
115449         rcuop/0-10    (   10) [003] d..2 82317.388566: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115450         rcuop/0-10    (   10) [003] d..3 82317.388579: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115451         rcuop/0-10    (   10) [003] d..2 82317.388588: 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
115452     rcu_preempt-7     (    7) [003] d..2 82317.388617: 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
115453          <idle>-0     (-----) [003] d..1 82317.388631: cpu_idle: state=0 cpu_id=3
115454          <idle>-0     (-----) [000] d.h5 82317.391427: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115455          <idle>-0     (-----) [000] d.h6 82317.391449: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115456          <idle>-0     (-----) [000] d.h5 82317.391455: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115457          <idle>-0     (-----) [003] .n.1 82317.391456: cpu_idle: state=4294967295 cpu_id=3
115458          <idle>-0     (-----) [003] d..2 82317.391467: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115459          <idle>-0     (-----) [000] d.h6 82317.391468: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115460          <idle>-0     (-----) [002] .n.1 82317.391475: cpu_idle: state=4294967295 cpu_id=2
115461          <idle>-0     (-----) [002] d..2 82317.391488: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115462          <idle>-0     (-----) [000] ...1 82317.391488: cpu_idle: state=4294967295 cpu_id=0
115463          <idle>-0     (-----) [000] d..1 82317.391495: cpu_idle: state=0 cpu_id=0
115464  crtc_event:111-322   (  322) [003] d..2 82317.391501: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115465          <idle>-0     (-----) [003] d..1 82317.391511: cpu_idle: state=0 cpu_id=3
115466 crtc_commit:111-321   (  321) [002] d..2 82317.391639: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
115467          <idle>-0     (-----) [002] d..1 82317.391648: cpu_idle: state=0 cpu_id=2
115468          <idle>-0     (-----) [002] d.H3 82317.391891: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
115469          <idle>-0     (-----) [002] d.H4 82317.391915: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
115470          <idle>-0     (-----) [000] .n.1 82317.391920: cpu_idle: state=4294967295 cpu_id=0
115471          <idle>-0     (-----) [002] d.s3 82317.391925: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115472          <idle>-0     (-----) [000] d..2 82317.391936: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
115473          <idle>-0     (-----) [002] d.s4 82317.391940: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115474          <idle>-0     (-----) [003] .n.1 82317.391946: cpu_idle: state=4294967295 cpu_id=3
115475          <idle>-0     (-----) [002] d.s3 82317.391949: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
115476          <idle>-0     (-----) [003] d..2 82317.391958: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115477          <idle>-0     (-----) [002] dns4 82317.391964: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
115478         sugov:0-576   (  576) [000] .... 82317.391981: clk_set_rate: pwrcl_clk 748800000
115479          <idle>-0     (-----) [002] .n.1 82317.391984: cpu_idle: state=4294967295 cpu_id=2
115480  crtc_event:111-322   (  322) [003] d..2 82317.391990: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115481          <idle>-0     (-----) [002] d..2 82317.391996: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
115482          <idle>-0     (-----) [003] d..1 82317.391997: cpu_idle: state=0 cpu_id=3
115483         sugov:0-576   (  576) [000] .... 82317.392003: clk_set_rate: cpu3_pwrcl_clk 902400000
115484         sugov:0-576   (  576) [000] .... 82317.392014: clk_set_rate: cpu2_pwrcl_clk 902400000
115485         sugov:0-576   (  576) [000] .... 82317.392021: clk_set_rate: cpu1_pwrcl_clk 902400000
115486         sugov:0-576   (  576) [000] .... 82317.392029: clk_set_rate: cpu0_pwrcl_clk 748800000
115487     kworker/2:1-25259 (25259) [002] d..2 82317.392048: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115488          <idle>-0     (-----) [002] d..1 82317.392069: cpu_idle: state=0 cpu_id=2
115489         sugov:0-576   (  576) [000] .... 82317.392144: cpu_frequency: state=748800 cpu_id=0
115490         sugov:0-576   (  576) [000] .... 82317.392172: cpu_frequency: state=748800 cpu_id=1
115491         sugov:0-576   (  576) [000] .... 82317.392177: cpu_frequency: state=748800 cpu_id=2
115492         sugov:0-576   (  576) [000] .... 82317.392182: cpu_frequency: state=748800 cpu_id=3
115493         sugov:0-576   (  576) [000] d..2 82317.392221: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115494          <idle>-0     (-----) [000] d..1 82317.392238: cpu_idle: state=0 cpu_id=0
115495          <idle>-0     (-----) [000] d.h5 82317.393763: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115496          <idle>-0     (-----) [000] d.h6 82317.393784: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115497          <idle>-0     (-----) [002] .n.1 82317.393791: cpu_idle: state=4294967295 cpu_id=2
115498          <idle>-0     (-----) [000] ...1 82317.393803: cpu_idle: state=4294967295 cpu_id=0
115499          <idle>-0     (-----) [002] d..2 82317.393804: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115500          <idle>-0     (-----) [000] d..1 82317.393810: cpu_idle: state=0 cpu_id=0
115501 crtc_commit:111-321   (  321) [002] d..2 82317.393881: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115502          <idle>-0     (-----) [002] d..1 82317.393897: cpu_idle: state=0 cpu_id=2
115503          <idle>-0     (-----) [000] d.h5 82317.394062: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115504          <idle>-0     (-----) [000] d.h6 82317.394080: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115505          <idle>-0     (-----) [003] .n.1 82317.394086: cpu_idle: state=4294967295 cpu_id=3
115506          <idle>-0     (-----) [003] d..2 82317.394095: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115507          <idle>-0     (-----) [000] ...1 82317.394100: cpu_idle: state=4294967295 cpu_id=0
115508          <idle>-0     (-----) [000] d..1 82317.394107: cpu_idle: state=0 cpu_id=0
115509  crtc_event:111-322   (  322) [003] d..2 82317.394123: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115510          <idle>-0     (-----) [003] d..1 82317.394131: cpu_idle: state=0 cpu_id=3
115511          <idle>-0     (-----) [003] d.s2 82317.395140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115512          <idle>-0     (-----) [003] dns3 82317.395162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115513          <idle>-0     (-----) [003] dns3 82317.395169: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
115514          <idle>-0     (-----) [003] dns4 82317.395209: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
115515          <idle>-0     (-----) [003] .n.1 82317.395225: cpu_idle: state=4294967295 cpu_id=3
115516          <idle>-0     (-----) [003] d..2 82317.395237: 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
115517     rcu_preempt-7     (    7) [003] d..2 82317.395248: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115518     rcu_preempt-7     (    7) [003] d..3 82317.395265: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115519     rcu_preempt-7     (    7) [003] d..2 82317.395277: 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
115520         rcuop/0-10    (   10) [003] d..2 82317.395291: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115521  kworker/u16:13-1147  ( 1147) [003] d..2 82317.395416: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115522          <idle>-0     (-----) [003] d..1 82317.395432: cpu_idle: state=0 cpu_id=3
115523          <idle>-0     (-----) [003] d.h2 82317.395590: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
115524          <idle>-0     (-----) [003] dnh3 82317.395609: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
115525          <idle>-0     (-----) [003] .n.1 82317.395619: cpu_idle: state=4294967295 cpu_id=3
115526          <idle>-0     (-----) [003] d..2 82317.395631: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
115527        DispSync-8879  ( 8858) [003] d..1 82317.395649: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
115528        DispSync-8879  ( 8858) [003] d..2 82317.395666: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
115529          <idle>-0     (-----) [001] .n.1 82317.395674: cpu_idle: state=4294967295 cpu_id=1
115530          <idle>-0     (-----) [001] d..2 82317.395690: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
115531        DispSync-8879  ( 8858) [003] d..2 82317.395703: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115532          <idle>-0     (-----) [003] d..1 82317.395717: cpu_idle: state=0 cpu_id=3
115533  appEventThread-8881  ( 8858) [001] d..3 82317.395757: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115534          <idle>-0     (-----) [004] dnh2 82317.395792: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115535          <idle>-0     (-----) [004] .n.1 82317.395796: cpu_idle: state=4294967295 cpu_id=4
115536          <idle>-0     (-----) [004] d..2 82317.395804: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
115537  appEventThread-8881  ( 8858) [001] d..2 82317.395835: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115538          <idle>-0     (-----) [001] d..1 82317.395855: cpu_idle: state=0 cpu_id=1
115539 s.nexuslauncher-10023 (10023) [004] .... 82317.396008: binder_transaction: transaction=1572454 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
115540 s.nexuslauncher-10023 (10023) [004] .... 82317.396014: binder_transaction_alloc_buf: transaction=1572454 data_size=80 offsets_size=0
115541 s.nexuslauncher-10023 (10023) [004] d..4 82317.396019: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
115542          <idle>-0     (-----) [000] dnh2 82317.396088: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
115543          <idle>-0     (-----) [000] .n.1 82317.396094: cpu_idle: state=4294967295 cpu_id=0
115544 s.nexuslauncher-10023 (10023) [004] d..3 82317.396107: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
115545          <idle>-0     (-----) [000] d..2 82317.396109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
115546<...>-8951 ( 8858) [000] .... 82317.396121: binder_transaction_received: transaction=1572454
115547 s.nexuslauncher-10023 (10023) [004] d..4 82317.396124: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
115548          <idle>-0     (-----) [005] .n.1 82317.396130: cpu_idle: state=4294967295 cpu_id=5
115549          <idle>-0     (-----) [005] d..2 82317.396144: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115550<...>-8951 ( 8858) [000] d..1 82317.396164: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
115551    RenderThread-16607 (10023) [005] d..2 82317.396178: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
115552<...>-8951 ( 8858) [000] d..2 82317.396184: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
115553          <idle>-0     (-----) [005] d..1 82317.396187: cpu_idle: state=0 cpu_id=5
115554          <idle>-0     (-----) [001] .n.1 82317.396191: cpu_idle: state=4294967295 cpu_id=1
115555          <idle>-0     (-----) [001] d..2 82317.396204: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
115556<...>-8951 ( 8858) [000] d..2 82317.396241: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115557  appEventThread-8881  ( 8858) [001] d..2 82317.396255: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115558          <idle>-0     (-----) [000] d..1 82317.396260: cpu_idle: state=0 cpu_id=0
115559          <idle>-0     (-----) [001] d..1 82317.396267: cpu_idle: state=0 cpu_id=1
115560 s.nexuslauncher-10023 (10023) [004] d..3 82317.396378: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
115561 s.nexuslauncher-10023 (10023) [004] d..4 82317.396396: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
115562          <idle>-0     (-----) [005] .n.1 82317.396401: cpu_idle: state=4294967295 cpu_id=5
115563          <idle>-0     (-----) [005] d..2 82317.396408: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115564 s.nexuslauncher-10023 (10023) [004] d..2 82317.396422: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
115565          <idle>-0     (-----) [004] d..1 82317.396439: cpu_idle: state=0 cpu_id=4
115566    RenderThread-16607 (10023) [005] d..1 82317.396526: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115567    RenderThread-16607 (10023) [005] d..2 82317.396542: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115568          <idle>-0     (-----) [004] .n.1 82317.396549: cpu_idle: state=4294967295 cpu_id=4
115569          <idle>-0     (-----) [004] d..2 82317.396559: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
115570    RenderThread-16607 (10023) [005] .... 82317.396591: binder_transaction: transaction=1572455 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
115571    RenderThread-16607 (10023) [005] .... 82317.396595: binder_transaction_alloc_buf: transaction=1572455 data_size=104 offsets_size=0
115572    RenderThread-16607 (10023) [005] ...2 82317.396599: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
115573    RenderThread-16607 (10023) [005] d..4 82317.396602: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
115574    RenderThread-16607 (10023) [005] dn.5 82317.396623: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
115575 s.nexuslauncher-10023 (10023) [004] d..2 82317.396679: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
115576    RenderThread-16607 (10023) [005] d..2 82317.396691: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
115577<...>-8951 ( 8858) [004] .... 82317.396695: binder_transaction_received: transaction=1572455
115578          <idle>-0     (-----) [005] d..1 82317.396706: cpu_idle: state=0 cpu_id=5
115579<...>-8951 ( 8858) [004] .... 82317.396762: binder_transaction: transaction=1572456 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
115580<...>-8951 ( 8858) [004] .... 82317.396767: binder_transaction_alloc_buf: transaction=1572456 data_size=52 offsets_size=8
115581<...>-8951 ( 8858) [004] d..2 82317.396776: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
115582<...>-8951 ( 8858) [004] d..3 82317.396794: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
115583<...>-8951 ( 8858) [004] .... 82317.396798: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
115584<...>-8951 ( 8858) [004] d..2 82317.396834: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
115585    RenderThread-16607 (10023) [004] .... 82317.396844: binder_transaction_received: transaction=1572456
115586    RenderThread-16607 (10023) [004] d..2 82317.398136: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
115587          <idle>-0     (-----) [004] d..1 82317.398152: cpu_idle: state=0 cpu_id=4
115588          <idle>-0     (-----) [004] d.h2 82317.398222: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
115589          <idle>-0     (-----) [004] d.h3 82317.398230: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
115590          <idle>-0     (-----) [004] dnh3 82317.398233: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
115591          <idle>-0     (-----) [004] .n.1 82317.398240: cpu_idle: state=4294967295 cpu_id=4
115592          <idle>-0     (-----) [004] d..2 82317.398248: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115593    RenderThread-16607 (10023) [004] .... 82317.398404: binder_transaction: transaction=1572457 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
115594    RenderThread-16607 (10023) [004] .... 82317.398408: binder_transaction_alloc_buf: transaction=1572457 data_size=192 offsets_size=8
115595    RenderThread-16607 (10023) [004] ...2 82317.398417: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
115596    RenderThread-16607 (10023) [004] d..4 82317.398420: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
115597    RenderThread-16607 (10023) [004] dn.5 82317.398432: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
115598    RenderThread-16607 (10023) [004] d..2 82317.398440: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
115599<...>-8951 ( 8858) [004] d.s4 82317.398487: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
115600<...>-8951 ( 8858) [004] .... 82317.398525: binder_transaction_received: transaction=1572457
115601          <idle>-0     (-----) [000] dnh2 82317.398534: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115602          <idle>-0     (-----) [000] .n.1 82317.398541: cpu_idle: state=4294967295 cpu_id=0
115603          <idle>-0     (-----) [000] d..2 82317.398557: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115604<...>-8951 ( 8858) [004] .... 82317.398655: binder_transaction: transaction=1572458 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
115605<...>-8951 ( 8858) [004] .... 82317.398659: binder_transaction_alloc_buf: transaction=1572458 data_size=68 offsets_size=0
115606<...>-8951 ( 8858) [004] .... 82317.398663: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
115607<...>-8951 ( 8858) [004] d..2 82317.398701: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
115608    RenderThread-16607 (10023) [004] .... 82317.398714: binder_transaction_received: transaction=1572458
115609    RenderThread-16607 (10023) [004] d..2 82317.398793: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
115610  kworker/u16:13-1147  ( 1147) [000] d..2 82317.398805: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
115611          <idle>-0     (-----) [004] d..1 82317.398810: cpu_idle: state=0 cpu_id=4
115612          <idle>-0     (-----) [000] d..1 82317.398822: cpu_idle: state=0 cpu_id=0
115613          <idle>-0     (-----) [001] d.s3 82317.398832: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115614          <idle>-0     (-----) [001] d.s4 82317.398847: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
115615          <idle>-0     (-----) [001] d.s4 82317.398859: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115616          <idle>-0     (-----) [000] .n.1 82317.398865: cpu_idle: state=4294967295 cpu_id=0
115617          <idle>-0     (-----) [001] ...1 82317.398873: cpu_idle: state=4294967295 cpu_id=1
115618          <idle>-0     (-----) [000] d..2 82317.398880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115619          <idle>-0     (-----) [001] d..1 82317.398881: cpu_idle: state=0 cpu_id=1
115620  kworker/u16:13-1147  ( 1147) [000] d..2 82317.398917: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115621          <idle>-0     (-----) [000] d..1 82317.398929: cpu_idle: state=0 cpu_id=0
115622          <idle>-0     (-----) [000] d.h3 82317.399276: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
115623          <idle>-0     (-----) [000] d.h4 82317.399299: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
115624          <idle>-0     (-----) [003] .n.1 82317.399306: cpu_idle: state=4294967295 cpu_id=3
115625          <idle>-0     (-----) [003] d..2 82317.399318: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
115626          <idle>-0     (-----) [000] ...1 82317.399319: cpu_idle: state=4294967295 cpu_id=0
115627          <idle>-0     (-----) [000] d..1 82317.399326: cpu_idle: state=0 cpu_id=0
115628 kgsl_worker_thr-258   (  258) [003] d..2 82317.399383: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115629 kgsl_worker_thr-258   (  258) [003] d..3 82317.399405: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115630          <idle>-0     (-----) [000] .n.1 82317.399410: cpu_idle: state=4294967295 cpu_id=0
115631          <idle>-0     (-----) [000] d..2 82317.399426: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115632 kgsl_worker_thr-258   (  258) [003] d..2 82317.399443: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115633          <idle>-0     (-----) [003] d..1 82317.399457: cpu_idle: state=0 cpu_id=3
115634          <idle>-0     (-----) [003] d.h2 82317.399589: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
115635          <idle>-0     (-----) [003] dnh3 82317.399602: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
115636          <idle>-0     (-----) [003] .n.1 82317.399612: cpu_idle: state=4294967295 cpu_id=3
115637          <idle>-0     (-----) [003] d..2 82317.399623: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
115638  kworker/u16:13-1147  ( 1147) [000] d..2 82317.399639: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115639        DispSync-8879  ( 8858) [003] d..1 82317.399639: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115640          <idle>-0     (-----) [000] d..1 82317.399655: cpu_idle: state=0 cpu_id=0
115641        DispSync-8879  ( 8858) [003] d..2 82317.399658: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115642          <idle>-0     (-----) [001] .n.1 82317.399664: cpu_idle: state=4294967295 cpu_id=1
115643          <idle>-0     (-----) [001] d..2 82317.399678: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
115644        DispSync-8879  ( 8858) [003] d..2 82317.399694: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115645          <idle>-0     (-----) [003] d..1 82317.399709: cpu_idle: state=0 cpu_id=3
115646   sfEventThread-8882  ( 8858) [001] d..3 82317.399728: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115647   sfEventThread-8882  ( 8858) [001] d..4 82317.399753: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115648          <idle>-0     (-----) [000] .n.1 82317.399759: cpu_idle: state=4294967295 cpu_id=0
115649          <idle>-0     (-----) [000] d..2 82317.399773: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
115650   sfEventThread-8882  ( 8858) [001] d..2 82317.399798: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115651          <idle>-0     (-----) [001] d..1 82317.399815: cpu_idle: state=0 cpu_id=1
115652  surfaceflinger-8858  ( 8858) [000] d..2 82317.400171: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
115653  surfaceflinger-8858  ( 8858) [000] d..3 82317.400229: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
115654  surfaceflinger-8858  ( 8858) [000] d..1 82317.400267: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115655  surfaceflinger-8858  ( 8858) [000] d..2 82317.400288: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115656          <idle>-0     (-----) [001] .n.1 82317.400294: cpu_idle: state=4294967295 cpu_id=1
115657          <idle>-0     (-----) [001] d..2 82317.400307: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
115658   sfEventThread-8882  ( 8858) [001] d..2 82317.400348: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115659          <idle>-0     (-----) [001] d..1 82317.400360: cpu_idle: state=0 cpu_id=1
115660  surfaceflinger-8858  ( 8858) [000] ...1 82317.400536: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
115661  surfaceflinger-8858  ( 8858) [000] ...1 82317.400545: tracing_mark_write: E|8858
115662  surfaceflinger-8858  ( 8858) [000] .... 82317.400613: binder_transaction: transaction=1572459 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
115663  surfaceflinger-8858  ( 8858) [000] .... 82317.400619: binder_transaction_alloc_buf: transaction=1572459 data_size=540 offsets_size=96
115664  surfaceflinger-8858  ( 8858) [000] ...2 82317.400646: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
115665  surfaceflinger-8858  ( 8858) [000] d..4 82317.400655: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
115666  surfaceflinger-8858  ( 8858) [000] d..5 82317.400680: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
115667          <idle>-0     (-----) [001] .n.1 82317.400685: cpu_idle: state=4294967295 cpu_id=1
115668          <idle>-0     (-----) [001] d..2 82317.400697: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
115669  surfaceflinger-8858  ( 8858) [000] d..2 82317.400707: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
115670 [email protected]   (  619) [001] .... 82317.400710: binder_transaction_received: transaction=1572459
115671         rcuop/0-10    (   10) [000] d..2 82317.400715: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
115672         rcuop/0-10    (   10) [000] d..3 82317.400762: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115673 [email protected]   (  619) [001] ...1 82317.400765: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
115674         rcuop/0-10    (   10) [000] d..2 82317.400775: 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
115675     rcu_preempt-7     (    7) [000] d..2 82317.400808: 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
115676          <idle>-0     (-----) [000] d..1 82317.400829: cpu_idle: state=0 cpu_id=0
115677 [email protected]   (  619) [001] ...1 82317.400890: tracing_mark_write: B|619|HWCSession::PresentDisplay::
115678 [email protected]   (  619) [001] ...1 82317.401080: tracing_mark_write: B|619|HWDeviceDRM::Commit::
115679 [email protected]   (  619) [001] ...1 82317.401095: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
115680 [email protected]   (  619) [001] d..2 82317.401772: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115681 [email protected]   (  619) [001] d..3 82317.401801: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115682          <idle>-0     (-----) [002] .n.1 82317.401807: cpu_idle: state=4294967295 cpu_id=2
115683          <idle>-0     (-----) [002] d..2 82317.401828: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115684 [email protected]   (  619) [001] ...1 82317.401997: tracing_mark_write: E|619
115685 [email protected]   (  619) [001] ...1 82317.402006: tracing_mark_write: E|619
115686 [email protected]   (  619) [001] ...1 82317.402076: tracing_mark_write: E|619
115687 [email protected]   (  619) [001] ...1 82317.402132: tracing_mark_write: E|619
115688 [email protected]   (  619) [001] .... 82317.402151: binder_transaction: transaction=1572460 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
115689 [email protected]   (  619) [001] .... 82317.402157: binder_transaction_alloc_buf: transaction=1572460 data_size=576 offsets_size=112
115690 [email protected]   (  619) [001] d..2 82317.402183: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115691 [email protected]   (  619) [001] d..3 82317.402207: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115692          <idle>-0     (-----) [000] .n.1 82317.402213: cpu_idle: state=4294967295 cpu_id=0
115693 [email protected]   (  619) [001] .... 82317.402214: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
115694          <idle>-0     (-----) [000] d..2 82317.402229: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
115695  surfaceflinger-8858  ( 8858) [000] .... 82317.402240: binder_transaction_received: transaction=1572460
115696 [email protected]   (  619) [001] d..2 82317.402326: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115697          <idle>-0     (-----) [001] d..1 82317.402352: cpu_idle: state=0 cpu_id=1
115698 crtc_commit:111-321   (  321) [002] d..2 82317.402609: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
115699          <idle>-0     (-----) [002] d..1 82317.402629: cpu_idle: state=0 cpu_id=2
115700  surfaceflinger-8858  ( 8858) [000] d..2 82317.402773: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115701          <idle>-0     (-----) [000] d..1 82317.402792: cpu_idle: state=0 cpu_id=0
115702          <idle>-0     (-----) [001] ...1 82317.403847: cpu_idle: state=4294967295 cpu_id=1
115703          <idle>-0     (-----) [001] d..1 82317.403853: cpu_idle: state=0 cpu_id=1
115704          <idle>-0     (-----) [000] d.s2 82317.405150: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115705          <idle>-0     (-----) [000] dns3 82317.405173: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115706          <idle>-0     (-----) [000] dns3 82317.405182: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115707          <idle>-0     (-----) [000] dns4 82317.405196: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115708          <idle>-0     (-----) [000] .n.1 82317.405222: cpu_idle: state=4294967295 cpu_id=0
115709          <idle>-0     (-----) [000] d..2 82317.405234: 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
115710     rcu_preempt-7     (    7) [000] d..2 82317.405249: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
115711     rcu_preempt-7     (    7) [000] d..3 82317.405266: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
115712     rcu_preempt-7     (    7) [000] d..2 82317.405279: 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
115713         rcuop/0-10    (   10) [000] d..2 82317.405287: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115714         rcuop/0-10    (   10) [000] d..3 82317.405301: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115715         rcuop/0-10    (   10) [000] d..2 82317.405311: 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
115716     rcu_preempt-7     (    7) [000] d..2 82317.405326: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115717  kworker/u16:13-1147  ( 1147) [000] d..2 82317.405463: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115718          <idle>-0     (-----) [000] d..1 82317.405483: cpu_idle: state=0 cpu_id=0
115719          <idle>-0     (-----) [000] d.h5 82317.407902: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115720          <idle>-0     (-----) [000] d.h6 82317.407924: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115721          <idle>-0     (-----) [003] .n.1 82317.407930: cpu_idle: state=4294967295 cpu_id=3
115722          <idle>-0     (-----) [000] d.h5 82317.407930: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115723          <idle>-0     (-----) [003] d..2 82317.407944: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115724          <idle>-0     (-----) [000] d.h6 82317.407945: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115725          <idle>-0     (-----) [002] .n.1 82317.407952: cpu_idle: state=4294967295 cpu_id=2
115726          <idle>-0     (-----) [000] ...1 82317.407964: cpu_idle: state=4294967295 cpu_id=0
115727          <idle>-0     (-----) [002] d..2 82317.407966: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115728          <idle>-0     (-----) [000] d..1 82317.407970: cpu_idle: state=0 cpu_id=0
115729  crtc_event:111-322   (  322) [003] d..2 82317.407989: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115730          <idle>-0     (-----) [003] d..1 82317.408000: cpu_idle: state=0 cpu_id=3
115731 crtc_commit:111-321   (  321) [002] d..2 82317.408131: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
115732          <idle>-0     (-----) [002] d..1 82317.408143: cpu_idle: state=0 cpu_id=2
115733          <idle>-0     (-----) [002] d.s3 82317.408477: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115734          <idle>-0     (-----) [002] d.s4 82317.408498: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115735          <idle>-0     (-----) [003] .n.1 82317.408504: cpu_idle: state=4294967295 cpu_id=3
115736          <idle>-0     (-----) [003] d..2 82317.408518: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115737          <idle>-0     (-----) [002] ...1 82317.408526: cpu_idle: state=4294967295 cpu_id=2
115738          <idle>-0     (-----) [002] d..1 82317.408534: cpu_idle: state=0 cpu_id=2
115739  crtc_event:111-322   (  322) [003] d..2 82317.408554: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115740          <idle>-0     (-----) [003] d..1 82317.408565: cpu_idle: state=0 cpu_id=3
115741          <idle>-0     (-----) [000] d.h5 82317.410227: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115742          <idle>-0     (-----) [000] d.h6 82317.410245: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115743          <idle>-0     (-----) [002] .n.1 82317.410252: cpu_idle: state=4294967295 cpu_id=2
115744          <idle>-0     (-----) [000] ...1 82317.410260: cpu_idle: state=4294967295 cpu_id=0
115745          <idle>-0     (-----) [000] d..1 82317.410265: cpu_idle: state=0 cpu_id=0
115746          <idle>-0     (-----) [002] d..2 82317.410265: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115747 crtc_commit:111-321   (  321) [002] d..2 82317.410349: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115748          <idle>-0     (-----) [002] d..1 82317.410365: cpu_idle: state=0 cpu_id=2
115749          <idle>-0     (-----) [000] d.h5 82317.410533: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115750          <idle>-0     (-----) [000] d.h6 82317.410550: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115751          <idle>-0     (-----) [003] .n.1 82317.410555: cpu_idle: state=4294967295 cpu_id=3
115752          <idle>-0     (-----) [003] d..2 82317.410567: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115753          <idle>-0     (-----) [000] ...1 82317.410570: cpu_idle: state=4294967295 cpu_id=0
115754          <idle>-0     (-----) [000] d..1 82317.410575: cpu_idle: state=0 cpu_id=0
115755  crtc_event:111-322   (  322) [003] d..2 82317.410596: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115756          <idle>-0     (-----) [003] d..1 82317.410607: cpu_idle: state=0 cpu_id=3
115757          <idle>-0     (-----) [000] d.s2 82317.411889: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115758          <idle>-0     (-----) [000] dns3 82317.411912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115759          <idle>-0     (-----) [000] .n.1 82317.411925: cpu_idle: state=4294967295 cpu_id=0
115760          <idle>-0     (-----) [000] d..2 82317.411942: 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
115761     rcu_preempt-7     (    7) [000] d..2 82317.411956: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
115762     rcu_preempt-7     (    7) [000] d..3 82317.411974: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
115763     rcu_preempt-7     (    7) [000] d..2 82317.411987: 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
115764         rcuop/0-10    (   10) [000] d..2 82317.412023: 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
115765          <idle>-0     (-----) [000] d..1 82317.412037: cpu_idle: state=0 cpu_id=0
115766          <idle>-0     (-----) [003] d.h2 82317.412053: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
115767          <idle>-0     (-----) [003] dnh3 82317.412071: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
115768          <idle>-0     (-----) [003] .n.1 82317.412081: cpu_idle: state=4294967295 cpu_id=3
115769          <idle>-0     (-----) [003] d..2 82317.412092: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
115770        DispSync-8879  ( 8858) [003] d..1 82317.412106: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
115771        DispSync-8879  ( 8858) [003] d..2 82317.412124: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
115772          <idle>-0     (-----) [001] .n.1 82317.412129: cpu_idle: state=4294967295 cpu_id=1
115773          <idle>-0     (-----) [001] d..2 82317.412144: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
115774        DispSync-8879  ( 8858) [003] d..2 82317.412161: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115775          <idle>-0     (-----) [003] d..1 82317.412175: cpu_idle: state=0 cpu_id=3
115776  appEventThread-8881  ( 8858) [001] d..3 82317.412208: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115777          <idle>-0     (-----) [004] dnh2 82317.412243: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115778          <idle>-0     (-----) [004] .n.1 82317.412248: cpu_idle: state=4294967295 cpu_id=4
115779          <idle>-0     (-----) [004] d..2 82317.412258: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
115780  appEventThread-8881  ( 8858) [001] d..2 82317.412284: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115781          <idle>-0     (-----) [001] d..1 82317.412304: cpu_idle: state=0 cpu_id=1
115782 s.nexuslauncher-10023 (10023) [004] .... 82317.412544: binder_transaction: transaction=1572461 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
115783 s.nexuslauncher-10023 (10023) [004] .... 82317.412549: binder_transaction_alloc_buf: transaction=1572461 data_size=80 offsets_size=0
115784 s.nexuslauncher-10023 (10023) [004] d..4 82317.412554: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
115785 s.nexuslauncher-10023 (10023) [004] d.h5 82317.412617: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
115786          <idle>-0     (-----) [000] dnh2 82317.412622: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
115787          <idle>-0     (-----) [000] .n.1 82317.412632: cpu_idle: state=4294967295 cpu_id=0
115788          <idle>-0     (-----) [000] d..2 82317.412645: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
115789<...>-8951 ( 8858) [000] .... 82317.412655: binder_transaction_received: transaction=1572461
115790          <idle>-0     (-----) [002] dnh2 82317.412656: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
115791          <idle>-0     (-----) [002] .n.1 82317.412663: cpu_idle: state=4294967295 cpu_id=2
115792 s.nexuslauncher-10023 (10023) [004] d..3 82317.412670: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
115793          <idle>-0     (-----) [002] d..2 82317.412675: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
115794 s.nexuslauncher-10023 (10023) [004] d..4 82317.412691: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
115795<...>-8951 ( 8858) [000] d..1 82317.412696: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
115796          <idle>-0     (-----) [005] .n.1 82317.412698: cpu_idle: state=4294967295 cpu_id=5
115797          <idle>-0     (-----) [005] d..2 82317.412709: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115798         sugov:0-576   (  576) [002] .... 82317.412716: clk_set_rate: pwrcl_clk 825600000
115799<...>-8951 ( 8858) [000] d..2 82317.412717: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
115800          <idle>-0     (-----) [001] .n.1 82317.412724: cpu_idle: state=4294967295 cpu_id=1
115801         sugov:0-576   (  576) [002] .... 82317.412737: clk_set_rate: cpu3_pwrcl_clk 748800000
115802          <idle>-0     (-----) [001] d..2 82317.412738: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
115803         sugov:0-576   (  576) [002] .... 82317.412747: clk_set_rate: cpu2_pwrcl_clk 748800000
115804    RenderThread-16607 (10023) [005] d..2 82317.412749: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
115805         sugov:0-576   (  576) [002] .... 82317.412756: clk_set_rate: cpu1_pwrcl_clk 748800000
115806          <idle>-0     (-----) [005] d..1 82317.412758: cpu_idle: state=0 cpu_id=5
115807         sugov:0-576   (  576) [002] .... 82317.412764: clk_set_rate: cpu0_pwrcl_clk 825600000
115808<...>-8951 ( 8858) [000] d..2 82317.412772: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115809         sugov:0-576   (  576) [002] .... 82317.412773: cpu_frequency: state=825600 cpu_id=0
115810  appEventThread-8881  ( 8858) [001] d..2 82317.412792: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115811          <idle>-0     (-----) [000] d..1 82317.412793: cpu_idle: state=0 cpu_id=0
115812         sugov:0-576   (  576) [002] .... 82317.412801: cpu_frequency: state=825600 cpu_id=1
115813          <idle>-0     (-----) [001] d..1 82317.412806: cpu_idle: state=0 cpu_id=1
115814         sugov:0-576   (  576) [002] .... 82317.412807: cpu_frequency: state=825600 cpu_id=2
115815         sugov:0-576   (  576) [002] .... 82317.412811: cpu_frequency: state=825600 cpu_id=3
115816         sugov:0-576   (  576) [002] d..2 82317.412842: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115817          <idle>-0     (-----) [002] d..1 82317.412858: cpu_idle: state=0 cpu_id=2
115818 s.nexuslauncher-10023 (10023) [004] d..3 82317.413007: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
115819 s.nexuslauncher-10023 (10023) [004] d..4 82317.413025: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
115820          <idle>-0     (-----) [005] .n.1 82317.413030: cpu_idle: state=4294967295 cpu_id=5
115821          <idle>-0     (-----) [005] d..2 82317.413037: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115822 s.nexuslauncher-10023 (10023) [004] d..2 82317.413052: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
115823          <idle>-0     (-----) [004] d..1 82317.413070: cpu_idle: state=0 cpu_id=4
115824    RenderThread-16607 (10023) [005] d..1 82317.413137: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115825    RenderThread-16607 (10023) [005] d..2 82317.413154: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
115826          <idle>-0     (-----) [004] .n.1 82317.413161: cpu_idle: state=4294967295 cpu_id=4
115827          <idle>-0     (-----) [004] d..2 82317.413171: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
115828    RenderThread-16607 (10023) [005] .... 82317.413197: binder_transaction: transaction=1572462 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
115829    RenderThread-16607 (10023) [005] .... 82317.413201: binder_transaction_alloc_buf: transaction=1572462 data_size=104 offsets_size=0
115830    RenderThread-16607 (10023) [005] ...2 82317.413204: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
115831    RenderThread-16607 (10023) [005] d..4 82317.413207: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
115832    RenderThread-16607 (10023) [005] dn.5 82317.413225: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
115833    RenderThread-16607 (10023) [005] d..2 82317.413265: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
115834<...>-8951 ( 8858) [005] .... 82317.413278: binder_transaction_received: transaction=1572462
115835 s.nexuslauncher-10023 (10023) [004] d..2 82317.413285: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
115836          <idle>-0     (-----) [004] d..1 82317.413296: cpu_idle: state=0 cpu_id=4
115837<...>-8951 ( 8858) [005] .... 82317.413338: binder_transaction: transaction=1572463 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
115838<...>-8951 ( 8858) [005] .... 82317.413343: binder_transaction_alloc_buf: transaction=1572463 data_size=52 offsets_size=8
115839<...>-8951 ( 8858) [005] .... 82317.413350: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
115840<...>-8951 ( 8858) [005] d..2 82317.413388: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
115841    RenderThread-16607 (10023) [005] .... 82317.413399: binder_transaction_received: transaction=1572463
115842          <idle>-0     (-----) [001] ...1 82317.414320: cpu_idle: state=4294967295 cpu_id=1
115843          <idle>-0     (-----) [001] d..1 82317.414325: cpu_idle: state=0 cpu_id=1
115844    RenderThread-16607 (10023) [005] d..2 82317.414742: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
115845          <idle>-0     (-----) [005] d..1 82317.414758: cpu_idle: state=0 cpu_id=5
115846          <idle>-0     (-----) [000] d.h2 82317.414760: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=000
115847          <idle>-0     (-----) [000] dnh3 82317.414780: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=000
115848          <idle>-0     (-----) [000] .n.1 82317.414791: cpu_idle: state=4294967295 cpu_id=0
115849          <idle>-0     (-----) [000] d..2 82317.414804: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
115850          <idle>-0     (-----) [005] d.h2 82317.414828: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
115851          <idle>-0     (-----) [005] d.h3 82317.414836: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
115852          <idle>-0     (-----) [005] dnh3 82317.414839: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
115853          <idle>-0     (-----) [005] .n.1 82317.414846: cpu_idle: state=4294967295 cpu_id=5
115854          <idle>-0     (-----) [005] d..2 82317.414855: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
115855    RenderThread-16607 (10023) [005] .... 82317.415008: binder_transaction: transaction=1572464 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
115856    RenderThread-16607 (10023) [005] .... 82317.415013: binder_transaction_alloc_buf: transaction=1572464 data_size=192 offsets_size=8
115857    RenderThread-16607 (10023) [005] ...2 82317.415020: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
115858    RenderThread-16607 (10023) [005] d..4 82317.415023: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
115859    RenderThread-16607 (10023) [005] dn.5 82317.415033: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
115860    RenderThread-16607 (10023) [005] d..2 82317.415040: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
115861<...>-8951 ( 8858) [005] .... 82317.415052: binder_transaction_received: transaction=1572464
115862           <...>-27566 (-----) [000] d..2 82317.415055: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
115863           <...>-27566 (-----) [000] d..3 82317.415083: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
115864<...>-8951 ( 8858) [005] d.s2 82317.415145: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115865           <...>-27566 (-----) [000] d.h1 82317.415173: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115866<...>-8951 ( 8858) [005] .... 82317.415244: binder_transaction: transaction=1572465 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
115867<...>-8951 ( 8858) [005] .... 82317.415249: binder_transaction_alloc_buf: transaction=1572465 data_size=68 offsets_size=0
115868<...>-8951 ( 8858) [005] .... 82317.415252: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
115869           <...>-27566 (-----) [000] d..2 82317.415280: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115870<...>-8951 ( 8858) [005] d..2 82317.415290: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
115871    RenderThread-16607 (10023) [005] .... 82317.415310: binder_transaction_received: transaction=1572465
115872    RenderThread-16607 (10023) [005] d..2 82317.415401: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
115873          <idle>-0     (-----) [005] d..1 82317.415434: cpu_idle: state=0 cpu_id=5
115874          <idle>-0     (-----) [005] ...1 82317.415447: cpu_idle: state=4294967295 cpu_id=5
115875          <idle>-0     (-----) [005] d..1 82317.415451: cpu_idle: state=0 cpu_id=5
115876  kworker/u16:13-1147  ( 1147) [000] d..2 82317.415481: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
115877<...>-581 ( 571) [000] d..2 82317.415618: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115878          <idle>-0     (-----) [000] d..1 82317.415641: cpu_idle: state=0 cpu_id=0
115879          <idle>-0     (-----) [000] d.h3 82317.415885: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
115880          <idle>-0     (-----) [000] d.h4 82317.415911: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
115881          <idle>-0     (-----) [003] .n.1 82317.415917: cpu_idle: state=4294967295 cpu_id=3
115882          <idle>-0     (-----) [003] d..2 82317.415929: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
115883          <idle>-0     (-----) [000] ...1 82317.415930: cpu_idle: state=4294967295 cpu_id=0
115884          <idle>-0     (-----) [000] d..1 82317.415940: cpu_idle: state=0 cpu_id=0
115885 kgsl_worker_thr-258   (  258) [003] d..2 82317.415989: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115886 kgsl_worker_thr-258   (  258) [003] d..3 82317.416010: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115887          <idle>-0     (-----) [000] .n.1 82317.416016: cpu_idle: state=4294967295 cpu_id=0
115888          <idle>-0     (-----) [000] d..2 82317.416032: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115889 kgsl_worker_thr-258   (  258) [003] d..2 82317.416046: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115890          <idle>-0     (-----) [003] d.h3 82317.416058: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
115891          <idle>-0     (-----) [003] dnh4 82317.416069: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
115892          <idle>-0     (-----) [003] d..2 82317.416081: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
115893        DispSync-8879  ( 8858) [003] d..1 82317.416095: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115894        DispSync-8879  ( 8858) [003] d..2 82317.416112: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115895          <idle>-0     (-----) [001] .n.1 82317.416117: cpu_idle: state=4294967295 cpu_id=1
115896          <idle>-0     (-----) [001] d..2 82317.416129: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
115897        DispSync-8879  ( 8858) [003] d..2 82317.416143: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115898          <idle>-0     (-----) [003] d..1 82317.416159: cpu_idle: state=0 cpu_id=3
115899   sfEventThread-8882  ( 8858) [001] d..3 82317.416166: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
115900   sfEventThread-8882  ( 8858) [001] d..4 82317.416199: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
115901          <idle>-0     (-----) [002] .n.1 82317.416206: cpu_idle: state=4294967295 cpu_id=2
115902          <idle>-0     (-----) [002] d..2 82317.416218: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
115903   sfEventThread-8882  ( 8858) [001] d..2 82317.416239: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115904  kworker/u16:13-1147  ( 1147) [000] d..2 82317.416246: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
115905          <idle>-0     (-----) [001] d..1 82317.416256: cpu_idle: state=0 cpu_id=1
115906          <idle>-0     (-----) [000] d..1 82317.416264: cpu_idle: state=0 cpu_id=0
115907  surfaceflinger-8858  ( 8858) [002] d..2 82317.416621: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
115908  surfaceflinger-8858  ( 8858) [002] d..3 82317.416687: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
115909  surfaceflinger-8858  ( 8858) [002] d..1 82317.416724: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115910  surfaceflinger-8858  ( 8858) [002] d..2 82317.416744: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
115911          <idle>-0     (-----) [001] .n.1 82317.416750: cpu_idle: state=4294967295 cpu_id=1
115912          <idle>-0     (-----) [001] d..2 82317.416762: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
115913   sfEventThread-8882  ( 8858) [001] d..2 82317.416801: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115914          <idle>-0     (-----) [001] d..1 82317.416812: cpu_idle: state=0 cpu_id=1
115915  surfaceflinger-8858  ( 8858) [002] ...1 82317.416987: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
115916  surfaceflinger-8858  ( 8858) [002] ...1 82317.416996: tracing_mark_write: E|8858
115917  surfaceflinger-8858  ( 8858) [002] .... 82317.417064: binder_transaction: transaction=1572466 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
115918  surfaceflinger-8858  ( 8858) [002] .... 82317.417070: binder_transaction_alloc_buf: transaction=1572466 data_size=540 offsets_size=96
115919  surfaceflinger-8858  ( 8858) [002] ...2 82317.417096: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
115920  surfaceflinger-8858  ( 8858) [002] d..4 82317.417104: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
115921  surfaceflinger-8858  ( 8858) [002] d..5 82317.417130: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
115922          <idle>-0     (-----) [001] .n.1 82317.417134: cpu_idle: state=4294967295 cpu_id=1
115923          <idle>-0     (-----) [001] d..2 82317.417145: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
115924 [email protected]   (  619) [001] .... 82317.417156: binder_transaction_received: transaction=1572466
115925  surfaceflinger-8858  ( 8858) [002] d..2 82317.417158: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
115926         rcuop/2-29    (   29) [002] d..2 82317.417166: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
115927 [email protected]   (  619) [001] ...1 82317.417207: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
115928         rcuop/2-29    (   29) [002] d..3 82317.417210: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
115929         rcuop/2-29    (   29) [002] d..2 82317.417224: 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
115930     rcu_preempt-7     (    7) [002] d..2 82317.417254: 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
115931          <idle>-0     (-----) [002] d..1 82317.417275: cpu_idle: state=0 cpu_id=2
115932 [email protected]   (  619) [001] ...1 82317.417321: tracing_mark_write: B|619|HWCSession::PresentDisplay::
115933 [email protected]   (  619) [001] ...1 82317.417504: tracing_mark_write: B|619|HWDeviceDRM::Commit::
115934 [email protected]   (  619) [001] ...1 82317.417518: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
115935          <idle>-0     (-----) [000] ...1 82317.417787: cpu_idle: state=4294967295 cpu_id=0
115936          <idle>-0     (-----) [000] d..1 82317.417792: cpu_idle: state=0 cpu_id=0
115937 [email protected]   (  619) [001] d..2 82317.418151: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115938 [email protected]   (  619) [001] d..3 82317.418181: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115939          <idle>-0     (-----) [002] .n.1 82317.418189: cpu_idle: state=4294967295 cpu_id=2
115940          <idle>-0     (-----) [002] d..2 82317.418202: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115941 [email protected]   (  619) [001] ...1 82317.418303: tracing_mark_write: E|619
115942 [email protected]   (  619) [001] ...1 82317.418310: tracing_mark_write: E|619
115943 [email protected]   (  619) [001] ...1 82317.418379: tracing_mark_write: E|619
115944 [email protected]   (  619) [001] ...1 82317.418429: tracing_mark_write: E|619
115945 [email protected]   (  619) [001] .... 82317.418504: binder_transaction: transaction=1572467 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
115946 [email protected]   (  619) [001] .... 82317.418509: binder_transaction_alloc_buf: transaction=1572467 data_size=576 offsets_size=112
115947 [email protected]   (  619) [001] d..2 82317.418531: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
115948 [email protected]   (  619) [001] d..3 82317.418561: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
115949 [email protected]   (  619) [001] .... 82317.418567: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
115950          <idle>-0     (-----) [003] .n.1 82317.418568: cpu_idle: state=4294967295 cpu_id=3
115951          <idle>-0     (-----) [003] d..2 82317.418582: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
115952  surfaceflinger-8858  ( 8858) [003] .... 82317.418594: binder_transaction_received: transaction=1572467
115953 [email protected]   (  619) [001] d..2 82317.418672: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
115954          <idle>-0     (-----) [001] d..1 82317.418695: cpu_idle: state=0 cpu_id=1
115955 crtc_commit:111-321   (  321) [002] d..2 82317.419030: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
115956          <idle>-0     (-----) [002] d..1 82317.419046: cpu_idle: state=0 cpu_id=2
115957  surfaceflinger-8858  ( 8858) [003] d..2 82317.419092: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115958          <idle>-0     (-----) [003] d..1 82317.419116: cpu_idle: state=0 cpu_id=3
115959          <idle>-0     (-----) [002] d.s2 82317.421808: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
115960          <idle>-0     (-----) [002] dns3 82317.421829: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
115961          <idle>-0     (-----) [002] .n.1 82317.421847: cpu_idle: state=4294967295 cpu_id=2
115962          <idle>-0     (-----) [002] d..2 82317.421858: 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
115963     rcu_preempt-7     (    7) [002] d..2 82317.421872: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
115964     rcu_preempt-7     (    7) [002] d..3 82317.421888: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
115965     rcu_preempt-7     (    7) [002] d..2 82317.421900: 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
115966         rcuop/2-29    (   29) [002] d..2 82317.421909: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
115967         rcuop/2-29    (   29) [002] d..3 82317.421924: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
115968         rcuop/2-29    (   29) [002] d..2 82317.421934: 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
115969     rcu_preempt-7     (    7) [002] d..2 82317.421963: 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
115970          <idle>-0     (-----) [002] d..1 82317.421980: cpu_idle: state=0 cpu_id=2
115971          <idle>-0     (-----) [000] d.h5 82317.424370: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115972          <idle>-0     (-----) [000] d.h6 82317.424394: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115973          <idle>-0     (-----) [000] d.h5 82317.424400: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115974          <idle>-0     (-----) [003] .n.1 82317.424402: cpu_idle: state=4294967295 cpu_id=3
115975          <idle>-0     (-----) [000] d.h6 82317.424413: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115976          <idle>-0     (-----) [003] d..2 82317.424416: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115977          <idle>-0     (-----) [002] .n.1 82317.424420: cpu_idle: state=4294967295 cpu_id=2
115978          <idle>-0     (-----) [000] ...1 82317.424432: cpu_idle: state=4294967295 cpu_id=0
115979          <idle>-0     (-----) [002] d..2 82317.424432: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
115980          <idle>-0     (-----) [000] d..1 82317.424439: cpu_idle: state=0 cpu_id=0
115981  crtc_event:111-322   (  322) [003] d..2 82317.424456: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115982          <idle>-0     (-----) [003] d..1 82317.424467: cpu_idle: state=0 cpu_id=3
115983 crtc_commit:111-321   (  321) [002] d..2 82317.424592: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
115984          <idle>-0     (-----) [002] d..1 82317.424603: cpu_idle: state=0 cpu_id=2
115985          <idle>-0     (-----) [002] d.s3 82317.425141: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115986          <idle>-0     (-----) [002] d.s4 82317.425162: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
115987          <idle>-0     (-----) [003] .n.1 82317.425168: cpu_idle: state=4294967295 cpu_id=3
115988          <idle>-0     (-----) [002] d.s3 82317.425169: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
115989          <idle>-0     (-----) [003] d..2 82317.425180: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
115990          <idle>-0     (-----) [002] dns4 82317.425208: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
115991  crtc_event:111-322   (  322) [003] d..2 82317.425221: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
115992          <idle>-0     (-----) [002] .n.1 82317.425228: cpu_idle: state=4294967295 cpu_id=2
115993          <idle>-0     (-----) [003] d..1 82317.425231: cpu_idle: state=0 cpu_id=3
115994          <idle>-0     (-----) [002] d..2 82317.425240: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
115995  kworker/u16:13-1147  ( 1147) [002] d..2 82317.425405: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
115996          <idle>-0     (-----) [002] d..1 82317.425418: cpu_idle: state=0 cpu_id=2
115997          <idle>-0     (-----) [000] d.h5 82317.426694: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115998          <idle>-0     (-----) [000] d.h6 82317.426711: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
115999          <idle>-0     (-----) [002] .n.1 82317.426718: cpu_idle: state=4294967295 cpu_id=2
116000          <idle>-0     (-----) [000] ...1 82317.426726: cpu_idle: state=4294967295 cpu_id=0
116001          <idle>-0     (-----) [002] d..2 82317.426729: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116002          <idle>-0     (-----) [000] d..1 82317.426732: cpu_idle: state=0 cpu_id=0
116003 crtc_commit:111-321   (  321) [002] d..2 82317.426806: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116004          <idle>-0     (-----) [002] d..1 82317.426816: cpu_idle: state=0 cpu_id=2
116005          <idle>-0     (-----) [000] d.h5 82317.427006: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116006          <idle>-0     (-----) [000] d.h6 82317.427023: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116007          <idle>-0     (-----) [003] .n.1 82317.427029: cpu_idle: state=4294967295 cpu_id=3
116008          <idle>-0     (-----) [003] d..2 82317.427040: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
116009          <idle>-0     (-----) [000] ...1 82317.427041: cpu_idle: state=4294967295 cpu_id=0
116010          <idle>-0     (-----) [000] d..1 82317.427046: cpu_idle: state=0 cpu_id=0
116011  crtc_event:111-322   (  322) [003] d..2 82317.427067: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116012          <idle>-0     (-----) [003] d..1 82317.427077: cpu_idle: state=0 cpu_id=3
116013          <idle>-0     (-----) [002] d.s2 82317.428476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
116014          <idle>-0     (-----) [002] dns3 82317.428496: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
116015          <idle>-0     (-----) [002] .n.1 82317.428505: cpu_idle: state=4294967295 cpu_id=2
116016          <idle>-0     (-----) [003] d.h2 82317.428511: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
116017          <idle>-0     (-----) [002] d..2 82317.428516: 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
116018          <idle>-0     (-----) [003] dnh3 82317.428527: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
116019          <idle>-0     (-----) [003] .n.1 82317.428537: cpu_idle: state=4294967295 cpu_id=3
116020          <idle>-0     (-----) [003] d..2 82317.428548: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
116021     rcu_preempt-7     (    7) [002] d..2 82317.428554: 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
116022        DispSync-8879  ( 8858) [003] d..1 82317.428566: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
116023          <idle>-0     (-----) [002] d..1 82317.428569: cpu_idle: state=0 cpu_id=2
116024        DispSync-8879  ( 8858) [003] d..2 82317.428583: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
116025          <idle>-0     (-----) [001] .n.1 82317.428591: cpu_idle: state=4294967295 cpu_id=1
116026          <idle>-0     (-----) [001] d..2 82317.428605: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
116027        DispSync-8879  ( 8858) [003] d..2 82317.428620: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116028          <idle>-0     (-----) [003] d..1 82317.428633: cpu_idle: state=0 cpu_id=3
116029  appEventThread-8881  ( 8858) [001] d..3 82317.428661: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116030          <idle>-0     (-----) [004] dnh2 82317.428691: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116031          <idle>-0     (-----) [004] .n.1 82317.428696: cpu_idle: state=4294967295 cpu_id=4
116032          <idle>-0     (-----) [004] d..2 82317.428706: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
116033  appEventThread-8881  ( 8858) [001] d..2 82317.428729: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116034          <idle>-0     (-----) [001] d..1 82317.428748: cpu_idle: state=0 cpu_id=1
116035 s.nexuslauncher-10023 (10023) [004] .... 82317.428912: binder_transaction: transaction=1572468 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
116036 s.nexuslauncher-10023 (10023) [004] .... 82317.428918: binder_transaction_alloc_buf: transaction=1572468 data_size=80 offsets_size=0
116037 s.nexuslauncher-10023 (10023) [004] d..4 82317.428923: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
116038          <idle>-0     (-----) [000] dnh2 82317.428991: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
116039          <idle>-0     (-----) [000] .n.1 82317.428997: cpu_idle: state=4294967295 cpu_id=0
116040 s.nexuslauncher-10023 (10023) [004] d..3 82317.429010: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116041          <idle>-0     (-----) [000] d..2 82317.429013: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
116042<...>-8951 ( 8858) [000] .... 82317.429025: binder_transaction_received: transaction=1572468
116043 s.nexuslauncher-10023 (10023) [004] d..4 82317.429026: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116044          <idle>-0     (-----) [005] .n.1 82317.429031: cpu_idle: state=4294967295 cpu_id=5
116045          <idle>-0     (-----) [005] d..2 82317.429042: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116046<...>-8951 ( 8858) [000] d..1 82317.429069: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
116047    RenderThread-16607 (10023) [005] d..2 82317.429077: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
116048          <idle>-0     (-----) [005] d..1 82317.429087: cpu_idle: state=0 cpu_id=5
116049<...>-8951 ( 8858) [000] d..2 82317.429090: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
116050          <idle>-0     (-----) [001] .n.1 82317.429097: cpu_idle: state=4294967295 cpu_id=1
116051          <idle>-0     (-----) [001] d..2 82317.429109: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
116052<...>-8951 ( 8858) [000] d..2 82317.429146: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116053  appEventThread-8881  ( 8858) [001] d..2 82317.429156: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116054          <idle>-0     (-----) [000] d..1 82317.429165: cpu_idle: state=0 cpu_id=0
116055          <idle>-0     (-----) [001] d..1 82317.429169: cpu_idle: state=0 cpu_id=1
116056 s.nexuslauncher-10023 (10023) [004] d..3 82317.429422: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116057 s.nexuslauncher-10023 (10023) [004] d..4 82317.429442: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116058          <idle>-0     (-----) [005] .n.1 82317.429447: cpu_idle: state=4294967295 cpu_id=5
116059          <idle>-0     (-----) [005] d..2 82317.429456: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116060 s.nexuslauncher-10023 (10023) [004] d..2 82317.429470: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
116061          <idle>-0     (-----) [004] d..1 82317.429487: cpu_idle: state=0 cpu_id=4
116062    RenderThread-16607 (10023) [005] d..1 82317.429574: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116063    RenderThread-16607 (10023) [005] d..2 82317.429591: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116064          <idle>-0     (-----) [004] .n.1 82317.429597: cpu_idle: state=4294967295 cpu_id=4
116065          <idle>-0     (-----) [004] d..2 82317.429607: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
116066    RenderThread-16607 (10023) [005] .... 82317.429637: binder_transaction: transaction=1572469 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
116067    RenderThread-16607 (10023) [005] .... 82317.429642: binder_transaction_alloc_buf: transaction=1572469 data_size=104 offsets_size=0
116068    RenderThread-16607 (10023) [005] ...2 82317.429645: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
116069    RenderThread-16607 (10023) [005] d..4 82317.429650: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
116070    RenderThread-16607 (10023) [005] dn.5 82317.429671: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116071    RenderThread-16607 (10023) [005] d..2 82317.429714: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
116072<...>-8951 ( 8858) [005] .... 82317.429726: binder_transaction_received: transaction=1572469
116073 s.nexuslauncher-10023 (10023) [004] d..2 82317.429733: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
116074          <idle>-0     (-----) [004] d..1 82317.429744: cpu_idle: state=0 cpu_id=4
116075<...>-8951 ( 8858) [005] .... 82317.429785: binder_transaction: transaction=1572470 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
116076<...>-8951 ( 8858) [005] .... 82317.429790: binder_transaction_alloc_buf: transaction=1572470 data_size=52 offsets_size=8
116077<...>-8951 ( 8858) [005] .... 82317.429796: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
116078<...>-8951 ( 8858) [005] d..2 82317.429835: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
116079    RenderThread-16607 (10023) [005] .... 82317.429845: binder_transaction_received: transaction=1572470
116080    RenderThread-16607 (10023) [005] d..2 82317.431066: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
116081          <idle>-0     (-----) [005] d..1 82317.431082: cpu_idle: state=0 cpu_id=5
116082          <idle>-0     (-----) [005] d.h2 82317.431151: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116083          <idle>-0     (-----) [005] d.h3 82317.431159: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
116084          <idle>-0     (-----) [005] dnh3 82317.431163: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116085          <idle>-0     (-----) [005] .n.1 82317.431169: cpu_idle: state=4294967295 cpu_id=5
116086          <idle>-0     (-----) [005] d..2 82317.431179: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116087    RenderThread-16607 (10023) [005] .... 82317.431325: binder_transaction: transaction=1572471 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
116088    RenderThread-16607 (10023) [005] .... 82317.431329: binder_transaction_alloc_buf: transaction=1572471 data_size=192 offsets_size=8
116089    RenderThread-16607 (10023) [005] ...2 82317.431336: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
116090    RenderThread-16607 (10023) [005] d..4 82317.431340: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116091    RenderThread-16607 (10023) [005] dn.5 82317.431354: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116092    RenderThread-16607 (10023) [005] d..2 82317.431362: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
116093<...>-8951 ( 8858) [005] .... 82317.431373: binder_transaction_received: transaction=1572471
116094<...>-8951 ( 8858) [005] .... 82317.431492: binder_transaction: transaction=1572472 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
116095<...>-8951 ( 8858) [005] .... 82317.431496: binder_transaction_alloc_buf: transaction=1572472 data_size=68 offsets_size=0
116096<...>-8951 ( 8858) [005] .... 82317.431499: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
116097<...>-8951 ( 8858) [005] d..2 82317.431537: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
116098    RenderThread-16607 (10023) [005] .... 82317.431548: binder_transaction_received: transaction=1572472
116099    RenderThread-16607 (10023) [005] d..2 82317.431619: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
116100          <idle>-0     (-----) [005] d..1 82317.431635: cpu_idle: state=0 cpu_id=5
116101          <idle>-0     (-----) [000] d.h3 82317.432222: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
116102          <idle>-0     (-----) [000] d.h4 82317.432248: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
116103          <idle>-0     (-----) [003] .n.1 82317.432256: cpu_idle: state=4294967295 cpu_id=3
116104          <idle>-0     (-----) [000] d..2 82317.432264: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116105          <idle>-0     (-----) [003] d..2 82317.432269: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
116106          <idle>-0     (-----) [000] dn.3 82317.432279: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116107 kgsl_worker_thr-258   (  258) [003] d..2 82317.432329: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
116108          <idle>-0     (-----) [000] .n.1 82317.432366: cpu_idle: state=4294967295 cpu_id=0
116109 kgsl_worker_thr-258   (  258) [003] d..3 82317.432380: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
116110          <idle>-0     (-----) [000] d..2 82317.432385: 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
116111 kgsl_worker_thr-258   (  258) [003] d..2 82317.432405: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
116112     ksoftirqd/0-3     (    3) [000] d..2 82317.432421: 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
116113          <idle>-0     (-----) [000] d..1 82317.432435: cpu_idle: state=0 cpu_id=0
116114  kworker/u16:13-1147  ( 1147) [003] d.h1 82317.432570: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
116115  kworker/u16:13-1147  ( 1147) [003] d.h2 82317.432601: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
116116          <idle>-0     (-----) [002] .n.1 82317.432607: cpu_idle: state=4294967295 cpu_id=2
116117          <idle>-0     (-----) [002] d..2 82317.432621: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
116118        DispSync-8879  ( 8858) [002] d..1 82317.432645: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116119  kworker/u16:13-1147  ( 1147) [003] d..2 82317.432646: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116120          <idle>-0     (-----) [003] d..1 82317.432666: cpu_idle: state=0 cpu_id=3
116121        DispSync-8879  ( 8858) [002] d..2 82317.432669: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116122          <idle>-0     (-----) [001] .n.1 82317.432674: cpu_idle: state=4294967295 cpu_id=1
116123          <idle>-0     (-----) [001] d..2 82317.432686: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
116124        DispSync-8879  ( 8858) [002] d..2 82317.432709: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116125          <idle>-0     (-----) [002] d..1 82317.432720: cpu_idle: state=0 cpu_id=2
116126   sfEventThread-8882  ( 8858) [001] d..3 82317.432725: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116127   sfEventThread-8882  ( 8858) [001] d..4 82317.432750: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116128          <idle>-0     (-----) [003] .n.1 82317.432756: cpu_idle: state=4294967295 cpu_id=3
116129          <idle>-0     (-----) [003] d..2 82317.432769: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
116130   sfEventThread-8882  ( 8858) [001] d..2 82317.432788: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116131          <idle>-0     (-----) [001] d..1 82317.432804: cpu_idle: state=0 cpu_id=1
116132  surfaceflinger-8858  ( 8858) [003] d..1 82317.433159: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116133  surfaceflinger-8858  ( 8858) [003] d..2 82317.433185: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116134          <idle>-0     (-----) [001] .n.1 82317.433190: cpu_idle: state=4294967295 cpu_id=1
116135          <idle>-0     (-----) [001] d..2 82317.433202: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
116136   sfEventThread-8882  ( 8858) [001] d..2 82317.433239: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116137          <idle>-0     (-----) [001] d..1 82317.433250: cpu_idle: state=0 cpu_id=1
116138  surfaceflinger-8858  ( 8858) [003] ...1 82317.433401: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
116139  surfaceflinger-8858  ( 8858) [003] ...1 82317.433410: tracing_mark_write: E|8858
116140  surfaceflinger-8858  ( 8858) [003] .... 82317.433473: binder_transaction: transaction=1572473 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
116141  surfaceflinger-8858  ( 8858) [003] .... 82317.433479: binder_transaction_alloc_buf: transaction=1572473 data_size=540 offsets_size=96
116142  surfaceflinger-8858  ( 8858) [003] ...2 82317.433507: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
116143  surfaceflinger-8858  ( 8858) [003] d..4 82317.433514: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
116144  surfaceflinger-8858  ( 8858) [003] d..5 82317.433538: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
116145          <idle>-0     (-----) [001] .n.1 82317.433543: cpu_idle: state=4294967295 cpu_id=1
116146          <idle>-0     (-----) [001] d..2 82317.433555: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
116147 [email protected]   (  619) [001] .... 82317.433568: binder_transaction_received: transaction=1572473
116148  surfaceflinger-8858  ( 8858) [003] d..2 82317.433577: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116149          <idle>-0     (-----) [003] d..1 82317.433600: cpu_idle: state=0 cpu_id=3
116150 [email protected]   (  619) [001] ...1 82317.433617: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
116151 [email protected]   (  619) [001] ...1 82317.433731: tracing_mark_write: B|619|HWCSession::PresentDisplay::
116152 [email protected]   (  619) [001] ...1 82317.433910: tracing_mark_write: B|619|HWDeviceDRM::Commit::
116153 [email protected]   (  619) [001] ...1 82317.433923: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
116154 [email protected]   (  619) [001] d..2 82317.434539: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116155 [email protected]   (  619) [001] d..3 82317.434569: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116156          <idle>-0     (-----) [002] .n.1 82317.434574: cpu_idle: state=4294967295 cpu_id=2
116157          <idle>-0     (-----) [002] d..2 82317.434583: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116158 [email protected]   (  619) [001] ...1 82317.434683: tracing_mark_write: E|619
116159 [email protected]   (  619) [001] ...1 82317.434691: tracing_mark_write: E|619
116160 [email protected]   (  619) [001] ...1 82317.434756: tracing_mark_write: E|619
116161 [email protected]   (  619) [001] ...1 82317.434804: tracing_mark_write: E|619
116162 [email protected]   (  619) [001] .... 82317.434824: binder_transaction: transaction=1572474 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
116163 [email protected]   (  619) [001] .... 82317.434829: binder_transaction_alloc_buf: transaction=1572474 data_size=576 offsets_size=112
116164 [email protected]   (  619) [001] d..2 82317.434853: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116165 [email protected]   (  619) [001] d..3 82317.434875: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116166 [email protected]   (  619) [001] .... 82317.434881: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
116167          <idle>-0     (-----) [003] .n.1 82317.434882: cpu_idle: state=4294967295 cpu_id=3
116168          <idle>-0     (-----) [003] d..2 82317.434895: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
116169  surfaceflinger-8858  ( 8858) [003] .... 82317.434905: binder_transaction_received: transaction=1572474
116170 [email protected]   (  619) [001] d..2 82317.434982: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116171          <idle>-0     (-----) [001] d..1 82317.435005: cpu_idle: state=0 cpu_id=1
116172 crtc_commit:111-321   (  321) [002] d.s1 82317.435148: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
116173 crtc_commit:111-321   (  321) [002] d.s2 82317.435175: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
116174 crtc_commit:111-321   (  321) [002] d.s2 82317.435182: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
116175 crtc_commit:111-321   (  321) [002] d.s3 82317.435219: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
116176  surfaceflinger-8858  ( 8858) [003] d..2 82317.435468: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
116177 crtc_commit:111-321   (  321) [002] d..2 82317.435470: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
116178     rcu_preempt-7     (    7) [003] d..2 82317.435482: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
116179     rcu_preempt-7     (    7) [003] d..3 82317.435528: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
116180     rcu_preempt-7     (    7) [003] d..2 82317.435554: 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
116181         rcuop/2-29    (   29) [003] d..2 82317.435566: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
116182         rcuop/2-29    (   29) [003] d..3 82317.435607: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
116183         rcuop/2-29    (   29) [003] d..2 82317.435619: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116184         rcuop/2-29    (   29) [003] d..3 82317.435632: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116185         rcuop/2-29    (   29) [003] d..2 82317.435642: 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
116186         rcuop/3-37    (   37) [003] d..2 82317.435669: 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
116187     rcu_preempt-7     (    7) [003] d..2 82317.435710: 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
116188  kworker/u16:13-1147  ( 1147) [002] d..2 82317.435725: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116189          <idle>-0     (-----) [003] d..1 82317.435732: cpu_idle: state=0 cpu_id=3
116190          <idle>-0     (-----) [002] d..1 82317.435745: cpu_idle: state=0 cpu_id=2
116191          <idle>-0     (-----) [000] d.h5 82317.440849: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116192          <idle>-0     (-----) [000] d.h6 82317.440871: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116193          <idle>-0     (-----) [000] d.h5 82317.440877: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116194          <idle>-0     (-----) [003] .n.1 82317.440878: cpu_idle: state=4294967295 cpu_id=3
116195          <idle>-0     (-----) [000] d.h6 82317.440889: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116196          <idle>-0     (-----) [003] d..2 82317.440893: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
116197          <idle>-0     (-----) [002] .n.1 82317.440898: cpu_idle: state=4294967295 cpu_id=2
116198          <idle>-0     (-----) [000] d..2 82317.440903: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116199          <idle>-0     (-----) [000] dn.3 82317.440912: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116200          <idle>-0     (-----) [002] d..2 82317.440912: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116201          <idle>-0     (-----) [000] .n.1 82317.440916: cpu_idle: state=4294967295 cpu_id=0
116202          <idle>-0     (-----) [000] d..2 82317.440934: 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
116203  crtc_event:111-322   (  322) [003] d..2 82317.440938: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116204          <idle>-0     (-----) [003] d..1 82317.440947: cpu_idle: state=0 cpu_id=3
116205     ksoftirqd/0-3     (    3) [000] d..2 82317.440964: 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
116206          <idle>-0     (-----) [000] d..1 82317.440978: cpu_idle: state=0 cpu_id=0
116207 crtc_commit:111-321   (  321) [002] d..2 82317.441065: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
116208          <idle>-0     (-----) [002] d..1 82317.441076: cpu_idle: state=0 cpu_id=2
116209          <idle>-0     (-----) [003] d.s2 82317.441807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116210          <idle>-0     (-----) [002] d.s3 82317.441811: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116211          <idle>-0     (-----) [003] dns3 82317.441827: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116212          <idle>-0     (-----) [002] d.s4 82317.441834: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116213          <idle>-0     (-----) [003] .n.1 82317.441857: cpu_idle: state=4294967295 cpu_id=3
116214          <idle>-0     (-----) [002] ...1 82317.441862: cpu_idle: state=4294967295 cpu_id=2
116215          <idle>-0     (-----) [003] d..2 82317.441866: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
116216          <idle>-0     (-----) [002] d..1 82317.441868: cpu_idle: state=0 cpu_id=2
116217  crtc_event:111-322   (  322) [003] d..2 82317.441888: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
116218     rcu_preempt-7     (    7) [003] d..2 82317.441899: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
116219     rcu_preempt-7     (    7) [003] d..3 82317.441915: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
116220     rcu_preempt-7     (    7) [003] d..2 82317.441926: 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
116221         rcuop/2-29    (   29) [003] d..2 82317.441930: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
116222         rcuop/2-29    (   29) [003] d..3 82317.441944: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
116223         rcuop/2-29    (   29) [003] d..2 82317.441954: 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
116224         rcuop/3-37    (   37) [003] d..2 82317.441985: 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
116225          <idle>-0     (-----) [003] d..1 82317.442001: cpu_idle: state=0 cpu_id=3
116226          <idle>-0     (-----) [000] d.h5 82317.443171: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116227          <idle>-0     (-----) [000] d.h6 82317.443191: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116228          <idle>-0     (-----) [002] .n.1 82317.443197: cpu_idle: state=4294967295 cpu_id=2
116229          <idle>-0     (-----) [000] ...1 82317.443206: cpu_idle: state=4294967295 cpu_id=0
116230          <idle>-0     (-----) [002] d..2 82317.443209: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116231          <idle>-0     (-----) [000] d..1 82317.443213: cpu_idle: state=0 cpu_id=0
116232 crtc_commit:111-321   (  321) [002] d..2 82317.443285: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116233          <idle>-0     (-----) [002] d..1 82317.443298: cpu_idle: state=0 cpu_id=2
116234          <idle>-0     (-----) [000] d.h5 82317.443482: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116235          <idle>-0     (-----) [000] d.h6 82317.443499: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116236          <idle>-0     (-----) [003] .n.1 82317.443506: cpu_idle: state=4294967295 cpu_id=3
116237          <idle>-0     (-----) [003] d..2 82317.443518: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
116238          <idle>-0     (-----) [000] ...1 82317.443525: cpu_idle: state=4294967295 cpu_id=0
116239          <idle>-0     (-----) [000] d..1 82317.443532: cpu_idle: state=0 cpu_id=0
116240  crtc_event:111-322   (  322) [003] d..2 82317.443548: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116241          <idle>-0     (-----) [003] d..1 82317.443559: cpu_idle: state=0 cpu_id=3
116242          <idle>-0     (-----) [002] d.h2 82317.444986: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
116243          <idle>-0     (-----) [002] dnh3 82317.445002: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
116244          <idle>-0     (-----) [002] .n.1 82317.445011: cpu_idle: state=4294967295 cpu_id=2
116245          <idle>-0     (-----) [002] d..2 82317.445021: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
116246        DispSync-8879  ( 8858) [002] d..1 82317.445037: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
116247        DispSync-8879  ( 8858) [002] d..2 82317.445055: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
116248          <idle>-0     (-----) [001] .n.1 82317.445064: cpu_idle: state=4294967295 cpu_id=1
116249          <idle>-0     (-----) [001] d..2 82317.445078: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
116250        DispSync-8879  ( 8858) [002] d..2 82317.445091: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116251          <idle>-0     (-----) [002] d..1 82317.445103: cpu_idle: state=0 cpu_id=2
116252  appEventThread-8881  ( 8858) [001] d.s2 82317.445152: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
116253  appEventThread-8881  ( 8858) [001] d.s3 82317.445201: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
116254  appEventThread-8881  ( 8858) [001] d..3 82317.445245: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116255          <idle>-0     (-----) [004] dnh2 82317.445275: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116256          <idle>-0     (-----) [004] .n.1 82317.445280: cpu_idle: state=4294967295 cpu_id=4
116257          <idle>-0     (-----) [004] d..2 82317.445289: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
116258  appEventThread-8881  ( 8858) [001] d..2 82317.445298: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
116259  kworker/u16:13-1147  ( 1147) [001] d..2 82317.445463: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116260          <idle>-0     (-----) [001] d..1 82317.445484: cpu_idle: state=0 cpu_id=1
116261 s.nexuslauncher-10023 (10023) [004] .... 82317.445514: binder_transaction: transaction=1572475 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
116262 s.nexuslauncher-10023 (10023) [004] .... 82317.445520: binder_transaction_alloc_buf: transaction=1572475 data_size=80 offsets_size=0
116263 s.nexuslauncher-10023 (10023) [004] d..4 82317.445525: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
116264 s.nexuslauncher-10023 (10023) [004] d.h5 82317.445588: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
116265          <idle>-0     (-----) [000] dnh2 82317.445593: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
116266          <idle>-0     (-----) [000] .n.1 82317.445599: cpu_idle: state=4294967295 cpu_id=0
116267          <idle>-0     (-----) [000] d..2 82317.445613: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
116268          <idle>-0     (-----) [002] dnh2 82317.445614: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
116269          <idle>-0     (-----) [002] .n.1 82317.445622: cpu_idle: state=4294967295 cpu_id=2
116270<...>-8951 ( 8858) [000] .... 82317.445623: binder_transaction_received: transaction=1572475
116271 s.nexuslauncher-10023 (10023) [004] d..3 82317.445629: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116272          <idle>-0     (-----) [002] d..2 82317.445633: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
116273 s.nexuslauncher-10023 (10023) [004] d..4 82317.445646: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116274          <idle>-0     (-----) [005] .n.1 82317.445653: cpu_idle: state=4294967295 cpu_id=5
116275<...>-8951 ( 8858) [000] d..1 82317.445660: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
116276          <idle>-0     (-----) [005] d..2 82317.445664: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116277         sugov:0-576   (  576) [002] .... 82317.445670: clk_set_rate: pwrcl_clk 748800000
116278<...>-8951 ( 8858) [000] d..2 82317.445679: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
116279          <idle>-0     (-----) [001] .n.1 82317.445686: cpu_idle: state=4294967295 cpu_id=1
116280         sugov:0-576   (  576) [002] .... 82317.445689: clk_set_rate: cpu3_pwrcl_clk 825600000
116281         sugov:0-576   (  576) [002] .... 82317.445700: clk_set_rate: cpu2_pwrcl_clk 825600000
116282    RenderThread-16607 (10023) [005] d..2 82317.445700: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
116283          <idle>-0     (-----) [001] d..2 82317.445700: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
116284          <idle>-0     (-----) [005] d..1 82317.445708: cpu_idle: state=0 cpu_id=5
116285         sugov:0-576   (  576) [002] .... 82317.445708: clk_set_rate: cpu1_pwrcl_clk 825600000
116286         sugov:0-576   (  576) [002] .... 82317.445716: clk_set_rate: cpu0_pwrcl_clk 748800000
116287<...>-8951 ( 8858) [000] d..2 82317.445733: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116288          <idle>-0     (-----) [000] d..1 82317.445758: cpu_idle: state=0 cpu_id=0
116289  appEventThread-8881  ( 8858) [001] d..2 82317.445766: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116290          <idle>-0     (-----) [001] d..1 82317.445780: cpu_idle: state=0 cpu_id=1
116291         sugov:0-576   (  576) [002] .... 82317.445829: cpu_frequency: state=748800 cpu_id=0
116292         sugov:0-576   (  576) [002] .... 82317.445854: cpu_frequency: state=748800 cpu_id=1
116293         sugov:0-576   (  576) [002] .... 82317.445859: cpu_frequency: state=748800 cpu_id=2
116294         sugov:0-576   (  576) [002] .... 82317.445864: cpu_frequency: state=748800 cpu_id=3
116295         sugov:0-576   (  576) [002] d..2 82317.445896: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116296 s.nexuslauncher-10023 (10023) [004] d..3 82317.445902: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116297          <idle>-0     (-----) [002] d..1 82317.445912: cpu_idle: state=0 cpu_id=2
116298 s.nexuslauncher-10023 (10023) [004] d..4 82317.445921: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116299          <idle>-0     (-----) [005] .n.1 82317.445925: cpu_idle: state=4294967295 cpu_id=5
116300          <idle>-0     (-----) [005] d..2 82317.445933: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116301 s.nexuslauncher-10023 (10023) [004] d..2 82317.445948: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
116302          <idle>-0     (-----) [004] d..1 82317.445964: cpu_idle: state=0 cpu_id=4
116303    RenderThread-16607 (10023) [005] d..1 82317.446050: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116304    RenderThread-16607 (10023) [005] d..2 82317.446068: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116305          <idle>-0     (-----) [004] .n.1 82317.446075: cpu_idle: state=4294967295 cpu_id=4
116306          <idle>-0     (-----) [004] d..2 82317.446084: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
116307    RenderThread-16607 (10023) [005] .... 82317.446115: binder_transaction: transaction=1572476 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
116308    RenderThread-16607 (10023) [005] .... 82317.446119: binder_transaction_alloc_buf: transaction=1572476 data_size=104 offsets_size=0
116309    RenderThread-16607 (10023) [005] ...2 82317.446123: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
116310    RenderThread-16607 (10023) [005] d..4 82317.446126: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
116311    RenderThread-16607 (10023) [005] dn.5 82317.446146: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116312    RenderThread-16607 (10023) [005] d..2 82317.446187: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
116313<...>-8951 ( 8858) [005] .... 82317.446199: binder_transaction_received: transaction=1572476
116314 s.nexuslauncher-10023 (10023) [004] d..2 82317.446205: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
116315          <idle>-0     (-----) [004] d..1 82317.446215: cpu_idle: state=0 cpu_id=4
116316<...>-8951 ( 8858) [005] .... 82317.446259: binder_transaction: transaction=1572477 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
116317<...>-8951 ( 8858) [005] .... 82317.446263: binder_transaction_alloc_buf: transaction=1572477 data_size=52 offsets_size=8
116318<...>-8951 ( 8858) [005] .... 82317.446270: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
116319<...>-8951 ( 8858) [005] d..2 82317.446307: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
116320    RenderThread-16607 (10023) [005] .... 82317.446318: binder_transaction_received: transaction=1572477
116321    RenderThread-16607 (10023) [005] d..2 82317.447513: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
116322          <idle>-0     (-----) [005] d..1 82317.447528: cpu_idle: state=0 cpu_id=5
116323          <idle>-0     (-----) [005] d.h2 82317.447599: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116324          <idle>-0     (-----) [005] d.h3 82317.447607: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
116325          <idle>-0     (-----) [005] dnh3 82317.447610: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116326          <idle>-0     (-----) [005] .n.1 82317.447617: cpu_idle: state=4294967295 cpu_id=5
116327          <idle>-0     (-----) [005] d..2 82317.447626: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116328    RenderThread-16607 (10023) [005] .... 82317.447768: binder_transaction: transaction=1572478 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
116329    RenderThread-16607 (10023) [005] .... 82317.447773: binder_transaction_alloc_buf: transaction=1572478 data_size=192 offsets_size=8
116330    RenderThread-16607 (10023) [005] ...2 82317.447781: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
116331    RenderThread-16607 (10023) [005] d..4 82317.447784: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116332    RenderThread-16607 (10023) [005] dn.5 82317.447795: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116333    RenderThread-16607 (10023) [005] d..2 82317.447803: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
116334<...>-8951 ( 8858) [005] .... 82317.447814: binder_transaction_received: transaction=1572478
116335<...>-8951 ( 8858) [005] .... 82317.447937: binder_transaction: transaction=1572479 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
116336<...>-8951 ( 8858) [005] .... 82317.447942: binder_transaction_alloc_buf: transaction=1572479 data_size=68 offsets_size=0
116337<...>-8951 ( 8858) [005] .... 82317.447944: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
116338<...>-8951 ( 8858) [005] d..2 82317.447982: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
116339    RenderThread-16607 (10023) [005] .... 82317.447994: binder_transaction_received: transaction=1572479
116340    RenderThread-16607 (10023) [005] d..2 82317.448064: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
116341          <idle>-0     (-----) [005] d..1 82317.448081: cpu_idle: state=0 cpu_id=5
116342          <idle>-0     (-----) [000] d.h3 82317.448660: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
116343          <idle>-0     (-----) [000] d.h4 82317.448681: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
116344          <idle>-0     (-----) [003] .n.1 82317.448687: cpu_idle: state=4294967295 cpu_id=3
116345          <idle>-0     (-----) [000] d..2 82317.448695: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116346          <idle>-0     (-----) [003] d..2 82317.448702: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
116347          <idle>-0     (-----) [000] dn.3 82317.448705: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116348          <idle>-0     (-----) [000] .n.1 82317.448710: cpu_idle: state=4294967295 cpu_id=0
116349          <idle>-0     (-----) [000] d..2 82317.448727: 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
116350     ksoftirqd/0-3     (    3) [000] d.s2 82317.448738: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
116351     ksoftirqd/0-3     (    3) [000] d.s3 82317.448785: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
116352 kgsl_worker_thr-258   (  258) [003] d..2 82317.448815: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
116353     ksoftirqd/0-3     (    3) [000] d..2 82317.448819: 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
116354  kworker/u16:13-1147  ( 1147) [003] d..2 82317.448822: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
116355          <idle>-0     (-----) [000] d..1 82317.448835: cpu_idle: state=0 cpu_id=0
116356  kworker/u16:13-1147  ( 1147) [003] d..3 82317.448877: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
116357          <idle>-0     (-----) [002] d.h2 82317.448975: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
116358          <idle>-0     (-----) [002] dnh3 82317.448991: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
116359          <idle>-0     (-----) [002] .n.1 82317.449000: cpu_idle: state=4294967295 cpu_id=2
116360          <idle>-0     (-----) [002] d..2 82317.449012: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
116361        DispSync-8879  ( 8858) [002] d..1 82317.449028: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116362        DispSync-8879  ( 8858) [002] d..2 82317.449044: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116363          <idle>-0     (-----) [001] .n.1 82317.449050: cpu_idle: state=4294967295 cpu_id=1
116364          <idle>-0     (-----) [001] d..2 82317.449063: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
116365        DispSync-8879  ( 8858) [002] d..2 82317.449103: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
116366  kworker/u16:13-1147  ( 1147) [003] d..2 82317.449125: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
116367          <idle>-0     (-----) [003] d..1 82317.449146: cpu_idle: state=0 cpu_id=3
116368   sfEventThread-8882  ( 8858) [001] d.s1 82317.449148: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116369   sfEventThread-8882  ( 8858) [001] d.s2 82317.449170: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
116370   sfEventThread-8882  ( 8858) [001] d..3 82317.449185: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116371   sfEventThread-8882  ( 8858) [001] d..4 82317.449205: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116372          <idle>-0     (-----) [003] .n.1 82317.449213: cpu_idle: state=4294967295 cpu_id=3
116373          <idle>-0     (-----) [003] d..2 82317.449226: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
116374   sfEventThread-8882  ( 8858) [001] d..2 82317.449234: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
116375     ksoftirqd/1-18    (   18) [001] d.s2 82317.449255: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
116376     ksoftirqd/1-18    (   18) [001] d.s3 82317.449300: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
116377     ksoftirqd/1-18    (   18) [001] d.s3 82317.449307: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
116378  kworker/u16:15-1311  ( 1311) [002] d..2 82317.449317: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116379     ksoftirqd/1-18    (   18) [001] d..2 82317.449324: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
116380          <idle>-0     (-----) [002] d..1 82317.449339: cpu_idle: state=0 cpu_id=2
116381  kworker/u16:13-1147  ( 1147) [001] d..2 82317.449370: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116382          <idle>-0     (-----) [001] d..1 82317.449390: cpu_idle: state=0 cpu_id=1
116383  surfaceflinger-8858  ( 8858) [003] d..2 82317.449592: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
116384  surfaceflinger-8858  ( 8858) [003] d..3 82317.449626: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
116385  surfaceflinger-8858  ( 8858) [003] d..1 82317.449661: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116386  surfaceflinger-8858  ( 8858) [003] d..2 82317.449681: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116387          <idle>-0     (-----) [001] .n.1 82317.449689: cpu_idle: state=4294967295 cpu_id=1
116388          <idle>-0     (-----) [001] d..2 82317.449703: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
116389   sfEventThread-8882  ( 8858) [001] d..2 82317.449749: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116390          <idle>-0     (-----) [001] d..1 82317.449762: cpu_idle: state=0 cpu_id=1
116391  surfaceflinger-8858  ( 8858) [003] ...1 82317.449911: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
116392  surfaceflinger-8858  ( 8858) [003] ...1 82317.449920: tracing_mark_write: E|8858
116393  surfaceflinger-8858  ( 8858) [003] .... 82317.449987: binder_transaction: transaction=1572480 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
116394  surfaceflinger-8858  ( 8858) [003] .... 82317.449997: binder_transaction_alloc_buf: transaction=1572480 data_size=540 offsets_size=96
116395  surfaceflinger-8858  ( 8858) [003] ...2 82317.450024: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
116396  surfaceflinger-8858  ( 8858) [003] d..4 82317.450032: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
116397  surfaceflinger-8858  ( 8858) [003] d..5 82317.450056: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
116398          <idle>-0     (-----) [001] .n.1 82317.450062: cpu_idle: state=4294967295 cpu_id=1
116399          <idle>-0     (-----) [001] d..2 82317.450075: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
116400  surfaceflinger-8858  ( 8858) [003] d..2 82317.450084: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
116401 [email protected]   (  619) [001] .... 82317.450087: binder_transaction_received: transaction=1572480
116402         rcuop/2-29    (   29) [003] d..2 82317.450092: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116403         rcuop/2-29    (   29) [003] d..3 82317.450114: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116404         rcuop/2-29    (   29) [003] d..2 82317.450126: 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
116405 [email protected]   (  619) [001] ...1 82317.450140: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
116406     rcu_preempt-7     (    7) [003] d..2 82317.450159: 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
116407          <idle>-0     (-----) [003] d..1 82317.450181: cpu_idle: state=0 cpu_id=3
116408 [email protected]   (  619) [001] ...1 82317.450262: tracing_mark_write: B|619|HWCSession::PresentDisplay::
116409 [email protected]   (  619) [001] ...1 82317.450453: tracing_mark_write: B|619|HWDeviceDRM::Commit::
116410 [email protected]   (  619) [001] ...1 82317.450468: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
116411 [email protected]   (  619) [001] d..2 82317.451144: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116412 [email protected]   (  619) [001] d..3 82317.451174: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116413          <idle>-0     (-----) [002] .n.1 82317.451182: cpu_idle: state=4294967295 cpu_id=2
116414          <idle>-0     (-----) [002] d..2 82317.451195: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116415 [email protected]   (  619) [001] ...1 82317.451296: tracing_mark_write: E|619
116416 [email protected]   (  619) [001] ...1 82317.451304: tracing_mark_write: E|619
116417 [email protected]   (  619) [001] ...1 82317.451373: tracing_mark_write: E|619
116418 [email protected]   (  619) [001] ...1 82317.451424: tracing_mark_write: E|619
116419 [email protected]   (  619) [001] .... 82317.451443: binder_transaction: transaction=1572481 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
116420 [email protected]   (  619) [001] .... 82317.451449: binder_transaction_alloc_buf: transaction=1572481 data_size=576 offsets_size=112
116421 [email protected]   (  619) [001] d..2 82317.451473: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116422 [email protected]   (  619) [001] d..3 82317.451497: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116423 [email protected]   (  619) [001] .... 82317.451503: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
116424          <idle>-0     (-----) [003] .n.1 82317.451504: cpu_idle: state=4294967295 cpu_id=3
116425          <idle>-0     (-----) [003] d..2 82317.451517: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
116426  surfaceflinger-8858  ( 8858) [003] .... 82317.451529: binder_transaction_received: transaction=1572481
116427 [email protected]   (  619) [001] d..2 82317.451610: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116428          <idle>-0     (-----) [001] d..1 82317.451635: cpu_idle: state=0 cpu_id=1
116429  surfaceflinger-8858  ( 8858) [003] d..1 82317.452102: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=001
116430 crtc_commit:111-321   (  321) [002] d..2 82317.452122: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
116431          <idle>-0     (-----) [002] d..1 82317.452144: cpu_idle: state=0 cpu_id=2
116432  surfaceflinger-8858  ( 8858) [003] d..2 82317.452148: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
116433          <idle>-0     (-----) [000] .n.1 82317.452153: cpu_idle: state=4294967295 cpu_id=0
116434          <idle>-0     (-----) [000] d..2 82317.452171: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
116435  surfaceflinger-8858  ( 8858) [003] d..2 82317.452208: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116436<...>-8894 ( 8858) [000] ...1 82317.452212: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
116437<...>-8894 ( 8858) [000] ...1 82317.452222: tracing_mark_write: E|8858
116438          <idle>-0     (-----) [003] d..1 82317.452227: cpu_idle: state=0 cpu_id=3
116439<...>-8894 ( 8858) [000] .... 82317.452264: binder_transaction: transaction=1572482 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
116440<...>-8894 ( 8858) [000] .... 82317.452269: binder_transaction_alloc_buf: transaction=1572482 data_size=68 offsets_size=0
116441<...>-8894 ( 8858) [000] ...2 82317.452277: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
116442<...>-8894 ( 8858) [000] d..4 82317.452289: sched_waking: [email protected] pid=619 prio=112 target_cpu=001
116443<...>-8894 ( 8858) [000] d..5 82317.452318: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=000
116444<...>-8894 ( 8858) [000] d..2 82317.452339: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
116445 [email protected]   (  619) [000] .... 82317.452353: binder_transaction_received: transaction=1572482
116446 [email protected]   (  619) [000] ...1 82317.452407: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
116447 [email protected]   (  619) [000] ...1 82317.452427: tracing_mark_write: C|619|SetVsyncState |1
116448 [email protected]   (  619) [000] ...1 82317.452487: tracing_mark_write: E|619
116449 [email protected]   (  619) [000] .... 82317.452503: binder_transaction: transaction=1572483 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
116450 [email protected]   (  619) [000] .... 82317.452508: binder_transaction_alloc_buf: transaction=1572483 data_size=8 offsets_size=0
116451 [email protected]   (  619) [000] d..2 82317.452513: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
116452 [email protected]   (  619) [000] dn.3 82317.452532: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
116453 [email protected]   (  619) [000] d..2 82317.452543: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
116454<...>-8894 ( 8858) [000] .... 82317.452555: binder_transaction_received: transaction=1572483
116455<...>-8894 ( 8858) [000] d..2 82317.452606: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
116456 [email protected]   (  619) [000] .... 82317.452613: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
116457 [email protected]   (  619) [000] d..2 82317.452696: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116458          <idle>-0     (-----) [000] d..1 82317.452720: cpu_idle: state=0 cpu_id=0
116459          <idle>-0     (-----) [003] d.s2 82317.455148: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116460          <idle>-0     (-----) [003] dns3 82317.455171: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116461          <idle>-0     (-----) [003] dns3 82317.455177: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
116462          <idle>-0     (-----) [003] dns4 82317.455216: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
116463          <idle>-0     (-----) [003] .n.1 82317.455237: cpu_idle: state=4294967295 cpu_id=3
116464          <idle>-0     (-----) [003] d..2 82317.455250: 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
116465     rcu_preempt-7     (    7) [003] d..2 82317.455266: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
116466     rcu_preempt-7     (    7) [003] d..3 82317.455284: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
116467     rcu_preempt-7     (    7) [003] d..2 82317.455297: 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
116468         rcuop/2-29    (   29) [003] d..2 82317.455302: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
116469         rcuop/2-29    (   29) [003] d..3 82317.455318: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
116470         rcuop/2-29    (   29) [003] d..2 82317.455322: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116471         rcuop/2-29    (   29) [003] d..3 82317.455335: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116472         rcuop/2-29    (   29) [003] d..2 82317.455344: 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
116473         rcuop/3-37    (   37) [003] d..2 82317.455359: 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
116474     rcu_preempt-7     (    7) [003] d..2 82317.455373: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
116475  kworker/u16:13-1147  ( 1147) [003] d..2 82317.455496: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116476          <idle>-0     (-----) [003] d..1 82317.455517: cpu_idle: state=0 cpu_id=3
116477          <idle>-0     (-----) [000] d.h5 82317.457327: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116478          <idle>-0     (-----) [000] d.h6 82317.457353: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116479          <idle>-0     (-----) [000] d.h5 82317.457359: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116480          <idle>-0     (-----) [003] .n.1 82317.457361: cpu_idle: state=4294967295 cpu_id=3
116481          <idle>-0     (-----) [000] d.h6 82317.457373: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116482          <idle>-0     (-----) [003] d..2 82317.457375: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
116483          <idle>-0     (-----) [002] .n.1 82317.457381: cpu_idle: state=4294967295 cpu_id=2
116484          <idle>-0     (-----) [000] ...1 82317.457395: cpu_idle: state=4294967295 cpu_id=0
116485          <idle>-0     (-----) [002] d..2 82317.457395: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116486          <idle>-0     (-----) [000] d..1 82317.457404: cpu_idle: state=0 cpu_id=0
116487  crtc_event:111-322   (  322) [003] d..2 82317.457413: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116488          <idle>-0     (-----) [003] d..1 82317.457425: cpu_idle: state=0 cpu_id=3
116489 crtc_commit:111-321   (  321) [002] d..2 82317.457553: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
116490          <idle>-0     (-----) [002] d..1 82317.457566: cpu_idle: state=0 cpu_id=2
116491          <idle>-0     (-----) [002] d.s3 82317.458478: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116492          <idle>-0     (-----) [002] d.s4 82317.458501: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116493          <idle>-0     (-----) [003] .n.1 82317.458507: cpu_idle: state=4294967295 cpu_id=3
116494          <idle>-0     (-----) [003] d..2 82317.458522: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
116495          <idle>-0     (-----) [002] ...1 82317.458528: cpu_idle: state=4294967295 cpu_id=2
116496          <idle>-0     (-----) [002] d..1 82317.458536: cpu_idle: state=0 cpu_id=2
116497  crtc_event:111-322   (  322) [003] d..2 82317.458557: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116498          <idle>-0     (-----) [003] d..1 82317.458566: cpu_idle: state=0 cpu_id=3
116499          <idle>-0     (-----) [000] d.h5 82317.459646: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116500          <idle>-0     (-----) [000] d.h6 82317.459665: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116501          <idle>-0     (-----) [002] .n.1 82317.459671: cpu_idle: state=4294967295 cpu_id=2
116502          <idle>-0     (-----) [000] ...1 82317.459680: cpu_idle: state=4294967295 cpu_id=0
116503          <idle>-0     (-----) [002] d..2 82317.459683: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116504          <idle>-0     (-----) [000] d..1 82317.459686: cpu_idle: state=0 cpu_id=0
116505 crtc_commit:111-321   (  321) [002] d..2 82317.459776: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116506          <idle>-0     (-----) [002] d..1 82317.459791: cpu_idle: state=0 cpu_id=2
116507          <idle>-0     (-----) [000] d.h5 82317.459957: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116508          <idle>-0     (-----) [000] d.h6 82317.459974: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116509          <idle>-0     (-----) [003] .n.1 82317.459980: cpu_idle: state=4294967295 cpu_id=3
116510          <idle>-0     (-----) [000] d.h7 82317.459988: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
116511          <idle>-0     (-----) [003] d..2 82317.459990: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
116512          <idle>-0     (-----) [000] dnh8 82317.460006: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
116513  crtc_event:111-322   (  322) [003] d..2 82317.460017: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116514          <idle>-0     (-----) [000] dnh9 82317.460021: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116515          <idle>-0     (-----) [003] d..1 82317.460025: cpu_idle: state=0 cpu_id=3
116516          <idle>-0     (-----) [000] dnha 82317.460038: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116517          <idle>-0     (-----) [002] .n.1 82317.460045: cpu_idle: state=4294967295 cpu_id=2
116518          <idle>-0     (-----) [000] dnh7 82317.460047: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
116519          <idle>-0     (-----) [002] d..2 82317.460056: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116520          <idle>-0     (-----) [000] dnh8 82317.460068: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
116521          <idle>-0     (-----) [000] .n.1 82317.460085: cpu_idle: state=4294967295 cpu_id=0
116522 crtc_commit:111-321   (  321) [002] d..2 82317.460097: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116523          <idle>-0     (-----) [000] d..2 82317.460103: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
116524          <idle>-0     (-----) [002] d..1 82317.460107: cpu_idle: state=0 cpu_id=2
116525     kworker/0:1-25262 (25262) [000] d..2 82317.460128: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
116526 SDM_EventThread-644   (  619) [000] ...1 82317.460182: tracing_mark_write: B|619|HWCCallbacks::Vsync::
116527 SDM_EventThread-644   (  619) [000] ...1 82317.460197: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
116528 SDM_EventThread-644   (  619) [000] ...1 82317.460202: tracing_mark_write: E|619
116529 SDM_EventThread-644   (  619) [000] .... 82317.460236: binder_transaction: transaction=1572484 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
116530 SDM_EventThread-644   (  619) [000] .... 82317.460242: binder_transaction_alloc_buf: transaction=1572484 data_size=76 offsets_size=0
116531 SDM_EventThread-644   (  619) [000] d..4 82317.460250: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
116532 SDM_EventThread-644   (  619) [000] d..5 82317.460288: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
116533          <idle>-0     (-----) [001] .n.1 82317.460296: cpu_idle: state=4294967295 cpu_id=1
116534          <idle>-0     (-----) [001] d..2 82317.460315: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
116535 SDM_EventThread-644   (  619) [000] ...1 82317.460321: tracing_mark_write: E|619
116536<...>-8890 ( 8858) [001] .... 82317.460328: binder_transaction_received: transaction=1572484
116537 SDM_EventThread-644   (  619) [000] d..4 82317.460336: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116538 SDM_EventThread-644   (  619) [000] d..5 82317.460358: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116539          <idle>-0     (-----) [002] .n.1 82317.460363: cpu_idle: state=4294967295 cpu_id=2
116540          <idle>-0     (-----) [002] d..2 82317.460374: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116541<...>-8890 ( 8858) [001] ...1 82317.460383: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
116542 crtc_commit:111-321   (  321) [002] d..2 82317.460400: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116543<...>-8890 ( 8858) [001] d..1 82317.460402: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
116544 SDM_EventThread-644   (  619) [000] d..2 82317.460405: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116545          <idle>-0     (-----) [002] d..1 82317.460409: cpu_idle: state=0 cpu_id=2
116546          <idle>-0     (-----) [000] d..1 82317.460426: cpu_idle: state=0 cpu_id=0
116547<...>-8890 ( 8858) [001] d..2 82317.460430: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
116548          <idle>-0     (-----) [002] .n.1 82317.460436: cpu_idle: state=4294967295 cpu_id=2
116549<...>-8890 ( 8858) [001] ...1 82317.460443: tracing_mark_write: E|8858
116550          <idle>-0     (-----) [002] d..2 82317.460446: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
116551        DispSync-8879  ( 8858) [002] d..2 82317.460487: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116552          <idle>-0     (-----) [002] d..1 82317.460498: cpu_idle: state=0 cpu_id=2
116553<...>-8890 ( 8858) [001] d..2 82317.460507: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116554          <idle>-0     (-----) [001] d..1 82317.460529: cpu_idle: state=0 cpu_id=1
116555          <idle>-0     (-----) [003] d.s2 82317.461809: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116556          <idle>-0     (-----) [003] dns3 82317.461831: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116557          <idle>-0     (-----) [003] .n.1 82317.461848: cpu_idle: state=4294967295 cpu_id=3
116558          <idle>-0     (-----) [003] d..2 82317.461859: 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
116559     rcu_preempt-7     (    7) [003] d..2 82317.461871: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
116560     rcu_preempt-7     (    7) [003] d..3 82317.461888: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
116561     rcu_preempt-7     (    7) [003] d..2 82317.461901: 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
116562         rcuop/2-29    (   29) [003] d..2 82317.461905: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
116563         rcuop/2-29    (   29) [003] d..3 82317.461919: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
116564          <idle>-0     (-----) [002] d.h2 82317.461923: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
116565         rcuop/2-29    (   29) [003] d..2 82317.461930: 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
116566          <idle>-0     (-----) [002] dnh3 82317.461938: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
116567          <idle>-0     (-----) [002] .n.1 82317.461949: cpu_idle: state=4294967295 cpu_id=2
116568          <idle>-0     (-----) [002] d..2 82317.461961: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
116569         rcuop/3-37    (   37) [003] d..2 82317.461964: 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
116570        DispSync-8879  ( 8858) [002] d..1 82317.461976: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
116571          <idle>-0     (-----) [003] d..1 82317.461983: cpu_idle: state=0 cpu_id=3
116572        DispSync-8879  ( 8858) [002] d..2 82317.461996: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
116573          <idle>-0     (-----) [001] .n.1 82317.462004: cpu_idle: state=4294967295 cpu_id=1
116574          <idle>-0     (-----) [001] d..2 82317.462018: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
116575        DispSync-8879  ( 8858) [002] d..2 82317.462033: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116576          <idle>-0     (-----) [002] d..1 82317.462046: cpu_idle: state=0 cpu_id=2
116577  appEventThread-8881  ( 8858) [001] d..3 82317.462074: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116578          <idle>-0     (-----) [004] dnh2 82317.462107: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116579          <idle>-0     (-----) [004] .n.1 82317.462112: cpu_idle: state=4294967295 cpu_id=4
116580          <idle>-0     (-----) [004] d..2 82317.462121: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
116581  appEventThread-8881  ( 8858) [001] d..2 82317.462144: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116582          <idle>-0     (-----) [001] d..1 82317.462163: cpu_idle: state=0 cpu_id=1
116583 s.nexuslauncher-10023 (10023) [004] .... 82317.462325: binder_transaction: transaction=1572485 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
116584 s.nexuslauncher-10023 (10023) [004] .... 82317.462330: binder_transaction_alloc_buf: transaction=1572485 data_size=80 offsets_size=0
116585 s.nexuslauncher-10023 (10023) [004] d..4 82317.462335: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
116586          <idle>-0     (-----) [000] dnh2 82317.462400: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
116587          <idle>-0     (-----) [000] .n.1 82317.462408: cpu_idle: state=4294967295 cpu_id=0
116588 s.nexuslauncher-10023 (10023) [004] d..3 82317.462421: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116589          <idle>-0     (-----) [000] d..2 82317.462423: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
116590<...>-8951 ( 8858) [000] .... 82317.462434: binder_transaction_received: transaction=1572485
116591 s.nexuslauncher-10023 (10023) [004] d..4 82317.462438: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116592          <idle>-0     (-----) [005] .n.1 82317.462445: cpu_idle: state=4294967295 cpu_id=5
116593          <idle>-0     (-----) [005] d..2 82317.462457: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116594<...>-8951 ( 8858) [000] d..1 82317.462477: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
116595    RenderThread-16607 (10023) [005] d..2 82317.462487: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
116596          <idle>-0     (-----) [005] d..1 82317.462494: cpu_idle: state=0 cpu_id=5
116597<...>-8951 ( 8858) [000] d..2 82317.462500: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
116598          <idle>-0     (-----) [001] .n.1 82317.462507: cpu_idle: state=4294967295 cpu_id=1
116599          <idle>-0     (-----) [001] d..2 82317.462520: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
116600<...>-8951 ( 8858) [000] d..2 82317.462557: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116601  appEventThread-8881  ( 8858) [001] d..2 82317.462568: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116602          <idle>-0     (-----) [000] d..1 82317.462575: cpu_idle: state=0 cpu_id=0
116603          <idle>-0     (-----) [001] d..1 82317.462580: cpu_idle: state=0 cpu_id=1
116604 s.nexuslauncher-10023 (10023) [004] d..3 82317.462773: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116605 s.nexuslauncher-10023 (10023) [004] d..4 82317.462793: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116606          <idle>-0     (-----) [005] .n.1 82317.462797: cpu_idle: state=4294967295 cpu_id=5
116607          <idle>-0     (-----) [005] d..2 82317.462804: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116608 s.nexuslauncher-10023 (10023) [004] d..2 82317.462819: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
116609          <idle>-0     (-----) [004] d..1 82317.462836: cpu_idle: state=0 cpu_id=4
116610    RenderThread-16607 (10023) [005] d..1 82317.462920: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116611    RenderThread-16607 (10023) [005] d..2 82317.462938: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116612          <idle>-0     (-----) [004] .n.1 82317.462945: cpu_idle: state=4294967295 cpu_id=4
116613          <idle>-0     (-----) [004] d..2 82317.462954: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
116614    RenderThread-16607 (10023) [005] .... 82317.462985: binder_transaction: transaction=1572486 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
116615    RenderThread-16607 (10023) [005] .... 82317.462989: binder_transaction_alloc_buf: transaction=1572486 data_size=104 offsets_size=0
116616    RenderThread-16607 (10023) [005] ...2 82317.462993: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
116617    RenderThread-16607 (10023) [005] d..4 82317.462996: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
116618    RenderThread-16607 (10023) [005] dn.5 82317.463016: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116619    RenderThread-16607 (10023) [005] d..2 82317.463058: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
116620<...>-8951 ( 8858) [005] .... 82317.463070: binder_transaction_received: transaction=1572486
116621 s.nexuslauncher-10023 (10023) [004] d..2 82317.463076: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
116622          <idle>-0     (-----) [004] d..1 82317.463087: cpu_idle: state=0 cpu_id=4
116623<...>-8951 ( 8858) [005] .... 82317.463130: binder_transaction: transaction=1572487 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
116624<...>-8951 ( 8858) [005] .... 82317.463135: binder_transaction_alloc_buf: transaction=1572487 data_size=52 offsets_size=8
116625<...>-8951 ( 8858) [005] .... 82317.463142: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
116626<...>-8951 ( 8858) [005] d..2 82317.463179: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
116627    RenderThread-16607 (10023) [005] .... 82317.463190: binder_transaction_received: transaction=1572487
116628    RenderThread-16607 (10023) [005] d..2 82317.464397: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
116629          <idle>-0     (-----) [005] d..1 82317.464412: cpu_idle: state=0 cpu_id=5
116630          <idle>-0     (-----) [005] d.h2 82317.464483: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116631          <idle>-0     (-----) [005] d.h3 82317.464491: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
116632          <idle>-0     (-----) [005] dnh3 82317.464495: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116633          <idle>-0     (-----) [005] .n.1 82317.464502: cpu_idle: state=4294967295 cpu_id=5
116634          <idle>-0     (-----) [005] d..2 82317.464510: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116635          <idle>-0     (-----) [003] ...1 82317.464517: cpu_idle: state=4294967295 cpu_id=3
116636          <idle>-0     (-----) [003] d..1 82317.464522: cpu_idle: state=0 cpu_id=3
116637    RenderThread-16607 (10023) [005] .... 82317.464658: binder_transaction: transaction=1572488 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
116638    RenderThread-16607 (10023) [005] .... 82317.464662: binder_transaction_alloc_buf: transaction=1572488 data_size=192 offsets_size=8
116639    RenderThread-16607 (10023) [005] ...2 82317.464669: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
116640    RenderThread-16607 (10023) [005] d..4 82317.464672: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116641    RenderThread-16607 (10023) [005] dn.5 82317.464685: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116642    RenderThread-16607 (10023) [005] d..2 82317.464693: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
116643<...>-8951 ( 8858) [005] .... 82317.464705: binder_transaction_received: transaction=1572488
116644<...>-8951 ( 8858) [005] .... 82317.464827: binder_transaction: transaction=1572489 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
116645<...>-8951 ( 8858) [005] .... 82317.464831: binder_transaction_alloc_buf: transaction=1572489 data_size=68 offsets_size=0
116646<...>-8951 ( 8858) [005] .... 82317.464834: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
116647<...>-8951 ( 8858) [005] d..2 82317.464872: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
116648    RenderThread-16607 (10023) [005] .... 82317.464885: binder_transaction_received: transaction=1572489
116649    RenderThread-16607 (10023) [005] d..2 82317.464955: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
116650          <idle>-0     (-----) [005] d..1 82317.464972: cpu_idle: state=0 cpu_id=5
116651          <idle>-0     (-----) [000] d.h2 82317.465331: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=000
116652          <idle>-0     (-----) [000] dnh3 82317.465353: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=000
116653          <idle>-0     (-----) [000] .n.1 82317.465364: cpu_idle: state=4294967295 cpu_id=0
116654          <idle>-0     (-----) [000] d..2 82317.465381: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
116655           <...>-27566 (-----) [000] d.h2 82317.465543: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
116656           <...>-27566 (-----) [000] d.h3 82317.465574: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
116657          <idle>-0     (-----) [003] .n.1 82317.465579: cpu_idle: state=4294967295 cpu_id=3
116658          <idle>-0     (-----) [003] d..2 82317.465594: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
116659 kgsl_worker_thr-258   (  258) [003] d..2 82317.465655: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
116660 kgsl_worker_thr-258   (  258) [003] d..3 82317.465677: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
116661 kgsl_worker_thr-258   (  258) [003] d..2 82317.465703: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
116662           <...>-27566 (-----) [000] d..2 82317.465706: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
116663           <...>-27566 (-----) [000] d..3 82317.465732: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
116664           <...>-27566 (-----) [000] d..2 82317.465851: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
116665  kworker/u16:13-1147  ( 1147) [003] d..2 82317.465906: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116666          <idle>-0     (-----) [003] d..2 82317.465914: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
116667          <idle>-0     (-----) [003] dn.3 82317.465929: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
116668          <idle>-0     (-----) [003] d..2 82317.465940: 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
116669          <idle>-0     (-----) [002] d.h2 82317.465951: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
116670     ksoftirqd/3-34    (   34) [003] d.s2 82317.465953: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
116671          <idle>-0     (-----) [002] dnh3 82317.465966: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
116672     ksoftirqd/3-34    (   34) [003] d.s3 82317.465971: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
116673          <idle>-0     (-----) [002] .n.1 82317.465976: cpu_idle: state=4294967295 cpu_id=2
116674<...>-581 ( 571) [000] d..2 82317.465986: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116675          <idle>-0     (-----) [002] d..2 82317.465988: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
116676     ksoftirqd/3-34    (   34) [003] d..2 82317.465989: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
116677        DispSync-8879  ( 8858) [002] d..1 82317.466001: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116678          <idle>-0     (-----) [000] d..1 82317.466011: cpu_idle: state=0 cpu_id=0
116679        DispSync-8879  ( 8858) [002] d..2 82317.466020: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116680          <idle>-0     (-----) [001] .n.1 82317.466027: cpu_idle: state=4294967295 cpu_id=1
116681          <idle>-0     (-----) [000] ...1 82317.466037: cpu_idle: state=4294967295 cpu_id=0
116682          <idle>-0     (-----) [001] d..2 82317.466039: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
116683          <idle>-0     (-----) [000] d..1 82317.466044: cpu_idle: state=0 cpu_id=0
116684        DispSync-8879  ( 8858) [002] d..2 82317.466056: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116685          <idle>-0     (-----) [002] d..1 82317.466070: cpu_idle: state=0 cpu_id=2
116686   sfEventThread-8882  ( 8858) [001] d..3 82317.466100: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116687   sfEventThread-8882  ( 8858) [001] d..4 82317.466135: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
116688          <idle>-0     (-----) [002] .n.1 82317.466141: cpu_idle: state=4294967295 cpu_id=2
116689          <idle>-0     (-----) [002] d..2 82317.466153: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
116690   sfEventThread-8882  ( 8858) [001] d..2 82317.466195: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116691          <idle>-0     (-----) [001] d..1 82317.466213: cpu_idle: state=0 cpu_id=1
116692  kworker/u16:13-1147  ( 1147) [003] d..2 82317.466244: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116693          <idle>-0     (-----) [003] d..1 82317.466267: cpu_idle: state=0 cpu_id=3
116694  surfaceflinger-8858  ( 8858) [002] d..2 82317.466566: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
116695  surfaceflinger-8858  ( 8858) [002] d..3 82317.466627: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
116696  surfaceflinger-8858  ( 8858) [002] d..1 82317.466665: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116697  surfaceflinger-8858  ( 8858) [002] d..2 82317.466686: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116698          <idle>-0     (-----) [001] .n.1 82317.466693: cpu_idle: state=4294967295 cpu_id=1
116699          <idle>-0     (-----) [001] d..2 82317.466706: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
116700   sfEventThread-8882  ( 8858) [001] d..2 82317.466769: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
116701         rcuop/2-29    (   29) [001] d..2 82317.466776: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
116702         rcuop/2-29    (   29) [001] d..3 82317.466820: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116703         rcuop/2-29    (   29) [001] d..2 82317.466833: 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
116704     rcu_preempt-7     (    7) [001] d..2 82317.466861: 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
116705          <idle>-0     (-----) [001] d..1 82317.466877: cpu_idle: state=0 cpu_id=1
116706  surfaceflinger-8858  ( 8858) [002] ...1 82317.466923: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
116707  surfaceflinger-8858  ( 8858) [002] ...1 82317.466932: tracing_mark_write: E|8858
116708  surfaceflinger-8858  ( 8858) [002] .... 82317.466996: binder_transaction: transaction=1572490 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
116709  surfaceflinger-8858  ( 8858) [002] .... 82317.467003: binder_transaction_alloc_buf: transaction=1572490 data_size=540 offsets_size=96
116710  surfaceflinger-8858  ( 8858) [002] ...2 82317.467030: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
116711  surfaceflinger-8858  ( 8858) [002] d..4 82317.467038: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
116712  surfaceflinger-8858  ( 8858) [002] d..5 82317.467062: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
116713          <idle>-0     (-----) [000] .n.1 82317.467066: cpu_idle: state=4294967295 cpu_id=0
116714          <idle>-0     (-----) [000] d..2 82317.467081: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
116715 [email protected]   (  619) [000] .... 82317.467095: binder_transaction_received: transaction=1572490
116716  surfaceflinger-8858  ( 8858) [002] d..2 82317.467105: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116717          <idle>-0     (-----) [002] d..1 82317.467130: cpu_idle: state=0 cpu_id=2
116718 [email protected]   (  619) [000] ...1 82317.467150: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
116719 [email protected]   (  619) [000] ...1 82317.467279: tracing_mark_write: B|619|HWCSession::PresentDisplay::
116720 [email protected]   (  619) [000] ...1 82317.467477: tracing_mark_write: B|619|HWDeviceDRM::Commit::
116721 [email protected]   (  619) [000] ...1 82317.467493: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
116722 [email protected]   (  619) [000] d..2 82317.468180: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116723 [email protected]   (  619) [000] d..3 82317.468213: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116724          <idle>-0     (-----) [002] .n.1 82317.468220: cpu_idle: state=4294967295 cpu_id=2
116725          <idle>-0     (-----) [002] d..2 82317.468234: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116726 [email protected]   (  619) [000] ...1 82317.468341: tracing_mark_write: E|619
116727 [email protected]   (  619) [000] ...1 82317.468350: tracing_mark_write: E|619
116728 [email protected]   (  619) [000] ...1 82317.468422: tracing_mark_write: E|619
116729 [email protected]   (  619) [000] ...1 82317.468545: tracing_mark_write: E|619
116730 [email protected]   (  619) [000] .... 82317.468564: binder_transaction: transaction=1572491 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
116731 [email protected]   (  619) [000] .... 82317.468569: binder_transaction_alloc_buf: transaction=1572491 data_size=576 offsets_size=112
116732 [email protected]   (  619) [000] d..2 82317.468594: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
116733 [email protected]   (  619) [000] d..3 82317.468628: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116734 [email protected]   (  619) [000] .... 82317.468634: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
116735          <idle>-0     (-----) [003] .n.1 82317.468636: cpu_idle: state=4294967295 cpu_id=3
116736          <idle>-0     (-----) [003] d..2 82317.468652: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
116737  surfaceflinger-8858  ( 8858) [003] .... 82317.468666: binder_transaction_received: transaction=1572491
116738 [email protected]   (  619) [000] d..2 82317.468748: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116739          <idle>-0     (-----) [000] d..1 82317.468772: cpu_idle: state=0 cpu_id=0
116740 crtc_commit:111-321   (  321) [002] d..2 82317.469077: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
116741          <idle>-0     (-----) [002] d..1 82317.469098: cpu_idle: state=0 cpu_id=2
116742  surfaceflinger-8858  ( 8858) [003] d..2 82317.469185: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116743          <idle>-0     (-----) [003] d..1 82317.469211: cpu_idle: state=0 cpu_id=3
116744          <idle>-0     (-----) [003] ...1 82317.471886: cpu_idle: state=4294967295 cpu_id=3
116745          <idle>-0     (-----) [001] d.s2 82317.471891: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116746          <idle>-0     (-----) [003] d..1 82317.471892: cpu_idle: state=0 cpu_id=3
116747          <idle>-0     (-----) [001] dns3 82317.471914: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116748          <idle>-0     (-----) [001] .n.1 82317.471939: cpu_idle: state=4294967295 cpu_id=1
116749          <idle>-0     (-----) [001] d..2 82317.471956: 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
116750     rcu_preempt-7     (    7) [001] d..2 82317.471970: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
116751     rcu_preempt-7     (    7) [001] d..3 82317.471989: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
116752     rcu_preempt-7     (    7) [001] d..2 82317.472002: 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
116753         rcuop/2-29    (   29) [001] d..2 82317.472010: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116754         rcuop/2-29    (   29) [001] d..3 82317.472024: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116755         rcuop/2-29    (   29) [001] d..2 82317.472034: 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
116756     rcu_preempt-7     (    7) [001] d..2 82317.472066: 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
116757          <idle>-0     (-----) [001] d..1 82317.472083: cpu_idle: state=0 cpu_id=1
116758          <idle>-0     (-----) [000] d.h5 82317.473803: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116759          <idle>-0     (-----) [000] d.h6 82317.473828: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116760          <idle>-0     (-----) [003] .n.1 82317.473834: cpu_idle: state=4294967295 cpu_id=3
116761          <idle>-0     (-----) [000] d.h5 82317.473834: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116762          <idle>-0     (-----) [003] d..2 82317.473848: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
116763          <idle>-0     (-----) [000] d.h6 82317.473851: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116764          <idle>-0     (-----) [002] .n.1 82317.473860: cpu_idle: state=4294967295 cpu_id=2
116765          <idle>-0     (-----) [002] d..2 82317.473873: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116766          <idle>-0     (-----) [000] ...1 82317.473874: cpu_idle: state=4294967295 cpu_id=0
116767          <idle>-0     (-----) [000] d..1 82317.473882: cpu_idle: state=0 cpu_id=0
116768  crtc_event:111-322   (  322) [003] d..2 82317.473890: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116769          <idle>-0     (-----) [003] d..1 82317.473904: cpu_idle: state=0 cpu_id=3
116770 crtc_commit:111-321   (  321) [002] d..2 82317.474031: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
116771          <idle>-0     (-----) [002] d..1 82317.474043: cpu_idle: state=0 cpu_id=2
116772          <idle>-0     (-----) [002] d.s3 82317.475146: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116773          <idle>-0     (-----) [002] d.s4 82317.475171: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116774          <idle>-0     (-----) [003] .n.1 82317.475177: cpu_idle: state=4294967295 cpu_id=3
116775          <idle>-0     (-----) [002] d.s3 82317.475179: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
116776          <idle>-0     (-----) [003] d..2 82317.475193: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
116777          <idle>-0     (-----) [002] dns4 82317.475215: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
116778  crtc_event:111-322   (  322) [003] d..2 82317.475236: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116779          <idle>-0     (-----) [002] .n.1 82317.475243: cpu_idle: state=4294967295 cpu_id=2
116780          <idle>-0     (-----) [003] d..1 82317.475248: cpu_idle: state=0 cpu_id=3
116781          <idle>-0     (-----) [002] d..2 82317.475257: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
116782  kworker/u16:13-1147  ( 1147) [002] d..2 82317.475417: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116783          <idle>-0     (-----) [002] d..1 82317.475434: cpu_idle: state=0 cpu_id=2
116784          <idle>-0     (-----) [000] d.h5 82317.476121: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116785          <idle>-0     (-----) [000] d.h6 82317.476139: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116786          <idle>-0     (-----) [002] .n.1 82317.476147: cpu_idle: state=4294967295 cpu_id=2
116787          <idle>-0     (-----) [000] ...1 82317.476155: cpu_idle: state=4294967295 cpu_id=0
116788          <idle>-0     (-----) [002] d..2 82317.476159: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116789          <idle>-0     (-----) [000] d..1 82317.476163: cpu_idle: state=0 cpu_id=0
116790 crtc_commit:111-321   (  321) [002] d..2 82317.476241: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116791          <idle>-0     (-----) [002] d..1 82317.476255: cpu_idle: state=0 cpu_id=2
116792          <idle>-0     (-----) [000] d.h5 82317.476434: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116793          <idle>-0     (-----) [000] d.h6 82317.476452: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
116794          <idle>-0     (-----) [003] .n.1 82317.476459: cpu_idle: state=4294967295 cpu_id=3
116795          <idle>-0     (-----) [000] d.h7 82317.476462: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
116796          <idle>-0     (-----) [003] d..2 82317.476471: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
116797          <idle>-0     (-----) [000] dnh8 82317.476480: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
116798          <idle>-0     (-----) [000] dnh9 82317.476493: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116799  crtc_event:111-322   (  322) [003] d..2 82317.476500: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116800          <idle>-0     (-----) [000] dnha 82317.476509: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116801          <idle>-0     (-----) [003] d..1 82317.476513: cpu_idle: state=0 cpu_id=3
116802          <idle>-0     (-----) [000] dnh7 82317.476516: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
116803          <idle>-0     (-----) [002] .n.1 82317.476516: cpu_idle: state=4294967295 cpu_id=2
116804          <idle>-0     (-----) [002] d..2 82317.476527: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116805          <idle>-0     (-----) [000] dnh8 82317.476535: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
116806          <idle>-0     (-----) [000] .n.1 82317.476551: cpu_idle: state=4294967295 cpu_id=0
116807 crtc_commit:111-321   (  321) [002] d..2 82317.476565: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116808          <idle>-0     (-----) [000] d..2 82317.476569: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
116809          <idle>-0     (-----) [002] d..1 82317.476575: cpu_idle: state=0 cpu_id=2
116810     kworker/0:1-25262 (25262) [000] d..2 82317.476591: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
116811 SDM_EventThread-644   (  619) [000] ...1 82317.476637: tracing_mark_write: B|619|HWCCallbacks::Vsync::
116812 SDM_EventThread-644   (  619) [000] ...1 82317.476648: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
116813 SDM_EventThread-644   (  619) [000] ...1 82317.476654: tracing_mark_write: E|619
116814 SDM_EventThread-644   (  619) [000] .... 82317.476683: binder_transaction: transaction=1572492 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
116815 SDM_EventThread-644   (  619) [000] .... 82317.476688: binder_transaction_alloc_buf: transaction=1572492 data_size=76 offsets_size=0
116816 SDM_EventThread-644   (  619) [000] d..4 82317.476695: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
116817 SDM_EventThread-644   (  619) [000] d..5 82317.476725: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
116818          <idle>-0     (-----) [001] .n.1 82317.476732: cpu_idle: state=4294967295 cpu_id=1
116819          <idle>-0     (-----) [001] d..2 82317.476748: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
116820 SDM_EventThread-644   (  619) [000] ...1 82317.476755: tracing_mark_write: E|619
116821<...>-8890 ( 8858) [001] .... 82317.476759: binder_transaction_received: transaction=1572492
116822 SDM_EventThread-644   (  619) [000] d..4 82317.476770: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116823 SDM_EventThread-644   (  619) [000] d..5 82317.476793: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116824          <idle>-0     (-----) [002] .n.1 82317.476798: cpu_idle: state=4294967295 cpu_id=2
116825<...>-8890 ( 8858) [001] ...1 82317.476805: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
116826          <idle>-0     (-----) [002] d..2 82317.476808: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116827<...>-8890 ( 8858) [001] ...1 82317.476824: tracing_mark_write: E|8858
116828 crtc_commit:111-321   (  321) [002] d..2 82317.476837: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116829 SDM_EventThread-644   (  619) [000] d..2 82317.476840: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116830          <idle>-0     (-----) [002] d..1 82317.476846: cpu_idle: state=0 cpu_id=2
116831          <idle>-0     (-----) [000] d..1 82317.476862: cpu_idle: state=0 cpu_id=0
116832<...>-8890 ( 8858) [001] d..2 82317.476884: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116833          <idle>-0     (-----) [001] d..1 82317.476898: cpu_idle: state=0 cpu_id=1
116834          <idle>-0     (-----) [002] d.h2 82317.478412: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
116835          <idle>-0     (-----) [002] dnh3 82317.478432: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
116836          <idle>-0     (-----) [002] .n.1 82317.478443: cpu_idle: state=4294967295 cpu_id=2
116837          <idle>-0     (-----) [002] d..2 82317.478462: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
116838          <idle>-0     (-----) [001] d.s2 82317.478475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116839        DispSync-8879  ( 8858) [002] d..1 82317.478484: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
116840          <idle>-0     (-----) [001] dns3 82317.478500: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
116841        DispSync-8879  ( 8858) [002] d..2 82317.478507: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
116842          <idle>-0     (-----) [001] .n.1 82317.478520: cpu_idle: state=4294967295 cpu_id=1
116843          <idle>-0     (-----) [001] d..2 82317.478530: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
116844        DispSync-8879  ( 8858) [002] d..2 82317.478550: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116845          <idle>-0     (-----) [002] d..1 82317.478565: cpu_idle: state=0 cpu_id=2
116846  appEventThread-8881  ( 8858) [001] d..3 82317.478583: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116847          <idle>-0     (-----) [004] dnh2 82317.478613: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116848          <idle>-0     (-----) [004] .n.1 82317.478617: cpu_idle: state=4294967295 cpu_id=4
116849          <idle>-0     (-----) [004] d..2 82317.478627: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
116850  appEventThread-8881  ( 8858) [001] d..2 82317.478637: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
116851     rcu_preempt-7     (    7) [001] d..2 82317.478675: 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
116852          <idle>-0     (-----) [001] d..1 82317.478694: cpu_idle: state=0 cpu_id=1
116853 s.nexuslauncher-10023 (10023) [004] .... 82317.478819: binder_transaction: transaction=1572493 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
116854 s.nexuslauncher-10023 (10023) [004] .... 82317.478825: binder_transaction_alloc_buf: transaction=1572493 data_size=80 offsets_size=0
116855 s.nexuslauncher-10023 (10023) [004] d..4 82317.478830: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
116856 s.nexuslauncher-10023 (10023) [004] d.h5 82317.478894: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
116857          <idle>-0     (-----) [000] dnh2 82317.478899: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
116858          <idle>-0     (-----) [000] .n.1 82317.478907: cpu_idle: state=4294967295 cpu_id=0
116859          <idle>-0     (-----) [002] dnh2 82317.478920: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
116860          <idle>-0     (-----) [000] d..2 82317.478922: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
116861          <idle>-0     (-----) [002] .n.1 82317.478928: cpu_idle: state=4294967295 cpu_id=2
116862<...>-8951 ( 8858) [000] .... 82317.478935: binder_transaction_received: transaction=1572493
116863 s.nexuslauncher-10023 (10023) [004] d..3 82317.478935: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116864          <idle>-0     (-----) [002] d..2 82317.478939: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
116865 s.nexuslauncher-10023 (10023) [004] d..4 82317.478952: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116866          <idle>-0     (-----) [005] .n.1 82317.478958: cpu_idle: state=4294967295 cpu_id=5
116867          <idle>-0     (-----) [005] d..2 82317.478970: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116868         sugov:0-576   (  576) [002] .... 82317.478978: clk_set_rate: pwrcl_clk 825600000
116869<...>-8951 ( 8858) [000] d..1 82317.478981: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
116870         sugov:0-576   (  576) [002] .... 82317.478999: clk_set_rate: cpu3_pwrcl_clk 748800000
116871<...>-8951 ( 8858) [000] d..2 82317.479003: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
116872    RenderThread-16607 (10023) [005] d..2 82317.479005: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
116873         sugov:0-576   (  576) [002] .... 82317.479009: clk_set_rate: cpu2_pwrcl_clk 748800000
116874          <idle>-0     (-----) [001] .n.1 82317.479010: cpu_idle: state=4294967295 cpu_id=1
116875          <idle>-0     (-----) [005] d..1 82317.479014: cpu_idle: state=0 cpu_id=5
116876         sugov:0-576   (  576) [002] .... 82317.479017: clk_set_rate: cpu1_pwrcl_clk 748800000
116877          <idle>-0     (-----) [001] d..2 82317.479023: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
116878         sugov:0-576   (  576) [002] .... 82317.479026: clk_set_rate: cpu0_pwrcl_clk 825600000
116879         sugov:0-576   (  576) [002] .... 82317.479036: cpu_frequency: state=825600 cpu_id=0
116880         sugov:0-576   (  576) [002] .... 82317.479063: cpu_frequency: state=825600 cpu_id=1
116881<...>-8951 ( 8858) [000] d..2 82317.479065: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116882         sugov:0-576   (  576) [002] .... 82317.479068: cpu_frequency: state=825600 cpu_id=2
116883         sugov:0-576   (  576) [002] .... 82317.479072: cpu_frequency: state=825600 cpu_id=3
116884  appEventThread-8881  ( 8858) [001] d..2 82317.479076: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116885          <idle>-0     (-----) [000] d..1 82317.479086: cpu_idle: state=0 cpu_id=0
116886          <idle>-0     (-----) [001] d..1 82317.479089: cpu_idle: state=0 cpu_id=1
116887         sugov:0-576   (  576) [002] d..2 82317.479102: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116888          <idle>-0     (-----) [002] d..1 82317.479117: cpu_idle: state=0 cpu_id=2
116889 s.nexuslauncher-10023 (10023) [004] d..3 82317.479227: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116890 s.nexuslauncher-10023 (10023) [004] d..4 82317.479245: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116891          <idle>-0     (-----) [005] .n.1 82317.479250: cpu_idle: state=4294967295 cpu_id=5
116892          <idle>-0     (-----) [005] d..2 82317.479258: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116893 s.nexuslauncher-10023 (10023) [004] d..2 82317.479271: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
116894          <idle>-0     (-----) [004] d..1 82317.479288: cpu_idle: state=0 cpu_id=4
116895    RenderThread-16607 (10023) [005] d..1 82317.479374: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116896    RenderThread-16607 (10023) [005] d..2 82317.479392: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
116897          <idle>-0     (-----) [004] .n.1 82317.479399: cpu_idle: state=4294967295 cpu_id=4
116898          <idle>-0     (-----) [004] d..2 82317.479409: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
116899    RenderThread-16607 (10023) [005] .... 82317.479438: binder_transaction: transaction=1572494 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
116900    RenderThread-16607 (10023) [005] .... 82317.479442: binder_transaction_alloc_buf: transaction=1572494 data_size=104 offsets_size=0
116901    RenderThread-16607 (10023) [005] ...2 82317.479445: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
116902    RenderThread-16607 (10023) [005] d..4 82317.479448: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
116903    RenderThread-16607 (10023) [005] dn.5 82317.479467: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116904    RenderThread-16607 (10023) [005] d..2 82317.479507: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
116905<...>-8951 ( 8858) [005] .... 82317.479520: binder_transaction_received: transaction=1572494
116906 s.nexuslauncher-10023 (10023) [004] d..2 82317.479527: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
116907          <idle>-0     (-----) [004] d..1 82317.479538: cpu_idle: state=0 cpu_id=4
116908<...>-8951 ( 8858) [005] .... 82317.479577: binder_transaction: transaction=1572495 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
116909<...>-8951 ( 8858) [005] .... 82317.479581: binder_transaction_alloc_buf: transaction=1572495 data_size=52 offsets_size=8
116910<...>-8951 ( 8858) [005] .... 82317.479589: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
116911<...>-8951 ( 8858) [005] d..2 82317.479627: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
116912    RenderThread-16607 (10023) [005] .... 82317.479638: binder_transaction_received: transaction=1572495
116913    RenderThread-16607 (10023) [005] d..2 82317.480870: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
116914          <idle>-0     (-----) [005] d..1 82317.480885: cpu_idle: state=0 cpu_id=5
116915          <idle>-0     (-----) [005] d.h2 82317.480955: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
116916          <idle>-0     (-----) [005] d.h3 82317.480963: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
116917          <idle>-0     (-----) [005] dnh3 82317.480967: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
116918          <idle>-0     (-----) [005] .n.1 82317.480974: cpu_idle: state=4294967295 cpu_id=5
116919          <idle>-0     (-----) [005] d..2 82317.480983: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
116920    RenderThread-16607 (10023) [005] .... 82317.481127: binder_transaction: transaction=1572496 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
116921    RenderThread-16607 (10023) [005] .... 82317.481131: binder_transaction_alloc_buf: transaction=1572496 data_size=192 offsets_size=8
116922    RenderThread-16607 (10023) [005] ...2 82317.481138: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
116923    RenderThread-16607 (10023) [005] d..4 82317.481141: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116924    RenderThread-16607 (10023) [005] dn.5 82317.481154: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
116925    RenderThread-16607 (10023) [005] d..2 82317.481161: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
116926<...>-8951 ( 8858) [005] .... 82317.481173: binder_transaction_received: transaction=1572496
116927<...>-8951 ( 8858) [005] .... 82317.481295: binder_transaction: transaction=1572497 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
116928<...>-8951 ( 8858) [005] .... 82317.481299: binder_transaction_alloc_buf: transaction=1572497 data_size=68 offsets_size=0
116929<...>-8951 ( 8858) [005] .... 82317.481302: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
116930<...>-8951 ( 8858) [005] d..2 82317.481341: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
116931    RenderThread-16607 (10023) [005] .... 82317.481353: binder_transaction_received: transaction=1572497
116932    RenderThread-16607 (10023) [005] d..2 82317.481423: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
116933          <idle>-0     (-----) [005] d..1 82317.481440: cpu_idle: state=0 cpu_id=5
116934          <idle>-0     (-----) [000] d.h3 82317.482026: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
116935          <idle>-0     (-----) [000] d.h4 82317.482049: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
116936          <idle>-0     (-----) [003] .n.1 82317.482055: cpu_idle: state=4294967295 cpu_id=3
116937          <idle>-0     (-----) [000] d..2 82317.482064: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116938          <idle>-0     (-----) [003] d..2 82317.482068: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
116939          <idle>-0     (-----) [000] dn.3 82317.482077: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
116940          <idle>-0     (-----) [000] .n.1 82317.482081: cpu_idle: state=4294967295 cpu_id=0
116941          <idle>-0     (-----) [000] d..2 82317.482097: 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
116942 kgsl_worker_thr-258   (  258) [003] d..2 82317.482128: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
116943     ksoftirqd/0-3     (    3) [000] d..2 82317.482136: 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
116944          <idle>-0     (-----) [000] d..1 82317.482150: cpu_idle: state=0 cpu_id=0
116945 kgsl_worker_thr-258   (  258) [003] d..3 82317.482178: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
116946          <idle>-0     (-----) [000] .n.1 82317.482183: cpu_idle: state=4294967295 cpu_id=0
116947          <idle>-0     (-----) [000] d..2 82317.482196: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
116948 kgsl_worker_thr-258   (  258) [003] d..2 82317.482216: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116949          <idle>-0     (-----) [003] d..1 82317.482228: cpu_idle: state=0 cpu_id=3
116950  kworker/u16:13-1147  ( 1147) [000] d..2 82317.482405: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
116951          <idle>-0     (-----) [000] d..1 82317.482421: cpu_idle: state=0 cpu_id=0
116952          <idle>-0     (-----) [002] d.h2 82317.482421: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
116953          <idle>-0     (-----) [002] dnh3 82317.482436: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
116954          <idle>-0     (-----) [002] .n.1 82317.482446: cpu_idle: state=4294967295 cpu_id=2
116955          <idle>-0     (-----) [002] d..2 82317.482457: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
116956        DispSync-8879  ( 8858) [002] d..1 82317.482475: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116957        DispSync-8879  ( 8858) [002] d..2 82317.482492: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116958          <idle>-0     (-----) [001] .n.1 82317.482497: cpu_idle: state=4294967295 cpu_id=1
116959          <idle>-0     (-----) [001] d..2 82317.482510: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
116960        DispSync-8879  ( 8858) [002] d..2 82317.482527: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
116961          <idle>-0     (-----) [002] d..1 82317.482541: cpu_idle: state=0 cpu_id=2
116962   sfEventThread-8882  ( 8858) [001] d..3 82317.482547: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116963   sfEventThread-8882  ( 8858) [001] d..4 82317.482571: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
116964          <idle>-0     (-----) [003] .n.1 82317.482577: cpu_idle: state=4294967295 cpu_id=3
116965          <idle>-0     (-----) [003] d..2 82317.482586: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
116966   sfEventThread-8882  ( 8858) [001] d..2 82317.482608: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116967          <idle>-0     (-----) [001] d..1 82317.482620: cpu_idle: state=0 cpu_id=1
116968  surfaceflinger-8858  ( 8858) [003] d..1 82317.482946: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116969  surfaceflinger-8858  ( 8858) [003] d..2 82317.482973: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
116970          <idle>-0     (-----) [001] .n.1 82317.482978: cpu_idle: state=4294967295 cpu_id=1
116971          <idle>-0     (-----) [001] d..2 82317.482987: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
116972   sfEventThread-8882  ( 8858) [001] d..2 82317.483023: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
116973          <idle>-0     (-----) [001] d..1 82317.483031: cpu_idle: state=0 cpu_id=1
116974  surfaceflinger-8858  ( 8858) [003] ...1 82317.483175: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
116975  surfaceflinger-8858  ( 8858) [003] ...1 82317.483184: tracing_mark_write: E|8858
116976  surfaceflinger-8858  ( 8858) [003] .... 82317.483243: binder_transaction: transaction=1572498 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
116977  surfaceflinger-8858  ( 8858) [003] .... 82317.483249: binder_transaction_alloc_buf: transaction=1572498 data_size=540 offsets_size=96
116978  surfaceflinger-8858  ( 8858) [003] ...2 82317.483274: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
116979  surfaceflinger-8858  ( 8858) [003] d..4 82317.483281: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
116980  surfaceflinger-8858  ( 8858) [003] d..5 82317.483305: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
116981          <idle>-0     (-----) [000] .n.1 82317.483310: cpu_idle: state=4294967295 cpu_id=0
116982          <idle>-0     (-----) [000] d..2 82317.483323: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
116983 [email protected]   (  619) [000] .... 82317.483335: binder_transaction_received: transaction=1572498
116984  surfaceflinger-8858  ( 8858) [003] d..2 82317.483345: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
116985          <idle>-0     (-----) [003] d..1 82317.483362: cpu_idle: state=0 cpu_id=3
116986 [email protected]   (  619) [000] ...1 82317.483387: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
116987 [email protected]   (  619) [000] ...1 82317.483495: tracing_mark_write: B|619|HWCSession::PresentDisplay::
116988 [email protected]   (  619) [000] ...1 82317.483667: tracing_mark_write: B|619|HWDeviceDRM::Commit::
116989 [email protected]   (  619) [000] ...1 82317.483682: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
116990 [email protected]   (  619) [000] d..2 82317.484292: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116991 [email protected]   (  619) [000] d..3 82317.484322: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
116992          <idle>-0     (-----) [002] .n.1 82317.484328: cpu_idle: state=4294967295 cpu_id=2
116993          <idle>-0     (-----) [002] d..2 82317.484340: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
116994 [email protected]   (  619) [000] ...1 82317.484438: tracing_mark_write: E|619
116995 [email protected]   (  619) [000] ...1 82317.484445: tracing_mark_write: E|619
116996 [email protected]   (  619) [000] ...1 82317.484510: tracing_mark_write: E|619
116997 [email protected]   (  619) [000] ...1 82317.484559: tracing_mark_write: E|619
116998 [email protected]   (  619) [000] .... 82317.484577: binder_transaction: transaction=1572499 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
116999 [email protected]   (  619) [000] .... 82317.484582: binder_transaction_alloc_buf: transaction=1572499 data_size=576 offsets_size=112
117000 [email protected]   (  619) [000] d..2 82317.484607: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
117001 [email protected]   (  619) [000] d..3 82317.484630: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
117002 [email protected]   (  619) [000] .... 82317.484636: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
117003          <idle>-0     (-----) [003] .n.1 82317.484638: cpu_idle: state=4294967295 cpu_id=3
117004          <idle>-0     (-----) [003] d..2 82317.484647: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
117005  surfaceflinger-8858  ( 8858) [003] .... 82317.484658: binder_transaction_received: transaction=1572499
117006 [email protected]   (  619) [000] d..2 82317.484741: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117007          <idle>-0     (-----) [000] d..1 82317.484764: cpu_idle: state=0 cpu_id=0
117008 crtc_commit:111-321   (  321) [002] d..2 82317.485097: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
117009          <idle>-0     (-----) [002] d..1 82317.485115: cpu_idle: state=0 cpu_id=2
117010  surfaceflinger-8858  ( 8858) [003] d..2 82317.485121: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117011          <idle>-0     (-----) [001] d.s2 82317.485144: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117012          <idle>-0     (-----) [001] dns3 82317.485166: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117013          <idle>-0     (-----) [003] d.s4 82317.485170: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
117014          <idle>-0     (-----) [001] dns3 82317.485174: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
117015          <idle>-0     (-----) [003] dns5 82317.485188: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
117016          <idle>-0     (-----) [001] dns4 82317.485210: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
117017          <idle>-0     (-----) [003] d..2 82317.485225: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
117018          <idle>-0     (-----) [001] .n.1 82317.485237: cpu_idle: state=4294967295 cpu_id=1
117019    kworker/3:1H-873   (  873) [003] d..2 82317.485246: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
117020          <idle>-0     (-----) [001] d..2 82317.485249: 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
117021     rcu_preempt-7     (    7) [001] d..2 82317.485259: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
117022     rcu_preempt-7     (    7) [001] d..3 82317.485276: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
117023     rcu_preempt-7     (    7) [001] d..2 82317.485297: 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
117024         rcuop/2-29    (   29) [001] d..2 82317.485308: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
117025         rcuop/2-29    (   29) [001] d..3 82317.485348: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
117026         rcuop/2-29    (   29) [001] d..2 82317.485359: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117027         rcuop/2-29    (   29) [001] d..3 82317.485372: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117028         rcuop/2-29    (   29) [001] d..2 82317.485383: 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
117029         rcuop/3-37    (   37) [001] d..2 82317.485400: 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
117030     rcu_preempt-7     (    7) [001] d..2 82317.485429: 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
117031          <idle>-0     (-----) [001] d..1 82317.485469: cpu_idle: state=0 cpu_id=1
117032          <idle>-0     (-----) [001] ...1 82317.485485: cpu_idle: state=4294967295 cpu_id=1
117033          <idle>-0     (-----) [001] d..1 82317.485490: cpu_idle: state=0 cpu_id=1
117034  kworker/u16:13-1147  ( 1147) [003] d..2 82317.485534: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117035          <idle>-0     (-----) [003] d..1 82317.485557: cpu_idle: state=0 cpu_id=3
117036          <idle>-0     (-----) [003] ...1 82317.487594: cpu_idle: state=4294967295 cpu_id=3
117037          <idle>-0     (-----) [003] d..1 82317.487599: cpu_idle: state=0 cpu_id=3
117038          <idle>-0     (-----) [000] d.h5 82317.490281: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117039          <idle>-0     (-----) [000] d.h6 82317.490302: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117040          <idle>-0     (-----) [003] .n.1 82317.490307: cpu_idle: state=4294967295 cpu_id=3
117041          <idle>-0     (-----) [000] d.h5 82317.490308: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117042          <idle>-0     (-----) [003] d..2 82317.490322: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
117043          <idle>-0     (-----) [000] d.h6 82317.490322: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117044          <idle>-0     (-----) [002] .n.1 82317.490329: cpu_idle: state=4294967295 cpu_id=2
117045          <idle>-0     (-----) [000] d..2 82317.490338: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117046          <idle>-0     (-----) [002] d..2 82317.490343: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
117047          <idle>-0     (-----) [000] dn.3 82317.490351: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
117048          <idle>-0     (-----) [000] .n.1 82317.490358: cpu_idle: state=4294967295 cpu_id=0
117049  crtc_event:111-322   (  322) [003] d..2 82317.490372: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117050          <idle>-0     (-----) [000] d..2 82317.490375: 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
117051          <idle>-0     (-----) [003] d..1 82317.490385: cpu_idle: state=0 cpu_id=3
117052     ksoftirqd/0-3     (    3) [000] d..2 82317.490409: 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
117053          <idle>-0     (-----) [000] d..1 82317.490424: cpu_idle: state=0 cpu_id=0
117054 crtc_commit:111-321   (  321) [002] d..2 82317.490493: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
117055          <idle>-0     (-----) [002] d..1 82317.490504: cpu_idle: state=0 cpu_id=2
117056          <idle>-0     (-----) [001] d.s2 82317.491804: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117057          <idle>-0     (-----) [001] dns3 82317.491865: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117058          <idle>-0     (-----) [001] .n.1 82317.491880: cpu_idle: state=4294967295 cpu_id=1
117059          <idle>-0     (-----) [002] d.s3 82317.491889: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117060          <idle>-0     (-----) [001] d..2 82317.491894: 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
117061          <idle>-0     (-----) [002] d.s4 82317.491912: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117062          <idle>-0     (-----) [003] .n.1 82317.491918: cpu_idle: state=4294967295 cpu_id=3
117063          <idle>-0     (-----) [003] d..2 82317.491929: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
117064     rcu_preempt-7     (    7) [001] d..2 82317.491931: 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
117065          <idle>-0     (-----) [002] ...1 82317.491944: cpu_idle: state=4294967295 cpu_id=2
117066          <idle>-0     (-----) [001] d..1 82317.491945: cpu_idle: state=0 cpu_id=1
117067          <idle>-0     (-----) [002] d..1 82317.491951: cpu_idle: state=0 cpu_id=2
117068  crtc_event:111-322   (  322) [003] d..2 82317.491960: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117069          <idle>-0     (-----) [003] d..1 82317.491972: cpu_idle: state=0 cpu_id=3
117070          <idle>-0     (-----) [000] d.h5 82317.492598: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117071          <idle>-0     (-----) [000] d.h6 82317.492620: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117072          <idle>-0     (-----) [002] .n.1 82317.492626: cpu_idle: state=4294967295 cpu_id=2
117073          <idle>-0     (-----) [000] ...1 82317.492636: cpu_idle: state=4294967295 cpu_id=0
117074          <idle>-0     (-----) [002] d..2 82317.492638: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
117075          <idle>-0     (-----) [000] d..1 82317.492643: cpu_idle: state=0 cpu_id=0
117076 crtc_commit:111-321   (  321) [002] d..2 82317.492713: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117077          <idle>-0     (-----) [002] d..1 82317.492726: cpu_idle: state=0 cpu_id=2
117078          <idle>-0     (-----) [000] d.h5 82317.492913: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117079          <idle>-0     (-----) [000] d.h6 82317.492931: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117080          <idle>-0     (-----) [003] .n.1 82317.492936: cpu_idle: state=4294967295 cpu_id=3
117081          <idle>-0     (-----) [000] d.h7 82317.492940: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
117082          <idle>-0     (-----) [003] d..2 82317.492947: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
117083          <idle>-0     (-----) [000] dnh8 82317.492954: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
117084          <idle>-0     (-----) [000] dnh9 82317.492965: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117085  crtc_event:111-322   (  322) [003] d..2 82317.492973: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117086          <idle>-0     (-----) [000] dnha 82317.492981: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117087          <idle>-0     (-----) [003] d..1 82317.492985: cpu_idle: state=0 cpu_id=3
117088          <idle>-0     (-----) [000] dnh7 82317.492987: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
117089          <idle>-0     (-----) [002] .n.1 82317.492987: cpu_idle: state=4294967295 cpu_id=2
117090          <idle>-0     (-----) [002] d..2 82317.492998: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
117091          <idle>-0     (-----) [000] dnh8 82317.493006: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
117092          <idle>-0     (-----) [000] .n.1 82317.493023: cpu_idle: state=4294967295 cpu_id=0
117093 crtc_commit:111-321   (  321) [002] d..2 82317.493033: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117094          <idle>-0     (-----) [000] d..2 82317.493040: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
117095          <idle>-0     (-----) [002] d..1 82317.493042: cpu_idle: state=0 cpu_id=2
117096     kworker/0:1-25262 (25262) [000] d..2 82317.493061: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
117097 SDM_EventThread-644   (  619) [000] ...1 82317.493103: tracing_mark_write: B|619|HWCCallbacks::Vsync::
117098 SDM_EventThread-644   (  619) [000] ...1 82317.493114: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
117099 SDM_EventThread-644   (  619) [000] ...1 82317.493119: tracing_mark_write: E|619
117100 SDM_EventThread-644   (  619) [000] .... 82317.493147: binder_transaction: transaction=1572500 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
117101 SDM_EventThread-644   (  619) [000] .... 82317.493152: binder_transaction_alloc_buf: transaction=1572500 data_size=76 offsets_size=0
117102 SDM_EventThread-644   (  619) [000] d..4 82317.493157: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
117103 SDM_EventThread-644   (  619) [000] d..5 82317.493184: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
117104          <idle>-0     (-----) [001] .n.1 82317.493189: cpu_idle: state=4294967295 cpu_id=1
117105          <idle>-0     (-----) [001] d..2 82317.493203: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
117106<...>-8890 ( 8858) [001] .... 82317.493213: binder_transaction_received: transaction=1572500
117107 SDM_EventThread-644   (  619) [000] ...1 82317.493213: tracing_mark_write: E|619
117108 SDM_EventThread-644   (  619) [000] d..4 82317.493227: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117109 SDM_EventThread-644   (  619) [000] d..5 82317.493248: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117110          <idle>-0     (-----) [002] .n.1 82317.493253: cpu_idle: state=4294967295 cpu_id=2
117111<...>-8890 ( 8858) [001] ...1 82317.493255: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
117112          <idle>-0     (-----) [002] d..2 82317.493263: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
117113<...>-8890 ( 8858) [001] ...1 82317.493272: tracing_mark_write: E|8858
117114 crtc_commit:111-321   (  321) [002] d..2 82317.493288: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117115 SDM_EventThread-644   (  619) [000] d..2 82317.493291: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117116          <idle>-0     (-----) [002] d..1 82317.493296: cpu_idle: state=0 cpu_id=2
117117          <idle>-0     (-----) [000] d..1 82317.493312: cpu_idle: state=0 cpu_id=0
117118<...>-8890 ( 8858) [001] d..2 82317.493325: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117119          <idle>-0     (-----) [001] d..1 82317.493341: cpu_idle: state=0 cpu_id=1
117120          <idle>-0     (-----) [002] d.h2 82317.494874: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
117121          <idle>-0     (-----) [002] dnh3 82317.494892: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
117122          <idle>-0     (-----) [002] .n.1 82317.494902: cpu_idle: state=4294967295 cpu_id=2
117123          <idle>-0     (-----) [002] d..2 82317.494912: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
117124        DispSync-8879  ( 8858) [002] d..1 82317.494929: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
117125        DispSync-8879  ( 8858) [002] d..2 82317.494945: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
117126          <idle>-0     (-----) [001] .n.1 82317.494952: cpu_idle: state=4294967295 cpu_id=1
117127          <idle>-0     (-----) [001] d..2 82317.494964: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
117128        DispSync-8879  ( 8858) [002] d..2 82317.494977: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117129          <idle>-0     (-----) [002] d..1 82317.494990: cpu_idle: state=0 cpu_id=2
117130  appEventThread-8881  ( 8858) [001] d..3 82317.495010: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
117131          <idle>-0     (-----) [003] ...1 82317.495023: cpu_idle: state=4294967295 cpu_id=3
117132          <idle>-0     (-----) [003] d..1 82317.495028: cpu_idle: state=0 cpu_id=3
117133          <idle>-0     (-----) [004] dnh2 82317.495043: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
117134          <idle>-0     (-----) [004] .n.1 82317.495048: cpu_idle: state=4294967295 cpu_id=4
117135          <idle>-0     (-----) [004] d..2 82317.495056: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
117136  appEventThread-8881  ( 8858) [001] d..2 82317.495074: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117137          <idle>-0     (-----) [001] d..1 82317.495090: cpu_idle: state=0 cpu_id=1
117138 s.nexuslauncher-10023 (10023) [004] d.s2 82317.495142: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
117139          <idle>-0     (-----) [000] dnh2 82317.495188: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
117140          <idle>-0     (-----) [000] .n.1 82317.495195: cpu_idle: state=4294967295 cpu_id=0
117141          <idle>-0     (-----) [000] d..2 82317.495211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
117142 s.nexuslauncher-10023 (10023) [004] .... 82317.495370: binder_transaction: transaction=1572501 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
117143 s.nexuslauncher-10023 (10023) [004] .... 82317.495375: binder_transaction_alloc_buf: transaction=1572501 data_size=80 offsets_size=0
117144 s.nexuslauncher-10023 (10023) [004] d..4 82317.495380: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
117145  kworker/u16:13-1147  ( 1147) [000] d..2 82317.495385: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117146          <idle>-0     (-----) [000] d..1 82317.495401: cpu_idle: state=0 cpu_id=0
117147          <idle>-0     (-----) [000] dnh2 82317.495443: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
117148          <idle>-0     (-----) [000] .n.1 82317.495450: cpu_idle: state=4294967295 cpu_id=0
117149          <idle>-0     (-----) [000] d..2 82317.495462: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
117150 s.nexuslauncher-10023 (10023) [004] d..3 82317.495462: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
117151<...>-8951 ( 8858) [000] .... 82317.495473: binder_transaction_received: transaction=1572501
117152 s.nexuslauncher-10023 (10023) [004] d..4 82317.495480: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
117153          <idle>-0     (-----) [005] .n.1 82317.495486: cpu_idle: state=4294967295 cpu_id=5
117154          <idle>-0     (-----) [005] d..2 82317.495500: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
117155<...>-8951 ( 8858) [000] d..1 82317.495518: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
117156    RenderThread-16607 (10023) [005] d..2 82317.495534: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
117157<...>-8951 ( 8858) [000] d..2 82317.495541: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
117158          <idle>-0     (-----) [005] d..1 82317.495543: cpu_idle: state=0 cpu_id=5
117159          <idle>-0     (-----) [001] .n.1 82317.495547: cpu_idle: state=4294967295 cpu_id=1
117160          <idle>-0     (-----) [001] d..2 82317.495560: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
117161<...>-8951 ( 8858) [000] d..2 82317.495594: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117162  appEventThread-8881  ( 8858) [001] d..2 82317.495607: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117163          <idle>-0     (-----) [000] d..1 82317.495613: cpu_idle: state=0 cpu_id=0
117164          <idle>-0     (-----) [001] d..1 82317.495618: cpu_idle: state=0 cpu_id=1
117165 s.nexuslauncher-10023 (10023) [004] d..3 82317.495652: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
117166 s.nexuslauncher-10023 (10023) [004] d..4 82317.495668: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
117167          <idle>-0     (-----) [005] .n.1 82317.495674: cpu_idle: state=4294967295 cpu_id=5
117168          <idle>-0     (-----) [005] d..2 82317.495682: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
117169 s.nexuslauncher-10023 (10023) [004] d..2 82317.495695: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117170          <idle>-0     (-----) [004] d..1 82317.495711: cpu_idle: state=0 cpu_id=4
117171    RenderThread-16607 (10023) [005] d..1 82317.495781: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
117172    RenderThread-16607 (10023) [005] d..2 82317.495796: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
117173          <idle>-0     (-----) [004] .n.1 82317.495803: cpu_idle: state=4294967295 cpu_id=4
117174          <idle>-0     (-----) [004] d..2 82317.495812: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
117175    RenderThread-16607 (10023) [005] .... 82317.495845: binder_transaction: transaction=1572502 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
117176    RenderThread-16607 (10023) [005] .... 82317.495849: binder_transaction_alloc_buf: transaction=1572502 data_size=104 offsets_size=0
117177    RenderThread-16607 (10023) [005] ...2 82317.495853: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
117178    RenderThread-16607 (10023) [005] d..4 82317.495857: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
117179    RenderThread-16607 (10023) [005] dn.5 82317.495877: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
117180 s.nexuslauncher-10023 (10023) [004] d..2 82317.495932: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
117181    RenderThread-16607 (10023) [005] d..2 82317.495945: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
117182<...>-8951 ( 8858) [004] .... 82317.495949: binder_transaction_received: transaction=1572502
117183          <idle>-0     (-----) [005] d..1 82317.495959: cpu_idle: state=0 cpu_id=5
117184<...>-8951 ( 8858) [004] .... 82317.496016: binder_transaction: transaction=1572503 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
117185<...>-8951 ( 8858) [004] .... 82317.496022: binder_transaction_alloc_buf: transaction=1572503 data_size=52 offsets_size=8
117186<...>-8951 ( 8858) [004] d..2 82317.496030: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
117187<...>-8951 ( 8858) [004] d..3 82317.496051: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
117188<...>-8951 ( 8858) [004] .... 82317.496055: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
117189<...>-8951 ( 8858) [004] d..2 82317.496091: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
117190    RenderThread-16607 (10023) [004] .... 82317.496102: binder_transaction_received: transaction=1572503
117191    RenderThread-16607 (10023) [004] d..2 82317.497345: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
117192          <idle>-0     (-----) [004] d..1 82317.497362: cpu_idle: state=0 cpu_id=4
117193          <idle>-0     (-----) [004] d.h2 82317.497431: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
117194          <idle>-0     (-----) [004] d.h3 82317.497439: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
117195          <idle>-0     (-----) [004] dnh3 82317.497443: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
117196          <idle>-0     (-----) [004] .n.1 82317.497449: cpu_idle: state=4294967295 cpu_id=4
117197          <idle>-0     (-----) [004] d..2 82317.497458: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
117198    RenderThread-16607 (10023) [004] .... 82317.497609: binder_transaction: transaction=1572504 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
117199    RenderThread-16607 (10023) [004] .... 82317.497614: binder_transaction_alloc_buf: transaction=1572504 data_size=192 offsets_size=8
117200    RenderThread-16607 (10023) [004] ...2 82317.497621: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
117201    RenderThread-16607 (10023) [004] d..4 82317.497624: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
117202    RenderThread-16607 (10023) [004] dn.5 82317.497636: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
117203    RenderThread-16607 (10023) [004] d..2 82317.497643: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
117204<...>-8951 ( 8858) [004] .... 82317.497655: binder_transaction_received: transaction=1572504
117205<...>-8951 ( 8858) [004] .... 82317.497780: binder_transaction: transaction=1572505 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
117206<...>-8951 ( 8858) [004] .... 82317.497784: binder_transaction_alloc_buf: transaction=1572505 data_size=68 offsets_size=0
117207<...>-8951 ( 8858) [004] .... 82317.497787: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
117208<...>-8951 ( 8858) [004] d..2 82317.497824: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
117209    RenderThread-16607 (10023) [004] .... 82317.497836: binder_transaction_received: transaction=1572505
117210    RenderThread-16607 (10023) [004] d..2 82317.497908: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117211          <idle>-0     (-----) [004] d..1 82317.497924: cpu_idle: state=0 cpu_id=4
117212          <idle>-0     (-----) [001] d.s2 82317.498476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117213          <idle>-0     (-----) [000] d.h3 82317.498496: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
117214          <idle>-0     (-----) [001] dns3 82317.498497: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117215          <idle>-0     (-----) [001] dns3 82317.498504: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
117216          <idle>-0     (-----) [000] d.h4 82317.498520: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
117217          <idle>-0     (-----) [003] .n.1 82317.498525: cpu_idle: state=4294967295 cpu_id=3
117218          <idle>-0     (-----) [003] d..2 82317.498538: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
117219          <idle>-0     (-----) [001] dns4 82317.498541: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
117220          <idle>-0     (-----) [000] ...1 82317.498544: cpu_idle: state=4294967295 cpu_id=0
117221          <idle>-0     (-----) [000] d..1 82317.498551: cpu_idle: state=0 cpu_id=0
117222          <idle>-0     (-----) [001] .n.1 82317.498561: cpu_idle: state=4294967295 cpu_id=1
117223          <idle>-0     (-----) [001] d..2 82317.498573: 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
117224     rcu_preempt-7     (    7) [001] d..2 82317.498583: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
117225     rcu_preempt-7     (    7) [001] d..3 82317.498629: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
117226 kgsl_worker_thr-258   (  258) [003] d..2 82317.498647: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
117227     rcu_preempt-7     (    7) [001] d..2 82317.498648: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
117228  kworker/u16:13-1147  ( 1147) [001] d..2 82317.498654: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
117229         rcuop/2-29    (   29) [003] d..2 82317.498655: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
117230  kworker/u16:13-1147  ( 1147) [001] d..3 82317.498696: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
117231         rcuop/2-29    (   29) [003] d..3 82317.498716: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
117232         rcuop/2-29    (   29) [003] d..2 82317.498729: 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
117233         rcuop/3-37    (   37) [003] d..2 82317.498746: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
117234  kworker/u16:13-1147  ( 1147) [001] d..2 82317.498788: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117235          <idle>-0     (-----) [001] d..1 82317.498806: cpu_idle: state=0 cpu_id=1
117236          <idle>-0     (-----) [002] d.h2 82317.498872: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
117237          <idle>-0     (-----) [002] dnh3 82317.498886: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
117238          <idle>-0     (-----) [002] .n.1 82317.498895: cpu_idle: state=4294967295 cpu_id=2
117239          <idle>-0     (-----) [002] d..2 82317.498906: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
117240        DispSync-8879  ( 8858) [002] d..1 82317.498918: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
117241        DispSync-8879  ( 8858) [002] d..2 82317.498935: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
117242          <idle>-0     (-----) [001] .n.1 82317.498941: cpu_idle: state=4294967295 cpu_id=1
117243  kworker/u16:15-1311  ( 1311) [003] d..2 82317.498952: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117244          <idle>-0     (-----) [001] d..2 82317.498953: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
117245        DispSync-8879  ( 8858) [002] d..2 82317.498967: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117246          <idle>-0     (-----) [003] d..1 82317.498974: cpu_idle: state=0 cpu_id=3
117247          <idle>-0     (-----) [002] d..1 82317.498982: cpu_idle: state=0 cpu_id=2
117248   sfEventThread-8882  ( 8858) [001] d..3 82317.498995: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
117249   sfEventThread-8882  ( 8858) [001] d..4 82317.499018: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
117250          <idle>-0     (-----) [003] .n.1 82317.499025: cpu_idle: state=4294967295 cpu_id=3
117251          <idle>-0     (-----) [003] d..2 82317.499039: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
117252   sfEventThread-8882  ( 8858) [001] d..2 82317.499057: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117253          <idle>-0     (-----) [001] d..1 82317.499074: cpu_idle: state=0 cpu_id=1
117254  surfaceflinger-8858  ( 8858) [003] d..2 82317.499397: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
117255  surfaceflinger-8858  ( 8858) [003] d..3 82317.499427: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
117256  surfaceflinger-8858  ( 8858) [003] d..1 82317.499462: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
117257  surfaceflinger-8858  ( 8858) [003] d..2 82317.499481: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
117258          <idle>-0     (-----) [001] .n.1 82317.499488: cpu_idle: state=4294967295 cpu_id=1
117259          <idle>-0     (-----) [001] d..2 82317.499500: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
117260   sfEventThread-8882  ( 8858) [001] d..2 82317.499557: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
117261         rcuop/2-29    (   29) [001] d..2 82317.499563: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117262         rcuop/2-29    (   29) [001] d..3 82317.499582: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117263         rcuop/2-29    (   29) [001] d..2 82317.499592: 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
117264     rcu_preempt-7     (    7) [001] d..2 82317.499616: 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
117265          <idle>-0     (-----) [001] d..1 82317.499630: cpu_idle: state=0 cpu_id=1
117266  surfaceflinger-8858  ( 8858) [003] ...1 82317.499695: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
117267  surfaceflinger-8858  ( 8858) [003] ...1 82317.499703: tracing_mark_write: E|8858
117268  surfaceflinger-8858  ( 8858) [003] .... 82317.499765: binder_transaction: transaction=1572506 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
117269  surfaceflinger-8858  ( 8858) [003] .... 82317.499771: binder_transaction_alloc_buf: transaction=1572506 data_size=540 offsets_size=96
117270  surfaceflinger-8858  ( 8858) [003] ...2 82317.499796: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
117271  surfaceflinger-8858  ( 8858) [003] d..4 82317.499803: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
117272  surfaceflinger-8858  ( 8858) [003] d..5 82317.499826: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
117273          <idle>-0     (-----) [000] .n.1 82317.499830: cpu_idle: state=4294967295 cpu_id=0
117274          <idle>-0     (-----) [000] d..2 82317.499844: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
117275 [email protected]   (  619) [000] .... 82317.499857: binder_transaction_received: transaction=1572506
117276  surfaceflinger-8858  ( 8858) [003] d..2 82317.499866: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117277          <idle>-0     (-----) [003] d..1 82317.499889: cpu_idle: state=0 cpu_id=3
117278 [email protected]   (  619) [000] ...1 82317.499908: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
117279 [email protected]   (  619) [000] ...1 82317.500025: tracing_mark_write: B|619|HWCSession::PresentDisplay::
117280 [email protected]   (  619) [000] ...1 82317.500206: tracing_mark_write: B|619|HWDeviceDRM::Commit::
117281 [email protected]   (  619) [000] ...1 82317.500221: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
117282 [email protected]   (  619) [000] d..2 82317.500854: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117283 [email protected]   (  619) [000] d..3 82317.500882: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117284          <idle>-0     (-----) [002] .n.1 82317.500887: cpu_idle: state=4294967295 cpu_id=2
117285          <idle>-0     (-----) [002] d..2 82317.500900: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
117286          <idle>-0     (-----) [004] d.h2 82317.500936: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
117287          <idle>-0     (-----) [004] dnh3 82317.500947: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
117288          <idle>-0     (-----) [004] .n.1 82317.500954: cpu_idle: state=4294967295 cpu_id=4
117289          <idle>-0     (-----) [004] d..2 82317.500963: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
117290 [email protected]   (  619) [000] ...1 82317.501004: tracing_mark_write: E|619
117291 [email protected]   (  619) [000] ...1 82317.501012: tracing_mark_write: E|619
117292 [email protected]   (  619) [000] ...1 82317.501075: tracing_mark_write: E|619
117293 [email protected]   (  619) [000] ...1 82317.501122: tracing_mark_write: E|619
117294 [email protected]   (  619) [000] .... 82317.501139: binder_transaction: transaction=1572507 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
117295 [email protected]   (  619) [000] .... 82317.501145: binder_transaction_alloc_buf: transaction=1572507 data_size=576 offsets_size=112
117296 [email protected]   (  619) [000] d..2 82317.501168: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
117297 [email protected]   (  619) [000] d..3 82317.501191: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
117298 [email protected]   (  619) [000] .... 82317.501197: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
117299          <idle>-0     (-----) [003] .n.1 82317.501199: cpu_idle: state=4294967295 cpu_id=3
117300          <idle>-0     (-----) [003] d..2 82317.501211: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
117301  surfaceflinger-8858  ( 8858) [003] .... 82317.501222: binder_transaction_received: transaction=1572507
117302 s.nexuslauncher-10023 (10023) [004] .... 82317.501271: binder_transaction: transaction=1572508 dest_node=395848 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x32
117303 s.nexuslauncher-10023 (10023) [004] .... 82317.501277: binder_transaction_alloc_buf: transaction=1572508 data_size=60 offsets_size=0
117304 s.nexuslauncher-10023 (10023) [004] ...2 82317.501282: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
117305 s.nexuslauncher-10023 (10023) [004] d..4 82317.501286: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=007
117306 [email protected]   (  619) [000] d..2 82317.501301: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117307 s.nexuslauncher-10023 (10023) [004] d..5 82317.501314: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=006
117308          <idle>-0     (-----) [006] .n.1 82317.501322: cpu_idle: state=4294967295 cpu_id=6
117309          <idle>-0     (-----) [000] d..1 82317.501325: cpu_idle: state=0 cpu_id=0
117310          <idle>-0     (-----) [006] d..2 82317.501336: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
117311 s.nexuslauncher-10023 (10023) [004] d..2 82317.501337: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117312<...>-9062 ( 8943) [006] .... 82317.501351: binder_transaction_received: transaction=1572508
117313          <idle>-0     (-----) [004] d..1 82317.501352: cpu_idle: state=0 cpu_id=4
117314 crtc_commit:111-321   (  321) [002] d..2 82317.501649: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
117315          <idle>-0     (-----) [002] d..1 82317.501667: cpu_idle: state=0 cpu_id=2
117316  surfaceflinger-8858  ( 8858) [003] d..2 82317.501682: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117317          <idle>-0     (-----) [003] d..1 82317.501706: cpu_idle: state=0 cpu_id=3
117318<...>-9062 ( 8943) [006] .... 82317.501720: binder_transaction: transaction=1572509 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
117319<...>-9062 ( 8943) [006] .... 82317.501725: binder_transaction_alloc_buf: transaction=1572509 data_size=8 offsets_size=0
117320<...>-9062 ( 8943) [006] d..2 82317.501730: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
117321<...>-9062 ( 8943) [006] d..3 82317.501751: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=006
117322<...>-9062 ( 8943) [006] .... 82317.501755: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
117323<...>-9062 ( 8943) [006] d..2 82317.501840: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
117324 s.nexuslauncher-10023 (10023) [006] .... 82317.501853: binder_transaction_received: transaction=1572509
117325 s.nexuslauncher-10023 (10023) [006] d..3 82317.503488: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
117326 s.nexuslauncher-10023 (10023) [006] d..4 82317.503512: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
117327          <idle>-0     (-----) [004] .n.1 82317.503519: cpu_idle: state=4294967295 cpu_id=4
117328          <idle>-0     (-----) [004] d..2 82317.503530: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
117329    RenderThread-16607 (10023) [004] d..2 82317.503575: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117330          <idle>-0     (-----) [004] d..1 82317.503583: cpu_idle: state=0 cpu_id=4
117331 s.nexuslauncher-10023 (10023) [006] d..3 82317.504531: sched_waking: comm=UiThreadHelper pid=16586 prio=118 target_cpu=006
117332 s.nexuslauncher-10023 (10023) [006] d..4 82317.504563: sched_wakeup: comm=UiThreadHelper pid=16586 prio=118 target_cpu=004
117333          <idle>-0     (-----) [004] .n.1 82317.504568: cpu_idle: state=4294967295 cpu_id=4
117334          <idle>-0     (-----) [004] d..2 82317.504575: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=16586 next_prio=118
117335 s.nexuslauncher-10023 (10023) [006] d..2 82317.504657: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
117336          <idle>-0     (-----) [006] d..1 82317.504676: cpu_idle: state=0 cpu_id=6
117337          <idle>-0     (-----) [001] d.s2 82317.505145: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117338<...>-16586 ( 10023) [004] d.s2 82317.505147: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
117339          <idle>-0     (-----) [001] dns3 82317.505166: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117340          <idle>-0     (-----) [001] .n.1 82317.505181: cpu_idle: state=4294967295 cpu_id=1
117341          <idle>-0     (-----) [001] d..2 82317.505195: 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
117342          <idle>-0     (-----) [000] dnh2 82317.505199: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
117343          <idle>-0     (-----) [000] .n.1 82317.505207: cpu_idle: state=4294967295 cpu_id=0
117344          <idle>-0     (-----) [000] d..2 82317.505224: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
117345     rcu_preempt-7     (    7) [001] d..2 82317.505233: 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
117346          <idle>-0     (-----) [001] d..1 82317.505247: cpu_idle: state=0 cpu_id=1
117347<...>-16586 ( 10023) [004] d..3 82317.505464: sched_waking: comm=GoogleApiHandle pid=10177 prio=129 target_cpu=000
117348<...>-16586 ( 10023) [004] d..4 82317.505497: sched_wakeup: comm=GoogleApiHandle pid=10177 prio=129 target_cpu=005
117349          <idle>-0     (-----) [005] .n.1 82317.505502: cpu_idle: state=4294967295 cpu_id=5
117350<...>-16586 ( 10023) [004] d.h3 82317.505539: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
117351          <idle>-0     (-----) [005] d..2 82317.505540: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=GoogleApiHandle next_pid=10177 next_prio=129
117352  kworker/u16:15-1311  ( 1311) [000] d..2 82317.505568: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
117353          <idle>-0     (-----) [002] dnh2 82317.505568: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
117354          <idle>-0     (-----) [002] .n.1 82317.505576: cpu_idle: state=4294967295 cpu_id=2
117355          <idle>-0     (-----) [000] d..1 82317.505588: cpu_idle: state=0 cpu_id=0
117356          <idle>-0     (-----) [002] d..2 82317.505589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
117357          <idle>-0     (-----) [001] d.s3 82317.505590: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
117358          <idle>-0     (-----) [001] d.s4 82317.505604: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
117359<...>-16586 ( 10023) [004] d..2 82317.505611: sched_switch: prev_comm=UiThreadHelper prev_pid=16586 prev_prio=118 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117360          <idle>-0     (-----) [001] d.s4 82317.505614: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
117361          <idle>-0     (-----) [000] .n.1 82317.505622: cpu_idle: state=4294967295 cpu_id=0
117362          <idle>-0     (-----) [001] ...1 82317.505626: cpu_idle: state=4294967295 cpu_id=1
117363         sugov:0-576   (  576) [002] .... 82317.505630: clk_set_rate: pwrcl_clk 748800000
117364          <idle>-0     (-----) [004] d..1 82317.505632: cpu_idle: state=0 cpu_id=4
117365          <idle>-0     (-----) [001] d..1 82317.505633: cpu_idle: state=0 cpu_id=1
117366          <idle>-0     (-----) [000] d..2 82317.505637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
117367         sugov:0-576   (  576) [002] .... 82317.505652: clk_set_rate: cpu3_pwrcl_clk 825600000
117368         sugov:0-576   (  576) [002] .... 82317.505662: clk_set_rate: cpu2_pwrcl_clk 825600000
117369         sugov:0-576   (  576) [002] .... 82317.505679: clk_set_rate: cpu1_pwrcl_clk 825600000
117370         sugov:0-576   (  576) [002] .... 82317.505697: clk_set_rate: cpu0_pwrcl_clk 748800000
117371         sugov:0-576   (  576) [002] .... 82317.505811: cpu_frequency: state=748800 cpu_id=0
117372  kworker/u16:15-1311  ( 1311) [000] .... 82317.505822: clk_set_rate: l3_cluster1_vote_clk 576000000
117373  kworker/u16:15-1311  ( 1311) [000] .... 82317.505831: clk_set_rate: l3_clk 576000000
117374         sugov:0-576   (  576) [002] .... 82317.505840: cpu_frequency: state=748800 cpu_id=1
117375         sugov:0-576   (  576) [002] .... 82317.505845: cpu_frequency: state=748800 cpu_id=2
117376         sugov:0-576   (  576) [002] .... 82317.505850: cpu_frequency: state=748800 cpu_id=3
117377  kworker/u16:15-1311  ( 1311) [000] d..2 82317.505887: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117378         sugov:0-576   (  576) [002] d..2 82317.505889: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117379          <idle>-0     (-----) [002] d..1 82317.505903: cpu_idle: state=0 cpu_id=2
117380          <idle>-0     (-----) [000] d..1 82317.505903: cpu_idle: state=0 cpu_id=0
117381<...>-10177 ( 10023) [005] d..1 82317.506406: sched_waking: comm=Jit thread pool pid=10045 prio=129 target_cpu=004
117382<...>-10177 ( 10023) [005] d..2 82317.506426: sched_wakeup: comm=Jit thread pool pid=10045 prio=129 target_cpu=004
117383          <idle>-0     (-----) [004] .n.1 82317.506432: cpu_idle: state=4294967295 cpu_id=4
117384          <idle>-0     (-----) [004] d..2 82317.506441: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Jit thread pool next_pid=10045 next_prio=129
117385<...>-10177 ( 10023) [005] .... 82317.506485: binder_transaction: transaction=1572510 dest_node=1532915 dest_proc=9871 dest_thread=0 reply=0 flags=0x11 code=0x1
117386<...>-10177 ( 10023) [005] .... 82317.506492: binder_transaction_alloc_buf: transaction=1572510 data_size=428 offsets_size=8
117387<...>-10177 ( 10023) [005] d..4 82317.506606: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=000
117388          <idle>-0     (-----) [000] dnh2 82317.506637: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=000
117389          <idle>-0     (-----) [000] .n.1 82317.506644: cpu_idle: state=4294967295 cpu_id=0
117390          <idle>-0     (-----) [000] d..2 82317.506656: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
117391<...>-10177 ( 10023) [005] d..2 82317.506730: sched_switch: prev_comm=GoogleApiHandle prev_pid=10177 prev_prio=129 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
117392          <idle>-0     (-----) [005] d..1 82317.506745: cpu_idle: state=0 cpu_id=5
117393   Binder:9871_6-10122 ( 9871) [000] d.h6 82317.506749: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117394   Binder:9871_6-10122 ( 9871) [000] d.h7 82317.506772: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117395   Binder:9871_6-10122 ( 9871) [000] d.h6 82317.506777: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117396          <idle>-0     (-----) [003] .n.1 82317.506780: cpu_idle: state=4294967295 cpu_id=3
117397   Binder:9871_6-10122 ( 9871) [000] d.h7 82317.506791: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117398          <idle>-0     (-----) [003] d..2 82317.506792: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
117399          <idle>-0     (-----) [002] .n.1 82317.506797: cpu_idle: state=4294967295 cpu_id=2
117400          <idle>-0     (-----) [002] d..2 82317.506808: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
117401   Binder:9871_6-10122 ( 9871) [000] .... 82317.506810: binder_transaction_received: transaction=1572510
117402  crtc_event:111-322   (  322) [003] d..2 82317.506827: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117403          <idle>-0     (-----) [003] d..1 82317.506840: cpu_idle: state=0 cpu_id=3
117404          <idle>-0     (-----) [003] d.h2 82317.506938: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
117405 crtc_commit:111-321   (  321) [002] d..2 82317.506949: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
117406          <idle>-0     (-----) [003] dnh3 82317.506951: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
117407          <idle>-0     (-----) [002] d..1 82317.506958: cpu_idle: state=0 cpu_id=2
117408          <idle>-0     (-----) [003] .n.1 82317.506961: cpu_idle: state=4294967295 cpu_id=3
117409          <idle>-0     (-----) [003] d..2 82317.506972: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
117410 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.507142: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
117411          <idle>-0     (-----) [003] d..1 82317.507159: cpu_idle: state=0 cpu_id=3
117412          <idle>-0     (-----) [001] d.s3 82317.507160: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
117413          <idle>-0     (-----) [001] d.s4 82317.507174: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
117414          <idle>-0     (-----) [003] .n.1 82317.507180: cpu_idle: state=4294967295 cpu_id=3
117415          <idle>-0     (-----) [001] ...1 82317.507183: cpu_idle: state=4294967295 cpu_id=1
117416          <idle>-0     (-----) [001] d..1 82317.507189: cpu_idle: state=0 cpu_id=1
117417          <idle>-0     (-----) [003] d..2 82317.507192: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
117418 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.507241: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117419          <idle>-0     (-----) [003] d..1 82317.507253: cpu_idle: state=0 cpu_id=3
117420<...>-10045 ( 10023) [004] d..2 82317.507291: sched_switch: prev_comm=Jit thread pool prev_pid=10045 prev_prio=129 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117421          <idle>-0     (-----) [004] d..1 82317.507309: cpu_idle: state=0 cpu_id=4
117422   Binder:9871_6-10122 ( 9871) [000] d..1 82317.507890: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=002
117423   Binder:9871_6-10122 ( 9871) [000] d..2 82317.507952: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=001
117424          <idle>-0     (-----) [001] .n.1 82317.507956: cpu_idle: state=4294967295 cpu_id=1
117425          <idle>-0     (-----) [001] d..2 82317.507971: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
117426   Binder:9871_6-10122 ( 9871) [000] d..2 82317.508110: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117427          <idle>-0     (-----) [000] d..1 82317.508132: cpu_idle: state=0 cpu_id=0
117428          <idle>-0     (-----) [002] d.s3 82317.508471: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117429          <idle>-0     (-----) [002] d.s4 82317.508490: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117430          <idle>-0     (-----) [003] .n.1 82317.508496: cpu_idle: state=4294967295 cpu_id=3
117431          <idle>-0     (-----) [003] d..2 82317.508510: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
117432          <idle>-0     (-----) [002] ...1 82317.508515: cpu_idle: state=4294967295 cpu_id=2
117433          <idle>-0     (-----) [002] d..1 82317.508521: cpu_idle: state=0 cpu_id=2
117434  crtc_event:111-322   (  322) [003] d..2 82317.508545: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117435          <idle>-0     (-----) [003] d..1 82317.508556: cpu_idle: state=0 cpu_id=3
117436<...>-16709 ( 9871) [001] .... 82317.508645: binder_transaction: transaction=1572513 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x17
117437<...>-16709 ( 9871) [001] .... 82317.508651: binder_transaction_alloc_buf: transaction=1572513 data_size=396 offsets_size=8
117438<...>-16709 ( 9871) [001] d..4 82317.508673: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
117439<...>-16709 ( 9871) [001] dn.5 82317.508702: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
117440<...>-16709 ( 9871) [001] d..2 82317.508763: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
117441<...>-9062 ( 8943) [001] .... 82317.508775: binder_transaction_received: transaction=1572513
117442          <idle>-0     (-----) [000] d.h5 82317.509092: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117443          <idle>-0     (-----) [000] d.h6 82317.509114: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117444          <idle>-0     (-----) [002] .n.1 82317.509119: cpu_idle: state=4294967295 cpu_id=2
117445          <idle>-0     (-----) [002] d..2 82317.509130: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
117446          <idle>-0     (-----) [000] ...1 82317.509132: cpu_idle: state=4294967295 cpu_id=0
117447          <idle>-0     (-----) [000] d..1 82317.509139: cpu_idle: state=0 cpu_id=0
117448 crtc_commit:111-321   (  321) [002] d..2 82317.509235: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
117449<...>-16709 ( 9871) [002] d..2 82317.509269: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117450          <idle>-0     (-----) [002] d..1 82317.509283: cpu_idle: state=0 cpu_id=2
117451<...>-9062 ( 8943) [001] d..3 82317.509349: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
117452<...>-9062 ( 8943) [001] d..4 82317.509378: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
117453          <idle>-0     (-----) [000] dnh5 82317.509381: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117454          <idle>-0     (-----) [000] dnh6 82317.509397: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
117455          <idle>-0     (-----) [003] .n.1 82317.509403: cpu_idle: state=4294967295 cpu_id=3
117456          <idle>-0     (-----) [000] dnh7 82317.509407: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
117457          <idle>-0     (-----) [003] d..2 82317.509414: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
117458          <idle>-0     (-----) [000] dnh8 82317.509420: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
117459          <idle>-0     (-----) [000] dnh9 82317.509432: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117460  crtc_event:111-322   (  322) [003] d..2 82317.509441: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117461          <idle>-0     (-----) [000] dnha 82317.509447: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117462          <idle>-0     (-----) [003] d..1 82317.509451: cpu_idle: state=0 cpu_id=3
117463          <idle>-0     (-----) [000] dnh7 82317.509453: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
117464          <idle>-0     (-----) [002] .n.1 82317.509454: cpu_idle: state=4294967295 cpu_id=2
117465          <idle>-0     (-----) [002] d..2 82317.509464: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
117466          <idle>-0     (-----) [000] dnh8 82317.509493: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
117467          <idle>-0     (-----) [000] .n.1 82317.509512: cpu_idle: state=4294967295 cpu_id=0
117468 crtc_commit:111-321   (  321) [002] d..2 82317.509515: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
117469          <idle>-0     (-----) [000] d..2 82317.509528: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
117470 SDM_EventThread-644   (  619) [002] ...1 82317.509571: tracing_mark_write: B|619|HWCCallbacks::Vsync::
117471 SDM_EventThread-644   (  619) [002] ...1 82317.509586: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
117472 SDM_EventThread-644   (  619) [002] ...1 82317.509591: tracing_mark_write: E|619
117473<...>-8961 ( 8943) [000] d..2 82317.509608: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
117474 SDM_EventThread-644   (  619) [002] .... 82317.509624: binder_transaction: transaction=1572514 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
117475 SDM_EventThread-644   (  619) [002] .... 82317.509630: binder_transaction_alloc_buf: transaction=1572514 data_size=76 offsets_size=0
117476 SDM_EventThread-644   (  619) [002] d..4 82317.509636: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=001
117477     kworker/0:1-25262 (25262) [000] d..2 82317.509646: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117478<...>-9062 ( 8943) [001] d..3 82317.509648: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=003
117479          <idle>-0     (-----) [000] d..1 82317.509662: cpu_idle: state=0 cpu_id=0
117480 SDM_EventThread-644   (  619) [002] d..5 82317.509671: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=000
117481<...>-9062 ( 8943) [001] d..4 82317.509673: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=003
117482          <idle>-0     (-----) [000] .n.1 82317.509677: cpu_idle: state=4294967295 cpu_id=0
117483          <idle>-0     (-----) [003] .n.1 82317.509678: cpu_idle: state=4294967295 cpu_id=3
117484          <idle>-0     (-----) [003] d..2 82317.509689: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
117485          <idle>-0     (-----) [000] d..2 82317.509691: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
117486 SDM_EventThread-644   (  619) [002] ...1 82317.509701: tracing_mark_write: E|619
117487<...>-8890 ( 8858) [000] .... 82317.509702: binder_transaction_received: transaction=1572514
117488 SDM_EventThread-644   (  619) [002] d..4 82317.509718: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117489 SDM_EventThread-644   (  619) [002] dn.5 82317.509735: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
117490 SDM_EventThread-644   (  619) [002] d..2 82317.509750: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
117491<...>-8890 ( 8858) [000] ...1 82317.509753: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
117492 crtc_commit:111-321   (  321) [002] d..2 82317.509768: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
117493<...>-8890 ( 8858) [000] ...1 82317.509774: tracing_mark_write: E|8858
117494 SDM_EventThread-644   (  619) [002] d..2 82317.509806: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117495          <idle>-0     (-----) [002] d..1 82317.509822: cpu_idle: state=0 cpu_id=2
117496<...>-8890 ( 8858) [000] d..2 82317.509832: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117497          <idle>-0     (-----) [000] d..1 82317.509849: cpu_idle: state=0 cpu_id=0
117498<...>-9062 ( 8943) [001] .... 82317.509885: binder_transaction: transaction=1572515 dest_node=417398 dest_proc=9871 dest_thread=0 reply=0 flags=0x11 code=0x7
117499<...>-9062 ( 8943) [001] .... 82317.509892: binder_transaction_alloc_buf: transaction=1572515 data_size=424 offsets_size=8
117500<...>-9062 ( 8943) [001] d..4 82317.509908: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=000
117501<...>-9062 ( 8943) [001] d..5 82317.509929: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=000
117502          <idle>-0     (-----) [000] .n.1 82317.509936: cpu_idle: state=4294967295 cpu_id=0
117503          <idle>-0     (-----) [000] d..2 82317.509950: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
117504   Binder:9871_6-10122 ( 9871) [000] .... 82317.509958: binder_transaction_received: transaction=1572515
117505<...>-9062 ( 8943) [001] .... 82317.510158: binder_transaction: transaction=1572516 dest_node=0 dest_proc=9871 dest_thread=16709 reply=1 flags=0x0 code=0x0
117506<...>-9062 ( 8943) [001] .... 82317.510165: binder_transaction_alloc_buf: transaction=1572516 data_size=200 offsets_size=0
117507<...>-9062 ( 8943) [001] d..2 82317.510170: sched_waking: comm=lowpool[8] pid=16709 prio=130 target_cpu=002
117508   Binder:9871_6-10122 ( 9871) [000] d..3 82317.510177: sched_waking: comm=.gms.persistent pid=9871 prio=120 target_cpu=003
117509<...>-9062 ( 8943) [001] d..3 82317.510193: sched_wakeup: comm=lowpool[8] pid=16709 prio=130 target_cpu=001
117510   Binder:9871_6-10122 ( 9871) [000] d..4 82317.510207: sched_wakeup: comm=.gms.persistent pid=9871 prio=120 target_cpu=003
117511<...>-9062 ( 8943) [001] d..2 82317.510239: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
117512<...>-16709 ( 9871) [001] .... 82317.510249: binder_transaction_received: transaction=1572516
117513   Binder:9871_6-10122 ( 9871) [000] d..2 82317.510299: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117514<...>-821 ( 821) [003] d..2 82317.510318: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=.gms.persistent next_pid=9871 next_prio=120
117515          <idle>-0     (-----) [000] d..1 82317.510318: cpu_idle: state=0 cpu_id=0
117516<...>-9871 ( 9871) [003] .... 82317.510683: binder_transaction: transaction=1572517 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x2f
117517<...>-9871 ( 9871) [003] .... 82317.510689: binder_transaction_alloc_buf: transaction=1572517 data_size=104 offsets_size=8
117518<...>-9871 ( 9871) [003] d..4 82317.510702: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=001
117519<...>-9871 ( 9871) [003] d..5 82317.510735: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
117520          <idle>-0     (-----) [000] .n.1 82317.510741: cpu_idle: state=4294967295 cpu_id=0
117521          <idle>-0     (-----) [000] d..2 82317.510756: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
117522<...>-9062 ( 8943) [000] .... 82317.510766: binder_transaction_received: transaction=1572517
117523<...>-9871 ( 9871) [003] d..2 82317.510832: sched_switch: prev_comm=.gms.persistent prev_pid=9871 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117524          <idle>-0     (-----) [003] d..1 82317.510854: cpu_idle: state=0 cpu_id=3
117525<...>-9062 ( 8943) [000] d..3 82317.511161: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=003
117526<...>-9062 ( 8943) [000] d..4 82317.511185: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=003
117527          <idle>-0     (-----) [003] .n.1 82317.511192: cpu_idle: state=4294967295 cpu_id=3
117528          <idle>-0     (-----) [003] d..2 82317.511206: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
117529          <idle>-0     (-----) [002] d.h2 82317.511333: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
117530          <idle>-0     (-----) [002] dnh3 82317.511346: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
117531          <idle>-0     (-----) [002] .n.1 82317.511356: cpu_idle: state=4294967295 cpu_id=2
117532<...>-9062 ( 8943) [000] d..2 82317.511366: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117533          <idle>-0     (-----) [002] d..2 82317.511368: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
117534          <idle>-0     (-----) [000] d..1 82317.511386: cpu_idle: state=0 cpu_id=0
117535        DispSync-8879  ( 8858) [002] d..1 82317.511391: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
117536        DispSync-8879  ( 8858) [002] d..2 82317.511417: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
117537          <idle>-0     (-----) [000] .n.1 82317.511425: cpu_idle: state=4294967295 cpu_id=0
117538          <idle>-0     (-----) [000] d..2 82317.511437: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
117539        DispSync-8879  ( 8858) [002] d..2 82317.511454: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117540          <idle>-0     (-----) [002] d..1 82317.511468: cpu_idle: state=0 cpu_id=2
117541  appEventThread-8881  ( 8858) [000] d..3 82317.511510: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=006
117542          <idle>-0     (-----) [004] dnh2 82317.511547: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
117543          <idle>-0     (-----) [004] .n.1 82317.511552: cpu_idle: state=4294967295 cpu_id=4
117544          <idle>-0     (-----) [004] d..2 82317.511560: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
117545<...>-821 ( 821) [003] d..2 82317.511562: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117546          <idle>-0     (-----) [003] d..1 82317.511582: cpu_idle: state=0 cpu_id=3
117547  appEventThread-8881  ( 8858) [000] d..2 82317.511582: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117548          <idle>-0     (-----) [000] d..1 82317.511598: cpu_idle: state=0 cpu_id=0
117549<...>-16709 ( 9871) [001] d.s1 82317.511850: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117550 s.nexuslauncher-10023 (10023) [004] d.H2 82317.511861: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
117551<...>-16709 ( 9871) [001] dns2 82317.511876: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117552          <idle>-0     (-----) [002] dnh2 82317.511886: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
117553          <idle>-0     (-----) [002] .n.1 82317.511893: cpu_idle: state=4294967295 cpu_id=2
117554<...>-16709 ( 9871) [001] d..2 82317.511894: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
117555          <idle>-0     (-----) [002] d..2 82317.511905: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
117556     rcu_preempt-7     (    7) [001] d..2 82317.511906: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
117557         sugov:0-576   (  576) [002] .... 82317.511935: clk_set_rate: pwrcl_clk 902400000
117558     rcu_preempt-7     (    7) [001] d..3 82317.511948: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
117559         sugov:0-576   (  576) [002] .... 82317.511951: clk_set_rate: cpu3_pwrcl_clk 748800000
117560         sugov:0-576   (  576) [002] .... 82317.511961: clk_set_rate: cpu2_pwrcl_clk 748800000
117561     rcu_preempt-7     (    7) [001] d..2 82317.511962: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
117562         sugov:0-576   (  576) [002] .... 82317.511969: clk_set_rate: cpu1_pwrcl_clk 748800000
117563         sugov:0-576   (  576) [002] .... 82317.511977: clk_set_rate: cpu0_pwrcl_clk 902400000
117564         sugov:0-576   (  576) [002] .... 82317.511986: cpu_frequency: state=902400 cpu_id=0
117565         sugov:0-576   (  576) [002] .... 82317.512004: cpu_frequency: state=902400 cpu_id=1
117566         sugov:0-576   (  576) [002] .... 82317.512009: cpu_frequency: state=902400 cpu_id=2
117567         sugov:0-576   (  576) [002] .... 82317.512013: cpu_frequency: state=902400 cpu_id=3
117568         sugov:0-576   (  576) [002] d..2 82317.512031: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
117569         rcuop/2-29    (   29) [002] d..2 82317.512038: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
117570<...>-16709 ( 9871) [001] d..2 82317.512077: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=002
117571         rcuop/2-29    (   29) [002] d..3 82317.512078: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
117572         rcuop/2-29    (   29) [002] d..2 82317.512089: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
117573<...>-16709 ( 9871) [001] d..3 82317.512103: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=002
117574         rcuop/2-29    (   29) [002] d..3 82317.512120: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
117575<...>-16709 ( 9871) [001] d..2 82317.512122: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
117576         rcuop/2-29    (   29) [002] d..2 82317.512130: 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
117577         rcuop/3-37    (   37) [002] d..2 82317.512145: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=rcuos/0 next_pid=11 next_prio=120
117578         rcuos/0-11    (   11) [002] d..2 82317.512152: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
117579<...>-16709 ( 9871) [001] d..3 82317.512161: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
117580         rcuos/0-11    (   11) [002] d..3 82317.512187: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
117581         rcuos/0-11    (   11) [002] d..2 82317.512197: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
117582         rcuop/0-10    (   10) [002] d..2 82317.512209: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
117583<...>-8 ( 8) [002] d..2 82317.512224: 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
117584     rcu_preempt-7     (    7) [002] d..2 82317.512249: 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
117585          <idle>-0     (-----) [002] d..1 82317.512261: cpu_idle: state=0 cpu_id=2
117586 s.nexuslauncher-10023 (10023) [004] .... 82317.512588: binder_transaction: transaction=1572518 dest_node=1572113 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x1
117587 s.nexuslauncher-10023 (10023) [004] .... 82317.512593: binder_transaction_alloc_buf: transaction=1572518 data_size=100 offsets_size=0
117588 s.nexuslauncher-10023 (10023) [004] ...2 82317.512598: binder_set_priority: proc=8943 thread=9062 old=120 => new=110 desired=110
117589 s.nexuslauncher-10023 (10023) [004] d..4 82317.512601: sched_waking: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=000
117590          <idle>-0     (-----) [000] dnh2 82317.512628: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=110 target_cpu=000
117591 s.nexuslauncher-10023 (10023) [004] d..2 82317.512633: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117592          <idle>-0     (-----) [000] .n.1 82317.512635: cpu_idle: state=4294967295 cpu_id=0
117593          <idle>-0     (-----) [000] d..2 82317.512646: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
117594          <idle>-0     (-----) [004] d..1 82317.512647: cpu_idle: state=0 cpu_id=4
117595<...>-9062 ( 8943) [000] .... 82317.512656: binder_transaction_received: transaction=1572518
117596<...>-9062 ( 8943) [000] d..3 82317.513110: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
117597          <idle>-0     (-----) [003] ...1 82317.513126: cpu_idle: state=4294967295 cpu_id=3
117598          <idle>-0     (-----) [003] d..1 82317.513131: cpu_idle: state=0 cpu_id=3
117599          <idle>-0     (-----) [004] dnh2 82317.513144: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=004
117600          <idle>-0     (-----) [004] .n.1 82317.513149: cpu_idle: state=4294967295 cpu_id=4
117601          <idle>-0     (-----) [004] d..2 82317.513158: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
117602<...>-9062 ( 8943) [000] d..3 82317.513202: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
117603          <idle>-0     (-----) [005] dnh2 82317.513242: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
117604<...>-9005 ( 8943) [004] .... 82317.513243: binder_transaction: transaction=1572519 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
117605          <idle>-0     (-----) [005] .n.1 82317.513246: cpu_idle: state=4294967295 cpu_id=5
117606<...>-9005 ( 8943) [004] .... 82317.513249: binder_transaction_alloc_buf: transaction=1572519 data_size=80 offsets_size=0
117607<...>-9005 ( 8943) [004] d..4 82317.513253: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
117608          <idle>-0     (-----) [005] d..2 82317.513256: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
117609<...>-9062 ( 8943) [000] d..3 82317.513283: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
117610          <idle>-0     (-----) [002] dnh2 82317.513312: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
117611          <idle>-0     (-----) [002] .n.1 82317.513318: cpu_idle: state=4294967295 cpu_id=2
117612          <idle>-0     (-----) [002] d..2 82317.513329: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
117613<...>-9062 ( 8943) [000] d..4 82317.513333: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=003
117614<...>-8951 ( 8858) [002] .... 82317.513337: binder_transaction_received: transaction=1572519
117615          <idle>-0     (-----) [003] .n.1 82317.513337: cpu_idle: state=4294967295 cpu_id=3
117616          <idle>-0     (-----) [003] d..2 82317.513351: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
117617<...>-9062 ( 8943) [000] d..3 82317.513361: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=007
117618<...>-9005 ( 8943) [004] d..2 82317.513370: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117619<...>-8951 ( 8858) [002] d..1 82317.513374: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
117620          <idle>-0     (-----) [004] d..1 82317.513384: cpu_idle: state=0 cpu_id=4
117621<...>-8969 ( 8943) [005] d..2 82317.513387: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
117622<...>-8951 ( 8858) [002] dn.2 82317.513396: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
117623          <idle>-0     (-----) [006] dnh2 82317.513397: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=006
117624          <idle>-0     (-----) [005] d..1 82317.513399: cpu_idle: state=0 cpu_id=5
117625          <idle>-0     (-----) [006] .n.1 82317.513402: cpu_idle: state=4294967295 cpu_id=6
117626<...>-8951 ( 8858) [002] d..2 82317.513405: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
117627          <idle>-0     (-----) [006] d..2 82317.513412: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
117628   sfEventThread-8882  ( 8858) [002] d..2 82317.513429: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
117629<...>-8951 ( 8858) [002] d..1 82317.513434: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
117630<...>-8951 ( 8858) [002] dn.2 82317.513442: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
117631<...>-8951 ( 8858) [002] d..2 82317.513449: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
117632   sfEventThread-8882  ( 8858) [002] d..2 82317.513481: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
117633<...>-8961 ( 8943) [003] .... 82317.513518: binder_transaction: transaction=1572520 dest_node=418757 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x2a
117634<...>-8951 ( 8858) [002] d..2 82317.513523: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117635<...>-8961 ( 8943) [003] .... 82317.513525: binder_transaction_alloc_buf: transaction=1572520 data_size=96 offsets_size=8
117636          <idle>-0     (-----) [002] d..1 82317.513536: cpu_idle: state=0 cpu_id=2
117637   system_server-8943  ( 8943) [006] .... 82317.513537: binder_transaction: transaction=1572521 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x19
117638<...>-8961 ( 8943) [003] d..4 82317.513540: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=007
117639   system_server-8943  ( 8943) [006] .... 82317.513543: binder_transaction_alloc_buf: transaction=1572521 data_size=92 offsets_size=0
117640   system_server-8943  ( 8943) [006] d..4 82317.513549: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=003
117641          <idle>-0     (-----) [004] dnh2 82317.513576: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
117642          <idle>-0     (-----) [004] .n.1 82317.513580: cpu_idle: state=4294967295 cpu_id=4
117643          <idle>-0     (-----) [002] dnh2 82317.513583: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
117644          <idle>-0     (-----) [004] d..2 82317.513588: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
117645          <idle>-0     (-----) [002] .n.1 82317.513589: cpu_idle: state=4294967295 cpu_id=2
117646  Binder:10023_2-10088 (10023) [004] .... 82317.513599: binder_transaction_received: transaction=1572520
117647<...>-9062 ( 8943) [000] .... 82317.513599: binder_transaction: transaction=1572522 dest_node=1568605 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x4
117648          <idle>-0     (-----) [002] d..2 82317.513600: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
117649<...>-9062 ( 8943) [000] .... 82317.513605: binder_transaction_alloc_buf: transaction=1572522 data_size=56 offsets_size=0
117650<...>-9132 ( 9105) [002] .... 82317.513611: binder_transaction_received: transaction=1572521
117651<...>-9062 ( 8943) [000] d..4 82317.513612: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=006
117652   system_server-8943  ( 8943) [006] d..2 82317.513641: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
117653          <idle>-0     (-----) [006] d..1 82317.513653: cpu_idle: state=0 cpu_id=6
117654          <idle>-0     (-----) [007] dnh2 82317.513655: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=007
117655          <idle>-0     (-----) [007] .n.1 82317.513660: cpu_idle: state=4294967295 cpu_id=7
117656          <idle>-0     (-----) [007] d..2 82317.513670: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
117657           <...>-27564 (-----) [007] .... 82317.513681: binder_transaction_received: transaction=1572522
117658<...>-9062 ( 8943) [000] d..3 82317.513688: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
117659          <idle>-0     (-----) [005] dnh2 82317.513710: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
117660          <idle>-0     (-----) [005] .n.1 82317.513715: cpu_idle: state=4294967295 cpu_id=5
117661          <idle>-0     (-----) [005] d..2 82317.513722: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
117662<...>-9062 ( 8943) [000] d..3 82317.513728: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=006
117663<...>-8961 ( 8943) [003] d..2 82317.513742: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117664          <idle>-0     (-----) [006] dnh2 82317.513749: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=006
117665          <idle>-0     (-----) [006] .n.1 82317.513754: cpu_idle: state=4294967295 cpu_id=6
117666<...>-8969 ( 8943) [005] d..2 82317.513761: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
117667          <idle>-0     (-----) [006] d..2 82317.513762: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
117668          <idle>-0     (-----) [003] d..1 82317.513762: cpu_idle: state=0 cpu_id=3
117669          <idle>-0     (-----) [005] d..1 82317.513771: cpu_idle: state=0 cpu_id=5
117670  Binder:10023_2-10088 (10023) [004] d..2 82317.513774: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117671          <idle>-0     (-----) [004] d..1 82317.513787: cpu_idle: state=0 cpu_id=4
117672<...>-9132 ( 9105) [002] d..3 82317.513812: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
117673   system_server-8943  ( 8943) [006] .... 82317.513825: binder_transaction: transaction=1572523 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x19
117674   system_server-8943  ( 8943) [006] .... 82317.513830: binder_transaction_alloc_buf: transaction=1572523 data_size=92 offsets_size=0
117675<...>-9062 ( 8943) [000] .... 82317.513845: binder_transaction: transaction=1572524 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
117676<...>-9132 ( 9105) [002] d..4 82317.513846: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
117677<...>-9062 ( 8943) [000] .... 82317.513851: binder_transaction_alloc_buf: transaction=1572524 data_size=380 offsets_size=16
117678          <idle>-0     (-----) [003] .n.1 82317.513853: cpu_idle: state=4294967295 cpu_id=3
117679          <idle>-0     (-----) [003] d..2 82317.513867: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
117680<...>-9062 ( 8943) [000] ...2 82317.513867: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
117681           <...>-27564 (-----) [007] d..3 82317.513869: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
117682<...>-9062 ( 8943) [000] d..4 82317.513871: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=002
117683   system_server-8943  ( 8943) [006] d..2 82317.513879: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
117684          <idle>-0     (-----) [006] d..1 82317.513891: cpu_idle: state=0 cpu_id=6
117685<...>-9062 ( 8943) [000] dn.5 82317.513895: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=000
117686           <...>-27564 (-----) [007] d..4 82317.513899: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
117687          <idle>-0     (-----) [006] .n.1 82317.513905: cpu_idle: state=4294967295 cpu_id=6
117688<...>-9062 ( 8943) [000] d..2 82317.513906: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
117689<...>-8951 ( 8858) [000] .... 82317.513914: binder_transaction_received: transaction=1572524
117690          <idle>-0     (-----) [006] d..2 82317.513914: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
117691<...>-9132 ( 9105) [002] d..4 82317.513924: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=006
117692           <...>-27564 (-----) [007] d.h1 82317.513992: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
117693<...>-9132 ( 9105) [002] .... 82317.513994: binder_transaction_received: transaction=1572523
117694<...>-8951 ( 8858) [000] .... 82317.514000: binder_transaction: transaction=1572525 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
117695<...>-8951 ( 8858) [000] .... 82317.514005: binder_transaction_alloc_buf: transaction=1572525 data_size=0 offsets_size=0
117696<...>-8951 ( 8858) [000] .... 82317.514009: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
117697           <...>-27550 (-----) [006] .... 82317.514019: binder_transaction: transaction=1572526 dest_node=1568565 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
117698           <...>-27550 (-----) [006] .... 82317.514024: binder_transaction_alloc_buf: transaction=1572526 data_size=80 offsets_size=0
117699           <...>-27550 (-----) [006] d..4 82317.514028: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
117700           <...>-27564 (-----) [007] d..2 82317.514040: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
117701           <...>-27550 (-----) [006] d..5 82317.514051: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
117702          <idle>-0     (-----) [004] .n.1 82317.514057: cpu_idle: state=4294967295 cpu_id=4
117703<...>-9380 ( 9105) [007] d..2 82317.514065: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
117704          <idle>-0     (-----) [004] d..2 82317.514066: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
117705<...>-8874 ( 8858) [004] .... 82317.514077: binder_transaction_received: transaction=1572526
117706          <idle>-0     (-----) [007] d..1 82317.514080: cpu_idle: state=0 cpu_id=7
117707           <...>-27550 (-----) [006] d..3 82317.514083: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=005
117708<...>-8951 ( 8858) [000] d..2 82317.514091: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
117709<...>-9062 ( 8943) [000] .... 82317.514100: binder_transaction_received: transaction=1572525
117710<...>-9132 ( 9105) [002] d..3 82317.514100: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
117711           <...>-27550 (-----) [006] d..4 82317.514104: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=007
117712<...>-8874 ( 8858) [004] d..1 82317.514108: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
117713          <idle>-0     (-----) [007] .n.1 82317.514110: cpu_idle: state=4294967295 cpu_id=7
117714<...>-9105 ( 9105) [003] d..2 82317.514119: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117715          <idle>-0     (-----) [007] d..2 82317.514119: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=120
117716          <idle>-0     (-----) [003] d..1 82317.514138: cpu_idle: state=0 cpu_id=3
117717           <...>-27550 (-----) [006] d..2 82317.514141: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
117718<...>-9062 ( 8943) [000] d..1 82317.514146: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=004
117719          <idle>-0     (-----) [006] d..1 82317.514154: cpu_idle: state=0 cpu_id=6
117720          <idle>-0     (-----) [003] dnh2 82317.514155: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
117721           <...>-27570 (-----) [007] d..2 82317.514162: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
117722          <idle>-0     (-----) [003] .n.1 82317.514163: cpu_idle: state=4294967295 cpu_id=3
117723<...>-8874 ( 8858) [004] d..2 82317.514164: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117724          <idle>-0     (-----) [007] d..1 82317.514173: cpu_idle: state=0 cpu_id=7
117725          <idle>-0     (-----) [003] d..2 82317.514175: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
117726          <idle>-0     (-----) [004] d..1 82317.514175: cpu_idle: state=0 cpu_id=4
117727          <idle>-0     (-----) [005] dnh2 82317.514222: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
117728          <idle>-0     (-----) [006] dnh2 82317.514222: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
117729          <idle>-0     (-----) [005] .n.1 82317.514226: cpu_idle: state=4294967295 cpu_id=5
117730          <idle>-0     (-----) [006] .n.1 82317.514228: cpu_idle: state=4294967295 cpu_id=6
117731          <idle>-0     (-----) [005] d..2 82317.514234: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=110
117732          <idle>-0     (-----) [006] d..2 82317.514237: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
117733  appEventThread-8881  ( 8858) [003] d..2 82317.514243: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117734          <idle>-0     (-----) [003] d..1 82317.514257: cpu_idle: state=0 cpu_id=3
117735<...>-9132 ( 9105) [002] d..2 82317.514298: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117736<...>-9062 ( 8943) [000] .... 82317.514299: binder_transaction: transaction=1572527 dest_node=0 dest_proc=10023 dest_thread=10023 reply=1 flags=0x0 code=0x0
117737<...>-9062 ( 8943) [000] .... 82317.514304: binder_transaction_alloc_buf: transaction=1572527 data_size=4 offsets_size=0
117738<...>-9062 ( 8943) [000] d..2 82317.514308: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
117739          <idle>-0     (-----) [002] d..1 82317.514316: cpu_idle: state=0 cpu_id=2
117740<...>-9062 ( 8943) [000] dn.3 82317.514335: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=000
117741<...>-9062 ( 8943) [000] dnh3 82317.514386: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
117742<...>-9105 ( 9105) [006] d..2 82317.514398: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
117743<...>-9062 ( 8943) [000] dnh4 82317.514404: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
117744          <idle>-0     (-----) [002] .n.1 82317.514410: cpu_idle: state=4294967295 cpu_id=2
117745          <idle>-0     (-----) [006] d..1 82317.514410: cpu_idle: state=0 cpu_id=6
117746<...>-9062 ( 8943) [000] d..2 82317.514415: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=110 prev_state=R+ ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
117747          <idle>-0     (-----) [002] d..2 82317.514421: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
117748 s.nexuslauncher-10023 (10023) [000] .... 82317.514425: binder_transaction_received: transaction=1572527
117749         sugov:0-576   (  576) [002] .... 82317.514449: clk_set_rate: pwrcl_clk 1228800000
117750         sugov:0-576   (  576) [002] .... 82317.514463: clk_set_rate: cpu3_pwrcl_clk 902400000
117751         sugov:0-576   (  576) [002] .... 82317.514471: clk_set_rate: cpu2_pwrcl_clk 902400000
117752         sugov:0-576   (  576) [002] .... 82317.514478: clk_set_rate: cpu1_pwrcl_clk 902400000
117753         sugov:0-576   (  576) [002] .... 82317.514486: clk_set_rate: cpu0_pwrcl_clk 1228800000
117754         sugov:0-576   (  576) [002] .... 82317.514494: cpu_frequency: state=1228800 cpu_id=0
117755         sugov:0-576   (  576) [002] .... 82317.514510: cpu_frequency: state=1228800 cpu_id=1
117756         sugov:0-576   (  576) [002] .... 82317.514515: cpu_frequency: state=1228800 cpu_id=2
117757         sugov:0-576   (  576) [002] .... 82317.514519: cpu_frequency: state=1228800 cpu_id=3
117758<...>-9005 ( 8943) [005] .... 82317.514548: binder_transaction: transaction=1572528 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
117759<...>-9005 ( 8943) [005] .... 82317.514553: binder_transaction_alloc_buf: transaction=1572528 data_size=96 offsets_size=0
117760         sugov:0-576   (  576) [002] d..2 82317.514553: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117761<...>-9005 ( 8943) [005] d..4 82317.514557: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
117762          <idle>-0     (-----) [002] d..1 82317.514561: cpu_idle: state=0 cpu_id=2
117763          <idle>-0     (-----) [002] dnh2 82317.514579: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
117764 s.nexuslauncher-10023 (10023) [000] .... 82317.514582: binder_transaction: transaction=1572529 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
117765          <idle>-0     (-----) [002] .n.1 82317.514584: cpu_idle: state=4294967295 cpu_id=2
117766 s.nexuslauncher-10023 (10023) [000] .... 82317.514587: binder_transaction_alloc_buf: transaction=1572529 data_size=80 offsets_size=0
117767          <idle>-0     (-----) [002] d..2 82317.514592: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
117768 s.nexuslauncher-10023 (10023) [000] d..4 82317.514592: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
117769<...>-9132 ( 9105) [002] .... 82317.514598: binder_transaction_received: transaction=1572528
117770          <idle>-0     (-----) [004] dnh2 82317.514615: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
117771          <idle>-0     (-----) [004] .n.1 82317.514620: cpu_idle: state=4294967295 cpu_id=4
117772          <idle>-0     (-----) [004] d..2 82317.514628: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
117773<...>-8874 ( 8858) [004] .... 82317.514631: binder_transaction_received: transaction=1572529
117774<...>-8874 ( 8858) [004] d..1 82317.514642: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
117775          <idle>-0     (-----) [003] dnh2 82317.514661: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
117776<...>-9005 ( 8943) [005] d..3 82317.514662: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
117777          <idle>-0     (-----) [003] .n.1 82317.514667: cpu_idle: state=4294967295 cpu_id=3
117778<...>-8874 ( 8858) [004] d..2 82317.514669: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117779          <idle>-0     (-----) [003] d..2 82317.514674: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
117780          <idle>-0     (-----) [004] d..1 82317.514676: cpu_idle: state=0 cpu_id=4
117781<...>-9132 ( 9105) [002] d..3 82317.514681: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=006
117782<...>-9005 ( 8943) [005] d..4 82317.514682: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
117783          <idle>-0     (-----) [006] .n.1 82317.514687: cpu_idle: state=4294967295 cpu_id=6
117784          <idle>-0     (-----) [006] d..2 82317.514696: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
117785  appEventThread-8881  ( 8858) [003] d..2 82317.514708: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117786          <idle>-0     (-----) [003] d..1 82317.514718: cpu_idle: state=0 cpu_id=3
117787          <idle>-0     (-----) [007] dnh2 82317.514723: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
117788          <idle>-0     (-----) [007] .n.1 82317.514727: cpu_idle: state=4294967295 cpu_id=7
117789          <idle>-0     (-----) [007] d..2 82317.514734: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
117790<...>-9132 ( 9105) [002] d..2 82317.514773: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117791<...>-8962 ( 8943) [006] d..3 82317.514774: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=006
117792          <idle>-0     (-----) [002] d..1 82317.514786: cpu_idle: state=0 cpu_id=2
117793          <idle>-0     (-----) [003] d.h2 82317.514806: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
117794          <idle>-0     (-----) [002] dnh2 82317.514830: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
117795          <idle>-0     (-----) [003] dnh3 82317.514831: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
117796          <idle>-0     (-----) [002] .n.1 82317.514835: cpu_idle: state=4294967295 cpu_id=2
117797<...>-9105 ( 9105) [007] d..2 82317.514838: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
117798          <idle>-0     (-----) [003] .n.1 82317.514839: cpu_idle: state=4294967295 cpu_id=3
117799          <idle>-0     (-----) [002] d..2 82317.514844: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
117800          <idle>-0     (-----) [003] d..2 82317.514847: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
117801          <idle>-0     (-----) [007] d..1 82317.514849: cpu_idle: state=0 cpu_id=7
117802<...>-8962 ( 8943) [006] d..2 82317.514869: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
117803          <idle>-0     (-----) [006] d..1 82317.514882: cpu_idle: state=0 cpu_id=6
117804   system_server-8943  ( 8943) [002] .... 82317.514938: binder_transaction: transaction=1572530 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
117805   system_server-8943  ( 8943) [002] .... 82317.514943: binder_transaction_alloc_buf: transaction=1572530 data_size=96 offsets_size=0
117806   system_server-8943  ( 8943) [002] d..4 82317.514947: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
117807          <idle>-0     (-----) [006] dnh2 82317.515017: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
117808          <idle>-0     (-----) [006] .n.1 82317.515021: cpu_idle: state=4294967295 cpu_id=6
117809          <idle>-0     (-----) [006] d..2 82317.515029: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
117810 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.515034: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
117811<...>-9132 ( 9105) [006] .... 82317.515039: binder_transaction_received: transaction=1572530
117812<...>-16709 ( 9871) [001] d.s2 82317.515043: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
117813          <idle>-0     (-----) [003] d..1 82317.515046: cpu_idle: state=0 cpu_id=3
117814<...>-16709 ( 9871) [001] d.s3 82317.515059: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
117815          <idle>-0     (-----) [003] .n.1 82317.515064: cpu_idle: state=4294967295 cpu_id=3
117816          <idle>-0     (-----) [003] d..2 82317.515072: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
117817   system_server-8943  ( 8943) [002] d..2 82317.515083: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117818          <idle>-0     (-----) [002] d..1 82317.515096: cpu_idle: state=0 cpu_id=2
117819<...>-9005 ( 8943) [005] .... 82317.515101: binder_transaction: transaction=1572531 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
117820 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.515104: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117821<...>-9005 ( 8943) [005] .... 82317.515142: binder_transaction_alloc_buf: transaction=1572531 data_size=1596 offsets_size=96
117822<...>-16709 ( 9871) [001] d.s2 82317.515148: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
117823          <idle>-0     (-----) [003] d..1 82317.515152: cpu_idle: state=0 cpu_id=3
117824<...>-9132 ( 9105) [006] d..3 82317.515162: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
117825<...>-9005 ( 8943) [005] ...2 82317.515168: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
117826<...>-9005 ( 8943) [005] d..4 82317.515171: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
117827<...>-9132 ( 9105) [006] d..4 82317.515176: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
117828          <idle>-0     (-----) [007] .n.1 82317.515182: cpu_idle: state=4294967295 cpu_id=7
117829<...>-9005 ( 8943) [005] d..5 82317.515184: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
117830<...>-16709 ( 9871) [001] d.s3 82317.515185: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
117831          <idle>-0     (-----) [007] d..2 82317.515191: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
117832<...>-16709 ( 9871) [001] d.s2 82317.515193: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
117833<...>-9005 ( 8943) [005] d..2 82317.515195: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
117834<...>-16709 ( 9871) [001] dns3 82317.515205: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
117835<...>-8874 ( 8858) [005] .... 82317.515206: binder_transaction_received: transaction=1572531
117836<...>-16709 ( 9871) [001] d..2 82317.515216: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
117837<...>-9132 ( 9105) [006] d..2 82317.515233: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
117838     kworker/1:1-25249 (25249) [001] d..2 82317.515243: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
117839          <idle>-0     (-----) [006] d..1 82317.515246: cpu_idle: state=0 cpu_id=6
117840<...>-9105 ( 9105) [007] d..2 82317.515253: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
117841          <idle>-0     (-----) [007] d..1 82317.515263: cpu_idle: state=0 cpu_id=7
117842  kworker/u16:15-1311  ( 1311) [001] .... 82317.515308: clk_set_rate: l3_cluster1_vote_clk 300000000
117843  kworker/u16:15-1311  ( 1311) [001] .... 82317.515313: clk_set_rate: l3_clk 300000000
117844          <idle>-0     (-----) [002] d.h2 82317.515351: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
117845          <idle>-0     (-----) [002] dnh3 82317.515369: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
117846          <idle>-0     (-----) [002] .n.1 82317.515378: cpu_idle: state=4294967295 cpu_id=2
117847<...>-8874 ( 8858) [005] .... 82317.515387: binder_transaction: transaction=1572532 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
117848          <idle>-0     (-----) [002] d..2 82317.515389: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
117849<...>-8874 ( 8858) [005] .... 82317.515393: binder_transaction_alloc_buf: transaction=1572532 data_size=0 offsets_size=0
117850<...>-8874 ( 8858) [005] d..2 82317.515395: sched_waking: comm=android.anim pid=9005 prio=110 target_cpu=005
117851<...>-8874 ( 8858) [005] d..3 82317.515408: sched_wakeup: comm=android.anim pid=9005 prio=110 target_cpu=005
117852<...>-8874 ( 8858) [005] .... 82317.515411: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
117853<...>-8874 ( 8858) [005] d..2 82317.515421: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=android.anim next_pid=9005 next_prio=110
117854<...>-9005 ( 8943) [005] .... 82317.515431: binder_transaction_received: transaction=1572532
117855        DispSync-8879  ( 8858) [002] d..1 82317.515434: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
117856          <idle>-0     (-----) [006] ...1 82317.515456: cpu_idle: state=4294967295 cpu_id=6
117857        DispSync-8879  ( 8858) [002] d..2 82317.515458: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
117858          <idle>-0     (-----) [006] d..1 82317.515460: cpu_idle: state=0 cpu_id=6
117859          <idle>-0     (-----) [003] .n.1 82317.515464: cpu_idle: state=4294967295 cpu_id=3
117860          <idle>-0     (-----) [003] d..2 82317.515473: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
117861        DispSync-8879  ( 8858) [002] d..2 82317.515499: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
117862          <idle>-0     (-----) [002] d..1 82317.515510: cpu_idle: state=0 cpu_id=2
117863   sfEventThread-8882  ( 8858) [003] d..3 82317.515529: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
117864   sfEventThread-8882  ( 8858) [003] d..4 82317.515559: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
117865          <idle>-0     (-----) [002] .n.1 82317.515565: cpu_idle: state=4294967295 cpu_id=2
117866          <idle>-0     (-----) [002] d..2 82317.515573: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
117867  kworker/u16:15-1311  ( 1311) [001] d..2 82317.515581: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=lowpool[8] next_pid=16709 next_prio=130
117868   sfEventThread-8882  ( 8858) [003] d..2 82317.515613: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117869<...>-16709 ( 9871) [001] d.s4 82317.515615: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
117870          <idle>-0     (-----) [003] d..1 82317.515628: cpu_idle: state=0 cpu_id=3
117871<...>-16709 ( 9871) [001] d.s5 82317.515648: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
117872<...>-16709 ( 9871) [001] d.s5 82317.515658: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
117873          <idle>-0     (-----) [003] .n.1 82317.515665: cpu_idle: state=4294967295 cpu_id=3
117874          <idle>-0     (-----) [003] d..2 82317.515677: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
117875  kworker/u16:15-1311  ( 1311) [003] d..2 82317.515889: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
117876 s.nexuslauncher-10023 (10023) [000] d.h1 82317.515892: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=000
117877          <idle>-0     (-----) [003] d..1 82317.515904: cpu_idle: state=0 cpu_id=3
117878<...>-16709 ( 9871) [001] d.s2 82317.515915: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
117879 s.nexuslauncher-10023 (10023) [000] d.h2 82317.515938: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
117880          <idle>-0     (-----) [003] .n.1 82317.515943: cpu_idle: state=4294967295 cpu_id=3
117881<...>-16709 ( 9871) [001] d.s3 82317.515945: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
117882<...>-16709 ( 9871) [001] d.s3 82317.515952: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
117883          <idle>-0     (-----) [003] d..2 82317.515962: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
117884           <...>-27566 (-----) [003] d..2 82317.516165: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
117885           <...>-27566 (-----) [003] d..3 82317.516212: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
117886           <...>-27566 (-----) [003] d..2 82317.516311: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
117887<...>-9005 ( 8943) [005] d..3 82317.516385: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=007
117888<...>-581 ( 571) [003] d..2 82317.516416: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
117889<...>-9005 ( 8943) [005] d..4 82317.516418: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
117890          <idle>-0     (-----) [006] .n.1 82317.516422: cpu_idle: state=4294967295 cpu_id=6
117891          <idle>-0     (-----) [006] d..2 82317.516432: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
117892<...>-9039 ( 8943) [006] d..2 82317.516511: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
117893  kworker/u16:15-1311  ( 1311) [003] .... 82317.516561: clk_set_rate: l3_cluster0_vote_clk 576000000
117894  kworker/u16:15-1311  ( 1311) [003] .... 82317.516565: clk_set_rate: l3_clk 576000000
117895<...>-8874 ( 8858) [006] d..2 82317.516586: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
117896          <idle>-0     (-----) [006] d..1 82317.516602: cpu_idle: state=0 cpu_id=6
117897  kworker/u16:15-1311  ( 1311) [003] d..2 82317.516622: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117898          <idle>-0     (-----) [003] d..1 82317.516638: cpu_idle: state=0 cpu_id=3
117899  surfaceflinger-8858  ( 8858) [002] d..1 82317.516735: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
117900  surfaceflinger-8858  ( 8858) [002] d..2 82317.516754: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
117901          <idle>-0     (-----) [003] .n.1 82317.516761: cpu_idle: state=4294967295 cpu_id=3
117902          <idle>-0     (-----) [003] d..2 82317.516770: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
117903   sfEventThread-8882  ( 8858) [003] d..2 82317.516811: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117904          <idle>-0     (-----) [003] d..1 82317.516823: cpu_idle: state=0 cpu_id=3
117905<...>-9005 ( 8943) [005] .... 82317.516888: binder_transaction: transaction=1572533 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
117906<...>-9005 ( 8943) [005] .... 82317.516892: binder_transaction_alloc_buf: transaction=1572533 data_size=96 offsets_size=0
117907<...>-9005 ( 8943) [005] d..4 82317.516897: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
117908<...>-9005 ( 8943) [005] d..5 82317.516911: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
117909          <idle>-0     (-----) [006] .n.1 82317.516917: cpu_idle: state=4294967295 cpu_id=6
117910          <idle>-0     (-----) [006] d..2 82317.516925: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
117911<...>-9132 ( 9105) [006] .... 82317.516934: binder_transaction_received: transaction=1572533
117912<...>-9005 ( 8943) [005] d..3 82317.516989: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
117913<...>-9005 ( 8943) [005] d..4 82317.517011: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
117914          <idle>-0     (-----) [007] .n.1 82317.517015: cpu_idle: state=4294967295 cpu_id=7
117915<...>-9132 ( 9105) [006] d..3 82317.517017: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
117916          <idle>-0     (-----) [007] d..2 82317.517024: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
117917          <idle>-0     (-----) [003] dnh2 82317.517089: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
117918<...>-8962 ( 8943) [007] d..3 82317.517092: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
117919          <idle>-0     (-----) [003] .n.1 82317.517094: cpu_idle: state=4294967295 cpu_id=3
117920          <idle>-0     (-----) [003] d..2 82317.517103: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
117921  surfaceflinger-8858  ( 8858) [002] d.h1 82317.517132: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
117922<...>-9132 ( 9105) [006] d..2 82317.517136: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
117923          <idle>-0     (-----) [006] d..1 82317.517148: cpu_idle: state=0 cpu_id=6
117924<...>-8962 ( 8943) [007] d..2 82317.517165: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
117925          <idle>-0     (-----) [007] d..1 82317.517177: cpu_idle: state=0 cpu_id=7
117926<...>-9105 ( 9105) [003] d..2 82317.517205: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
117927          <idle>-0     (-----) [003] d..1 82317.517219: cpu_idle: state=0 cpu_id=3
117928<...>-9005 ( 8943) [005] .... 82317.517230: binder_transaction: transaction=1572534 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
117929<...>-9005 ( 8943) [005] .... 82317.517234: binder_transaction_alloc_buf: transaction=1572534 data_size=76 offsets_size=0
117930<...>-9005 ( 8943) [005] ...2 82317.517238: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
117931<...>-9005 ( 8943) [005] d..4 82317.517241: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=006
117932<...>-9005 ( 8943) [005] d..5 82317.517258: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=005
117933<...>-9005 ( 8943) [005] d..2 82317.517269: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
117934<...>-8874 ( 8858) [005] .... 82317.517279: binder_transaction_received: transaction=1572534
117935<...>-8874 ( 8858) [005] .... 82317.517312: binder_transaction: transaction=1572535 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
117936<...>-8874 ( 8858) [005] .... 82317.517316: binder_transaction_alloc_buf: transaction=1572535 data_size=0 offsets_size=0
117937<...>-8874 ( 8858) [005] d..2 82317.517318: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=005
117938<...>-8874 ( 8858) [005] d..3 82317.517328: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=005
117939<...>-8874 ( 8858) [005] .... 82317.517330: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
117940<...>-16709 ( 9871) [001] .... 82317.517347: binder_transaction: transaction=1572536 dest_node=1572511 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0x1
117941<...>-16709 ( 9871) [001] .... 82317.517352: binder_transaction_alloc_buf: transaction=1572536 data_size=168 offsets_size=0
117942<...>-8874 ( 8858) [005] d..2 82317.517356: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
117943<...>-16709 ( 9871) [001] d..4 82317.517358: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
117944<...>-9005 ( 8943) [005] .... 82317.517364: binder_transaction_received: transaction=1572535
117945          <idle>-0     (-----) [004] dnh2 82317.517381: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
117946          <idle>-0     (-----) [004] .n.1 82317.517385: cpu_idle: state=4294967295 cpu_id=4
117947          <idle>-0     (-----) [004] d..2 82317.517392: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
117948  Binder:10023_2-10088 (10023) [004] .... 82317.517400: binder_transaction_received: transaction=1572536
117949<...>-16709 ( 9871) [001] d..1 82317.517551: sched_waking: comm=lowpool[10] pid=24462 prio=130 target_cpu=002
117950<...>-16709 ( 9871) [001] d..2 82317.517576: sched_wakeup: comm=lowpool[10] pid=24462 prio=130 target_cpu=002
117951  surfaceflinger-8858  ( 8858) [002] ...1 82317.517603: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
117952  surfaceflinger-8858  ( 8858) [002] ...1 82317.517610: tracing_mark_write: E|8858
117953  surfaceflinger-8858  ( 8858) [002] .... 82317.517669: binder_transaction: transaction=1572537 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
117954  surfaceflinger-8858  ( 8858) [002] .... 82317.517674: binder_transaction_alloc_buf: transaction=1572537 data_size=540 offsets_size=96
117955  surfaceflinger-8858  ( 8858) [002] ...2 82317.517700: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
117956  surfaceflinger-8858  ( 8858) [002] d..4 82317.517710: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
117957  Binder:10023_2-10088 (10023) [004] d..2 82317.517719: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
117958          <idle>-0     (-----) [004] d..1 82317.517733: cpu_idle: state=0 cpu_id=4
117959  surfaceflinger-8858  ( 8858) [002] d..5 82317.517735: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
117960          <idle>-0     (-----) [003] .n.1 82317.517740: cpu_idle: state=4294967295 cpu_id=3
117961          <idle>-0     (-----) [003] d..2 82317.517749: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
117962  surfaceflinger-8858  ( 8858) [002] d..2 82317.517755: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
117963 [email protected]   (  619) [003] .... 82317.517760: binder_transaction_received: transaction=1572537
117964 [email protected]   (  619) [003] ...1 82317.517816: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
117965<...>-16709 ( 9871) [001] d..2 82317.517850: sched_switch: prev_comm=lowpool[8] prev_pid=16709 prev_prio=130 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
117966 s.nexuslauncher-10023 (10023) [000] d..3 82317.517875: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
117967          <idle>-0     (-----) [004] dnh2 82317.517906: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
117968          <idle>-0     (-----) [004] .n.1 82317.517911: cpu_idle: state=4294967295 cpu_id=4
117969 s.nexuslauncher-10023 (10023) [000] d..2 82317.517916: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=110
117970          <idle>-0     (-----) [004] d..2 82317.517919: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
117971<...>-9062 ( 8943) [000] .... 82317.517924: binder_set_priority: proc=8943 thread=9062 old=110 => new=120 desired=120
117972 [email protected]   (  619) [003] ...1 82317.517947: tracing_mark_write: B|619|HWCSession::PresentDisplay::
117973   system_server-8943  ( 8943) [001] .... 82317.517951: binder_transaction: transaction=1572538 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
117974   system_server-8943  ( 8943) [001] .... 82317.517957: binder_transaction_alloc_buf: transaction=1572538 data_size=96 offsets_size=0
117975   system_server-8943  ( 8943) [001] d..4 82317.517961: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
117976          <idle>-0     (-----) [006] dnh2 82317.517984: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
117977          <idle>-0     (-----) [006] .n.1 82317.517988: cpu_idle: state=4294967295 cpu_id=6
117978<...>-9062 ( 8943) [000] d..2 82317.517993: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117979          <idle>-0     (-----) [006] d..2 82317.517997: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
117980<...>-9132 ( 9105) [006] .... 82317.518000: binder_transaction_received: transaction=1572538
117981          <idle>-0     (-----) [000] d..1 82317.518016: cpu_idle: state=0 cpu_id=0
117982<...>-9005 ( 8943) [005] d..3 82317.518041: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=006
117983   system_server-8943  ( 8943) [001] d..2 82317.518045: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
117984<...>-9132 ( 9105) [006] d..3 82317.518068: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
117985          <idle>-0     (-----) [001] d..1 82317.518070: cpu_idle: state=0 cpu_id=1
117986          <idle>-0     (-----) [000] dnh2 82317.518102: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
117987          <idle>-0     (-----) [000] .n.1 82317.518109: cpu_idle: state=4294967295 cpu_id=0
117988          <idle>-0     (-----) [000] d..2 82317.518119: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
117989    RenderThread-16607 (10023) [004] d..1 82317.518120: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=000
117990          <idle>-0     (-----) [001] dnh2 82317.518128: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
117991          <idle>-0     (-----) [001] .n.1 82317.518135: cpu_idle: state=4294967295 cpu_id=1
117992          <idle>-0     (-----) [001] d..2 82317.518145: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
117993    RenderThread-16607 (10023) [004] d..2 82317.518147: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=007
117994          <idle>-0     (-----) [007] .n.1 82317.518153: cpu_idle: state=4294967295 cpu_id=7
117995<...>-9005 ( 8943) [005] d..1 82317.518164: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=003
117996<...>-9039 ( 8943) [000] d..2 82317.518183: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
117997<...>-9132 ( 9105) [006] d..2 82317.518184: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
117998          <idle>-0     (-----) [007] d..2 82317.518184: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
117999          <idle>-0     (-----) [000] d..1 82317.518194: cpu_idle: state=0 cpu_id=0
118000          <idle>-0     (-----) [006] d..1 82317.518195: cpu_idle: state=0 cpu_id=6
118001          <idle>-0     (-----) [000] dnh2 82317.518206: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
118002          <idle>-0     (-----) [000] .n.1 82317.518212: cpu_idle: state=4294967295 cpu_id=0
118003          <idle>-0     (-----) [000] d..2 82317.518221: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
118004<...>-9105 ( 9105) [001] d..2 82317.518237: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118005          <idle>-0     (-----) [001] d..1 82317.518251: cpu_idle: state=0 cpu_id=1
118006    RenderThread-16607 (10023) [004] .... 82317.518251: binder_transaction: transaction=1572539 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
118007    RenderThread-16607 (10023) [004] .... 82317.518256: binder_transaction_alloc_buf: transaction=1572539 data_size=104 offsets_size=0
118008    RenderThread-16607 (10023) [004] ...2 82317.518259: binder_set_priority: proc=8858 thread=8874 old=120 => new=110 desired=110
118009    RenderThread-16607 (10023) [004] d..4 82317.518262: sched_waking: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=005
118010    RenderThread-16607 (10023) [004] d..5 82317.518276: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=110 target_cpu=004
118011    RenderThread-16607 (10023) [004] d..2 82317.518288: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
118012<...>-8874 ( 8858) [004] .... 82317.518298: binder_transaction_received: transaction=1572539
118013 s.nexuslauncher-10023 (10023) [007] d..3 82317.518307: sched_waking: comm=UiThreadHelper pid=16586 prio=118 target_cpu=004
118014 s.nexuslauncher-10023 (10023) [007] d..4 82317.518332: sched_wakeup: comm=UiThreadHelper pid=16586 prio=118 target_cpu=006
118015          <idle>-0     (-----) [006] .n.1 82317.518338: cpu_idle: state=4294967295 cpu_id=6
118016<...>-8961 ( 8943) [000] d..2 82317.518346: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118017          <idle>-0     (-----) [006] d..2 82317.518347: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=UiThreadHelper next_pid=16586 next_prio=118
118018<...>-9005 ( 8943) [005] .... 82317.518352: binder_transaction: transaction=1572540 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
118019<...>-9005 ( 8943) [005] .... 82317.518356: binder_transaction_alloc_buf: transaction=1572540 data_size=80 offsets_size=0
118020<...>-8874 ( 8858) [004] .... 82317.518357: binder_transaction: transaction=1572541 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
118021          <idle>-0     (-----) [000] d..1 82317.518359: cpu_idle: state=0 cpu_id=0
118022<...>-9005 ( 8943) [005] d..4 82317.518361: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
118023<...>-8874 ( 8858) [004] .... 82317.518361: binder_transaction_alloc_buf: transaction=1572541 data_size=52 offsets_size=8
118024<...>-8874 ( 8858) [004] d..2 82317.518375: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
118025<...>-8874 ( 8858) [004] dn.3 82317.518385: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
118026          <idle>-0     (-----) [000] dnh2 82317.518386: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
118027<...>-9005 ( 8943) [005] d..1 82317.518390: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
118028<...>-8874 ( 8858) [004] d..2 82317.518391: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
118029          <idle>-0     (-----) [000] .n.1 82317.518392: cpu_idle: state=4294967295 cpu_id=0
118030    RenderThread-16607 (10023) [004] .... 82317.518400: binder_transaction_received: transaction=1572541
118031          <idle>-0     (-----) [000] d..2 82317.518405: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
118032<...>-8951 ( 8858) [000] .... 82317.518414: binder_transaction_received: transaction=1572540
118033          <idle>-0     (-----) [001] dnh2 82317.518415: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=001
118034 s.nexuslauncher-10023 (10023) [007] d..2 82317.518416: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
118035          <idle>-0     (-----) [001] .n.1 82317.518420: cpu_idle: state=4294967295 cpu_id=1
118036          <idle>-0     (-----) [007] d..1 82317.518429: cpu_idle: state=0 cpu_id=7
118037          <idle>-0     (-----) [001] d..2 82317.518429: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
118038<...>-24462 ( 9871) [002] d.s1 82317.518486: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
118039<...>-8951 ( 8858) [000] d..1 82317.518498: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
118040<...>-8961 ( 8943) [001] d..2 82317.518510: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118041          <idle>-0     (-----) [001] d..1 82317.518522: cpu_idle: state=0 cpu_id=1
118042<...>-8951 ( 8858) [000] d..2 82317.518530: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
118043          <idle>-0     (-----) [001] .n.1 82317.518536: cpu_idle: state=4294967295 cpu_id=1
118044<...>-24462 ( 9871) [002] d.s2 82317.518538: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118045 [email protected]   (  619) [003] ...1 82317.518540: tracing_mark_write: B|619|HWDeviceDRM::Validate::
118046<...>-24462 ( 9871) [002] d.s1 82317.518541: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
118047          <idle>-0     (-----) [001] d..2 82317.518545: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
118048<...>-24462 ( 9871) [002] d.s2 82317.518565: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
118049<...>-8951 ( 8858) [000] d..2 82317.518573: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118050   sfEventThread-8882  ( 8858) [001] d..2 82317.518583: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
118051          <idle>-0     (-----) [000] d..1 82317.518586: cpu_idle: state=0 cpu_id=0
118052     rcu_preempt-7     (    7) [001] d..2 82317.518603: 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
118053<...>-8 ( 8) [001] d..2 82317.518623: 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
118054<...>-16586 ( 10023) [006] .... 82317.518626: binder_transaction: transaction=1572542 dest_node=1160283 dest_proc=9105 dest_thread=0 reply=0 flags=0x10 code=0x9
118055<...>-16586 ( 10023) [006] .... 82317.518630: binder_transaction_alloc_buf: transaction=1572542 data_size=120 offsets_size=0
118056<...>-16586 ( 10023) [006] ...2 82317.518633: binder_set_priority: proc=9105 thread=9132 old=120 => new=118 desired=118
118057          <idle>-0     (-----) [001] d..1 82317.518634: cpu_idle: state=0 cpu_id=1
118058<...>-16586 ( 10023) [006] d..4 82317.518636: sched_waking: comm=Binder:9105_2 pid=9132 prio=118 target_cpu=006
118059<...>-16586 ( 10023) [006] d..5 82317.518646: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=118 target_cpu=006
118060<...>-16586 ( 10023) [006] d..2 82317.518657: sched_switch: prev_comm=UiThreadHelper prev_pid=16586 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=118
118061<...>-9132 ( 9105) [006] .... 82317.518666: binder_transaction_received: transaction=1572542
118062<...>-9005 ( 8943) [005] .... 82317.518778: binder_transaction: transaction=1572543 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
118063<...>-9005 ( 8943) [005] .... 82317.518783: binder_transaction_alloc_buf: transaction=1572543 data_size=988 offsets_size=48
118064<...>-9005 ( 8943) [005] ...2 82317.518801: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
118065<...>-9005 ( 8943) [005] d..4 82317.518804: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=000
118066<...>-9005 ( 8943) [005] dn.5 82317.518825: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=005
118067<...>-9132 ( 9105) [006] d..3 82317.518832: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
118068<...>-9005 ( 8943) [005] d..2 82317.518862: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
118069 [email protected]   (  619) [003] d.h1 82317.518867: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
118070<...>-8951 ( 8858) [005] .... 82317.518873: binder_transaction_received: transaction=1572543
118071          <idle>-0     (-----) [001] dnh2 82317.518877: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
118072 [email protected]   (  619) [003] dnh2 82317.518881: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
118073          <idle>-0     (-----) [001] .n.1 82317.518883: cpu_idle: state=4294967295 cpu_id=1
118074          <idle>-0     (-----) [001] d..2 82317.518892: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
118075 [email protected]   (  619) [003] d..2 82317.518894: sched_switch: [email protected] prev_pid=619 prev_prio=98 prev_state=R+ ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
118076<...>-9132 ( 9105) [006] .... 82317.518916: binder_transaction: transaction=1572544 dest_node=0 dest_proc=10023 dest_thread=16586 reply=1 flags=0x0 code=0x0
118077<...>-9132 ( 9105) [006] .... 82317.518920: binder_transaction_alloc_buf: transaction=1572544 data_size=4 offsets_size=0
118078<...>-9132 ( 9105) [006] d..2 82317.518923: sched_waking: comm=UiThreadHelper pid=16586 prio=118 target_cpu=006
118079          <idle>-0     (-----) [000] .n.1 82317.518924: cpu_idle: state=4294967295 cpu_id=0
118080          <idle>-0     (-----) [000] d..2 82317.518932: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
118081<...>-9132 ( 9105) [006] dn.3 82317.518933: sched_wakeup: comm=UiThreadHelper pid=16586 prio=118 target_cpu=006
118082<...>-9132 ( 9105) [006] d..2 82317.518940: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=118 prev_state=R+ ==> next_comm=UiThreadHelper next_pid=16586 next_prio=118
118083<...>-16586 ( 10023) [006] .... 82317.518950: binder_transaction_received: transaction=1572544
118084<...>-8951 ( 8858) [005] .... 82317.518961: binder_transaction: transaction=1572545 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
118085<...>-8951 ( 8858) [005] .... 82317.518965: binder_transaction_alloc_buf: transaction=1572545 data_size=0 offsets_size=0
118086<...>-8951 ( 8858) [005] .... 82317.518967: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
118087<...>-8951 ( 8858) [005] d..2 82317.519007: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
118088<...>-9005 ( 8943) [005] .... 82317.519016: binder_transaction_received: transaction=1572545
118089<...>-16586 ( 10023) [006] d..2 82317.519026: sched_switch: prev_comm=UiThreadHelper prev_pid=16586 prev_prio=118 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=118
118090<...>-9132 ( 9105) [006] .... 82317.519033: binder_set_priority: proc=9105 thread=9132 old=118 => new=120 desired=120
118091<...>-9105 ( 9105) [001] .... 82317.519045: binder_transaction: transaction=1572546 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
118092<...>-9105 ( 9105) [001] .... 82317.519049: binder_transaction_alloc_buf: transaction=1572546 data_size=80 offsets_size=0
118093<...>-9105 ( 9105) [001] d..4 82317.519053: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
118094<...>-9005 ( 8943) [005] d..1 82317.519081: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=002
118095          <idle>-0     (-----) [007] dnh2 82317.519089: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=007
118096 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.519091: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
118097<...>-9132 ( 9105) [006] d..2 82317.519093: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=110
118098          <idle>-0     (-----) [007] .n.1 82317.519095: cpu_idle: state=4294967295 cpu_id=7
118099<...>-8874 ( 8858) [006] .... 82317.519100: binder_set_priority: proc=8858 thread=8874 old=110 => new=120 desired=120
118100          <idle>-0     (-----) [007] d..2 82317.519103: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
118101          <idle>-0     (-----) [003] d..1 82317.519109: cpu_idle: state=0 cpu_id=3
118102<...>-9105 ( 9105) [001] d.s5 82317.519111: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
118103<...>-9005 ( 8943) [005] d..1 82317.519120: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=001
118104<...>-9105 ( 9105) [001] d.s6 82317.519124: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
118105          <idle>-0     (-----) [003] dnh2 82317.519134: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=003
118106<...>-8951 ( 8858) [007] .... 82317.519135: binder_transaction_received: transaction=1572546
118107          <idle>-0     (-----) [003] .n.1 82317.519142: cpu_idle: state=4294967295 cpu_id=3
118108          <idle>-0     (-----) [003] d..2 82317.519151: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
118109<...>-9105 ( 9105) [001] dnh1 82317.519153: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=001
118110<...>-8951 ( 8858) [007] d..1 82317.519161: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
118111<...>-9105 ( 9105) [001] d..2 82317.519162: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
118112<...>-8874 ( 8858) [006] d..2 82317.519173: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
118113 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.519178: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
118114          <idle>-0     (-----) [006] d..1 82317.519186: cpu_idle: state=0 cpu_id=6
118115<...>-8961 ( 8943) [001] dnh1 82317.519199: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
118116 [email protected]   (  619) [000] ...1 82317.519200: tracing_mark_write: E|619
118117<...>-9005 ( 8943) [005] d..2 82317.519206: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
118118<...>-8961 ( 8943) [001] d..2 82317.519209: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
118119<...>-8951 ( 8858) [007] d..2 82317.519221: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
118120          <idle>-0     (-----) [005] d..1 82317.519224: cpu_idle: state=0 cpu_id=5
118121          <idle>-0     (-----) [007] d..1 82317.519233: cpu_idle: state=0 cpu_id=7
118122  appEventThread-8881  ( 8858) [001] d..2 82317.519266: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ActivityManager next_pid=8961 next_prio=118
118123<...>-8961 ( 8943) [001] d..1 82317.519317: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=005
118124          <idle>-0     (-----) [005] dnh2 82317.519340: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=005
118125 [email protected]   (  619) [000] ...1 82317.519344: tracing_mark_write: B|619|HWDeviceDRM::Commit::
118126          <idle>-0     (-----) [005] .n.1 82317.519344: cpu_idle: state=4294967295 cpu_id=5
118127 [email protected]   (  619) [000] ...1 82317.519353: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
118128          <idle>-0     (-----) [005] d..2 82317.519354: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
118129<...>-8961 ( 8943) [001] d..2 82317.519510: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
118130<...>-9005 ( 8943) [005] .... 82317.519532: binder_transaction: transaction=1572547 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
118131<...>-9005 ( 8943) [005] .... 82317.519537: binder_transaction_alloc_buf: transaction=1572547 data_size=96 offsets_size=0
118132<...>-9005 ( 8943) [005] d..4 82317.519541: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
118133<...>-9005 ( 8943) [005] d..5 82317.519555: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
118134          <idle>-0     (-----) [006] .n.1 82317.519561: cpu_idle: state=4294967295 cpu_id=6
118135          <idle>-0     (-----) [006] d..2 82317.519571: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
118136<...>-9132 ( 9105) [006] .... 82317.519579: binder_transaction_received: transaction=1572547
118137<...>-9005 ( 8943) [005] d..3 82317.519640: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
118138<...>-9005 ( 8943) [005] d..4 82317.519656: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
118139<...>-9105 ( 9105) [001] d..3 82317.519660: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
118140          <idle>-0     (-----) [007] .n.1 82317.519662: cpu_idle: state=4294967295 cpu_id=7
118141          <idle>-0     (-----) [007] d..2 82317.519671: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
118142<...>-9132 ( 9105) [006] d.h1 82317.519693: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
118143<...>-9132 ( 9105) [006] d..2 82317.519709: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
118144    RenderThread-9436  ( 9105) [006] d..2 82317.519746: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
118145 [email protected]   (  619) [000] d..2 82317.519747: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
118146<...>-8962 ( 8943) [007] d..3 82317.519758: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=001
118147          <idle>-0     (-----) [006] d..1 82317.519758: cpu_idle: state=0 cpu_id=6
118148 [email protected]   (  619) [000] d..3 82317.519778: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
118149<...>-8962 ( 8943) [007] d..4 82317.519785: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=006
118150          <idle>-0     (-----) [006] .n.1 82317.519791: cpu_idle: state=4294967295 cpu_id=6
118151          <idle>-0     (-----) [006] d..2 82317.519822: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
118152    RenderThread-16607 (10023) [004] d..2 82317.519838: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
118153<...>-9105 ( 9105) [001] d..2 82317.519841: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118154          <idle>-0     (-----) [004] d..1 82317.519854: cpu_idle: state=0 cpu_id=4
118155          <idle>-0     (-----) [001] d..1 82317.519859: cpu_idle: state=0 cpu_id=1
118156<...>-8962 ( 8943) [007] d..2 82317.519863: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
118157 [email protected]   (  619) [000] ...1 82317.519874: tracing_mark_write: E|619
118158          <idle>-0     (-----) [007] d..1 82317.519876: cpu_idle: state=0 cpu_id=7
118159 [email protected]   (  619) [000] ...1 82317.519879: tracing_mark_write: E|619
118160 TaskSnapshotPer-9077  ( 8943) [003] d..2 82317.519888: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
118161<...>-9005 ( 8943) [005] .... 82317.519891: binder_transaction: transaction=1572548 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
118162<...>-9005 ( 8943) [005] .... 82317.519896: binder_transaction_alloc_buf: transaction=1572548 data_size=76 offsets_size=0
118163<...>-9005 ( 8943) [005] ...2 82317.519900: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
118164<...>-9005 ( 8943) [005] d..4 82317.519902: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=007
118165   system_server-8943  ( 8943) [006] .... 82317.519918: binder_transaction: transaction=1572549 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
118166<...>-9005 ( 8943) [005] dn.5 82317.519919: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=005
118167          <idle>-0     (-----) [004] d.h2 82317.519922: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
118168   system_server-8943  ( 8943) [006] .... 82317.519923: binder_transaction_alloc_buf: transaction=1572549 data_size=96 offsets_size=0
118169   system_server-8943  ( 8943) [006] d..4 82317.519927: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
118170<...>-9005 ( 8943) [005] d..2 82317.519927: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
118171          <idle>-0     (-----) [004] d.h3 82317.519930: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
118172 [email protected]   (  619) [000] ...1 82317.519931: tracing_mark_write: E|619
118173          <idle>-0     (-----) [004] dnh3 82317.519933: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
118174<...>-8951 ( 8858) [005] .... 82317.519938: binder_transaction_received: transaction=1572548
118175          <idle>-0     (-----) [004] .n.1 82317.519939: cpu_idle: state=4294967295 cpu_id=4
118176          <idle>-0     (-----) [004] d..2 82317.519948: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
118177<...>-8951 ( 8858) [005] .... 82317.519972: binder_transaction: transaction=1572550 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
118178<...>-8951 ( 8858) [005] .... 82317.519975: binder_transaction_alloc_buf: transaction=1572550 data_size=0 offsets_size=0
118179<...>-8951 ( 8858) [005] .... 82317.519977: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
118180 [email protected]   (  619) [000] ...1 82317.519986: tracing_mark_write: E|619
118181          <idle>-0     (-----) [001] dnh2 82317.519988: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
118182          <idle>-0     (-----) [001] .n.1 82317.519995: cpu_idle: state=4294967295 cpu_id=1
118183 [email protected]   (  619) [000] .... 82317.520003: binder_transaction: transaction=1572551 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
118184          <idle>-0     (-----) [001] d..2 82317.520005: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
118185 [email protected]   (  619) [000] .... 82317.520007: binder_transaction_alloc_buf: transaction=1572551 data_size=576 offsets_size=112
118186<...>-8951 ( 8858) [005] d..2 82317.520011: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
118187<...>-9132 ( 9105) [001] .... 82317.520011: binder_transaction_received: transaction=1572549
118188<...>-9005 ( 8943) [005] .... 82317.520021: binder_transaction_received: transaction=1572550
118189 [email protected]   (  619) [000] d..2 82317.520026: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
118190   system_server-8943  ( 8943) [006] d..2 82317.520041: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
118191 [email protected]   (  619) [000] d..3 82317.520052: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
118192          <idle>-0     (-----) [006] d..1 82317.520054: cpu_idle: state=0 cpu_id=6
118193 [email protected]   (  619) [000] .... 82317.520056: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
118194<...>-9132 ( 9105) [001] d..2 82317.520063: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
118195  surfaceflinger-8858  ( 8858) [001] .... 82317.520073: binder_transaction_received: transaction=1572551
118196    RenderThread-16607 (10023) [004] .... 82317.520108: binder_transaction: transaction=1572552 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
118197    RenderThread-16607 (10023) [004] .... 82317.520112: binder_transaction_alloc_buf: transaction=1572552 data_size=192 offsets_size=8
118198    RenderThread-16607 (10023) [004] ...2 82317.520119: binder_set_priority: proc=8858 thread=8951 old=120 => new=110 desired=110
118199    RenderThread-16607 (10023) [004] d..4 82317.520122: sched_waking: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=005
118200    RenderThread-16607 (10023) [004] d..5 82317.520138: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=110 target_cpu=004
118201 [email protected]   (  619) [000] d..2 82317.520144: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118202    RenderThread-16607 (10023) [004] d..2 82317.520148: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
118203<...>-8951 ( 8858) [004] .... 82317.520158: binder_transaction_received: transaction=1572552
118204          <idle>-0     (-----) [000] d..1 82317.520161: cpu_idle: state=0 cpu_id=0
118205<...>-8951 ( 8858) [004] .... 82317.520279: binder_transaction: transaction=1572553 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
118206<...>-8951 ( 8858) [004] .... 82317.520283: binder_transaction_alloc_buf: transaction=1572553 data_size=68 offsets_size=0
118207<...>-8951 ( 8858) [004] d..2 82317.520285: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
118208<...>-8951 ( 8858) [004] dn.3 82317.520295: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
118209<...>-8951 ( 8858) [004] d..2 82317.520301: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
118210    RenderThread-16607 (10023) [004] .... 82317.520309: binder_transaction_received: transaction=1572553
118211<...>-24462 ( 9871) [002] .... 82317.520320: binder_transaction: transaction=1572554 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x24
118212<...>-24462 ( 9871) [002] .... 82317.520325: binder_transaction_alloc_buf: transaction=1572554 data_size=292 offsets_size=8
118213<...>-24462 ( 9871) [002] d..4 82317.520338: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=000
118214<...>-24462 ( 9871) [002] dn.5 82317.520358: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
118215<...>-24462 ( 9871) [002] d..2 82317.520367: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
118216    RenderThread-16607 (10023) [004] d..2 82317.520373: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=110
118217<...>-9062 ( 8943) [002] .... 82317.520377: binder_transaction_received: transaction=1572554
118218<...>-8951 ( 8858) [004] .... 82317.520381: binder_set_priority: proc=8858 thread=8951 old=110 => new=120 desired=120
118219<...>-8951 ( 8858) [004] d..2 82317.520428: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
118220          <idle>-0     (-----) [004] d..1 82317.520443: cpu_idle: state=0 cpu_id=4
118221  surfaceflinger-8858  ( 8858) [001] d..2 82317.520542: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
118222 crtc_commit:111-321   (  321) [003] d..2 82317.520570: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
118223<...>-9062 ( 8943) [002] d..2 82317.520597: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
118224<...>-24462 ( 9871) [002] d..2 82317.520624: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118225          <idle>-0     (-----) [002] d..1 82317.520646: cpu_idle: state=0 cpu_id=2
118226<...>-9132 ( 9105) [001] d..2 82317.520669: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118227          <idle>-0     (-----) [001] d..1 82317.520684: cpu_idle: state=0 cpu_id=1
118228<...>-9005 ( 8943) [005] d..3 82317.520732: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
118229          <idle>-0     (-----) [000] dnh2 82317.520761: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
118230          <idle>-0     (-----) [000] .n.1 82317.520767: cpu_idle: state=4294967295 cpu_id=0
118231          <idle>-0     (-----) [000] d..2 82317.520776: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
118232<...>-9005 ( 8943) [005] d..1 82317.520819: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=001
118233<...>-9039 ( 8943) [000] d..2 82317.520828: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118234          <idle>-0     (-----) [000] d..1 82317.520840: cpu_idle: state=0 cpu_id=0
118235          <idle>-0     (-----) [001] dnh2 82317.520843: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=001
118236          <idle>-0     (-----) [001] .n.1 82317.520848: cpu_idle: state=4294967295 cpu_id=1
118237          <idle>-0     (-----) [001] d..2 82317.520858: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
118238<...>-9005 ( 8943) [005] d..2 82317.520886: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
118239          <idle>-0     (-----) [005] d..1 82317.520903: cpu_idle: state=0 cpu_id=5
118240          <idle>-0     (-----) [000] d.h3 82317.520976: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
118241          <idle>-0     (-----) [000] dnh4 82317.520998: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
118242          <idle>-0     (-----) [000] .n.1 82317.521010: cpu_idle: state=4294967295 cpu_id=0
118243          <idle>-0     (-----) [000] d..2 82317.521019: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
118244 kgsl_worker_thr-258   (  258) [000] d..2 82317.521075: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118245 kgsl_worker_thr-258   (  258) [000] d..3 82317.521109: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
118246 kgsl_worker_thr-258   (  258) [000] d..2 82317.521131: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
118247 TaskSnapshotPer-9077  ( 8943) [003] d..3 82317.521276: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
118248<...>-8961 ( 8943) [001] d..2 82317.521297: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
118249<...>-8961 ( 8943) [001] d..3 82317.521325: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
118250 TaskSnapshotPer-9077  ( 8943) [003] dn.4 82317.521325: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
118251 TaskSnapshotPer-9077  ( 8943) [003] d..2 82317.521334: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
118252  kworker/u16:13-1147  ( 1147) [003] d..2 82317.521346: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
118253 TaskSnapshotPer-9077  ( 8943) [003] d..3 82317.521356: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
118254 TaskSnapshotPer-9077  ( 8943) [003] dn.4 82317.521367: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
118255 TaskSnapshotPer-9077  ( 8943) [003] d..2 82317.521373: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
118256    kworker/3:1H-873   (  873) [003] d..2 82317.521391: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
118257 TaskSnapshotPer-9077  ( 8943) [003] d..2 82317.521415: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
118258          <idle>-0     (-----) [003] d..1 82317.521434: cpu_idle: state=0 cpu_id=3
118259  kworker/u16:15-1311  ( 1311) [000] d..2 82317.521580: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
118260<...>-8961 ( 8943) [001] d.s2 82317.521632: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
118261<...>-8961 ( 8943) [001] d.s3 82317.521651: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
118262<...>-8961 ( 8943) [001] d.s3 82317.521657: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
118263          <idle>-0     (-----) [003] d.h2 82317.521695: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
118264          <idle>-0     (-----) [003] dnh3 82317.521704: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
118265          <idle>-0     (-----) [003] .n.1 82317.521711: cpu_idle: state=4294967295 cpu_id=3
118266<...>-8961 ( 8943) [001] .... 82317.521712: binder_transaction: transaction=1572555 dest_node=1568298 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x33
118267<...>-581 ( 571) [000] d..2 82317.521715: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
118268<...>-8961 ( 8943) [001] .... 82317.521718: binder_transaction_alloc_buf: transaction=1572555 data_size=248 offsets_size=16
118269          <idle>-0     (-----) [003] d..2 82317.521718: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
118270<...>-8961 ( 8943) [001] d..4 82317.521736: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=007
118271<...>-8961 ( 8943) [001] d..5 82317.521767: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=002
118272          <idle>-0     (-----) [002] .n.1 82317.521775: cpu_idle: state=4294967295 cpu_id=2
118273          <idle>-0     (-----) [002] d..2 82317.521820: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
118274 irq/81-114a000.-9677  ( 9677) [003] d.s3 82317.521828: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
118275 irq/81-114a000.-9677  ( 9677) [003] d.s4 82317.521837: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
118276           <...>-27564 (-----) [002] .... 82317.521845: binder_transaction_received: transaction=1572555
118277  kworker/u16:15-1311  ( 1311) [000] d..2 82317.521885: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
118278<...>-8961 ( 8943) [001] d.s2 82317.521892: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
118279          <idle>-0     (-----) [000] d..1 82317.521899: cpu_idle: state=0 cpu_id=0
118280<...>-8961 ( 8943) [001] d.s3 82317.521901: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
118281<...>-8961 ( 8943) [001] d.s3 82317.521909: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
118282          <idle>-0     (-----) [000] .n.1 82317.521915: cpu_idle: state=4294967295 cpu_id=0
118283 irq/81-114a000.-9677  ( 9677) [003] d..2 82317.521922: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=D ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
118284          <idle>-0     (-----) [000] d..2 82317.521925: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
118285<...>-8961 ( 8943) [001] d.s2 82317.521943: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
118286  kworker/u16:15-1311  ( 1311) [000] d..1 82317.521948: clk_enable: gcc_ufs_phy_axi_clk_src
118287    kworker/3:1H-873   (  873) [003] d..2 82317.521952: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118288<...>-8961 ( 8943) [001] d.s3 82317.521961: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
118289  kworker/u16:15-1311  ( 1311) [000] d..1 82317.521965: clk_enable: gcc_ufs_phy_axi_clk
118290          <idle>-0     (-----) [003] d..2 82317.521966: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
118291  kworker/u16:15-1311  ( 1311) [000] d..1 82317.521973: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
118292  kworker/u16:15-1311  ( 1311) [000] d..1 82317.521981: clk_enable: gcc_aggre_ufs_phy_axi_clk
118293  kworker/u16:15-1311  ( 1311) [000] d..1 82317.521987: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
118294  kworker/u16:15-1311  ( 1311) [000] d..1 82317.521992: clk_enable: gcc_ufs_phy_ahb_clk
118295 irq/81-114a000.-9677  ( 9677) [003] d..2 82317.521996: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118296  kworker/u16:15-1311  ( 1311) [000] d..1 82317.522001: clk_enable: gcc_ufs_phy_unipro_core_clk_src
118297          <idle>-0     (-----) [003] d..1 82317.522003: cpu_idle: state=0 cpu_id=3
118298  kworker/u16:15-1311  ( 1311) [000] d..1 82317.522006: clk_enable: gcc_ufs_phy_unipro_core_clk
118299  kworker/u16:15-1311  ( 1311) [000] d..1 82317.522011: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
118300  kworker/u16:15-1311  ( 1311) [000] d..1 82317.522017: clk_enable: gcc_ufs_phy_ice_core_clk_src
118301  kworker/u16:15-1311  ( 1311) [000] d..1 82317.522022: clk_enable: gcc_ufs_phy_ice_core_clk
118302  kworker/u16:15-1311  ( 1311) [000] d..1 82317.522027: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
118303  kworker/u16:15-1311  ( 1311) [000] d..1 82317.522039: clk_enable: gcc_ufs_mem_clkref_clk
118304  kworker/u16:15-1311  ( 1311) [000] d..1 82317.522046: clk_enable: gcc_ufs_phy_phy_aux_clk_src
118305  kworker/u16:15-1311  ( 1311) [000] d..1 82317.522051: clk_enable: gcc_ufs_phy_phy_aux_clk
118306  kworker/u16:15-1311  ( 1311) [000] d..1 82317.522056: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
118307  kworker/u16:15-1311  ( 1311) [000] d..3 82317.522095: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
118308  kworker/u16:15-1311  ( 1311) [000] d..4 82317.522111: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
118309          <idle>-0     (-----) [003] .n.1 82317.522116: cpu_idle: state=4294967295 cpu_id=3
118310          <idle>-0     (-----) [003] d..2 82317.522123: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
118311  kworker/u16:13-1147  ( 1147) [003] d..2 82317.522156: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118312          <idle>-0     (-----) [003] d..1 82317.522162: cpu_idle: state=0 cpu_id=3
118313  kworker/u16:15-1311  ( 1311) [000] d..2 82317.522181: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118314          <idle>-0     (-----) [000] d..1 82317.522194: cpu_idle: state=0 cpu_id=0
118315           <...>-27564 (-----) [002] d..2 82317.522314: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118316          <idle>-0     (-----) [002] d..1 82317.522328: cpu_idle: state=0 cpu_id=2
118317<...>-8961 ( 8943) [001] .... 82317.522534: binder_transaction: transaction=1572556 dest_node=1568298 dest_proc=27550 dest_thread=0 reply=0 flags=0x11 code=0x27
118318<...>-8961 ( 8943) [001] .... 82317.522539: binder_transaction_alloc_buf: transaction=1572556 data_size=76 offsets_size=0
118319<...>-8961 ( 8943) [001] d..4 82317.522543: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=002
118320<...>-8961 ( 8943) [001] d..5 82317.522561: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=002
118321          <idle>-0     (-----) [002] .n.1 82317.522566: cpu_idle: state=4294967295 cpu_id=2
118322          <idle>-0     (-----) [002] d..2 82317.522577: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
118323           <...>-27564 (-----) [002] .... 82317.522581: binder_transaction_received: transaction=1572556
118324<...>-8961 ( 8943) [001] d..3 82317.522602: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
118325          <idle>-0     (-----) [006] dnh2 82317.522631: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=006
118326          <idle>-0     (-----) [006] .n.1 82317.522636: cpu_idle: state=4294967295 cpu_id=6
118327          <idle>-0     (-----) [006] d..2 82317.522644: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
118328<...>-8962 ( 8943) [006] d..2 82317.522693: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
118329          <idle>-0     (-----) [006] d..1 82317.522702: cpu_idle: state=0 cpu_id=6
118330           <...>-27564 (-----) [002] d..2 82317.522732: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118331          <idle>-0     (-----) [002] d..1 82317.522745: cpu_idle: state=0 cpu_id=2
118332<...>-8961 ( 8943) [001] d..2 82317.522778: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=003
118333<...>-8961 ( 8943) [001] d..3 82317.522802: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
118334<...>-8961 ( 8943) [001] d..1 82317.522892: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
118335          <idle>-0     (-----) [004] dnh2 82317.522925: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
118336          <idle>-0     (-----) [004] .n.1 82317.522930: cpu_idle: state=4294967295 cpu_id=4
118337          <idle>-0     (-----) [004] d..2 82317.522939: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
118338<...>-8969 ( 8943) [004] d..2 82317.522984: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
118339          <idle>-0     (-----) [004] d..1 82317.522995: cpu_idle: state=0 cpu_id=4
118340          <idle>-0     (-----) [000] d.h5 82317.523186: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
118341          <idle>-0     (-----) [000] d.h6 82317.523204: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
118342          <idle>-0     (-----) [000] d.h5 82317.523209: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
118343          <idle>-0     (-----) [003] .n.1 82317.523210: cpu_idle: state=4294967295 cpu_id=3
118344          <idle>-0     (-----) [000] dnh6 82317.523221: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
118345          <idle>-0     (-----) [000] .n.1 82317.523232: cpu_idle: state=4294967295 cpu_id=0
118346          <idle>-0     (-----) [000] d..2 82317.523240: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
118347          <idle>-0     (-----) [003] dnh5 82317.523247: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
118348          <idle>-0     (-----) [003] dnh6 82317.523277: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118349          <idle>-0     (-----) [003] dns3 82317.523295: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
118350          <idle>-0     (-----) [003] dns4 82317.523306: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
118351 crtc_commit:111-321   (  321) [000] d..2 82317.523310: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=statsd.writer next_pid=1044 next_prio=120
118352          <idle>-0     (-----) [003] d..2 82317.523316: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
118353  crtc_event:111-322   (  322) [003] d..2 82317.523331: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
118354<...>-8961 ( 8943) [001] d..1 82317.523337: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
118355  crtc_event:111-322   (  322) [003] d..3 82317.523353: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
118356          <idle>-0     (-----) [002] .n.1 82317.523359: cpu_idle: state=4294967295 cpu_id=2
118357          <idle>-0     (-----) [002] d..2 82317.523369: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
118358  crtc_event:111-322   (  322) [003] d..2 82317.523374: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
118359          <idle>-0     (-----) [006] dnh2 82317.523378: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
118360     ksoftirqd/3-34    (   34) [003] d.s2 82317.523408: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=003
118361          <idle>-0     (-----) [006] .n.1 82317.523412: cpu_idle: state=4294967295 cpu_id=6
118362          <idle>-0     (-----) [006] d..2 82317.523420: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
118363     ksoftirqd/3-34    (   34) [003] d.s3 82317.523420: sched_blocked_reason: pid=9077 iowait=1 caller=__filemap_fdatawait_range+0x120/0x184
118364     ksoftirqd/3-34    (   34) [003] d.s3 82317.523424: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=003
118365     ksoftirqd/3-34    (   34) [003] d.s3 82317.523439: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
118366 crtc_commit:111-321   (  321) [002] d..2 82317.523442: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
118367     ksoftirqd/3-34    (   34) [003] dns4 82317.523446: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
118368          <idle>-0     (-----) [002] d..1 82317.523448: cpu_idle: state=0 cpu_id=2
118369     ksoftirqd/3-34    (   34) [003] d..2 82317.523463: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=R+ ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
118370<...>-8961 ( 8943) [001] d..2 82317.523469: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118371    kworker/3:1H-873   (  873) [003] d..2 82317.523474: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
118372          <idle>-0     (-----) [001] d..1 82317.523481: cpu_idle: state=0 cpu_id=1
118373     ksoftirqd/3-34    (   34) [003] d..2 82317.523481: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
118374   statsd.writer-1044  (  901) [000] d..2 82317.523484: 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
118375  kworker/u16:15-1311  ( 1311) [003] d..2 82317.523493: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
118376          <idle>-0     (-----) [000] d..1 82317.523499: cpu_idle: state=0 cpu_id=0
118377<...>-9062 ( 8943) [006] d..1 82317.523508: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=006
118378<...>-9062 ( 8943) [006] d..2 82317.523528: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
118379          <idle>-0     (-----) [007] .n.1 82317.523533: cpu_idle: state=4294967295 cpu_id=7
118380          <idle>-0     (-----) [007] d..2 82317.523543: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
118381<...>-8962 ( 8943) [007] d..1 82317.523586: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
118382<...>-8962 ( 8943) [007] d..2 82317.523600: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
118383          <idle>-0     (-----) [004] .n.1 82317.523605: cpu_idle: state=4294967295 cpu_id=4
118384 TaskSnapshotPer-9077  ( 8943) [003] d..3 82317.523607: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118385          <idle>-0     (-----) [004] d..2 82317.523613: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
118386 TaskSnapshotPer-9077  ( 8943) [003] d..4 82317.523623: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118387<...>-9062 ( 8943) [006] .... 82317.523637: binder_transaction: transaction=1572557 dest_node=0 dest_proc=9871 dest_thread=24462 reply=1 flags=0x0 code=0x0
118388<...>-9062 ( 8943) [006] .... 82317.523644: binder_transaction_alloc_buf: transaction=1572557 data_size=8 offsets_size=0
118389<...>-9062 ( 8943) [006] d..2 82317.523647: sched_waking: comm=lowpool[10] pid=24462 prio=130 target_cpu=002
118390 TaskSnapshotPer-9077  ( 8943) [003] d..2 82317.523650: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
118391<...>-9062 ( 8943) [006] d..3 82317.523665: sched_wakeup: comm=lowpool[10] pid=24462 prio=130 target_cpu=006
118392  kworker/u16:15-1311  ( 1311) [003] d..2 82317.523670: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118393<...>-8962 ( 8943) [007] .... 82317.523674: binder_transaction: transaction=1572558 dest_node=417419 dest_proc=9748 dest_thread=0 reply=0 flags=0x11 code=0x1
118394<...>-8962 ( 8943) [007] .... 82317.523678: binder_transaction_alloc_buf: transaction=1572558 data_size=80 offsets_size=0
118395<...>-8962 ( 8943) [007] d..4 82317.523683: sched_waking: comm=Binder:9748_4 pid=10178 prio=120 target_cpu=000
118396          <idle>-0     (-----) [003] d.h5 82317.523715: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118397          <idle>-0     (-----) [003] dnh6 82317.523729: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118398<...>-9062 ( 8943) [006] d..2 82317.523730: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=lowpool[10] next_pid=24462 next_prio=130
118399<...>-24462 ( 9871) [006] .... 82317.523742: binder_transaction_received: transaction=1572557
118400          <idle>-0     (-----) [003] dnH3 82317.523748: sched_wakeup: comm=Binder:9748_4 pid=10178 prio=120 target_cpu=003
118401          <idle>-0     (-----) [003] dns4 82317.523762: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=003
118402          <idle>-0     (-----) [003] dns5 82317.523769: sched_blocked_reason: pid=9077 iowait=1 caller=wait_on_node_pages_writeback+0x140/0x248
118403          <idle>-0     (-----) [003] dns5 82317.523772: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=003
118404          <idle>-0     (-----) [003] dns5 82317.523779: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
118405          <idle>-0     (-----) [003] dns6 82317.523785: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
118406          <idle>-0     (-----) [003] d..2 82317.523800: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9748_4 next_pid=10178 next_prio=120
118407<...>-8962 ( 8943) [007] d..3 82317.523810: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=007
118408<...>-10178 ( 9748) [003] .... 82317.523811: binder_transaction_received: transaction=1572558
118409          <idle>-0     (-----) [000] dnh2 82317.523868: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=000
118410          <idle>-0     (-----) [000] .n.1 82317.523874: cpu_idle: state=4294967295 cpu_id=0
118411          <idle>-0     (-----) [000] d..2 82317.523883: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=8967 next_prio=120
118412<...>-8962 ( 8943) [007] d..3 82317.523884: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
118413<...>-8969 ( 8943) [004] d..2 82317.523893: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
118414          <idle>-0     (-----) [004] d..1 82317.523905: cpu_idle: state=0 cpu_id=4
118415          <idle>-0     (-----) [001] dnh2 82317.523935: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=001
118416          <idle>-0     (-----) [001] .n.1 82317.523940: cpu_idle: state=4294967295 cpu_id=1
118417          <idle>-0     (-----) [001] d..2 82317.523948: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
118418<...>-8962 ( 8943) [007] d..3 82317.523948: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=001
118419<...>-8967 ( 8943) [000] d..2 82317.523975: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118420          <idle>-0     (-----) [000] dnh3 82317.523987: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=000
118421<...>-8962 ( 8943) [007] d..3 82317.523989: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=006
118422          <idle>-0     (-----) [000] d..2 82317.523996: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.bg next_pid=8960 next_prio=120
118423          <idle>-0     (-----) [002] dnh2 82317.524036: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
118424          <idle>-0     (-----) [002] .n.1 82317.524041: cpu_idle: state=4294967295 cpu_id=2
118425<...>-24462 ( 9871) [006] d..2 82317.524043: sched_switch: prev_comm=lowpool[10] prev_pid=24462 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
118426          <idle>-0     (-----) [002] d..2 82317.524048: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
118427          <idle>-0     (-----) [006] d..1 82317.524057: cpu_idle: state=0 cpu_id=6
118428<...>-9047 ( 8943) [001] d..2 82317.524067: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
118429          <idle>-0     (-----) [001] d..1 82317.524077: cpu_idle: state=0 cpu_id=1
118430<...>-10178 ( 9748) [003] d..2 82317.524079: sched_switch: prev_comm=Binder:9748_4 prev_pid=10178 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
118431<...>-8962 ( 8943) [007] d..2 82317.524090: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
118432    kworker/3:1H-873   (  873) [003] d..2 82317.524092: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
118433          <idle>-0     (-----) [007] d..1 82317.524103: cpu_idle: state=0 cpu_id=7
118434  kworker/u16:15-1311  ( 1311) [003] d..2 82317.524104: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
118435   system_server-8943  ( 8943) [002] d..2 82317.524193: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118436          <idle>-0     (-----) [002] d..1 82317.524203: cpu_idle: state=0 cpu_id=2
118437 TaskSnapshotPer-9077  ( 8943) [003] d..3 82317.524421: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=001
118438 TaskSnapshotPer-9077  ( 8943) [003] d..4 82317.524446: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=001
118439          <idle>-0     (-----) [001] .n.1 82317.524452: cpu_idle: state=4294967295 cpu_id=1
118440          <idle>-0     (-----) [001] d..2 82317.524460: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
118441 TaskSnapshotPer-9077  ( 8943) [003] d..2 82317.524477: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118442          <idle>-0     (-----) [003] d..1 82317.524492: cpu_idle: state=0 cpu_id=3
118443<...>-15374 ( 8943) [001] d..2 82317.524548: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
118444<...>-15374 ( 8943) [001] d..3 82317.524567: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
118445          <idle>-0     (-----) [002] d.s3 82317.525138: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
118446          <idle>-0     (-----) [003] d.s3 82317.525138: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
118447<...>-15374 ( 8943) [001] d.s1 82317.525139: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
118448<...>-8960 ( 8943) [000] d.s2 82317.525148: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118449          <idle>-0     (-----) [003] dns4 82317.525149: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
118450          <idle>-0     (-----) [002] d.s4 82317.525156: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
118451          <idle>-0     (-----) [003] .n.1 82317.525165: cpu_idle: state=4294967295 cpu_id=3
118452<...>-8960 ( 8943) [000] d.s3 82317.525172: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118453          <idle>-0     (-----) [002] ...1 82317.525179: cpu_idle: state=4294967295 cpu_id=2
118454          <idle>-0     (-----) [002] d..1 82317.525183: cpu_idle: state=0 cpu_id=2
118455          <idle>-0     (-----) [003] d..2 82317.525183: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
118456<...>-15374 ( 8943) [001] d.s2 82317.525193: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
118457  crtc_event:111-322   (  322) [003] d..2 82317.525204: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
118458<...>-15374 ( 8943) [001] d.s1 82317.525206: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
118459    kworker/3:1H-873   (  873) [003] d..2 82317.525215: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
118460<...>-8 ( 8) [003] d..2 82317.525229: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=002
118461<...>-15374 ( 8943) [001] d.s2 82317.525234: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
118462<...>-8 ( 8) [003] d..3 82317.525263: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=003
118463<...>-8 ( 8) [003] d..2 82317.525275: 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
118464     rcu_preempt-7     (    7) [003] d..2 82317.525282: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
118465     rcu_preempt-7     (    7) [003] d..3 82317.525306: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
118466     rcu_preempt-7     (    7) [003] d..2 82317.525309: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
118467     rcu_preempt-7     (    7) [003] d..3 82317.525331: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
118468     rcu_preempt-7     (    7) [003] d..2 82317.525339: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/0 next_pid=11 next_prio=120
118469         rcuos/0-11    (   11) [003] d..2 82317.525344: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=002
118470         rcuos/0-11    (   11) [003] d..3 82317.525369: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=003
118471         rcuos/0-11    (   11) [003] d..2 82317.525373: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
118472         rcuos/0-11    (   11) [003] d..3 82317.525381: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
118473         rcuos/0-11    (   11) [003] d..2 82317.525388: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
118474         rcuop/0-10    (   10) [003] d..2 82317.525394: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
118475         rcuop/0-10    (   10) [003] d..3 82317.525423: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
118476         rcuop/0-10    (   10) [003] d..2 82317.525426: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
118477          <idle>-0     (-----) [002] .n.1 82317.525428: cpu_idle: state=4294967295 cpu_id=2
118478          <idle>-0     (-----) [002] d..2 82317.525439: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
118479         rcuop/0-10    (   10) [003] d..3 82317.525450: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
118480         rcuop/0-10    (   10) [003] d..2 82317.525458: 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
118481         rcuop/2-29    (   29) [003] d..2 82317.525462: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
118482         rcuop/1-21    (   21) [002] d..2 82317.525463: 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
118483         rcuop/2-29    (   29) [003] d..3 82317.525497: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
118484     rcu_preempt-7     (    7) [002] d..2 82317.525503: 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
118485         rcuop/2-29    (   29) [003] d..2 82317.525514: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=rcuos/1 next_pid=22 next_prio=120
118486         rcuop/3-37    (   37) [002] d..2 82317.525524: 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
118487         rcuos/1-22    (   22) [003] d..2 82317.525527: 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
118488          <idle>-0     (-----) [002] d..1 82317.525531: cpu_idle: state=0 cpu_id=2
118489<...>-8960 ( 8943) [000] d.h4 82317.525531: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
118490<...>-8 ( 8) [003] d..2 82317.525537: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
118491<...>-8960 ( 8943) [000] d.h5 82317.525547: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
118492          <idle>-0     (-----) [002] .n.1 82317.525552: cpu_idle: state=4294967295 cpu_id=2
118493          <idle>-0     (-----) [002] d..2 82317.525559: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
118494 crtc_commit:111-321   (  321) [002] d..2 82317.525654: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118495  kworker/u16:15-1311  ( 1311) [003] .... 82317.525658: clk_set_rate: l3_cluster0_vote_clk 844800000
118496          <idle>-0     (-----) [002] d..1 82317.525663: cpu_idle: state=0 cpu_id=2
118497  kworker/u16:15-1311  ( 1311) [003] .... 82317.525665: clk_set_rate: l3_clk 844800000
118498<...>-8960 ( 8943) [000] d.h4 82317.525814: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
118499<...>-8960 ( 8943) [000] d.h5 82317.525834: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
118500          <idle>-0     (-----) [002] .n.1 82317.525839: cpu_idle: state=4294967295 cpu_id=2
118501<...>-8960 ( 8943) [000] d.h6 82317.525841: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
118502          <idle>-0     (-----) [002] d..2 82317.525845: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
118503  kworker/u16:15-1311  ( 1311) [003] d..2 82317.525853: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
118504<...>-8960 ( 8943) [000] d.h7 82317.525854: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
118505          <idle>-0     (-----) [003] d..1 82317.525865: cpu_idle: state=0 cpu_id=3
118506<...>-8960 ( 8943) [000] d.h8 82317.525866: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
118507<...>-8960 ( 8943) [000] d.h9 82317.525879: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
118508<...>-15374 ( 8943) [001] d.s2 82317.525884: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118509<...>-8960 ( 8943) [000] d.h6 82317.525888: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
118510  crtc_event:111-322   (  322) [002] d..2 82317.525889: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
118511<...>-15374 ( 8943) [001] d.s3 82317.525896: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
118512<...>-15374 ( 8943) [001] d.s3 82317.525903: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118513          <idle>-0     (-----) [003] .n.1 82317.525909: cpu_idle: state=4294967295 cpu_id=3
118514<...>-8960 ( 8943) [000] d.h7 82317.525916: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
118515          <idle>-0     (-----) [003] d..2 82317.525924: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
118516 crtc_commit:111-321   (  321) [002] d..2 82317.525941: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
118517 SDM_EventThread-644   (  619) [003] ...1 82317.525974: tracing_mark_write: B|619|HWCCallbacks::Vsync::
118518 SDM_EventThread-644   (  619) [003] ...1 82317.525986: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
118519 SDM_EventThread-644   (  619) [003] ...1 82317.525989: tracing_mark_write: E|619
118520 SDM_EventThread-644   (  619) [003] .... 82317.526021: binder_transaction: transaction=1572559 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
118521 SDM_EventThread-644   (  619) [003] .... 82317.526025: binder_transaction_alloc_buf: transaction=1572559 data_size=76 offsets_size=0
118522 SDM_EventThread-644   (  619) [003] d..4 82317.526031: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=000
118523<...>-581 ( 571) [002] d..2 82317.526061: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118524<...>-8960 ( 8943) [000] d..2 82317.526062: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
118525          <idle>-0     (-----) [002] d..1 82317.526071: cpu_idle: state=0 cpu_id=2
118526 SDM_EventThread-644   (  619) [003] d..5 82317.526079: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
118527          <idle>-0     (-----) [002] .n.1 82317.526084: cpu_idle: state=4294967295 cpu_id=2
118528     kworker/0:1-25262 (25262) [000] d..2 82317.526089: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118529          <idle>-0     (-----) [002] d..2 82317.526093: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
118530<...>-8890 ( 8858) [002] .... 82317.526101: binder_transaction_received: transaction=1572559
118531          <idle>-0     (-----) [000] d..1 82317.526102: cpu_idle: state=0 cpu_id=0
118532 SDM_EventThread-644   (  619) [003] ...1 82317.526104: tracing_mark_write: E|619
118533 SDM_EventThread-644   (  619) [003] d..4 82317.526117: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
118534 SDM_EventThread-644   (  619) [003] d..5 82317.526136: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
118535          <idle>-0     (-----) [000] .n.1 82317.526143: cpu_idle: state=4294967295 cpu_id=0
118536<...>-8890 ( 8858) [002] ...1 82317.526148: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
118537          <idle>-0     (-----) [000] d..2 82317.526151: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
118538 SDM_EventThread-644   (  619) [003] d..2 82317.526159: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
118539<...>-8890 ( 8858) [002] ...1 82317.526166: tracing_mark_write: E|8858
118540 crtc_commit:111-321   (  321) [000] d..2 82317.526171: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118541          <idle>-0     (-----) [000] d..1 82317.526179: cpu_idle: state=0 cpu_id=0
118542          <idle>-0     (-----) [000] ...1 82317.526193: cpu_idle: state=4294967295 cpu_id=0
118543          <idle>-0     (-----) [000] d..1 82317.526196: cpu_idle: state=0 cpu_id=0
118544<...>-8890 ( 8858) [002] d..2 82317.526208: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118545          <idle>-0     (-----) [002] d..1 82317.526218: cpu_idle: state=0 cpu_id=2
118546  kworker/u16:15-1311  ( 1311) [003] d..2 82317.526337: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
118547          <idle>-0     (-----) [003] d..1 82317.526348: cpu_idle: state=0 cpu_id=3
118548<...>-15374 ( 8943) [001] d.s2 82317.526362: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118549<...>-15374 ( 8943) [001] d.s3 82317.526373: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
118550<...>-15374 ( 8943) [001] d.s3 82317.526380: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
118551          <idle>-0     (-----) [003] .n.1 82317.526386: cpu_idle: state=4294967295 cpu_id=3
118552          <idle>-0     (-----) [003] d..2 82317.526395: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
118553  kworker/u16:15-1311  ( 1311) [003] .... 82317.526423: clk_set_rate: l3_cluster1_vote_clk 576000000
118554  kworker/u16:15-1311  ( 1311) [003] d..2 82317.526443: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118555          <idle>-0     (-----) [003] d..1 82317.526452: cpu_idle: state=0 cpu_id=3
118556          <idle>-0     (-----) [002] d.h2 82317.527806: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
118557          <idle>-0     (-----) [002] dnh3 82317.527818: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
118558          <idle>-0     (-----) [002] .n.1 82317.527825: cpu_idle: state=4294967295 cpu_id=2
118559          <idle>-0     (-----) [002] d..2 82317.527833: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
118560        DispSync-8879  ( 8858) [002] d..1 82317.527856: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
118561        DispSync-8879  ( 8858) [002] d..2 82317.527874: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
118562          <idle>-0     (-----) [003] .n.1 82317.527879: cpu_idle: state=4294967295 cpu_id=3
118563          <idle>-0     (-----) [003] d..2 82317.527887: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
118564        DispSync-8879  ( 8858) [002] d..2 82317.527900: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118565          <idle>-0     (-----) [002] d..1 82317.527909: cpu_idle: state=0 cpu_id=2
118566  appEventThread-8881  ( 8858) [003] d..3 82317.527955: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=001
118567  appEventThread-8881  ( 8858) [003] d..4 82317.527978: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
118568          <idle>-0     (-----) [000] .n.1 82317.527983: cpu_idle: state=4294967295 cpu_id=0
118569          <idle>-0     (-----) [000] d..2 82317.527991: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
118570  appEventThread-8881  ( 8858) [003] d..3 82317.527994: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=006
118571  appEventThread-8881  ( 8858) [003] d..4 82317.528017: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=002
118572          <idle>-0     (-----) [002] .n.1 82317.528022: cpu_idle: state=4294967295 cpu_id=2
118573          <idle>-0     (-----) [002] d..2 82317.528058: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
118574  appEventThread-8881  ( 8858) [003] d..3 82317.528068: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=007
118575          <idle>-0     (-----) [004] dnh2 82317.528094: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
118576          <idle>-0     (-----) [004] .n.1 82317.528098: cpu_idle: state=4294967295 cpu_id=4
118577          <idle>-0     (-----) [004] d..2 82317.528106: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
118578  appEventThread-8881  ( 8858) [003] d..2 82317.528114: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118579          <idle>-0     (-----) [003] d..1 82317.528125: cpu_idle: state=0 cpu_id=3
118580<...>-15374 ( 8943) [001] d..2 82317.528148: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
118581<...>-15374 ( 8943) [001] d..3 82317.528167: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
118582<...>-9105 ( 9105) [000] .... 82317.528236: binder_transaction: transaction=1572560 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
118583<...>-9105 ( 9105) [000] .... 82317.528242: binder_transaction_alloc_buf: transaction=1572560 data_size=80 offsets_size=0
118584<...>-9105 ( 9105) [000] d..4 82317.528247: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
118585<...>-9105 ( 9105) [000] d..5 82317.528276: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
118586          <idle>-0     (-----) [003] .n.1 82317.528282: cpu_idle: state=4294967295 cpu_id=3
118587          <idle>-0     (-----) [003] d..2 82317.528315: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
118588 s.nexuslauncher-10023 (10023) [004] .... 82317.528316: binder_transaction: transaction=1572561 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
118589 s.nexuslauncher-10023 (10023) [004] .... 82317.528320: binder_transaction_alloc_buf: transaction=1572561 data_size=80 offsets_size=0
118590<...>-8951 ( 8858) [003] .... 82317.528322: binder_transaction_received: transaction=1572560
118591 s.nexuslauncher-10023 (10023) [004] d..4 82317.528324: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
118592 s.nexuslauncher-10023 (10023) [004] d..5 82317.528347: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
118593          <idle>-0     (-----) [005] .n.1 82317.528353: cpu_idle: state=4294967295 cpu_id=5
118594          <idle>-0     (-----) [005] d..2 82317.528364: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
118595<...>-8874 ( 8858) [005] .... 82317.528375: binder_transaction_received: transaction=1572561
118596<...>-8951 ( 8858) [003] d..1 82317.528376: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
118597<...>-8951 ( 8858) [003] dn.2 82317.528386: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
118598<...>-8951 ( 8858) [003] d..2 82317.528393: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
118599  appEventThread-8881  ( 8858) [003] d..2 82317.528409: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
118600<...>-8951 ( 8858) [003] d..1 82317.528413: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
118601 s.nexuslauncher-10023 (10023) [004] d..2 82317.528414: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
118602<...>-8874 ( 8858) [005] d..2 82317.528419: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
118603<...>-8951 ( 8858) [003] dn.2 82317.528419: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
118604<...>-8951 ( 8858) [003] d..2 82317.528424: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
118605          <idle>-0     (-----) [004] d..1 82317.528426: cpu_idle: state=0 cpu_id=4
118606          <idle>-0     (-----) [005] d..1 82317.528430: cpu_idle: state=0 cpu_id=5
118607  appEventThread-8881  ( 8858) [003] d..1 82317.528476: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
118608          <idle>-0     (-----) [005] dnh2 82317.528496: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
118609  appEventThread-8881  ( 8858) [003] d..2 82317.528498: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
118610          <idle>-0     (-----) [005] .n.1 82317.528500: cpu_idle: state=4294967295 cpu_id=5
118611          <idle>-0     (-----) [005] d..2 82317.528509: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
118612<...>-8874 ( 8858) [005] d..1 82317.528515: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
118613<...>-8951 ( 8858) [003] d..2 82317.528544: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
118614<...>-8874 ( 8858) [005] d..2 82317.528555: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
118615<...>-581 ( 571) [003] dnh3 82317.528555: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
118616          <idle>-0     (-----) [005] d..1 82317.528563: cpu_idle: state=0 cpu_id=5
118617<...>-581 ( 571) [003] d..2 82317.528564: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
118618  appEventThread-8881  ( 8858) [003] d..2 82317.528588: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
118619<...>-9105 ( 9105) [000] d..3 82317.528657: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
118620<...>-581 ( 571) [003] d..2 82317.528671: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118621          <idle>-0     (-----) [003] d..1 82317.528681: cpu_idle: state=0 cpu_id=3
118622          <idle>-0     (-----) [006] dnh2 82317.528686: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=006
118623          <idle>-0     (-----) [006] .n.1 82317.528691: cpu_idle: state=4294967295 cpu_id=6
118624<...>-9105 ( 9105) [000] d..2 82317.528698: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118625          <idle>-0     (-----) [006] d..2 82317.528701: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
118626          <idle>-0     (-----) [000] d..1 82317.528712: cpu_idle: state=0 cpu_id=0
118627    RenderThread-9436  ( 9105) [006] d..1 82317.528803: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
118628          <idle>-0     (-----) [000] dnh2 82317.528825: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
118629          <idle>-0     (-----) [000] .n.1 82317.528830: cpu_idle: state=4294967295 cpu_id=0
118630          <idle>-0     (-----) [000] d..2 82317.528839: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
118631    RenderThread-9436  ( 9105) [006] .... 82317.528870: binder_transaction: transaction=1572562 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
118632    RenderThread-9436  ( 9105) [006] .... 82317.528874: binder_transaction_alloc_buf: transaction=1572562 data_size=104 offsets_size=0
118633    RenderThread-9436  ( 9105) [006] d..4 82317.528878: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
118634    RenderThread-9436  ( 9105) [006] dn.5 82317.528893: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
118635    RenderThread-9436  ( 9105) [006] d..2 82317.528900: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
118636<...>-8874 ( 8858) [006] .... 82317.528909: binder_transaction_received: transaction=1572562
118637           <...>-27550 (-----) [002] d..3 82317.528913: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=007
118638          <idle>-0     (-----) [007] dnh2 82317.528939: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=007
118639          <idle>-0     (-----) [007] .n.1 82317.528944: cpu_idle: state=4294967295 cpu_id=7
118640          <idle>-0     (-----) [007] d..2 82317.528952: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=120
118641           <...>-27550 (-----) [002] d..2 82317.528956: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118642          <idle>-0     (-----) [002] d..1 82317.528965: cpu_idle: state=0 cpu_id=2
118643<...>-8874 ( 8858) [006] .... 82317.528972: binder_transaction: transaction=1572563 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
118644<...>-8874 ( 8858) [006] .... 82317.528975: binder_transaction_alloc_buf: transaction=1572563 data_size=52 offsets_size=8
118645<...>-9105 ( 9105) [000] d..2 82317.528977: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
118646          <idle>-0     (-----) [000] d..1 82317.528989: cpu_idle: state=0 cpu_id=0
118647<...>-8874 ( 8858) [006] d..2 82317.529006: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
118648    RenderThread-9436  ( 9105) [006] .... 82317.529015: binder_transaction_received: transaction=1572563
118649           <...>-27570 (-----) [007] d..1 82317.529067: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=002
118650          <idle>-0     (-----) [002] dnh2 82317.529089: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=002
118651          <idle>-0     (-----) [002] .n.1 82317.529093: cpu_idle: state=4294967295 cpu_id=2
118652          <idle>-0     (-----) [002] d..2 82317.529100: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
118653           <...>-27570 (-----) [007] d..2 82317.529104: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
118654          <idle>-0     (-----) [007] d..1 82317.529116: cpu_idle: state=0 cpu_id=7
118655           <...>-27550 (-----) [002] d..3 82317.529117: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=007
118656          <idle>-0     (-----) [007] dnh2 82317.529136: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=007
118657          <idle>-0     (-----) [007] .n.1 82317.529141: cpu_idle: state=4294967295 cpu_id=7
118658           <...>-27550 (-----) [002] d..2 82317.529144: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118659          <idle>-0     (-----) [007] d..2 82317.529148: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=120
118660          <idle>-0     (-----) [002] d..1 82317.529151: cpu_idle: state=0 cpu_id=2
118661           <...>-27570 (-----) [007] ...1 82317.529535: tracing_mark_write: B|27550|HIDL::IMapper::freeBuffer::passthrough
118662           <...>-27570 (-----) [007] d..2 82317.529719: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=003
118663           <...>-27570 (-----) [007] ...1 82317.529760: tracing_mark_write: B|27550|FreeBuffer
118664          <idle>-0     (-----) [000] dnh2 82317.529761: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
118665          <idle>-0     (-----) [000] .n.1 82317.529767: cpu_idle: state=4294967295 cpu_id=0
118666           <...>-27570 (-----) [007] ...1 82317.529774: tracing_mark_write: E|27550
118667          <idle>-0     (-----) [000] d..2 82317.529776: 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
118668           <...>-27570 (-----) [007] ...1 82317.529778: tracing_mark_write: B|27550|FreeBuffer
118669           <...>-27570 (-----) [007] ...1 82317.529781: tracing_mark_write: B|27550|UnmapBuffer
118670         rcuop/6-61    (   61) [000] d..2 82317.529795: 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
118671           <...>-27570 (-----) [007] ...1 82317.529801: tracing_mark_write: E|27550
118672          <idle>-0     (-----) [000] d..1 82317.529803: cpu_idle: state=0 cpu_id=0
118673           <...>-27570 (-----) [007] ...1 82317.529809: tracing_mark_write: E|27550
118674           <...>-27570 (-----) [007] ...1 82317.529816: tracing_mark_write: E|27550
118675<...>-15374 ( 8943) [001] d..2 82317.529846: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
118676           <...>-27570 (-----) [007] .... 82317.529848: binder_transaction: transaction=1572564 dest_node=1568680 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0xa
118677           <...>-27570 (-----) [007] .... 82317.529851: binder_transaction_alloc_buf: transaction=1572564 data_size=88 offsets_size=0
118678           <...>-27570 (-----) [007] d..4 82317.529854: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=006
118679<...>-15374 ( 8943) [001] d..3 82317.529865: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
118680           <...>-27570 (-----) [007] d..5 82317.529868: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
118681           <...>-27570 (-----) [007] d..2 82317.529879: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
118682<...>-8874 ( 8858) [007] .... 82317.529888: binder_transaction_received: transaction=1572564
118683<...>-8874 ( 8858) [007] ...1 82317.529926: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
118684<...>-8874 ( 8858) [007] ...1 82317.529942: tracing_mark_write: B|8858|FreeBuffer
118685<...>-8874 ( 8858) [007] d..2 82317.529959: sched_waking: comm=system pid=104 prio=120 target_cpu=002
118686<...>-8874 ( 8858) [007] ...1 82317.529997: tracing_mark_write: E|8858
118687<...>-8874 ( 8858) [007] ...1 82317.530001: tracing_mark_write: B|8858|FreeBuffer
118688          <idle>-0     (-----) [000] dnh2 82317.530004: sched_wakeup: comm=system pid=104 prio=120 target_cpu=000
118689          <idle>-0     (-----) [000] .n.1 82317.530009: cpu_idle: state=4294967295 cpu_id=0
118690<...>-8874 ( 8858) [007] ...1 82317.530016: tracing_mark_write: E|8858
118691    RenderThread-9436  ( 9105) [006] .... 82317.530016: binder_transaction: transaction=1572565 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
118692          <idle>-0     (-----) [000] d..2 82317.530017: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system next_pid=104 next_prio=120
118693    RenderThread-9436  ( 9105) [006] .... 82317.530020: binder_transaction_alloc_buf: transaction=1572565 data_size=192 offsets_size=8
118694<...>-8874 ( 8858) [007] ...1 82317.530021: tracing_mark_write: E|8858
118695    RenderThread-9436  ( 9105) [006] d..4 82317.530027: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
118696<...>-8874 ( 8858) [007] ...1 82317.530037: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
118697<...>-8874 ( 8858) [007] ...1 82317.530041: tracing_mark_write: B|8858|FreeBuffer
118698    RenderThread-9436  ( 9105) [006] dn.5 82317.530047: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
118699<...>-8874 ( 8858) [007] ...1 82317.530054: tracing_mark_write: E|8858
118700<...>-8874 ( 8858) [007] ...1 82317.530057: tracing_mark_write: B|8858|FreeBuffer
118701<...>-8874 ( 8858) [007] ...1 82317.530069: tracing_mark_write: E|8858
118702<...>-8874 ( 8858) [007] ...1 82317.530072: tracing_mark_write: E|8858
118703    RenderThread-9436  ( 9105) [006] d..2 82317.530085: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
118704<...>-8951 ( 8858) [006] .... 82317.530094: binder_transaction_received: transaction=1572565
118705<...>-8874 ( 8858) [007] d..5 82317.530160: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=002
118706          system-104   (  104) [000] d.h3 82317.530165: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
118707<...>-8874 ( 8858) [007] .... 82317.530176: binder_transaction: transaction=1572566 dest_node=0 dest_proc=27550 dest_thread=27570 reply=1 flags=0x0 code=0x0
118708<...>-8874 ( 8858) [007] .... 82317.530178: binder_transaction_alloc_buf: transaction=1572566 data_size=4 offsets_size=0
118709<...>-8874 ( 8858) [007] d..2 82317.530180: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=007
118710          <idle>-0     (-----) [002] dnh2 82317.530182: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=002
118711          <idle>-0     (-----) [002] .n.1 82317.530187: cpu_idle: state=4294967295 cpu_id=2
118712<...>-8874 ( 8858) [007] d..3 82317.530189: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=007
118713          system-104   (  104) [000] d.h4 82317.530190: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
118714          <idle>-0     (-----) [002] d..2 82317.530193: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
118715          <idle>-0     (-----) [003] .n.1 82317.530196: cpu_idle: state=4294967295 cpu_id=3
118716          <idle>-0     (-----) [003] d..2 82317.530203: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
118717<...>-8951 ( 8858) [006] .... 82317.530207: binder_transaction: transaction=1572567 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
118718<...>-8874 ( 8858) [007] d..5 82317.530212: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
118719<...>-8951 ( 8858) [006] .... 82317.530212: binder_transaction_alloc_buf: transaction=1572567 data_size=68 offsets_size=0
118720<...>-8951 ( 8858) [006] d..2 82317.530239: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
118721    RenderThread-9436  ( 9105) [006] .... 82317.530248: binder_transaction_received: transaction=1572567
118722<...>-15374 ( 8943) [001] dnh1 82317.530250: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
118723<...>-8874 ( 8858) [007] d..2 82317.530251: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=27570 next_prio=120
118724<...>-15374 ( 8943) [001] d..2 82317.530259: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=R ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
118725           <...>-27570 (-----) [007] .... 82317.530260: binder_transaction_received: transaction=1572566
118726 kgsl_worker_thr-258   (  258) [003] d..2 82317.530280: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118727           <...>-27562 (-----) [001] d..2 82317.530281: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=15374 next_prio=116
118728          <idle>-0     (-----) [003] d..1 82317.530286: cpu_idle: state=0 cpu_id=3
118729           <...>-27564 (-----) [002] d..2 82317.530297: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
118730           <...>-27570 (-----) [007] d..1 82317.530299: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=002
118731    RenderThread-9436  ( 9105) [006] d..2 82317.530321: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
118732          <idle>-0     (-----) [003] dnh2 82317.530326: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
118733          <idle>-0     (-----) [003] .n.1 82317.530331: cpu_idle: state=4294967295 cpu_id=3
118734          <idle>-0     (-----) [006] d..1 82317.530336: cpu_idle: state=0 cpu_id=6
118735          <idle>-0     (-----) [003] d..2 82317.530337: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
118736           <...>-27570 (-----) [007] d..2 82317.530337: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
118737          <idle>-0     (-----) [007] d..1 82317.530354: cpu_idle: state=0 cpu_id=7
118738<...>-581 ( 571) [002] d..2 82317.530355: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118739          <idle>-0     (-----) [002] d..1 82317.530364: cpu_idle: state=0 cpu_id=2
118740           <...>-27550 (-----) [003] d..3 82317.530426: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=007
118741          <idle>-0     (-----) [007] dnh2 82317.530448: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=007
118742          <idle>-0     (-----) [007] .n.1 82317.530452: cpu_idle: state=4294967295 cpu_id=7
118743          <idle>-0     (-----) [007] d..2 82317.530460: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=120
118744           <...>-27550 (-----) [003] d..2 82317.530462: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118745          <idle>-0     (-----) [003] d..1 82317.530470: cpu_idle: state=0 cpu_id=3
118746           <...>-27570 (-----) [007] d..1 82317.530473: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
118747          <idle>-0     (-----) [003] dnh2 82317.530491: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
118748           <...>-27570 (-----) [007] d..2 82317.530494: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
118749          <idle>-0     (-----) [003] .n.1 82317.530496: cpu_idle: state=4294967295 cpu_id=3
118750          <idle>-0     (-----) [007] d..1 82317.530500: cpu_idle: state=0 cpu_id=7
118751          <idle>-0     (-----) [003] d..2 82317.530503: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
118752           <...>-27550 (-----) [003] .... 82317.530632: binder_transaction: transaction=1572568 dest_node=1568551 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x6
118753           <...>-27550 (-----) [003] .... 82317.530637: binder_transaction_alloc_buf: transaction=1572568 data_size=120 offsets_size=8
118754           <...>-27550 (-----) [003] d..4 82317.530652: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=006
118755           <...>-27550 (-----) [003] d..5 82317.530673: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=003
118756           <...>-27550 (-----) [003] d..2 82317.530719: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
118757<...>-9062 ( 8943) [003] .... 82317.530728: binder_transaction_received: transaction=1572568
118758<...>-15374 ( 8943) [001] d..2 82317.530803: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
118759<...>-15374 ( 8943) [001] d..3 82317.530820: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
118760<...>-9062 ( 8943) [003] d..1 82317.531075: sched_waking: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
118761          <idle>-0     (-----) [006] dnh2 82317.531104: sched_wakeup: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
118762          <idle>-0     (-----) [006] .n.1 82317.531108: cpu_idle: state=4294967295 cpu_id=6
118763          <idle>-0     (-----) [006] d..2 82317.531117: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
118764<...>-9062 ( 8943) [003] .... 82317.531375: binder_transaction: transaction=1572569 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
118765<...>-9062 ( 8943) [003] .... 82317.531379: binder_transaction_alloc_buf: transaction=1572569 data_size=380 offsets_size=16
118766<...>-9062 ( 8943) [003] ...2 82317.531398: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
118767<...>-9062 ( 8943) [003] d..4 82317.531401: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=007
118768<...>-9062 ( 8943) [003] d..5 82317.531422: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=003
118769<...>-9062 ( 8943) [003] d..2 82317.531465: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
118770<...>-8874 ( 8858) [003] .... 82317.531472: binder_transaction_received: transaction=1572569
118771<...>-8874 ( 8858) [003] .... 82317.531539: binder_transaction: transaction=1572570 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
118772<...>-8874 ( 8858) [003] .... 82317.531542: binder_transaction_alloc_buf: transaction=1572570 data_size=0 offsets_size=0
118773<...>-8874 ( 8858) [003] d..2 82317.531545: sched_waking: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
118774<...>-8874 ( 8858) [003] d..3 82317.531555: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
118775<...>-8874 ( 8858) [003] .... 82317.531558: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
118776<...>-8874 ( 8858) [003] d..2 82317.531568: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
118777<...>-9062 ( 8943) [003] .... 82317.531574: binder_transaction_received: transaction=1572570
118778          <idle>-0     (-----) [002] d.h2 82317.531798: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
118779<...>-9062 ( 8943) [003] d.s1 82317.531810: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
118780          <idle>-0     (-----) [002] dnh3 82317.531812: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
118781<...>-9062 ( 8943) [003] d.s2 82317.531865: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
118782<...>-9062 ( 8943) [003] d.s2 82317.531873: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
118783          <idle>-0     (-----) [002] dnH3 82317.531880: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
118784<...>-9062 ( 8943) [003] d.s3 82317.531884: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
118785          <idle>-0     (-----) [002] dnH4 82317.531898: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
118786          system-104   (  104) [000] d..2 82317.531906: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=sugov:0 next_pid=576 next_prio=49
118787          <idle>-0     (-----) [002] dns2 82317.531914: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
118788          <idle>-0     (-----) [002] dns3 82317.531928: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
118789          <idle>-0     (-----) [002] .n.1 82317.531938: cpu_idle: state=4294967295 cpu_id=2
118790          <idle>-0     (-----) [002] d..2 82317.531945: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
118791         sugov:0-576   (  576) [000] .... 82317.531946: clk_set_rate: pwrcl_clk 1516800000
118792         sugov:0-576   (  576) [000] .... 82317.531965: clk_set_rate: cpu3_pwrcl_clk 1228800000
118793        DispSync-8879  ( 8858) [002] d..1 82317.531969: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
118794         sugov:0-576   (  576) [000] .... 82317.531974: clk_set_rate: cpu2_pwrcl_clk 1228800000
118795         sugov:0-576   (  576) [000] .... 82317.531980: clk_set_rate: cpu1_pwrcl_clk 1228800000
118796         sugov:0-576   (  576) [000] .... 82317.531987: clk_set_rate: cpu0_pwrcl_clk 1516800000
118797        DispSync-8879  ( 8858) [002] d..2 82317.531989: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
118798         sugov:0-576   (  576) [000] .... 82317.531995: cpu_frequency: state=1516800 cpu_id=0
118799<...>-9062 ( 8943) [003] d..2 82317.532002: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
118800        DispSync-8879  ( 8858) [002] d..2 82317.532009: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
118801         sugov:0-576   (  576) [000] .... 82317.532016: cpu_frequency: state=1516800 cpu_id=1
118802         sugov:0-576   (  576) [000] .... 82317.532019: cpu_frequency: state=1516800 cpu_id=2
118803         sugov:0-576   (  576) [000] .... 82317.532022: cpu_frequency: state=1516800 cpu_id=3
118804<...>-8 ( 8) [002] d..2 82317.532030: 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
118805         sugov:0-576   (  576) [000] d..2 82317.532037: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
118806   sfEventThread-8882  ( 8858) [003] d..3 82317.532049: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
118807     rcu_preempt-7     (    7) [002] d..2 82317.532068: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
118808   sfEventThread-8882  ( 8858) [003] d..4 82317.532077: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
118809<...>-8874 ( 8858) [002] d..2 82317.532082: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
118810   sfEventThread-8882  ( 8858) [003] d..3 82317.532097: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=005
118811          <idle>-0     (-----) [004] dnh2 82317.532126: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
118812          <idle>-0     (-----) [004] .n.1 82317.532131: cpu_idle: state=4294967295 cpu_id=4
118813   sfEventThread-8882  ( 8858) [003] d..2 82317.532132: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
118814<...>-8955 ( 8943) [006] d..2 82317.532139: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
118815          <idle>-0     (-----) [004] d..2 82317.532142: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
118816          <idle>-0     (-----) [006] d..1 82317.532160: cpu_idle: state=0 cpu_id=6
118817     kworker/3:1-25210 (25210) [003] d..2 82317.532167: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
118818<...>-9062 ( 8943) [003] d..1 82317.532181: sched_waking: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
118819          <idle>-0     (-----) [006] dnh2 82317.532200: sched_wakeup: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
118820          <idle>-0     (-----) [006] .n.1 82317.532205: cpu_idle: state=4294967295 cpu_id=6
118821<...>-9005 ( 8943) [004] d..2 82317.532206: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
118822          <idle>-0     (-----) [006] d..2 82317.532213: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
118823          <idle>-0     (-----) [004] d..1 82317.532217: cpu_idle: state=0 cpu_id=4
118824<...>-9062 ( 8943) [003] d..2 82317.532219: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
118825<...>-581 ( 571) [003] d..2 82317.532325: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
118826<...>-8955 ( 8943) [006] d..1 82317.532331: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
118827          <idle>-0     (-----) [003] d..1 82317.532339: cpu_idle: state=0 cpu_id=3
118828<...>-8955 ( 8943) [006] d..2 82317.532343: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
118829          <idle>-0     (-----) [004] .n.1 82317.532348: cpu_idle: state=4294967295 cpu_id=4
118830          <idle>-0     (-----) [004] d..2 82317.532356: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
118831<...>-9005 ( 8943) [004] d..1 82317.532362: sched_waking: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
118832          <idle>-0     (-----) [003] dnh2 82317.532380: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
118833          <idle>-0     (-----) [003] .n.1 82317.532385: cpu_idle: state=4294967295 cpu_id=3
118834          <idle>-0     (-----) [003] d..2 82317.532392: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
118835<...>-9062 ( 8943) [003] d..2 82317.532414: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
118836          <idle>-0     (-----) [003] d..1 82317.532423: cpu_idle: state=0 cpu_id=3
118837<...>-9005 ( 8943) [004] d..2 82317.532432: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
118838<...>-15374 ( 8943) [001] d..1 82317.532435: sched_waking: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
118839          <idle>-0     (-----) [004] d..1 82317.532442: cpu_idle: state=0 cpu_id=4
118840<...>-15374 ( 8943) [001] d..2 82317.532446: sched_blocked_reason: pid=9062 iowait=0 caller=do_page_fault+0x4e0/0x594
118841<...>-15374 ( 8943) [001] d..2 82317.532454: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
118842<...>-15374 ( 8943) [001] d..1 82317.532456: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
118843          <idle>-0     (-----) [003] .n.1 82317.532460: cpu_idle: state=4294967295 cpu_id=3
118844          <idle>-0     (-----) [003] d..2 82317.532467: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
118845          <idle>-0     (-----) [004] d.h2 82317.532474: sched_blocked_reason: pid=9005 iowait=0 caller=do_page_fault+0x4e0/0x594
118846          <idle>-0     (-----) [004] dnh2 82317.532477: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
118847          <idle>-0     (-----) [004] .n.1 82317.532481: cpu_idle: state=4294967295 cpu_id=4
118848          <idle>-0     (-----) [004] d..2 82317.532489: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
118849<...>-9005 ( 8943) [004] d..2 82317.532552: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
118850<...>-8955 ( 8943) [006] d..2 82317.532555: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
118851          <idle>-0     (-----) [004] d..1 82317.532560: cpu_idle: state=0 cpu_id=4
118852          <idle>-0     (-----) [006] d..1 82317.532569: cpu_idle: state=0 cpu_id=6
118853<...>-9062 ( 8943) [003] d..1 82317.532580: sched_waking: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
118854<...>-15374 ( 8943) [001] d..1 82317.532590: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
118855          <idle>-0     (-----) [006] dnh2 82317.532599: sched_wakeup: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
118856          <idle>-0     (-----) [006] .n.1 82317.532604: cpu_idle: state=4294967295 cpu_id=6
118857          <idle>-0     (-----) [004] d.h2 82317.532607: sched_blocked_reason: pid=9005 iowait=0 caller=do_page_fault+0x4e0/0x594
118858          <idle>-0     (-----) [004] dnh2 82317.532610: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
118859          <idle>-0     (-----) [006] d..2 82317.532610: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
118860          <idle>-0     (-----) [004] .n.1 82317.532614: cpu_idle: state=4294967295 cpu_id=4
118861          <idle>-0     (-----) [004] d..2 82317.532620: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
118862  surfaceflinger-8858  ( 8858) [002] d..1 82317.532626: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
118863  surfaceflinger-8858  ( 8858) [002] d..2 82317.532647: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
118864          system-104   (  104) [000] d..2 82317.532658: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
118865   sfEventThread-8882  ( 8858) [000] d..2 82317.532694: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
118866<...>-9005 ( 8943) [004] d..2 82317.532720: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
118867          <idle>-0     (-----) [004] d..1 82317.532730: cpu_idle: state=0 cpu_id=4
118868  surfaceflinger-8858  ( 8858) [002] ...1 82317.532746: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
118869  surfaceflinger-8858  ( 8858) [002] ...1 82317.532751: tracing_mark_write: E|8858
118870  surfaceflinger-8858  ( 8858) [002] .... 82317.532827: binder_transaction: transaction=1572571 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
118871  surfaceflinger-8858  ( 8858) [002] .... 82317.532836: binder_transaction_alloc_buf: transaction=1572571 data_size=540 offsets_size=96
118872  surfaceflinger-8858  ( 8858) [002] ...2 82317.532871: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
118873  surfaceflinger-8858  ( 8858) [002] d..4 82317.532883: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
118874  surfaceflinger-8858  ( 8858) [002] d..5 82317.532899: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
118875          system-104   (  104) [000] d..2 82317.532907: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> [email protected] next_pid=619 next_prio=98
118876  surfaceflinger-8858  ( 8858) [002] d..2 82317.532915: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
118877 [email protected]   (  619) [000] .... 82317.532917: binder_transaction_received: transaction=1572571
118878<...>-8874 ( 8858) [002] d..2 82317.532966: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118879 [email protected]   (  619) [000] ...1 82317.532971: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
118880          <idle>-0     (-----) [002] d..1 82317.532979: cpu_idle: state=0 cpu_id=2
118881<...>-9062 ( 8943) [003] d..3 82317.533001: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
118882          <idle>-0     (-----) [004] dnh2 82317.533026: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
118883          <idle>-0     (-----) [004] .n.1 82317.533031: cpu_idle: state=4294967295 cpu_id=4
118884          <idle>-0     (-----) [004] d..2 82317.533038: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
118885<...>-8969 ( 8943) [004] d..2 82317.533068: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
118886 [email protected]   (  619) [000] ...1 82317.533071: tracing_mark_write: B|619|HWCSession::PresentDisplay::
118887          <idle>-0     (-----) [004] d..1 82317.533074: cpu_idle: state=0 cpu_id=4
118888<...>-15374 ( 8943) [001] d..2 82317.533103: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
118889<...>-15374 ( 8943) [001] d..3 82317.533121: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=001
118890<...>-9062 ( 8943) [003] .... 82317.533335: binder_transaction: transaction=1572572 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
118891<...>-9062 ( 8943) [003] .... 82317.533339: binder_transaction_alloc_buf: transaction=1572572 data_size=96 offsets_size=0
118892<...>-9062 ( 8943) [003] d..4 82317.533345: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
118893<...>-9062 ( 8943) [003] d..5 82317.533370: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
118894          <idle>-0     (-----) [002] .n.1 82317.533375: cpu_idle: state=4294967295 cpu_id=2
118895          <idle>-0     (-----) [002] d..2 82317.533384: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
118896<...>-9132 ( 9105) [002] .... 82317.533392: binder_transaction_received: transaction=1572572
118897<...>-8955 ( 8943) [006] d..1 82317.533414: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
118898<...>-8955 ( 8943) [006] d..2 82317.533426: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
118899          <idle>-0     (-----) [004] .n.1 82317.533431: cpu_idle: state=4294967295 cpu_id=4
118900          <idle>-0     (-----) [004] d..2 82317.533439: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
118901<...>-8969 ( 8943) [004] d..2 82317.533478: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
118902          <idle>-0     (-----) [004] d..1 82317.533488: cpu_idle: state=0 cpu_id=4
118903 [email protected]   (  619) [000] ...1 82317.533540: tracing_mark_write: B|619|HWDeviceDRM::Validate::
118904<...>-15374 ( 8943) [001] d..1 82317.533546: sched_waking: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
118905<...>-9132 ( 9105) [002] d..3 82317.533549: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
118906<...>-9062 ( 8943) [003] d..2 82317.533572: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
118907          <idle>-0     (-----) [007] dnh2 82317.533584: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
118908          <idle>-0     (-----) [007] .n.1 82317.533621: cpu_idle: state=4294967295 cpu_id=7
118909<...>-15374 ( 8943) [001] d..2 82317.533622: sched_blocked_reason: pid=9062 iowait=0 caller=do_page_fault+0x4e0/0x594
118910          <idle>-0     (-----) [007] d..2 82317.533628: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
118911<...>-15374 ( 8943) [001] d..2 82317.533629: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
118912<...>-581 ( 571) [003] d..2 82317.533640: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
118913<...>-9062 ( 8943) [003] d..1 82317.533650: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=001
118914<...>-15374 ( 8943) [001] d..2 82317.533650: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
118915<...>-9062 ( 8943) [003] d..2 82317.533660: sched_blocked_reason: pid=15374 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
118916<...>-9062 ( 8943) [003] d..2 82317.533666: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=001
118917          <idle>-0     (-----) [001] d..2 82317.533680: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
118918<...>-9132 ( 9105) [002] d..2 82317.533691: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
118919          <idle>-0     (-----) [002] d..1 82317.533703: cpu_idle: state=0 cpu_id=2
118920<...>-9062 ( 8943) [003] d.h1 82317.533704: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
118921<...>-9062 ( 8943) [003] dnh2 82317.533714: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
118922<...>-9062 ( 8943) [003] d..2 82317.533725: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
118923<...>-9105 ( 9105) [007] d..2 82317.533748: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
118924          <idle>-0     (-----) [007] d..1 82317.533760: cpu_idle: state=0 cpu_id=7
118925 irq/81-114a000.-9677  ( 9677) [003] d..2 82317.533887: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=D ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
118926<...>-9062 ( 8943) [003] d..3 82317.533906: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
118927<...>-15374 ( 8943) [001] d.s3 82317.533916: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
118928<...>-15374 ( 8943) [001] d.s4 82317.533928: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
118929          <idle>-0     (-----) [007] dnh2 82317.533930: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
118930          <idle>-0     (-----) [007] .n.1 82317.533935: cpu_idle: state=4294967295 cpu_id=7
118931<...>-9062 ( 8943) [003] d..2 82317.533936: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
118932          <idle>-0     (-----) [007] d..2 82317.533942: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
118933 irq/81-114a000.-9677  ( 9677) [003] d..2 82317.533959: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
118934<...>-15374 ( 8943) [001] d..1 82317.533983: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
118935<...>-8962 ( 8943) [007] d..2 82317.533995: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
118936 [email protected]   (  619) [000] ...1 82317.534003: tracing_mark_write: E|619
118937          <idle>-0     (-----) [007] d..1 82317.534006: cpu_idle: state=0 cpu_id=7
118938          <idle>-0     (-----) [007] d.h2 82317.534015: sched_blocked_reason: pid=8962 iowait=0 caller=do_page_fault+0x4e0/0x594
118939          <idle>-0     (-----) [007] dnh2 82317.534018: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
118940          <idle>-0     (-----) [007] .n.1 82317.534022: cpu_idle: state=4294967295 cpu_id=7
118941<...>-15374 ( 8943) [001] d..2 82317.534023: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
118942          <idle>-0     (-----) [007] d..2 82317.534030: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
118943          <idle>-0     (-----) [001] d..1 82317.534036: cpu_idle: state=0 cpu_id=1
118944<...>-8962 ( 8943) [007] d..1 82317.534040: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=001
118945          <idle>-0     (-----) [001] d.h2 82317.534058: sched_blocked_reason: pid=15374 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
118946          <idle>-0     (-----) [001] dnh2 82317.534060: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=001
118947          <idle>-0     (-----) [001] .n.1 82317.534065: cpu_idle: state=4294967295 cpu_id=1
118948          <idle>-0     (-----) [001] d..2 82317.534072: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
118949 [email protected]   (  619) [000] ...1 82317.534110: tracing_mark_write: B|619|HWDeviceDRM::Commit::
118950 [email protected]   (  619) [000] ...1 82317.534118: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
118951<...>-8962 ( 8943) [007] d..3 82317.534133: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
118952          <idle>-0     (-----) [002] dnh2 82317.534159: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
118953          <idle>-0     (-----) [002] .n.1 82317.534163: cpu_idle: state=4294967295 cpu_id=2
118954          <idle>-0     (-----) [002] d..2 82317.534171: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
118955<...>-8962 ( 8943) [007] d..2 82317.534191: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
118956          <idle>-0     (-----) [007] d..1 82317.534203: cpu_idle: state=0 cpu_id=7
118957   system_server-8943  ( 8943) [002] .... 82317.534268: binder_transaction: transaction=1572573 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
118958   system_server-8943  ( 8943) [002] .... 82317.534272: binder_transaction_alloc_buf: transaction=1572573 data_size=96 offsets_size=0
118959   system_server-8943  ( 8943) [002] d..4 82317.534276: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
118960          <idle>-0     (-----) [007] dnh2 82317.534339: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
118961          <idle>-0     (-----) [007] .n.1 82317.534344: cpu_idle: state=4294967295 cpu_id=7
118962          <idle>-0     (-----) [007] d..2 82317.534353: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
118963<...>-9132 ( 9105) [007] .... 82317.534364: binder_transaction_received: transaction=1572573
118964<...>-15374 ( 8943) [001] d..1 82317.534373: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
118965   system_server-8943  ( 8943) [002] d..2 82317.534390: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
118966<...>-15374 ( 8943) [001] d..2 82317.534400: sched_blocked_reason: pid=8943 iowait=0 caller=do_page_fault+0x4e0/0x594
118967          <idle>-0     (-----) [002] d..1 82317.534401: cpu_idle: state=0 cpu_id=2
118968<...>-15374 ( 8943) [001] d..2 82317.534407: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
118969          <idle>-0     (-----) [002] .n.1 82317.534412: cpu_idle: state=4294967295 cpu_id=2
118970          <idle>-0     (-----) [002] d..2 82317.534420: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
118971<...>-15374 ( 8943) [001] d..2 82317.534424: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
118972 [email protected]   (  619) [000] d..2 82317.534431: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
118973   system_server-8943  ( 8943) [002] d..1 82317.534432: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=001
118974          <idle>-0     (-----) [001] d..1 82317.534435: cpu_idle: state=0 cpu_id=1
118975   system_server-8943  ( 8943) [002] d..2 82317.534439: sched_blocked_reason: pid=15374 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
118976   system_server-8943  ( 8943) [002] d..2 82317.534445: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=001
118977          <idle>-0     (-----) [001] .n.1 82317.534451: cpu_idle: state=4294967295 cpu_id=1
118978<...>-9132 ( 9105) [007] d..3 82317.534453: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
118979 [email protected]   (  619) [000] d..3 82317.534457: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
118980          <idle>-0     (-----) [001] d..2 82317.534459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
118981   system_server-8943  ( 8943) [002] d..2 82317.534466: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
118982<...>-9132 ( 9105) [007] dn.4 82317.534468: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
118983<...>-9132 ( 9105) [007] d..2 82317.534474: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
118984<...>-9105 ( 9105) [007] d..2 82317.534501: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
118985<...>-9132 ( 9105) [007] d..1 82317.534508: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
118986<...>-9132 ( 9105) [007] dn.2 82317.534516: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
118987<...>-9132 ( 9105) [007] d..2 82317.534520: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
118988<...>-9105 ( 9105) [007] d..2 82317.534529: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
118989<...>-9132 ( 9105) [007] d..1 82317.534533: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
118990 [email protected]   (  619) [000] ...1 82317.534536: tracing_mark_write: E|619
118991<...>-15374 ( 8943) [001] d..1 82317.534537: sched_waking: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
118992<...>-9132 ( 9105) [007] dn.2 82317.534539: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
118993 [email protected]   (  619) [000] ...1 82317.534540: tracing_mark_write: E|619
118994<...>-9132 ( 9105) [007] d..2 82317.534542: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=R+ ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
118995<...>-9062 ( 8943) [003] d..2 82317.534546: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
118996<...>-15374 ( 8943) [001] d..2 82317.534573: sched_blocked_reason: pid=9062 iowait=0 caller=do_page_fault+0x4e0/0x594
118997<...>-15374 ( 8943) [001] d..2 82317.534579: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
118998 [email protected]   (  619) [000] ...1 82317.534580: tracing_mark_write: E|619
118999<...>-581 ( 571) [003] d..2 82317.534590: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
119000<...>-15374 ( 8943) [001] d..2 82317.534594: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
119001<...>-9062 ( 8943) [003] d..1 82317.534595: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=001
119002<...>-9105 ( 9105) [007] d..2 82317.534598: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
119003<...>-9062 ( 8943) [003] d..2 82317.534603: sched_blocked_reason: pid=15374 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
119004          <idle>-0     (-----) [001] d..1 82317.534603: cpu_idle: state=0 cpu_id=1
119005<...>-9062 ( 8943) [003] d..2 82317.534609: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=001
119006          <idle>-0     (-----) [001] .n.1 82317.534615: cpu_idle: state=4294967295 cpu_id=1
119007          <idle>-0     (-----) [001] d..2 82317.534622: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
119008 [email protected]   (  619) [000] ...1 82317.534622: tracing_mark_write: E|619
119009 [email protected]   (  619) [000] .... 82317.534637: binder_transaction: transaction=1572574 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
119010 [email protected]   (  619) [000] .... 82317.534641: binder_transaction_alloc_buf: transaction=1572574 data_size=576 offsets_size=112
119011<...>-9132 ( 9105) [007] d..2 82317.534655: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
119012 [email protected]   (  619) [000] d..2 82317.534659: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
119013          <idle>-0     (-----) [007] d..1 82317.534668: cpu_idle: state=0 cpu_id=7
119014 [email protected]   (  619) [000] d..3 82317.534679: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
119015 [email protected]   (  619) [000] .... 82317.534683: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
119016<...>-9062 ( 8943) [003] d..2 82317.534691: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
119017  surfaceflinger-8858  ( 8858) [003] .... 82317.534700: binder_transaction_received: transaction=1572574
119018 [email protected]   (  619) [000] d..2 82317.534746: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
119019  surfaceflinger-8858  ( 8858) [003] d.h1 82317.534752: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
119020  surfaceflinger-8858  ( 8858) [003] dnh2 82317.534763: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
119021  surfaceflinger-8858  ( 8858) [003] d..2 82317.534774: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
119022          system-104   (  104) [000] d..2 82317.534803: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
119023 crtc_commit:111-321   (  321) [002] d..2 82317.534815: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=system_server next_pid=8943 next_prio=118
119024   system_server-8943  ( 8943) [002] d..2 82317.534835: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119025          <idle>-0     (-----) [002] d..1 82317.534843: cpu_idle: state=0 cpu_id=2
119026          <idle>-0     (-----) [007] ...1 82317.534869: cpu_idle: state=4294967295 cpu_id=7
119027          <idle>-0     (-----) [007] d..1 82317.534872: cpu_idle: state=0 cpu_id=7
119028 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.534916: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
119029<...>-9062 ( 8943) [003] .... 82317.534953: binder_transaction: transaction=1572575 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
119030<...>-9062 ( 8943) [003] .... 82317.534958: binder_transaction_alloc_buf: transaction=1572575 data_size=76 offsets_size=0
119031<...>-9062 ( 8943) [003] ...2 82317.534963: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
119032<...>-15374 ( 8943) [001] d.s2 82317.534965: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
119033<...>-9062 ( 8943) [003] d..4 82317.534967: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=002
119034<...>-15374 ( 8943) [001] d.s3 82317.534976: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
119035<...>-9062 ( 8943) [003] dn.5 82317.534982: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=002
119036          <idle>-0     (-----) [002] .n.1 82317.534987: cpu_idle: state=4294967295 cpu_id=2
119037<...>-9062 ( 8943) [003] d..2 82317.534992: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=R+ ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
119038          <idle>-0     (-----) [002] d..2 82317.534995: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
119039<...>-8874 ( 8858) [002] .... 82317.535002: binder_transaction_received: transaction=1572575
119040 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.535014: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
119041<...>-9062 ( 8943) [003] d..2 82317.535023: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
119042<...>-8874 ( 8858) [002] .... 82317.535045: binder_transaction: transaction=1572576 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
119043<...>-8874 ( 8858) [002] .... 82317.535048: binder_transaction_alloc_buf: transaction=1572576 data_size=0 offsets_size=0
119044<...>-8874 ( 8858) [002] d..2 82317.535051: sched_waking: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=003
119045<...>-8874 ( 8858) [002] d..3 82317.535066: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=002
119046<...>-8874 ( 8858) [002] .... 82317.535069: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
119047<...>-8874 ( 8858) [002] d..2 82317.535079: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=R+ ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
119048<...>-9062 ( 8943) [002] .... 82317.535084: binder_transaction_received: transaction=1572576
119049<...>-581 ( 571) [003] d..2 82317.535111: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
119050<...>-15374 ( 8943) [001] d.s2 82317.535140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
119051<...>-8955 ( 8943) [006] d.s2 82317.535141: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
119052  surfaceflinger-8858  ( 8858) [000] d.s2 82317.535146: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119053  surfaceflinger-8858  ( 8858) [000] d.s3 82317.535171: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119054<...>-8874 ( 8858) [003] d..2 82317.535179: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
119055<...>-15374 ( 8943) [001] d.s3 82317.535192: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119056  surfaceflinger-8858  ( 8858) [000] d.s2 82317.535197: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
119057  kworker/u16:15-1311  ( 1311) [003] d.h2 82317.535207: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=003
119058  surfaceflinger-8858  ( 8858) [000] d.s3 82317.535212: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
119059  surfaceflinger-8858  ( 8858) [000] d..2 82317.535340: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
119060  kworker/u16:15-1311  ( 1311) [003] d..2 82317.535471: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
119061  kworker/u16:13-1147  ( 1147) [003] d..2 82317.535481: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
119062<...>-8 ( 8) [003] d..2 82317.535491: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=003
119063<...>-15374 ( 8943) [001] d.s2 82317.535502: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119064<...>-8 ( 8) [003] d..3 82317.535507: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=003
119065<...>-8 ( 8) [003] d..2 82317.535518: 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
119066<...>-15374 ( 8943) [001] d.s3 82317.535523: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
119067         rcuos/0-11    (   11) [003] d..2 82317.535523: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=003
119068<...>-15374 ( 8943) [001] d.s3 82317.535527: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119069         rcuos/0-11    (   11) [003] d..3 82317.535555: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=000
119070         rcuos/0-11    (   11) [003] d..2 82317.535563: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
119071          system-104   (  104) [000] d..2 82317.535565: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=rcuos/1 next_pid=22 next_prio=120
119072     rcu_preempt-7     (    7) [003] d..2 82317.535568: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
119073         rcuos/1-22    (   22) [000] d..2 82317.535580: sched_switch: prev_comm=rcuos/1 prev_pid=22 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
119074     rcu_preempt-7     (    7) [003] d..3 82317.535592: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
119075          system-104   (  104) [000] d..2 82317.535600: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/0 next_pid=10 next_prio=120
119076     rcu_preempt-7     (    7) [003] d..2 82317.535603: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
119077         rcuop/0-10    (   10) [000] d..2 82317.535605: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
119078         rcuop/0-10    (   10) [000] d..3 82317.535632: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
119079         rcuop/0-10    (   10) [000] d..2 82317.535640: 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
119080         rcuop/1-21    (   21) [000] d..2 82317.535663: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
119081  kworker/u16:15-1311  ( 1311) [003] d..2 82317.535748: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
119082          <idle>-0     (-----) [003] d..1 82317.535765: cpu_idle: state=0 cpu_id=3
119083<...>-15374 ( 8943) [001] d.s2 82317.535768: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119084<...>-15374 ( 8943) [001] d.s3 82317.535775: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
119085<...>-15374 ( 8943) [001] d.s3 82317.535781: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119086          <idle>-0     (-----) [003] .n.1 82317.535788: cpu_idle: state=4294967295 cpu_id=3
119087          <idle>-0     (-----) [003] d..2 82317.535797: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
119088  kworker/u16:15-1311  ( 1311) [003] .... 82317.535891: clk_set_rate: l3_cluster0_vote_clk 1036800000
119089  kworker/u16:15-1311  ( 1311) [003] .... 82317.535896: clk_set_rate: l3_clk 1036800000
119090  kworker/u16:15-1311  ( 1311) [003] d..2 82317.535940: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119091          <idle>-0     (-----) [003] d..1 82317.535948: cpu_idle: state=0 cpu_id=3
119092          system-104   (  104) [000] d..2 82317.536566: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119093          <idle>-0     (-----) [000] d..1 82317.536582: cpu_idle: state=0 cpu_id=0
119094<...>-9062 ( 8943) [002] d..3 82317.537065: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119095<...>-9062 ( 8943) [002] d..4 82317.537085: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119096          <idle>-0     (-----) [000] .n.1 82317.537091: cpu_idle: state=4294967295 cpu_id=0
119097          <idle>-0     (-----) [000] d..2 82317.537099: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
119098<...>-9039 ( 8943) [000] d..2 82317.537145: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119099          <idle>-0     (-----) [000] d..1 82317.537153: cpu_idle: state=0 cpu_id=0
119100          <idle>-0     (-----) [000] ...1 82317.538546: cpu_idle: state=4294967295 cpu_id=0
119101          <idle>-0     (-----) [000] d..1 82317.538550: cpu_idle: state=0 cpu_id=0
119102<...>-9062 ( 8943) [002] d..3 82317.539146: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119103<...>-9062 ( 8943) [002] d..4 82317.539161: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119104          <idle>-0     (-----) [000] .n.1 82317.539165: cpu_idle: state=4294967295 cpu_id=0
119105<...>-9062 ( 8943) [002] d..1 82317.539171: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
119106          <idle>-0     (-----) [000] d..2 82317.539173: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
119107          <idle>-0     (-----) [004] dnh2 82317.539193: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
119108          <idle>-0     (-----) [004] .n.1 82317.539198: cpu_idle: state=4294967295 cpu_id=4
119109<...>-9039 ( 8943) [000] d..2 82317.539200: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119110          <idle>-0     (-----) [004] d..2 82317.539206: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
119111          <idle>-0     (-----) [000] d..1 82317.539207: cpu_idle: state=0 cpu_id=0
119112<...>-9005 ( 8943) [004] d..1 82317.539232: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
119113<...>-9005 ( 8943) [004] d..2 82317.539250: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
119114          <idle>-0     (-----) [005] .n.1 82317.539257: cpu_idle: state=4294967295 cpu_id=5
119115          <idle>-0     (-----) [005] d..2 82317.539265: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
119116<...>-8969 ( 8943) [005] d..2 82317.539303: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
119117          <idle>-0     (-----) [005] d..1 82317.539314: cpu_idle: state=0 cpu_id=5
119118<...>-9005 ( 8943) [004] .... 82317.539319: binder_transaction: transaction=1572577 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
119119<...>-9005 ( 8943) [004] .... 82317.539324: binder_transaction_alloc_buf: transaction=1572577 data_size=80 offsets_size=0
119120<...>-9005 ( 8943) [004] d..4 82317.539328: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
119121          <idle>-0     (-----) [000] dnh2 82317.539353: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
119122          <idle>-0     (-----) [000] .n.1 82317.539357: cpu_idle: state=4294967295 cpu_id=0
119123<...>-9005 ( 8943) [004] d..1 82317.539361: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
119124          <idle>-0     (-----) [000] d..2 82317.539364: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
119125<...>-8874 ( 8858) [000] .... 82317.539370: binder_transaction_received: transaction=1572577
119126<...>-9005 ( 8943) [004] d..2 82317.539371: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
119127          <idle>-0     (-----) [005] .n.1 82317.539377: cpu_idle: state=4294967295 cpu_id=5
119128          <idle>-0     (-----) [005] d..2 82317.539385: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
119129<...>-8874 ( 8858) [000] d..1 82317.539396: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
119130<...>-8969 ( 8943) [005] d..2 82317.539402: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
119131          <idle>-0     (-----) [005] d..1 82317.539408: cpu_idle: state=0 cpu_id=5
119132<...>-8874 ( 8858) [000] d..2 82317.539417: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
119133          <idle>-0     (-----) [003] .n.1 82317.539423: cpu_idle: state=4294967295 cpu_id=3
119134          <idle>-0     (-----) [003] d..2 82317.539431: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
119135<...>-8874 ( 8858) [000] d..2 82317.539443: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119136          <idle>-0     (-----) [000] d..1 82317.539452: cpu_idle: state=0 cpu_id=0
119137   sfEventThread-8882  ( 8858) [003] d..2 82317.539477: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119138          <idle>-0     (-----) [003] d..1 82317.539481: cpu_idle: state=0 cpu_id=3
119139<...>-9062 ( 8943) [002] .... 82317.539593: binder_transaction: transaction=1572578 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
119140<...>-9062 ( 8943) [002] .... 82317.539597: binder_transaction_alloc_buf: transaction=1572578 data_size=1520 offsets_size=0
119141<...>-9062 ( 8943) [002] d..2 82317.539602: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
119142<...>-9062 ( 8943) [002] dn.3 82317.539620: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=002
119143<...>-9062 ( 8943) [002] d..2 82317.539627: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
119144           <...>-27550 (-----) [002] .... 82317.539635: binder_transaction_received: transaction=1572578
119145          <idle>-0     (-----) [000] d.h5 82317.539651: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
119146          <idle>-0     (-----) [000] dnh6 82317.539668: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
119147          <idle>-0     (-----) [000] dnh5 82317.539671: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
119148          <idle>-0     (-----) [000] dnh6 82317.539683: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
119149          <idle>-0     (-----) [003] .n.1 82317.539689: cpu_idle: state=4294967295 cpu_id=3
119150          <idle>-0     (-----) [000] .n.1 82317.539693: cpu_idle: state=4294967295 cpu_id=0
119151          <idle>-0     (-----) [003] d..2 82317.539694: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
119152          <idle>-0     (-----) [000] d..2 82317.539699: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
119153  crtc_event:111-322   (  322) [000] d..2 82317.539723: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119154          <idle>-0     (-----) [000] d..1 82317.539730: cpu_idle: state=0 cpu_id=0
119155 crtc_commit:111-321   (  321) [003] d..2 82317.539790: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
119156          <idle>-0     (-----) [003] d..1 82317.539794: cpu_idle: state=0 cpu_id=3
119157<...>-9005 ( 8943) [004] .... 82317.539879: binder_transaction: transaction=1572579 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
119158<...>-9005 ( 8943) [004] .... 82317.539884: binder_transaction_alloc_buf: transaction=1572579 data_size=988 offsets_size=48
119159<...>-9005 ( 8943) [004] ...2 82317.539903: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
119160<...>-9005 ( 8943) [004] d..4 82317.539906: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=000
119161<...>-9005 ( 8943) [004] dn.5 82317.539926: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=004
119162<...>-9005 ( 8943) [004] d..2 82317.539968: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
119163<...>-8874 ( 8858) [004] .... 82317.539980: binder_transaction_received: transaction=1572579
119164<...>-8874 ( 8858) [004] .... 82317.540066: binder_transaction: transaction=1572580 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
119165<...>-8874 ( 8858) [004] .... 82317.540069: binder_transaction_alloc_buf: transaction=1572580 data_size=0 offsets_size=0
119166<...>-8874 ( 8858) [004] .... 82317.540071: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
119167<...>-8874 ( 8858) [004] d..2 82317.540114: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
119168<...>-9005 ( 8943) [004] .... 82317.540125: binder_transaction_received: transaction=1572580
119169<...>-9005 ( 8943) [004] d..1 82317.540185: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
119170<...>-9005 ( 8943) [004] d..2 82317.540200: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
119171          <idle>-0     (-----) [005] .n.1 82317.540205: cpu_idle: state=4294967295 cpu_id=5
119172          <idle>-0     (-----) [005] d..2 82317.540212: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
119173<...>-15374 ( 8943) [001] d..1 82317.540248: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
119174<...>-8969 ( 8943) [005] d..2 82317.540260: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
119175          <idle>-0     (-----) [005] d..1 82317.540269: cpu_idle: state=0 cpu_id=5
119176           <...>-27550 (-----) [002] d..3 82317.540275: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=007
119177          <idle>-0     (-----) [005] d.h2 82317.540279: sched_blocked_reason: pid=8969 iowait=0 caller=do_page_fault+0x4e0/0x594
119178          <idle>-0     (-----) [005] dnh2 82317.540281: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=005
119179<...>-9005 ( 8943) [004] d..2 82317.540286: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
119180          <idle>-0     (-----) [005] .n.1 82317.540286: cpu_idle: state=4294967295 cpu_id=5
119181<...>-15374 ( 8943) [001] d..2 82317.540291: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
119182          <idle>-0     (-----) [005] d..2 82317.540294: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
119183          <idle>-0     (-----) [004] d..1 82317.540299: cpu_idle: state=0 cpu_id=4
119184           <...>-27550 (-----) [002] d..4 82317.540302: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=000
119185<...>-8969 ( 8943) [005] d..1 82317.540305: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=001
119186          <idle>-0     (-----) [000] .n.1 82317.540306: cpu_idle: state=4294967295 cpu_id=0
119187          <idle>-0     (-----) [001] d..1 82317.540308: cpu_idle: state=0 cpu_id=1
119188          <idle>-0     (-----) [000] d..2 82317.540339: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=120
119189          <idle>-0     (-----) [001] d.h2 82317.540340: sched_blocked_reason: pid=15374 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
119190          <idle>-0     (-----) [001] dnh2 82317.540343: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=001
119191          <idle>-0     (-----) [001] .n.1 82317.540348: cpu_idle: state=4294967295 cpu_id=1
119192           <...>-27550 (-----) [002] d..2 82317.540353: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
119193          <idle>-0     (-----) [001] d..2 82317.540355: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
119194           <...>-27570 (-----) [000] d..1 82317.540367: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=002
119195           <...>-27570 (-----) [000] d..2 82317.540388: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
119196          <idle>-0     (-----) [003] .n.1 82317.540393: cpu_idle: state=4294967295 cpu_id=3
119197          <idle>-0     (-----) [003] d..2 82317.540400: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
119198<...>-9062 ( 8943) [002] d..2 82317.540408: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119199           <...>-27570 (-----) [000] d..2 82317.540419: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119200          <idle>-0     (-----) [002] d..1 82317.540421: cpu_idle: state=0 cpu_id=2
119201          <idle>-0     (-----) [000] d..1 82317.540427: cpu_idle: state=0 cpu_id=0
119202           <...>-27550 (-----) [003] d..3 82317.540438: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=000
119203           <...>-27550 (-----) [003] d..4 82317.540450: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=000
119204          <idle>-0     (-----) [000] .n.1 82317.540456: cpu_idle: state=4294967295 cpu_id=0
119205          <idle>-0     (-----) [000] d..2 82317.540463: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=120
119206           <...>-27550 (-----) [003] d..2 82317.540469: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119207          <idle>-0     (-----) [003] d..1 82317.540475: cpu_idle: state=0 cpu_id=3
119208           <...>-27570 (-----) [000] d..1 82317.540508: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
119209<...>-8969 ( 8943) [005] d..2 82317.540509: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
119210           <...>-27570 (-----) [000] d..2 82317.540519: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
119211          <idle>-0     (-----) [005] d..1 82317.540520: cpu_idle: state=0 cpu_id=5
119212          <idle>-0     (-----) [003] .n.1 82317.540524: cpu_idle: state=4294967295 cpu_id=3
119213          <idle>-0     (-----) [003] d..2 82317.540530: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
119214           <...>-27570 (-----) [000] d..2 82317.540535: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119215          <idle>-0     (-----) [000] d..1 82317.540543: cpu_idle: state=0 cpu_id=0
119216           <...>-27550 (-----) [003] d..2 82317.540760: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
119217           <...>-27550 (-----) [003] d..3 82317.540773: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
119218           <...>-27550 (-----) [003] .... 82317.541021: binder_transaction: transaction=1572581 dest_node=1568565 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
119219           <...>-27550 (-----) [003] .... 82317.541025: binder_transaction_alloc_buf: transaction=1572581 data_size=80 offsets_size=0
119220           <...>-27550 (-----) [003] d..4 82317.541029: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
119221          <idle>-0     (-----) [004] dnh2 82317.541049: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=004
119222          <idle>-0     (-----) [004] .n.1 82317.541053: cpu_idle: state=4294967295 cpu_id=4
119223           <...>-27550 (-----) [003] d..3 82317.541057: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=000
119224          <idle>-0     (-----) [004] d..2 82317.541061: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
119225           <...>-27550 (-----) [003] d..4 82317.541068: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=000
119226<...>-8874 ( 8858) [004] .... 82317.541069: binder_transaction_received: transaction=1572581
119227          <idle>-0     (-----) [000] .n.1 82317.541073: cpu_idle: state=4294967295 cpu_id=0
119228          <idle>-0     (-----) [000] d..2 82317.541081: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=120
119229<...>-8874 ( 8858) [004] d..1 82317.541091: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
119230           <...>-27570 (-----) [000] d..2 82317.541100: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119231          <idle>-0     (-----) [000] d..1 82317.541107: cpu_idle: state=0 cpu_id=0
119232          <idle>-0     (-----) [000] dnh2 82317.541119: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
119233          <idle>-0     (-----) [000] .n.1 82317.541124: cpu_idle: state=4294967295 cpu_id=0
119234          <idle>-0     (-----) [000] d..2 82317.541129: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
119235<...>-8874 ( 8858) [004] d..2 82317.541136: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
119236          <idle>-0     (-----) [004] d..1 82317.541146: cpu_idle: state=0 cpu_id=4
119237  appEventThread-8881  ( 8858) [000] d..2 82317.541187: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119238          <idle>-0     (-----) [000] d..1 82317.541194: cpu_idle: state=0 cpu_id=0
119239          <idle>-0     (-----) [000] .n.1 82317.541404: cpu_idle: state=4294967295 cpu_id=0
119240          <idle>-0     (-----) [000] d..2 82317.541411: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27811 next_prio=120
119241           <...>-27550 (-----) [003] d..2 82317.541435: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
119242<...>-581 ( 571) [003] d..2 82317.541550: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119243          <idle>-0     (-----) [003] d..1 82317.541561: cpu_idle: state=0 cpu_id=3
119244           <...>-27811 (-----) [000] d..1 82317.541619: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
119245           <...>-27811 (-----) [000] d..2 82317.541633: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
119246          <idle>-0     (-----) [003] .n.1 82317.541638: cpu_idle: state=4294967295 cpu_id=3
119247          <idle>-0     (-----) [003] d..2 82317.541645: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
119248           <...>-27811 (-----) [000] d..2 82317.541713: sched_switch: prev_comm=queued-work-loo prev_pid=27811 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119249          <idle>-0     (-----) [000] d..1 82317.541724: cpu_idle: state=0 cpu_id=0
119250           <...>-27550 (-----) [003] d.s2 82317.541800: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
119251           <...>-27550 (-----) [003] d.s3 82317.541814: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
119252           <...>-27550 (-----) [003] d.s1 82317.541817: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
119253          <idle>-0     (-----) [000] .n.1 82317.541820: cpu_idle: state=4294967295 cpu_id=0
119254          <idle>-0     (-----) [000] d..2 82317.541828: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
119255           <...>-27550 (-----) [003] d.s2 82317.541849: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
119256  crtc_event:111-322   (  322) [000] d..2 82317.541855: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
119257     rcu_preempt-7     (    7) [000] d..2 82317.541878: 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
119258          <idle>-0     (-----) [000] d..1 82317.541885: cpu_idle: state=0 cpu_id=0
119259           <...>-27550 (-----) [003] d..2 82317.541919: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
119260           <...>-27550 (-----) [003] d..3 82317.541928: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
119261          <idle>-0     (-----) [000] d.h5 82317.541997: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
119262          <idle>-0     (-----) [000] dnh6 82317.542011: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
119263          <idle>-0     (-----) [000] .n.1 82317.542018: cpu_idle: state=4294967295 cpu_id=0
119264          <idle>-0     (-----) [000] d..2 82317.542025: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
119265 crtc_commit:111-321   (  321) [000] d..2 82317.542098: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119266          <idle>-0     (-----) [000] d..1 82317.542105: cpu_idle: state=0 cpu_id=0
119267          <idle>-0     (-----) [000] d.h5 82317.542288: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
119268          <idle>-0     (-----) [000] dnh6 82317.542294: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
119269          <idle>-0     (-----) [000] dnh7 82317.542303: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
119270          <idle>-0     (-----) [000] dnh8 82317.542313: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
119271          <idle>-0     (-----) [000] dnh9 82317.542323: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
119272          <idle>-0     (-----) [000] dnha 82317.542336: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
119273          <idle>-0     (-----) [000] dnh7 82317.542340: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
119274          <idle>-0     (-----) [002] .n.1 82317.542342: cpu_idle: state=4294967295 cpu_id=2
119275          <idle>-0     (-----) [002] d..2 82317.542349: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
119276          <idle>-0     (-----) [000] dnh8 82317.542362: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
119277          <idle>-0     (-----) [000] .n.1 82317.542372: cpu_idle: state=4294967295 cpu_id=0
119278          <idle>-0     (-----) [000] d..2 82317.542379: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
119279 crtc_commit:111-321   (  321) [002] d..2 82317.542382: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119280          <idle>-0     (-----) [002] d..1 82317.542387: cpu_idle: state=0 cpu_id=2
119281  crtc_event:111-322   (  322) [000] d..2 82317.542391: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
119282     kworker/0:1-25262 (25262) [000] d..2 82317.542406: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
119283           <...>-27550 (-----) [003] d..3 82317.542413: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=000
119284           <...>-27550 (-----) [003] d..4 82317.542433: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=002
119285          <idle>-0     (-----) [002] .n.1 82317.542438: cpu_idle: state=4294967295 cpu_id=2
119286          <idle>-0     (-----) [002] d..2 82317.542445: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=120
119287           <...>-27550 (-----) [003] d..2 82317.542448: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
119288 SDM_EventThread-644   (  619) [000] ...1 82317.542456: tracing_mark_write: B|619|HWCCallbacks::Vsync::
119289 SDM_EventThread-644   (  619) [000] ...1 82317.542468: tracing_mark_write: B|619|HIDL::IComposerCallback::onVsync::client
119290 SDM_EventThread-644   (  619) [000] ...1 82317.542471: tracing_mark_write: E|619
119291           <...>-27570 (-----) [002] d..1 82317.542477: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=003
119292 SDM_EventThread-644   (  619) [000] .... 82317.542502: binder_transaction: transaction=1572582 dest_node=395374 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
119293 SDM_EventThread-644   (  619) [000] .... 82317.542506: binder_transaction_alloc_buf: transaction=1572582 data_size=76 offsets_size=0
119294 SDM_EventThread-644   (  619) [000] d..4 82317.542511: sched_waking: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=002
119295          <idle>-0     (-----) [007] dnh2 82317.542532: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
119296          <idle>-0     (-----) [007] .n.1 82317.542536: cpu_idle: state=4294967295 cpu_id=7
119297<...>-581 ( 571) [003] d..2 82317.542542: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119298          <idle>-0     (-----) [007] d..2 82317.542544: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
119299           <...>-27570 (-----) [002] d..2 82317.542551: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119300 SDM_EventThread-644   (  619) [000] d..5 82317.542555: sched_wakeup: comm=HwBinder:8858_1 pid=8890 prio=120 target_cpu=003
119301          <idle>-0     (-----) [002] d..1 82317.542559: cpu_idle: state=0 cpu_id=2
119302          <idle>-0     (-----) [003] d..2 82317.542561: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
119303           <...>-27550 (-----) [007] d..3 82317.542571: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=002
119304<...>-8890 ( 8858) [003] .... 82317.542572: binder_transaction_received: transaction=1572582
119305 SDM_EventThread-644   (  619) [000] ...1 82317.542585: tracing_mark_write: E|619
119306          <idle>-0     (-----) [002] dnh2 82317.542590: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=002
119307          <idle>-0     (-----) [002] .n.1 82317.542594: cpu_idle: state=4294967295 cpu_id=2
119308 SDM_EventThread-644   (  619) [000] d..4 82317.542597: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
119309          <idle>-0     (-----) [002] d..2 82317.542601: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=27570 next_prio=120
119310           <...>-27550 (-----) [007] d..2 82317.542601: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
119311          <idle>-0     (-----) [007] d..1 82317.542612: cpu_idle: state=0 cpu_id=7
119312<...>-8890 ( 8858) [003] ...1 82317.542613: tracing_mark_write: B|8858|HIDL::IComposerCallback::onVsync::server
119313 SDM_EventThread-644   (  619) [000] d..5 82317.542617: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
119314           <...>-27570 (-----) [002] d..1 82317.542624: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
119315<...>-8890 ( 8858) [003] d..2 82317.542625: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
119316 crtc_commit:111-321   (  321) [003] d..2 82317.542640: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=HwBinder:8858_1 next_pid=8890 next_prio=120
119317          <idle>-0     (-----) [007] dnh2 82317.542643: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
119318          <idle>-0     (-----) [007] .n.1 82317.542648: cpu_idle: state=4294967295 cpu_id=7
119319           <...>-27570 (-----) [002] d..2 82317.542653: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119320 SDM_EventThread-644   (  619) [000] d..2 82317.542654: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119321          <idle>-0     (-----) [007] d..2 82317.542656: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
119322          <idle>-0     (-----) [002] d..1 82317.542659: cpu_idle: state=0 cpu_id=2
119323          <idle>-0     (-----) [000] d..1 82317.542663: cpu_idle: state=0 cpu_id=0
119324<...>-8890 ( 8858) [003] d..1 82317.542665: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
119325<...>-8890 ( 8858) [003] d..2 82317.542679: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
119326          <idle>-0     (-----) [002] .n.1 82317.542684: cpu_idle: state=4294967295 cpu_id=2
119327<...>-8890 ( 8858) [003] ...1 82317.542687: tracing_mark_write: E|8858
119328          <idle>-0     (-----) [002] d..2 82317.542690: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
119329<...>-8890 ( 8858) [003] d..2 82317.542721: sched_switch: prev_comm=HwBinder:8858_1 prev_pid=8890 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119330        DispSync-8879  ( 8858) [002] d..2 82317.542724: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119331          <idle>-0     (-----) [002] d..1 82317.542730: cpu_idle: state=0 cpu_id=2
119332          <idle>-0     (-----) [003] d..1 82317.542732: cpu_idle: state=0 cpu_id=3
119333           <...>-27550 (-----) [007] .... 82317.542772: binder_transaction: transaction=1572583 dest_node=1568551 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x5
119334           <...>-27550 (-----) [007] .... 82317.542775: binder_transaction_alloc_buf: transaction=1572583 data_size=88 offsets_size=8
119335           <...>-27550 (-----) [007] d..4 82317.542785: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=002
119336           <...>-27550 (-----) [007] d..5 82317.542803: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
119337           <...>-27550 (-----) [007] d..2 82317.542841: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
119338<...>-9062 ( 8943) [007] .... 82317.542850: binder_transaction_received: transaction=1572583
119339<...>-9062 ( 8943) [007] d..3 82317.543144: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119340          <idle>-0     (-----) [000] dnh2 82317.543166: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119341          <idle>-0     (-----) [000] .n.1 82317.543170: cpu_idle: state=4294967295 cpu_id=0
119342          <idle>-0     (-----) [000] d..2 82317.543177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
119343<...>-9039 ( 8943) [000] d..2 82317.543216: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119344          <idle>-0     (-----) [000] d..1 82317.543224: cpu_idle: state=0 cpu_id=0
119345<...>-9062 ( 8943) [007] .... 82317.543321: binder_transaction: transaction=1572584 dest_node=1568649 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
119346<...>-9062 ( 8943) [007] .... 82317.543326: binder_transaction_alloc_buf: transaction=1572584 data_size=100 offsets_size=8
119347<...>-9062 ( 8943) [007] ...2 82317.543335: binder_set_priority: proc=8858 thread=8874 old=120 => new=116 desired=116
119348<...>-9062 ( 8943) [007] d..4 82317.543337: sched_waking: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=004
119349<...>-9062 ( 8943) [007] dn.5 82317.543352: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=116 target_cpu=007
119350<...>-9062 ( 8943) [007] d..2 82317.543359: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=116
119351<...>-8874 ( 8858) [007] .... 82317.543368: binder_transaction_received: transaction=1572584
119352<...>-8874 ( 8858) [007] .... 82317.543423: binder_transaction: transaction=1572585 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
119353<...>-8874 ( 8858) [007] .... 82317.543425: binder_transaction_alloc_buf: transaction=1572585 data_size=4 offsets_size=0
119354<...>-8874 ( 8858) [007] .... 82317.543428: binder_set_priority: proc=8858 thread=8874 old=116 => new=120 desired=120
119355<...>-8874 ( 8858) [007] d..2 82317.543461: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
119356<...>-9062 ( 8943) [007] .... 82317.543470: binder_transaction_received: transaction=1572585
119357<...>-9062 ( 8943) [007] d..5 82317.543503: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=007
119358          <idle>-0     (-----) [000] dnh2 82317.543554: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
119359          <idle>-0     (-----) [000] .n.1 82317.543558: cpu_idle: state=4294967295 cpu_id=0
119360          <idle>-0     (-----) [000] d..2 82317.543565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
119361<...>-8874 ( 8858) [000] d..2 82317.543606: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119362          <idle>-0     (-----) [000] d..1 82317.543613: cpu_idle: state=0 cpu_id=0
119363<...>-9062 ( 8943) [007] d..5 82317.543644: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
119364          <idle>-0     (-----) [000] dnh2 82317.543662: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
119365          <idle>-0     (-----) [000] .n.1 82317.543666: cpu_idle: state=4294967295 cpu_id=0
119366          <idle>-0     (-----) [000] d..2 82317.543673: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
119367<...>-8874 ( 8858) [000] d..2 82317.543696: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119368          <idle>-0     (-----) [000] d..1 82317.543703: cpu_idle: state=0 cpu_id=0
119369          <idle>-0     (-----) [003] ...1 82317.543974: cpu_idle: state=4294967295 cpu_id=3
119370          <idle>-0     (-----) [003] d..1 82317.543978: cpu_idle: state=0 cpu_id=3
119371<...>-9062 ( 8943) [007] d..2 82317.543993: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
119372<...>-15374 ( 8943) [001] d..1 82317.544002: sched_waking: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=007
119373          <idle>-0     (-----) [007] d..1 82317.544008: cpu_idle: state=0 cpu_id=7
119374          <idle>-0     (-----) [007] d.h2 82317.544022: sched_blocked_reason: pid=9062 iowait=0 caller=do_page_fault+0x4e0/0x594
119375          <idle>-0     (-----) [007] dnh2 82317.544026: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=116 target_cpu=007
119376          <idle>-0     (-----) [007] .n.1 82317.544031: cpu_idle: state=4294967295 cpu_id=7
119377          <idle>-0     (-----) [007] d..2 82317.544038: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
119378<...>-9062 ( 8943) [007] d..1 82317.544048: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=001
119379<...>-15374 ( 8943) [001] d..2 82317.544056: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
119380          <idle>-0     (-----) [001] d..1 82317.544074: cpu_idle: state=0 cpu_id=1
119381          <idle>-0     (-----) [001] d.h2 82317.544084: sched_blocked_reason: pid=15374 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
119382          <idle>-0     (-----) [001] dnh2 82317.544087: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=001
119383          <idle>-0     (-----) [001] .n.1 82317.544091: cpu_idle: state=4294967295 cpu_id=1
119384          <idle>-0     (-----) [001] d..2 82317.544099: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
119385          <idle>-0     (-----) [002] d.h2 82317.544244: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
119386          <idle>-0     (-----) [002] dnh3 82317.544252: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
119387          <idle>-0     (-----) [002] .n.1 82317.544258: cpu_idle: state=4294967295 cpu_id=2
119388          <idle>-0     (-----) [002] d..2 82317.544265: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
119389        DispSync-8879  ( 8858) [002] d..1 82317.544276: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
119390        DispSync-8879  ( 8858) [002] d..2 82317.544285: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
119391          <idle>-0     (-----) [000] .n.1 82317.544290: cpu_idle: state=4294967295 cpu_id=0
119392          <idle>-0     (-----) [000] d..2 82317.544296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
119393<...>-9062 ( 8943) [007] d..3 82317.544300: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=005
119394        DispSync-8879  ( 8858) [002] d..2 82317.544303: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119395          <idle>-0     (-----) [002] d..1 82317.544309: cpu_idle: state=0 cpu_id=2
119396<...>-9062 ( 8943) [007] d..4 82317.544318: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
119397          <idle>-0     (-----) [004] .n.1 82317.544324: cpu_idle: state=4294967295 cpu_id=4
119398          <idle>-0     (-----) [004] d..2 82317.544334: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
119399  appEventThread-8881  ( 8858) [000] d..3 82317.544343: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
119400  appEventThread-8881  ( 8858) [000] d..4 82317.544366: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
119401          <idle>-0     (-----) [002] .n.1 82317.544371: cpu_idle: state=4294967295 cpu_id=2
119402          <idle>-0     (-----) [002] d..2 82317.544400: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
119403<...>-8969 ( 8943) [004] d..2 82317.544411: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
119404  appEventThread-8881  ( 8858) [000] d..3 82317.544418: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
119405          <idle>-0     (-----) [004] d..1 82317.544422: cpu_idle: state=0 cpu_id=4
119406          <idle>-0     (-----) [004] dnh2 82317.544440: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
119407          <idle>-0     (-----) [004] .n.1 82317.544445: cpu_idle: state=4294967295 cpu_id=4
119408  appEventThread-8881  ( 8858) [000] d..2 82317.544453: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119409          <idle>-0     (-----) [004] d..2 82317.544454: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
119410          <idle>-0     (-----) [000] d..1 82317.544461: cpu_idle: state=0 cpu_id=0
119411<...>-9062 ( 8943) [007] .... 82317.544522: binder_transaction: transaction=1572586 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
119412<...>-9062 ( 8943) [007] .... 82317.544527: binder_transaction_alloc_buf: transaction=1572586 data_size=96 offsets_size=0
119413<...>-9062 ( 8943) [007] d..4 82317.544531: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
119414          <idle>-0     (-----) [000] dnh2 82317.544583: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
119415          <idle>-0     (-----) [000] .n.1 82317.544587: cpu_idle: state=4294967295 cpu_id=0
119416<...>-9105 ( 9105) [002] .... 82317.544593: binder_transaction: transaction=1572587 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
119417          <idle>-0     (-----) [000] d..2 82317.544594: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
119418<...>-9105 ( 9105) [002] .... 82317.544597: binder_transaction_alloc_buf: transaction=1572587 data_size=80 offsets_size=0
119419<...>-9132 ( 9105) [000] .... 82317.544600: binder_transaction_received: transaction=1572586
119420<...>-9105 ( 9105) [002] d..4 82317.544601: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=000
119421<...>-9105 ( 9105) [002] d..5 82317.544622: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
119422          <idle>-0     (-----) [003] .n.1 82317.544626: cpu_idle: state=4294967295 cpu_id=3
119423          <idle>-0     (-----) [003] d..2 82317.544634: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
119424<...>-8874 ( 8858) [003] .... 82317.544638: binder_transaction_received: transaction=1572587
119425<...>-8874 ( 8858) [003] d..1 82317.544654: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
119426 s.nexuslauncher-10023 (10023) [004] .... 82317.544660: binder_transaction: transaction=1572588 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
119427 s.nexuslauncher-10023 (10023) [004] .... 82317.544663: binder_transaction_alloc_buf: transaction=1572588 data_size=80 offsets_size=0
119428<...>-8874 ( 8858) [003] d..2 82317.544666: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
119429 s.nexuslauncher-10023 (10023) [004] d..4 82317.544667: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
119430<...>-9132 ( 9105) [000] d..2 82317.544677: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
119431<...>-9105 ( 9105) [002] d..2 82317.544681: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119432 s.nexuslauncher-10023 (10023) [004] d..5 82317.544691: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
119433          <idle>-0     (-----) [002] d..1 82317.544691: cpu_idle: state=0 cpu_id=2
119434          <idle>-0     (-----) [005] .n.1 82317.544697: cpu_idle: state=4294967295 cpu_id=5
119435          <idle>-0     (-----) [005] d..2 82317.544705: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
119436  appEventThread-8881  ( 8858) [000] d..2 82317.544706: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
119437<...>-8874 ( 8858) [003] d..2 82317.544711: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119438<...>-8951 ( 8858) [005] .... 82317.544715: binder_transaction_received: transaction=1572588
119439          <idle>-0     (-----) [003] d..1 82317.544720: cpu_idle: state=0 cpu_id=3
119440<...>-9062 ( 8943) [007] d..3 82317.544726: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
119441<...>-8951 ( 8858) [005] d..1 82317.544740: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
119442<...>-9132 ( 9105) [000] d..3 82317.544745: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
119443 s.nexuslauncher-10023 (10023) [004] d..2 82317.544759: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
119444          <idle>-0     (-----) [004] d..1 82317.544771: cpu_idle: state=0 cpu_id=4
119445          <idle>-0     (-----) [002] dnh2 82317.544788: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=002
119446<...>-9132 ( 9105) [000] d..4 82317.544791: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
119447          <idle>-0     (-----) [002] .n.1 82317.544794: cpu_idle: state=4294967295 cpu_id=2
119448          <idle>-0     (-----) [003] dnh2 82317.544796: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
119449<...>-8951 ( 8858) [005] d..2 82317.544799: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
119450          <idle>-0     (-----) [002] d..2 82317.544801: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
119451          <idle>-0     (-----) [003] .n.1 82317.544803: cpu_idle: state=4294967295 cpu_id=3
119452          <idle>-0     (-----) [003] d..2 82317.544809: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
119453          <idle>-0     (-----) [005] d..1 82317.544809: cpu_idle: state=0 cpu_id=5
119454  appEventThread-8881  ( 8858) [003] d..2 82317.544836: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
119455<...>-9132 ( 9105) [000] d..2 82317.544850: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119456          <idle>-0     (-----) [000] d..1 82317.544860: cpu_idle: state=0 cpu_id=0
119457<...>-8962 ( 8943) [002] d..3 82317.544886: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
119458<...>-8962 ( 8943) [002] d..4 82317.544908: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
119459          <idle>-0     (-----) [000] .n.1 82317.544913: cpu_idle: state=4294967295 cpu_id=0
119460<...>-9105 ( 9105) [003] d..2 82317.544920: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119461          <idle>-0     (-----) [000] d..2 82317.544922: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
119462          <idle>-0     (-----) [003] d..1 82317.544931: cpu_idle: state=0 cpu_id=3
119463<...>-8962 ( 8943) [002] d..2 82317.544946: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119464          <idle>-0     (-----) [002] d..1 82317.544955: cpu_idle: state=0 cpu_id=2
119465   system_server-8943  ( 8943) [000] .... 82317.545006: binder_transaction: transaction=1572589 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
119466   system_server-8943  ( 8943) [000] .... 82317.545009: binder_transaction_alloc_buf: transaction=1572589 data_size=96 offsets_size=0
119467   system_server-8943  ( 8943) [000] d..4 82317.545012: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
119468   system_server-8943  ( 8943) [000] d..5 82317.545031: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
119469          <idle>-0     (-----) [002] .n.1 82317.545037: cpu_idle: state=4294967295 cpu_id=2
119470          <idle>-0     (-----) [002] d..2 82317.545045: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
119471<...>-9132 ( 9105) [002] .... 82317.545050: binder_transaction_received: transaction=1572589
119472   system_server-8943  ( 8943) [000] d..2 82317.545083: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119473          <idle>-0     (-----) [000] d..1 82317.545092: cpu_idle: state=0 cpu_id=0
119474<...>-8955 ( 8943) [006] d.s2 82317.545134: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119475<...>-9132 ( 9105) [002] d..3 82317.545152: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
119476<...>-9132 ( 9105) [002] d..4 82317.545167: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
119477          <idle>-0     (-----) [003] .n.1 82317.545173: cpu_idle: state=4294967295 cpu_id=3
119478<...>-9132 ( 9105) [002] dnh2 82317.545176: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
119479          <idle>-0     (-----) [003] d..2 82317.545182: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
119480<...>-9132 ( 9105) [002] d..2 82317.545184: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
119481<...>-9105 ( 9105) [003] d..2 82317.545212: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119482          <idle>-0     (-----) [003] d..1 82317.545220: cpu_idle: state=0 cpu_id=3
119483  kworker/u16:15-1311  ( 1311) [002] .... 82317.545249: clk_set_rate: l3_cluster0_vote_clk 1209600000
119484  kworker/u16:15-1311  ( 1311) [002] .... 82317.545254: clk_set_rate: l3_clk 1209600000
119485<...>-9062 ( 8943) [007] .... 82317.545306: binder_transaction: transaction=1572590 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
119486<...>-9062 ( 8943) [007] .... 82317.545311: binder_transaction_alloc_buf: transaction=1572590 data_size=1900 offsets_size=96
119487<...>-9062 ( 8943) [007] ...2 82317.545348: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
119488<...>-9062 ( 8943) [007] d..4 82317.545351: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=005
119489<...>-9062 ( 8943) [007] dn.5 82317.545366: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=007
119490<...>-9062 ( 8943) [007] d..2 82317.545372: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
119491<...>-8951 ( 8858) [007] .... 82317.545383: binder_transaction_received: transaction=1572590
119492  kworker/u16:15-1311  ( 1311) [002] d..2 82317.545498: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
119493<...>-9132 ( 9105) [002] d..1 82317.545506: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
119494<...>-8951 ( 8858) [007] .... 82317.545511: binder_transaction: transaction=1572591 dest_node=0 dest_proc=8943 dest_thread=9062 reply=1 flags=0x0 code=0x0
119495<...>-8951 ( 8858) [007] .... 82317.545515: binder_transaction_alloc_buf: transaction=1572591 data_size=0 offsets_size=0
119496<...>-9132 ( 9105) [002] d..2 82317.545517: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
119497<...>-8951 ( 8858) [007] .... 82317.545517: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
119498          <idle>-0     (-----) [003] .n.1 82317.545522: cpu_idle: state=4294967295 cpu_id=3
119499          <idle>-0     (-----) [003] d..2 82317.545529: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
119500<...>-15374 ( 8943) [001] d.s2 82317.545533: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
119501<...>-8951 ( 8858) [007] d..2 82317.545557: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
119502<...>-15374 ( 8943) [001] d.s3 82317.545563: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
119503<...>-9062 ( 8943) [007] .... 82317.545566: binder_transaction_received: transaction=1572591
119504<...>-15374 ( 8943) [001] d.s3 82317.545567: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119505<...>-9132 ( 9105) [002] d..2 82317.545572: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119506<...>-9105 ( 9105) [003] d..2 82317.545575: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
119507          <idle>-0     (-----) [002] d..1 82317.545580: cpu_idle: state=0 cpu_id=2
119508  kworker/u16:15-1311  ( 1311) [003] d..2 82317.545724: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
119509          <idle>-0     (-----) [003] d..1 82317.545733: cpu_idle: state=0 cpu_id=3
119510<...>-15374 ( 8943) [001] d.s2 82317.545747: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119511<...>-15374 ( 8943) [001] d.s3 82317.545754: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
119512<...>-15374 ( 8943) [001] d.s3 82317.545760: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119513          <idle>-0     (-----) [003] .n.1 82317.545767: cpu_idle: state=4294967295 cpu_id=3
119514          <idle>-0     (-----) [003] d..2 82317.545774: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
119515  kworker/u16:15-1311  ( 1311) [003] d..2 82317.545853: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119516          <idle>-0     (-----) [003] d..1 82317.545860: cpu_idle: state=0 cpu_id=3
119517<...>-9062 ( 8943) [007] d..3 82317.546983: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119518          <idle>-0     (-----) [000] dnh2 82317.547006: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119519          <idle>-0     (-----) [000] .n.1 82317.547010: cpu_idle: state=4294967295 cpu_id=0
119520          <idle>-0     (-----) [000] d..2 82317.547018: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
119521          <idle>-0     (-----) [003] ...1 82317.547021: cpu_idle: state=4294967295 cpu_id=3
119522          <idle>-0     (-----) [003] d..1 82317.547024: cpu_idle: state=0 cpu_id=3
119523<...>-9039 ( 8943) [000] d..2 82317.547051: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119524          <idle>-0     (-----) [000] d..1 82317.547057: cpu_idle: state=0 cpu_id=0
119525          <idle>-0     (-----) [002] d.h2 82317.548263: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
119526          <idle>-0     (-----) [002] dnh3 82317.548273: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
119527          <idle>-0     (-----) [002] .n.1 82317.548278: cpu_idle: state=4294967295 cpu_id=2
119528          <idle>-0     (-----) [002] d..2 82317.548285: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
119529        DispSync-8879  ( 8858) [002] d..1 82317.548300: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
119530<...>-9062 ( 8943) [007] d..3 82317.548310: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119531        DispSync-8879  ( 8858) [002] d..2 82317.548311: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
119532          <idle>-0     (-----) [003] .n.1 82317.548315: cpu_idle: state=4294967295 cpu_id=3
119533          <idle>-0     (-----) [003] d..2 82317.548322: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
119534          <idle>-0     (-----) [000] dnh2 82317.548329: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119535        DispSync-8879  ( 8858) [002] d..2 82317.548332: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119536          <idle>-0     (-----) [000] .n.1 82317.548333: cpu_idle: state=4294967295 cpu_id=0
119537          <idle>-0     (-----) [000] d..2 82317.548338: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
119538          <idle>-0     (-----) [002] d..1 82317.548340: cpu_idle: state=0 cpu_id=2
119539<...>-9039 ( 8943) [000] d..2 82317.548360: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119540   sfEventThread-8882  ( 8858) [003] d..3 82317.548360: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
119541          <idle>-0     (-----) [000] d..1 82317.548364: cpu_idle: state=0 cpu_id=0
119542<...>-9062 ( 8943) [007] d..1 82317.548370: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
119543   sfEventThread-8882  ( 8858) [003] d..4 82317.548373: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
119544          <idle>-0     (-----) [000] .n.1 82317.548377: cpu_idle: state=4294967295 cpu_id=0
119545          <idle>-0     (-----) [000] d..2 82317.548382: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
119546<...>-9062 ( 8943) [007] d..2 82317.548383: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
119547   sfEventThread-8882  ( 8858) [003] d..3 82317.548385: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
119548          <idle>-0     (-----) [004] .n.1 82317.548389: cpu_idle: state=4294967295 cpu_id=4
119549          <idle>-0     (-----) [004] d..2 82317.548403: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
119550          <idle>-0     (-----) [005] dnh2 82317.548412: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=005
119551          <idle>-0     (-----) [005] .n.1 82317.548417: cpu_idle: state=4294967295 cpu_id=5
119552   sfEventThread-8882  ( 8858) [003] d..2 82317.548423: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119553          <idle>-0     (-----) [005] d..2 82317.548425: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
119554          <idle>-0     (-----) [003] d..1 82317.548432: cpu_idle: state=0 cpu_id=3
119555  surfaceflinger-8858  ( 8858) [000] d.s1 82317.548464: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
119556  surfaceflinger-8858  ( 8858) [000] d.s2 82317.548477: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
119557<...>-9062 ( 8943) [007] .... 82317.548563: binder_transaction: transaction=1572592 dest_node=0 dest_proc=27550 dest_thread=27550 reply=1 flags=0x0 code=0x0
119558<...>-9062 ( 8943) [007] .... 82317.548567: binder_transaction_alloc_buf: transaction=1572592 data_size=4 offsets_size=0
119559<...>-9062 ( 8943) [007] d..2 82317.548570: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
119560<...>-9062 ( 8943) [007] dn.3 82317.548580: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
119561<...>-9062 ( 8943) [007] d..2 82317.548586: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=R+ ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
119562           <...>-27550 (-----) [007] .... 82317.548598: binder_transaction_received: transaction=1572592
119563<...>-8969 ( 8943) [004] d..2 82317.548605: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
119564<...>-9005 ( 8943) [005] .... 82317.548609: binder_transaction: transaction=1572593 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
119565<...>-9005 ( 8943) [005] .... 82317.548614: binder_transaction_alloc_buf: transaction=1572593 data_size=80 offsets_size=0
119566          <idle>-0     (-----) [004] d..1 82317.548618: cpu_idle: state=0 cpu_id=4
119567<...>-9005 ( 8943) [005] d..4 82317.548618: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=007
119568          <idle>-0     (-----) [002] dnh2 82317.548673: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
119569          <idle>-0     (-----) [002] .n.1 82317.548677: cpu_idle: state=4294967295 cpu_id=2
119570          <idle>-0     (-----) [002] d..2 82317.548684: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
119571<...>-8951 ( 8858) [002] .... 82317.548689: binder_transaction_received: transaction=1572593
119572<...>-8951 ( 8858) [002] d..1 82317.548709: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
119573<...>-8951 ( 8858) [002] d..2 82317.548719: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
119574          <idle>-0     (-----) [003] .n.1 82317.548725: cpu_idle: state=4294967295 cpu_id=3
119575          <idle>-0     (-----) [003] d..2 82317.548732: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
119576<...>-8951 ( 8858) [002] d..2 82317.548746: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119577   sfEventThread-8882  ( 8858) [003] d..2 82317.548754: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119578          <idle>-0     (-----) [002] d..1 82317.548755: cpu_idle: state=0 cpu_id=2
119579          <idle>-0     (-----) [003] d..1 82317.548761: cpu_idle: state=0 cpu_id=3
119580           <...>-27550 (-----) [007] .... 82317.548843: binder_transaction: transaction=1572594 dest_node=395592 dest_proc=8943 dest_thread=0 reply=0 flags=0x11 code=0x14
119581           <...>-27550 (-----) [007] .... 82317.548847: binder_transaction_alloc_buf: transaction=1572594 data_size=100 offsets_size=8
119582           <...>-27550 (-----) [007] d..4 82317.548855: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=000
119583          <idle>-0     (-----) [002] dnh2 82317.548884: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
119584          <idle>-0     (-----) [002] .n.1 82317.548888: cpu_idle: state=4294967295 cpu_id=2
119585          <idle>-0     (-----) [002] d..2 82317.548895: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
119586<...>-11815 ( 8943) [002] .... 82317.548902: binder_transaction_received: transaction=1572594
119587           <...>-27550 (-----) [007] d..2 82317.549064: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
119588<...>-9005 ( 8943) [005] .... 82317.549106: binder_transaction: transaction=1572595 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
119589<...>-9005 ( 8943) [005] .... 82317.549111: binder_transaction_alloc_buf: transaction=1572595 data_size=988 offsets_size=48
119590<...>-9062 ( 8943) [007] d..2 82317.549117: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
119591<...>-9005 ( 8943) [005] ...2 82317.549125: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
119592<...>-9005 ( 8943) [005] d..4 82317.549128: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=002
119593          <idle>-0     (-----) [007] d..1 82317.549132: cpu_idle: state=0 cpu_id=7
119594<...>-9005 ( 8943) [005] dn.5 82317.549147: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=005
119595  surfaceflinger-8858  ( 8858) [000] ...1 82317.549172: tracing_mark_write: B|8858|HIDL::IMapper::freeBuffer::passthrough
119596<...>-11815 ( 8943) [002] d..2 82317.549181: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119597<...>-9005 ( 8943) [005] d..2 82317.549183: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
119598  surfaceflinger-8858  ( 8858) [000] ...1 82317.549188: tracing_mark_write: B|8858|FreeBuffer
119599<...>-8951 ( 8858) [005] .... 82317.549193: binder_transaction_received: transaction=1572595
119600          <idle>-0     (-----) [002] d..1 82317.549193: cpu_idle: state=0 cpu_id=2
119601  surfaceflinger-8858  ( 8858) [000] d..2 82317.549253: sched_waking: comm=system pid=104 prio=120 target_cpu=000
119602<...>-8951 ( 8858) [005] .... 82317.549262: binder_transaction: transaction=1572596 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
119603<...>-8951 ( 8858) [005] .... 82317.549267: binder_transaction_alloc_buf: transaction=1572596 data_size=0 offsets_size=0
119604<...>-8951 ( 8858) [005] .... 82317.549269: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
119605  surfaceflinger-8858  ( 8858) [000] d..3 82317.549269: sched_wakeup: comm=system pid=104 prio=120 target_cpu=000
119606  surfaceflinger-8858  ( 8858) [000] ...1 82317.549285: tracing_mark_write: E|8858
119607  surfaceflinger-8858  ( 8858) [000] ...1 82317.549289: tracing_mark_write: B|8858|FreeBuffer
119608  surfaceflinger-8858  ( 8858) [000] ...1 82317.549292: tracing_mark_write: B|8858|UnmapBuffer
119609<...>-8951 ( 8858) [005] d..2 82317.549307: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
119610<...>-9005 ( 8943) [005] .... 82317.549319: binder_transaction_received: transaction=1572596
119611  surfaceflinger-8858  ( 8858) [000] ...1 82317.549322: tracing_mark_write: E|8858
119612          <idle>-0     (-----) [007] ...1 82317.549329: cpu_idle: state=4294967295 cpu_id=7
119613          <idle>-0     (-----) [007] d..1 82317.549333: cpu_idle: state=0 cpu_id=7
119614  surfaceflinger-8858  ( 8858) [000] ...1 82317.549335: tracing_mark_write: E|8858
119615  surfaceflinger-8858  ( 8858) [000] ...1 82317.549342: tracing_mark_write: E|8858
119616<...>-9005 ( 8943) [005] d..1 82317.549367: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
119617          <idle>-0     (-----) [002] dnh2 82317.549387: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=002
119618          <idle>-0     (-----) [002] .n.1 82317.549392: cpu_idle: state=4294967295 cpu_id=2
119619          <idle>-0     (-----) [002] d..2 82317.549399: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
119620  surfaceflinger-8858  ( 8858) [000] d..1 82317.549406: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
119621  surfaceflinger-8858  ( 8858) [000] d..2 82317.549419: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
119622          <idle>-0     (-----) [003] .n.1 82317.549424: cpu_idle: state=4294967295 cpu_id=3
119623          <idle>-0     (-----) [003] d..2 82317.549429: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
119624<...>-9005 ( 8943) [005] d..2 82317.549447: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
119625   sfEventThread-8882  ( 8858) [003] d..2 82317.549448: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119626          <idle>-0     (-----) [003] d..1 82317.549454: cpu_idle: state=0 cpu_id=3
119627          <idle>-0     (-----) [005] d..1 82317.549460: cpu_idle: state=0 cpu_id=5
119628<...>-11815 ( 8943) [002] d..3 82317.549568: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
119629          <idle>-0     (-----) [004] dnh2 82317.549589: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
119630          <idle>-0     (-----) [004] .n.1 82317.549593: cpu_idle: state=4294967295 cpu_id=4
119631<...>-11815 ( 8943) [002] d..3 82317.549599: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
119632          <idle>-0     (-----) [004] d..2 82317.549601: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
119633<...>-11815 ( 8943) [002] d..4 82317.549618: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=003
119634          <idle>-0     (-----) [003] .n.1 82317.549623: cpu_idle: state=4294967295 cpu_id=3
119635          <idle>-0     (-----) [003] d..2 82317.549630: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
119636<...>-8969 ( 8943) [004] d..2 82317.549644: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
119637          <idle>-0     (-----) [004] d..1 82317.549654: cpu_idle: state=0 cpu_id=4
119638<...>-8955 ( 8943) [006] d..2 82317.549674: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
119639<...>-15374 ( 8943) [001] d..1 82317.549680: sched_waking: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
119640          <idle>-0     (-----) [006] d..1 82317.549689: cpu_idle: state=0 cpu_id=6
119641          <idle>-0     (-----) [006] d.h2 82317.549701: sched_blocked_reason: pid=8955 iowait=0 caller=do_page_fault+0x4e0/0x594
119642          <idle>-0     (-----) [006] dnh2 82317.549704: sched_wakeup: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
119643          <idle>-0     (-----) [006] .n.1 82317.549708: cpu_idle: state=4294967295 cpu_id=6
119644          <idle>-0     (-----) [006] d..2 82317.549715: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
119645   system_server-8943  ( 8943) [003] .... 82317.549731: binder_transaction: transaction=1572597 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x19
119646   system_server-8943  ( 8943) [003] .... 82317.549735: binder_transaction_alloc_buf: transaction=1572597 data_size=92 offsets_size=0
119647   system_server-8943  ( 8943) [003] d..4 82317.549738: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=002
119648<...>-11815 ( 8943) [002] d..2 82317.549780: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
119649          <idle>-0     (-----) [007] dnh2 82317.549795: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
119650          <idle>-0     (-----) [007] .n.1 82317.549799: cpu_idle: state=4294967295 cpu_id=7
119651<...>-11815 ( 8943) [002] d..3 82317.549806: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
119652          <idle>-0     (-----) [007] d..2 82317.549807: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
119653<...>-9132 ( 9105) [007] .... 82317.549815: binder_transaction_received: transaction=1572597
119654   system_server-8943  ( 8943) [003] d..2 82317.549846: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119655<...>-8955 ( 8943) [006] d..1 82317.549847: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=001
119656          <idle>-0     (-----) [003] d..1 82317.549856: cpu_idle: state=0 cpu_id=3
119657<...>-15374 ( 8943) [001] d..2 82317.549873: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=D|K ==> next_comm=system next_pid=104 next_prio=120
119658          <idle>-0     (-----) [003] d.h2 82317.549899: sched_blocked_reason: pid=15374 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
119659          <idle>-0     (-----) [003] dnh2 82317.549902: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=003
119660          <idle>-0     (-----) [003] .n.1 82317.549907: cpu_idle: state=4294967295 cpu_id=3
119661          <idle>-0     (-----) [003] d..2 82317.549914: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
119662<...>-11815 ( 8943) [002] d..1 82317.549932: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=006
119663<...>-8955 ( 8943) [006] d..2 82317.549935: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
119664<...>-9132 ( 9105) [007] d..3 82317.549937: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
119665<...>-15374 ( 8943) [003] d..1 82317.549940: sched_waking: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
119666          <idle>-0     (-----) [006] d..1 82317.549943: cpu_idle: state=0 cpu_id=6
119667          <idle>-0     (-----) [006] d.h2 82317.549956: sched_blocked_reason: pid=8955 iowait=0 caller=do_page_fault+0x4e0/0x594
119668          <idle>-0     (-----) [006] dnh2 82317.549958: sched_wakeup: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
119669          <idle>-0     (-----) [006] .n.1 82317.549961: cpu_idle: state=4294967295 cpu_id=6
119670<...>-15374 ( 8943) [003] dnh1 82317.549975: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
119671          <idle>-0     (-----) [006] d..2 82317.549976: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
119672<...>-11815 ( 8943) [002] d..2 82317.549976: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=000
119673<...>-15374 ( 8943) [003] d..2 82317.549983: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
119674<...>-9132 ( 9105) [007] d..2 82317.550029: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
119675          <idle>-0     (-----) [007] d..1 82317.550041: cpu_idle: state=0 cpu_id=7
119676  surfaceflinger-8858  ( 8858) [000] ...1 82317.550076: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
119677  surfaceflinger-8858  ( 8858) [000] ...1 82317.550080: tracing_mark_write: E|8858
119678  surfaceflinger-8858  ( 8858) [000] .... 82317.550129: binder_transaction: transaction=1572598 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
119679  surfaceflinger-8858  ( 8858) [000] .... 82317.550133: binder_transaction_alloc_buf: transaction=1572598 data_size=540 offsets_size=96
119680<...>-9105 ( 9105) [003] d..2 82317.550134: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=15374 next_prio=116
119681  surfaceflinger-8858  ( 8858) [000] ...2 82317.550156: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
119682<...>-8955 ( 8943) [006] d..2 82317.550164: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
119683  surfaceflinger-8858  ( 8858) [000] d..4 82317.550164: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
119684<...>-15374 ( 8943) [003] d..1 82317.550171: sched_waking: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
119685          <idle>-0     (-----) [006] d..1 82317.550176: cpu_idle: state=0 cpu_id=6
119686  surfaceflinger-8858  ( 8858) [000] d..5 82317.550184: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
119687          <idle>-0     (-----) [006] d.h2 82317.550187: sched_blocked_reason: pid=8955 iowait=0 caller=do_page_fault+0x4e0/0x594
119688          <idle>-0     (-----) [006] dnh2 82317.550189: sched_wakeup: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
119689          <idle>-0     (-----) [006] .n.1 82317.550193: cpu_idle: state=4294967295 cpu_id=6
119690          system-104   (  104) [001] d..2 82317.550196: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> [email protected] next_pid=619 next_prio=98
119691  surfaceflinger-8858  ( 8858) [000] d..2 82317.550198: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
119692          <idle>-0     (-----) [006] d..2 82317.550199: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
119693 [email protected]   (  619) [001] .... 82317.550206: binder_transaction_received: transaction=1572598
119694 LazyTaskWriterT-9080  ( 8943) [000] d..2 82317.550242: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
119695     rcu_preempt-7     (    7) [000] d..2 82317.550254: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
119696 [email protected]   (  619) [001] ...1 82317.550254: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
119697     rcu_preempt-7     (    7) [000] d..3 82317.550269: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
119698<...>-11815 ( 8943) [002] .... 82317.550270: binder_transaction: transaction=1572599 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
119699     rcu_preempt-7     (    7) [000] d..2 82317.550271: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
119700<...>-11815 ( 8943) [002] .... 82317.550274: binder_transaction_alloc_buf: transaction=1572599 data_size=76 offsets_size=0
119701<...>-11815 ( 8943) [002] ...2 82317.550277: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
119702<...>-11815 ( 8943) [002] d..4 82317.550280: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=005
119703     rcu_preempt-7     (    7) [000] d..3 82317.550294: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
119704<...>-11815 ( 8943) [002] d..2 82317.550300: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=116 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
119705          <idle>-0     (-----) [005] dnh2 82317.550301: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=005
119706          <idle>-0     (-----) [005] .n.1 82317.550306: cpu_idle: state=4294967295 cpu_id=5
119707     rcu_preempt-7     (    7) [000] d..2 82317.550307: 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
119708         rcuop/6-61    (   61) [000] d..2 82317.550311: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=003
119709          <idle>-0     (-----) [005] d..2 82317.550313: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
119710<...>-8951 ( 8858) [005] .... 82317.550322: binder_transaction_received: transaction=1572599
119711         rcuop/6-61    (   61) [000] d..3 82317.550332: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=000
119712         rcuop/6-61    (   61) [000] d..2 82317.550339: 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
119713         rcuop/2-29    (   29) [000] d..2 82317.550344: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
119714<...>-8951 ( 8858) [005] .... 82317.550351: binder_transaction: transaction=1572600 dest_node=0 dest_proc=8943 dest_thread=11815 reply=1 flags=0x0 code=0x0
119715<...>-8951 ( 8858) [005] .... 82317.550353: binder_transaction_alloc_buf: transaction=1572600 data_size=0 offsets_size=0
119716<...>-8951 ( 8858) [005] d..2 82317.550356: sched_waking: comm=Binder:8943_10 pid=11815 prio=116 target_cpu=002
119717 [email protected]   (  619) [001] ...1 82317.550366: tracing_mark_write: B|619|HWCSession::PresentDisplay::
119718         rcuop/2-29    (   29) [000] d..3 82317.550368: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
119719         rcuop/2-29    (   29) [000] d..2 82317.550377: 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
119720<...>-8951 ( 8858) [005] d..3 82317.550379: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=116 target_cpu=007
119721          <idle>-0     (-----) [007] .n.1 82317.550385: cpu_idle: state=4294967295 cpu_id=7
119722<...>-69 ( 69) [000] d..2 82317.550387: 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
119723          <idle>-0     (-----) [007] d..2 82317.550395: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=116
119724<...>-11815 ( 8943) [007] .... 82317.550406: binder_transaction_received: transaction=1572600
119725<...>-8951 ( 8858) [005] .... 82317.550428: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
119726         rcuop/3-37    (   37) [000] d..2 82317.550439: 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
119727<...>-581 ( 571) [002] d..2 82317.550443: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119728          <idle>-0     (-----) [000] d..1 82317.550451: cpu_idle: state=0 cpu_id=0
119729          <idle>-0     (-----) [002] d..1 82317.550458: cpu_idle: state=0 cpu_id=2
119730<...>-8951 ( 8858) [005] d..2 82317.550463: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
119731          <idle>-0     (-----) [005] d..1 82317.550473: cpu_idle: state=0 cpu_id=5
119732<...>-11815 ( 8943) [007] d..3 82317.550524: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=001
119733          <idle>-0     (-----) [000] dnh2 82317.550553: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
119734          <idle>-0     (-----) [000] .n.1 82317.550558: cpu_idle: state=4294967295 cpu_id=0
119735          <idle>-0     (-----) [000] d..2 82317.550565: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
119736<...>-8961 ( 8943) [000] d..2 82317.550617: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119737<...>-8955 ( 8943) [006] d..2 82317.550620: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
119738          <idle>-0     (-----) [000] d..1 82317.550625: cpu_idle: state=0 cpu_id=0
119739          <idle>-0     (-----) [006] d..1 82317.550633: cpu_idle: state=0 cpu_id=6
119740<...>-15374 ( 8943) [003] d..1 82317.550636: sched_waking: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
119741          <idle>-0     (-----) [006] d.h2 82317.550653: sched_blocked_reason: pid=8955 iowait=0 caller=do_page_fault+0x4e0/0x594
119742          <idle>-0     (-----) [006] dnh2 82317.550656: sched_wakeup: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
119743          <idle>-0     (-----) [006] .n.1 82317.550660: cpu_idle: state=4294967295 cpu_id=6
119744          <idle>-0     (-----) [006] d..2 82317.550665: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
119745 [email protected]   (  619) [001] ...1 82317.550804: tracing_mark_write: B|619|HWDeviceDRM::Validate::
119746<...>-11815 ( 8943) [007] .... 82317.551197: binder_transaction: transaction=1572601 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
119747<...>-11815 ( 8943) [007] .... 82317.551202: binder_transaction_alloc_buf: transaction=1572601 data_size=96 offsets_size=0
119748<...>-11815 ( 8943) [007] d..4 82317.551205: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=007
119749 [email protected]   (  619) [001] ...1 82317.551241: tracing_mark_write: E|619
119750          <idle>-0     (-----) [000] dnh2 82317.551260: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
119751          <idle>-0     (-----) [000] .n.1 82317.551264: cpu_idle: state=4294967295 cpu_id=0
119752          <idle>-0     (-----) [000] d..2 82317.551271: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
119753<...>-9132 ( 9105) [000] .... 82317.551277: binder_transaction_received: transaction=1572601
119754 [email protected]   (  619) [001] ...1 82317.551340: tracing_mark_write: B|619|HWDeviceDRM::Commit::
119755 [email protected]   (  619) [001] ...1 82317.551347: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
119756<...>-9132 ( 9105) [000] d..3 82317.551365: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=003
119757<...>-11815 ( 8943) [007] d..3 82317.551380: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=002
119758<...>-9132 ( 9105) [000] d..4 82317.551385: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
119759          <idle>-0     (-----) [002] .n.1 82317.551391: cpu_idle: state=4294967295 cpu_id=2
119760          <idle>-0     (-----) [002] d..2 82317.551399: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
119761<...>-9105 ( 9105) [002] d.h1 82317.551425: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=002
119762<...>-9132 ( 9105) [000] d..2 82317.551438: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119763          <idle>-0     (-----) [000] d..1 82317.551447: cpu_idle: state=0 cpu_id=0
119764<...>-9105 ( 9105) [002] d..2 82317.551491: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=android.ui next_pid=8962 next_prio=118
119765<...>-8955 ( 8943) [006] d..2 82317.551534: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
119766          <idle>-0     (-----) [006] d..1 82317.551543: cpu_idle: state=0 cpu_id=6
119767<...>-8962 ( 8943) [002] d..3 82317.551564: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=003
119768<...>-8962 ( 8943) [002] d..4 82317.551583: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
119769          <idle>-0     (-----) [000] .n.1 82317.551588: cpu_idle: state=4294967295 cpu_id=0
119770          <idle>-0     (-----) [000] d..2 82317.551596: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
119771<...>-8962 ( 8943) [002] d..2 82317.551620: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119772          <idle>-0     (-----) [002] d..1 82317.551631: cpu_idle: state=0 cpu_id=2
119773 [email protected]   (  619) [001] d..2 82317.551632: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
119774 [email protected]   (  619) [001] d..3 82317.551655: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
119775          <idle>-0     (-----) [002] .n.1 82317.551661: cpu_idle: state=4294967295 cpu_id=2
119776          <idle>-0     (-----) [002] d..2 82317.551667: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
119777   system_server-8943  ( 8943) [000] .... 82317.551668: binder_transaction: transaction=1572602 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
119778   system_server-8943  ( 8943) [000] .... 82317.551671: binder_transaction_alloc_buf: transaction=1572602 data_size=96 offsets_size=0
119779   system_server-8943  ( 8943) [000] d..4 82317.551674: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=000
119780          <idle>-0     (-----) [006] dnh2 82317.551725: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
119781 [email protected]   (  619) [001] ...1 82317.551733: tracing_mark_write: E|619
119782 [email protected]   (  619) [001] ...1 82317.551736: tracing_mark_write: E|619
119783          <idle>-0     (-----) [006] .n.1 82317.551739: cpu_idle: state=4294967295 cpu_id=6
119784          <idle>-0     (-----) [006] d..2 82317.551745: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
119785<...>-9132 ( 9105) [006] .... 82317.551755: binder_transaction_received: transaction=1572602
119786   system_server-8943  ( 8943) [000] d..2 82317.551770: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119787 [email protected]   (  619) [001] ...1 82317.551834: tracing_mark_write: E|619
119788          <idle>-0     (-----) [000] d.H4 82317.551850: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
119789          <idle>-0     (-----) [000] d.H4 82317.551866: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
119790          <idle>-0     (-----) [000] dnH5 82317.551874: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
119791          <idle>-0     (-----) [005] dnh2 82317.551875: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
119792 [email protected]   (  619) [001] ...1 82317.551876: tracing_mark_write: E|619
119793          <idle>-0     (-----) [005] .n.1 82317.551880: cpu_idle: state=4294967295 cpu_id=5
119794          <idle>-0     (-----) [005] d..2 82317.551887: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
119795 [email protected]   (  619) [001] .... 82317.551889: binder_transaction: transaction=1572603 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
119796 [email protected]   (  619) [001] .... 82317.551892: binder_transaction_alloc_buf: transaction=1572603 data_size=576 offsets_size=112
119797          <idle>-0     (-----) [000] d..2 82317.551894: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
119798<...>-9132 ( 9105) [006] d..3 82317.551899: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
119799 [email protected]   (  619) [001] d..2 82317.551909: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
119800<...>-11815 ( 8943) [007] .... 82317.551910: binder_transaction: transaction=1572604 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
119801         sugov:4-577   (  577) [005] .... 82317.551914: clk_set_rate: perfcl_clk 1209600000
119802<...>-11815 ( 8943) [007] .... 82317.551915: binder_transaction_alloc_buf: transaction=1572604 data_size=2204 offsets_size=112
119803         sugov:4-577   (  577) [005] .... 82317.551917: clk_set_rate: cpu7_perfcl_clk 825600000
119804         sugov:4-577   (  577) [005] .... 82317.551923: clk_set_rate: cpu6_perfcl_clk 825600000
119805         sugov:4-577   (  577) [005] .... 82317.551928: clk_set_rate: cpu5_perfcl_clk 825600000
119806 [email protected]   (  619) [001] d..3 82317.551929: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
119807 crtc_commit:111-321   (  321) [002] d.h1 82317.551933: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
119808         sugov:4-577   (  577) [005] .... 82317.551934: clk_set_rate: cpu4_perfcl_clk 1209600000
119809<...>-15374 ( 8943) [003] d..2 82317.551936: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
119810<...>-11815 ( 8943) [007] ...2 82317.551939: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
119811         sugov:4-577   (  577) [005] .... 82317.551940: cpu_frequency: state=1209600 cpu_id=4
119812 [email protected]   (  619) [001] .... 82317.551941: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
119813<...>-11815 ( 8943) [007] d..4 82317.551942: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=005
119814  surfaceflinger-8858  ( 8858) [003] .... 82317.551948: binder_transaction_received: transaction=1572603
119815         sugov:4-577   (  577) [005] .... 82317.551954: cpu_frequency: state=1209600 cpu_id=5
119816         sugov:0-576   (  576) [000] .... 82317.551954: clk_set_rate: pwrcl_clk 1766400000
119817         sugov:4-577   (  577) [005] .... 82317.551957: cpu_frequency: state=1209600 cpu_id=6
119818<...>-11815 ( 8943) [007] dn.5 82317.551957: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=007
119819         sugov:4-577   (  577) [005] .... 82317.551960: cpu_frequency: state=1209600 cpu_id=7
119820<...>-11815 ( 8943) [007] d..2 82317.551964: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
119821<...>-8951 ( 8858) [007] .... 82317.551973: binder_transaction_received: transaction=1572604
119822         sugov:4-577   (  577) [005] d..2 82317.551985: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
119823          <idle>-0     (-----) [005] d..1 82317.551993: cpu_idle: state=0 cpu_id=5
119824 [email protected]   (  619) [001] d..2 82317.551998: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
119825<...>-9132 ( 9105) [006] d..2 82317.552000: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=15374 next_prio=116
119826         sugov:0-576   (  576) [000] d..2 82317.552047: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
119827          <idle>-0     (-----) [000] d..1 82317.552054: cpu_idle: state=0 cpu_id=0
119828          system-104   (  104) [001] d.s2 82317.552059: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
119829 crtc_commit:111-321   (  321) [002] d..2 82317.552062: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
119830          system-104   (  104) [001] d.s3 82317.552070: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
119831          <idle>-0     (-----) [000] .n.1 82317.552076: cpu_idle: state=4294967295 cpu_id=0
119832          <idle>-0     (-----) [000] d..2 82317.552080: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
119833         sugov:0-576   (  576) [000] .... 82317.552091: clk_set_rate: cpu3_pwrcl_clk 1516800000
119834         sugov:0-576   (  576) [000] .... 82317.552099: clk_set_rate: cpu2_pwrcl_clk 1516800000
119835         sugov:0-576   (  576) [000] .... 82317.552105: clk_set_rate: cpu1_pwrcl_clk 1516800000
119836         sugov:0-576   (  576) [000] .... 82317.552111: clk_set_rate: cpu0_pwrcl_clk 1766400000
119837         sugov:0-576   (  576) [000] .... 82317.552118: cpu_frequency: state=1766400 cpu_id=0
119838<...>-8951 ( 8858) [007] d..2 82317.552125: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
119839<...>-9105 ( 9105) [002] d..2 82317.552138: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119840          <idle>-0     (-----) [002] dnh3 82317.552148: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
119841          <idle>-0     (-----) [002] d..2 82317.552155: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
119842<...>-8951 ( 8858) [007] .... 82317.552166: binder_transaction: transaction=1572605 dest_node=0 dest_proc=8943 dest_thread=11815 reply=1 flags=0x0 code=0x0
119843<...>-8951 ( 8858) [007] .... 82317.552168: binder_transaction_alloc_buf: transaction=1572605 data_size=0 offsets_size=0
119844<...>-8951 ( 8858) [007] .... 82317.552169: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
119845<...>-8951 ( 8858) [007] d..2 82317.552202: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=116
119846<...>-11815 ( 8943) [007] .... 82317.552209: binder_transaction_received: transaction=1572605
119847<...>-581 ( 571) [002] d..2 82317.552243: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119848          <idle>-0     (-----) [002] d..1 82317.552252: cpu_idle: state=0 cpu_id=2
119849  surfaceflinger-8858  ( 8858) [003] d..1 82317.552267: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
119850         sugov:0-576   (  576) [000] d..2 82317.552277: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
119851          <idle>-0     (-----) [000] dn.1 82317.552283: cpu_idle: state=0 cpu_id=0
119852          <idle>-0     (-----) [000] .n.1 82317.552285: cpu_idle: state=4294967295 cpu_id=0
119853  surfaceflinger-8858  ( 8858) [003] d..2 82317.552286: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
119854          <idle>-0     (-----) [000] d..2 82317.552294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
119855          system-104   (  104) [001] d.s2 82317.552295: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
119856          system-104   (  104) [001] d.s3 82317.552310: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
119857          <idle>-0     (-----) [002] .n.1 82317.552316: cpu_idle: state=4294967295 cpu_id=2
119858<...>-15374 ( 8943) [006] d..1 82317.552316: sched_waking: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=006
119859<...>-8894 ( 8858) [000] ...1 82317.552317: tracing_mark_write: B|8858|HIDL::IComposerClient::setVsyncEnabled::client
119860  surfaceflinger-8858  ( 8858) [003] d..2 82317.552320: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
119861<...>-8894 ( 8858) [000] ...1 82317.552321: tracing_mark_write: E|8858
119862          <idle>-0     (-----) [002] d..2 82317.552322: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
119863         sugov:0-576   (  576) [002] .... 82317.552333: cpu_frequency: state=1766400 cpu_id=1
119864         sugov:0-576   (  576) [002] .... 82317.552337: cpu_frequency: state=1766400 cpu_id=2
119865         sugov:0-576   (  576) [002] .... 82317.552339: cpu_frequency: state=1766400 cpu_id=3
119866          <idle>-0     (-----) [003] d..1 82317.552341: cpu_idle: state=0 cpu_id=3
119867<...>-8894 ( 8858) [000] .... 82317.552349: binder_transaction: transaction=1572606 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x14
119868<...>-8894 ( 8858) [000] .... 82317.552351: binder_transaction_alloc_buf: transaction=1572606 data_size=68 offsets_size=0
119869<...>-8894 ( 8858) [000] ...2 82317.552355: binder_set_priority: proc=619 thread=619 old=97 => new=112 desired=112
119870<...>-15374 ( 8943) [006] d.h3 82317.552359: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
119871          <idle>-0     (-----) [003] d.h2 82317.552359: sched_blocked_reason: pid=8955 iowait=0 caller=do_page_fault+0x4e0/0x594
119872<...>-8894 ( 8858) [000] d..4 82317.552360: sched_waking: [email protected] pid=619 prio=112 target_cpu=001
119873          <idle>-0     (-----) [003] dnh2 82317.552362: sched_wakeup: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=003
119874          <idle>-0     (-----) [003] .n.1 82317.552367: cpu_idle: state=4294967295 cpu_id=3
119875         sugov:0-576   (  576) [002] d..2 82317.552367: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119876<...>-15374 ( 8943) [006] d.h4 82317.552367: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
119877          <idle>-0     (-----) [005] .n.1 82317.552372: cpu_idle: state=4294967295 cpu_id=5
119878          <idle>-0     (-----) [002] d..1 82317.552373: cpu_idle: state=0 cpu_id=2
119879          <idle>-0     (-----) [003] d..2 82317.552373: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
119880<...>-8894 ( 8858) [000] d..5 82317.552375: sched_wakeup: [email protected] pid=619 prio=112 target_cpu=000
119881          <idle>-0     (-----) [005] d..2 82317.552376: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
119882<...>-8894 ( 8858) [000] d..2 82317.552383: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
119883         sugov:4-577   (  577) [005] .... 82317.552387: clk_set_rate: perfcl_clk 2169600000
119884         sugov:4-577   (  577) [005] .... 82317.552387: clk_set_rate: cpu7_perfcl_clk 1209600000
119885 [email protected]   (  619) [000] .... 82317.552391: binder_transaction_received: transaction=1572606
119886         sugov:4-577   (  577) [005] .... 82317.552392: clk_set_rate: cpu6_perfcl_clk 1209600000
119887         sugov:4-577   (  577) [005] .... 82317.552396: clk_set_rate: cpu5_perfcl_clk 1209600000
119888         sugov:4-577   (  577) [005] .... 82317.552401: clk_set_rate: cpu4_perfcl_clk 2169600000
119889         sugov:4-577   (  577) [005] .... 82317.552406: cpu_frequency: state=2169600 cpu_id=4
119890 [email protected]   (  619) [000] ...1 82317.552426: tracing_mark_write: B|619|HIDL::IComposerClient::setVsyncEnabled::server
119891 [email protected]   (  619) [000] ...1 82317.552438: tracing_mark_write: C|619|SetVsyncState |0
119892 [email protected]   (  619) [000] ...1 82317.552455: tracing_mark_write: E|619
119893 [email protected]   (  619) [000] .... 82317.552464: binder_transaction: transaction=1572607 dest_node=0 dest_proc=8858 dest_thread=8894 reply=1 flags=0x0 code=0x0
119894 [email protected]   (  619) [000] .... 82317.552466: binder_transaction_alloc_buf: transaction=1572607 data_size=8 offsets_size=0
119895 [email protected]   (  619) [000] d..2 82317.552468: sched_waking: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
119896 [email protected]   (  619) [000] dn.3 82317.552476: sched_wakeup: comm=surfaceflinger pid=8894 prio=112 target_cpu=000
119897 [email protected]   (  619) [000] d..2 82317.552481: sched_switch: [email protected] prev_pid=619 prev_prio=112 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8894 next_prio=112
119898<...>-8894 ( 8858) [000] .... 82317.552485: binder_transaction_received: transaction=1572607
119899<...>-8894 ( 8858) [000] d..2 82317.552514: sched_switch: prev_comm=surfaceflinger prev_pid=8894 prev_prio=112 prev_state=S ==> [email protected] next_pid=619 next_prio=112
119900 [email protected]   (  619) [000] .... 82317.552516: binder_set_priority: proc=619 thread=619 old=112 => new=97 desired=97
119901         sugov:4-577   (  577) [005] d..2 82317.552517: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
119902          <idle>-0     (-----) [005] d..1 82317.552522: cpu_idle: state=0 cpu_id=5
119903          system-104   (  104) [001] d.s2 82317.552542: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
119904 [email protected]   (  619) [000] d..2 82317.552550: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119905          <idle>-0     (-----) [000] d..1 82317.552556: cpu_idle: state=0 cpu_id=0
119906          <idle>-0     (-----) [005] dnh2 82317.552556: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
119907          <idle>-0     (-----) [005] .n.1 82317.552558: cpu_idle: state=4294967295 cpu_id=5
119908          <idle>-0     (-----) [005] d..2 82317.552561: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
119909         sugov:4-577   (  577) [005] .... 82317.552564: cpu_frequency: state=2169600 cpu_id=5
119910         sugov:4-577   (  577) [005] .... 82317.552565: cpu_frequency: state=2169600 cpu_id=6
119911         sugov:4-577   (  577) [005] .... 82317.552566: cpu_frequency: state=2169600 cpu_id=7
119912         sugov:4-577   (  577) [005] d..2 82317.552572: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
119913          <idle>-0     (-----) [005] d..1 82317.552575: cpu_idle: state=0 cpu_id=5
119914<...>-15374 ( 8943) [006] d..2 82317.552644: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
119915          <idle>-0     (-----) [006] d..1 82317.552652: cpu_idle: state=0 cpu_id=6
119916          <idle>-0     (-----) [000] d.h3 82317.552662: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
119917          <idle>-0     (-----) [000] dnh4 82317.552678: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
119918          <idle>-0     (-----) [000] .n.1 82317.552688: cpu_idle: state=4294967295 cpu_id=0
119919          <idle>-0     (-----) [000] d..2 82317.552692: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
119920 kgsl_worker_thr-258   (  258) [000] d..2 82317.552709: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
119921          <idle>-0     (-----) [000] d..1 82317.552712: cpu_idle: state=0 cpu_id=0
119922          <idle>-0     (-----) [006] d.h2 82317.552743: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=006
119923          <idle>-0     (-----) [006] d.h3 82317.552749: sched_blocked_reason: pid=15374 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
119924          <idle>-0     (-----) [006] dnh3 82317.552751: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=006
119925          <idle>-0     (-----) [006] .n.1 82317.552754: cpu_idle: state=4294967295 cpu_id=6
119926          <idle>-0     (-----) [006] d..2 82317.552760: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
119927<...>-15374 ( 8943) [006] d..1 82317.552778: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
119928          <idle>-0     (-----) [000] dnh2 82317.552793: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
119929          <idle>-0     (-----) [000] .n.1 82317.552796: cpu_idle: state=4294967295 cpu_id=0
119930          <idle>-0     (-----) [000] d..2 82317.552800: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
119931 kgsl_worker_thr-258   (  258) [000] d..2 82317.552914: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
119932          <idle>-0     (-----) [000] d..1 82317.552918: cpu_idle: state=0 cpu_id=0
119933<...>-11815 ( 8943) [007] d..3 82317.552955: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119934          <idle>-0     (-----) [000] dnh2 82317.552977: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
119935          <idle>-0     (-----) [000] .n.1 82317.552980: cpu_idle: state=4294967295 cpu_id=0
119936          <idle>-0     (-----) [000] d..2 82317.552985: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
119937<...>-9039 ( 8943) [000] d.h2 82317.553008: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
119938<...>-9039 ( 8943) [000] d.h3 82317.553022: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
119939          <idle>-0     (-----) [002] .n.1 82317.553028: cpu_idle: state=4294967295 cpu_id=2
119940          <idle>-0     (-----) [002] d..2 82317.553033: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
119941 kgsl_worker_thr-258   (  258) [002] d..2 82317.553055: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
119942<...>-9039 ( 8943) [000] d..2 82317.553064: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119943          <idle>-0     (-----) [000] d..1 82317.553069: cpu_idle: state=0 cpu_id=0
119944 kgsl_worker_thr-258   (  258) [002] d..3 82317.553086: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
119945          <idle>-0     (-----) [000] .n.1 82317.553091: cpu_idle: state=4294967295 cpu_id=0
119946          <idle>-0     (-----) [000] d..2 82317.553097: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
119947 kgsl_worker_thr-258   (  258) [002] d..2 82317.553106: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119948          <idle>-0     (-----) [002] d..1 82317.553113: cpu_idle: state=0 cpu_id=2
119949  kworker/u16:15-1311  ( 1311) [000] d..2 82317.553156: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119950          <idle>-0     (-----) [000] d..1 82317.553160: cpu_idle: state=0 cpu_id=0
119951<...>-15374 ( 8943) [006] d..2 82317.553219: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
119952<...>-11815 ( 8943) [007] d..2 82317.553219: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
119953          <idle>-0     (-----) [006] d..1 82317.553225: cpu_idle: state=0 cpu_id=6
119954          <idle>-0     (-----) [002] dnh2 82317.553234: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
119955          <idle>-0     (-----) [002] .n.1 82317.553238: cpu_idle: state=4294967295 cpu_id=2
119956          <idle>-0     (-----) [002] d..2 82317.553244: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
119957<...>-11815 ( 8943) [007] .... 82317.553260: binder_transaction: transaction=1572608 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
119958<...>-11815 ( 8943) [007] .... 82317.553261: binder_transaction_alloc_buf: transaction=1572608 data_size=100 offsets_size=8
119959<...>-11815 ( 8943) [007] ...2 82317.553270: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
119960<...>-11815 ( 8943) [007] d..4 82317.553271: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=007
119961<...>-11815 ( 8943) [007] dn.5 82317.553275: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=007
119962<...>-11815 ( 8943) [007] d..2 82317.553279: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
119963<...>-8951 ( 8858) [007] .... 82317.553284: binder_transaction_received: transaction=1572608
119964<...>-8951 ( 8858) [007] .... 82317.553312: binder_transaction: transaction=1572609 dest_node=0 dest_proc=8943 dest_thread=11815 reply=1 flags=0x0 code=0x0
119965<...>-8951 ( 8858) [007] .... 82317.553313: binder_transaction_alloc_buf: transaction=1572609 data_size=4 offsets_size=0
119966<...>-8951 ( 8858) [007] .... 82317.553315: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
119967          <idle>-0     (-----) [006] d.h2 82317.553316: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=006
119968          <idle>-0     (-----) [006] d.h3 82317.553320: sched_blocked_reason: pid=15374 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
119969          <idle>-0     (-----) [006] dnh3 82317.553321: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=006
119970          <idle>-0     (-----) [006] .n.1 82317.553324: cpu_idle: state=4294967295 cpu_id=6
119971<...>-581 ( 571) [002] d..2 82317.553325: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
119972          <idle>-0     (-----) [006] d..2 82317.553328: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
119973<...>-8951 ( 8858) [007] d..2 82317.553332: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=116
119974          <idle>-0     (-----) [002] d..1 82317.553333: cpu_idle: state=0 cpu_id=2
119975<...>-11815 ( 8943) [007] .... 82317.553337: binder_transaction_received: transaction=1572609
119976<...>-11815 ( 8943) [007] d..5 82317.553356: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=007
119977          <idle>-0     (-----) [000] dnh2 82317.553393: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
119978<...>-15374 ( 8943) [006] d..2 82317.553396: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
119979          <idle>-0     (-----) [000] .n.1 82317.553397: cpu_idle: state=4294967295 cpu_id=0
119980          <idle>-0     (-----) [006] d..1 82317.553400: cpu_idle: state=0 cpu_id=6
119981          <idle>-0     (-----) [000] d..2 82317.553401: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
119982<...>-11815 ( 8943) [007] d..3 82317.553408: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=005
119983<...>-11815 ( 8943) [007] d..4 82317.553420: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
119984          <idle>-0     (-----) [004] .n.1 82317.553424: cpu_idle: state=4294967295 cpu_id=4
119985          <idle>-0     (-----) [004] d..2 82317.553429: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
119986<...>-8951 ( 8858) [000] d..2 82317.553439: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
119987          <idle>-0     (-----) [000] d..1 82317.553444: cpu_idle: state=0 cpu_id=0
119988<...>-11815 ( 8943) [007] d..2 82317.553514: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
119989          <idle>-0     (-----) [007] d..1 82317.553527: cpu_idle: state=0 cpu_id=7
119990          <idle>-0     (-----) [006] ...1 82317.553591: cpu_idle: state=4294967295 cpu_id=6
119991          <idle>-0     (-----) [006] d..1 82317.553593: cpu_idle: state=0 cpu_id=6
119992<...>-9005 ( 8943) [004] .... 82317.553597: binder_transaction: transaction=1572610 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
119993<...>-9005 ( 8943) [004] .... 82317.553599: binder_transaction_alloc_buf: transaction=1572610 data_size=96 offsets_size=0
119994          <idle>-0     (-----) [000] d.h3 82317.553600: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
119995<...>-9005 ( 8943) [004] d..4 82317.553602: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
119996<...>-9005 ( 8943) [004] d..5 82317.553610: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
119997          <idle>-0     (-----) [000] d.h4 82317.553610: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
119998          <idle>-0     (-----) [006] .n.1 82317.553614: cpu_idle: state=4294967295 cpu_id=6
119999          <idle>-0     (-----) [002] .n.1 82317.553616: cpu_idle: state=4294967295 cpu_id=2
120000          <idle>-0     (-----) [000] ...1 82317.553617: cpu_idle: state=4294967295 cpu_id=0
120001          <idle>-0     (-----) [006] d..2 82317.553618: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
120002          <idle>-0     (-----) [000] d..1 82317.553619: cpu_idle: state=0 cpu_id=0
120003          <idle>-0     (-----) [002] d..2 82317.553621: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
120004<...>-9132 ( 9105) [006] .... 82317.553624: binder_transaction_received: transaction=1572610
120005 kgsl_worker_thr-258   (  258) [002] d..2 82317.553660: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
120006          <idle>-0     (-----) [002] d..1 82317.553665: cpu_idle: state=0 cpu_id=2
120007<...>-9132 ( 9105) [006] d..3 82317.553696: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
120008<...>-9005 ( 8943) [004] d..3 82317.553706: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=002
120009          <idle>-0     (-----) [002] dnh2 82317.553715: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
120010          <idle>-0     (-----) [002] .n.1 82317.553724: cpu_idle: state=4294967295 cpu_id=2
120011<...>-9005 ( 8943) [004] d..4 82317.553726: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
120012          <idle>-0     (-----) [002] d..2 82317.553729: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
120013          <idle>-0     (-----) [007] .n.1 82317.553731: cpu_idle: state=4294967295 cpu_id=7
120014<...>-9132 ( 9105) [006] d..2 82317.553750: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
120015          <idle>-0     (-----) [007] d..2 82317.553751: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
120016<...>-9105 ( 9105) [002] d.h1 82317.553755: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
120017          <idle>-0     (-----) [006] d..1 82317.553756: cpu_idle: state=0 cpu_id=6
120018<...>-9105 ( 9105) [002] d.h2 82317.553771: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
120019          <idle>-0     (-----) [000] .n.1 82317.553776: cpu_idle: state=4294967295 cpu_id=0
120020          <idle>-0     (-----) [000] d..2 82317.553780: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
120021 kgsl_worker_thr-258   (  258) [000] d..2 82317.553798: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120022          <idle>-0     (-----) [000] d..1 82317.553802: cpu_idle: state=0 cpu_id=0
120023<...>-8962 ( 8943) [007] d..3 82317.553832: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
120024          <idle>-0     (-----) [000] dnh2 82317.553849: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=000
120025<...>-9105 ( 9105) [002] d..2 82317.553853: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120026          <idle>-0     (-----) [000] .n.1 82317.553854: cpu_idle: state=4294967295 cpu_id=0
120027          <idle>-0     (-----) [000] d..2 82317.553858: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
120028          <idle>-0     (-----) [002] d..1 82317.553861: cpu_idle: state=0 cpu_id=2
120029<...>-8962 ( 8943) [007] d..2 82317.553862: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
120030          <idle>-0     (-----) [007] d..1 82317.553867: cpu_idle: state=0 cpu_id=7
120031   system_server-8943  ( 8943) [000] .... 82317.553940: binder_transaction: transaction=1572611 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
120032   system_server-8943  ( 8943) [000] .... 82317.553943: binder_transaction_alloc_buf: transaction=1572611 data_size=96 offsets_size=0
120033   system_server-8943  ( 8943) [000] d..4 82317.553946: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
120034          <idle>-0     (-----) [006] dnh2 82317.553961: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
120035          <idle>-0     (-----) [006] .n.1 82317.553969: cpu_idle: state=4294967295 cpu_id=6
120036          <idle>-0     (-----) [006] d..2 82317.553973: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
120037<...>-9132 ( 9105) [006] .... 82317.553975: binder_transaction_received: transaction=1572611
120038   system_server-8943  ( 8943) [000] d..2 82317.554001: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120039<...>-9132 ( 9105) [006] d..3 82317.554005: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
120040          <idle>-0     (-----) [000] d..1 82317.554007: cpu_idle: state=0 cpu_id=0
120041<...>-9005 ( 8943) [004] .... 82317.554011: binder_transaction: transaction=1572612 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
120042<...>-9005 ( 8943) [004] .... 82317.554013: binder_transaction_alloc_buf: transaction=1572612 data_size=380 offsets_size=16
120043<...>-9005 ( 8943) [004] ...2 82317.554019: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
120044          <idle>-0     (-----) [002] dnh2 82317.554020: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
120045<...>-9005 ( 8943) [004] d..4 82317.554020: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=000
120046          <idle>-0     (-----) [002] .n.1 82317.554025: cpu_idle: state=4294967295 cpu_id=2
120047<...>-9132 ( 9105) [006] d..2 82317.554030: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
120048          <idle>-0     (-----) [002] d..2 82317.554031: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
120049<...>-9005 ( 8943) [004] dn.5 82317.554031: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=004
120050          <idle>-0     (-----) [006] d..1 82317.554035: cpu_idle: state=0 cpu_id=6
120051<...>-9005 ( 8943) [004] d..2 82317.554052: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
120052<...>-8951 ( 8858) [004] .... 82317.554058: binder_transaction_received: transaction=1572612
120053<...>-9105 ( 9105) [002] d..2 82317.554078: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120054          <idle>-0     (-----) [002] d..1 82317.554085: cpu_idle: state=0 cpu_id=2
120055<...>-8951 ( 8858) [004] .... 82317.554099: binder_transaction: transaction=1572613 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
120056<...>-8951 ( 8858) [004] .... 82317.554100: binder_transaction_alloc_buf: transaction=1572613 data_size=0 offsets_size=0
120057<...>-8951 ( 8858) [004] .... 82317.554101: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
120058<...>-8951 ( 8858) [004] d..2 82317.554118: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
120059<...>-9005 ( 8943) [004] .... 82317.554122: binder_transaction_received: transaction=1572613
120060          <idle>-0     (-----) [000] d.h3 82317.554273: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
120061          <idle>-0     (-----) [000] dnh4 82317.554280: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
120062          <idle>-0     (-----) [000] .n.1 82317.554286: cpu_idle: state=4294967295 cpu_id=0
120063          <idle>-0     (-----) [000] d..2 82317.554290: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
120064 kgsl_worker_thr-258   (  258) [000] d..2 82317.554313: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=006
120065          <idle>-0     (-----) [006] dnh2 82317.554326: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=006
120066          <idle>-0     (-----) [006] .n.1 82317.554328: cpu_idle: state=4294967295 cpu_id=6
120067 kgsl_worker_thr-258   (  258) [000] d..2 82317.554331: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120068          <idle>-0     (-----) [006] d..2 82317.554331: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
120069          <idle>-0     (-----) [000] d..1 82317.554335: cpu_idle: state=0 cpu_id=0
120070          system-104   (  104) [001] d..2 82317.554347: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120071          <idle>-0     (-----) [001] d..1 82317.554367: cpu_idle: state=0 cpu_id=1
120072<...>-9005 ( 8943) [004] d..3 82317.554675: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
120073          <idle>-0     (-----) [000] dnh2 82317.554691: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
120074          <idle>-0     (-----) [000] .n.1 82317.554695: cpu_idle: state=4294967295 cpu_id=0
120075          <idle>-0     (-----) [000] d..2 82317.554700: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
120076<...>-9005 ( 8943) [004] d..1 82317.554722: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
120077<...>-9039 ( 8943) [000] d..2 82317.554727: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120078<...>-9005 ( 8943) [004] d..2 82317.554730: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=007
120079          <idle>-0     (-----) [000] d..1 82317.554731: cpu_idle: state=0 cpu_id=0
120080          <idle>-0     (-----) [007] .n.1 82317.554735: cpu_idle: state=4294967295 cpu_id=7
120081          <idle>-0     (-----) [007] d..2 82317.554739: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
120082<...>-9005 ( 8943) [004] d..2 82317.554756: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
120083          <idle>-0     (-----) [004] d..1 82317.554763: cpu_idle: state=0 cpu_id=4
120084<...>-11815 ( 8943) [007] d..1 82317.554771: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
120085<...>-11815 ( 8943) [007] d..2 82317.554780: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
120086          <idle>-0     (-----) [004] .n.1 82317.554784: cpu_idle: state=4294967295 cpu_id=4
120087          <idle>-0     (-----) [004] d..2 82317.554789: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
120088<...>-8969 ( 8943) [004] d..1 82317.554808: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
120089          <idle>-0     (-----) [000] dnh2 82317.554825: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=000
120090          <idle>-0     (-----) [000] .n.1 82317.554828: cpu_idle: state=4294967295 cpu_id=0
120091          <idle>-0     (-----) [000] d..2 82317.554833: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
120092<...>-11815 ( 8943) [007] d..2 82317.554865: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
120093          <idle>-0     (-----) [007] d..1 82317.554870: cpu_idle: state=0 cpu_id=7
120094<...>-8969 ( 8943) [004] d..2 82317.554899: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
120095          <idle>-0     (-----) [004] d..1 82317.554904: cpu_idle: state=0 cpu_id=4
120096<...>-8961 ( 8943) [000] .... 82317.554920: binder_transaction: transaction=1572614 dest_node=401308 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xb
120097<...>-8961 ( 8943) [000] .... 82317.554922: binder_transaction_alloc_buf: transaction=1572614 data_size=76 offsets_size=0
120098<...>-8961 ( 8943) [000] d..4 82317.554925: sched_waking: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=006
120099<...>-8961 ( 8943) [000] d..5 82317.554945: sched_wakeup: comm=Binder:9105_2 pid=9132 prio=120 target_cpu=001
120100          <idle>-0     (-----) [001] .n.1 82317.554951: cpu_idle: state=4294967295 cpu_id=1
120101          <idle>-0     (-----) [001] d..2 82317.554975: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_2 next_pid=9132 next_prio=120
120102<...>-9132 ( 9105) [001] .... 82317.554980: binder_transaction_received: transaction=1572614
120103<...>-8961 ( 8943) [000] .... 82317.555012: binder_transaction: transaction=1572615 dest_node=424459 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xb
120104<...>-8961 ( 8943) [000] .... 82317.555015: binder_transaction_alloc_buf: transaction=1572615 data_size=76 offsets_size=0
120105<...>-8961 ( 8943) [000] d..4 82317.555018: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
120106<...>-8961 ( 8943) [000] d..5 82317.555039: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=002
120107          <idle>-0     (-----) [002] .n.1 82317.555044: cpu_idle: state=4294967295 cpu_id=2
120108          <idle>-0     (-----) [002] d..2 82317.555066: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
120109<...>-9380 ( 9105) [002] .... 82317.555072: binder_transaction_received: transaction=1572615
120110<...>-9132 ( 9105) [001] d..3 82317.555077: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
120111<...>-8961 ( 8943) [000] .... 82317.555103: binder_transaction: transaction=1572616 dest_node=1159303 dest_proc=10023 dest_thread=0 reply=0 flags=0x11 code=0xb
120112          <idle>-0     (-----) [007] dnh2 82317.555126: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
120113          <idle>-0     (-----) [007] .n.1 82317.555129: cpu_idle: state=4294967295 cpu_id=7
120114          <idle>-0     (-----) [007] d..2 82317.555133: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
120115<...>-8961 ( 8943) [000] d.s1 82317.555136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
120116<...>-15374 ( 8943) [006] d.s2 82317.555138: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
120117<...>-9132 ( 9105) [001] d..1 82317.555153: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
120118<...>-9105 ( 9105) [007] d..2 82317.555158: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
120119<...>-8961 ( 8943) [000] d.s2 82317.555161: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
120120          <idle>-0     (-----) [007] d..1 82317.555162: cpu_idle: state=0 cpu_id=7
120121<...>-9380 ( 9105) [002] d.h2 82317.555167: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
120122          <idle>-0     (-----) [007] dnh2 82317.555171: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
120123          <idle>-0     (-----) [007] .n.1 82317.555173: cpu_idle: state=4294967295 cpu_id=7
120124<...>-8961 ( 8943) [000] .... 82317.555174: binder_transaction_alloc_buf: transaction=1572616 data_size=76 offsets_size=0
120125          <idle>-0     (-----) [007] d..2 82317.555177: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
120126<...>-8961 ( 8943) [000] d..4 82317.555179: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
120127          <idle>-0     (-----) [004] dnh2 82317.555195: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
120128          <idle>-0     (-----) [004] .n.1 82317.555197: cpu_idle: state=4294967295 cpu_id=4
120129          <idle>-0     (-----) [004] d..2 82317.555201: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
120130  Binder:10023_2-10088 (10023) [004] .... 82317.555208: binder_transaction_received: transaction=1572616
120131<...>-9132 ( 9105) [001] d..2 82317.555218: sched_switch: prev_comm=Binder:9105_2 prev_pid=9132 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120132<...>-9380 ( 9105) [002] d..2 82317.555220: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
120133<...>-9105 ( 9105) [007] d..2 82317.555223: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
120134          <idle>-0     (-----) [007] d..1 82317.555228: cpu_idle: state=0 cpu_id=7
120135          <idle>-0     (-----) [001] d..1 82317.555229: cpu_idle: state=0 cpu_id=1
120136<...>-8961 ( 8943) [000] d..2 82317.555236: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120137          <idle>-0     (-----) [000] d..1 82317.555246: cpu_idle: state=0 cpu_id=0
120138  kworker/u16:15-1311  ( 1311) [002] .... 82317.555298: clk_set_rate: l3_cluster1_vote_clk 748800000
120139  Binder:10023_2-10088 (10023) [004] d..3 82317.555342: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
120140  Binder:10023_2-10088 (10023) [004] d..4 82317.555356: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
120141          <idle>-0     (-----) [005] .n.1 82317.555361: cpu_idle: state=4294967295 cpu_id=5
120142          <idle>-0     (-----) [005] d..2 82317.555364: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
120143  Binder:10023_2-10088 (10023) [004] d..2 82317.555398: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
120144          <idle>-0     (-----) [004] d..1 82317.555404: cpu_idle: state=0 cpu_id=4
120145 s.nexuslauncher-10023 (10023) [005] d..2 82317.555420: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
120146          <idle>-0     (-----) [005] d..1 82317.555425: cpu_idle: state=0 cpu_id=5
120147  kworker/u16:15-1311  ( 1311) [002] d..2 82317.555528: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
120148     rcu_preempt-7     (    7) [002] d..2 82317.555549: 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
120149          <idle>-0     (-----) [002] d..1 82317.555556: cpu_idle: state=0 cpu_id=2
120150          <idle>-0     (-----) [001] d.s3 82317.555566: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
120151          <idle>-0     (-----) [001] d.s4 82317.555574: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
120152          <idle>-0     (-----) [001] d.s4 82317.555580: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
120153          <idle>-0     (-----) [002] .n.1 82317.555584: cpu_idle: state=4294967295 cpu_id=2
120154          <idle>-0     (-----) [001] ...1 82317.555586: cpu_idle: state=4294967295 cpu_id=1
120155          <idle>-0     (-----) [001] d..1 82317.555589: cpu_idle: state=0 cpu_id=1
120156          <idle>-0     (-----) [002] d..2 82317.555591: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
120157  kworker/u16:15-1311  ( 1311) [002] d..2 82317.555644: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120158          <idle>-0     (-----) [002] d..1 82317.555649: cpu_idle: state=0 cpu_id=2
120159          <idle>-0     (-----) [000] d.h5 82317.556125: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
120160          <idle>-0     (-----) [000] dnh6 82317.556136: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
120161          <idle>-0     (-----) [000] dnh5 82317.556140: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
120162          <idle>-0     (-----) [000] dnh6 82317.556149: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
120163          <idle>-0     (-----) [002] .n.1 82317.556154: cpu_idle: state=4294967295 cpu_id=2
120164          <idle>-0     (-----) [000] .n.1 82317.556158: cpu_idle: state=4294967295 cpu_id=0
120165          <idle>-0     (-----) [002] d..2 82317.556159: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
120166          <idle>-0     (-----) [000] d..2 82317.556164: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
120167  crtc_event:111-322   (  322) [000] d..2 82317.556187: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120168          <idle>-0     (-----) [000] d..1 82317.556193: cpu_idle: state=0 cpu_id=0
120169 crtc_commit:111-321   (  321) [002] d..2 82317.556255: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
120170          <idle>-0     (-----) [002] d..1 82317.556259: cpu_idle: state=0 cpu_id=2
120171          <idle>-0     (-----) [000] ...1 82317.557513: cpu_idle: state=4294967295 cpu_id=0
120172          <idle>-0     (-----) [000] d..1 82317.557516: cpu_idle: state=0 cpu_id=0
120173          <idle>-0     (-----) [002] d.s3 82317.558463: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
120174          <idle>-0     (-----) [000] d.h5 82317.558469: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
120175          <idle>-0     (-----) [002] d.s4 82317.558473: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
120176          <idle>-0     (-----) [000] dnh6 82317.558478: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
120177          <idle>-0     (-----) [000] .n.1 82317.558487: cpu_idle: state=4294967295 cpu_id=0
120178          <idle>-0     (-----) [002] dns3 82317.558487: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
120179          <idle>-0     (-----) [000] d..2 82317.558493: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
120180          <idle>-0     (-----) [002] dns4 82317.558510: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
120181  crtc_event:111-322   (  322) [000] d..2 82317.558515: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
120182          <idle>-0     (-----) [002] .n.1 82317.558520: cpu_idle: state=4294967295 cpu_id=2
120183     rcu_preempt-7     (    7) [000] d..2 82317.558521: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
120184          <idle>-0     (-----) [002] d..2 82317.558525: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
120185     rcu_preempt-7     (    7) [000] d..3 82317.558545: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
120186     rcu_preempt-7     (    7) [000] d..2 82317.558560: 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
120187          <idle>-0     (-----) [000] d..1 82317.558566: cpu_idle: state=0 cpu_id=0
120188 crtc_commit:111-321   (  321) [002] d..2 82317.558588: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
120189         rcuop/0-10    (   10) [002] d..2 82317.558594: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
120190         rcuop/0-10    (   10) [002] d..3 82317.558618: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
120191         rcuop/0-10    (   10) [002] d..2 82317.558637: 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
120192         rcuop/1-21    (   21) [002] d..2 82317.558689: 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
120193          <idle>-0     (-----) [002] d..1 82317.558696: cpu_idle: state=0 cpu_id=2
120194          <idle>-0     (-----) [000] d.h5 82317.558760: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
120195          <idle>-0     (-----) [000] dnh6 82317.558766: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
120196          <idle>-0     (-----) [000] dnh7 82317.558775: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
120197          <idle>-0     (-----) [000] dnh8 82317.558783: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
120198          <idle>-0     (-----) [000] dnh9 82317.558795: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
120199          <idle>-0     (-----) [000] dnha 82317.558803: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
120200          <idle>-0     (-----) [000] dnh7 82317.558807: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
120201          <idle>-0     (-----) [002] .n.1 82317.558808: cpu_idle: state=4294967295 cpu_id=2
120202          <idle>-0     (-----) [002] d..2 82317.558813: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
120203          <idle>-0     (-----) [000] dnh8 82317.558817: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
120204          <idle>-0     (-----) [000] .n.1 82317.558825: cpu_idle: state=4294967295 cpu_id=0
120205          <idle>-0     (-----) [000] d..2 82317.558831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
120206 crtc_commit:111-321   (  321) [002] d..2 82317.558833: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120207          <idle>-0     (-----) [002] d..1 82317.558837: cpu_idle: state=0 cpu_id=2
120208  crtc_event:111-322   (  322) [000] d..2 82317.558841: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
120209     kworker/0:1-25262 (25262) [000] d..2 82317.558855: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
120210 SDM_EventThread-644   (  619) [000] d..2 82317.558901: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120211          <idle>-0     (-----) [000] d..1 82317.558908: cpu_idle: state=0 cpu_id=0
120212          <idle>-0     (-----) [002] d.h2 82317.560729: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
120213          <idle>-0     (-----) [002] dnh3 82317.560739: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
120214          <idle>-0     (-----) [002] .n.1 82317.560744: cpu_idle: state=4294967295 cpu_id=2
120215          <idle>-0     (-----) [002] d..2 82317.560750: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
120216        DispSync-8879  ( 8858) [002] d..1 82317.560781: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
120217        DispSync-8879  ( 8858) [002] d..2 82317.560799: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
120218          <idle>-0     (-----) [001] .n.1 82317.560804: cpu_idle: state=4294967295 cpu_id=1
120219          <idle>-0     (-----) [001] d..2 82317.560812: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
120220        DispSync-8879  ( 8858) [002] d..2 82317.560824: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120221          <idle>-0     (-----) [002] d..1 82317.560830: cpu_idle: state=0 cpu_id=2
120222  appEventThread-8881  ( 8858) [001] d..3 82317.560888: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=007
120223  appEventThread-8881  ( 8858) [001] d..4 82317.560911: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
120224          <idle>-0     (-----) [000] .n.1 82317.560916: cpu_idle: state=4294967295 cpu_id=0
120225          <idle>-0     (-----) [000] d..2 82317.560950: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
120226  appEventThread-8881  ( 8858) [001] d..3 82317.560959: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
120227          <idle>-0     (-----) [004] dnh2 82317.560978: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
120228          <idle>-0     (-----) [004] .n.1 82317.560981: cpu_idle: state=4294967295 cpu_id=4
120229          <idle>-0     (-----) [004] d..2 82317.560986: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
120230  appEventThread-8881  ( 8858) [001] d..2 82317.560998: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120231          <idle>-0     (-----) [001] d..1 82317.561009: cpu_idle: state=0 cpu_id=1
120232 s.nexuslauncher-10023 (10023) [004] .... 82317.561134: binder_transaction: transaction=1572617 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
120233<...>-9105 ( 9105) [000] .... 82317.561134: binder_transaction: transaction=1572618 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
120234 s.nexuslauncher-10023 (10023) [004] .... 82317.561141: binder_transaction_alloc_buf: transaction=1572617 data_size=80 offsets_size=0
120235<...>-9105 ( 9105) [000] .... 82317.561143: binder_transaction_alloc_buf: transaction=1572618 data_size=80 offsets_size=0
120236 s.nexuslauncher-10023 (10023) [004] d..4 82317.561145: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
120237<...>-9105 ( 9105) [000] d..4 82317.561184: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
120238          <idle>-0     (-----) [001] dnh2 82317.561185: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
120239          <idle>-0     (-----) [001] .n.1 82317.561190: cpu_idle: state=4294967295 cpu_id=1
120240          <idle>-0     (-----) [001] d..2 82317.561196: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
120241<...>-9105 ( 9105) [000] d..5 82317.561207: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
120242          <idle>-0     (-----) [002] .n.1 82317.561212: cpu_idle: state=4294967295 cpu_id=2
120243<...>-8951 ( 8858) [001] .... 82317.561216: binder_transaction_received: transaction=1572617
120244          <idle>-0     (-----) [002] d..2 82317.561219: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
120245<...>-8874 ( 8858) [002] .... 82317.561225: binder_transaction_received: transaction=1572618
120246<...>-8874 ( 8858) [002] d..1 82317.561249: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
120247 s.nexuslauncher-10023 (10023) [004] d..2 82317.561250: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
120248          <idle>-0     (-----) [004] d..1 82317.561256: cpu_idle: state=0 cpu_id=4
120249<...>-8951 ( 8858) [001] d..2 82317.561264: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120250<...>-8874 ( 8858) [002] d..2 82317.561265: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
120251<...>-9105 ( 9105) [000] d..2 82317.561270: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
120252          <idle>-0     (-----) [001] d..1 82317.561271: cpu_idle: state=0 cpu_id=1
120253<...>-8874 ( 8858) [002] d..1 82317.561275: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
120254<...>-8874 ( 8858) [002] d..2 82317.561284: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
120255          <idle>-0     (-----) [001] .n.1 82317.561290: cpu_idle: state=4294967295 cpu_id=1
120256          <idle>-0     (-----) [001] d..2 82317.561296: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
120257<...>-8874 ( 8858) [002] d..2 82317.561309: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120258          <idle>-0     (-----) [002] d..1 82317.561316: cpu_idle: state=0 cpu_id=2
120259  appEventThread-8881  ( 8858) [000] d..2 82317.561324: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120260<...>-8951 ( 8858) [001] d..2 82317.561325: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120261          <idle>-0     (-----) [001] d..1 82317.561331: cpu_idle: state=0 cpu_id=1
120262          <idle>-0     (-----) [000] d..1 82317.561332: cpu_idle: state=0 cpu_id=0
120263          <idle>-0     (-----) [001] ...1 82317.562608: cpu_idle: state=4294967295 cpu_id=1
120264          <idle>-0     (-----) [001] d..1 82317.562611: cpu_idle: state=0 cpu_id=1
120265<...>-8955 ( 8943) [003] d.h1 82317.562683: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
120266<...>-8955 ( 8943) [003] dnh2 82317.562699: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
120267<...>-8955 ( 8943) [003] d..2 82317.562712: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
120268<...>-15374 ( 8943) [006] d..1 82317.562816: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=003
120269          <idle>-0     (-----) [000] dnh2 82317.562848: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120270          <idle>-0     (-----) [000] .n.1 82317.562852: cpu_idle: state=4294967295 cpu_id=0
120271 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.562856: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
120272<...>-15374 ( 8943) [006] d..2 82317.562859: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
120273          <idle>-0     (-----) [000] d..2 82317.562861: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120274          <idle>-0     (-----) [006] d..1 82317.562875: cpu_idle: state=0 cpu_id=6
120275          <idle>-0     (-----) [001] d.s3 82317.562881: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
120276          <idle>-0     (-----) [001] d.s4 82317.562890: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
120277          <idle>-0     (-----) [001] ...1 82317.562896: cpu_idle: state=4294967295 cpu_id=1
120278<...>-8955 ( 8943) [003] d..2 82317.562898: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
120279          <idle>-0     (-----) [001] d..1 82317.562899: cpu_idle: state=0 cpu_id=1
120280 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.562916: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
120281          <idle>-0     (-----) [006] ...1 82317.563117: cpu_idle: state=4294967295 cpu_id=6
120282          <idle>-0     (-----) [006] d..1 82317.563119: cpu_idle: state=0 cpu_id=6
120283 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.564489: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=000
120284 TaskSnapshotPer-9077  ( 8943) [000] d..3 82317.564522: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=001
120285          <idle>-0     (-----) [001] .n.1 82317.564526: cpu_idle: state=4294967295 cpu_id=1
120286          <idle>-0     (-----) [001] d..2 82317.564536: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kswapd0 next_pid=142 next_prio=120
120287          <idle>-0     (-----) [002] d.h2 82317.564750: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
120288          <idle>-0     (-----) [002] dnh3 82317.564761: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
120289          <idle>-0     (-----) [002] .n.1 82317.564766: cpu_idle: state=4294967295 cpu_id=2
120290          <idle>-0     (-----) [002] d..2 82317.564773: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
120291        DispSync-8879  ( 8858) [002] d..1 82317.564793: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
120292        DispSync-8879  ( 8858) [002] d..2 82317.564810: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
120293 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.564819: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
120294        DispSync-8879  ( 8858) [002] d..2 82317.564849: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120295          <idle>-0     (-----) [002] d..1 82317.564859: cpu_idle: state=0 cpu_id=2
120296   sfEventThread-8882  ( 8858) [000] d..3 82317.564886: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
120297   sfEventThread-8882  ( 8858) [000] d..4 82317.564907: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
120298          <idle>-0     (-----) [002] .n.1 82317.564912: cpu_idle: state=4294967295 cpu_id=2
120299          <idle>-0     (-----) [002] d..2 82317.564919: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
120300   sfEventThread-8882  ( 8858) [000] d..3 82317.564921: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
120301          <idle>-0     (-----) [004] dnh2 82317.564939: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
120302          <idle>-0     (-----) [004] .n.1 82317.564941: cpu_idle: state=4294967295 cpu_id=4
120303          <idle>-0     (-----) [004] d..2 82317.564946: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
120304   sfEventThread-8882  ( 8858) [000] d..2 82317.564948: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120305 TaskSnapshotPer-9077  ( 8943) [000] d.s1 82317.565136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
120306<...>-142 ( 142) [001] d.s6 82317.565142: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
120307<...>-9005 ( 8943) [004] .... 82317.565148: binder_transaction: transaction=1572619 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
120308 TaskSnapshotPer-9077  ( 8943) [000] dns2 82317.565149: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
120309<...>-9005 ( 8943) [004] .... 82317.565153: binder_transaction_alloc_buf: transaction=1572619 data_size=80 offsets_size=0
120310<...>-142 ( 142) [001] d.s7 82317.565156: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
120311<...>-9005 ( 8943) [004] d..4 82317.565157: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
120312 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.565160: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
120313<...>-9005 ( 8943) [004] d..5 82317.565174: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=005
120314     rcu_preempt-7     (    7) [000] d..2 82317.565176: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120315          <idle>-0     (-----) [005] .n.1 82317.565179: cpu_idle: state=4294967295 cpu_id=5
120316          <idle>-0     (-----) [005] d..2 82317.565200: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
120317<...>-8951 ( 8858) [005] .... 82317.565206: binder_transaction_received: transaction=1572619
120318<...>-8951 ( 8858) [005] d..1 82317.565224: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
120319 TaskSnapshotPer-9077  ( 8943) [000] dnh2 82317.565238: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
120320 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.565244: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
120321<...>-8951 ( 8858) [005] d..2 82317.565248: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
120322          <idle>-0     (-----) [005] d..1 82317.565253: cpu_idle: state=0 cpu_id=5
120323   sfEventThread-8882  ( 8858) [000] d..2 82317.565271: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120324<...>-9005 ( 8943) [004] .... 82317.565513: binder_transaction: transaction=1572620 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
120325<...>-9005 ( 8943) [004] .... 82317.565515: binder_transaction_alloc_buf: transaction=1572620 data_size=684 offsets_size=32
120326<...>-9005 ( 8943) [004] ...2 82317.565527: binder_set_priority: proc=8858 thread=8951 old=120 => new=116 desired=116
120327<...>-9005 ( 8943) [004] d..4 82317.565530: sched_waking: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=005
120328<...>-9005 ( 8943) [004] dn.5 82317.565539: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=116 target_cpu=004
120329<...>-9005 ( 8943) [004] d..2 82317.565543: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=116
120330<...>-8951 ( 8858) [004] .... 82317.565549: binder_transaction_received: transaction=1572620
120331<...>-8951 ( 8858) [004] .... 82317.565597: binder_transaction: transaction=1572621 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
120332<...>-8951 ( 8858) [004] .... 82317.565599: binder_transaction_alloc_buf: transaction=1572621 data_size=0 offsets_size=0
120333<...>-8951 ( 8858) [004] .... 82317.565600: binder_set_priority: proc=8858 thread=8951 old=116 => new=120 desired=120
120334<...>-8951 ( 8858) [004] d..2 82317.565620: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
120335  surfaceflinger-8858  ( 8858) [002] d..1 82317.565622: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
120336<...>-9005 ( 8943) [004] .... 82317.565623: binder_transaction_received: transaction=1572621
120337  surfaceflinger-8858  ( 8858) [002] d..2 82317.565634: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
120338 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.565642: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
120339   sfEventThread-8882  ( 8858) [000] d..2 82317.565670: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120340<...>-9005 ( 8943) [004] d..2 82317.565690: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
120341          <idle>-0     (-----) [004] d..1 82317.565697: cpu_idle: state=0 cpu_id=4
120342  surfaceflinger-8858  ( 8858) [002] ...1 82317.566238: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
120343  surfaceflinger-8858  ( 8858) [002] ...1 82317.566244: tracing_mark_write: E|8858
120344  surfaceflinger-8858  ( 8858) [002] .... 82317.566303: binder_transaction: transaction=1572622 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
120345  surfaceflinger-8858  ( 8858) [002] .... 82317.566306: binder_transaction_alloc_buf: transaction=1572622 data_size=540 offsets_size=96
120346  surfaceflinger-8858  ( 8858) [002] ...2 82317.566328: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
120347  surfaceflinger-8858  ( 8858) [002] d..4 82317.566336: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
120348  surfaceflinger-8858  ( 8858) [002] d..5 82317.566347: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
120349<...>-8955 ( 8943) [003] d.h1 82317.566349: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=003
120350 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.566355: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> [email protected] next_pid=619 next_prio=98
120351 [email protected]   (  619) [000] .... 82317.566367: binder_transaction_received: transaction=1572622
120352  surfaceflinger-8858  ( 8858) [002] d..2 82317.566370: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
120353          <idle>-0     (-----) [006] dnh2 82317.566381: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
120354          <idle>-0     (-----) [006] .n.1 82317.566415: cpu_idle: state=4294967295 cpu_id=6
120355          <idle>-0     (-----) [006] d..2 82317.566421: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
120356 [email protected]   (  619) [000] ...1 82317.566454: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
120357  kworker/u16:15-1311  ( 1311) [002] .... 82317.566502: clk_set_rate: l3_cluster0_vote_clk 1401600000
120358  kworker/u16:15-1311  ( 1311) [002] .... 82317.566508: clk_set_rate: l3_clk 1401600000
120359 [email protected]   (  619) [000] ...1 82317.566560: tracing_mark_write: B|619|HWCSession::PresentDisplay::
120360 [email protected]   (  619) [000] ...1 82317.566687: tracing_mark_write: B|619|HWDeviceDRM::Commit::
120361 [email protected]   (  619) [000] ...1 82317.566695: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
120362  kworker/u16:15-1311  ( 1311) [002] d..2 82317.566717: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
120363          <idle>-0     (-----) [002] d..1 82317.566727: cpu_idle: state=0 cpu_id=2
120364<...>-142 ( 142) [001] d.s4 82317.566747: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
120365<...>-142 ( 142) [001] d.s5 82317.566756: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
120366<...>-142 ( 142) [001] d.s5 82317.566764: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
120367          <idle>-0     (-----) [002] .n.1 82317.566769: cpu_idle: state=4294967295 cpu_id=2
120368          <idle>-0     (-----) [002] d..2 82317.566776: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
120369           <...>-27566 (-----) [006] d..2 82317.566836: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
120370  kworker/u16:15-1311  ( 1311) [002] d.h3 82317.566854: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
120371  kworker/u16:15-1311  ( 1311) [002] d..2 82317.566940: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
120372<...>-142 ( 142) [001] d.s4 82317.566970: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
120373<...>-142 ( 142) [001] d.s5 82317.566982: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
120374<...>-142 ( 142) [001] d.s5 82317.566988: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
120375<...>-581 ( 571) [002] d..2 82317.566994: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
120376  kworker/u16:15-1311  ( 1311) [002] .... 82317.567037: clk_set_rate: l3_cluster1_vote_clk 1209600000
120377  kworker/u16:15-1311  ( 1311) [002] d..2 82317.567047: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
120378<...>-581 ( 571) [002] d..2 82317.567108: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120379 [email protected]   (  619) [000] d..2 82317.567111: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
120380          <idle>-0     (-----) [002] d..1 82317.567117: cpu_idle: state=0 cpu_id=2
120381 [email protected]   (  619) [000] d..3 82317.567125: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
120382          <idle>-0     (-----) [002] .n.1 82317.567130: cpu_idle: state=4294967295 cpu_id=2
120383          <idle>-0     (-----) [002] d..2 82317.567136: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
120384 [email protected]   (  619) [000] ...1 82317.567205: tracing_mark_write: E|619
120385 [email protected]   (  619) [000] ...1 82317.567209: tracing_mark_write: E|619
120386 [email protected]   (  619) [000] ...1 82317.567259: tracing_mark_write: E|619
120387 [email protected]   (  619) [000] ...1 82317.567299: tracing_mark_write: E|619
120388 [email protected]   (  619) [000] .... 82317.567310: binder_transaction: transaction=1572623 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
120389 [email protected]   (  619) [000] .... 82317.567312: binder_transaction_alloc_buf: transaction=1572623 data_size=576 offsets_size=112
120390 [email protected]   (  619) [000] d..2 82317.567324: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
120391 [email protected]   (  619) [000] d..3 82317.567341: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
120392 [email protected]   (  619) [000] .... 82317.567343: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
120393<...>-142 ( 142) [001] d..2 82317.567354: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
120394  surfaceflinger-8858  ( 8858) [001] .... 82317.567359: binder_transaction_received: transaction=1572623
120395 [email protected]   (  619) [000] d..2 82317.567391: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120396 crtc_commit:111-321   (  321) [002] d..2 82317.567460: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
120397          <idle>-0     (-----) [002] d..1 82317.567468: cpu_idle: state=0 cpu_id=2
120398           <...>-27566 (-----) [006] d..3 82317.567605: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
120399  surfaceflinger-8858  ( 8858) [001] d..2 82317.567631: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
120400          <idle>-0     (-----) [002] dnh2 82317.567631: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=002
120401          <idle>-0     (-----) [002] .n.1 82317.567636: cpu_idle: state=4294967295 cpu_id=2
120402          <idle>-0     (-----) [002] d..2 82317.567654: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
120403           <...>-27566 (-----) [006] d..2 82317.567727: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
120404 TaskSnapshotPer-9077  ( 8943) [000] d.h1 82317.567756: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
120405           <...>-27566 (-----) [006] .... 82317.567947: binder_transaction: transaction=1572624 dest_node=395855 dest_proc=8943 dest_thread=0 reply=0 flags=0x10 code=0x21
120406           <...>-27566 (-----) [006] .... 82317.567949: binder_transaction_alloc_buf: transaction=1572624 data_size=200 offsets_size=8
120407           <...>-27550 (-----) [002] d..2 82317.567954: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120408           <...>-27566 (-----) [006] ...2 82317.567956: binder_set_priority: proc=8943 thread=11815 old=120 => new=112 desired=112
120409           <...>-27566 (-----) [006] d..4 82317.567958: sched_waking: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=007
120410          <idle>-0     (-----) [002] d..1 82317.567963: cpu_idle: state=0 cpu_id=2
120411           <...>-27566 (-----) [006] d..5 82317.567967: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120412           <...>-27566 (-----) [006] d..2 82317.567973: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120413<...>-11815 ( 8943) [006] .... 82317.567979: binder_transaction_received: transaction=1572624
120414 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568301: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=logd.writer next_pid=581 next_prio=130
120415<...>-581 ( 571) [000] d..2 82317.568396: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120416          <idle>-0     (-----) [000] d..1 82317.568411: cpu_idle: state=0 cpu_id=0
120417<...>-11815 ( 8943) [006] d..1 82317.568470: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120418          <idle>-0     (-----) [000] d.h2 82317.568486: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120419          <idle>-0     (-----) [000] dnh2 82317.568490: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120420          <idle>-0     (-----) [000] .n.1 82317.568494: cpu_idle: state=4294967295 cpu_id=0
120421          <idle>-0     (-----) [000] d..2 82317.568502: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120422<...>-11815 ( 8943) [006] d..2 82317.568503: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
120423 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.568510: sched_waking: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120424          <idle>-0     (-----) [006] d..1 82317.568514: cpu_idle: state=0 cpu_id=6
120425          <idle>-0     (-----) [006] d.h2 82317.568526: sched_blocked_reason: pid=11815 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120426          <idle>-0     (-----) [006] dnh2 82317.568527: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120427          <idle>-0     (-----) [006] .n.1 82317.568529: cpu_idle: state=4294967295 cpu_id=6
120428          <idle>-0     (-----) [006] d..2 82317.568534: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120429 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568535: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120430          <idle>-0     (-----) [000] d..1 82317.568541: cpu_idle: state=0 cpu_id=0
120431<...>-11815 ( 8943) [006] d..1 82317.568542: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120432<...>-11815 ( 8943) [006] d..2 82317.568553: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
120433          <idle>-0     (-----) [000] d.h2 82317.568554: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120434          <idle>-0     (-----) [000] dnh2 82317.568556: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120435          <idle>-0     (-----) [006] d..1 82317.568556: cpu_idle: state=0 cpu_id=6
120436          <idle>-0     (-----) [000] .n.1 82317.568560: cpu_idle: state=4294967295 cpu_id=0
120437          <idle>-0     (-----) [000] d..2 82317.568564: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120438 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.568569: sched_waking: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120439          <idle>-0     (-----) [006] d.h2 82317.568581: sched_blocked_reason: pid=11815 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120440          <idle>-0     (-----) [006] dnh2 82317.568582: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120441          <idle>-0     (-----) [006] .n.1 82317.568584: cpu_idle: state=4294967295 cpu_id=6
120442          <idle>-0     (-----) [006] d..2 82317.568588: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120443 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568588: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120444          <idle>-0     (-----) [000] d..1 82317.568592: cpu_idle: state=0 cpu_id=0
120445<...>-11815 ( 8943) [006] d..1 82317.568595: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120446          <idle>-0     (-----) [000] d.h2 82317.568607: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120447<...>-11815 ( 8943) [006] d..2 82317.568607: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
120448          <idle>-0     (-----) [000] dnh2 82317.568609: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120449          <idle>-0     (-----) [006] d..1 82317.568610: cpu_idle: state=0 cpu_id=6
120450          <idle>-0     (-----) [000] .n.1 82317.568612: cpu_idle: state=4294967295 cpu_id=0
120451          <idle>-0     (-----) [000] d..2 82317.568616: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120452 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.568621: sched_waking: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120453          <idle>-0     (-----) [006] d.h2 82317.568633: sched_blocked_reason: pid=11815 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120454          <idle>-0     (-----) [006] dnh2 82317.568633: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120455          <idle>-0     (-----) [006] .n.1 82317.568635: cpu_idle: state=4294967295 cpu_id=6
120456          <idle>-0     (-----) [006] d..2 82317.568639: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120457 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568640: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120458<...>-11815 ( 8943) [006] d..1 82317.568640: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120459          <idle>-0     (-----) [000] d..1 82317.568644: cpu_idle: state=0 cpu_id=0
120460          <idle>-0     (-----) [000] d.h2 82317.568652: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120461          <idle>-0     (-----) [000] dnh2 82317.568654: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120462<...>-11815 ( 8943) [006] d..2 82317.568656: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
120463          <idle>-0     (-----) [000] .n.1 82317.568657: cpu_idle: state=4294967295 cpu_id=0
120464          <idle>-0     (-----) [006] d..1 82317.568659: cpu_idle: state=0 cpu_id=6
120465          <idle>-0     (-----) [000] d..2 82317.568662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120466 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.568671: sched_waking: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120467          <idle>-0     (-----) [006] d.h2 82317.568682: sched_blocked_reason: pid=11815 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120468          <idle>-0     (-----) [006] dnh2 82317.568683: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120469          <idle>-0     (-----) [006] .n.1 82317.568685: cpu_idle: state=4294967295 cpu_id=6
120470          <idle>-0     (-----) [006] d..2 82317.568688: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120471 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568689: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120472<...>-11815 ( 8943) [006] d..1 82317.568691: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120473          <idle>-0     (-----) [000] d..1 82317.568694: cpu_idle: state=0 cpu_id=0
120474<...>-11815 ( 8943) [006] d..2 82317.568701: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
120475          <idle>-0     (-----) [000] d.h2 82317.568703: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120476          <idle>-0     (-----) [006] d..1 82317.568704: cpu_idle: state=0 cpu_id=6
120477          <idle>-0     (-----) [000] dnh2 82317.568705: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120478          <idle>-0     (-----) [000] .n.1 82317.568708: cpu_idle: state=4294967295 cpu_id=0
120479          <idle>-0     (-----) [000] d..2 82317.568713: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120480 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.568717: sched_waking: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120481          <idle>-0     (-----) [006] d.h2 82317.568729: sched_blocked_reason: pid=11815 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120482          <idle>-0     (-----) [006] dnh2 82317.568730: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120483          <idle>-0     (-----) [006] .n.1 82317.568732: cpu_idle: state=4294967295 cpu_id=6
120484          <idle>-0     (-----) [006] d..2 82317.568735: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120485 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568735: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120486<...>-11815 ( 8943) [006] d..1 82317.568737: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120487          <idle>-0     (-----) [000] d..1 82317.568740: cpu_idle: state=0 cpu_id=0
120488<...>-11815 ( 8943) [006] d..2 82317.568746: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=D|K ==> next_comm=swapper/6 next_pid=0 next_prio=120
120489          <idle>-0     (-----) [000] d.h2 82317.568748: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120490          <idle>-0     (-----) [006] d..1 82317.568748: cpu_idle: state=0 cpu_id=6
120491          <idle>-0     (-----) [000] dnh2 82317.568749: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120492          <idle>-0     (-----) [000] .n.1 82317.568753: cpu_idle: state=4294967295 cpu_id=0
120493          <idle>-0     (-----) [000] d..2 82317.568757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120494 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.568766: sched_waking: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120495          <idle>-0     (-----) [006] d.h2 82317.568778: sched_blocked_reason: pid=11815 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120496          <idle>-0     (-----) [006] dnh2 82317.568778: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120497          <idle>-0     (-----) [006] .n.1 82317.568781: cpu_idle: state=4294967295 cpu_id=6
120498          <idle>-0     (-----) [006] d..2 82317.568783: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120499 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568785: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120500<...>-11815 ( 8943) [006] d..1 82317.568788: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120501          <idle>-0     (-----) [000] d..1 82317.568789: cpu_idle: state=0 cpu_id=0
120502<...>-11815 ( 8943) [006] d..2 82317.568797: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
120503          <idle>-0     (-----) [000] d.h2 82317.568799: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120504          <idle>-0     (-----) [006] d..1 82317.568799: cpu_idle: state=0 cpu_id=6
120505          <idle>-0     (-----) [000] dnh2 82317.568801: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120506          <idle>-0     (-----) [000] .n.1 82317.568804: cpu_idle: state=4294967295 cpu_id=0
120507          <idle>-0     (-----) [000] d..2 82317.568809: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120508 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.568813: sched_waking: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120509          <idle>-0     (-----) [006] d.h2 82317.568824: sched_blocked_reason: pid=11815 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120510          <idle>-0     (-----) [006] dnh2 82317.568825: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120511          <idle>-0     (-----) [006] .n.1 82317.568827: cpu_idle: state=4294967295 cpu_id=6
120512          <idle>-0     (-----) [006] d..2 82317.568830: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120513<...>-11815 ( 8943) [006] d..1 82317.568831: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120514 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568831: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120515          <idle>-0     (-----) [000] d..1 82317.568835: cpu_idle: state=0 cpu_id=0
120516          <idle>-0     (-----) [000] d.h2 82317.568843: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120517          <idle>-0     (-----) [000] dnh2 82317.568845: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120518          <idle>-0     (-----) [000] .n.1 82317.568848: cpu_idle: state=4294967295 cpu_id=0
120519          <idle>-0     (-----) [000] d..2 82317.568853: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120520          <idle>-0     (-----) [002] .n.1 82317.568880: cpu_idle: state=4294967295 cpu_id=2
120521          <idle>-0     (-----) [002] d..2 82317.568888: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=27812 next_prio=112
120522<...>-11815 ( 8943) [006] d..3 82317.568900: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=000
120523<...>-27812 ( 8943) [002] d..1 82317.568904: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120524 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568907: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120525          <idle>-0     (-----) [000] d..1 82317.568912: cpu_idle: state=0 cpu_id=0
120526<...>-11815 ( 8943) [006] d..4 82317.568919: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=007
120527<...>-27812 ( 8943) [002] d..2 82317.568921: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120528          <idle>-0     (-----) [007] .n.1 82317.568924: cpu_idle: state=4294967295 cpu_id=7
120529<...>-27812 ( 8943) [002] d..2 82317.568927: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120530          <idle>-0     (-----) [007] d..2 82317.568929: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
120531          <idle>-0     (-----) [000] .n.1 82317.568932: cpu_idle: state=4294967295 cpu_id=0
120532<...>-11815 ( 8943) [006] d..1 82317.568954: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=007
120533          <idle>-0     (-----) [000] d..2 82317.568954: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120534<...>-8961 ( 8943) [007] d..2 82317.568958: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
120535 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.568961: sched_waking: comm=Binder:8943_10 pid=27812 prio=112 target_cpu=002
120536<...>-11815 ( 8943) [006] d..2 82317.568964: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=007
120537<...>-27812 ( 8943) [002] d..2 82317.568966: sched_switch: prev_comm=Binder:8943_10 prev_pid=27812 prev_prio=112 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
120538          <idle>-0     (-----) [007] d..2 82317.568967: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
120539 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568972: sched_blocked_reason: pid=27812 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120540          <idle>-0     (-----) [002] d..1 82317.568974: cpu_idle: state=0 cpu_id=2
120541          <idle>-0     (-----) [002] .n.1 82317.568977: cpu_idle: state=4294967295 cpu_id=2
120542 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568978: sched_wakeup: comm=Binder:8943_10 pid=27812 prio=112 target_cpu=002
120543          <idle>-0     (-----) [002] d..2 82317.568986: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=27812 next_prio=112
120544 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.568990: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120545<...>-27812 ( 8943) [002] d..1 82317.568994: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120546          <idle>-0     (-----) [000] d..1 82317.568994: cpu_idle: state=0 cpu_id=0
120547<...>-27812 ( 8943) [002] d..2 82317.568999: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120548<...>-27812 ( 8943) [002] d..2 82317.569004: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120549          <idle>-0     (-----) [000] .n.1 82317.569008: cpu_idle: state=4294967295 cpu_id=0
120550          <idle>-0     (-----) [000] d..2 82317.569013: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120551 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.569018: sched_waking: comm=Binder:8943_10 pid=27812 prio=112 target_cpu=002
120552<...>-27812 ( 8943) [002] d..2 82317.569019: sched_switch: prev_comm=Binder:8943_10 prev_pid=27812 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
120553 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.569024: sched_blocked_reason: pid=27812 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120554          <idle>-0     (-----) [002] d..1 82317.569025: cpu_idle: state=0 cpu_id=2
120555 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.569029: sched_wakeup: comm=Binder:8943_10 pid=27812 prio=112 target_cpu=002
120556          <idle>-0     (-----) [002] .n.1 82317.569034: cpu_idle: state=4294967295 cpu_id=2
120557 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.569040: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120558          <idle>-0     (-----) [002] d..2 82317.569041: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=27812 next_prio=112
120559<...>-27812 ( 8943) [002] d..1 82317.569043: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120560          <idle>-0     (-----) [000] d..1 82317.569044: cpu_idle: state=0 cpu_id=0
120561<...>-27812 ( 8943) [002] d..2 82317.569048: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120562<...>-27812 ( 8943) [002] d..2 82317.569053: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120563          <idle>-0     (-----) [000] .n.1 82317.569057: cpu_idle: state=4294967295 cpu_id=0
120564<...>-8961 ( 8943) [007] .... 82317.569059: binder_transaction: transaction=1572625 dest_node=1568283 dest_proc=27541 dest_thread=0 reply=0 flags=0x11 code=0xd
120565<...>-8961 ( 8943) [007] .... 82317.569061: binder_transaction_alloc_buf: transaction=1572625 data_size=80 offsets_size=0
120566          <idle>-0     (-----) [000] d..2 82317.569062: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120567<...>-27812 ( 8943) [002] d..2 82317.569064: sched_switch: prev_comm=Binder:8943_10 prev_pid=27812 prev_prio=112 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
120568<...>-8961 ( 8943) [007] d..4 82317.569064: sched_waking: comm=Binder:27541_2 pid=27549 prio=120 target_cpu=003
120569 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.569067: sched_waking: comm=Binder:8943_10 pid=27812 prio=112 target_cpu=002
120570          <idle>-0     (-----) [002] d..1 82317.569069: cpu_idle: state=0 cpu_id=2
120571 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.569072: sched_blocked_reason: pid=27812 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120572 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.569077: sched_wakeup: comm=Binder:8943_10 pid=27812 prio=112 target_cpu=002
120573          <idle>-0     (-----) [002] .n.1 82317.569082: cpu_idle: state=4294967295 cpu_id=2
120574<...>-11815 ( 8943) [006] d..2 82317.569085: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
120575          <idle>-0     (-----) [002] dn.2 82317.569087: sched_wakeup: comm=Binder:27541_2 pid=27549 prio=120 target_cpu=002
120576 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.569092: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120577          <idle>-0     (-----) [002] d..2 82317.569094: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27541_2 next_pid=27549 next_prio=120
120578          <idle>-0     (-----) [000] dnh2 82317.569100: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
120579           <...>-27549 (-----) [002] .... 82317.569101: binder_transaction_received: transaction=1572625
120580          <idle>-0     (-----) [000] d..2 82317.569106: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
120581<...>-8961 ( 8943) [007] d..2 82317.569117: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
120582          <idle>-0     (-----) [007] d..1 82317.569123: cpu_idle: state=0 cpu_id=7
120583<...>-11815 ( 8943) [006] d..2 82317.569163: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
120584<...>-581 ( 571) [000] d..2 82317.569164: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
120585<...>-8955 ( 8943) [003] d..2 82317.569167: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
120586          <idle>-0     (-----) [000] d..1 82317.569170: cpu_idle: state=0 cpu_id=0
120587          <idle>-0     (-----) [006] d..1 82317.569170: cpu_idle: state=0 cpu_id=6
120588          <idle>-0     (-----) [003] d..1 82317.569186: cpu_idle: state=0 cpu_id=3
120589          <idle>-0     (-----) [006] ...1 82317.569362: cpu_idle: state=4294967295 cpu_id=6
120590          <idle>-0     (-----) [006] d..1 82317.569364: cpu_idle: state=0 cpu_id=6
120591           <...>-27549 (-----) [002] d..2 82317.569397: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=27812 next_prio=112
120592<...>-27812 ( 8943) [002] d..1 82317.569402: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120593<...>-27812 ( 8943) [002] d..2 82317.569408: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120594<...>-27812 ( 8943) [002] d..2 82317.569413: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120595<...>-27812 ( 8943) [002] d..1 82317.569415: sched_waking: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=003
120596          <idle>-0     (-----) [000] .n.1 82317.569419: cpu_idle: state=4294967295 cpu_id=0
120597<...>-27812 ( 8943) [002] d..2 82317.569419: sched_blocked_reason: pid=8955 iowait=0 caller=do_page_fault+0x4e0/0x594
120598<...>-27812 ( 8943) [002] d..2 82317.569424: sched_wakeup: comm=HeapTaskDaemon pid=8955 prio=124 target_cpu=003
120599          <idle>-0     (-----) [000] d..2 82317.569424: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120600<...>-27812 ( 8943) [002] d..1 82317.569425: sched_waking: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120601          <idle>-0     (-----) [003] .n.1 82317.569430: cpu_idle: state=4294967295 cpu_id=3
120602          <idle>-0     (-----) [006] d.h2 82317.569437: sched_blocked_reason: pid=11815 iowait=0 caller=do_page_fault+0x4e0/0x594
120603          <idle>-0     (-----) [006] dnh2 82317.569438: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120604          <idle>-0     (-----) [003] d..2 82317.569438: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
120605          <idle>-0     (-----) [006] .n.1 82317.569441: cpu_idle: state=4294967295 cpu_id=6
120606          <idle>-0     (-----) [006] d..2 82317.569444: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120607<...>-11815 ( 8943) [006] d..1 82317.569449: sched_waking: comm=Binder:8943_10 pid=27812 prio=112 target_cpu=002
120608<...>-27812 ( 8943) [002] d..2 82317.569454: sched_switch: prev_comm=Binder:8943_10 prev_pid=27812 prev_prio=112 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
120609 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.569456: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120610          <idle>-0     (-----) [000] d..1 82317.569460: cpu_idle: state=0 cpu_id=0
120611          <idle>-0     (-----) [002] d..1 82317.569463: cpu_idle: state=0 cpu_id=2
120612          <idle>-0     (-----) [002] d.h2 82317.569471: sched_blocked_reason: pid=27812 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120613          <idle>-0     (-----) [002] dnh2 82317.569473: sched_wakeup: comm=Binder:8943_10 pid=27812 prio=112 target_cpu=002
120614          <idle>-0     (-----) [002] .n.1 82317.569477: cpu_idle: state=4294967295 cpu_id=2
120615          <idle>-0     (-----) [002] d..2 82317.569483: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=27812 next_prio=112
120616<...>-27812 ( 8943) [002] d..1 82317.569493: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120617<...>-11815 ( 8943) [006] d..3 82317.569495: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
120618<...>-27812 ( 8943) [002] d..2 82317.569498: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120619<...>-27812 ( 8943) [002] d..2 82317.569503: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120620<...>-11815 ( 8943) [006] d..4 82317.569504: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=007
120621          <idle>-0     (-----) [000] .n.1 82317.569507: cpu_idle: state=4294967295 cpu_id=0
120622          <idle>-0     (-----) [007] .n.1 82317.569508: cpu_idle: state=4294967295 cpu_id=7
120623          <idle>-0     (-----) [000] d..2 82317.569512: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120624          <idle>-0     (-----) [007] d..2 82317.569512: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
120625<...>-11815 ( 8943) [006] d..2 82317.569539: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
120626<...>-8962 ( 8943) [007] d..2 82317.569539: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
120627          <idle>-0     (-----) [007] d..1 82317.569543: cpu_idle: state=0 cpu_id=7
120628 TaskSnapshotPer-9077  ( 8943) [000] d.h1 82317.569552: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
120629<...>-11815 ( 8943) [006] d..2 82317.569575: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
120630 TaskSnapshotPer-9077  ( 8943) [000] dnh1 82317.569594: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
120631 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.569600: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=statsd.writer next_pid=1044 next_prio=120
120632<...>-11815 ( 8943) [006] d..2 82317.569716: sched_waking: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=002
120633<...>-11815 ( 8943) [006] d..3 82317.569733: sched_wakeup: comm=id.nn.benchmark pid=27550 prio=120 target_cpu=007
120634<...>-11815 ( 8943) [006] d..2 82317.569734: sched_waking: comm=Jit thread pool pid=27555 prio=129 target_cpu=005
120635          <idle>-0     (-----) [007] .n.1 82317.569737: cpu_idle: state=4294967295 cpu_id=7
120636          <idle>-0     (-----) [007] d..2 82317.569741: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=id.nn.benchmark next_pid=27550 next_prio=120
120637<...>-11815 ( 8943) [006] d..3 82317.569750: sched_wakeup: comm=Jit thread pool pid=27555 prio=129 target_cpu=007
120638<...>-11815 ( 8943) [006] d..2 82317.569751: sched_waking: comm=Signal Catcher pid=27556 prio=120 target_cpu=001
120639<...>-11815 ( 8943) [006] d..2 82317.569767: sched_waking: comm=ADB-JDWP Connec pid=27557 prio=120 target_cpu=001
120640<...>-142 ( 142) [001] dnh1 82317.569776: sched_wakeup: comm=Signal Catcher pid=27556 prio=120 target_cpu=001
120641<...>-11815 ( 8943) [006] d..2 82317.569778: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=000
120642   statsd.writer-1044  (  901) [000] d..2 82317.569781: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
120643<...>-142 ( 142) [001] dnh1 82317.569783: sched_wakeup: comm=ADB-JDWP Connec pid=27557 prio=120 target_cpu=001
120644<...>-27812 ( 8943) [002] d..2 82317.569786: sched_switch: prev_comm=Instrumentation prev_pid=27812 prev_prio=120 prev_state=D|K ==> next_comm=swapper/2 next_pid=0 next_prio=120
120645<...>-142 ( 142) [001] d..2 82317.569790: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=Signal Catcher next_pid=27556 next_prio=120
120646<...>-11815 ( 8943) [006] d..3 82317.569793: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=006
120647<...>-11815 ( 8943) [006] d..2 82317.569794: sched_waking: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=002
120648          <idle>-0     (-----) [002] d..1 82317.569797: cpu_idle: state=0 cpu_id=2
120649<...>-11815 ( 8943) [006] d..3 82317.569801: sched_wakeup: comm=FinalizerDaemon pid=27559 prio=124 target_cpu=006
120650<...>-11815 ( 8943) [006] d..2 82317.569802: sched_waking: comm=FinalizerWatchd pid=27560 prio=124 target_cpu=003
120651<...>-11815 ( 8943) [006] d..3 82317.569809: sched_wakeup: comm=FinalizerWatchd pid=27560 prio=124 target_cpu=006
120652<...>-11815 ( 8943) [006] d..2 82317.569810: sched_waking: comm=HeapTaskDaemon pid=27561 prio=124 target_cpu=000
120653<...>-11815 ( 8943) [006] d..2 82317.569819: sched_waking: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=001
120654<...>-11815 ( 8943) [006] dn.3 82317.569826: sched_wakeup: comm=Binder:27550_1 pid=27562 prio=120 target_cpu=006
120655<...>-11815 ( 8943) [006] dn.2 82317.569827: sched_waking: comm=Binder:27550_2 pid=27563 prio=120 target_cpu=001
120656          <idle>-0     (-----) [002] dnh2 82317.569829: sched_wakeup: comm=HeapTaskDaemon pid=27561 prio=124 target_cpu=002
120657<...>-11815 ( 8943) [006] dn.3 82317.569834: sched_wakeup: comm=Binder:27550_2 pid=27563 prio=120 target_cpu=006
120658          <idle>-0     (-----) [002] .n.1 82317.569834: cpu_idle: state=4294967295 cpu_id=2
120659<...>-11815 ( 8943) [006] dn.2 82317.569834: sched_waking: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=002
120660          <idle>-0     (-----) [002] d..2 82317.569841: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=27561 next_prio=124
120661<...>-11815 ( 8943) [006] dn.2 82317.569844: sched_waking: comm=Profile Saver pid=27565 prio=129 target_cpu=004
120662           <...>-27561 (-----) [002] d.h3 82317.569850: sched_wakeup: comm=Binder:27550_3 pid=27564 prio=120 target_cpu=002
120663<...>-11815 ( 8943) [006] dn.2 82317.569852: sched_waking: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
120664<...>-11815 ( 8943) [006] dn.3 82317.569855: sched_wakeup: comm=roidJUnitRunner pid=27566 prio=112 target_cpu=006
120665<...>-11815 ( 8943) [006] dn.2 82317.569856: sched_waking: comm=Instrumentation pid=27567 prio=120 target_cpu=001
120666<...>-581 ( 571) [000] d.h1 82317.569861: sched_wakeup: comm=Profile Saver pid=27565 prio=129 target_cpu=000
120667<...>-11815 ( 8943) [006] dn.2 82317.569863: sched_waking: comm=RenderThread pid=27570 prio=120 target_cpu=002
120668<...>-581 ( 571) [000] d..2 82317.569868: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=Profile Saver next_pid=27565 next_prio=129
120669<...>-11815 ( 8943) [006] dn.2 82317.569868: sched_waking: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=004
120670<...>-11815 ( 8943) [006] dn.2 82317.569877: sched_waking: comm=queued-work-loo pid=27811 prio=118 target_cpu=000
120671           <...>-27561 (-----) [002] d.h2 82317.569901: sched_wakeup: comm=RenderThread pid=27570 prio=120 target_cpu=002
120672<...>-11815 ( 8943) [006] d..2 82317.569902: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=R+ ==> next_comm=Binder:27550_1 next_pid=27562 next_prio=120
120673           <...>-27556 (-----) [001] d.h2 82317.569902: sched_wakeup: comm=Instrumentation pid=27567 prio=120 target_cpu=001
120674           <...>-27565 (-----) [000] d.h2 82317.569902: sched_wakeup: comm=queued-work-loo pid=27811 prio=118 target_cpu=000
120675           <...>-27565 (-----) [000] dnh2 82317.569907: sched_wakeup: comm=HwBinder:27550_ pid=27571 prio=110 target_cpu=000
120676           <...>-27565 (-----) [000] d..2 82317.569912: sched_switch: prev_comm=Profile Saver prev_pid=27565 prev_prio=129 prev_state=R+ ==> next_comm=HwBinder:27550_ next_pid=27571 next_prio=110
120677           <...>-27550 (-----) [007] d..2 82317.570051: sched_switch: prev_comm=id.nn.benchmark prev_pid=27550 prev_prio=120 prev_state=x ==> next_comm=Jit thread pool next_pid=27555 next_prio=129
120678           <...>-27562 (-----) [006] d..2 82317.570121: sched_switch: prev_comm=Binder:27550_1 prev_pid=27562 prev_prio=120 prev_state=x ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120679           <...>-27561 (-----) [002] d..2 82317.570126: sched_switch: prev_comm=HeapTaskDaemon prev_pid=27561 prev_prio=124 prev_state=x ==> next_comm=Binder:27550_3 next_pid=27564 next_prio=120
120680           <...>-27571 (-----) [000] d..2 82317.570129: sched_switch: prev_comm=HwBinder:27550_ prev_pid=27571 prev_prio=110 prev_state=x ==> next_comm=Profile Saver next_pid=27565 next_prio=129
120681           <...>-27556 (-----) [001] d..2 82317.570132: sched_switch: prev_comm=Signal Catcher prev_pid=27556 prev_prio=120 prev_state=x ==> next_comm=ADB-JDWP Connec next_pid=27557 next_prio=120
120682<...>-11815 ( 8943) [006] d..3 82317.570135: sched_waking: comm=ActivityManager pid=8964 prio=130 target_cpu=000
120683           <...>-27555 (-----) [007] d..2 82317.570150: sched_switch: prev_comm=Jit thread pool prev_pid=27555 prev_prio=129 prev_state=x ==> next_comm=roidJUnitRunner next_pid=27566 next_prio=112
120684           <...>-27565 (-----) [000] d.h2 82317.570155: sched_wakeup: comm=ActivityManager pid=8964 prio=130 target_cpu=000
120685           <...>-27564 (-----) [002] d..2 82317.570232: sched_switch: prev_comm=Binder:27550_3 prev_pid=27564 prev_prio=120 prev_state=x ==> next_comm=RenderThread next_pid=27570 next_prio=120
120686           <...>-27566 (-----) [007] d..2 82317.570250: sched_switch: prev_comm=roidJUnitRunner prev_pid=27566 prev_prio=112 prev_state=x ==> next_comm=Binder:27550_2 next_pid=27563 next_prio=120
120687           <...>-27565 (-----) [000] d..2 82317.570251: sched_switch: prev_comm=Profile Saver prev_pid=27565 prev_prio=129 prev_state=x ==> next_comm=queued-work-loo next_pid=27811 next_prio=118
120688           <...>-27557 (-----) [001] d..2 82317.570258: sched_switch: prev_comm=ADB-JDWP Connec prev_pid=27557 prev_prio=120 prev_state=x ==> next_comm=Instrumentation next_pid=27567 next_prio=120
120689           <...>-27563 (-----) [007] d..2 82317.570276: sched_switch: prev_comm=Binder:27550_2 prev_pid=27563 prev_prio=120 prev_state=x ==> next_comm=FinalizerWatchd next_pid=27560 next_prio=124
120690           <...>-27811 (-----) [000] d..2 82317.570284: sched_switch: prev_comm=queued-work-loo prev_pid=27811 prev_prio=118 prev_state=x ==> next_comm=ActivityManager next_pid=8964 next_prio=130
120691           <...>-27570 (-----) [002] d..2 82317.570293: sched_switch: prev_comm=RenderThread prev_pid=27570 prev_prio=120 prev_state=x ==> next_comm=swapper/2 next_pid=0 next_prio=120
120692           <...>-27560 (-----) [007] d..2 82317.570305: sched_switch: prev_comm=FinalizerWatchd prev_pid=27560 prev_prio=124 prev_state=x ==> next_comm=FinalizerDaemon next_pid=27559 next_prio=124
120693          <idle>-0     (-----) [002] d..1 82317.570305: cpu_idle: state=0 cpu_id=2
120694           <...>-27567 (-----) [001] d..2 82317.570306: sched_switch: prev_comm=Instrumentation prev_pid=27567 prev_prio=120 prev_state=x ==> next_comm=kswapd0 next_pid=142 next_prio=120
120695           <...>-27559 (-----) [007] d..2 82317.570330: sched_switch: prev_comm=FinalizerDaemon prev_pid=27559 prev_prio=124 prev_state=x ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
120696<...>-11815 ( 8943) [006] d..2 82317.570337: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
120697          <idle>-0     (-----) [006] d..1 82317.570346: cpu_idle: state=0 cpu_id=6
120698<...>-8964 ( 8943) [000] d..2 82317.570489: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
120699<...>-8964 ( 8943) [000] d..3 82317.570502: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
120700          <idle>-0     (-----) [006] ...1 82317.570538: cpu_idle: state=4294967295 cpu_id=6
120701          <idle>-0     (-----) [006] d..1 82317.570540: cpu_idle: state=0 cpu_id=6
120702<...>-8964 ( 8943) [000] d..2 82317.570546: sched_switch: prev_comm=ActivityManager prev_pid=8964 prev_prio=130 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
120703<...>-581 ( 571) [000] d..2 82317.570593: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120704 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.570601: sched_waking: comm=Instrumentation pid=27812 prio=120 target_cpu=002
120705 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.570608: sched_blocked_reason: pid=27812 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120706 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.570613: sched_wakeup: comm=Instrumentation pid=27812 prio=120 target_cpu=002
120707          <idle>-0     (-----) [002] .n.1 82317.570618: cpu_idle: state=4294967295 cpu_id=2
120708          <idle>-0     (-----) [002] d..2 82317.570626: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=27812 next_prio=120
120709 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.570630: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
120710<...>-27812 ( 8943) [002] d..1 82317.570635: sched_waking: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120711          <idle>-0     (-----) [000] d..1 82317.570639: cpu_idle: state=0 cpu_id=0
120712<...>-27812 ( 8943) [002] d..1 82317.570643: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120713          <idle>-0     (-----) [006] d.h2 82317.570649: sched_blocked_reason: pid=11815 iowait=0 caller=do_page_fault+0x4e0/0x594
120714          <idle>-0     (-----) [006] dnh2 82317.570650: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=112 target_cpu=006
120715<...>-27812 ( 8943) [002] d..2 82317.570651: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
120716          <idle>-0     (-----) [006] .n.1 82317.570652: cpu_idle: state=4294967295 cpu_id=6
120717<...>-27812 ( 8943) [002] d..2 82317.570656: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
120718          <idle>-0     (-----) [006] d..2 82317.570656: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120719          <idle>-0     (-----) [000] .n.1 82317.570661: cpu_idle: state=4294967295 cpu_id=0
120720          <idle>-0     (-----) [000] d..2 82317.570667: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120721<...>-11815 ( 8943) [006] d..2 82317.570797: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
120722 TaskSnapshotPer-9077  ( 8943) [000] dnh2 82317.570813: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
120723 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.570820: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=statsd.writer next_pid=1044 next_prio=120
120724<...>-11815 ( 8943) [006] d..3 82317.570851: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=003
120725<...>-27812 ( 8943) [002] d..2 82317.570869: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=000
120726   statsd.writer-1044  (  901) [000] dnh1 82317.570872: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=000
120727   statsd.writer-1044  (  901) [000] d..2 82317.570882: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=R ==> next_comm=lmkd next_pid=821 next_prio=98
120728<...>-27812 ( 8943) [002] d..3 82317.570894: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
120729<...>-821 ( 821) [000] d..2 82317.570923: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
120730<...>-27812 ( 8943) [002] .... 82317.570935: binder_transaction: transaction=1572626 dest_node=1568281 dest_proc=27541 dest_thread=0 reply=0 flags=0x10 code=0x2
120731<...>-27812 ( 8943) [002] .... 82317.570939: binder_transaction_alloc_buf: transaction=1572626 data_size=364 offsets_size=0
120732<...>-27812 ( 8943) [002] d..4 82317.570943: sched_waking: comm=Binder:27541_2 pid=27549 prio=120 target_cpu=002
120733          <idle>-0     (-----) [004] dnh2 82317.570992: sched_wakeup: comm=Binder:27541_2 pid=27549 prio=120 target_cpu=004
120734   statsd.writer-1044  (  901) [000] d..2 82317.570995: sched_switch: prev_comm=statsd.writer prev_pid=1044 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120735          <idle>-0     (-----) [004] .n.1 82317.570996: cpu_idle: state=4294967295 cpu_id=4
120736          <idle>-0     (-----) [004] d..2 82317.571001: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27541_2 next_pid=27549 next_prio=120
120737           <...>-27549 (-----) [004] .... 82317.571007: binder_transaction_received: transaction=1572626
120738<...>-27812 ( 8943) [002] d..2 82317.571008: sched_switch: prev_comm=Instrumentation prev_pid=27812 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
120739<...>-11815 ( 8943) [006] .... 82317.571115: binder_transaction: transaction=1572627 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0x20
120740<...>-11815 ( 8943) [006] .... 82317.571118: binder_transaction_alloc_buf: transaction=1572627 data_size=96 offsets_size=0
120741<...>-11815 ( 8943) [006] d..4 82317.571121: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=002
120742<...>-11815 ( 8943) [006] d..5 82317.571145: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=007
120743<...>-581 ( 571) [002] d..2 82317.571240: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120744          <idle>-0     (-----) [002] d..1 82317.571250: cpu_idle: state=0 cpu_id=2
120745           <...>-27549 (-----) [004] d..2 82317.571261: sched_waking: comm=shell svc 27539 pid=27540 prio=120 target_cpu=007
120746           <...>-27549 (-----) [004] d..3 82317.571272: sched_wakeup: comm=shell svc 27539 pid=27540 prio=120 target_cpu=004
120747           <...>-27549 (-----) [004] d..1 82317.571314: sched_waking: comm=main pid=27541 prio=120 target_cpu=000
120748 TaskSnapshotPer-9077  ( 8943) [000] dnh1 82317.571334: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=000
120749 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.571341: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=main next_pid=27541 next_prio=120
120750           <...>-27549 (-----) [004] .... 82317.571375: binder_transaction: transaction=1572628 dest_node=0 dest_proc=8943 dest_thread=27812 reply=1 flags=0x0 code=0x0
120751           <...>-27549 (-----) [004] .... 82317.571377: binder_transaction_alloc_buf: transaction=1572628 data_size=4 offsets_size=0
120752           <...>-27549 (-----) [004] d..2 82317.571379: sched_waking: comm=Instrumentation pid=27812 prio=120 target_cpu=002
120753           <...>-27541 (-----) [000] d..2 82317.571388: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
120754          <idle>-0     (-----) [002] dnh2 82317.571396: sched_wakeup: comm=Instrumentation pid=27812 prio=120 target_cpu=002
120755           <...>-27541 (-----) [000] d..3 82317.571399: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
120756          <idle>-0     (-----) [002] .n.1 82317.571400: cpu_idle: state=4294967295 cpu_id=2
120757          <idle>-0     (-----) [002] d..2 82317.571407: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Instrumentation next_pid=27812 next_prio=120
120758<...>-27812 ( 8943) [002] .... 82317.571412: binder_transaction_received: transaction=1572628
120759<...>-11815 ( 8943) [006] .... 82317.571447: binder_transaction: transaction=1572629 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
120760<...>-11815 ( 8943) [006] .... 82317.571450: binder_transaction_alloc_buf: transaction=1572629 data_size=76 offsets_size=0
120761<...>-11815 ( 8943) [006] ...2 82317.571453: binder_set_priority: proc=8858 thread=8951 old=120 => new=112 desired=112
120762<...>-11815 ( 8943) [006] d..4 82317.571455: sched_waking: comm=Binder:8858_4 pid=8951 prio=112 target_cpu=004
120763<...>-11815 ( 8943) [006] dn.5 82317.571465: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=112 target_cpu=006
120764           <...>-27549 (-----) [004] d..2 82317.571469: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
120765<...>-11815 ( 8943) [006] d..2 82317.571470: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=112 prev_state=R+ ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=112
120766<...>-27812 ( 8943) [002] d..2 82317.571470: sched_switch: prev_comm=Instrumentation prev_pid=27812 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120767<...>-8951 ( 8858) [006] .... 82317.571477: binder_transaction_received: transaction=1572629
120768          <idle>-0     (-----) [002] d..1 82317.571477: cpu_idle: state=0 cpu_id=2
120769          <idle>-0     (-----) [002] dnh2 82317.571494: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
120770          <idle>-0     (-----) [002] .n.1 82317.571498: cpu_idle: state=4294967295 cpu_id=2
120771          <idle>-0     (-----) [002] d..2 82317.571503: 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
120772<...>-8951 ( 8858) [006] .... 82317.571505: binder_transaction: transaction=1572630 dest_node=0 dest_proc=8943 dest_thread=11815 reply=1 flags=0x0 code=0x0
120773<...>-8951 ( 8858) [006] .... 82317.571506: binder_transaction_alloc_buf: transaction=1572630 data_size=0 offsets_size=0
120774<...>-8951 ( 8858) [006] .... 82317.571507: binder_set_priority: proc=8858 thread=8951 old=112 => new=120 desired=120
120775         rcuop/4-45    (   45) [002] d..2 82317.571518: 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
120776<...>-8951 ( 8858) [006] d..2 82317.571520: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=112
120777          <idle>-0     (-----) [002] d..1 82317.571523: cpu_idle: state=0 cpu_id=2
120778<...>-11815 ( 8943) [006] .... 82317.571524: binder_transaction_received: transaction=1572630
120779           <...>-27549 (-----) [004] d..2 82317.571534: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=D ==> next_comm=shell svc 27539 next_pid=27540 next_prio=120
120780           <...>-27540 (-----) [004] d..2 82317.571567: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
120781           <...>-27540 (-----) [004] d..3 82317.571580: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=004
120782           <...>-27540 (-----) [004] d..2 82317.571609: sched_switch: prev_comm=shell svc 27539 prev_pid=27540 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
120783            adbd-960   (  960) [004] d..1 82317.571692: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
120784           <...>-27541 (-----) [000] d.h2 82317.571710: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
120785            adbd-960   (  960) [004] d..2 82317.571733: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
120786          <idle>-0     (-----) [004] d..1 82317.571743: cpu_idle: state=0 cpu_id=4
120787           <...>-27541 (-----) [000] d..1 82317.571748: sched_waking: comm=Binder:27541_2 pid=27549 prio=120 target_cpu=004
120788          <idle>-0     (-----) [004] d.h2 82317.571764: sched_blocked_reason: pid=27549 iowait=0 caller=SyS_madvise+0xc84/0xcbc
120789          <idle>-0     (-----) [004] dnh2 82317.571765: sched_wakeup: comm=Binder:27541_2 pid=27549 prio=120 target_cpu=004
120790          <idle>-0     (-----) [004] .n.1 82317.571768: cpu_idle: state=4294967295 cpu_id=4
120791          <idle>-0     (-----) [004] d..2 82317.571775: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27541_2 next_pid=27549 next_prio=120
120792<...>-8955 ( 8943) [003] d.h2 82317.571817: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
120793           <...>-27541 (-----) [000] d.s1 82317.571817: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
120794<...>-8955 ( 8943) [003] dnh3 82317.571826: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
120795          <idle>-0     (-----) [002] ...1 82317.571836: cpu_idle: state=4294967295 cpu_id=2
120796          <idle>-0     (-----) [002] d..1 82317.571839: cpu_idle: state=0 cpu_id=2
120797<...>-8955 ( 8943) [003] d..2 82317.571839: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
120798          <idle>-0     (-----) [005] dnh2 82317.571868: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=005
120799          <idle>-0     (-----) [005] .n.1 82317.571870: cpu_idle: state=4294967295 cpu_id=5
120800           <...>-27549 (-----) [004] d..1 82317.571872: sched_waking: comm=main pid=27541 prio=120 target_cpu=000
120801          <idle>-0     (-----) [005] d..2 82317.571874: 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
120802           <...>-27541 (-----) [000] d..2 82317.571878: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
120803     rcu_preempt-7     (    7) [005] d..2 82317.571881: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
120804     kworker/0:1-25262 (25262) [000] d..3 82317.571887: sched_waking: comm=Binder:27541_1 pid=27548 prio=120 target_cpu=000
120805     migration/3-33    (   33) [003] d.h3 82317.571914: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
120806           <...>-27549 (-----) [004] d..2 82317.571917: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
120807           <...>-27549 (-----) [004] d..2 82317.571918: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
120808     rcu_preempt-7     (    7) [005] d..3 82317.571922: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
120809     rcu_preempt-7     (    7) [005] d..2 82317.571923: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
120810     migration/3-33    (   33) [003] d.h4 82317.571928: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
120811          <idle>-0     (-----) [002] .n.1 82317.571932: cpu_idle: state=4294967295 cpu_id=2
120812          <idle>-0     (-----) [002] d..2 82317.571948: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
120813     kworker/0:1-25262 (25262) [000] d..4 82317.571949: sched_wakeup: comm=Binder:27541_1 pid=27548 prio=120 target_cpu=000
120814           <...>-27549 (-----) [004] d..2 82317.571954: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=D|K ==> next_comm=main next_pid=27541 next_prio=120
120815     rcu_preempt-7     (    7) [005] d..3 82317.571956: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=005
120816           <...>-27541 (-----) [004] d..1 82317.571957: sched_waking: comm=Binder:27541_2 pid=27549 prio=120 target_cpu=004
120817     migration/3-33    (   33) [003] d..2 82317.571958: 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
120818          <idle>-0     (-----) [003] d..1 82317.571974: cpu_idle: state=0 cpu_id=3
120819         sugov:0-576   (  576) [002] .... 82317.571978: clk_set_rate: pwrcl_clk 1612800000
120820     kworker/0:1-25262 (25262) [000] d..2 82317.571980: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
120821     rcu_preempt-7     (    7) [005] d..2 82317.571981: 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
120822         rcuop/2-29    (   29) [005] d..2 82317.571983: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
120823          <idle>-0     (-----) [003] d.h2 82317.572006: sched_blocked_reason: pid=27549 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120824          <idle>-0     (-----) [003] dnh2 82317.572008: sched_wakeup: comm=Binder:27541_2 pid=27549 prio=120 target_cpu=003
120825           <...>-27541 (-----) [004] d..2 82317.572008: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
120826           <...>-27541 (-----) [004] d..3 82317.572014: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
120827         rcuop/2-29    (   29) [005] d..2 82317.572015: 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
120828         rcuop/6-61    (   61) [005] d..2 82317.572017: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=000
120829          <idle>-0     (-----) [003] dnh2 82317.572017: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
120830          <idle>-0     (-----) [003] .n.1 82317.572022: cpu_idle: state=4294967295 cpu_id=3
120831          <idle>-0     (-----) [003] d..2 82317.572029: 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
120832<...>-142 ( 142) [001] d..2 82317.572032: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
120833         rcuop/6-61    (   61) [005] d..2 82317.572035: 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
120834          <idle>-0     (-----) [005] d..1 82317.572039: cpu_idle: state=0 cpu_id=5
120835         rcuop/3-37    (   37) [003] d..2 82317.572039: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=Binder:27541_2 next_pid=27549 next_prio=120
120836<...>-142 ( 142) [001] dn.3 82317.572044: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
120837         sugov:0-576   (  576) [002] d.h2 82317.572049: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=002
120838         sugov:0-576   (  576) [002] .... 82317.572057: clk_set_rate: cpu3_pwrcl_clk 1766400000
120839         sugov:0-576   (  576) [002] .... 82317.572067: clk_set_rate: cpu2_pwrcl_clk 1766400000
120840            adbd-24055 (  960) [000] d..2 82317.572067: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=Binder:27541_1 next_pid=27548 next_prio=120
120841           <...>-27541 (-----) [004] d..2 82317.572069: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
120842         sugov:0-576   (  576) [002] .... 82317.572072: clk_set_rate: cpu1_pwrcl_clk 1766400000
120843           <...>-27549 (-----) [003] d.h2 82317.572079: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
120844<...>-142 ( 142) [001] d..2 82317.572081: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
120845         sugov:0-576   (  576) [002] d.h1 82317.572081: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=002
120846         sugov:0-576   (  576) [002] .... 82317.572084: clk_set_rate: cpu0_pwrcl_clk 1612800000
120847     kworker/1:1-25249 (25249) [001] d..3 82317.572089: sched_waking: comm=lmkd pid=821 prio=98 target_cpu=000
120848     kworker/1:1-25249 (25249) [001] d..4 82317.572108: sched_wakeup: comm=lmkd pid=821 prio=98 target_cpu=003
120849           <...>-27549 (-----) [003] dnh3 82317.572119: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
120850     kworker/1:1-25249 (25249) [001] d..2 82317.572124: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
120851<...>-11815 ( 8943) [006] d..3 82317.572129: sched_waking: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
120852           <...>-27549 (-----) [003] d..2 82317.572131: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=R+ ==> next_comm=lmkd next_pid=821 next_prio=98
120853           <...>-27541 (-----) [004] d..2 82317.572140: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D|K ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
120854           <...>-27548 (-----) [000] d..2 82317.572150: sched_switch: prev_comm=Binder:27541_1 prev_pid=27548 prev_prio=120 prev_state=D|K ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120855     kworker/4:1-25432 (25432) [004] d..2 82317.572150: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
120856          <idle>-0     (-----) [004] d..1 82317.572156: cpu_idle: state=0 cpu_id=4
120857 TaskSnapshotPer-9077  ( 8943) [000] dnh3 82317.572160: sched_wakeup: comm=InputDispatcher pid=9039 prio=112 target_cpu=000
120858 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.572165: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R+ ==> next_comm=InputDispatcher next_pid=9039 next_prio=112
120859<...>-142 ( 142) [001] d..2 82317.572167: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
120860<...>-11815 ( 8943) [006] d..3 82317.572171: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
120861         sugov:0-576   (  576) [002] .... 82317.572194: cpu_frequency: state=1612800 cpu_id=0
120862<...>-11815 ( 8943) [006] d..4 82317.572201: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
120863<...>-9039 ( 8943) [000] d..2 82317.572201: sched_switch: prev_comm=InputDispatcher prev_pid=9039 prev_prio=112 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
120864<...>-9380 ( 9105) [001] .... 82317.572202: binder_transaction_received: transaction=1572627
120865          <idle>-0     (-----) [004] .n.1 82317.572205: cpu_idle: state=4294967295 cpu_id=4
120866          <idle>-0     (-----) [004] d..2 82317.572209: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
120867         sugov:0-576   (  576) [002] .... 82317.572212: cpu_frequency: state=1612800 cpu_id=1
120868         sugov:0-576   (  576) [002] .... 82317.572214: cpu_frequency: state=1612800 cpu_id=2
120869         sugov:0-576   (  576) [002] .... 82317.572216: cpu_frequency: state=1612800 cpu_id=3
120870         sugov:0-576   (  576) [002] d..2 82317.572230: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/7 next_pid=69 next_prio=120
120871<...>-69 ( 69) [002] d..2 82317.572256: sched_switch: prev_comm=rcuop/7 prev_pid=69 prev_prio=120 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
120872<...>-8969 ( 8943) [004] d..2 82317.572266: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
120873          <idle>-0     (-----) [004] d..1 82317.572271: cpu_idle: state=0 cpu_id=4
120874<...>-581 ( 571) [002] d..2 82317.572328: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120875          <idle>-0     (-----) [002] d..1 82317.572336: cpu_idle: state=0 cpu_id=2
120876<...>-9380 ( 9105) [001] d..3 82317.572338: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
120877<...>-9380 ( 9105) [001] d..4 82317.572359: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
120878          <idle>-0     (-----) [002] .n.1 82317.572364: cpu_idle: state=4294967295 cpu_id=2
120879          <idle>-0     (-----) [002] d..2 82317.572371: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
120880<...>-821 ( 821) [003] d..2 82317.572393: sched_switch: prev_comm=lmkd prev_pid=821 prev_prio=98 prev_state=S ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
120881   kworker/u17:1-570   (  570) [003] d..2 82317.572415: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
120882<...>-9380 ( 9105) [001] d..2 82317.572423: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
120883   kworker/u17:1-570   (  570) [003] d..3 82317.572426: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
120884          <idle>-0     (-----) [001] d..1 82317.572442: cpu_idle: state=0 cpu_id=1
120885   kworker/u17:1-570   (  570) [003] d..2 82317.572443: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
120886     kworker/3:1-25210 (25210) [003] d..2 82317.572453: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
120887<...>-9105 ( 9105) [002] d..2 82317.572477: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120888     kworker/3:1-25210 (25210) [003] d..3 82317.572484: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
120889          <idle>-0     (-----) [002] d..2 82317.572490: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
120890     kworker/3:1-25210 (25210) [003] d..2 82317.572503: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=Binder:27541_2 next_pid=27549 next_prio=120
120891           <...>-27549 (-----) [003] d..1 82317.572513: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
120892          <idle>-0     (-----) [004] d.h2 82317.572526: sched_blocked_reason: pid=27541 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120893          <idle>-0     (-----) [004] dnh2 82317.572528: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
120894          <idle>-0     (-----) [004] .n.1 82317.572530: cpu_idle: state=4294967295 cpu_id=4
120895          <idle>-0     (-----) [004] d..2 82317.572533: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
120896           <...>-27541 (-----) [004] d..1 82317.572547: sched_waking: comm=Binder:27541_1 pid=27548 prio=120 target_cpu=000
120897           <...>-27549 (-----) [003] d..2 82317.572552: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
120898            adbd-24055 (  960) [002] d..2 82317.572554: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
120899          <idle>-0     (-----) [002] d..1 82317.572562: cpu_idle: state=0 cpu_id=2
120900          <idle>-0     (-----) [003] d.h4 82317.572565: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
120901          <idle>-0     (-----) [001] d.h2 82317.572567: sched_blocked_reason: pid=27548 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120902          <idle>-0     (-----) [003] dnh5 82317.572570: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
120903          <idle>-0     (-----) [001] dnh2 82317.572570: sched_wakeup: comm=Binder:27541_1 pid=27548 prio=120 target_cpu=001
120904          <idle>-0     (-----) [001] .n.1 82317.572574: cpu_idle: state=4294967295 cpu_id=1
120905          <idle>-0     (-----) [003] d..2 82317.572579: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
120906          <idle>-0     (-----) [001] d..2 82317.572582: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27541_1 next_pid=27548 next_prio=120
120907   kworker/u17:1-570   (  570) [003] d..2 82317.572587: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
120908   kworker/u17:1-570   (  570) [003] d..3 82317.572593: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
120909 TaskSnapshotPer-9077  ( 8943) [000] d.h4 82317.572597: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
120910           <...>-27548 (-----) [001] d..1 82317.572599: sched_waking: comm=Binder:27541_2 pid=27549 prio=120 target_cpu=003
120911   kworker/u17:1-570   (  570) [003] d..2 82317.572607: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
120912           <...>-27548 (-----) [001] d..2 82317.572608: sched_blocked_reason: pid=27549 iowait=0 caller=do_exit+0x908/0x11bc
120913     kworker/3:1-25210 (25210) [003] d..2 82317.572613: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
120914           <...>-27548 (-----) [001] d..2 82317.572613: sched_wakeup: comm=Binder:27541_2 pid=27549 prio=120 target_cpu=002
120915          <idle>-0     (-----) [002] .n.1 82317.572619: cpu_idle: state=4294967295 cpu_id=2
120916 TaskSnapshotPer-9077  ( 8943) [000] d.h5 82317.572624: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
120917          <idle>-0     (-----) [002] d..2 82317.572629: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
120918     kworker/3:1-25210 (25210) [003] d..3 82317.572633: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
120919 TaskSnapshotPer-9077  ( 8943) [000] d.h4 82317.572636: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
120920     kworker/3:1-25210 (25210) [003] d..2 82317.572649: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
120921  crtc_event:111-322   (  322) [002] d..2 82317.572655: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
120922 TaskSnapshotPer-9077  ( 8943) [000] d.h5 82317.572656: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
120923          <idle>-0     (-----) [003] d..2 82317.572660: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
120924            adbd-24055 (  960) [002] d..2 82317.572683: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=Binder:27541_2 next_pid=27549 next_prio=120
120925           <...>-27541 (-----) [004] d..1 82317.572726: sched_waking: comm=Binder:27541_1 pid=27548 prio=120 target_cpu=001
120926           <...>-27548 (-----) [001] d..2 82317.572732: sched_switch: prev_comm=Binder:27541_1 prev_pid=27548 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
120927          <idle>-0     (-----) [001] d..1 82317.572743: cpu_idle: state=0 cpu_id=1
120928           <...>-27549 (-----) [002] d..2 82317.572748: sched_switch: prev_comm=Binder:27541_2 prev_pid=27549 prev_prio=120 prev_state=x ==> next_comm=swapper/2 next_pid=0 next_prio=120
120929          <idle>-0     (-----) [001] d.h2 82317.572752: sched_blocked_reason: pid=27548 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120930           <...>-27541 (-----) [004] d..2 82317.572753: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
120931          <idle>-0     (-----) [001] dnh2 82317.572754: sched_wakeup: comm=Binder:27541_1 pid=27548 prio=120 target_cpu=001
120932          <idle>-0     (-----) [001] .n.1 82317.572758: cpu_idle: state=4294967295 cpu_id=1
120933          <idle>-0     (-----) [004] d..1 82317.572758: cpu_idle: state=0 cpu_id=4
120934 crtc_commit:111-321   (  321) [003] d..2 82317.572760: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
120935          <idle>-0     (-----) [002] d..1 82317.572763: cpu_idle: state=0 cpu_id=2
120936          <idle>-0     (-----) [001] d..2 82317.572765: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27541_1 next_pid=27548 next_prio=120
120937          <idle>-0     (-----) [003] d..1 82317.572768: cpu_idle: state=0 cpu_id=3
120938           <...>-27548 (-----) [001] d..1 82317.572774: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
120939          <idle>-0     (-----) [004] d.h2 82317.572788: sched_blocked_reason: pid=27541 iowait=0 caller=m_start.10990+0x23c/0x2b8
120940          <idle>-0     (-----) [004] dnh2 82317.572789: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
120941          <idle>-0     (-----) [004] .n.1 82317.572791: cpu_idle: state=4294967295 cpu_id=4
120942          <idle>-0     (-----) [004] d..2 82317.572795: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
120943           <...>-27548 (-----) [001] d..2 82317.572803: sched_switch: prev_comm=Binder:27541_1 prev_pid=27548 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
120944          <idle>-0     (-----) [001] d..1 82317.572810: cpu_idle: state=0 cpu_id=1
120945           <...>-27541 (-----) [004] d..1 82317.572816: sched_waking: comm=Binder:27541_1 pid=27548 prio=120 target_cpu=001
120946<...>-11815 ( 8943) [006] d..3 82317.572825: sched_waking: comm=ActivityManager pid=8961 prio=118 target_cpu=007
120947          <idle>-0     (-----) [001] d.h2 82317.572828: sched_blocked_reason: pid=27548 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120948          <idle>-0     (-----) [001] dnh2 82317.572831: sched_wakeup: comm=Binder:27541_1 pid=27548 prio=120 target_cpu=001
120949           <...>-27541 (-----) [004] d..2 82317.572831: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
120950          <idle>-0     (-----) [003] d.h3 82317.572832: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
120951          <idle>-0     (-----) [004] d..1 82317.572833: cpu_idle: state=0 cpu_id=4
120952          <idle>-0     (-----) [001] .n.1 82317.572834: cpu_idle: state=4294967295 cpu_id=1
120953          <idle>-0     (-----) [003] dnh4 82317.572839: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
120954          <idle>-0     (-----) [001] d..2 82317.572841: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:27541_1 next_pid=27548 next_prio=120
120955          <idle>-0     (-----) [003] .n.1 82317.572844: cpu_idle: state=4294967295 cpu_id=3
120956           <...>-27548 (-----) [001] d..1 82317.572849: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
120957<...>-11815 ( 8943) [006] d.h2 82317.572865: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
120958          <idle>-0     (-----) [003] d..2 82317.572866: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
120959          <idle>-0     (-----) [002] dnh2 82317.572867: sched_wakeup: comm=ActivityManager pid=8961 prio=118 target_cpu=002
120960          <idle>-0     (-----) [002] .n.1 82317.572871: cpu_idle: state=4294967295 cpu_id=2
120961          <idle>-0     (-----) [004] d.h2 82317.572873: sched_blocked_reason: pid=27541 iowait=0 caller=m_start.10990+0x23c/0x2b8
120962<...>-11815 ( 8943) [006] d.h3 82317.572873: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
120963   kworker/u17:1-570   (  570) [003] d..2 82317.572874: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
120964          <idle>-0     (-----) [004] dnh2 82317.572874: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
120965          <idle>-0     (-----) [004] .n.1 82317.572876: cpu_idle: state=4294967295 cpu_id=4
120966          <idle>-0     (-----) [005] .n.1 82317.572878: cpu_idle: state=4294967295 cpu_id=5
120967          <idle>-0     (-----) [002] d..2 82317.572879: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8961 next_prio=118
120968<...>-11815 ( 8943) [006] d..1 82317.572879: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=007
120969          <idle>-0     (-----) [004] d..2 82317.572879: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
120970   kworker/u17:1-570   (  570) [003] d..3 82317.572880: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
120971           <...>-27548 (-----) [001] d..2 82317.572881: sched_switch: prev_comm=Binder:27541_1 prev_pid=27548 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
120972          <idle>-0     (-----) [005] d..2 82317.572881: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
120973          <idle>-0     (-----) [001] d..1 82317.572887: cpu_idle: state=0 cpu_id=1
120974   kworker/u17:1-570   (  570) [003] d..2 82317.572893: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
120975         sugov:4-577   (  577) [005] .... 82317.572897: clk_set_rate: perfcl_clk 1920000000
120976         sugov:4-577   (  577) [005] .... 82317.572899: clk_set_rate: cpu7_perfcl_clk 2169600000
120977           <...>-27541 (-----) [004] d..1 82317.572903: sched_waking: comm=Binder:27541_1 pid=27548 prio=120 target_cpu=001
120978         sugov:4-577   (  577) [005] .... 82317.572904: clk_set_rate: cpu6_perfcl_clk 2169600000
120979     kworker/3:1-25210 (25210) [003] d..2 82317.572905: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=000
120980         sugov:4-577   (  577) [005] .... 82317.572908: clk_set_rate: cpu5_perfcl_clk 2169600000
120981         sugov:4-577   (  577) [005] .... 82317.572912: clk_set_rate: cpu4_perfcl_clk 1920000000
120982          <idle>-0     (-----) [001] dnh2 82317.572915: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=001
120983         sugov:4-577   (  577) [005] .... 82317.572917: cpu_frequency: state=1920000 cpu_id=4
120984          <idle>-0     (-----) [001] dnh2 82317.572923: sched_blocked_reason: pid=27548 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
120985         sugov:4-577   (  577) [005] .... 82317.572924: cpu_frequency: state=1920000 cpu_id=5
120986          <idle>-0     (-----) [001] dnh2 82317.572925: sched_wakeup: comm=Binder:27541_1 pid=27548 prio=120 target_cpu=001
120987         sugov:4-577   (  577) [005] .... 82317.572926: cpu_frequency: state=1920000 cpu_id=6
120988         sugov:4-577   (  577) [005] .... 82317.572927: cpu_frequency: state=1920000 cpu_id=7
120989          <idle>-0     (-----) [001] .n.1 82317.572928: cpu_idle: state=4294967295 cpu_id=1
120990           <...>-27541 (-----) [004] d..2 82317.572928: sched_switch: prev_comm=main prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
120991          <idle>-0     (-----) [004] d..1 82317.572931: cpu_idle: state=0 cpu_id=4
120992     kworker/3:1-25210 (25210) [003] d..3 82317.572933: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
120993          <idle>-0     (-----) [001] d..2 82317.572934: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
120994         sugov:4-577   (  577) [005] d..2 82317.572937: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
120995          <idle>-0     (-----) [005] d..1 82317.572941: cpu_idle: state=0 cpu_id=5
120996     kworker/3:1-25210 (25210) [003] d..2 82317.572943: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
120997<...>-8962 ( 8943) [001] d..2 82317.572962: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=Binder:27541_1 next_pid=27548 next_prio=120
120998            adbd-24054 (  960) [003] d..2 82317.572973: sched_waking: comm=adbd pid=960 prio=120 target_cpu=004
120999           <...>-27548 (-----) [001] d..1 82317.572981: sched_waking: comm=main pid=27541 prio=120 target_cpu=004
121000            adbd-24054 (  960) [003] d..3 82317.572990: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
121001          <idle>-0     (-----) [004] d.h2 82317.573018: sched_blocked_reason: pid=27541 iowait=0 caller=m_start.10990+0x23c/0x2b8
121002          <idle>-0     (-----) [004] dnh2 82317.573019: sched_wakeup: comm=main pid=27541 prio=120 target_cpu=004
121003          <idle>-0     (-----) [004] .n.1 82317.573021: cpu_idle: state=4294967295 cpu_id=4
121004          <idle>-0     (-----) [004] d..2 82317.573024: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=main next_pid=27541 next_prio=120
121005<...>-11815 ( 8943) [006] .... 82317.573025: binder_transaction: transaction=1572631 dest_node=0 dest_proc=27550 dest_thread=27566 reply=1 flags=0x0 code=0x0
121006<...>-11815 ( 8943) [006] .... 82317.573028: binder_transaction_alloc_buf: transaction=1572631 data_size=4 offsets_size=0
121007<...>-11815 ( 8943) [006] .... 82317.573033: binder_set_priority: proc=8943 thread=11815 old=112 => new=120 desired=120
121008<...>-11815 ( 8943) [006] d..2 82317.573066: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
121009           <...>-27548 (-----) [001] d..2 82317.573067: sched_switch: prev_comm=Binder:27541_1 prev_pid=27548 prev_prio=120 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
121010            adbd-24054 (  960) [003] d..2 82317.573070: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
121011          <idle>-0     (-----) [006] d..1 82317.573079: cpu_idle: state=0 cpu_id=6
121012          <idle>-0     (-----) [001] d..1 82317.573082: cpu_idle: state=0 cpu_id=1
121013<...>-8961 ( 8943) [002] d..1 82317.573163: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
121014 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.573173: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
121015<...>-8961 ( 8943) [002] d..2 82317.573182: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
121016<...>-8961 ( 8943) [002] d..2 82317.573188: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
121017          <idle>-0     (-----) [000] d..2 82317.573197: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
121018            adbd-960   (  960) [003] d..2 82317.573229: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121019          <idle>-0     (-----) [003] d..1 82317.573237: cpu_idle: state=0 cpu_id=3
121020          <idle>-0     (-----) [006] ...1 82317.573274: cpu_idle: state=4294967295 cpu_id=6
121021          <idle>-0     (-----) [006] d..1 82317.573276: cpu_idle: state=0 cpu_id=6
121022           <...>-27541 (-----) [004] d.h2 82317.573719: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121023<...>-8961 ( 8943) [002] d.h1 82317.573738: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121024<...>-8961 ( 8943) [002] d..1 82317.573970: sched_waking: comm=android.ui pid=8962 prio=118 target_cpu=001
121025<...>-8961 ( 8943) [002] d..2 82317.573984: sched_wakeup: comm=android.ui pid=8962 prio=118 target_cpu=001
121026          <idle>-0     (-----) [001] .n.1 82317.573989: cpu_idle: state=4294967295 cpu_id=1
121027          <idle>-0     (-----) [001] d..2 82317.573996: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.ui next_pid=8962 next_prio=118
121028<...>-8961 ( 8943) [002] d..2 82317.574026: sched_switch: prev_comm=ActivityManager prev_pid=8961 prev_prio=118 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121029  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574052: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
121030  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574065: clk_disable: gcc_ufs_phy_phy_aux_clk
121031  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574073: clk_disable: gcc_ufs_phy_phy_aux_clk_src
121032  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574081: clk_disable: gcc_ufs_mem_clkref_clk
121033  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574094: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
121034  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574097: clk_disable: gcc_ufs_phy_axi_clk
121035  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574104: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
121036  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574107: clk_disable: gcc_aggre_ufs_phy_axi_clk
121037  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574112: clk_disable: gcc_ufs_phy_axi_clk_src
121038  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574116: clk_disable: gcc_ufs_phy_ahb_clk
121039  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574122: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
121040  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574125: clk_disable: gcc_ufs_phy_unipro_core_clk
121041  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574130: clk_disable: gcc_ufs_phy_unipro_core_clk_src
121042  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574135: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
121043  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574138: clk_disable: gcc_ufs_phy_ice_core_clk
121044  kworker/u16:15-1311  ( 1311) [002] d..1 82317.574142: clk_disable: gcc_ufs_phy_ice_core_clk_src
121045<...>-8962 ( 8943) [001] .... 82317.574162: binder_transaction: transaction=1572632 dest_node=399486 dest_proc=884 dest_thread=0 reply=0 flags=0x11 code=0x3
121046<...>-8962 ( 8943) [001] .... 82317.574168: binder_transaction_alloc_buf: transaction=1572632 data_size=68 offsets_size=0
121047<...>-8962 ( 8943) [001] d..4 82317.574175: sched_waking: comm=cameraserver pid=884 prio=120 target_cpu=004
121048          <idle>-0     (-----) [005] dnh2 82317.574201: sched_wakeup: comm=cameraserver pid=884 prio=120 target_cpu=005
121049          <idle>-0     (-----) [005] .n.1 82317.574203: cpu_idle: state=4294967295 cpu_id=5
121050          <idle>-0     (-----) [005] d..2 82317.574207: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cameraserver next_pid=884 next_prio=120
121051<...>-884 ( 884) [005] .... 82317.574219: binder_transaction_received: transaction=1572632
121052<...>-8962 ( 8943) [001] .... 82317.574276: binder_transaction: transaction=1572633 dest_node=399486 dest_proc=884 dest_thread=0 reply=0 flags=0x11 code=0x1
121053<...>-8962 ( 8943) [001] .... 82317.574278: binder_transaction_alloc_buf: transaction=1572633 data_size=68 offsets_size=0
121054<...>-884 ( 884) [005] d..4 82317.574291: sched_waking: comm=Binder:884_3 pid=4628 prio=120 target_cpu=004
121055<...>-884 ( 884) [005] d..5 82317.574305: sched_wakeup: comm=Binder:884_3 pid=4628 prio=120 target_cpu=006
121056<...>-884 ( 884) [005] .... 82317.574309: binder_transaction_received: transaction=1572633
121057          <idle>-0     (-----) [006] .n.1 82317.574310: cpu_idle: state=4294967295 cpu_id=6
121058          <idle>-0     (-----) [006] d..2 82317.574315: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:884_3 next_pid=4628 next_prio=120
121059<...>-8962 ( 8943) [001] d..3 82317.574317: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=000
121060<...>-884 ( 884) [005] d..2 82317.574326: sched_switch: prev_comm=cameraserver prev_pid=884 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
121061<...>-4628 ( 884) [006] d..2 82317.574331: sched_switch: prev_comm=Binder:884_3 prev_pid=4628 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
121062          <idle>-0     (-----) [005] d..1 82317.574332: cpu_idle: state=0 cpu_id=5
121063          <idle>-0     (-----) [006] d..1 82317.574336: cpu_idle: state=0 cpu_id=6
121064<...>-8962 ( 8943) [001] d..4 82317.574340: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=003
121065          <idle>-0     (-----) [003] .n.1 82317.574347: cpu_idle: state=4294967295 cpu_id=3
121066          <idle>-0     (-----) [003] d..2 82317.574354: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=8967 next_prio=120
121067<...>-8962 ( 8943) [001] .... 82317.574389: binder_transaction: transaction=1572634 dest_node=402011 dest_proc=9083 dest_thread=0 reply=0 flags=0x11 code=0x1
121068<...>-8962 ( 8943) [001] .... 82317.574392: binder_transaction_alloc_buf: transaction=1572634 data_size=68 offsets_size=0
121069<...>-8962 ( 8943) [001] d..4 82317.574396: sched_waking: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=002
121070<...>-8962 ( 8943) [001] d..5 82317.574426: sched_wakeup: comm=Binder:9083_6 pid=9638 prio=120 target_cpu=003
121071  kworker/u16:15-1311  ( 1311) [002] d..2 82317.574427: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
121072          <idle>-0     (-----) [002] d..1 82317.574442: cpu_idle: state=0 cpu_id=2
121073<...>-8962 ( 8943) [001] d.s3 82317.574460: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121074 TaskSnapshotPer-9077  ( 8943) [000] d..1 82317.574466: sched_waking: comm=android.fg pid=8967 prio=120 target_cpu=003
121075<...>-8962 ( 8943) [001] d.s4 82317.574466: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
121076<...>-8962 ( 8943) [001] d.s4 82317.574472: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121077<...>-8967 ( 8943) [003] d..2 82317.574474: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=D|K ==> next_comm=Binder:9083_6 next_pid=9638 next_prio=120
121078          <idle>-0     (-----) [002] .n.1 82317.574478: cpu_idle: state=4294967295 cpu_id=2
121079<...>-9638 ( 9083) [003] .... 82317.574483: binder_transaction_received: transaction=1572634
121080          <idle>-0     (-----) [002] d..2 82317.574486: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121081          <idle>-0     (-----) [006] d.h2 82317.574505: sched_blocked_reason: pid=8967 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
121082          <idle>-0     (-----) [006] dnh2 82317.574506: sched_wakeup: comm=android.fg pid=8967 prio=120 target_cpu=006
121083<...>-8962 ( 8943) [001] .... 82317.574522: binder_transaction: transaction=1572635 dest_node=412802 dest_proc=9083 dest_thread=0 reply=0 flags=0x11 code=0x1
121084<...>-8962 ( 8943) [001] .... 82317.574525: binder_transaction_alloc_buf: transaction=1572635 data_size=68 offsets_size=0
121085<...>-8962 ( 8943) [001] d..4 82317.574528: sched_waking: comm=Binder:9083_3 pid=9130 prio=120 target_cpu=001
121086          <idle>-0     (-----) [006] .n.1 82317.574542: cpu_idle: state=4294967295 cpu_id=6
121087  kworker/u16:15-1311  ( 1311) [002] d..2 82317.574544: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121088 TaskSnapshotPer-9077  ( 8943) [000] d.h3 82317.574544: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
121089          <idle>-0     (-----) [006] d..2 82317.574545: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.fg next_pid=8967 next_prio=120
121090          <idle>-0     (-----) [002] d..1 82317.574549: cpu_idle: state=0 cpu_id=2
121091 TaskSnapshotPer-9077  ( 8943) [000] d.h4 82317.574562: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
121092          <idle>-0     (-----) [002] .n.1 82317.574566: cpu_idle: state=4294967295 cpu_id=2
121093<...>-8962 ( 8943) [001] d..5 82317.574571: sched_wakeup: comm=Binder:9083_3 pid=9130 prio=120 target_cpu=002
121094          <idle>-0     (-----) [002] d..2 82317.574575: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
121095         sugov:0-576   (  576) [002] .... 82317.574598: clk_set_rate: pwrcl_clk 1766400000
121096<...>-8962 ( 8943) [001] d..3 82317.574610: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=001
121097<...>-8967 ( 8943) [006] d..2 82317.574631: sched_switch: prev_comm=android.fg prev_pid=8967 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
121098          <idle>-0     (-----) [006] d..1 82317.574638: cpu_idle: state=0 cpu_id=6
121099         sugov:0-576   (  576) [002] d..2 82317.574656: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=Binder:9083_3 next_pid=9130 next_prio=120
121100          <idle>-0     (-----) [006] dnh2 82317.574658: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
121101          <idle>-0     (-----) [006] .n.1 82317.574661: cpu_idle: state=4294967295 cpu_id=6
121102          <idle>-0     (-----) [006] d..2 82317.574665: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
121103<...>-9130 ( 9083) [002] .... 82317.574666: binder_transaction_received: transaction=1572635
121104<...>-8962 ( 8943) [001] d.s3 82317.574704: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
121105<...>-9047 ( 8943) [006] d..2 82317.574708: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
121106          <idle>-0     (-----) [006] d..1 82317.574712: cpu_idle: state=0 cpu_id=6
121107<...>-8962 ( 8943) [001] d.s4 82317.574722: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
121108<...>-8962 ( 8943) [001] d..1 82317.574731: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
121109<...>-9638 ( 9083) [003] d..2 82317.574733: sched_switch: prev_comm=Binder:9083_6 prev_pid=9638 prev_prio=120 prev_state=S ==> next_comm=sugov:0 next_pid=576 next_prio=49
121110          <idle>-0     (-----) [006] dnh2 82317.574744: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
121111          <idle>-0     (-----) [006] .n.1 82317.574746: cpu_idle: state=4294967295 cpu_id=6
121112         sugov:0-576   (  576) [003] .... 82317.574747: clk_set_rate: cpu3_pwrcl_clk 1612800000
121113          <idle>-0     (-----) [006] d..2 82317.574750: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
121114         sugov:0-576   (  576) [003] .... 82317.574754: clk_set_rate: cpu2_pwrcl_clk 1612800000
121115<...>-9130 ( 9083) [002] d..3 82317.574755: sched_waking: comm=droid.bluetooth pid=9083 prio=120 target_cpu=000
121116         sugov:0-576   (  576) [003] .... 82317.574761: clk_set_rate: cpu1_pwrcl_clk 1612800000
121117<...>-8962 ( 8943) [001] d..3 82317.574765: sched_waking: comm=android.bg pid=8960 prio=120 target_cpu=000
121118         sugov:0-576   (  576) [003] .... 82317.574767: clk_set_rate: cpu0_pwrcl_clk 1766400000
121119         sugov:0-576   (  576) [003] .... 82317.574774: cpu_frequency: state=1766400 cpu_id=0
121120<...>-9130 ( 9083) [002] d..4 82317.574781: sched_wakeup: comm=droid.bluetooth pid=9083 prio=120 target_cpu=003
121121         sugov:0-576   (  576) [003] .... 82317.574786: cpu_frequency: state=1766400 cpu_id=1
121122<...>-8962 ( 8943) [001] d..4 82317.574788: sched_wakeup: comm=android.bg pid=8960 prio=120 target_cpu=001
121123         sugov:0-576   (  576) [003] .... 82317.574789: cpu_frequency: state=1766400 cpu_id=2
121124         sugov:0-576   (  576) [003] .... 82317.574792: cpu_frequency: state=1766400 cpu_id=3
121125         sugov:0-576   (  576) [003] d..2 82317.574802: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=droid.bluetooth next_pid=9083 next_prio=120
121126<...>-9047 ( 8943) [006] d..1 82317.574830: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
121127<...>-9130 ( 9083) [002] d..2 82317.574841: sched_switch: prev_comm=Binder:9083_3 prev_pid=9130 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121128          <idle>-0     (-----) [002] d..1 82317.574852: cpu_idle: state=0 cpu_id=2
121129 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.574853: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
121130<...>-9083 ( 9083) [003] d..2 82317.574871: sched_switch: prev_comm=droid.bluetooth prev_pid=9083 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121131          <idle>-0     (-----) [000] d..1 82317.574872: cpu_idle: state=0 cpu_id=0
121132          <idle>-0     (-----) [003] d..1 82317.574879: cpu_idle: state=0 cpu_id=3
121133          <idle>-0     (-----) [000] d.h2 82317.574881: sched_blocked_reason: pid=9077 iowait=0 caller=do_page_fault+0x4e0/0x594
121134          <idle>-0     (-----) [000] dnh2 82317.574883: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=000
121135          <idle>-0     (-----) [000] .n.1 82317.574888: cpu_idle: state=4294967295 cpu_id=0
121136          <idle>-0     (-----) [000] d..2 82317.574901: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
121137<...>-8962 ( 8943) [001] d..3 82317.574932: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=000
121138<...>-8962 ( 8943) [001] d..4 82317.574950: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
121139          <idle>-0     (-----) [002] .n.1 82317.574956: cpu_idle: state=4294967295 cpu_id=2
121140          <idle>-0     (-----) [002] d..2 82317.574963: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
121141 TaskSnapshotPer-9077  ( 8943) [000] d.h6 82317.574985: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
121142 TaskSnapshotPer-9077  ( 8943) [000] d.h7 82317.574997: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
121143          <idle>-0     (-----) [003] .n.1 82317.575003: cpu_idle: state=4294967295 cpu_id=3
121144          <idle>-0     (-----) [003] d..2 82317.575008: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
121145<...>-8962 ( 8943) [001] .... 82317.575070: binder_transaction: transaction=1572636 dest_node=417419 dest_proc=9748 dest_thread=0 reply=0 flags=0x11 code=0x2
121146<...>-8962 ( 8943) [001] .... 82317.575073: binder_transaction_alloc_buf: transaction=1572636 data_size=76 offsets_size=0
121147<...>-8962 ( 8943) [001] d..4 82317.575077: sched_waking: comm=Binder:9748_4 pid=10178 prio=120 target_cpu=003
121148<...>-8962 ( 8943) [001] d..5 82317.575091: sched_wakeup: comm=Binder:9748_4 pid=10178 prio=120 target_cpu=003
121149 crtc_commit:111-321   (  321) [003] d..2 82317.575097: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=Binder:9748_4 next_pid=10178 next_prio=120
121150<...>-9047 ( 8943) [006] d.s5 82317.575129: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121151<...>-10178 ( 9748) [003] d.s4 82317.575129: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
121152<...>-10178 ( 9748) [003] dns5 82317.575129: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
121153<...>-10178 ( 9748) [003] dnH4 82317.575129: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
121154<...>-10178 ( 9748) [003] .n.. 82317.575129: binder_transaction_received: transaction=1572636
121155           <...>-27558 (-----) [007] d..2 82317.575134: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=R+ ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
121156<...>-10178 ( 9748) [003] d..2 82317.575165: sched_switch: prev_comm=Binder:9748_4 prev_pid=10178 prev_prio=120 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
121157  crtc_event:111-322   (  322) [003] d..2 82317.575179: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=Binder:9748_4 next_pid=10178 next_prio=120
121158   system_server-8943  ( 8943) [002] d..2 82317.575188: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121159          <idle>-0     (-----) [002] d..1 82317.575196: cpu_idle: state=0 cpu_id=2
121160<...>-8962 ( 8943) [001] d..3 82317.575198: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
121161<...>-8962 ( 8943) [001] d..4 82317.575209: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
121162          <idle>-0     (-----) [002] .n.1 82317.575214: cpu_idle: state=4294967295 cpu_id=2
121163          <idle>-0     (-----) [002] d..2 82317.575220: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
121164<...>-8962 ( 8943) [001] d..2 82317.575231: sched_switch: prev_comm=android.ui prev_pid=8962 prev_prio=118 prev_state=S ==> next_comm=android.bg next_pid=8960 next_prio=120
121165<...>-9047 ( 8943) [006] d..2 82317.575261: sched_waking: comm=netd pid=8873 prio=120 target_cpu=000
121166 TaskSnapshotPer-9077  ( 8943) [000] d.h4 82317.575263: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
121167<...>-9047 ( 8943) [006] d..3 82317.575274: sched_wakeup: comm=netd pid=8873 prio=120 target_cpu=006
121168 TaskSnapshotPer-9077  ( 8943) [000] d.h5 82317.575279: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
121169   system_server-8943  ( 8943) [002] d..2 82317.575302: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=R+ ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
121170<...>-9047 ( 8943) [006] d..2 82317.575317: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=netd next_pid=8873 next_prio=120
121171  crtc_event:111-322   (  322) [002] d..2 82317.575322: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=system_server next_pid=8943 next_prio=118
121172   system_server-8943  ( 8943) [002] .... 82317.575326: binder_transaction: transaction=1572637 dest_node=406806 dest_proc=9105 dest_thread=0 reply=0 flags=0x11 code=0xa
121173   system_server-8943  ( 8943) [002] .... 82317.575332: binder_transaction_alloc_buf: transaction=1572637 data_size=96 offsets_size=0
121174   system_server-8943  ( 8943) [002] d..4 82317.575336: sched_waking: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=001
121175   system_server-8943  ( 8943) [002] d..5 82317.575360: sched_wakeup: comm=Binder:9105_4 pid=9380 prio=120 target_cpu=001
121176<...>-8873 ( 8857) [006] d..2 82317.575373: sched_waking: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
121177<...>-8873 ( 8857) [006] d..3 82317.575378: sched_wakeup: comm=tworkPolicy.uid pid=9047 prio=118 target_cpu=006
121178<...>-8960 ( 8943) [001] d..2 82317.575379: sched_switch: prev_comm=android.bg prev_pid=8960 prev_prio=120 prev_state=S ==> next_comm=Binder:9105_4 next_pid=9380 next_prio=120
121179<...>-9380 ( 9105) [001] .... 82317.575387: binder_transaction_received: transaction=1572637
121180<...>-10178 ( 9748) [003] d..2 82317.575394: sched_switch: prev_comm=Binder:9748_4 prev_pid=10178 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121181   system_server-8943  ( 8943) [002] d..2 82317.575400: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121182          <idle>-0     (-----) [002] d..1 82317.575407: cpu_idle: state=0 cpu_id=2
121183<...>-8873 ( 8857) [006] d..2 82317.575447: sched_switch: prev_comm=netd prev_pid=8873 prev_prio=120 prev_state=S ==> next_comm=tworkPolicy.uid next_pid=9047 next_prio=118
121184<...>-9047 ( 8943) [006] d..2 82317.575494: sched_switch: prev_comm=tworkPolicy.uid prev_pid=9047 prev_prio=118 prev_state=S ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
121185<...>-9380 ( 9105) [001] d..3 82317.575504: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
121186<...>-9380 ( 9105) [001] d..4 82317.575519: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
121187          <idle>-0     (-----) [002] .n.1 82317.575524: cpu_idle: state=4294967295 cpu_id=2
121188          <idle>-0     (-----) [002] d..2 82317.575531: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
121189<...>-9380 ( 9105) [001] d..2 82317.575586: sched_switch: prev_comm=Binder:9105_4 prev_pid=9380 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121190          <idle>-0     (-----) [001] d..1 82317.575599: cpu_idle: state=0 cpu_id=1
121191<...>-9105 ( 9105) [002] d..2 82317.575638: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121192          <idle>-0     (-----) [002] d..1 82317.575645: cpu_idle: state=0 cpu_id=2
121193  kworker/u16:15-1311  ( 1311) [003] d..2 82317.575705: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
121194          <idle>-0     (-----) [003] d..1 82317.575716: cpu_idle: state=0 cpu_id=3
121195          <idle>-0     (-----) [001] d.s3 82317.575736: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
121196          <idle>-0     (-----) [001] d.s4 82317.575743: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
121197          <idle>-0     (-----) [001] d.s4 82317.575749: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
121198          <idle>-0     (-----) [003] .n.1 82317.575754: cpu_idle: state=4294967295 cpu_id=3
121199          <idle>-0     (-----) [001] ...1 82317.575755: cpu_idle: state=4294967295 cpu_id=1
121200          <idle>-0     (-----) [001] d..1 82317.575758: cpu_idle: state=0 cpu_id=1
121201          <idle>-0     (-----) [003] d..2 82317.575761: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121202  kworker/u16:15-1311  ( 1311) [003] d..2 82317.575924: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
121203          <idle>-0     (-----) [003] d..1 82317.575931: cpu_idle: state=0 cpu_id=3
121204          <idle>-0     (-----) [001] d.s3 82317.575952: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
121205          <idle>-0     (-----) [001] d.s4 82317.575957: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
121206          <idle>-0     (-----) [001] d.s4 82317.575962: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
121207          <idle>-0     (-----) [001] ...1 82317.575967: cpu_idle: state=4294967295 cpu_id=1
121208          <idle>-0     (-----) [003] .n.1 82317.575967: cpu_idle: state=4294967295 cpu_id=3
121209          <idle>-0     (-----) [001] d..1 82317.575970: cpu_idle: state=0 cpu_id=1
121210          <idle>-0     (-----) [003] d..2 82317.575974: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121211  kworker/u16:15-1311  ( 1311) [003] .... 82317.576020: clk_set_rate: l3_cluster0_vote_clk 1305600000
121212  kworker/u16:15-1311  ( 1311) [003] .... 82317.576025: clk_set_rate: l3_clk 1305600000
121213  kworker/u16:15-1311  ( 1311) [003] d..2 82317.576059: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121214          <idle>-0     (-----) [003] d..1 82317.576066: cpu_idle: state=0 cpu_id=3
121215           <...>-27541 (-----) [004] d..1 82317.576393: sched_waking: comm=HeapTaskDaemon pid=27547 prio=120 target_cpu=006
121216          <idle>-0     (-----) [001] dnh2 82317.576448: sched_wakeup: comm=HeapTaskDaemon pid=27547 prio=120 target_cpu=001
121217          <idle>-0     (-----) [001] .n.1 82317.576452: cpu_idle: state=4294967295 cpu_id=1
121218          <idle>-0     (-----) [001] d..2 82317.576460: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=27547 next_prio=120
121219           <...>-27541 (-----) [004] d..2 82317.576472: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
121220          <idle>-0     (-----) [004] d..1 82317.576483: cpu_idle: state=0 cpu_id=4
121221           <...>-27547 (-----) [001] d..1 82317.576514: sched_waking: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121222          <idle>-0     (-----) [004] dnh2 82317.576533: sched_wakeup: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121223          <idle>-0     (-----) [004] .n.1 82317.576537: cpu_idle: state=4294967295 cpu_id=4
121224          <idle>-0     (-----) [004] d..2 82317.576542: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121225           <...>-27541 (-----) [004] d..2 82317.576558: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
121226          <idle>-0     (-----) [004] d..1 82317.576562: cpu_idle: state=0 cpu_id=4
121227           <...>-27547 (-----) [001] d..1 82317.576571: sched_waking: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121228          <idle>-0     (-----) [004] d.h2 82317.576585: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
121229          <idle>-0     (-----) [004] dnh2 82317.576586: sched_wakeup: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121230          <idle>-0     (-----) [004] .n.1 82317.576589: cpu_idle: state=4294967295 cpu_id=4
121231          <idle>-0     (-----) [004] d..2 82317.576592: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121232           <...>-27541 (-----) [004] d..1 82317.576615: sched_waking: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=007
121233           <...>-27547 (-----) [001] d..2 82317.576638: sched_switch: prev_comm=HeapTaskDaemon prev_pid=27547 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121234          <idle>-0     (-----) [001] d..1 82317.576649: cpu_idle: state=0 cpu_id=1
121235           <...>-27541 (-----) [004] d..1 82317.576659: sched_waking: comm=HeapTaskDaemon pid=27547 prio=120 target_cpu=001
121236          <idle>-0     (-----) [002] dnh2 82317.576660: sched_wakeup: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=002
121237          <idle>-0     (-----) [002] .n.1 82317.576665: cpu_idle: state=4294967295 cpu_id=2
121238          <idle>-0     (-----) [002] d..2 82317.576671: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27544 next_prio=120
121239          <idle>-0     (-----) [001] dnh2 82317.576674: sched_wakeup: comm=HeapTaskDaemon pid=27547 prio=120 target_cpu=001
121240           <...>-27541 (-----) [004] d..2 82317.576674: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
121241          <idle>-0     (-----) [001] .n.1 82317.576678: cpu_idle: state=4294967295 cpu_id=1
121242          <idle>-0     (-----) [004] d..1 82317.576678: cpu_idle: state=0 cpu_id=4
121243          <idle>-0     (-----) [001] d..2 82317.576685: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=27547 next_prio=120
121244           <...>-27544 (-----) [002] d..1 82317.576733: sched_waking: comm=HeapTaskDaemon pid=27547 prio=120 target_cpu=001
121245           <...>-27547 (-----) [001] d..2 82317.576740: sched_switch: prev_comm=HeapTaskDaemon prev_pid=27547 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
121246          <idle>-0     (-----) [001] d..1 82317.576748: cpu_idle: state=0 cpu_id=1
121247           <...>-27544 (-----) [002] d..2 82317.576748: sched_blocked_reason: pid=27547 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
121248           <...>-27544 (-----) [002] d..2 82317.576754: sched_wakeup: comm=HeapTaskDaemon pid=27547 prio=120 target_cpu=001
121249          <idle>-0     (-----) [001] .n.1 82317.576759: cpu_idle: state=4294967295 cpu_id=1
121250          <idle>-0     (-----) [001] d..2 82317.576765: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HeapTaskDaemon next_pid=27547 next_prio=120
121251           <...>-27547 (-----) [001] d..1 82317.576778: sched_waking: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=002
121252           <...>-27544 (-----) [002] d..2 82317.576790: sched_switch: prev_comm=ReferenceQueueD prev_pid=27544 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
121253           <...>-27547 (-----) [001] d..2 82317.576797: sched_blocked_reason: pid=27544 iowait=0 caller=do_page_fault+0x4e0/0x594
121254          <idle>-0     (-----) [002] d..1 82317.576797: cpu_idle: state=0 cpu_id=2
121255           <...>-27547 (-----) [001] d..2 82317.576802: sched_wakeup: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=002
121256          <idle>-0     (-----) [002] .n.1 82317.576807: cpu_idle: state=4294967295 cpu_id=2
121257          <idle>-0     (-----) [002] d..2 82317.576813: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27544 next_prio=120
121258           <...>-27544 (-----) [002] d..2 82317.576853: sched_switch: prev_comm=ReferenceQueueD prev_pid=27544 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
121259           <...>-27547 (-----) [001] d..1 82317.576856: sched_waking: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=002
121260          <idle>-0     (-----) [002] d..1 82317.576858: cpu_idle: state=0 cpu_id=2
121261           <...>-27547 (-----) [001] d..2 82317.576862: sched_blocked_reason: pid=27544 iowait=0 caller=do_page_fault+0x4e0/0x594
121262           <...>-27547 (-----) [001] d..2 82317.576866: sched_wakeup: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=002
121263          <idle>-0     (-----) [002] .n.1 82317.576871: cpu_idle: state=4294967295 cpu_id=2
121264          <idle>-0     (-----) [002] d..2 82317.576877: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27544 next_prio=120
121265          <idle>-0     (-----) [004] ...1 82317.576878: cpu_idle: state=4294967295 cpu_id=4
121266          <idle>-0     (-----) [004] d..1 82317.576880: cpu_idle: state=0 cpu_id=4
121267           <...>-27547 (-----) [001] d..2 82317.576955: sched_switch: prev_comm=HeapTaskDaemon prev_pid=27547 prev_prio=120 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
121268          <idle>-0     (-----) [001] d..1 82317.576971: cpu_idle: state=0 cpu_id=1
121269           <...>-27544 (-----) [002] d..1 82317.577035: sched_waking: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121270          <idle>-0     (-----) [004] dnh2 82317.577049: sched_wakeup: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121271          <idle>-0     (-----) [004] .n.1 82317.577051: cpu_idle: state=4294967295 cpu_id=4
121272          <idle>-0     (-----) [004] d..2 82317.577055: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121273           <...>-27541 (-----) [004] d..2 82317.577065: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
121274          <idle>-0     (-----) [004] d..1 82317.577068: cpu_idle: state=0 cpu_id=4
121275           <...>-27544 (-----) [002] d..1 82317.577069: sched_waking: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121276          <idle>-0     (-----) [004] d.h2 82317.577081: sched_blocked_reason: pid=27541 iowait=0 caller=do_page_fault+0x4e0/0x594
121277          <idle>-0     (-----) [004] dnh2 82317.577082: sched_wakeup: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121278          <idle>-0     (-----) [004] .n.1 82317.577084: cpu_idle: state=4294967295 cpu_id=4
121279          <idle>-0     (-----) [004] d..2 82317.577087: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121280           <...>-27541 (-----) [004] d..1 82317.577099: sched_waking: comm=FinalizerDaemon pid=27545 prio=120 target_cpu=000
121281           <...>-27544 (-----) [002] d..2 82317.577116: sched_switch: prev_comm=ReferenceQueueD prev_pid=27544 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121282           <...>-27541 (-----) [004] d..1 82317.577119: sched_waking: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=002
121283          <idle>-0     (-----) [002] dnh3 82317.577126: sched_wakeup: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=002
121284          <idle>-0     (-----) [002] dnh3 82317.577128: sched_wakeup: comm=FinalizerDaemon pid=27545 prio=120 target_cpu=002
121285           <...>-27541 (-----) [004] d..2 82317.577132: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
121286          <idle>-0     (-----) [002] d..2 82317.577135: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=27545 next_prio=120
121287          <idle>-0     (-----) [004] d..1 82317.577137: cpu_idle: state=0 cpu_id=4
121288           <...>-27558 (-----) [006] d..2 82317.577166: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121289           <...>-27558 (-----) [006] dn.3 82317.577177: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121290           <...>-27558 (-----) [006] d..2 82317.577182: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=R+ ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
121291<...>-560 ( 560) [006] d..2 82317.577192: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
121292           <...>-27558 (-----) [006] d..2 82317.577214: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121293           <...>-27558 (-----) [006] dn.3 82317.577217: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121294           <...>-27545 (-----) [002] d.h1 82317.577218: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
121295           <...>-27558 (-----) [006] d..2 82317.577219: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=R+ ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
121296<...>-560 ( 560) [006] d..2 82317.577223: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
121297           <...>-27545 (-----) [002] d.h2 82317.577245: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
121298          <idle>-0     (-----) [003] .n.1 82317.577250: cpu_idle: state=4294967295 cpu_id=3
121299           <...>-27558 (-----) [006] d..2 82317.577255: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121300          <idle>-0     (-----) [003] d..2 82317.577256: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
121301           <...>-27558 (-----) [006] dn.3 82317.577258: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121302           <...>-27558 (-----) [006] d..2 82317.577261: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=R+ ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
121303        DispSync-8879  ( 8858) [003] d..1 82317.577292: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
121304<...>-560 ( 560) [006] d..2 82317.577295: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=D ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
121305<...>-8955 ( 8943) [007] d.h2 82317.577295: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121306           <...>-27545 (-----) [002] d..1 82317.577297: sched_waking: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121307<...>-8955 ( 8943) [007] d.h3 82317.577302: sched_blocked_reason: pid=560 iowait=0 caller=rcu_exp_sel_wait_wake+0x79c/0x10b8
121308<...>-8955 ( 8943) [007] d.h3 82317.577307: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121309          <idle>-0     (-----) [004] dnh2 82317.577311: sched_wakeup: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121310           <...>-27558 (-----) [006] d..2 82317.577311: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=D ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
121311        DispSync-8879  ( 8858) [003] d..2 82317.577311: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
121312          <idle>-0     (-----) [004] .n.1 82317.577314: cpu_idle: state=4294967295 cpu_id=4
121313          <idle>-0     (-----) [001] .n.1 82317.577316: cpu_idle: state=4294967295 cpu_id=1
121314<...>-560 ( 560) [006] d..2 82317.577317: sched_waking: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=006
121315          <idle>-0     (-----) [004] d..2 82317.577318: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121316<...>-560 ( 560) [006] d..3 82317.577322: sched_blocked_reason: pid=27558 iowait=0 caller=_synchronize_rcu_expedited+0x464/0x69c
121317          <idle>-0     (-----) [001] d..2 82317.577323: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
121318<...>-560 ( 560) [006] d..3 82317.577323: sched_wakeup: comm=ReferenceQueueD pid=27558 prio=124 target_cpu=006
121319<...>-560 ( 560) [006] d..2 82317.577326: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
121320           <...>-27541 (-----) [004] d..1 82317.577334: sched_waking: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=005
121321        DispSync-8879  ( 8858) [003] d..2 82317.577337: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121322          <idle>-0     (-----) [003] d..1 82317.577343: cpu_idle: state=0 cpu_id=3
121323           <...>-27545 (-----) [002] d..2 82317.577348: sched_switch: prev_comm=FinalizerDaemon prev_pid=27545 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=27544 next_prio=120
121324           <...>-27544 (-----) [002] d..2 82317.577375: sched_switch: prev_comm=ReferenceQueueD prev_pid=27544 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121325           <...>-27541 (-----) [004] d..1 82317.577376: sched_waking: comm=FinalizerDaemon pid=27545 prio=120 target_cpu=002
121326          <idle>-0     (-----) [003] dnh2 82317.577376: sched_wakeup: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=003
121327          <idle>-0     (-----) [003] .n.1 82317.577380: cpu_idle: state=4294967295 cpu_id=3
121328          <idle>-0     (-----) [003] d..2 82317.577386: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=27546 next_prio=120
121329          <idle>-0     (-----) [002] dnh2 82317.577389: sched_wakeup: comm=FinalizerDaemon pid=27545 prio=120 target_cpu=002
121330           <...>-27541 (-----) [004] d..2 82317.577390: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
121331          <idle>-0     (-----) [004] d..1 82317.577394: cpu_idle: state=0 cpu_id=4
121332          <idle>-0     (-----) [002] d..2 82317.577397: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=27545 next_prio=120
121333           <...>-27558 (-----) [006] d..2 82317.577399: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121334  appEventThread-8881  ( 8858) [001] d..3 82317.577401: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
121335           <...>-27545 (-----) [002] d..1 82317.577401: sched_waking: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=002
121336           <...>-27558 (-----) [006] dn.3 82317.577402: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121337           <...>-27558 (-----) [006] d..2 82317.577404: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=R+ ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
121338<...>-560 ( 560) [006] d..5 82317.577420: sched_waking: comm=HwBinder:788_9 pid=5340 prio=120 target_cpu=005
121339           <...>-27545 (-----) [002] d..2 82317.577421: sched_wakeup: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=001
121340  appEventThread-8881  ( 8858) [001] d..4 82317.577427: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
121341<...>-560 ( 560) [006] d..6 82317.577433: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=120 target_cpu=004
121342          <idle>-0     (-----) [004] .n.1 82317.577437: cpu_idle: state=4294967295 cpu_id=4
121343  appEventThread-8881  ( 8858) [001] d..3 82317.577440: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
121344          <idle>-0     (-----) [004] d..2 82317.577442: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=120
121345<...>-560 ( 560) [006] d..2 82317.577456: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
121346          <idle>-0     (-----) [005] dnh2 82317.577472: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
121347          <idle>-0     (-----) [005] .n.1 82317.577474: cpu_idle: state=4294967295 cpu_id=5
121348          <idle>-0     (-----) [005] d..2 82317.577479: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
121349  appEventThread-8881  ( 8858) [001] d..2 82317.577483: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ReferenceQueueD next_pid=27544 next_prio=120
121350<...>-5340 ( 788) [004] d..1 82317.577494: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=000
121351           <...>-27546 (-----) [003] d..1 82317.577503: sched_waking: comm=Shutdown thread pid=27541 prio=120 target_cpu=004
121352           <...>-27545 (-----) [002] d..1 82317.577510: sched_waking: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=001
121353           <...>-27544 (-----) [001] d..2 82317.577519: sched_switch: prev_comm=ReferenceQueueD prev_pid=27544 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
121354          <idle>-0     (-----) [001] dnh3 82317.577535: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
121355           <...>-27545 (-----) [002] d..2 82317.577538: sched_blocked_reason: pid=27544 iowait=0 caller=SyS_madvise+0xc84/0xcbc
121356           <...>-27545 (-----) [002] d..2 82317.577541: sched_wakeup: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=001
121357           <...>-27546 (-----) [003] d..2 82317.577546: sched_wakeup: comm=Shutdown thread pid=27541 prio=120 target_cpu=001
121358          <idle>-0     (-----) [001] d..2 82317.577553: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
121359<...>-5340 ( 788) [004] d..2 82317.577564: sched_waking: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=000
121360           <...>-27558 (-----) [006] d..3 82317.577569: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
121361 neuralnetworks@-13088 (  788) [001] d..2 82317.577588: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=ReferenceQueueD next_pid=27544 next_prio=120
121362           <...>-27545 (-----) [002] d.h2 82317.577604: sched_wakeup: comm=cdsp_smem_glink pid=87 prio=120 target_cpu=002
121363           <...>-27544 (-----) [001] d..2 82317.577604: sched_switch: prev_comm=ReferenceQueueD prev_pid=27544 prev_prio=120 prev_state=D ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121364<...>-5340 ( 788) [004] d..2 82317.577605: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
121365           <...>-27545 (-----) [002] dnh2 82317.577607: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
121366          <idle>-0     (-----) [004] d..1 82317.577610: cpu_idle: state=0 cpu_id=4
121367           <...>-27546 (-----) [003] d..1 82317.577613: sched_waking: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=001
121368           <...>-27545 (-----) [002] d..2 82317.577613: sched_switch: prev_comm=FinalizerDaemon prev_pid=27545 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
121369           <...>-27546 (-----) [003] d..2 82317.577622: sched_blocked_reason: pid=27544 iowait=0 caller=SyS_madvise+0xc84/0xcbc
121370 kgsl_worker_thr-258   (  258) [002] d..2 82317.577627: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=cdsp_smem_glink next_pid=87 next_prio=120
121371           <...>-27546 (-----) [003] d..2 82317.577628: sched_wakeup: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=001
121372           <...>-27541 (-----) [001] d..2 82317.577636: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27544 next_prio=120
121373<...>-87 ( 87) [002] d..2 82317.577659: sched_switch: prev_comm=cdsp_smem_glink prev_pid=87 prev_prio=120 prev_state=S ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
121374           <...>-27544 (-----) [001] d..1 82317.577675: sched_waking: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=003
121375<...>-9105 ( 9105) [002] d.h3 82317.577676: sched_waking: comm=smem_native_cds pid=86 prio=120 target_cpu=002
121376 s.nexuslauncher-10023 (10023) [005] .... 82317.577693: binder_transaction: transaction=1572638 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
121377 s.nexuslauncher-10023 (10023) [005] .... 82317.577698: binder_transaction_alloc_buf: transaction=1572638 data_size=80 offsets_size=0
121378 s.nexuslauncher-10023 (10023) [005] d..4 82317.577703: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=006
121379<...>-9105 ( 9105) [002] d.h4 82317.577705: sched_wakeup: comm=smem_native_cds pid=86 prio=120 target_cpu=003
121380           <...>-27546 (-----) [003] d..2 82317.577710: sched_switch: prev_comm=FinalizerWatchd prev_pid=27546 prev_prio=120 prev_state=S ==> next_comm=smem_native_cds next_pid=86 next_prio=120
121381 s.nexuslauncher-10023 (10023) [005] d..5 82317.577718: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
121382          <idle>-0     (-----) [004] .n.1 82317.577722: cpu_idle: state=4294967295 cpu_id=4
121383           <...>-27544 (-----) [001] d..2 82317.577724: sched_wakeup: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=003
121384          <idle>-0     (-----) [004] d..2 82317.577727: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
121385<...>-8951 ( 8858) [004] .... 82317.577734: binder_transaction_received: transaction=1572638
121386<...>-86 ( 86) [003] d..2 82317.577742: sched_switch: prev_comm=smem_native_cds prev_pid=86 prev_prio=120 prev_state=S ==> next_comm=FinalizerWatchd next_pid=27546 next_prio=120
121387           <...>-27544 (-----) [001] d..1 82317.577753: sched_waking: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=003
121388           <...>-27546 (-----) [003] d..2 82317.577756: sched_switch: prev_comm=FinalizerWatchd prev_pid=27546 prev_prio=120 prev_state=D ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121389<...>-8951 ( 8858) [004] d..1 82317.577758: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
121390           <...>-27544 (-----) [001] d..2 82317.577765: sched_blocked_reason: pid=27546 iowait=0 caller=SyS_madvise+0xc84/0xcbc
121391 s.nexuslauncher-10023 (10023) [005] d..2 82317.577766: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
121392           <...>-27544 (-----) [001] d..2 82317.577770: sched_wakeup: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=003
121393          <idle>-0     (-----) [005] d..1 82317.577771: cpu_idle: state=0 cpu_id=5
121394           <...>-27541 (-----) [003] d..2 82317.577779: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=FinalizerWatchd next_pid=27546 next_prio=120
121395           <...>-27546 (-----) [003] dnh3 82317.577785: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
121396           <...>-27544 (-----) [001] d..2 82317.577786: sched_switch: prev_comm=ReferenceQueueD prev_pid=27544 prev_prio=120 prev_state=D|K ==> next_comm=swapper/1 next_pid=0 next_prio=120
121397           <...>-27546 (-----) [003] d..2 82317.577790: sched_switch: prev_comm=FinalizerWatchd prev_pid=27546 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
121398          <idle>-0     (-----) [001] d..1 82317.577798: cpu_idle: state=0 cpu_id=1
121399  appEventThread-8881  ( 8858) [003] d..2 82317.577820: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=FinalizerWatchd next_pid=27546 next_prio=120
121400<...>-8951 ( 8858) [004] d..2 82317.577821: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
121401           <...>-27546 (-----) [003] d..1 82317.577824: sched_waking: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=001
121402          <idle>-0     (-----) [004] d..1 82317.577827: cpu_idle: state=0 cpu_id=4
121403           <...>-27546 (-----) [003] d..2 82317.577830: sched_blocked_reason: pid=27544 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
121404           <...>-27546 (-----) [003] d..2 82317.577835: sched_wakeup: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=001
121405          <idle>-0     (-----) [001] .n.1 82317.577841: cpu_idle: state=4294967295 cpu_id=1
121406           <...>-27546 (-----) [003] d..2 82317.577846: sched_switch: prev_comm=FinalizerWatchd prev_pid=27546 prev_prio=120 prev_state=D ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121407          <idle>-0     (-----) [001] d..2 82317.577848: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=27544 next_prio=120
121408           <...>-27541 (-----) [003] d..2 82317.577861: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=D|K ==> next_comm=swapper/3 next_pid=0 next_prio=120
121409           <...>-27544 (-----) [001] d..1 82317.577865: sched_waking: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=003
121410           <...>-27544 (-----) [001] d..2 82317.577870: sched_blocked_reason: pid=27546 iowait=0 caller=SyS_madvise+0xc84/0xcbc
121411          <idle>-0     (-----) [003] d..1 82317.577871: cpu_idle: state=0 cpu_id=3
121412           <...>-27544 (-----) [001] d..2 82317.577876: sched_wakeup: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=003
121413          <idle>-0     (-----) [003] .n.1 82317.577881: cpu_idle: state=4294967295 cpu_id=3
121414          <idle>-0     (-----) [003] d..2 82317.577887: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=27546 next_prio=120
121415<...>-9105 ( 9105) [002] .... 82317.577890: binder_transaction: transaction=1572639 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
121416           <...>-27546 (-----) [003] d..1 82317.577891: sched_waking: comm=Shutdown thread pid=27541 prio=120 target_cpu=003
121417<...>-9105 ( 9105) [002] .... 82317.577893: binder_transaction_alloc_buf: transaction=1572639 data_size=80 offsets_size=0
121418           <...>-27544 (-----) [001] d..2 82317.577896: sched_switch: prev_comm=ReferenceQueueD prev_pid=27544 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
121419<...>-9105 ( 9105) [002] d..4 82317.577897: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
121420          <idle>-0     (-----) [001] d..1 82317.577905: cpu_idle: state=0 cpu_id=1
121421           <...>-27546 (-----) [003] d..2 82317.577907: sched_blocked_reason: pid=27541 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
121422          <idle>-0     (-----) [004] dnh2 82317.577911: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
121423           <...>-27546 (-----) [003] d..2 82317.577913: sched_wakeup: comm=Shutdown thread pid=27541 prio=120 target_cpu=001
121424          <idle>-0     (-----) [004] .n.1 82317.577914: cpu_idle: state=4294967295 cpu_id=4
121425          <idle>-0     (-----) [001] .n.1 82317.577918: cpu_idle: state=4294967295 cpu_id=1
121426          <idle>-0     (-----) [004] d..2 82317.577918: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
121427<...>-8951 ( 8858) [004] .... 82317.577920: binder_transaction_received: transaction=1572639
121428          <idle>-0     (-----) [001] d..2 82317.577924: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121429<...>-8951 ( 8858) [004] d..1 82317.577924: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
121430           <...>-27546 (-----) [003] d..2 82317.577926: sched_switch: prev_comm=FinalizerWatchd prev_pid=27546 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
121431          <idle>-0     (-----) [003] d..1 82317.577932: cpu_idle: state=0 cpu_id=3
121432           <...>-27541 (-----) [001] d..1 82317.577936: sched_waking: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=001
121433<...>-8951 ( 8858) [004] d..2 82317.577941: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
121434          <idle>-0     (-----) [003] dnh2 82317.577942: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
121435           <...>-27541 (-----) [001] d..2 82317.577944: sched_blocked_reason: pid=27544 iowait=0 caller=do_exit+0x908/0x11bc
121436          <idle>-0     (-----) [004] d..1 82317.577944: cpu_idle: state=0 cpu_id=4
121437           <...>-27541 (-----) [001] d..2 82317.577946: sched_wakeup: comm=ReferenceQueueD pid=27544 prio=120 target_cpu=003
121438           <...>-27541 (-----) [001] d..1 82317.577951: sched_waking: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=003
121439<...>-9105 ( 9105) [002] d..2 82317.577951: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=27545 next_prio=120
121440          <idle>-0     (-----) [003] .n.1 82317.577951: cpu_idle: state=4294967295 cpu_id=3
121441          <idle>-0     (-----) [003] d..2 82317.577956: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
121442           <...>-27545 (-----) [002] d..2 82317.577968: sched_switch: prev_comm=FinalizerDaemon prev_pid=27545 prev_prio=120 prev_state=x ==> next_comm=swapper/2 next_pid=0 next_prio=120
121443           <...>-27541 (-----) [001] d..2 82317.577970: sched_blocked_reason: pid=27546 iowait=0 caller=SyS_madvise+0xc84/0xcbc
121444           <...>-27541 (-----) [001] d..2 82317.577975: sched_wakeup: comm=FinalizerWatchd pid=27546 prio=120 target_cpu=002
121445  appEventThread-8881  ( 8858) [003] d..2 82317.577976: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ReferenceQueueD next_pid=27544 next_prio=120
121446          <idle>-0     (-----) [002] d..2 82317.577979: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=27546 next_prio=120
121447           <...>-27544 (-----) [003] d..2 82317.578001: sched_switch: prev_comm=ReferenceQueueD prev_pid=27544 prev_prio=120 prev_state=x ==> next_comm=swapper/3 next_pid=0 next_prio=120
121448          <idle>-0     (-----) [003] d..1 82317.578015: cpu_idle: state=0 cpu_id=3
121449           <...>-27541 (-----) [001] d..1 82317.578044: sched_waking: comm=Jit thread pool pid=27542 prio=129 target_cpu=002
121450           <...>-27546 (-----) [002] d..2 82317.578048: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=003
121451           <...>-27541 (-----) [001] d..2 82317.578068: sched_wakeup: comm=Jit thread pool pid=27542 prio=129 target_cpu=001
121452           <...>-27546 (-----) [002] d..3 82317.578081: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=001
121453           <...>-27541 (-----) [001] d..2 82317.578086: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=rcuos/2 next_pid=30 next_prio=120
121454<...>-30 ( 30) [001] d..2 82317.578096: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=003
121455<...>-30 ( 30) [001] d..3 82317.578117: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
121456           <...>-27546 (-----) [002] d..2 82317.578123: sched_switch: prev_comm=FinalizerWatchd prev_pid=27546 prev_prio=120 prev_state=x ==> next_comm=rcu_sched next_pid=8 next_prio=120
121457<...>-30 ( 30) [001] d..2 82317.578132: sched_switch: prev_comm=rcuos/2 prev_pid=30 prev_prio=120 prev_state=S ==> next_comm=Jit thread pool next_pid=27542 next_prio=129
121458          <idle>-0     (-----) [004] ...1 82317.578135: cpu_idle: state=4294967295 cpu_id=4
121459          <idle>-0     (-----) [004] d..1 82317.578137: cpu_idle: state=0 cpu_id=4
121460<...>-8 ( 8) [002] d..2 82317.578149: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121461          <idle>-0     (-----) [002] d..1 82317.578160: cpu_idle: state=0 cpu_id=2
121462           <...>-27542 (-----) [001] d..1 82317.578251: sched_waking: comm=Shutdown thread pid=27541 prio=120 target_cpu=001
121463           <...>-27542 (-----) [001] d..2 82317.578253: sched_wakeup: comm=Shutdown thread pid=27541 prio=120 target_cpu=001
121464           <...>-27542 (-----) [001] d..2 82317.578272: sched_switch: prev_comm=Jit thread pool prev_pid=27542 prev_prio=129 prev_state=x ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121465           <...>-27541 (-----) [001] d..2 82317.578325: sched_waking: comm=Signal Catcher pid=27543 prio=120 target_cpu=006
121466           <...>-27541 (-----) [001] dn.3 82317.578360: sched_wakeup: comm=Signal Catcher pid=27543 prio=120 target_cpu=001
121467           <...>-27541 (-----) [001] d..2 82317.578392: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=Signal Catcher next_pid=27543 next_prio=120
121468          <idle>-0     (-----) [005] d.s2 82317.578459: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=005
121469          <idle>-0     (-----) [002] dnh2 82317.578504: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
121470          <idle>-0     (-----) [005] ...1 82317.578506: cpu_idle: state=4294967295 cpu_id=5
121471          <idle>-0     (-----) [002] .n.1 82317.578508: cpu_idle: state=4294967295 cpu_id=2
121472          <idle>-0     (-----) [005] d..1 82317.578509: cpu_idle: state=0 cpu_id=5
121473          <idle>-0     (-----) [002] d..2 82317.578516: 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
121474     rcu_preempt-7     (    7) [002] d..2 82317.578542: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121475           <...>-27543 (-----) [001] d..2 82317.578549: sched_switch: prev_comm=Signal Catcher prev_pid=27543 prev_prio=120 prev_state=x ==> next_comm=swapper/1 next_pid=0 next_prio=120
121476          <idle>-0     (-----) [001] d..1 82317.578564: cpu_idle: state=0 cpu_id=1
121477           <...>-27541 (-----) [002] d.h4 82317.579658: sched_waking: comm=HwBinder:788_9 pid=5340 prio=120 target_cpu=004
121478           <...>-27541 (-----) [002] d.h5 82317.579682: sched_wakeup: comm=HwBinder:788_9 pid=5340 prio=120 target_cpu=001
121479          <idle>-0     (-----) [001] .n.1 82317.579688: cpu_idle: state=4294967295 cpu_id=1
121480          <idle>-0     (-----) [001] d..2 82317.579695: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=HwBinder:788_9 next_pid=5340 next_prio=120
121481<...>-5340 ( 788) [001] d..2 82317.580028: sched_switch: prev_comm=HwBinder:788_9 prev_pid=5340 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121482          <idle>-0     (-----) [001] d..1 82317.580038: cpu_idle: state=0 cpu_id=1
121483           <...>-27558 (-----) [006] d..2 82317.580301: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
121484           <...>-27541 (-----) [002] dnh1 82317.580327: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121485           <...>-27541 (-----) [002] d..2 82317.580335: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121486           <...>-27558 (-----) [006] d..2 82317.580383: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
121487  kworker/u16:15-1311  ( 1311) [002] d.h2 82317.580407: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
121488           <...>-27558 (-----) [006] d..2 82317.580435: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121489           <...>-27558 (-----) [006] dn.3 82317.580441: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
121490           <...>-27558 (-----) [006] d..2 82317.580444: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=R+ ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
121491<...>-560 ( 560) [006] d..4 82317.580479: sched_waking: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=006
121492<...>-560 ( 560) [006] d.h5 82317.580509: sched_waking: comm=logd.klogd pid=589 prio=130 target_cpu=000
121493          <idle>-0     (-----) [001] dnh2 82317.580513: sched_wakeup: comm=Binder:8943_10 pid=11815 prio=120 target_cpu=001
121494          <idle>-0     (-----) [001] .n.1 82317.580517: cpu_idle: state=4294967295 cpu_id=1
121495          <idle>-0     (-----) [001] d..2 82317.580524: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_10 next_pid=11815 next_prio=120
121496<...>-560 ( 560) [006] d..4 82317.580527: sched_waking: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=007
121497  kworker/u16:15-1311  ( 1311) [002] d.h1 82317.580530: sched_wakeup: comm=logd.klogd pid=589 prio=130 target_cpu=002
121498<...>-560 ( 560) [006] d..4 82317.580557: sched_waking: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
121499          <idle>-0     (-----) [003] dnh2 82317.580559: sched_wakeup: comm=Binder:8943_4 pid=9062 prio=120 target_cpu=003
121500          <idle>-0     (-----) [003] .n.1 82317.580562: cpu_idle: state=4294967295 cpu_id=3
121501          <idle>-0     (-----) [003] d..2 82317.580569: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=120
121502<...>-11815 ( 8943) [001] d..3 82317.580572: sched_waking: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=003
121503  kworker/u16:15-1311  ( 1311) [002] d.h1 82317.580576: sched_wakeup: comm=Binder:8943_15 pid=12998 prio=120 target_cpu=002
121504<...>-560 ( 560) [006] d.h3 82317.580599: sched_wakeup: comm=Binder:8943_17 pid=25493 prio=120 target_cpu=006
121505<...>-560 ( 560) [006] d..4 82317.580624: sched_waking: comm=Binder:8943_A pid=9759 prio=120 target_cpu=003
121506  kworker/u16:15-1311  ( 1311) [002] d..2 82317.580628: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=logd.klogd next_pid=589 next_prio=130
121507<...>-560 ( 560) [006] d..4 82317.580640: sched_waking: comm=Binder:8943_16 pid=23656 prio=120 target_cpu=002
121508<...>-9062 ( 8943) [003] d.h1 82317.580645: sched_wakeup: comm=Binder:8943_A pid=9759 prio=120 target_cpu=003
121509<...>-9062 ( 8943) [003] d..3 82317.580653: sched_waking: comm=Binder:8943_D pid=10988 prio=120 target_cpu=007
121510<...>-589 ( 571) [002] d.h1 82317.580659: sched_wakeup: comm=Binder:8943_16 pid=23656 prio=120 target_cpu=002
121511<...>-560 ( 560) [006] d.h4 82317.580681: sched_wakeup: comm=Binder:8943_D pid=10988 prio=120 target_cpu=006
121512<...>-560 ( 560) [006] d..5 82317.580702: sched_waking: comm=Binder:8943_9 pid=9741 prio=120 target_cpu=003
121513<...>-560 ( 560) [006] d..5 82317.580716: sched_waking: comm=Binder:8943_7 pid=9222 prio=120 target_cpu=001
121514<...>-9062 ( 8943) [003] d.h1 82317.580720: sched_wakeup: comm=Binder:8943_9 pid=9741 prio=120 target_cpu=003
121515<...>-560 ( 560) [006] d..5 82317.580727: sched_waking: comm=Binder:8943_14 pid=12984 prio=120 target_cpu=003
121516<...>-11815 ( 8943) [001] d.h1 82317.580735: sched_wakeup: comm=Binder:8943_7 pid=9222 prio=120 target_cpu=001
121517<...>-560 ( 560) [006] d..6 82317.580738: sched_wakeup: comm=Binder:8943_14 pid=12984 prio=120 target_cpu=006
121518<...>-560 ( 560) [006] d..5 82317.580756: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
121519<...>-560 ( 560) [006] d..6 82317.580762: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
121520<...>-560 ( 560) [006] d..5 82317.580764: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=002
121521          <idle>-0     (-----) [004] .n.1 82317.580767: cpu_idle: state=4294967295 cpu_id=4
121522          <idle>-0     (-----) [004] d..2 82317.580772: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
121523<...>-560 ( 560) [006] d..6 82317.580777: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
121524<...>-11815 ( 8943) [001] d..3 82317.580777: sched_waking: comm=Binder:8943_5 pid=9186 prio=120 target_cpu=003
121525          <idle>-0     (-----) [005] .n.1 82317.580781: cpu_idle: state=4294967295 cpu_id=5
121526          <idle>-0     (-----) [005] d..2 82317.580786: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
121527<...>-560 ( 560) [006] d..5 82317.580808: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
121528<...>-11815 ( 8943) [001] d..4 82317.580809: sched_wakeup: comm=Binder:8943_5 pid=9186 prio=120 target_cpu=003
121529<...>-560 ( 560) [006] d..6 82317.580815: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=006
121530<...>-11815 ( 8943) [001] d..3 82317.580820: sched_waking: comm=Binder:8943_B pid=9815 prio=120 target_cpu=006
121531<...>-560 ( 560) [006] d..2 82317.580841: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_17 next_pid=25493 next_prio=120
121532<...>-25493 ( 8943) [006] d..3 82317.580846: sched_waking: comm=Binder:8943_2 pid=8958 prio=120 target_cpu=002
121533<...>-8955 ( 8943) [007] dnh1 82317.580848: sched_wakeup: comm=Binder:8943_B pid=9815 prio=120 target_cpu=007
121534<...>-8955 ( 8943) [007] d..2 82317.580853: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=R ==> next_comm=Binder:8943_B next_pid=9815 next_prio=120
121535<...>-9062 ( 8943) [003] .... 82317.580860: binder_transaction: transaction=1572640 dest_node=1568752 dest_proc=9090 dest_thread=0 reply=0 flags=0x11 code=0x9
121536<...>-9815 ( 8943) [007] d..3 82317.580860: sched_waking: comm=Binder:8943_13 pid=12967 prio=120 target_cpu=003
121537<...>-589 ( 571) [002] dnh1 82317.580865: sched_wakeup: comm=Binder:8943_2 pid=8958 prio=120 target_cpu=002
121538<...>-9062 ( 8943) [003] .... 82317.580866: binder_transaction_alloc_buf: transaction=1572640 data_size=100 offsets_size=0
121539<...>-8874 ( 8858) [005] d..2 82317.580867: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
121540<...>-8951 ( 8858) [004] d..2 82317.580868: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
121541          <idle>-0     (-----) [004] d..1 82317.580872: cpu_idle: state=0 cpu_id=4
121542<...>-589 ( 571) [002] d..2 82317.580872: sched_switch: prev_comm=logd.klogd prev_pid=589 prev_prio=130 prev_state=R ==> next_comm=Binder:8943_2 next_pid=8958 next_prio=120
121543<...>-13083 ( 8858) [005] d..2 82317.580878: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
121544          <idle>-0     (-----) [005] d..1 82317.580883: cpu_idle: state=0 cpu_id=5
121545<...>-9062 ( 8943) [003] d.h3 82317.580885: sched_wakeup: comm=Binder:8943_13 pid=12967 prio=120 target_cpu=003
121546<...>-9062 ( 8943) [003] d..4 82317.580889: sched_waking: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=000
121547<...>-9062 ( 8943) [003] d..5 82317.580906: sched_wakeup: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=000
121548 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.580919: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R ==> next_comm=Binder:9090_6 next_pid=10728 next_prio=120
121549<...>-25493 ( 8943) [006] d..2 82317.580923: sched_switch: prev_comm=Binder:8943_17 prev_pid=25493 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_D next_pid=10988 next_prio=120
121550<...>-10988 ( 8943) [006] d..2 82317.580928: sched_switch: prev_comm=Binder:8943_D prev_pid=10988 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_14 next_pid=12984 next_prio=120
121551   Binder:9090_6-10728 ( 9090) [000] .... 82317.580929: binder_transaction_received: transaction=1572640
121552<...>-12984 ( 8943) [006] d..2 82317.580933: sched_switch: prev_comm=Binder:8943_14 prev_pid=12984 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=27558 next_prio=124
121553<...>-9815 ( 8943) [007] d..2 82317.580942: sched_switch: prev_comm=Binder:8943_B prev_pid=9815 prev_prio=120 prev_state=S ==> next_comm=HeapTaskDaemon next_pid=8955 next_prio=124
121554<...>-8958 ( 8943) [002] d..2 82317.580944: sched_switch: prev_comm=Binder:8943_2 prev_pid=8958 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_15 next_pid=12998 next_prio=120
121555<...>-9062 ( 8943) [003] d..3 82317.580950: sched_waking: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
121556<...>-12998 ( 8943) [002] d..2 82317.580952: sched_switch: prev_comm=Binder:8943_15 prev_pid=12998 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_16 next_pid=23656 next_prio=120
121557<...>-23656 ( 8943) [002] d..2 82317.580960: sched_switch: prev_comm=Binder:8943_16 prev_pid=23656 prev_prio=120 prev_state=S ==> next_comm=logd.klogd next_pid=589 next_prio=130
121558<...>-9062 ( 8943) [003] d..4 82317.580963: sched_wakeup: comm=putmethod.latin pid=9090 prio=120 target_cpu=000
121559<...>-11815 ( 8943) [001] d..3 82317.580966: sched_waking: comm=GraphicsStats-d pid=9070 prio=130 target_cpu=001
121560<...>-11815 ( 8943) [001] d..4 82317.580985: sched_wakeup: comm=GraphicsStats-d pid=9070 prio=130 target_cpu=001
121561<...>-589 ( 571) [002] d..2 82317.581030: sched_switch: prev_comm=logd.klogd prev_pid=589 prev_prio=130 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
121562<...>-9062 ( 8943) [003] d..2 82317.581035: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8943_A next_pid=9759 next_prio=120
121563<...>-9759 ( 8943) [003] d..2 82317.581044: sched_switch: prev_comm=Binder:8943_A prev_pid=9759 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_9 next_pid=9741 next_prio=120
121564<...>-9741 ( 8943) [003] d..2 82317.581052: sched_switch: prev_comm=Binder:8943_9 prev_pid=9741 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_5 next_pid=9186 next_prio=120
121565<...>-9186 ( 8943) [003] d..2 82317.581059: sched_switch: prev_comm=Binder:8943_5 prev_pid=9186 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_13 next_pid=12967 next_prio=120
121566<...>-12967 ( 8943) [003] d..2 82317.581066: sched_switch: prev_comm=Binder:8943_13 prev_pid=12967 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_4 next_pid=9062 next_prio=116
121567          <idle>-0     (-----) [004] ...1 82317.581077: cpu_idle: state=4294967295 cpu_id=4
121568          <idle>-0     (-----) [004] d..1 82317.581079: cpu_idle: state=0 cpu_id=4
121569           <...>-27558 (-----) [006] d..3 82317.581093: sched_waking: comm=main pid=8859 prio=120 target_cpu=000
121570           <...>-27558 (-----) [006] d..2 82317.581113: sched_switch: prev_comm=ReferenceQueueD prev_pid=27558 prev_prio=124 prev_state=x ==> next_comm=swapper/6 next_pid=0 next_prio=120
121571   Binder:9090_6-10728 ( 9090) [000] d.h1 82317.581115: sched_wakeup: comm=main pid=8859 prio=120 target_cpu=000
121572<...>-9062 ( 8943) [003] d..3 82317.581124: sched_waking: comm=android.display pid=8969 prio=117 target_cpu=004
121573          <idle>-0     (-----) [006] d..1 82317.581127: cpu_idle: state=0 cpu_id=6
121574   Binder:9090_6-10728 ( 9090) [000] d..2 82317.581128: sched_switch: prev_comm=Binder:9090_6 prev_pid=10728 prev_prio=120 prev_state=S ==> next_comm=putmethod.latin next_pid=9090 next_prio=120
121575          <idle>-0     (-----) [004] dnh2 82317.581142: sched_wakeup: comm=android.display pid=8969 prio=117 target_cpu=004
121576          <idle>-0     (-----) [004] .n.1 82317.581144: cpu_idle: state=4294967295 cpu_id=4
121577          <idle>-0     (-----) [004] d..2 82317.581147: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.display next_pid=8969 next_prio=117
121578<...>-9062 ( 8943) [003] d..5 82317.581182: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
121579          <idle>-0     (-----) [005] dnh2 82317.581196: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
121580          <idle>-0     (-----) [005] .n.1 82317.581198: cpu_idle: state=4294967295 cpu_id=5
121581          <idle>-0     (-----) [005] d..2 82317.581202: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
121582<...>-11815 ( 8943) [001] d..2 82317.581205: sched_switch: prev_comm=Binder:8943_10 prev_pid=11815 prev_prio=120 prev_state=S ==> next_comm=Binder:8943_7 next_pid=9222 next_prio=120
121583   Binder:8943_7-9222  ( 8943) [001] d..2 82317.581214: sched_switch: prev_comm=Binder:8943_7 prev_pid=9222 prev_prio=120 prev_state=S ==> next_comm=GraphicsStats-d next_pid=9070 next_prio=130
121584<...>-9062 ( 8943) [003] d..2 82317.581217: sched_switch: prev_comm=Binder:8943_4 prev_pid=9062 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121585<...>-13083 ( 8858) [005] d..2 82317.581224: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
121586          <idle>-0     (-----) [003] d.h3 82317.581226: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
121587          <idle>-0     (-----) [005] d..1 82317.581227: cpu_idle: state=0 cpu_id=5
121588          <idle>-0     (-----) [003] dnh4 82317.581240: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
121589          <idle>-0     (-----) [003] d..2 82317.581247: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
121590<...>-8969 ( 8943) [004] d..2 82317.581252: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=002
121591<...>-9090 ( 9090) [000] d..2 82317.581255: sched_switch: prev_comm=putmethod.latin prev_pid=9090 prev_prio=120 prev_state=S ==> next_comm=main next_pid=8859 next_prio=120
121592        DispSync-8879  ( 8858) [003] d.h2 82317.581274: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
121593        DispSync-8879  ( 8858) [003] d..1 82317.581277: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
121594        DispSync-8879  ( 8858) [003] d..2 82317.581293: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
121595            adbd-960   (  960) [002] d..2 82317.581302: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
121596<...>-8969 ( 8943) [004] d..2 82317.581307: sched_switch: prev_comm=android.display prev_pid=8969 prev_prio=117 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
121597          <idle>-0     (-----) [004] d..1 82317.581316: cpu_idle: state=0 cpu_id=4
121598        DispSync-8879  ( 8858) [003] d..2 82317.581321: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
121599   sfEventThread-8882  ( 8858) [002] d..3 82317.581343: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
121600   sfEventThread-8882  ( 8858) [002] d..4 82317.581362: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
121601<...>-581 ( 571) [003] d..2 82317.581372: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
121602   sfEventThread-8882  ( 8858) [002] d..3 82317.581375: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
121603          <idle>-0     (-----) [004] dnh2 82317.581392: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=004
121604          <idle>-0     (-----) [004] .n.1 82317.581395: cpu_idle: state=4294967295 cpu_id=4
121605   sfEventThread-8882  ( 8858) [002] d..2 82317.581399: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
121606          <idle>-0     (-----) [004] d..2 82317.581400: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
121607            adbd-960   (  960) [002] d..2 82317.581413: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121608<...>-9005 ( 8943) [004] .... 82317.581494: binder_transaction: transaction=1572641 dest_node=396306 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
121609<...>-9005 ( 8943) [004] .... 82317.581498: binder_transaction_alloc_buf: transaction=1572641 data_size=80 offsets_size=0
121610<...>-9005 ( 8943) [004] d..4 82317.581500: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
121611<...>-9005 ( 8943) [004] d..5 82317.581508: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=005
121612          <idle>-0     (-----) [005] .n.1 82317.581513: cpu_idle: state=4294967295 cpu_id=5
121613          <idle>-0     (-----) [005] d..2 82317.581516: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
121614<...>-13083 ( 8858) [005] .... 82317.581518: binder_transaction_received: transaction=1572641
121615  surfaceflinger-8858  ( 8858) [003] d..2 82317.581523: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
121616<...>-13083 ( 8858) [005] d..1 82317.581526: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
121617           <...>-27541 (-----) [002] dnh1 82317.581540: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
121618<...>-13083 ( 8858) [005] d..2 82317.581543: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
121619          <idle>-0     (-----) [005] d..1 82317.581546: cpu_idle: state=0 cpu_id=5
121620           <...>-27541 (-----) [002] d..2 82317.581547: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
121621<...>-581 ( 571) [003] d..2 82317.581562: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121622   sfEventThread-8882  ( 8858) [002] d..2 82317.581568: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121623          <idle>-0     (-----) [003] d..1 82317.581572: cpu_idle: state=0 cpu_id=3
121624           <...>-27541 (-----) [002] d.s1 82317.581795: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
121625<...>-9005 ( 8943) [004] d.s2 82317.581795: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121626           <...>-27541 (-----) [002] dns2 82317.581807: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
121627           <...>-27541 (-----) [002] dnH2 82317.581813: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121628           <...>-27541 (-----) [002] dns2 82317.581817: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
121629           <...>-27541 (-----) [002] dns3 82317.581840: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
121630 GraphicsStats-d-9070  ( 8943) [001] d..2 82317.581847: sched_switch: prev_comm=GraphicsStats-d prev_pid=9070 prev_prio=130 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
121631<...>-9005 ( 8943) [004] .... 82317.581851: binder_transaction: transaction=1572642 dest_node=395450 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x8
121632<...>-9005 ( 8943) [004] .... 82317.581853: binder_transaction_alloc_buf: transaction=1572642 data_size=684 offsets_size=32
121633           <...>-27541 (-----) [002] d..2 82317.581856: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=rcu_sched next_pid=8 next_prio=120
121634     rcu_preempt-7     (    7) [001] d..2 82317.581858: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
121635<...>-9005 ( 8943) [004] ...2 82317.581865: binder_set_priority: proc=8858 thread=13083 old=120 => new=116 desired=116
121636<...>-9005 ( 8943) [004] d..4 82317.581867: sched_waking: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=005
121637<...>-8 ( 8) [002] d..2 82317.581871: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121638<...>-9005 ( 8943) [004] dn.5 82317.581875: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=116 target_cpu=004
121639     rcu_preempt-7     (    7) [001] d..3 82317.581877: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
121640<...>-9005 ( 8943) [004] d..2 82317.581878: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=R+ ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=116
121641     rcu_preempt-7     (    7) [001] d..2 82317.581879: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
121642<...>-13083 ( 8858) [004] .... 82317.581885: binder_transaction_received: transaction=1572642
121643     rcu_preempt-7     (    7) [001] d..3 82317.581889: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
121644     rcu_preempt-7     (    7) [001] d..2 82317.581900: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=GraphicsStats-d next_pid=9070 next_prio=130
121645<...>-13083 ( 8858) [004] .... 82317.581932: binder_transaction: transaction=1572643 dest_node=0 dest_proc=8943 dest_thread=9005 reply=1 flags=0x0 code=0x0
121646<...>-13083 ( 8858) [004] .... 82317.581934: binder_transaction_alloc_buf: transaction=1572643 data_size=0 offsets_size=0
121647<...>-13083 ( 8858) [004] .... 82317.581936: binder_set_priority: proc=8858 thread=13083 old=116 => new=120 desired=120
121648<...>-13083 ( 8858) [004] d..2 82317.581955: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=android.anim next_pid=9005 next_prio=116
121649<...>-9005 ( 8943) [004] .... 82317.581960: binder_transaction_received: transaction=1572643
121650            main-8859  ( 8859) [000] d..2 82317.581989: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
121651            main-8859  ( 8859) [000] d..3 82317.582002: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=003
121652          <idle>-0     (-----) [003] .n.1 82317.582007: cpu_idle: state=4294967295 cpu_id=3
121653          <idle>-0     (-----) [003] d..2 82317.582015: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=logd.writer next_pid=581 next_prio=130
121654<...>-9005 ( 8943) [004] d..2 82317.582017: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
121655          <idle>-0     (-----) [004] d..1 82317.582024: cpu_idle: state=0 cpu_id=4
121656  kworker/u16:15-1311  ( 1311) [002] d..2 82317.582030: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcuop/4 next_pid=45 next_prio=120
121657         rcuop/4-45    (   45) [002] d..2 82317.582046: 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
121658         rcuop/0-10    (   10) [002] d..2 82317.582051: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
121659 GraphicsStats-d-9070  ( 8943) [001] d.s2 82317.582060: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121660         rcuop/0-10    (   10) [002] d..3 82317.582063: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
121661 GraphicsStats-d-9070  ( 8943) [001] d.s3 82317.582073: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
121662            main-8859  ( 8859) [000] d..2 82317.582074: sched_switch: prev_comm=main prev_pid=8859 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
121663 GraphicsStats-d-9070  ( 8943) [001] d.s3 82317.582077: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121664 GraphicsStats-d-9070  ( 8943) [001] d..2 82317.582098: sched_switch: prev_comm=GraphicsStats-d prev_pid=9070 prev_prio=130 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121665          <idle>-0     (-----) [001] d..1 82317.582112: cpu_idle: state=0 cpu_id=1
121666         rcuop/0-10    (   10) [002] d..2 82317.582117: 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
121667<...>-581 ( 571) [003] d..2 82317.582119: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121668         rcuop/1-21    (   21) [002] d..2 82317.582126: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121669          <idle>-0     (-----) [003] d..1 82317.582127: cpu_idle: state=0 cpu_id=3
121670  kworker/u16:15-1311  ( 1311) [002] d..2 82317.582138: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121671          <idle>-0     (-----) [004] ...1 82317.582259: cpu_idle: state=4294967295 cpu_id=4
121672          <idle>-0     (-----) [004] d..1 82317.582261: cpu_idle: state=0 cpu_id=4
121673          <idle>-0     (-----) [003] ...1 82317.583250: cpu_idle: state=4294967295 cpu_id=3
121674          <idle>-0     (-----) [003] d..1 82317.583252: cpu_idle: state=0 cpu_id=3
121675<...>-8955 ( 8943) [007] d.s2 82317.585126: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121676           <...>-27541 (-----) [002] dnh1 82317.585148: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121677           <...>-27541 (-----) [002] d..2 82317.585154: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121678  kworker/u16:15-1311  ( 1311) [002] .... 82317.585222: clk_set_rate: l3_cluster0_vote_clk 1401600000
121679  kworker/u16:15-1311  ( 1311) [002] .... 82317.585228: clk_set_rate: l3_clk 1401600000
121680  kworker/u16:15-1311  ( 1311) [002] d..2 82317.585415: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121681          <idle>-0     (-----) [001] d.s3 82317.585489: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
121682          <idle>-0     (-----) [001] d.s4 82317.585503: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
121683          <idle>-0     (-----) [001] dns4 82317.585506: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
121684          <idle>-0     (-----) [001] .n.1 82317.585510: cpu_idle: state=4294967295 cpu_id=1
121685          <idle>-0     (-----) [001] d..2 82317.585519: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121686  kworker/u16:15-1311  ( 1311) [001] .... 82317.585675: clk_set_rate: l3_cluster1_vote_clk 1305600000
121687  kworker/u16:15-1311  ( 1311) [001] d..2 82317.585711: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121688          <idle>-0     (-----) [001] d..1 82317.585729: cpu_idle: state=0 cpu_id=1
121689          <idle>-0     (-----) [001] d.s2 82317.588456: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
121690           <...>-27541 (-----) [002] d.s2 82317.588462: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
121691          <idle>-0     (-----) [001] dns3 82317.588467: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
121692           <...>-27541 (-----) [002] dns3 82317.588475: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
121693          <idle>-0     (-----) [001] .n.1 82317.588480: cpu_idle: state=4294967295 cpu_id=1
121694           <...>-27541 (-----) [002] d..2 82317.588484: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=rcu_sched next_pid=8 next_prio=120
121695          <idle>-0     (-----) [001] d..2 82317.588486: 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
121696<...>-8 ( 8) [002] d..2 82317.588494: sched_waking: comm=rcuos/2 pid=30 prio=120 target_cpu=001
121697<...>-8 ( 8) [002] d..3 82317.588506: sched_wakeup: comm=rcuos/2 pid=30 prio=120 target_cpu=001
121698     rcu_preempt-7     (    7) [001] d..2 82317.588510: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=rcuos/2 next_pid=30 next_prio=120
121699<...>-8 ( 8) [002] d..2 82317.588519: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121700<...>-30 ( 30) [001] d..2 82317.588526: 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
121701          <idle>-0     (-----) [001] d..1 82317.588534: cpu_idle: state=0 cpu_id=1
121702 TaskSnapshotPer-9077  ( 8943) [000] d.h4 82317.589098: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
121703 TaskSnapshotPer-9077  ( 8943) [000] d.h5 82317.589124: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
121704          <idle>-0     (-----) [003] .n.1 82317.589128: cpu_idle: state=4294967295 cpu_id=3
121705          <idle>-0     (-----) [003] d..2 82317.589135: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
121706  crtc_event:111-322   (  322) [003] d..2 82317.589163: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121707          <idle>-0     (-----) [003] d..1 82317.589168: cpu_idle: state=0 cpu_id=3
121708           <...>-27541 (-----) [002] d.h2 82317.591822: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
121709 TaskSnapshotPer-9077  ( 8943) [000] d.h2 82317.591825: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
121710           <...>-27541 (-----) [002] dnh3 82317.591831: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
121711<...>-8955 ( 8943) [007] d.H2 82317.591832: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
121712 TaskSnapshotPer-9077  ( 8943) [000] dnh3 82317.591833: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
121713 TaskSnapshotPer-9077  ( 8943) [000] dns2 82317.591840: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
121714<...>-8955 ( 8943) [007] d.H3 82317.591842: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
121715           <...>-27541 (-----) [002] d..2 82317.591843: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=migration/2 next_pid=25 next_prio=0
121716          <idle>-0     (-----) [005] .n.1 82317.591846: cpu_idle: state=4294967295 cpu_id=5
121717          <idle>-0     (-----) [001] ...1 82317.591851: cpu_idle: state=4294967295 cpu_id=1
121718          <idle>-0     (-----) [005] d..2 82317.591851: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
121719          <idle>-0     (-----) [001] d..1 82317.591853: cpu_idle: state=0 cpu_id=1
121720         sugov:4-577   (  577) [005] .... 82317.591872: clk_set_rate: perfcl_clk 2476800000
121721         sugov:4-577   (  577) [005] .... 82317.591874: clk_set_rate: cpu7_perfcl_clk 1920000000
121722         sugov:4-577   (  577) [005] .... 82317.591880: clk_set_rate: cpu6_perfcl_clk 1920000000
121723         sugov:4-577   (  577) [005] .... 82317.591885: clk_set_rate: cpu5_perfcl_clk 1920000000
121724         sugov:4-577   (  577) [005] .... 82317.591889: clk_set_rate: cpu4_perfcl_clk 2476800000
121725         sugov:4-577   (  577) [005] .... 82317.591894: cpu_frequency: state=2476800 cpu_id=4
121726          <idle>-0     (-----) [004] dnh2 82317.591895: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=004
121727          <idle>-0     (-----) [004] .n.1 82317.591900: cpu_idle: state=4294967295 cpu_id=4
121728 TaskSnapshotPer-9077  ( 8943) [000] d..2 82317.591900: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R ==> next_comm=migration/0 next_pid=13 next_prio=0
121729          <idle>-0     (-----) [004] d..2 82317.591905: 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
121730     rcu_preempt-7     (    7) [004] d..2 82317.591908: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=005
121731     migration/2-25    (   25) [002] d..2 82317.591917: sched_switch: prev_comm=migration/2 prev_pid=25 prev_prio=0 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
121732     rcu_preempt-7     (    7) [004] d..3 82317.591923: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
121733     rcu_preempt-7     (    7) [004] d..2 82317.591924: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=005
121734     migration/0-13    (   13) [000] d..2 82317.591926: 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
121735          <idle>-0     (-----) [006] .n.1 82317.591929: cpu_idle: state=4294967295 cpu_id=6
121736     rcu_preempt-7     (    7) [004] d..3 82317.591932: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
121737          <idle>-0     (-----) [006] d..2 82317.591936: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
121738         rcuop/6-61    (   61) [006] d..2 82317.591938: sched_waking: comm=rcuop/7 pid=69 prio=120 target_cpu=002
121739          <idle>-0     (-----) [000] d..1 82317.591941: cpu_idle: state=0 cpu_id=0
121740     rcu_preempt-7     (    7) [004] d..2 82317.591943: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121741         rcuop/6-61    (   61) [006] d..3 82317.591952: sched_wakeup: comm=rcuop/7 pid=69 prio=120 target_cpu=006
121742         rcuop/6-61    (   61) [006] d..2 82317.591992: 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
121743         sugov:4-577   (  577) [005] d..2 82317.592015: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
121744          <idle>-0     (-----) [005] d..1 82317.592019: cpu_idle: state=0 cpu_id=5
121745<...>-69 ( 69) [006] d..2 82317.592025: 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
121746         rcuop/2-29    (   29) [006] d..2 82317.592028: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
121747          <idle>-0     (-----) [003] dnh2 82317.592047: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
121748          <idle>-0     (-----) [003] .n.1 82317.592052: cpu_idle: state=4294967295 cpu_id=3
121749          <idle>-0     (-----) [003] d..2 82317.592057: 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
121750          <idle>-0     (-----) [001] d.s3 82317.592057: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
121751         rcuop/2-29    (   29) [006] d..3 82317.592058: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
121752         rcuop/2-29    (   29) [006] d..2 82317.592065: 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
121753          <idle>-0     (-----) [006] d..1 82317.592069: cpu_idle: state=0 cpu_id=6
121754 TaskSnapshotPer-9077  ( 8943) [002] dnh1 82317.592070: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
121755          <idle>-0     (-----) [005] dnh2 82317.592072: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
121756          <idle>-0     (-----) [001] ...1 82317.592073: cpu_idle: state=4294967295 cpu_id=1
121757          <idle>-0     (-----) [005] .n.1 82317.592074: cpu_idle: state=4294967295 cpu_id=5
121758         rcuop/3-37    (   37) [003] d..2 82317.592076: 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
121759          <idle>-0     (-----) [001] d..1 82317.592076: cpu_idle: state=0 cpu_id=1
121760          <idle>-0     (-----) [005] d..2 82317.592077: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
121761 TaskSnapshotPer-9077  ( 8943) [002] d..2 82317.592079: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R ==> next_comm=migration/2 next_pid=25 next_prio=0
121762         sugov:4-577   (  577) [005] .... 82317.592080: cpu_frequency: state=2476800 cpu_id=5
121763          <idle>-0     (-----) [003] d..1 82317.592082: cpu_idle: state=0 cpu_id=3
121764         sugov:4-577   (  577) [005] .... 82317.592082: cpu_frequency: state=2476800 cpu_id=6
121765         sugov:4-577   (  577) [005] .... 82317.592083: cpu_frequency: state=2476800 cpu_id=7
121766         sugov:4-577   (  577) [005] d..2 82317.592090: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
121767          <idle>-0     (-----) [005] d..1 82317.592092: cpu_idle: state=0 cpu_id=5
121768          <idle>-0     (-----) [006] .n.1 82317.592103: cpu_idle: state=4294967295 cpu_id=6
121769          <idle>-0     (-----) [006] d..2 82317.592126: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
121770     migration/2-25    (   25) [002] d..2 82317.592137: 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
121771          <idle>-0     (-----) [002] d..1 82317.592160: cpu_idle: state=0 cpu_id=2
121772          <idle>-0     (-----) [000] d.h2 82317.593050: sched_waking: comm=ActivityManager pid=8964 prio=130 target_cpu=000
121773          <idle>-0     (-----) [000] dnh3 82317.593064: sched_wakeup: comm=ActivityManager pid=8964 prio=130 target_cpu=000
121774          <idle>-0     (-----) [000] .n.1 82317.593069: cpu_idle: state=4294967295 cpu_id=0
121775          <idle>-0     (-----) [000] d..2 82317.593078: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ActivityManager next_pid=8964 next_prio=130
121776<...>-8964 ( 8943) [000] d..2 82317.593389: sched_waking: comm=logd.writer pid=581 prio=130 target_cpu=003
121777<...>-8964 ( 8943) [000] d..3 82317.593413: sched_wakeup: comm=logd.writer pid=581 prio=130 target_cpu=000
121778          <idle>-0     (-----) [002] ...1 82317.593462: cpu_idle: state=4294967295 cpu_id=2
121779          <idle>-0     (-----) [002] d..1 82317.593464: cpu_idle: state=0 cpu_id=2
121780<...>-8964 ( 8943) [000] .... 82317.593598: cgroup_rmdir: root=1 id=109 level=2 path=/uid_10151/pid_27550
121781          <idle>-0     (-----) [003] d.h2 82317.593691: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
121782<...>-8964 ( 8943) [000] d..2 82317.593703: sched_switch: prev_comm=ActivityManager prev_pid=8964 prev_prio=130 prev_state=S ==> next_comm=logd.writer next_pid=581 next_prio=130
121783          <idle>-0     (-----) [003] dnh3 82317.593705: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
121784          <idle>-0     (-----) [003] .n.1 82317.593711: cpu_idle: state=4294967295 cpu_id=3
121785          <idle>-0     (-----) [003] d..2 82317.593718: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
121786        DispSync-8879  ( 8858) [003] d..1 82317.593748: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
121787        DispSync-8879  ( 8858) [003] d..2 82317.593771: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
121788          <idle>-0     (-----) [001] .n.1 82317.593776: cpu_idle: state=4294967295 cpu_id=1
121789          <idle>-0     (-----) [001] d..2 82317.593785: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
121790        DispSync-8879  ( 8858) [003] d..2 82317.593803: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121791          <idle>-0     (-----) [003] d..1 82317.593813: cpu_idle: state=0 cpu_id=3
121792<...>-581 ( 571) [000] d..2 82317.593848: sched_switch: prev_comm=logd.writer prev_pid=581 prev_prio=130 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121793          <idle>-0     (-----) [000] d..3 82317.593864: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=003
121794  appEventThread-8881  ( 8858) [001] d..3 82317.593868: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
121795  appEventThread-8881  ( 8858) [001] d..4 82317.593896: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
121796          <idle>-0     (-----) [000] dn.4 82317.593907: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
121797  appEventThread-8881  ( 8858) [001] d..3 82317.593916: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
121798          <idle>-0     (-----) [000] d..2 82317.593925: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
121799          <idle>-0     (-----) [005] dnh2 82317.593935: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
121800          <idle>-0     (-----) [005] .n.1 82317.593937: cpu_idle: state=4294967295 cpu_id=5
121801          <idle>-0     (-----) [005] d..2 82317.593940: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
121802  appEventThread-8881  ( 8858) [001] d..2 82317.593973: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=rcuos/0 next_pid=11 next_prio=120
121803         rcuos/0-11    (   11) [001] d..2 82317.593981: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
121804         rcuos/0-11    (   11) [001] d..3 82317.594008: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
121805         rcuos/0-11    (   11) [001] d..2 82317.594016: 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
121806<...>-8 ( 8) [001] d..2 82317.594033: 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
121807          <idle>-0     (-----) [001] d..1 82317.594042: cpu_idle: state=0 cpu_id=1
121808 s.nexuslauncher-10023 (10023) [005] .... 82317.594141: binder_transaction: transaction=1572644 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
121809 s.nexuslauncher-10023 (10023) [005] .... 82317.594146: binder_transaction_alloc_buf: transaction=1572644 data_size=80 offsets_size=0
121810 s.nexuslauncher-10023 (10023) [005] d..4 82317.594152: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=004
121811          <idle>-0     (-----) [001] dnh2 82317.594197: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
121812<...>-9105 ( 9105) [000] .... 82317.594199: binder_transaction: transaction=1572645 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
121813          <idle>-0     (-----) [001] .n.1 82317.594203: cpu_idle: state=4294967295 cpu_id=1
121814<...>-9105 ( 9105) [000] .... 82317.594203: binder_transaction_alloc_buf: transaction=1572645 data_size=80 offsets_size=0
121815<...>-9105 ( 9105) [000] d..4 82317.594209: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
121816          <idle>-0     (-----) [001] d..2 82317.594210: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
121817<...>-9105 ( 9105) [000] d..5 82317.594233: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
121818          <idle>-0     (-----) [002] .n.1 82317.594237: cpu_idle: state=4294967295 cpu_id=2
121819 s.nexuslauncher-10023 (10023) [005] d..2 82317.594240: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
121820          <idle>-0     (-----) [005] d..1 82317.594246: cpu_idle: state=0 cpu_id=5
121821          <idle>-0     (-----) [002] d..2 82317.594270: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
121822<...>-13083 ( 8858) [001] .... 82317.594273: binder_transaction_received: transaction=1572644
121823<...>-8951 ( 8858) [002] .... 82317.594277: binder_transaction_received: transaction=1572645
121824<...>-13083 ( 8858) [001] d..1 82317.594311: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
121825<...>-8951 ( 8858) [002] d..2 82317.594328: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121826<...>-13083 ( 8858) [001] d..2 82317.594337: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
121827          <idle>-0     (-----) [002] d..2 82317.594342: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
121828<...>-9105 ( 9105) [000] d..2 82317.594344: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121829<...>-13083 ( 8858) [001] d..1 82317.594346: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
121830          <idle>-0     (-----) [000] dn.1 82317.594360: cpu_idle: state=0 cpu_id=0
121831<...>-13083 ( 8858) [001] d..2 82317.594364: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
121832          <idle>-0     (-----) [000] .n.1 82317.594368: cpu_idle: state=4294967295 cpu_id=0
121833          <idle>-0     (-----) [000] d..2 82317.594379: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
121834  appEventThread-8881  ( 8858) [002] d..2 82317.594388: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121835<...>-8951 ( 8858) [000] d..1 82317.594392: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
121836          <idle>-0     (-----) [002] d..1 82317.594398: cpu_idle: state=0 cpu_id=2
121837<...>-13083 ( 8858) [001] d..2 82317.594400: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121838<...>-8951 ( 8858) [000] d..2 82317.594407: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
121839          <idle>-0     (-----) [001] d..1 82317.594410: cpu_idle: state=0 cpu_id=1
121840          <idle>-0     (-----) [002] .n.1 82317.594413: cpu_idle: state=4294967295 cpu_id=2
121841          <idle>-0     (-----) [002] d..2 82317.594420: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
121842  appEventThread-8881  ( 8858) [002] d..2 82317.594445: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121843<...>-8951 ( 8858) [000] d..2 82317.594447: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121844          <idle>-0     (-----) [002] d..1 82317.594453: cpu_idle: state=0 cpu_id=2
121845          <idle>-0     (-----) [000] d..1 82317.594459: cpu_idle: state=0 cpu_id=0
121846<...>-8955 ( 8943) [007] d.s2 82317.595132: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
121847          <idle>-0     (-----) [000] dnh2 82317.595163: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
121848          <idle>-0     (-----) [000] .n.1 82317.595168: cpu_idle: state=4294967295 cpu_id=0
121849          <idle>-0     (-----) [000] d..2 82317.595177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
121850  kworker/u16:15-1311  ( 1311) [000] .... 82317.595277: clk_set_rate: l3_cluster1_vote_clk 1401600000
121851  kworker/u16:15-1311  ( 1311) [000] .... 82317.595383: clk_set_rate: l3_cluster0_vote_clk 1305600000
121852  kworker/u16:15-1311  ( 1311) [000] d..2 82317.595401: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121853          <idle>-0     (-----) [000] d..1 82317.595408: cpu_idle: state=0 cpu_id=0
121854          <idle>-0     (-----) [002] ...1 82317.595564: cpu_idle: state=4294967295 cpu_id=2
121855          <idle>-0     (-----) [002] d..1 82317.595567: cpu_idle: state=0 cpu_id=2
121856          <idle>-0     (-----) [000] ...1 82317.596791: cpu_idle: state=4294967295 cpu_id=0
121857          <idle>-0     (-----) [000] d..1 82317.596794: cpu_idle: state=0 cpu_id=0
121858          <idle>-0     (-----) [003] d.h2 82317.597686: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
121859          <idle>-0     (-----) [003] dnh3 82317.597696: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
121860          <idle>-0     (-----) [003] .n.1 82317.597701: cpu_idle: state=4294967295 cpu_id=3
121861          <idle>-0     (-----) [003] d..2 82317.597709: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
121862        DispSync-8879  ( 8858) [003] d..1 82317.597722: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
121863        DispSync-8879  ( 8858) [003] d..2 82317.597734: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
121864          <idle>-0     (-----) [002] .n.1 82317.597738: cpu_idle: state=4294967295 cpu_id=2
121865          <idle>-0     (-----) [002] d..2 82317.597745: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
121866        DispSync-8879  ( 8858) [003] d..2 82317.597755: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121867          <idle>-0     (-----) [003] d..1 82317.597763: cpu_idle: state=0 cpu_id=3
121868   sfEventThread-8882  ( 8858) [002] d..3 82317.597794: sched_waking: comm=android.anim pid=9005 prio=116 target_cpu=004
121869          <idle>-0     (-----) [005] dnh2 82317.597825: sched_wakeup: comm=android.anim pid=9005 prio=116 target_cpu=005
121870          <idle>-0     (-----) [005] .n.1 82317.597827: cpu_idle: state=4294967295 cpu_id=5
121871          <idle>-0     (-----) [005] d..2 82317.597832: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=android.anim next_pid=9005 next_prio=116
121872   sfEventThread-8882  ( 8858) [002] d..2 82317.597838: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
121873          <idle>-0     (-----) [002] d..1 82317.597846: cpu_idle: state=0 cpu_id=2
121874           <...>-27541 (-----) [004] d..2 82317.597953: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
121875           <...>-27541 (-----) [004] dn.3 82317.597964: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
121876           <...>-27541 (-----) [004] d..2 82317.597969: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
121877<...>-9005 ( 8943) [005] d..2 82317.597996: sched_switch: prev_comm=android.anim prev_pid=9005 prev_prio=116 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
121878          <idle>-0     (-----) [005] d..1 82317.598002: cpu_idle: state=0 cpu_id=5
121879     kworker/4:1-25432 (25432) [004] d..2 82317.598006: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121880           <...>-27541 (-----) [004] d..2 82317.598009: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
121881           <...>-27541 (-----) [004] dn.3 82317.598011: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
121882           <...>-27541 (-----) [004] d..2 82317.598013: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
121883     kworker/4:1-25432 (25432) [004] d..2 82317.598025: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121884           <...>-27541 (-----) [004] d..3 82317.598040: sched_waking: comm=sh pid=27539 prio=120 target_cpu=003
121885           <...>-27541 (-----) [004] d..3 82317.598065: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
121886           <...>-27541 (-----) [004] dn.4 82317.598068: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
121887          <idle>-0     (-----) [000] dnh2 82317.598068: sched_wakeup: comm=sh pid=27539 prio=120 target_cpu=000
121888           <...>-27541 (-----) [004] d..2 82317.598070: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=R+ ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
121889          <idle>-0     (-----) [000] .n.1 82317.598072: cpu_idle: state=4294967295 cpu_id=0
121890     kworker/4:1-25432 (25432) [004] d..2 82317.598076: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=Shutdown thread next_pid=27541 next_prio=120
121891          <idle>-0     (-----) [000] d..2 82317.598078: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27539 next_prio=120
121892           <...>-27541 (-----) [004] d..2 82317.598083: sched_switch: prev_comm=Shutdown thread prev_pid=27541 prev_prio=120 prev_state=x ==> next_comm=swapper/4 next_pid=0 next_prio=120
121893          <idle>-0     (-----) [004] d..1 82317.598096: cpu_idle: state=0 cpu_id=4
121894          <idle>-0     (-----) [004] d.s2 82317.598460: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=004
121895          <idle>-0     (-----) [001] d.s2 82317.598463: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
121896          <idle>-0     (-----) [001] dns3 82317.598473: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
121897          <idle>-0     (-----) [001] dnH2 82317.598511: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
121898          <idle>-0     (-----) [004] d.H4 82317.598514: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
121899          <idle>-0     (-----) [001] .n.1 82317.598520: cpu_idle: state=4294967295 cpu_id=1
121900          <idle>-0     (-----) [004] ...1 82317.598526: cpu_idle: state=4294967295 cpu_id=4
121901          <idle>-0     (-----) [001] d..2 82317.598527: 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
121902          <idle>-0     (-----) [004] d..1 82317.598528: cpu_idle: state=0 cpu_id=4
121903          <idle>-0     (-----) [003] dnh2 82317.598530: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
121904          <idle>-0     (-----) [003] .n.1 82317.598534: cpu_idle: state=4294967295 cpu_id=3
121905          <idle>-0     (-----) [003] d..2 82317.598540: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
121906     rcu_preempt-7     (    7) [001] d..2 82317.598545: 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
121907<...>-8 ( 8) [001] d..2 82317.598559: 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
121908          <idle>-0     (-----) [001] d..1 82317.598566: cpu_idle: state=0 cpu_id=1
121909         sugov:0-576   (  576) [003] .... 82317.598570: clk_set_rate: pwrcl_clk 1056000000
121910         sugov:0-576   (  576) [003] .... 82317.598646: clk_set_rate: cpu3_pwrcl_clk 1766400000
121911         sugov:0-576   (  576) [003] .... 82317.598654: clk_set_rate: cpu2_pwrcl_clk 1766400000
121912         sugov:0-576   (  576) [003] .... 82317.598660: clk_set_rate: cpu1_pwrcl_clk 1766400000
121913         sugov:0-576   (  576) [003] .... 82317.598666: clk_set_rate: cpu0_pwrcl_clk 1056000000
121914          <idle>-0     (-----) [001] ...1 82317.598683: cpu_idle: state=4294967295 cpu_id=1
121915          <idle>-0     (-----) [001] d..1 82317.598689: cpu_idle: state=0 cpu_id=1
121916         sugov:0-576   (  576) [003] .... 82317.598779: cpu_frequency: state=1056000 cpu_id=0
121917         sugov:0-576   (  576) [003] .... 82317.598802: cpu_frequency: state=1056000 cpu_id=1
121918         sugov:0-576   (  576) [003] .... 82317.598805: cpu_frequency: state=1056000 cpu_id=2
121919         sugov:0-576   (  576) [003] .... 82317.598809: cpu_frequency: state=1056000 cpu_id=3
121920         sugov:0-576   (  576) [003] d..2 82317.598832: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121921          <idle>-0     (-----) [003] d..1 82317.598842: cpu_idle: state=0 cpu_id=3
121922              sh-27539 (27539) [000] d..2 82317.599022: sched_waking: comm=shell svc 27539 pid=27540 prio=120 target_cpu=004
121923              sh-27539 (27539) [000] d..3 82317.599073: sched_wakeup: comm=shell svc 27539 pid=27540 prio=120 target_cpu=001
121924          <idle>-0     (-----) [001] .n.1 82317.599078: cpu_idle: state=4294967295 cpu_id=1
121925          <idle>-0     (-----) [001] d..2 82317.599114: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=shell svc 27539 next_pid=27540 next_prio=120
121926           <...>-27540 (-----) [001] d..2 82317.599237: sched_switch: prev_comm=shell svc 27539 prev_pid=27540 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
121927          <idle>-0     (-----) [001] d..1 82317.599248: cpu_idle: state=0 cpu_id=1
121928              sh-27539 (27539) [000] d..4 82317.599689: sched_waking: comm=shell svc 27539 pid=27540 prio=120 target_cpu=001
121929              sh-27539 (27539) [000] d..5 82317.599705: sched_wakeup: comm=shell svc 27539 pid=27540 prio=120 target_cpu=000
121930              sh-27539 (27539) [000] d..2 82317.599715: sched_switch: prev_comm=sh prev_pid=27539 prev_prio=120 prev_state=x ==> next_comm=shell svc 27539 next_pid=27540 next_prio=120
121931           <...>-27540 (-----) [000] d..2 82317.599813: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
121932           <...>-27540 (-----) [000] d..3 82317.599832: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
121933           <...>-27540 (-----) [000] d..2 82317.600026: sched_switch: prev_comm=shell svc 27539 prev_pid=27540 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=960 next_prio=120
121934            adbd-960   (  960) [000] d..1 82317.600182: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
121935            adbd-960   (  960) [000] d..2 82317.600218: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
121936            adbd-960   (  960) [000] d..2 82317.600328: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
121937            adbd-24055 (  960) [000] d..2 82317.600446: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121938          <idle>-0     (-----) [003] d.h3 82317.600464: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
121939          <idle>-0     (-----) [000] d..1 82317.600467: cpu_idle: state=0 cpu_id=0
121940          <idle>-0     (-----) [003] dnh4 82317.600482: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
121941          <idle>-0     (-----) [003] .n.1 82317.600490: cpu_idle: state=4294967295 cpu_id=3
121942          <idle>-0     (-----) [003] d..2 82317.600500: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
121943   kworker/u17:1-570   (  570) [003] d..2 82317.600523: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
121944   kworker/u17:1-570   (  570) [003] d..3 82317.600535: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
121945   kworker/u17:1-570   (  570) [003] d..2 82317.600562: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
121946     kworker/3:1-25210 (25210) [003] d..2 82317.600574: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
121947     kworker/3:1-25210 (25210) [003] d..3 82317.600586: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
121948          <idle>-0     (-----) [000] .n.1 82317.600593: cpu_idle: state=4294967295 cpu_id=0
121949          <idle>-0     (-----) [000] d..2 82317.600605: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
121950     kworker/3:1-25210 (25210) [003] d..2 82317.600608: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121951          <idle>-0     (-----) [003] d..1 82317.600617: cpu_idle: state=0 cpu_id=3
121952            adbd-24055 (  960) [000] d..2 82317.600671: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121953          <idle>-0     (-----) [000] d..1 82317.600681: cpu_idle: state=0 cpu_id=0
121954          <idle>-0     (-----) [003] d.h3 82317.600687: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
121955          <idle>-0     (-----) [003] dnh4 82317.600695: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
121956          <idle>-0     (-----) [003] .n.1 82317.600700: cpu_idle: state=4294967295 cpu_id=3
121957          <idle>-0     (-----) [003] d..2 82317.600709: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
121958   kworker/u17:1-570   (  570) [003] d..2 82317.600718: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
121959   kworker/u17:1-570   (  570) [003] d..3 82317.600725: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
121960   kworker/u17:1-570   (  570) [003] d..2 82317.600744: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
121961     kworker/3:1-25210 (25210) [003] d..2 82317.600752: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
121962     kworker/3:1-25210 (25210) [003] d..3 82317.600763: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
121963          <idle>-0     (-----) [000] .n.1 82317.600769: cpu_idle: state=4294967295 cpu_id=0
121964          <idle>-0     (-----) [000] d..2 82317.600778: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
121965     kworker/3:1-25210 (25210) [003] d..2 82317.600781: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
121966          <idle>-0     (-----) [003] d..1 82317.600790: cpu_idle: state=0 cpu_id=3
121967            adbd-24055 (  960) [000] d..2 82317.600846: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121968          <idle>-0     (-----) [003] d.h3 82317.600849: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
121969          <idle>-0     (-----) [000] d..1 82317.600857: cpu_idle: state=0 cpu_id=0
121970          <idle>-0     (-----) [003] dnh4 82317.600857: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
121971          <idle>-0     (-----) [003] .n.1 82317.600863: cpu_idle: state=4294967295 cpu_id=3
121972          <idle>-0     (-----) [003] d..2 82317.600872: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
121973   kworker/u17:1-570   (  570) [003] d..2 82317.600881: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
121974   kworker/u17:1-570   (  570) [003] d..3 82317.600888: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
121975   kworker/u17:1-570   (  570) [003] d..2 82317.600907: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
121976     kworker/3:1-25210 (25210) [003] d.h2 82317.600924: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
121977     kworker/3:1-25210 (25210) [003] dnh3 82317.600936: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
121978     kworker/3:1-25210 (25210) [003] d..2 82317.600945: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
121979   kworker/u17:1-570   (  570) [003] d..2 82317.600971: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
121980     kworker/3:1-25210 (25210) [003] d..2 82317.600977: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
121981     kworker/3:1-25210 (25210) [003] d..3 82317.600988: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
121982          <idle>-0     (-----) [000] .n.1 82317.600994: cpu_idle: state=4294967295 cpu_id=0
121983          <idle>-0     (-----) [000] d..2 82317.601003: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
121984     kworker/3:1-25210 (25210) [003] d..2 82317.601006: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
121985     kworker/3:1-25210 (25210) [003] d..3 82317.601023: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
121986            adbd-24055 (  960) [000] d..2 82317.601028: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
121987     kworker/3:1-25210 (25210) [003] d..2 82317.601035: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
121988          <idle>-0     (-----) [000] d..1 82317.601037: cpu_idle: state=0 cpu_id=0
121989            adbd-24054 (  960) [003] d..2 82317.601065: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
121990            adbd-24054 (  960) [003] d..3 82317.601080: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
121991            adbd-24054 (  960) [003] d..2 82317.601148: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
121992            adbd-960   (  960) [003] d.h4 82317.601166: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
121993            adbd-960   (  960) [003] dnh5 82317.601178: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
121994            adbd-960   (  960) [003] d..2 82317.601187: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
121995   kworker/u17:1-570   (  570) [003] d..2 82317.601196: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
121996   kworker/u17:1-570   (  570) [003] d..3 82317.601202: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
121997   kworker/u17:1-570   (  570) [003] d..2 82317.601222: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
121998     kworker/3:1-25210 (25210) [003] d..2 82317.601230: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
121999     kworker/3:1-25210 (25210) [003] d..3 82317.601240: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
122000     kworker/3:1-25210 (25210) [003] d..2 82317.601251: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
122001            adbd-24054 (  960) [003] d..2 82317.601313: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
122002            adbd-960   (  960) [003] d..1 82317.601398: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
122003            adbd-960   (  960) [003] d..2 82317.601412: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
122004          <idle>-0     (-----) [000] .n.1 82317.601417: cpu_idle: state=4294967295 cpu_id=0
122005          <idle>-0     (-----) [000] d..2 82317.601426: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
122006            adbd-960   (  960) [003] d..2 82317.601472: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122007            adbd-24055 (  960) [000] d..2 82317.601485: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122008          <idle>-0     (-----) [000] d..1 82317.601495: cpu_idle: state=0 cpu_id=0
122009          <idle>-0     (-----) [003] d.h3 82317.601498: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
122010          <idle>-0     (-----) [003] dnh4 82317.601506: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
122011          <idle>-0     (-----) [003] d..2 82317.601519: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
122012   kworker/u17:1-570   (  570) [003] d..2 82317.601529: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
122013   kworker/u17:1-570   (  570) [003] d..3 82317.601537: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
122014   kworker/u17:1-570   (  570) [003] d..2 82317.601556: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
122015     kworker/3:1-25210 (25210) [003] d..2 82317.601565: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
122016     kworker/3:1-25210 (25210) [003] d..3 82317.601576: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
122017          <idle>-0     (-----) [000] .n.1 82317.601581: cpu_idle: state=4294967295 cpu_id=0
122018          <idle>-0     (-----) [000] d..2 82317.601590: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
122019     kworker/3:1-25210 (25210) [003] d..2 82317.601594: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122020          <idle>-0     (-----) [003] d..1 82317.601606: cpu_idle: state=0 cpu_id=3
122021            adbd-24055 (  960) [000] d..2 82317.601610: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122022          <idle>-0     (-----) [000] d..1 82317.601619: cpu_idle: state=0 cpu_id=0
122023          <idle>-0     (-----) [000] ...1 82317.602790: cpu_idle: state=4294967295 cpu_id=0
122024          <idle>-0     (-----) [000] d..1 82317.602794: cpu_idle: state=0 cpu_id=0
122025<...>-8955 ( 8943) [007] d.s2 82317.605125: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122026          <idle>-0     (-----) [001] d.s2 82317.605133: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
122027          <idle>-0     (-----) [001] dns3 82317.605148: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
122028          <idle>-0     (-----) [000] dnh2 82317.605148: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122029          <idle>-0     (-----) [001] dns2 82317.605151: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
122030          <idle>-0     (-----) [000] .n.1 82317.605154: cpu_idle: state=4294967295 cpu_id=0
122031          <idle>-0     (-----) [001] dns3 82317.605162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
122032          <idle>-0     (-----) [000] d..2 82317.605165: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122033          <idle>-0     (-----) [001] .n.1 82317.605173: cpu_idle: state=4294967295 cpu_id=1
122034          <idle>-0     (-----) [001] d..2 82317.605184: 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
122035     rcu_preempt-7     (    7) [001] d..2 82317.605207: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
122036     rcu_preempt-7     (    7) [001] d..3 82317.605241: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
122037     rcu_preempt-7     (    7) [001] d..2 82317.605248: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
122038     rcu_preempt-7     (    7) [001] d..3 82317.605274: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
122039  kworker/u16:15-1311  ( 1311) [000] .... 82317.605275: clk_set_rate: l3_cluster0_vote_clk 403200000
122040     rcu_preempt-7     (    7) [001] d..2 82317.605291: 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
122041         rcuop/0-10    (   10) [001] d..2 82317.605296: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
122042         rcuop/0-10    (   10) [001] d..3 82317.605322: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
122043         rcuop/0-10    (   10) [001] d..2 82317.605497: 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
122044         rcuop/4-45    (   45) [001] d..2 82317.605503: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
122045         rcuop/4-45    (   45) [001] d..3 82317.605533: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
122046  kworker/u16:15-1311  ( 1311) [000] d..2 82317.605556: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
122047          <idle>-0     (-----) [000] d..1 82317.605570: cpu_idle: state=0 cpu_id=0
122048         rcuop/4-45    (   45) [001] d.s3 82317.605580: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122049         rcuop/4-45    (   45) [001] d.s4 82317.605590: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
122050         rcuop/4-45    (   45) [001] d.s4 82317.605597: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122051          <idle>-0     (-----) [000] .n.1 82317.605604: cpu_idle: state=4294967295 cpu_id=0
122052          <idle>-0     (-----) [000] d..2 82317.605613: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122053         rcuop/4-45    (   45) [001] d..2 82317.605626: 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
122054  kworker/u16:15-1311  ( 1311) [000] .... 82317.605682: clk_set_rate: l3_cluster1_vote_clk 1478400000
122055  kworker/u16:15-1311  ( 1311) [000] .... 82317.605687: clk_set_rate: l3_clk 1478400000
122056  kworker/u16:15-1311  ( 1311) [000] d..2 82317.605767: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
122057         rcuop/1-21    (   21) [001] d.s3 82317.605775: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122058          <idle>-0     (-----) [000] d..1 82317.605778: cpu_idle: state=0 cpu_id=0
122059         rcuop/1-21    (   21) [001] d.s4 82317.605783: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
122060         rcuop/1-21    (   21) [001] d.s4 82317.605790: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122061          <idle>-0     (-----) [000] .n.1 82317.605795: cpu_idle: state=4294967295 cpu_id=0
122062          <idle>-0     (-----) [000] d..2 82317.605805: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122063  kworker/u16:15-1311  ( 1311) [000] d..2 82317.605841: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122064          <idle>-0     (-----) [000] d..1 82317.605850: cpu_idle: state=0 cpu_id=0
122065         rcuop/1-21    (   21) [001] d..2 82317.606022: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
122066         rcuop/5-53    (   53) [001] d..2 82317.606036: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcu_sched next_pid=8 next_prio=120
122067<...>-8 ( 8) [001] d..2 82317.606044: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
122068<...>-8 ( 8) [001] d..3 82317.606059: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=001
122069<...>-8 ( 8) [001] d..2 82317.606067: 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
122070         rcuos/0-11    (   11) [001] d..2 82317.606078: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
122071         rcuos/0-11    (   11) [001] d..3 82317.606090: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
122072         rcuos/0-11    (   11) [001] d..2 82317.606101: sched_switch: prev_comm=rcuos/0 prev_pid=11 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
122073     kworker/1:1-25249 (25249) [001] d..2 82317.606124: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122074          <idle>-0     (-----) [001] d..1 82317.606136: cpu_idle: state=0 cpu_id=1
122075          <idle>-0     (-----) [000] ...1 82317.606988: cpu_idle: state=4294967295 cpu_id=0
122076          <idle>-0     (-----) [000] d..1 82317.606992: cpu_idle: state=0 cpu_id=0
122077          <idle>-0     (-----) [000] ...1 82317.608239: cpu_idle: state=4294967295 cpu_id=0
122078          <idle>-0     (-----) [000] d..1 82317.608244: cpu_idle: state=0 cpu_id=0
122079          <idle>-0     (-----) [003] d.h2 82317.610133: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
122080          <idle>-0     (-----) [003] dnh3 82317.610150: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
122081          <idle>-0     (-----) [003] .n.1 82317.610158: cpu_idle: state=4294967295 cpu_id=3
122082          <idle>-0     (-----) [003] d..2 82317.610170: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
122083        DispSync-8879  ( 8858) [003] d..1 82317.610206: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
122084        DispSync-8879  ( 8858) [003] d..2 82317.610221: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
122085          <idle>-0     (-----) [002] .n.1 82317.610227: cpu_idle: state=4294967295 cpu_id=2
122086          <idle>-0     (-----) [002] d..2 82317.610237: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
122087        DispSync-8879  ( 8858) [003] d..2 82317.610261: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122088          <idle>-0     (-----) [003] d..1 82317.610274: cpu_idle: state=0 cpu_id=3
122089  appEventThread-8881  ( 8858) [002] d..3 82317.610289: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
122090  appEventThread-8881  ( 8858) [002] d..4 82317.610310: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
122091          <idle>-0     (-----) [000] .n.1 82317.610315: cpu_idle: state=4294967295 cpu_id=0
122092  appEventThread-8881  ( 8858) [002] d..3 82317.610326: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
122093          <idle>-0     (-----) [000] d..2 82317.610326: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
122094          <idle>-0     (-----) [004] dnh2 82317.610349: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
122095          <idle>-0     (-----) [004] .n.1 82317.610351: cpu_idle: state=4294967295 cpu_id=4
122096          <idle>-0     (-----) [004] d..2 82317.610355: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
122097  appEventThread-8881  ( 8858) [002] d..2 82317.610375: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122098          <idle>-0     (-----) [002] d..1 82317.610387: cpu_idle: state=0 cpu_id=2
122099 s.nexuslauncher-10023 (10023) [004] .... 82317.610535: binder_transaction: transaction=1572646 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
122100 s.nexuslauncher-10023 (10023) [004] .... 82317.610541: binder_transaction_alloc_buf: transaction=1572646 data_size=80 offsets_size=0
122101 s.nexuslauncher-10023 (10023) [004] d..4 82317.610546: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
122102<...>-9105 ( 9105) [000] .... 82317.610566: binder_transaction: transaction=1572647 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
122103<...>-9105 ( 9105) [000] .... 82317.610570: binder_transaction_alloc_buf: transaction=1572647 data_size=80 offsets_size=0
122104          <idle>-0     (-----) [001] dnh2 82317.610573: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
122105<...>-9105 ( 9105) [000] d..4 82317.610576: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
122106          <idle>-0     (-----) [001] .n.1 82317.610578: cpu_idle: state=4294967295 cpu_id=1
122107          <idle>-0     (-----) [001] d..2 82317.610588: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
122108 s.nexuslauncher-10023 (10023) [004] d..2 82317.610602: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
122109<...>-9105 ( 9105) [000] d..5 82317.610606: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
122110          <idle>-0     (-----) [004] d..1 82317.610608: cpu_idle: state=0 cpu_id=4
122111          <idle>-0     (-----) [002] .n.1 82317.610611: cpu_idle: state=4294967295 cpu_id=2
122112<...>-8951 ( 8858) [001] .... 82317.610615: binder_transaction_received: transaction=1572646
122113          <idle>-0     (-----) [002] d..2 82317.610621: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
122114<...>-13083 ( 8858) [002] .... 82317.610627: binder_transaction_received: transaction=1572647
122115<...>-8951 ( 8858) [001] d..1 82317.610653: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
122116<...>-8951 ( 8858) [001] d..2 82317.610672: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
122117<...>-13083 ( 8858) [002] d..2 82317.610678: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
122118<...>-8951 ( 8858) [001] d..1 82317.610683: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
122119<...>-9105 ( 9105) [000] d..2 82317.610685: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122120          <idle>-0     (-----) [000] dn.1 82317.610699: cpu_idle: state=0 cpu_id=0
122121<...>-8951 ( 8858) [001] d..2 82317.610702: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
122122          <idle>-0     (-----) [000] .n.1 82317.610706: cpu_idle: state=4294967295 cpu_id=0
122123  appEventThread-8881  ( 8858) [002] d..2 82317.610717: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122124          <idle>-0     (-----) [000] d..2 82317.610719: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
122125          <idle>-0     (-----) [002] d..1 82317.610726: cpu_idle: state=0 cpu_id=2
122126<...>-13083 ( 8858) [000] d..1 82317.610733: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
122127<...>-8951 ( 8858) [001] d..2 82317.610739: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122128<...>-13083 ( 8858) [000] d..2 82317.610747: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
122129          <idle>-0     (-----) [001] d..1 82317.610748: cpu_idle: state=0 cpu_id=1
122130          <idle>-0     (-----) [002] .n.1 82317.610753: cpu_idle: state=4294967295 cpu_id=2
122131          <idle>-0     (-----) [002] d..2 82317.610761: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
122132<...>-13083 ( 8858) [000] d..2 82317.610788: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122133  appEventThread-8881  ( 8858) [002] d..2 82317.610790: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122134          <idle>-0     (-----) [002] d..1 82317.610798: cpu_idle: state=0 cpu_id=2
122135          <idle>-0     (-----) [000] d..1 82317.610798: cpu_idle: state=0 cpu_id=0
122136<...>-8955 ( 8943) [007] d.s2 82317.611798: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122137          <idle>-0     (-----) [001] d.s2 82317.611801: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
122138 TaskSnapshotPer-9077  ( 8943) [006] d.H2 82317.611838: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
122139          <idle>-0     (-----) [001] dns3 82317.611839: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
122140          <idle>-0     (-----) [000] dnh2 82317.611844: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122141 TaskSnapshotPer-9077  ( 8943) [006] d.H3 82317.611848: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
122142          <idle>-0     (-----) [000] .n.1 82317.611849: cpu_idle: state=4294967295 cpu_id=0
122143          <idle>-0     (-----) [005] .n.1 82317.611853: cpu_idle: state=4294967295 cpu_id=5
122144          <idle>-0     (-----) [001] .n.1 82317.611856: cpu_idle: state=4294967295 cpu_id=1
122145          <idle>-0     (-----) [005] d..2 82317.611858: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
122146          <idle>-0     (-----) [000] d..2 82317.611860: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122147          <idle>-0     (-----) [001] d..2 82317.611864: 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
122148         sugov:4-577   (  577) [005] .... 82317.611879: clk_set_rate: perfcl_clk 2803200000
122149         sugov:4-577   (  577) [005] .... 82317.611881: clk_set_rate: cpu7_perfcl_clk 2476800000
122150         sugov:4-577   (  577) [005] .... 82317.611886: clk_set_rate: cpu6_perfcl_clk 2476800000
122151         sugov:4-577   (  577) [005] .... 82317.611890: clk_set_rate: cpu5_perfcl_clk 2476800000
122152     rcu_preempt-7     (    7) [001] d..2 82317.611893: 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
122153         sugov:4-577   (  577) [005] .... 82317.611894: clk_set_rate: cpu4_perfcl_clk 2803200000
122154         sugov:4-577   (  577) [005] .... 82317.611899: cpu_frequency: state=2803200 cpu_id=4
122155          <idle>-0     (-----) [001] d..1 82317.611903: cpu_idle: state=0 cpu_id=1
122156         sugov:4-577   (  577) [005] .... 82317.611909: cpu_frequency: state=2803200 cpu_id=5
122157         sugov:4-577   (  577) [005] .... 82317.611911: cpu_frequency: state=2803200 cpu_id=6
122158         sugov:4-577   (  577) [005] .... 82317.611912: cpu_frequency: state=2803200 cpu_id=7
122159         sugov:4-577   (  577) [005] d..2 82317.611919: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
122160          <idle>-0     (-----) [005] d..1 82317.611922: cpu_idle: state=0 cpu_id=5
122161  kworker/u16:15-1311  ( 1311) [000] d..2 82317.612056: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
122162          <idle>-0     (-----) [000] d..1 82317.612066: cpu_idle: state=0 cpu_id=0
122163          <idle>-0     (-----) [001] d.s3 82317.612083: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122164          <idle>-0     (-----) [001] d.s4 82317.612092: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
122165          <idle>-0     (-----) [001] d.s4 82317.612099: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122166          <idle>-0     (-----) [000] .n.1 82317.612104: cpu_idle: state=4294967295 cpu_id=0
122167          <idle>-0     (-----) [001] ...1 82317.612107: cpu_idle: state=4294967295 cpu_id=1
122168          <idle>-0     (-----) [001] d..1 82317.612111: cpu_idle: state=0 cpu_id=1
122169          <idle>-0     (-----) [000] d..2 82317.612113: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122170  kworker/u16:15-1311  ( 1311) [000] d..2 82317.612138: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122171          <idle>-0     (-----) [000] d..1 82317.612146: cpu_idle: state=0 cpu_id=0
122172          <idle>-0     (-----) [003] d.h2 82317.614150: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
122173          <idle>-0     (-----) [003] dnh3 82317.614166: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
122174          <idle>-0     (-----) [003] .n.1 82317.614174: cpu_idle: state=4294967295 cpu_id=3
122175          <idle>-0     (-----) [003] d..2 82317.614184: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
122176        DispSync-8879  ( 8858) [003] d..1 82317.614200: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
122177        DispSync-8879  ( 8858) [003] d..2 82317.614214: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
122178          <idle>-0     (-----) [002] .n.1 82317.614219: cpu_idle: state=4294967295 cpu_id=2
122179          <idle>-0     (-----) [002] d..2 82317.614228: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
122180        DispSync-8879  ( 8858) [003] d..2 82317.614239: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122181   sfEventThread-8882  ( 8858) [002] d..1 82317.614248: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
122182          <idle>-0     (-----) [003] d..1 82317.614250: cpu_idle: state=0 cpu_id=3
122183   sfEventThread-8882  ( 8858) [002] d..2 82317.614265: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
122184          <idle>-0     (-----) [003] .n.1 82317.614270: cpu_idle: state=4294967295 cpu_id=3
122185          <idle>-0     (-----) [003] d..2 82317.614278: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
122186   sfEventThread-8882  ( 8858) [002] d..2 82317.614288: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122187          <idle>-0     (-----) [002] d..1 82317.614297: cpu_idle: state=0 cpu_id=2
122188        DispSync-8879  ( 8858) [003] d..2 82317.614300: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122189          <idle>-0     (-----) [003] d..1 82317.614307: cpu_idle: state=0 cpu_id=3
122190<...>-8955 ( 8943) [007] d.s2 82317.615130: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122191          <idle>-0     (-----) [000] dnh2 82317.615153: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122192          <idle>-0     (-----) [000] .n.1 82317.615159: cpu_idle: state=4294967295 cpu_id=0
122193          <idle>-0     (-----) [000] d..2 82317.615169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122194  kworker/u16:15-1311  ( 1311) [000] d..2 82317.615419: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
122195          <idle>-0     (-----) [000] d..1 82317.615431: cpu_idle: state=0 cpu_id=0
122196          <idle>-0     (-----) [001] d.s3 82317.615440: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122197          <idle>-0     (-----) [001] d.s4 82317.615448: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
122198          <idle>-0     (-----) [001] d.s4 82317.615454: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122199          <idle>-0     (-----) [000] .n.1 82317.615460: cpu_idle: state=4294967295 cpu_id=0
122200          <idle>-0     (-----) [001] ...1 82317.615460: cpu_idle: state=4294967295 cpu_id=1
122201          <idle>-0     (-----) [001] d..1 82317.615464: cpu_idle: state=0 cpu_id=1
122202          <idle>-0     (-----) [000] d..2 82317.615470: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122203  kworker/u16:15-1311  ( 1311) [000] .... 82317.615555: clk_set_rate: l3_cluster0_vote_clk 300000000
122204  kworker/u16:15-1311  ( 1311) [000] d..2 82317.615577: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122205          <idle>-0     (-----) [000] d..1 82317.615588: cpu_idle: state=0 cpu_id=0
122206<...>-8955 ( 8943) [007] d..1 82317.616663: sched_waking: comm=ReferenceQueueD pid=8952 prio=124 target_cpu=000
122207          <idle>-0     (-----) [000] dnh2 82317.616690: sched_wakeup: comm=ReferenceQueueD pid=8952 prio=124 target_cpu=000
122208          <idle>-0     (-----) [000] .n.1 82317.616696: cpu_idle: state=4294967295 cpu_id=0
122209          <idle>-0     (-----) [000] d..2 82317.616705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ReferenceQueueD next_pid=8952 next_prio=124
122210<...>-8955 ( 8943) [007] d..2 82317.616716: sched_switch: prev_comm=HeapTaskDaemon prev_pid=8955 prev_prio=124 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
122211          <idle>-0     (-----) [007] d..1 82317.616727: cpu_idle: state=0 cpu_id=7
122212 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.616855: sched_waking: comm=Binder:23620_3 pid=23634 prio=120 target_cpu=000
122213 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.616876: sched_wakeup: comm=Binder:23620_3 pid=23634 prio=120 target_cpu=000
122214 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.616954: sched_waking: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=003
122215 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.616979: sched_wakeup: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=001
122216          <idle>-0     (-----) [001] .n.1 82317.616984: cpu_idle: state=4294967295 cpu_id=1
122217          <idle>-0     (-----) [001] d..2 82317.616996: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_8 next_pid=10599 next_prio=120
122218 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617015: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=000
122219 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.617057: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122220  Binder:10190_8-10599 (10190) [001] d..2 82317.617089: sched_switch: prev_comm=Binder:10190_8 prev_pid=10599 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
122221   Binder:9871_6-10122 ( 9871) [001] d..2 82317.617168: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122222          <idle>-0     (-----) [001] d..1 82317.617177: cpu_idle: state=0 cpu_id=1
122223 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617306: sched_waking: comm=Binder:23620_1 pid=23632 prio=120 target_cpu=000
122224 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.617330: sched_wakeup: comm=Binder:23620_1 pid=23632 prio=120 target_cpu=001
122225          <idle>-0     (-----) [001] .n.1 82317.617336: cpu_idle: state=4294967295 cpu_id=1
122226          <idle>-0     (-----) [001] d..2 82317.617344: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:23620_1 next_pid=23632 next_prio=120
122227 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617360: sched_waking: comm=Binder:23620_4 pid=23635 prio=120 target_cpu=000
122228 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.617389: sched_wakeup: comm=Binder:23620_4 pid=23635 prio=120 target_cpu=001
122229 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617423: sched_waking: comm=audioserver pid=819 prio=120 target_cpu=001
122230  Binder:23620_1-23632 (23620) [001] d..2 82317.617444: sched_switch: prev_comm=Binder:23620_1 prev_pid=23632 prev_prio=120 prev_state=S ==> next_comm=Binder:23620_4 next_pid=23635 next_prio=120
122231 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.617459: sched_wakeup: comm=audioserver pid=819 prio=120 target_cpu=002
122232          <idle>-0     (-----) [002] .n.1 82317.617465: cpu_idle: state=4294967295 cpu_id=2
122233  Binder:23620_4-23635 (23620) [001] d..2 82317.617466: sched_switch: prev_comm=Binder:23620_4 prev_pid=23635 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122234          <idle>-0     (-----) [001] d..1 82317.617474: cpu_idle: state=0 cpu_id=1
122235          <idle>-0     (-----) [002] d..2 82317.617475: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=audioserver next_pid=819 next_prio=120
122236 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617512: sched_waking: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=000
122237 ReferenceQueueD-8952  ( 8943) [000] dn.6 82317.617528: sched_wakeup: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=000
122238 ReferenceQueueD-8952  ( 8943) [000] d..2 82317.617536: sched_switch: prev_comm=ReferenceQueueD prev_pid=8952 prev_prio=124 prev_state=R+ ==> next_comm=Binder:9090_6 next_pid=10728 next_prio=120
122239     audioserver-819   (  819) [002] d..2 82317.617594: sched_switch: prev_comm=audioserver prev_pid=819 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122240          <idle>-0     (-----) [002] d..1 82317.617606: cpu_idle: state=0 cpu_id=2
122241   Binder:9090_6-10728 ( 9090) [000] d..2 82317.617608: sched_switch: prev_comm=Binder:9090_6 prev_pid=10728 prev_prio=120 prev_state=S ==> next_comm=Binder:23620_3 next_pid=23634 next_prio=120
122242  Binder:23620_3-23634 (23620) [000] d..2 82317.617622: sched_switch: prev_comm=Binder:23620_3 prev_pid=23634 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=8952 next_prio=124
122243 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617628: sched_waking: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=000
122244 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.617638: sched_wakeup: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=000
122245 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617696: sched_waking: comm=Binder:10049_1 pid=10096 prio=120 target_cpu=002
122246 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.617731: sched_wakeup: comm=Binder:10049_1 pid=10096 prio=120 target_cpu=001
122247          <idle>-0     (-----) [001] .n.1 82317.617737: cpu_idle: state=4294967295 cpu_id=1
122248          <idle>-0     (-----) [001] d..2 82317.617745: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10049_1 next_pid=10096 next_prio=120
122249 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617828: sched_waking: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=001
122250  Binder:10049_1-10096 (10049) [001] d..2 82317.617849: sched_switch: prev_comm=Binder:10049_1 prev_pid=10096 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122251 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.617850: sched_wakeup: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=002
122252          <idle>-0     (-----) [002] .n.1 82317.617856: cpu_idle: state=4294967295 cpu_id=2
122253          <idle>-0     (-----) [001] d..1 82317.617857: cpu_idle: state=0 cpu_id=1
122254          <idle>-0     (-----) [002] d..2 82317.617866: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_8 next_pid=10599 next_prio=120
122255 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617874: sched_waking: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122256 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.617895: sched_wakeup: comm=Binder:10190_D pid=11935 prio=120 target_cpu=001
122257          <idle>-0     (-----) [001] .n.1 82317.617900: cpu_idle: state=4294967295 cpu_id=1
122258 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617901: sched_waking: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=001
122259          <idle>-0     (-----) [001] d..2 82317.617911: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_D next_pid=11935 next_prio=120
122260 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.617925: sched_wakeup: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=003
122261          <idle>-0     (-----) [003] .n.1 82317.617930: cpu_idle: state=4294967295 cpu_id=3
122262          <idle>-0     (-----) [003] d..2 82317.617940: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_4 next_pid=10273 next_prio=120
122263  Binder:10190_4-10273 (10190) [003] d..2 82317.617967: sched_switch: prev_comm=Binder:10190_4 prev_pid=10273 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122264 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.617971: sched_waking: comm=Binder:10190_D pid=11935 prio=120 target_cpu=001
122265  Binder:10190_D-11935 (10190) [001] d..2 82317.617972: sched_switch: prev_comm=Binder:10190_D prev_pid=11935 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122266  Binder:10190_8-10599 (10190) [002] d..2 82317.617972: sched_switch: prev_comm=Binder:10190_8 prev_pid=10599 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122267          <idle>-0     (-----) [003] d..1 82317.617977: cpu_idle: state=0 cpu_id=3
122268          <idle>-0     (-----) [001] d..1 82317.617979: cpu_idle: state=0 cpu_id=1
122269          <idle>-0     (-----) [002] d..1 82317.617984: cpu_idle: state=0 cpu_id=2
122270 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.617984: sched_wakeup: comm=Binder:10190_D pid=11935 prio=120 target_cpu=001
122271          <idle>-0     (-----) [001] .n.1 82317.617989: cpu_idle: state=4294967295 cpu_id=1
122272          <idle>-0     (-----) [001] d..2 82317.617996: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_D next_pid=11935 next_prio=120
122273 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618005: sched_waking: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=002
122274 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618017: sched_wakeup: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=002
122275          <idle>-0     (-----) [002] .n.1 82317.618022: cpu_idle: state=4294967295 cpu_id=2
122276          <idle>-0     (-----) [002] d..2 82317.618032: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_8 next_pid=10599 next_prio=120
122277  Binder:10190_8-10599 (10190) [002] d..2 82317.618051: sched_switch: prev_comm=Binder:10190_8 prev_pid=10599 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122278 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618057: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122279          <idle>-0     (-----) [002] d..1 82317.618059: cpu_idle: state=0 cpu_id=2
122280  Binder:10190_D-11935 (10190) [001] d..2 82317.618067: sched_switch: prev_comm=Binder:10190_D prev_pid=11935 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122281 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618076: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122282          <idle>-0     (-----) [001] d..2 82317.618083: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
122283 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618135: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122284   Binder:9871_6-10122 ( 9871) [001] d..2 82317.618136: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122285          <idle>-0     (-----) [001] d..1 82317.618144: cpu_idle: state=0 cpu_id=1
122286          <idle>-0     (-----) [001] .n.1 82317.618147: cpu_idle: state=4294967295 cpu_id=1
122287 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618149: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122288          <idle>-0     (-----) [001] d..2 82317.618155: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
122289 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618174: sched_waking: comm=Binder:10190_D pid=11935 prio=120 target_cpu=001
122290 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618192: sched_wakeup: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122291          <idle>-0     (-----) [002] .n.1 82317.618197: cpu_idle: state=4294967295 cpu_id=2
122292   Binder:9871_6-10122 ( 9871) [001] d..2 82317.618200: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122293          <idle>-0     (-----) [002] d..2 82317.618205: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_D next_pid=11935 next_prio=120
122294          <idle>-0     (-----) [001] d..1 82317.618206: cpu_idle: state=0 cpu_id=1
122295 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618213: sched_waking: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=002
122296 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618231: sched_wakeup: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=001
122297          <idle>-0     (-----) [001] .n.1 82317.618236: cpu_idle: state=4294967295 cpu_id=1
122298          <idle>-0     (-----) [001] d..2 82317.618243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_8 next_pid=10599 next_prio=120
122299 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618256: sched_waking: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122300  Binder:10190_8-10599 (10190) [001] d..2 82317.618260: sched_switch: prev_comm=Binder:10190_8 prev_pid=10599 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122301          <idle>-0     (-----) [001] d..1 82317.618266: cpu_idle: state=0 cpu_id=1
122302  Binder:10190_D-11935 (10190) [002] d..2 82317.618272: sched_switch: prev_comm=Binder:10190_D prev_pid=11935 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122303 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618284: sched_wakeup: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122304          <idle>-0     (-----) [002] d..2 82317.618293: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_D next_pid=11935 next_prio=120
122305 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618304: sched_waking: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=001
122306 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618315: sched_wakeup: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=001
122307          <idle>-0     (-----) [001] .n.1 82317.618320: cpu_idle: state=4294967295 cpu_id=1
122308          <idle>-0     (-----) [001] d..2 82317.618326: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_8 next_pid=10599 next_prio=120
122309 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618333: sched_waking: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=001
122310  Binder:10190_8-10599 (10190) [001] d..2 82317.618340: sched_switch: prev_comm=Binder:10190_8 prev_pid=10599 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122311          <idle>-0     (-----) [001] d..1 82317.618346: cpu_idle: state=0 cpu_id=1
122312 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618351: sched_wakeup: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=001
122313          <idle>-0     (-----) [001] .n.1 82317.618356: cpu_idle: state=4294967295 cpu_id=1
122314 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618356: sched_waking: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=003
122315          <idle>-0     (-----) [001] d..2 82317.618362: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_8 next_pid=10599 next_prio=120
122316 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618366: sched_wakeup: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=003
122317          <idle>-0     (-----) [003] .n.1 82317.618372: cpu_idle: state=4294967295 cpu_id=3
122318          <idle>-0     (-----) [003] d..2 82317.618381: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_4 next_pid=10273 next_prio=120
122319  Binder:10190_8-10599 (10190) [001] d..2 82317.618382: sched_switch: prev_comm=Binder:10190_8 prev_pid=10599 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122320          <idle>-0     (-----) [001] d..1 82317.618387: cpu_idle: state=0 cpu_id=1
122321 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618387: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122322 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618398: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122323  Binder:10190_4-10273 (10190) [003] d..2 82317.618400: sched_switch: prev_comm=Binder:10190_4 prev_pid=10273 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122324          <idle>-0     (-----) [001] .n.1 82317.618402: cpu_idle: state=4294967295 cpu_id=1
122325  Binder:10190_D-11935 (10190) [002] d..2 82317.618403: sched_switch: prev_comm=Binder:10190_D prev_pid=11935 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122326          <idle>-0     (-----) [003] d..1 82317.618407: cpu_idle: state=0 cpu_id=3
122327          <idle>-0     (-----) [001] d..2 82317.618409: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
122328          <idle>-0     (-----) [002] d..1 82317.618414: cpu_idle: state=0 cpu_id=2
122329 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618418: sched_waking: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122330 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618429: sched_wakeup: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122331          <idle>-0     (-----) [002] .n.1 82317.618434: cpu_idle: state=4294967295 cpu_id=2
122332          <idle>-0     (-----) [002] d..2 82317.618452: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_D next_pid=11935 next_prio=120
122333   Binder:9871_6-10122 ( 9871) [001] d..2 82317.618467: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=Binder:9090_6 next_pid=10728 next_prio=120
122334  Binder:10190_D-11935 (10190) [002] d..2 82317.618493: sched_switch: prev_comm=Binder:10190_D prev_pid=11935 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122335   Binder:9090_6-10728 ( 9090) [001] d.s3 82317.618499: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
122336 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618501: sched_waking: comm=Binder:25538_4 pid=25599 prio=120 target_cpu=000
122337          <idle>-0     (-----) [002] d..1 82317.618504: cpu_idle: state=0 cpu_id=2
122338   Binder:9090_6-10728 ( 9090) [001] d.s4 82317.618514: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
122339 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618533: sched_wakeup: comm=Binder:25538_4 pid=25599 prio=120 target_cpu=001
122340 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618555: sched_waking: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122341   Binder:9090_6-10728 ( 9090) [001] d..2 82317.618555: sched_switch: prev_comm=Binder:9090_6 prev_pid=10728 prev_prio=120 prev_state=S ==> next_comm=Binder:25538_4 next_pid=25599 next_prio=120
122342 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618567: sched_wakeup: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122343          <idle>-0     (-----) [002] .n.1 82317.618572: cpu_idle: state=4294967295 cpu_id=2
122344          <idle>-0     (-----) [002] d..2 82317.618581: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_D next_pid=11935 next_prio=120
122345 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618590: sched_waking: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=003
122346 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618601: sched_wakeup: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=003
122347          <idle>-0     (-----) [003] .n.1 82317.618606: cpu_idle: state=4294967295 cpu_id=3
122348          <idle>-0     (-----) [003] d..2 82317.618614: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_4 next_pid=10273 next_prio=120
122349  Binder:10190_D-11935 (10190) [002] d..2 82317.618640: sched_switch: prev_comm=Binder:10190_D prev_pid=11935 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122350 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618640: sched_waking: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122351  Binder:10190_4-10273 (10190) [003] d..2 82317.618648: sched_switch: prev_comm=Binder:10190_4 prev_pid=10273 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
122352 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618652: sched_wakeup: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122353  Binder:25538_4-25599 (25538) [001] d..2 82317.618657: sched_switch: prev_comm=Binder:25538_4 prev_pid=25599 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122354          <idle>-0     (-----) [002] d..2 82317.618658: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_D next_pid=11935 next_prio=120
122355     rcu_preempt-7     (    7) [003] d..2 82317.618663: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
122356          <idle>-0     (-----) [001] d..1 82317.618671: cpu_idle: state=0 cpu_id=1
122357 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618679: sched_waking: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=003
122358 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618697: sched_wakeup: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=001
122359 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618702: sched_waking: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=001
122360          <idle>-0     (-----) [001] .n.1 82317.618703: cpu_idle: state=4294967295 cpu_id=1
122361     rcu_preempt-7     (    7) [003] d..2 82317.618707: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
122362 TaskSnapshotPer-9077  ( 8943) [006] dnh1 82317.618711: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=006
122363          <idle>-0     (-----) [001] d..2 82317.618713: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_4 next_pid=10273 next_prio=120
122364 TaskSnapshotPer-9077  ( 8943) [006] d..2 82317.618721: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
122365          <idle>-0     (-----) [007] dnh2 82317.618778: sched_wakeup: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=007
122366         rcuop/2-29    (   29) [006] d.h2 82317.618780: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=006
122367          <idle>-0     (-----) [007] .n.1 82317.618780: cpu_idle: state=4294967295 cpu_id=7
122368         rcuop/2-29    (   29) [006] d..2 82317.618782: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
122369          <idle>-0     (-----) [007] d..2 82317.618785: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_8 next_pid=10599 next_prio=120
122370  Binder:10190_4-10273 (10190) [001] d..2 82317.618797: sched_switch: prev_comm=Binder:10190_4 prev_pid=10273 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122371  Binder:10190_8-10599 (10190) [007] d..2 82317.618799: sched_switch: prev_comm=Binder:10190_8 prev_pid=10599 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
122372     rcu_preempt-7     (    7) [003] d..2 82317.618800: 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
122373 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618800: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122374          <idle>-0     (-----) [007] d..1 82317.618802: cpu_idle: state=0 cpu_id=7
122375          <idle>-0     (-----) [001] dnh3 82317.618809: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
122376          <idle>-0     (-----) [003] d..1 82317.618810: cpu_idle: state=0 cpu_id=3
122377  Binder:10190_D-11935 (10190) [002] d..2 82317.618810: sched_switch: prev_comm=Binder:10190_D prev_pid=11935 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122378 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618816: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122379          <idle>-0     (-----) [002] d..1 82317.618818: cpu_idle: state=0 cpu_id=2
122380          <idle>-0     (-----) [001] d..2 82317.618825: 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
122381         rcuop/3-37    (   37) [001] d..2 82317.618852: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
122382 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618863: sched_waking: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122383 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618875: sched_wakeup: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122384          <idle>-0     (-----) [002] .n.1 82317.618882: cpu_idle: state=4294967295 cpu_id=2
122385          <idle>-0     (-----) [002] d..2 82317.618890: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_D next_pid=11935 next_prio=120
122386   Binder:9871_6-10122 ( 9871) [001] d..2 82317.618901: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122387          <idle>-0     (-----) [001] d..1 82317.618913: cpu_idle: state=0 cpu_id=1
122388  Binder:10190_D-11935 (10190) [002] d..2 82317.618931: sched_switch: prev_comm=Binder:10190_D prev_pid=11935 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122389 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618931: sched_waking: comm=Binder:9083_3 pid=9130 prio=120 target_cpu=002
122390          <idle>-0     (-----) [002] d..1 82317.618941: cpu_idle: state=0 cpu_id=2
122391 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.618965: sched_wakeup: comm=Binder:9083_3 pid=9130 prio=120 target_cpu=001
122392          <idle>-0     (-----) [001] .n.1 82317.618971: cpu_idle: state=4294967295 cpu_id=1
122393          <idle>-0     (-----) [001] d..2 82317.618980: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9083_3 next_pid=9130 next_prio=120
122394 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.618989: sched_waking: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122395 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.619002: sched_wakeup: comm=Binder:9871_6 pid=10122 prio=120 target_cpu=001
122396 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.619025: sched_waking: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122397 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.619037: sched_wakeup: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122398          <idle>-0     (-----) [002] .n.1 82317.619042: cpu_idle: state=4294967295 cpu_id=2
122399<...>-9130 ( 9083) [001] d..2 82317.619049: sched_switch: prev_comm=Binder:9083_3 prev_pid=9130 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_6 next_pid=10122 next_prio=120
122400          <idle>-0     (-----) [002] d..2 82317.619051: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_D next_pid=11935 next_prio=120
122401 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.619057: sched_waking: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=003
122402 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.619088: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=002
122403  Binder:10190_D-11935 (10190) [002] d..2 82317.619095: sched_switch: prev_comm=Binder:10190_D prev_pid=11935 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=120
122404 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.619104: sched_waking: comm=Binder:9871_2 pid=9894 prio=120 target_cpu=001
122405 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.619133: sched_wakeup: comm=Binder:9871_2 pid=9894 prio=120 target_cpu=003
122406          <idle>-0     (-----) [003] .n.1 82317.619138: cpu_idle: state=4294967295 cpu_id=3
122407          <idle>-0     (-----) [003] d..2 82317.619148: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_2 next_pid=9894 next_prio=120
122408   Binder:9871_6-10122 ( 9871) [001] d..2 82317.619154: sched_switch: prev_comm=Binder:9871_6 prev_pid=10122 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122409 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.619157: sched_waking: comm=Binder:10190_D pid=11935 prio=120 target_cpu=002
122410          <idle>-0     (-----) [001] d..1 82317.619165: cpu_idle: state=0 cpu_id=1
122411   Binder:9871_2-9894  ( 9871) [003] d..2 82317.619171: sched_switch: prev_comm=Binder:9871_2 prev_pid=9894 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122412 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.619175: sched_wakeup: comm=Binder:10190_D pid=11935 prio=120 target_cpu=001
122413          <idle>-0     (-----) [003] d..1 82317.619179: cpu_idle: state=0 cpu_id=3
122414          <idle>-0     (-----) [001] .n.1 82317.619181: cpu_idle: state=4294967295 cpu_id=1
122415   Binder:9871_1-9893  ( 9871) [002] d..2 82317.619188: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122416          <idle>-0     (-----) [001] d..2 82317.619190: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_D next_pid=11935 next_prio=120
122417 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.619197: sched_waking: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=007
122418          <idle>-0     (-----) [002] d..1 82317.619200: cpu_idle: state=0 cpu_id=2
122419 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.619208: sched_waking: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=001
122420         rcuop/2-29    (   29) [006] d..2 82317.619208: 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
122421          <idle>-0     (-----) [007] dnh2 82317.619210: sched_wakeup: comm=Binder:10190_8 pid=10599 prio=120 target_cpu=007
122422          <idle>-0     (-----) [007] .n.1 82317.619213: cpu_idle: state=4294967295 cpu_id=7
122423          <idle>-0     (-----) [007] d..2 82317.619216: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_8 next_pid=10599 next_prio=120
122424 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.619225: sched_wakeup: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=002
122425          <idle>-0     (-----) [002] .n.1 82317.619231: cpu_idle: state=4294967295 cpu_id=2
122426          <idle>-0     (-----) [002] d..2 82317.619241: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_4 next_pid=10273 next_prio=120
122427  Binder:10190_8-10599 (10190) [007] d..2 82317.619242: sched_switch: prev_comm=Binder:10190_8 prev_pid=10599 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
122428          <idle>-0     (-----) [007] d..1 82317.619244: cpu_idle: state=0 cpu_id=7
122429 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.619246: sched_waking: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=002
122430  Binder:10190_D-11935 (10190) [001] d..2 82317.619257: sched_switch: prev_comm=Binder:10190_D prev_pid=11935 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122431  Binder:10190_4-10273 (10190) [002] d..2 82317.619258: sched_switch: prev_comm=Binder:10190_4 prev_pid=10273 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122432          <idle>-0     (-----) [001] d..1 82317.619268: cpu_idle: state=0 cpu_id=1
122433 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.619269: sched_wakeup: comm=Binder:10190_4 pid=10273 prio=120 target_cpu=002
122434          <idle>-0     (-----) [002] d..2 82317.619275: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10190_4 next_pid=10273 next_prio=120
122435 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.619310: sched_waking: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=002
122436 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.619326: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=002
122437  Binder:10190_4-10273 (10190) [002] d..2 82317.619337: sched_switch: prev_comm=Binder:10190_4 prev_pid=10273 prev_prio=120 prev_state=S ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=120
122438         rcuop/6-61    (   61) [006] d..4 82317.619348: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
122439         rcuop/6-61    (   61) [006] d..5 82317.619353: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
122440         rcuop/6-61    (   61) [006] d..2 82317.619365: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
122441   Binder:9871_1-9893  ( 9871) [002] d..2 82317.619376: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122442<...>-560 ( 560) [006] d..2 82317.619381: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
122443          <idle>-0     (-----) [002] d..1 82317.619385: cpu_idle: state=0 cpu_id=2
122444 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.620166: sched_waking: comm=Binder:11200_5 pid=16648 prio=120 target_cpu=000
122445 ReferenceQueueD-8952  ( 8943) [000] dn.6 82317.620185: sched_wakeup: comm=Binder:11200_5 pid=16648 prio=120 target_cpu=000
122446 ReferenceQueueD-8952  ( 8943) [000] d..2 82317.620194: sched_switch: prev_comm=ReferenceQueueD prev_pid=8952 prev_prio=124 prev_state=R+ ==> next_comm=Binder:11200_5 next_pid=16648 next_prio=120
122447  Binder:11200_5-16648 (11200) [000] d..2 82317.620265: sched_switch: prev_comm=Binder:11200_5 prev_pid=16648 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=8952 next_prio=124
122448 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.620271: sched_waking: comm=Binder:11200_5 pid=16648 prio=120 target_cpu=000
122449 ReferenceQueueD-8952  ( 8943) [000] dn.6 82317.620282: sched_wakeup: comm=Binder:11200_5 pid=16648 prio=120 target_cpu=000
122450 ReferenceQueueD-8952  ( 8943) [000] d..2 82317.620288: sched_switch: prev_comm=ReferenceQueueD prev_pid=8952 prev_prio=124 prev_state=R+ ==> next_comm=Binder:11200_5 next_pid=16648 next_prio=120
122451  Binder:11200_5-16648 (11200) [000] d..2 82317.620315: sched_switch: prev_comm=Binder:11200_5 prev_pid=16648 prev_prio=120 prev_state=S ==> next_comm=ReferenceQueueD next_pid=8952 next_prio=124
122452          <idle>-0     (-----) [001] ...1 82317.620383: cpu_idle: state=4294967295 cpu_id=1
122453          <idle>-0     (-----) [002] ...1 82317.620384: cpu_idle: state=4294967295 cpu_id=2
122454          <idle>-0     (-----) [001] d..1 82317.620387: cpu_idle: state=0 cpu_id=1
122455          <idle>-0     (-----) [002] d..1 82317.620388: cpu_idle: state=0 cpu_id=2
122456 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.620620: sched_waking: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=001
122457 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.620637: sched_wakeup: comm=Binder:9090_6 pid=10728 prio=120 target_cpu=001
122458          <idle>-0     (-----) [001] .n.1 82317.620641: cpu_idle: state=4294967295 cpu_id=1
122459          <idle>-0     (-----) [001] d..2 82317.620651: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9090_6 next_pid=10728 next_prio=120
122460 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.620660: sched_waking: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=000
122461 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.620690: sched_wakeup: comm=Binder:9090_5 pid=10478 prio=120 target_cpu=001
122462   Binder:9090_6-10728 ( 9090) [001] d..3 82317.620695: sched_waking: comm=Binder:9090_7 pid=3293 prio=120 target_cpu=001
122463   Binder:9090_6-10728 ( 9090) [001] d..4 82317.620714: sched_wakeup: comm=Binder:9090_7 pid=3293 prio=120 target_cpu=001
122464 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.620760: sched_waking: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
122465          <idle>-0     (-----) [004] dnh2 82317.620781: sched_wakeup: comm=Binder:10023_2 pid=10088 prio=120 target_cpu=004
122466          <idle>-0     (-----) [004] .n.1 82317.620783: cpu_idle: state=4294967295 cpu_id=4
122467   Binder:9090_6-10728 ( 9090) [001] d..2 82317.620786: sched_switch: prev_comm=Binder:9090_6 prev_pid=10728 prev_prio=120 prev_state=S ==> next_comm=Binder:9090_5 next_pid=10478 next_prio=120
122468          <idle>-0     (-----) [004] d..2 82317.620787: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_2 next_pid=10088 next_prio=120
122469 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.620795: sched_waking: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=001
122470   Binder:9090_5-10478 ( 9090) [001] d..2 82317.620797: sched_switch: prev_comm=Binder:9090_5 prev_pid=10478 prev_prio=120 prev_state=S ==> next_comm=Binder:9090_7 next_pid=3293 next_prio=120
122471   Binder:9090_7-3293  ( 9090) [001] d..2 82317.620822: sched_switch: prev_comm=Binder:9090_7 prev_pid=3293 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122472          <idle>-0     (-----) [005] dnh2 82317.620826: sched_wakeup: comm=Binder:10023_3 pid=10531 prio=120 target_cpu=005
122473          <idle>-0     (-----) [001] d..1 82317.620834: cpu_idle: state=0 cpu_id=1
122474          <idle>-0     (-----) [005] .n.1 82317.620860: cpu_idle: state=4294967295 cpu_id=5
122475          <idle>-0     (-----) [005] d..2 82317.620864: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_3 next_pid=10531 next_prio=120
122476 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.620864: sched_waking: comm=Binder:10023_6 pid=23680 prio=120 target_cpu=005
122477          <idle>-0     (-----) [007] dnh2 82317.620889: sched_wakeup: comm=Binder:10023_6 pid=23680 prio=120 target_cpu=007
122478  Binder:10023_2-10088 (10023) [004] d..2 82317.620891: sched_switch: prev_comm=Binder:10023_2 prev_pid=10088 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
122479          <idle>-0     (-----) [007] .n.1 82317.620892: cpu_idle: state=4294967295 cpu_id=7
122480          <idle>-0     (-----) [004] d..1 82317.620894: cpu_idle: state=0 cpu_id=4
122481          <idle>-0     (-----) [007] d..2 82317.620895: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:10023_6 next_pid=23680 next_prio=120
122482  Binder:10023_3-10531 (10023) [005] d..2 82317.620902: sched_switch: prev_comm=Binder:10023_3 prev_pid=10531 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
122483  Binder:10023_6-23680 (10023) [007] d..2 82317.620904: sched_switch: prev_comm=Binder:10023_6 prev_pid=23680 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
122484          <idle>-0     (-----) [005] d..1 82317.620906: cpu_idle: state=0 cpu_id=5
122485 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.620907: sched_waking: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=002
122486          <idle>-0     (-----) [007] d..1 82317.620907: cpu_idle: state=0 cpu_id=7
122487 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.620919: sched_wakeup: comm=Binder:9871_1 pid=9893 prio=120 target_cpu=002
122488          <idle>-0     (-----) [002] .n.1 82317.620924: cpu_idle: state=4294967295 cpu_id=2
122489          <idle>-0     (-----) [002] d..2 82317.620933: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9871_1 next_pid=9893 next_prio=120
122490 ReferenceQueueD-8952  ( 8943) [000] d..3 82317.620962: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=006
122491   Binder:9871_1-9893  ( 9871) [002] d..2 82317.620973: sched_switch: prev_comm=Binder:9871_1 prev_pid=9893 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122492          <idle>-0     (-----) [002] d..1 82317.620983: cpu_idle: state=0 cpu_id=2
122493          <idle>-0     (-----) [007] dnh2 82317.620984: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=007
122494          <idle>-0     (-----) [007] .n.1 82317.620987: cpu_idle: state=4294967295 cpu_id=7
122495          <idle>-0     (-----) [007] d..2 82317.620990: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
122496<...>-15374 ( 8943) [007] d..2 82317.621013: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
122497          <idle>-0     (-----) [007] d..1 82317.621016: cpu_idle: state=0 cpu_id=7
122498 ReferenceQueueD-8952  ( 8943) [000] d..3 82317.621019: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=007
122499          <idle>-0     (-----) [007] dnh2 82317.621032: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=007
122500          <idle>-0     (-----) [007] .n.1 82317.621034: cpu_idle: state=4294967295 cpu_id=7
122501          <idle>-0     (-----) [007] d..2 82317.621037: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
122502 ReferenceQueueD-8952  ( 8943) [000] d..3 82317.621045: sched_waking: comm=RenderThread pid=15374 prio=116 target_cpu=007
122503<...>-15374 ( 8943) [007] d..2 82317.621047: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
122504          <idle>-0     (-----) [007] d..1 82317.621049: cpu_idle: state=0 cpu_id=7
122505          <idle>-0     (-----) [007] dnh2 82317.621059: sched_wakeup: comm=RenderThread pid=15374 prio=116 target_cpu=007
122506          <idle>-0     (-----) [007] .n.1 82317.621061: cpu_idle: state=4294967295 cpu_id=7
122507          <idle>-0     (-----) [007] d..2 82317.621063: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=15374 next_prio=116
122508<...>-15374 ( 8943) [007] d..2 82317.621069: sched_switch: prev_comm=RenderThread prev_pid=15374 prev_prio=116 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
122509          <idle>-0     (-----) [007] d..1 82317.621071: cpu_idle: state=0 cpu_id=7
122510 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.621125: sched_waking: comm=Binder:9271_5 pid=9532 prio=120 target_cpu=000
122511 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.621150: sched_wakeup: comm=Binder:9271_5 pid=9532 prio=120 target_cpu=001
122512          <idle>-0     (-----) [001] .n.1 82317.621156: cpu_idle: state=4294967295 cpu_id=1
122513          <idle>-0     (-----) [001] d..2 82317.621165: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:9271_5 next_pid=9532 next_prio=120
122514 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.621184: sched_waking: comm=Binder:11200_5 pid=16648 prio=120 target_cpu=000
122515 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.621210: sched_wakeup: comm=Binder:11200_5 pid=16648 prio=120 target_cpu=001
122516   Binder:9271_5-9532  ( 9271) [001] d..2 82317.621238: sched_switch: prev_comm=Binder:9271_5 prev_pid=9532 prev_prio=120 prev_state=S ==> next_comm=Binder:11200_5 next_pid=16648 next_prio=120
122517 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.621246: sched_waking: comm=Binder:11200_6 pid=25119 prio=120 target_cpu=000
122518 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.621274: sched_wakeup: comm=Binder:11200_6 pid=25119 prio=120 target_cpu=001
122519 ReferenceQueueD-8952  ( 8943) [000] d..5 82317.621280: sched_waking: comm=Binder:11200_3 pid=11214 prio=120 target_cpu=000
122520 ReferenceQueueD-8952  ( 8943) [000] d..6 82317.621303: sched_wakeup: comm=Binder:11200_3 pid=11214 prio=120 target_cpu=001
122521  Binder:11200_5-16648 (11200) [001] d..2 82317.621335: sched_switch: prev_comm=Binder:11200_5 prev_pid=16648 prev_prio=120 prev_state=S ==> next_comm=Binder:11200_6 next_pid=25119 next_prio=120
122522  Binder:11200_6-25119 (11200) [001] d..2 82317.621346: sched_switch: prev_comm=Binder:11200_6 prev_pid=25119 prev_prio=120 prev_state=S ==> next_comm=Binder:11200_3 next_pid=11214 next_prio=120
122523  Binder:11200_3-11214 (11200) [001] d..2 82317.621364: sched_switch: prev_comm=Binder:11200_3 prev_pid=11214 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
122524          <idle>-0     (-----) [001] d..1 82317.621376: cpu_idle: state=0 cpu_id=1
122525 ReferenceQueueD-8952  ( 8943) [000] d..1 82317.621947: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=002
122526 ReferenceQueueD-8952  ( 8943) [000] d..2 82317.621973: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
122527          <idle>-0     (-----) [001] .n.1 82317.621979: cpu_idle: state=4294967295 cpu_id=1
122528          <idle>-0     (-----) [001] d..2 82317.621991: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
122529 FinalizerDaemon-8953  ( 8943) [001] d..1 82317.622029: sched_waking: comm=FinalizerWatchd pid=8954 prio=124 target_cpu=000
122530 ReferenceQueueD-8952  ( 8943) [000] d..2 82317.622053: sched_switch: prev_comm=ReferenceQueueD prev_pid=8952 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122531 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.622056: sched_wakeup: comm=FinalizerWatchd pid=8954 prio=124 target_cpu=002
122532          <idle>-0     (-----) [002] .n.1 82317.622062: cpu_idle: state=4294967295 cpu_id=2
122533          <idle>-0     (-----) [002] d..2 82317.622072: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=FinalizerWatchd next_pid=8954 next_prio=124
122534          <idle>-0     (-----) [000] d..1 82317.622074: cpu_idle: state=0 cpu_id=0
122535 FinalizerWatchd-8954  ( 8943) [002] d..2 82317.622147: sched_switch: prev_comm=FinalizerWatchd prev_pid=8954 prev_prio=124 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122536          <idle>-0     (-----) [002] d..1 82317.622159: cpu_idle: state=0 cpu_id=2
122537 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.622388: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=001
122538 FinalizerDaemon-8953  ( 8943) [001] d..3 82317.622417: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
122539          <idle>-0     (-----) [000] .n.1 82317.622424: cpu_idle: state=4294967295 cpu_id=0
122540          <idle>-0     (-----) [000] d..2 82317.622437: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/0 next_pid=11 next_prio=120
122541         rcuos/0-11    (   11) [000] d..2 82317.622444: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
122542         rcuos/0-11    (   11) [000] d..3 82317.622478: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
122543         rcuos/0-11    (   11) [000] d..2 82317.622487: 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
122544<...>-8 ( 8) [000] d..2 82317.622510: 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
122545          <idle>-0     (-----) [000] d..1 82317.622519: cpu_idle: state=0 cpu_id=0
122546          <idle>-0     (-----) [002] ...1 82317.623534: cpu_idle: state=4294967295 cpu_id=2
122547          <idle>-0     (-----) [002] d..1 82317.623538: cpu_idle: state=0 cpu_id=2
122548 TaskSnapshotPer-9077  ( 8943) [006] d..2 82317.624556: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
122549          <idle>-0     (-----) [006] d..1 82317.624573: cpu_idle: state=0 cpu_id=6
122550          <idle>-0     (-----) [000] ...1 82317.624724: cpu_idle: state=4294967295 cpu_id=0
122551          <idle>-0     (-----) [000] d..1 82317.624728: cpu_idle: state=0 cpu_id=0
122552          <idle>-0     (-----) [006] ...1 82317.624766: cpu_idle: state=4294967295 cpu_id=6
122553          <idle>-0     (-----) [006] d..1 82317.624768: cpu_idle: state=0 cpu_id=6
122554          <idle>-0     (-----) [003] d.s2 82317.625141: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
122555 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.625152: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122556          <idle>-0     (-----) [003] dns3 82317.625156: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
122557          <idle>-0     (-----) [003] .n.1 82317.625176: cpu_idle: state=4294967295 cpu_id=3
122558          <idle>-0     (-----) [003] d..2 82317.625191: 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
122559 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.625200: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
122560     rcu_preempt-7     (    7) [003] d..2 82317.625211: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122561  kworker/u16:15-1311  ( 1311) [003] .... 82317.625300: clk_set_rate: l3_cluster0_vote_clk 576000000
122562  kworker/u16:15-1311  ( 1311) [003] d..2 82317.625560: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
122563          <idle>-0     (-----) [003] d..1 82317.625570: cpu_idle: state=0 cpu_id=3
122564 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.625589: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
122565 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.625601: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
122566 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.625610: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
122567          <idle>-0     (-----) [003] .n.1 82317.625615: cpu_idle: state=4294967295 cpu_id=3
122568          <idle>-0     (-----) [003] d..2 82317.625624: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122569  kworker/u16:15-1311  ( 1311) [003] .... 82317.625653: clk_set_rate: l3_cluster1_vote_clk 1401600000
122570  kworker/u16:15-1311  ( 1311) [003] .... 82317.625658: clk_set_rate: l3_clk 1401600000
122571  kworker/u16:15-1311  ( 1311) [003] d..2 82317.625862: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122572          <idle>-0     (-----) [003] d..1 82317.625871: cpu_idle: state=0 cpu_id=3
122573          <idle>-0     (-----) [003] d.h2 82317.626574: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
122574          <idle>-0     (-----) [003] dnh3 82317.626592: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
122575          <idle>-0     (-----) [003] .n.1 82317.626598: cpu_idle: state=4294967295 cpu_id=3
122576          <idle>-0     (-----) [003] d..2 82317.626607: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
122577        DispSync-8879  ( 8858) [003] d..1 82317.626634: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
122578        DispSync-8879  ( 8858) [003] d..2 82317.626649: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
122579          <idle>-0     (-----) [002] .n.1 82317.626654: cpu_idle: state=4294967295 cpu_id=2
122580          <idle>-0     (-----) [002] d..2 82317.626663: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
122581        DispSync-8879  ( 8858) [003] d..2 82317.626679: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122582          <idle>-0     (-----) [003] d..1 82317.626689: cpu_idle: state=0 cpu_id=3
122583  appEventThread-8881  ( 8858) [002] d..3 82317.626748: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
122584  appEventThread-8881  ( 8858) [002] d..4 82317.626769: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
122585          <idle>-0     (-----) [000] .n.1 82317.626774: cpu_idle: state=4294967295 cpu_id=0
122586          <idle>-0     (-----) [000] d..2 82317.626784: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
122587  appEventThread-8881  ( 8858) [002] d..3 82317.626785: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
122588          <idle>-0     (-----) [004] dnh2 82317.626802: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
122589          <idle>-0     (-----) [004] .n.1 82317.626804: cpu_idle: state=4294967295 cpu_id=4
122590          <idle>-0     (-----) [004] d..2 82317.626807: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
122591  appEventThread-8881  ( 8858) [002] d..2 82317.626829: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122592          <idle>-0     (-----) [002] d..1 82317.626840: cpu_idle: state=0 cpu_id=2
122593 s.nexuslauncher-10023 (10023) [004] .... 82317.626910: binder_transaction: transaction=1572648 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
122594 s.nexuslauncher-10023 (10023) [004] .... 82317.626916: binder_transaction_alloc_buf: transaction=1572648 data_size=80 offsets_size=0
122595 s.nexuslauncher-10023 (10023) [004] d..4 82317.626920: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
122596          <idle>-0     (-----) [002] dnh2 82317.626943: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
122597          <idle>-0     (-----) [002] .n.1 82317.626948: cpu_idle: state=4294967295 cpu_id=2
122598          <idle>-0     (-----) [002] d..2 82317.626957: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
122599 s.nexuslauncher-10023 (10023) [004] d..2 82317.626963: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
122600<...>-13083 ( 8858) [002] .... 82317.626965: binder_transaction_received: transaction=1572648
122601          <idle>-0     (-----) [004] d..1 82317.626967: cpu_idle: state=0 cpu_id=4
122602<...>-9105 ( 9105) [000] .... 82317.627002: binder_transaction: transaction=1572649 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
122603<...>-13083 ( 8858) [002] d..1 82317.627002: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
122604<...>-9105 ( 9105) [000] .... 82317.627007: binder_transaction_alloc_buf: transaction=1572649 data_size=80 offsets_size=0
122605<...>-9105 ( 9105) [000] d..4 82317.627012: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
122606<...>-13083 ( 8858) [002] d..2 82317.627023: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
122607          <idle>-0     (-----) [003] .n.1 82317.627028: cpu_idle: state=4294967295 cpu_id=3
122608          <idle>-0     (-----) [003] d..2 82317.627037: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
122609          <idle>-0     (-----) [004] dnh2 82317.627046: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
122610          <idle>-0     (-----) [004] .n.1 82317.627087: cpu_idle: state=4294967295 cpu_id=4
122611          <idle>-0     (-----) [004] d..2 82317.627091: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
122612<...>-8951 ( 8858) [004] .... 82317.627098: binder_transaction_received: transaction=1572649
122613  appEventThread-8881  ( 8858) [003] d..2 82317.627101: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122614          <idle>-0     (-----) [003] d..1 82317.627109: cpu_idle: state=0 cpu_id=3
122615<...>-8951 ( 8858) [004] d..1 82317.627114: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
122616<...>-13083 ( 8858) [002] d..2 82317.627114: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122617          <idle>-0     (-----) [002] d..1 82317.627124: cpu_idle: state=0 cpu_id=2
122618          <idle>-0     (-----) [003] dnh2 82317.627130: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
122619<...>-8951 ( 8858) [004] d..2 82317.627134: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
122620          <idle>-0     (-----) [003] .n.1 82317.627135: cpu_idle: state=4294967295 cpu_id=3
122621          <idle>-0     (-----) [004] d..1 82317.627137: cpu_idle: state=0 cpu_id=4
122622          <idle>-0     (-----) [003] d..2 82317.627142: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
122623<...>-9105 ( 9105) [000] d..2 82317.627163: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122624  appEventThread-8881  ( 8858) [003] d..2 82317.627172: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122625          <idle>-0     (-----) [000] d..1 82317.627174: cpu_idle: state=0 cpu_id=0
122626          <idle>-0     (-----) [003] d..1 82317.627179: cpu_idle: state=0 cpu_id=3
122627          <idle>-0     (-----) [000] d.s2 82317.628462: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
122628          <idle>-0     (-----) [000] dns3 82317.628476: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
122629          <idle>-0     (-----) [000] .n.1 82317.628492: cpu_idle: state=4294967295 cpu_id=0
122630          <idle>-0     (-----) [000] d..2 82317.628500: 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
122631<...>-8 ( 8) [000] d..2 82317.628527: 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
122632          <idle>-0     (-----) [000] d..1 82317.628537: cpu_idle: state=0 cpu_id=0
122633 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.631798: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
122634          <idle>-0     (-----) [003] d.H3 82317.631861: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
122635 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.631871: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122636 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.631875: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
122637          <idle>-0     (-----) [000] .n.1 82317.631876: cpu_idle: state=4294967295 cpu_id=0
122638          <idle>-0     (-----) [005] dnh2 82317.631877: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
122639          <idle>-0     (-----) [005] .n.1 82317.631879: cpu_idle: state=4294967295 cpu_id=5
122640          <idle>-0     (-----) [005] d..2 82317.631883: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
122641          <idle>-0     (-----) [000] d..2 82317.631886: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122642  kworker/u16:15-1311  ( 1311) [000] d..2 82317.631890: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
122643          <idle>-0     (-----) [002] ...1 82317.631893: cpu_idle: state=4294967295 cpu_id=2
122644         sugov:4-577   (  577) [005] .... 82317.631895: clk_set_rate: perfcl_clk 2169600000
122645         sugov:4-577   (  577) [005] .... 82317.631896: clk_set_rate: cpu7_perfcl_clk 2803200000
122646          <idle>-0     (-----) [002] d..1 82317.631898: cpu_idle: state=0 cpu_id=2
122647         sugov:4-577   (  577) [005] .... 82317.631901: clk_set_rate: cpu6_perfcl_clk 2803200000
122648 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.631904: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
122649         sugov:4-577   (  577) [005] .... 82317.631905: clk_set_rate: cpu5_perfcl_clk 2803200000
122650         sugov:4-577   (  577) [005] .... 82317.631909: clk_set_rate: cpu4_perfcl_clk 2169600000
122651         sugov:4-577   (  577) [005] .... 82317.631914: cpu_frequency: state=2169600 cpu_id=4
122652          <idle>-0     (-----) [003] ...1 82317.631914: cpu_idle: state=4294967295 cpu_id=3
122653          <idle>-0     (-----) [003] d..1 82317.631920: cpu_idle: state=0 cpu_id=3
122654  kworker/u16:15-1311  ( 1311) [000] d..3 82317.631924: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122655  kworker/u16:15-1311  ( 1311) [000] d..2 82317.631979: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122656         sugov:4-577   (  577) [005] d..2 82317.632010: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
122657          <idle>-0     (-----) [005] d..1 82317.632014: cpu_idle: state=0 cpu_id=5
122658  kworker/u16:13-1147  ( 1147) [000] d..2 82317.632033: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
122659     rcu_preempt-7     (    7) [000] d..2 82317.632039: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
122660 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.632055: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
122661     rcu_preempt-7     (    7) [000] d..3 82317.632069: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
122662          <idle>-0     (-----) [005] dnh2 82317.632071: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
122663     rcu_preempt-7     (    7) [000] d..2 82317.632072: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
122664          <idle>-0     (-----) [005] .n.1 82317.632073: cpu_idle: state=4294967295 cpu_id=5
122665          <idle>-0     (-----) [005] d..2 82317.632076: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
122666         sugov:4-577   (  577) [005] d..1 82317.632079: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122667         sugov:4-577   (  577) [005] .... 82317.632088: cpu_frequency: state=2169600 cpu_id=5
122668         sugov:4-577   (  577) [005] .... 82317.632089: cpu_frequency: state=2169600 cpu_id=6
122669         sugov:4-577   (  577) [005] .... 82317.632091: cpu_frequency: state=2169600 cpu_id=7
122670         sugov:4-577   (  577) [005] d..2 82317.632097: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
122671          <idle>-0     (-----) [005] d..1 82317.632099: cpu_idle: state=0 cpu_id=5
122672     rcu_preempt-7     (    7) [000] d..3 82317.632100: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
122673     rcu_preempt-7     (    7) [000] d.h2 82317.632107: sched_blocked_reason: pid=1311 iowait=0 caller=update_request_adhoc+0x384/0x480
122674     rcu_preempt-7     (    7) [000] d.h2 82317.632110: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122675     rcu_preempt-7     (    7) [000] d..2 82317.632125: 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
122676         rcuop/4-45    (   45) [000] d.h3 82317.632133: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122677         rcuop/4-45    (   45) [000] d.h4 82317.632144: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
122678         rcuop/4-45    (   45) [000] d.h4 82317.632148: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122679         rcuop/4-45    (   45) [000] d..2 82317.632422: 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
122680         rcuop/0-10    (   10) [000] d..2 82317.632427: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
122681         rcuop/0-10    (   10) [000] d..3 82317.632459: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
122682         rcuop/0-10    (   10) [000] d..2 82317.632871: 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
122683         rcuop/1-21    (   21) [000] d..2 82317.632887: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122684  kworker/u16:13-1147  ( 1147) [000] d..2 82317.632950: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122685  kworker/u16:15-1311  ( 1311) [000] d..2 82317.633055: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
122686          <idle>-0     (-----) [000] d.h3 82317.633063: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122687 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.633070: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122688          <idle>-0     (-----) [000] d.h4 82317.633071: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
122689          <idle>-0     (-----) [000] dnh4 82317.633075: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122690 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.633086: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
122691 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.633091: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122692          <idle>-0     (-----) [000] d..2 82317.633097: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122693  kworker/u16:13-1147  ( 1147) [000] d..2 82317.633147: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122694  kworker/u16:15-1311  ( 1311) [000] d..2 82317.633169: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122695          <idle>-0     (-----) [000] d..1 82317.633177: cpu_idle: state=0 cpu_id=0
122696          <idle>-0     (-----) [003] ...1 82317.633202: cpu_idle: state=4294967295 cpu_id=3
122697          <idle>-0     (-----) [003] d..1 82317.633205: cpu_idle: state=0 cpu_id=3
122698          <idle>-0     (-----) [000] d.h2 82317.633248: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122699          <idle>-0     (-----) [000] d.h3 82317.633254: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
122700          <idle>-0     (-----) [000] dnh3 82317.633258: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122701          <idle>-0     (-----) [000] .n.1 82317.633265: cpu_idle: state=4294967295 cpu_id=0
122702          <idle>-0     (-----) [000] d..2 82317.633271: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122703  kworker/u16:13-1147  ( 1147) [000] d..2 82317.633291: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
122704          <idle>-0     (-----) [000] d..1 82317.633297: cpu_idle: state=0 cpu_id=0
122705          <idle>-0     (-----) [000] d.h2 82317.633386: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122706          <idle>-0     (-----) [000] d.h3 82317.633392: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
122707          <idle>-0     (-----) [000] dnh3 82317.633396: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122708          <idle>-0     (-----) [000] .n.1 82317.633401: cpu_idle: state=4294967295 cpu_id=0
122709          <idle>-0     (-----) [000] d..2 82317.633408: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122710  kworker/u16:13-1147  ( 1147) [000] d..2 82317.633426: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
122711          <idle>-0     (-----) [000] d..1 82317.633432: cpu_idle: state=0 cpu_id=0
122712          <idle>-0     (-----) [000] d.h2 82317.633522: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122713          <idle>-0     (-----) [000] d.h3 82317.633528: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
122714          <idle>-0     (-----) [000] dnh3 82317.633531: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122715          <idle>-0     (-----) [000] .n.1 82317.633537: cpu_idle: state=4294967295 cpu_id=0
122716          <idle>-0     (-----) [000] d..2 82317.633543: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122717  kworker/u16:13-1147  ( 1147) [000] d..2 82317.633676: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
122718          <idle>-0     (-----) [000] d..1 82317.633683: cpu_idle: state=0 cpu_id=0
122719 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.633700: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122720 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.633708: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
122721 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.633717: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122722          <idle>-0     (-----) [000] .n.1 82317.633721: cpu_idle: state=4294967295 cpu_id=0
122723          <idle>-0     (-----) [000] d..2 82317.633728: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122724  kworker/u16:13-1147  ( 1147) [000] d..2 82317.633775: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
122725          <idle>-0     (-----) [000] d..1 82317.633782: cpu_idle: state=0 cpu_id=0
122726          <idle>-0     (-----) [000] d.h2 82317.633870: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122727          <idle>-0     (-----) [000] d.h3 82317.633877: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
122728          <idle>-0     (-----) [000] dnh3 82317.633881: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122729          <idle>-0     (-----) [000] .n.1 82317.633887: cpu_idle: state=4294967295 cpu_id=0
122730          <idle>-0     (-----) [000] d..2 82317.633893: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122731  kworker/u16:13-1147  ( 1147) [000] d..2 82317.633957: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
122732          <idle>-0     (-----) [000] d..1 82317.633963: cpu_idle: state=0 cpu_id=0
122733          <idle>-0     (-----) [000] d.h2 82317.634053: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122734          <idle>-0     (-----) [000] d.h3 82317.634059: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_rpmh_gpu_pwrctrl+0x13d4/0x3168
122735          <idle>-0     (-----) [000] dnh3 82317.634062: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122736          <idle>-0     (-----) [000] .n.1 82317.634068: cpu_idle: state=4294967295 cpu_id=0
122737          <idle>-0     (-----) [000] d..2 82317.634075: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122738  kworker/u16:13-1147  ( 1147) [000] d..1 82317.634087: clk_disable: gpu_cc_cx_gmu_clk
122739  kworker/u16:13-1147  ( 1147) [000] d..1 82317.634104: clk_disable: gpu_cc_gmu_clk_src
122740  kworker/u16:13-1147  ( 1147) [000] d..1 82317.634129: clk_disable: gcc_gpu_gpll0_div_clk_src
122741  kworker/u16:13-1147  ( 1147) [000] d..1 82317.634637: clk_disable: gpll0_out_even
122742  kworker/u16:13-1147  ( 1147) [000] d..1 82317.634665: clk_disable: gpu_cc_cxo_clk
122743  kworker/u16:13-1147  ( 1147) [000] d..1 82317.634676: clk_disable: gcc_ddrss_gpu_axi_clk
122744  kworker/u16:13-1147  ( 1147) [000] d..1 82317.634695: clk_disable: gcc_gpu_memnoc_gfx_clk
122745  kworker/u16:13-1147  ( 1147) [000] d..2 82317.634837: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122746  kworker/u16:13-1147  ( 1147) [000] d..3 82317.634850: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
122747          <idle>-0     (-----) [002] ...1 82317.634878: cpu_idle: state=4294967295 cpu_id=2
122748          <idle>-0     (-----) [003] ...1 82317.634882: cpu_idle: state=4294967295 cpu_id=3
122749          <idle>-0     (-----) [002] d..1 82317.634883: cpu_idle: state=2 cpu_id=2
122750          <idle>-0     (-----) [004] ...1 82317.634883: cpu_idle: state=4294967295 cpu_id=4
122751          <idle>-0     (-----) [005] ...1 82317.634885: cpu_idle: state=4294967295 cpu_id=5
122752          <idle>-0     (-----) [004] d..1 82317.634886: cpu_idle: state=2 cpu_id=4
122753          <idle>-0     (-----) [003] d..1 82317.634886: cpu_idle: state=2 cpu_id=3
122754          <idle>-0     (-----) [005] d..1 82317.634887: cpu_idle: state=2 cpu_id=5
122755          <idle>-0     (-----) [006] ...1 82317.634888: cpu_idle: state=4294967295 cpu_id=6
122756          <idle>-0     (-----) [006] d..1 82317.634890: cpu_idle: state=2 cpu_id=6
122757          <idle>-0     (-----) [007] ...1 82317.634891: cpu_idle: state=4294967295 cpu_id=7
122758          <idle>-0     (-----) [007] d..1 82317.634893: cpu_idle: state=2 cpu_id=7
122759  kworker/u16:13-1147  ( 1147) [000] d.s1 82317.635145: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
122760  kworker/u16:13-1147  ( 1147) [000] d.s2 82317.635158: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
122761  kworker/u16:13-1147  ( 1147) [000] .... 82317.635184: clk_set_rate: l3_cluster1_vote_clk 300000000
122762  kworker/u16:13-1147  ( 1147) [000] .... 82317.635188: clk_set_rate: l3_clk 576000000
122763  kworker/u16:13-1147  ( 1147) [000] d..2 82317.635425: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=rcu_sched next_pid=8 next_prio=120
122764<...>-8 ( 8) [000] d..2 82317.635440: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
122765 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.635459: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122766  kworker/u16:15-1311  ( 1311) [000] d..2 82317.635463: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122767          <idle>-0     (-----) [000] d..1 82317.635473: cpu_idle: state=0 cpu_id=0
122768 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.635475: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
122769 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.635484: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122770          <idle>-0     (-----) [000] .n.1 82317.635490: cpu_idle: state=4294967295 cpu_id=0
122771          <idle>-0     (-----) [000] d..2 82317.635498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122772  kworker/u16:13-1147  ( 1147) [000] .... 82317.635553: clk_set_rate: l3_cluster0_vote_clk 844800000
122773  kworker/u16:13-1147  ( 1147) [000] .... 82317.635557: clk_set_rate: l3_clk 844800000
122774  kworker/u16:13-1147  ( 1147) [000] d..2 82317.635591: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122775          <idle>-0     (-----) [000] d..1 82317.635599: cpu_idle: state=0 cpu_id=0
122776          <idle>-0     (-----) [000] d.s2 82317.638461: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
122777 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.638471: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
122778          <idle>-0     (-----) [000] dns3 82317.638475: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
122779 FinalizerDaemon-8953  ( 8943) [001] dns3 82317.638487: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
122780          <idle>-0     (-----) [000] .n.1 82317.638487: cpu_idle: state=4294967295 cpu_id=0
122781          <idle>-0     (-----) [000] d..2 82317.638494: 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
122782 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.638499: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
122783     rcu_preempt-7     (    7) [000] d..2 82317.638526: 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
122784     kworker/1:1-25249 (25249) [001] d..2 82317.638529: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
122785          <idle>-0     (-----) [000] d..1 82317.638532: cpu_idle: state=0 cpu_id=0
122786          <idle>-0     (-----) [000] ...1 82317.641185: cpu_idle: state=4294967295 cpu_id=0
122787          <idle>-0     (-----) [000] d..1 82317.641189: cpu_idle: state=0 cpu_id=0
122788          <idle>-0     (-----) [000] ...1 82317.641788: cpu_idle: state=4294967295 cpu_id=0
122789          <idle>-0     (-----) [000] d..1 82317.641791: cpu_idle: state=0 cpu_id=0
122790 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.641802: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
122791 FinalizerDaemon-8953  ( 8943) [001] dns4 82317.641838: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
122792 FinalizerDaemon-8953  ( 8943) [001] dns3 82317.641841: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
122793 FinalizerDaemon-8953  ( 8943) [001] dns4 82317.641866: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=001
122794 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.641877: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
122795     rcu_preempt-7     (    7) [001] d..2 82317.641883: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=006
122796     rcu_preempt-7     (    7) [001] d..3 82317.641941: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
122797          <idle>-0     (-----) [000] .n.1 82317.641945: cpu_idle: state=4294967295 cpu_id=0
122798          <idle>-0     (-----) [000] d..2 82317.641955: 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
122799     rcu_preempt-7     (    7) [001] d..2 82317.642001: 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
122800<...>-8 ( 8) [001] d..2 82317.642006: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=000
122801         rcuop/6-61    (   61) [000] d..2 82317.642017: 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
122802<...>-8 ( 8) [001] d..3 82317.642025: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
122803<...>-8 ( 8) [001] d..2 82317.642035: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
122804          <idle>-0     (-----) [000] d..2 82317.642036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/0 next_pid=11 next_prio=120
122805         rcuos/0-11    (   11) [000] d..2 82317.642043: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=000
122806         rcuos/0-11    (   11) [000] d..3 82317.642062: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=000
122807         rcuos/0-11    (   11) [000] d..2 82317.642065: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=001
122808         rcuos/0-11    (   11) [000] d..3 82317.642094: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
122809         rcuos/0-11    (   11) [000] d..2 82317.642103: 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
122810         rcuos/1-22    (   22) [000] d..2 82317.642121: 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
122811<...>-8 ( 8) [000] d..2 82317.642138: 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
122812          <idle>-0     (-----) [000] d..1 82317.642149: cpu_idle: state=0 cpu_id=0
122813          <idle>-0     (-----) [003] d.h2 82317.643266: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
122814          <idle>-0     (-----) [003] dnh3 82317.643284: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
122815          <idle>-0     (-----) [003] .n.1 82317.643294: cpu_idle: state=4294967295 cpu_id=3
122816          <idle>-0     (-----) [003] d..2 82317.643307: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
122817        DispSync-8879  ( 8858) [003] d..1 82317.643329: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
122818        DispSync-8879  ( 8858) [003] d..2 82317.643347: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
122819          <idle>-0     (-----) [000] .n.1 82317.643353: cpu_idle: state=4294967295 cpu_id=0
122820          <idle>-0     (-----) [000] d..2 82317.643362: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
122821        DispSync-8879  ( 8858) [003] d..2 82317.643380: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122822          <idle>-0     (-----) [003] d..1 82317.643393: cpu_idle: state=2 cpu_id=3
122823  appEventThread-8881  ( 8858) [000] d..3 82317.643416: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
122824  appEventThread-8881  ( 8858) [000] d..4 82317.643440: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
122825  appEventThread-8881  ( 8858) [000] d..3 82317.643454: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
122826  appEventThread-8881  ( 8858) [000] d..2 82317.643497: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122827          <idle>-0     (-----) [000] d..1 82317.643508: cpu_idle: state=0 cpu_id=0
122828          <idle>-0     (-----) [002] .n.1 82317.643563: cpu_idle: state=4294967295 cpu_id=2
122829          <idle>-0     (-----) [002] d..2 82317.643583: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
122830<...>-9105 ( 9105) [002] .... 82317.643948: binder_transaction: transaction=1572650 dest_node=404833 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
122831<...>-9105 ( 9105) [002] .... 82317.643955: binder_transaction_alloc_buf: transaction=1572650 data_size=80 offsets_size=0
122832<...>-9105 ( 9105) [002] d..4 82317.643960: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
122833<...>-9105 ( 9105) [002] d..5 82317.643991: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
122834          <idle>-0     (-----) [000] .n.1 82317.643997: cpu_idle: state=4294967295 cpu_id=0
122835          <idle>-0     (-----) [000] d..2 82317.644033: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
122836<...>-8951 ( 8858) [000] .... 82317.644040: binder_transaction_received: transaction=1572650
122837<...>-9105 ( 9105) [002] d..3 82317.644066: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=006
122838<...>-8951 ( 8858) [000] d..1 82317.644069: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
122839<...>-8951 ( 8858) [000] d..2 82317.644095: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
122840<...>-9105 ( 9105) [002] d..4 82317.644102: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
122841<...>-8951 ( 8858) [000] d..2 82317.644149: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122842          <idle>-0     (-----) [000] d..1 82317.644159: cpu_idle: state=0 cpu_id=0
122843          <idle>-0     (-----) [004] dnh2 82317.644166: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
122844          <idle>-0     (-----) [004] .n.1 82317.644171: cpu_idle: state=4294967295 cpu_id=4
122845          <idle>-0     (-----) [004] d..2 82317.644177: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
122846          <idle>-0     (-----) [003] .n.1 82317.644213: cpu_idle: state=4294967295 cpu_id=3
122847          <idle>-0     (-----) [003] d..2 82317.644227: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
122848  appEventThread-8881  ( 8858) [003] d..2 82317.644270: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
122849 s.nexuslauncher-10023 (10023) [004] .... 82317.644301: binder_transaction: transaction=1572651 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
122850 s.nexuslauncher-10023 (10023) [004] .... 82317.644303: binder_transaction_alloc_buf: transaction=1572651 data_size=80 offsets_size=0
122851 s.nexuslauncher-10023 (10023) [004] d..4 82317.644305: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
122852          <idle>-0     (-----) [000] dnh2 82317.644324: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
122853          <idle>-0     (-----) [000] .n.1 82317.644329: cpu_idle: state=4294967295 cpu_id=0
122854    RenderThread-9436  ( 9105) [003] d..2 82317.644333: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122855          <idle>-0     (-----) [000] d..2 82317.644338: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
122856<...>-8951 ( 8858) [000] .... 82317.644343: binder_transaction_received: transaction=1572651
122857 s.nexuslauncher-10023 (10023) [004] d..2 82317.644346: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
122858          <idle>-0     (-----) [003] d..1 82317.644349: cpu_idle: state=0 cpu_id=3
122859          <idle>-0     (-----) [004] d..1 82317.644353: cpu_idle: state=2 cpu_id=4
122860<...>-8951 ( 8858) [000] d..1 82317.644360: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
122861<...>-8951 ( 8858) [000] d..2 82317.644373: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
122862          <idle>-0     (-----) [003] .n.1 82317.644380: cpu_idle: state=4294967295 cpu_id=3
122863          <idle>-0     (-----) [003] d..2 82317.644388: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
122864<...>-9105 ( 9105) [002] d..3 82317.644396: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=003
122865<...>-8951 ( 8858) [000] d..2 82317.644403: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122866          <idle>-0     (-----) [000] d..1 82317.644413: cpu_idle: state=0 cpu_id=0
122867<...>-9105 ( 9105) [002] d..4 82317.644424: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
122868          <idle>-0     (-----) [000] .n.1 82317.644430: cpu_idle: state=4294967295 cpu_id=0
122869  appEventThread-8881  ( 8858) [003] d..2 82317.644430: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122870          <idle>-0     (-----) [000] d..2 82317.644440: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=9436 next_prio=120
122871          <idle>-0     (-----) [003] d..1 82317.644441: cpu_idle: state=0 cpu_id=3
122872<...>-9105 ( 9105) [002] d..2 82317.644455: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122873          <idle>-0     (-----) [002] d..1 82317.644471: cpu_idle: state=2 cpu_id=2
122874    RenderThread-9436  ( 9105) [000] d..1 82317.644595: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
122875    RenderThread-9436  ( 9105) [000] d..2 82317.644609: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
122876    RenderThread-9436  ( 9105) [000] .... 82317.644684: binder_transaction: transaction=1572652 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
122877    RenderThread-9436  ( 9105) [000] .... 82317.644688: binder_transaction_alloc_buf: transaction=1572652 data_size=104 offsets_size=0
122878    RenderThread-9436  ( 9105) [000] d..4 82317.644692: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
122879    RenderThread-9436  ( 9105) [000] d..5 82317.644702: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
122880    RenderThread-9436  ( 9105) [000] d..2 82317.644714: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
122881<...>-8951 ( 8858) [000] .... 82317.644721: binder_transaction_received: transaction=1572652
122882          <idle>-0     (-----) [002] .n.1 82317.644722: cpu_idle: state=4294967295 cpu_id=2
122883          <idle>-0     (-----) [002] d..2 82317.644737: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
122884<...>-8951 ( 8858) [000] .... 82317.644811: binder_transaction: transaction=1572653 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
122885<...>-8951 ( 8858) [000] .... 82317.644815: binder_transaction_alloc_buf: transaction=1572653 data_size=52 offsets_size=8
122886<...>-9105 ( 9105) [002] d..2 82317.644819: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122887<...>-8951 ( 8858) [000] d..2 82317.644830: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
122888          <idle>-0     (-----) [002] d..1 82317.644833: cpu_idle: state=0 cpu_id=2
122889<...>-8951 ( 8858) [000] d..3 82317.644841: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=000
122890<...>-8951 ( 8858) [000] d..2 82317.644874: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
122891    RenderThread-9436  ( 9105) [000] .... 82317.644880: binder_transaction_received: transaction=1572653
122892 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.645134: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122893 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.645150: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
122894    RenderThread-9436  ( 9105) [000] d..2 82317.646059: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122895    RenderThread-9436  ( 9105) [000] d..3 82317.646080: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122896          <idle>-0     (-----) [002] .n.1 82317.646086: cpu_idle: state=4294967295 cpu_id=2
122897          <idle>-0     (-----) [002] d..2 82317.646096: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
122898 kgsl_worker_thr-258   (  258) [002] d..2 82317.646161: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122899          <idle>-0     (-----) [002] d..1 82317.646172: cpu_idle: state=0 cpu_id=2
122900    RenderThread-9436  ( 9105) [000] d..2 82317.646219: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122901    RenderThread-9436  ( 9105) [000] d..3 82317.646234: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122902          <idle>-0     (-----) [002] .n.1 82317.646240: cpu_idle: state=4294967295 cpu_id=2
122903          <idle>-0     (-----) [002] d..2 82317.646248: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
122904          <idle>-0     (-----) [003] ...1 82317.646289: cpu_idle: state=4294967295 cpu_id=3
122905          <idle>-0     (-----) [003] d..1 82317.646294: cpu_idle: state=0 cpu_id=3
122906 kgsl_worker_thr-258   (  258) [002] d..1 82317.646343: clk_enable: gpll0_out_even
122907 kgsl_worker_thr-258   (  258) [002] d..1 82317.646345: clk_enable: gcc_gpu_gpll0_div_clk_src
122908    RenderThread-9436  ( 9105) [000] .... 82317.646430: binder_transaction: transaction=1572654 dest_node=410563 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
122909    RenderThread-9436  ( 9105) [000] .... 82317.646436: binder_transaction_alloc_buf: transaction=1572654 data_size=192 offsets_size=8
122910    RenderThread-9436  ( 9105) [000] d..4 82317.646507: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
122911    RenderThread-9436  ( 9105) [000] d..5 82317.646532: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
122912          <idle>-0     (-----) [003] .n.1 82317.646536: cpu_idle: state=4294967295 cpu_id=3
122913          <idle>-0     (-----) [003] d..2 82317.646546: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
122914    RenderThread-9436  ( 9105) [000] d..2 82317.646548: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122915<...>-8951 ( 8858) [003] .... 82317.646553: binder_transaction_received: transaction=1572654
122916<...>-8951 ( 8858) [003] d..1 82317.646656: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
122917<...>-8951 ( 8858) [003] d..2 82317.646685: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
122918<...>-8951 ( 8858) [003] .... 82317.646749: binder_transaction: transaction=1572655 dest_node=0 dest_proc=9105 dest_thread=9436 reply=1 flags=0x0 code=0x0
122919<...>-8951 ( 8858) [003] .... 82317.646753: binder_transaction_alloc_buf: transaction=1572655 data_size=68 offsets_size=0
122920<...>-8951 ( 8858) [003] d..2 82317.646757: sched_waking: comm=RenderThread pid=9436 prio=120 target_cpu=000
122921<...>-8951 ( 8858) [003] d..3 82317.646775: sched_wakeup: comm=RenderThread pid=9436 prio=120 target_cpu=003
122922<...>-8951 ( 8858) [003] d..2 82317.646809: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=9436 next_prio=120
122923    RenderThread-9436  ( 9105) [003] .... 82317.646816: binder_transaction_received: transaction=1572655
122924 kgsl_worker_thr-258   (  258) [002] d..1 82317.646854: clk_enable: gpu_cc_gmu_clk_src
122925    RenderThread-9436  ( 9105) [003] d..2 82317.646874: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=006
122926 kgsl_worker_thr-258   (  258) [002] d..1 82317.646878: clk_enable: gpu_cc_cx_gmu_clk
122927 kgsl_worker_thr-258   (  258) [002] d..1 82317.646897: clk_enable: gpu_cc_cxo_clk
122928  kworker/u16:13-1147  ( 1147) [000] d..2 82317.646901: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
122929 kgsl_worker_thr-258   (  258) [002] d..1 82317.646906: clk_enable: gcc_ddrss_gpu_axi_clk
122930 kgsl_worker_thr-258   (  258) [002] d..1 82317.646914: clk_enable: gcc_gpu_memnoc_gfx_clk
122931    RenderThread-9436  ( 9105) [003] d..3 82317.646919: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
122932   sfEventThread-8882  ( 8858) [000] d..1 82317.646926: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
122933 kgsl_worker_thr-258   (  258) [002] d..2 82317.646967: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
122934          <idle>-0     (-----) [005] ...1 82317.646981: cpu_idle: state=4294967295 cpu_id=5
122935          <idle>-0     (-----) [005] d..1 82317.646985: cpu_idle: state=0 cpu_id=5
122936   sfEventThread-8882  ( 8858) [000] d..2 82317.646987: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
122937         rcuop/2-29    (   29) [002] d..2 82317.646999: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=DispSync next_pid=8879 next_prio=97
122938    RenderThread-9436  ( 9105) [003] d..2 82317.647009: sched_switch: prev_comm=RenderThread prev_pid=9436 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
122939   sfEventThread-8882  ( 8858) [000] d..2 82317.647012: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
122940          <idle>-0     (-----) [007] ...1 82317.647015: cpu_idle: state=4294967295 cpu_id=7
122941          <idle>-0     (-----) [007] d..1 82317.647020: cpu_idle: state=0 cpu_id=7
122942          <idle>-0     (-----) [003] d..1 82317.647025: cpu_idle: state=0 cpu_id=3
122943          <idle>-0     (-----) [006] ...1 82317.647043: cpu_idle: state=4294967295 cpu_id=6
122944        DispSync-8879  ( 8858) [002] d..2 82317.647045: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
122945          <idle>-0     (-----) [006] d..1 82317.647047: cpu_idle: state=0 cpu_id=6
122946          <idle>-0     (-----) [002] d.h3 82317.647061: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122947          <idle>-0     (-----) [004] ...1 82317.647067: cpu_idle: state=4294967295 cpu_id=4
122948          <idle>-0     (-----) [004] d..1 82317.647071: cpu_idle: state=0 cpu_id=4
122949          <idle>-0     (-----) [002] dnh4 82317.647072: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122950          <idle>-0     (-----) [002] d..2 82317.647081: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
122951 kgsl_worker_thr-258   (  258) [002] d..2 82317.647100: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
122952          <idle>-0     (-----) [002] d..1 82317.647110: cpu_idle: state=0 cpu_id=2
122953  kworker/u16:13-1147  ( 1147) [000] d..2 82317.647147: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
122954          <idle>-0     (-----) [000] d..1 82317.647157: cpu_idle: state=0 cpu_id=0
122955          <idle>-0     (-----) [002] d.h2 82317.647194: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122956          <idle>-0     (-----) [002] dnh3 82317.647203: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122957          <idle>-0     (-----) [002] .n.1 82317.647209: cpu_idle: state=4294967295 cpu_id=2
122958          <idle>-0     (-----) [002] d..2 82317.647216: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
122959 kgsl_worker_thr-258   (  258) [002] d..2 82317.647235: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
122960          <idle>-0     (-----) [002] d..1 82317.647242: cpu_idle: state=0 cpu_id=2
122961          <idle>-0     (-----) [002] d.h2 82317.647329: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122962          <idle>-0     (-----) [002] dnh3 82317.647337: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122963          <idle>-0     (-----) [002] .n.1 82317.647343: cpu_idle: state=4294967295 cpu_id=2
122964          <idle>-0     (-----) [002] d..2 82317.647350: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
122965 kgsl_worker_thr-258   (  258) [002] d..2 82317.647418: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
122966          <idle>-0     (-----) [002] d..1 82317.647424: cpu_idle: state=0 cpu_id=2
122967          <idle>-0     (-----) [002] d.h2 82317.647513: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122968          <idle>-0     (-----) [002] dnh3 82317.647521: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122969          <idle>-0     (-----) [002] .n.1 82317.647526: cpu_idle: state=4294967295 cpu_id=2
122970          <idle>-0     (-----) [002] d..2 82317.647534: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
122971 kgsl_worker_thr-258   (  258) [002] d..2 82317.647563: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
122972          <idle>-0     (-----) [002] d..1 82317.647569: cpu_idle: state=0 cpu_id=2
122973          <idle>-0     (-----) [002] d.h2 82317.647658: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122974          <idle>-0     (-----) [002] dnh3 82317.647665: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122975          <idle>-0     (-----) [002] .n.1 82317.647671: cpu_idle: state=4294967295 cpu_id=2
122976          <idle>-0     (-----) [002] d..2 82317.647678: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
122977 kgsl_worker_thr-258   (  258) [002] d..2 82317.647696: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
122978          <idle>-0     (-----) [002] d..1 82317.647703: cpu_idle: state=0 cpu_id=2
122979          <idle>-0     (-----) [002] d.h2 82317.647791: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122980          <idle>-0     (-----) [002] dnh3 82317.647799: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122981          <idle>-0     (-----) [002] .n.1 82317.647805: cpu_idle: state=4294967295 cpu_id=2
122982          <idle>-0     (-----) [002] d..2 82317.647812: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
122983 kgsl_worker_thr-258   (  258) [002] d..2 82317.647829: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
122984          <idle>-0     (-----) [002] d..1 82317.647836: cpu_idle: state=0 cpu_id=2
122985          <idle>-0     (-----) [002] d.h2 82317.647925: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122986          <idle>-0     (-----) [002] dnh3 82317.647932: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122987          <idle>-0     (-----) [002] .n.1 82317.647938: cpu_idle: state=4294967295 cpu_id=2
122988          <idle>-0     (-----) [002] d..2 82317.647945: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
122989 kgsl_worker_thr-258   (  258) [002] d..2 82317.647962: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
122990          <idle>-0     (-----) [002] d..1 82317.647969: cpu_idle: state=0 cpu_id=2
122991          <idle>-0     (-----) [002] d.h2 82317.648057: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122992          <idle>-0     (-----) [002] dnh3 82317.648065: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122993          <idle>-0     (-----) [002] .n.1 82317.648072: cpu_idle: state=4294967295 cpu_id=2
122994          <idle>-0     (-----) [002] d..2 82317.648078: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
122995 kgsl_worker_thr-258   (  258) [002] d..2 82317.648096: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
122996          <idle>-0     (-----) [002] d..1 82317.648103: cpu_idle: state=0 cpu_id=2
122997          <idle>-0     (-----) [002] d.h2 82317.648191: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122998          <idle>-0     (-----) [002] dnh3 82317.648199: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
122999          <idle>-0     (-----) [002] .n.1 82317.648205: cpu_idle: state=4294967295 cpu_id=2
123000          <idle>-0     (-----) [002] d..2 82317.648212: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123001 kgsl_worker_thr-258   (  258) [002] d..2 82317.648229: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123002          <idle>-0     (-----) [002] d..1 82317.648235: cpu_idle: state=0 cpu_id=2
123003          <idle>-0     (-----) [002] d.h2 82317.648325: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123004          <idle>-0     (-----) [002] dnh3 82317.648332: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123005          <idle>-0     (-----) [002] .n.1 82317.648338: cpu_idle: state=4294967295 cpu_id=2
123006          <idle>-0     (-----) [002] d..2 82317.648345: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123007 kgsl_worker_thr-258   (  258) [002] d..2 82317.648363: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123008          <idle>-0     (-----) [002] d..1 82317.648370: cpu_idle: state=0 cpu_id=2
123009          <idle>-0     (-----) [002] d.h2 82317.648458: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123010          <idle>-0     (-----) [000] d.s2 82317.648464: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
123011          <idle>-0     (-----) [002] dnh3 82317.648467: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123012          <idle>-0     (-----) [002] .n.1 82317.648473: cpu_idle: state=4294967295 cpu_id=2
123013 FinalizerDaemon-8953  ( 8943) [001] d.s1 82317.648473: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
123014          <idle>-0     (-----) [000] dns3 82317.648478: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
123015          <idle>-0     (-----) [002] d..2 82317.648481: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123016          <idle>-0     (-----) [000] dns3 82317.648482: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123017          <idle>-0     (-----) [000] dns4 82317.648498: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123018          <idle>-0     (-----) [003] .n.1 82317.648504: cpu_idle: state=4294967295 cpu_id=3
123019 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.648511: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
123020          <idle>-0     (-----) [003] d..2 82317.648517: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123021          <idle>-0     (-----) [000] .n.1 82317.648517: cpu_idle: state=4294967295 cpu_id=0
123022 kgsl_worker_thr-258   (  258) [002] d..2 82317.648524: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
123023          <idle>-0     (-----) [000] d..2 82317.648525: 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
123024<...>-8 ( 8) [000] d..2 82317.648548: 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
123025     rcu_preempt-7     (    7) [002] d..2 82317.648550: 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
123026          <idle>-0     (-----) [002] d..1 82317.648557: cpu_idle: state=0 cpu_id=2
123027          <idle>-0     (-----) [000] d..1 82317.648559: cpu_idle: state=0 cpu_id=0
123028 crtc_commit:111-321   (  321) [003] d..2 82317.648585: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
123029          <idle>-0     (-----) [003] d..1 82317.648596: cpu_idle: state=0 cpu_id=3
123030          <idle>-0     (-----) [002] d.h2 82317.648604: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123031          <idle>-0     (-----) [002] dnh3 82317.648613: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123032          <idle>-0     (-----) [002] .n.1 82317.648619: cpu_idle: state=4294967295 cpu_id=2
123033          <idle>-0     (-----) [002] d..2 82317.648628: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123034 kgsl_worker_thr-258   (  258) [002] d..2 82317.648656: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123035          <idle>-0     (-----) [002] d..1 82317.648664: cpu_idle: state=0 cpu_id=2
123036          <idle>-0     (-----) [003] d.s4 82317.648683: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123037          <idle>-0     (-----) [003] d.s5 82317.648698: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123038          <idle>-0     (-----) [002] .n.1 82317.648703: cpu_idle: state=4294967295 cpu_id=2
123039          <idle>-0     (-----) [003] ...1 82317.648707: cpu_idle: state=4294967295 cpu_id=3
123040          <idle>-0     (-----) [002] d..2 82317.648711: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123041          <idle>-0     (-----) [003] d..1 82317.648711: cpu_idle: state=0 cpu_id=3
123042 kgsl_worker_thr-258   (  258) [002] d..2 82317.648734: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123043          <idle>-0     (-----) [002] d..1 82317.648741: cpu_idle: state=0 cpu_id=2
123044          <idle>-0     (-----) [003] d.s4 82317.648746: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123045          <idle>-0     (-----) [003] d.s5 82317.648758: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123046          <idle>-0     (-----) [002] .n.1 82317.648763: cpu_idle: state=4294967295 cpu_id=2
123047          <idle>-0     (-----) [003] ...1 82317.648765: cpu_idle: state=4294967295 cpu_id=3
123048          <idle>-0     (-----) [003] d..1 82317.648769: cpu_idle: state=0 cpu_id=3
123049          <idle>-0     (-----) [002] d..2 82317.648771: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123050 kgsl_worker_thr-258   (  258) [002] d..2 82317.648794: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123051          <idle>-0     (-----) [002] d..1 82317.648802: cpu_idle: state=0 cpu_id=2
123052          <idle>-0     (-----) [003] d.s4 82317.648820: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123053          <idle>-0     (-----) [003] d.s5 82317.648831: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123054          <idle>-0     (-----) [002] .n.1 82317.648836: cpu_idle: state=4294967295 cpu_id=2
123055          <idle>-0     (-----) [003] ...1 82317.648839: cpu_idle: state=4294967295 cpu_id=3
123056          <idle>-0     (-----) [002] d..2 82317.648843: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123057          <idle>-0     (-----) [003] d..1 82317.648844: cpu_idle: state=0 cpu_id=3
123058 kgsl_worker_thr-258   (  258) [002] d..2 82317.648869: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123059          <idle>-0     (-----) [002] d..1 82317.648877: cpu_idle: state=0 cpu_id=2
123060          <idle>-0     (-----) [003] d.s4 82317.648954: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123061          <idle>-0     (-----) [003] d.s5 82317.648966: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123062          <idle>-0     (-----) [002] .n.1 82317.648971: cpu_idle: state=4294967295 cpu_id=2
123063          <idle>-0     (-----) [003] ...1 82317.648975: cpu_idle: state=4294967295 cpu_id=3
123064          <idle>-0     (-----) [002] d..2 82317.648978: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123065          <idle>-0     (-----) [003] d..1 82317.648979: cpu_idle: state=0 cpu_id=3
123066 kgsl_worker_thr-258   (  258) [002] d..2 82317.648999: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123067          <idle>-0     (-----) [002] d..1 82317.649006: cpu_idle: state=0 cpu_id=2
123068          <idle>-0     (-----) [003] d.s4 82317.649011: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123069          <idle>-0     (-----) [003] d.s5 82317.649023: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123070          <idle>-0     (-----) [002] .n.1 82317.649028: cpu_idle: state=4294967295 cpu_id=2
123071          <idle>-0     (-----) [003] ...1 82317.649030: cpu_idle: state=4294967295 cpu_id=3
123072          <idle>-0     (-----) [003] d..1 82317.649035: cpu_idle: state=0 cpu_id=3
123073          <idle>-0     (-----) [002] d..2 82317.649035: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123074 kgsl_worker_thr-258   (  258) [002] d..2 82317.649068: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123075          <idle>-0     (-----) [002] d..1 82317.649075: cpu_idle: state=0 cpu_id=2
123076          <idle>-0     (-----) [002] d.h2 82317.649163: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123077          <idle>-0     (-----) [002] dnh3 82317.649172: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123078          <idle>-0     (-----) [002] .n.1 82317.649178: cpu_idle: state=4294967295 cpu_id=2
123079          <idle>-0     (-----) [002] d..2 82317.649186: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123080 kgsl_worker_thr-258   (  258) [002] d..2 82317.649328: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123081          <idle>-0     (-----) [002] d..1 82317.649337: cpu_idle: state=0 cpu_id=2
123082 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.649355: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123083 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.649371: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123084          <idle>-0     (-----) [002] .n.1 82317.649376: cpu_idle: state=4294967295 cpu_id=2
123085          <idle>-0     (-----) [002] d..2 82317.649384: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123086 kgsl_worker_thr-258   (  258) [002] d..2 82317.649447: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123087          <idle>-0     (-----) [002] d..1 82317.649454: cpu_idle: state=0 cpu_id=2
123088          <idle>-0     (-----) [002] d.h2 82317.649541: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123089          <idle>-0     (-----) [002] dnh3 82317.649550: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123090          <idle>-0     (-----) [002] .n.1 82317.649557: cpu_idle: state=4294967295 cpu_id=2
123091          <idle>-0     (-----) [002] d..2 82317.649564: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123092          <idle>-0     (-----) [000] ...1 82317.649980: cpu_idle: state=4294967295 cpu_id=0
123093          <idle>-0     (-----) [003] ...1 82317.649982: cpu_idle: state=4294967295 cpu_id=3
123094          <idle>-0     (-----) [000] d..1 82317.649984: cpu_idle: state=0 cpu_id=0
123095          <idle>-0     (-----) [004] ...1 82317.649984: cpu_idle: state=4294967295 cpu_id=4
123096          <idle>-0     (-----) [004] d..1 82317.649986: cpu_idle: state=0 cpu_id=4
123097          <idle>-0     (-----) [005] ...1 82317.649986: cpu_idle: state=4294967295 cpu_id=5
123098          <idle>-0     (-----) [003] d..1 82317.649987: cpu_idle: state=0 cpu_id=3
123099          <idle>-0     (-----) [005] d..1 82317.649988: cpu_idle: state=0 cpu_id=5
123100          <idle>-0     (-----) [006] ...1 82317.649990: cpu_idle: state=4294967295 cpu_id=6
123101          <idle>-0     (-----) [007] ...1 82317.649991: cpu_idle: state=4294967295 cpu_id=7
123102          <idle>-0     (-----) [006] d..1 82317.649992: cpu_idle: state=0 cpu_id=6
123103          <idle>-0     (-----) [007] d..1 82317.649993: cpu_idle: state=0 cpu_id=7
123104 kgsl_worker_thr-258   (  258) [002] d..2 82317.650006: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
123105 kgsl_worker_thr-258   (  258) [002] d..3 82317.650038: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
123106 kgsl_worker_thr-258   (  258) [002] d..2 82317.650124: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
123107  kworker/u16:13-1147  ( 1147) [002] d..2 82317.650133: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123108          <idle>-0     (-----) [000] ...1 82317.650141: cpu_idle: state=4294967295 cpu_id=0
123109          <idle>-0     (-----) [000] d..1 82317.650144: cpu_idle: state=0 cpu_id=0
123110  kworker/u16:13-1147  ( 1147) [002] d..3 82317.650161: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
123111  kworker/u16:13-1147  ( 1147) [002] d..2 82317.650174: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123112  kworker/u16:15-1311  ( 1311) [002] d..2 82317.650191: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123113          <idle>-0     (-----) [002] d..1 82317.650201: cpu_idle: state=0 cpu_id=2
123114          <idle>-0     (-----) [002] d.h2 82317.650223: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123115          <idle>-0     (-----) [002] dnh3 82317.650232: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123116          <idle>-0     (-----) [002] .n.1 82317.650239: cpu_idle: state=4294967295 cpu_id=2
123117          <idle>-0     (-----) [002] d..2 82317.650247: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123118 kgsl_worker_thr-258   (  258) [002] d..2 82317.650300: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123119          <idle>-0     (-----) [002] d..1 82317.650308: cpu_idle: state=0 cpu_id=2
123120          <idle>-0     (-----) [000] ...1 82317.650320: cpu_idle: state=4294967295 cpu_id=0
123121          <idle>-0     (-----) [000] d..1 82317.650323: cpu_idle: state=0 cpu_id=0
123122          <idle>-0     (-----) [002] d.h2 82317.650393: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123123          <idle>-0     (-----) [002] dnh3 82317.650401: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
123124          <idle>-0     (-----) [002] .n.1 82317.650408: cpu_idle: state=4294967295 cpu_id=2
123125          <idle>-0     (-----) [002] d..2 82317.650415: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
123126 kgsl_worker_thr-258   (  258) [002] d..2 82317.650477: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123127          <idle>-0     (-----) [002] d..1 82317.650485: cpu_idle: state=0 cpu_id=2
123128          <idle>-0     (-----) [003] ...1 82317.651217: cpu_idle: state=4294967295 cpu_id=3
123129          <idle>-0     (-----) [003] d..1 82317.651220: cpu_idle: state=0 cpu_id=3
123130 FinalizerDaemon-8953  ( 8943) [001] d.H3 82317.651855: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
123131 FinalizerDaemon-8953  ( 8943) [001] d.H3 82317.651869: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
123132          <idle>-0     (-----) [005] dnh2 82317.651875: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
123133          <idle>-0     (-----) [005] .n.1 82317.651878: cpu_idle: state=4294967295 cpu_id=5
123134 FinalizerDaemon-8953  ( 8943) [001] d.H4 82317.651882: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
123135          <idle>-0     (-----) [005] d..2 82317.651883: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
123136          <idle>-0     (-----) [003] .n.1 82317.651887: cpu_idle: state=4294967295 cpu_id=3
123137          <idle>-0     (-----) [003] d..2 82317.651898: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
123138         sugov:4-577   (  577) [005] .... 82317.651901: clk_set_rate: perfcl_clk 2092800000
123139         sugov:4-577   (  577) [005] .... 82317.651902: clk_set_rate: cpu7_perfcl_clk 2169600000
123140         sugov:4-577   (  577) [005] .... 82317.651907: clk_set_rate: cpu6_perfcl_clk 2169600000
123141         sugov:4-577   (  577) [005] .... 82317.651911: clk_set_rate: cpu5_perfcl_clk 2169600000
123142         sugov:4-577   (  577) [005] .... 82317.651916: clk_set_rate: cpu4_perfcl_clk 2092800000
123143         sugov:4-577   (  577) [005] .... 82317.651921: cpu_frequency: state=2092800 cpu_id=4
123144         sugov:4-577   (  577) [005] .... 82317.651929: cpu_frequency: state=2092800 cpu_id=5
123145         sugov:4-577   (  577) [005] .... 82317.651930: cpu_frequency: state=2092800 cpu_id=6
123146         sugov:4-577   (  577) [005] .... 82317.651932: cpu_frequency: state=2092800 cpu_id=7
123147         sugov:0-576   (  576) [003] .... 82317.651937: clk_set_rate: pwrcl_clk 979200000
123148         sugov:0-576   (  576) [003] .... 82317.651946: clk_set_rate: cpu3_pwrcl_clk 1056000000
123149         sugov:4-577   (  577) [005] d..2 82317.651946: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
123150          <idle>-0     (-----) [005] d..1 82317.651950: cpu_idle: state=0 cpu_id=5
123151         sugov:0-576   (  576) [003] .... 82317.651954: clk_set_rate: cpu2_pwrcl_clk 1056000000
123152         sugov:0-576   (  576) [003] .... 82317.651961: clk_set_rate: cpu1_pwrcl_clk 1056000000
123153         sugov:0-576   (  576) [003] .... 82317.651968: clk_set_rate: cpu0_pwrcl_clk 979200000
123154         sugov:0-576   (  576) [003] .... 82317.652080: cpu_frequency: state=979200 cpu_id=0
123155         sugov:0-576   (  576) [003] .... 82317.652095: cpu_frequency: state=979200 cpu_id=1
123156         sugov:0-576   (  576) [003] .... 82317.652099: cpu_frequency: state=979200 cpu_id=2
123157         sugov:0-576   (  576) [003] .... 82317.652102: cpu_frequency: state=979200 cpu_id=3
123158         sugov:0-576   (  576) [003] d..2 82317.652132: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123159          <idle>-0     (-----) [003] d..1 82317.652143: cpu_idle: state=0 cpu_id=3
123160          <idle>-0     (-----) [003] ...1 82317.653425: cpu_idle: state=4294967295 cpu_id=3
123161          <idle>-0     (-----) [003] d..1 82317.653428: cpu_idle: state=0 cpu_id=3
123162          <idle>-0     (-----) [002] d.s2 82317.655129: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
123163          <idle>-0     (-----) [000] d.s2 82317.655130: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
123164 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.655140: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
123165          <idle>-0     (-----) [002] dns3 82317.655145: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
123166          <idle>-0     (-----) [000] dns3 82317.655147: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
123167          <idle>-0     (-----) [000] .n.1 82317.655154: cpu_idle: state=4294967295 cpu_id=0
123168 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.655163: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
123169          <idle>-0     (-----) [000] d..2 82317.655164: 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
123170          <idle>-0     (-----) [002] .n.1 82317.655169: cpu_idle: state=4294967295 cpu_id=2
123171          <idle>-0     (-----) [002] d..2 82317.655179: 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
123172     rcu_preempt-7     (    7) [002] d..2 82317.655187: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
123173<...>-8 ( 8) [000] d..2 82317.655190: 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
123174          <idle>-0     (-----) [000] d..1 82317.655200: cpu_idle: state=0 cpu_id=0
123175     rcu_preempt-7     (    7) [002] d..3 82317.655208: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=000
123176     rcu_preempt-7     (    7) [002] d..2 82317.655211: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
123177          <idle>-0     (-----) [000] .n.1 82317.655213: cpu_idle: state=4294967295 cpu_id=0
123178          <idle>-0     (-----) [000] d..2 82317.655223: 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
123179     rcu_preempt-7     (    7) [002] d..3 82317.655230: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
123180         rcuop/6-61    (   61) [000] d..2 82317.655239: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
123181     rcu_preempt-7     (    7) [002] d..2 82317.655245: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123182         rcuop/6-61    (   61) [000] d..3 82317.655254: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
123183         rcuop/6-61    (   61) [000] d..2 82317.655265: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
123184     kworker/0:1-25262 (25262) [000] .... 82317.655310: cgroup_release: root=1 id=109 level=2 path=/uid_10151/pid_27550
123185     kworker/0:1-25262 (25262) [000] d..2 82317.655327: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
123186         rcuop/0-10    (   10) [000] d..2 82317.655332: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
123187         rcuop/0-10    (   10) [000] d..3 82317.655349: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
123188         rcuop/0-10    (   10) [000] d..2 82317.655391: 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
123189  kworker/u16:15-1311  ( 1311) [002] d..2 82317.655461: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123190          <idle>-0     (-----) [002] d..1 82317.655473: cpu_idle: state=0 cpu_id=2
123191         rcuop/1-21    (   21) [000] d..2 82317.655473: 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
123192          <idle>-0     (-----) [000] d..1 82317.655485: cpu_idle: state=0 cpu_id=0
123193 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.655487: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
123194 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.655498: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
123195 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.655506: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
123196          <idle>-0     (-----) [002] .n.1 82317.655511: cpu_idle: state=4294967295 cpu_id=2
123197          <idle>-0     (-----) [002] d..2 82317.655522: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123198  kworker/u16:15-1311  ( 1311) [002] d..2 82317.655602: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123199          <idle>-0     (-----) [002] d..1 82317.655611: cpu_idle: state=0 cpu_id=2
123200          <idle>-0     (-----) [000] d.h5 82317.657651: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123201          <idle>-0     (-----) [000] d.h6 82317.657667: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123202          <idle>-0     (-----) [003] .n.1 82317.657672: cpu_idle: state=4294967295 cpu_id=3
123203          <idle>-0     (-----) [000] ...1 82317.657681: cpu_idle: state=4294967295 cpu_id=0
123204          <idle>-0     (-----) [003] d..2 82317.657681: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123205          <idle>-0     (-----) [000] d..1 82317.657686: cpu_idle: state=0 cpu_id=0
123206          <idle>-0     (-----) [000] ...1 82317.657712: cpu_idle: state=4294967295 cpu_id=0
123207          <idle>-0     (-----) [000] d..1 82317.657715: cpu_idle: state=0 cpu_id=0
123208 crtc_commit:111-321   (  321) [003] d..1 82317.657761: clk_disable: disp_cc_mdss_byte0_intf_clk
123209 crtc_commit:111-321   (  321) [003] d..1 82317.657777: clk_disable: disp_cc_mdss_byte0_div_clk_src
123210 crtc_commit:111-321   (  321) [003] d..1 82317.657781: clk_disable: disp_cc_mdss_pclk0_clk
123211 crtc_commit:111-321   (  321) [003] d..1 82317.657791: clk_disable: disp_cc_mdss_pclk0_clk_src
123212 crtc_commit:111-321   (  321) [003] d..1 82317.657793: clk_disable: dsi0_phy_pll_out_dsiclk
123213 crtc_commit:111-321   (  321) [003] d..1 82317.657795: clk_disable: dsi0pll_pclk_src
123214 crtc_commit:111-321   (  321) [003] d..1 82317.657797: clk_disable: dsi0pll_pclk_src_mux
123215 crtc_commit:111-321   (  321) [003] d..1 82317.657799: clk_disable: dsi0pll_post_bit_div
123216 crtc_commit:111-321   (  321) [003] d..1 82317.657801: clk_disable: disp_cc_mdss_byte0_clk
123217 crtc_commit:111-321   (  321) [003] d..1 82317.657812: clk_disable: disp_cc_mdss_byte0_clk_src
123218 crtc_commit:111-321   (  321) [003] d..1 82317.657814: clk_disable: dsi0_phy_pll_out_byteclk
123219 crtc_commit:111-321   (  321) [003] d..1 82317.657816: clk_disable: dsi0pll_byteclk_src
123220 crtc_commit:111-321   (  321) [003] d..1 82317.657817: clk_disable: dsi0pll_bitclk_src
123221 crtc_commit:111-321   (  321) [003] d..1 82317.657819: clk_disable: dsi0pll_pll_out_div
123222 crtc_commit:111-321   (  321) [003] d..1 82317.657821: clk_disable: dsi0pll_vco_clk
123223 crtc_commit:111-321   (  321) [003] d..1 82317.657863: clk_disable: disp_cc_mdss_esc0_clk
123224 crtc_commit:111-321   (  321) [003] d..1 82317.657874: clk_disable: disp_cc_mdss_esc0_clk_src
123225 crtc_commit:111-321   (  321) [003] d..1 82317.657955: clk_disable: disp_cc_mdss_vsync_clk
123226 crtc_commit:111-321   (  321) [003] d..1 82317.657968: clk_disable: disp_cc_mdss_mdp_clk
123227 crtc_commit:111-321   (  321) [003] d..1 82317.657977: clk_disable: disp_cc_mdss_mdp_clk_src
123228 crtc_commit:111-321   (  321) [003] d..1 82317.658007: clk_disable: gcc_disp_gpll0_clk_src
123229 crtc_commit:111-321   (  321) [003] d..1 82317.658563: clk_disable: disp_cc_mdss_axi_clk
123230 crtc_commit:111-321   (  321) [003] d..1 82317.658577: clk_disable: disp_cc_mdss_ahb_clk
123231 crtc_commit:111-321   (  321) [003] d..1 82317.658589: clk_disable: gcc_disp_axi_clk
123232 crtc_commit:111-321   (  321) [003] d..2 82317.658663: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
123233          <idle>-0     (-----) [003] d..1 82317.658673: cpu_idle: state=0 cpu_id=3
123234          <idle>-0     (-----) [003] d.h2 82317.658748: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123235          <idle>-0     (-----) [003] dnh3 82317.658759: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123236          <idle>-0     (-----) [003] .n.1 82317.658766: cpu_idle: state=4294967295 cpu_id=3
123237          <idle>-0     (-----) [003] d..2 82317.658774: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123238 crtc_commit:111-321   (  321) [003] d..1 82317.658790: clk_disable: disp_cc_mdss_rscc_ahb_clk
123239 crtc_commit:111-321   (  321) [003] d..1 82317.658802: clk_disable: disp_cc_mdss_rscc_vsync_clk
123240 crtc_commit:111-321   (  321) [003] d..1 82317.658812: clk_disable: disp_cc_mdss_vsync_clk_src
123241 crtc_commit:111-321   (  321) [003] d..2 82317.658968: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
123242          <idle>-0     (-----) [003] d..1 82317.658980: cpu_idle: state=0 cpu_id=3
123243 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.658985: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123244 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.659003: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123245          <idle>-0     (-----) [003] .n.1 82317.659008: cpu_idle: state=4294967295 cpu_id=3
123246          <idle>-0     (-----) [003] d..2 82317.659017: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123247 crtc_commit:111-321   (  321) [003] d..2 82317.659178: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
123248          <idle>-0     (-----) [003] d..1 82317.659189: cpu_idle: state=0 cpu_id=3
123249 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.659207: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123250 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.659221: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123251          <idle>-0     (-----) [003] .n.1 82317.659227: cpu_idle: state=4294967295 cpu_id=3
123252          <idle>-0     (-----) [003] d..2 82317.659236: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123253 crtc_commit:111-321   (  321) [003] d..3 82317.659257: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=000
123254 crtc_commit:111-321   (  321) [003] d..4 82317.659296: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
123255 crtc_commit:111-321   (  321) [003] d..2 82317.659309: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
123256 SDM_EventThread-644   (  619) [003] d..2 82317.659393: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123257          <idle>-0     (-----) [003] d..1 82317.659406: cpu_idle: state=0 cpu_id=3
123258          <idle>-0     (-----) [002] d.h2 82317.659503: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
123259          <idle>-0     (-----) [002] dnh3 82317.659515: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
123260          <idle>-0     (-----) [002] .n.1 82317.659522: cpu_idle: state=4294967295 cpu_id=2
123261          <idle>-0     (-----) [002] d..2 82317.659531: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
123262          <idle>-0     (-----) [003] ...1 82317.659548: cpu_idle: state=4294967295 cpu_id=3
123263        DispSync-8879  ( 8858) [002] d..1 82317.659548: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
123264          <idle>-0     (-----) [003] d..1 82317.659554: cpu_idle: state=0 cpu_id=3
123265        DispSync-8879  ( 8858) [002] d..2 82317.659561: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
123266          <idle>-0     (-----) [003] .n.1 82317.659567: cpu_idle: state=4294967295 cpu_id=3
123267          <idle>-0     (-----) [003] d..2 82317.659576: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
123268        DispSync-8879  ( 8858) [002] d..2 82317.659591: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123269          <idle>-0     (-----) [002] d..1 82317.659598: cpu_idle: state=0 cpu_id=2
123270  appEventThread-8881  ( 8858) [003] d..3 82317.659630: sched_waking: comm=ndroid.systemui pid=9105 prio=120 target_cpu=002
123271  appEventThread-8881  ( 8858) [003] d..4 82317.659654: sched_wakeup: comm=ndroid.systemui pid=9105 prio=120 target_cpu=000
123272          <idle>-0     (-----) [000] .n.1 82317.659658: cpu_idle: state=4294967295 cpu_id=0
123273  appEventThread-8881  ( 8858) [003] d..3 82317.659668: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
123274          <idle>-0     (-----) [000] d..2 82317.659671: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ndroid.systemui next_pid=9105 next_prio=120
123275          <idle>-0     (-----) [004] dnh2 82317.659689: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
123276          <idle>-0     (-----) [004] .n.1 82317.659691: cpu_idle: state=4294967295 cpu_id=4
123277          <idle>-0     (-----) [004] d..2 82317.659697: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
123278  appEventThread-8881  ( 8858) [003] d..2 82317.659716: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123279          <idle>-0     (-----) [003] d..1 82317.659729: cpu_idle: state=0 cpu_id=3
123280 s.nexuslauncher-10023 (10023) [004] .... 82317.659827: binder_transaction: transaction=1572656 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
123281 s.nexuslauncher-10023 (10023) [004] .... 82317.659830: binder_transaction_alloc_buf: transaction=1572656 data_size=80 offsets_size=0
123282 s.nexuslauncher-10023 (10023) [004] d..4 82317.659833: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
123283          <idle>-0     (-----) [002] dnh2 82317.659858: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
123284          <idle>-0     (-----) [002] .n.1 82317.659863: cpu_idle: state=4294967295 cpu_id=2
123285          <idle>-0     (-----) [002] d..2 82317.659870: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
123286<...>-8951 ( 8858) [002] .... 82317.659876: binder_transaction_received: transaction=1572656
123287<...>-9105 ( 9105) [000] d..2 82317.659882: sched_switch: prev_comm=ndroid.systemui prev_pid=9105 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123288 s.nexuslauncher-10023 (10023) [004] d..2 82317.659884: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
123289          <idle>-0     (-----) [004] d..1 82317.659890: cpu_idle: state=0 cpu_id=4
123290          <idle>-0     (-----) [000] d..1 82317.659893: cpu_idle: state=0 cpu_id=0
123291<...>-8951 ( 8858) [002] d..1 82317.659904: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
123292<...>-8951 ( 8858) [002] d..2 82317.659918: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
123293          <idle>-0     (-----) [003] .n.1 82317.659925: cpu_idle: state=4294967295 cpu_id=3
123294          <idle>-0     (-----) [003] d..2 82317.659934: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
123295<...>-8951 ( 8858) [002] d..2 82317.659957: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123296          <idle>-0     (-----) [002] d..1 82317.659965: cpu_idle: state=0 cpu_id=2
123297  appEventThread-8881  ( 8858) [003] d..2 82317.659968: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123298          <idle>-0     (-----) [003] d..1 82317.659978: cpu_idle: state=0 cpu_id=3
123299          <idle>-0     (-----) [003] ...1 82317.661093: cpu_idle: state=4294967295 cpu_id=3
123300          <idle>-0     (-----) [003] d..1 82317.661097: cpu_idle: state=0 cpu_id=3
123301          <idle>-0     (-----) [000] d.s2 82317.661797: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
123302          <idle>-0     (-----) [002] d.s2 82317.661798: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
123303 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.661801: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
123304          <idle>-0     (-----) [002] dns3 82317.661812: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
123305          <idle>-0     (-----) [000] dns3 82317.661813: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
123306          <idle>-0     (-----) [002] .n.1 82317.661821: cpu_idle: state=4294967295 cpu_id=2
123307          <idle>-0     (-----) [002] d..2 82317.661830: 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
123308          <idle>-0     (-----) [000] .n.1 82317.661843: cpu_idle: state=4294967295 cpu_id=0
123309 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.661846: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123310          <idle>-0     (-----) [000] d..2 82317.661854: 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
123311     rcu_preempt-7     (    7) [002] d..2 82317.661857: 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
123312          <idle>-0     (-----) [002] d..1 82317.661866: cpu_idle: state=0 cpu_id=2
123313<...>-8 ( 8) [000] d..2 82317.661869: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123314  kworker/u16:15-1311  ( 1311) [000] d..2 82317.662025: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
123315          <idle>-0     (-----) [000] d..1 82317.662038: cpu_idle: state=0 cpu_id=0
123316 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.662039: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123317 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.662049: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
123318 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.662057: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123319          <idle>-0     (-----) [000] .n.1 82317.662062: cpu_idle: state=4294967295 cpu_id=0
123320          <idle>-0     (-----) [000] d..2 82317.662073: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123321  kworker/u16:15-1311  ( 1311) [000] d..2 82317.662098: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123322          <idle>-0     (-----) [000] d..1 82317.662107: cpu_idle: state=0 cpu_id=0
123323          <idle>-0     (-----) [002] d.h2 82317.663530: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
123324          <idle>-0     (-----) [002] dnh3 82317.663541: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
123325          <idle>-0     (-----) [002] .n.1 82317.663548: cpu_idle: state=4294967295 cpu_id=2
123326          <idle>-0     (-----) [002] d..2 82317.663556: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
123327        DispSync-8879  ( 8858) [002] d..1 82317.663567: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
123328        DispSync-8879  ( 8858) [002] d..2 82317.663581: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
123329          <idle>-0     (-----) [000] .n.1 82317.663586: cpu_idle: state=4294967295 cpu_id=0
123330          <idle>-0     (-----) [000] d..2 82317.663595: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
123331        DispSync-8879  ( 8858) [002] d..2 82317.663607: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123332          <idle>-0     (-----) [002] d..1 82317.663616: cpu_idle: state=0 cpu_id=2
123333   sfEventThread-8882  ( 8858) [000] d..3 82317.663635: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123334   sfEventThread-8882  ( 8858) [000] d..4 82317.663656: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123335          <idle>-0     (-----) [003] .n.1 82317.663661: cpu_idle: state=4294967295 cpu_id=3
123336          <idle>-0     (-----) [003] d..2 82317.663671: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
123337   sfEventThread-8882  ( 8858) [000] d..2 82317.663687: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123338          <idle>-0     (-----) [000] d..1 82317.663698: cpu_idle: state=0 cpu_id=0
123339  surfaceflinger-8858  ( 8858) [003] d..1 82317.664182: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
123340  surfaceflinger-8858  ( 8858) [003] d..2 82317.664200: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
123341          <idle>-0     (-----) [000] .n.1 82317.664205: cpu_idle: state=4294967295 cpu_id=0
123342          <idle>-0     (-----) [000] d..2 82317.664214: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
123343   sfEventThread-8882  ( 8858) [000] d..2 82317.664243: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123344          <idle>-0     (-----) [000] d..1 82317.664251: cpu_idle: state=0 cpu_id=0
123345  surfaceflinger-8858  ( 8858) [003] ...1 82317.664327: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
123346  surfaceflinger-8858  ( 8858) [003] ...1 82317.664336: tracing_mark_write: E|8858
123347  surfaceflinger-8858  ( 8858) [003] .... 82317.664404: binder_transaction: transaction=1572657 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
123348  surfaceflinger-8858  ( 8858) [003] .... 82317.664410: binder_transaction_alloc_buf: transaction=1572657 data_size=540 offsets_size=96
123349  surfaceflinger-8858  ( 8858) [003] ...2 82317.664482: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
123350  surfaceflinger-8858  ( 8858) [003] d..4 82317.664493: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
123351  surfaceflinger-8858  ( 8858) [003] d..5 82317.664511: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
123352          <idle>-0     (-----) [000] .n.1 82317.664515: cpu_idle: state=4294967295 cpu_id=0
123353          <idle>-0     (-----) [000] d..2 82317.664524: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
123354 [email protected]   (  619) [000] .... 82317.664535: binder_transaction_received: transaction=1572657
123355  surfaceflinger-8858  ( 8858) [003] d..2 82317.664539: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123356          <idle>-0     (-----) [003] d..1 82317.664555: cpu_idle: state=0 cpu_id=3
123357 [email protected]   (  619) [000] ...1 82317.664599: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
123358 [email protected]   (  619) [000] ...1 82317.664730: tracing_mark_write: B|619|HWCSession::PresentDisplay::
123359 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.665134: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123360 [email protected]   (  619) [000] d.s2 82317.665144: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
123361 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.665151: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123362 [email protected]   (  619) [000] d.s3 82317.665182: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123363 [email protected]   (  619) [000] ...1 82317.665432: tracing_mark_write: B|619|HWDeviceDRM::Validate::
123364          <idle>-0     (-----) [003] ...1 82317.665670: cpu_idle: state=4294967295 cpu_id=3
123365          <idle>-0     (-----) [003] d..1 82317.665675: cpu_idle: state=0 cpu_id=3
123366 [email protected]   (  619) [000] ...1 82317.666042: tracing_mark_write: E|619
123367 [email protected]   (  619) [000] ...1 82317.666192: tracing_mark_write: B|619|HWDeviceDRM::Commit::
123368 [email protected]   (  619) [000] ...1 82317.666204: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
123369 [email protected]   (  619) [000] d..2 82317.666662: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123370 [email protected]   (  619) [000] d..3 82317.666681: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123371          <idle>-0     (-----) [003] .n.1 82317.666685: cpu_idle: state=4294967295 cpu_id=3
123372          <idle>-0     (-----) [003] d..2 82317.666696: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123373 [email protected]   (  619) [000] ...1 82317.666776: tracing_mark_write: E|619
123374 [email protected]   (  619) [000] ...1 82317.666782: tracing_mark_write: E|619
123375 [email protected]   (  619) [000] ...1 82317.666832: tracing_mark_write: E|619
123376 crtc_commit:111-321   (  321) [003] d..2 82317.666852: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
123377          <idle>-0     (-----) [003] d..1 82317.666863: cpu_idle: state=0 cpu_id=3
123378 [email protected]   (  619) [000] ...1 82317.666885: tracing_mark_write: E|619
123379 [email protected]   (  619) [000] .... 82317.666903: binder_transaction: transaction=1572658 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
123380 [email protected]   (  619) [000] .... 82317.666906: binder_transaction_alloc_buf: transaction=1572658 data_size=576 offsets_size=112
123381 [email protected]   (  619) [000] d..2 82317.666926: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123382 [email protected]   (  619) [000] d..3 82317.666943: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123383 [email protected]   (  619) [000] .... 82317.666947: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
123384          <idle>-0     (-----) [003] .n.1 82317.666948: cpu_idle: state=4294967295 cpu_id=3
123385          <idle>-0     (-----) [003] d..2 82317.666957: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
123386  surfaceflinger-8858  ( 8858) [003] .... 82317.666964: binder_transaction_received: transaction=1572658
123387 [email protected]   (  619) [000] d..2 82317.667016: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
123388     rcu_preempt-7     (    7) [000] d..2 82317.667023: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
123389 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.667028: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123390 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.667053: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
123391          <idle>-0     (-----) [002] .n.1 82317.667058: cpu_idle: state=4294967295 cpu_id=2
123392     rcu_preempt-7     (    7) [000] d..3 82317.667066: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
123393          <idle>-0     (-----) [002] d..2 82317.667067: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123394     rcu_preempt-7     (    7) [000] d..2 82317.667081: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123395 crtc_commit:111-321   (  321) [002] d..2 82317.667211: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123396 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.667221: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
123397          <idle>-0     (-----) [002] dn.1 82317.667231: cpu_idle: state=0 cpu_id=2
123398          <idle>-0     (-----) [002] .n.1 82317.667234: cpu_idle: state=4294967295 cpu_id=2
123399 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.667234: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
123400          <idle>-0     (-----) [002] d..2 82317.667246: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123401  kworker/u16:15-1311  ( 1311) [000] .... 82317.667256: clk_set_rate: l3_cluster0_vote_clk 748800000
123402  kworker/u16:15-1311  ( 1311) [000] .... 82317.667261: clk_set_rate: l3_clk 748800000
123403 crtc_commit:111-321   (  321) [002] d..1 82317.667300: clk_enable: disp_cc_mdss_vsync_clk_src
123404 crtc_commit:111-321   (  321) [002] d..1 82317.667303: clk_enable: disp_cc_mdss_rscc_vsync_clk
123405 crtc_commit:111-321   (  321) [002] d..1 82317.667321: clk_enable: disp_cc_mdss_rscc_ahb_clk
123406 crtc_commit:111-321   (  321) [002] d..2 82317.667392: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123407          <idle>-0     (-----) [002] d..1 82317.667401: cpu_idle: state=0 cpu_id=2
123408  surfaceflinger-8858  ( 8858) [003] d..2 82317.667478: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
123409          <idle>-0     (-----) [002] d.h2 82317.667483: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
123410         rcuop/2-29    (   29) [003] d..2 82317.667485: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
123411          <idle>-0     (-----) [002] dnh3 82317.667494: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
123412          <idle>-0     (-----) [002] .n.1 82317.667502: cpu_idle: state=4294967295 cpu_id=2
123413          <idle>-0     (-----) [002] d..2 82317.667510: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123414  kworker/u16:15-1311  ( 1311) [000] d..2 82317.667518: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
123415         rcuop/2-29    (   29) [003] d..3 82317.667525: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
123416          <idle>-0     (-----) [000] d..1 82317.667528: cpu_idle: state=0 cpu_id=0
123417 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.667535: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123418         rcuop/2-29    (   29) [003] d..2 82317.667536: 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
123419 crtc_commit:111-321   (  321) [002] d..1 82317.667539: clk_enable: gcc_disp_axi_clk
123420 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.667546: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
123421 crtc_commit:111-321   (  321) [002] d..1 82317.667550: clk_enable: disp_cc_mdss_ahb_clk
123422 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.667555: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123423 crtc_commit:111-321   (  321) [002] d..1 82317.667560: clk_enable: disp_cc_mdss_axi_clk
123424          <idle>-0     (-----) [000] .n.1 82317.667561: cpu_idle: state=4294967295 cpu_id=0
123425         rcuop/3-37    (   37) [003] d..2 82317.667562: 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
123426          <idle>-0     (-----) [000] d..2 82317.667570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123427          <idle>-0     (-----) [003] d..1 82317.667576: cpu_idle: state=0 cpu_id=3
123428 crtc_commit:111-321   (  321) [002] d..1 82317.667579: clk_enable: gcc_disp_gpll0_clk_src
123429  kworker/u16:15-1311  ( 1311) [000] d..2 82317.667614: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123430          <idle>-0     (-----) [000] d..1 82317.667622: cpu_idle: state=0 cpu_id=0
123431 crtc_commit:111-321   (  321) [002] d..1 82317.668086: clk_enable: disp_cc_mdss_mdp_clk_src
123432 crtc_commit:111-321   (  321) [002] d..1 82317.668115: clk_enable: disp_cc_mdss_mdp_clk
123433 crtc_commit:111-321   (  321) [002] d..1 82317.668125: clk_enable: disp_cc_mdss_vsync_clk
123434 crtc_commit:111-321   (  321) [002] d..2 82317.668420: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
123435          <idle>-0     (-----) [002] d..1 82317.668433: cpu_idle: state=0 cpu_id=2
123436          <idle>-0     (-----) [000] ...1 82317.668473: cpu_idle: state=4294967295 cpu_id=0
123437          <idle>-0     (-----) [000] d..1 82317.668478: cpu_idle: state=0 cpu_id=0
123438 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.668485: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
123439 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.668502: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
123440 FinalizerDaemon-8953  ( 8943) [001] d.s1 82317.668505: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
123441          <idle>-0     (-----) [002] .n.1 82317.668507: cpu_idle: state=4294967295 cpu_id=2
123442          <idle>-0     (-----) [002] d..2 82317.668518: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123443 FinalizerDaemon-8953  ( 8943) [001] dns2 82317.668519: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
123444 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.668529: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=R+ ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
123445     ksoftirqd/1-18    (   18) [001] d.s2 82317.668540: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
123446     ksoftirqd/1-18    (   18) [001] d.s3 82317.668574: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=002
123447     ksoftirqd/1-18    (   18) [001] d..2 82317.668586: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
123448 crtc_commit:111-321   (  321) [002] d..1 82317.669963: clk_enable: disp_cc_mdss_esc0_clk_src
123449 crtc_commit:111-321   (  321) [002] d..1 82317.669966: clk_enable: disp_cc_mdss_esc0_clk
123450 crtc_commit:111-321   (  321) [002] d..1 82317.670366: clk_enable: dsi0pll_vco_clk
123451 crtc_commit:111-321   (  321) [002] d..1 82317.670368: clk_enable: dsi0pll_pll_out_div
123452 crtc_commit:111-321   (  321) [002] d..1 82317.670369: clk_enable: dsi0pll_bitclk_src
123453 crtc_commit:111-321   (  321) [002] d..1 82317.670370: clk_enable: dsi0pll_byteclk_src
123454 crtc_commit:111-321   (  321) [002] d..1 82317.670371: clk_enable: dsi0_phy_pll_out_byteclk
123455 crtc_commit:111-321   (  321) [002] d..1 82317.670373: clk_enable: disp_cc_mdss_byte0_clk_src
123456 crtc_commit:111-321   (  321) [002] d..1 82317.670375: clk_enable: disp_cc_mdss_byte0_clk
123457 crtc_commit:111-321   (  321) [002] d..1 82317.670382: clk_enable: dsi0pll_post_bit_div
123458 crtc_commit:111-321   (  321) [002] d..1 82317.670383: clk_enable: dsi0pll_pclk_src_mux
123459 crtc_commit:111-321   (  321) [002] d..1 82317.670384: clk_enable: dsi0pll_pclk_src
123460 crtc_commit:111-321   (  321) [002] d..1 82317.670386: clk_enable: dsi0_phy_pll_out_dsiclk
123461 crtc_commit:111-321   (  321) [002] d..1 82317.670387: clk_enable: disp_cc_mdss_pclk0_clk_src
123462 crtc_commit:111-321   (  321) [002] d..1 82317.670388: clk_enable: disp_cc_mdss_pclk0_clk
123463 crtc_commit:111-321   (  321) [002] d..1 82317.670394: clk_enable: disp_cc_mdss_byte0_div_clk_src
123464 crtc_commit:111-321   (  321) [002] d..1 82317.670395: clk_enable: disp_cc_mdss_byte0_intf_clk
123465          <idle>-0     (-----) [000] ...1 82317.670450: cpu_idle: state=4294967295 cpu_id=0
123466          <idle>-0     (-----) [000] d..1 82317.670453: cpu_idle: state=0 cpu_id=0
123467 crtc_commit:111-321   (  321) [002] d..2 82317.670795: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_sched next_pid=8 next_prio=120
123468<...>-8 ( 8) [002] d..2 82317.670801: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=000
123469 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.670819: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
123470<...>-8 ( 8) [002] d..3 82317.670845: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=002
123471 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.670847: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123472          <idle>-0     (-----) [003] .n.1 82317.670853: cpu_idle: state=4294967295 cpu_id=3
123473<...>-8 ( 8) [002] d..2 82317.670857: 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
123474         rcuos/0-11    (   11) [002] d..2 82317.670862: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=000
123475          <idle>-0     (-----) [003] d..2 82317.670864: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123476         rcuos/0-11    (   11) [002] d..3 82317.670893: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=002
123477         rcuos/0-11    (   11) [002] d..2 82317.670902: 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
123478 crtc_commit:111-321   (  321) [003] d..2 82317.670916: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
123479          <idle>-0     (-----) [003] d..1 82317.670923: cpu_idle: state=0 cpu_id=3
123480         rcuos/1-22    (   22) [002] d..2 82317.670929: sched_switch: prev_comm=rcuos/1 prev_pid=22 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123481          <idle>-0     (-----) [002] d..1 82317.670942: cpu_idle: state=0 cpu_id=2
123482          <idle>-0     (-----) [003] d.s3 82317.671798: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
123483 FinalizerDaemon-8953  ( 8943) [001] d.s1 82317.671843: sched_waking: comm=kswapd0 pid=142 prio=120 target_cpu=001
123484          <idle>-0     (-----) [003] dns4 82317.671852: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
123485          <idle>-0     (-----) [000] d.H3 82317.671863: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
123486          <idle>-0     (-----) [003] .n.1 82317.671870: cpu_idle: state=4294967295 cpu_id=3
123487          <idle>-0     (-----) [000] d.H3 82317.671877: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
123488          <idle>-0     (-----) [003] d..2 82317.671881: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
123489          <idle>-0     (-----) [005] dnh2 82317.671882: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
123490          <idle>-0     (-----) [005] .n.1 82317.671884: cpu_idle: state=4294967295 cpu_id=5
123491          <idle>-0     (-----) [005] d..2 82317.671887: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
123492         sugov:4-577   (  577) [005] .... 82317.671911: clk_set_rate: perfcl_clk 825600000
123493         sugov:4-577   (  577) [005] .... 82317.671911: clk_set_rate: cpu7_perfcl_clk 2092800000
123494 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.671912: sched_wakeup: comm=kswapd0 pid=142 prio=120 target_cpu=003
123495         sugov:4-577   (  577) [005] .... 82317.671916: clk_set_rate: cpu6_perfcl_clk 2092800000
123496         sugov:4-577   (  577) [005] .... 82317.671920: clk_set_rate: cpu5_perfcl_clk 2092800000
123497          <idle>-0     (-----) [000] dnH4 82317.671924: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
123498         sugov:4-577   (  577) [005] .... 82317.671925: clk_set_rate: cpu4_perfcl_clk 825600000
123499  crtc_event:111-322   (  322) [003] d..2 82317.671928: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kswapd0 next_pid=142 next_prio=120
123500         sugov:4-577   (  577) [005] .... 82317.671930: cpu_frequency: state=825600 cpu_id=4
123501<...>-142 ( 142) [003] d..2 82317.671958: sched_switch: prev_comm=kswapd0 prev_pid=142 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123502          <idle>-0     (-----) [003] d..1 82317.671972: cpu_idle: state=0 cpu_id=3
123503          <idle>-0     (-----) [000] dnH5 82317.671997: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123504          <idle>-0     (-----) [000] dnH6 82317.672010: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
123505          <idle>-0     (-----) [003] .n.1 82317.672016: cpu_idle: state=4294967295 cpu_id=3
123506          <idle>-0     (-----) [000] dns2 82317.672023: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123507          <idle>-0     (-----) [003] d..2 82317.672025: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
123508          <idle>-0     (-----) [000] dns3 82317.672037: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123509          <idle>-0     (-----) [000] .n.1 82317.672052: cpu_idle: state=4294967295 cpu_id=0
123510          <idle>-0     (-----) [000] d..2 82317.672060: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
123511         sugov:4-577   (  577) [005] d..2 82317.672078: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
123512         sugov:0-576   (  576) [000] .... 82317.672085: clk_set_rate: pwrcl_clk 1324800000
123513 crtc_commit:111-321   (  321) [003] d..2 82317.672085: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123514          <idle>-0     (-----) [005] d..1 82317.672087: cpu_idle: state=0 cpu_id=5
123515         sugov:0-576   (  576) [000] .... 82317.672094: clk_set_rate: cpu3_pwrcl_clk 979200000
123516          <idle>-0     (-----) [003] d..1 82317.672096: cpu_idle: state=0 cpu_id=3
123517         sugov:0-576   (  576) [000] .... 82317.672103: clk_set_rate: cpu2_pwrcl_clk 979200000
123518 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.672107: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
123519         sugov:0-576   (  576) [000] .... 82317.672110: clk_set_rate: cpu1_pwrcl_clk 979200000
123520         sugov:0-576   (  576) [000] .... 82317.672117: clk_set_rate: cpu0_pwrcl_clk 1324800000
123521         sugov:0-576   (  576) [000] .... 82317.672125: cpu_frequency: state=1324800 cpu_id=0
123522          <idle>-0     (-----) [005] dnh2 82317.672127: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=005
123523          <idle>-0     (-----) [005] .n.1 82317.672131: cpu_idle: state=4294967295 cpu_id=5
123524          <idle>-0     (-----) [005] d..2 82317.672136: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
123525         sugov:4-577   (  577) [005] d..1 82317.672143: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
123526         sugov:0-576   (  576) [000] d..2 82317.672147: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
123527         sugov:4-577   (  577) [005] .... 82317.672164: cpu_frequency: state=825600 cpu_id=5
123528         sugov:4-577   (  577) [005] .... 82317.672167: cpu_frequency: state=825600 cpu_id=6
123529         sugov:4-577   (  577) [005] .... 82317.672170: cpu_frequency: state=825600 cpu_id=7
123530          <idle>-0     (-----) [002] dnh2 82317.672177: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
123531     rcu_preempt-7     (    7) [000] d..2 82317.672179: 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
123532          <idle>-0     (-----) [002] .n.1 82317.672182: cpu_idle: state=4294967295 cpu_id=2
123533         sugov:4-577   (  577) [005] d..2 82317.672184: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
123534          <idle>-0     (-----) [000] d..1 82317.672189: cpu_idle: state=0 cpu_id=0
123535          <idle>-0     (-----) [002] d..2 82317.672189: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
123536          <idle>-0     (-----) [005] d..1 82317.672190: cpu_idle: state=0 cpu_id=5
123537         sugov:0-576   (  576) [002] .... 82317.672199: cpu_frequency: state=1324800 cpu_id=1
123538         sugov:0-576   (  576) [002] .... 82317.672205: cpu_frequency: state=1324800 cpu_id=2
123539         sugov:0-576   (  576) [002] .... 82317.672209: cpu_frequency: state=1324800 cpu_id=3
123540         sugov:0-576   (  576) [002] d..2 82317.672228: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123541          <idle>-0     (-----) [002] d..1 82317.672235: cpu_idle: state=0 cpu_id=2
123542          <idle>-0     (-----) [000] d.h5 82317.674113: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
123543          <idle>-0     (-----) [000] d.h6 82317.674126: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
123544          <idle>-0     (-----) [003] .n.1 82317.674131: cpu_idle: state=4294967295 cpu_id=3
123545          <idle>-0     (-----) [003] d..2 82317.674139: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
123546          <idle>-0     (-----) [000] ...1 82317.674139: cpu_idle: state=4294967295 cpu_id=0
123547          <idle>-0     (-----) [000] d..1 82317.674142: cpu_idle: state=0 cpu_id=0
123548  crtc_event:111-322   (  322) [003] d..2 82317.674162: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123549          <idle>-0     (-----) [003] d..1 82317.674169: cpu_idle: state=0 cpu_id=3
123550 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.675131: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123551 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.675149: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123552          <idle>-0     (-----) [000] .n.1 82317.675154: cpu_idle: state=4294967295 cpu_id=0
123553          <idle>-0     (-----) [000] d..2 82317.675164: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123554  kworker/u16:15-1311  ( 1311) [000] .... 82317.675257: clk_set_rate: l3_cluster0_vote_clk 844800000
123555  kworker/u16:15-1311  ( 1311) [000] .... 82317.675261: clk_set_rate: l3_clk 844800000
123556  kworker/u16:15-1311  ( 1311) [000] d..2 82317.675294: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123557          <idle>-0     (-----) [000] d..1 82317.675300: cpu_idle: state=0 cpu_id=0
123558          <idle>-0     (-----) [002] d.h2 82317.675989: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
123559          <idle>-0     (-----) [002] dnh3 82317.675999: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
123560          <idle>-0     (-----) [002] .n.1 82317.676005: cpu_idle: state=4294967295 cpu_id=2
123561          <idle>-0     (-----) [002] d..2 82317.676012: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
123562        DispSync-8879  ( 8858) [002] d..1 82317.676023: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
123563        DispSync-8879  ( 8858) [002] d..2 82317.676034: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
123564          <idle>-0     (-----) [003] .n.1 82317.676039: cpu_idle: state=4294967295 cpu_id=3
123565          <idle>-0     (-----) [003] d..2 82317.676046: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
123566        DispSync-8879  ( 8858) [002] d..2 82317.676057: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123567          <idle>-0     (-----) [002] d..1 82317.676064: cpu_idle: state=0 cpu_id=2
123568  appEventThread-8881  ( 8858) [003] d..3 82317.676085: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
123569          <idle>-0     (-----) [004] dnh2 82317.676108: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
123570          <idle>-0     (-----) [004] .n.1 82317.676112: cpu_idle: state=4294967295 cpu_id=4
123571          <idle>-0     (-----) [004] d..2 82317.676121: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
123572  appEventThread-8881  ( 8858) [003] d..2 82317.676124: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123573          <idle>-0     (-----) [003] d..1 82317.676133: cpu_idle: state=0 cpu_id=3
123574 s.nexuslauncher-10023 (10023) [004] .... 82317.676267: binder_transaction: transaction=1572659 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
123575 s.nexuslauncher-10023 (10023) [004] .... 82317.676271: binder_transaction_alloc_buf: transaction=1572659 data_size=80 offsets_size=0
123576 s.nexuslauncher-10023 (10023) [004] d..4 82317.676275: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
123577          <idle>-0     (-----) [000] dnh2 82317.676304: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
123578          <idle>-0     (-----) [000] .n.1 82317.676308: cpu_idle: state=4294967295 cpu_id=0
123579          <idle>-0     (-----) [000] d..2 82317.676314: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
123580<...>-8951 ( 8858) [000] .... 82317.676322: binder_transaction_received: transaction=1572659
123581<...>-8951 ( 8858) [000] d..1 82317.676354: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
123582 s.nexuslauncher-10023 (10023) [004] d..2 82317.676363: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
123583<...>-8951 ( 8858) [000] d..2 82317.676368: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
123584          <idle>-0     (-----) [003] .n.1 82317.676373: cpu_idle: state=4294967295 cpu_id=3
123585          <idle>-0     (-----) [004] d..1 82317.676374: cpu_idle: state=0 cpu_id=4
123586          <idle>-0     (-----) [003] d..2 82317.676380: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
123587<...>-8951 ( 8858) [000] d..2 82317.676403: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123588  appEventThread-8881  ( 8858) [003] d..2 82317.676407: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123589          <idle>-0     (-----) [000] d..1 82317.676410: cpu_idle: state=0 cpu_id=0
123590          <idle>-0     (-----) [003] d..1 82317.676414: cpu_idle: state=0 cpu_id=3
123591          <idle>-0     (-----) [000] d.s2 82317.678459: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123592          <idle>-0     (-----) [000] dns3 82317.678471: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123593          <idle>-0     (-----) [000] .n.1 82317.678476: cpu_idle: state=4294967295 cpu_id=0
123594          <idle>-0     (-----) [000] d..2 82317.678482: 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
123595     rcu_preempt-7     (    7) [000] d..2 82317.678488: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
123596     rcu_preempt-7     (    7) [000] d..3 82317.678500: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
123597     rcu_preempt-7     (    7) [000] d..2 82317.678511: 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
123598         rcuop/0-10    (   10) [000] d..2 82317.678515: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
123599         rcuop/0-10    (   10) [000] d..3 82317.678527: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
123600         rcuop/0-10    (   10) [000] d..2 82317.678532: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
123601         rcuop/0-10    (   10) [000] d..3 82317.678541: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
123602         rcuop/0-10    (   10) [000] d..2 82317.678549: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
123603     kworker/0:1-25262 (25262) [000] d..3 82317.678576: sched_waking: comm=kworker/0:2 pid=25606 prio=120 target_cpu=000
123604     kworker/0:1-25262 (25262) [000] d..3 82317.678587: sched_wakeup: comm=kworker/0:2 pid=25606 prio=120 target_cpu=000
123605     kworker/0:1-25262 (25262) [000] d..2 82317.678592: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=D ==> next_comm=kworker/0:2 next_pid=25606 next_prio=120
123606     kworker/0:2-25606 (25606) [000] d..3 82317.678599: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
123607     kworker/0:2-25606 (25606) [000] d..4 82317.678604: sched_blocked_reason: pid=25262 iowait=0 caller=flush_workqueue+0x2dc/0x790
123608     kworker/0:2-25606 (25606) [000] d..4 82317.678608: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
123609     kworker/0:2-25606 (25606) [000] d..2 82317.678615: sched_switch: prev_comm=kworker/0:2 prev_pid=25606 prev_prio=120 prev_state=S ==> next_comm=rcuop/1 next_pid=21 next_prio=120
123610         rcuop/1-21    (   21) [000] d..2 82317.678779: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
123611     kworker/0:1-25262 (25262) [000] d..2 82317.678801: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123612          <idle>-0     (-----) [000] d..1 82317.678811: cpu_idle: state=0 cpu_id=0
123613          <idle>-0     (-----) [002] d.h2 82317.679987: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
123614          <idle>-0     (-----) [002] dnh3 82317.679995: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
123615          <idle>-0     (-----) [002] .n.1 82317.680000: cpu_idle: state=4294967295 cpu_id=2
123616          <idle>-0     (-----) [002] d..2 82317.680007: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
123617        DispSync-8879  ( 8858) [002] d..1 82317.680015: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
123618        DispSync-8879  ( 8858) [002] d..2 82317.680026: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
123619          <idle>-0     (-----) [000] .n.1 82317.680031: cpu_idle: state=4294967295 cpu_id=0
123620          <idle>-0     (-----) [000] d..2 82317.680039: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
123621        DispSync-8879  ( 8858) [002] d..2 82317.680045: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123622          <idle>-0     (-----) [002] d..1 82317.680053: cpu_idle: state=0 cpu_id=2
123623   sfEventThread-8882  ( 8858) [000] d..3 82317.680070: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123624   sfEventThread-8882  ( 8858) [000] d..4 82317.680084: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123625          <idle>-0     (-----) [003] .n.1 82317.680088: cpu_idle: state=4294967295 cpu_id=3
123626          <idle>-0     (-----) [003] d..2 82317.680095: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
123627   sfEventThread-8882  ( 8858) [000] d..2 82317.680107: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123628          <idle>-0     (-----) [000] d..1 82317.680115: cpu_idle: state=0 cpu_id=0
123629  surfaceflinger-8858  ( 8858) [003] d..2 82317.680211: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123630          <idle>-0     (-----) [003] d..1 82317.680221: cpu_idle: state=0 cpu_id=3
123631 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.681795: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123632 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.681811: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123633          <idle>-0     (-----) [000] .n.1 82317.681816: cpu_idle: state=4294967295 cpu_id=0
123634          <idle>-0     (-----) [000] d..2 82317.681825: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123635  kworker/u16:15-1311  ( 1311) [000] d..2 82317.681972: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
123636          <idle>-0     (-----) [000] d..1 82317.681978: cpu_idle: state=0 cpu_id=0
123637 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.681986: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123638 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.681994: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
123639 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.682001: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123640          <idle>-0     (-----) [000] .n.1 82317.682006: cpu_idle: state=4294967295 cpu_id=0
123641          <idle>-0     (-----) [000] d..2 82317.682012: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123642  kworker/u16:15-1311  ( 1311) [000] d..2 82317.682031: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123643          <idle>-0     (-----) [000] d..1 82317.682035: cpu_idle: state=0 cpu_id=0
123644          <idle>-0     (-----) [000] d.s2 82317.685123: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123645 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.685130: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123646          <idle>-0     (-----) [000] dns3 82317.685134: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123647 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.685148: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123648          <idle>-0     (-----) [000] .n.1 82317.685153: cpu_idle: state=4294967295 cpu_id=0
123649          <idle>-0     (-----) [000] d..2 82317.685159: 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
123650     rcu_preempt-7     (    7) [000] d..2 82317.685166: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
123651     rcu_preempt-7     (    7) [000] d..3 82317.685192: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
123652     rcu_preempt-7     (    7) [000] d..2 82317.685202: 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
123653         rcuop/2-29    (   29) [000] d..2 82317.685205: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
123654         rcuop/2-29    (   29) [000] d..3 82317.685231: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
123655          <idle>-0     (-----) [002] .n.1 82317.685235: cpu_idle: state=4294967295 cpu_id=2
123656         rcuop/2-29    (   29) [000] d..2 82317.685238: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123657          <idle>-0     (-----) [002] d..2 82317.685245: 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
123658         rcuop/3-37    (   37) [002] d..2 82317.685268: 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
123659          <idle>-0     (-----) [002] d..1 82317.685274: cpu_idle: state=0 cpu_id=2
123660          <idle>-0     (-----) [002] ...1 82317.685287: cpu_idle: state=4294967295 cpu_id=2
123661          <idle>-0     (-----) [002] d..1 82317.685290: cpu_idle: state=0 cpu_id=2
123662  kworker/u16:15-1311  ( 1311) [000] .... 82317.685291: clk_set_rate: l3_cluster0_vote_clk 300000000
123663  kworker/u16:15-1311  ( 1311) [000] .... 82317.685295: clk_set_rate: l3_clk 300000000
123664  kworker/u16:15-1311  ( 1311) [000] d..2 82317.685511: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
123665          <idle>-0     (-----) [000] d..1 82317.685528: cpu_idle: state=0 cpu_id=0
123666 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.685533: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123667 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.685544: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
123668 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.685553: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123669          <idle>-0     (-----) [000] .n.1 82317.685559: cpu_idle: state=4294967295 cpu_id=0
123670          <idle>-0     (-----) [000] d..2 82317.685571: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123671  kworker/u16:15-1311  ( 1311) [000] d..2 82317.685614: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123672          <idle>-0     (-----) [000] d..1 82317.685623: cpu_idle: state=0 cpu_id=0
123673          <idle>-0     (-----) [000] d.h5 82317.687950: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
123674          <idle>-0     (-----) [000] d.h6 82317.687966: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
123675          <idle>-0     (-----) [003] .n.1 82317.687972: cpu_idle: state=4294967295 cpu_id=3
123676          <idle>-0     (-----) [003] d..2 82317.687982: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
123677          <idle>-0     (-----) [000] ...1 82317.687982: cpu_idle: state=4294967295 cpu_id=0
123678          <idle>-0     (-----) [000] d..1 82317.687986: cpu_idle: state=0 cpu_id=0
123679  crtc_event:111-322   (  322) [003] d..2 82317.688013: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123680          <idle>-0     (-----) [003] d..1 82317.688021: cpu_idle: state=0 cpu_id=3
123681          <idle>-0     (-----) [000] ...1 82317.690590: cpu_idle: state=4294967295 cpu_id=0
123682          <idle>-0     (-----) [000] d..1 82317.690594: cpu_idle: state=0 cpu_id=0
123683          <idle>-0     (-----) [000] d.s2 82317.691800: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123684          <idle>-0     (-----) [000] dns3 82317.691853: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123685          <idle>-0     (-----) [000] .n.1 82317.691863: cpu_idle: state=4294967295 cpu_id=0
123686 FinalizerDaemon-8953  ( 8943) [001] d.H2 82317.691872: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
123687          <idle>-0     (-----) [000] d..2 82317.691875: 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
123688 FinalizerDaemon-8953  ( 8943) [001] d.H3 82317.691891: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
123689          <idle>-0     (-----) [002] .n.1 82317.691895: cpu_idle: state=4294967295 cpu_id=2
123690 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.691899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123691          <idle>-0     (-----) [002] d..2 82317.691904: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
123692     rcu_preempt-7     (    7) [000] d..2 82317.691906: 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
123693          <idle>-0     (-----) [000] d..1 82317.691917: cpu_idle: state=0 cpu_id=0
123694 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.691924: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123695          <idle>-0     (-----) [000] .n.1 82317.691929: cpu_idle: state=4294967295 cpu_id=0
123696         sugov:0-576   (  576) [002] .... 82317.691930: clk_set_rate: pwrcl_clk 1228800000
123697          <idle>-0     (-----) [000] d..2 82317.691938: 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
123698         sugov:0-576   (  576) [002] .... 82317.691939: clk_set_rate: cpu3_pwrcl_clk 1324800000
123699     rcu_preempt-7     (    7) [000] d..2 82317.691944: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
123700         sugov:0-576   (  576) [002] .... 82317.691947: clk_set_rate: cpu2_pwrcl_clk 1324800000
123701         sugov:0-576   (  576) [002] .... 82317.691955: clk_set_rate: cpu1_pwrcl_clk 1324800000
123702         sugov:0-576   (  576) [002] .... 82317.691962: clk_set_rate: cpu0_pwrcl_clk 1228800000
123703     rcu_preempt-7     (    7) [000] d..3 82317.691983: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
123704     rcu_preempt-7     (    7) [000] d..2 82317.692006: 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
123705          <idle>-0     (-----) [000] d..1 82317.692025: cpu_idle: state=0 cpu_id=0
123706         sugov:0-576   (  576) [002] .... 82317.692074: cpu_frequency: state=1228800 cpu_id=0
123707         sugov:0-576   (  576) [002] .... 82317.692087: cpu_frequency: state=1228800 cpu_id=1
123708         sugov:0-576   (  576) [002] .... 82317.692090: cpu_frequency: state=1228800 cpu_id=2
123709         sugov:0-576   (  576) [002] .... 82317.692093: cpu_frequency: state=1228800 cpu_id=3
123710         sugov:0-576   (  576) [002] d..2 82317.692114: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
123711         rcuop/0-10    (   10) [002] d..2 82317.692120: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
123712         rcuop/0-10    (   10) [002] d..3 82317.692162: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
123713         rcuop/0-10    (   10) [002] d..2 82317.692167: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123714         rcuop/0-10    (   10) [002] d..3 82317.692179: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123715          <idle>-0     (-----) [000] .n.1 82317.692185: cpu_idle: state=4294967295 cpu_id=0
123716         rcuop/0-10    (   10) [002] d..2 82317.692189: 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
123717          <idle>-0     (-----) [000] d..2 82317.692195: 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
123718     rcu_preempt-7     (    7) [000] d..2 82317.692214: 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
123719          <idle>-0     (-----) [000] d..1 82317.692222: cpu_idle: state=0 cpu_id=0
123720         rcuop/1-21    (   21) [002] d..2 82317.692389: 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
123721          <idle>-0     (-----) [002] d..1 82317.692402: cpu_idle: state=0 cpu_id=2
123722          <idle>-0     (-----) [002] d.h2 82317.692455: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
123723          <idle>-0     (-----) [002] dnh3 82317.692467: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
123724          <idle>-0     (-----) [002] .n.1 82317.692475: cpu_idle: state=4294967295 cpu_id=2
123725          <idle>-0     (-----) [002] d..2 82317.692483: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
123726        DispSync-8879  ( 8858) [002] d..1 82317.692497: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
123727        DispSync-8879  ( 8858) [002] d..2 82317.692510: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
123728          <idle>-0     (-----) [003] .n.1 82317.692515: cpu_idle: state=4294967295 cpu_id=3
123729          <idle>-0     (-----) [003] d..2 82317.692525: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
123730        DispSync-8879  ( 8858) [002] d..2 82317.692538: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123731          <idle>-0     (-----) [002] d..1 82317.692548: cpu_idle: state=0 cpu_id=2
123732  appEventThread-8881  ( 8858) [003] d..3 82317.692564: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
123733          <idle>-0     (-----) [004] dnh2 82317.692594: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
123734          <idle>-0     (-----) [004] .n.1 82317.692599: cpu_idle: state=4294967295 cpu_id=4
123735          <idle>-0     (-----) [004] d..2 82317.692608: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
123736  appEventThread-8881  ( 8858) [003] d..2 82317.692617: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123737          <idle>-0     (-----) [003] d..1 82317.692630: cpu_idle: state=0 cpu_id=3
123738 s.nexuslauncher-10023 (10023) [004] .... 82317.692748: binder_transaction: transaction=1572660 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
123739 s.nexuslauncher-10023 (10023) [004] .... 82317.692753: binder_transaction_alloc_buf: transaction=1572660 data_size=80 offsets_size=0
123740 s.nexuslauncher-10023 (10023) [004] d..4 82317.692758: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
123741          <idle>-0     (-----) [000] dnh2 82317.692785: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
123742          <idle>-0     (-----) [000] .n.1 82317.692790: cpu_idle: state=4294967295 cpu_id=0
123743          <idle>-0     (-----) [000] d..2 82317.692798: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
123744<...>-8951 ( 8858) [000] .... 82317.692807: binder_transaction_received: transaction=1572660
123745 s.nexuslauncher-10023 (10023) [004] d..2 82317.692847: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
123746<...>-8951 ( 8858) [000] d..1 82317.692849: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
123747          <idle>-0     (-----) [004] d..1 82317.692862: cpu_idle: state=0 cpu_id=4
123748<...>-8951 ( 8858) [000] d..2 82317.692867: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
123749          <idle>-0     (-----) [003] .n.1 82317.692872: cpu_idle: state=4294967295 cpu_id=3
123750          <idle>-0     (-----) [003] d..2 82317.692881: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
123751<...>-8951 ( 8858) [000] d..2 82317.692914: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123752  appEventThread-8881  ( 8858) [003] d..2 82317.692916: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123753          <idle>-0     (-----) [003] d..1 82317.692925: cpu_idle: state=0 cpu_id=3
123754          <idle>-0     (-----) [000] d..1 82317.692927: cpu_idle: state=0 cpu_id=0
123755 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.695140: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123756 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.695164: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123757          <idle>-0     (-----) [000] .n.1 82317.695170: cpu_idle: state=4294967295 cpu_id=0
123758          <idle>-0     (-----) [000] d..2 82317.695186: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123759  kworker/u16:15-1311  ( 1311) [000] d..2 82317.695325: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123760          <idle>-0     (-----) [000] d..1 82317.695334: cpu_idle: state=0 cpu_id=0
123761          <idle>-0     (-----) [002] d.h2 82317.696461: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
123762          <idle>-0     (-----) [002] dnh3 82317.696472: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
123763          <idle>-0     (-----) [002] .n.1 82317.696478: cpu_idle: state=4294967295 cpu_id=2
123764          <idle>-0     (-----) [002] d..2 82317.696488: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
123765        DispSync-8879  ( 8858) [002] d..1 82317.696498: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
123766        DispSync-8879  ( 8858) [002] d..2 82317.696511: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
123767          <idle>-0     (-----) [000] .n.1 82317.696517: cpu_idle: state=4294967295 cpu_id=0
123768          <idle>-0     (-----) [000] d..2 82317.696525: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
123769        DispSync-8879  ( 8858) [002] d..2 82317.696537: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123770          <idle>-0     (-----) [002] d..1 82317.696549: cpu_idle: state=0 cpu_id=2
123771   sfEventThread-8882  ( 8858) [000] d..1 82317.696551: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
123772   sfEventThread-8882  ( 8858) [000] d..2 82317.696569: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
123773          <idle>-0     (-----) [002] .n.1 82317.696575: cpu_idle: state=4294967295 cpu_id=2
123774          <idle>-0     (-----) [002] d..2 82317.696583: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
123775   sfEventThread-8882  ( 8858) [000] d..2 82317.696595: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123776          <idle>-0     (-----) [000] d..1 82317.696603: cpu_idle: state=0 cpu_id=0
123777        DispSync-8879  ( 8858) [002] d..2 82317.696608: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123778          <idle>-0     (-----) [002] d..1 82317.696616: cpu_idle: state=0 cpu_id=2
123779          <idle>-0     (-----) [000] d.s2 82317.698466: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123780          <idle>-0     (-----) [000] dns3 82317.698482: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123781          <idle>-0     (-----) [000] .n.1 82317.698500: cpu_idle: state=4294967295 cpu_id=0
123782          <idle>-0     (-----) [000] d..2 82317.698508: 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
123783     rcu_preempt-7     (    7) [000] d..2 82317.698518: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
123784     rcu_preempt-7     (    7) [000] d..3 82317.698548: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
123785     rcu_preempt-7     (    7) [000] d..2 82317.698558: 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
123786         rcuop/0-10    (   10) [000] d..2 82317.698561: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
123787         rcuop/0-10    (   10) [000] d..3 82317.698587: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
123788         rcuop/0-10    (   10) [000] d..2 82317.698594: 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
123789         rcuop/1-21    (   21) [000] d..2 82317.698641: 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
123790          <idle>-0     (-----) [000] d..1 82317.698655: cpu_idle: state=0 cpu_id=0
123791 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.700560: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
123792 FinalizerDaemon-8953  ( 8943) [001] d..3 82317.700583: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
123793          <idle>-0     (-----) [000] .n.1 82317.700589: cpu_idle: state=4294967295 cpu_id=0
123794          <idle>-0     (-----) [000] d..2 82317.700600: 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
123795         rcuop/0-10    (   10) [000] d..2 82317.700605: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123796         rcuop/0-10    (   10) [000] d..3 82317.700617: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123797         rcuop/0-10    (   10) [000] d..2 82317.700625: 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
123798     rcu_preempt-7     (    7) [000] d..2 82317.700642: 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
123799          <idle>-0     (-----) [000] d..1 82317.700650: cpu_idle: state=0 cpu_id=0
123800 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.701394: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=002
123801 FinalizerDaemon-8953  ( 8943) [001] d..3 82317.701446: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
123802          <idle>-0     (-----) [000] .n.1 82317.701450: cpu_idle: state=4294967295 cpu_id=0
123803          <idle>-0     (-----) [000] d..2 82317.701461: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuos/0 next_pid=11 next_prio=120
123804         rcuos/0-11    (   11) [000] d..2 82317.701466: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=002
123805         rcuos/0-11    (   11) [000] d..3 82317.701498: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
123806         rcuos/0-11    (   11) [000] d..2 82317.701507: 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
123807<...>-8 ( 8) [000] d..2 82317.701523: 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
123808          <idle>-0     (-----) [000] d..1 82317.701532: cpu_idle: state=0 cpu_id=0
123809          <idle>-0     (-----) [000] d.s2 82317.705136: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
123810          <idle>-0     (-----) [000] dns3 82317.705150: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
123811          <idle>-0     (-----) [000] dns2 82317.705152: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123812          <idle>-0     (-----) [000] dns3 82317.705160: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123813 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.705161: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123814          <idle>-0     (-----) [000] .n.1 82317.705172: cpu_idle: state=4294967295 cpu_id=0
123815 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.705184: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
123816          <idle>-0     (-----) [000] d..2 82317.705192: 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
123817<...>-8 ( 8) [000] d..2 82317.705226: 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
123818     rcu_preempt-7     (    7) [000] d..2 82317.705239: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
123819     rcu_preempt-7     (    7) [000] d..3 82317.705265: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
123820     rcu_preempt-7     (    7) [000] d..2 82317.705284: 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
123821         rcuop/0-10    (   10) [000] d..2 82317.705291: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
123822         rcuop/0-10    (   10) [000] d..3 82317.705313: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
123823         rcuop/0-10    (   10) [000] d..2 82317.705319: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123824         rcuop/0-10    (   10) [000] d..3 82317.705329: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
123825         rcuop/0-10    (   10) [000] d..2 82317.705349: 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
123826     rcu_preempt-7     (    7) [000] d..2 82317.705369: 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
123827         rcuop/1-21    (   21) [000] d..2 82317.705401: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
123828  kworker/u16:15-1311  ( 1311) [000] .... 82317.705519: clk_set_rate: l3_cluster0_vote_clk 940800000
123829  kworker/u16:15-1311  ( 1311) [000] .... 82317.705529: clk_set_rate: l3_clk 940800000
123830  kworker/u16:15-1311  ( 1311) [000] d..2 82317.705707: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123831          <idle>-0     (-----) [000] d..1 82317.705728: cpu_idle: state=0 cpu_id=0
123832          <idle>-0     (-----) [000] ...1 82317.707059: cpu_idle: state=4294967295 cpu_id=0
123833          <idle>-0     (-----) [000] d..1 82317.707062: cpu_idle: state=0 cpu_id=0
123834 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.708469: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
123835 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.708487: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
123836          <idle>-0     (-----) [000] .n.1 82317.708491: cpu_idle: state=4294967295 cpu_id=0
123837          <idle>-0     (-----) [000] d..2 82317.708501: 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
123838<...>-8 ( 8) [000] d..2 82317.708506: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=000
123839<...>-8 ( 8) [000] d..3 82317.708518: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
123840<...>-8 ( 8) [000] d..2 82317.708525: 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
123841         rcuos/0-11    (   11) [000] d..2 82317.708528: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=002
123842         rcuos/0-11    (   11) [000] d..3 82317.708557: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=000
123843         rcuos/0-11    (   11) [000] d..2 82317.708559: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
123844         rcuos/0-11    (   11) [000] d..3 82317.708568: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
123845         rcuos/0-11    (   11) [000] d..2 82317.708575: 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
123846         rcuos/1-22    (   22) [000] d..2 82317.708587: 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
123847<...>-8 ( 8) [000] d..2 82317.708605: 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
123848          <idle>-0     (-----) [000] d..1 82317.708611: cpu_idle: state=0 cpu_id=0
123849          <idle>-0     (-----) [002] d.h2 82317.708899: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
123850          <idle>-0     (-----) [002] dnh3 82317.708908: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
123851          <idle>-0     (-----) [002] .n.1 82317.708914: cpu_idle: state=4294967295 cpu_id=2
123852          <idle>-0     (-----) [002] d..2 82317.708921: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
123853        DispSync-8879  ( 8858) [002] d..1 82317.708928: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
123854        DispSync-8879  ( 8858) [002] d..2 82317.708938: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
123855          <idle>-0     (-----) [003] .n.1 82317.708943: cpu_idle: state=4294967295 cpu_id=3
123856          <idle>-0     (-----) [003] d..2 82317.708950: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
123857        DispSync-8879  ( 8858) [002] d..2 82317.708959: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123858          <idle>-0     (-----) [002] d..1 82317.708967: cpu_idle: state=0 cpu_id=2
123859  appEventThread-8881  ( 8858) [003] d..3 82317.708969: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
123860          <idle>-0     (-----) [004] dnh2 82317.708990: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
123861          <idle>-0     (-----) [004] .n.1 82317.708994: cpu_idle: state=4294967295 cpu_id=4
123862          <idle>-0     (-----) [004] d..2 82317.709002: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
123863  appEventThread-8881  ( 8858) [003] d..2 82317.709004: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123864          <idle>-0     (-----) [003] d..1 82317.709012: cpu_idle: state=0 cpu_id=3
123865 s.nexuslauncher-10023 (10023) [004] .... 82317.709104: binder_transaction: transaction=1572661 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
123866 s.nexuslauncher-10023 (10023) [004] .... 82317.709109: binder_transaction_alloc_buf: transaction=1572661 data_size=80 offsets_size=0
123867 s.nexuslauncher-10023 (10023) [004] d..4 82317.709114: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
123868          <idle>-0     (-----) [000] dnh2 82317.709134: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
123869          <idle>-0     (-----) [000] .n.1 82317.709139: cpu_idle: state=4294967295 cpu_id=0
123870          <idle>-0     (-----) [000] d..2 82317.709145: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
123871<...>-8951 ( 8858) [000] .... 82317.709150: binder_transaction_received: transaction=1572661
123872<...>-8951 ( 8858) [000] d..1 82317.709175: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
123873 s.nexuslauncher-10023 (10023) [004] d..2 82317.709181: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
123874<...>-8951 ( 8858) [000] d..2 82317.709189: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
123875          <idle>-0     (-----) [004] d..1 82317.709192: cpu_idle: state=0 cpu_id=4
123876          <idle>-0     (-----) [003] .n.1 82317.709194: cpu_idle: state=4294967295 cpu_id=3
123877          <idle>-0     (-----) [003] d..2 82317.709201: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
123878<...>-8951 ( 8858) [000] d..2 82317.709221: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123879  appEventThread-8881  ( 8858) [003] d..2 82317.709226: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123880          <idle>-0     (-----) [000] d..1 82317.709228: cpu_idle: state=0 cpu_id=0
123881          <idle>-0     (-----) [003] d..1 82317.709233: cpu_idle: state=0 cpu_id=3
123882 FinalizerDaemon-8953  ( 8943) [001] .... 82317.709655: binder_transaction: transaction=1572662 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
123883 FinalizerDaemon-8953  ( 8943) [001] .... 82317.709659: binder_transaction_alloc_buf: transaction=1572662 data_size=100 offsets_size=8
123884 FinalizerDaemon-8953  ( 8943) [001] ...2 82317.709675: binder_set_priority: proc=8858 thread=8951 old=120 => new=124 desired=124
123885 FinalizerDaemon-8953  ( 8943) [001] d..4 82317.709680: sched_waking: comm=Binder:8858_4 pid=8951 prio=124 target_cpu=000
123886 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.709697: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=124 target_cpu=001
123887 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.709709: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=124
123888<...>-8951 ( 8858) [001] .... 82317.709717: binder_transaction_received: transaction=1572662
123889<...>-8951 ( 8858) [001] .... 82317.709762: binder_transaction: transaction=1572663 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
123890<...>-8951 ( 8858) [001] .... 82317.709768: binder_transaction_alloc_buf: transaction=1572663 data_size=4 offsets_size=0
123891<...>-8951 ( 8858) [001] d..2 82317.709772: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
123892<...>-8951 ( 8858) [001] d..3 82317.709782: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
123893<...>-8951 ( 8858) [001] .... 82317.709785: binder_set_priority: proc=8858 thread=8951 old=124 => new=120 desired=120
123894<...>-8951 ( 8858) [001] d..2 82317.709824: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
123895 FinalizerDaemon-8953  ( 8943) [001] .... 82317.709829: binder_transaction_received: transaction=1572663
123896 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.709870: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
123897 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.709889: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
123898          <idle>-0     (-----) [000] .n.1 82317.709895: cpu_idle: state=4294967295 cpu_id=0
123899 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.709898: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
123900          <idle>-0     (-----) [000] d..2 82317.709901: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
123901 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.709915: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
123902          <idle>-0     (-----) [002] .n.1 82317.709920: cpu_idle: state=4294967295 cpu_id=2
123903          <idle>-0     (-----) [002] d..2 82317.709929: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
123904<...>-13083 ( 8858) [002] d..2 82317.709946: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123905          <idle>-0     (-----) [002] d..1 82317.709953: cpu_idle: state=0 cpu_id=2
123906 FinalizerDaemon-8953  ( 8943) [001] .... 82317.709958: binder_transaction: transaction=1572664 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
123907 FinalizerDaemon-8953  ( 8943) [001] .... 82317.709961: binder_transaction_alloc_buf: transaction=1572664 data_size=100 offsets_size=8
123908<...>-8951 ( 8858) [000] d..3 82317.709965: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123909 FinalizerDaemon-8953  ( 8943) [001] ...2 82317.709968: binder_set_priority: proc=8858 thread=13083 old=120 => new=124 desired=124
123910 FinalizerDaemon-8953  ( 8943) [001] d..4 82317.709970: sched_waking: comm=Binder:8858_5 pid=13083 prio=124 target_cpu=002
123911<...>-8951 ( 8858) [000] d..4 82317.709979: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123912          <idle>-0     (-----) [003] .n.1 82317.709983: cpu_idle: state=4294967295 cpu_id=3
123913 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.709985: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=124 target_cpu=001
123914          <idle>-0     (-----) [003] d..2 82317.709990: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
123915 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.709995: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=124
123916<...>-13083 ( 8858) [001] .... 82317.710001: binder_transaction_received: transaction=1572664
123917<...>-13083 ( 8858) [001] .... 82317.710033: binder_transaction: transaction=1572665 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
123918<...>-13083 ( 8858) [001] .... 82317.710036: binder_transaction_alloc_buf: transaction=1572665 data_size=4 offsets_size=0
123919  surfaceflinger-8858  ( 8858) [003] d..2 82317.710037: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123920<...>-13083 ( 8858) [001] d..2 82317.710038: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
123921          <idle>-0     (-----) [003] d..1 82317.710045: cpu_idle: state=0 cpu_id=3
123922<...>-13083 ( 8858) [001] d..3 82317.710047: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
123923<...>-13083 ( 8858) [001] .... 82317.710049: binder_set_priority: proc=8858 thread=13083 old=124 => new=120 desired=120
123924<...>-8951 ( 8858) [000] d..2 82317.710051: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123925          <idle>-0     (-----) [000] d..1 82317.710059: cpu_idle: state=0 cpu_id=0
123926<...>-13083 ( 8858) [001] d..2 82317.710085: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
123927 FinalizerDaemon-8953  ( 8943) [001] .... 82317.710090: binder_transaction_received: transaction=1572665
123928 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.710119: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
123929 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.710138: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
123930          <idle>-0     (-----) [000] .n.1 82317.710143: cpu_idle: state=4294967295 cpu_id=0
123931 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.710144: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
123932          <idle>-0     (-----) [000] d..2 82317.710152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
123933 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.710164: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
123934          <idle>-0     (-----) [002] .n.1 82317.710168: cpu_idle: state=4294967295 cpu_id=2
123935          <idle>-0     (-----) [002] d..2 82317.710176: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
123936<...>-8951 ( 8858) [002] d..2 82317.710189: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123937          <idle>-0     (-----) [002] d..1 82317.710195: cpu_idle: state=0 cpu_id=2
123938<...>-13083 ( 8858) [000] d..3 82317.710198: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123939<...>-13083 ( 8858) [000] d..4 82317.710210: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123940          <idle>-0     (-----) [003] .n.1 82317.710215: cpu_idle: state=4294967295 cpu_id=3
123941          <idle>-0     (-----) [003] d..2 82317.710222: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
123942 FinalizerDaemon-8953  ( 8943) [001] .... 82317.710246: binder_transaction: transaction=1572666 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
123943 FinalizerDaemon-8953  ( 8943) [001] .... 82317.710249: binder_transaction_alloc_buf: transaction=1572666 data_size=100 offsets_size=8
123944  surfaceflinger-8858  ( 8858) [003] d..2 82317.710251: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123945 FinalizerDaemon-8953  ( 8943) [001] ...2 82317.710255: binder_set_priority: proc=8858 thread=8951 old=120 => new=124 desired=124
123946 FinalizerDaemon-8953  ( 8943) [001] d..4 82317.710258: sched_waking: comm=Binder:8858_4 pid=8951 prio=124 target_cpu=002
123947          <idle>-0     (-----) [003] d..1 82317.710260: cpu_idle: state=0 cpu_id=3
123948 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.710272: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=124 target_cpu=001
123949 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.710283: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=124
123950<...>-8951 ( 8858) [001] .... 82317.710288: binder_transaction_received: transaction=1572666
123951<...>-13083 ( 8858) [000] d..2 82317.710290: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123952          <idle>-0     (-----) [000] d..1 82317.710297: cpu_idle: state=0 cpu_id=0
123953<...>-8951 ( 8858) [001] .... 82317.710312: binder_transaction: transaction=1572667 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
123954<...>-8951 ( 8858) [001] .... 82317.710315: binder_transaction_alloc_buf: transaction=1572667 data_size=4 offsets_size=0
123955<...>-8951 ( 8858) [001] d..2 82317.710317: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
123956<...>-8951 ( 8858) [001] d..3 82317.710326: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
123957<...>-8951 ( 8858) [001] .... 82317.710329: binder_set_priority: proc=8858 thread=8951 old=124 => new=120 desired=120
123958<...>-8951 ( 8858) [001] d..2 82317.710360: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
123959 FinalizerDaemon-8953  ( 8943) [001] .... 82317.710364: binder_transaction_received: transaction=1572667
123960 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.710393: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
123961 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.710412: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
123962          <idle>-0     (-----) [000] .n.1 82317.710417: cpu_idle: state=4294967295 cpu_id=0
123963 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.710420: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
123964          <idle>-0     (-----) [000] d..2 82317.710425: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
123965 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.710442: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
123966          <idle>-0     (-----) [002] .n.1 82317.710446: cpu_idle: state=4294967295 cpu_id=2
123967          <idle>-0     (-----) [002] d..2 82317.710454: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
123968<...>-13083 ( 8858) [002] d..2 82317.710467: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
123969<...>-8951 ( 8858) [000] d..3 82317.710474: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123970          <idle>-0     (-----) [002] d..1 82317.710475: cpu_idle: state=0 cpu_id=2
123971<...>-8951 ( 8858) [000] d..4 82317.710487: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
123972          <idle>-0     (-----) [003] .n.1 82317.710492: cpu_idle: state=4294967295 cpu_id=3
123973          <idle>-0     (-----) [003] d..2 82317.710499: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
123974  surfaceflinger-8858  ( 8858) [003] d..2 82317.710535: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
123975<...>-8951 ( 8858) [000] d..2 82317.710543: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
123976          <idle>-0     (-----) [003] d..1 82317.710544: cpu_idle: state=0 cpu_id=3
123977          <idle>-0     (-----) [000] d..1 82317.710550: cpu_idle: state=0 cpu_id=0
123978 FinalizerDaemon-8953  ( 8943) [001] .... 82317.711248: binder_transaction: transaction=1572668 dest_node=617843 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
123979 FinalizerDaemon-8953  ( 8943) [001] .... 82317.711251: binder_transaction_alloc_buf: transaction=1572668 data_size=100 offsets_size=8
123980 FinalizerDaemon-8953  ( 8943) [001] ...2 82317.711259: binder_set_priority: proc=8858 thread=8951 old=120 => new=124 desired=124
123981 FinalizerDaemon-8953  ( 8943) [001] d..4 82317.711263: sched_waking: comm=Binder:8858_4 pid=8951 prio=124 target_cpu=000
123982 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.711279: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=124 target_cpu=001
123983 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.711290: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=124
123984<...>-8951 ( 8858) [001] .... 82317.711296: binder_transaction_received: transaction=1572668
123985<...>-8951 ( 8858) [001] .... 82317.711324: binder_transaction: transaction=1572669 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
123986<...>-8951 ( 8858) [001] .... 82317.711327: binder_transaction_alloc_buf: transaction=1572669 data_size=4 offsets_size=0
123987<...>-8951 ( 8858) [001] d..2 82317.711329: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
123988<...>-8951 ( 8858) [001] d..3 82317.711339: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
123989<...>-8951 ( 8858) [001] .... 82317.711342: binder_set_priority: proc=8858 thread=8951 old=124 => new=120 desired=120
123990<...>-8951 ( 8858) [001] d..2 82317.711374: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
123991 FinalizerDaemon-8953  ( 8943) [001] .... 82317.711378: binder_transaction_received: transaction=1572669
123992 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.711408: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
123993 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.711427: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
123994          <idle>-0     (-----) [000] .n.1 82317.711433: cpu_idle: state=4294967295 cpu_id=0
123995 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.711437: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
123996          <idle>-0     (-----) [000] d..2 82317.711440: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
123997 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.711448: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
123998          <idle>-0     (-----) [002] .n.1 82317.711453: cpu_idle: state=4294967295 cpu_id=2
123999          <idle>-0     (-----) [002] d..2 82317.711460: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
124000<...>-13083 ( 8858) [002] d..2 82317.711473: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124001<...>-8951 ( 8858) [000] d..3 82317.711476: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124002          <idle>-0     (-----) [002] d..1 82317.711480: cpu_idle: state=0 cpu_id=2
124003<...>-8951 ( 8858) [000] d..4 82317.711489: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124004          <idle>-0     (-----) [003] .n.1 82317.711494: cpu_idle: state=4294967295 cpu_id=3
124005          <idle>-0     (-----) [003] d..2 82317.711501: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124006  surfaceflinger-8858  ( 8858) [003] d..2 82317.711533: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124007          <idle>-0     (-----) [003] d..1 82317.711542: cpu_idle: state=0 cpu_id=3
124008<...>-8951 ( 8858) [000] d..2 82317.711544: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124009          <idle>-0     (-----) [000] d..1 82317.711551: cpu_idle: state=0 cpu_id=0
124010 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.711578: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
124011 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.711592: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
124012          <idle>-0     (-----) [000] .n.1 82317.711597: cpu_idle: state=4294967295 cpu_id=0
124013 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.711600: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
124014          <idle>-0     (-----) [000] d..2 82317.711604: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
124015 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.711611: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
124016          <idle>-0     (-----) [002] .n.1 82317.711616: cpu_idle: state=4294967295 cpu_id=2
124017          <idle>-0     (-----) [002] d..2 82317.711624: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
124018<...>-13083 ( 8858) [002] d..2 82317.711636: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124019          <idle>-0     (-----) [002] d..1 82317.711643: cpu_idle: state=0 cpu_id=2
124020<...>-8951 ( 8858) [000] d..3 82317.711645: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124021<...>-8951 ( 8858) [000] d..4 82317.711657: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124022          <idle>-0     (-----) [003] .n.1 82317.711662: cpu_idle: state=4294967295 cpu_id=3
124023          <idle>-0     (-----) [003] d..2 82317.711669: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124024 FinalizerDaemon-8953  ( 8943) [001] .... 82317.711675: binder_transaction: transaction=1572670 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124025 FinalizerDaemon-8953  ( 8943) [001] .... 82317.711678: binder_transaction_alloc_buf: transaction=1572670 data_size=100 offsets_size=8
124026 FinalizerDaemon-8953  ( 8943) [001] ...2 82317.711687: binder_set_priority: proc=8858 thread=13083 old=120 => new=124 desired=124
124027 FinalizerDaemon-8953  ( 8943) [001] d..4 82317.711689: sched_waking: comm=Binder:8858_5 pid=13083 prio=124 target_cpu=002
124028  surfaceflinger-8858  ( 8858) [003] d..2 82317.711699: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124029 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.711705: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=124 target_cpu=001
124030          <idle>-0     (-----) [003] d..1 82317.711707: cpu_idle: state=0 cpu_id=3
124031 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.711716: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=124
124032<...>-13083 ( 8858) [001] .... 82317.711722: binder_transaction_received: transaction=1572670
124033<...>-8951 ( 8858) [000] d..2 82317.711724: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124034          <idle>-0     (-----) [000] d..1 82317.711731: cpu_idle: state=0 cpu_id=0
124035<...>-13083 ( 8858) [001] .... 82317.711748: binder_transaction: transaction=1572671 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124036<...>-13083 ( 8858) [001] .... 82317.711751: binder_transaction_alloc_buf: transaction=1572671 data_size=4 offsets_size=0
124037<...>-13083 ( 8858) [001] d..2 82317.711754: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
124038<...>-13083 ( 8858) [001] d..3 82317.711763: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
124039<...>-13083 ( 8858) [001] .... 82317.711766: binder_set_priority: proc=8858 thread=13083 old=124 => new=120 desired=120
124040<...>-13083 ( 8858) [001] dns3 82317.711839: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124041          <idle>-0     (-----) [000] d.H3 82317.711852: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
124042<...>-13083 ( 8858) [001] dns4 82317.711857: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124043          <idle>-0     (-----) [000] dnH4 82317.711865: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
124044          <idle>-0     (-----) [002] .n.1 82317.711870: cpu_idle: state=4294967295 cpu_id=2
124045          <idle>-0     (-----) [000] dns2 82317.711873: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
124046          <idle>-0     (-----) [002] d..2 82317.711878: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
124047<...>-13083 ( 8858) [001] d..2 82317.711894: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124048         sugov:0-576   (  576) [002] .... 82317.711896: clk_set_rate: pwrcl_clk 1689600000
124049 FinalizerDaemon-8953  ( 8943) [001] .... 82317.711900: binder_transaction_received: transaction=1572671
124050          <idle>-0     (-----) [000] dns3 82317.711901: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124051          <idle>-0     (-----) [000] .n.1 82317.711915: cpu_idle: state=4294967295 cpu_id=0
124052          <idle>-0     (-----) [000] d..2 82317.711922: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124053 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.711928: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
124054 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.711948: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
124055          <idle>-0     (-----) [003] .n.1 82317.711953: cpu_idle: state=4294967295 cpu_id=3
124056         sugov:0-576   (  576) [002] d..2 82317.711961: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
124057          <idle>-0     (-----) [003] d..2 82317.711963: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
124058 FinalizerDaemon-8953  ( 8943) [001] d.s4 82317.711977: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
124059     rcu_preempt-7     (    7) [002] d..2 82317.711981: 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
124060          <idle>-0     (-----) [002] d..1 82317.711990: cpu_idle: state=0 cpu_id=2
124061          <idle>-0     (-----) [002] .n.1 82317.711993: cpu_idle: state=4294967295 cpu_id=2
124062 FinalizerDaemon-8953  ( 8943) [001] d.s5 82317.711994: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
124063 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.711998: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
124064<...>-13083 ( 8858) [003] d..2 82317.712001: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124065          <idle>-0     (-----) [002] d..2 82317.712004: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
124066          <idle>-0     (-----) [003] dn.1 82317.712010: cpu_idle: state=0 cpu_id=3
124067 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.712013: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=003
124068         sugov:0-576   (  576) [002] .... 82317.712013: clk_set_rate: cpu3_pwrcl_clk 1228800000
124069          <idle>-0     (-----) [003] .n.1 82317.712014: cpu_idle: state=4294967295 cpu_id=3
124070         sugov:0-576   (  576) [002] .... 82317.712021: clk_set_rate: cpu2_pwrcl_clk 1228800000
124071          <idle>-0     (-----) [003] d..2 82317.712025: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
124072         sugov:0-576   (  576) [002] .... 82317.712028: clk_set_rate: cpu1_pwrcl_clk 1228800000
124073         sugov:0-576   (  576) [002] .... 82317.712035: clk_set_rate: cpu0_pwrcl_clk 1689600000
124074         sugov:0-576   (  576) [002] .... 82317.712043: cpu_frequency: state=1689600 cpu_id=0
124075<...>-13083 ( 8858) [003] d..3 82317.712047: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124076         sugov:0-576   (  576) [002] .... 82317.712053: cpu_frequency: state=1689600 cpu_id=1
124077         sugov:0-576   (  576) [002] .... 82317.712056: cpu_frequency: state=1689600 cpu_id=2
124078<...>-13083 ( 8858) [003] dn.4 82317.712058: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124079         sugov:0-576   (  576) [002] .... 82317.712059: cpu_frequency: state=1689600 cpu_id=3
124080<...>-13083 ( 8858) [003] d..2 82317.712065: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124081  kworker/u16:15-1311  ( 1311) [000] d..2 82317.712067: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
124082          <idle>-0     (-----) [000] d..1 82317.712074: cpu_idle: state=0 cpu_id=0
124083         sugov:0-576   (  576) [002] d..2 82317.712076: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124084 FinalizerDaemon-8953  ( 8943) [001] d.s2 82317.712080: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124085          <idle>-0     (-----) [002] d..1 82317.712084: cpu_idle: state=0 cpu_id=2
124086  surfaceflinger-8858  ( 8858) [003] d..2 82317.712087: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
124087 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.712090: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
124088 FinalizerDaemon-8953  ( 8943) [001] d.s3 82317.712096: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124089          <idle>-0     (-----) [000] .n.1 82317.712102: cpu_idle: state=4294967295 cpu_id=0
124090          <idle>-0     (-----) [000] d..2 82317.712111: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124091  kworker/u16:15-1311  ( 1311) [000] d..2 82317.712128: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124092          <idle>-0     (-----) [000] d..1 82317.712132: cpu_idle: state=0 cpu_id=0
124093<...>-13083 ( 8858) [003] d..2 82317.712145: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124094 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712152: binder_transaction: transaction=1572672 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124095          <idle>-0     (-----) [003] d..1 82317.712153: cpu_idle: state=0 cpu_id=3
124096 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712154: binder_transaction_alloc_buf: transaction=1572672 data_size=100 offsets_size=8
124097 FinalizerDaemon-8953  ( 8943) [001] ...2 82317.712160: binder_set_priority: proc=8858 thread=13083 old=120 => new=124 desired=124
124098 FinalizerDaemon-8953  ( 8943) [001] d..4 82317.712162: sched_waking: comm=Binder:8858_5 pid=13083 prio=124 target_cpu=003
124099 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.712175: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=124 target_cpu=001
124100 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.712184: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=124
124101<...>-13083 ( 8858) [001] .... 82317.712188: binder_transaction_received: transaction=1572672
124102<...>-13083 ( 8858) [001] .... 82317.712210: binder_transaction: transaction=1572673 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124103<...>-13083 ( 8858) [001] .... 82317.712212: binder_transaction_alloc_buf: transaction=1572673 data_size=4 offsets_size=0
124104<...>-13083 ( 8858) [001] d..2 82317.712215: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
124105<...>-13083 ( 8858) [001] d..3 82317.712221: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
124106<...>-13083 ( 8858) [001] .... 82317.712224: binder_set_priority: proc=8858 thread=13083 old=124 => new=120 desired=120
124107<...>-13083 ( 8858) [001] d..2 82317.712250: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124108 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712254: binder_transaction_received: transaction=1572673
124109 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.712279: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
124110 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.712294: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
124111          <idle>-0     (-----) [000] .n.1 82317.712299: cpu_idle: state=4294967295 cpu_id=0
124112 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.712301: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=000
124113          <idle>-0     (-----) [000] d..2 82317.712304: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
124114 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.712319: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
124115          <idle>-0     (-----) [002] .n.1 82317.712323: cpu_idle: state=4294967295 cpu_id=2
124116          <idle>-0     (-----) [002] d..2 82317.712330: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
124117<...>-8951 ( 8858) [002] d..2 82317.712341: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124118          <idle>-0     (-----) [002] d..1 82317.712346: cpu_idle: state=0 cpu_id=2
124119<...>-13083 ( 8858) [000] d..3 82317.712348: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124120<...>-13083 ( 8858) [000] d..4 82317.712360: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124121          <idle>-0     (-----) [003] .n.1 82317.712365: cpu_idle: state=4294967295 cpu_id=3
124122          <idle>-0     (-----) [003] d..2 82317.712371: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124123 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712392: binder_transaction: transaction=1572674 dest_node=617843 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124124 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712395: binder_transaction_alloc_buf: transaction=1572674 data_size=100 offsets_size=8
124125  surfaceflinger-8858  ( 8858) [003] d..2 82317.712397: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124126 FinalizerDaemon-8953  ( 8943) [001] ...2 82317.712402: binder_set_priority: proc=8858 thread=13083 old=120 => new=124 desired=124
124127          <idle>-0     (-----) [003] d..1 82317.712403: cpu_idle: state=0 cpu_id=3
124128 FinalizerDaemon-8953  ( 8943) [001] d..4 82317.712404: sched_waking: comm=Binder:8858_5 pid=13083 prio=124 target_cpu=000
124129<...>-13083 ( 8858) [000] d..2 82317.712408: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=124 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124130          <idle>-0     (-----) [000] d..1 82317.712414: cpu_idle: state=0 cpu_id=0
124131 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.712421: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=124 target_cpu=001
124132 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.712430: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=124
124133<...>-13083 ( 8858) [001] .... 82317.712434: binder_transaction_received: transaction=1572674
124134<...>-13083 ( 8858) [001] .... 82317.712455: binder_transaction: transaction=1572675 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124135<...>-13083 ( 8858) [001] .... 82317.712458: binder_transaction_alloc_buf: transaction=1572675 data_size=4 offsets_size=0
124136<...>-13083 ( 8858) [001] d..2 82317.712460: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
124137<...>-13083 ( 8858) [001] d..3 82317.712467: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
124138<...>-13083 ( 8858) [001] .... 82317.712469: binder_set_priority: proc=8858 thread=13083 old=124 => new=120 desired=120
124139<...>-13083 ( 8858) [001] d..2 82317.712494: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124140 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712497: binder_transaction_received: transaction=1572675
124141 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.712521: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
124142 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.712537: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
124143          <idle>-0     (-----) [000] .n.1 82317.712542: cpu_idle: state=4294967295 cpu_id=0
124144 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.712545: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
124145          <idle>-0     (-----) [000] d..2 82317.712548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
124146 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.712554: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
124147          <idle>-0     (-----) [002] .n.1 82317.712559: cpu_idle: state=4294967295 cpu_id=2
124148 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.712561: sched_waking: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=005
124149          <idle>-0     (-----) [002] d..2 82317.712565: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
124150 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.712582: sched_wakeup: comm=Binder:8858_2 pid=8874 prio=120 target_cpu=003
124151          <idle>-0     (-----) [003] .n.1 82317.712588: cpu_idle: state=4294967295 cpu_id=3
124152<...>-13083 ( 8858) [000] d..3 82317.712615: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
124153          <idle>-0     (-----) [003] d..2 82317.712615: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_2 next_pid=8874 next_prio=120
124154          <idle>-0     (-----) [004] dnh2 82317.712637: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
124155<...>-8874 ( 8858) [003] d..2 82317.712641: sched_switch: prev_comm=Binder:8858_2 prev_pid=8874 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124156          <idle>-0     (-----) [004] .n.1 82317.712642: cpu_idle: state=4294967295 cpu_id=4
124157<...>-13083 ( 8858) [000] d..3 82317.712643: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124158          <idle>-0     (-----) [003] d..1 82317.712646: cpu_idle: state=0 cpu_id=3
124159          <idle>-0     (-----) [004] d..2 82317.712650: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124160<...>-8951 ( 8858) [002] d..2 82317.712653: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124161<...>-13083 ( 8858) [000] d..4 82317.712654: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124162          <idle>-0     (-----) [003] .n.1 82317.712658: cpu_idle: state=4294967295 cpu_id=3
124163          <idle>-0     (-----) [002] d..1 82317.712658: cpu_idle: state=0 cpu_id=2
124164          <idle>-0     (-----) [003] d..2 82317.712663: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124165   Binder:8858_1-8871  ( 8858) [004] d..2 82317.712678: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
124166 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712688: binder_transaction: transaction=1572676 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124167          <idle>-0     (-----) [004] d..1 82317.712688: cpu_idle: state=0 cpu_id=4
124168 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712691: binder_transaction_alloc_buf: transaction=1572676 data_size=100 offsets_size=8
124169  surfaceflinger-8858  ( 8858) [003] d..2 82317.712692: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124170 FinalizerDaemon-8953  ( 8943) [001] ...2 82317.712697: binder_set_priority: proc=8858 thread=13083 old=120 => new=124 desired=124
124171          <idle>-0     (-----) [003] d..1 82317.712699: cpu_idle: state=0 cpu_id=3
124172<...>-13083 ( 8858) [000] d..2 82317.712700: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124173 FinalizerDaemon-8953  ( 8943) [001] d..4 82317.712702: sched_waking: comm=Binder:8858_5 pid=13083 prio=124 target_cpu=000
124174          <idle>-0     (-----) [000] d..1 82317.712705: cpu_idle: state=0 cpu_id=0
124175 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.712715: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=124 target_cpu=001
124176 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.712723: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=124
124177<...>-13083 ( 8858) [001] .... 82317.712727: binder_transaction_received: transaction=1572676
124178<...>-13083 ( 8858) [001] .... 82317.712748: binder_transaction: transaction=1572677 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124179<...>-13083 ( 8858) [001] .... 82317.712750: binder_transaction_alloc_buf: transaction=1572677 data_size=4 offsets_size=0
124180<...>-13083 ( 8858) [001] d..2 82317.712753: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
124181<...>-13083 ( 8858) [001] d..3 82317.712760: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
124182<...>-13083 ( 8858) [001] .... 82317.712762: binder_set_priority: proc=8858 thread=13083 old=124 => new=120 desired=120
124183<...>-13083 ( 8858) [001] d..2 82317.712787: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124184 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712792: binder_transaction_received: transaction=1572677
124185 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.712817: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
124186 FinalizerDaemon-8953  ( 8943) [001] d..6 82317.712832: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
124187          <idle>-0     (-----) [000] .n.1 82317.712837: cpu_idle: state=4294967295 cpu_id=0
124188 FinalizerDaemon-8953  ( 8943) [001] d..5 82317.712840: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
124189          <idle>-0     (-----) [000] d..2 82317.712843: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
124190          <idle>-0     (-----) [004] dnh2 82317.712857: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
124191          <idle>-0     (-----) [004] .n.1 82317.712861: cpu_idle: state=4294967295 cpu_id=4
124192          <idle>-0     (-----) [004] d..2 82317.712868: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124193<...>-13083 ( 8858) [000] d..3 82317.712873: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124194 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712877: binder_transaction: transaction=1572678 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124195   Binder:8858_1-8871  ( 8858) [004] d..2 82317.712878: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
124196 FinalizerDaemon-8953  ( 8943) [001] .... 82317.712879: binder_transaction_alloc_buf: transaction=1572678 data_size=100 offsets_size=8
124197<...>-13083 ( 8858) [000] d..4 82317.712883: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124198          <idle>-0     (-----) [004] d..1 82317.712885: cpu_idle: state=0 cpu_id=4
124199 FinalizerDaemon-8953  ( 8943) [001] ...2 82317.712885: binder_set_priority: proc=8858 thread=8871 old=120 => new=124 desired=124
124200 FinalizerDaemon-8953  ( 8943) [001] d..4 82317.712888: sched_waking: comm=Binder:8858_1 pid=8871 prio=124 target_cpu=004
124201          <idle>-0     (-----) [003] .n.1 82317.712888: cpu_idle: state=4294967295 cpu_id=3
124202          <idle>-0     (-----) [003] d..2 82317.712893: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124203 FinalizerDaemon-8953  ( 8943) [001] dn.5 82317.712904: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=124 target_cpu=001
124204  surfaceflinger-8858  ( 8858) [003] d..2 82317.712955: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=124
124205<...>-13083 ( 8858) [000] d..2 82317.712956: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124206   Binder:8858_1-8871  ( 8858) [003] .... 82317.712960: binder_transaction_received: transaction=1572678
124207          <idle>-0     (-----) [000] d..1 82317.712962: cpu_idle: state=0 cpu_id=0
124208 FinalizerDaemon-8953  ( 8943) [001] d..2 82317.712965: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124209          <idle>-0     (-----) [001] d..1 82317.712984: cpu_idle: state=0 cpu_id=1
124210   Binder:8858_1-8871  ( 8858) [003] .... 82317.712987: binder_transaction: transaction=1572679 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124211   Binder:8858_1-8871  ( 8858) [003] .... 82317.712989: binder_transaction_alloc_buf: transaction=1572679 data_size=4 offsets_size=0
124212   Binder:8858_1-8871  ( 8858) [003] d..2 82317.712992: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=001
124213   Binder:8858_1-8871  ( 8858) [003] d..3 82317.713005: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=003
124214   Binder:8858_1-8871  ( 8858) [003] .... 82317.713008: binder_set_priority: proc=8858 thread=8871 old=124 => new=120 desired=120
124215   Binder:8858_1-8871  ( 8858) [003] d..2 82317.713035: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124216 FinalizerDaemon-8953  ( 8943) [003] .... 82317.713041: binder_transaction_received: transaction=1572679
124217 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.713073: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=003
124218 FinalizerDaemon-8953  ( 8943) [003] d..6 82317.713090: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
124219          <idle>-0     (-----) [000] .n.1 82317.713094: cpu_idle: state=4294967295 cpu_id=0
124220 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.713097: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=000
124221          <idle>-0     (-----) [000] d..2 82317.713100: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124222 FinalizerDaemon-8953  ( 8943) [003] d..6 82317.713115: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
124223          <idle>-0     (-----) [001] .n.1 82317.713122: cpu_idle: state=4294967295 cpu_id=1
124224          <idle>-0     (-----) [001] d..2 82317.713130: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
124225<...>-13083 ( 8858) [001] d..2 82317.713143: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124226   Binder:8858_1-8871  ( 8858) [000] d..3 82317.713144: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
124227          <idle>-0     (-----) [001] d..1 82317.713149: cpu_idle: state=0 cpu_id=1
124228   Binder:8858_1-8871  ( 8858) [000] d..4 82317.713159: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
124229          <idle>-0     (-----) [001] .n.1 82317.713164: cpu_idle: state=4294967295 cpu_id=1
124230 FinalizerDaemon-8953  ( 8943) [003] ...1 82317.713166: tracing_mark_write: B|8943|HIDL::IMapper::freeBuffer::passthrough
124231          <idle>-0     (-----) [001] d..2 82317.713170: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124232 FinalizerDaemon-8953  ( 8943) [003] ...1 82317.713187: tracing_mark_write: B|8943|FreeBuffer
124233  surfaceflinger-8858  ( 8858) [001] d..2 82317.713203: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124234   Binder:8858_1-8871  ( 8858) [000] d..2 82317.713205: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124235          <idle>-0     (-----) [001] d..1 82317.713210: cpu_idle: state=0 cpu_id=1
124236          <idle>-0     (-----) [000] d..1 82317.713211: cpu_idle: state=0 cpu_id=0
124237 FinalizerDaemon-8953  ( 8943) [003] d..2 82317.713213: sched_waking: comm=system pid=104 prio=120 target_cpu=001
124238 FinalizerDaemon-8953  ( 8943) [003] d..3 82317.713242: sched_wakeup: comm=system pid=104 prio=120 target_cpu=000
124239          <idle>-0     (-----) [000] .n.1 82317.713246: cpu_idle: state=4294967295 cpu_id=0
124240 FinalizerDaemon-8953  ( 8943) [003] d..2 82317.713249: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
124241          <idle>-0     (-----) [000] d..2 82317.713253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system next_pid=104 next_prio=120
124242 FinalizerDaemon-8953  ( 8943) [003] d..3 82317.713266: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
124243          system-104   (  104) [000] d..2 82317.713275: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
124244 FinalizerDaemon-8953  ( 8943) [003] ...1 82317.713277: tracing_mark_write: E|8943
124245 FinalizerDaemon-8953  ( 8943) [003] ...1 82317.713282: tracing_mark_write: B|8943|FreeBuffer
124246         rcuop/2-29    (   29) [000] d..2 82317.713283: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=system next_pid=104 next_prio=120
124247 FinalizerDaemon-8953  ( 8943) [003] ...1 82317.713285: tracing_mark_write: B|8943|UnmapBuffer
124248 FinalizerDaemon-8953  ( 8943) [003] ...1 82317.713313: tracing_mark_write: E|8943
124249 FinalizerDaemon-8953  ( 8943) [003] ...1 82317.713330: tracing_mark_write: E|8943
124250 FinalizerDaemon-8953  ( 8943) [003] ...1 82317.713340: tracing_mark_write: E|8943
124251 FinalizerDaemon-8953  ( 8943) [003] .... 82317.713655: binder_transaction: transaction=1572680 dest_node=617843 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124252 FinalizerDaemon-8953  ( 8943) [003] .... 82317.713658: binder_transaction_alloc_buf: transaction=1572680 data_size=100 offsets_size=8
124253 FinalizerDaemon-8953  ( 8943) [003] ...2 82317.713664: binder_set_priority: proc=8858 thread=8871 old=120 => new=124 desired=124
124254 FinalizerDaemon-8953  ( 8943) [003] d..4 82317.713667: sched_waking: comm=Binder:8858_1 pid=8871 prio=124 target_cpu=000
124255 FinalizerDaemon-8953  ( 8943) [003] dn.5 82317.713681: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=124 target_cpu=003
124256 FinalizerDaemon-8953  ( 8943) [003] d..2 82317.713687: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=124
124257   Binder:8858_1-8871  ( 8858) [003] .... 82317.713691: binder_transaction_received: transaction=1572680
124258   Binder:8858_1-8871  ( 8858) [003] .... 82317.713713: binder_transaction: transaction=1572681 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124259   Binder:8858_1-8871  ( 8858) [003] .... 82317.713716: binder_transaction_alloc_buf: transaction=1572681 data_size=4 offsets_size=0
124260   Binder:8858_1-8871  ( 8858) [003] .... 82317.713718: binder_set_priority: proc=8858 thread=8871 old=124 => new=120 desired=120
124261   Binder:8858_1-8871  ( 8858) [003] d..2 82317.713746: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124262 FinalizerDaemon-8953  ( 8943) [003] .... 82317.713750: binder_transaction_received: transaction=1572681
124263 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.713776: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=003
124264 FinalizerDaemon-8953  ( 8943) [003] d..6 82317.713792: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
124265 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.713797: sched_waking: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=001
124266          <idle>-0     (-----) [001] .n.1 82317.713798: cpu_idle: state=4294967295 cpu_id=1
124267          <idle>-0     (-----) [001] d..2 82317.713804: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124268 FinalizerDaemon-8953  ( 8943) [003] d..6 82317.713815: sched_wakeup: comm=Binder:8858_5 pid=13083 prio=120 target_cpu=002
124269          <idle>-0     (-----) [002] .n.1 82317.713820: cpu_idle: state=4294967295 cpu_id=2
124270 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.713820: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=002
124271          <idle>-0     (-----) [002] d..2 82317.713827: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_5 next_pid=13083 next_prio=120
124272          <idle>-0     (-----) [004] dnh2 82317.713868: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
124273          <idle>-0     (-----) [004] .n.1 82317.713872: cpu_idle: state=4294967295 cpu_id=4
124274<...>-13083 ( 8858) [002] d..2 82317.713877: sched_switch: prev_comm=Binder:8858_5 prev_pid=13083 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124275          <idle>-0     (-----) [004] d..2 82317.713877: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
124276          <idle>-0     (-----) [002] d..1 82317.713882: cpu_idle: state=0 cpu_id=2
124277<...>-8951 ( 8858) [004] d..2 82317.713887: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
124278   Binder:8858_1-8871  ( 8858) [001] d..3 82317.713889: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
124279          <idle>-0     (-----) [004] d..1 82317.713892: cpu_idle: state=0 cpu_id=4
124280   Binder:8858_1-8871  ( 8858) [001] d..4 82317.713905: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
124281          <idle>-0     (-----) [002] .n.1 82317.713910: cpu_idle: state=4294967295 cpu_id=2
124282          <idle>-0     (-----) [002] d..2 82317.713916: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124283 FinalizerDaemon-8953  ( 8943) [003] .... 82317.713937: binder_transaction: transaction=1572682 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124284 FinalizerDaemon-8953  ( 8943) [003] .... 82317.713940: binder_transaction_alloc_buf: transaction=1572682 data_size=100 offsets_size=8
124285 FinalizerDaemon-8953  ( 8943) [003] ...2 82317.713946: binder_set_priority: proc=8858 thread=8871 old=120 => new=124 desired=124
124286  surfaceflinger-8858  ( 8858) [002] d..2 82317.713948: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124287 FinalizerDaemon-8953  ( 8943) [003] d..4 82317.713949: sched_waking: comm=Binder:8858_1 pid=8871 prio=124 target_cpu=001
124288          <idle>-0     (-----) [002] d..1 82317.713954: cpu_idle: state=0 cpu_id=2
124289   Binder:8858_1-8871  ( 8858) [001] d..2 82317.713956: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=124 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124290          <idle>-0     (-----) [001] d..1 82317.713965: cpu_idle: state=0 cpu_id=1
124291 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.713969: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=124 target_cpu=003
124292 FinalizerDaemon-8953  ( 8943) [003] d..2 82317.713978: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=124
124293   Binder:8858_1-8871  ( 8858) [003] .... 82317.713982: binder_transaction_received: transaction=1572682
124294   Binder:8858_1-8871  ( 8858) [003] .... 82317.714002: binder_transaction: transaction=1572683 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124295   Binder:8858_1-8871  ( 8858) [003] .... 82317.714004: binder_transaction_alloc_buf: transaction=1572683 data_size=4 offsets_size=0
124296   Binder:8858_1-8871  ( 8858) [003] d..2 82317.714006: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=003
124297   Binder:8858_1-8871  ( 8858) [003] d..3 82317.714013: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=003
124298   Binder:8858_1-8871  ( 8858) [003] .... 82317.714015: binder_set_priority: proc=8858 thread=8871 old=124 => new=120 desired=120
124299   Binder:8858_1-8871  ( 8858) [003] d..2 82317.714041: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124300 FinalizerDaemon-8953  ( 8943) [003] .... 82317.714045: binder_transaction_received: transaction=1572683
124301 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.714067: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=003
124302 FinalizerDaemon-8953  ( 8943) [003] d..6 82317.714083: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
124303 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.714087: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
124304          <idle>-0     (-----) [001] .n.1 82317.714088: cpu_idle: state=4294967295 cpu_id=1
124305          <idle>-0     (-----) [001] d..2 82317.714095: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124306          <idle>-0     (-----) [004] dnh2 82317.714101: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=004
124307          <idle>-0     (-----) [004] .n.1 82317.714105: cpu_idle: state=4294967295 cpu_id=4
124308          <idle>-0     (-----) [004] d..2 82317.714110: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
124309<...>-8951 ( 8858) [004] d..2 82317.714118: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
124310   Binder:8858_1-8871  ( 8858) [001] d..3 82317.714122: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
124311          <idle>-0     (-----) [004] d..1 82317.714124: cpu_idle: state=0 cpu_id=4
124312   Binder:8858_1-8871  ( 8858) [001] d..4 82317.714132: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
124313          <idle>-0     (-----) [002] .n.1 82317.714137: cpu_idle: state=4294967295 cpu_id=2
124314          <idle>-0     (-----) [002] d..2 82317.714143: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124315 FinalizerDaemon-8953  ( 8943) [003] .... 82317.714147: binder_transaction: transaction=1572684 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124316 FinalizerDaemon-8953  ( 8943) [003] .... 82317.714151: binder_transaction_alloc_buf: transaction=1572684 data_size=100 offsets_size=8
124317 FinalizerDaemon-8953  ( 8943) [003] ...2 82317.714157: binder_set_priority: proc=8858 thread=8951 old=120 => new=124 desired=124
124318 FinalizerDaemon-8953  ( 8943) [003] d..4 82317.714159: sched_waking: comm=Binder:8858_4 pid=8951 prio=124 target_cpu=004
124319  surfaceflinger-8858  ( 8858) [002] d..2 82317.714168: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124320          <idle>-0     (-----) [002] d..1 82317.714173: cpu_idle: state=0 cpu_id=2
124321 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.714176: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=124 target_cpu=003
124322 FinalizerDaemon-8953  ( 8943) [003] d..2 82317.714212: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=124
124323<...>-8951 ( 8858) [003] .... 82317.714216: binder_transaction_received: transaction=1572684
124324   Binder:8858_1-8871  ( 8858) [001] d..2 82317.714218: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124325          <idle>-0     (-----) [001] d..1 82317.714226: cpu_idle: state=0 cpu_id=1
124326<...>-8951 ( 8858) [003] .... 82317.714236: binder_transaction: transaction=1572685 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124327<...>-8951 ( 8858) [003] .... 82317.714238: binder_transaction_alloc_buf: transaction=1572685 data_size=4 offsets_size=0
124328<...>-8951 ( 8858) [003] d..2 82317.714240: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=003
124329<...>-8951 ( 8858) [003] d..3 82317.714247: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=003
124330<...>-8951 ( 8858) [003] .... 82317.714249: binder_set_priority: proc=8858 thread=8951 old=124 => new=120 desired=120
124331<...>-8951 ( 8858) [003] d..2 82317.714274: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124332 FinalizerDaemon-8953  ( 8943) [003] .... 82317.714278: binder_transaction_received: transaction=1572685
124333 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.714302: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
124334 FinalizerDaemon-8953  ( 8943) [003] d..6 82317.714319: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
124335 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.714323: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
124336          <idle>-0     (-----) [001] .n.1 82317.714324: cpu_idle: state=4294967295 cpu_id=1
124337          <idle>-0     (-----) [001] d..2 82317.714331: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
124338 FinalizerDaemon-8953  ( 8943) [003] d..6 82317.714341: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=002
124339          <idle>-0     (-----) [002] .n.1 82317.714346: cpu_idle: state=4294967295 cpu_id=2
124340          <idle>-0     (-----) [002] d..2 82317.714352: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124341   Binder:8858_1-8871  ( 8858) [002] d..2 82317.714363: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124342<...>-8951 ( 8858) [001] d..3 82317.714365: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
124343          <idle>-0     (-----) [002] d..1 82317.714368: cpu_idle: state=0 cpu_id=2
124344<...>-8951 ( 8858) [001] d..4 82317.714376: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
124345          <idle>-0     (-----) [002] .n.1 82317.714380: cpu_idle: state=4294967295 cpu_id=2
124346          <idle>-0     (-----) [002] d..2 82317.714385: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124347  surfaceflinger-8858  ( 8858) [002] d..2 82317.714406: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124348          <idle>-0     (-----) [002] d..1 82317.714412: cpu_idle: state=0 cpu_id=2
124349 FinalizerDaemon-8953  ( 8943) [003] .... 82317.714413: binder_transaction: transaction=1572686 dest_node=617843 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124350 FinalizerDaemon-8953  ( 8943) [003] .... 82317.714416: binder_transaction_alloc_buf: transaction=1572686 data_size=100 offsets_size=8
124351<...>-8951 ( 8858) [001] d..2 82317.714419: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124352 FinalizerDaemon-8953  ( 8943) [003] ...2 82317.714423: binder_set_priority: proc=8858 thread=8951 old=120 => new=124 desired=124
124353 FinalizerDaemon-8953  ( 8943) [003] d..4 82317.714424: sched_waking: comm=Binder:8858_4 pid=8951 prio=124 target_cpu=001
124354          <idle>-0     (-----) [001] d..1 82317.714428: cpu_idle: state=0 cpu_id=1
124355 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.714437: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=124 target_cpu=003
124356 FinalizerDaemon-8953  ( 8943) [003] d..2 82317.714445: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=124
124357<...>-8951 ( 8858) [003] .... 82317.714449: binder_transaction_received: transaction=1572686
124358<...>-8951 ( 8858) [003] .... 82317.714469: binder_transaction: transaction=1572687 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124359<...>-8951 ( 8858) [003] .... 82317.714471: binder_transaction_alloc_buf: transaction=1572687 data_size=4 offsets_size=0
124360<...>-8951 ( 8858) [003] d..2 82317.714473: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=003
124361<...>-8951 ( 8858) [003] d..3 82317.714480: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=003
124362<...>-8951 ( 8858) [003] .... 82317.714482: binder_set_priority: proc=8858 thread=8951 old=124 => new=120 desired=120
124363<...>-8951 ( 8858) [003] d..2 82317.714506: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124364 FinalizerDaemon-8953  ( 8943) [003] .... 82317.714510: binder_transaction_received: transaction=1572687
124365 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.714530: sched_waking: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=003
124366 FinalizerDaemon-8953  ( 8943) [003] d..6 82317.714546: sched_wakeup: comm=Binder:8858_4 pid=8951 prio=120 target_cpu=001
124367          <idle>-0     (-----) [001] .n.1 82317.714551: cpu_idle: state=4294967295 cpu_id=1
124368 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.714552: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=002
124369          <idle>-0     (-----) [001] d..2 82317.714558: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_4 next_pid=8951 next_prio=120
124370 FinalizerDaemon-8953  ( 8943) [003] d..6 82317.714560: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=002
124371          <idle>-0     (-----) [002] .n.1 82317.714565: cpu_idle: state=4294967295 cpu_id=2
124372          <idle>-0     (-----) [002] d..2 82317.714571: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124373   Binder:8858_1-8871  ( 8858) [002] d..2 82317.714581: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124374          <idle>-0     (-----) [002] d..1 82317.714586: cpu_idle: state=0 cpu_id=2
124375<...>-8951 ( 8858) [001] d..3 82317.714587: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
124376<...>-8951 ( 8858) [001] d..4 82317.714598: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
124377          <idle>-0     (-----) [002] .n.1 82317.714602: cpu_idle: state=4294967295 cpu_id=2
124378          <idle>-0     (-----) [002] d..2 82317.714607: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
124379 FinalizerDaemon-8953  ( 8943) [003] .... 82317.714610: binder_transaction: transaction=1572688 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124380 FinalizerDaemon-8953  ( 8943) [003] .... 82317.714613: binder_transaction_alloc_buf: transaction=1572688 data_size=100 offsets_size=8
124381 FinalizerDaemon-8953  ( 8943) [003] ...2 82317.714619: binder_set_priority: proc=8858 thread=8871 old=120 => new=124 desired=124
124382 FinalizerDaemon-8953  ( 8943) [003] d..4 82317.714621: sched_waking: comm=Binder:8858_1 pid=8871 prio=124 target_cpu=002
124383 FinalizerDaemon-8953  ( 8943) [003] d..5 82317.714635: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=124 target_cpu=003
124384  surfaceflinger-8858  ( 8858) [002] d..2 82317.714653: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=124
124385<...>-8951 ( 8858) [001] d..2 82317.714655: sched_switch: prev_comm=Binder:8858_4 prev_pid=8951 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124386   Binder:8858_1-8871  ( 8858) [002] .... 82317.714657: binder_transaction_received: transaction=1572688
124387 FinalizerDaemon-8953  ( 8943) [003] d..2 82317.714659: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124388          <idle>-0     (-----) [001] d..1 82317.714666: cpu_idle: state=0 cpu_id=1
124389          <idle>-0     (-----) [003] d..1 82317.714670: cpu_idle: state=0 cpu_id=3
124390   Binder:8858_1-8871  ( 8858) [002] .... 82317.714678: binder_transaction: transaction=1572689 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124391   Binder:8858_1-8871  ( 8858) [002] .... 82317.714681: binder_transaction_alloc_buf: transaction=1572689 data_size=4 offsets_size=0
124392   Binder:8858_1-8871  ( 8858) [002] d..2 82317.714683: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=003
124393   Binder:8858_1-8871  ( 8858) [002] d..3 82317.714697: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=002
124394   Binder:8858_1-8871  ( 8858) [002] .... 82317.714700: binder_set_priority: proc=8858 thread=8871 old=124 => new=120 desired=120
124395   Binder:8858_1-8871  ( 8858) [002] d..2 82317.714727: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124396 FinalizerDaemon-8953  ( 8943) [002] .... 82317.714733: binder_transaction_received: transaction=1572689
124397 FinalizerDaemon-8953  ( 8943) [002] .... 82317.714804: binder_transaction: transaction=1572690 dest_node=396354 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
124398 FinalizerDaemon-8953  ( 8943) [002] .... 82317.714807: binder_transaction_alloc_buf: transaction=1572690 data_size=100 offsets_size=8
124399 FinalizerDaemon-8953  ( 8943) [002] ...2 82317.714813: binder_set_priority: proc=8858 thread=8871 old=120 => new=124 desired=124
124400 FinalizerDaemon-8953  ( 8943) [002] d..4 82317.714815: sched_waking: comm=Binder:8858_1 pid=8871 prio=124 target_cpu=002
124401 FinalizerDaemon-8953  ( 8943) [002] d..5 82317.714824: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=124 target_cpu=002
124402 FinalizerDaemon-8953  ( 8943) [002] d..2 82317.714833: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=124
124403   Binder:8858_1-8871  ( 8858) [002] .... 82317.714837: binder_transaction_received: transaction=1572690
124404   Binder:8858_1-8871  ( 8858) [002] .... 82317.714856: binder_transaction: transaction=1572691 dest_node=0 dest_proc=8943 dest_thread=8953 reply=1 flags=0x0 code=0x0
124405   Binder:8858_1-8871  ( 8858) [002] .... 82317.714858: binder_transaction_alloc_buf: transaction=1572691 data_size=4 offsets_size=0
124406   Binder:8858_1-8871  ( 8858) [002] d..2 82317.714860: sched_waking: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=002
124407   Binder:8858_1-8871  ( 8858) [002] d..3 82317.714867: sched_wakeup: comm=FinalizerDaemon pid=8953 prio=124 target_cpu=002
124408   Binder:8858_1-8871  ( 8858) [002] .... 82317.714870: binder_set_priority: proc=8858 thread=8871 old=124 => new=120 desired=120
124409   Binder:8858_1-8871  ( 8858) [002] d..2 82317.714894: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=FinalizerDaemon next_pid=8953 next_prio=124
124410 FinalizerDaemon-8953  ( 8943) [002] .... 82317.714898: binder_transaction_received: transaction=1572691
124411 FinalizerDaemon-8953  ( 8943) [002] d..2 82317.714987: sched_switch: prev_comm=FinalizerDaemon prev_pid=8953 prev_prio=124 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124412          <idle>-0     (-----) [002] d..1 82317.714996: cpu_idle: state=0 cpu_id=2
124413          system-104   (  104) [000] d..2 82317.715074: sched_switch: prev_comm=system prev_pid=104 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124414          <idle>-0     (-----) [000] d..1 82317.715080: cpu_idle: state=0 cpu_id=0
124415          <idle>-0     (-----) [000] d.s2 82317.715125: sched_waking: comm=rcu_sched pid=8 prio=120 target_cpu=000
124416          <idle>-0     (-----) [000] dns3 82317.715136: sched_wakeup: comm=rcu_sched pid=8 prio=120 target_cpu=000
124417          <idle>-0     (-----) [000] dns3 82317.715139: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124418          <idle>-0     (-----) [000] dns4 82317.715146: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124419          <idle>-0     (-----) [000] .n.1 82317.715152: cpu_idle: state=4294967295 cpu_id=0
124420          <idle>-0     (-----) [000] d..2 82317.715157: 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
124421<...>-8 ( 8) [000] d..2 82317.715164: sched_waking: comm=rcuos/0 pid=11 prio=120 target_cpu=000
124422<...>-8 ( 8) [000] d..3 82317.715173: sched_wakeup: comm=rcuos/0 pid=11 prio=120 target_cpu=000
124423<...>-8 ( 8) [000] d..2 82317.715180: sched_switch: prev_comm=rcu_sched prev_pid=8 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124424  kworker/u16:15-1311  ( 1311) [000] d..2 82317.715311: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcuos/0 next_pid=11 next_prio=120
124425         rcuos/0-11    (   11) [000] d..2 82317.715315: sched_waking: comm=rcuos/1 pid=22 prio=120 target_cpu=000
124426         rcuos/0-11    (   11) [000] d..3 82317.715328: sched_wakeup: comm=rcuos/1 pid=22 prio=120 target_cpu=000
124427         rcuos/0-11    (   11) [000] d..2 82317.715334: 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
124428          <idle>-0     (-----) [001] d.s3 82317.715349: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124429          <idle>-0     (-----) [001] d.s4 82317.715365: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
124430          <idle>-0     (-----) [001] dns4 82317.715368: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
124431          <idle>-0     (-----) [001] .n.1 82317.715373: cpu_idle: state=4294967295 cpu_id=1
124432          <idle>-0     (-----) [001] d..2 82317.715381: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124433         rcuos/1-22    (   22) [000] d..2 82317.715382: 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
124434          <idle>-0     (-----) [000] d..1 82317.715393: cpu_idle: state=0 cpu_id=0
124435  kworker/u16:15-1311  ( 1311) [001] .... 82317.715416: clk_set_rate: l3_cluster0_vote_clk 844800000
124436  kworker/u16:15-1311  ( 1311) [001] .... 82317.715420: clk_set_rate: l3_clk 844800000
124437  kworker/u16:15-1311  ( 1311) [001] d..2 82317.715449: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124438          <idle>-0     (-----) [001] d..1 82317.715458: cpu_idle: state=0 cpu_id=1
124439          <idle>-0     (-----) [003] ...1 82317.715799: cpu_idle: state=4294967295 cpu_id=3
124440          <idle>-0     (-----) [003] d..1 82317.715802: cpu_idle: state=0 cpu_id=3
124441          <idle>-0     (-----) [000] ...1 82317.716506: cpu_idle: state=4294967295 cpu_id=0
124442          <idle>-0     (-----) [000] d..1 82317.716509: cpu_idle: state=0 cpu_id=0
124443          <idle>-0     (-----) [001] ...1 82317.716781: cpu_idle: state=4294967295 cpu_id=1
124444          <idle>-0     (-----) [001] d..1 82317.716784: cpu_idle: state=0 cpu_id=1
124445          <idle>-0     (-----) [003] d.h2 82317.717831: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
124446          <idle>-0     (-----) [003] dnh3 82317.717839: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
124447          <idle>-0     (-----) [003] .n.1 82317.717845: cpu_idle: state=4294967295 cpu_id=3
124448          <idle>-0     (-----) [003] d..2 82317.717852: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
124449 irq/81-114a000.-9677  ( 9677) [003] d..2 82317.717974: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
124450          <idle>-0     (-----) [003] d..1 82317.717982: cpu_idle: state=0 cpu_id=3
124451          <idle>-0     (-----) [001] d.s3 82317.717994: sched_waking: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
124452          <idle>-0     (-----) [001] d.s4 82317.718003: sched_wakeup: comm=irq/81-114a000. pid=9677 prio=49 target_cpu=003
124453          <idle>-0     (-----) [001] ...1 82317.718008: cpu_idle: state=4294967295 cpu_id=1
124454          <idle>-0     (-----) [003] .n.1 82317.718008: cpu_idle: state=4294967295 cpu_id=3
124455          <idle>-0     (-----) [001] d..1 82317.718012: cpu_idle: state=0 cpu_id=1
124456          <idle>-0     (-----) [003] d..2 82317.718014: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/81-114a000. next_pid=9677 next_prio=49
124457 irq/81-114a000.-9677  ( 9677) [003] d..2 82317.718037: sched_switch: prev_comm=irq/81-114a000. prev_pid=9677 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124458          <idle>-0     (-----) [003] d..1 82317.718043: cpu_idle: state=0 cpu_id=3
124459          <idle>-0     (-----) [002] d.s2 82317.718459: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124460          <idle>-0     (-----) [002] dns3 82317.718470: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124461          <idle>-0     (-----) [002] .n.1 82317.718483: cpu_idle: state=4294967295 cpu_id=2
124462          <idle>-0     (-----) [002] d..2 82317.718490: 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
124463     rcu_preempt-7     (    7) [002] d..2 82317.718495: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
124464     rcu_preempt-7     (    7) [002] d..3 82317.718508: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
124465          <idle>-0     (-----) [000] .n.1 82317.718512: cpu_idle: state=4294967295 cpu_id=0
124466          <idle>-0     (-----) [000] d..2 82317.718521: 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
124467         rcuop/0-10    (   10) [000] d..2 82317.718523: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
124468     rcu_preempt-7     (    7) [002] d..2 82317.718525: 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
124469          <idle>-0     (-----) [002] d..1 82317.718532: cpu_idle: state=0 cpu_id=2
124470         rcuop/0-10    (   10) [000] d..3 82317.718541: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
124471          <idle>-0     (-----) [002] .n.1 82317.718546: cpu_idle: state=4294967295 cpu_id=2
124472          <idle>-0     (-----) [002] d..2 82317.718553: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/1 next_pid=21 next_prio=120
124473         rcuop/0-10    (   10) [000] d..2 82317.718554: 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
124474          <idle>-0     (-----) [000] d..1 82317.718561: cpu_idle: state=0 cpu_id=0
124475         rcuop/1-21    (   21) [002] d..2 82317.718583: 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
124476          <idle>-0     (-----) [002] d..1 82317.718589: cpu_idle: state=0 cpu_id=2
124477          <idle>-0     (-----) [003] ...1 82317.719155: cpu_idle: state=4294967295 cpu_id=3
124478          <idle>-0     (-----) [003] d..1 82317.719158: cpu_idle: state=0 cpu_id=3
124479          <idle>-0     (-----) [001] ...1 82317.719267: cpu_idle: state=4294967295 cpu_id=1
124480          <idle>-0     (-----) [001] d..1 82317.719269: cpu_idle: state=0 cpu_id=1
124481          <idle>-0     (-----) [000] ...1 82317.719672: cpu_idle: state=4294967295 cpu_id=0
124482          <idle>-0     (-----) [000] d..1 82317.719675: cpu_idle: state=0 cpu_id=0
124483          <idle>-0     (-----) [003] d.h2 82317.719827: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
124484          <idle>-0     (-----) [003] dnh3 82317.719834: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
124485          <idle>-0     (-----) [003] .n.1 82317.719839: cpu_idle: state=4294967295 cpu_id=3
124486          <idle>-0     (-----) [003] d..2 82317.719846: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
124487 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.719960: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
124488          <idle>-0     (-----) [003] d..1 82317.719967: cpu_idle: state=0 cpu_id=3
124489          <idle>-0     (-----) [001] d.s3 82317.720001: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
124490          <idle>-0     (-----) [001] d.s4 82317.720010: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
124491          <idle>-0     (-----) [001] ...1 82317.720015: cpu_idle: state=4294967295 cpu_id=1
124492          <idle>-0     (-----) [003] .n.1 82317.720015: cpu_idle: state=4294967295 cpu_id=3
124493          <idle>-0     (-----) [001] d..1 82317.720017: cpu_idle: state=0 cpu_id=1
124494          <idle>-0     (-----) [003] d..2 82317.720021: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
124495 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.720041: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124496          <idle>-0     (-----) [003] d..1 82317.720046: cpu_idle: state=0 cpu_id=3
124497          <idle>-0     (-----) [000] d..2 82317.723529: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
124498          <idle>-0     (-----) [000] dn.3 82317.723539: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
124499          <idle>-0     (-----) [000] .n.1 82317.723542: cpu_idle: state=4294967295 cpu_id=0
124500          <idle>-0     (-----) [000] d..2 82317.723550: 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
124501     ksoftirqd/0-3     (    3) [000] d..2 82317.723573: 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
124502          <idle>-0     (-----) [000] d..1 82317.723579: cpu_idle: state=0 cpu_id=0
124503          <idle>-0     (-----) [002] d.s2 82317.725121: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124504          <idle>-0     (-----) [002] dns3 82317.725130: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124505          <idle>-0     (-----) [002] dns3 82317.725134: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
124506          <idle>-0     (-----) [002] dns4 82317.725154: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124507          <idle>-0     (-----) [000] .n.1 82317.725159: cpu_idle: state=4294967295 cpu_id=0
124508          <idle>-0     (-----) [002] .n.1 82317.725161: cpu_idle: state=4294967295 cpu_id=2
124509          <idle>-0     (-----) [000] d..2 82317.725166: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124510          <idle>-0     (-----) [002] d..2 82317.725167: 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
124511     rcu_preempt-7     (    7) [002] d..2 82317.725185: 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
124512          <idle>-0     (-----) [002] d..1 82317.725197: cpu_idle: state=0 cpu_id=2
124513          <idle>-0     (-----) [002] ...1 82317.725206: cpu_idle: state=4294967295 cpu_id=2
124514          <idle>-0     (-----) [002] d..1 82317.725209: cpu_idle: state=0 cpu_id=2
124515  kworker/u16:15-1311  ( 1311) [000] .... 82317.725211: clk_set_rate: l3_cluster0_vote_clk 300000000
124516  kworker/u16:15-1311  ( 1311) [000] .... 82317.725213: clk_set_rate: l3_clk 300000000
124517          <idle>-0     (-----) [002] d.h2 82317.725382: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
124518  kworker/u16:15-1311  ( 1311) [000] d..2 82317.725393: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
124519          <idle>-0     (-----) [002] dnh3 82317.725395: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
124520          <idle>-0     (-----) [002] .n.1 82317.725402: cpu_idle: state=4294967295 cpu_id=2
124521          <idle>-0     (-----) [002] d..2 82317.725407: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
124522          <idle>-0     (-----) [000] d..1 82317.725408: cpu_idle: state=0 cpu_id=0
124523          <idle>-0     (-----) [001] d.s3 82317.725415: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124524          <idle>-0     (-----) [001] d.s4 82317.725425: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
124525        DispSync-8879  ( 8858) [002] d..1 82317.725426: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
124526          <idle>-0     (-----) [001] d.s4 82317.725433: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124527          <idle>-0     (-----) [001] ...1 82317.725439: cpu_idle: state=4294967295 cpu_id=1
124528          <idle>-0     (-----) [000] .n.1 82317.725439: cpu_idle: state=4294967295 cpu_id=0
124529        DispSync-8879  ( 8858) [002] d..2 82317.725441: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
124530          <idle>-0     (-----) [001] d..1 82317.725443: cpu_idle: state=0 cpu_id=1
124531          <idle>-0     (-----) [003] .n.1 82317.725445: cpu_idle: state=4294967295 cpu_id=3
124532          <idle>-0     (-----) [000] d..2 82317.725450: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124533          <idle>-0     (-----) [003] d..2 82317.725453: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
124534        DispSync-8879  ( 8858) [002] d..2 82317.725468: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124535          <idle>-0     (-----) [002] d..1 82317.725477: cpu_idle: state=0 cpu_id=2
124536  kworker/u16:15-1311  ( 1311) [000] d..2 82317.725490: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124537          <idle>-0     (-----) [000] d..1 82317.725498: cpu_idle: state=0 cpu_id=0
124538  appEventThread-8881  ( 8858) [003] d..3 82317.725508: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
124539          <idle>-0     (-----) [004] dnh2 82317.725533: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
124540          <idle>-0     (-----) [004] .n.1 82317.725536: cpu_idle: state=4294967295 cpu_id=4
124541          <idle>-0     (-----) [004] d..2 82317.725542: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
124542  appEventThread-8881  ( 8858) [003] d..2 82317.725561: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124543          <idle>-0     (-----) [003] d..1 82317.725573: cpu_idle: state=0 cpu_id=3
124544 s.nexuslauncher-10023 (10023) [004] .... 82317.725700: binder_transaction: transaction=1572692 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
124545 s.nexuslauncher-10023 (10023) [004] .... 82317.725705: binder_transaction_alloc_buf: transaction=1572692 data_size=80 offsets_size=0
124546 s.nexuslauncher-10023 (10023) [004] d..4 82317.725709: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=002
124547          <idle>-0     (-----) [000] dnh2 82317.725742: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
124548          <idle>-0     (-----) [000] .n.1 82317.725747: cpu_idle: state=4294967295 cpu_id=0
124549          <idle>-0     (-----) [000] d..2 82317.725754: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124550   Binder:8858_1-8871  ( 8858) [000] .... 82317.725762: binder_transaction_received: transaction=1572692
124551   Binder:8858_1-8871  ( 8858) [000] d..1 82317.725800: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
124552 s.nexuslauncher-10023 (10023) [004] d..2 82317.725804: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
124553   Binder:8858_1-8871  ( 8858) [000] d..2 82317.725817: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
124554          <idle>-0     (-----) [004] d..1 82317.725819: cpu_idle: state=0 cpu_id=4
124555          <idle>-0     (-----) [003] .n.1 82317.725822: cpu_idle: state=4294967295 cpu_id=3
124556          <idle>-0     (-----) [003] d..2 82317.725831: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
124557   Binder:8858_1-8871  ( 8858) [000] d..2 82317.725859: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124558  appEventThread-8881  ( 8858) [003] d..2 82317.725864: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124559          <idle>-0     (-----) [003] d..1 82317.725871: cpu_idle: state=0 cpu_id=3
124560          <idle>-0     (-----) [000] d..1 82317.725872: cpu_idle: state=0 cpu_id=0
124561          <idle>-0     (-----) [002] d.s3 82317.728470: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
124562          <idle>-0     (-----) [002] dns4 82317.728498: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124563          <idle>-0     (-----) [002] .n.1 82317.728510: cpu_idle: state=4294967295 cpu_id=2
124564          <idle>-0     (-----) [002] d..2 82317.728518: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124565  kworker/u16:15-1311  ( 1311) [002] d..2 82317.728588: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
124566          <idle>-0     (-----) [002] d..1 82317.728595: cpu_idle: state=0 cpu_id=2
124567          <idle>-0     (-----) [002] d.h2 82317.728679: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124568          <idle>-0     (-----) [002] d.h3 82317.728686: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
124569          <idle>-0     (-----) [002] dnh3 82317.728690: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124570          <idle>-0     (-----) [002] .n.1 82317.728696: cpu_idle: state=4294967295 cpu_id=2
124571          <idle>-0     (-----) [002] d..2 82317.728701: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124572  kworker/u16:15-1311  ( 1311) [002] d..2 82317.728778: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
124573          <idle>-0     (-----) [002] d..1 82317.728784: cpu_idle: state=0 cpu_id=2
124574          <idle>-0     (-----) [002] d.h2 82317.728874: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124575          <idle>-0     (-----) [002] d.h3 82317.728881: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
124576          <idle>-0     (-----) [002] dnh3 82317.728883: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124577          <idle>-0     (-----) [002] .n.1 82317.728889: cpu_idle: state=4294967295 cpu_id=2
124578          <idle>-0     (-----) [002] d..2 82317.728894: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124579  kworker/u16:15-1311  ( 1311) [002] d..2 82317.728954: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
124580          <idle>-0     (-----) [002] d..1 82317.728961: cpu_idle: state=0 cpu_id=2
124581          <idle>-0     (-----) [002] d.h2 82317.729051: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124582          <idle>-0     (-----) [002] d.h3 82317.729057: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
124583          <idle>-0     (-----) [002] dnh3 82317.729059: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124584          <idle>-0     (-----) [002] .n.1 82317.729065: cpu_idle: state=4294967295 cpu_id=2
124585          <idle>-0     (-----) [002] d..2 82317.729070: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124586  kworker/u16:15-1311  ( 1311) [002] d..2 82317.729087: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
124587          <idle>-0     (-----) [002] d..1 82317.729092: cpu_idle: state=0 cpu_id=2
124588          <idle>-0     (-----) [002] d.h2 82317.729184: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124589          <idle>-0     (-----) [002] d.h3 82317.729190: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
124590          <idle>-0     (-----) [002] dnh3 82317.729193: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124591          <idle>-0     (-----) [002] .n.1 82317.729198: cpu_idle: state=4294967295 cpu_id=2
124592          <idle>-0     (-----) [002] d..2 82317.729203: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124593  kworker/u16:15-1311  ( 1311) [002] d..2 82317.729220: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
124594          <idle>-0     (-----) [002] d..1 82317.729225: cpu_idle: state=0 cpu_id=2
124595          <idle>-0     (-----) [002] d.h2 82317.729318: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124596          <idle>-0     (-----) [002] d.h3 82317.729324: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
124597          <idle>-0     (-----) [002] dnh3 82317.729327: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124598          <idle>-0     (-----) [002] .n.1 82317.729331: cpu_idle: state=4294967295 cpu_id=2
124599          <idle>-0     (-----) [002] d..2 82317.729337: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124600  kworker/u16:15-1311  ( 1311) [002] d..2 82317.729491: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
124601          <idle>-0     (-----) [002] d..1 82317.729499: cpu_idle: state=0 cpu_id=2
124602          <idle>-0     (-----) [001] d.s3 82317.729515: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124603          <idle>-0     (-----) [001] d.s4 82317.729524: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
124604          <idle>-0     (-----) [001] d.s4 82317.729530: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124605          <idle>-0     (-----) [002] .n.1 82317.729537: cpu_idle: state=4294967295 cpu_id=2
124606          <idle>-0     (-----) [001] ...1 82317.729537: cpu_idle: state=4294967295 cpu_id=1
124607          <idle>-0     (-----) [001] d..1 82317.729540: cpu_idle: state=0 cpu_id=1
124608          <idle>-0     (-----) [002] d..2 82317.729545: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124609  kworker/u16:15-1311  ( 1311) [002] d..2 82317.729594: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
124610          <idle>-0     (-----) [002] d..1 82317.729599: cpu_idle: state=0 cpu_id=2
124611          <idle>-0     (-----) [002] d.h2 82317.729691: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124612          <idle>-0     (-----) [002] d.h3 82317.729699: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
124613          <idle>-0     (-----) [002] dnh3 82317.729702: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124614          <idle>-0     (-----) [002] .n.1 82317.729708: cpu_idle: state=4294967295 cpu_id=2
124615          <idle>-0     (-----) [002] d..2 82317.729714: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124616  kworker/u16:15-1311  ( 1311) [002] d..2 82317.729782: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
124617          <idle>-0     (-----) [002] d..1 82317.729787: cpu_idle: state=0 cpu_id=2
124618          <idle>-0     (-----) [002] d.h2 82317.729878: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124619          <idle>-0     (-----) [002] d.h3 82317.729884: sched_blocked_reason: pid=1311 iowait=0 caller=a6xx_rpmh_gpu_pwrctrl+0x13d4/0x3168
124620          <idle>-0     (-----) [002] dnh3 82317.729888: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124621          <idle>-0     (-----) [002] .n.1 82317.729893: cpu_idle: state=4294967295 cpu_id=2
124622          <idle>-0     (-----) [002] d..2 82317.729898: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124623  kworker/u16:15-1311  ( 1311) [002] d..1 82317.729911: clk_disable: gpu_cc_cx_gmu_clk
124624  kworker/u16:15-1311  ( 1311) [002] d..1 82317.729929: clk_disable: gpu_cc_gmu_clk_src
124625  kworker/u16:15-1311  ( 1311) [002] d..1 82317.729955: clk_disable: gcc_gpu_gpll0_div_clk_src
124626  kworker/u16:15-1311  ( 1311) [002] d..1 82317.730465: clk_disable: gpll0_out_even
124627  kworker/u16:15-1311  ( 1311) [002] d..1 82317.730496: clk_disable: gpu_cc_cxo_clk
124628  kworker/u16:15-1311  ( 1311) [002] d..1 82317.730507: clk_disable: gcc_ddrss_gpu_axi_clk
124629  kworker/u16:15-1311  ( 1311) [002] d..1 82317.730527: clk_disable: gcc_gpu_memnoc_gfx_clk
124630  kworker/u16:15-1311  ( 1311) [002] d..2 82317.730676: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
124631  kworker/u16:15-1311  ( 1311) [002] d..3 82317.730706: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
124632          <idle>-0     (-----) [000] .n.1 82317.730712: cpu_idle: state=4294967295 cpu_id=0
124633          <idle>-0     (-----) [000] d..2 82317.730723: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
124634          <idle>-0     (-----) [003] ...1 82317.730736: cpu_idle: state=4294967295 cpu_id=3
124635          <idle>-0     (-----) [003] d..1 82317.730739: cpu_idle: state=2 cpu_id=3
124636          <idle>-0     (-----) [005] ...1 82317.730741: cpu_idle: state=4294967295 cpu_id=5
124637          <idle>-0     (-----) [004] ...1 82317.730741: cpu_idle: state=4294967295 cpu_id=4
124638          <idle>-0     (-----) [006] ...1 82317.730744: cpu_idle: state=4294967295 cpu_id=6
124639          <idle>-0     (-----) [005] d..1 82317.730746: cpu_idle: state=2 cpu_id=5
124640          <idle>-0     (-----) [004] d..1 82317.730746: cpu_idle: state=2 cpu_id=4
124641          <idle>-0     (-----) [007] ...1 82317.730747: cpu_idle: state=4294967295 cpu_id=7
124642          <idle>-0     (-----) [006] d..1 82317.730750: cpu_idle: state=2 cpu_id=6
124643          <idle>-0     (-----) [007] d..1 82317.730752: cpu_idle: state=2 cpu_id=7
124644  kworker/u16:15-1311  ( 1311) [002] d..2 82317.730763: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124645          <idle>-0     (-----) [002] d..1 82317.730771: cpu_idle: state=0 cpu_id=2
124646  kworker/u16:13-1147  ( 1147) [000] d..2 82317.730883: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124647  kworker/u16:13-1147  ( 1147) [000] d..3 82317.730900: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124648          <idle>-0     (-----) [002] .n.1 82317.730905: cpu_idle: state=4294967295 cpu_id=2
124649          <idle>-0     (-----) [002] d..2 82317.730914: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124650  kworker/u16:13-1147  ( 1147) [000] d..2 82317.730925: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124651  kworker/u16:15-1311  ( 1311) [002] d..2 82317.730928: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124652          <idle>-0     (-----) [002] d..1 82317.730932: cpu_idle: state=0 cpu_id=2
124653          <idle>-0     (-----) [000] d..1 82317.730935: cpu_idle: state=0 cpu_id=0
124654          <idle>-0     (-----) [002] d.H3 82317.731858: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
124655          <idle>-0     (-----) [002] dnH4 82317.731870: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
124656          <idle>-0     (-----) [002] dns2 82317.731876: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124657          <idle>-0     (-----) [002] dns3 82317.731889: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124658          <idle>-0     (-----) [002] .n.1 82317.731895: cpu_idle: state=4294967295 cpu_id=2
124659          <idle>-0     (-----) [002] d..2 82317.731901: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
124660         sugov:0-576   (  576) [002] .... 82317.731924: clk_set_rate: pwrcl_clk 1516800000
124661         sugov:0-576   (  576) [002] .... 82317.731984: clk_set_rate: cpu3_pwrcl_clk 1689600000
124662         sugov:0-576   (  576) [002] .... 82317.731994: clk_set_rate: cpu2_pwrcl_clk 1689600000
124663         sugov:0-576   (  576) [002] .... 82317.732001: clk_set_rate: cpu1_pwrcl_clk 1689600000
124664         sugov:0-576   (  576) [002] .... 82317.732008: clk_set_rate: cpu0_pwrcl_clk 1516800000
124665          <idle>-0     (-----) [001] ...1 82317.732013: cpu_idle: state=4294967295 cpu_id=1
124666          <idle>-0     (-----) [001] d..1 82317.732017: cpu_idle: state=0 cpu_id=1
124667         sugov:0-576   (  576) [002] .... 82317.732124: cpu_frequency: state=1516800 cpu_id=0
124668         sugov:0-576   (  576) [002] .... 82317.732137: cpu_frequency: state=1516800 cpu_id=1
124669         sugov:0-576   (  576) [002] .... 82317.732140: cpu_frequency: state=1516800 cpu_id=2
124670         sugov:0-576   (  576) [002] .... 82317.732142: cpu_frequency: state=1516800 cpu_id=3
124671         sugov:0-576   (  576) [002] d..2 82317.732159: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
124672     rcu_preempt-7     (    7) [002] d..2 82317.732166: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
124673     rcu_preempt-7     (    7) [002] d..3 82317.732197: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
124674     rcu_preempt-7     (    7) [002] d..2 82317.732209: 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
124675         rcuop/2-29    (   29) [002] d..2 82317.732216: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
124676         rcuop/2-29    (   29) [002] d..3 82317.732229: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
124677         rcuop/2-29    (   29) [002] d..2 82317.732236: 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
124678         rcuop/3-37    (   37) [002] d..2 82317.732265: 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
124679          <idle>-0     (-----) [002] d..1 82317.732280: cpu_idle: state=0 cpu_id=2
124680          <idle>-0     (-----) [002] d.s2 82317.738465: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124681          <idle>-0     (-----) [002] dns3 82317.738476: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124682          <idle>-0     (-----) [002] dns3 82317.738481: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124683          <idle>-0     (-----) [002] dns4 82317.738490: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124684          <idle>-0     (-----) [002] .n.1 82317.738505: cpu_idle: state=4294967295 cpu_id=2
124685          <idle>-0     (-----) [002] d..2 82317.738517: 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
124686     rcu_preempt-7     (    7) [002] d..2 82317.738525: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
124687     rcu_preempt-7     (    7) [002] d..3 82317.738550: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
124688     rcu_preempt-7     (    7) [002] d..2 82317.738561: 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
124689         rcuop/0-10    (   10) [002] d..2 82317.738564: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
124690         rcuop/0-10    (   10) [002] d..3 82317.738574: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
124691         rcuop/0-10    (   10) [002] d..2 82317.738580: 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
124692         rcuop/1-21    (   21) [002] d..2 82317.738593: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124693  kworker/u16:15-1311  ( 1311) [002] d..2 82317.738764: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
124694          <idle>-0     (-----) [002] d..1 82317.738778: cpu_idle: state=0 cpu_id=2
124695          <idle>-0     (-----) [001] d.s3 82317.738784: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124696          <idle>-0     (-----) [001] d.s4 82317.738793: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
124697          <idle>-0     (-----) [001] d.s4 82317.738799: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124698          <idle>-0     (-----) [002] .n.1 82317.738805: cpu_idle: state=4294967295 cpu_id=2
124699          <idle>-0     (-----) [001] ...1 82317.738806: cpu_idle: state=4294967295 cpu_id=1
124700          <idle>-0     (-----) [001] d..1 82317.738810: cpu_idle: state=0 cpu_id=1
124701          <idle>-0     (-----) [002] d..2 82317.738816: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124702  kworker/u16:15-1311  ( 1311) [002] .... 82317.738854: clk_set_rate: l3_cluster0_vote_clk 403200000
124703  kworker/u16:15-1311  ( 1311) [002] .... 82317.738858: clk_set_rate: l3_clk 403200000
124704  kworker/u16:15-1311  ( 1311) [002] d..2 82317.738895: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124705          <idle>-0     (-----) [002] d..1 82317.738906: cpu_idle: state=0 cpu_id=2
124706          <idle>-0     (-----) [000] ...1 82317.739996: cpu_idle: state=4294967295 cpu_id=0
124707          <idle>-0     (-----) [000] d..1 82317.740000: cpu_idle: state=0 cpu_id=0
124708          <idle>-0     (-----) [002] d.h2 82317.741866: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
124709          <idle>-0     (-----) [002] dnh3 82317.741878: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
124710          <idle>-0     (-----) [002] .n.1 82317.741884: cpu_idle: state=4294967295 cpu_id=2
124711          <idle>-0     (-----) [002] d..2 82317.741893: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
124712        DispSync-8879  ( 8858) [002] d..1 82317.741905: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
124713        DispSync-8879  ( 8858) [002] d..2 82317.741916: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
124714        DispSync-8879  ( 8858) [002] d..2 82317.741942: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124715          <idle>-0     (-----) [002] d..2 82317.741947: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
124716          <idle>-0     (-----) [002] dn.3 82317.741957: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
124717          <idle>-0     (-----) [002] d..2 82317.741964: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
124718     ksoftirqd/2-26    (   26) [002] d..2 82317.741982: 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
124719          <idle>-0     (-----) [002] d..1 82317.741989: cpu_idle: state=0 cpu_id=2
124720          <idle>-0     (-----) [003] .n.1 82317.742094: cpu_idle: state=4294967295 cpu_id=3
124721          <idle>-0     (-----) [003] d..2 82317.742112: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
124722  appEventThread-8881  ( 8858) [003] d..3 82317.742153: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
124723  appEventThread-8881  ( 8858) [003] d..2 82317.742205: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124724          <idle>-0     (-----) [003] d..1 82317.742218: cpu_idle: state=2 cpu_id=3
124725          <idle>-0     (-----) [004] dnh2 82317.742928: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
124726          <idle>-0     (-----) [004] .n.1 82317.742935: cpu_idle: state=4294967295 cpu_id=4
124727          <idle>-0     (-----) [004] d..2 82317.742947: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
124728 s.nexuslauncher-10023 (10023) [004] .... 82317.743148: binder_transaction: transaction=1572693 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
124729 s.nexuslauncher-10023 (10023) [004] .... 82317.743153: binder_transaction_alloc_buf: transaction=1572693 data_size=80 offsets_size=0
124730 s.nexuslauncher-10023 (10023) [004] d..4 82317.743157: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
124731          <idle>-0     (-----) [000] dnh2 82317.743181: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
124732          <idle>-0     (-----) [000] .n.1 82317.743185: cpu_idle: state=4294967295 cpu_id=0
124733          <idle>-0     (-----) [000] d..2 82317.743194: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124734   Binder:8858_1-8871  ( 8858) [000] .... 82317.743200: binder_transaction_received: transaction=1572693
124735   Binder:8858_1-8871  ( 8858) [000] d..1 82317.743224: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
124736   Binder:8858_1-8871  ( 8858) [000] d..2 82317.743238: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
124737 s.nexuslauncher-10023 (10023) [004] d..2 82317.743244: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
124738          <idle>-0     (-----) [004] d..1 82317.743258: cpu_idle: state=2 cpu_id=4
124739   Binder:8858_1-8871  ( 8858) [000] d..2 82317.743273: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124740          <idle>-0     (-----) [000] d..1 82317.743284: cpu_idle: state=0 cpu_id=0
124741          <idle>-0     (-----) [003] .n.1 82317.743369: cpu_idle: state=4294967295 cpu_id=3
124742          <idle>-0     (-----) [003] d..2 82317.743385: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
124743  appEventThread-8881  ( 8858) [003] d..2 82317.743436: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124744          <idle>-0     (-----) [003] d..1 82317.743449: cpu_idle: state=0 cpu_id=3
124745          <idle>-0     (-----) [002] d.s2 82317.745126: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124746          <idle>-0     (-----) [001] d.s3 82317.745131: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
124747          <idle>-0     (-----) [002] dns3 82317.745139: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124748          <idle>-0     (-----) [002] .n.1 82317.745147: cpu_idle: state=4294967295 cpu_id=2
124749          <idle>-0     (-----) [001] d.s4 82317.745149: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
124750          <idle>-0     (-----) [002] d..2 82317.745153: 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
124751          <idle>-0     (-----) [003] .n.1 82317.745155: cpu_idle: state=4294967295 cpu_id=3
124752          <idle>-0     (-----) [003] d..2 82317.745165: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
124753          <idle>-0     (-----) [001] ...1 82317.745168: cpu_idle: state=4294967295 cpu_id=1
124754          <idle>-0     (-----) [001] d..1 82317.745173: cpu_idle: state=0 cpu_id=1
124755     rcu_preempt-7     (    7) [002] d..2 82317.745174: 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
124756          <idle>-0     (-----) [002] d..1 82317.745184: cpu_idle: state=2 cpu_id=2
124757 crtc_commit:111-321   (  321) [003] d..2 82317.745230: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
124758          <idle>-0     (-----) [003] d..1 82317.745238: cpu_idle: state=0 cpu_id=3
124759          <idle>-0     (-----) [003] d..2 82317.751245: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
124760          <idle>-0     (-----) [003] dn.3 82317.751258: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
124761          <idle>-0     (-----) [003] .n.1 82317.751261: cpu_idle: state=4294967295 cpu_id=3
124762          <idle>-0     (-----) [003] d..2 82317.751270: 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
124763     ksoftirqd/3-34    (   34) [003] d.s2 82317.751281: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124764     ksoftirqd/3-34    (   34) [003] d.s3 82317.751308: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124765     ksoftirqd/3-34    (   34) [003] d..2 82317.751319: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124766  kworker/u16:15-1311  ( 1311) [003] .... 82317.751338: clk_set_rate: l3_cluster0_vote_clk 300000000
124767  kworker/u16:15-1311  ( 1311) [003] .... 82317.751343: clk_set_rate: l3_clk 300000000
124768  kworker/u16:15-1311  ( 1311) [003] d..2 82317.751523: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
124769          <idle>-0     (-----) [003] d..1 82317.751538: cpu_idle: state=2 cpu_id=3
124770          <idle>-0     (-----) [001] d.s3 82317.751544: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124771          <idle>-0     (-----) [001] d.s4 82317.751553: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
124772          <idle>-0     (-----) [001] d.s4 82317.751560: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124773          <idle>-0     (-----) [001] ...1 82317.751567: cpu_idle: state=4294967295 cpu_id=1
124774          <idle>-0     (-----) [001] d..1 82317.751571: cpu_idle: state=0 cpu_id=1
124775          <idle>-0     (-----) [003] .n.1 82317.751755: cpu_idle: state=4294967295 cpu_id=3
124776          <idle>-0     (-----) [003] d..2 82317.751782: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124777  kworker/u16:15-1311  ( 1311) [003] d.H4 82317.751868: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
124778  kworker/u16:15-1311  ( 1311) [003] d.H5 82317.751883: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
124779  kworker/u16:15-1311  ( 1311) [003] d..2 82317.751949: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124780          <idle>-0     (-----) [003] d..1 82317.751966: cpu_idle: state=0 cpu_id=3
124781          <idle>-0     (-----) [002] dns2 82317.751975: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124782          <idle>-0     (-----) [002] dns3 82317.751999: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
124783          <idle>-0     (-----) [002] .n.1 82317.752008: cpu_idle: state=4294967295 cpu_id=2
124784          <idle>-0     (-----) [002] d..2 82317.752021: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
124785         sugov:0-576   (  576) [002] .... 82317.752044: clk_set_rate: pwrcl_clk 652800000
124786         sugov:0-576   (  576) [002] .... 82317.752053: clk_set_rate: cpu3_pwrcl_clk 1516800000
124787         sugov:0-576   (  576) [002] .... 82317.752062: clk_set_rate: cpu2_pwrcl_clk 1516800000
124788         sugov:0-576   (  576) [002] .... 82317.752069: clk_set_rate: cpu1_pwrcl_clk 1516800000
124789         sugov:0-576   (  576) [002] .... 82317.752076: clk_set_rate: cpu0_pwrcl_clk 652800000
124790         sugov:0-576   (  576) [002] .... 82317.752193: cpu_frequency: state=652800 cpu_id=0
124791         sugov:0-576   (  576) [002] .... 82317.752212: cpu_frequency: state=652800 cpu_id=1
124792         sugov:0-576   (  576) [002] .... 82317.752218: cpu_frequency: state=652800 cpu_id=2
124793         sugov:0-576   (  576) [002] .... 82317.752223: cpu_frequency: state=652800 cpu_id=3
124794         sugov:0-576   (  576) [002] d..2 82317.752249: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
124795     rcu_preempt-7     (    7) [002] d..2 82317.752261: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
124796     rcu_preempt-7     (    7) [002] d..3 82317.752286: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
124797     rcu_preempt-7     (    7) [002] d..2 82317.752302: 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
124798         rcuop/2-29    (   29) [002] d..2 82317.752307: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
124799         rcuop/2-29    (   29) [002] d..3 82317.752325: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
124800         rcuop/2-29    (   29) [002] d..2 82317.752339: 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
124801         rcuop/3-37    (   37) [002] d..2 82317.752377: 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
124802          <idle>-0     (-----) [002] d..1 82317.752399: cpu_idle: state=0 cpu_id=2
124803          <idle>-0     (-----) [000] d.h5 82317.756474: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
124804          <idle>-0     (-----) [000] d.h6 82317.756500: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
124805          <idle>-0     (-----) [003] .n.1 82317.756509: cpu_idle: state=4294967295 cpu_id=3
124806          <idle>-0     (-----) [000] d..2 82317.756517: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
124807          <idle>-0     (-----) [003] d..2 82317.756526: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
124808          <idle>-0     (-----) [000] dn.3 82317.756532: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
124809          <idle>-0     (-----) [000] .n.1 82317.756536: cpu_idle: state=4294967295 cpu_id=0
124810          <idle>-0     (-----) [000] d..2 82317.756556: 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
124811          <idle>-0     (-----) [001] ...1 82317.756574: cpu_idle: state=4294967295 cpu_id=1
124812          <idle>-0     (-----) [001] d..1 82317.756581: cpu_idle: state=2 cpu_id=1
124813     ksoftirqd/0-3     (    3) [000] d..2 82317.756601: 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
124814          <idle>-0     (-----) [000] d..1 82317.756617: cpu_idle: state=2 cpu_id=0
124815 crtc_commit:111-321   (  321) [003] d..1 82317.756631: clk_disable: disp_cc_mdss_byte0_intf_clk
124816 crtc_commit:111-321   (  321) [003] d..1 82317.756650: clk_disable: disp_cc_mdss_byte0_div_clk_src
124817 crtc_commit:111-321   (  321) [003] d..1 82317.756654: clk_disable: disp_cc_mdss_pclk0_clk
124818 crtc_commit:111-321   (  321) [003] d..1 82317.756666: clk_disable: disp_cc_mdss_pclk0_clk_src
124819 crtc_commit:111-321   (  321) [003] d..1 82317.756669: clk_disable: dsi0_phy_pll_out_dsiclk
124820 crtc_commit:111-321   (  321) [003] d..1 82317.756672: clk_disable: dsi0pll_pclk_src
124821 crtc_commit:111-321   (  321) [003] d..1 82317.756674: clk_disable: dsi0pll_pclk_src_mux
124822 crtc_commit:111-321   (  321) [003] d..1 82317.756677: clk_disable: dsi0pll_post_bit_div
124823 crtc_commit:111-321   (  321) [003] d..1 82317.756680: clk_disable: disp_cc_mdss_byte0_clk
124824 crtc_commit:111-321   (  321) [003] d..1 82317.756693: clk_disable: disp_cc_mdss_byte0_clk_src
124825 crtc_commit:111-321   (  321) [003] d..1 82317.756695: clk_disable: dsi0_phy_pll_out_byteclk
124826 crtc_commit:111-321   (  321) [003] d..1 82317.756697: clk_disable: dsi0pll_byteclk_src
124827 crtc_commit:111-321   (  321) [003] d..1 82317.756699: clk_disable: dsi0pll_bitclk_src
124828 crtc_commit:111-321   (  321) [003] d..1 82317.756701: clk_disable: dsi0pll_pll_out_div
124829 crtc_commit:111-321   (  321) [003] d..1 82317.756703: clk_disable: dsi0pll_vco_clk
124830 crtc_commit:111-321   (  321) [003] d..1 82317.756754: clk_disable: disp_cc_mdss_esc0_clk
124831 crtc_commit:111-321   (  321) [003] d..1 82317.756768: clk_disable: disp_cc_mdss_esc0_clk_src
124832 crtc_commit:111-321   (  321) [003] d..1 82317.756868: clk_disable: disp_cc_mdss_vsync_clk
124833 crtc_commit:111-321   (  321) [003] d..1 82317.756885: clk_disable: disp_cc_mdss_mdp_clk
124834 crtc_commit:111-321   (  321) [003] d..1 82317.756898: clk_disable: disp_cc_mdss_mdp_clk_src
124835 crtc_commit:111-321   (  321) [003] d..1 82317.756934: clk_disable: gcc_disp_gpll0_clk_src
124836 crtc_commit:111-321   (  321) [003] d..1 82317.757466: clk_disable: disp_cc_mdss_axi_clk
124837 crtc_commit:111-321   (  321) [003] d..1 82317.757482: clk_disable: disp_cc_mdss_ahb_clk
124838 crtc_commit:111-321   (  321) [003] d..1 82317.757498: clk_disable: gcc_disp_axi_clk
124839 crtc_commit:111-321   (  321) [003] d..2 82317.757597: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
124840          <idle>-0     (-----) [003] d..1 82317.757615: cpu_idle: state=0 cpu_id=3
124841          <idle>-0     (-----) [003] d.h2 82317.757673: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
124842          <idle>-0     (-----) [003] dnh3 82317.757689: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
124843          <idle>-0     (-----) [003] .n.1 82317.757700: cpu_idle: state=4294967295 cpu_id=3
124844          <idle>-0     (-----) [003] d..2 82317.757713: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
124845 crtc_commit:111-321   (  321) [003] d..1 82317.757734: clk_disable: disp_cc_mdss_rscc_ahb_clk
124846 crtc_commit:111-321   (  321) [003] d..1 82317.757751: clk_disable: disp_cc_mdss_rscc_vsync_clk
124847 crtc_commit:111-321   (  321) [003] d..1 82317.757762: clk_disable: disp_cc_mdss_vsync_clk_src
124848 crtc_commit:111-321   (  321) [003] d..2 82317.757979: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
124849          <idle>-0     (-----) [003] d..1 82317.758002: cpu_idle: state=0 cpu_id=3
124850          <idle>-0     (-----) [001] d.s3 82317.758178: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
124851          <idle>-0     (-----) [001] d.s4 82317.758211: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
124852          <idle>-0     (-----) [003] .n.1 82317.758219: cpu_idle: state=4294967295 cpu_id=3
124853          <idle>-0     (-----) [001] ...1 82317.758227: cpu_idle: state=4294967295 cpu_id=1
124854          <idle>-0     (-----) [003] d..2 82317.758233: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
124855          <idle>-0     (-----) [001] d..1 82317.758246: cpu_idle: state=0 cpu_id=1
124856          <idle>-0     (-----) [002] d.h2 82317.758328: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
124857          <idle>-0     (-----) [002] dnh3 82317.758350: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
124858          <idle>-0     (-----) [002] .n.1 82317.758361: cpu_idle: state=4294967295 cpu_id=2
124859          <idle>-0     (-----) [002] d..2 82317.758377: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
124860        DispSync-8879  ( 8858) [002] d..1 82317.758405: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
124861        DispSync-8879  ( 8858) [002] d..2 82317.758436: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
124862          <idle>-0     (-----) [001] .n.1 82317.758444: cpu_idle: state=4294967295 cpu_id=1
124863 crtc_commit:111-321   (  321) [003] d..2 82317.758473: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
124864        DispSync-8879  ( 8858) [002] d.s3 82317.758485: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124865          <idle>-0     (-----) [001] dns2 82317.758487: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
124866          <idle>-0     (-----) [001] dns3 82317.758508: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
124867        DispSync-8879  ( 8858) [002] d.s4 82317.758514: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124868          <idle>-0     (-----) [001] d..2 82317.758532: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
124869          <idle>-0     (-----) [003] d..2 82317.758559: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124870        DispSync-8879  ( 8858) [002] d..2 82317.758585: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124871          <idle>-0     (-----) [002] d..1 82317.758607: cpu_idle: state=2 cpu_id=2
124872  appEventThread-8881  ( 8858) [001] d..3 82317.758623: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
124873  appEventThread-8881  ( 8858) [001] d..2 82317.758695: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
124874  kworker/u16:15-1311  ( 1311) [003] d..2 82317.758698: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124875     ksoftirqd/1-18    (   18) [001] d.s2 82317.758715: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
124876          <idle>-0     (-----) [003] d..1 82317.758720: cpu_idle: state=2 cpu_id=3
124877     ksoftirqd/1-18    (   18) [001] d.s3 82317.758738: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
124878     ksoftirqd/1-18    (   18) [001] d..2 82317.758774: 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
124879          <idle>-0     (-----) [001] d..1 82317.758802: cpu_idle: state=0 cpu_id=1
124880          <idle>-0     (-----) [003] .n.1 82317.758983: cpu_idle: state=4294967295 cpu_id=3
124881          <idle>-0     (-----) [003] d..2 82317.759011: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
124882 crtc_commit:111-321   (  321) [003] d..3 82317.759053: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
124883 crtc_commit:111-321   (  321) [003] d..4 82317.759093: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
124884 crtc_commit:111-321   (  321) [003] d..2 82317.759118: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
124885 SDM_EventThread-644   (  619) [003] d..2 82317.759242: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124886          <idle>-0     (-----) [003] d..1 82317.759270: cpu_idle: state=0 cpu_id=3
124887          <idle>-0     (-----) [004] dnh2 82317.759420: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
124888          <idle>-0     (-----) [004] .n.1 82317.759429: cpu_idle: state=4294967295 cpu_id=4
124889          <idle>-0     (-----) [004] d..2 82317.759442: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
124890 s.nexuslauncher-10023 (10023) [004] .... 82317.759623: binder_transaction: transaction=1572694 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
124891 s.nexuslauncher-10023 (10023) [004] .... 82317.759627: binder_transaction_alloc_buf: transaction=1572694 data_size=80 offsets_size=0
124892 s.nexuslauncher-10023 (10023) [004] d..4 82317.759632: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
124893 s.nexuslauncher-10023 (10023) [004] d..2 82317.759726: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
124894          <idle>-0     (-----) [004] d..1 82317.759742: cpu_idle: state=2 cpu_id=4
124895          <idle>-0     (-----) [000] dnh2 82317.759842: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
124896          <idle>-0     (-----) [000] .n.1 82317.759856: cpu_idle: state=4294967295 cpu_id=0
124897          <idle>-0     (-----) [000] d..2 82317.759879: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124898   Binder:8858_1-8871  ( 8858) [000] .... 82317.759890: binder_transaction_received: transaction=1572694
124899   Binder:8858_1-8871  ( 8858) [000] d..1 82317.759939: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
124900   Binder:8858_1-8871  ( 8858) [000] d..2 82317.759965: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
124901          <idle>-0     (-----) [001] .n.1 82317.759974: cpu_idle: state=4294967295 cpu_id=1
124902          <idle>-0     (-----) [001] d..2 82317.759989: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
124903   Binder:8858_1-8871  ( 8858) [000] d..2 82317.760028: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124904  appEventThread-8881  ( 8858) [001] d..2 82317.760049: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124905          <idle>-0     (-----) [000] d..1 82317.760052: cpu_idle: state=0 cpu_id=0
124906          <idle>-0     (-----) [001] d..1 82317.760068: cpu_idle: state=0 cpu_id=1
124907          <idle>-0     (-----) [003] d..2 82317.765284: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
124908          <idle>-0     (-----) [003] dn.3 82317.765301: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
124909          <idle>-0     (-----) [003] .n.1 82317.765307: cpu_idle: state=4294967295 cpu_id=3
124910          <idle>-0     (-----) [003] d..2 82317.765327: 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
124911          <idle>-0     (-----) [006] d.h2 82317.765337: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=006
124912     ksoftirqd/3-34    (   34) [003] d.s2 82317.765338: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124913          <idle>-0     (-----) [006] dnh3 82317.765361: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=006
124914     ksoftirqd/3-34    (   34) [003] d.s3 82317.765363: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124915     ksoftirqd/3-34    (   34) [003] d.s2 82317.765372: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
124916          <idle>-0     (-----) [006] .n.1 82317.765378: cpu_idle: state=4294967295 cpu_id=6
124917     ksoftirqd/3-34    (   34) [003] d.s3 82317.765389: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
124918          <idle>-0     (-----) [006] d..2 82317.765393: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
124919     ksoftirqd/3-34    (   34) [003] d..2 82317.765406: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
124920     kworker/3:1-25210 (25210) [003] d..2 82317.765448: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124921 TaskSnapshotPer-9077  ( 8943) [006] d..2 82317.765520: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
124922          <idle>-0     (-----) [006] d..1 82317.765534: cpu_idle: state=2 cpu_id=6
124923  kworker/u16:15-1311  ( 1311) [003] d..2 82317.765725: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
124924          <idle>-0     (-----) [003] d..1 82317.765747: cpu_idle: state=2 cpu_id=3
124925          <idle>-0     (-----) [001] d.s3 82317.765749: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124926          <idle>-0     (-----) [001] d.s4 82317.765766: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
124927          <idle>-0     (-----) [001] d.s4 82317.765777: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124928          <idle>-0     (-----) [001] ...1 82317.765792: cpu_idle: state=4294967295 cpu_id=1
124929          <idle>-0     (-----) [001] d..1 82317.765800: cpu_idle: state=0 cpu_id=1
124930          <idle>-0     (-----) [003] .n.1 82317.766005: cpu_idle: state=4294967295 cpu_id=3
124931          <idle>-0     (-----) [003] d..2 82317.766036: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124932  kworker/u16:15-1311  ( 1311) [003] d..2 82317.766096: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124933          <idle>-0     (-----) [003] d..1 82317.766119: cpu_idle: state=0 cpu_id=3
124934          <idle>-0     (-----) [000] ...1 82317.766185: cpu_idle: state=4294967295 cpu_id=0
124935          <idle>-0     (-----) [000] d..1 82317.766195: cpu_idle: state=0 cpu_id=0
124936          <idle>-0     (-----) [003] d..2 82317.772141: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
124937          <idle>-0     (-----) [003] dn.3 82317.772159: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
124938          <idle>-0     (-----) [000] ...1 82317.772229: cpu_idle: state=4294967295 cpu_id=0
124939          <idle>-0     (-----) [000] d..1 82317.772235: cpu_idle: state=2 cpu_id=0
124940          <idle>-0     (-----) [003] dns3 82317.772242: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124941          <idle>-0     (-----) [003] dns4 82317.772266: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124942          <idle>-0     (-----) [003] .n.1 82317.772279: cpu_idle: state=4294967295 cpu_id=3
124943          <idle>-0     (-----) [003] d..2 82317.772298: 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
124944     ksoftirqd/3-34    (   34) [003] d..2 82317.772314: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124945  kworker/u16:15-1311  ( 1311) [003] d..2 82317.772574: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
124946          <idle>-0     (-----) [001] d.s3 82317.772582: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124947          <idle>-0     (-----) [001] d.s4 82317.772595: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
124948          <idle>-0     (-----) [003] d..1 82317.772596: cpu_idle: state=2 cpu_id=3
124949          <idle>-0     (-----) [001] d.s4 82317.772605: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124950          <idle>-0     (-----) [001] ...1 82317.772617: cpu_idle: state=4294967295 cpu_id=1
124951          <idle>-0     (-----) [003] .n.1 82317.772626: cpu_idle: state=4294967295 cpu_id=3
124952          <idle>-0     (-----) [001] d..1 82317.772628: cpu_idle: state=0 cpu_id=1
124953          <idle>-0     (-----) [003] d..2 82317.772643: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124954  kworker/u16:15-1311  ( 1311) [003] d..2 82317.772684: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
124955          <idle>-0     (-----) [003] d..1 82317.772703: cpu_idle: state=0 cpu_id=3
124956          <idle>-0     (-----) [002] d.h2 82317.775105: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
124957          <idle>-0     (-----) [002] dnh3 82317.775138: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
124958          <idle>-0     (-----) [002] .n.1 82317.775153: cpu_idle: state=4294967295 cpu_id=2
124959          <idle>-0     (-----) [002] d..2 82317.775178: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
124960        DispSync-8879  ( 8858) [002] d..1 82317.775207: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
124961        DispSync-8879  ( 8858) [002] d..2 82317.775227: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
124962          <idle>-0     (-----) [001] .n.1 82317.775235: cpu_idle: state=4294967295 cpu_id=1
124963          <idle>-0     (-----) [001] d..2 82317.775252: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
124964        DispSync-8879  ( 8858) [002] d..2 82317.775288: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124965          <idle>-0     (-----) [002] d..2 82317.775295: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
124966  appEventThread-8881  ( 8858) [001] d..3 82317.775296: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
124967          <idle>-0     (-----) [002] dn.3 82317.775310: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
124968          <idle>-0     (-----) [002] d..2 82317.775322: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
124969     ksoftirqd/2-26    (   26) [002] d.s2 82317.775337: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
124970  appEventThread-8881  ( 8858) [001] d..2 82317.775369: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124971     ksoftirqd/2-26    (   26) [002] d.s3 82317.775388: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
124972          <idle>-0     (-----) [001] d..1 82317.775389: cpu_idle: state=2 cpu_id=1
124973     ksoftirqd/2-26    (   26) [002] d..2 82317.775407: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
124974  kworker/u16:15-1311  ( 1311) [002] d..2 82317.775493: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
124975          <idle>-0     (-----) [002] d..1 82317.775515: cpu_idle: state=2 cpu_id=2
124976          <idle>-0     (-----) [004] dnh2 82317.776088: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
124977          <idle>-0     (-----) [004] .n.1 82317.776097: cpu_idle: state=4294967295 cpu_id=4
124978          <idle>-0     (-----) [004] d..2 82317.776109: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
124979 s.nexuslauncher-10023 (10023) [004] .... 82317.776278: binder_transaction: transaction=1572695 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
124980 s.nexuslauncher-10023 (10023) [004] .... 82317.776284: binder_transaction_alloc_buf: transaction=1572695 data_size=80 offsets_size=0
124981 s.nexuslauncher-10023 (10023) [004] d..4 82317.776288: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
124982 s.nexuslauncher-10023 (10023) [004] d..2 82317.776379: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
124983          <idle>-0     (-----) [004] d..1 82317.776395: cpu_idle: state=2 cpu_id=4
124984          <idle>-0     (-----) [000] dnh2 82317.776495: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
124985          <idle>-0     (-----) [000] .n.1 82317.776508: cpu_idle: state=4294967295 cpu_id=0
124986          <idle>-0     (-----) [000] d..2 82317.776530: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
124987   Binder:8858_1-8871  ( 8858) [000] .... 82317.776541: binder_transaction_received: transaction=1572695
124988   Binder:8858_1-8871  ( 8858) [000] d..1 82317.776588: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
124989   Binder:8858_1-8871  ( 8858) [000] d..2 82317.776610: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
124990   Binder:8858_1-8871  ( 8858) [000] d..2 82317.776673: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
124991          <idle>-0     (-----) [000] d..1 82317.776698: cpu_idle: state=0 cpu_id=0
124992          <idle>-0     (-----) [001] .n.1 82317.776780: cpu_idle: state=4294967295 cpu_id=1
124993          <idle>-0     (-----) [001] d..2 82317.776807: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
124994  appEventThread-8881  ( 8858) [001] d..2 82317.776901: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
124995          <idle>-0     (-----) [001] d..1 82317.776924: cpu_idle: state=0 cpu_id=1
124996          <idle>-0     (-----) [003] d..2 82317.778719: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
124997          <idle>-0     (-----) [003] dn.3 82317.778735: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
124998          <idle>-0     (-----) [003] .n.1 82317.778740: cpu_idle: state=4294967295 cpu_id=3
124999          <idle>-0     (-----) [003] d..2 82317.778760: 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
125000     ksoftirqd/3-34    (   34) [003] d..2 82317.778799: 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
125001          <idle>-0     (-----) [003] d..1 82317.778813: cpu_idle: state=2 cpu_id=3
125002          <idle>-0     (-----) [000] d..2 82317.782712: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
125003          <idle>-0     (-----) [000] dn.3 82317.782728: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
125004          <idle>-0     (-----) [000] .n.1 82317.782734: cpu_idle: state=4294967295 cpu_id=0
125005          <idle>-0     (-----) [000] d..2 82317.782753: 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
125006     ksoftirqd/0-3     (    3) [000] d.s2 82317.782767: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125007     ksoftirqd/0-3     (    3) [000] d.s3 82317.782818: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125008     ksoftirqd/0-3     (    3) [000] d..2 82317.782835: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125009  kworker/u16:15-1311  ( 1311) [000] d..2 82317.782922: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125010          <idle>-0     (-----) [000] d..1 82317.782940: cpu_idle: state=2 cpu_id=0
125011          <idle>-0     (-----) [001] d.s3 82317.785183: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
125012          <idle>-0     (-----) [001] dns4 82317.785207: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
125013          <idle>-0     (-----) [001] dns3 82317.785215: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125014          <idle>-0     (-----) [001] dns4 82317.785263: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
125015          <idle>-0     (-----) [001] .n.1 82317.785289: cpu_idle: state=4294967295 cpu_id=1
125016          <idle>-0     (-----) [001] d..2 82317.785308: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
125017     kworker/1:1-25249 (25249) [001] d..2 82317.785359: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125018  kworker/u16:15-1311  ( 1311) [001] d..2 82317.785445: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125019          <idle>-0     (-----) [001] d..1 82317.785467: cpu_idle: state=0 cpu_id=1
125020          <idle>-0     (-----) [002] d.h2 82317.791471: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
125021          <idle>-0     (-----) [001] d..2 82317.791479: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
125022          <idle>-0     (-----) [001] dn.3 82317.791496: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
125023          <idle>-0     (-----) [002] dnh3 82317.791499: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
125024          <idle>-0     (-----) [001] .n.1 82317.791502: cpu_idle: state=4294967295 cpu_id=1
125025          <idle>-0     (-----) [002] .n.1 82317.791517: cpu_idle: state=4294967295 cpu_id=2
125026          <idle>-0     (-----) [001] d..2 82317.791519: 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
125027          <idle>-0     (-----) [002] d..2 82317.791541: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
125028     ksoftirqd/1-18    (   18) [001] d..2 82317.791555: 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
125029          <idle>-0     (-----) [001] d..1 82317.791570: cpu_idle: state=2 cpu_id=1
125030        DispSync-8879  ( 8858) [002] d..1 82317.791570: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
125031        DispSync-8879  ( 8858) [002] d..2 82317.791590: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
125032        DispSync-8879  ( 8858) [002] d..2 82317.791643: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125033          <idle>-0     (-----) [002] d..1 82317.791667: cpu_idle: state=2 cpu_id=2
125034          <idle>-0     (-----) [001] .n.1 82317.791834: cpu_idle: state=4294967295 cpu_id=1
125035          <idle>-0     (-----) [001] d..2 82317.791870: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125036  appEventThread-8881  ( 8858) [001] d..3 82317.791996: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125037  appEventThread-8881  ( 8858) [001] d..2 82317.792080: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125038          <idle>-0     (-----) [001] d..2 82317.792088: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
125039          <idle>-0     (-----) [001] dn.3 82317.792103: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
125040          <idle>-0     (-----) [001] d..2 82317.792115: 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
125041     ksoftirqd/1-18    (   18) [001] d.s2 82317.792128: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
125042     ksoftirqd/1-18    (   18) [001] d.s3 82317.792150: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
125043     ksoftirqd/1-18    (   18) [001] d..2 82317.792168: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125044  kworker/u16:15-1311  ( 1311) [001] d..2 82317.792246: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125045          <idle>-0     (-----) [001] d..1 82317.792271: cpu_idle: state=0 cpu_id=1
125046          <idle>-0     (-----) [004] dnh2 82317.792798: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125047          <idle>-0     (-----) [004] .n.1 82317.792809: cpu_idle: state=4294967295 cpu_id=4
125048          <idle>-0     (-----) [004] d..2 82317.792825: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
125049 s.nexuslauncher-10023 (10023) [004] .... 82317.792993: binder_transaction: transaction=1572696 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
125050 s.nexuslauncher-10023 (10023) [004] .... 82317.792999: binder_transaction_alloc_buf: transaction=1572696 data_size=80 offsets_size=0
125051 s.nexuslauncher-10023 (10023) [004] d..4 82317.793003: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
125052 s.nexuslauncher-10023 (10023) [004] d..2 82317.793102: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
125053          <idle>-0     (-----) [004] d..1 82317.793121: cpu_idle: state=2 cpu_id=4
125054          <idle>-0     (-----) [000] dnh2 82317.793215: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
125055          <idle>-0     (-----) [000] .n.1 82317.793228: cpu_idle: state=4294967295 cpu_id=0
125056          <idle>-0     (-----) [000] d..2 82317.793251: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
125057   Binder:8858_1-8871  ( 8858) [000] .... 82317.793263: binder_transaction_received: transaction=1572696
125058   Binder:8858_1-8871  ( 8858) [000] d..1 82317.793311: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
125059   Binder:8858_1-8871  ( 8858) [000] d..2 82317.793337: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
125060          <idle>-0     (-----) [001] .n.1 82317.793347: cpu_idle: state=4294967295 cpu_id=1
125061          <idle>-0     (-----) [001] d..2 82317.793362: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125062   Binder:8858_1-8871  ( 8858) [000] d..2 82317.793403: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125063          <idle>-0     (-----) [000] d..1 82317.793428: cpu_idle: state=0 cpu_id=0
125064  appEventThread-8881  ( 8858) [001] d..2 82317.793430: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125065          <idle>-0     (-----) [001] d..1 82317.793451: cpu_idle: state=0 cpu_id=1
125066          <idle>-0     (-----) [000] d..2 82317.799443: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
125067          <idle>-0     (-----) [000] dn.3 82317.799459: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
125068          <idle>-0     (-----) [000] .n.1 82317.799465: cpu_idle: state=4294967295 cpu_id=0
125069          <idle>-0     (-----) [001] ...1 82317.799467: cpu_idle: state=4294967295 cpu_id=1
125070          <idle>-0     (-----) [001] d..1 82317.799474: cpu_idle: state=2 cpu_id=1
125071          <idle>-0     (-----) [000] d..2 82317.799483: 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
125072     ksoftirqd/0-3     (    3) [000] d.s2 82317.799497: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
125073     ksoftirqd/0-3     (    3) [000] d.s3 82317.799548: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125074     ksoftirqd/0-3     (    3) [000] d..2 82317.799567: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125075  kworker/u16:15-1311  ( 1311) [000] d..2 82317.799653: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125076          <idle>-0     (-----) [000] d..1 82317.799670: cpu_idle: state=2 cpu_id=0
125077          <idle>-0     (-----) [002] d.h2 82317.807995: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
125078          <idle>-0     (-----) [002] dnh3 82317.808022: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
125079          <idle>-0     (-----) [002] .n.1 82317.808037: cpu_idle: state=4294967295 cpu_id=2
125080          <idle>-0     (-----) [002] d..2 82317.808057: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
125081        DispSync-8879  ( 8858) [002] d..1 82317.808084: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
125082        DispSync-8879  ( 8858) [002] d..2 82317.808100: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
125083        DispSync-8879  ( 8858) [002] d..2 82317.808157: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125084          <idle>-0     (-----) [002] d..2 82317.808164: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125085          <idle>-0     (-----) [002] dn.3 82317.808179: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125086          <idle>-0     (-----) [002] d..2 82317.808191: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
125087     ksoftirqd/2-26    (   26) [002] d.s2 82317.808203: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125088     ksoftirqd/2-26    (   26) [002] d.s3 82317.808249: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125089     ksoftirqd/2-26    (   26) [002] d..2 82317.808269: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125090          <idle>-0     (-----) [001] .n.1 82317.808275: cpu_idle: state=4294967295 cpu_id=1
125091          <idle>-0     (-----) [001] d..2 82317.808306: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125092  kworker/u16:15-1311  ( 1311) [002] d..2 82317.808382: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125093  appEventThread-8881  ( 8858) [001] d..3 82317.808393: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125094          <idle>-0     (-----) [002] d..1 82317.808406: cpu_idle: state=2 cpu_id=2
125095  appEventThread-8881  ( 8858) [001] d..2 82317.808481: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125096          <idle>-0     (-----) [001] d.s4 82317.808527: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125097          <idle>-0     (-----) [001] d.s5 82317.808547: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125098          <idle>-0     (-----) [001] d..1 82317.808589: cpu_idle: state=0 cpu_id=1
125099          <idle>-0     (-----) [002] .n.1 82317.808709: cpu_idle: state=4294967295 cpu_id=2
125100          <idle>-0     (-----) [002] d..2 82317.808748: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125101  kworker/u16:15-1311  ( 1311) [002] d..2 82317.808851: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125102          <idle>-0     (-----) [002] d..1 82317.808882: cpu_idle: state=0 cpu_id=2
125103          <idle>-0     (-----) [004] dnh2 82317.809194: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125104          <idle>-0     (-----) [004] .n.1 82317.809203: cpu_idle: state=4294967295 cpu_id=4
125105          <idle>-0     (-----) [004] d..2 82317.809217: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
125106 s.nexuslauncher-10023 (10023) [004] .... 82317.809387: binder_transaction: transaction=1572697 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
125107 s.nexuslauncher-10023 (10023) [004] .... 82317.809392: binder_transaction_alloc_buf: transaction=1572697 data_size=80 offsets_size=0
125108 s.nexuslauncher-10023 (10023) [004] d..4 82317.809396: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
125109 s.nexuslauncher-10023 (10023) [004] d..2 82317.809489: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
125110          <idle>-0     (-----) [004] d..1 82317.809505: cpu_idle: state=2 cpu_id=4
125111          <idle>-0     (-----) [000] dnh2 82317.809602: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
125112          <idle>-0     (-----) [000] .n.1 82317.809615: cpu_idle: state=4294967295 cpu_id=0
125113          <idle>-0     (-----) [000] d..2 82317.809637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
125114   Binder:8858_1-8871  ( 8858) [000] .... 82317.809649: binder_transaction_received: transaction=1572697
125115   Binder:8858_1-8871  ( 8858) [000] d..1 82317.809698: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
125116   Binder:8858_1-8871  ( 8858) [000] d..2 82317.809724: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
125117          <idle>-0     (-----) [001] .n.1 82317.809732: cpu_idle: state=4294967295 cpu_id=1
125118          <idle>-0     (-----) [001] d..2 82317.809747: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125119   Binder:8858_1-8871  ( 8858) [000] d..2 82317.809790: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125120  appEventThread-8881  ( 8858) [001] d..2 82317.809810: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125121          <idle>-0     (-----) [000] d..1 82317.809816: cpu_idle: state=0 cpu_id=0
125122          <idle>-0     (-----) [001] d..1 82317.809827: cpu_idle: state=2 cpu_id=1
125123          <idle>-0     (-----) [002] d..2 82317.814901: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125124          <idle>-0     (-----) [002] dn.3 82317.814919: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125125          <idle>-0     (-----) [002] .n.1 82317.814999: cpu_idle: state=4294967295 cpu_id=2
125126          <idle>-0     (-----) [002] d..2 82317.815019: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
125127     ksoftirqd/2-26    (   26) [002] d..2 82317.815053: 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
125128          <idle>-0     (-----) [002] d..1 82317.815068: cpu_idle: state=2 cpu_id=2
125129          <idle>-0     (-----) [000] d..2 82317.815826: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
125130          <idle>-0     (-----) [000] dn.3 82317.815842: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
125131          <idle>-0     (-----) [000] .n.1 82317.815848: cpu_idle: state=4294967295 cpu_id=0
125132          <idle>-0     (-----) [000] d..2 82317.815867: 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
125133     ksoftirqd/0-3     (    3) [000] d.s2 82317.815879: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125134     ksoftirqd/0-3     (    3) [000] d.s3 82317.815932: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125135     ksoftirqd/0-3     (    3) [000] d..2 82317.815950: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125136  kworker/u16:15-1311  ( 1311) [000] d..2 82317.816206: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
125137          <idle>-0     (-----) [000] d..1 82317.816228: cpu_idle: state=2 cpu_id=0
125138          <idle>-0     (-----) [001] d.s3 82317.816394: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125139          <idle>-0     (-----) [001] d.s4 82317.816415: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
125140          <idle>-0     (-----) [001] d.s4 82317.816427: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125141          <idle>-0     (-----) [001] ...1 82317.816445: cpu_idle: state=4294967295 cpu_id=1
125142          <idle>-0     (-----) [001] d..1 82317.816457: cpu_idle: state=2 cpu_id=1
125143          <idle>-0     (-----) [000] .n.1 82317.816597: cpu_idle: state=4294967295 cpu_id=0
125144          <idle>-0     (-----) [000] d..2 82317.816626: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125145  kworker/u16:15-1311  ( 1311) [000] d..2 82317.816681: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125146          <idle>-0     (-----) [000] d..1 82317.816702: cpu_idle: state=2 cpu_id=0
125147          <idle>-0     (-----) [002] d.h2 82317.824464: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
125148          <idle>-0     (-----) [002] dnh3 82317.824491: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
125149          <idle>-0     (-----) [002] .n.1 82317.824505: cpu_idle: state=4294967295 cpu_id=2
125150          <idle>-0     (-----) [002] d..2 82317.824525: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
125151        DispSync-8879  ( 8858) [002] d..1 82317.824552: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
125152        DispSync-8879  ( 8858) [002] d..2 82317.824571: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
125153        DispSync-8879  ( 8858) [002] d..2 82317.824628: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125154          <idle>-0     (-----) [002] d..2 82317.824635: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125155          <idle>-0     (-----) [002] dn.3 82317.824648: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125156          <idle>-0     (-----) [002] d..2 82317.824660: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
125157     ksoftirqd/2-26    (   26) [002] d.s2 82317.824671: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125158     ksoftirqd/2-26    (   26) [002] d.s3 82317.824717: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125159     ksoftirqd/2-26    (   26) [002] d..2 82317.824737: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125160          <idle>-0     (-----) [001] .n.1 82317.824747: cpu_idle: state=4294967295 cpu_id=1
125161          <idle>-0     (-----) [001] d..2 82317.824780: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125162  appEventThread-8881  ( 8858) [001] d..3 82317.824844: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125163  appEventThread-8881  ( 8858) [001] d..2 82317.824931: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125164          <idle>-0     (-----) [001] d..1 82317.824956: cpu_idle: state=2 cpu_id=1
125165  kworker/u16:15-1311  ( 1311) [002] d..2 82317.824996: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125166          <idle>-0     (-----) [002] d..1 82317.825028: cpu_idle: state=0 cpu_id=2
125167          <idle>-0     (-----) [001] d.s3 82317.825270: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125168          <idle>-0     (-----) [001] d.s4 82317.825293: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
125169          <idle>-0     (-----) [001] d.s4 82317.825308: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125170          <idle>-0     (-----) [001] d..2 82317.825318: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
125171          <idle>-0     (-----) [002] .n.1 82317.825318: cpu_idle: state=4294967295 cpu_id=2
125172          <idle>-0     (-----) [001] dn.3 82317.825331: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
125173          <idle>-0     (-----) [001] .n.1 82317.825338: cpu_idle: state=4294967295 cpu_id=1
125174          <idle>-0     (-----) [002] d..2 82317.825339: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125175          <idle>-0     (-----) [001] d..2 82317.825365: 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
125176     ksoftirqd/1-18    (   18) [001] d.s2 82317.825378: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125177  kworker/u16:15-1311  ( 1311) [002] d..2 82317.825383: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125178     ksoftirqd/1-18    (   18) [001] d.s3 82317.825403: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125179          <idle>-0     (-----) [002] d..2 82317.825417: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125180     ksoftirqd/1-18    (   18) [001] d..2 82317.825444: 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
125181          <idle>-0     (-----) [001] d..1 82317.825509: cpu_idle: state=0 cpu_id=1
125182  kworker/u16:15-1311  ( 1311) [002] d..2 82317.825533: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125183          <idle>-0     (-----) [002] d..1 82317.825548: cpu_idle: state=0 cpu_id=2
125184          <idle>-0     (-----) [004] dnh2 82317.825647: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125185          <idle>-0     (-----) [004] .n.1 82317.825656: cpu_idle: state=4294967295 cpu_id=4
125186          <idle>-0     (-----) [004] d..2 82317.825668: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
125187 s.nexuslauncher-10023 (10023) [004] .... 82317.825833: binder_transaction: transaction=1572698 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
125188 s.nexuslauncher-10023 (10023) [004] .... 82317.825838: binder_transaction_alloc_buf: transaction=1572698 data_size=80 offsets_size=0
125189 s.nexuslauncher-10023 (10023) [004] d..4 82317.825843: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
125190 s.nexuslauncher-10023 (10023) [004] d..2 82317.825935: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
125191          <idle>-0     (-----) [004] d..1 82317.825951: cpu_idle: state=2 cpu_id=4
125192          <idle>-0     (-----) [000] dnh2 82317.826049: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
125193          <idle>-0     (-----) [000] .n.1 82317.826062: cpu_idle: state=4294967295 cpu_id=0
125194          <idle>-0     (-----) [000] d..2 82317.826084: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
125195   Binder:8858_1-8871  ( 8858) [000] .... 82317.826096: binder_transaction_received: transaction=1572698
125196   Binder:8858_1-8871  ( 8858) [000] d..1 82317.826142: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
125197   Binder:8858_1-8871  ( 8858) [000] d..2 82317.826167: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
125198          <idle>-0     (-----) [001] .n.1 82317.826175: cpu_idle: state=4294967295 cpu_id=1
125199          <idle>-0     (-----) [001] d..2 82317.826189: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125200   Binder:8858_1-8871  ( 8858) [000] d..2 82317.826232: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125201          <idle>-0     (-----) [000] d..1 82317.826255: cpu_idle: state=2 cpu_id=0
125202  appEventThread-8881  ( 8858) [001] d..2 82317.826272: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125203          <idle>-0     (-----) [001] d..1 82317.826290: cpu_idle: state=0 cpu_id=1
125204          <idle>-0     (-----) [002] d..2 82317.831417: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125205          <idle>-0     (-----) [002] dn.3 82317.831430: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125206          <idle>-0     (-----) [002] .n.1 82317.831436: cpu_idle: state=4294967295 cpu_id=2
125207          <idle>-0     (-----) [002] d..2 82317.831452: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
125208     ksoftirqd/2-26    (   26) [002] d..2 82317.831491: 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
125209          <idle>-0     (-----) [002] d..1 82317.831505: cpu_idle: state=2 cpu_id=2
125210          <idle>-0     (-----) [001] d..2 82317.832304: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
125211          <idle>-0     (-----) [001] dn.3 82317.832319: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
125212          <idle>-0     (-----) [001] dns3 82317.832397: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125213          <idle>-0     (-----) [001] dns4 82317.832446: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
125214          <idle>-0     (-----) [001] .n.1 82317.832459: cpu_idle: state=4294967295 cpu_id=1
125215          <idle>-0     (-----) [001] d..2 82317.832479: 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
125216     ksoftirqd/1-18    (   18) [001] d..2 82317.832493: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125217  kworker/u16:15-1311  ( 1311) [001] d..2 82317.832579: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125218          <idle>-0     (-----) [001] d..1 82317.832598: cpu_idle: state=2 cpu_id=1
125219          <idle>-0     (-----) [002] d.h2 82317.840928: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
125220          <idle>-0     (-----) [002] dnh3 82317.840956: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
125221          <idle>-0     (-----) [002] .n.1 82317.840972: cpu_idle: state=4294967295 cpu_id=2
125222          <idle>-0     (-----) [002] d..2 82317.840991: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
125223        DispSync-8879  ( 8858) [002] d..1 82317.841018: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
125224        DispSync-8879  ( 8858) [002] d..2 82317.841037: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
125225        DispSync-8879  ( 8858) [002] d..2 82317.841094: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125226          <idle>-0     (-----) [002] d..2 82317.841101: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125227          <idle>-0     (-----) [002] dn.3 82317.841116: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125228          <idle>-0     (-----) [002] d..2 82317.841127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
125229     ksoftirqd/2-26    (   26) [002] d.s2 82317.841139: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
125230     ksoftirqd/2-26    (   26) [002] d.s3 82317.841186: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125231     ksoftirqd/2-26    (   26) [002] d..2 82317.841203: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125232          <idle>-0     (-----) [001] .n.1 82317.841213: cpu_idle: state=4294967295 cpu_id=1
125233          <idle>-0     (-----) [001] d..2 82317.841245: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125234  kworker/u16:15-1311  ( 1311) [002] d..2 82317.841283: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125235  appEventThread-8881  ( 8858) [001] d..3 82317.841308: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125236          <idle>-0     (-----) [002] d..1 82317.841309: cpu_idle: state=0 cpu_id=2
125237  appEventThread-8881  ( 8858) [001] d..2 82317.841405: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125238          <idle>-0     (-----) [001] d..1 82317.841437: cpu_idle: state=0 cpu_id=1
125239          <idle>-0     (-----) [004] dnh2 82317.842114: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125240          <idle>-0     (-----) [004] .n.1 82317.842123: cpu_idle: state=4294967295 cpu_id=4
125241          <idle>-0     (-----) [004] d..2 82317.842138: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
125242 s.nexuslauncher-10023 (10023) [004] .... 82317.842414: binder_transaction: transaction=1572699 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
125243 s.nexuslauncher-10023 (10023) [004] .... 82317.842419: binder_transaction_alloc_buf: transaction=1572699 data_size=80 offsets_size=0
125244 s.nexuslauncher-10023 (10023) [004] d..4 82317.842423: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
125245 s.nexuslauncher-10023 (10023) [004] d..3 82317.842479: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
125246 s.nexuslauncher-10023 (10023) [004] d..4 82317.842506: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125247          <idle>-0     (-----) [000] dnh2 82317.842623: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
125248          <idle>-0     (-----) [000] .n.1 82317.842637: cpu_idle: state=4294967295 cpu_id=0
125249          <idle>-0     (-----) [000] d..2 82317.842660: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
125250   Binder:8858_1-8871  ( 8858) [000] .... 82317.842673: binder_transaction_received: transaction=1572699
125251          <idle>-0     (-----) [005] .n.1 82317.842723: cpu_idle: state=4294967295 cpu_id=5
125252   Binder:8858_1-8871  ( 8858) [000] d..1 82317.842728: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
125253          <idle>-0     (-----) [005] d..2 82317.842746: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
125254   Binder:8858_1-8871  ( 8858) [000] d..2 82317.842756: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
125255          <idle>-0     (-----) [001] .n.1 82317.842765: cpu_idle: state=4294967295 cpu_id=1
125256          <idle>-0     (-----) [001] d..2 82317.842782: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125257    RenderThread-16607 (10023) [005] d..2 82317.842813: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
125258          <idle>-0     (-----) [005] d..2 82317.842817: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
125259          <idle>-0     (-----) [005] dn.3 82317.842826: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
125260   Binder:8858_1-8871  ( 8858) [000] d..2 82317.842828: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125261          <idle>-0     (-----) [005] d..2 82317.842832: 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
125262  appEventThread-8881  ( 8858) [001] d..2 82317.842840: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125263     ksoftirqd/5-50    (   50) [005] d.s2 82317.842843: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125264          <idle>-0     (-----) [000] d..1 82317.842851: cpu_idle: state=2 cpu_id=0
125265          <idle>-0     (-----) [001] d..1 82317.842858: cpu_idle: state=0 cpu_id=1
125266     ksoftirqd/5-50    (   50) [005] d..2 82317.842866: 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
125267          <idle>-0     (-----) [002] dnh2 82317.842871: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125268          <idle>-0     (-----) [005] d..1 82317.842877: cpu_idle: state=2 cpu_id=5
125269          <idle>-0     (-----) [002] .n.1 82317.842882: cpu_idle: state=4294967295 cpu_id=2
125270          <idle>-0     (-----) [002] d..2 82317.842896: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125271 s.nexuslauncher-10023 (10023) [004] d..3 82317.842906: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
125272 s.nexuslauncher-10023 (10023) [004] d..4 82317.842925: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125273 s.nexuslauncher-10023 (10023) [004] d..2 82317.842969: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
125274          <idle>-0     (-----) [004] d..1 82317.842995: cpu_idle: state=2 cpu_id=4
125275  kworker/u16:15-1311  ( 1311) [002] d..2 82317.843021: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125276          <idle>-0     (-----) [002] d..1 82317.843039: cpu_idle: state=0 cpu_id=2
125277          <idle>-0     (-----) [005] .n.1 82317.843404: cpu_idle: state=4294967295 cpu_id=5
125278          <idle>-0     (-----) [005] d..2 82317.843423: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
125279    RenderThread-16607 (10023) [005] d..1 82317.843682: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125280    RenderThread-16607 (10023) [005] d..2 82317.843698: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125281    RenderThread-16607 (10023) [005] .... 82317.843780: binder_transaction: transaction=1572700 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
125282    RenderThread-16607 (10023) [005] .... 82317.843784: binder_transaction_alloc_buf: transaction=1572700 data_size=104 offsets_size=0
125283    RenderThread-16607 (10023) [005] ...2 82317.843788: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
125284    RenderThread-16607 (10023) [005] d..4 82317.843791: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
125285    RenderThread-16607 (10023) [005] d..5 82317.843812: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
125286    RenderThread-16607 (10023) [005] d..2 82317.843858: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
125287   Binder:8858_1-8871  ( 8858) [005] .... 82317.843870: binder_transaction_received: transaction=1572700
125288          <idle>-0     (-----) [004] .n.1 82317.843917: cpu_idle: state=4294967295 cpu_id=4
125289          <idle>-0     (-----) [004] d..2 82317.843937: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
125290   Binder:8858_1-8871  ( 8858) [005] .... 82317.843951: binder_transaction: transaction=1572701 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
125291   Binder:8858_1-8871  ( 8858) [005] .... 82317.843955: binder_transaction_alloc_buf: transaction=1572701 data_size=52 offsets_size=8
125292   Binder:8858_1-8871  ( 8858) [005] d..2 82317.844005: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
125293   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.844017: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125294   Binder:8858_1-8871  ( 8858) [005] d..2 82317.844024: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
125295    RenderThread-16607 (10023) [005] .... 82317.844034: binder_transaction_received: transaction=1572701
125296 s.nexuslauncher-10023 (10023) [004] d..2 82317.844070: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
125297   Binder:8858_1-8871  ( 8858) [004] .... 82317.844084: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
125298   Binder:8858_1-8871  ( 8858) [004] d..2 82317.844162: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
125299          <idle>-0     (-----) [004] d..1 82317.844177: cpu_idle: state=2 cpu_id=4
125300    RenderThread-16607 (10023) [005] d..2 82317.845365: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125301          <idle>-0     (-----) [002] dnh2 82317.845400: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125302          <idle>-0     (-----) [002] .n.1 82317.845410: cpu_idle: state=4294967295 cpu_id=2
125303          <idle>-0     (-----) [002] d..2 82317.845424: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125304    RenderThread-16607 (10023) [005] d..2 82317.845516: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125305 kgsl_worker_thr-258   (  258) [002] d..2 82317.845519: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125306          <idle>-0     (-----) [002] d..1 82317.845535: cpu_idle: state=2 cpu_id=2
125307    RenderThread-16607 (10023) [005] .... 82317.845696: binder_transaction: transaction=1572702 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
125308    RenderThread-16607 (10023) [005] .... 82317.845701: binder_transaction_alloc_buf: transaction=1572702 data_size=192 offsets_size=8
125309    RenderThread-16607 (10023) [005] ...2 82317.845710: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
125310    RenderThread-16607 (10023) [005] d..4 82317.845713: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
125311    RenderThread-16607 (10023) [005] d..5 82317.845732: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
125312    RenderThread-16607 (10023) [005] d..2 82317.845745: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
125313   Binder:8858_1-8871  ( 8858) [005] .... 82317.845757: binder_transaction_received: transaction=1572702
125314          <idle>-0     (-----) [002] dnh2 82317.845818: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125315          <idle>-0     (-----) [002] .n.1 82317.845831: cpu_idle: state=4294967295 cpu_id=2
125316          <idle>-0     (-----) [002] d..2 82317.845850: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125317   Binder:8858_1-8871  ( 8858) [005] d..1 82317.845861: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
125318          <idle>-0     (-----) [001] ...1 82317.845920: cpu_idle: state=4294967295 cpu_id=1
125319   Binder:8858_1-8871  ( 8858) [005] .... 82317.845928: binder_transaction: transaction=1572703 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
125320          <idle>-0     (-----) [001] d..1 82317.845928: cpu_idle: state=0 cpu_id=1
125321   Binder:8858_1-8871  ( 8858) [005] .... 82317.845932: binder_transaction_alloc_buf: transaction=1572703 data_size=68 offsets_size=0
125322   Binder:8858_1-8871  ( 8858) [005] d..2 82317.845935: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
125323   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.845946: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125324   Binder:8858_1-8871  ( 8858) [005] d..2 82317.845953: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
125325    RenderThread-16607 (10023) [005] .... 82317.845962: binder_transaction_received: transaction=1572703
125326 kgsl_worker_thr-258   (  258) [002] d..1 82317.845991: clk_enable: gpll0_out_even
125327 kgsl_worker_thr-258   (  258) [002] d..1 82317.845994: clk_enable: gcc_gpu_gpll0_div_clk_src
125328    RenderThread-16607 (10023) [005] d..2 82317.846017: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
125329    RenderThread-16607 (10023) [005] d..2 82317.846067: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
125330          <idle>-0     (-----) [003] d.h2 82317.846072: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
125331   Binder:8858_1-8871  ( 8858) [005] .... 82317.846076: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
125332          <idle>-0     (-----) [003] dnh3 82317.846094: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
125333          <idle>-0     (-----) [000] dnh2 82317.846094: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
125334          <idle>-0     (-----) [000] dnh2 82317.846105: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
125335          <idle>-0     (-----) [003] .n.1 82317.846108: cpu_idle: state=4294967295 cpu_id=3
125336          <idle>-0     (-----) [000] .n.1 82317.846117: cpu_idle: state=4294967295 cpu_id=0
125337          <idle>-0     (-----) [003] d..2 82317.846128: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
125338   Binder:8858_1-8871  ( 8858) [005] d..2 82317.846132: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
125339          <idle>-0     (-----) [004] ...1 82317.846134: cpu_idle: state=4294967295 cpu_id=4
125340          <idle>-0     (-----) [000] d..2 82317.846138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
125341          <idle>-0     (-----) [004] d..1 82317.846144: cpu_idle: state=0 cpu_id=4
125342          <idle>-0     (-----) [005] d..1 82317.846150: cpu_idle: state=0 cpu_id=5
125343          <idle>-0     (-----) [006] ...1 82317.846172: cpu_idle: state=4294967295 cpu_id=6
125344   sfEventThread-8882  ( 8858) [000] d..1 82317.846178: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
125345          <idle>-0     (-----) [006] d..1 82317.846182: cpu_idle: state=0 cpu_id=6
125346   sfEventThread-8882  ( 8858) [000] d..2 82317.846212: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
125347          <idle>-0     (-----) [007] ...1 82317.846213: cpu_idle: state=4294967295 cpu_id=7
125348          <idle>-0     (-----) [001] .n.1 82317.846218: cpu_idle: state=4294967295 cpu_id=1
125349          <idle>-0     (-----) [007] d..1 82317.846223: cpu_idle: state=0 cpu_id=7
125350          <idle>-0     (-----) [001] d..2 82317.846232: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
125351   sfEventThread-8882  ( 8858) [000] d..2 82317.846253: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
125352         rcuop/4-45    (   45) [000] d..2 82317.846264: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
125353        DispSync-8879  ( 8858) [001] d..2 82317.846282: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125354          <idle>-0     (-----) [001] d..1 82317.846296: cpu_idle: state=0 cpu_id=1
125355         rcuop/4-45    (   45) [000] d..3 82317.846321: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
125356 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.846333: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125357         rcuop/4-45    (   45) [000] d..2 82317.846356: 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
125358          <idle>-0     (-----) [003] d..1 82317.846358: cpu_idle: state=0 cpu_id=3
125359          <idle>-0     (-----) [001] dns3 82317.846363: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
125360          <idle>-0     (-----) [001] dns4 82317.846382: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
125361          <idle>-0     (-----) [000] d..1 82317.846382: cpu_idle: state=0 cpu_id=0
125362          <idle>-0     (-----) [003] .n.1 82317.846390: cpu_idle: state=4294967295 cpu_id=3
125363          <idle>-0     (-----) [001] .n.1 82317.846392: cpu_idle: state=4294967295 cpu_id=1
125364          <idle>-0     (-----) [003] d..2 82317.846404: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
125365          <idle>-0     (-----) [001] d..2 82317.846411: 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
125366     rcu_preempt-7     (    7) [001] d..2 82317.846450: 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
125367 irq/80-1436400.-9674  ( 9674) [003] d..2 82317.846452: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125368          <idle>-0     (-----) [001] d..1 82317.846465: cpu_idle: state=0 cpu_id=1
125369          <idle>-0     (-----) [003] d..1 82317.846468: cpu_idle: state=0 cpu_id=3
125370 kgsl_worker_thr-258   (  258) [002] d..1 82317.846505: clk_enable: gpu_cc_gmu_clk_src
125371 kgsl_worker_thr-258   (  258) [002] d..1 82317.846541: clk_enable: gpu_cc_cx_gmu_clk
125372 kgsl_worker_thr-258   (  258) [002] d..1 82317.846554: clk_enable: gpu_cc_cxo_clk
125373 kgsl_worker_thr-258   (  258) [002] d..1 82317.846567: clk_enable: gcc_ddrss_gpu_axi_clk
125374 kgsl_worker_thr-258   (  258) [002] d..1 82317.846577: clk_enable: gcc_gpu_memnoc_gfx_clk
125375 kgsl_worker_thr-258   (  258) [002] d..2 82317.846666: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125376          <idle>-0     (-----) [002] d..1 82317.846686: cpu_idle: state=0 cpu_id=2
125377          <idle>-0     (-----) [002] d.h2 82317.846743: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125378          <idle>-0     (-----) [002] dnh3 82317.846761: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125379          <idle>-0     (-----) [002] .n.1 82317.846772: cpu_idle: state=4294967295 cpu_id=2
125380          <idle>-0     (-----) [002] d..2 82317.846785: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125381 kgsl_worker_thr-258   (  258) [002] d..2 82317.846813: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125382          <idle>-0     (-----) [002] d..1 82317.846825: cpu_idle: state=0 cpu_id=2
125383          <idle>-0     (-----) [002] d.h2 82317.846904: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125384          <idle>-0     (-----) [002] dnh3 82317.846917: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125385          <idle>-0     (-----) [002] .n.1 82317.846926: cpu_idle: state=4294967295 cpu_id=2
125386          <idle>-0     (-----) [002] d..2 82317.846937: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125387 kgsl_worker_thr-258   (  258) [002] d..2 82317.847027: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125388          <idle>-0     (-----) [002] d..1 82317.847040: cpu_idle: state=0 cpu_id=2
125389          <idle>-0     (-----) [002] d.h2 82317.847118: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125390          <idle>-0     (-----) [002] dnh3 82317.847130: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125391          <idle>-0     (-----) [002] .n.1 82317.847139: cpu_idle: state=4294967295 cpu_id=2
125392          <idle>-0     (-----) [002] d..2 82317.847151: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125393 kgsl_worker_thr-258   (  258) [002] d..2 82317.847193: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125394          <idle>-0     (-----) [002] d..1 82317.847204: cpu_idle: state=0 cpu_id=2
125395          <idle>-0     (-----) [002] d.h2 82317.847284: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125396          <idle>-0     (-----) [002] dnh3 82317.847296: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125397          <idle>-0     (-----) [002] .n.1 82317.847306: cpu_idle: state=4294967295 cpu_id=2
125398          <idle>-0     (-----) [002] d..2 82317.847317: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125399 kgsl_worker_thr-258   (  258) [002] d..2 82317.847345: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125400          <idle>-0     (-----) [002] d..1 82317.847355: cpu_idle: state=0 cpu_id=2
125401          <idle>-0     (-----) [002] d.h2 82317.847435: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125402          <idle>-0     (-----) [002] dnh3 82317.847447: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125403          <idle>-0     (-----) [002] .n.1 82317.847457: cpu_idle: state=4294967295 cpu_id=2
125404          <idle>-0     (-----) [002] d..2 82317.847467: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125405 kgsl_worker_thr-258   (  258) [002] d..2 82317.847494: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125406          <idle>-0     (-----) [002] d..1 82317.847505: cpu_idle: state=0 cpu_id=2
125407          <idle>-0     (-----) [002] d.h2 82317.847586: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125408          <idle>-0     (-----) [002] dnh3 82317.847598: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125409          <idle>-0     (-----) [002] .n.1 82317.847608: cpu_idle: state=4294967295 cpu_id=2
125410          <idle>-0     (-----) [002] d..2 82317.847619: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125411 kgsl_worker_thr-258   (  258) [002] d..2 82317.847645: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125412          <idle>-0     (-----) [002] d..1 82317.847656: cpu_idle: state=0 cpu_id=2
125413          <idle>-0     (-----) [002] d.h2 82317.847737: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125414          <idle>-0     (-----) [002] dnh3 82317.847748: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125415          <idle>-0     (-----) [002] .n.1 82317.847758: cpu_idle: state=4294967295 cpu_id=2
125416          <idle>-0     (-----) [002] d..2 82317.847769: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125417 kgsl_worker_thr-258   (  258) [002] d..2 82317.847796: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125418          <idle>-0     (-----) [002] d..1 82317.847806: cpu_idle: state=0 cpu_id=2
125419          <idle>-0     (-----) [002] d.h2 82317.847887: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125420          <idle>-0     (-----) [002] dnh3 82317.847899: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125421          <idle>-0     (-----) [002] .n.1 82317.847908: cpu_idle: state=4294967295 cpu_id=2
125422          <idle>-0     (-----) [002] d..2 82317.847919: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125423 kgsl_worker_thr-258   (  258) [002] d..2 82317.847946: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125424          <idle>-0     (-----) [002] d..1 82317.847956: cpu_idle: state=0 cpu_id=2
125425          <idle>-0     (-----) [002] d.h2 82317.848037: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125426          <idle>-0     (-----) [002] dnh3 82317.848049: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125427          <idle>-0     (-----) [002] .n.1 82317.848059: cpu_idle: state=4294967295 cpu_id=2
125428          <idle>-0     (-----) [002] d..2 82317.848069: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125429 kgsl_worker_thr-258   (  258) [002] d..2 82317.848110: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125430          <idle>-0     (-----) [002] d..1 82317.848121: cpu_idle: state=0 cpu_id=2
125431          <idle>-0     (-----) [002] d.h2 82317.848201: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125432          <idle>-0     (-----) [002] dnh3 82317.848214: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125433          <idle>-0     (-----) [002] .n.1 82317.848223: cpu_idle: state=4294967295 cpu_id=2
125434          <idle>-0     (-----) [002] d..2 82317.848235: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125435 kgsl_worker_thr-258   (  258) [002] d..2 82317.848273: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125436          <idle>-0     (-----) [002] d..1 82317.848288: cpu_idle: state=0 cpu_id=2
125437          <idle>-0     (-----) [003] d.s4 82317.848308: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125438          <idle>-0     (-----) [003] d.s5 82317.848335: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125439          <idle>-0     (-----) [002] .n.1 82317.848341: cpu_idle: state=4294967295 cpu_id=2
125440          <idle>-0     (-----) [003] ...1 82317.848352: cpu_idle: state=4294967295 cpu_id=3
125441          <idle>-0     (-----) [002] d..2 82317.848353: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125442          <idle>-0     (-----) [003] d..1 82317.848358: cpu_idle: state=0 cpu_id=3
125443 kgsl_worker_thr-258   (  258) [002] d..2 82317.848388: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125444          <idle>-0     (-----) [003] d.s4 82317.848400: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125445          <idle>-0     (-----) [002] d..1 82317.848402: cpu_idle: state=0 cpu_id=2
125446          <idle>-0     (-----) [003] d.s5 82317.848418: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125447          <idle>-0     (-----) [002] .n.1 82317.848425: cpu_idle: state=4294967295 cpu_id=2
125448          <idle>-0     (-----) [003] ...1 82317.848430: cpu_idle: state=4294967295 cpu_id=3
125449          <idle>-0     (-----) [002] d..2 82317.848437: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125450          <idle>-0     (-----) [003] d..1 82317.848437: cpu_idle: state=0 cpu_id=3
125451 kgsl_worker_thr-258   (  258) [002] d.s4 82317.848488: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125452 kgsl_worker_thr-258   (  258) [002] d.s5 82317.848517: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125453 kgsl_worker_thr-258   (  258) [002] d..2 82317.848557: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125454          <idle>-0     (-----) [003] d.s4 82317.848590: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
125455          <idle>-0     (-----) [003] dns5 82317.848614: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125456          <idle>-0     (-----) [003] .n.1 82317.848623: cpu_idle: state=4294967295 cpu_id=3
125457          <idle>-0     (-----) [003] d..2 82317.848640: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125458 kgsl_worker_thr-258   (  258) [003] d..2 82317.848693: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125459          <idle>-0     (-----) [003] d..1 82317.848709: cpu_idle: state=0 cpu_id=3
125460          <idle>-0     (-----) [003] d.s4 82317.848761: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125461  kworker/u16:15-1311  ( 1311) [002] d..2 82317.848775: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
125462          <idle>-0     (-----) [003] dns5 82317.848775: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125463          <idle>-0     (-----) [003] .n.1 82317.848785: cpu_idle: state=4294967295 cpu_id=3
125464          <idle>-0     (-----) [002] d..1 82317.848797: cpu_idle: state=0 cpu_id=2
125465          <idle>-0     (-----) [003] d..2 82317.848798: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125466          <idle>-0     (-----) [001] d.s3 82317.848804: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125467          <idle>-0     (-----) [001] d.s4 82317.848820: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
125468          <idle>-0     (-----) [001] d.s4 82317.848832: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125469 kgsl_worker_thr-258   (  258) [003] d..2 82317.848833: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125470          <idle>-0     (-----) [002] .n.1 82317.848841: cpu_idle: state=4294967295 cpu_id=2
125471          <idle>-0     (-----) [001] ...1 82317.848845: cpu_idle: state=4294967295 cpu_id=1
125472          <idle>-0     (-----) [001] d..1 82317.848851: cpu_idle: state=0 cpu_id=1
125473          <idle>-0     (-----) [002] d..2 82317.848858: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125474          <idle>-0     (-----) [003] d.s5 82317.848861: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125475          <idle>-0     (-----) [003] dns6 82317.848874: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125476          <idle>-0     (-----) [003] d..2 82317.848887: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125477 kgsl_worker_thr-258   (  258) [003] d..2 82317.848956: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125478  kworker/u16:15-1311  ( 1311) [002] d..2 82317.848964: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125479          <idle>-0     (-----) [003] d..1 82317.848971: cpu_idle: state=0 cpu_id=3
125480          <idle>-0     (-----) [002] d..1 82317.848981: cpu_idle: state=0 cpu_id=2
125481          <idle>-0     (-----) [003] d.h2 82317.849044: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125482          <idle>-0     (-----) [003] dnh3 82317.849058: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125483          <idle>-0     (-----) [003] .n.1 82317.849069: cpu_idle: state=4294967295 cpu_id=3
125484          <idle>-0     (-----) [003] d..2 82317.849081: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125485 kgsl_worker_thr-258   (  258) [003] d..2 82317.849276: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125486          <idle>-0     (-----) [003] d..1 82317.849298: cpu_idle: state=0 cpu_id=3
125487          <idle>-0     (-----) [001] d.s3 82317.849303: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125488          <idle>-0     (-----) [001] d.s4 82317.849327: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125489          <idle>-0     (-----) [003] .n.1 82317.849335: cpu_idle: state=4294967295 cpu_id=3
125490          <idle>-0     (-----) [001] ...1 82317.849338: cpu_idle: state=4294967295 cpu_id=1
125491          <idle>-0     (-----) [001] d..1 82317.849344: cpu_idle: state=0 cpu_id=1
125492          <idle>-0     (-----) [003] d..2 82317.849348: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125493 kgsl_worker_thr-258   (  258) [003] d..2 82317.849443: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125494          <idle>-0     (-----) [003] d..1 82317.849455: cpu_idle: state=0 cpu_id=3
125495          <idle>-0     (-----) [003] d.h2 82317.849529: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125496          <idle>-0     (-----) [003] dnh3 82317.849546: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125497          <idle>-0     (-----) [003] .n.1 82317.849556: cpu_idle: state=4294967295 cpu_id=3
125498          <idle>-0     (-----) [003] d..2 82317.849568: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125499          <idle>-0     (-----) [002] ...1 82317.850104: cpu_idle: state=4294967295 cpu_id=2
125500          <idle>-0     (-----) [002] d..1 82317.850110: cpu_idle: state=0 cpu_id=2
125501          <idle>-0     (-----) [001] ...1 82317.850139: cpu_idle: state=4294967295 cpu_id=1
125502          <idle>-0     (-----) [000] ...1 82317.850139: cpu_idle: state=4294967295 cpu_id=0
125503          <idle>-0     (-----) [002] ...1 82317.850143: cpu_idle: state=4294967295 cpu_id=2
125504          <idle>-0     (-----) [001] d..1 82317.850144: cpu_idle: state=0 cpu_id=1
125505          <idle>-0     (-----) [004] ...1 82317.850145: cpu_idle: state=4294967295 cpu_id=4
125506          <idle>-0     (-----) [000] d..1 82317.850149: cpu_idle: state=0 cpu_id=0
125507          <idle>-0     (-----) [005] ...1 82317.850149: cpu_idle: state=4294967295 cpu_id=5
125508          <idle>-0     (-----) [004] d..1 82317.850149: cpu_idle: state=0 cpu_id=4
125509          <idle>-0     (-----) [002] d..1 82317.850150: cpu_idle: state=0 cpu_id=2
125510          <idle>-0     (-----) [006] ...1 82317.850150: cpu_idle: state=4294967295 cpu_id=6
125511          <idle>-0     (-----) [007] ...1 82317.850153: cpu_idle: state=4294967295 cpu_id=7
125512          <idle>-0     (-----) [005] d..1 82317.850154: cpu_idle: state=0 cpu_id=5
125513          <idle>-0     (-----) [006] d..1 82317.850154: cpu_idle: state=0 cpu_id=6
125514          <idle>-0     (-----) [007] d..1 82317.850157: cpu_idle: state=0 cpu_id=7
125515 kgsl_worker_thr-258   (  258) [003] d..2 82317.850171: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125516 kgsl_worker_thr-258   (  258) [003] d..3 82317.850198: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125517          <idle>-0     (-----) [002] .n.1 82317.850204: cpu_idle: state=4294967295 cpu_id=2
125518          <idle>-0     (-----) [002] d..2 82317.850219: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125519  kworker/u16:15-1311  ( 1311) [002] d..2 82317.850232: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
125520  kworker/u16:15-1311  ( 1311) [002] dn.3 82317.850289: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
125521  kworker/u16:15-1311  ( 1311) [002] d..2 82317.850301: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
125522  kworker/u16:13-1147  ( 1147) [002] d..2 82317.850320: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125523  kworker/u16:15-1311  ( 1311) [002] d..2 82317.850343: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125524          <idle>-0     (-----) [002] d..1 82317.850360: cpu_idle: state=0 cpu_id=2
125525 kgsl_worker_thr-258   (  258) [003] d..2 82317.850384: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125526          <idle>-0     (-----) [003] d..1 82317.850410: cpu_idle: state=0 cpu_id=3
125527          <idle>-0     (-----) [000] d.h3 82317.850508: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125528          <idle>-0     (-----) [000] d.h4 82317.850531: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125529          <idle>-0     (-----) [003] .n.1 82317.850540: cpu_idle: state=4294967295 cpu_id=3
125530          <idle>-0     (-----) [000] ...1 82317.850549: cpu_idle: state=4294967295 cpu_id=0
125531          <idle>-0     (-----) [003] d..2 82317.850554: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125532          <idle>-0     (-----) [000] d..1 82317.850556: cpu_idle: state=0 cpu_id=0
125533 kgsl_worker_thr-258   (  258) [003] d..2 82317.850610: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125534          <idle>-0     (-----) [003] d..1 82317.850623: cpu_idle: state=0 cpu_id=3
125535          <idle>-0     (-----) [003] d.h2 82317.850700: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125536          <idle>-0     (-----) [003] dnh3 82317.850716: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125537          <idle>-0     (-----) [003] .n.1 82317.850727: cpu_idle: state=4294967295 cpu_id=3
125538          <idle>-0     (-----) [003] d..2 82317.850740: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125539 kgsl_worker_thr-258   (  258) [003] d..2 82317.850779: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125540          <idle>-0     (-----) [003] d..1 82317.850795: cpu_idle: state=0 cpu_id=3
125541          <idle>-0     (-----) [002] ...1 82317.851635: cpu_idle: state=4294967295 cpu_id=2
125542          <idle>-0     (-----) [002] d..1 82317.851641: cpu_idle: state=0 cpu_id=2
125543          <idle>-0     (-----) [000] d.h3 82317.851645: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125544          <idle>-0     (-----) [000] d.h4 82317.851664: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125545          <idle>-0     (-----) [003] .n.1 82317.851672: cpu_idle: state=4294967295 cpu_id=3
125546          <idle>-0     (-----) [000] ...1 82317.851680: cpu_idle: state=4294967295 cpu_id=0
125547          <idle>-0     (-----) [003] d..2 82317.851684: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125548          <idle>-0     (-----) [000] d..1 82317.851690: cpu_idle: state=0 cpu_id=0
125549 kgsl_worker_thr-258   (  258) [003] d..2 82317.851767: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125550          <idle>-0     (-----) [001] d.s2 82317.851812: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
125551          <idle>-0     (-----) [001] dns3 82317.851876: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
125552          <idle>-0     (-----) [001] .n.1 82317.851902: cpu_idle: state=4294967295 cpu_id=1
125553          <idle>-0     (-----) [003] d.s3 82317.851904: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125554          <idle>-0     (-----) [001] d..2 82317.851921: 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
125555          <idle>-0     (-----) [003] d.s4 82317.851931: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125556          <idle>-0     (-----) [002] .n.1 82317.851936: cpu_idle: state=4294967295 cpu_id=2
125557          <idle>-0     (-----) [002] d..2 82317.851955: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125558     rcu_preempt-7     (    7) [001] d..2 82317.851968: 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
125559          <idle>-0     (-----) [003] d..1 82317.851975: cpu_idle: state=0 cpu_id=3
125560          <idle>-0     (-----) [001] d..1 82317.851983: cpu_idle: state=0 cpu_id=1
125561  kworker/u16:15-1311  ( 1311) [002] d..2 82317.852035: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125562          <idle>-0     (-----) [002] d..1 82317.852053: cpu_idle: state=0 cpu_id=2
125563          <idle>-0     (-----) [003] ...1 82317.853221: cpu_idle: state=4294967295 cpu_id=3
125564          <idle>-0     (-----) [003] d..1 82317.853228: cpu_idle: state=0 cpu_id=3
125565          <idle>-0     (-----) [002] ...1 82317.853378: cpu_idle: state=4294967295 cpu_id=2
125566          <idle>-0     (-----) [002] d..1 82317.853384: cpu_idle: state=0 cpu_id=2
125567          <idle>-0     (-----) [001] d.h2 82317.857079: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
125568          <idle>-0     (-----) [001] dnh3 82317.857098: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
125569          <idle>-0     (-----) [001] .n.1 82317.857109: cpu_idle: state=4294967295 cpu_id=1
125570          <idle>-0     (-----) [002] d..2 82317.857122: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125571          <idle>-0     (-----) [001] d..2 82317.857123: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
125572          <idle>-0     (-----) [002] dn.3 82317.857138: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
125573          <idle>-0     (-----) [002] .n.1 82317.857143: cpu_idle: state=4294967295 cpu_id=2
125574        DispSync-8879  ( 8858) [001] d..1 82317.857146: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
125575          <idle>-0     (-----) [002] d..2 82317.857160: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
125576        DispSync-8879  ( 8858) [001] d..2 82317.857184: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
125577     ksoftirqd/2-26    (   26) [002] d..2 82317.857205: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
125578        DispSync-8879  ( 8858) [001] d..2 82317.857233: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125579          <idle>-0     (-----) [001] d..1 82317.857247: cpu_idle: state=0 cpu_id=1
125580  appEventThread-8881  ( 8858) [002] d..3 82317.857282: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125581          <idle>-0     (-----) [004] dnh2 82317.857320: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125582          <idle>-0     (-----) [004] .n.1 82317.857325: cpu_idle: state=4294967295 cpu_id=4
125583          <idle>-0     (-----) [004] d..2 82317.857337: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
125584  appEventThread-8881  ( 8858) [002] d..2 82317.857359: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125585          <idle>-0     (-----) [002] d..1 82317.857380: cpu_idle: state=0 cpu_id=2
125586 s.nexuslauncher-10023 (10023) [004] .... 82317.857610: binder_transaction: transaction=1572704 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
125587 s.nexuslauncher-10023 (10023) [004] .... 82317.857617: binder_transaction_alloc_buf: transaction=1572704 data_size=80 offsets_size=0
125588 s.nexuslauncher-10023 (10023) [004] d..4 82317.857623: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
125589 s.nexuslauncher-10023 (10023) [004] d.h5 82317.857691: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
125590          <idle>-0     (-----) [000] dnh2 82317.857698: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
125591          <idle>-0     (-----) [000] .n.1 82317.857718: cpu_idle: state=4294967295 cpu_id=0
125592          <idle>-0     (-----) [002] dnh2 82317.857720: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
125593          <idle>-0     (-----) [002] .n.1 82317.857729: cpu_idle: state=4294967295 cpu_id=2
125594          <idle>-0     (-----) [000] d..2 82317.857735: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
125595 s.nexuslauncher-10023 (10023) [004] d..3 82317.857737: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
125596          <idle>-0     (-----) [002] d..2 82317.857741: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
125597   Binder:8858_1-8871  ( 8858) [000] .... 82317.857747: binder_transaction_received: transaction=1572704
125598 s.nexuslauncher-10023 (10023) [004] d..4 82317.857755: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125599          <idle>-0     (-----) [005] .n.1 82317.857759: cpu_idle: state=4294967295 cpu_id=5
125600          <idle>-0     (-----) [005] d..2 82317.857770: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
125601         sugov:0-576   (  576) [002] .... 82317.857780: clk_set_rate: pwrcl_clk 748800000
125602         sugov:0-576   (  576) [002] .... 82317.857795: clk_set_rate: cpu3_pwrcl_clk 652800000
125603   Binder:8858_1-8871  ( 8858) [000] d..1 82317.857798: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
125604         sugov:0-576   (  576) [002] .... 82317.857805: clk_set_rate: cpu2_pwrcl_clk 652800000
125605         sugov:0-576   (  576) [002] .... 82317.857814: clk_set_rate: cpu1_pwrcl_clk 652800000
125606    RenderThread-16607 (10023) [005] d..2 82317.857821: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
125607         sugov:0-576   (  576) [002] .... 82317.857823: clk_set_rate: cpu0_pwrcl_clk 748800000
125608          <idle>-0     (-----) [005] d..1 82317.857831: cpu_idle: state=0 cpu_id=5
125609   Binder:8858_1-8871  ( 8858) [000] d..2 82317.857832: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
125610         sugov:0-576   (  576) [002] .... 82317.857833: cpu_frequency: state=748800 cpu_id=0
125611          <idle>-0     (-----) [003] .n.1 82317.857838: cpu_idle: state=4294967295 cpu_id=3
125612         sugov:0-576   (  576) [002] .... 82317.857856: cpu_frequency: state=748800 cpu_id=1
125613          <idle>-0     (-----) [003] d..2 82317.857857: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125614         sugov:0-576   (  576) [002] .... 82317.857862: cpu_frequency: state=748800 cpu_id=2
125615         sugov:0-576   (  576) [002] .... 82317.857866: cpu_frequency: state=748800 cpu_id=3
125616         sugov:0-576   (  576) [002] d..2 82317.857899: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125617   Binder:8858_1-8871  ( 8858) [000] d..2 82317.857901: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125618          <idle>-0     (-----) [002] d..1 82317.857916: cpu_idle: state=0 cpu_id=2
125619          <idle>-0     (-----) [000] d..1 82317.857920: cpu_idle: state=0 cpu_id=0
125620  appEventThread-8881  ( 8858) [003] d..2 82317.857948: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125621          <idle>-0     (-----) [003] d..1 82317.857967: cpu_idle: state=0 cpu_id=3
125622 s.nexuslauncher-10023 (10023) [004] d..3 82317.858056: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
125623 s.nexuslauncher-10023 (10023) [004] d..4 82317.858074: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125624          <idle>-0     (-----) [005] .n.1 82317.858079: cpu_idle: state=4294967295 cpu_id=5
125625          <idle>-0     (-----) [005] d..2 82317.858088: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
125626 s.nexuslauncher-10023 (10023) [004] d..2 82317.858100: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
125627          <idle>-0     (-----) [004] d..1 82317.858118: cpu_idle: state=0 cpu_id=4
125628    RenderThread-16607 (10023) [005] d..1 82317.858230: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125629    RenderThread-16607 (10023) [005] d..2 82317.858246: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125630          <idle>-0     (-----) [004] .n.1 82317.858254: cpu_idle: state=4294967295 cpu_id=4
125631          <idle>-0     (-----) [004] d..2 82317.858264: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
125632    RenderThread-16607 (10023) [005] .... 82317.858294: binder_transaction: transaction=1572705 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
125633    RenderThread-16607 (10023) [005] .... 82317.858299: binder_transaction_alloc_buf: transaction=1572705 data_size=104 offsets_size=0
125634    RenderThread-16607 (10023) [005] ...2 82317.858303: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
125635    RenderThread-16607 (10023) [005] d..4 82317.858306: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
125636    RenderThread-16607 (10023) [005] d..5 82317.858327: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
125637    RenderThread-16607 (10023) [005] d..2 82317.858372: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
125638 s.nexuslauncher-10023 (10023) [004] d..2 82317.858376: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
125639   Binder:8858_1-8871  ( 8858) [005] .... 82317.858383: binder_transaction_received: transaction=1572705
125640          <idle>-0     (-----) [004] d..1 82317.858387: cpu_idle: state=0 cpu_id=4
125641          <idle>-0     (-----) [001] d.s2 82317.858469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
125642   Binder:8858_1-8871  ( 8858) [005] d.s2 82317.858475: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125643          <idle>-0     (-----) [001] dns3 82317.858491: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
125644          <idle>-0     (-----) [001] .n.1 82317.858503: cpu_idle: state=4294967295 cpu_id=1
125645          <idle>-0     (-----) [001] d..2 82317.858514: 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
125646          <idle>-0     (-----) [000] dnh2 82317.858523: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125647     rcu_preempt-7     (    7) [001] d..2 82317.858525: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
125648   Binder:8858_1-8871  ( 8858) [005] .... 82317.858526: binder_transaction: transaction=1572706 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
125649   Binder:8858_1-8871  ( 8858) [005] .... 82317.858530: binder_transaction_alloc_buf: transaction=1572706 data_size=52 offsets_size=8
125650          <idle>-0     (-----) [000] .n.1 82317.858531: cpu_idle: state=4294967295 cpu_id=0
125651   Binder:8858_1-8871  ( 8858) [005] d..2 82317.858538: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
125652   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.858546: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125653          <idle>-0     (-----) [000] d..2 82317.858548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125654   Binder:8858_1-8871  ( 8858) [005] d..2 82317.858553: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
125655    RenderThread-16607 (10023) [005] .... 82317.858563: binder_transaction_received: transaction=1572706
125656     rcu_preempt-7     (    7) [001] d..3 82317.858576: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
125657     rcu_preempt-7     (    7) [001] d..2 82317.858599: 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
125658         rcuop/4-45    (   45) [001] d..2 82317.858611: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
125659         rcuop/4-45    (   45) [001] d..3 82317.858632: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
125660         rcuop/4-45    (   45) [001] d..2 82317.858649: 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
125661         rcuop/5-53    (   53) [001] d..2 82317.858684: 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
125662          <idle>-0     (-----) [001] d..1 82317.858698: cpu_idle: state=0 cpu_id=1
125663  kworker/u16:15-1311  ( 1311) [000] d..2 82317.858879: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
125664          <idle>-0     (-----) [000] d..1 82317.858899: cpu_idle: state=0 cpu_id=0
125665          <idle>-0     (-----) [001] d.s3 82317.858912: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125666          <idle>-0     (-----) [001] d.s4 82317.858926: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
125667          <idle>-0     (-----) [001] d.s4 82317.858937: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125668          <idle>-0     (-----) [000] .n.1 82317.858945: cpu_idle: state=4294967295 cpu_id=0
125669          <idle>-0     (-----) [001] ...1 82317.858950: cpu_idle: state=4294967295 cpu_id=1
125670          <idle>-0     (-----) [001] d..1 82317.858956: cpu_idle: state=0 cpu_id=1
125671          <idle>-0     (-----) [000] d..2 82317.858960: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125672  kworker/u16:15-1311  ( 1311) [000] d..2 82317.858994: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125673          <idle>-0     (-----) [000] d..1 82317.859006: cpu_idle: state=0 cpu_id=0
125674          <idle>-0     (-----) [003] ...1 82317.859263: cpu_idle: state=4294967295 cpu_id=3
125675          <idle>-0     (-----) [003] d..1 82317.859268: cpu_idle: state=0 cpu_id=3
125676    RenderThread-16607 (10023) [005] d..2 82317.859807: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
125677   Binder:8858_1-8871  ( 8858) [005] .... 82317.859820: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
125678   Binder:8858_1-8871  ( 8858) [005] d..2 82317.859887: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
125679          <idle>-0     (-----) [005] d.h2 82317.859904: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
125680          <idle>-0     (-----) [005] d.h3 82317.859912: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
125681          <idle>-0     (-----) [005] dnh3 82317.859914: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125682          <idle>-0     (-----) [005] d..2 82317.859928: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
125683    RenderThread-16607 (10023) [005] .... 82317.860081: binder_transaction: transaction=1572707 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
125684    RenderThread-16607 (10023) [005] .... 82317.860086: binder_transaction_alloc_buf: transaction=1572707 data_size=192 offsets_size=8
125685    RenderThread-16607 (10023) [005] ...2 82317.860093: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
125686    RenderThread-16607 (10023) [005] d..4 82317.860096: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
125687    RenderThread-16607 (10023) [005] d..5 82317.860108: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
125688    RenderThread-16607 (10023) [005] d..2 82317.860119: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
125689   Binder:8858_1-8871  ( 8858) [005] .... 82317.860130: binder_transaction_received: transaction=1572707
125690   Binder:8858_1-8871  ( 8858) [005] .... 82317.860257: binder_transaction: transaction=1572708 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
125691   Binder:8858_1-8871  ( 8858) [005] .... 82317.860261: binder_transaction_alloc_buf: transaction=1572708 data_size=68 offsets_size=0
125692   Binder:8858_1-8871  ( 8858) [005] d..2 82317.860264: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
125693   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.860274: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125694   Binder:8858_1-8871  ( 8858) [005] d..2 82317.860281: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
125695    RenderThread-16607 (10023) [005] .... 82317.860290: binder_transaction_received: transaction=1572708
125696    RenderThread-16607 (10023) [005] d..2 82317.860354: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
125697   Binder:8858_1-8871  ( 8858) [005] .... 82317.860362: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
125698   Binder:8858_1-8871  ( 8858) [005] d..2 82317.860412: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
125699          <idle>-0     (-----) [005] d..1 82317.860428: cpu_idle: state=0 cpu_id=5
125700          <idle>-0     (-----) [001] d.h2 82317.861133: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
125701          <idle>-0     (-----) [001] dnh3 82317.861147: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
125702          <idle>-0     (-----) [001] .n.1 82317.861157: cpu_idle: state=4294967295 cpu_id=1
125703          <idle>-0     (-----) [001] d..2 82317.861169: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
125704        DispSync-8879  ( 8858) [001] d..1 82317.861188: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
125705        DispSync-8879  ( 8858) [001] d..2 82317.861206: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
125706          <idle>-0     (-----) [000] dnh3 82317.861233: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125707        DispSync-8879  ( 8858) [001] d..2 82317.861245: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125708          <idle>-0     (-----) [000] dnh4 82317.861259: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
125709          <idle>-0     (-----) [001] d..1 82317.861261: cpu_idle: state=0 cpu_id=1
125710          <idle>-0     (-----) [003] .n.1 82317.861264: cpu_idle: state=4294967295 cpu_id=3
125711          <idle>-0     (-----) [003] d..2 82317.861277: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
125712          <idle>-0     (-----) [000] .n.1 82317.861277: cpu_idle: state=4294967295 cpu_id=0
125713          <idle>-0     (-----) [000] d..2 82317.861290: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
125714 kgsl_worker_thr-258   (  258) [003] d..2 82317.861332: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125715   sfEventThread-8882  ( 8858) [000] d..3 82317.861348: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
125716 kgsl_worker_thr-258   (  258) [003] d..3 82317.861360: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125717   sfEventThread-8882  ( 8858) [000] d..4 82317.861369: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
125718          <idle>-0     (-----) [002] .n.1 82317.861375: cpu_idle: state=4294967295 cpu_id=2
125719          <idle>-0     (-----) [002] d..2 82317.861388: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
125720 kgsl_worker_thr-258   (  258) [003] d..2 82317.861399: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125721   sfEventThread-8882  ( 8858) [000] d..2 82317.861402: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125722          <idle>-0     (-----) [003] d..1 82317.861416: cpu_idle: state=0 cpu_id=3
125723  kworker/u16:15-1311  ( 1311) [000] d..2 82317.861723: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
125724          <idle>-0     (-----) [000] d..1 82317.861744: cpu_idle: state=0 cpu_id=0
125725          <idle>-0     (-----) [001] d.s3 82317.861748: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125726          <idle>-0     (-----) [001] d.s4 82317.861763: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
125727          <idle>-0     (-----) [001] d.s4 82317.861774: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125728          <idle>-0     (-----) [000] .n.1 82317.861781: cpu_idle: state=4294967295 cpu_id=0
125729          <idle>-0     (-----) [001] ...1 82317.861786: cpu_idle: state=4294967295 cpu_id=1
125730          <idle>-0     (-----) [001] d..1 82317.861794: cpu_idle: state=0 cpu_id=1
125731          <idle>-0     (-----) [000] d..2 82317.861801: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125732  surfaceflinger-8858  ( 8858) [002] d.s2 82317.861827: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125733  kworker/u16:15-1311  ( 1311) [000] d..2 82317.861842: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125734          <idle>-0     (-----) [000] d..1 82317.861856: cpu_idle: state=0 cpu_id=0
125735  surfaceflinger-8858  ( 8858) [002] d.s3 82317.861868: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125736          <idle>-0     (-----) [000] .n.1 82317.861874: cpu_idle: state=4294967295 cpu_id=0
125737          <idle>-0     (-----) [000] d..2 82317.861888: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125738  kworker/u16:15-1311  ( 1311) [000] d..2 82317.861990: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125739          <idle>-0     (-----) [000] d..1 82317.862005: cpu_idle: state=0 cpu_id=0
125740  surfaceflinger-8858  ( 8858) [002] d..2 82317.862008: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
125741  surfaceflinger-8858  ( 8858) [002] d..3 82317.862038: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
125742  surfaceflinger-8858  ( 8858) [002] d..1 82317.862097: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
125743  surfaceflinger-8858  ( 8858) [002] d..2 82317.862118: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
125744          <idle>-0     (-----) [000] .n.1 82317.862124: cpu_idle: state=4294967295 cpu_id=0
125745          <idle>-0     (-----) [000] d..2 82317.862136: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
125746   sfEventThread-8882  ( 8858) [000] d..2 82317.862185: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125747          <idle>-0     (-----) [000] d..1 82317.862199: cpu_idle: state=0 cpu_id=0
125748  surfaceflinger-8858  ( 8858) [002] ...1 82317.862408: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
125749  surfaceflinger-8858  ( 8858) [002] ...1 82317.862419: tracing_mark_write: E|8858
125750  surfaceflinger-8858  ( 8858) [002] .... 82317.862515: binder_transaction: transaction=1572709 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
125751  surfaceflinger-8858  ( 8858) [002] .... 82317.862523: binder_transaction_alloc_buf: transaction=1572709 data_size=540 offsets_size=96
125752  surfaceflinger-8858  ( 8858) [002] ...2 82317.862562: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
125753  surfaceflinger-8858  ( 8858) [002] d..4 82317.862577: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
125754  surfaceflinger-8858  ( 8858) [002] d..5 82317.862603: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
125755          <idle>-0     (-----) [000] .n.1 82317.862609: cpu_idle: state=4294967295 cpu_id=0
125756          <idle>-0     (-----) [000] d..2 82317.862621: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
125757  surfaceflinger-8858  ( 8858) [002] d..2 82317.862633: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
125758 [email protected]   (  619) [000] .... 82317.862639: binder_transaction_received: transaction=1572709
125759         rcuop/2-29    (   29) [002] d..2 82317.862641: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
125760         rcuop/2-29    (   29) [002] d..3 82317.862688: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
125761         rcuop/2-29    (   29) [002] d..2 82317.862701: 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
125762 [email protected]   (  619) [000] ...1 82317.862727: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
125763     rcu_preempt-7     (    7) [002] d..2 82317.862735: 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
125764          <idle>-0     (-----) [002] d..1 82317.862756: cpu_idle: state=0 cpu_id=2
125765 [email protected]   (  619) [000] ...1 82317.862898: tracing_mark_write: B|619|HWCSession::PresentDisplay::
125766 [email protected]   (  619) [000] ...1 82317.863720: tracing_mark_write: B|619|HWDeviceDRM::Validate::
125767 [email protected]   (  619) [000] ...1 82317.864514: tracing_mark_write: E|619
125768 [email protected]   (  619) [000] ...1 82317.864726: tracing_mark_write: B|619|HWDeviceDRM::Commit::
125769 [email protected]   (  619) [000] ...1 82317.864743: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
125770 [email protected]   (  619) [000] d.s2 82317.865167: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125771 [email protected]   (  619) [000] d.s3 82317.865196: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125772 [email protected]   (  619) [000] d..2 82317.865496: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125773 [email protected]   (  619) [000] d..3 82317.865528: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125774          <idle>-0     (-----) [003] .n.1 82317.865533: cpu_idle: state=4294967295 cpu_id=3
125775          <idle>-0     (-----) [003] d..2 82317.865549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
125776 [email protected]   (  619) [000] ...1 82317.865671: tracing_mark_write: E|619
125777 [email protected]   (  619) [000] ...1 82317.865679: tracing_mark_write: E|619
125778 [email protected]   (  619) [000] ...1 82317.865754: tracing_mark_write: E|619
125779 crtc_commit:111-321   (  321) [003] d..2 82317.865775: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125780          <idle>-0     (-----) [003] d..1 82317.865793: cpu_idle: state=0 cpu_id=3
125781 [email protected]   (  619) [000] ...1 82317.865826: tracing_mark_write: E|619
125782 [email protected]   (  619) [000] .... 82317.865853: binder_transaction: transaction=1572710 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
125783 [email protected]   (  619) [000] .... 82317.865859: binder_transaction_alloc_buf: transaction=1572710 data_size=576 offsets_size=112
125784 [email protected]   (  619) [000] d..2 82317.865886: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
125785 [email protected]   (  619) [000] d..3 82317.865911: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
125786 [email protected]   (  619) [000] .... 82317.865917: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
125787          <idle>-0     (-----) [002] .n.1 82317.865918: cpu_idle: state=4294967295 cpu_id=2
125788          <idle>-0     (-----) [002] d..2 82317.865933: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
125789  surfaceflinger-8858  ( 8858) [002] .... 82317.865945: binder_transaction_received: transaction=1572710
125790          <idle>-0     (-----) [001] d.s3 82317.865949: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125791          <idle>-0     (-----) [001] d.s4 82317.865968: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125792          <idle>-0     (-----) [003] .n.1 82317.865974: cpu_idle: state=4294967295 cpu_id=3
125793          <idle>-0     (-----) [001] ...1 82317.865979: cpu_idle: state=4294967295 cpu_id=1
125794          <idle>-0     (-----) [001] d..1 82317.865986: cpu_idle: state=0 cpu_id=1
125795          <idle>-0     (-----) [003] d..2 82317.865987: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
125796 [email protected]   (  619) [000] d..2 82317.866025: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125797  kworker/u16:15-1311  ( 1311) [000] d..2 82317.866110: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125798          <idle>-0     (-----) [000] d..1 82317.866135: cpu_idle: state=0 cpu_id=0
125799 crtc_commit:111-321   (  321) [003] d..2 82317.866170: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125800          <idle>-0     (-----) [003] d..1 82317.866187: cpu_idle: state=0 cpu_id=3
125801          <idle>-0     (-----) [001] d.s3 82317.866188: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125802          <idle>-0     (-----) [001] d.s4 82317.866204: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125803          <idle>-0     (-----) [003] .n.1 82317.866211: cpu_idle: state=4294967295 cpu_id=3
125804          <idle>-0     (-----) [001] ...1 82317.866214: cpu_idle: state=4294967295 cpu_id=1
125805          <idle>-0     (-----) [001] d..1 82317.866221: cpu_idle: state=0 cpu_id=1
125806          <idle>-0     (-----) [003] d..2 82317.866223: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
125807 crtc_commit:111-321   (  321) [003] d..1 82317.866269: clk_enable: disp_cc_mdss_vsync_clk_src
125808 crtc_commit:111-321   (  321) [003] d..1 82317.866273: clk_enable: disp_cc_mdss_rscc_vsync_clk
125809 crtc_commit:111-321   (  321) [003] d..1 82317.866296: clk_enable: disp_cc_mdss_rscc_ahb_clk
125810 crtc_commit:111-321   (  321) [003] d..2 82317.866366: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125811          <idle>-0     (-----) [003] d..1 82317.866379: cpu_idle: state=0 cpu_id=3
125812          <idle>-0     (-----) [003] d.h2 82317.866454: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125813          <idle>-0     (-----) [003] dnh3 82317.866469: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125814          <idle>-0     (-----) [003] .n.1 82317.866480: cpu_idle: state=4294967295 cpu_id=3
125815          <idle>-0     (-----) [003] d..2 82317.866490: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
125816 crtc_commit:111-321   (  321) [003] d..1 82317.866528: clk_enable: gcc_disp_axi_clk
125817 crtc_commit:111-321   (  321) [003] d..1 82317.866542: clk_enable: disp_cc_mdss_ahb_clk
125818 crtc_commit:111-321   (  321) [003] d..1 82317.866554: clk_enable: disp_cc_mdss_axi_clk
125819 crtc_commit:111-321   (  321) [003] d..1 82317.866579: clk_enable: gcc_disp_gpll0_clk_src
125820  surfaceflinger-8858  ( 8858) [002] d..2 82317.866650: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125821          <idle>-0     (-----) [002] d..1 82317.866669: cpu_idle: state=0 cpu_id=2
125822 crtc_commit:111-321   (  321) [003] d..1 82317.867087: clk_enable: disp_cc_mdss_mdp_clk_src
125823 crtc_commit:111-321   (  321) [003] d..1 82317.867122: clk_enable: disp_cc_mdss_mdp_clk
125824 crtc_commit:111-321   (  321) [003] d..1 82317.867134: clk_enable: disp_cc_mdss_vsync_clk
125825          <idle>-0     (-----) [000] ...1 82317.867296: cpu_idle: state=4294967295 cpu_id=0
125826          <idle>-0     (-----) [000] d..1 82317.867302: cpu_idle: state=0 cpu_id=0
125827 crtc_commit:111-321   (  321) [003] d..2 82317.867494: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125828          <idle>-0     (-----) [003] d..1 82317.867515: cpu_idle: state=0 cpu_id=3
125829          <idle>-0     (-----) [001] d.s3 82317.867529: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125830          <idle>-0     (-----) [001] d.s4 82317.867547: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125831          <idle>-0     (-----) [003] .n.1 82317.867554: cpu_idle: state=4294967295 cpu_id=3
125832          <idle>-0     (-----) [001] ...1 82317.867557: cpu_idle: state=4294967295 cpu_id=1
125833          <idle>-0     (-----) [001] d..1 82317.867564: cpu_idle: state=0 cpu_id=1
125834          <idle>-0     (-----) [003] d..2 82317.867567: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
125835          <idle>-0     (-----) [002] d.s2 82317.868478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
125836 crtc_commit:111-321   (  321) [003] d.s2 82317.868492: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125837          <idle>-0     (-----) [002] dns3 82317.868502: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
125838          <idle>-0     (-----) [002] .n.1 82317.868525: cpu_idle: state=4294967295 cpu_id=2
125839          <idle>-0     (-----) [002] d..2 82317.868544: 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
125840 crtc_commit:111-321   (  321) [003] d.s3 82317.868558: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125841     rcu_preempt-7     (    7) [002] d..2 82317.868574: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125842 crtc_commit:111-321   (  321) [003] d.s2 82317.868582: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
125843 crtc_commit:111-321   (  321) [003] d.s3 82317.868609: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
125844  kworker/u16:15-1311  ( 1311) [002] d..2 82317.868629: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
125845  kworker/u16:13-1147  ( 1147) [002] d..2 82317.868644: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125846  kworker/u16:15-1311  ( 1311) [002] .... 82317.868704: clk_set_rate: l3_cluster0_vote_clk 403200000
125847  kworker/u16:15-1311  ( 1311) [002] .... 82317.868712: clk_set_rate: l3_clk 403200000
125848  kworker/u16:15-1311  ( 1311) [002] d..2 82317.868772: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125849          <idle>-0     (-----) [002] d..1 82317.868790: cpu_idle: state=0 cpu_id=2
125850 crtc_commit:111-321   (  321) [003] d..1 82317.869584: clk_enable: disp_cc_mdss_esc0_clk_src
125851 crtc_commit:111-321   (  321) [003] d..1 82317.869587: clk_enable: disp_cc_mdss_esc0_clk
125852 crtc_commit:111-321   (  321) [003] d..1 82317.870056: clk_enable: dsi0pll_vco_clk
125853 crtc_commit:111-321   (  321) [003] d..1 82317.870059: clk_enable: dsi0pll_pll_out_div
125854 crtc_commit:111-321   (  321) [003] d..1 82317.870061: clk_enable: dsi0pll_bitclk_src
125855 crtc_commit:111-321   (  321) [003] d..1 82317.870063: clk_enable: dsi0pll_byteclk_src
125856 crtc_commit:111-321   (  321) [003] d..1 82317.870064: clk_enable: dsi0_phy_pll_out_byteclk
125857 crtc_commit:111-321   (  321) [003] d..1 82317.870066: clk_enable: disp_cc_mdss_byte0_clk_src
125858 crtc_commit:111-321   (  321) [003] d..1 82317.870068: clk_enable: disp_cc_mdss_byte0_clk
125859 crtc_commit:111-321   (  321) [003] d..1 82317.870077: clk_enable: dsi0pll_post_bit_div
125860 crtc_commit:111-321   (  321) [003] d..1 82317.870078: clk_enable: dsi0pll_pclk_src_mux
125861 crtc_commit:111-321   (  321) [003] d..1 82317.870080: clk_enable: dsi0pll_pclk_src
125862 crtc_commit:111-321   (  321) [003] d..1 82317.870081: clk_enable: dsi0_phy_pll_out_dsiclk
125863 crtc_commit:111-321   (  321) [003] d..1 82317.870083: clk_enable: disp_cc_mdss_pclk0_clk_src
125864 crtc_commit:111-321   (  321) [003] d..1 82317.870085: clk_enable: disp_cc_mdss_pclk0_clk
125865 crtc_commit:111-321   (  321) [003] d..1 82317.870092: clk_enable: disp_cc_mdss_byte0_div_clk_src
125866 crtc_commit:111-321   (  321) [003] d..1 82317.870093: clk_enable: disp_cc_mdss_byte0_intf_clk
125867          <idle>-0     (-----) [000] ...1 82317.870164: cpu_idle: state=4294967295 cpu_id=0
125868          <idle>-0     (-----) [001] ...1 82317.870167: cpu_idle: state=4294967295 cpu_id=1
125869          <idle>-0     (-----) [000] d..1 82317.870172: cpu_idle: state=0 cpu_id=0
125870          <idle>-0     (-----) [001] d..1 82317.870173: cpu_idle: state=0 cpu_id=1
125871 crtc_commit:111-321   (  321) [003] d..2 82317.870603: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125872          <idle>-0     (-----) [001] d.s3 82317.870611: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125873          <idle>-0     (-----) [001] d.s4 82317.870628: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125874          <idle>-0     (-----) [001] ...1 82317.870638: cpu_idle: state=4294967295 cpu_id=1
125875          <idle>-0     (-----) [003] d..2 82317.870640: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
125876          <idle>-0     (-----) [001] d..1 82317.870643: cpu_idle: state=0 cpu_id=1
125877 crtc_commit:111-321   (  321) [003] d..2 82317.870697: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
125878          <idle>-0     (-----) [003] d..1 82317.870707: cpu_idle: state=0 cpu_id=3
125879          <idle>-0     (-----) [000] ...1 82317.871325: cpu_idle: state=4294967295 cpu_id=0
125880          <idle>-0     (-----) [000] d..1 82317.871330: cpu_idle: state=0 cpu_id=0
125881          <idle>-0     (-----) [000] d.h5 82317.871728: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125882          <idle>-0     (-----) [000] d.h6 82317.871750: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
125883          <idle>-0     (-----) [003] .n.1 82317.871760: cpu_idle: state=4294967295 cpu_id=3
125884          <idle>-0     (-----) [003] d..2 82317.871769: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
125885          <idle>-0     (-----) [000] d.h5 82317.871843: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
125886          <idle>-0     (-----) [000] dnh6 82317.871879: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
125887 crtc_commit:111-321   (  321) [003] d.H4 82317.871881: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
125888          <idle>-0     (-----) [000] .n.1 82317.871895: cpu_idle: state=4294967295 cpu_id=0
125889 crtc_commit:111-321   (  321) [003] d.H5 82317.871900: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
125890          <idle>-0     (-----) [002] .n.1 82317.871906: cpu_idle: state=4294967295 cpu_id=2
125891          <idle>-0     (-----) [000] d..2 82317.871909: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
125892 crtc_commit:111-321   (  321) [003] d.s4 82317.871911: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
125893          <idle>-0     (-----) [002] d..2 82317.871923: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
125894         sugov:0-576   (  576) [002] .... 82317.871952: clk_set_rate: pwrcl_clk 825600000
125895  crtc_event:111-322   (  322) [000] d..2 82317.871958: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125896         sugov:0-576   (  576) [002] .... 82317.871960: clk_set_rate: cpu3_pwrcl_clk 748800000
125897         sugov:0-576   (  576) [002] .... 82317.871969: clk_set_rate: cpu2_pwrcl_clk 748800000
125898 crtc_commit:111-321   (  321) [003] d.s5 82317.871971: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125899         sugov:0-576   (  576) [002] .... 82317.871978: clk_set_rate: cpu1_pwrcl_clk 748800000
125900          <idle>-0     (-----) [000] d..2 82317.871981: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125901         sugov:0-576   (  576) [002] .... 82317.871986: clk_set_rate: cpu0_pwrcl_clk 825600000
125902 crtc_commit:111-321   (  321) [003] d.s4 82317.871992: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
125903         sugov:0-576   (  576) [002] .... 82317.871995: cpu_frequency: state=825600 cpu_id=0
125904 crtc_commit:111-321   (  321) [003] d.s5 82317.872011: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
125905         sugov:0-576   (  576) [002] .... 82317.872014: cpu_frequency: state=825600 cpu_id=1
125906         sugov:0-576   (  576) [002] .... 82317.872019: cpu_frequency: state=825600 cpu_id=2
125907         sugov:0-576   (  576) [002] .... 82317.872023: cpu_frequency: state=825600 cpu_id=3
125908         sugov:0-576   (  576) [002] d..2 82317.872044: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
125909     rcu_preempt-7     (    7) [002] d..2 82317.872064: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
125910 crtc_commit:111-321   (  321) [003] d..2 82317.872097: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125911          <idle>-0     (-----) [003] dn.1 82317.872115: cpu_idle: state=0 cpu_id=3
125912     rcu_preempt-7     (    7) [002] d..3 82317.872119: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
125913          <idle>-0     (-----) [003] .n.1 82317.872124: cpu_idle: state=4294967295 cpu_id=3
125914          <idle>-0     (-----) [003] d..2 82317.872139: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
125915     rcu_preempt-7     (    7) [002] d..2 82317.872150: 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
125916         rcuop/2-29    (   29) [003] d..2 82317.872161: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
125917          <idle>-0     (-----) [002] d..1 82317.872166: cpu_idle: state=0 cpu_id=2
125918         rcuop/2-29    (   29) [003] d..3 82317.872179: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
125919          <idle>-0     (-----) [002] .n.1 82317.872185: cpu_idle: state=4294967295 cpu_id=2
125920          <idle>-0     (-----) [002] d..2 82317.872198: 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
125921         rcuop/2-29    (   29) [003] d..2 82317.872207: 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
125922          <idle>-0     (-----) [003] d..1 82317.872221: cpu_idle: state=0 cpu_id=3
125923     rcu_preempt-7     (    7) [002] d..2 82317.872223: 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
125924          <idle>-0     (-----) [002] d..1 82317.872234: cpu_idle: state=0 cpu_id=2
125925  kworker/u16:15-1311  ( 1311) [000] d..2 82317.872347: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
125926          <idle>-0     (-----) [000] d..1 82317.872362: cpu_idle: state=0 cpu_id=0
125927          <idle>-0     (-----) [001] d.s3 82317.872369: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125928          <idle>-0     (-----) [001] d.s4 82317.872380: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
125929          <idle>-0     (-----) [001] d.s4 82317.872389: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
125930          <idle>-0     (-----) [000] .n.1 82317.872395: cpu_idle: state=4294967295 cpu_id=0
125931          <idle>-0     (-----) [001] ...1 82317.872399: cpu_idle: state=4294967295 cpu_id=1
125932          <idle>-0     (-----) [001] d..1 82317.872404: cpu_idle: state=0 cpu_id=1
125933          <idle>-0     (-----) [000] d..2 82317.872408: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
125934  kworker/u16:15-1311  ( 1311) [000] d..2 82317.872439: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125935          <idle>-0     (-----) [000] d..1 82317.872450: cpu_idle: state=0 cpu_id=0
125936          <idle>-0     (-----) [003] ...1 82317.873498: cpu_idle: state=4294967295 cpu_id=3
125937          <idle>-0     (-----) [003] d..1 82317.873502: cpu_idle: state=0 cpu_id=3
125938          <idle>-0     (-----) [001] d.h2 82317.873571: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
125939          <idle>-0     (-----) [001] dnh3 82317.873585: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
125940          <idle>-0     (-----) [001] .n.1 82317.873593: cpu_idle: state=4294967295 cpu_id=1
125941          <idle>-0     (-----) [001] d..2 82317.873604: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
125942        DispSync-8879  ( 8858) [001] d..1 82317.873618: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
125943        DispSync-8879  ( 8858) [001] d..2 82317.873634: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
125944          <idle>-0     (-----) [003] .n.1 82317.873639: cpu_idle: state=4294967295 cpu_id=3
125945          <idle>-0     (-----) [003] d..2 82317.873650: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125946        DispSync-8879  ( 8858) [001] d..2 82317.873667: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
125947          <idle>-0     (-----) [001] d..1 82317.873679: cpu_idle: state=0 cpu_id=1
125948  appEventThread-8881  ( 8858) [003] d..3 82317.873702: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125949          <idle>-0     (-----) [004] dnh2 82317.873731: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125950          <idle>-0     (-----) [004] .n.1 82317.873736: cpu_idle: state=4294967295 cpu_id=4
125951          <idle>-0     (-----) [004] d..2 82317.873745: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
125952  appEventThread-8881  ( 8858) [003] d..2 82317.873763: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125953          <idle>-0     (-----) [003] d..1 82317.873780: cpu_idle: state=0 cpu_id=3
125954 s.nexuslauncher-10023 (10023) [004] .... 82317.873954: binder_transaction: transaction=1572711 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
125955 s.nexuslauncher-10023 (10023) [004] .... 82317.873960: binder_transaction_alloc_buf: transaction=1572711 data_size=80 offsets_size=0
125956 s.nexuslauncher-10023 (10023) [004] d..4 82317.873964: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
125957 s.nexuslauncher-10023 (10023) [004] d.h5 82317.874023: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
125958          <idle>-0     (-----) [000] dnh2 82317.874028: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
125959          <idle>-0     (-----) [000] .n.1 82317.874035: cpu_idle: state=4294967295 cpu_id=0
125960          <idle>-0     (-----) [002] dnh2 82317.874045: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
125961          <idle>-0     (-----) [000] d..2 82317.874046: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
125962          <idle>-0     (-----) [002] .n.1 82317.874051: cpu_idle: state=4294967295 cpu_id=2
125963   Binder:8858_1-8871  ( 8858) [000] .... 82317.874057: binder_transaction_received: transaction=1572711
125964          <idle>-0     (-----) [002] d..2 82317.874060: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
125965 s.nexuslauncher-10023 (10023) [004] d..3 82317.874061: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
125966 s.nexuslauncher-10023 (10023) [004] d..4 82317.874076: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125967         sugov:0-576   (  576) [002] .... 82317.874082: clk_set_rate: pwrcl_clk 902400000
125968          <idle>-0     (-----) [005] .n.1 82317.874083: cpu_idle: state=4294967295 cpu_id=5
125969         sugov:0-576   (  576) [002] .... 82317.874090: clk_set_rate: cpu3_pwrcl_clk 825600000
125970          <idle>-0     (-----) [005] d..2 82317.874095: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
125971         sugov:0-576   (  576) [002] .... 82317.874099: clk_set_rate: cpu2_pwrcl_clk 825600000
125972   Binder:8858_1-8871  ( 8858) [000] d..1 82317.874099: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
125973         sugov:0-576   (  576) [002] .... 82317.874107: clk_set_rate: cpu1_pwrcl_clk 825600000
125974         sugov:0-576   (  576) [002] .... 82317.874114: clk_set_rate: cpu0_pwrcl_clk 902400000
125975   Binder:8858_1-8871  ( 8858) [000] d..2 82317.874120: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
125976         sugov:0-576   (  576) [002] .... 82317.874123: cpu_frequency: state=902400 cpu_id=0
125977          <idle>-0     (-----) [003] .n.1 82317.874127: cpu_idle: state=4294967295 cpu_id=3
125978         sugov:0-576   (  576) [002] .... 82317.874137: cpu_frequency: state=902400 cpu_id=1
125979          <idle>-0     (-----) [003] d..2 82317.874139: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
125980    RenderThread-16607 (10023) [005] d..2 82317.874139: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
125981         sugov:0-576   (  576) [002] .... 82317.874141: cpu_frequency: state=902400 cpu_id=2
125982         sugov:0-576   (  576) [002] .... 82317.874145: cpu_frequency: state=902400 cpu_id=3
125983          <idle>-0     (-----) [005] d..1 82317.874150: cpu_idle: state=0 cpu_id=5
125984   Binder:8858_1-8871  ( 8858) [000] d..2 82317.874172: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
125985         sugov:0-576   (  576) [002] d..2 82317.874173: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
125986  appEventThread-8881  ( 8858) [003] d..2 82317.874181: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
125987          <idle>-0     (-----) [002] d..1 82317.874184: cpu_idle: state=0 cpu_id=2
125988          <idle>-0     (-----) [000] d..1 82317.874187: cpu_idle: state=0 cpu_id=0
125989          <idle>-0     (-----) [003] d..1 82317.874193: cpu_idle: state=0 cpu_id=3
125990 s.nexuslauncher-10023 (10023) [004] d..3 82317.874340: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
125991 s.nexuslauncher-10023 (10023) [004] d..4 82317.874357: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
125992          <idle>-0     (-----) [005] .n.1 82317.874362: cpu_idle: state=4294967295 cpu_id=5
125993          <idle>-0     (-----) [005] d..2 82317.874371: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
125994 s.nexuslauncher-10023 (10023) [004] d..2 82317.874381: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
125995          <idle>-0     (-----) [004] d..1 82317.874397: cpu_idle: state=0 cpu_id=4
125996    RenderThread-16607 (10023) [005] d..1 82317.874525: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125997    RenderThread-16607 (10023) [005] d..2 82317.874541: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
125998          <idle>-0     (-----) [004] .n.1 82317.874547: cpu_idle: state=4294967295 cpu_id=4
125999          <idle>-0     (-----) [004] d..2 82317.874556: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
126000    RenderThread-16607 (10023) [005] .... 82317.874584: binder_transaction: transaction=1572712 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
126001    RenderThread-16607 (10023) [005] .... 82317.874589: binder_transaction_alloc_buf: transaction=1572712 data_size=104 offsets_size=0
126002    RenderThread-16607 (10023) [005] ...2 82317.874593: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
126003    RenderThread-16607 (10023) [005] d..4 82317.874596: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
126004    RenderThread-16607 (10023) [005] d..5 82317.874615: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126005    RenderThread-16607 (10023) [005] d..2 82317.874657: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126006   Binder:8858_1-8871  ( 8858) [005] .... 82317.874669: binder_transaction_received: transaction=1572712
126007 s.nexuslauncher-10023 (10023) [004] d..2 82317.874674: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
126008          <idle>-0     (-----) [004] d..1 82317.874684: cpu_idle: state=0 cpu_id=4
126009   Binder:8858_1-8871  ( 8858) [005] .... 82317.874724: binder_transaction: transaction=1572713 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
126010   Binder:8858_1-8871  ( 8858) [005] .... 82317.874728: binder_transaction_alloc_buf: transaction=1572713 data_size=52 offsets_size=8
126011   Binder:8858_1-8871  ( 8858) [005] d..2 82317.874736: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126012   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.874747: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126013   Binder:8858_1-8871  ( 8858) [005] d..2 82317.874753: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
126014    RenderThread-16607 (10023) [005] .... 82317.874761: binder_transaction_received: transaction=1572713
126015          <idle>-0     (-----) [003] ...1 82317.875571: cpu_idle: state=4294967295 cpu_id=3
126016          <idle>-0     (-----) [003] d..1 82317.875575: cpu_idle: state=0 cpu_id=3
126017    RenderThread-16607 (10023) [005] d..2 82317.876030: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126018   Binder:8858_1-8871  ( 8858) [005] .... 82317.876042: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
126019   Binder:8858_1-8871  ( 8858) [005] d..2 82317.876108: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126020          <idle>-0     (-----) [005] d..1 82317.876121: cpu_idle: state=0 cpu_id=5
126021          <idle>-0     (-----) [005] d.h2 82317.876133: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126022          <idle>-0     (-----) [005] d.h3 82317.876140: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
126023          <idle>-0     (-----) [005] dnh3 82317.876143: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126024          <idle>-0     (-----) [005] .n.1 82317.876150: cpu_idle: state=4294967295 cpu_id=5
126025          <idle>-0     (-----) [005] d..2 82317.876158: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126026    RenderThread-16607 (10023) [005] .... 82317.876306: binder_transaction: transaction=1572714 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
126027    RenderThread-16607 (10023) [005] .... 82317.876310: binder_transaction_alloc_buf: transaction=1572714 data_size=192 offsets_size=8
126028    RenderThread-16607 (10023) [005] ...2 82317.876317: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
126029    RenderThread-16607 (10023) [005] d..4 82317.876319: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126030    RenderThread-16607 (10023) [005] d..5 82317.876330: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126031    RenderThread-16607 (10023) [005] d..2 82317.876341: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126032   Binder:8858_1-8871  ( 8858) [005] .... 82317.876350: binder_transaction_received: transaction=1572714
126033   Binder:8858_1-8871  ( 8858) [005] .... 82317.876465: binder_transaction: transaction=1572715 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
126034   Binder:8858_1-8871  ( 8858) [005] .... 82317.876469: binder_transaction_alloc_buf: transaction=1572715 data_size=68 offsets_size=0
126035   Binder:8858_1-8871  ( 8858) [005] d..2 82317.876472: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126036   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.876482: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126037   Binder:8858_1-8871  ( 8858) [005] d..2 82317.876488: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
126038    RenderThread-16607 (10023) [005] .... 82317.876496: binder_transaction_received: transaction=1572715
126039    RenderThread-16607 (10023) [005] d..2 82317.876556: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126040   Binder:8858_1-8871  ( 8858) [005] .... 82317.876563: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
126041   Binder:8858_1-8871  ( 8858) [005] d..2 82317.876609: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126042          <idle>-0     (-----) [005] d..1 82317.876623: cpu_idle: state=0 cpu_id=5
126043          <idle>-0     (-----) [000] d.h3 82317.877460: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
126044          <idle>-0     (-----) [000] d.h4 82317.877483: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
126045          <idle>-0     (-----) [003] .n.1 82317.877488: cpu_idle: state=4294967295 cpu_id=3
126046          <idle>-0     (-----) [003] d..2 82317.877499: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
126047          <idle>-0     (-----) [000] ...1 82317.877499: cpu_idle: state=4294967295 cpu_id=0
126048          <idle>-0     (-----) [000] d..1 82317.877506: cpu_idle: state=0 cpu_id=0
126049 kgsl_worker_thr-258   (  258) [003] d..2 82317.877555: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126050          <idle>-0     (-----) [001] d.h2 82317.877563: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
126051          <idle>-0     (-----) [001] dnh3 82317.877574: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
126052          <idle>-0     (-----) [001] .n.1 82317.877583: cpu_idle: state=4294967295 cpu_id=1
126053          <idle>-0     (-----) [001] d..2 82317.877593: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
126054 kgsl_worker_thr-258   (  258) [003] d..3 82317.877597: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126055        DispSync-8879  ( 8858) [001] d..1 82317.877605: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126056        DispSync-8879  ( 8858) [001] d..2 82317.877620: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126057 kgsl_worker_thr-258   (  258) [003] d..2 82317.877621: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126058          <idle>-0     (-----) [000] .n.1 82317.877626: cpu_idle: state=4294967295 cpu_id=0
126059          <idle>-0     (-----) [000] d..2 82317.877637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
126060        DispSync-8879  ( 8858) [001] d..2 82317.877651: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126061          <idle>-0     (-----) [001] d..1 82317.877663: cpu_idle: state=0 cpu_id=1
126062   sfEventThread-8882  ( 8858) [000] d..3 82317.877680: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126063   sfEventThread-8882  ( 8858) [000] d..4 82317.877697: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126064          <idle>-0     (-----) [002] .n.1 82317.877703: cpu_idle: state=4294967295 cpu_id=2
126065          <idle>-0     (-----) [002] d..2 82317.877713: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
126066   sfEventThread-8882  ( 8858) [000] d..2 82317.877734: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126067          <idle>-0     (-----) [000] d..1 82317.877748: cpu_idle: state=0 cpu_id=0
126068  kworker/u16:15-1311  ( 1311) [003] d..2 82317.877798: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126069          <idle>-0     (-----) [003] d..1 82317.877813: cpu_idle: state=0 cpu_id=3
126070  surfaceflinger-8858  ( 8858) [002] d..1 82317.878069: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126071  surfaceflinger-8858  ( 8858) [002] d..2 82317.878091: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126072          <idle>-0     (-----) [000] .n.1 82317.878096: cpu_idle: state=4294967295 cpu_id=0
126073          <idle>-0     (-----) [000] d..2 82317.878106: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
126074   sfEventThread-8882  ( 8858) [000] d..2 82317.878142: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126075          <idle>-0     (-----) [000] d..1 82317.878153: cpu_idle: state=0 cpu_id=0
126076  surfaceflinger-8858  ( 8858) [002] ...1 82317.878289: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
126077  surfaceflinger-8858  ( 8858) [002] ...1 82317.878298: tracing_mark_write: E|8858
126078  surfaceflinger-8858  ( 8858) [002] .... 82317.878358: binder_transaction: transaction=1572716 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
126079  surfaceflinger-8858  ( 8858) [002] .... 82317.878363: binder_transaction_alloc_buf: transaction=1572716 data_size=540 offsets_size=96
126080  surfaceflinger-8858  ( 8858) [002] ...2 82317.878387: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
126081  surfaceflinger-8858  ( 8858) [002] d..4 82317.878395: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
126082  surfaceflinger-8858  ( 8858) [002] d..5 82317.878416: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
126083          <idle>-0     (-----) [000] .n.1 82317.878421: cpu_idle: state=4294967295 cpu_id=0
126084          <idle>-0     (-----) [000] d..2 82317.878431: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
126085  surfaceflinger-8858  ( 8858) [002] d..2 82317.878455: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126086 [email protected]   (  619) [000] d.s3 82317.878476: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126087          <idle>-0     (-----) [002] d.s3 82317.878489: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126088 [email protected]   (  619) [000] d.s4 82317.878496: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126089          <idle>-0     (-----) [003] .n.1 82317.878502: cpu_idle: state=4294967295 cpu_id=3
126090          <idle>-0     (-----) [002] dns4 82317.878507: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126091 [email protected]   (  619) [000] .... 82317.878512: binder_transaction_received: transaction=1572716
126092          <idle>-0     (-----) [003] d..2 82317.878516: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126093          <idle>-0     (-----) [002] d..2 82317.878533: 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
126094     rcu_preempt-7     (    7) [002] d..2 82317.878564: 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
126095 [email protected]   (  619) [000] ...1 82317.878582: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
126096          <idle>-0     (-----) [002] d..1 82317.878602: cpu_idle: state=0 cpu_id=2
126097          <idle>-0     (-----) [002] ...1 82317.878617: cpu_idle: state=4294967295 cpu_id=2
126098          <idle>-0     (-----) [002] d..1 82317.878621: cpu_idle: state=0 cpu_id=2
126099  kworker/u16:15-1311  ( 1311) [003] .... 82317.878626: clk_set_rate: l3_cluster0_vote_clk 300000000
126100  kworker/u16:15-1311  ( 1311) [003] .... 82317.878631: clk_set_rate: l3_clk 300000000
126101 [email protected]   (  619) [000] ...1 82317.878696: tracing_mark_write: B|619|HWCSession::PresentDisplay::
126102  kworker/u16:15-1311  ( 1311) [003] d..2 82317.878708: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126103          <idle>-0     (-----) [003] d..1 82317.878725: cpu_idle: state=0 cpu_id=3
126104 [email protected]   (  619) [000] ...1 82317.878878: tracing_mark_write: B|619|HWDeviceDRM::Commit::
126105 [email protected]   (  619) [000] ...1 82317.878892: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
126106 [email protected]   (  619) [000] d..2 82317.879502: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126107 [email protected]   (  619) [000] d..3 82317.879530: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126108          <idle>-0     (-----) [003] .n.1 82317.879537: cpu_idle: state=4294967295 cpu_id=3
126109          <idle>-0     (-----) [003] d..2 82317.879548: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126110 [email protected]   (  619) [000] ...1 82317.879654: tracing_mark_write: E|619
126111 [email protected]   (  619) [000] ...1 82317.879661: tracing_mark_write: E|619
126112 [email protected]   (  619) [000] ...1 82317.879731: tracing_mark_write: E|619
126113 [email protected]   (  619) [000] ...1 82317.879786: tracing_mark_write: E|619
126114 [email protected]   (  619) [000] .... 82317.879808: binder_transaction: transaction=1572717 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
126115 [email protected]   (  619) [000] .... 82317.879813: binder_transaction_alloc_buf: transaction=1572717 data_size=576 offsets_size=112
126116 [email protected]   (  619) [000] d..2 82317.879835: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126117 [email protected]   (  619) [000] d..3 82317.879857: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126118          <idle>-0     (-----) [002] .n.1 82317.879861: cpu_idle: state=4294967295 cpu_id=2
126119 [email protected]   (  619) [000] .... 82317.879862: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
126120          <idle>-0     (-----) [002] d..2 82317.879872: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
126121  surfaceflinger-8858  ( 8858) [002] .... 82317.879885: binder_transaction_received: transaction=1572717
126122 [email protected]   (  619) [000] d..2 82317.879966: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126123          <idle>-0     (-----) [000] d..1 82317.879989: cpu_idle: state=0 cpu_id=0
126124 crtc_commit:111-321   (  321) [003] d..2 82317.880298: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
126125          <idle>-0     (-----) [003] d..1 82317.880317: cpu_idle: state=0 cpu_id=3
126126  surfaceflinger-8858  ( 8858) [002] d..2 82317.880374: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126127          <idle>-0     (-----) [002] d..1 82317.880396: cpu_idle: state=0 cpu_id=2
126128          <idle>-0     (-----) [003] d..2 82317.882141: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
126129          <idle>-0     (-----) [003] dn.3 82317.882158: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
126130          <idle>-0     (-----) [003] .n.1 82317.882163: cpu_idle: state=4294967295 cpu_id=3
126131          <idle>-0     (-----) [003] d..2 82317.882178: 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
126132     ksoftirqd/3-34    (   34) [003] d.s2 82317.882191: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126133     ksoftirqd/3-34    (   34) [003] d.s3 82317.882211: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126134     ksoftirqd/3-34    (   34) [003] d..2 82317.882225: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126135  kworker/u16:15-1311  ( 1311) [003] d..2 82317.882426: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
126136          <idle>-0     (-----) [003] d..1 82317.882443: cpu_idle: state=0 cpu_id=3
126137          <idle>-0     (-----) [001] d.s3 82317.882455: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126138          <idle>-0     (-----) [001] d.s4 82317.882468: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
126139          <idle>-0     (-----) [001] d.s4 82317.882478: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126140          <idle>-0     (-----) [003] .n.1 82317.882485: cpu_idle: state=4294967295 cpu_id=3
126141          <idle>-0     (-----) [001] ...1 82317.882489: cpu_idle: state=4294967295 cpu_id=1
126142          <idle>-0     (-----) [001] d..1 82317.882496: cpu_idle: state=0 cpu_id=1
126143          <idle>-0     (-----) [003] d..2 82317.882498: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126144  kworker/u16:15-1311  ( 1311) [003] d..2 82317.882555: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126145          <idle>-0     (-----) [003] d..1 82317.882568: cpu_idle: state=0 cpu_id=3
126146          <idle>-0     (-----) [002] d.s2 82317.885145: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126147          <idle>-0     (-----) [002] dns3 82317.885167: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126148          <idle>-0     (-----) [002] .n.1 82317.885181: cpu_idle: state=4294967295 cpu_id=2
126149          <idle>-0     (-----) [002] d..2 82317.885195: 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
126150     rcu_preempt-7     (    7) [002] d..2 82317.885206: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
126151     rcu_preempt-7     (    7) [002] d..3 82317.885244: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
126152     rcu_preempt-7     (    7) [002] d..2 82317.885257: 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
126153         rcuop/2-29    (   29) [002] d..2 82317.885271: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126154         rcuop/2-29    (   29) [002] d..3 82317.885284: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126155         rcuop/2-29    (   29) [002] d..2 82317.885293: 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
126156     rcu_preempt-7     (    7) [002] d..2 82317.885325: 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
126157          <idle>-0     (-----) [002] d..1 82317.885340: cpu_idle: state=0 cpu_id=2
126158          <idle>-0     (-----) [000] d.h5 82317.885599: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126159          <idle>-0     (-----) [000] dnh6 82317.885615: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126160          <idle>-0     (-----) [000] dnh5 82317.885619: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126161          <idle>-0     (-----) [000] dnh6 82317.885633: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126162          <idle>-0     (-----) [003] .n.1 82317.885639: cpu_idle: state=4294967295 cpu_id=3
126163          <idle>-0     (-----) [000] .n.1 82317.885649: cpu_idle: state=4294967295 cpu_id=0
126164          <idle>-0     (-----) [003] d..2 82317.885651: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126165          <idle>-0     (-----) [000] d..2 82317.885663: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126166  crtc_event:111-322   (  322) [000] d..2 82317.885698: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126167          <idle>-0     (-----) [000] d..1 82317.885711: cpu_idle: state=0 cpu_id=0
126168 crtc_commit:111-321   (  321) [003] d..2 82317.885805: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
126169          <idle>-0     (-----) [003] d..1 82317.885815: cpu_idle: state=0 cpu_id=3
126170          <idle>-0     (-----) [000] d.h5 82317.887910: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126171          <idle>-0     (-----) [000] d.h6 82317.887928: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126172          <idle>-0     (-----) [003] .n.1 82317.887934: cpu_idle: state=4294967295 cpu_id=3
126173          <idle>-0     (-----) [003] d..2 82317.887942: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126174          <idle>-0     (-----) [000] ...1 82317.887943: cpu_idle: state=4294967295 cpu_id=0
126175          <idle>-0     (-----) [000] d..1 82317.887949: cpu_idle: state=0 cpu_id=0
126176 crtc_commit:111-321   (  321) [003] d..2 82317.888013: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126177          <idle>-0     (-----) [003] d..1 82317.888022: cpu_idle: state=0 cpu_id=3
126178          <idle>-0     (-----) [000] d.h5 82317.888213: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126179          <idle>-0     (-----) [000] dnh6 82317.888223: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126180          <idle>-0     (-----) [000] .n.1 82317.888236: cpu_idle: state=4294967295 cpu_id=0
126181          <idle>-0     (-----) [000] d..2 82317.888247: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126182  crtc_event:111-322   (  322) [000] d..2 82317.888273: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126183          <idle>-0     (-----) [000] d..1 82317.888284: cpu_idle: state=0 cpu_id=0
126184          <idle>-0     (-----) [003] d.s3 82317.888478: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126185          <idle>-0     (-----) [003] d.s4 82317.888499: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126186          <idle>-0     (-----) [000] .n.1 82317.888505: cpu_idle: state=4294967295 cpu_id=0
126187          <idle>-0     (-----) [003] d.s3 82317.888506: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126188          <idle>-0     (-----) [000] d..2 82317.888516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126189          <idle>-0     (-----) [003] dns4 82317.888526: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126190          <idle>-0     (-----) [003] dns3 82317.888532: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
126191          <idle>-0     (-----) [003] dns4 82317.888545: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
126192  crtc_event:111-322   (  322) [000] d..2 82317.888549: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126193          <idle>-0     (-----) [000] d..1 82317.888559: cpu_idle: state=0 cpu_id=0
126194          <idle>-0     (-----) [003] .n.1 82317.888565: cpu_idle: state=4294967295 cpu_id=3
126195          <idle>-0     (-----) [003] d..2 82317.888577: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
126196     kworker/3:1-25210 (25210) [003] d..2 82317.888611: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126197  kworker/u16:15-1311  ( 1311) [003] d..2 82317.888670: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126198          <idle>-0     (-----) [003] d..1 82317.888686: cpu_idle: state=0 cpu_id=3
126199          <idle>-0     (-----) [001] d.h2 82317.890029: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
126200          <idle>-0     (-----) [001] dnh3 82317.890041: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
126201          <idle>-0     (-----) [001] .n.1 82317.890048: cpu_idle: state=4294967295 cpu_id=1
126202          <idle>-0     (-----) [001] d..2 82317.890059: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
126203        DispSync-8879  ( 8858) [001] d..1 82317.890072: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
126204        DispSync-8879  ( 8858) [001] d..2 82317.890086: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
126205          <idle>-0     (-----) [003] .n.1 82317.890093: cpu_idle: state=4294967295 cpu_id=3
126206          <idle>-0     (-----) [003] d..2 82317.890105: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
126207        DispSync-8879  ( 8858) [001] d..2 82317.890119: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126208          <idle>-0     (-----) [001] d..1 82317.890130: cpu_idle: state=0 cpu_id=1
126209  appEventThread-8881  ( 8858) [003] d..3 82317.890153: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126210          <idle>-0     (-----) [004] dnh2 82317.890181: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126211          <idle>-0     (-----) [004] .n.1 82317.890185: cpu_idle: state=4294967295 cpu_id=4
126212          <idle>-0     (-----) [004] d..2 82317.890194: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
126213  appEventThread-8881  ( 8858) [003] d..2 82317.890212: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126214          <idle>-0     (-----) [003] d..1 82317.890228: cpu_idle: state=0 cpu_id=3
126215 s.nexuslauncher-10023 (10023) [004] .... 82317.890415: binder_transaction: transaction=1572718 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
126216 s.nexuslauncher-10023 (10023) [004] .... 82317.890420: binder_transaction_alloc_buf: transaction=1572718 data_size=80 offsets_size=0
126217 s.nexuslauncher-10023 (10023) [004] d..4 82317.890425: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
126218          <idle>-0     (-----) [000] dnh2 82317.890492: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
126219          <idle>-0     (-----) [000] .n.1 82317.890498: cpu_idle: state=4294967295 cpu_id=0
126220          <idle>-0     (-----) [000] d..2 82317.890509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
126221 s.nexuslauncher-10023 (10023) [004] d..3 82317.890512: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126222   Binder:8858_1-8871  ( 8858) [000] .... 82317.890521: binder_transaction_received: transaction=1572718
126223 s.nexuslauncher-10023 (10023) [004] d..4 82317.890528: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126224          <idle>-0     (-----) [005] .n.1 82317.890535: cpu_idle: state=4294967295 cpu_id=5
126225          <idle>-0     (-----) [005] d..2 82317.890548: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126226   Binder:8858_1-8871  ( 8858) [000] d..1 82317.890564: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
126227   Binder:8858_1-8871  ( 8858) [000] d..2 82317.890585: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
126228          <idle>-0     (-----) [003] .n.1 82317.890592: cpu_idle: state=4294967295 cpu_id=3
126229    RenderThread-16607 (10023) [005] d..2 82317.890595: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126230          <idle>-0     (-----) [003] d..2 82317.890603: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
126231          <idle>-0     (-----) [005] d..1 82317.890606: cpu_idle: state=0 cpu_id=5
126232   Binder:8858_1-8871  ( 8858) [000] d..2 82317.890635: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126233  appEventThread-8881  ( 8858) [003] d..2 82317.890646: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126234          <idle>-0     (-----) [000] d..1 82317.890654: cpu_idle: state=0 cpu_id=0
126235          <idle>-0     (-----) [003] d..1 82317.890657: cpu_idle: state=0 cpu_id=3
126236 s.nexuslauncher-10023 (10023) [004] d..3 82317.890782: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126237 s.nexuslauncher-10023 (10023) [004] d..4 82317.890800: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126238          <idle>-0     (-----) [005] .n.1 82317.890805: cpu_idle: state=4294967295 cpu_id=5
126239          <idle>-0     (-----) [005] d..2 82317.890814: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126240 s.nexuslauncher-10023 (10023) [004] d..2 82317.890827: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
126241          <idle>-0     (-----) [004] d..1 82317.890844: cpu_idle: state=0 cpu_id=4
126242    RenderThread-16607 (10023) [005] d..1 82317.890959: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126243    RenderThread-16607 (10023) [005] d..2 82317.890975: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126244          <idle>-0     (-----) [004] .n.1 82317.890982: cpu_idle: state=4294967295 cpu_id=4
126245          <idle>-0     (-----) [004] d..2 82317.890991: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
126246    RenderThread-16607 (10023) [005] .... 82317.891025: binder_transaction: transaction=1572719 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
126247    RenderThread-16607 (10023) [005] .... 82317.891029: binder_transaction_alloc_buf: transaction=1572719 data_size=104 offsets_size=0
126248    RenderThread-16607 (10023) [005] ...2 82317.891033: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
126249    RenderThread-16607 (10023) [005] d..4 82317.891036: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
126250    RenderThread-16607 (10023) [005] d..5 82317.891057: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126251 s.nexuslauncher-10023 (10023) [004] d..2 82317.891104: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
126252    RenderThread-16607 (10023) [005] d..2 82317.891106: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126253          <idle>-0     (-----) [004] d..1 82317.891115: cpu_idle: state=0 cpu_id=4
126254   Binder:8858_1-8871  ( 8858) [005] .... 82317.891117: binder_transaction_received: transaction=1572719
126255   Binder:8858_1-8871  ( 8858) [005] .... 82317.891177: binder_transaction: transaction=1572720 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
126256   Binder:8858_1-8871  ( 8858) [005] .... 82317.891181: binder_transaction_alloc_buf: transaction=1572720 data_size=52 offsets_size=8
126257   Binder:8858_1-8871  ( 8858) [005] d..2 82317.891188: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126258   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.891199: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126259   Binder:8858_1-8871  ( 8858) [005] d..2 82317.891205: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
126260    RenderThread-16607 (10023) [005] .... 82317.891214: binder_transaction_received: transaction=1572720
126261    RenderThread-16607 (10023) [005] d.s2 82317.891819: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126262          <idle>-0     (-----) [002] d.s2 82317.891877: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126263          <idle>-0     (-----) [000] dnh2 82317.891899: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126264          <idle>-0     (-----) [002] dns3 82317.891899: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126265          <idle>-0     (-----) [000] .n.1 82317.891906: cpu_idle: state=4294967295 cpu_id=0
126266          <idle>-0     (-----) [000] d..2 82317.891921: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126267          <idle>-0     (-----) [002] .n.1 82317.891922: cpu_idle: state=4294967295 cpu_id=2
126268          <idle>-0     (-----) [002] d..2 82317.891937: 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
126269     rcu_preempt-7     (    7) [002] d..2 82317.891972: 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
126270          <idle>-0     (-----) [002] d..1 82317.891987: cpu_idle: state=0 cpu_id=2
126271  kworker/u16:15-1311  ( 1311) [000] d..2 82317.892024: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126272          <idle>-0     (-----) [000] d..1 82317.892037: cpu_idle: state=0 cpu_id=0
126273    RenderThread-16607 (10023) [005] d..2 82317.892615: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126274   Binder:8858_1-8871  ( 8858) [005] .... 82317.892628: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
126275   Binder:8858_1-8871  ( 8858) [005] d..2 82317.892694: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126276          <idle>-0     (-----) [005] d.h3 82317.892706: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126277          <idle>-0     (-----) [005] d.h4 82317.892713: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
126278          <idle>-0     (-----) [005] dnh4 82317.892717: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126279          <idle>-0     (-----) [005] d..2 82317.892727: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126280    RenderThread-16607 (10023) [005] .... 82317.892881: binder_transaction: transaction=1572721 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
126281    RenderThread-16607 (10023) [005] .... 82317.892885: binder_transaction_alloc_buf: transaction=1572721 data_size=192 offsets_size=8
126282    RenderThread-16607 (10023) [005] ...2 82317.892892: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
126283    RenderThread-16607 (10023) [005] d..4 82317.892895: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126284    RenderThread-16607 (10023) [005] d..5 82317.892907: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126285    RenderThread-16607 (10023) [005] d..2 82317.892919: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126286   Binder:8858_1-8871  ( 8858) [005] .... 82317.892928: binder_transaction_received: transaction=1572721
126287   Binder:8858_1-8871  ( 8858) [005] .... 82317.893045: binder_transaction: transaction=1572722 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
126288   Binder:8858_1-8871  ( 8858) [005] .... 82317.893049: binder_transaction_alloc_buf: transaction=1572722 data_size=68 offsets_size=0
126289   Binder:8858_1-8871  ( 8858) [005] d..2 82317.893052: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126290   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.893063: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126291   Binder:8858_1-8871  ( 8858) [005] d..2 82317.893070: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
126292    RenderThread-16607 (10023) [005] .... 82317.893079: binder_transaction_received: transaction=1572722
126293    RenderThread-16607 (10023) [005] d..2 82317.893143: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126294   Binder:8858_1-8871  ( 8858) [005] .... 82317.893151: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
126295   Binder:8858_1-8871  ( 8858) [005] d..2 82317.893201: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126296          <idle>-0     (-----) [005] d..1 82317.893217: cpu_idle: state=0 cpu_id=5
126297          <idle>-0     (-----) [001] d.h2 82317.894028: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
126298          <idle>-0     (-----) [000] d.h3 82317.894038: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
126299          <idle>-0     (-----) [001] dnh3 82317.894042: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
126300          <idle>-0     (-----) [001] .n.1 82317.894050: cpu_idle: state=4294967295 cpu_id=1
126301          <idle>-0     (-----) [001] d..2 82317.894060: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
126302          <idle>-0     (-----) [000] d.h4 82317.894061: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
126303          <idle>-0     (-----) [003] .n.1 82317.894067: cpu_idle: state=4294967295 cpu_id=3
126304        DispSync-8879  ( 8858) [001] d..1 82317.894072: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126305          <idle>-0     (-----) [000] ...1 82317.894078: cpu_idle: state=4294967295 cpu_id=0
126306          <idle>-0     (-----) [003] d..2 82317.894080: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
126307          <idle>-0     (-----) [000] dn.1 82317.894084: cpu_idle: state=0 cpu_id=0
126308          <idle>-0     (-----) [000] .n.1 82317.894087: cpu_idle: state=4294967295 cpu_id=0
126309        DispSync-8879  ( 8858) [001] d..2 82317.894088: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126310          <idle>-0     (-----) [000] d..2 82317.894102: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
126311        DispSync-8879  ( 8858) [001] d..2 82317.894118: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126312          <idle>-0     (-----) [001] d..1 82317.894132: cpu_idle: state=0 cpu_id=1
126313 kgsl_worker_thr-258   (  258) [003] d..2 82317.894135: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126314   sfEventThread-8882  ( 8858) [000] d..3 82317.894150: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126315 kgsl_worker_thr-258   (  258) [003] d..3 82317.894159: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126316   sfEventThread-8882  ( 8858) [000] d..4 82317.894171: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126317          <idle>-0     (-----) [002] .n.1 82317.894177: cpu_idle: state=4294967295 cpu_id=2
126318          <idle>-0     (-----) [002] d..2 82317.894188: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
126319 kgsl_worker_thr-258   (  258) [003] d..2 82317.894200: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126320   sfEventThread-8882  ( 8858) [000] d..2 82317.894203: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126321          <idle>-0     (-----) [003] d..1 82317.894215: cpu_idle: state=0 cpu_id=3
126322  kworker/u16:15-1311  ( 1311) [000] d..2 82317.894375: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126323          <idle>-0     (-----) [000] d..1 82317.894393: cpu_idle: state=0 cpu_id=0
126324  surfaceflinger-8858  ( 8858) [002] d..1 82317.894525: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126325  surfaceflinger-8858  ( 8858) [002] d..2 82317.894550: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126326          <idle>-0     (-----) [000] .n.1 82317.894556: cpu_idle: state=4294967295 cpu_id=0
126327          <idle>-0     (-----) [000] d..2 82317.894567: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
126328   sfEventThread-8882  ( 8858) [000] d..2 82317.894608: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126329          <idle>-0     (-----) [000] d..1 82317.894619: cpu_idle: state=0 cpu_id=0
126330  surfaceflinger-8858  ( 8858) [002] ...1 82317.894749: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
126331  surfaceflinger-8858  ( 8858) [002] ...1 82317.894758: tracing_mark_write: E|8858
126332  surfaceflinger-8858  ( 8858) [002] .... 82317.894819: binder_transaction: transaction=1572723 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
126333  surfaceflinger-8858  ( 8858) [002] .... 82317.894825: binder_transaction_alloc_buf: transaction=1572723 data_size=540 offsets_size=96
126334  surfaceflinger-8858  ( 8858) [002] ...2 82317.894850: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
126335  surfaceflinger-8858  ( 8858) [002] d..4 82317.894857: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
126336  surfaceflinger-8858  ( 8858) [002] d..5 82317.894880: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
126337          <idle>-0     (-----) [000] .n.1 82317.894885: cpu_idle: state=4294967295 cpu_id=0
126338          <idle>-0     (-----) [000] d..2 82317.894895: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
126339 [email protected]   (  619) [000] .... 82317.894908: binder_transaction_received: transaction=1572723
126340  surfaceflinger-8858  ( 8858) [002] d..2 82317.894918: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126341          <idle>-0     (-----) [002] d..1 82317.894939: cpu_idle: state=0 cpu_id=2
126342 [email protected]   (  619) [000] ...1 82317.894964: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
126343 [email protected]   (  619) [000] ...1 82317.895084: tracing_mark_write: B|619|HWCSession::PresentDisplay::
126344 [email protected]   (  619) [000] d.s2 82317.895154: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126345 [email protected]   (  619) [000] d.s3 82317.895178: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126346 [email protected]   (  619) [000] ...1 82317.895347: tracing_mark_write: B|619|HWDeviceDRM::Commit::
126347 [email protected]   (  619) [000] ...1 82317.895361: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
126348 [email protected]   (  619) [000] d..2 82317.895954: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126349 [email protected]   (  619) [000] d..3 82317.895983: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126350          <idle>-0     (-----) [003] .n.1 82317.895989: cpu_idle: state=4294967295 cpu_id=3
126351          <idle>-0     (-----) [003] d..2 82317.896003: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126352 [email protected]   (  619) [000] ...1 82317.896096: tracing_mark_write: E|619
126353 [email protected]   (  619) [000] ...1 82317.896104: tracing_mark_write: E|619
126354 [email protected]   (  619) [000] ...1 82317.896169: tracing_mark_write: E|619
126355 [email protected]   (  619) [000] ...1 82317.896218: tracing_mark_write: E|619
126356 [email protected]   (  619) [000] .... 82317.896237: binder_transaction: transaction=1572724 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
126357 [email protected]   (  619) [000] .... 82317.896243: binder_transaction_alloc_buf: transaction=1572724 data_size=576 offsets_size=112
126358 [email protected]   (  619) [000] d..2 82317.896266: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126359 [email protected]   (  619) [000] d..3 82317.896288: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126360 [email protected]   (  619) [000] .... 82317.896294: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
126361          <idle>-0     (-----) [002] .n.1 82317.896295: cpu_idle: state=4294967295 cpu_id=2
126362          <idle>-0     (-----) [002] d..2 82317.896309: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
126363  surfaceflinger-8858  ( 8858) [002] .... 82317.896320: binder_transaction_received: transaction=1572724
126364 [email protected]   (  619) [000] d..2 82317.896382: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126365  kworker/u16:15-1311  ( 1311) [000] d..2 82317.896600: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
126366          <idle>-0     (-----) [001] d.s3 82317.896616: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126367          <idle>-0     (-----) [000] d..1 82317.896623: cpu_idle: state=0 cpu_id=0
126368          <idle>-0     (-----) [001] d.s4 82317.896628: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
126369          <idle>-0     (-----) [001] d.s4 82317.896638: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126370          <idle>-0     (-----) [000] .n.1 82317.896646: cpu_idle: state=4294967295 cpu_id=0
126371          <idle>-0     (-----) [001] ...1 82317.896649: cpu_idle: state=4294967295 cpu_id=1
126372          <idle>-0     (-----) [001] d..1 82317.896656: cpu_idle: state=0 cpu_id=1
126373          <idle>-0     (-----) [000] d..2 82317.896660: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126374  kworker/u16:15-1311  ( 1311) [000] d..2 82317.896694: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126375          <idle>-0     (-----) [000] d..1 82317.896706: cpu_idle: state=0 cpu_id=0
126376 crtc_commit:111-321   (  321) [003] d..2 82317.896748: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
126377  surfaceflinger-8858  ( 8858) [002] d..2 82317.896760: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126378          <idle>-0     (-----) [003] d..1 82317.896765: cpu_idle: state=0 cpu_id=3
126379          <idle>-0     (-----) [002] d..1 82317.896777: cpu_idle: state=0 cpu_id=2
126380          <idle>-0     (-----) [000] ...1 82317.897832: cpu_idle: state=4294967295 cpu_id=0
126381          <idle>-0     (-----) [000] d..1 82317.897837: cpu_idle: state=0 cpu_id=0
126382          <idle>-0     (-----) [002] d.s2 82317.898479: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126383          <idle>-0     (-----) [002] dns3 82317.898501: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126384          <idle>-0     (-----) [002] dns3 82317.898508: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126385          <idle>-0     (-----) [002] dns4 82317.898524: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126386          <idle>-0     (-----) [000] .n.1 82317.898529: cpu_idle: state=4294967295 cpu_id=0
126387          <idle>-0     (-----) [002] .n.1 82317.898533: cpu_idle: state=4294967295 cpu_id=2
126388          <idle>-0     (-----) [000] d..2 82317.898543: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126389          <idle>-0     (-----) [002] d..2 82317.898544: 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
126390     rcu_preempt-7     (    7) [002] d..2 82317.898554: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
126391     rcu_preempt-7     (    7) [002] d..3 82317.898572: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
126392     rcu_preempt-7     (    7) [002] d..2 82317.898592: 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
126393         rcuop/2-29    (   29) [002] d..2 82317.898618: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126394         rcuop/2-29    (   29) [002] d..3 82317.898632: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126395         rcuop/2-29    (   29) [002] d..2 82317.898641: 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
126396  kworker/u16:15-1311  ( 1311) [000] d..2 82317.898665: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126397     rcu_preempt-7     (    7) [002] d..2 82317.898667: 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
126398          <idle>-0     (-----) [000] d..1 82317.898679: cpu_idle: state=0 cpu_id=0
126399          <idle>-0     (-----) [002] d..1 82317.898684: cpu_idle: state=0 cpu_id=2
126400          <idle>-0     (-----) [000] ...1 82317.899802: cpu_idle: state=4294967295 cpu_id=0
126401          <idle>-0     (-----) [000] d..1 82317.899807: cpu_idle: state=0 cpu_id=0
126402          <idle>-0     (-----) [000] d.h5 82317.902053: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126403          <idle>-0     (-----) [000] dnh6 82317.902072: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126404          <idle>-0     (-----) [000] dnh5 82317.902078: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126405          <idle>-0     (-----) [000] dnh6 82317.902092: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126406          <idle>-0     (-----) [003] .n.1 82317.902099: cpu_idle: state=4294967295 cpu_id=3
126407          <idle>-0     (-----) [000] .n.1 82317.902106: cpu_idle: state=4294967295 cpu_id=0
126408          <idle>-0     (-----) [003] d..2 82317.902111: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126409          <idle>-0     (-----) [000] d..2 82317.902120: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126410  crtc_event:111-322   (  322) [000] d..2 82317.902154: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126411          <idle>-0     (-----) [000] d..2 82317.902159: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
126412          <idle>-0     (-----) [000] dn.3 82317.902172: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
126413          <idle>-0     (-----) [000] d..2 82317.902181: 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
126414     ksoftirqd/0-3     (    3) [000] d.s2 82317.902192: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126415     ksoftirqd/0-3     (    3) [000] d.s3 82317.902210: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126416     ksoftirqd/0-3     (    3) [000] d..2 82317.902223: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126417 crtc_commit:111-321   (  321) [003] d..2 82317.902258: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
126418          <idle>-0     (-----) [003] d..1 82317.902289: cpu_idle: state=0 cpu_id=3
126419          <idle>-0     (-----) [003] ...1 82317.902303: cpu_idle: state=4294967295 cpu_id=3
126420          <idle>-0     (-----) [003] d..1 82317.902307: cpu_idle: state=0 cpu_id=3
126421  kworker/u16:15-1311  ( 1311) [000] d..2 82317.902343: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126422          <idle>-0     (-----) [000] d..1 82317.902360: cpu_idle: state=0 cpu_id=0
126423          <idle>-0     (-----) [000] d.h5 82317.904387: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126424          <idle>-0     (-----) [000] d.h6 82317.904406: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126425          <idle>-0     (-----) [003] .n.1 82317.904411: cpu_idle: state=4294967295 cpu_id=3
126426          <idle>-0     (-----) [003] d..2 82317.904419: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126427          <idle>-0     (-----) [000] ...1 82317.904424: cpu_idle: state=4294967295 cpu_id=0
126428          <idle>-0     (-----) [000] d..1 82317.904430: cpu_idle: state=0 cpu_id=0
126429 crtc_commit:111-321   (  321) [003] d..2 82317.904491: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126430          <idle>-0     (-----) [003] d..1 82317.904500: cpu_idle: state=0 cpu_id=3
126431          <idle>-0     (-----) [000] d.h5 82317.904685: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126432          <idle>-0     (-----) [000] dnh6 82317.904696: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126433          <idle>-0     (-----) [000] .n.1 82317.904717: cpu_idle: state=4294967295 cpu_id=0
126434          <idle>-0     (-----) [000] d..2 82317.904728: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126435  crtc_event:111-322   (  322) [000] d..2 82317.904755: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126436          <idle>-0     (-----) [000] d..1 82317.904766: cpu_idle: state=0 cpu_id=0
126437          <idle>-0     (-----) [002] d.s2 82317.905138: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126438          <idle>-0     (-----) [003] d.s3 82317.905140: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126439          <idle>-0     (-----) [002] dns3 82317.905154: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126440          <idle>-0     (-----) [003] d.s4 82317.905161: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126441          <idle>-0     (-----) [000] .n.1 82317.905167: cpu_idle: state=4294967295 cpu_id=0
126442          <idle>-0     (-----) [002] .n.1 82317.905173: cpu_idle: state=4294967295 cpu_id=2
126443          <idle>-0     (-----) [000] d..2 82317.905179: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126444          <idle>-0     (-----) [002] d..2 82317.905188: 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
126445          <idle>-0     (-----) [003] ...1 82317.905190: cpu_idle: state=4294967295 cpu_id=3
126446          <idle>-0     (-----) [003] d..1 82317.905197: cpu_idle: state=0 cpu_id=3
126447  crtc_event:111-322   (  322) [000] d..2 82317.905215: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126448     rcu_preempt-7     (    7) [002] d..2 82317.905217: 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
126449          <idle>-0     (-----) [000] d..1 82317.905224: cpu_idle: state=0 cpu_id=0
126450          <idle>-0     (-----) [002] d..1 82317.905230: cpu_idle: state=0 cpu_id=2
126451          <idle>-0     (-----) [001] d.h2 82317.906496: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
126452          <idle>-0     (-----) [001] dnh3 82317.906509: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
126453          <idle>-0     (-----) [001] .n.1 82317.906516: cpu_idle: state=4294967295 cpu_id=1
126454          <idle>-0     (-----) [001] d..2 82317.906527: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
126455        DispSync-8879  ( 8858) [001] d..1 82317.906542: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
126456        DispSync-8879  ( 8858) [001] d..2 82317.906558: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
126457          <idle>-0     (-----) [003] .n.1 82317.906563: cpu_idle: state=4294967295 cpu_id=3
126458          <idle>-0     (-----) [003] d..2 82317.906575: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
126459        DispSync-8879  ( 8858) [001] d..2 82317.906590: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126460          <idle>-0     (-----) [001] d..1 82317.906603: cpu_idle: state=0 cpu_id=1
126461  appEventThread-8881  ( 8858) [003] d..3 82317.906619: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126462          <idle>-0     (-----) [004] dnh2 82317.906649: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126463          <idle>-0     (-----) [004] .n.1 82317.906654: cpu_idle: state=4294967295 cpu_id=4
126464          <idle>-0     (-----) [004] d..2 82317.906663: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
126465  appEventThread-8881  ( 8858) [003] d..2 82317.906679: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126466          <idle>-0     (-----) [003] d..1 82317.906695: cpu_idle: state=0 cpu_id=3
126467 s.nexuslauncher-10023 (10023) [004] .... 82317.906871: binder_transaction: transaction=1572725 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
126468 s.nexuslauncher-10023 (10023) [004] .... 82317.906876: binder_transaction_alloc_buf: transaction=1572725 data_size=80 offsets_size=0
126469 s.nexuslauncher-10023 (10023) [004] d..4 82317.906882: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
126470 s.nexuslauncher-10023 (10023) [004] d.h5 82317.906942: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
126471          <idle>-0     (-----) [000] dnh2 82317.906947: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
126472          <idle>-0     (-----) [000] .n.1 82317.906953: cpu_idle: state=4294967295 cpu_id=0
126473          <idle>-0     (-----) [000] d..2 82317.906964: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
126474          <idle>-0     (-----) [002] dnh2 82317.906970: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
126475   Binder:8858_1-8871  ( 8858) [000] .... 82317.906976: binder_transaction_received: transaction=1572725
126476          <idle>-0     (-----) [002] .n.1 82317.906976: cpu_idle: state=4294967295 cpu_id=2
126477 s.nexuslauncher-10023 (10023) [004] d..3 82317.906985: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126478          <idle>-0     (-----) [002] d..2 82317.906986: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
126479 s.nexuslauncher-10023 (10023) [004] d..4 82317.907002: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126480          <idle>-0     (-----) [005] .n.1 82317.907009: cpu_idle: state=4294967295 cpu_id=5
126481         sugov:0-576   (  576) [002] .... 82317.907019: clk_set_rate: pwrcl_clk 825600000
126482          <idle>-0     (-----) [005] d..2 82317.907020: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126483   Binder:8858_1-8871  ( 8858) [000] d..1 82317.907021: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
126484         sugov:0-576   (  576) [002] .... 82317.907035: clk_set_rate: cpu3_pwrcl_clk 902400000
126485   Binder:8858_1-8871  ( 8858) [000] d..2 82317.907042: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
126486         sugov:0-576   (  576) [002] .... 82317.907045: clk_set_rate: cpu2_pwrcl_clk 902400000
126487          <idle>-0     (-----) [003] .n.1 82317.907048: cpu_idle: state=4294967295 cpu_id=3
126488         sugov:0-576   (  576) [002] .... 82317.907052: clk_set_rate: cpu1_pwrcl_clk 902400000
126489          <idle>-0     (-----) [003] d..2 82317.907059: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
126490         sugov:0-576   (  576) [002] .... 82317.907060: clk_set_rate: cpu0_pwrcl_clk 825600000
126491    RenderThread-16607 (10023) [005] d..2 82317.907064: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126492          <idle>-0     (-----) [005] d..1 82317.907076: cpu_idle: state=0 cpu_id=5
126493   Binder:8858_1-8871  ( 8858) [000] d..2 82317.907104: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126494  appEventThread-8881  ( 8858) [003] d..2 82317.907113: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126495          <idle>-0     (-----) [000] d..1 82317.907124: cpu_idle: state=0 cpu_id=0
126496          <idle>-0     (-----) [003] d..1 82317.907127: cpu_idle: state=0 cpu_id=3
126497         sugov:0-576   (  576) [002] .... 82317.907173: cpu_frequency: state=825600 cpu_id=0
126498         sugov:0-576   (  576) [002] .... 82317.907194: cpu_frequency: state=825600 cpu_id=1
126499         sugov:0-576   (  576) [002] .... 82317.907199: cpu_frequency: state=825600 cpu_id=2
126500         sugov:0-576   (  576) [002] .... 82317.907203: cpu_frequency: state=825600 cpu_id=3
126501         sugov:0-576   (  576) [002] d..2 82317.907234: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126502          <idle>-0     (-----) [002] d..1 82317.907248: cpu_idle: state=0 cpu_id=2
126503 s.nexuslauncher-10023 (10023) [004] d..3 82317.907250: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126504 s.nexuslauncher-10023 (10023) [004] d..4 82317.907267: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126505          <idle>-0     (-----) [005] .n.1 82317.907273: cpu_idle: state=4294967295 cpu_id=5
126506          <idle>-0     (-----) [005] d..2 82317.907281: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126507 s.nexuslauncher-10023 (10023) [004] d..2 82317.907293: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
126508          <idle>-0     (-----) [004] d..1 82317.907310: cpu_idle: state=0 cpu_id=4
126509    RenderThread-16607 (10023) [005] d..1 82317.907432: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126510    RenderThread-16607 (10023) [005] d..2 82317.907449: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126511          <idle>-0     (-----) [004] .n.1 82317.907456: cpu_idle: state=4294967295 cpu_id=4
126512          <idle>-0     (-----) [004] d..2 82317.907466: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
126513    RenderThread-16607 (10023) [005] .... 82317.907498: binder_transaction: transaction=1572726 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
126514    RenderThread-16607 (10023) [005] .... 82317.907502: binder_transaction_alloc_buf: transaction=1572726 data_size=104 offsets_size=0
126515    RenderThread-16607 (10023) [005] ...2 82317.907506: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
126516    RenderThread-16607 (10023) [005] d..4 82317.907510: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
126517    RenderThread-16607 (10023) [005] d..5 82317.907530: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126518 s.nexuslauncher-10023 (10023) [004] d..2 82317.907575: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
126519    RenderThread-16607 (10023) [005] d..2 82317.907577: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126520          <idle>-0     (-----) [004] d..1 82317.907585: cpu_idle: state=0 cpu_id=4
126521   Binder:8858_1-8871  ( 8858) [005] .... 82317.907588: binder_transaction_received: transaction=1572726
126522   Binder:8858_1-8871  ( 8858) [005] .... 82317.907646: binder_transaction: transaction=1572727 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
126523   Binder:8858_1-8871  ( 8858) [005] .... 82317.907650: binder_transaction_alloc_buf: transaction=1572727 data_size=52 offsets_size=8
126524   Binder:8858_1-8871  ( 8858) [005] d..2 82317.907656: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126525   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.907667: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126526   Binder:8858_1-8871  ( 8858) [005] d..2 82317.907674: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
126527    RenderThread-16607 (10023) [005] .... 82317.907682: binder_transaction_received: transaction=1572727
126528    RenderThread-16607 (10023) [005] d.s2 82317.908485: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126529          <idle>-0     (-----) [000] dnh2 82317.908520: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126530          <idle>-0     (-----) [000] .n.1 82317.908528: cpu_idle: state=4294967295 cpu_id=0
126531          <idle>-0     (-----) [000] d..2 82317.908543: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126532  kworker/u16:15-1311  ( 1311) [000] d..2 82317.908651: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126533          <idle>-0     (-----) [000] d..1 82317.908665: cpu_idle: state=0 cpu_id=0
126534          <idle>-0     (-----) [003] ...1 82317.908724: cpu_idle: state=4294967295 cpu_id=3
126535          <idle>-0     (-----) [003] d..1 82317.908730: cpu_idle: state=0 cpu_id=3
126536    RenderThread-16607 (10023) [005] d..2 82317.909057: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126537   Binder:8858_1-8871  ( 8858) [005] .... 82317.909070: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
126538   Binder:8858_1-8871  ( 8858) [005] d..2 82317.909137: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126539          <idle>-0     (-----) [005] d.h2 82317.909154: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126540          <idle>-0     (-----) [005] d.h3 82317.909161: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
126541          <idle>-0     (-----) [005] dnh3 82317.909165: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126542          <idle>-0     (-----) [005] d..2 82317.909178: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126543    RenderThread-16607 (10023) [005] .... 82317.909331: binder_transaction: transaction=1572728 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
126544    RenderThread-16607 (10023) [005] .... 82317.909336: binder_transaction_alloc_buf: transaction=1572728 data_size=192 offsets_size=8
126545    RenderThread-16607 (10023) [005] ...2 82317.909343: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
126546    RenderThread-16607 (10023) [005] d..4 82317.909346: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126547    RenderThread-16607 (10023) [005] d..5 82317.909358: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126548    RenderThread-16607 (10023) [005] d..2 82317.909370: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126549   Binder:8858_1-8871  ( 8858) [005] .... 82317.909381: binder_transaction_received: transaction=1572728
126550   Binder:8858_1-8871  ( 8858) [005] .... 82317.909502: binder_transaction: transaction=1572729 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
126551   Binder:8858_1-8871  ( 8858) [005] .... 82317.909506: binder_transaction_alloc_buf: transaction=1572729 data_size=68 offsets_size=0
126552   Binder:8858_1-8871  ( 8858) [005] d..2 82317.909509: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126553   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.909520: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126554   Binder:8858_1-8871  ( 8858) [005] d..2 82317.909527: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
126555    RenderThread-16607 (10023) [005] .... 82317.909536: binder_transaction_received: transaction=1572729
126556    RenderThread-16607 (10023) [005] d..2 82317.909602: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126557   Binder:8858_1-8871  ( 8858) [005] .... 82317.909610: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
126558   Binder:8858_1-8871  ( 8858) [005] d..2 82317.909659: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126559          <idle>-0     (-----) [005] d..1 82317.909676: cpu_idle: state=0 cpu_id=5
126560          <idle>-0     (-----) [000] d.h3 82317.910487: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
126561          <idle>-0     (-----) [001] d.h2 82317.910500: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
126562          <idle>-0     (-----) [000] d.h4 82317.910508: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
126563          <idle>-0     (-----) [001] dnh3 82317.910512: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
126564          <idle>-0     (-----) [003] .n.1 82317.910514: cpu_idle: state=4294967295 cpu_id=3
126565          <idle>-0     (-----) [001] .n.1 82317.910520: cpu_idle: state=4294967295 cpu_id=1
126566          <idle>-0     (-----) [000] ...1 82317.910526: cpu_idle: state=4294967295 cpu_id=0
126567          <idle>-0     (-----) [003] d..2 82317.910526: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
126568          <idle>-0     (-----) [001] d..2 82317.910532: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
126569          <idle>-0     (-----) [000] d..1 82317.910532: cpu_idle: state=0 cpu_id=0
126570        DispSync-8879  ( 8858) [001] d..1 82317.910544: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126571        DispSync-8879  ( 8858) [001] d..2 82317.910559: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126572          <idle>-0     (-----) [000] .n.1 82317.910564: cpu_idle: state=4294967295 cpu_id=0
126573          <idle>-0     (-----) [000] d..2 82317.910576: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
126574 kgsl_worker_thr-258   (  258) [003] d..2 82317.910584: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
126575        DispSync-8879  ( 8858) [001] d..2 82317.910590: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126576          <idle>-0     (-----) [001] d..1 82317.910604: cpu_idle: state=0 cpu_id=1
126577 kgsl_worker_thr-258   (  258) [003] d..3 82317.910621: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
126578   sfEventThread-8882  ( 8858) [000] d..3 82317.910626: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126579          <idle>-0     (-----) [001] .n.1 82317.910627: cpu_idle: state=4294967295 cpu_id=1
126580          <idle>-0     (-----) [001] d..2 82317.910641: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126581   sfEventThread-8882  ( 8858) [000] d..4 82317.910643: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126582          <idle>-0     (-----) [002] .n.1 82317.910650: cpu_idle: state=4294967295 cpu_id=2
126583 kgsl_worker_thr-258   (  258) [003] d..2 82317.910658: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126584          <idle>-0     (-----) [002] d..2 82317.910662: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
126585          <idle>-0     (-----) [003] d..1 82317.910674: cpu_idle: state=0 cpu_id=3
126586   sfEventThread-8882  ( 8858) [000] d..2 82317.910686: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126587          <idle>-0     (-----) [000] d..1 82317.910701: cpu_idle: state=0 cpu_id=0
126588  kworker/u16:15-1311  ( 1311) [001] d..2 82317.910819: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126589          <idle>-0     (-----) [001] d..1 82317.910835: cpu_idle: state=0 cpu_id=1
126590  surfaceflinger-8858  ( 8858) [002] d..1 82317.911019: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126591  surfaceflinger-8858  ( 8858) [002] d..2 82317.911046: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126592          <idle>-0     (-----) [000] .n.1 82317.911051: cpu_idle: state=4294967295 cpu_id=0
126593          <idle>-0     (-----) [000] d..2 82317.911063: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
126594   sfEventThread-8882  ( 8858) [000] d..2 82317.911103: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126595          <idle>-0     (-----) [000] d..1 82317.911114: cpu_idle: state=0 cpu_id=0
126596  surfaceflinger-8858  ( 8858) [002] ...1 82317.911251: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
126597  surfaceflinger-8858  ( 8858) [002] ...1 82317.911260: tracing_mark_write: E|8858
126598  surfaceflinger-8858  ( 8858) [002] .... 82317.911326: binder_transaction: transaction=1572730 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
126599  surfaceflinger-8858  ( 8858) [002] .... 82317.911332: binder_transaction_alloc_buf: transaction=1572730 data_size=540 offsets_size=96
126600  surfaceflinger-8858  ( 8858) [002] ...2 82317.911359: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
126601  surfaceflinger-8858  ( 8858) [002] d..4 82317.911367: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
126602  surfaceflinger-8858  ( 8858) [002] d..5 82317.911390: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
126603          <idle>-0     (-----) [000] .n.1 82317.911394: cpu_idle: state=4294967295 cpu_id=0
126604          <idle>-0     (-----) [000] d..2 82317.911407: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
126605 [email protected]   (  619) [000] .... 82317.911419: binder_transaction_received: transaction=1572730
126606  surfaceflinger-8858  ( 8858) [002] d..2 82317.911430: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126607          <idle>-0     (-----) [002] d..1 82317.911447: cpu_idle: state=0 cpu_id=2
126608 [email protected]   (  619) [000] ...1 82317.911475: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
126609 [email protected]   (  619) [000] ...1 82317.911606: tracing_mark_write: B|619|HWCSession::PresentDisplay::
126610 [email protected]   (  619) [000] d.s2 82317.911876: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
126611          <idle>-0     (-----) [002] d.s2 82317.911880: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126612 [email protected]   (  619) [000] d.s3 82317.911903: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
126613          <idle>-0     (-----) [002] dns3 82317.911907: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126614          <idle>-0     (-----) [001] .n.1 82317.911908: cpu_idle: state=4294967295 cpu_id=1
126615          <idle>-0     (-----) [002] .n.1 82317.911918: cpu_idle: state=4294967295 cpu_id=2
126616          <idle>-0     (-----) [001] d..2 82317.911925: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126617          <idle>-0     (-----) [002] d..2 82317.911930: 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
126618 [email protected]   (  619) [000] ...1 82317.911939: tracing_mark_write: B|619|HWDeviceDRM::Commit::
126619     rcu_preempt-7     (    7) [002] d..2 82317.911940: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
126620 [email protected]   (  619) [000] ...1 82317.911954: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
126621     rcu_preempt-7     (    7) [002] d..3 82317.911958: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
126622     rcu_preempt-7     (    7) [002] d..2 82317.911971: 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
126623         rcuop/2-29    (   29) [002] d..2 82317.911981: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126624         rcuop/2-29    (   29) [002] d..3 82317.911995: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126625         rcuop/2-29    (   29) [002] d..2 82317.912004: 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
126626     rcu_preempt-7     (    7) [002] d..2 82317.912049: 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
126627          <idle>-0     (-----) [002] d..1 82317.912077: cpu_idle: state=0 cpu_id=2
126628  kworker/u16:15-1311  ( 1311) [001] d..2 82317.912093: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126629          <idle>-0     (-----) [001] d..1 82317.912107: cpu_idle: state=0 cpu_id=1
126630 [email protected]   (  619) [000] d..2 82317.912613: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126631 [email protected]   (  619) [000] d..3 82317.912643: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126632          <idle>-0     (-----) [003] .n.1 82317.912648: cpu_idle: state=4294967295 cpu_id=3
126633          <idle>-0     (-----) [003] d..2 82317.912661: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126634 [email protected]   (  619) [000] ...1 82317.912763: tracing_mark_write: E|619
126635 [email protected]   (  619) [000] ...1 82317.912771: tracing_mark_write: E|619
126636 [email protected]   (  619) [000] ...1 82317.912837: tracing_mark_write: E|619
126637 [email protected]   (  619) [000] ...1 82317.912890: tracing_mark_write: E|619
126638 [email protected]   (  619) [000] .... 82317.912909: binder_transaction: transaction=1572731 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
126639 [email protected]   (  619) [000] .... 82317.912913: binder_transaction_alloc_buf: transaction=1572731 data_size=576 offsets_size=112
126640 [email protected]   (  619) [000] d..2 82317.912936: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126641 [email protected]   (  619) [000] d..3 82317.912960: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126642 [email protected]   (  619) [000] .... 82317.912965: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
126643          <idle>-0     (-----) [002] .n.1 82317.912966: cpu_idle: state=4294967295 cpu_id=2
126644          <idle>-0     (-----) [002] d..2 82317.912978: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
126645  surfaceflinger-8858  ( 8858) [002] .... 82317.912990: binder_transaction_received: transaction=1572731
126646 [email protected]   (  619) [000] d..2 82317.913069: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126647          <idle>-0     (-----) [000] d..1 82317.913093: cpu_idle: state=0 cpu_id=0
126648 crtc_commit:111-321   (  321) [003] d..2 82317.913421: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
126649          <idle>-0     (-----) [003] d..1 82317.913439: cpu_idle: state=0 cpu_id=3
126650  surfaceflinger-8858  ( 8858) [002] d..2 82317.913454: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126651          <idle>-0     (-----) [002] d..1 82317.913477: cpu_idle: state=0 cpu_id=2
126652          <idle>-0     (-----) [002] d.s2 82317.918475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126653          <idle>-0     (-----) [002] dns3 82317.918497: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126654          <idle>-0     (-----) [002] dns3 82317.918504: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
126655          <idle>-0     (-----) [000] d.h5 82317.918529: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126656          <idle>-0     (-----) [002] dns4 82317.918544: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
126657          <idle>-0     (-----) [000] dnh6 82317.918548: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126658          <idle>-0     (-----) [000] dnh5 82317.918552: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126659          <idle>-0     (-----) [002] .n.1 82317.918567: cpu_idle: state=4294967295 cpu_id=2
126660          <idle>-0     (-----) [000] dnh6 82317.918568: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126661          <idle>-0     (-----) [003] .n.1 82317.918576: cpu_idle: state=4294967295 cpu_id=3
126662          <idle>-0     (-----) [002] d..2 82317.918585: 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
126663          <idle>-0     (-----) [000] .n.1 82317.918585: cpu_idle: state=4294967295 cpu_id=0
126664          <idle>-0     (-----) [003] d..2 82317.918590: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126665          <idle>-0     (-----) [000] d..2 82317.918601: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126666     rcu_preempt-7     (    7) [002] d..2 82317.918608: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126667  crtc_event:111-322   (  322) [000] d..2 82317.918640: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126668          <idle>-0     (-----) [000] d..1 82317.918653: cpu_idle: state=0 cpu_id=0
126669 crtc_commit:111-321   (  321) [003] d..2 82317.918735: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
126670          <idle>-0     (-----) [003] d..1 82317.918745: cpu_idle: state=0 cpu_id=3
126671  kworker/u16:15-1311  ( 1311) [002] d..2 82317.918822: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
126672          <idle>-0     (-----) [002] d..1 82317.918841: cpu_idle: state=0 cpu_id=2
126673          <idle>-0     (-----) [001] d.s3 82317.918856: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
126674          <idle>-0     (-----) [001] d.s4 82317.918871: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
126675          <idle>-0     (-----) [001] d.s4 82317.918882: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
126676          <idle>-0     (-----) [002] .n.1 82317.918889: cpu_idle: state=4294967295 cpu_id=2
126677          <idle>-0     (-----) [001] ...1 82317.918894: cpu_idle: state=4294967295 cpu_id=1
126678          <idle>-0     (-----) [001] d..1 82317.918900: cpu_idle: state=0 cpu_id=1
126679          <idle>-0     (-----) [002] d..2 82317.918904: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126680  kworker/u16:15-1311  ( 1311) [002] d..2 82317.918990: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126681          <idle>-0     (-----) [002] d..1 82317.919006: cpu_idle: state=0 cpu_id=2
126682          <idle>-0     (-----) [000] d.h5 82317.920857: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126683          <idle>-0     (-----) [000] d.h6 82317.920877: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126684          <idle>-0     (-----) [003] .n.1 82317.920883: cpu_idle: state=4294967295 cpu_id=3
126685          <idle>-0     (-----) [003] d..2 82317.920891: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126686          <idle>-0     (-----) [000] ...1 82317.920893: cpu_idle: state=4294967295 cpu_id=0
126687          <idle>-0     (-----) [000] d..1 82317.920899: cpu_idle: state=0 cpu_id=0
126688 crtc_commit:111-321   (  321) [003] d..2 82317.920963: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126689          <idle>-0     (-----) [003] d..1 82317.920973: cpu_idle: state=0 cpu_id=3
126690          <idle>-0     (-----) [000] d.h5 82317.921156: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126691          <idle>-0     (-----) [000] dnh6 82317.921168: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126692          <idle>-0     (-----) [000] .n.1 82317.921181: cpu_idle: state=4294967295 cpu_id=0
126693          <idle>-0     (-----) [000] d..2 82317.921192: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126694  crtc_event:111-322   (  322) [000] d..2 82317.921219: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126695          <idle>-0     (-----) [000] d..1 82317.921229: cpu_idle: state=0 cpu_id=0
126696          <idle>-0     (-----) [003] d.s3 82317.921810: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126697          <idle>-0     (-----) [003] d.s4 82317.921833: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126698          <idle>-0     (-----) [000] .n.1 82317.921839: cpu_idle: state=4294967295 cpu_id=0
126699          <idle>-0     (-----) [003] d.s3 82317.921842: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
126700          <idle>-0     (-----) [000] d..2 82317.921851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126701          <idle>-0     (-----) [003] dns4 82317.921883: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126702  crtc_event:111-322   (  322) [000] d..2 82317.921889: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126703          <idle>-0     (-----) [000] d..1 82317.921899: cpu_idle: state=0 cpu_id=0
126704          <idle>-0     (-----) [003] .n.1 82317.921907: cpu_idle: state=4294967295 cpu_id=3
126705          <idle>-0     (-----) [003] d..2 82317.921920: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126706  kworker/u16:15-1311  ( 1311) [003] d..2 82317.921999: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126707          <idle>-0     (-----) [003] d..1 82317.922017: cpu_idle: state=0 cpu_id=3
126708          <idle>-0     (-----) [001] d.h2 82317.922963: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
126709          <idle>-0     (-----) [001] dnh3 82317.922980: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
126710          <idle>-0     (-----) [001] .n.1 82317.922987: cpu_idle: state=4294967295 cpu_id=1
126711          <idle>-0     (-----) [001] d..2 82317.923000: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
126712        DispSync-8879  ( 8858) [001] d..1 82317.923015: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
126713        DispSync-8879  ( 8858) [001] d..2 82317.923032: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
126714          <idle>-0     (-----) [003] .n.1 82317.923040: cpu_idle: state=4294967295 cpu_id=3
126715          <idle>-0     (-----) [003] d..2 82317.923052: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
126716        DispSync-8879  ( 8858) [001] d..2 82317.923070: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126717          <idle>-0     (-----) [001] d..1 82317.923083: cpu_idle: state=0 cpu_id=1
126718  appEventThread-8881  ( 8858) [003] d..3 82317.923097: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126719          <idle>-0     (-----) [004] dnh2 82317.923128: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126720          <idle>-0     (-----) [004] .n.1 82317.923132: cpu_idle: state=4294967295 cpu_id=4
126721          <idle>-0     (-----) [004] d..2 82317.923141: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
126722  appEventThread-8881  ( 8858) [003] d..2 82317.923161: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126723          <idle>-0     (-----) [003] d..1 82317.923178: cpu_idle: state=0 cpu_id=3
126724 s.nexuslauncher-10023 (10023) [004] .... 82317.923353: binder_transaction: transaction=1572732 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
126725 s.nexuslauncher-10023 (10023) [004] .... 82317.923358: binder_transaction_alloc_buf: transaction=1572732 data_size=80 offsets_size=0
126726 s.nexuslauncher-10023 (10023) [004] d..4 82317.923363: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
126727          <idle>-0     (-----) [000] dnh2 82317.923432: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
126728          <idle>-0     (-----) [000] .n.1 82317.923438: cpu_idle: state=4294967295 cpu_id=0
126729          <idle>-0     (-----) [000] d..2 82317.923450: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
126730 s.nexuslauncher-10023 (10023) [004] d..3 82317.923450: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126731   Binder:8858_1-8871  ( 8858) [000] .... 82317.923462: binder_transaction_received: transaction=1572732
126732 s.nexuslauncher-10023 (10023) [004] d..4 82317.923467: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126733          <idle>-0     (-----) [005] .n.1 82317.923474: cpu_idle: state=4294967295 cpu_id=5
126734          <idle>-0     (-----) [005] d..2 82317.923487: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126735   Binder:8858_1-8871  ( 8858) [000] d..1 82317.923506: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
126736   Binder:8858_1-8871  ( 8858) [000] d..2 82317.923529: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
126737    RenderThread-16607 (10023) [005] d..2 82317.923534: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126738          <idle>-0     (-----) [003] .n.1 82317.923535: cpu_idle: state=4294967295 cpu_id=3
126739          <idle>-0     (-----) [005] d..1 82317.923545: cpu_idle: state=0 cpu_id=5
126740          <idle>-0     (-----) [003] d..2 82317.923547: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
126741   Binder:8858_1-8871  ( 8858) [000] d..2 82317.923581: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126742  appEventThread-8881  ( 8858) [003] d..2 82317.923592: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126743          <idle>-0     (-----) [000] d..1 82317.923599: cpu_idle: state=0 cpu_id=0
126744          <idle>-0     (-----) [003] d..1 82317.923605: cpu_idle: state=0 cpu_id=3
126745 s.nexuslauncher-10023 (10023) [004] d..3 82317.923711: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126746 s.nexuslauncher-10023 (10023) [004] d..4 82317.923729: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126747          <idle>-0     (-----) [005] .n.1 82317.923734: cpu_idle: state=4294967295 cpu_id=5
126748          <idle>-0     (-----) [005] d..2 82317.923742: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126749 s.nexuslauncher-10023 (10023) [004] d..2 82317.923755: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
126750          <idle>-0     (-----) [004] d..1 82317.923773: cpu_idle: state=0 cpu_id=4
126751    RenderThread-16607 (10023) [005] d..1 82317.923878: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126752    RenderThread-16607 (10023) [005] d..2 82317.923894: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126753          <idle>-0     (-----) [004] .n.1 82317.923901: cpu_idle: state=4294967295 cpu_id=4
126754          <idle>-0     (-----) [004] d..2 82317.923910: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
126755    RenderThread-16607 (10023) [005] .... 82317.923943: binder_transaction: transaction=1572733 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
126756    RenderThread-16607 (10023) [005] .... 82317.923947: binder_transaction_alloc_buf: transaction=1572733 data_size=104 offsets_size=0
126757    RenderThread-16607 (10023) [005] ...2 82317.923951: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
126758    RenderThread-16607 (10023) [005] d..4 82317.923954: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
126759    RenderThread-16607 (10023) [005] d..5 82317.923975: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126760 s.nexuslauncher-10023 (10023) [004] d..2 82317.924019: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
126761    RenderThread-16607 (10023) [005] d..2 82317.924021: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126762          <idle>-0     (-----) [004] d..1 82317.924030: cpu_idle: state=0 cpu_id=4
126763   Binder:8858_1-8871  ( 8858) [005] .... 82317.924032: binder_transaction_received: transaction=1572733
126764   Binder:8858_1-8871  ( 8858) [005] .... 82317.924091: binder_transaction: transaction=1572734 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
126765   Binder:8858_1-8871  ( 8858) [005] .... 82317.924095: binder_transaction_alloc_buf: transaction=1572734 data_size=52 offsets_size=8
126766   Binder:8858_1-8871  ( 8858) [005] d..2 82317.924102: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126767   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.924113: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126768   Binder:8858_1-8871  ( 8858) [005] d..2 82317.924119: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
126769    RenderThread-16607 (10023) [005] .... 82317.924128: binder_transaction_received: transaction=1572734
126770          <idle>-0     (-----) [002] d.s2 82317.925145: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126771          <idle>-0     (-----) [002] dns3 82317.925165: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126772          <idle>-0     (-----) [002] .n.1 82317.925178: cpu_idle: state=4294967295 cpu_id=2
126773          <idle>-0     (-----) [002] d..2 82317.925191: 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
126774     rcu_preempt-7     (    7) [002] d..2 82317.925202: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
126775     rcu_preempt-7     (    7) [002] d..3 82317.925217: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
126776     rcu_preempt-7     (    7) [002] d..2 82317.925229: 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
126777         rcuop/2-29    (   29) [002] d..2 82317.925238: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126778         rcuop/2-29    (   29) [002] d..3 82317.925251: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126779         rcuop/2-29    (   29) [002] d..2 82317.925260: 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
126780     rcu_preempt-7     (    7) [002] d..2 82317.925290: 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
126781          <idle>-0     (-----) [002] d..1 82317.925305: cpu_idle: state=0 cpu_id=2
126782    RenderThread-16607 (10023) [005] d..2 82317.925344: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126783   Binder:8858_1-8871  ( 8858) [005] .... 82317.925356: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
126784   Binder:8858_1-8871  ( 8858) [005] d..2 82317.925424: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126785          <idle>-0     (-----) [005] d..1 82317.925438: cpu_idle: state=0 cpu_id=5
126786          <idle>-0     (-----) [005] d.h2 82317.925450: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126787          <idle>-0     (-----) [005] d.h3 82317.925457: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
126788          <idle>-0     (-----) [005] dnh3 82317.925460: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126789          <idle>-0     (-----) [005] .n.1 82317.925467: cpu_idle: state=4294967295 cpu_id=5
126790          <idle>-0     (-----) [005] d..2 82317.925476: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126791          <idle>-0     (-----) [000] d.h2 82317.925587: sched_waking: comm=CCodecWatchdog pid=9351 prio=120 target_cpu=000
126792          <idle>-0     (-----) [000] dnh3 82317.925610: sched_wakeup: comm=CCodecWatchdog pid=9351 prio=120 target_cpu=000
126793          <idle>-0     (-----) [000] .n.1 82317.925621: cpu_idle: state=4294967295 cpu_id=0
126794    RenderThread-16607 (10023) [005] .... 82317.925631: binder_transaction: transaction=1572735 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
126795          <idle>-0     (-----) [000] d..2 82317.925635: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=9351 next_prio=120
126796    RenderThread-16607 (10023) [005] .... 82317.925636: binder_transaction_alloc_buf: transaction=1572735 data_size=192 offsets_size=8
126797    RenderThread-16607 (10023) [005] ...2 82317.925643: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
126798    RenderThread-16607 (10023) [005] d..4 82317.925646: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126799    RenderThread-16607 (10023) [005] d..5 82317.925658: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
126800    RenderThread-16607 (10023) [005] d..2 82317.925669: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126801   Binder:8858_1-8871  ( 8858) [005] .... 82317.925679: binder_transaction_received: transaction=1572735
126802  CCodecWatchdog-9351  ( 9105) [000] d..2 82317.925755: sched_switch: prev_comm=CCodecWatchdog prev_pid=9351 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126803          <idle>-0     (-----) [000] d..1 82317.925772: cpu_idle: state=0 cpu_id=0
126804   Binder:8858_1-8871  ( 8858) [005] .... 82317.925794: binder_transaction: transaction=1572736 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
126805   Binder:8858_1-8871  ( 8858) [005] .... 82317.925799: binder_transaction_alloc_buf: transaction=1572736 data_size=68 offsets_size=0
126806   Binder:8858_1-8871  ( 8858) [005] d..2 82317.925801: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126807   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.925812: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126808   Binder:8858_1-8871  ( 8858) [005] d..2 82317.925818: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
126809    RenderThread-16607 (10023) [005] .... 82317.925828: binder_transaction_received: transaction=1572736
126810          <idle>-0     (-----) [001] d.h2 82317.925878: sched_waking: comm=CCodecWatchdog pid=9143 prio=120 target_cpu=001
126811    RenderThread-16607 (10023) [005] d..2 82317.925892: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
126812   Binder:8858_1-8871  ( 8858) [005] .... 82317.925900: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
126813          <idle>-0     (-----) [001] d.h3 82317.925912: sched_wakeup: comm=CCodecWatchdog pid=9143 prio=120 target_cpu=000
126814          <idle>-0     (-----) [000] .n.1 82317.925919: cpu_idle: state=4294967295 cpu_id=0
126815          <idle>-0     (-----) [001] ...1 82317.925925: cpu_idle: state=4294967295 cpu_id=1
126816          <idle>-0     (-----) [001] d..1 82317.925930: cpu_idle: state=0 cpu_id=1
126817          <idle>-0     (-----) [000] d..2 82317.925935: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=9143 next_prio=120
126818   Binder:8858_1-8871  ( 8858) [005] d..2 82317.925950: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126819          <idle>-0     (-----) [005] d..1 82317.925965: cpu_idle: state=0 cpu_id=5
126820  CCodecWatchdog-9143  ( 8943) [000] d..2 82317.926034: sched_switch: prev_comm=CCodecWatchdog prev_pid=9143 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126821          <idle>-0     (-----) [000] d..1 82317.926049: cpu_idle: state=0 cpu_id=0
126822          <idle>-0     (-----) [000] d.h3 82317.926780: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
126823          <idle>-0     (-----) [000] d.h4 82317.926806: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
126824          <idle>-0     (-----) [003] .n.1 82317.926813: cpu_idle: state=4294967295 cpu_id=3
126825          <idle>-0     (-----) [000] ...1 82317.926823: cpu_idle: state=4294967295 cpu_id=0
126826          <idle>-0     (-----) [003] d..2 82317.926826: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
126827          <idle>-0     (-----) [000] d..1 82317.926832: cpu_idle: state=0 cpu_id=0
126828 kgsl_worker_thr-258   (  258) [003] d..2 82317.926886: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126829 kgsl_worker_thr-258   (  258) [003] d..3 82317.926910: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126830 kgsl_worker_thr-258   (  258) [003] d..2 82317.926935: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126831          <idle>-0     (-----) [001] d.h2 82317.926965: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
126832          <idle>-0     (-----) [001] dnh3 82317.926978: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
126833          <idle>-0     (-----) [001] .n.1 82317.926985: cpu_idle: state=4294967295 cpu_id=1
126834          <idle>-0     (-----) [001] d..2 82317.926997: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
126835        DispSync-8879  ( 8858) [001] d..1 82317.927011: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126836        DispSync-8879  ( 8858) [001] d..2 82317.927027: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126837          <idle>-0     (-----) [000] .n.1 82317.927033: cpu_idle: state=4294967295 cpu_id=0
126838          <idle>-0     (-----) [000] d..2 82317.927045: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
126839        DispSync-8879  ( 8858) [001] d..2 82317.927061: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126840          <idle>-0     (-----) [001] d..1 82317.927075: cpu_idle: state=0 cpu_id=1
126841   sfEventThread-8882  ( 8858) [000] d..3 82317.927097: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126842  kworker/u16:15-1311  ( 1311) [003] d..2 82317.927102: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126843   sfEventThread-8882  ( 8858) [000] d..4 82317.927120: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126844          <idle>-0     (-----) [003] d..1 82317.927121: cpu_idle: state=0 cpu_id=3
126845          <idle>-0     (-----) [002] .n.1 82317.927124: cpu_idle: state=4294967295 cpu_id=2
126846          <idle>-0     (-----) [002] d..2 82317.927136: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
126847   sfEventThread-8882  ( 8858) [000] d..2 82317.927164: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126848          <idle>-0     (-----) [000] d..1 82317.927181: cpu_idle: state=0 cpu_id=0
126849  surfaceflinger-8858  ( 8858) [002] d..1 82317.927510: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126850  surfaceflinger-8858  ( 8858) [002] d..2 82317.927536: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
126851          <idle>-0     (-----) [000] .n.1 82317.927542: cpu_idle: state=4294967295 cpu_id=0
126852          <idle>-0     (-----) [000] d..2 82317.927554: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
126853   sfEventThread-8882  ( 8858) [000] d..2 82317.927594: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126854          <idle>-0     (-----) [000] d..1 82317.927607: cpu_idle: state=0 cpu_id=0
126855  surfaceflinger-8858  ( 8858) [002] ...1 82317.927740: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
126856  surfaceflinger-8858  ( 8858) [002] ...1 82317.927749: tracing_mark_write: E|8858
126857  surfaceflinger-8858  ( 8858) [002] .... 82317.927815: binder_transaction: transaction=1572737 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
126858  surfaceflinger-8858  ( 8858) [002] .... 82317.927822: binder_transaction_alloc_buf: transaction=1572737 data_size=540 offsets_size=96
126859  surfaceflinger-8858  ( 8858) [002] ...2 82317.927848: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
126860  surfaceflinger-8858  ( 8858) [002] d..4 82317.927856: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
126861  surfaceflinger-8858  ( 8858) [002] d..5 82317.927878: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
126862          <idle>-0     (-----) [000] .n.1 82317.927884: cpu_idle: state=4294967295 cpu_id=0
126863          <idle>-0     (-----) [000] d..2 82317.927895: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
126864 [email protected]   (  619) [000] .... 82317.927908: binder_transaction_received: transaction=1572737
126865  surfaceflinger-8858  ( 8858) [002] d..2 82317.927920: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126866          <idle>-0     (-----) [002] d..1 82317.927941: cpu_idle: state=0 cpu_id=2
126867 [email protected]   (  619) [000] ...1 82317.927965: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
126868 [email protected]   (  619) [000] ...1 82317.928094: tracing_mark_write: B|619|HWCSession::PresentDisplay::
126869 [email protected]   (  619) [000] ...1 82317.928277: tracing_mark_write: B|619|HWDeviceDRM::Commit::
126870 [email protected]   (  619) [000] ...1 82317.928291: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
126871 [email protected]   (  619) [000] d.s2 82317.928495: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126872 [email protected]   (  619) [000] d.s3 82317.928521: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126873          <idle>-0     (-----) [003] .n.1 82317.928527: cpu_idle: state=4294967295 cpu_id=3
126874          <idle>-0     (-----) [003] d..2 82317.928543: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126875  kworker/u16:15-1311  ( 1311) [003] d..2 82317.928652: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126876          <idle>-0     (-----) [003] d..1 82317.928667: cpu_idle: state=0 cpu_id=3
126877 [email protected]   (  619) [000] d..2 82317.929043: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126878 [email protected]   (  619) [000] d..3 82317.929071: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126879          <idle>-0     (-----) [003] .n.1 82317.929078: cpu_idle: state=4294967295 cpu_id=3
126880          <idle>-0     (-----) [003] d..2 82317.929091: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126881 [email protected]   (  619) [000] ...1 82317.929196: tracing_mark_write: E|619
126882 [email protected]   (  619) [000] ...1 82317.929203: tracing_mark_write: E|619
126883 [email protected]   (  619) [000] ...1 82317.929272: tracing_mark_write: E|619
126884 [email protected]   (  619) [000] ...1 82317.929326: tracing_mark_write: E|619
126885 [email protected]   (  619) [000] .... 82317.929345: binder_transaction: transaction=1572738 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
126886 [email protected]   (  619) [000] .... 82317.929351: binder_transaction_alloc_buf: transaction=1572738 data_size=576 offsets_size=112
126887 [email protected]   (  619) [000] d..2 82317.929376: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126888 [email protected]   (  619) [000] d..3 82317.929398: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
126889 [email protected]   (  619) [000] .... 82317.929404: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
126890          <idle>-0     (-----) [002] .n.1 82317.929405: cpu_idle: state=4294967295 cpu_id=2
126891          <idle>-0     (-----) [002] d..2 82317.929419: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
126892  surfaceflinger-8858  ( 8858) [002] .... 82317.929430: binder_transaction_received: transaction=1572738
126893 [email protected]   (  619) [000] d..2 82317.929514: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126894          <idle>-0     (-----) [000] d..1 82317.929538: cpu_idle: state=0 cpu_id=0
126895 crtc_commit:111-321   (  321) [003] d..2 82317.929850: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
126896          <idle>-0     (-----) [003] d..1 82317.929870: cpu_idle: state=0 cpu_id=3
126897  surfaceflinger-8858  ( 8858) [002] d..2 82317.929881: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126898          <idle>-0     (-----) [002] d..1 82317.929899: cpu_idle: state=0 cpu_id=2
126899          <idle>-0     (-----) [000] ...1 82317.930890: cpu_idle: state=4294967295 cpu_id=0
126900          <idle>-0     (-----) [000] d..1 82317.930895: cpu_idle: state=0 cpu_id=0
126901          <idle>-0     (-----) [003] ...1 82317.931681: cpu_idle: state=4294967295 cpu_id=3
126902          <idle>-0     (-----) [003] d..1 82317.931686: cpu_idle: state=0 cpu_id=3
126903          <idle>-0     (-----) [002] d.s2 82317.931881: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126904          <idle>-0     (-----) [002] dns3 82317.931905: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126905          <idle>-0     (-----) [002] dns3 82317.931912: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126906          <idle>-0     (-----) [002] dns4 82317.931951: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
126907          <idle>-0     (-----) [002] .n.1 82317.931973: cpu_idle: state=4294967295 cpu_id=2
126908          <idle>-0     (-----) [002] d..2 82317.931986: 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
126909     rcu_preempt-7     (    7) [002] d..2 82317.931999: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
126910     rcu_preempt-7     (    7) [002] d..3 82317.932017: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
126911     rcu_preempt-7     (    7) [002] d..2 82317.932029: 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
126912         rcuop/2-29    (   29) [002] d..2 82317.932039: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126913         rcuop/2-29    (   29) [002] d..3 82317.932052: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126914         rcuop/2-29    (   29) [002] d..2 82317.932062: 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
126915     rcu_preempt-7     (    7) [002] d..2 82317.932075: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126916  kworker/u16:15-1311  ( 1311) [002] d..2 82317.932155: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
126917          <idle>-0     (-----) [002] d..1 82317.932175: cpu_idle: state=0 cpu_id=2
126918          <idle>-0     (-----) [000] d.h5 82317.934997: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126919          <idle>-0     (-----) [000] dnh6 82317.935017: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126920          <idle>-0     (-----) [000] dnh5 82317.935023: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126921          <idle>-0     (-----) [000] dnh6 82317.935038: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126922          <idle>-0     (-----) [003] .n.1 82317.935044: cpu_idle: state=4294967295 cpu_id=3
126923          <idle>-0     (-----) [000] .n.1 82317.935052: cpu_idle: state=4294967295 cpu_id=0
126924          <idle>-0     (-----) [003] d..2 82317.935057: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126925          <idle>-0     (-----) [000] d..2 82317.935066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126926  crtc_event:111-322   (  322) [000] d..2 82317.935099: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126927          <idle>-0     (-----) [000] d..1 82317.935127: cpu_idle: state=0 cpu_id=0
126928 crtc_commit:111-321   (  321) [003] d..2 82317.935257: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
126929          <idle>-0     (-----) [003] d..1 82317.935269: cpu_idle: state=0 cpu_id=3
126930          <idle>-0     (-----) [000] ...1 82317.936520: cpu_idle: state=4294967295 cpu_id=0
126931          <idle>-0     (-----) [000] d..1 82317.936525: cpu_idle: state=0 cpu_id=0
126932          <idle>-0     (-----) [000] d.h5 82317.937320: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126933          <idle>-0     (-----) [000] d.h6 82317.937340: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
126934          <idle>-0     (-----) [003] .n.1 82317.937346: cpu_idle: state=4294967295 cpu_id=3
126935          <idle>-0     (-----) [003] d..2 82317.937355: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
126936          <idle>-0     (-----) [000] ...1 82317.937355: cpu_idle: state=4294967295 cpu_id=0
126937          <idle>-0     (-----) [000] d..1 82317.937361: cpu_idle: state=0 cpu_id=0
126938 crtc_commit:111-321   (  321) [003] d..2 82317.937425: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126939          <idle>-0     (-----) [003] d..1 82317.937434: cpu_idle: state=0 cpu_id=3
126940          <idle>-0     (-----) [000] d.h5 82317.937627: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126941          <idle>-0     (-----) [000] dnh6 82317.937638: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126942          <idle>-0     (-----) [000] .n.1 82317.937652: cpu_idle: state=4294967295 cpu_id=0
126943          <idle>-0     (-----) [000] d..2 82317.937664: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126944  crtc_event:111-322   (  322) [000] d..2 82317.937691: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126945          <idle>-0     (-----) [000] d..1 82317.937701: cpu_idle: state=0 cpu_id=0
126946          <idle>-0     (-----) [003] d.s3 82317.938473: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126947          <idle>-0     (-----) [002] d.s2 82317.938476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126948          <idle>-0     (-----) [002] dns3 82317.938495: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
126949          <idle>-0     (-----) [003] d.s4 82317.938495: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
126950          <idle>-0     (-----) [000] .n.1 82317.938500: cpu_idle: state=4294967295 cpu_id=0
126951          <idle>-0     (-----) [003] d.s3 82317.938502: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
126952          <idle>-0     (-----) [002] .n.1 82317.938506: cpu_idle: state=4294967295 cpu_id=2
126953          <idle>-0     (-----) [000] d..2 82317.938512: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
126954          <idle>-0     (-----) [002] d..2 82317.938521: 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
126955          <idle>-0     (-----) [003] dns4 82317.938538: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
126956  crtc_event:111-322   (  322) [000] d..2 82317.938548: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126957     rcu_preempt-7     (    7) [002] d..2 82317.938555: 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
126958          <idle>-0     (-----) [000] d..1 82317.938559: cpu_idle: state=0 cpu_id=0
126959          <idle>-0     (-----) [003] .n.1 82317.938561: cpu_idle: state=4294967295 cpu_id=3
126960          <idle>-0     (-----) [002] d..1 82317.938569: cpu_idle: state=0 cpu_id=2
126961          <idle>-0     (-----) [003] d..2 82317.938572: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
126962  kworker/u16:15-1311  ( 1311) [003] d..2 82317.938642: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126963          <idle>-0     (-----) [003] d..1 82317.938659: cpu_idle: state=0 cpu_id=3
126964          <idle>-0     (-----) [001] d.h2 82317.939432: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
126965          <idle>-0     (-----) [001] dnh3 82317.939446: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
126966          <idle>-0     (-----) [001] .n.1 82317.939454: cpu_idle: state=4294967295 cpu_id=1
126967          <idle>-0     (-----) [001] d..2 82317.939465: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
126968        DispSync-8879  ( 8858) [001] d..1 82317.939477: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
126969        DispSync-8879  ( 8858) [001] d..2 82317.939493: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
126970          <idle>-0     (-----) [003] .n.1 82317.939499: cpu_idle: state=4294967295 cpu_id=3
126971          <idle>-0     (-----) [003] d..2 82317.939511: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
126972        DispSync-8879  ( 8858) [001] d..2 82317.939526: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
126973          <idle>-0     (-----) [001] d..1 82317.939539: cpu_idle: state=0 cpu_id=1
126974  appEventThread-8881  ( 8858) [003] d..3 82317.939558: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126975          <idle>-0     (-----) [004] dnh2 82317.939588: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
126976          <idle>-0     (-----) [004] .n.1 82317.939593: cpu_idle: state=4294967295 cpu_id=4
126977          <idle>-0     (-----) [004] d..2 82317.939602: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
126978  appEventThread-8881  ( 8858) [003] d..2 82317.939620: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126979          <idle>-0     (-----) [003] d..1 82317.939636: cpu_idle: state=0 cpu_id=3
126980 s.nexuslauncher-10023 (10023) [004] .... 82317.939813: binder_transaction: transaction=1572739 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
126981 s.nexuslauncher-10023 (10023) [004] .... 82317.939818: binder_transaction_alloc_buf: transaction=1572739 data_size=80 offsets_size=0
126982 s.nexuslauncher-10023 (10023) [004] d..4 82317.939823: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
126983          <idle>-0     (-----) [000] dnh2 82317.939890: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
126984          <idle>-0     (-----) [000] .n.1 82317.939896: cpu_idle: state=4294967295 cpu_id=0
126985          <idle>-0     (-----) [000] d..2 82317.939908: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
126986 s.nexuslauncher-10023 (10023) [004] d..3 82317.939909: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
126987   Binder:8858_1-8871  ( 8858) [000] .... 82317.939920: binder_transaction_received: transaction=1572739
126988 s.nexuslauncher-10023 (10023) [004] d..4 82317.939926: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
126989          <idle>-0     (-----) [005] .n.1 82317.939933: cpu_idle: state=4294967295 cpu_id=5
126990          <idle>-0     (-----) [005] d..2 82317.939944: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
126991   Binder:8858_1-8871  ( 8858) [000] d..1 82317.939965: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
126992    RenderThread-16607 (10023) [005] d..2 82317.939987: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
126993   Binder:8858_1-8871  ( 8858) [000] d..2 82317.939988: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
126994          <idle>-0     (-----) [003] .n.1 82317.939994: cpu_idle: state=4294967295 cpu_id=3
126995          <idle>-0     (-----) [005] d..1 82317.939998: cpu_idle: state=0 cpu_id=5
126996          <idle>-0     (-----) [003] d..2 82317.940006: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
126997   Binder:8858_1-8871  ( 8858) [000] d..2 82317.940042: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
126998  appEventThread-8881  ( 8858) [003] d..2 82317.940051: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
126999          <idle>-0     (-----) [000] d..1 82317.940062: cpu_idle: state=0 cpu_id=0
127000          <idle>-0     (-----) [003] d..1 82317.940065: cpu_idle: state=0 cpu_id=3
127001 s.nexuslauncher-10023 (10023) [004] d..3 82317.940165: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127002 s.nexuslauncher-10023 (10023) [004] d..4 82317.940183: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127003          <idle>-0     (-----) [005] .n.1 82317.940188: cpu_idle: state=4294967295 cpu_id=5
127004          <idle>-0     (-----) [005] d..2 82317.940197: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127005 s.nexuslauncher-10023 (10023) [004] d..2 82317.940210: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
127006          <idle>-0     (-----) [004] d..1 82317.940227: cpu_idle: state=0 cpu_id=4
127007    RenderThread-16607 (10023) [005] d..1 82317.940341: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127008    RenderThread-16607 (10023) [005] d..2 82317.940357: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127009          <idle>-0     (-----) [004] .n.1 82317.940364: cpu_idle: state=4294967295 cpu_id=4
127010          <idle>-0     (-----) [004] d..2 82317.940373: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
127011    RenderThread-16607 (10023) [005] .... 82317.940408: binder_transaction: transaction=1572740 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
127012    RenderThread-16607 (10023) [005] .... 82317.940413: binder_transaction_alloc_buf: transaction=1572740 data_size=104 offsets_size=0
127013    RenderThread-16607 (10023) [005] ...2 82317.940416: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
127014    RenderThread-16607 (10023) [005] d..4 82317.940420: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
127015    RenderThread-16607 (10023) [005] d..5 82317.940442: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127016 s.nexuslauncher-10023 (10023) [004] d..2 82317.940487: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
127017    RenderThread-16607 (10023) [005] d..2 82317.940489: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127018          <idle>-0     (-----) [004] d..1 82317.940498: cpu_idle: state=0 cpu_id=4
127019   Binder:8858_1-8871  ( 8858) [005] .... 82317.940500: binder_transaction_received: transaction=1572740
127020   Binder:8858_1-8871  ( 8858) [005] .... 82317.940558: binder_transaction: transaction=1572741 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
127021   Binder:8858_1-8871  ( 8858) [005] .... 82317.940562: binder_transaction_alloc_buf: transaction=1572741 data_size=52 offsets_size=8
127022   Binder:8858_1-8871  ( 8858) [005] d..2 82317.940569: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127023   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.940579: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127024   Binder:8858_1-8871  ( 8858) [005] d..2 82317.940585: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
127025    RenderThread-16607 (10023) [005] .... 82317.940594: binder_transaction_received: transaction=1572741
127026    RenderThread-16607 (10023) [005] d.s3 82317.941864: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
127027          <idle>-0     (-----) [000] dnh2 82317.941911: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
127028          <idle>-0     (-----) [000] .n.1 82317.941919: cpu_idle: state=4294967295 cpu_id=0
127029    RenderThread-16607 (10023) [005] d..2 82317.941923: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127030          <idle>-0     (-----) [000] d..2 82317.941934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
127031   Binder:8858_1-8871  ( 8858) [005] .... 82317.941934: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
127032   Binder:8858_1-8871  ( 8858) [005] d..2 82317.942018: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127033          <idle>-0     (-----) [005] d.h3 82317.942035: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127034          <idle>-0     (-----) [005] d.h4 82317.942042: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
127035          <idle>-0     (-----) [005] dnh4 82317.942045: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127036          <idle>-0     (-----) [005] d..2 82317.942055: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127037  kworker/u16:15-1311  ( 1311) [000] d..2 82317.942067: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127038          <idle>-0     (-----) [000] d..1 82317.942081: cpu_idle: state=0 cpu_id=0
127039    RenderThread-16607 (10023) [005] .... 82317.942208: binder_transaction: transaction=1572742 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
127040    RenderThread-16607 (10023) [005] .... 82317.942212: binder_transaction_alloc_buf: transaction=1572742 data_size=192 offsets_size=8
127041    RenderThread-16607 (10023) [005] ...2 82317.942219: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
127042    RenderThread-16607 (10023) [005] d..4 82317.942222: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127043    RenderThread-16607 (10023) [005] d..5 82317.942235: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127044    RenderThread-16607 (10023) [005] d..2 82317.942246: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127045   Binder:8858_1-8871  ( 8858) [005] .... 82317.942257: binder_transaction_received: transaction=1572742
127046   Binder:8858_1-8871  ( 8858) [005] .... 82317.942376: binder_transaction: transaction=1572743 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
127047   Binder:8858_1-8871  ( 8858) [005] .... 82317.942380: binder_transaction_alloc_buf: transaction=1572743 data_size=68 offsets_size=0
127048   Binder:8858_1-8871  ( 8858) [005] d..2 82317.942383: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127049   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.942394: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127050   Binder:8858_1-8871  ( 8858) [005] d..2 82317.942401: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
127051    RenderThread-16607 (10023) [005] .... 82317.942410: binder_transaction_received: transaction=1572743
127052    RenderThread-16607 (10023) [005] d..2 82317.942475: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127053   Binder:8858_1-8871  ( 8858) [005] .... 82317.942484: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
127054   Binder:8858_1-8871  ( 8858) [005] d..2 82317.942532: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127055          <idle>-0     (-----) [005] d..1 82317.942549: cpu_idle: state=0 cpu_id=5
127056          <idle>-0     (-----) [000] d.h3 82317.943279: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
127057          <idle>-0     (-----) [000] d.h4 82317.943302: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
127058          <idle>-0     (-----) [003] .n.1 82317.943308: cpu_idle: state=4294967295 cpu_id=3
127059          <idle>-0     (-----) [000] ...1 82317.943319: cpu_idle: state=4294967295 cpu_id=0
127060          <idle>-0     (-----) [003] d..2 82317.943321: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
127061          <idle>-0     (-----) [000] d..1 82317.943327: cpu_idle: state=0 cpu_id=0
127062 kgsl_worker_thr-258   (  258) [003] d..2 82317.943379: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
127063 kgsl_worker_thr-258   (  258) [003] d..3 82317.943401: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
127064          <idle>-0     (-----) [000] .n.1 82317.943407: cpu_idle: state=4294967295 cpu_id=0
127065          <idle>-0     (-----) [000] d..2 82317.943422: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
127066          <idle>-0     (-----) [001] d.h2 82317.943429: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
127067 kgsl_worker_thr-258   (  258) [003] d..2 82317.943437: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127068          <idle>-0     (-----) [001] dnh3 82317.943441: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
127069          <idle>-0     (-----) [001] .n.1 82317.943449: cpu_idle: state=4294967295 cpu_id=1
127070          <idle>-0     (-----) [003] d..1 82317.943452: cpu_idle: state=0 cpu_id=3
127071          <idle>-0     (-----) [001] d..2 82317.943460: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
127072        DispSync-8879  ( 8858) [001] d..1 82317.943472: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
127073        DispSync-8879  ( 8858) [001] d..2 82317.943496: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127074          <idle>-0     (-----) [002] .n.1 82317.943503: cpu_idle: state=4294967295 cpu_id=2
127075          <idle>-0     (-----) [002] d..2 82317.943515: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
127076        DispSync-8879  ( 8858) [001] d..2 82317.943527: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127077          <idle>-0     (-----) [001] d..1 82317.943541: cpu_idle: state=0 cpu_id=1
127078   sfEventThread-8882  ( 8858) [002] d..3 82317.943561: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
127079   sfEventThread-8882  ( 8858) [002] d..4 82317.943594: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127080  kworker/u16:15-1311  ( 1311) [000] d..2 82317.943595: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127081          <idle>-0     (-----) [001] .n.1 82317.943600: cpu_idle: state=4294967295 cpu_id=1
127082          <idle>-0     (-----) [000] d..1 82317.943611: cpu_idle: state=0 cpu_id=0
127083          <idle>-0     (-----) [001] d..2 82317.943612: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
127084   sfEventThread-8882  ( 8858) [002] d..2 82317.943636: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127085          <idle>-0     (-----) [002] d..1 82317.943649: cpu_idle: state=0 cpu_id=2
127086  surfaceflinger-8858  ( 8858) [001] d..2 82317.943993: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127087  surfaceflinger-8858  ( 8858) [001] d..3 82317.944054: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
127088  surfaceflinger-8858  ( 8858) [001] d..1 82317.944088: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127089  surfaceflinger-8858  ( 8858) [001] d..2 82317.944108: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127090          <idle>-0     (-----) [002] .n.1 82317.944114: cpu_idle: state=4294967295 cpu_id=2
127091          <idle>-0     (-----) [002] d..2 82317.944123: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
127092   sfEventThread-8882  ( 8858) [002] d..2 82317.944163: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127093          <idle>-0     (-----) [002] d..1 82317.944175: cpu_idle: state=0 cpu_id=2
127094  surfaceflinger-8858  ( 8858) [001] ...1 82317.944315: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
127095  surfaceflinger-8858  ( 8858) [001] ...1 82317.944325: tracing_mark_write: E|8858
127096  surfaceflinger-8858  ( 8858) [001] .... 82317.944389: binder_transaction: transaction=1572744 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
127097  surfaceflinger-8858  ( 8858) [001] .... 82317.944395: binder_transaction_alloc_buf: transaction=1572744 data_size=540 offsets_size=96
127098  surfaceflinger-8858  ( 8858) [001] ...2 82317.944424: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
127099  surfaceflinger-8858  ( 8858) [001] d..4 82317.944430: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
127100  surfaceflinger-8858  ( 8858) [001] d..5 82317.944455: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
127101          <idle>-0     (-----) [000] .n.1 82317.944461: cpu_idle: state=4294967295 cpu_id=0
127102          <idle>-0     (-----) [000] d..2 82317.944473: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
127103  surfaceflinger-8858  ( 8858) [001] d..2 82317.944482: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
127104 [email protected]   (  619) [000] .... 82317.944487: binder_transaction_received: transaction=1572744
127105         rcuop/0-10    (   10) [001] d..2 82317.944514: 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
127106          <idle>-0     (-----) [001] d..1 82317.944537: cpu_idle: state=0 cpu_id=1
127107 [email protected]   (  619) [000] ...1 82317.944542: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
127108 [email protected]   (  619) [000] ...1 82317.944663: tracing_mark_write: B|619|HWCSession::PresentDisplay::
127109 [email protected]   (  619) [000] ...1 82317.944847: tracing_mark_write: B|619|HWDeviceDRM::Commit::
127110 [email protected]   (  619) [000] ...1 82317.944861: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
127111          <idle>-0     (-----) [002] d.s2 82317.945141: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127112          <idle>-0     (-----) [002] dns3 82317.945160: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127113 [email protected]   (  619) [000] d.s2 82317.945162: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
127114          <idle>-0     (-----) [002] .n.1 82317.945178: cpu_idle: state=4294967295 cpu_id=2
127115          <idle>-0     (-----) [002] d..2 82317.945189: 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
127116     rcu_preempt-7     (    7) [002] d..2 82317.945200: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
127117 [email protected]   (  619) [000] d.s3 82317.945219: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
127118     rcu_preempt-7     (    7) [002] d..3 82317.945229: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
127119     rcu_preempt-7     (    7) [002] d..2 82317.945247: 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
127120         rcuop/2-29    (   29) [002] d..2 82317.945264: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
127121  kworker/u16:15-1311  ( 1311) [002] d..2 82317.945502: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127122          <idle>-0     (-----) [002] d..1 82317.945522: cpu_idle: state=0 cpu_id=2
127123          <idle>-0     (-----) [001] d.s3 82317.945530: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
127124          <idle>-0     (-----) [001] d.s4 82317.945545: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
127125          <idle>-0     (-----) [001] d.s4 82317.945555: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
127126          <idle>-0     (-----) [002] .n.1 82317.945562: cpu_idle: state=4294967295 cpu_id=2
127127          <idle>-0     (-----) [001] ...1 82317.945568: cpu_idle: state=4294967295 cpu_id=1
127128          <idle>-0     (-----) [001] d..1 82317.945576: cpu_idle: state=0 cpu_id=1
127129          <idle>-0     (-----) [002] d..2 82317.945576: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
127130  kworker/u16:15-1311  ( 1311) [002] d..2 82317.945610: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127131          <idle>-0     (-----) [002] d..1 82317.945623: cpu_idle: state=0 cpu_id=2
127132 [email protected]   (  619) [000] d..2 82317.945624: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127133 [email protected]   (  619) [000] d..3 82317.945652: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127134          <idle>-0     (-----) [003] .n.1 82317.945657: cpu_idle: state=4294967295 cpu_id=3
127135          <idle>-0     (-----) [003] d..2 82317.945670: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127136 [email protected]   (  619) [000] ...1 82317.945774: tracing_mark_write: E|619
127137 [email protected]   (  619) [000] ...1 82317.945782: tracing_mark_write: E|619
127138 [email protected]   (  619) [000] ...1 82317.945850: tracing_mark_write: E|619
127139 [email protected]   (  619) [000] ...1 82317.945901: tracing_mark_write: E|619
127140 [email protected]   (  619) [000] .... 82317.945920: binder_transaction: transaction=1572745 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
127141 [email protected]   (  619) [000] .... 82317.945925: binder_transaction_alloc_buf: transaction=1572745 data_size=576 offsets_size=112
127142 [email protected]   (  619) [000] d..2 82317.945948: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127143 [email protected]   (  619) [000] d..3 82317.945970: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127144          <idle>-0     (-----) [001] .n.1 82317.945975: cpu_idle: state=4294967295 cpu_id=1
127145 [email protected]   (  619) [000] .... 82317.945976: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
127146          <idle>-0     (-----) [001] d..2 82317.945988: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
127147  surfaceflinger-8858  ( 8858) [001] .... 82317.946000: binder_transaction_received: transaction=1572745
127148 [email protected]   (  619) [000] d..2 82317.946079: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127149          <idle>-0     (-----) [000] d..1 82317.946105: cpu_idle: state=0 cpu_id=0
127150 crtc_commit:111-321   (  321) [003] d..2 82317.946430: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
127151          <idle>-0     (-----) [003] d..1 82317.946447: cpu_idle: state=0 cpu_id=3
127152  surfaceflinger-8858  ( 8858) [001] d..2 82317.946466: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127153          <idle>-0     (-----) [001] d..1 82317.946491: cpu_idle: state=0 cpu_id=1
127154          <idle>-0     (-----) [000] ...1 82317.947968: cpu_idle: state=4294967295 cpu_id=0
127155          <idle>-0     (-----) [000] d..1 82317.947973: cpu_idle: state=0 cpu_id=0
127156          <idle>-0     (-----) [000] d.h5 82317.951468: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127157          <idle>-0     (-----) [000] dnh6 82317.951487: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127158          <idle>-0     (-----) [000] dnh5 82317.951492: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127159          <idle>-0     (-----) [000] dnh6 82317.951507: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127160          <idle>-0     (-----) [003] .n.1 82317.951514: cpu_idle: state=4294967295 cpu_id=3
127161          <idle>-0     (-----) [000] .n.1 82317.951521: cpu_idle: state=4294967295 cpu_id=0
127162          <idle>-0     (-----) [003] d..2 82317.951528: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127163          <idle>-0     (-----) [000] d..2 82317.951536: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127164  crtc_event:111-322   (  322) [000] d..2 82317.951576: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127165          <idle>-0     (-----) [000] d..2 82317.951580: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
127166          <idle>-0     (-----) [000] dn.3 82317.951594: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
127167          <idle>-0     (-----) [000] d..2 82317.951604: 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
127168     ksoftirqd/0-3     (    3) [000] d.s2 82317.951616: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
127169     ksoftirqd/0-3     (    3) [000] d.s3 82317.951658: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
127170     ksoftirqd/0-3     (    3) [000] d..2 82317.951675: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
127171 crtc_commit:111-321   (  321) [003] d..2 82317.951681: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
127172          <idle>-0     (-----) [003] d..1 82317.951691: cpu_idle: state=0 cpu_id=3
127173  kworker/u16:15-1311  ( 1311) [000] d..2 82317.951753: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127174          <idle>-0     (-----) [000] d..1 82317.951770: cpu_idle: state=0 cpu_id=0
127175          <idle>-0     (-----) [002] d.s2 82317.951807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127176          <idle>-0     (-----) [002] dns3 82317.951866: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127177          <idle>-0     (-----) [002] .n.1 82317.951879: cpu_idle: state=4294967295 cpu_id=2
127178          <idle>-0     (-----) [003] d.H3 82317.951893: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
127179          <idle>-0     (-----) [002] d..2 82317.951893: 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
127180          <idle>-0     (-----) [003] dnH4 82317.951923: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
127181     rcu_preempt-7     (    7) [002] d..2 82317.951930: 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
127182          <idle>-0     (-----) [003] dns3 82317.951934: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127183          <idle>-0     (-----) [002] d..1 82317.951944: cpu_idle: state=0 cpu_id=2
127184          <idle>-0     (-----) [003] dns4 82317.951950: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127185          <idle>-0     (-----) [003] dns3 82317.951958: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
127186          <idle>-0     (-----) [000] .n.1 82317.951958: cpu_idle: state=4294967295 cpu_id=0
127187          <idle>-0     (-----) [000] d..2 82317.951974: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127188          <idle>-0     (-----) [003] dns4 82317.951984: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
127189  crtc_event:111-322   (  322) [000] d..2 82317.952000: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
127190          <idle>-0     (-----) [003] dns3 82317.952007: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
127191          <idle>-0     (-----) [003] dns4 82317.952049: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
127192          <idle>-0     (-----) [003] .n.1 82317.952063: cpu_idle: state=4294967295 cpu_id=3
127193          <idle>-0     (-----) [003] d..2 82317.952073: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
127194  kworker/u16:15-1311  ( 1311) [000] d..2 82317.952121: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127195         sugov:0-576   (  576) [003] .... 82317.952128: clk_set_rate: pwrcl_clk 748800000
127196          <idle>-0     (-----) [000] d..1 82317.952136: cpu_idle: state=0 cpu_id=0
127197         sugov:0-576   (  576) [003] .... 82317.952150: clk_set_rate: cpu3_pwrcl_clk 825600000
127198         sugov:0-576   (  576) [003] .... 82317.952161: clk_set_rate: cpu2_pwrcl_clk 825600000
127199         sugov:0-576   (  576) [003] .... 82317.952169: clk_set_rate: cpu1_pwrcl_clk 825600000
127200         sugov:0-576   (  576) [003] .... 82317.952178: clk_set_rate: cpu0_pwrcl_clk 748800000
127201         sugov:0-576   (  576) [003] .... 82317.952295: cpu_frequency: state=748800 cpu_id=0
127202         sugov:0-576   (  576) [003] .... 82317.952323: cpu_frequency: state=748800 cpu_id=1
127203         sugov:0-576   (  576) [003] .... 82317.952328: cpu_frequency: state=748800 cpu_id=2
127204         sugov:0-576   (  576) [003] .... 82317.952333: cpu_frequency: state=748800 cpu_id=3
127205         sugov:0-576   (  576) [003] d..2 82317.952357: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127206  kworker/u16:13-1147  ( 1147) [003] d..2 82317.952393: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127207          <idle>-0     (-----) [003] d..1 82317.952414: cpu_idle: state=0 cpu_id=3
127208          <idle>-0     (-----) [000] d.h5 82317.953794: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127209          <idle>-0     (-----) [000] d.h6 82317.953818: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127210          <idle>-0     (-----) [003] .n.1 82317.953825: cpu_idle: state=4294967295 cpu_id=3
127211          <idle>-0     (-----) [000] ...1 82317.953836: cpu_idle: state=4294967295 cpu_id=0
127212          <idle>-0     (-----) [003] d..2 82317.953838: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127213          <idle>-0     (-----) [000] d..1 82317.953842: cpu_idle: state=0 cpu_id=0
127214 crtc_commit:111-321   (  321) [003] d..2 82317.953918: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127215          <idle>-0     (-----) [003] d..1 82317.953934: cpu_idle: state=0 cpu_id=3
127216          <idle>-0     (-----) [000] d.h5 82317.954098: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127217          <idle>-0     (-----) [000] dnh6 82317.954110: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127218          <idle>-0     (-----) [000] .n.1 82317.954125: cpu_idle: state=4294967295 cpu_id=0
127219          <idle>-0     (-----) [000] d..2 82317.954138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127220  crtc_event:111-322   (  322) [000] d..2 82317.954168: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127221          <idle>-0     (-----) [000] d..1 82317.954181: cpu_idle: state=0 cpu_id=0
127222          <idle>-0     (-----) [001] d.h2 82317.955915: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
127223          <idle>-0     (-----) [001] dnh3 82317.955937: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
127224          <idle>-0     (-----) [001] .n.1 82317.955947: cpu_idle: state=4294967295 cpu_id=1
127225          <idle>-0     (-----) [001] d..2 82317.955962: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
127226        DispSync-8879  ( 8858) [001] d..1 82317.955981: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
127227        DispSync-8879  ( 8858) [001] d..2 82317.955999: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
127228          <idle>-0     (-----) [003] .n.1 82317.956006: cpu_idle: state=4294967295 cpu_id=3
127229          <idle>-0     (-----) [003] d..2 82317.956022: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
127230        DispSync-8879  ( 8858) [001] d..2 82317.956046: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127231          <idle>-0     (-----) [001] d..2 82317.956052: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
127232          <idle>-0     (-----) [001] dn.3 82317.956068: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
127233  appEventThread-8881  ( 8858) [003] d..3 82317.956071: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127234          <idle>-0     (-----) [001] d..2 82317.956081: 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
127235          <idle>-0     (-----) [004] dnh2 82317.956103: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127236          <idle>-0     (-----) [004] .n.1 82317.956108: cpu_idle: state=4294967295 cpu_id=4
127237     ksoftirqd/1-18    (   18) [001] d..2 82317.956116: 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
127238          <idle>-0     (-----) [004] d..2 82317.956117: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
127239          <idle>-0     (-----) [001] d..1 82317.956132: cpu_idle: state=0 cpu_id=1
127240  appEventThread-8881  ( 8858) [003] d..2 82317.956141: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127241          <idle>-0     (-----) [003] d..1 82317.956159: cpu_idle: state=0 cpu_id=3
127242 s.nexuslauncher-10023 (10023) [004] .... 82317.956330: binder_transaction: transaction=1572746 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
127243 s.nexuslauncher-10023 (10023) [004] .... 82317.956335: binder_transaction_alloc_buf: transaction=1572746 data_size=80 offsets_size=0
127244 s.nexuslauncher-10023 (10023) [004] d..4 82317.956341: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
127245          <idle>-0     (-----) [000] dnh2 82317.956408: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
127246          <idle>-0     (-----) [000] .n.1 82317.956415: cpu_idle: state=4294967295 cpu_id=0
127247 s.nexuslauncher-10023 (10023) [004] d..3 82317.956428: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127248          <idle>-0     (-----) [000] d..2 82317.956429: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
127249   Binder:8858_1-8871  ( 8858) [000] .... 82317.956442: binder_transaction_received: transaction=1572746
127250 s.nexuslauncher-10023 (10023) [004] d..4 82317.956445: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127251          <idle>-0     (-----) [005] .n.1 82317.956452: cpu_idle: state=4294967295 cpu_id=5
127252          <idle>-0     (-----) [005] d..2 82317.956465: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127253   Binder:8858_1-8871  ( 8858) [000] d..1 82317.956492: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
127254    RenderThread-16607 (10023) [005] d..2 82317.956514: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127255   Binder:8858_1-8871  ( 8858) [000] d..2 82317.956516: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
127256          <idle>-0     (-----) [003] .n.1 82317.956523: cpu_idle: state=4294967295 cpu_id=3
127257          <idle>-0     (-----) [005] d..1 82317.956525: cpu_idle: state=0 cpu_id=5
127258          <idle>-0     (-----) [003] d..2 82317.956535: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
127259   Binder:8858_1-8871  ( 8858) [000] d..2 82317.956574: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127260  appEventThread-8881  ( 8858) [003] d..2 82317.956585: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127261          <idle>-0     (-----) [000] d..1 82317.956595: cpu_idle: state=0 cpu_id=0
127262          <idle>-0     (-----) [003] d..1 82317.956598: cpu_idle: state=0 cpu_id=3
127263 s.nexuslauncher-10023 (10023) [004] d..3 82317.956680: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127264 s.nexuslauncher-10023 (10023) [004] d..4 82317.956698: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127265          <idle>-0     (-----) [005] .n.1 82317.956703: cpu_idle: state=4294967295 cpu_id=5
127266          <idle>-0     (-----) [005] d..2 82317.956712: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127267 s.nexuslauncher-10023 (10023) [004] d..2 82317.956724: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
127268          <idle>-0     (-----) [004] d..1 82317.956742: cpu_idle: state=0 cpu_id=4
127269    RenderThread-16607 (10023) [005] d..1 82317.956854: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127270    RenderThread-16607 (10023) [005] d..2 82317.956869: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127271          <idle>-0     (-----) [004] .n.1 82317.956875: cpu_idle: state=4294967295 cpu_id=4
127272          <idle>-0     (-----) [004] d..2 82317.956885: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
127273    RenderThread-16607 (10023) [005] .... 82317.956918: binder_transaction: transaction=1572747 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
127274    RenderThread-16607 (10023) [005] .... 82317.956923: binder_transaction_alloc_buf: transaction=1572747 data_size=104 offsets_size=0
127275    RenderThread-16607 (10023) [005] ...2 82317.956926: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
127276    RenderThread-16607 (10023) [005] d..4 82317.956930: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
127277    RenderThread-16607 (10023) [005] d..5 82317.956951: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127278 s.nexuslauncher-10023 (10023) [004] d..2 82317.956996: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
127279    RenderThread-16607 (10023) [005] d..2 82317.956997: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127280          <idle>-0     (-----) [004] d..1 82317.957007: cpu_idle: state=0 cpu_id=4
127281   Binder:8858_1-8871  ( 8858) [005] .... 82317.957009: binder_transaction_received: transaction=1572747
127282   Binder:8858_1-8871  ( 8858) [005] .... 82317.957065: binder_transaction: transaction=1572748 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
127283   Binder:8858_1-8871  ( 8858) [005] .... 82317.957069: binder_transaction_alloc_buf: transaction=1572748 data_size=52 offsets_size=8
127284   Binder:8858_1-8871  ( 8858) [005] d..2 82317.957075: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127285   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.957086: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127286   Binder:8858_1-8871  ( 8858) [005] d..2 82317.957092: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
127287    RenderThread-16607 (10023) [005] .... 82317.957100: binder_transaction_received: transaction=1572748
127288    RenderThread-16607 (10023) [005] d..2 82317.958318: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127289   Binder:8858_1-8871  ( 8858) [005] .... 82317.958330: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
127290   Binder:8858_1-8871  ( 8858) [005] d..2 82317.958397: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127291          <idle>-0     (-----) [005] d.h2 82317.958414: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127292          <idle>-0     (-----) [005] d.h3 82317.958421: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
127293          <idle>-0     (-----) [005] dnh3 82317.958424: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127294          <idle>-0     (-----) [005] d..2 82317.958437: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127295    RenderThread-16607 (10023) [005] d.s4 82317.958473: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
127296          <idle>-0     (-----) [002] d.s2 82317.958474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127297          <idle>-0     (-----) [002] dns3 82317.958495: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127298          <idle>-0     (-----) [002] .n.1 82317.958512: cpu_idle: state=4294967295 cpu_id=2
127299          <idle>-0     (-----) [000] dnh2 82317.958519: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
127300          <idle>-0     (-----) [002] d..2 82317.958527: 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
127301          <idle>-0     (-----) [000] .n.1 82317.958529: cpu_idle: state=4294967295 cpu_id=0
127302     rcu_preempt-7     (    7) [002] d..2 82317.958536: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
127303          <idle>-0     (-----) [000] d..2 82317.958545: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127304     rcu_preempt-7     (    7) [002] d..3 82317.958583: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127305     rcu_preempt-7     (    7) [002] d..2 82317.958606: 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
127306         rcuop/0-10    (   10) [002] d..2 82317.958619: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127307         rcuop/0-10    (   10) [002] d..3 82317.958639: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127308         rcuop/0-10    (   10) [002] d..2 82317.958649: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127309    RenderThread-16607 (10023) [005] .... 82317.958657: binder_transaction: transaction=1572749 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
127310    RenderThread-16607 (10023) [005] .... 82317.958662: binder_transaction_alloc_buf: transaction=1572749 data_size=192 offsets_size=8
127311         rcuop/0-10    (   10) [002] d..3 82317.958662: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127312    RenderThread-16607 (10023) [005] ...2 82317.958670: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
127313    RenderThread-16607 (10023) [005] d..4 82317.958672: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127314         rcuop/0-10    (   10) [002] d..2 82317.958672: 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
127315    RenderThread-16607 (10023) [005] d..5 82317.958685: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127316         rcuop/1-21    (   21) [002] d..2 82317.958690: 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
127317    RenderThread-16607 (10023) [005] d..2 82317.958705: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127318   Binder:8858_1-8871  ( 8858) [005] .... 82317.958721: binder_transaction_received: transaction=1572749
127319     rcu_preempt-7     (    7) [002] d..2 82317.958722: 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
127320          <idle>-0     (-----) [002] d..1 82317.958739: cpu_idle: state=0 cpu_id=2
127321  kworker/u16:13-1147  ( 1147) [000] d..2 82317.958765: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127322          <idle>-0     (-----) [000] d..1 82317.958778: cpu_idle: state=0 cpu_id=0
127323   Binder:8858_1-8871  ( 8858) [005] .... 82317.958844: binder_transaction: transaction=1572750 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
127324   Binder:8858_1-8871  ( 8858) [005] .... 82317.958848: binder_transaction_alloc_buf: transaction=1572750 data_size=68 offsets_size=0
127325   Binder:8858_1-8871  ( 8858) [005] d..2 82317.958851: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127326   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.958862: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127327   Binder:8858_1-8871  ( 8858) [005] d..2 82317.958869: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
127328    RenderThread-16607 (10023) [005] .... 82317.958878: binder_transaction_received: transaction=1572750
127329    RenderThread-16607 (10023) [005] d..2 82317.958942: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127330   Binder:8858_1-8871  ( 8858) [005] .... 82317.958950: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
127331   Binder:8858_1-8871  ( 8858) [005] d..2 82317.959000: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127332          <idle>-0     (-----) [005] d..1 82317.959017: cpu_idle: state=0 cpu_id=5
127333          <idle>-0     (-----) [000] d.h3 82317.959743: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
127334          <idle>-0     (-----) [000] d.h4 82317.959768: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
127335          <idle>-0     (-----) [003] .n.1 82317.959775: cpu_idle: state=4294967295 cpu_id=3
127336          <idle>-0     (-----) [000] ...1 82317.959785: cpu_idle: state=4294967295 cpu_id=0
127337          <idle>-0     (-----) [003] d..2 82317.959788: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
127338          <idle>-0     (-----) [000] d..1 82317.959792: cpu_idle: state=0 cpu_id=0
127339 kgsl_worker_thr-258   (  258) [003] d..2 82317.959847: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
127340 kgsl_worker_thr-258   (  258) [003] d..3 82317.959871: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
127341          <idle>-0     (-----) [000] .n.1 82317.959876: cpu_idle: state=4294967295 cpu_id=0
127342          <idle>-0     (-----) [000] d..2 82317.959892: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127343          <idle>-0     (-----) [001] d.h2 82317.959904: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
127344 kgsl_worker_thr-258   (  258) [003] d..2 82317.959911: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127345          <idle>-0     (-----) [001] dnh3 82317.959920: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
127346          <idle>-0     (-----) [003] d..1 82317.959927: cpu_idle: state=0 cpu_id=3
127347          <idle>-0     (-----) [001] .n.1 82317.959930: cpu_idle: state=4294967295 cpu_id=1
127348          <idle>-0     (-----) [001] d..2 82317.959942: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
127349        DispSync-8879  ( 8858) [001] d..1 82317.959958: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127350        DispSync-8879  ( 8858) [001] d..2 82317.959975: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127351          <idle>-0     (-----) [002] .n.1 82317.959982: cpu_idle: state=4294967295 cpu_id=2
127352          <idle>-0     (-----) [002] d..2 82317.959995: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
127353        DispSync-8879  ( 8858) [001] d..2 82317.960010: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127354          <idle>-0     (-----) [001] d..1 82317.960026: cpu_idle: state=0 cpu_id=1
127355   sfEventThread-8882  ( 8858) [002] d..3 82317.960039: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127356   sfEventThread-8882  ( 8858) [002] d..4 82317.960063: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127357          <idle>-0     (-----) [001] .n.1 82317.960069: cpu_idle: state=4294967295 cpu_id=1
127358  kworker/u16:13-1147  ( 1147) [000] d..2 82317.960071: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127359          <idle>-0     (-----) [001] d..2 82317.960082: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
127360          <idle>-0     (-----) [000] d..1 82317.960086: cpu_idle: state=0 cpu_id=0
127361   sfEventThread-8882  ( 8858) [002] d..2 82317.960104: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127362          <idle>-0     (-----) [002] d..1 82317.960121: cpu_idle: state=0 cpu_id=2
127363  surfaceflinger-8858  ( 8858) [001] d..1 82317.960468: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127364  surfaceflinger-8858  ( 8858) [001] d..2 82317.960495: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127365          <idle>-0     (-----) [002] .n.1 82317.960501: cpu_idle: state=4294967295 cpu_id=2
127366          <idle>-0     (-----) [002] d..2 82317.960513: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
127367   sfEventThread-8882  ( 8858) [002] d..2 82317.960553: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127368          <idle>-0     (-----) [002] d..1 82317.960565: cpu_idle: state=0 cpu_id=2
127369  surfaceflinger-8858  ( 8858) [001] ...1 82317.960714: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
127370  surfaceflinger-8858  ( 8858) [001] ...1 82317.960723: tracing_mark_write: E|8858
127371  surfaceflinger-8858  ( 8858) [001] .... 82317.960792: binder_transaction: transaction=1572751 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
127372  surfaceflinger-8858  ( 8858) [001] .... 82317.960799: binder_transaction_alloc_buf: transaction=1572751 data_size=540 offsets_size=96
127373  surfaceflinger-8858  ( 8858) [001] ...2 82317.960828: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
127374  surfaceflinger-8858  ( 8858) [001] d..4 82317.960835: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
127375  surfaceflinger-8858  ( 8858) [001] d..5 82317.960861: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
127376          <idle>-0     (-----) [000] .n.1 82317.960867: cpu_idle: state=4294967295 cpu_id=0
127377          <idle>-0     (-----) [000] d..2 82317.960880: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
127378 [email protected]   (  619) [000] .... 82317.960894: binder_transaction_received: transaction=1572751
127379  surfaceflinger-8858  ( 8858) [001] d..2 82317.960904: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127380          <idle>-0     (-----) [001] d..1 82317.960928: cpu_idle: state=0 cpu_id=1
127381 [email protected]   (  619) [000] ...1 82317.960951: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
127382 [email protected]   (  619) [000] ...1 82317.961085: tracing_mark_write: B|619|HWCSession::PresentDisplay::
127383 [email protected]   (  619) [000] ...1 82317.961277: tracing_mark_write: B|619|HWDeviceDRM::Commit::
127384 [email protected]   (  619) [000] ...1 82317.961292: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
127385 [email protected]   (  619) [000] d.h1 82317.961819: sched_waking: comm=oid.setupwizard pid=9298 prio=120 target_cpu=000
127386 [email protected]   (  619) [000] d.h2 82317.961863: sched_wakeup: comm=oid.setupwizard pid=9298 prio=120 target_cpu=001
127387          <idle>-0     (-----) [001] .n.1 82317.961870: cpu_idle: state=4294967295 cpu_id=1
127388 [email protected]   (  619) [000] d.s2 82317.961879: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
127389          <idle>-0     (-----) [001] d..2 82317.961891: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=oid.setupwizard next_pid=9298 next_prio=120
127390 [email protected]   (  619) [000] d.s3 82317.961924: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
127391 oid.setupwizard-9298  ( 9298) [001] d..2 82317.962085: sched_switch: prev_comm=oid.setupwizard prev_pid=9298 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127392 [email protected]   (  619) [000] d..2 82317.962159: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127393 [email protected]   (  619) [000] d..3 82317.962185: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127394          <idle>-0     (-----) [003] .n.1 82317.962191: cpu_idle: state=4294967295 cpu_id=3
127395          <idle>-0     (-----) [003] d..2 82317.962204: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127396  kworker/u16:13-1147  ( 1147) [001] d..2 82317.962214: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127397          <idle>-0     (-----) [001] d..1 82317.962235: cpu_idle: state=0 cpu_id=1
127398 [email protected]   (  619) [000] ...1 82317.962315: tracing_mark_write: E|619
127399 [email protected]   (  619) [000] ...1 82317.962324: tracing_mark_write: E|619
127400 [email protected]   (  619) [000] ...1 82317.962498: tracing_mark_write: E|619
127401 [email protected]   (  619) [000] ...1 82317.962556: tracing_mark_write: E|619
127402 [email protected]   (  619) [000] .... 82317.962575: binder_transaction: transaction=1572752 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
127403 [email protected]   (  619) [000] .... 82317.962580: binder_transaction_alloc_buf: transaction=1572752 data_size=576 offsets_size=112
127404 [email protected]   (  619) [000] d..2 82317.962604: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127405 [email protected]   (  619) [000] d..3 82317.962627: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127406 [email protected]   (  619) [000] .... 82317.962633: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
127407          <idle>-0     (-----) [001] .n.1 82317.962635: cpu_idle: state=4294967295 cpu_id=1
127408          <idle>-0     (-----) [001] d..2 82317.962648: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
127409  surfaceflinger-8858  ( 8858) [001] .... 82317.962662: binder_transaction_received: transaction=1572752
127410 [email protected]   (  619) [000] d..2 82317.962743: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127411          <idle>-0     (-----) [000] d..1 82317.962770: cpu_idle: state=0 cpu_id=0
127412 crtc_commit:111-321   (  321) [003] d..2 82317.962978: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
127413          <idle>-0     (-----) [003] d..1 82317.962997: cpu_idle: state=0 cpu_id=3
127414  surfaceflinger-8858  ( 8858) [001] d..2 82317.963179: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127415          <idle>-0     (-----) [001] d..1 82317.963205: cpu_idle: state=0 cpu_id=1
127416          <idle>-0     (-----) [002] d.s2 82317.965142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127417          <idle>-0     (-----) [002] dns3 82317.965163: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127418          <idle>-0     (-----) [002] .n.1 82317.965179: cpu_idle: state=4294967295 cpu_id=2
127419          <idle>-0     (-----) [002] d..2 82317.965195: 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
127420     rcu_preempt-7     (    7) [002] d..2 82317.965207: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127421     rcu_preempt-7     (    7) [002] d..3 82317.965224: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127422     rcu_preempt-7     (    7) [002] d..2 82317.965237: 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
127423         rcuop/0-10    (   10) [002] d..2 82317.965242: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127424         rcuop/0-10    (   10) [002] d..3 82317.965257: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127425         rcuop/0-10    (   10) [002] d..2 82317.965261: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127426         rcuop/0-10    (   10) [002] d..3 82317.965273: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127427         rcuop/0-10    (   10) [002] d..2 82317.965283: 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
127428         rcuop/1-21    (   21) [002] d..2 82317.965299: 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
127429     rcu_preempt-7     (    7) [002] d..2 82317.965332: 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
127430          <idle>-0     (-----) [002] d..1 82317.965349: cpu_idle: state=0 cpu_id=2
127431          <idle>-0     (-----) [000] d.h5 82317.967940: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127432          <idle>-0     (-----) [000] dnh6 82317.967958: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127433          <idle>-0     (-----) [000] dnh5 82317.967964: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127434          <idle>-0     (-----) [000] dnh6 82317.967980: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127435          <idle>-0     (-----) [003] .n.1 82317.967987: cpu_idle: state=4294967295 cpu_id=3
127436          <idle>-0     (-----) [000] .n.1 82317.967997: cpu_idle: state=4294967295 cpu_id=0
127437          <idle>-0     (-----) [003] d..2 82317.968000: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127438          <idle>-0     (-----) [000] d..2 82317.968013: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127439  crtc_event:111-322   (  322) [000] d..2 82317.968048: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127440          <idle>-0     (-----) [000] d..1 82317.968064: cpu_idle: state=0 cpu_id=0
127441 crtc_commit:111-321   (  321) [003] d..2 82317.968152: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
127442          <idle>-0     (-----) [003] d..1 82317.968163: cpu_idle: state=0 cpu_id=3
127443          <idle>-0     (-----) [003] d.s3 82317.968480: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127444          <idle>-0     (-----) [003] d.s4 82317.968502: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127445          <idle>-0     (-----) [000] .n.1 82317.968509: cpu_idle: state=4294967295 cpu_id=0
127446          <idle>-0     (-----) [003] d.s3 82317.968510: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
127447          <idle>-0     (-----) [000] d..2 82317.968522: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127448          <idle>-0     (-----) [003] dns4 82317.968553: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
127449  crtc_event:111-322   (  322) [000] d..2 82317.968565: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127450          <idle>-0     (-----) [000] d..1 82317.968578: cpu_idle: state=0 cpu_id=0
127451          <idle>-0     (-----) [003] .n.1 82317.968580: cpu_idle: state=4294967295 cpu_id=3
127452          <idle>-0     (-----) [003] d..2 82317.968592: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127453  kworker/u16:13-1147  ( 1147) [003] d..2 82317.968720: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127454          <idle>-0     (-----) [003] d..1 82317.968739: cpu_idle: state=0 cpu_id=3
127455          <idle>-0     (-----) [000] ...1 82317.970153: cpu_idle: state=4294967295 cpu_id=0
127456          <idle>-0     (-----) [000] d..1 82317.970158: cpu_idle: state=0 cpu_id=0
127457          <idle>-0     (-----) [000] d.h5 82317.970260: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127458          <idle>-0     (-----) [000] d.h6 82317.970280: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127459          <idle>-0     (-----) [003] .n.1 82317.970288: cpu_idle: state=4294967295 cpu_id=3
127460          <idle>-0     (-----) [000] ...1 82317.970296: cpu_idle: state=4294967295 cpu_id=0
127461          <idle>-0     (-----) [003] d..2 82317.970300: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127462          <idle>-0     (-----) [000] d..1 82317.970302: cpu_idle: state=0 cpu_id=0
127463 crtc_commit:111-321   (  321) [003] d..2 82317.970380: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127464          <idle>-0     (-----) [003] d..1 82317.970396: cpu_idle: state=0 cpu_id=3
127465          <idle>-0     (-----) [000] d.h5 82317.970560: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127466          <idle>-0     (-----) [000] dnh6 82317.970572: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127467          <idle>-0     (-----) [000] .n.1 82317.970587: cpu_idle: state=4294967295 cpu_id=0
127468          <idle>-0     (-----) [000] d..2 82317.970599: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127469  crtc_event:111-322   (  322) [000] d..2 82317.970629: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127470          <idle>-0     (-----) [000] d..1 82317.970641: cpu_idle: state=0 cpu_id=0
127471          <idle>-0     (-----) [002] d.s2 82317.971880: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127472          <idle>-0     (-----) [002] dns3 82317.971903: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127473          <idle>-0     (-----) [002] dns3 82317.971910: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
127474          <idle>-0     (-----) [002] dns4 82317.971948: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
127475          <idle>-0     (-----) [002] .n.1 82317.971971: cpu_idle: state=4294967295 cpu_id=2
127476          <idle>-0     (-----) [002] d..2 82317.971988: 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
127477     rcu_preempt-7     (    7) [002] d..2 82317.971999: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127478     rcu_preempt-7     (    7) [002] d..3 82317.972018: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127479     rcu_preempt-7     (    7) [002] d..2 82317.972030: 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
127480         rcuop/0-10    (   10) [002] d..2 82317.972034: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127481         rcuop/0-10    (   10) [002] d..3 82317.972049: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127482         rcuop/0-10    (   10) [002] d..2 82317.972059: 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
127483         rcuop/1-21    (   21) [002] d..2 82317.972074: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127484  kworker/u16:13-1147  ( 1147) [002] d..2 82317.972155: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127485          <idle>-0     (-----) [002] d..1 82317.972175: cpu_idle: state=0 cpu_id=2
127486          <idle>-0     (-----) [001] d.h2 82317.972373: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
127487          <idle>-0     (-----) [001] dnh3 82317.972395: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
127488          <idle>-0     (-----) [001] .n.1 82317.972405: cpu_idle: state=4294967295 cpu_id=1
127489          <idle>-0     (-----) [001] d..2 82317.972419: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
127490        DispSync-8879  ( 8858) [001] d..1 82317.972438: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
127491        DispSync-8879  ( 8858) [001] d..2 82317.972456: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
127492          <idle>-0     (-----) [003] .n.1 82317.972462: cpu_idle: state=4294967295 cpu_id=3
127493          <idle>-0     (-----) [003] d..2 82317.972475: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
127494        DispSync-8879  ( 8858) [001] d..2 82317.972499: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127495          <idle>-0     (-----) [001] d..1 82317.972516: cpu_idle: state=0 cpu_id=1
127496  appEventThread-8881  ( 8858) [003] d..3 82317.972524: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127497          <idle>-0     (-----) [004] dnh2 82317.972557: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127498          <idle>-0     (-----) [004] .n.1 82317.972562: cpu_idle: state=4294967295 cpu_id=4
127499          <idle>-0     (-----) [004] d..2 82317.972570: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
127500  appEventThread-8881  ( 8858) [003] d..2 82317.972593: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127501          <idle>-0     (-----) [003] d..1 82317.972612: cpu_idle: state=0 cpu_id=3
127502 s.nexuslauncher-10023 (10023) [004] .... 82317.972781: binder_transaction: transaction=1572753 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
127503 s.nexuslauncher-10023 (10023) [004] .... 82317.972786: binder_transaction_alloc_buf: transaction=1572753 data_size=80 offsets_size=0
127504 s.nexuslauncher-10023 (10023) [004] d..4 82317.972791: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
127505          <idle>-0     (-----) [000] dnh2 82317.972859: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
127506          <idle>-0     (-----) [000] .n.1 82317.972866: cpu_idle: state=4294967295 cpu_id=0
127507 s.nexuslauncher-10023 (10023) [004] d..3 82317.972879: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127508          <idle>-0     (-----) [000] d..2 82317.972879: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
127509   Binder:8858_1-8871  ( 8858) [000] .... 82317.972892: binder_transaction_received: transaction=1572753
127510 s.nexuslauncher-10023 (10023) [004] d..4 82317.972895: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127511          <idle>-0     (-----) [005] .n.1 82317.972903: cpu_idle: state=4294967295 cpu_id=5
127512          <idle>-0     (-----) [005] d..2 82317.972913: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127513   Binder:8858_1-8871  ( 8858) [000] d..1 82317.972939: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
127514    RenderThread-16607 (10023) [005] d..2 82317.972955: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127515   Binder:8858_1-8871  ( 8858) [000] d..2 82317.972963: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
127516          <idle>-0     (-----) [005] d..1 82317.972966: cpu_idle: state=0 cpu_id=5
127517          <idle>-0     (-----) [003] .n.1 82317.972969: cpu_idle: state=4294967295 cpu_id=3
127518          <idle>-0     (-----) [003] d..2 82317.972982: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
127519   Binder:8858_1-8871  ( 8858) [000] d..2 82317.973018: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127520  appEventThread-8881  ( 8858) [003] d..2 82317.973030: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127521          <idle>-0     (-----) [000] d..1 82317.973039: cpu_idle: state=0 cpu_id=0
127522          <idle>-0     (-----) [003] d..1 82317.973044: cpu_idle: state=0 cpu_id=3
127523 s.nexuslauncher-10023 (10023) [004] d..3 82317.973136: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127524 s.nexuslauncher-10023 (10023) [004] d..4 82317.973154: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127525          <idle>-0     (-----) [005] .n.1 82317.973159: cpu_idle: state=4294967295 cpu_id=5
127526          <idle>-0     (-----) [005] d..2 82317.973169: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127527 s.nexuslauncher-10023 (10023) [004] d..2 82317.973180: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
127528          <idle>-0     (-----) [004] d..1 82317.973196: cpu_idle: state=0 cpu_id=4
127529    RenderThread-16607 (10023) [005] d..1 82317.973321: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127530    RenderThread-16607 (10023) [005] d..2 82317.973338: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127531          <idle>-0     (-----) [004] .n.1 82317.973344: cpu_idle: state=4294967295 cpu_id=4
127532          <idle>-0     (-----) [004] d..2 82317.973354: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
127533    RenderThread-16607 (10023) [005] .... 82317.973387: binder_transaction: transaction=1572754 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
127534    RenderThread-16607 (10023) [005] .... 82317.973391: binder_transaction_alloc_buf: transaction=1572754 data_size=104 offsets_size=0
127535    RenderThread-16607 (10023) [005] ...2 82317.973396: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
127536    RenderThread-16607 (10023) [005] d..4 82317.973399: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
127537    RenderThread-16607 (10023) [005] d..5 82317.973420: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127538 s.nexuslauncher-10023 (10023) [004] d..2 82317.973465: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
127539    RenderThread-16607 (10023) [005] d..2 82317.973467: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127540          <idle>-0     (-----) [004] d..1 82317.973475: cpu_idle: state=0 cpu_id=4
127541   Binder:8858_1-8871  ( 8858) [005] .... 82317.973479: binder_transaction_received: transaction=1572754
127542   Binder:8858_1-8871  ( 8858) [005] .... 82317.973537: binder_transaction: transaction=1572755 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
127543   Binder:8858_1-8871  ( 8858) [005] .... 82317.973541: binder_transaction_alloc_buf: transaction=1572755 data_size=52 offsets_size=8
127544   Binder:8858_1-8871  ( 8858) [005] d..2 82317.973548: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127545   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.973559: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127546   Binder:8858_1-8871  ( 8858) [005] d..2 82317.973565: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
127547    RenderThread-16607 (10023) [005] .... 82317.973574: binder_transaction_received: transaction=1572755
127548    RenderThread-16607 (10023) [005] d..2 82317.974777: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127549   Binder:8858_1-8871  ( 8858) [005] .... 82317.974790: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
127550   Binder:8858_1-8871  ( 8858) [005] d..2 82317.974857: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127551          <idle>-0     (-----) [005] d.h2 82317.974874: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127552          <idle>-0     (-----) [005] d.h3 82317.974881: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
127553          <idle>-0     (-----) [005] dnh3 82317.974885: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127554          <idle>-0     (-----) [005] d..2 82317.974898: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127555    RenderThread-16607 (10023) [005] .... 82317.975052: binder_transaction: transaction=1572756 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
127556    RenderThread-16607 (10023) [005] .... 82317.975056: binder_transaction_alloc_buf: transaction=1572756 data_size=192 offsets_size=8
127557    RenderThread-16607 (10023) [005] ...2 82317.975063: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
127558    RenderThread-16607 (10023) [005] d..4 82317.975066: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127559    RenderThread-16607 (10023) [005] d..5 82317.975078: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127560    RenderThread-16607 (10023) [005] d..2 82317.975089: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127561   Binder:8858_1-8871  ( 8858) [005] .... 82317.975099: binder_transaction_received: transaction=1572756
127562   Binder:8858_1-8871  ( 8858) [005] .... 82317.975261: binder_transaction: transaction=1572757 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
127563   Binder:8858_1-8871  ( 8858) [005] .... 82317.975266: binder_transaction_alloc_buf: transaction=1572757 data_size=68 offsets_size=0
127564   Binder:8858_1-8871  ( 8858) [005] d..2 82317.975269: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127565   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.975280: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127566   Binder:8858_1-8871  ( 8858) [005] d..2 82317.975287: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
127567    RenderThread-16607 (10023) [005] .... 82317.975297: binder_transaction_received: transaction=1572757
127568    RenderThread-16607 (10023) [005] d..2 82317.975363: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127569   Binder:8858_1-8871  ( 8858) [005] .... 82317.975371: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
127570   Binder:8858_1-8871  ( 8858) [005] d..2 82317.975428: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127571          <idle>-0     (-----) [005] d..1 82317.975443: cpu_idle: state=0 cpu_id=5
127572          <idle>-0     (-----) [000] d.h3 82317.976209: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
127573          <idle>-0     (-----) [000] d.h4 82317.976233: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
127574          <idle>-0     (-----) [003] .n.1 82317.976239: cpu_idle: state=4294967295 cpu_id=3
127575          <idle>-0     (-----) [000] ...1 82317.976252: cpu_idle: state=4294967295 cpu_id=0
127576          <idle>-0     (-----) [003] d..2 82317.976252: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
127577          <idle>-0     (-----) [000] d..1 82317.976259: cpu_idle: state=0 cpu_id=0
127578 kgsl_worker_thr-258   (  258) [003] d..2 82317.976313: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
127579 kgsl_worker_thr-258   (  258) [003] d..3 82317.976364: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
127580          <idle>-0     (-----) [001] d.h2 82317.976371: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
127581          <idle>-0     (-----) [001] dnh3 82317.976384: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
127582 kgsl_worker_thr-258   (  258) [003] d..2 82317.976389: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127583          <idle>-0     (-----) [001] .n.1 82317.976394: cpu_idle: state=4294967295 cpu_id=1
127584          <idle>-0     (-----) [001] d..2 82317.976406: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
127585        DispSync-8879  ( 8858) [001] d..1 82317.976420: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127586        DispSync-8879  ( 8858) [001] d..2 82317.976438: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127587          <idle>-0     (-----) [002] .n.1 82317.976445: cpu_idle: state=4294967295 cpu_id=2
127588          <idle>-0     (-----) [002] d..2 82317.976460: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
127589        DispSync-8879  ( 8858) [001] d..2 82317.976475: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127590          <idle>-0     (-----) [001] d..1 82317.976491: cpu_idle: state=0 cpu_id=1
127591   sfEventThread-8882  ( 8858) [002] d..3 82317.976500: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127592   sfEventThread-8882  ( 8858) [002] d..4 82317.976524: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127593          <idle>-0     (-----) [001] .n.1 82317.976530: cpu_idle: state=4294967295 cpu_id=1
127594          <idle>-0     (-----) [001] d..2 82317.976543: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
127595   sfEventThread-8882  ( 8858) [002] d..2 82317.976569: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127596  kworker/u16:13-1147  ( 1147) [003] d..2 82317.976574: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127597          <idle>-0     (-----) [002] d..1 82317.976587: cpu_idle: state=0 cpu_id=2
127598          <idle>-0     (-----) [003] d..1 82317.976594: cpu_idle: state=0 cpu_id=3
127599  surfaceflinger-8858  ( 8858) [001] d..2 82317.976897: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127600  surfaceflinger-8858  ( 8858) [001] d..3 82317.976956: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
127601  surfaceflinger-8858  ( 8858) [001] d..1 82317.976990: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127602  surfaceflinger-8858  ( 8858) [001] d..2 82317.977010: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127603          <idle>-0     (-----) [002] .n.1 82317.977017: cpu_idle: state=4294967295 cpu_id=2
127604          <idle>-0     (-----) [002] d..2 82317.977030: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
127605   sfEventThread-8882  ( 8858) [002] d..2 82317.977097: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
127606         rcuop/0-10    (   10) [002] d..2 82317.977104: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127607         rcuop/0-10    (   10) [002] d..3 82317.977126: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127608         rcuop/0-10    (   10) [002] d..2 82317.977138: 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
127609     rcu_preempt-7     (    7) [002] d..2 82317.977165: 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
127610          <idle>-0     (-----) [002] d..1 82317.977180: cpu_idle: state=0 cpu_id=2
127611  surfaceflinger-8858  ( 8858) [001] ...1 82317.977224: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
127612  surfaceflinger-8858  ( 8858) [001] ...1 82317.977235: tracing_mark_write: E|8858
127613  surfaceflinger-8858  ( 8858) [001] .... 82317.977299: binder_transaction: transaction=1572758 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
127614  surfaceflinger-8858  ( 8858) [001] .... 82317.977306: binder_transaction_alloc_buf: transaction=1572758 data_size=540 offsets_size=96
127615  surfaceflinger-8858  ( 8858) [001] ...2 82317.977335: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
127616  surfaceflinger-8858  ( 8858) [001] d..4 82317.977342: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
127617  surfaceflinger-8858  ( 8858) [001] d..5 82317.977369: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
127618          <idle>-0     (-----) [000] .n.1 82317.977373: cpu_idle: state=4294967295 cpu_id=0
127619          <idle>-0     (-----) [000] d..2 82317.977389: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
127620 [email protected]   (  619) [000] .... 82317.977403: binder_transaction_received: transaction=1572758
127621  surfaceflinger-8858  ( 8858) [001] d..2 82317.977414: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127622          <idle>-0     (-----) [001] d..1 82317.977439: cpu_idle: state=0 cpu_id=1
127623 [email protected]   (  619) [000] ...1 82317.977458: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
127624 [email protected]   (  619) [000] ...1 82317.977583: tracing_mark_write: B|619|HWCSession::PresentDisplay::
127625 [email protected]   (  619) [000] ...1 82317.977775: tracing_mark_write: B|619|HWDeviceDRM::Commit::
127626 [email protected]   (  619) [000] ...1 82317.977792: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
127627 [email protected]   (  619) [000] d.s2 82317.978497: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
127628 [email protected]   (  619) [000] d.s3 82317.978524: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
127629          <idle>-0     (-----) [003] .n.1 82317.978530: cpu_idle: state=4294967295 cpu_id=3
127630          <idle>-0     (-----) [003] d..2 82317.978549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127631 [email protected]   (  619) [000] d..2 82317.978603: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
127632 [email protected]   (  619) [000] d..3 82317.978639: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127633          <idle>-0     (-----) [002] .n.1 82317.978646: cpu_idle: state=4294967295 cpu_id=2
127634          <idle>-0     (-----) [002] d..2 82317.978661: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127635  kworker/u16:13-1147  ( 1147) [003] d..2 82317.978666: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127636          <idle>-0     (-----) [003] d..1 82317.978682: cpu_idle: state=0 cpu_id=3
127637 [email protected]   (  619) [000] ...1 82317.978770: tracing_mark_write: E|619
127638 [email protected]   (  619) [000] ...1 82317.978779: tracing_mark_write: E|619
127639 [email protected]   (  619) [000] ...1 82317.978848: tracing_mark_write: E|619
127640 [email protected]   (  619) [000] ...1 82317.978901: tracing_mark_write: E|619
127641 [email protected]   (  619) [000] .... 82317.978921: binder_transaction: transaction=1572759 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
127642 [email protected]   (  619) [000] .... 82317.978926: binder_transaction_alloc_buf: transaction=1572759 data_size=576 offsets_size=112
127643 [email protected]   (  619) [000] d..2 82317.978953: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127644 [email protected]   (  619) [000] d..3 82317.978977: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127645 [email protected]   (  619) [000] .... 82317.978983: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
127646          <idle>-0     (-----) [001] .n.1 82317.978984: cpu_idle: state=4294967295 cpu_id=1
127647          <idle>-0     (-----) [001] d..2 82317.978999: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
127648  surfaceflinger-8858  ( 8858) [001] .... 82317.979010: binder_transaction_received: transaction=1572759
127649 [email protected]   (  619) [000] d..2 82317.979094: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127650          <idle>-0     (-----) [000] d..1 82317.979119: cpu_idle: state=0 cpu_id=0
127651 crtc_commit:111-321   (  321) [002] d..2 82317.979442: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127652          <idle>-0     (-----) [002] d..1 82317.979456: cpu_idle: state=0 cpu_id=2
127653  surfaceflinger-8858  ( 8858) [001] d..2 82317.979495: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127654          <idle>-0     (-----) [001] d..1 82317.979520: cpu_idle: state=0 cpu_id=1
127655          <idle>-0     (-----) [002] d.s2 82317.981811: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127656          <idle>-0     (-----) [002] dns3 82317.981834: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127657          <idle>-0     (-----) [002] dns3 82317.981841: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
127658          <idle>-0     (-----) [002] dns4 82317.981880: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
127659          <idle>-0     (-----) [002] .n.1 82317.981903: cpu_idle: state=4294967295 cpu_id=2
127660          <idle>-0     (-----) [002] d..2 82317.981916: 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
127661     rcu_preempt-7     (    7) [002] d..2 82317.981929: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127662     rcu_preempt-7     (    7) [002] d..3 82317.981945: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127663     rcu_preempt-7     (    7) [002] d..2 82317.981958: 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
127664         rcuop/0-10    (   10) [002] d..2 82317.981962: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127665         rcuop/0-10    (   10) [002] d..3 82317.981976: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127666         rcuop/0-10    (   10) [002] d..2 82317.981979: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127667         rcuop/0-10    (   10) [002] d..3 82317.981992: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127668         rcuop/0-10    (   10) [002] d..2 82317.982002: 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
127669         rcuop/1-21    (   21) [002] d..2 82317.982015: 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
127670     rcu_preempt-7     (    7) [002] d..2 82317.982028: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127671  kworker/u16:13-1147  ( 1147) [002] d..2 82317.982117: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127672          <idle>-0     (-----) [002] d..1 82317.982137: cpu_idle: state=0 cpu_id=2
127673          <idle>-0     (-----) [000] d.h5 82317.984400: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127674          <idle>-0     (-----) [000] dnh6 82317.984419: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127675          <idle>-0     (-----) [000] dnh5 82317.984425: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127676          <idle>-0     (-----) [000] dnh6 82317.984439: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127677          <idle>-0     (-----) [002] .n.1 82317.984447: cpu_idle: state=4294967295 cpu_id=2
127678          <idle>-0     (-----) [000] .n.1 82317.984456: cpu_idle: state=4294967295 cpu_id=0
127679          <idle>-0     (-----) [002] d..2 82317.984462: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127680          <idle>-0     (-----) [000] d..2 82317.984472: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127681  crtc_event:111-322   (  322) [000] d..2 82317.984508: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127682          <idle>-0     (-----) [000] d..1 82317.984524: cpu_idle: state=0 cpu_id=0
127683 crtc_commit:111-321   (  321) [002] d..2 82317.984623: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127684          <idle>-0     (-----) [002] d..1 82317.984634: cpu_idle: state=0 cpu_id=2
127685          <idle>-0     (-----) [002] d.s3 82317.985145: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127686          <idle>-0     (-----) [002] d.s4 82317.985168: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127687          <idle>-0     (-----) [000] .n.1 82317.985174: cpu_idle: state=4294967295 cpu_id=0
127688          <idle>-0     (-----) [002] ...1 82317.985183: cpu_idle: state=4294967295 cpu_id=2
127689          <idle>-0     (-----) [000] d..2 82317.985187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127690          <idle>-0     (-----) [002] d..1 82317.985189: cpu_idle: state=0 cpu_id=2
127691  crtc_event:111-322   (  322) [000] d..2 82317.985224: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127692          <idle>-0     (-----) [000] d..1 82317.985236: cpu_idle: state=0 cpu_id=0
127693          <idle>-0     (-----) [000] d.h5 82317.986726: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127694          <idle>-0     (-----) [000] d.h6 82317.986746: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127695          <idle>-0     (-----) [002] .n.1 82317.986752: cpu_idle: state=4294967295 cpu_id=2
127696          <idle>-0     (-----) [002] d..2 82317.986762: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127697          <idle>-0     (-----) [000] ...1 82317.986763: cpu_idle: state=4294967295 cpu_id=0
127698          <idle>-0     (-----) [000] d..1 82317.986770: cpu_idle: state=0 cpu_id=0
127699 crtc_commit:111-321   (  321) [002] d..2 82317.986846: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127700          <idle>-0     (-----) [002] d..1 82317.986856: cpu_idle: state=0 cpu_id=2
127701          <idle>-0     (-----) [000] d.h5 82317.987028: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127702          <idle>-0     (-----) [000] dnh6 82317.987039: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127703          <idle>-0     (-----) [000] .n.1 82317.987054: cpu_idle: state=4294967295 cpu_id=0
127704          <idle>-0     (-----) [000] d..2 82317.987066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127705  crtc_event:111-322   (  322) [000] d..2 82317.987095: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127706          <idle>-0     (-----) [000] d..1 82317.987109: cpu_idle: state=0 cpu_id=0
127707          <idle>-0     (-----) [002] d.s2 82317.988474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127708          <idle>-0     (-----) [002] dns3 82317.988496: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127709          <idle>-0     (-----) [002] dns3 82317.988502: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
127710          <idle>-0     (-----) [002] dns4 82317.988516: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
127711          <idle>-0     (-----) [002] .n.1 82317.988525: cpu_idle: state=4294967295 cpu_id=2
127712          <idle>-0     (-----) [002] d..2 82317.988537: 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
127713     rcu_preempt-7     (    7) [002] d..2 82317.988548: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127714     rcu_preempt-7     (    7) [002] d..3 82317.988563: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127715     rcu_preempt-7     (    7) [002] d..2 82317.988576: 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
127716         rcuop/0-10    (   10) [002] d..2 82317.988581: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127717         rcuop/0-10    (   10) [002] d..3 82317.988595: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127718         rcuop/0-10    (   10) [002] d..2 82317.988605: 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
127719         rcuop/1-21    (   21) [002] d..2 82317.988620: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127720  kworker/u16:13-1147  ( 1147) [002] d..2 82317.988702: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127721          <idle>-0     (-----) [002] d..1 82317.988720: cpu_idle: state=0 cpu_id=2
127722          <idle>-0     (-----) [001] d.h2 82317.988836: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
127723          <idle>-0     (-----) [001] dnh3 82317.988855: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
127724          <idle>-0     (-----) [001] .n.1 82317.988866: cpu_idle: state=4294967295 cpu_id=1
127725          <idle>-0     (-----) [001] d..2 82317.988879: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
127726        DispSync-8879  ( 8858) [001] d..1 82317.988897: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
127727        DispSync-8879  ( 8858) [001] d..2 82317.988914: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
127728          <idle>-0     (-----) [003] .n.1 82317.988920: cpu_idle: state=4294967295 cpu_id=3
127729          <idle>-0     (-----) [003] d..2 82317.988934: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
127730        DispSync-8879  ( 8858) [001] d..2 82317.988957: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127731          <idle>-0     (-----) [000] ...1 82317.988965: cpu_idle: state=4294967295 cpu_id=0
127732          <idle>-0     (-----) [000] d..1 82317.988971: cpu_idle: state=0 cpu_id=0
127733          <idle>-0     (-----) [001] d..1 82317.988973: cpu_idle: state=0 cpu_id=1
127734  appEventThread-8881  ( 8858) [003] d..3 82317.988979: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127735          <idle>-0     (-----) [004] dnh2 82317.989010: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127736          <idle>-0     (-----) [004] .n.1 82317.989014: cpu_idle: state=4294967295 cpu_id=4
127737          <idle>-0     (-----) [004] d..2 82317.989023: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
127738  appEventThread-8881  ( 8858) [003] d..2 82317.989048: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127739          <idle>-0     (-----) [003] d..1 82317.989066: cpu_idle: state=0 cpu_id=3
127740 s.nexuslauncher-10023 (10023) [004] .... 82317.989232: binder_transaction: transaction=1572760 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
127741 s.nexuslauncher-10023 (10023) [004] .... 82317.989238: binder_transaction_alloc_buf: transaction=1572760 data_size=80 offsets_size=0
127742 s.nexuslauncher-10023 (10023) [004] d..4 82317.989243: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
127743          <idle>-0     (-----) [000] dnh2 82317.989312: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
127744          <idle>-0     (-----) [000] .n.1 82317.989318: cpu_idle: state=4294967295 cpu_id=0
127745 s.nexuslauncher-10023 (10023) [004] d..3 82317.989331: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127746          <idle>-0     (-----) [000] d..2 82317.989333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
127747   Binder:8858_1-8871  ( 8858) [000] .... 82317.989345: binder_transaction_received: transaction=1572760
127748 s.nexuslauncher-10023 (10023) [004] d..4 82317.989348: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127749          <idle>-0     (-----) [005] .n.1 82317.989355: cpu_idle: state=4294967295 cpu_id=5
127750          <idle>-0     (-----) [005] d..2 82317.989367: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127751   Binder:8858_1-8871  ( 8858) [000] d..1 82317.989392: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
127752   Binder:8858_1-8871  ( 8858) [000] d..2 82317.989415: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
127753    RenderThread-16607 (10023) [005] d..2 82317.989416: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127754          <idle>-0     (-----) [003] .n.1 82317.989421: cpu_idle: state=4294967295 cpu_id=3
127755          <idle>-0     (-----) [005] d..1 82317.989427: cpu_idle: state=0 cpu_id=5
127756          <idle>-0     (-----) [003] d..2 82317.989433: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
127757   Binder:8858_1-8871  ( 8858) [000] d..2 82317.989472: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127758  appEventThread-8881  ( 8858) [003] d..2 82317.989480: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127759          <idle>-0     (-----) [000] d..1 82317.989491: cpu_idle: state=0 cpu_id=0
127760          <idle>-0     (-----) [003] d..1 82317.989494: cpu_idle: state=0 cpu_id=3
127761 s.nexuslauncher-10023 (10023) [004] d..3 82317.989585: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127762 s.nexuslauncher-10023 (10023) [004] d..4 82317.989603: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127763          <idle>-0     (-----) [005] .n.1 82317.989608: cpu_idle: state=4294967295 cpu_id=5
127764          <idle>-0     (-----) [005] d..2 82317.989617: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127765 s.nexuslauncher-10023 (10023) [004] d..2 82317.989629: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
127766          <idle>-0     (-----) [004] d..1 82317.989646: cpu_idle: state=0 cpu_id=4
127767    RenderThread-16607 (10023) [005] d..1 82317.989753: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127768    RenderThread-16607 (10023) [005] d..2 82317.989769: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127769          <idle>-0     (-----) [004] .n.1 82317.989775: cpu_idle: state=4294967295 cpu_id=4
127770          <idle>-0     (-----) [004] d..2 82317.989785: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
127771    RenderThread-16607 (10023) [005] .... 82317.989818: binder_transaction: transaction=1572761 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
127772    RenderThread-16607 (10023) [005] .... 82317.989822: binder_transaction_alloc_buf: transaction=1572761 data_size=104 offsets_size=0
127773    RenderThread-16607 (10023) [005] ...2 82317.989826: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
127774    RenderThread-16607 (10023) [005] d..4 82317.989829: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
127775    RenderThread-16607 (10023) [005] d..5 82317.989851: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127776 s.nexuslauncher-10023 (10023) [004] d..2 82317.989895: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
127777    RenderThread-16607 (10023) [005] d..2 82317.989897: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127778          <idle>-0     (-----) [004] d..1 82317.989904: cpu_idle: state=0 cpu_id=4
127779   Binder:8858_1-8871  ( 8858) [005] .... 82317.989909: binder_transaction_received: transaction=1572761
127780   Binder:8858_1-8871  ( 8858) [005] .... 82317.989969: binder_transaction: transaction=1572762 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
127781   Binder:8858_1-8871  ( 8858) [005] .... 82317.989974: binder_transaction_alloc_buf: transaction=1572762 data_size=52 offsets_size=8
127782   Binder:8858_1-8871  ( 8858) [005] d..2 82317.989980: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127783   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.989992: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127784   Binder:8858_1-8871  ( 8858) [005] d..2 82317.989998: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
127785    RenderThread-16607 (10023) [005] .... 82317.990007: binder_transaction_received: transaction=1572762
127786          <idle>-0     (-----) [004] d.h2 82317.990908: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127787          <idle>-0     (-----) [004] dnh3 82317.990916: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127788          <idle>-0     (-----) [004] .n.1 82317.990922: cpu_idle: state=4294967295 cpu_id=4
127789          <idle>-0     (-----) [004] d..2 82317.990930: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
127790 s.nexuslauncher-10023 (10023) [004] d..2 82317.990982: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
127791          <idle>-0     (-----) [004] d..1 82317.990993: cpu_idle: state=0 cpu_id=4
127792    RenderThread-16607 (10023) [005] d..2 82317.991228: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127793   Binder:8858_1-8871  ( 8858) [005] .... 82317.991241: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
127794   Binder:8858_1-8871  ( 8858) [005] d..2 82317.991308: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127795          <idle>-0     (-----) [005] d.h2 82317.991320: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127796          <idle>-0     (-----) [005] d.h3 82317.991328: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
127797          <idle>-0     (-----) [005] dnh3 82317.991331: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127798          <idle>-0     (-----) [005] d..2 82317.991343: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
127799    RenderThread-16607 (10023) [005] .... 82317.991493: binder_transaction: transaction=1572763 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
127800    RenderThread-16607 (10023) [005] .... 82317.991497: binder_transaction_alloc_buf: transaction=1572763 data_size=192 offsets_size=8
127801    RenderThread-16607 (10023) [005] ...2 82317.991504: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
127802    RenderThread-16607 (10023) [005] d..4 82317.991507: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127803    RenderThread-16607 (10023) [005] d..5 82317.991519: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
127804    RenderThread-16607 (10023) [005] d..2 82317.991531: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127805   Binder:8858_1-8871  ( 8858) [005] .... 82317.991541: binder_transaction_received: transaction=1572763
127806   Binder:8858_1-8871  ( 8858) [005] .... 82317.991657: binder_transaction: transaction=1572764 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
127807   Binder:8858_1-8871  ( 8858) [005] .... 82317.991661: binder_transaction_alloc_buf: transaction=1572764 data_size=68 offsets_size=0
127808   Binder:8858_1-8871  ( 8858) [005] d..2 82317.991664: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
127809   Binder:8858_1-8871  ( 8858) [005] dn.3 82317.991676: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
127810   Binder:8858_1-8871  ( 8858) [005] d..2 82317.991682: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
127811    RenderThread-16607 (10023) [005] .... 82317.991691: binder_transaction_received: transaction=1572764
127812    RenderThread-16607 (10023) [005] d..2 82317.991755: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
127813   Binder:8858_1-8871  ( 8858) [005] .... 82317.991764: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
127814   Binder:8858_1-8871  ( 8858) [005] dns3 82317.991854: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
127815          <idle>-0     (-----) [000] dnh2 82317.991901: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
127816          <idle>-0     (-----) [000] .n.1 82317.991909: cpu_idle: state=4294967295 cpu_id=0
127817          <idle>-0     (-----) [000] d..2 82317.991925: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127818   Binder:8858_1-8871  ( 8858) [005] d..2 82317.991940: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
127819          <idle>-0     (-----) [005] d..1 82317.991967: cpu_idle: state=0 cpu_id=5
127820          <idle>-0     (-----) [005] ...1 82317.991981: cpu_idle: state=4294967295 cpu_id=5
127821          <idle>-0     (-----) [005] d..1 82317.991985: cpu_idle: state=0 cpu_id=5
127822  kworker/u16:13-1147  ( 1147) [000] d..2 82317.992050: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127823          <idle>-0     (-----) [000] d..1 82317.992065: cpu_idle: state=0 cpu_id=0
127824          <idle>-0     (-----) [000] d.h3 82317.992651: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
127825          <idle>-0     (-----) [000] d.h4 82317.992676: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
127826          <idle>-0     (-----) [003] .n.1 82317.992682: cpu_idle: state=4294967295 cpu_id=3
127827          <idle>-0     (-----) [000] ...1 82317.992695: cpu_idle: state=4294967295 cpu_id=0
127828          <idle>-0     (-----) [003] d..2 82317.992695: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
127829          <idle>-0     (-----) [000] d..1 82317.992702: cpu_idle: state=0 cpu_id=0
127830 kgsl_worker_thr-258   (  258) [003] d..2 82317.992758: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
127831 kgsl_worker_thr-258   (  258) [003] d..3 82317.992780: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
127832          <idle>-0     (-----) [000] .n.1 82317.992785: cpu_idle: state=4294967295 cpu_id=0
127833          <idle>-0     (-----) [000] d..2 82317.992802: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127834 kgsl_worker_thr-258   (  258) [003] d..2 82317.992819: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127835          <idle>-0     (-----) [001] d.h2 82317.992833: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
127836          <idle>-0     (-----) [003] d..1 82317.992836: cpu_idle: state=0 cpu_id=3
127837          <idle>-0     (-----) [001] dnh3 82317.992849: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
127838          <idle>-0     (-----) [001] .n.1 82317.992858: cpu_idle: state=4294967295 cpu_id=1
127839          <idle>-0     (-----) [001] d..2 82317.992870: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
127840        DispSync-8879  ( 8858) [001] d..1 82317.992883: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127841        DispSync-8879  ( 8858) [001] d..2 82317.992900: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127842          <idle>-0     (-----) [002] .n.1 82317.992907: cpu_idle: state=4294967295 cpu_id=2
127843          <idle>-0     (-----) [002] d..2 82317.992921: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
127844        DispSync-8879  ( 8858) [001] d..2 82317.992935: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127845          <idle>-0     (-----) [001] d..1 82317.992951: cpu_idle: state=0 cpu_id=1
127846   sfEventThread-8882  ( 8858) [002] d..3 82317.992967: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127847  kworker/u16:13-1147  ( 1147) [000] d..2 82317.992973: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127848          <idle>-0     (-----) [000] d..1 82317.992990: cpu_idle: state=0 cpu_id=0
127849   sfEventThread-8882  ( 8858) [002] d..4 82317.992992: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127850          <idle>-0     (-----) [001] .n.1 82317.992998: cpu_idle: state=4294967295 cpu_id=1
127851          <idle>-0     (-----) [001] d..2 82317.993010: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
127852   sfEventThread-8882  ( 8858) [002] d..2 82317.993035: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127853          <idle>-0     (-----) [002] d..1 82317.993053: cpu_idle: state=0 cpu_id=2
127854  surfaceflinger-8858  ( 8858) [001] d..2 82317.993352: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
127855  surfaceflinger-8858  ( 8858) [001] d..3 82317.993415: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
127856  surfaceflinger-8858  ( 8858) [001] d..1 82317.993449: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127857  surfaceflinger-8858  ( 8858) [001] d..2 82317.993469: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
127858          <idle>-0     (-----) [002] .n.1 82317.993476: cpu_idle: state=4294967295 cpu_id=2
127859          <idle>-0     (-----) [002] d..2 82317.993488: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
127860   sfEventThread-8882  ( 8858) [002] d..2 82317.993530: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127861          <idle>-0     (-----) [002] d..1 82317.993543: cpu_idle: state=0 cpu_id=2
127862  surfaceflinger-8858  ( 8858) [001] ...1 82317.993691: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
127863  surfaceflinger-8858  ( 8858) [001] ...1 82317.993701: tracing_mark_write: E|8858
127864  surfaceflinger-8858  ( 8858) [001] .... 82317.993765: binder_transaction: transaction=1572765 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
127865  surfaceflinger-8858  ( 8858) [001] .... 82317.993773: binder_transaction_alloc_buf: transaction=1572765 data_size=540 offsets_size=96
127866  surfaceflinger-8858  ( 8858) [001] ...2 82317.993800: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
127867  surfaceflinger-8858  ( 8858) [001] d..4 82317.993808: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
127868  surfaceflinger-8858  ( 8858) [001] d..5 82317.993833: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
127869          <idle>-0     (-----) [000] .n.1 82317.993839: cpu_idle: state=4294967295 cpu_id=0
127870          <idle>-0     (-----) [000] d..2 82317.993852: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
127871  surfaceflinger-8858  ( 8858) [001] d..2 82317.993861: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
127872 [email protected]   (  619) [000] .... 82317.993865: binder_transaction_received: transaction=1572765
127873         rcuop/0-10    (   10) [001] d..2 82317.993869: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
127874         rcuop/0-10    (   10) [001] d..3 82317.993917: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
127875 [email protected]   (  619) [000] ...1 82317.993921: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
127876         rcuop/0-10    (   10) [001] d..2 82317.993930: 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
127877     rcu_preempt-7     (    7) [001] d..2 82317.993962: 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
127878          <idle>-0     (-----) [001] d..1 82317.993984: cpu_idle: state=0 cpu_id=1
127879 [email protected]   (  619) [000] ...1 82317.994046: tracing_mark_write: B|619|HWCSession::PresentDisplay::
127880 [email protected]   (  619) [000] ...1 82317.994238: tracing_mark_write: B|619|HWDeviceDRM::Commit::
127881 [email protected]   (  619) [000] ...1 82317.994253: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
127882 [email protected]   (  619) [000] d..2 82317.994904: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127883 [email protected]   (  619) [000] d..3 82317.994936: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127884          <idle>-0     (-----) [002] .n.1 82317.994941: cpu_idle: state=4294967295 cpu_id=2
127885          <idle>-0     (-----) [002] d..2 82317.994953: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127886 [email protected]   (  619) [000] ...1 82317.995061: tracing_mark_write: E|619
127887 [email protected]   (  619) [000] ...1 82317.995070: tracing_mark_write: E|619
127888 crtc_commit:111-321   (  321) [002] d.s2 82317.995154: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
127889 crtc_commit:111-321   (  321) [002] d.s3 82317.995204: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
127890 [email protected]   (  619) [000] ...1 82317.995206: tracing_mark_write: E|619
127891 [email protected]   (  619) [000] ...1 82317.995262: tracing_mark_write: E|619
127892 [email protected]   (  619) [000] .... 82317.995281: binder_transaction: transaction=1572766 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
127893 [email protected]   (  619) [000] .... 82317.995287: binder_transaction_alloc_buf: transaction=1572766 data_size=576 offsets_size=112
127894 [email protected]   (  619) [000] d..2 82317.995313: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127895 [email protected]   (  619) [000] d..3 82317.995336: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
127896 [email protected]   (  619) [000] .... 82317.995342: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
127897          <idle>-0     (-----) [001] .n.1 82317.995343: cpu_idle: state=4294967295 cpu_id=1
127898          <idle>-0     (-----) [001] d..2 82317.995359: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
127899  surfaceflinger-8858  ( 8858) [001] .... 82317.995370: binder_transaction_received: transaction=1572766
127900 [email protected]   (  619) [000] d..2 82317.995463: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127901          <idle>-0     (-----) [000] d..1 82317.995489: cpu_idle: state=0 cpu_id=0
127902 crtc_commit:111-321   (  321) [002] d..2 82317.995828: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127903  surfaceflinger-8858  ( 8858) [001] d..2 82317.995848: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127904          <idle>-0     (-----) [001] d..1 82317.995867: cpu_idle: state=0 cpu_id=1
127905  kworker/u16:13-1147  ( 1147) [002] d..2 82317.995917: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127906          <idle>-0     (-----) [002] d..1 82317.995940: cpu_idle: state=0 cpu_id=2
127907          <idle>-0     (-----) [002] ...1 82317.998194: cpu_idle: state=4294967295 cpu_id=2
127908          <idle>-0     (-----) [002] d..1 82317.998200: cpu_idle: state=0 cpu_id=2
127909          <idle>-0     (-----) [001] d.s2 82317.998480: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
127910          <idle>-0     (-----) [001] dns3 82317.998504: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
127911          <idle>-0     (-----) [001] dns3 82317.998512: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
127912          <idle>-0     (-----) [001] dns4 82317.998552: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
127913          <idle>-0     (-----) [001] .n.1 82317.998576: cpu_idle: state=4294967295 cpu_id=1
127914          <idle>-0     (-----) [001] d..2 82317.998588: 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
127915     rcu_preempt-7     (    7) [001] d..2 82317.998603: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
127916     rcu_preempt-7     (    7) [001] d..3 82317.998620: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
127917     rcu_preempt-7     (    7) [001] d..2 82317.998633: 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
127918         rcuop/0-10    (   10) [001] d..2 82317.998637: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
127919         rcuop/0-10    (   10) [001] d..3 82317.998675: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
127920         rcuop/0-10    (   10) [001] d..2 82317.998679: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
127921         rcuop/0-10    (   10) [001] d..3 82317.998692: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
127922         rcuop/0-10    (   10) [001] d..2 82317.998703: 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
127923         rcuop/1-21    (   21) [001] d..2 82317.998717: 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
127924     rcu_preempt-7     (    7) [001] d..2 82317.998730: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127925  kworker/u16:13-1147  ( 1147) [001] d..2 82317.998816: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127926          <idle>-0     (-----) [001] d..1 82317.998836: cpu_idle: state=0 cpu_id=1
127927          <idle>-0     (-----) [000] d.h5 82318.000868: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127928          <idle>-0     (-----) [000] dnh6 82318.000888: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127929          <idle>-0     (-----) [000] dnh5 82318.000893: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127930          <idle>-0     (-----) [000] dnh6 82318.000909: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127931          <idle>-0     (-----) [002] .n.1 82318.000915: cpu_idle: state=4294967295 cpu_id=2
127932          <idle>-0     (-----) [000] .n.1 82318.000925: cpu_idle: state=4294967295 cpu_id=0
127933          <idle>-0     (-----) [002] d..2 82318.000929: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127934          <idle>-0     (-----) [000] d..2 82318.000941: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127935  crtc_event:111-322   (  322) [000] d..2 82318.000979: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127936          <idle>-0     (-----) [000] d..1 82318.000995: cpu_idle: state=0 cpu_id=0
127937 crtc_commit:111-321   (  321) [002] d..2 82318.001083: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
127938          <idle>-0     (-----) [002] d..1 82318.001095: cpu_idle: state=0 cpu_id=2
127939          <idle>-0     (-----) [002] d.s3 82318.001809: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127940          <idle>-0     (-----) [002] d.s4 82318.001832: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127941          <idle>-0     (-----) [000] .n.1 82318.001838: cpu_idle: state=4294967295 cpu_id=0
127942          <idle>-0     (-----) [002] d.s3 82318.001839: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
127943          <idle>-0     (-----) [000] d..2 82318.001851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127944          <idle>-0     (-----) [002] dns4 82318.001881: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
127945  crtc_event:111-322   (  322) [000] d..2 82318.001891: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127946          <idle>-0     (-----) [000] d..1 82318.001905: cpu_idle: state=0 cpu_id=0
127947          <idle>-0     (-----) [002] .n.1 82318.001907: cpu_idle: state=4294967295 cpu_id=2
127948          <idle>-0     (-----) [002] d..2 82318.001919: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
127949  kworker/u16:13-1147  ( 1147) [002] d..2 82318.002001: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127950          <idle>-0     (-----) [002] d..1 82318.002019: cpu_idle: state=0 cpu_id=2
127951          <idle>-0     (-----) [000] d.h5 82318.003192: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127952          <idle>-0     (-----) [000] d.h6 82318.003212: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
127953          <idle>-0     (-----) [002] .n.1 82318.003219: cpu_idle: state=4294967295 cpu_id=2
127954          <idle>-0     (-----) [000] ...1 82318.003230: cpu_idle: state=4294967295 cpu_id=0
127955          <idle>-0     (-----) [002] d..2 82318.003232: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
127956          <idle>-0     (-----) [000] d..1 82318.003236: cpu_idle: state=0 cpu_id=0
127957 crtc_commit:111-321   (  321) [002] d..2 82318.003313: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
127958          <idle>-0     (-----) [002] d..1 82318.003330: cpu_idle: state=0 cpu_id=2
127959          <idle>-0     (-----) [000] d.h5 82318.003495: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127960          <idle>-0     (-----) [000] dnh6 82318.003507: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
127961          <idle>-0     (-----) [000] .n.1 82318.003522: cpu_idle: state=4294967295 cpu_id=0
127962          <idle>-0     (-----) [000] d..2 82318.003533: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
127963  crtc_event:111-322   (  322) [000] d..2 82318.003561: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
127964          <idle>-0     (-----) [000] d..1 82318.003575: cpu_idle: state=0 cpu_id=0
127965          <idle>-0     (-----) [001] d.s2 82318.005142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
127966          <idle>-0     (-----) [001] dns3 82318.005162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
127967          <idle>-0     (-----) [001] .n.1 82318.005175: cpu_idle: state=4294967295 cpu_id=1
127968          <idle>-0     (-----) [001] d..2 82318.005190: 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
127969     rcu_preempt-7     (    7) [001] d..2 82318.005201: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
127970     rcu_preempt-7     (    7) [001] d..3 82318.005217: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
127971     rcu_preempt-7     (    7) [001] d..2 82318.005229: 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
127972         rcuop/0-10    (   10) [001] d..2 82318.005233: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
127973         rcuop/0-10    (   10) [001] d..3 82318.005247: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
127974         rcuop/0-10    (   10) [001] d..2 82318.005258: 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
127975          <idle>-0     (-----) [002] ...1 82318.005268: cpu_idle: state=4294967295 cpu_id=2
127976          <idle>-0     (-----) [002] d..1 82318.005274: cpu_idle: state=0 cpu_id=2
127977         rcuop/1-21    (   21) [001] d..2 82318.005292: 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
127978          <idle>-0     (-----) [001] d.h3 82318.005305: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
127979          <idle>-0     (-----) [001] dnh4 82318.005320: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
127980          <idle>-0     (-----) [001] d..2 82318.005333: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
127981        DispSync-8879  ( 8858) [001] d..1 82318.005353: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
127982          <idle>-0     (-----) [000] ...1 82318.005362: cpu_idle: state=4294967295 cpu_id=0
127983          <idle>-0     (-----) [000] d..1 82318.005367: cpu_idle: state=0 cpu_id=0
127984        DispSync-8879  ( 8858) [001] d..2 82318.005373: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
127985          <idle>-0     (-----) [003] .n.1 82318.005380: cpu_idle: state=4294967295 cpu_id=3
127986          <idle>-0     (-----) [003] d..2 82318.005393: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
127987        DispSync-8879  ( 8858) [001] d..2 82318.005412: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
127988          <idle>-0     (-----) [001] d..1 82318.005430: cpu_idle: state=0 cpu_id=1
127989  appEventThread-8881  ( 8858) [003] d..3 82318.005435: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127990          <idle>-0     (-----) [004] dnh2 82318.005466: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
127991          <idle>-0     (-----) [004] .n.1 82318.005470: cpu_idle: state=4294967295 cpu_id=4
127992          <idle>-0     (-----) [004] d..2 82318.005479: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
127993  appEventThread-8881  ( 8858) [003] d..2 82318.005502: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
127994          <idle>-0     (-----) [003] d..1 82318.005519: cpu_idle: state=0 cpu_id=3
127995 s.nexuslauncher-10023 (10023) [004] .... 82318.005682: binder_transaction: transaction=1572767 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
127996 s.nexuslauncher-10023 (10023) [004] .... 82318.005687: binder_transaction_alloc_buf: transaction=1572767 data_size=80 offsets_size=0
127997 s.nexuslauncher-10023 (10023) [004] d..4 82318.005693: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
127998          <idle>-0     (-----) [000] dnh2 82318.005762: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
127999          <idle>-0     (-----) [000] .n.1 82318.005768: cpu_idle: state=4294967295 cpu_id=0
128000 s.nexuslauncher-10023 (10023) [004] d..3 82318.005780: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128001          <idle>-0     (-----) [000] d..2 82318.005782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
128002   Binder:8858_1-8871  ( 8858) [000] .... 82318.005794: binder_transaction_received: transaction=1572767
128003 s.nexuslauncher-10023 (10023) [004] d..4 82318.005797: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128004          <idle>-0     (-----) [005] .n.1 82318.005802: cpu_idle: state=4294967295 cpu_id=5
128005          <idle>-0     (-----) [005] d..2 82318.005813: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128006   Binder:8858_1-8871  ( 8858) [000] d..1 82318.005841: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
128007    RenderThread-16607 (10023) [005] d..2 82318.005860: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128008   Binder:8858_1-8871  ( 8858) [000] d..2 82318.005865: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
128009          <idle>-0     (-----) [003] .n.1 82318.005871: cpu_idle: state=4294967295 cpu_id=3
128010          <idle>-0     (-----) [005] d..1 82318.005871: cpu_idle: state=0 cpu_id=5
128011          <idle>-0     (-----) [003] d..2 82318.005885: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
128012   Binder:8858_1-8871  ( 8858) [000] d..2 82318.005923: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128013  appEventThread-8881  ( 8858) [003] d..2 82318.005932: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128014          <idle>-0     (-----) [000] d..1 82318.005942: cpu_idle: state=0 cpu_id=0
128015          <idle>-0     (-----) [003] d..1 82318.005945: cpu_idle: state=0 cpu_id=3
128016 s.nexuslauncher-10023 (10023) [004] d..3 82318.006103: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128017 s.nexuslauncher-10023 (10023) [004] d..4 82318.006121: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128018          <idle>-0     (-----) [005] .n.1 82318.006126: cpu_idle: state=4294967295 cpu_id=5
128019          <idle>-0     (-----) [005] d..2 82318.006135: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128020 s.nexuslauncher-10023 (10023) [004] d..2 82318.006148: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
128021          <idle>-0     (-----) [004] d..1 82318.006165: cpu_idle: state=0 cpu_id=4
128022    RenderThread-16607 (10023) [005] d..1 82318.006285: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128023    RenderThread-16607 (10023) [005] d..2 82318.006302: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128024          <idle>-0     (-----) [004] .n.1 82318.006307: cpu_idle: state=4294967295 cpu_id=4
128025          <idle>-0     (-----) [004] d..2 82318.006317: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
128026    RenderThread-16607 (10023) [005] .... 82318.006350: binder_transaction: transaction=1572768 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
128027    RenderThread-16607 (10023) [005] .... 82318.006354: binder_transaction_alloc_buf: transaction=1572768 data_size=104 offsets_size=0
128028    RenderThread-16607 (10023) [005] ...2 82318.006359: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
128029    RenderThread-16607 (10023) [005] d..4 82318.006362: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
128030    RenderThread-16607 (10023) [005] d..5 82318.006382: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128031 s.nexuslauncher-10023 (10023) [004] d..2 82318.006425: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
128032    RenderThread-16607 (10023) [005] d..2 82318.006428: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128033          <idle>-0     (-----) [004] d..1 82318.006436: cpu_idle: state=0 cpu_id=4
128034   Binder:8858_1-8871  ( 8858) [005] .... 82318.006440: binder_transaction_received: transaction=1572768
128035   Binder:8858_1-8871  ( 8858) [005] .... 82318.006499: binder_transaction: transaction=1572769 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
128036   Binder:8858_1-8871  ( 8858) [005] .... 82318.006503: binder_transaction_alloc_buf: transaction=1572769 data_size=52 offsets_size=8
128037   Binder:8858_1-8871  ( 8858) [005] d..2 82318.006510: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128038   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.006520: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128039   Binder:8858_1-8871  ( 8858) [005] d..2 82318.006527: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
128040    RenderThread-16607 (10023) [005] .... 82318.006535: binder_transaction_received: transaction=1572769
128041    RenderThread-16607 (10023) [005] d..2 82318.007750: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128042   Binder:8858_1-8871  ( 8858) [005] .... 82318.007763: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
128043   Binder:8858_1-8871  ( 8858) [005] d..2 82318.007827: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128044          <idle>-0     (-----) [005] d.h2 82318.007844: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128045          <idle>-0     (-----) [005] d.h3 82318.007852: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
128046          <idle>-0     (-----) [005] dnh3 82318.007855: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128047          <idle>-0     (-----) [005] d..2 82318.007868: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128048    RenderThread-16607 (10023) [005] .... 82318.008024: binder_transaction: transaction=1572770 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
128049    RenderThread-16607 (10023) [005] .... 82318.008028: binder_transaction_alloc_buf: transaction=1572770 data_size=192 offsets_size=8
128050    RenderThread-16607 (10023) [005] ...2 82318.008035: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
128051    RenderThread-16607 (10023) [005] d..4 82318.008038: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128052    RenderThread-16607 (10023) [005] d..5 82318.008050: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128053    RenderThread-16607 (10023) [005] d..2 82318.008061: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128054   Binder:8858_1-8871  ( 8858) [005] .... 82318.008072: binder_transaction_received: transaction=1572770
128055   Binder:8858_1-8871  ( 8858) [005] .... 82318.008188: binder_transaction: transaction=1572771 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
128056   Binder:8858_1-8871  ( 8858) [005] .... 82318.008192: binder_transaction_alloc_buf: transaction=1572771 data_size=68 offsets_size=0
128057   Binder:8858_1-8871  ( 8858) [005] d..2 82318.008195: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128058   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.008206: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128059   Binder:8858_1-8871  ( 8858) [005] d..2 82318.008212: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
128060    RenderThread-16607 (10023) [005] .... 82318.008221: binder_transaction_received: transaction=1572771
128061    RenderThread-16607 (10023) [005] d..2 82318.008283: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128062   Binder:8858_1-8871  ( 8858) [005] .... 82318.008292: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
128063   Binder:8858_1-8871  ( 8858) [005] d..2 82318.008341: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128064          <idle>-0     (-----) [005] d..1 82318.008357: cpu_idle: state=0 cpu_id=5
128065          <idle>-0     (-----) [000] d.h3 82318.009181: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
128066          <idle>-0     (-----) [000] d.h4 82318.009202: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
128067          <idle>-0     (-----) [003] .n.1 82318.009208: cpu_idle: state=4294967295 cpu_id=3
128068          <idle>-0     (-----) [000] d..2 82318.009217: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
128069          <idle>-0     (-----) [003] d..2 82318.009223: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
128070          <idle>-0     (-----) [000] dn.3 82318.009233: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
128071          <idle>-0     (-----) [000] .n.1 82318.009238: cpu_idle: state=4294967295 cpu_id=0
128072          <idle>-0     (-----) [000] d..2 82318.009254: 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
128073     ksoftirqd/0-3     (    3) [000] d.s2 82318.009269: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128074          <idle>-0     (-----) [001] d.h2 82318.009305: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
128075     ksoftirqd/0-3     (    3) [000] d.s3 82318.009315: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
128076          <idle>-0     (-----) [001] dnh3 82318.009318: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
128077          <idle>-0     (-----) [001] .n.1 82318.009328: cpu_idle: state=4294967295 cpu_id=1
128078     ksoftirqd/0-3     (    3) [000] d..2 82318.009333: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128079  kworker/u16:13-1147  ( 1147) [000] d..2 82318.009339: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
128080          <idle>-0     (-----) [001] d..2 82318.009342: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
128081        DispSync-8879  ( 8858) [001] d..1 82318.009357: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128082 kgsl_worker_thr-258   (  258) [003] d..2 82318.009360: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128083        DispSync-8879  ( 8858) [001] d..2 82318.009374: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128084          <idle>-0     (-----) [003] d..1 82318.009375: cpu_idle: state=0 cpu_id=3
128085          <idle>-0     (-----) [002] .n.1 82318.009379: cpu_idle: state=4294967295 cpu_id=2
128086  kworker/u16:13-1147  ( 1147) [000] d..3 82318.009388: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
128087          <idle>-0     (-----) [003] .n.1 82318.009393: cpu_idle: state=4294967295 cpu_id=3
128088          <idle>-0     (-----) [002] d..2 82318.009395: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
128089          <idle>-0     (-----) [003] d..2 82318.009408: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
128090        DispSync-8879  ( 8858) [001] d..2 82318.009413: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128091          <idle>-0     (-----) [001] d..1 82318.009428: cpu_idle: state=0 cpu_id=1
128092   sfEventThread-8882  ( 8858) [002] d..3 82318.009445: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128093   sfEventThread-8882  ( 8858) [002] d..4 82318.009468: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128094          <idle>-0     (-----) [001] .n.1 82318.009474: cpu_idle: state=4294967295 cpu_id=1
128095          <idle>-0     (-----) [001] d..2 82318.009486: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
128096   sfEventThread-8882  ( 8858) [002] d..2 82318.009523: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128097          <idle>-0     (-----) [002] d..1 82318.009540: cpu_idle: state=0 cpu_id=2
128098  kworker/u16:15-1311  ( 1311) [003] d..2 82318.009602: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128099  kworker/u16:13-1147  ( 1147) [000] d..2 82318.009603: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128100          <idle>-0     (-----) [003] d..1 82318.009619: cpu_idle: state=0 cpu_id=3
128101          <idle>-0     (-----) [000] d..1 82318.009621: cpu_idle: state=0 cpu_id=0
128102  surfaceflinger-8858  ( 8858) [001] d..2 82318.009834: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128103  surfaceflinger-8858  ( 8858) [001] d..3 82318.009867: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128104  surfaceflinger-8858  ( 8858) [001] d..1 82318.009901: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128105  surfaceflinger-8858  ( 8858) [001] d..2 82318.009923: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128106          <idle>-0     (-----) [002] .n.1 82318.009929: cpu_idle: state=4294967295 cpu_id=2
128107          <idle>-0     (-----) [002] d..2 82318.009942: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
128108   sfEventThread-8882  ( 8858) [002] d..2 82318.010008: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
128109         rcuop/0-10    (   10) [002] d..2 82318.010015: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128110         rcuop/0-10    (   10) [002] d..3 82318.010060: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
128111         rcuop/0-10    (   10) [002] d..2 82318.010072: 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
128112     rcu_preempt-7     (    7) [002] d..2 82318.010098: 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
128113          <idle>-0     (-----) [002] d..1 82318.010113: cpu_idle: state=0 cpu_id=2
128114  surfaceflinger-8858  ( 8858) [001] ...1 82318.010131: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
128115  surfaceflinger-8858  ( 8858) [001] ...1 82318.010142: tracing_mark_write: E|8858
128116  surfaceflinger-8858  ( 8858) [001] .... 82318.010209: binder_transaction: transaction=1572772 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
128117  surfaceflinger-8858  ( 8858) [001] .... 82318.010215: binder_transaction_alloc_buf: transaction=1572772 data_size=540 offsets_size=96
128118  surfaceflinger-8858  ( 8858) [001] ...2 82318.010243: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
128119  surfaceflinger-8858  ( 8858) [001] d..4 82318.010251: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
128120  surfaceflinger-8858  ( 8858) [001] d..5 82318.010274: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
128121          <idle>-0     (-----) [000] .n.1 82318.010280: cpu_idle: state=4294967295 cpu_id=0
128122          <idle>-0     (-----) [000] d..2 82318.010293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
128123 [email protected]   (  619) [000] .... 82318.010307: binder_transaction_received: transaction=1572772
128124  surfaceflinger-8858  ( 8858) [001] d..2 82318.010319: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128125          <idle>-0     (-----) [001] d..1 82318.010344: cpu_idle: state=0 cpu_id=1
128126 [email protected]   (  619) [000] ...1 82318.010363: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
128127 [email protected]   (  619) [000] ...1 82318.010487: tracing_mark_write: B|619|HWCSession::PresentDisplay::
128128 [email protected]   (  619) [000] ...1 82318.010680: tracing_mark_write: B|619|HWDeviceDRM::Commit::
128129 [email protected]   (  619) [000] ...1 82318.010697: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
128130 [email protected]   (  619) [000] d..2 82318.011374: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128131 [email protected]   (  619) [000] d..3 82318.011404: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128132          <idle>-0     (-----) [002] .n.1 82318.011409: cpu_idle: state=4294967295 cpu_id=2
128133          <idle>-0     (-----) [002] d..2 82318.011423: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128134 [email protected]   (  619) [000] ...1 82318.011530: tracing_mark_write: E|619
128135 [email protected]   (  619) [000] ...1 82318.011538: tracing_mark_write: E|619
128136 [email protected]   (  619) [000] ...1 82318.011608: tracing_mark_write: E|619
128137 [email protected]   (  619) [000] ...1 82318.011662: tracing_mark_write: E|619
128138 [email protected]   (  619) [000] .... 82318.011682: binder_transaction: transaction=1572773 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
128139 [email protected]   (  619) [000] .... 82318.011687: binder_transaction_alloc_buf: transaction=1572773 data_size=576 offsets_size=112
128140 [email protected]   (  619) [000] d..2 82318.011714: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128141 [email protected]   (  619) [000] d..3 82318.011737: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128142 [email protected]   (  619) [000] .... 82318.011744: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
128143          <idle>-0     (-----) [001] .n.1 82318.011744: cpu_idle: state=4294967295 cpu_id=1
128144          <idle>-0     (-----) [001] d..2 82318.011758: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
128145  surfaceflinger-8858  ( 8858) [001] .... 82318.011769: binder_transaction_received: transaction=1572773
128146  surfaceflinger-8858  ( 8858) [001] d.H4 82318.011769: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
128147  surfaceflinger-8858  ( 8858) [001] d.H5 82318.011769: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
128148  surfaceflinger-8858  ( 8858) [001] d.s4 82318.011769: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
128149  surfaceflinger-8858  ( 8858) [001] d.s5 82318.011769: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
128150  surfaceflinger-8858  ( 8858) [001] d.s4 82318.011769: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
128151  surfaceflinger-8858  ( 8858) [001] d.s5 82318.011769: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
128152  surfaceflinger-8858  ( 8858) [001] d.s4 82318.011769: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
128153  surfaceflinger-8858  ( 8858) [001] d.s5 82318.011769: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
128154          <idle>-0     (-----) [003] .n.1 82318.011927: cpu_idle: state=4294967295 cpu_id=3
128155          <idle>-0     (-----) [003] d..2 82318.011943: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
128156 [email protected]   (  619) [000] d..2 82318.011971: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128157         sugov:0-576   (  576) [003] .... 82318.011983: clk_set_rate: pwrcl_clk 825600000
128158         sugov:0-576   (  576) [003] .... 82318.012004: clk_set_rate: cpu3_pwrcl_clk 748800000
128159         sugov:0-576   (  576) [003] .... 82318.012015: clk_set_rate: cpu2_pwrcl_clk 748800000
128160         sugov:0-576   (  576) [003] .... 82318.012025: clk_set_rate: cpu1_pwrcl_clk 748800000
128161         sugov:0-576   (  576) [003] .... 82318.012033: clk_set_rate: cpu0_pwrcl_clk 825600000
128162         sugov:0-576   (  576) [003] .... 82318.012044: cpu_frequency: state=825600 cpu_id=0
128163         sugov:0-576   (  576) [003] .... 82318.012071: cpu_frequency: state=825600 cpu_id=1
128164         sugov:0-576   (  576) [003] .... 82318.012075: cpu_frequency: state=825600 cpu_id=2
128165         sugov:0-576   (  576) [003] .... 82318.012079: cpu_frequency: state=825600 cpu_id=3
128166         sugov:0-576   (  576) [003] d..2 82318.012102: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
128167  kworker/u16:15-1311  ( 1311) [003] d..2 82318.012130: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128168          <idle>-0     (-----) [003] d..1 82318.012171: cpu_idle: state=0 cpu_id=3
128169          <idle>-0     (-----) [003] ...1 82318.012187: cpu_idle: state=4294967295 cpu_id=3
128170          <idle>-0     (-----) [003] d..1 82318.012192: cpu_idle: state=0 cpu_id=3
128171  kworker/u16:13-1147  ( 1147) [000] d..2 82318.012214: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128172          <idle>-0     (-----) [000] d..1 82318.012236: cpu_idle: state=0 cpu_id=0
128173 crtc_commit:111-321   (  321) [002] d..2 82318.012320: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
128174          <idle>-0     (-----) [002] d..1 82318.012335: cpu_idle: state=0 cpu_id=2
128175  surfaceflinger-8858  ( 8858) [001] d..2 82318.012508: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
128176     kworker/1:1-25249 (25249) [001] d..2 82318.012569: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128177          <idle>-0     (-----) [001] d..1 82318.012591: cpu_idle: state=0 cpu_id=1
128178          <idle>-0     (-----) [002] d.s2 82318.015142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
128179          <idle>-0     (-----) [002] dns3 82318.015166: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
128180          <idle>-0     (-----) [002] .n.1 82318.015184: cpu_idle: state=4294967295 cpu_id=2
128181          <idle>-0     (-----) [002] d..2 82318.015196: 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
128182     rcu_preempt-7     (    7) [002] d..2 82318.015209: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
128183     rcu_preempt-7     (    7) [002] d..3 82318.015227: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
128184     rcu_preempt-7     (    7) [002] d..2 82318.015240: 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
128185         rcuop/0-10    (   10) [002] d..2 82318.015244: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
128186         rcuop/0-10    (   10) [002] d..3 82318.015281: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
128187         rcuop/0-10    (   10) [002] d..2 82318.015285: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
128188         rcuop/0-10    (   10) [002] d..3 82318.015296: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
128189         rcuop/0-10    (   10) [002] d..2 82318.015306: 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
128190         rcuop/1-21    (   21) [002] d..2 82318.015320: 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
128191     rcu_preempt-7     (    7) [002] d..2 82318.015349: 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
128192          <idle>-0     (-----) [002] d..1 82318.015366: cpu_idle: state=0 cpu_id=2
128193          <idle>-0     (-----) [000] d.h5 82318.017334: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128194          <idle>-0     (-----) [000] dnh6 82318.017354: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128195          <idle>-0     (-----) [000] dnh5 82318.017358: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128196          <idle>-0     (-----) [000] dnh6 82318.017373: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128197          <idle>-0     (-----) [002] .n.1 82318.017380: cpu_idle: state=4294967295 cpu_id=2
128198          <idle>-0     (-----) [000] .n.1 82318.017389: cpu_idle: state=4294967295 cpu_id=0
128199          <idle>-0     (-----) [002] d..2 82318.017392: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128200          <idle>-0     (-----) [000] d..2 82318.017403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128201  crtc_event:111-322   (  322) [000] d..2 82318.017437: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128202          <idle>-0     (-----) [000] d..1 82318.017451: cpu_idle: state=0 cpu_id=0
128203 crtc_commit:111-321   (  321) [002] d..2 82318.017545: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
128204          <idle>-0     (-----) [002] d..1 82318.017555: cpu_idle: state=0 cpu_id=2
128205          <idle>-0     (-----) [002] d.s3 82318.018476: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128206          <idle>-0     (-----) [002] d.s4 82318.018497: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128207          <idle>-0     (-----) [000] .n.1 82318.018504: cpu_idle: state=4294967295 cpu_id=0
128208          <idle>-0     (-----) [002] d.s3 82318.018504: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
128209          <idle>-0     (-----) [000] d..2 82318.018519: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128210          <idle>-0     (-----) [002] dns4 82318.018536: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128211          <idle>-0     (-----) [002] .n.1 82318.018554: cpu_idle: state=4294967295 cpu_id=2
128212  crtc_event:111-322   (  322) [000] d..2 82318.018557: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128213          <idle>-0     (-----) [002] d..2 82318.018566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128214          <idle>-0     (-----) [000] d..1 82318.018568: cpu_idle: state=0 cpu_id=0
128215  kworker/u16:13-1147  ( 1147) [002] d..2 82318.018694: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128216          <idle>-0     (-----) [002] d..1 82318.018706: cpu_idle: state=0 cpu_id=2
128217          <idle>-0     (-----) [000] d.h5 82318.019658: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128218          <idle>-0     (-----) [000] d.h6 82318.019677: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128219          <idle>-0     (-----) [002] .n.1 82318.019684: cpu_idle: state=4294967295 cpu_id=2
128220          <idle>-0     (-----) [002] d..2 82318.019693: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128221          <idle>-0     (-----) [000] ...1 82318.019693: cpu_idle: state=4294967295 cpu_id=0
128222          <idle>-0     (-----) [000] d..1 82318.019700: cpu_idle: state=0 cpu_id=0
128223 crtc_commit:111-321   (  321) [002] d..2 82318.019768: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128224          <idle>-0     (-----) [002] d..1 82318.019779: cpu_idle: state=0 cpu_id=2
128225          <idle>-0     (-----) [000] d.h5 82318.019960: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128226          <idle>-0     (-----) [000] dnh6 82318.019971: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128227          <idle>-0     (-----) [000] .n.1 82318.019985: cpu_idle: state=4294967295 cpu_id=0
128228          <idle>-0     (-----) [000] d..2 82318.019996: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128229  crtc_event:111-322   (  322) [000] d..2 82318.020022: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128230          <idle>-0     (-----) [000] d..1 82318.020035: cpu_idle: state=0 cpu_id=0
128231          <idle>-0     (-----) [001] d.h2 82318.021768: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
128232          <idle>-0     (-----) [000] ...1 82318.021778: cpu_idle: state=4294967295 cpu_id=0
128233          <idle>-0     (-----) [000] d..1 82318.021783: cpu_idle: state=0 cpu_id=0
128234          <idle>-0     (-----) [001] dnh3 82318.021788: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
128235          <idle>-0     (-----) [001] .n.1 82318.021799: cpu_idle: state=4294967295 cpu_id=1
128236          <idle>-0     (-----) [002] d.s2 82318.021808: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
128237          <idle>-0     (-----) [001] d..2 82318.021813: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
128238          <idle>-0     (-----) [002] dns3 82318.021830: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
128239        DispSync-8879  ( 8858) [001] d..1 82318.021831: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
128240          <idle>-0     (-----) [002] dns3 82318.021835: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128241          <idle>-0     (-----) [002] dns4 82318.021848: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128242        DispSync-8879  ( 8858) [001] d..2 82318.021849: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
128243          <idle>-0     (-----) [003] .n.1 82318.021854: cpu_idle: state=4294967295 cpu_id=3
128244          <idle>-0     (-----) [002] .n.1 82318.021856: cpu_idle: state=4294967295 cpu_id=2
128245          <idle>-0     (-----) [002] d..2 82318.021867: 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
128246          <idle>-0     (-----) [003] d..2 82318.021869: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
128247     rcu_preempt-7     (    7) [002] d..2 82318.021888: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128248        DispSync-8879  ( 8858) [001] d..2 82318.021897: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128249  appEventThread-8881  ( 8858) [003] d..3 82318.021913: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128250          <idle>-0     (-----) [004] dnh2 82318.021944: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128251          <idle>-0     (-----) [001] d..1 82318.021948: cpu_idle: state=0 cpu_id=1
128252          <idle>-0     (-----) [004] .n.1 82318.021949: cpu_idle: state=4294967295 cpu_id=4
128253          <idle>-0     (-----) [004] d..2 82318.021957: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
128254  appEventThread-8881  ( 8858) [003] d..2 82318.021988: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128255          <idle>-0     (-----) [003] d..1 82318.022026: cpu_idle: state=0 cpu_id=3
128256  kworker/u16:13-1147  ( 1147) [002] d..2 82318.022089: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128257          <idle>-0     (-----) [002] d..1 82318.022106: cpu_idle: state=0 cpu_id=2
128258 s.nexuslauncher-10023 (10023) [004] .... 82318.022182: binder_transaction: transaction=1572774 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
128259 s.nexuslauncher-10023 (10023) [004] .... 82318.022187: binder_transaction_alloc_buf: transaction=1572774 data_size=80 offsets_size=0
128260 s.nexuslauncher-10023 (10023) [004] d..4 82318.022193: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
128261          <idle>-0     (-----) [000] dnh2 82318.022258: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
128262          <idle>-0     (-----) [000] .n.1 82318.022264: cpu_idle: state=4294967295 cpu_id=0
128263          <idle>-0     (-----) [000] d..2 82318.022276: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
128264 s.nexuslauncher-10023 (10023) [004] d..3 82318.022279: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128265   Binder:8858_1-8871  ( 8858) [000] .... 82318.022289: binder_transaction_received: transaction=1572774
128266 s.nexuslauncher-10023 (10023) [004] d..4 82318.022296: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128267          <idle>-0     (-----) [005] .n.1 82318.022303: cpu_idle: state=4294967295 cpu_id=5
128268          <idle>-0     (-----) [005] d..2 82318.022314: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128269   Binder:8858_1-8871  ( 8858) [000] d..1 82318.022333: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
128270   Binder:8858_1-8871  ( 8858) [000] d..2 82318.022355: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
128271          <idle>-0     (-----) [003] .n.1 82318.022361: cpu_idle: state=4294967295 cpu_id=3
128272    RenderThread-16607 (10023) [005] d..2 82318.022363: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128273          <idle>-0     (-----) [003] d..2 82318.022372: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
128274          <idle>-0     (-----) [005] d..1 82318.022374: cpu_idle: state=0 cpu_id=5
128275   Binder:8858_1-8871  ( 8858) [000] d..2 82318.022409: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128276  appEventThread-8881  ( 8858) [003] d..2 82318.022418: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128277          <idle>-0     (-----) [000] d..1 82318.022431: cpu_idle: state=0 cpu_id=0
128278          <idle>-0     (-----) [003] d..1 82318.022431: cpu_idle: state=0 cpu_id=3
128279 s.nexuslauncher-10023 (10023) [004] d..3 82318.022539: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128280 s.nexuslauncher-10023 (10023) [004] d..4 82318.022557: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128281          <idle>-0     (-----) [005] .n.1 82318.022562: cpu_idle: state=4294967295 cpu_id=5
128282          <idle>-0     (-----) [005] d..2 82318.022570: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128283 s.nexuslauncher-10023 (10023) [004] d..2 82318.022582: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
128284          <idle>-0     (-----) [004] d..1 82318.022599: cpu_idle: state=0 cpu_id=4
128285    RenderThread-16607 (10023) [005] d..1 82318.022712: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128286    RenderThread-16607 (10023) [005] d..2 82318.022728: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128287          <idle>-0     (-----) [004] .n.1 82318.022735: cpu_idle: state=4294967295 cpu_id=4
128288          <idle>-0     (-----) [004] d..2 82318.022744: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
128289    RenderThread-16607 (10023) [005] .... 82318.022776: binder_transaction: transaction=1572775 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
128290    RenderThread-16607 (10023) [005] .... 82318.022780: binder_transaction_alloc_buf: transaction=1572775 data_size=104 offsets_size=0
128291    RenderThread-16607 (10023) [005] ...2 82318.022784: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
128292    RenderThread-16607 (10023) [005] d..4 82318.022787: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
128293    RenderThread-16607 (10023) [005] d..5 82318.022808: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128294 s.nexuslauncher-10023 (10023) [004] d..2 82318.022853: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
128295    RenderThread-16607 (10023) [005] d..2 82318.022856: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128296          <idle>-0     (-----) [004] d..1 82318.022864: cpu_idle: state=0 cpu_id=4
128297   Binder:8858_1-8871  ( 8858) [005] .... 82318.022867: binder_transaction_received: transaction=1572775
128298   Binder:8858_1-8871  ( 8858) [005] .... 82318.022925: binder_transaction: transaction=1572776 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
128299   Binder:8858_1-8871  ( 8858) [005] .... 82318.022929: binder_transaction_alloc_buf: transaction=1572776 data_size=52 offsets_size=8
128300   Binder:8858_1-8871  ( 8858) [005] d..2 82318.022937: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128301   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.022947: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128302   Binder:8858_1-8871  ( 8858) [005] d..2 82318.022953: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
128303    RenderThread-16607 (10023) [005] .... 82318.022962: binder_transaction_received: transaction=1572776
128304    RenderThread-16607 (10023) [005] d..2 82318.024195: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128305   Binder:8858_1-8871  ( 8858) [005] .... 82318.024208: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
128306   Binder:8858_1-8871  ( 8858) [005] d..2 82318.024273: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128307          <idle>-0     (-----) [005] d.h2 82318.024290: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128308          <idle>-0     (-----) [005] d.h3 82318.024298: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
128309          <idle>-0     (-----) [005] dnh3 82318.024301: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128310          <idle>-0     (-----) [005] d..2 82318.024314: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128311    RenderThread-16607 (10023) [005] .... 82318.024466: binder_transaction: transaction=1572777 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
128312    RenderThread-16607 (10023) [005] .... 82318.024470: binder_transaction_alloc_buf: transaction=1572777 data_size=192 offsets_size=8
128313    RenderThread-16607 (10023) [005] ...2 82318.024477: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
128314    RenderThread-16607 (10023) [005] d..4 82318.024480: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128315    RenderThread-16607 (10023) [005] d..5 82318.024491: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128316    RenderThread-16607 (10023) [005] d..2 82318.024502: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128317   Binder:8858_1-8871  ( 8858) [005] .... 82318.024512: binder_transaction_received: transaction=1572777
128318   Binder:8858_1-8871  ( 8858) [005] .... 82318.024630: binder_transaction: transaction=1572778 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
128319   Binder:8858_1-8871  ( 8858) [005] .... 82318.024635: binder_transaction_alloc_buf: transaction=1572778 data_size=68 offsets_size=0
128320   Binder:8858_1-8871  ( 8858) [005] d..2 82318.024637: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128321   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.024649: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128322   Binder:8858_1-8871  ( 8858) [005] d..2 82318.024655: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
128323    RenderThread-16607 (10023) [005] .... 82318.024665: binder_transaction_received: transaction=1572778
128324    RenderThread-16607 (10023) [005] d..2 82318.024730: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128325   Binder:8858_1-8871  ( 8858) [005] .... 82318.024738: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
128326   Binder:8858_1-8871  ( 8858) [005] d..2 82318.024788: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128327          <idle>-0     (-----) [005] d..1 82318.024803: cpu_idle: state=0 cpu_id=5
128328          <idle>-0     (-----) [000] d.h3 82318.025630: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
128329          <idle>-0     (-----) [000] d.h4 82318.025652: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
128330          <idle>-0     (-----) [003] .n.1 82318.025658: cpu_idle: state=4294967295 cpu_id=3
128331          <idle>-0     (-----) [000] d..2 82318.025665: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
128332          <idle>-0     (-----) [003] d..2 82318.025671: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
128333          <idle>-0     (-----) [000] dn.3 82318.025679: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
128334          <idle>-0     (-----) [000] .n.1 82318.025684: cpu_idle: state=4294967295 cpu_id=0
128335          <idle>-0     (-----) [000] d..2 82318.025699: 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
128336 kgsl_worker_thr-258   (  258) [003] d..2 82318.025727: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128337     ksoftirqd/0-3     (    3) [000] d..2 82318.025735: 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
128338          <idle>-0     (-----) [000] d..1 82318.025746: cpu_idle: state=0 cpu_id=0
128339          <idle>-0     (-----) [001] d.h2 82318.025764: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
128340 kgsl_worker_thr-258   (  258) [003] d..3 82318.025777: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
128341          <idle>-0     (-----) [001] dnh3 82318.025777: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
128342          <idle>-0     (-----) [000] .n.1 82318.025781: cpu_idle: state=4294967295 cpu_id=0
128343          <idle>-0     (-----) [001] .n.1 82318.025786: cpu_idle: state=4294967295 cpu_id=1
128344          <idle>-0     (-----) [000] d..2 82318.025794: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128345          <idle>-0     (-----) [001] d..2 82318.025798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
128346        DispSync-8879  ( 8858) [001] d..1 82318.025811: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128347 kgsl_worker_thr-258   (  258) [003] d..2 82318.025815: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128348        DispSync-8879  ( 8858) [001] d..2 82318.025828: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128349          <idle>-0     (-----) [003] d..1 82318.025830: cpu_idle: state=0 cpu_id=3
128350          <idle>-0     (-----) [002] .n.1 82318.025835: cpu_idle: state=4294967295 cpu_id=2
128351          <idle>-0     (-----) [002] d..2 82318.025849: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
128352        DispSync-8879  ( 8858) [001] d..2 82318.025863: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128353          <idle>-0     (-----) [001] d..1 82318.025877: cpu_idle: state=0 cpu_id=1
128354   sfEventThread-8882  ( 8858) [002] d..3 82318.025892: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128355   sfEventThread-8882  ( 8858) [002] d..4 82318.025913: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128356          <idle>-0     (-----) [001] .n.1 82318.025919: cpu_idle: state=4294967295 cpu_id=1
128357          <idle>-0     (-----) [001] d..2 82318.025930: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
128358   sfEventThread-8882  ( 8858) [002] d..2 82318.025956: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128359  kworker/u16:13-1147  ( 1147) [000] d..2 82318.025962: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128360          <idle>-0     (-----) [002] d..1 82318.025968: cpu_idle: state=0 cpu_id=2
128361          <idle>-0     (-----) [000] d..1 82318.025977: cpu_idle: state=0 cpu_id=0
128362  surfaceflinger-8858  ( 8858) [001] d..1 82318.026291: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128363  surfaceflinger-8858  ( 8858) [001] d..2 82318.026317: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128364          <idle>-0     (-----) [002] .n.1 82318.026322: cpu_idle: state=4294967295 cpu_id=2
128365          <idle>-0     (-----) [002] d..2 82318.026331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
128366   sfEventThread-8882  ( 8858) [002] d..2 82318.026370: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128367          <idle>-0     (-----) [002] d..1 82318.026379: cpu_idle: state=0 cpu_id=2
128368  surfaceflinger-8858  ( 8858) [001] ...1 82318.026521: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
128369  surfaceflinger-8858  ( 8858) [001] ...1 82318.026529: tracing_mark_write: E|8858
128370  surfaceflinger-8858  ( 8858) [001] .... 82318.026592: binder_transaction: transaction=1572779 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
128371  surfaceflinger-8858  ( 8858) [001] .... 82318.026599: binder_transaction_alloc_buf: transaction=1572779 data_size=540 offsets_size=96
128372  surfaceflinger-8858  ( 8858) [001] ...2 82318.026627: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
128373  surfaceflinger-8858  ( 8858) [001] d..4 82318.026633: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
128374  surfaceflinger-8858  ( 8858) [001] d..5 82318.026655: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
128375          <idle>-0     (-----) [000] .n.1 82318.026661: cpu_idle: state=4294967295 cpu_id=0
128376          <idle>-0     (-----) [000] d..2 82318.026674: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
128377 [email protected]   (  619) [000] .... 82318.026686: binder_transaction_received: transaction=1572779
128378  surfaceflinger-8858  ( 8858) [001] d..2 82318.026697: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128379          <idle>-0     (-----) [001] d..1 82318.026720: cpu_idle: state=0 cpu_id=1
128380 [email protected]   (  619) [000] ...1 82318.026742: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
128381 [email protected]   (  619) [000] ...1 82318.026858: tracing_mark_write: B|619|HWCSession::PresentDisplay::
128382 [email protected]   (  619) [000] ...1 82318.027043: tracing_mark_write: B|619|HWDeviceDRM::Commit::
128383 [email protected]   (  619) [000] ...1 82318.027058: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
128384 [email protected]   (  619) [000] d..2 82318.027689: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128385 [email protected]   (  619) [000] d..3 82318.027719: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128386          <idle>-0     (-----) [002] .n.1 82318.027723: cpu_idle: state=4294967295 cpu_id=2
128387          <idle>-0     (-----) [002] d..2 82318.027732: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128388 [email protected]   (  619) [000] ...1 82318.027838: tracing_mark_write: E|619
128389 [email protected]   (  619) [000] ...1 82318.027846: tracing_mark_write: E|619
128390 [email protected]   (  619) [000] ...1 82318.027912: tracing_mark_write: E|619
128391 [email protected]   (  619) [000] ...1 82318.027963: tracing_mark_write: E|619
128392 [email protected]   (  619) [000] .... 82318.027981: binder_transaction: transaction=1572780 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
128393 [email protected]   (  619) [000] .... 82318.027986: binder_transaction_alloc_buf: transaction=1572780 data_size=576 offsets_size=112
128394 [email protected]   (  619) [000] d..2 82318.028011: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128395 [email protected]   (  619) [000] d..3 82318.028033: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128396 [email protected]   (  619) [000] .... 82318.028039: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
128397          <idle>-0     (-----) [001] .n.1 82318.028040: cpu_idle: state=4294967295 cpu_id=1
128398          <idle>-0     (-----) [001] d..2 82318.028053: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
128399  surfaceflinger-8858  ( 8858) [001] .... 82318.028064: binder_transaction_received: transaction=1572780
128400 [email protected]   (  619) [000] d..2 82318.028143: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128401          <idle>-0     (-----) [000] d..1 82318.028164: cpu_idle: state=0 cpu_id=0
128402 crtc_commit:111-321   (  321) [002] d.s1 82318.028487: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
128403 crtc_commit:111-321   (  321) [002] d.s2 82318.028513: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
128404 crtc_commit:111-321   (  321) [002] d.s2 82318.028521: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
128405 crtc_commit:111-321   (  321) [002] d.s3 82318.028560: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128406  surfaceflinger-8858  ( 8858) [001] d..2 82318.028603: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
128407     rcu_preempt-7     (    7) [001] d..2 82318.028617: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
128408 crtc_commit:111-321   (  321) [002] d..2 82318.028620: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128409     rcu_preempt-7     (    7) [001] d..3 82318.028666: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128410     rcu_preempt-7     (    7) [001] d..2 82318.028691: 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
128411         rcuop/0-10    (   10) [001] d..2 82318.028703: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
128412         rcuop/0-10    (   10) [001] d..3 82318.028737: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
128413         rcuop/0-10    (   10) [001] d..2 82318.028748: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128414         rcuop/0-10    (   10) [001] d..3 82318.028760: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128415         rcuop/0-10    (   10) [001] d..2 82318.028771: 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
128416         rcuop/1-21    (   21) [001] d..2 82318.028789: 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
128417  kworker/u16:13-1147  ( 1147) [002] d..2 82318.028800: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128418     rcu_preempt-7     (    7) [001] d..2 82318.028818: 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
128419          <idle>-0     (-----) [002] d..1 82318.028821: cpu_idle: state=0 cpu_id=2
128420          <idle>-0     (-----) [001] d..1 82318.028840: cpu_idle: state=0 cpu_id=1
128421          <idle>-0     (-----) [000] d.h2 82318.029492: sched_waking: comm=traced pid=889 prio=120 target_cpu=000
128422          <idle>-0     (-----) [000] dnh3 82318.029522: sched_wakeup: comm=traced pid=889 prio=120 target_cpu=000
128423          <idle>-0     (-----) [000] .n.1 82318.029534: cpu_idle: state=4294967295 cpu_id=0
128424          <idle>-0     (-----) [000] d..2 82318.029550: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=traced next_pid=889 next_prio=120
128425          traced-889   (  866) [000] d..2 82318.029742: sched_switch: prev_comm=traced prev_pid=889 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128426          <idle>-0     (-----) [000] d..1 82318.029762: cpu_idle: state=0 cpu_id=0
128427          <idle>-0     (-----) [000] d.h5 82318.033807: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128428          <idle>-0     (-----) [000] dnh6 82318.033831: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128429          <idle>-0     (-----) [000] dnh5 82318.033836: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128430          <idle>-0     (-----) [000] dnh6 82318.033851: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128431          <idle>-0     (-----) [002] .n.1 82318.033859: cpu_idle: state=4294967295 cpu_id=2
128432          <idle>-0     (-----) [002] d..2 82318.033875: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128433          <idle>-0     (-----) [000] dnh3 82318.033945: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
128434          <idle>-0     (-----) [000] dnh4 82318.033962: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
128435          <idle>-0     (-----) [003] .n.1 82318.033968: cpu_idle: state=4294967295 cpu_id=3
128436          <idle>-0     (-----) [000] .n.1 82318.033972: cpu_idle: state=4294967295 cpu_id=0
128437 crtc_commit:111-321   (  321) [002] d..2 82318.033972: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
128438          <idle>-0     (-----) [002] d..2 82318.033978: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
128439          <idle>-0     (-----) [003] d..2 82318.033982: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
128440          <idle>-0     (-----) [000] d..2 82318.033987: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128441          <idle>-0     (-----) [002] dn.3 82318.033995: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
128442  crtc_event:111-322   (  322) [000] d..2 82318.034002: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128443          <idle>-0     (-----) [002] d..2 82318.034006: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
128444         sugov:0-576   (  576) [003] .... 82318.034017: clk_set_rate: pwrcl_clk 748800000
128445     ksoftirqd/2-26    (   26) [002] d.s2 82318.034017: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128446  crtc_event:111-322   (  322) [000] d..3 82318.034025: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128447         sugov:0-576   (  576) [003] .... 82318.034034: clk_set_rate: cpu3_pwrcl_clk 825600000
128448         sugov:0-576   (  576) [003] .... 82318.034044: clk_set_rate: cpu2_pwrcl_clk 825600000
128449         sugov:0-576   (  576) [003] .... 82318.034052: clk_set_rate: cpu1_pwrcl_clk 825600000
128450  crtc_event:111-322   (  322) [000] d..2 82318.034058: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128451         sugov:0-576   (  576) [003] .... 82318.034060: clk_set_rate: cpu0_pwrcl_clk 748800000
128452     ksoftirqd/2-26    (   26) [002] dns3 82318.034081: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
128453          <idle>-0     (-----) [000] d..2 82318.034099: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128454     ksoftirqd/2-26    (   26) [002] d..2 82318.034106: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=R+ ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128455         sugov:0-576   (  576) [003] .... 82318.034175: cpu_frequency: state=748800 cpu_id=0
128456 crtc_commit:111-321   (  321) [002] d..2 82318.034190: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
128457         sugov:0-576   (  576) [003] .... 82318.034198: cpu_frequency: state=748800 cpu_id=1
128458         sugov:0-576   (  576) [003] .... 82318.034203: cpu_frequency: state=748800 cpu_id=2
128459         sugov:0-576   (  576) [003] .... 82318.034207: cpu_frequency: state=748800 cpu_id=3
128460     ksoftirqd/2-26    (   26) [002] d..2 82318.034219: 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
128461         sugov:0-576   (  576) [003] d..2 82318.034243: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128462          <idle>-0     (-----) [003] d..1 82318.034258: cpu_idle: state=0 cpu_id=3
128463          <idle>-0     (-----) [002] d..1 82318.034266: cpu_idle: state=0 cpu_id=2
128464  kworker/u16:13-1147  ( 1147) [000] d..2 82318.034294: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128465          <idle>-0     (-----) [000] d..1 82318.034309: cpu_idle: state=0 cpu_id=0
128466          <idle>-0     (-----) [002] d.s3 82318.035139: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128467          <idle>-0     (-----) [001] d.s2 82318.035143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128468          <idle>-0     (-----) [002] d.s4 82318.035162: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128469          <idle>-0     (-----) [001] dns3 82318.035165: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128470          <idle>-0     (-----) [000] .n.1 82318.035169: cpu_idle: state=4294967295 cpu_id=0
128471          <idle>-0     (-----) [000] d..2 82318.035184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128472          <idle>-0     (-----) [001] .n.1 82318.035190: cpu_idle: state=4294967295 cpu_id=1
128473          <idle>-0     (-----) [002] ...1 82318.035197: cpu_idle: state=4294967295 cpu_id=2
128474          <idle>-0     (-----) [001] d..2 82318.035205: 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
128475          <idle>-0     (-----) [002] d..1 82318.035206: cpu_idle: state=0 cpu_id=2
128476  crtc_event:111-322   (  322) [000] d..2 82318.035223: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128477          <idle>-0     (-----) [000] d..1 82318.035237: cpu_idle: state=0 cpu_id=0
128478     rcu_preempt-7     (    7) [001] d..2 82318.035240: 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
128479          <idle>-0     (-----) [001] d..1 82318.035254: cpu_idle: state=0 cpu_id=1
128480          <idle>-0     (-----) [000] d.h5 82318.036130: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128481          <idle>-0     (-----) [000] d.h6 82318.036152: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128482          <idle>-0     (-----) [002] .n.1 82318.036157: cpu_idle: state=4294967295 cpu_id=2
128483          <idle>-0     (-----) [002] d..2 82318.036170: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128484          <idle>-0     (-----) [000] ...1 82318.036171: cpu_idle: state=4294967295 cpu_id=0
128485          <idle>-0     (-----) [000] d..1 82318.036177: cpu_idle: state=0 cpu_id=0
128486 crtc_commit:111-321   (  321) [002] d..2 82318.036254: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128487          <idle>-0     (-----) [002] d..1 82318.036272: cpu_idle: state=0 cpu_id=2
128488          <idle>-0     (-----) [000] d.h5 82318.036430: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128489          <idle>-0     (-----) [000] dnh6 82318.036443: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128490          <idle>-0     (-----) [000] .n.1 82318.036458: cpu_idle: state=4294967295 cpu_id=0
128491          <idle>-0     (-----) [000] d..2 82318.036470: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128492  crtc_event:111-322   (  322) [000] d..2 82318.036499: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128493          <idle>-0     (-----) [000] d..1 82318.036513: cpu_idle: state=0 cpu_id=0
128494          <idle>-0     (-----) [002] ...1 82318.038158: cpu_idle: state=4294967295 cpu_id=2
128495          <idle>-0     (-----) [002] d..1 82318.038164: cpu_idle: state=0 cpu_id=2
128496          <idle>-0     (-----) [001] d.h2 82318.038231: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
128497          <idle>-0     (-----) [001] dnh3 82318.038249: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
128498          <idle>-0     (-----) [001] .n.1 82318.038259: cpu_idle: state=4294967295 cpu_id=1
128499          <idle>-0     (-----) [001] d..2 82318.038270: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
128500        DispSync-8879  ( 8858) [001] d..1 82318.038289: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
128501        DispSync-8879  ( 8858) [001] d..2 82318.038307: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
128502          <idle>-0     (-----) [003] .n.1 82318.038314: cpu_idle: state=4294967295 cpu_id=3
128503          <idle>-0     (-----) [000] ...1 82318.038319: cpu_idle: state=4294967295 cpu_id=0
128504          <idle>-0     (-----) [000] d..1 82318.038324: cpu_idle: state=0 cpu_id=0
128505          <idle>-0     (-----) [003] d..2 82318.038326: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
128506        DispSync-8879  ( 8858) [001] d..2 82318.038347: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128507          <idle>-0     (-----) [001] d..1 82318.038362: cpu_idle: state=0 cpu_id=1
128508  appEventThread-8881  ( 8858) [003] d..3 82318.038371: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128509          <idle>-0     (-----) [004] dnh2 82318.038402: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128510          <idle>-0     (-----) [004] .n.1 82318.038407: cpu_idle: state=4294967295 cpu_id=4
128511          <idle>-0     (-----) [004] d..2 82318.038415: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
128512  appEventThread-8881  ( 8858) [003] d..2 82318.038437: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128513 s.nexuslauncher-10023 (10023) [004] d.s2 82318.038472: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
128514          <idle>-0     (-----) [003] d..1 82318.038507: cpu_idle: state=0 cpu_id=3
128515          <idle>-0     (-----) [003] dnh2 82318.038528: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
128516          <idle>-0     (-----) [003] .n.1 82318.038535: cpu_idle: state=4294967295 cpu_id=3
128517          <idle>-0     (-----) [003] d..2 82318.038549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128518  kworker/u16:13-1147  ( 1147) [003] d..2 82318.038662: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128519          <idle>-0     (-----) [003] d..1 82318.038677: cpu_idle: state=0 cpu_id=3
128520 s.nexuslauncher-10023 (10023) [004] .... 82318.038715: binder_transaction: transaction=1572781 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
128521 s.nexuslauncher-10023 (10023) [004] .... 82318.038720: binder_transaction_alloc_buf: transaction=1572781 data_size=80 offsets_size=0
128522 s.nexuslauncher-10023 (10023) [004] d..4 82318.038726: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
128523          <idle>-0     (-----) [000] dnh2 82318.038792: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
128524          <idle>-0     (-----) [000] .n.1 82318.038798: cpu_idle: state=4294967295 cpu_id=0
128525          <idle>-0     (-----) [000] d..2 82318.038811: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
128526 s.nexuslauncher-10023 (10023) [004] d..3 82318.038811: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128527   Binder:8858_1-8871  ( 8858) [000] .... 82318.038824: binder_transaction_received: transaction=1572781
128528 s.nexuslauncher-10023 (10023) [004] d..4 82318.038828: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128529          <idle>-0     (-----) [005] .n.1 82318.038835: cpu_idle: state=4294967295 cpu_id=5
128530          <idle>-0     (-----) [005] d..2 82318.038847: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128531   Binder:8858_1-8871  ( 8858) [000] d..1 82318.038871: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
128532    RenderThread-16607 (10023) [005] d..2 82318.038890: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128533   Binder:8858_1-8871  ( 8858) [000] d..2 82318.038895: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
128534          <idle>-0     (-----) [003] .n.1 82318.038901: cpu_idle: state=4294967295 cpu_id=3
128535          <idle>-0     (-----) [005] d..1 82318.038901: cpu_idle: state=0 cpu_id=5
128536          <idle>-0     (-----) [003] d..2 82318.038913: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
128537   Binder:8858_1-8871  ( 8858) [000] d..2 82318.038952: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128538  appEventThread-8881  ( 8858) [003] d..2 82318.038968: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128539          <idle>-0     (-----) [000] d..1 82318.038973: cpu_idle: state=0 cpu_id=0
128540          <idle>-0     (-----) [003] d..1 82318.038982: cpu_idle: state=0 cpu_id=3
128541 s.nexuslauncher-10023 (10023) [004] d..3 82318.039068: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128542 s.nexuslauncher-10023 (10023) [004] d..4 82318.039086: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128543          <idle>-0     (-----) [005] .n.1 82318.039092: cpu_idle: state=4294967295 cpu_id=5
128544          <idle>-0     (-----) [005] d..2 82318.039101: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128545 s.nexuslauncher-10023 (10023) [004] d..2 82318.039112: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
128546          <idle>-0     (-----) [004] d..1 82318.039129: cpu_idle: state=0 cpu_id=4
128547    RenderThread-16607 (10023) [005] d..1 82318.039252: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128548    RenderThread-16607 (10023) [005] d..2 82318.039269: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128549          <idle>-0     (-----) [004] .n.1 82318.039276: cpu_idle: state=4294967295 cpu_id=4
128550          <idle>-0     (-----) [004] d..2 82318.039285: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
128551    RenderThread-16607 (10023) [005] .... 82318.039319: binder_transaction: transaction=1572782 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
128552    RenderThread-16607 (10023) [005] .... 82318.039323: binder_transaction_alloc_buf: transaction=1572782 data_size=104 offsets_size=0
128553    RenderThread-16607 (10023) [005] ...2 82318.039328: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
128554    RenderThread-16607 (10023) [005] d..4 82318.039332: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
128555    RenderThread-16607 (10023) [005] d..5 82318.039353: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128556 s.nexuslauncher-10023 (10023) [004] d..2 82318.039393: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
128557    RenderThread-16607 (10023) [005] d..2 82318.039399: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128558          <idle>-0     (-----) [004] d..1 82318.039404: cpu_idle: state=0 cpu_id=4
128559   Binder:8858_1-8871  ( 8858) [005] .... 82318.039411: binder_transaction_received: transaction=1572782
128560   Binder:8858_1-8871  ( 8858) [005] .... 82318.039469: binder_transaction: transaction=1572783 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
128561   Binder:8858_1-8871  ( 8858) [005] .... 82318.039473: binder_transaction_alloc_buf: transaction=1572783 data_size=52 offsets_size=8
128562   Binder:8858_1-8871  ( 8858) [005] d..2 82318.039480: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128563   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.039491: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128564   Binder:8858_1-8871  ( 8858) [005] d..2 82318.039497: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
128565    RenderThread-16607 (10023) [005] .... 82318.039507: binder_transaction_received: transaction=1572783
128566    RenderThread-16607 (10023) [005] d..2 82318.040691: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128567   Binder:8858_1-8871  ( 8858) [005] .... 82318.040704: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
128568   Binder:8858_1-8871  ( 8858) [005] d..2 82318.040769: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128569          <idle>-0     (-----) [005] d.h2 82318.040786: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128570          <idle>-0     (-----) [005] d.h3 82318.040794: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
128571          <idle>-0     (-----) [005] dnh3 82318.040797: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128572          <idle>-0     (-----) [005] d..2 82318.040810: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128573    RenderThread-16607 (10023) [005] .... 82318.040963: binder_transaction: transaction=1572784 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
128574    RenderThread-16607 (10023) [005] .... 82318.040967: binder_transaction_alloc_buf: transaction=1572784 data_size=192 offsets_size=8
128575    RenderThread-16607 (10023) [005] ...2 82318.040974: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
128576    RenderThread-16607 (10023) [005] d..4 82318.040977: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128577    RenderThread-16607 (10023) [005] d..5 82318.040989: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128578    RenderThread-16607 (10023) [005] d..2 82318.041001: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128579   Binder:8858_1-8871  ( 8858) [005] .... 82318.041011: binder_transaction_received: transaction=1572784
128580   Binder:8858_1-8871  ( 8858) [005] .... 82318.041136: binder_transaction: transaction=1572785 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
128581   Binder:8858_1-8871  ( 8858) [005] .... 82318.041140: binder_transaction_alloc_buf: transaction=1572785 data_size=68 offsets_size=0
128582   Binder:8858_1-8871  ( 8858) [005] d..2 82318.041143: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128583   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.041154: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128584   Binder:8858_1-8871  ( 8858) [005] d..2 82318.041160: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
128585    RenderThread-16607 (10023) [005] .... 82318.041170: binder_transaction_received: transaction=1572785
128586    RenderThread-16607 (10023) [005] d..2 82318.041234: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128587   Binder:8858_1-8871  ( 8858) [005] .... 82318.041243: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
128588   Binder:8858_1-8871  ( 8858) [005] d..2 82318.041291: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128589          <idle>-0     (-----) [005] d..1 82318.041307: cpu_idle: state=0 cpu_id=5
128590          <idle>-0     (-----) [001] d.s2 82318.041807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128591          <idle>-0     (-----) [001] dns3 82318.041828: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128592          <idle>-0     (-----) [001] dns3 82318.041835: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
128593          <idle>-0     (-----) [001] dns4 82318.041874: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
128594          <idle>-0     (-----) [001] .n.1 82318.041887: cpu_idle: state=4294967295 cpu_id=1
128595          <idle>-0     (-----) [001] d..2 82318.041901: 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
128596     rcu_preempt-7     (    7) [001] d..2 82318.041911: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128597     rcu_preempt-7     (    7) [001] d..3 82318.041931: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128598     rcu_preempt-7     (    7) [001] d..2 82318.041944: 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
128599         rcuop/0-10    (   10) [001] d..2 82318.041948: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
128600         rcuop/0-10    (   10) [001] d..3 82318.041964: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
128601         rcuop/0-10    (   10) [001] d..2 82318.041974: 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
128602         rcuop/1-21    (   21) [001] d..2 82318.041991: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128603  kworker/u16:13-1147  ( 1147) [001] d..2 82318.042081: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128604          <idle>-0     (-----) [001] d..1 82318.042098: cpu_idle: state=0 cpu_id=1
128605          <idle>-0     (-----) [000] d.h3 82318.042115: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
128606          <idle>-0     (-----) [000] d.h4 82318.042140: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
128607          <idle>-0     (-----) [003] .n.1 82318.042147: cpu_idle: state=4294967295 cpu_id=3
128608          <idle>-0     (-----) [000] ...1 82318.042158: cpu_idle: state=4294967295 cpu_id=0
128609          <idle>-0     (-----) [003] d..2 82318.042159: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
128610          <idle>-0     (-----) [000] d..1 82318.042165: cpu_idle: state=0 cpu_id=0
128611 kgsl_worker_thr-258   (  258) [003] d..2 82318.042220: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
128612          <idle>-0     (-----) [001] d.h2 82318.042236: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
128613 kgsl_worker_thr-258   (  258) [003] d..3 82318.042244: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
128614          <idle>-0     (-----) [001] dnh3 82318.042275: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
128615          <idle>-0     (-----) [000] .n.1 82318.042280: cpu_idle: state=4294967295 cpu_id=0
128616 kgsl_worker_thr-258   (  258) [003] d..2 82318.042284: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128617          <idle>-0     (-----) [001] .n.1 82318.042289: cpu_idle: state=4294967295 cpu_id=1
128618          <idle>-0     (-----) [000] d..2 82318.042294: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
128619          <idle>-0     (-----) [003] d..1 82318.042301: cpu_idle: state=0 cpu_id=3
128620          <idle>-0     (-----) [001] d..2 82318.042306: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128621        DispSync-8879  ( 8858) [000] d..1 82318.042317: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128622        DispSync-8879  ( 8858) [000] d..2 82318.042336: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128623          <idle>-0     (-----) [002] .n.1 82318.042341: cpu_idle: state=4294967295 cpu_id=2
128624          <idle>-0     (-----) [002] d..2 82318.042355: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
128625        DispSync-8879  ( 8858) [000] d..2 82318.042376: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128626          <idle>-0     (-----) [000] d..1 82318.042391: cpu_idle: state=0 cpu_id=0
128627   sfEventThread-8882  ( 8858) [002] d..3 82318.042395: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128628   sfEventThread-8882  ( 8858) [002] d..4 82318.042430: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
128629          <idle>-0     (-----) [000] .n.1 82318.042436: cpu_idle: state=4294967295 cpu_id=0
128630          <idle>-0     (-----) [000] d..2 82318.042449: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
128631   sfEventThread-8882  ( 8858) [002] d..2 82318.042473: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128632  kworker/u16:13-1147  ( 1147) [001] d..2 82318.042480: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128633          <idle>-0     (-----) [002] d..1 82318.042491: cpu_idle: state=0 cpu_id=2
128634          <idle>-0     (-----) [001] d..1 82318.042500: cpu_idle: state=0 cpu_id=1
128635  surfaceflinger-8858  ( 8858) [000] d..2 82318.042835: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128636  surfaceflinger-8858  ( 8858) [000] d..3 82318.042863: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128637          <idle>-0     (-----) [001] .n.1 82318.042868: cpu_idle: state=4294967295 cpu_id=1
128638          <idle>-0     (-----) [001] d..2 82318.042883: 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
128639         rcuop/0-10    (   10) [001] d..2 82318.042890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128640  surfaceflinger-8858  ( 8858) [000] d..1 82318.042897: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128641         rcuop/0-10    (   10) [001] d..3 82318.042912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128642  surfaceflinger-8858  ( 8858) [000] d..2 82318.042919: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128643         rcuop/0-10    (   10) [001] d..2 82318.042924: 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
128644          <idle>-0     (-----) [002] .n.1 82318.042925: cpu_idle: state=4294967295 cpu_id=2
128645          <idle>-0     (-----) [002] d..2 82318.042937: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
128646     rcu_preempt-7     (    7) [001] d..2 82318.042950: 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
128647          <idle>-0     (-----) [001] d..1 82318.042965: cpu_idle: state=0 cpu_id=1
128648   sfEventThread-8882  ( 8858) [002] d..2 82318.042981: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128649          <idle>-0     (-----) [002] d..1 82318.042993: cpu_idle: state=0 cpu_id=2
128650  surfaceflinger-8858  ( 8858) [000] ...1 82318.043137: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
128651  surfaceflinger-8858  ( 8858) [000] ...1 82318.043147: tracing_mark_write: E|8858
128652  surfaceflinger-8858  ( 8858) [000] .... 82318.043212: binder_transaction: transaction=1572786 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
128653  surfaceflinger-8858  ( 8858) [000] .... 82318.043219: binder_transaction_alloc_buf: transaction=1572786 data_size=540 offsets_size=96
128654  surfaceflinger-8858  ( 8858) [000] ...2 82318.043253: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
128655  surfaceflinger-8858  ( 8858) [000] d..4 82318.043260: sched_waking: [email protected] pid=619 prio=98 target_cpu=000
128656  surfaceflinger-8858  ( 8858) [000] d..5 82318.043297: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
128657          <idle>-0     (-----) [003] .n.1 82318.043302: cpu_idle: state=4294967295 cpu_id=3
128658          <idle>-0     (-----) [003] d..2 82318.043316: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
128659 [email protected]   (  619) [003] .... 82318.043332: binder_transaction_received: transaction=1572786
128660  surfaceflinger-8858  ( 8858) [000] d..2 82318.043338: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128661          <idle>-0     (-----) [000] d..1 82318.043362: cpu_idle: state=0 cpu_id=0
128662 [email protected]   (  619) [003] ...1 82318.043395: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
128663 [email protected]   (  619) [003] ...1 82318.043525: tracing_mark_write: B|619|HWCSession::PresentDisplay::
128664 [email protected]   (  619) [003] ...1 82318.043713: tracing_mark_write: B|619|HWDeviceDRM::Commit::
128665 [email protected]   (  619) [003] ...1 82318.043729: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
128666 [email protected]   (  619) [003] d..2 82318.044397: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128667 [email protected]   (  619) [003] d..3 82318.044428: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128668          <idle>-0     (-----) [002] .n.1 82318.044433: cpu_idle: state=4294967295 cpu_id=2
128669          <idle>-0     (-----) [002] d..2 82318.044445: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128670 [email protected]   (  619) [003] ...1 82318.044555: tracing_mark_write: E|619
128671 [email protected]   (  619) [003] ...1 82318.044564: tracing_mark_write: E|619
128672 [email protected]   (  619) [003] ...1 82318.044633: tracing_mark_write: E|619
128673 [email protected]   (  619) [003] ...1 82318.044687: tracing_mark_write: E|619
128674 [email protected]   (  619) [003] .... 82318.044706: binder_transaction: transaction=1572787 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
128675 [email protected]   (  619) [003] .... 82318.044712: binder_transaction_alloc_buf: transaction=1572787 data_size=576 offsets_size=112
128676 [email protected]   (  619) [003] d..2 82318.044739: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
128677 [email protected]   (  619) [003] d..3 82318.044763: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
128678 [email protected]   (  619) [003] .... 82318.044769: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
128679          <idle>-0     (-----) [000] .n.1 82318.044770: cpu_idle: state=4294967295 cpu_id=0
128680          <idle>-0     (-----) [000] d..2 82318.044783: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
128681  surfaceflinger-8858  ( 8858) [000] .... 82318.044795: binder_transaction_received: transaction=1572787
128682 [email protected]   (  619) [003] d..2 82318.044877: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128683          <idle>-0     (-----) [003] d..1 82318.044903: cpu_idle: state=0 cpu_id=3
128684 crtc_commit:111-321   (  321) [002] d.s2 82318.045151: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
128685 crtc_commit:111-321   (  321) [002] d.s3 82318.045202: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128686 crtc_commit:111-321   (  321) [002] d..2 82318.045313: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128687  surfaceflinger-8858  ( 8858) [000] d..2 82318.045362: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128688          <idle>-0     (-----) [000] d..1 82318.045387: cpu_idle: state=0 cpu_id=0
128689  kworker/u16:13-1147  ( 1147) [002] d..2 82318.045405: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128690          <idle>-0     (-----) [002] d..1 82318.045427: cpu_idle: state=0 cpu_id=2
128691          <idle>-0     (-----) [002] ...1 82318.047356: cpu_idle: state=4294967295 cpu_id=2
128692          <idle>-0     (-----) [002] d..1 82318.047361: cpu_idle: state=0 cpu_id=2
128693          <idle>-0     (-----) [001] d.s2 82318.048478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128694          <idle>-0     (-----) [001] dns3 82318.048497: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128695          <idle>-0     (-----) [001] dns3 82318.048504: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128696          <idle>-0     (-----) [001] dns4 82318.048543: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
128697          <idle>-0     (-----) [001] .n.1 82318.048566: cpu_idle: state=4294967295 cpu_id=1
128698          <idle>-0     (-----) [001] d..2 82318.048581: 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
128699     rcu_preempt-7     (    7) [001] d..2 82318.048594: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128700     rcu_preempt-7     (    7) [001] d..3 82318.048611: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128701     rcu_preempt-7     (    7) [001] d..2 82318.048623: 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
128702         rcuop/0-10    (   10) [001] d..2 82318.048631: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128703         rcuop/0-10    (   10) [001] d..3 82318.048645: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128704         rcuop/0-10    (   10) [001] d..2 82318.048655: 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
128705     rcu_preempt-7     (    7) [001] d..2 82318.048668: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128706  kworker/u16:13-1147  ( 1147) [001] d..2 82318.048750: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128707          <idle>-0     (-----) [001] d..1 82318.048768: cpu_idle: state=0 cpu_id=1
128708          <idle>-0     (-----) [000] d.h5 82318.050273: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128709          <idle>-0     (-----) [000] dnh6 82318.050291: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128710          <idle>-0     (-----) [000] dnh5 82318.050297: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128711          <idle>-0     (-----) [000] dnh6 82318.050312: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128712          <idle>-0     (-----) [002] .n.1 82318.050318: cpu_idle: state=4294967295 cpu_id=2
128713          <idle>-0     (-----) [000] .n.1 82318.050329: cpu_idle: state=4294967295 cpu_id=0
128714          <idle>-0     (-----) [002] d..2 82318.050332: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128715          <idle>-0     (-----) [000] d..2 82318.050344: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128716  crtc_event:111-322   (  322) [000] d..2 82318.050381: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128717          <idle>-0     (-----) [000] d..1 82318.050395: cpu_idle: state=0 cpu_id=0
128718 crtc_commit:111-321   (  321) [002] d..2 82318.050487: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
128719          <idle>-0     (-----) [002] d..1 82318.050499: cpu_idle: state=0 cpu_id=2
128720          <idle>-0     (-----) [002] d.s3 82318.051887: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128721          <idle>-0     (-----) [002] d.s4 82318.051911: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128722          <idle>-0     (-----) [000] .n.1 82318.051917: cpu_idle: state=4294967295 cpu_id=0
128723          <idle>-0     (-----) [002] d.s3 82318.051918: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
128724          <idle>-0     (-----) [000] d..2 82318.051931: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128725          <idle>-0     (-----) [002] dns4 82318.051961: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128726  crtc_event:111-322   (  322) [000] d..2 82318.051973: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128727          <idle>-0     (-----) [000] d..1 82318.051983: cpu_idle: state=0 cpu_id=0
128728          <idle>-0     (-----) [002] .n.1 82318.051989: cpu_idle: state=4294967295 cpu_id=2
128729          <idle>-0     (-----) [002] d..2 82318.052002: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128730  kworker/u16:13-1147  ( 1147) [002] d..2 82318.052086: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128731          <idle>-0     (-----) [002] d..1 82318.052106: cpu_idle: state=0 cpu_id=2
128732          <idle>-0     (-----) [000] d.h5 82318.052595: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128733          <idle>-0     (-----) [000] d.h6 82318.052616: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128734          <idle>-0     (-----) [002] .n.1 82318.052623: cpu_idle: state=4294967295 cpu_id=2
128735          <idle>-0     (-----) [000] ...1 82318.052634: cpu_idle: state=4294967295 cpu_id=0
128736          <idle>-0     (-----) [002] d..2 82318.052636: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128737          <idle>-0     (-----) [000] d..1 82318.052640: cpu_idle: state=0 cpu_id=0
128738 crtc_commit:111-321   (  321) [002] d..2 82318.052714: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128739          <idle>-0     (-----) [002] d..1 82318.052731: cpu_idle: state=0 cpu_id=2
128740          <idle>-0     (-----) [000] d.h5 82318.052896: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128741          <idle>-0     (-----) [000] dnh6 82318.052908: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128742          <idle>-0     (-----) [000] .n.1 82318.052923: cpu_idle: state=4294967295 cpu_id=0
128743          <idle>-0     (-----) [000] d..2 82318.052934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128744  crtc_event:111-322   (  322) [000] d..2 82318.052961: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128745          <idle>-0     (-----) [000] d..1 82318.052971: cpu_idle: state=0 cpu_id=0
128746          <idle>-0     (-----) [002] ...1 82318.054662: cpu_idle: state=4294967295 cpu_id=2
128747          <idle>-0     (-----) [002] d..1 82318.054667: cpu_idle: state=0 cpu_id=2
128748          <idle>-0     (-----) [000] d.h2 82318.054703: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
128749          <idle>-0     (-----) [000] dnh3 82318.054716: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
128750          <idle>-0     (-----) [000] .n.1 82318.054726: cpu_idle: state=4294967295 cpu_id=0
128751          <idle>-0     (-----) [000] d..2 82318.054736: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
128752        DispSync-8879  ( 8858) [000] d..1 82318.054755: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
128753        DispSync-8879  ( 8858) [000] d..2 82318.054772: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
128754          <idle>-0     (-----) [003] .n.1 82318.054780: cpu_idle: state=4294967295 cpu_id=3
128755          <idle>-0     (-----) [003] d..2 82318.054796: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
128756        DispSync-8879  ( 8858) [000] d..2 82318.054808: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128757          <idle>-0     (-----) [000] d..1 82318.054822: cpu_idle: state=0 cpu_id=0
128758  appEventThread-8881  ( 8858) [003] d..3 82318.054854: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128759          <idle>-0     (-----) [004] dnh2 82318.054888: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128760          <idle>-0     (-----) [004] .n.1 82318.054893: cpu_idle: state=4294967295 cpu_id=4
128761          <idle>-0     (-----) [004] d..2 82318.054902: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
128762  appEventThread-8881  ( 8858) [003] d..2 82318.054927: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128763          <idle>-0     (-----) [003] d..1 82318.054947: cpu_idle: state=0 cpu_id=3
128764          <idle>-0     (-----) [001] d.s2 82318.055143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128765 s.nexuslauncher-10023 (10023) [004] .... 82318.055155: binder_transaction: transaction=1572788 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
128766 s.nexuslauncher-10023 (10023) [004] .... 82318.055160: binder_transaction_alloc_buf: transaction=1572788 data_size=80 offsets_size=0
128767 s.nexuslauncher-10023 (10023) [004] d..4 82318.055165: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
128768          <idle>-0     (-----) [001] dns3 82318.055167: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128769          <idle>-0     (-----) [001] .n.1 82318.055186: cpu_idle: state=4294967295 cpu_id=1
128770          <idle>-0     (-----) [001] d..2 82318.055200: 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
128771          <idle>-0     (-----) [000] dnh2 82318.055239: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
128772          <idle>-0     (-----) [000] .n.1 82318.055248: cpu_idle: state=4294967295 cpu_id=0
128773     rcu_preempt-7     (    7) [001] d..2 82318.055259: 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
128774 s.nexuslauncher-10023 (10023) [004] d..3 82318.055259: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128775          <idle>-0     (-----) [000] d..2 82318.055264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
128776          <idle>-0     (-----) [001] d..1 82318.055274: cpu_idle: state=0 cpu_id=1
128777   Binder:8858_1-8871  ( 8858) [000] .... 82318.055275: binder_transaction_received: transaction=1572788
128778 s.nexuslauncher-10023 (10023) [004] d..4 82318.055276: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128779          <idle>-0     (-----) [005] .n.1 82318.055283: cpu_idle: state=4294967295 cpu_id=5
128780          <idle>-0     (-----) [005] d..2 82318.055294: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128781   Binder:8858_1-8871  ( 8858) [000] d..1 82318.055315: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
128782   Binder:8858_1-8871  ( 8858) [000] d..2 82318.055337: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
128783    RenderThread-16607 (10023) [005] d..2 82318.055342: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128784          <idle>-0     (-----) [003] .n.1 82318.055344: cpu_idle: state=4294967295 cpu_id=3
128785          <idle>-0     (-----) [005] d..1 82318.055353: cpu_idle: state=0 cpu_id=5
128786          <idle>-0     (-----) [003] d..2 82318.055359: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
128787   Binder:8858_1-8871  ( 8858) [000] d..2 82318.055391: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128788          <idle>-0     (-----) [000] d..1 82318.055407: cpu_idle: state=0 cpu_id=0
128789  appEventThread-8881  ( 8858) [003] d..2 82318.055410: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128790          <idle>-0     (-----) [003] d..1 82318.055423: cpu_idle: state=0 cpu_id=3
128791 s.nexuslauncher-10023 (10023) [004] d..3 82318.055519: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128792 s.nexuslauncher-10023 (10023) [004] d..4 82318.055537: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128793          <idle>-0     (-----) [005] .n.1 82318.055542: cpu_idle: state=4294967295 cpu_id=5
128794          <idle>-0     (-----) [005] d..2 82318.055550: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128795 s.nexuslauncher-10023 (10023) [004] d..2 82318.055563: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
128796          <idle>-0     (-----) [004] d..1 82318.055580: cpu_idle: state=0 cpu_id=4
128797    RenderThread-16607 (10023) [005] d..1 82318.055691: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128798    RenderThread-16607 (10023) [005] d..2 82318.055707: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128799          <idle>-0     (-----) [004] .n.1 82318.055714: cpu_idle: state=4294967295 cpu_id=4
128800          <idle>-0     (-----) [004] d..2 82318.055723: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
128801    RenderThread-16607 (10023) [005] .... 82318.055756: binder_transaction: transaction=1572789 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
128802    RenderThread-16607 (10023) [005] .... 82318.055760: binder_transaction_alloc_buf: transaction=1572789 data_size=104 offsets_size=0
128803    RenderThread-16607 (10023) [005] ...2 82318.055764: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
128804    RenderThread-16607 (10023) [005] d..4 82318.055767: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
128805    RenderThread-16607 (10023) [005] d..5 82318.055787: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128806 s.nexuslauncher-10023 (10023) [004] d..2 82318.055832: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
128807    RenderThread-16607 (10023) [005] d..2 82318.055834: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128808          <idle>-0     (-----) [004] d..1 82318.055842: cpu_idle: state=0 cpu_id=4
128809   Binder:8858_1-8871  ( 8858) [005] .... 82318.055846: binder_transaction_received: transaction=1572789
128810   Binder:8858_1-8871  ( 8858) [005] .... 82318.055905: binder_transaction: transaction=1572790 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
128811   Binder:8858_1-8871  ( 8858) [005] .... 82318.055909: binder_transaction_alloc_buf: transaction=1572790 data_size=52 offsets_size=8
128812   Binder:8858_1-8871  ( 8858) [005] d..2 82318.055916: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128813   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.055927: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128814   Binder:8858_1-8871  ( 8858) [005] d..2 82318.055933: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
128815    RenderThread-16607 (10023) [005] .... 82318.055942: binder_transaction_received: transaction=1572790
128816    RenderThread-16607 (10023) [005] d..2 82318.057149: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128817   Binder:8858_1-8871  ( 8858) [005] .... 82318.057162: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
128818   Binder:8858_1-8871  ( 8858) [005] d..2 82318.057228: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128819          <idle>-0     (-----) [005] d.h2 82318.057245: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128820          <idle>-0     (-----) [005] d.h3 82318.057252: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
128821          <idle>-0     (-----) [005] dnh3 82318.057256: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128822          <idle>-0     (-----) [005] d..2 82318.057269: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
128823    RenderThread-16607 (10023) [005] .... 82318.057423: binder_transaction: transaction=1572791 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
128824    RenderThread-16607 (10023) [005] .... 82318.057427: binder_transaction_alloc_buf: transaction=1572791 data_size=192 offsets_size=8
128825    RenderThread-16607 (10023) [005] ...2 82318.057434: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
128826    RenderThread-16607 (10023) [005] d..4 82318.057437: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128827    RenderThread-16607 (10023) [005] d..5 82318.057449: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
128828    RenderThread-16607 (10023) [005] d..2 82318.057460: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128829   Binder:8858_1-8871  ( 8858) [005] .... 82318.057470: binder_transaction_received: transaction=1572791
128830   Binder:8858_1-8871  ( 8858) [005] .... 82318.057587: binder_transaction: transaction=1572792 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
128831   Binder:8858_1-8871  ( 8858) [005] .... 82318.057591: binder_transaction_alloc_buf: transaction=1572792 data_size=68 offsets_size=0
128832   Binder:8858_1-8871  ( 8858) [005] d..2 82318.057593: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
128833   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.057604: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
128834   Binder:8858_1-8871  ( 8858) [005] d..2 82318.057611: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
128835    RenderThread-16607 (10023) [005] .... 82318.057620: binder_transaction_received: transaction=1572792
128836    RenderThread-16607 (10023) [005] d..2 82318.057684: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
128837   Binder:8858_1-8871  ( 8858) [005] .... 82318.057693: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
128838   Binder:8858_1-8871  ( 8858) [005] d..2 82318.057741: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
128839          <idle>-0     (-----) [005] d..1 82318.057758: cpu_idle: state=0 cpu_id=5
128840          <idle>-0     (-----) [000] d.h3 82318.058585: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
128841          <idle>-0     (-----) [000] d.h4 82318.058606: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
128842          <idle>-0     (-----) [003] .n.1 82318.058613: cpu_idle: state=4294967295 cpu_id=3
128843          <idle>-0     (-----) [000] d..2 82318.058620: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
128844          <idle>-0     (-----) [003] d..2 82318.058628: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
128845          <idle>-0     (-----) [000] dn.3 82318.058633: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
128846          <idle>-0     (-----) [000] .n.1 82318.058638: cpu_idle: state=4294967295 cpu_id=0
128847          <idle>-0     (-----) [000] d..2 82318.058654: 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
128848     ksoftirqd/0-3     (    3) [000] d.s2 82318.058667: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128849     ksoftirqd/0-3     (    3) [000] d.s3 82318.058712: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
128850     ksoftirqd/0-3     (    3) [000] d.H2 82318.058726: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
128851     ksoftirqd/0-3     (    3) [000] d.H3 82318.058750: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
128852 kgsl_worker_thr-258   (  258) [003] d..2 82318.058763: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=DispSync next_pid=8879 next_prio=97
128853     ksoftirqd/0-3     (    3) [000] d..2 82318.058785: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128854        DispSync-8879  ( 8858) [003] d..1 82318.058788: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128855  kworker/u16:13-1147  ( 1147) [000] d..2 82318.058791: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
128856        DispSync-8879  ( 8858) [003] d..2 82318.058813: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128857  kworker/u16:13-1147  ( 1147) [000] d..3 82318.058815: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
128858          <idle>-0     (-----) [002] .n.1 82318.058818: cpu_idle: state=4294967295 cpu_id=2
128859          <idle>-0     (-----) [002] d..2 82318.058831: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
128860        DispSync-8879  ( 8858) [003] d..2 82318.058844: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
128861   sfEventThread-8882  ( 8858) [002] d..3 82318.058893: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
128862   sfEventThread-8882  ( 8858) [002] d..4 82318.058927: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128863          <idle>-0     (-----) [001] .n.1 82318.058933: cpu_idle: state=4294967295 cpu_id=1
128864          <idle>-0     (-----) [001] d..2 82318.058946: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
128865   sfEventThread-8882  ( 8858) [002] d..2 82318.058976: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128866          <idle>-0     (-----) [002] d..1 82318.058994: cpu_idle: state=0 cpu_id=2
128867  kworker/u16:15-1311  ( 1311) [003] d..2 82318.059049: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128868  kworker/u16:13-1147  ( 1147) [000] d..2 82318.059068: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128869          <idle>-0     (-----) [003] d..1 82318.059070: cpu_idle: state=0 cpu_id=3
128870          <idle>-0     (-----) [000] d..1 82318.059088: cpu_idle: state=0 cpu_id=0
128871  surfaceflinger-8858  ( 8858) [001] d..1 82318.059342: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128872  surfaceflinger-8858  ( 8858) [001] d..2 82318.059369: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
128873          <idle>-0     (-----) [002] .n.1 82318.059374: cpu_idle: state=4294967295 cpu_id=2
128874          <idle>-0     (-----) [002] d..2 82318.059387: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
128875   sfEventThread-8882  ( 8858) [002] d..2 82318.059428: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128876          <idle>-0     (-----) [002] d..1 82318.059441: cpu_idle: state=0 cpu_id=2
128877  surfaceflinger-8858  ( 8858) [001] ...1 82318.059591: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
128878  surfaceflinger-8858  ( 8858) [001] ...1 82318.059600: tracing_mark_write: E|8858
128879  surfaceflinger-8858  ( 8858) [001] .... 82318.059666: binder_transaction: transaction=1572793 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
128880  surfaceflinger-8858  ( 8858) [001] .... 82318.059675: binder_transaction_alloc_buf: transaction=1572793 data_size=540 offsets_size=96
128881  surfaceflinger-8858  ( 8858) [001] ...2 82318.059704: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
128882  surfaceflinger-8858  ( 8858) [001] d..4 82318.059713: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
128883  surfaceflinger-8858  ( 8858) [001] d..5 82318.059739: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
128884          <idle>-0     (-----) [003] .n.1 82318.059745: cpu_idle: state=4294967295 cpu_id=3
128885          <idle>-0     (-----) [003] d..2 82318.059761: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
128886 [email protected]   (  619) [003] .... 82318.059775: binder_transaction_received: transaction=1572793
128887  surfaceflinger-8858  ( 8858) [001] d..2 82318.059784: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128888          <idle>-0     (-----) [001] d..1 82318.059802: cpu_idle: state=0 cpu_id=1
128889 [email protected]   (  619) [003] ...1 82318.059830: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
128890 [email protected]   (  619) [003] ...1 82318.059957: tracing_mark_write: B|619|HWCSession::PresentDisplay::
128891 [email protected]   (  619) [003] ...1 82318.060146: tracing_mark_write: B|619|HWDeviceDRM::Commit::
128892 [email protected]   (  619) [003] ...1 82318.060161: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
128893 [email protected]   (  619) [003] d..2 82318.060829: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128894 [email protected]   (  619) [003] d..3 82318.060860: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128895          <idle>-0     (-----) [002] .n.1 82318.060865: cpu_idle: state=4294967295 cpu_id=2
128896          <idle>-0     (-----) [002] d..2 82318.060877: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128897 [email protected]   (  619) [003] ...1 82318.060982: tracing_mark_write: E|619
128898 [email protected]   (  619) [003] ...1 82318.060990: tracing_mark_write: E|619
128899 [email protected]   (  619) [003] ...1 82318.061056: tracing_mark_write: E|619
128900 [email protected]   (  619) [003] ...1 82318.061107: tracing_mark_write: E|619
128901 [email protected]   (  619) [003] .... 82318.061126: binder_transaction: transaction=1572794 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
128902 [email protected]   (  619) [003] .... 82318.061132: binder_transaction_alloc_buf: transaction=1572794 data_size=576 offsets_size=112
128903 [email protected]   (  619) [003] d..2 82318.061158: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128904 [email protected]   (  619) [003] d..3 82318.061182: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
128905 [email protected]   (  619) [003] .... 82318.061189: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
128906          <idle>-0     (-----) [001] .n.1 82318.061190: cpu_idle: state=4294967295 cpu_id=1
128907          <idle>-0     (-----) [001] d..2 82318.061200: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
128908  surfaceflinger-8858  ( 8858) [001] .... 82318.061212: binder_transaction_received: transaction=1572794
128909 [email protected]   (  619) [003] d..2 82318.061297: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128910          <idle>-0     (-----) [003] d..1 82318.061322: cpu_idle: state=0 cpu_id=3
128911 crtc_commit:111-321   (  321) [002] d..2 82318.061642: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
128912          <idle>-0     (-----) [002] d..1 82318.061663: cpu_idle: state=0 cpu_id=2
128913  surfaceflinger-8858  ( 8858) [001] d..2 82318.061698: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128914          <idle>-0     (-----) [001] d..1 82318.061718: cpu_idle: state=0 cpu_id=1
128915          <idle>-0     (-----) [001] d.s2 82318.061815: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128916          <idle>-0     (-----) [001] dns3 82318.061840: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128917          <idle>-0     (-----) [001] dns3 82318.061848: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
128918          <idle>-0     (-----) [001] dns4 82318.061889: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
128919          <idle>-0     (-----) [001] .n.1 82318.061911: cpu_idle: state=4294967295 cpu_id=1
128920          <idle>-0     (-----) [001] d..2 82318.061924: 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
128921     rcu_preempt-7     (    7) [001] d..2 82318.061935: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128922     rcu_preempt-7     (    7) [001] d..3 82318.061955: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
128923     rcu_preempt-7     (    7) [001] d..2 82318.061968: 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
128924         rcuop/0-10    (   10) [001] d..2 82318.061979: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128925         rcuop/0-10    (   10) [001] d..3 82318.061992: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128926         rcuop/0-10    (   10) [001] d..2 82318.062003: 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
128927     rcu_preempt-7     (    7) [001] d..2 82318.062018: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128928  kworker/u16:13-1147  ( 1147) [001] d..2 82318.062109: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
128929          <idle>-0     (-----) [001] d..1 82318.062130: cpu_idle: state=0 cpu_id=1
128930          <idle>-0     (-----) [002] ...1 82318.063575: cpu_idle: state=4294967295 cpu_id=2
128931          <idle>-0     (-----) [002] d..1 82318.063581: cpu_idle: state=0 cpu_id=2
128932          <idle>-0     (-----) [000] d.h5 82318.066741: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128933          <idle>-0     (-----) [000] dnh6 82318.066757: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128934          <idle>-0     (-----) [000] dnh5 82318.066763: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128935          <idle>-0     (-----) [000] dnh6 82318.066778: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128936          <idle>-0     (-----) [002] .n.1 82318.066784: cpu_idle: state=4294967295 cpu_id=2
128937          <idle>-0     (-----) [000] .n.1 82318.066793: cpu_idle: state=4294967295 cpu_id=0
128938          <idle>-0     (-----) [002] d..2 82318.066799: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128939          <idle>-0     (-----) [000] d..2 82318.066810: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128940  crtc_event:111-322   (  322) [000] d..2 82318.066851: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128941          <idle>-0     (-----) [000] d..2 82318.066855: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
128942          <idle>-0     (-----) [000] dn.3 82318.066866: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
128943          <idle>-0     (-----) [000] d..2 82318.066876: 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
128944     ksoftirqd/0-3     (    3) [000] d..2 82318.066899: 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
128945          <idle>-0     (-----) [000] d..1 82318.066914: cpu_idle: state=0 cpu_id=0
128946 crtc_commit:111-321   (  321) [002] d..2 82318.066954: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
128947          <idle>-0     (-----) [002] d..1 82318.066965: cpu_idle: state=0 cpu_id=2
128948          <idle>-0     (-----) [002] d.s3 82318.068475: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128949          <idle>-0     (-----) [001] d.s2 82318.068476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128950          <idle>-0     (-----) [002] d.s4 82318.068497: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128951          <idle>-0     (-----) [001] dns3 82318.068498: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
128952          <idle>-0     (-----) [000] .n.1 82318.068503: cpu_idle: state=4294967295 cpu_id=0
128953          <idle>-0     (-----) [002] d.s3 82318.068507: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
128954          <idle>-0     (-----) [001] .n.1 82318.068509: cpu_idle: state=4294967295 cpu_id=1
128955          <idle>-0     (-----) [000] d..2 82318.068517: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128956          <idle>-0     (-----) [001] d..2 82318.068524: 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
128957          <idle>-0     (-----) [002] dns4 82318.068543: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
128958  crtc_event:111-322   (  322) [000] d..2 82318.068555: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128959     rcu_preempt-7     (    7) [001] d..2 82318.068562: 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
128960          <idle>-0     (-----) [000] d..1 82318.068567: cpu_idle: state=0 cpu_id=0
128961          <idle>-0     (-----) [002] .n.1 82318.068570: cpu_idle: state=4294967295 cpu_id=2
128962          <idle>-0     (-----) [001] d..1 82318.068577: cpu_idle: state=0 cpu_id=1
128963          <idle>-0     (-----) [002] d..2 82318.068582: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
128964  kworker/u16:13-1147  ( 1147) [002] d..2 82318.068707: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128965          <idle>-0     (-----) [002] d..1 82318.068726: cpu_idle: state=0 cpu_id=2
128966          <idle>-0     (-----) [000] d.h5 82318.069063: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128967          <idle>-0     (-----) [000] d.h6 82318.069082: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
128968          <idle>-0     (-----) [002] .n.1 82318.069089: cpu_idle: state=4294967295 cpu_id=2
128969          <idle>-0     (-----) [000] ...1 82318.069099: cpu_idle: state=4294967295 cpu_id=0
128970          <idle>-0     (-----) [002] d..2 82318.069102: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
128971          <idle>-0     (-----) [000] d..1 82318.069107: cpu_idle: state=0 cpu_id=0
128972 crtc_commit:111-321   (  321) [002] d..2 82318.069178: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
128973          <idle>-0     (-----) [002] d..1 82318.069193: cpu_idle: state=0 cpu_id=2
128974          <idle>-0     (-----) [000] d.h5 82318.069364: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128975          <idle>-0     (-----) [000] dnh6 82318.069376: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
128976          <idle>-0     (-----) [000] .n.1 82318.069391: cpu_idle: state=4294967295 cpu_id=0
128977          <idle>-0     (-----) [000] d..2 82318.069403: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
128978  crtc_event:111-322   (  322) [000] d..2 82318.069429: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128979          <idle>-0     (-----) [000] d..1 82318.069441: cpu_idle: state=0 cpu_id=0
128980          <idle>-0     (-----) [003] d.h2 82318.071180: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
128981          <idle>-0     (-----) [003] dnh3 82318.071198: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
128982          <idle>-0     (-----) [003] .n.1 82318.071209: cpu_idle: state=4294967295 cpu_id=3
128983          <idle>-0     (-----) [003] d..2 82318.071223: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
128984        DispSync-8879  ( 8858) [003] d..1 82318.071246: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
128985        DispSync-8879  ( 8858) [003] d..2 82318.071273: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
128986          <idle>-0     (-----) [000] .n.1 82318.071278: cpu_idle: state=4294967295 cpu_id=0
128987          <idle>-0     (-----) [000] d..2 82318.071290: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
128988        DispSync-8879  ( 8858) [003] d..2 82318.071315: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
128989          <idle>-0     (-----) [003] d..1 82318.071333: cpu_idle: state=0 cpu_id=3
128990  appEventThread-8881  ( 8858) [000] d..3 82318.071347: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128991          <idle>-0     (-----) [004] dnh2 82318.071377: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
128992          <idle>-0     (-----) [004] .n.1 82318.071381: cpu_idle: state=4294967295 cpu_id=4
128993          <idle>-0     (-----) [004] d..2 82318.071390: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
128994  appEventThread-8881  ( 8858) [000] d..2 82318.071412: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
128995          <idle>-0     (-----) [000] d..1 82318.071429: cpu_idle: state=0 cpu_id=0
128996 s.nexuslauncher-10023 (10023) [004] .... 82318.071606: binder_transaction: transaction=1572795 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
128997 s.nexuslauncher-10023 (10023) [004] .... 82318.071611: binder_transaction_alloc_buf: transaction=1572795 data_size=80 offsets_size=0
128998 s.nexuslauncher-10023 (10023) [004] d..4 82318.071616: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
128999          <idle>-0     (-----) [000] dnh2 82318.071685: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
129000          <idle>-0     (-----) [000] .n.1 82318.071692: cpu_idle: state=4294967295 cpu_id=0
129001 s.nexuslauncher-10023 (10023) [004] d..3 82318.071704: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129002          <idle>-0     (-----) [000] d..2 82318.071706: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
129003   Binder:8858_1-8871  ( 8858) [000] .... 82318.071716: binder_transaction_received: transaction=1572795
129004 s.nexuslauncher-10023 (10023) [004] d..4 82318.071720: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129005          <idle>-0     (-----) [005] .n.1 82318.071727: cpu_idle: state=4294967295 cpu_id=5
129006          <idle>-0     (-----) [005] d..2 82318.071738: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129007   Binder:8858_1-8871  ( 8858) [000] d..1 82318.071753: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
129008   Binder:8858_1-8871  ( 8858) [000] d..2 82318.071782: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
129009    RenderThread-16607 (10023) [005] d..2 82318.071787: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129010          <idle>-0     (-----) [001] .n.1 82318.071789: cpu_idle: state=4294967295 cpu_id=1
129011          <idle>-0     (-----) [001] d..2 82318.071806: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
129012 s.nexuslauncher-10023 (10023) [004] d.s2 82318.071812: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
129013   Binder:8858_1-8871  ( 8858) [000] d..1 82318.071869: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
129014  appEventThread-8881  ( 8858) [001] d..2 82318.071887: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129015          <idle>-0     (-----) [005] d..1 82318.071897: cpu_idle: state=0 cpu_id=5
129016          <idle>-0     (-----) [001] dnh3 82318.071904: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
129017   Binder:8858_1-8871  ( 8858) [000] d..2 82318.071912: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
129018          <idle>-0     (-----) [001] d..2 82318.071924: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
129019   Binder:8858_1-8871  ( 8858) [000] d..2 82318.071971: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129020  appEventThread-8881  ( 8858) [001] d..2 82318.071978: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129021          <idle>-0     (-----) [000] d..1 82318.071990: cpu_idle: state=0 cpu_id=0
129022  kworker/u16:13-1147  ( 1147) [001] d..2 82318.072084: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129023 s.nexuslauncher-10023 (10023) [004] d..3 82318.072086: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129024          <idle>-0     (-----) [001] d..1 82318.072098: cpu_idle: state=0 cpu_id=1
129025 s.nexuslauncher-10023 (10023) [004] d..4 82318.072104: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129026          <idle>-0     (-----) [005] .n.1 82318.072108: cpu_idle: state=4294967295 cpu_id=5
129027          <idle>-0     (-----) [005] d..2 82318.072118: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129028 s.nexuslauncher-10023 (10023) [004] d..2 82318.072129: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
129029          <idle>-0     (-----) [004] d..1 82318.072146: cpu_idle: state=0 cpu_id=4
129030    RenderThread-16607 (10023) [005] d..1 82318.072270: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129031    RenderThread-16607 (10023) [005] d..2 82318.072287: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129032          <idle>-0     (-----) [004] .n.1 82318.072293: cpu_idle: state=4294967295 cpu_id=4
129033          <idle>-0     (-----) [004] d..2 82318.072303: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
129034    RenderThread-16607 (10023) [005] .... 82318.072338: binder_transaction: transaction=1572796 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
129035    RenderThread-16607 (10023) [005] .... 82318.072343: binder_transaction_alloc_buf: transaction=1572796 data_size=104 offsets_size=0
129036    RenderThread-16607 (10023) [005] ...2 82318.072347: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
129037    RenderThread-16607 (10023) [005] d..4 82318.072350: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
129038    RenderThread-16607 (10023) [005] d..5 82318.072372: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129039    RenderThread-16607 (10023) [005] d.h5 82318.072410: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
129040 s.nexuslauncher-10023 (10023) [004] d..2 82318.072411: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
129041          <idle>-0     (-----) [004] d..1 82318.072421: cpu_idle: state=0 cpu_id=4
129042    RenderThread-16607 (10023) [005] d..2 82318.072436: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129043          <idle>-0     (-----) [003] dnh2 82318.072438: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
129044          <idle>-0     (-----) [003] .n.1 82318.072446: cpu_idle: state=4294967295 cpu_id=3
129045   Binder:8858_1-8871  ( 8858) [005] .... 82318.072447: binder_transaction_received: transaction=1572796
129046          <idle>-0     (-----) [003] d..2 82318.072459: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
129047         sugov:0-576   (  576) [003] .... 82318.072500: clk_set_rate: pwrcl_clk 652800000
129048   Binder:8858_1-8871  ( 8858) [005] .... 82318.072506: binder_transaction: transaction=1572797 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
129049   Binder:8858_1-8871  ( 8858) [005] .... 82318.072510: binder_transaction_alloc_buf: transaction=1572797 data_size=52 offsets_size=8
129050   Binder:8858_1-8871  ( 8858) [005] d..2 82318.072516: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129051         sugov:0-576   (  576) [003] .... 82318.072521: clk_set_rate: cpu3_pwrcl_clk 748800000
129052   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.072527: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129053         sugov:0-576   (  576) [003] .... 82318.072531: clk_set_rate: cpu2_pwrcl_clk 748800000
129054   Binder:8858_1-8871  ( 8858) [005] d..2 82318.072533: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
129055         sugov:0-576   (  576) [003] .... 82318.072539: clk_set_rate: cpu1_pwrcl_clk 748800000
129056    RenderThread-16607 (10023) [005] .... 82318.072542: binder_transaction_received: transaction=1572797
129057         sugov:0-576   (  576) [003] .... 82318.072548: clk_set_rate: cpu0_pwrcl_clk 652800000
129058         sugov:0-576   (  576) [003] .... 82318.072662: cpu_frequency: state=652800 cpu_id=0
129059         sugov:0-576   (  576) [003] .... 82318.072689: cpu_frequency: state=652800 cpu_id=1
129060         sugov:0-576   (  576) [003] .... 82318.072695: cpu_frequency: state=652800 cpu_id=2
129061         sugov:0-576   (  576) [003] .... 82318.072700: cpu_frequency: state=652800 cpu_id=3
129062         sugov:0-576   (  576) [003] d..2 82318.072738: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129063          <idle>-0     (-----) [003] d..1 82318.072754: cpu_idle: state=0 cpu_id=3
129064    RenderThread-16607 (10023) [005] d..2 82318.073768: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129065   Binder:8858_1-8871  ( 8858) [005] .... 82318.073781: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
129066   Binder:8858_1-8871  ( 8858) [005] d..2 82318.073848: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129067          <idle>-0     (-----) [005] d.h2 82318.073865: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129068          <idle>-0     (-----) [005] d.h3 82318.073872: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
129069          <idle>-0     (-----) [005] dnh3 82318.073876: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129070          <idle>-0     (-----) [005] d..2 82318.073889: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129071    RenderThread-16607 (10023) [005] .... 82318.074047: binder_transaction: transaction=1572798 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
129072    RenderThread-16607 (10023) [005] .... 82318.074051: binder_transaction_alloc_buf: transaction=1572798 data_size=192 offsets_size=8
129073    RenderThread-16607 (10023) [005] ...2 82318.074059: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
129074    RenderThread-16607 (10023) [005] d..4 82318.074061: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129075    RenderThread-16607 (10023) [005] d..5 82318.074073: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129076    RenderThread-16607 (10023) [005] d..2 82318.074085: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129077   Binder:8858_1-8871  ( 8858) [005] .... 82318.074095: binder_transaction_received: transaction=1572798
129078   Binder:8858_1-8871  ( 8858) [005] .... 82318.074214: binder_transaction: transaction=1572799 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
129079   Binder:8858_1-8871  ( 8858) [005] .... 82318.074217: binder_transaction_alloc_buf: transaction=1572799 data_size=68 offsets_size=0
129080   Binder:8858_1-8871  ( 8858) [005] d..2 82318.074220: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129081   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.074231: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129082   Binder:8858_1-8871  ( 8858) [005] d..2 82318.074238: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
129083    RenderThread-16607 (10023) [005] .... 82318.074247: binder_transaction_received: transaction=1572799
129084    RenderThread-16607 (10023) [005] d..2 82318.074309: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129085   Binder:8858_1-8871  ( 8858) [005] .... 82318.074317: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
129086   Binder:8858_1-8871  ( 8858) [005] d..2 82318.074366: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129087          <idle>-0     (-----) [005] d..1 82318.074383: cpu_idle: state=0 cpu_id=5
129088          <idle>-0     (-----) [001] d.s2 82318.075147: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
129089          <idle>-0     (-----) [001] dns3 82318.075174: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
129090          <idle>-0     (-----) [003] d.h2 82318.075179: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
129091          <idle>-0     (-----) [000] d.h3 82318.075197: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
129092          <idle>-0     (-----) [001] .n.1 82318.075198: cpu_idle: state=4294967295 cpu_id=1
129093          <idle>-0     (-----) [003] dnh3 82318.075198: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
129094          <idle>-0     (-----) [001] d..2 82318.075210: 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
129095          <idle>-0     (-----) [003] .n.1 82318.075216: cpu_idle: state=4294967295 cpu_id=3
129096     rcu_preempt-7     (    7) [001] d..2 82318.075222: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
129097          <idle>-0     (-----) [000] dnh4 82318.075228: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
129098          <idle>-0     (-----) [003] d..2 82318.075232: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
129099          <idle>-0     (-----) [000] .n.1 82318.075244: cpu_idle: state=4294967295 cpu_id=0
129100        DispSync-8879  ( 8858) [003] d..1 82318.075251: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129101          <idle>-0     (-----) [000] d..2 82318.075261: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
129102        DispSync-8879  ( 8858) [003] d..2 82318.075270: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129103          <idle>-0     (-----) [002] .n.1 82318.075277: cpu_idle: state=4294967295 cpu_id=2
129104     rcu_preempt-7     (    7) [001] d..3 82318.075283: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
129105          <idle>-0     (-----) [002] d..2 82318.075294: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
129106     rcu_preempt-7     (    7) [001] d..2 82318.075317: 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
129107        DispSync-8879  ( 8858) [003] d..2 82318.075320: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129108 kgsl_worker_thr-258   (  258) [000] d..2 82318.075323: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
129109          <idle>-0     (-----) [001] d..1 82318.075337: cpu_idle: state=0 cpu_id=1
129110          <idle>-0     (-----) [003] d..1 82318.075338: cpu_idle: state=0 cpu_id=3
129111   sfEventThread-8882  ( 8858) [002] d..3 82318.075339: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129112   sfEventThread-8882  ( 8858) [002] d..4 82318.075364: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129113          <idle>-0     (-----) [001] .n.1 82318.075371: cpu_idle: state=4294967295 cpu_id=1
129114 kgsl_worker_thr-258   (  258) [000] d..3 82318.075386: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
129115          <idle>-0     (-----) [001] d..2 82318.075386: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
129116   sfEventThread-8882  ( 8858) [002] d..2 82318.075409: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129117 kgsl_worker_thr-258   (  258) [000] d..2 82318.075418: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
129118         rcuop/0-10    (   10) [000] d..2 82318.075425: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
129119         rcuop/0-10    (   10) [000] d..3 82318.075470: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
129120         rcuop/0-10    (   10) [000] d..2 82318.075484: 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
129121         rcuop/1-21    (   21) [000] d..2 82318.075518: 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
129122          <idle>-0     (-----) [000] d..1 82318.075538: cpu_idle: state=0 cpu_id=0
129123  kworker/u16:13-1147  ( 1147) [002] d..2 82318.075601: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129124          <idle>-0     (-----) [002] d..1 82318.075624: cpu_idle: state=0 cpu_id=2
129125  surfaceflinger-8858  ( 8858) [001] d..2 82318.075767: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
129126  surfaceflinger-8858  ( 8858) [001] d..3 82318.075796: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
129127          <idle>-0     (-----) [000] .n.1 82318.075801: cpu_idle: state=4294967295 cpu_id=0
129128          <idle>-0     (-----) [000] d..2 82318.075817: 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
129129         rcuop/0-10    (   10) [000] d..2 82318.075824: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
129130  surfaceflinger-8858  ( 8858) [001] d..1 82318.075833: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129131  surfaceflinger-8858  ( 8858) [001] d..2 82318.075856: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129132          <idle>-0     (-----) [002] .n.1 82318.075863: cpu_idle: state=4294967295 cpu_id=2
129133         rcuop/0-10    (   10) [000] d..3 82318.075871: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129134          <idle>-0     (-----) [002] d..2 82318.075877: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
129135         rcuop/0-10    (   10) [000] d..2 82318.075884: 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
129136     rcu_preempt-7     (    7) [000] d..2 82318.075912: 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
129137          <idle>-0     (-----) [000] d..1 82318.075927: cpu_idle: state=0 cpu_id=0
129138   sfEventThread-8882  ( 8858) [002] d..2 82318.075928: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129139          <idle>-0     (-----) [002] d..1 82318.075944: cpu_idle: state=0 cpu_id=2
129140  surfaceflinger-8858  ( 8858) [001] ...1 82318.076095: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
129141  surfaceflinger-8858  ( 8858) [001] ...1 82318.076106: tracing_mark_write: E|8858
129142  surfaceflinger-8858  ( 8858) [001] .... 82318.076177: binder_transaction: transaction=1572800 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
129143  surfaceflinger-8858  ( 8858) [001] .... 82318.076184: binder_transaction_alloc_buf: transaction=1572800 data_size=540 offsets_size=96
129144  surfaceflinger-8858  ( 8858) [001] ...2 82318.076214: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
129145  surfaceflinger-8858  ( 8858) [001] d..4 82318.076223: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
129146  surfaceflinger-8858  ( 8858) [001] d..5 82318.076253: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
129147          <idle>-0     (-----) [003] .n.1 82318.076257: cpu_idle: state=4294967295 cpu_id=3
129148          <idle>-0     (-----) [003] d..2 82318.076272: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
129149 [email protected]   (  619) [003] .... 82318.076285: binder_transaction_received: transaction=1572800
129150  surfaceflinger-8858  ( 8858) [001] d..2 82318.076300: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129151          <idle>-0     (-----) [001] d..1 82318.076327: cpu_idle: state=0 cpu_id=1
129152 [email protected]   (  619) [003] ...1 82318.076343: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
129153 [email protected]   (  619) [003] ...1 82318.076474: tracing_mark_write: B|619|HWCSession::PresentDisplay::
129154 [email protected]   (  619) [003] ...1 82318.076687: tracing_mark_write: B|619|HWDeviceDRM::Commit::
129155 [email protected]   (  619) [003] ...1 82318.076705: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
129156 [email protected]   (  619) [003] d..2 82318.077446: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129157 [email protected]   (  619) [003] d..3 82318.077481: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129158          <idle>-0     (-----) [002] .n.1 82318.077487: cpu_idle: state=4294967295 cpu_id=2
129159          <idle>-0     (-----) [002] d..2 82318.077500: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129160 [email protected]   (  619) [003] ...1 82318.077617: tracing_mark_write: E|619
129161 [email protected]   (  619) [003] ...1 82318.077626: tracing_mark_write: E|619
129162 [email protected]   (  619) [003] ...1 82318.077701: tracing_mark_write: E|619
129163 [email protected]   (  619) [003] ...1 82318.077755: tracing_mark_write: E|619
129164 [email protected]   (  619) [003] .... 82318.077776: binder_transaction: transaction=1572801 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
129165 [email protected]   (  619) [003] .... 82318.077782: binder_transaction_alloc_buf: transaction=1572801 data_size=576 offsets_size=112
129166 [email protected]   (  619) [003] d..2 82318.077811: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129167 [email protected]   (  619) [003] d..3 82318.077837: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129168 [email protected]   (  619) [003] .... 82318.077844: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
129169          <idle>-0     (-----) [001] .n.1 82318.077845: cpu_idle: state=4294967295 cpu_id=1
129170          <idle>-0     (-----) [001] d..2 82318.077860: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
129171  surfaceflinger-8858  ( 8858) [001] .... 82318.077872: binder_transaction_received: transaction=1572801
129172 [email protected]   (  619) [003] d..2 82318.077960: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129173          <idle>-0     (-----) [003] d..1 82318.077987: cpu_idle: state=0 cpu_id=3
129174 crtc_commit:111-321   (  321) [002] d..2 82318.078290: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
129175          <idle>-0     (-----) [002] d..1 82318.078310: cpu_idle: state=0 cpu_id=2
129176  surfaceflinger-8858  ( 8858) [001] d..2 82318.078401: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129177          <idle>-0     (-----) [001] d..1 82318.078429: cpu_idle: state=0 cpu_id=1
129178          <idle>-0     (-----) [000] d.s2 82318.081812: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129179          <idle>-0     (-----) [000] dns3 82318.081832: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129180          <idle>-0     (-----) [000] dns3 82318.081839: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
129181          <idle>-0     (-----) [000] dns4 82318.081879: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129182          <idle>-0     (-----) [000] .n.1 82318.081906: cpu_idle: state=4294967295 cpu_id=0
129183          <idle>-0     (-----) [000] d..2 82318.081923: 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
129184     rcu_preempt-7     (    7) [000] d..2 82318.081939: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
129185     rcu_preempt-7     (    7) [000] d..3 82318.081957: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
129186     rcu_preempt-7     (    7) [000] d..2 82318.081970: 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
129187         rcuop/0-10    (   10) [000] d..2 82318.081975: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
129188         rcuop/0-10    (   10) [000] d..3 82318.081992: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
129189         rcuop/0-10    (   10) [000] d..2 82318.081996: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129190         rcuop/0-10    (   10) [000] d..3 82318.082010: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129191         rcuop/0-10    (   10) [000] d..2 82318.082021: 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
129192         rcuop/1-21    (   21) [000] d..2 82318.082037: 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
129193     rcu_preempt-7     (    7) [000] d..2 82318.082052: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129194  kworker/u16:13-1147  ( 1147) [000] d..2 82318.082179: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129195          <idle>-0     (-----) [000] d..1 82318.082200: cpu_idle: state=0 cpu_id=0
129196          <idle>-0     (-----) [000] d.h5 82318.083209: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129197          <idle>-0     (-----) [000] dnh6 82318.083230: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129198          <idle>-0     (-----) [000] dnh5 82318.083236: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129199          <idle>-0     (-----) [000] dnh6 82318.083252: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129200          <idle>-0     (-----) [002] .n.1 82318.083260: cpu_idle: state=4294967295 cpu_id=2
129201          <idle>-0     (-----) [000] .n.1 82318.083269: cpu_idle: state=4294967295 cpu_id=0
129202          <idle>-0     (-----) [002] d..2 82318.083277: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129203          <idle>-0     (-----) [000] d..2 82318.083285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129204  crtc_event:111-322   (  322) [000] d..2 82318.083321: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129205          <idle>-0     (-----) [000] d..1 82318.083336: cpu_idle: state=0 cpu_id=0
129206 crtc_commit:111-321   (  321) [002] d..2 82318.083437: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
129207          <idle>-0     (-----) [002] d..1 82318.083451: cpu_idle: state=0 cpu_id=2
129208          <idle>-0     (-----) [002] d.s3 82318.085150: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129209          <idle>-0     (-----) [002] d.s4 82318.085175: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129210          <idle>-0     (-----) [000] .n.1 82318.085182: cpu_idle: state=4294967295 cpu_id=0
129211          <idle>-0     (-----) [000] d..2 82318.085198: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129212          <idle>-0     (-----) [002] ...1 82318.085207: cpu_idle: state=4294967295 cpu_id=2
129213          <idle>-0     (-----) [002] d..1 82318.085216: cpu_idle: state=0 cpu_id=2
129214  crtc_event:111-322   (  322) [000] d..2 82318.085238: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129215          <idle>-0     (-----) [000] d..1 82318.085248: cpu_idle: state=0 cpu_id=0
129216          <idle>-0     (-----) [000] d.h5 82318.085532: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129217          <idle>-0     (-----) [000] d.h6 82318.085553: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129218          <idle>-0     (-----) [002] .n.1 82318.085560: cpu_idle: state=4294967295 cpu_id=2
129219          <idle>-0     (-----) [000] ...1 82318.085570: cpu_idle: state=4294967295 cpu_id=0
129220          <idle>-0     (-----) [002] d..2 82318.085575: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129221          <idle>-0     (-----) [000] d..1 82318.085576: cpu_idle: state=0 cpu_id=0
129222 crtc_commit:111-321   (  321) [002] d..2 82318.085661: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129223          <idle>-0     (-----) [002] d..1 82318.085679: cpu_idle: state=0 cpu_id=2
129224          <idle>-0     (-----) [000] d.h5 82318.085837: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129225          <idle>-0     (-----) [000] dnh6 82318.085850: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129226          <idle>-0     (-----) [000] .n.1 82318.085866: cpu_idle: state=4294967295 cpu_id=0
129227          <idle>-0     (-----) [000] d..2 82318.085875: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129228  crtc_event:111-322   (  322) [000] d..2 82318.085904: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129229          <idle>-0     (-----) [000] d..1 82318.085914: cpu_idle: state=0 cpu_id=0
129230          <idle>-0     (-----) [003] d.h2 82318.087640: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
129231          <idle>-0     (-----) [003] dnh3 82318.087658: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
129232          <idle>-0     (-----) [003] .n.1 82318.087670: cpu_idle: state=4294967295 cpu_id=3
129233          <idle>-0     (-----) [003] d..2 82318.087685: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
129234        DispSync-8879  ( 8858) [003] d..1 82318.087709: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
129235        DispSync-8879  ( 8858) [003] d..2 82318.087729: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
129236          <idle>-0     (-----) [001] .n.1 82318.087738: cpu_idle: state=4294967295 cpu_id=1
129237          <idle>-0     (-----) [001] d..2 82318.087754: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
129238        DispSync-8879  ( 8858) [003] d..2 82318.087774: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129239          <idle>-0     (-----) [003] d..1 82318.087792: cpu_idle: state=0 cpu_id=3
129240  appEventThread-8881  ( 8858) [001] d..3 82318.087812: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129241          <idle>-0     (-----) [004] dnh2 82318.087844: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129242          <idle>-0     (-----) [004] .n.1 82318.087848: cpu_idle: state=4294967295 cpu_id=4
129243          <idle>-0     (-----) [004] d..2 82318.087857: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
129244  appEventThread-8881  ( 8858) [001] d..2 82318.087885: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129245          <idle>-0     (-----) [001] d..1 82318.087906: cpu_idle: state=0 cpu_id=1
129246 s.nexuslauncher-10023 (10023) [004] .... 82318.088069: binder_transaction: transaction=1572802 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
129247 s.nexuslauncher-10023 (10023) [004] .... 82318.088075: binder_transaction_alloc_buf: transaction=1572802 data_size=80 offsets_size=0
129248 s.nexuslauncher-10023 (10023) [004] d..4 82318.088080: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
129249 s.nexuslauncher-10023 (10023) [004] d.h5 82318.088143: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
129250          <idle>-0     (-----) [000] dnh2 82318.088150: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
129251          <idle>-0     (-----) [000] .n.1 82318.088158: cpu_idle: state=4294967295 cpu_id=0
129252          <idle>-0     (-----) [000] d..2 82318.088169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
129253          <idle>-0     (-----) [003] dnh2 82318.088170: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
129254          <idle>-0     (-----) [003] .n.1 82318.088179: cpu_idle: state=4294967295 cpu_id=3
129255   Binder:8858_1-8871  ( 8858) [000] .... 82318.088180: binder_transaction_received: transaction=1572802
129256 s.nexuslauncher-10023 (10023) [004] d..3 82318.088184: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129257          <idle>-0     (-----) [003] d..2 82318.088191: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
129258 s.nexuslauncher-10023 (10023) [004] d..4 82318.088200: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129259          <idle>-0     (-----) [005] .n.1 82318.088207: cpu_idle: state=4294967295 cpu_id=5
129260          <idle>-0     (-----) [005] d..2 82318.088219: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129261   Binder:8858_1-8871  ( 8858) [000] d..1 82318.088223: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
129262         sugov:0-576   (  576) [003] .... 82318.088227: clk_set_rate: pwrcl_clk 748800000
129263         sugov:0-576   (  576) [003] .... 82318.088243: clk_set_rate: cpu3_pwrcl_clk 652800000
129264   Binder:8858_1-8871  ( 8858) [000] d..2 82318.088244: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
129265          <idle>-0     (-----) [001] .n.1 82318.088251: cpu_idle: state=4294967295 cpu_id=1
129266         sugov:0-576   (  576) [003] .... 82318.088253: clk_set_rate: cpu2_pwrcl_clk 652800000
129267         sugov:0-576   (  576) [003] .... 82318.088262: clk_set_rate: cpu1_pwrcl_clk 652800000
129268          <idle>-0     (-----) [001] d..2 82318.088266: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
129269    RenderThread-16607 (10023) [005] d..2 82318.088267: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129270         sugov:0-576   (  576) [003] .... 82318.088271: clk_set_rate: cpu0_pwrcl_clk 748800000
129271          <idle>-0     (-----) [005] d..1 82318.088279: cpu_idle: state=0 cpu_id=5
129272         sugov:0-576   (  576) [003] .... 82318.088280: cpu_frequency: state=748800 cpu_id=0
129273         sugov:0-576   (  576) [003] .... 82318.088305: cpu_frequency: state=748800 cpu_id=1
129274   Binder:8858_1-8871  ( 8858) [000] d..2 82318.088306: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129275         sugov:0-576   (  576) [003] .... 82318.088310: cpu_frequency: state=748800 cpu_id=2
129276         sugov:0-576   (  576) [003] .... 82318.088314: cpu_frequency: state=748800 cpu_id=3
129277          <idle>-0     (-----) [000] d..1 82318.088320: cpu_idle: state=0 cpu_id=0
129278  appEventThread-8881  ( 8858) [001] d..2 82318.088322: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129279          <idle>-0     (-----) [001] d..1 82318.088336: cpu_idle: state=0 cpu_id=1
129280         sugov:0-576   (  576) [003] d..2 82318.088348: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129281          <idle>-0     (-----) [003] d..1 82318.088363: cpu_idle: state=0 cpu_id=3
129282          <idle>-0     (-----) [000] d.s2 82318.088478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129283 s.nexuslauncher-10023 (10023) [004] d..3 82318.088491: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129284          <idle>-0     (-----) [000] dns3 82318.088500: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129285 s.nexuslauncher-10023 (10023) [004] d..4 82318.088508: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129286          <idle>-0     (-----) [000] .n.1 82318.088512: cpu_idle: state=4294967295 cpu_id=0
129287          <idle>-0     (-----) [005] .n.1 82318.088513: cpu_idle: state=4294967295 cpu_id=5
129288          <idle>-0     (-----) [000] d..2 82318.088524: 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
129289          <idle>-0     (-----) [005] d..2 82318.088524: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129290 s.nexuslauncher-10023 (10023) [004] d..2 82318.088536: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
129291          <idle>-0     (-----) [004] d..1 82318.088551: cpu_idle: state=0 cpu_id=4
129292     rcu_preempt-7     (    7) [000] d..2 82318.088560: 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
129293          <idle>-0     (-----) [000] d..1 82318.088576: cpu_idle: state=0 cpu_id=0
129294    RenderThread-16607 (10023) [005] d..1 82318.088665: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129295    RenderThread-16607 (10023) [005] d..2 82318.088681: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129296          <idle>-0     (-----) [004] .n.1 82318.088686: cpu_idle: state=4294967295 cpu_id=4
129297          <idle>-0     (-----) [004] d..2 82318.088696: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
129298    RenderThread-16607 (10023) [005] .... 82318.088729: binder_transaction: transaction=1572803 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
129299    RenderThread-16607 (10023) [005] .... 82318.088733: binder_transaction_alloc_buf: transaction=1572803 data_size=104 offsets_size=0
129300    RenderThread-16607 (10023) [005] ...2 82318.088737: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
129301    RenderThread-16607 (10023) [005] d..4 82318.088741: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
129302    RenderThread-16607 (10023) [005] d..5 82318.088762: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129303    RenderThread-16607 (10023) [005] d..2 82318.088809: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129304 s.nexuslauncher-10023 (10023) [004] d..2 82318.088812: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
129305   Binder:8858_1-8871  ( 8858) [005] .... 82318.088821: binder_transaction_received: transaction=1572803
129306          <idle>-0     (-----) [004] d..1 82318.088823: cpu_idle: state=0 cpu_id=4
129307   Binder:8858_1-8871  ( 8858) [005] .... 82318.088877: binder_transaction: transaction=1572804 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
129308   Binder:8858_1-8871  ( 8858) [005] .... 82318.088881: binder_transaction_alloc_buf: transaction=1572804 data_size=52 offsets_size=8
129309   Binder:8858_1-8871  ( 8858) [005] d..2 82318.088888: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129310   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.088899: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129311   Binder:8858_1-8871  ( 8858) [005] d..2 82318.088906: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
129312    RenderThread-16607 (10023) [005] .... 82318.088915: binder_transaction_received: transaction=1572804
129313    RenderThread-16607 (10023) [005] d..2 82318.090128: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129314   Binder:8858_1-8871  ( 8858) [005] .... 82318.090142: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
129315   Binder:8858_1-8871  ( 8858) [005] d..2 82318.090207: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129316          <idle>-0     (-----) [005] d.h2 82318.090224: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129317          <idle>-0     (-----) [005] d.h3 82318.090232: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
129318          <idle>-0     (-----) [005] dnh3 82318.090235: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129319          <idle>-0     (-----) [005] d..2 82318.090249: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129320    RenderThread-16607 (10023) [005] .... 82318.090403: binder_transaction: transaction=1572805 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
129321    RenderThread-16607 (10023) [005] .... 82318.090407: binder_transaction_alloc_buf: transaction=1572805 data_size=192 offsets_size=8
129322    RenderThread-16607 (10023) [005] ...2 82318.090414: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
129323    RenderThread-16607 (10023) [005] d..4 82318.090417: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129324    RenderThread-16607 (10023) [005] d..5 82318.090429: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129325    RenderThread-16607 (10023) [005] d..2 82318.090441: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129326   Binder:8858_1-8871  ( 8858) [005] .... 82318.090451: binder_transaction_received: transaction=1572805
129327   Binder:8858_1-8871  ( 8858) [005] .... 82318.090568: binder_transaction: transaction=1572806 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
129328   Binder:8858_1-8871  ( 8858) [005] .... 82318.090572: binder_transaction_alloc_buf: transaction=1572806 data_size=68 offsets_size=0
129329   Binder:8858_1-8871  ( 8858) [005] d..2 82318.090574: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129330   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.090585: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129331   Binder:8858_1-8871  ( 8858) [005] d..2 82318.090591: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
129332    RenderThread-16607 (10023) [005] .... 82318.090601: binder_transaction_received: transaction=1572806
129333    RenderThread-16607 (10023) [005] d..2 82318.090666: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129334   Binder:8858_1-8871  ( 8858) [005] .... 82318.090673: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
129335   Binder:8858_1-8871  ( 8858) [005] d..2 82318.090722: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129336          <idle>-0     (-----) [005] d..1 82318.090739: cpu_idle: state=0 cpu_id=5
129337          <idle>-0     (-----) [000] d.h3 82318.091554: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
129338          <idle>-0     (-----) [000] dnh4 82318.091570: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
129339          <idle>-0     (-----) [000] .n.1 82318.091584: cpu_idle: state=4294967295 cpu_id=0
129340          <idle>-0     (-----) [000] d..2 82318.091597: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
129341          <idle>-0     (-----) [003] d.h2 82318.091636: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
129342          <idle>-0     (-----) [003] dnh3 82318.091651: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
129343 kgsl_worker_thr-258   (  258) [000] d..2 82318.091655: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129344          <idle>-0     (-----) [003] .n.1 82318.091661: cpu_idle: state=4294967295 cpu_id=3
129345          <idle>-0     (-----) [003] d..2 82318.091673: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
129346 kgsl_worker_thr-258   (  258) [000] d..3 82318.091679: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129347        DispSync-8879  ( 8858) [003] d..1 82318.091691: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129348 kgsl_worker_thr-258   (  258) [000] d..2 82318.091704: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129349        DispSync-8879  ( 8858) [003] d..2 82318.091708: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129350          <idle>-0     (-----) [002] .n.1 82318.091715: cpu_idle: state=4294967295 cpu_id=2
129351          <idle>-0     (-----) [002] d..2 82318.091729: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
129352        DispSync-8879  ( 8858) [003] d..2 82318.091747: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129353          <idle>-0     (-----) [003] d..1 82318.091765: cpu_idle: state=0 cpu_id=3
129354   sfEventThread-8882  ( 8858) [002] d.s4 82318.091908: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129355  kworker/u16:13-1147  ( 1147) [000] d..2 82318.091941: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129356          <idle>-0     (-----) [000] d..1 82318.091956: cpu_idle: state=0 cpu_id=0
129357   sfEventThread-8882  ( 8858) [002] d.s5 82318.091966: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129358          <idle>-0     (-----) [000] .n.1 82318.091973: cpu_idle: state=4294967295 cpu_id=0
129359   sfEventThread-8882  ( 8858) [002] d..3 82318.091982: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129360          <idle>-0     (-----) [000] d..2 82318.091985: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129361   sfEventThread-8882  ( 8858) [002] d..4 82318.092002: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129362          <idle>-0     (-----) [001] .n.1 82318.092008: cpu_idle: state=4294967295 cpu_id=1
129363          <idle>-0     (-----) [001] d..2 82318.092021: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
129364   sfEventThread-8882  ( 8858) [002] d..2 82318.092050: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129365          <idle>-0     (-----) [002] d..1 82318.092071: cpu_idle: state=0 cpu_id=2
129366          <idle>-0     (-----) [002] ...1 82318.092094: cpu_idle: state=4294967295 cpu_id=2
129367          <idle>-0     (-----) [002] d..1 82318.092100: cpu_idle: state=0 cpu_id=2
129368  kworker/u16:13-1147  ( 1147) [000] d..2 82318.092181: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129369          <idle>-0     (-----) [000] d..1 82318.092193: cpu_idle: state=0 cpu_id=0
129370  surfaceflinger-8858  ( 8858) [001] d..1 82318.092427: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129371  surfaceflinger-8858  ( 8858) [001] d..2 82318.092454: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129372          <idle>-0     (-----) [002] .n.1 82318.092458: cpu_idle: state=4294967295 cpu_id=2
129373          <idle>-0     (-----) [002] d..2 82318.092471: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
129374   sfEventThread-8882  ( 8858) [002] d..2 82318.092515: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129375          <idle>-0     (-----) [002] d..1 82318.092528: cpu_idle: state=0 cpu_id=2
129376  surfaceflinger-8858  ( 8858) [001] ...1 82318.092666: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
129377  surfaceflinger-8858  ( 8858) [001] ...1 82318.092676: tracing_mark_write: E|8858
129378  surfaceflinger-8858  ( 8858) [001] .... 82318.092743: binder_transaction: transaction=1572807 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
129379  surfaceflinger-8858  ( 8858) [001] .... 82318.092750: binder_transaction_alloc_buf: transaction=1572807 data_size=540 offsets_size=96
129380  surfaceflinger-8858  ( 8858) [001] ...2 82318.092778: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
129381  surfaceflinger-8858  ( 8858) [001] d..4 82318.092786: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
129382  surfaceflinger-8858  ( 8858) [001] d..5 82318.092812: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
129383          <idle>-0     (-----) [003] .n.1 82318.092818: cpu_idle: state=4294967295 cpu_id=3
129384          <idle>-0     (-----) [003] d..2 82318.092832: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
129385 [email protected]   (  619) [003] .... 82318.092844: binder_transaction_received: transaction=1572807
129386  surfaceflinger-8858  ( 8858) [001] d..2 82318.092854: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129387          <idle>-0     (-----) [001] d..1 82318.092878: cpu_idle: state=0 cpu_id=1
129388 [email protected]   (  619) [003] ...1 82318.092896: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
129389 [email protected]   (  619) [003] ...1 82318.093016: tracing_mark_write: B|619|HWCSession::PresentDisplay::
129390 [email protected]   (  619) [003] ...1 82318.093272: tracing_mark_write: B|619|HWDeviceDRM::Commit::
129391 [email protected]   (  619) [003] ...1 82318.093288: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
129392 [email protected]   (  619) [003] d..2 82318.093945: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129393 [email protected]   (  619) [003] d..3 82318.093978: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129394          <idle>-0     (-----) [002] .n.1 82318.093983: cpu_idle: state=4294967295 cpu_id=2
129395          <idle>-0     (-----) [002] d..2 82318.093995: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129396 [email protected]   (  619) [003] ...1 82318.094100: tracing_mark_write: E|619
129397 [email protected]   (  619) [003] ...1 82318.094108: tracing_mark_write: E|619
129398 [email protected]   (  619) [003] ...1 82318.094175: tracing_mark_write: E|619
129399 [email protected]   (  619) [003] ...1 82318.094227: tracing_mark_write: E|619
129400 [email protected]   (  619) [003] .... 82318.094246: binder_transaction: transaction=1572808 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
129401 [email protected]   (  619) [003] .... 82318.094252: binder_transaction_alloc_buf: transaction=1572808 data_size=576 offsets_size=112
129402 [email protected]   (  619) [003] d..2 82318.094279: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129403 [email protected]   (  619) [003] d..3 82318.094302: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129404          <idle>-0     (-----) [001] .n.1 82318.094309: cpu_idle: state=4294967295 cpu_id=1
129405 [email protected]   (  619) [003] .... 82318.094309: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
129406          <idle>-0     (-----) [001] d..2 82318.094322: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
129407  surfaceflinger-8858  ( 8858) [001] .... 82318.094333: binder_transaction_received: transaction=1572808
129408 [email protected]   (  619) [003] d..2 82318.094418: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129409          <idle>-0     (-----) [003] d..1 82318.094451: cpu_idle: state=0 cpu_id=3
129410 crtc_commit:111-321   (  321) [002] d..2 82318.094761: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
129411          <idle>-0     (-----) [002] d..1 82318.094780: cpu_idle: state=0 cpu_id=2
129412  surfaceflinger-8858  ( 8858) [001] d..2 82318.094819: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129413          <idle>-0     (-----) [001] d..1 82318.094845: cpu_idle: state=0 cpu_id=1
129414          <idle>-0     (-----) [000] d.s2 82318.095144: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129415          <idle>-0     (-----) [000] dns3 82318.095169: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129416          <idle>-0     (-----) [000] dns3 82318.095176: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129417          <idle>-0     (-----) [000] dns4 82318.095190: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129418          <idle>-0     (-----) [000] .n.1 82318.095199: cpu_idle: state=4294967295 cpu_id=0
129419          <idle>-0     (-----) [000] d..2 82318.095210: 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
129420     rcu_preempt-7     (    7) [000] d..2 82318.095223: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
129421     rcu_preempt-7     (    7) [000] d..3 82318.095242: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
129422     rcu_preempt-7     (    7) [000] d..2 82318.095255: 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
129423         rcuop/0-10    (   10) [000] d..2 82318.095261: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
129424         rcuop/0-10    (   10) [000] d..3 82318.095278: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
129425         rcuop/0-10    (   10) [000] d..2 82318.095283: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129426         rcuop/0-10    (   10) [000] d..3 82318.095295: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129427         rcuop/0-10    (   10) [000] d..2 82318.095306: 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
129428         rcuop/1-21    (   21) [000] d..2 82318.095323: 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
129429     rcu_preempt-7     (    7) [000] d..2 82318.095337: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129430  kworker/u16:13-1147  ( 1147) [000] d..2 82318.095428: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129431          <idle>-0     (-----) [000] d..1 82318.095446: cpu_idle: state=0 cpu_id=0
129432          <idle>-0     (-----) [000] d.h5 82318.099671: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129433          <idle>-0     (-----) [000] dnh6 82318.099690: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129434          <idle>-0     (-----) [000] dnh5 82318.099695: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129435          <idle>-0     (-----) [000] dnh6 82318.099710: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129436          <idle>-0     (-----) [002] .n.1 82318.099717: cpu_idle: state=4294967295 cpu_id=2
129437          <idle>-0     (-----) [000] .n.1 82318.099725: cpu_idle: state=4294967295 cpu_id=0
129438          <idle>-0     (-----) [002] d..2 82318.099732: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129439          <idle>-0     (-----) [000] d..2 82318.099742: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129440  crtc_event:111-322   (  322) [000] d..2 82318.099779: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129441          <idle>-0     (-----) [000] d..2 82318.099784: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
129442          <idle>-0     (-----) [000] dn.3 82318.099797: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
129443          <idle>-0     (-----) [000] d..2 82318.099807: 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
129444     ksoftirqd/0-3     (    3) [000] d..2 82318.099832: 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
129445          <idle>-0     (-----) [000] d..1 82318.099842: cpu_idle: state=0 cpu_id=0
129446 crtc_commit:111-321   (  321) [002] d..2 82318.099884: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
129447          <idle>-0     (-----) [002] d..1 82318.099896: cpu_idle: state=0 cpu_id=2
129448          <idle>-0     (-----) [000] d.s2 82318.101805: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129449          <idle>-0     (-----) [002] d.s3 82318.101812: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129450          <idle>-0     (-----) [000] dns3 82318.101824: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129451          <idle>-0     (-----) [002] d.s4 82318.101833: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129452          <idle>-0     (-----) [000] dns3 82318.101839: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129453          <idle>-0     (-----) [000] dns4 82318.101854: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129454          <idle>-0     (-----) [002] ...1 82318.101861: cpu_idle: state=4294967295 cpu_id=2
129455          <idle>-0     (-----) [002] d..1 82318.101869: cpu_idle: state=0 cpu_id=2
129456          <idle>-0     (-----) [000] .n.1 82318.101877: cpu_idle: state=4294967295 cpu_id=0
129457          <idle>-0     (-----) [000] d..2 82318.101887: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129458  crtc_event:111-322   (  322) [000] d..2 82318.101908: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
129459     rcu_preempt-7     (    7) [000] d..2 82318.101920: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
129460     rcu_preempt-7     (    7) [000] d..3 82318.101937: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
129461     rcu_preempt-7     (    7) [000] d.h5 82318.102013: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129462     rcu_preempt-7     (    7) [000] d.h6 82318.102032: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129463          <idle>-0     (-----) [002] .n.1 82318.102038: cpu_idle: state=4294967295 cpu_id=2
129464          <idle>-0     (-----) [002] d..2 82318.102052: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129465     rcu_preempt-7     (    7) [000] d..2 82318.102055: 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
129466         rcuop/0-10    (   10) [000] d..2 82318.102060: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
129467         rcuop/0-10    (   10) [000] d..3 82318.102105: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
129468          <idle>-0     (-----) [001] .n.1 82318.102112: cpu_idle: state=4294967295 cpu_id=1
129469         rcuop/0-10    (   10) [000] d..2 82318.102117: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129470          <idle>-0     (-----) [001] d..2 82318.102133: 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
129471 crtc_commit:111-321   (  321) [002] d..2 82318.102135: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129472          <idle>-0     (-----) [002] d..1 82318.102151: cpu_idle: state=0 cpu_id=2
129473         rcuop/1-21    (   21) [001] d..2 82318.102185: 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
129474          <idle>-0     (-----) [001] d..1 82318.102209: cpu_idle: state=0 cpu_id=1
129475  kworker/u16:13-1147  ( 1147) [000] d.h4 82318.102307: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
129476  kworker/u16:13-1147  ( 1147) [000] d.h5 82318.102338: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129477          <idle>-0     (-----) [002] .n.1 82318.102344: cpu_idle: state=4294967295 cpu_id=2
129478          <idle>-0     (-----) [002] d..2 82318.102356: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129479  crtc_event:111-322   (  322) [002] d..2 82318.102402: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129480          <idle>-0     (-----) [002] d..1 82318.102426: cpu_idle: state=0 cpu_id=2
129481  kworker/u16:13-1147  ( 1147) [000] d..2 82318.102465: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129482          <idle>-0     (-----) [000] d..1 82318.102485: cpu_idle: state=0 cpu_id=0
129483          <idle>-0     (-----) [003] d.h2 82318.104098: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
129484          <idle>-0     (-----) [003] dnh3 82318.104118: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
129485          <idle>-0     (-----) [003] .n.1 82318.104128: cpu_idle: state=4294967295 cpu_id=3
129486          <idle>-0     (-----) [003] d..2 82318.104142: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
129487        DispSync-8879  ( 8858) [003] d..1 82318.104165: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
129488        DispSync-8879  ( 8858) [003] d..2 82318.104184: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
129489          <idle>-0     (-----) [001] .n.1 82318.104190: cpu_idle: state=4294967295 cpu_id=1
129490          <idle>-0     (-----) [001] d..2 82318.104202: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
129491        DispSync-8879  ( 8858) [003] d..2 82318.104225: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129492          <idle>-0     (-----) [003] d..1 82318.104242: cpu_idle: state=0 cpu_id=3
129493  appEventThread-8881  ( 8858) [001] d..3 82318.104253: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129494          <idle>-0     (-----) [004] dnh2 82318.104286: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129495          <idle>-0     (-----) [004] .n.1 82318.104291: cpu_idle: state=4294967295 cpu_id=4
129496          <idle>-0     (-----) [004] d..2 82318.104299: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
129497  appEventThread-8881  ( 8858) [001] d..2 82318.104322: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129498          <idle>-0     (-----) [001] d..1 82318.104341: cpu_idle: state=0 cpu_id=1
129499 s.nexuslauncher-10023 (10023) [004] .... 82318.104508: binder_transaction: transaction=1572809 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
129500 s.nexuslauncher-10023 (10023) [004] .... 82318.104514: binder_transaction_alloc_buf: transaction=1572809 data_size=80 offsets_size=0
129501 s.nexuslauncher-10023 (10023) [004] d..4 82318.104519: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
129502          <idle>-0     (-----) [000] dnh2 82318.104586: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
129503          <idle>-0     (-----) [000] .n.1 82318.104593: cpu_idle: state=4294967295 cpu_id=0
129504 s.nexuslauncher-10023 (10023) [004] d..3 82318.104606: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129505          <idle>-0     (-----) [000] d..2 82318.104608: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
129506   Binder:8858_1-8871  ( 8858) [000] .... 82318.104618: binder_transaction_received: transaction=1572809
129507 s.nexuslauncher-10023 (10023) [004] d..4 82318.104623: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129508          <idle>-0     (-----) [005] .n.1 82318.104630: cpu_idle: state=4294967295 cpu_id=5
129509          <idle>-0     (-----) [005] d..2 82318.104642: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129510   Binder:8858_1-8871  ( 8858) [000] d..1 82318.104661: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
129511   Binder:8858_1-8871  ( 8858) [000] d..2 82318.104683: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
129512    RenderThread-16607 (10023) [005] d..2 82318.104685: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129513          <idle>-0     (-----) [001] .n.1 82318.104690: cpu_idle: state=4294967295 cpu_id=1
129514          <idle>-0     (-----) [005] d..1 82318.104697: cpu_idle: state=0 cpu_id=5
129515          <idle>-0     (-----) [001] d..2 82318.104702: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
129516   Binder:8858_1-8871  ( 8858) [000] d..2 82318.104736: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129517  appEventThread-8881  ( 8858) [001] d..2 82318.104750: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129518          <idle>-0     (-----) [000] d..1 82318.104756: cpu_idle: state=0 cpu_id=0
129519          <idle>-0     (-----) [001] d..1 82318.104764: cpu_idle: state=0 cpu_id=1
129520 s.nexuslauncher-10023 (10023) [004] d..3 82318.104852: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129521 s.nexuslauncher-10023 (10023) [004] d..4 82318.104869: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129522          <idle>-0     (-----) [005] .n.1 82318.104875: cpu_idle: state=4294967295 cpu_id=5
129523          <idle>-0     (-----) [005] d..2 82318.104883: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129524 s.nexuslauncher-10023 (10023) [004] d..2 82318.104894: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
129525          <idle>-0     (-----) [004] d..1 82318.104911: cpu_idle: state=0 cpu_id=4
129526    RenderThread-16607 (10023) [005] d..1 82318.105024: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129527    RenderThread-16607 (10023) [005] d..2 82318.105040: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129528          <idle>-0     (-----) [004] .n.1 82318.105047: cpu_idle: state=4294967295 cpu_id=4
129529          <idle>-0     (-----) [004] d..2 82318.105057: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
129530    RenderThread-16607 (10023) [005] .... 82318.105090: binder_transaction: transaction=1572810 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
129531    RenderThread-16607 (10023) [005] .... 82318.105095: binder_transaction_alloc_buf: transaction=1572810 data_size=104 offsets_size=0
129532    RenderThread-16607 (10023) [005] ...2 82318.105098: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
129533    RenderThread-16607 (10023) [005] d..4 82318.105102: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
129534    RenderThread-16607 (10023) [005] d..5 82318.105124: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129535    RenderThread-16607 (10023) [005] d..2 82318.105204: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129536 s.nexuslauncher-10023 (10023) [004] d..2 82318.105208: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
129537   Binder:8858_1-8871  ( 8858) [005] .... 82318.105216: binder_transaction_received: transaction=1572810
129538          <idle>-0     (-----) [004] d..1 82318.105220: cpu_idle: state=0 cpu_id=4
129539   Binder:8858_1-8871  ( 8858) [005] .... 82318.105277: binder_transaction: transaction=1572811 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
129540   Binder:8858_1-8871  ( 8858) [005] .... 82318.105281: binder_transaction_alloc_buf: transaction=1572811 data_size=52 offsets_size=8
129541   Binder:8858_1-8871  ( 8858) [005] d..2 82318.105289: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129542   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.105300: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129543   Binder:8858_1-8871  ( 8858) [005] d..2 82318.105307: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
129544    RenderThread-16607 (10023) [005] .... 82318.105316: binder_transaction_received: transaction=1572811
129545    RenderThread-16607 (10023) [005] d..2 82318.106529: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129546   Binder:8858_1-8871  ( 8858) [005] .... 82318.106542: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
129547   Binder:8858_1-8871  ( 8858) [005] d..2 82318.106609: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129548          <idle>-0     (-----) [005] d.h2 82318.106626: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129549          <idle>-0     (-----) [005] d.h3 82318.106634: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
129550          <idle>-0     (-----) [005] dnh3 82318.106638: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129551          <idle>-0     (-----) [005] d..2 82318.106651: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129552    RenderThread-16607 (10023) [005] .... 82318.106805: binder_transaction: transaction=1572812 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
129553    RenderThread-16607 (10023) [005] .... 82318.106809: binder_transaction_alloc_buf: transaction=1572812 data_size=192 offsets_size=8
129554    RenderThread-16607 (10023) [005] ...2 82318.106816: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
129555    RenderThread-16607 (10023) [005] d..4 82318.106819: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129556    RenderThread-16607 (10023) [005] d..5 82318.106831: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129557    RenderThread-16607 (10023) [005] d..2 82318.106842: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129558   Binder:8858_1-8871  ( 8858) [005] .... 82318.106852: binder_transaction_received: transaction=1572812
129559   Binder:8858_1-8871  ( 8858) [005] .... 82318.106973: binder_transaction: transaction=1572813 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
129560   Binder:8858_1-8871  ( 8858) [005] .... 82318.106976: binder_transaction_alloc_buf: transaction=1572813 data_size=68 offsets_size=0
129561   Binder:8858_1-8871  ( 8858) [005] d..2 82318.106979: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129562   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.106990: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129563   Binder:8858_1-8871  ( 8858) [005] d..2 82318.106997: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
129564    RenderThread-16607 (10023) [005] .... 82318.107006: binder_transaction_received: transaction=1572813
129565    RenderThread-16607 (10023) [005] d..2 82318.107071: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129566   Binder:8858_1-8871  ( 8858) [005] .... 82318.107080: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
129567   Binder:8858_1-8871  ( 8858) [005] d..2 82318.107129: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129568          <idle>-0     (-----) [005] d..1 82318.107145: cpu_idle: state=0 cpu_id=5
129569          <idle>-0     (-----) [000] d.h3 82318.107955: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
129570          <idle>-0     (-----) [000] dnh4 82318.107975: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
129571          <idle>-0     (-----) [000] .n.1 82318.107990: cpu_idle: state=4294967295 cpu_id=0
129572          <idle>-0     (-----) [000] d..2 82318.108005: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
129573 kgsl_worker_thr-258   (  258) [000] d..2 82318.108065: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129574 kgsl_worker_thr-258   (  258) [000] d..3 82318.108088: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129575          <idle>-0     (-----) [003] d.h2 82318.108099: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
129576          <idle>-0     (-----) [003] dnh3 82318.108113: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
129577 kgsl_worker_thr-258   (  258) [000] d..2 82318.108115: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129578          <idle>-0     (-----) [003] .n.1 82318.108123: cpu_idle: state=4294967295 cpu_id=3
129579          <idle>-0     (-----) [003] d..2 82318.108135: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
129580        DispSync-8879  ( 8858) [003] d..1 82318.108149: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129581        DispSync-8879  ( 8858) [003] d..2 82318.108164: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129582          <idle>-0     (-----) [002] .n.1 82318.108170: cpu_idle: state=4294967295 cpu_id=2
129583          <idle>-0     (-----) [002] d..2 82318.108183: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
129584        DispSync-8879  ( 8858) [003] d..2 82318.108200: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129585          <idle>-0     (-----) [003] d..1 82318.108215: cpu_idle: state=0 cpu_id=3
129586   sfEventThread-8882  ( 8858) [002] d..3 82318.108225: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129587   sfEventThread-8882  ( 8858) [002] d..4 82318.108246: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129588          <idle>-0     (-----) [001] .n.1 82318.108252: cpu_idle: state=4294967295 cpu_id=1
129589          <idle>-0     (-----) [001] d..2 82318.108265: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
129590   sfEventThread-8882  ( 8858) [002] d..2 82318.108288: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129591  kworker/u16:13-1147  ( 1147) [000] d..2 82318.108291: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129592          <idle>-0     (-----) [002] d..1 82318.108305: cpu_idle: state=0 cpu_id=2
129593          <idle>-0     (-----) [000] d..1 82318.108312: cpu_idle: state=0 cpu_id=0
129594  surfaceflinger-8858  ( 8858) [001] d..2 82318.108694: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
129595  surfaceflinger-8858  ( 8858) [001] d..3 82318.108755: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
129596  surfaceflinger-8858  ( 8858) [001] d..1 82318.108789: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129597  surfaceflinger-8858  ( 8858) [001] d..2 82318.108810: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129598          <idle>-0     (-----) [002] .n.1 82318.108817: cpu_idle: state=4294967295 cpu_id=2
129599          <idle>-0     (-----) [002] d..2 82318.108832: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
129600   sfEventThread-8882  ( 8858) [002] d..2 82318.108901: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
129601         rcuop/0-10    (   10) [002] d..2 82318.108908: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
129602         rcuop/0-10    (   10) [002] d..3 82318.108952: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129603         rcuop/0-10    (   10) [002] d..2 82318.108965: 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
129604     rcu_preempt-7     (    7) [002] d..2 82318.108997: 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
129605          <idle>-0     (-----) [002] d..1 82318.109014: cpu_idle: state=0 cpu_id=2
129606  surfaceflinger-8858  ( 8858) [001] ...1 82318.109022: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
129607  surfaceflinger-8858  ( 8858) [001] ...1 82318.109032: tracing_mark_write: E|8858
129608  surfaceflinger-8858  ( 8858) [001] .... 82318.109099: binder_transaction: transaction=1572814 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
129609  surfaceflinger-8858  ( 8858) [001] .... 82318.109106: binder_transaction_alloc_buf: transaction=1572814 data_size=540 offsets_size=96
129610  surfaceflinger-8858  ( 8858) [001] ...2 82318.109134: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
129611  surfaceflinger-8858  ( 8858) [001] d..4 82318.109142: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
129612  surfaceflinger-8858  ( 8858) [001] d..5 82318.109166: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
129613          <idle>-0     (-----) [003] .n.1 82318.109172: cpu_idle: state=4294967295 cpu_id=3
129614          <idle>-0     (-----) [003] d..2 82318.109186: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
129615 [email protected]   (  619) [003] .... 82318.109199: binder_transaction_received: transaction=1572814
129616  surfaceflinger-8858  ( 8858) [001] d..2 82318.109213: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129617          <idle>-0     (-----) [001] d..1 82318.109237: cpu_idle: state=0 cpu_id=1
129618 [email protected]   (  619) [003] ...1 82318.109248: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
129619 [email protected]   (  619) [003] ...1 82318.109365: tracing_mark_write: B|619|HWCSession::PresentDisplay::
129620 [email protected]   (  619) [003] ...1 82318.109551: tracing_mark_write: B|619|HWDeviceDRM::Commit::
129621 [email protected]   (  619) [003] ...1 82318.109566: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
129622 [email protected]   (  619) [003] d..2 82318.110230: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129623 [email protected]   (  619) [003] d..3 82318.110260: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129624          <idle>-0     (-----) [002] .n.1 82318.110266: cpu_idle: state=4294967295 cpu_id=2
129625          <idle>-0     (-----) [002] d..2 82318.110280: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129626 [email protected]   (  619) [003] ...1 82318.110385: tracing_mark_write: E|619
129627 [email protected]   (  619) [003] ...1 82318.110393: tracing_mark_write: E|619
129628 [email protected]   (  619) [003] ...1 82318.110459: tracing_mark_write: E|619
129629 [email protected]   (  619) [003] ...1 82318.110509: tracing_mark_write: E|619
129630 [email protected]   (  619) [003] .... 82318.110528: binder_transaction: transaction=1572815 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
129631 [email protected]   (  619) [003] .... 82318.110533: binder_transaction_alloc_buf: transaction=1572815 data_size=576 offsets_size=112
129632 [email protected]   (  619) [003] d..2 82318.110559: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129633 [email protected]   (  619) [003] d..3 82318.110583: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129634 [email protected]   (  619) [003] .... 82318.110589: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
129635          <idle>-0     (-----) [001] .n.1 82318.110590: cpu_idle: state=4294967295 cpu_id=1
129636          <idle>-0     (-----) [001] d..2 82318.110604: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
129637  surfaceflinger-8858  ( 8858) [001] .... 82318.110616: binder_transaction_received: transaction=1572815
129638 [email protected]   (  619) [003] d..2 82318.110699: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129639          <idle>-0     (-----) [003] d..1 82318.110724: cpu_idle: state=0 cpu_id=3
129640 crtc_commit:111-321   (  321) [002] d..2 82318.111049: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
129641          <idle>-0     (-----) [002] d..1 82318.111067: cpu_idle: state=0 cpu_id=2
129642  surfaceflinger-8858  ( 8858) [001] d..2 82318.111101: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129643          <idle>-0     (-----) [001] d..1 82318.111126: cpu_idle: state=0 cpu_id=1
129644          <idle>-0     (-----) [002] d.s2 82318.115219: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129645          <idle>-0     (-----) [002] dns3 82318.115244: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129646          <idle>-0     (-----) [002] dns3 82318.115253: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129647          <idle>-0     (-----) [002] dns4 82318.115292: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
129648          <idle>-0     (-----) [002] .n.1 82318.115318: cpu_idle: state=4294967295 cpu_id=2
129649          <idle>-0     (-----) [002] d..2 82318.115335: 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
129650     rcu_preempt-7     (    7) [002] d..2 82318.115349: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
129651     rcu_preempt-7     (    7) [002] d..3 82318.115368: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
129652     rcu_preempt-7     (    7) [002] d..2 82318.115381: 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
129653         rcuop/0-10    (   10) [002] d..2 82318.115385: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
129654         rcuop/0-10    (   10) [002] d..3 82318.115422: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
129655         rcuop/0-10    (   10) [002] d..2 82318.115426: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129656         rcuop/0-10    (   10) [002] d..3 82318.115439: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129657         rcuop/0-10    (   10) [002] d..2 82318.115449: 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
129658     rcu_preempt-7     (    7) [002] d..2 82318.115463: 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
129659         rcuop/1-21    (   21) [002] d..2 82318.115478: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129660  kworker/u16:13-1147  ( 1147) [002] d..2 82318.115603: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129661          <idle>-0     (-----) [002] d..1 82318.115623: cpu_idle: state=0 cpu_id=2
129662          <idle>-0     (-----) [000] d.h5 82318.116149: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129663          <idle>-0     (-----) [000] d.h6 82318.116174: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129664          <idle>-0     (-----) [000] d.h5 82318.116180: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
129665          <idle>-0     (-----) [002] .n.1 82318.116181: cpu_idle: state=4294967295 cpu_id=2
129666          <idle>-0     (-----) [000] dnh6 82318.116200: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
129667          <idle>-0     (-----) [002] d..2 82318.116202: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129668          <idle>-0     (-----) [000] .n.1 82318.116215: cpu_idle: state=4294967295 cpu_id=0
129669          <idle>-0     (-----) [000] d..2 82318.116230: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129670  crtc_event:111-322   (  322) [002] d..2 82318.116239: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129671          <idle>-0     (-----) [002] d..1 82318.116251: cpu_idle: state=0 cpu_id=2
129672 crtc_commit:111-321   (  321) [000] d..2 82318.116388: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
129673          <idle>-0     (-----) [000] d..1 82318.116401: cpu_idle: state=0 cpu_id=0
129674          <idle>-0     (-----) [000] d.h5 82318.118472: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
129675          <idle>-0     (-----) [000] dnh6 82318.118485: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
129676          <idle>-0     (-----) [000] dns3 82318.118533: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129677          <idle>-0     (-----) [000] dns4 82318.118549: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129678          <idle>-0     (-----) [002] .n.1 82318.118556: cpu_idle: state=4294967295 cpu_id=2
129679          <idle>-0     (-----) [000] dns3 82318.118558: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
129680          <idle>-0     (-----) [002] d..2 82318.118572: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129681          <idle>-0     (-----) [000] dns4 82318.118583: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
129682  crtc_event:111-322   (  322) [002] d..2 82318.118598: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129683          <idle>-0     (-----) [000] .n.1 82318.118614: cpu_idle: state=4294967295 cpu_id=0
129684          <idle>-0     (-----) [000] d..2 82318.118625: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129685  kworker/u16:13-1147  ( 1147) [002] d..2 82318.118676: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129686          <idle>-0     (-----) [002] d..1 82318.118686: cpu_idle: state=0 cpu_id=2
129687 crtc_commit:111-321   (  321) [000] d..2 82318.118707: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129688          <idle>-0     (-----) [000] d.h6 82318.118786: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129689          <idle>-0     (-----) [000] d.h7 82318.118805: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129690          <idle>-0     (-----) [002] .n.1 82318.118812: cpu_idle: state=4294967295 cpu_id=2
129691          <idle>-0     (-----) [002] d..2 82318.118822: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129692          <idle>-0     (-----) [000] d..1 82318.118839: cpu_idle: state=0 cpu_id=0
129693  crtc_event:111-322   (  322) [002] d..2 82318.118850: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129694          <idle>-0     (-----) [002] d..1 82318.118858: cpu_idle: state=0 cpu_id=2
129695          <idle>-0     (-----) [003] d.h2 82318.120561: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
129696          <idle>-0     (-----) [003] dnh3 82318.120582: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
129697          <idle>-0     (-----) [003] .n.1 82318.120592: cpu_idle: state=4294967295 cpu_id=3
129698          <idle>-0     (-----) [003] d..2 82318.120606: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
129699        DispSync-8879  ( 8858) [003] d..1 82318.120629: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
129700        DispSync-8879  ( 8858) [003] d..2 82318.120647: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
129701          <idle>-0     (-----) [001] .n.1 82318.120656: cpu_idle: state=4294967295 cpu_id=1
129702          <idle>-0     (-----) [001] d..2 82318.120671: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
129703        DispSync-8879  ( 8858) [003] d..2 82318.120687: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129704          <idle>-0     (-----) [003] d..1 82318.120704: cpu_idle: state=0 cpu_id=3
129705  appEventThread-8881  ( 8858) [001] d..3 82318.120721: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129706          <idle>-0     (-----) [004] dnh2 82318.120754: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129707          <idle>-0     (-----) [004] .n.1 82318.120760: cpu_idle: state=4294967295 cpu_id=4
129708          <idle>-0     (-----) [004] d..2 82318.120768: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
129709  appEventThread-8881  ( 8858) [001] d..2 82318.120792: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129710          <idle>-0     (-----) [001] d..1 82318.120811: cpu_idle: state=0 cpu_id=1
129711 s.nexuslauncher-10023 (10023) [004] .... 82318.120987: binder_transaction: transaction=1572816 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
129712 s.nexuslauncher-10023 (10023) [004] .... 82318.120992: binder_transaction_alloc_buf: transaction=1572816 data_size=80 offsets_size=0
129713 s.nexuslauncher-10023 (10023) [004] d..4 82318.120998: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
129714          <idle>-0     (-----) [000] dnh2 82318.121064: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
129715          <idle>-0     (-----) [000] .n.1 82318.121071: cpu_idle: state=4294967295 cpu_id=0
129716          <idle>-0     (-----) [000] d..2 82318.121085: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
129717 s.nexuslauncher-10023 (10023) [004] d..3 82318.121086: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129718   Binder:8858_1-8871  ( 8858) [000] .... 82318.121096: binder_transaction_received: transaction=1572816
129719 s.nexuslauncher-10023 (10023) [004] d..4 82318.121102: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129720          <idle>-0     (-----) [005] .n.1 82318.121109: cpu_idle: state=4294967295 cpu_id=5
129721          <idle>-0     (-----) [005] d..2 82318.121121: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129722   Binder:8858_1-8871  ( 8858) [000] d..1 82318.121137: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
129723   Binder:8858_1-8871  ( 8858) [000] d..2 82318.121157: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
129724          <idle>-0     (-----) [001] .n.1 82318.121163: cpu_idle: state=4294967295 cpu_id=1
129725    RenderThread-16607 (10023) [005] d..2 82318.121168: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129726          <idle>-0     (-----) [001] d..2 82318.121176: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
129727          <idle>-0     (-----) [005] d..1 82318.121179: cpu_idle: state=0 cpu_id=5
129728   Binder:8858_1-8871  ( 8858) [000] d..2 82318.121211: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129729  appEventThread-8881  ( 8858) [001] d..2 82318.121224: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129730          <idle>-0     (-----) [000] d..1 82318.121233: cpu_idle: state=0 cpu_id=0
129731          <idle>-0     (-----) [001] d..1 82318.121237: cpu_idle: state=0 cpu_id=1
129732 s.nexuslauncher-10023 (10023) [004] d..3 82318.121344: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129733 s.nexuslauncher-10023 (10023) [004] d..4 82318.121362: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129734          <idle>-0     (-----) [005] .n.1 82318.121367: cpu_idle: state=4294967295 cpu_id=5
129735          <idle>-0     (-----) [005] d..2 82318.121376: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129736 s.nexuslauncher-10023 (10023) [004] d..2 82318.121387: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
129737          <idle>-0     (-----) [004] d..1 82318.121403: cpu_idle: state=0 cpu_id=4
129738    RenderThread-16607 (10023) [005] d..1 82318.121514: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129739    RenderThread-16607 (10023) [005] d..2 82318.121530: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129740          <idle>-0     (-----) [004] .n.1 82318.121537: cpu_idle: state=4294967295 cpu_id=4
129741          <idle>-0     (-----) [004] d..2 82318.121547: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
129742    RenderThread-16607 (10023) [005] .... 82318.121580: binder_transaction: transaction=1572817 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
129743    RenderThread-16607 (10023) [005] .... 82318.121585: binder_transaction_alloc_buf: transaction=1572817 data_size=104 offsets_size=0
129744    RenderThread-16607 (10023) [005] ...2 82318.121589: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
129745    RenderThread-16607 (10023) [005] d..4 82318.121593: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
129746    RenderThread-16607 (10023) [005] d..5 82318.121613: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129747 s.nexuslauncher-10023 (10023) [004] d..2 82318.121658: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
129748    RenderThread-16607 (10023) [005] d..2 82318.121660: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129749          <idle>-0     (-----) [004] d..1 82318.121669: cpu_idle: state=0 cpu_id=4
129750   Binder:8858_1-8871  ( 8858) [005] .... 82318.121672: binder_transaction_received: transaction=1572817
129751   Binder:8858_1-8871  ( 8858) [005] .... 82318.121728: binder_transaction: transaction=1572818 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
129752   Binder:8858_1-8871  ( 8858) [005] .... 82318.121732: binder_transaction_alloc_buf: transaction=1572818 data_size=52 offsets_size=8
129753   Binder:8858_1-8871  ( 8858) [005] d..2 82318.121739: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129754   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.121750: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129755   Binder:8858_1-8871  ( 8858) [005] d..2 82318.121757: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
129756    RenderThread-16607 (10023) [005] .... 82318.121765: binder_transaction_received: transaction=1572818
129757          <idle>-0     (-----) [002] d.s2 82318.121806: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129758          <idle>-0     (-----) [002] dns3 82318.121828: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129759          <idle>-0     (-----) [002] .n.1 82318.121846: cpu_idle: state=4294967295 cpu_id=2
129760          <idle>-0     (-----) [002] d..2 82318.121858: 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
129761     rcu_preempt-7     (    7) [002] d..2 82318.121895: 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
129762          <idle>-0     (-----) [002] d..1 82318.121910: cpu_idle: state=0 cpu_id=2
129763    RenderThread-16607 (10023) [005] d..2 82318.123021: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129764   Binder:8858_1-8871  ( 8858) [005] .... 82318.123034: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
129765   Binder:8858_1-8871  ( 8858) [005] d..2 82318.123100: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129766          <idle>-0     (-----) [005] d.h2 82318.123117: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129767          <idle>-0     (-----) [005] d.h3 82318.123125: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
129768          <idle>-0     (-----) [005] dnh3 82318.123128: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129769          <idle>-0     (-----) [005] d..2 82318.123142: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129770    RenderThread-16607 (10023) [005] .... 82318.123297: binder_transaction: transaction=1572819 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
129771    RenderThread-16607 (10023) [005] .... 82318.123301: binder_transaction_alloc_buf: transaction=1572819 data_size=192 offsets_size=8
129772    RenderThread-16607 (10023) [005] ...2 82318.123308: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
129773    RenderThread-16607 (10023) [005] d..4 82318.123311: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129774    RenderThread-16607 (10023) [005] d..5 82318.123322: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129775    RenderThread-16607 (10023) [005] d..2 82318.123334: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129776   Binder:8858_1-8871  ( 8858) [005] .... 82318.123344: binder_transaction_received: transaction=1572819
129777   Binder:8858_1-8871  ( 8858) [005] .... 82318.123461: binder_transaction: transaction=1572820 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
129778   Binder:8858_1-8871  ( 8858) [005] .... 82318.123466: binder_transaction_alloc_buf: transaction=1572820 data_size=68 offsets_size=0
129779   Binder:8858_1-8871  ( 8858) [005] d..2 82318.123468: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129780   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.123480: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129781   Binder:8858_1-8871  ( 8858) [005] d..2 82318.123486: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
129782    RenderThread-16607 (10023) [005] .... 82318.123495: binder_transaction_received: transaction=1572820
129783    RenderThread-16607 (10023) [005] d..2 82318.123561: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129784   Binder:8858_1-8871  ( 8858) [005] .... 82318.123569: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
129785   Binder:8858_1-8871  ( 8858) [005] d..2 82318.123617: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129786          <idle>-0     (-----) [005] d..1 82318.123634: cpu_idle: state=0 cpu_id=5
129787          <idle>-0     (-----) [000] d.h3 82318.124451: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
129788          <idle>-0     (-----) [000] dnh4 82318.124470: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
129789          <idle>-0     (-----) [000] .n.1 82318.124486: cpu_idle: state=4294967295 cpu_id=0
129790          <idle>-0     (-----) [000] d..2 82318.124499: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
129791 kgsl_worker_thr-258   (  258) [000] d..2 82318.124555: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
129792          <idle>-0     (-----) [003] d.h2 82318.124565: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
129793          <idle>-0     (-----) [003] dnh3 82318.124578: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
129794          <idle>-0     (-----) [003] .n.1 82318.124587: cpu_idle: state=4294967295 cpu_id=3
129795          <idle>-0     (-----) [003] d..2 82318.124600: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
129796 kgsl_worker_thr-258   (  258) [000] d..3 82318.124606: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129797        DispSync-8879  ( 8858) [003] d..1 82318.124615: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129798 kgsl_worker_thr-258   (  258) [000] d..2 82318.124632: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129799        DispSync-8879  ( 8858) [003] d..2 82318.124632: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129800          <idle>-0     (-----) [002] .n.1 82318.124639: cpu_idle: state=4294967295 cpu_id=2
129801          <idle>-0     (-----) [002] d..2 82318.124651: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
129802        DispSync-8879  ( 8858) [003] d..2 82318.124669: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129803          <idle>-0     (-----) [003] d..1 82318.124685: cpu_idle: state=0 cpu_id=3
129804   sfEventThread-8882  ( 8858) [002] d..3 82318.124694: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129805   sfEventThread-8882  ( 8858) [002] d..4 82318.124717: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129806          <idle>-0     (-----) [001] .n.1 82318.124723: cpu_idle: state=4294967295 cpu_id=1
129807          <idle>-0     (-----) [001] d..2 82318.124736: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
129808   sfEventThread-8882  ( 8858) [002] d..2 82318.124758: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129809          <idle>-0     (-----) [002] d..1 82318.124774: cpu_idle: state=0 cpu_id=2
129810  kworker/u16:13-1147  ( 1147) [000] d..2 82318.124805: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129811          <idle>-0     (-----) [000] d..1 82318.124826: cpu_idle: state=0 cpu_id=0
129812  surfaceflinger-8858  ( 8858) [001] d.s2 82318.125161: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129813  surfaceflinger-8858  ( 8858) [001] d.s3 82318.125189: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129814          <idle>-0     (-----) [000] .n.1 82318.125195: cpu_idle: state=4294967295 cpu_id=0
129815          <idle>-0     (-----) [000] d..2 82318.125213: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129816  surfaceflinger-8858  ( 8858) [001] d..1 82318.125214: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129817  surfaceflinger-8858  ( 8858) [001] d..2 82318.125235: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
129818          <idle>-0     (-----) [002] .n.1 82318.125242: cpu_idle: state=4294967295 cpu_id=2
129819          <idle>-0     (-----) [002] d..2 82318.125257: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
129820   sfEventThread-8882  ( 8858) [002] d..2 82318.125320: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129821          <idle>-0     (-----) [002] d..1 82318.125340: cpu_idle: state=0 cpu_id=2
129822  kworker/u16:13-1147  ( 1147) [000] d..2 82318.125456: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129823          <idle>-0     (-----) [000] d..1 82318.125473: cpu_idle: state=0 cpu_id=0
129824  surfaceflinger-8858  ( 8858) [001] ...1 82318.125492: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
129825  surfaceflinger-8858  ( 8858) [001] ...1 82318.125501: tracing_mark_write: E|8858
129826  surfaceflinger-8858  ( 8858) [001] .... 82318.125566: binder_transaction: transaction=1572821 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
129827  surfaceflinger-8858  ( 8858) [001] .... 82318.125574: binder_transaction_alloc_buf: transaction=1572821 data_size=540 offsets_size=96
129828  surfaceflinger-8858  ( 8858) [001] ...2 82318.125603: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
129829  surfaceflinger-8858  ( 8858) [001] d..4 82318.125610: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
129830  surfaceflinger-8858  ( 8858) [001] d..5 82318.125636: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
129831          <idle>-0     (-----) [003] .n.1 82318.125642: cpu_idle: state=4294967295 cpu_id=3
129832          <idle>-0     (-----) [003] d..2 82318.125655: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
129833 [email protected]   (  619) [003] .... 82318.125667: binder_transaction_received: transaction=1572821
129834  surfaceflinger-8858  ( 8858) [001] d..2 82318.125679: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129835          <idle>-0     (-----) [001] d..1 82318.125703: cpu_idle: state=0 cpu_id=1
129836 [email protected]   (  619) [003] ...1 82318.125720: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
129837 [email protected]   (  619) [003] ...1 82318.125834: tracing_mark_write: B|619|HWCSession::PresentDisplay::
129838 [email protected]   (  619) [003] ...1 82318.126021: tracing_mark_write: B|619|HWDeviceDRM::Commit::
129839 [email protected]   (  619) [003] ...1 82318.126038: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
129840 [email protected]   (  619) [003] d..2 82318.126693: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
129841 [email protected]   (  619) [003] d..3 82318.126723: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
129842          <idle>-0     (-----) [000] .n.1 82318.126729: cpu_idle: state=4294967295 cpu_id=0
129843          <idle>-0     (-----) [000] d..2 82318.126742: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129844 [email protected]   (  619) [003] ...1 82318.126845: tracing_mark_write: E|619
129845 [email protected]   (  619) [003] ...1 82318.126854: tracing_mark_write: E|619
129846 [email protected]   (  619) [003] ...1 82318.126919: tracing_mark_write: E|619
129847 [email protected]   (  619) [003] ...1 82318.126970: tracing_mark_write: E|619
129848 [email protected]   (  619) [003] .... 82318.126988: binder_transaction: transaction=1572822 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
129849 [email protected]   (  619) [003] .... 82318.126993: binder_transaction_alloc_buf: transaction=1572822 data_size=576 offsets_size=112
129850 [email protected]   (  619) [003] d..2 82318.127019: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129851 [email protected]   (  619) [003] d..3 82318.127042: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
129852          <idle>-0     (-----) [001] .n.1 82318.127049: cpu_idle: state=4294967295 cpu_id=1
129853 [email protected]   (  619) [003] .... 82318.127050: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
129854          <idle>-0     (-----) [001] d..2 82318.127063: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
129855  surfaceflinger-8858  ( 8858) [001] .... 82318.127075: binder_transaction_received: transaction=1572822
129856 [email protected]   (  619) [003] d..2 82318.127158: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129857          <idle>-0     (-----) [003] d..1 82318.127183: cpu_idle: state=0 cpu_id=3
129858 crtc_commit:111-321   (  321) [000] d..2 82318.127517: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
129859          <idle>-0     (-----) [000] d..1 82318.127536: cpu_idle: state=0 cpu_id=0
129860  surfaceflinger-8858  ( 8858) [001] d..2 82318.127554: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129861          <idle>-0     (-----) [001] d..1 82318.127578: cpu_idle: state=0 cpu_id=1
129862          <idle>-0     (-----) [002] d.s2 82318.128476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129863          <idle>-0     (-----) [002] dns3 82318.128498: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129864          <idle>-0     (-----) [002] .n.1 82318.128516: cpu_idle: state=4294967295 cpu_id=2
129865          <idle>-0     (-----) [002] d..2 82318.128528: 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
129866     rcu_preempt-7     (    7) [002] d..2 82318.128540: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
129867     rcu_preempt-7     (    7) [002] d..3 82318.128558: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
129868     rcu_preempt-7     (    7) [002] d..2 82318.128573: 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
129869         rcuop/0-10    (   10) [002] d..2 82318.128578: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
129870         rcuop/0-10    (   10) [002] d..3 82318.128593: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
129871         rcuop/0-10    (   10) [002] d..2 82318.128597: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129872         rcuop/0-10    (   10) [002] d..3 82318.128609: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129873         rcuop/0-10    (   10) [002] d..2 82318.128618: 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
129874         rcuop/1-21    (   21) [002] d..2 82318.128637: 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
129875     rcu_preempt-7     (    7) [002] d..2 82318.128668: 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
129876          <idle>-0     (-----) [002] d..1 82318.128686: cpu_idle: state=0 cpu_id=2
129877          <idle>-0     (-----) [000] d.h5 82318.132621: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129878          <idle>-0     (-----) [000] d.h6 82318.132651: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129879          <idle>-0     (-----) [000] d.h5 82318.132656: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
129880          <idle>-0     (-----) [002] .n.1 82318.132658: cpu_idle: state=4294967295 cpu_id=2
129881          <idle>-0     (-----) [000] dnh6 82318.132667: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
129882          <idle>-0     (-----) [002] d..2 82318.132673: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129883  crtc_event:111-322   (  322) [002] d..2 82318.132760: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129884          <idle>-0     (-----) [000] .n.1 82318.132762: cpu_idle: state=4294967295 cpu_id=0
129885          <idle>-0     (-----) [002] d..2 82318.132765: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
129886          <idle>-0     (-----) [000] d..2 82318.132778: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129887          <idle>-0     (-----) [002] dn.3 82318.132781: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
129888          <idle>-0     (-----) [002] d..2 82318.132791: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
129889     ksoftirqd/2-26    (   26) [002] d..2 82318.132819: 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
129890          <idle>-0     (-----) [002] d..1 82318.132829: cpu_idle: state=0 cpu_id=2
129891 crtc_commit:111-321   (  321) [000] d..2 82318.132932: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
129892          <idle>-0     (-----) [000] d..1 82318.132945: cpu_idle: state=0 cpu_id=0
129893          <idle>-0     (-----) [000] d.h5 82318.134942: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
129894          <idle>-0     (-----) [000] dnh6 82318.134955: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
129895          <idle>-0     (-----) [000] .n.1 82318.134970: cpu_idle: state=4294967295 cpu_id=0
129896          <idle>-0     (-----) [000] d..2 82318.134978: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
129897 crtc_commit:111-321   (  321) [000] d..2 82318.135049: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129898          <idle>-0     (-----) [000] d..1 82318.135060: cpu_idle: state=0 cpu_id=0
129899          <idle>-0     (-----) [002] d.s2 82318.135140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129900          <idle>-0     (-----) [000] d.s3 82318.135147: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129901          <idle>-0     (-----) [002] dns3 82318.135160: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
129902          <idle>-0     (-----) [000] d.s4 82318.135168: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
129903          <idle>-0     (-----) [002] dns3 82318.135174: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
129904          <idle>-0     (-----) [002] dns4 82318.135216: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
129905          <idle>-0     (-----) [002] dns3 82318.135226: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
129906          <idle>-0     (-----) [002] dns4 82318.135239: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
129907          <idle>-0     (-----) [002] .n.1 82318.135250: cpu_idle: state=4294967295 cpu_id=2
129908          <idle>-0     (-----) [002] d..2 82318.135259: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
129909  crtc_event:111-322   (  322) [002] d..2 82318.135286: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
129910          <idle>-0     (-----) [000] ...1 82318.135288: cpu_idle: state=4294967295 cpu_id=0
129911          <idle>-0     (-----) [000] d..1 82318.135297: cpu_idle: state=0 cpu_id=0
129912     kworker/2:1-25259 (25259) [002] d..2 82318.135323: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
129913     rcu_preempt-7     (    7) [002] d..2 82318.135335: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
129914     rcu_preempt-7     (    7) [002] d..3 82318.135354: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
129915     rcu_preempt-7     (    7) [002] d..2 82318.135366: 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
129916         rcuop/0-10    (   10) [002] d..2 82318.135370: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
129917         rcuop/0-10    (   10) [002] d..3 82318.135385: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
129918         rcuop/0-10    (   10) [002] d..2 82318.135394: 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
129919         rcuop/1-21    (   21) [002] d..2 82318.135410: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
129920  kworker/u16:13-1147  ( 1147) [002] d..2 82318.135523: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
129921          <idle>-0     (-----) [002] d..1 82318.135543: cpu_idle: state=0 cpu_id=2
129922          <idle>-0     (-----) [003] d.h2 82318.137028: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
129923          <idle>-0     (-----) [003] dnh3 82318.137048: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
129924          <idle>-0     (-----) [003] .n.1 82318.137059: cpu_idle: state=4294967295 cpu_id=3
129925          <idle>-0     (-----) [003] d..2 82318.137074: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
129926        DispSync-8879  ( 8858) [003] d..1 82318.137097: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
129927        DispSync-8879  ( 8858) [003] d..2 82318.137116: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
129928          <idle>-0     (-----) [001] .n.1 82318.137123: cpu_idle: state=4294967295 cpu_id=1
129929          <idle>-0     (-----) [001] d..2 82318.137139: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
129930        DispSync-8879  ( 8858) [003] d..2 82318.137158: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
129931          <idle>-0     (-----) [003] d..1 82318.137175: cpu_idle: state=0 cpu_id=3
129932  appEventThread-8881  ( 8858) [001] d..3 82318.137189: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129933          <idle>-0     (-----) [004] dnh2 82318.137223: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129934          <idle>-0     (-----) [004] .n.1 82318.137228: cpu_idle: state=4294967295 cpu_id=4
129935          <idle>-0     (-----) [004] d..2 82318.137237: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
129936  appEventThread-8881  ( 8858) [001] d..2 82318.137260: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129937          <idle>-0     (-----) [001] d..1 82318.137279: cpu_idle: state=0 cpu_id=1
129938 s.nexuslauncher-10023 (10023) [004] .... 82318.137474: binder_transaction: transaction=1572823 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
129939 s.nexuslauncher-10023 (10023) [004] .... 82318.137479: binder_transaction_alloc_buf: transaction=1572823 data_size=80 offsets_size=0
129940 s.nexuslauncher-10023 (10023) [004] d..4 82318.137484: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
129941          <idle>-0     (-----) [000] dnh2 82318.137553: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
129942          <idle>-0     (-----) [000] .n.1 82318.137559: cpu_idle: state=4294967295 cpu_id=0
129943 s.nexuslauncher-10023 (10023) [004] d..3 82318.137572: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129944          <idle>-0     (-----) [000] d..2 82318.137574: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
129945   Binder:8858_1-8871  ( 8858) [000] .... 82318.137584: binder_transaction_received: transaction=1572823
129946 s.nexuslauncher-10023 (10023) [004] d..4 82318.137589: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129947          <idle>-0     (-----) [005] .n.1 82318.137596: cpu_idle: state=4294967295 cpu_id=5
129948          <idle>-0     (-----) [005] d..2 82318.137608: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129949   Binder:8858_1-8871  ( 8858) [000] d..1 82318.137627: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
129950   Binder:8858_1-8871  ( 8858) [000] d..2 82318.137649: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
129951    RenderThread-16607 (10023) [005] d..2 82318.137652: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129952          <idle>-0     (-----) [001] .n.1 82318.137656: cpu_idle: state=4294967295 cpu_id=1
129953          <idle>-0     (-----) [005] d..1 82318.137664: cpu_idle: state=0 cpu_id=5
129954          <idle>-0     (-----) [001] d..2 82318.137669: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
129955   Binder:8858_1-8871  ( 8858) [000] d..2 82318.137704: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
129956  appEventThread-8881  ( 8858) [001] d..2 82318.137716: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
129957          <idle>-0     (-----) [000] d..1 82318.137724: cpu_idle: state=0 cpu_id=0
129958          <idle>-0     (-----) [001] d..1 82318.137729: cpu_idle: state=0 cpu_id=1
129959 s.nexuslauncher-10023 (10023) [004] d..3 82318.137822: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129960 s.nexuslauncher-10023 (10023) [004] d..4 82318.137839: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129961          <idle>-0     (-----) [005] .n.1 82318.137844: cpu_idle: state=4294967295 cpu_id=5
129962          <idle>-0     (-----) [005] d..2 82318.137853: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129963 s.nexuslauncher-10023 (10023) [004] d..2 82318.137864: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
129964          <idle>-0     (-----) [004] d..1 82318.137884: cpu_idle: state=0 cpu_id=4
129965    RenderThread-16607 (10023) [005] d..1 82318.138000: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129966    RenderThread-16607 (10023) [005] d..2 82318.138016: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
129967          <idle>-0     (-----) [004] .n.1 82318.138023: cpu_idle: state=4294967295 cpu_id=4
129968          <idle>-0     (-----) [004] d..2 82318.138033: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
129969    RenderThread-16607 (10023) [005] .... 82318.138066: binder_transaction: transaction=1572824 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
129970    RenderThread-16607 (10023) [005] .... 82318.138071: binder_transaction_alloc_buf: transaction=1572824 data_size=104 offsets_size=0
129971    RenderThread-16607 (10023) [005] ...2 82318.138074: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
129972    RenderThread-16607 (10023) [005] d..4 82318.138078: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
129973    RenderThread-16607 (10023) [005] d..5 82318.138099: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129974 s.nexuslauncher-10023 (10023) [004] d..2 82318.138143: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
129975    RenderThread-16607 (10023) [005] d..2 82318.138146: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129976          <idle>-0     (-----) [004] d..1 82318.138153: cpu_idle: state=0 cpu_id=4
129977   Binder:8858_1-8871  ( 8858) [005] .... 82318.138157: binder_transaction_received: transaction=1572824
129978   Binder:8858_1-8871  ( 8858) [005] .... 82318.138216: binder_transaction: transaction=1572825 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
129979   Binder:8858_1-8871  ( 8858) [005] .... 82318.138219: binder_transaction_alloc_buf: transaction=1572825 data_size=52 offsets_size=8
129980   Binder:8858_1-8871  ( 8858) [005] d..2 82318.138226: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129981   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.138237: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129982   Binder:8858_1-8871  ( 8858) [005] d..2 82318.138243: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
129983    RenderThread-16607 (10023) [005] .... 82318.138254: binder_transaction_received: transaction=1572825
129984    RenderThread-16607 (10023) [005] d..2 82318.139544: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129985   Binder:8858_1-8871  ( 8858) [005] .... 82318.139557: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
129986   Binder:8858_1-8871  ( 8858) [005] d..2 82318.139630: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
129987          <idle>-0     (-----) [005] d.h3 82318.139642: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
129988          <idle>-0     (-----) [005] d.h4 82318.139649: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
129989          <idle>-0     (-----) [005] dnh4 82318.139653: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
129990          <idle>-0     (-----) [005] d..2 82318.139664: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
129991    RenderThread-16607 (10023) [005] .... 82318.139817: binder_transaction: transaction=1572826 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
129992    RenderThread-16607 (10023) [005] .... 82318.139821: binder_transaction_alloc_buf: transaction=1572826 data_size=192 offsets_size=8
129993    RenderThread-16607 (10023) [005] ...2 82318.139828: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
129994    RenderThread-16607 (10023) [005] d..4 82318.139831: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129995    RenderThread-16607 (10023) [005] d..5 82318.139843: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
129996    RenderThread-16607 (10023) [005] d..2 82318.139855: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
129997   Binder:8858_1-8871  ( 8858) [005] .... 82318.139864: binder_transaction_received: transaction=1572826
129998   Binder:8858_1-8871  ( 8858) [005] .... 82318.139979: binder_transaction: transaction=1572827 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
129999   Binder:8858_1-8871  ( 8858) [005] .... 82318.139983: binder_transaction_alloc_buf: transaction=1572827 data_size=68 offsets_size=0
130000   Binder:8858_1-8871  ( 8858) [005] d..2 82318.139986: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130001   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.139997: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130002   Binder:8858_1-8871  ( 8858) [005] d..2 82318.140003: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
130003    RenderThread-16607 (10023) [005] .... 82318.140012: binder_transaction_received: transaction=1572827
130004    RenderThread-16607 (10023) [005] d..2 82318.140077: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130005   Binder:8858_1-8871  ( 8858) [005] .... 82318.140085: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
130006   Binder:8858_1-8871  ( 8858) [005] d..2 82318.140134: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130007          <idle>-0     (-----) [005] d..1 82318.140151: cpu_idle: state=0 cpu_id=5
130008          <idle>-0     (-----) [000] d.h3 82318.140970: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
130009          <idle>-0     (-----) [000] dnh4 82318.140989: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
130010          <idle>-0     (-----) [000] .n.1 82318.141004: cpu_idle: state=4294967295 cpu_id=0
130011          <idle>-0     (-----) [000] d..2 82318.141018: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
130012          <idle>-0     (-----) [003] d.h2 82318.141031: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
130013          <idle>-0     (-----) [003] dnh3 82318.141044: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
130014          <idle>-0     (-----) [003] .n.1 82318.141054: cpu_idle: state=4294967295 cpu_id=3
130015          <idle>-0     (-----) [003] d..2 82318.141066: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
130016 kgsl_worker_thr-258   (  258) [000] d..2 82318.141074: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
130017        DispSync-8879  ( 8858) [003] d..1 82318.141081: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130018        DispSync-8879  ( 8858) [003] d..2 82318.141098: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130019          <idle>-0     (-----) [002] .n.1 82318.141105: cpu_idle: state=4294967295 cpu_id=2
130020          <idle>-0     (-----) [002] d..2 82318.141124: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
130021 kgsl_worker_thr-258   (  258) [000] d..3 82318.141132: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
130022        DispSync-8879  ( 8858) [003] d..2 82318.141153: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130023   sfEventThread-8882  ( 8858) [002] d..3 82318.141170: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130024 kgsl_worker_thr-258   (  258) [000] d..2 82318.141173: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130025          <idle>-0     (-----) [000] d..1 82318.141192: cpu_idle: state=0 cpu_id=0
130026   sfEventThread-8882  ( 8858) [002] d..4 82318.141194: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130027          <idle>-0     (-----) [001] .n.1 82318.141199: cpu_idle: state=4294967295 cpu_id=1
130028          <idle>-0     (-----) [001] d..2 82318.141212: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
130029   sfEventThread-8882  ( 8858) [002] d..2 82318.141237: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130030          <idle>-0     (-----) [002] d..1 82318.141255: cpu_idle: state=0 cpu_id=2
130031  kworker/u16:13-1147  ( 1147) [003] d..2 82318.141336: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130032          <idle>-0     (-----) [003] d..1 82318.141357: cpu_idle: state=0 cpu_id=3
130033  surfaceflinger-8858  ( 8858) [001] d..2 82318.141558: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130034  surfaceflinger-8858  ( 8858) [001] d..3 82318.141619: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
130035  surfaceflinger-8858  ( 8858) [001] d..1 82318.141655: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130036  surfaceflinger-8858  ( 8858) [001] d..2 82318.141675: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130037          <idle>-0     (-----) [002] .n.1 82318.141681: cpu_idle: state=4294967295 cpu_id=2
130038          <idle>-0     (-----) [002] d..2 82318.141694: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
130039   sfEventThread-8882  ( 8858) [002] d..2 82318.141759: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
130040         rcuop/0-10    (   10) [002] d..2 82318.141766: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130041         rcuop/0-10    (   10) [002] d..3 82318.141788: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130042         rcuop/0-10    (   10) [002] d..2 82318.141853: 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
130043     rcu_preempt-7     (    7) [002] d..2 82318.141886: 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
130044          <idle>-0     (-----) [002] d..1 82318.141904: cpu_idle: state=0 cpu_id=2
130045  surfaceflinger-8858  ( 8858) [001] ...1 82318.141952: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
130046  surfaceflinger-8858  ( 8858) [001] ...1 82318.141962: tracing_mark_write: E|8858
130047  surfaceflinger-8858  ( 8858) [001] .... 82318.142028: binder_transaction: transaction=1572828 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
130048  surfaceflinger-8858  ( 8858) [001] .... 82318.142035: binder_transaction_alloc_buf: transaction=1572828 data_size=540 offsets_size=96
130049  surfaceflinger-8858  ( 8858) [001] ...2 82318.142063: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
130050  surfaceflinger-8858  ( 8858) [001] d..4 82318.142072: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
130051  surfaceflinger-8858  ( 8858) [001] d..5 82318.142098: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
130052          <idle>-0     (-----) [003] .n.1 82318.142104: cpu_idle: state=4294967295 cpu_id=3
130053          <idle>-0     (-----) [003] d..2 82318.142119: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
130054 [email protected]   (  619) [003] .... 82318.142132: binder_transaction_received: transaction=1572828
130055  surfaceflinger-8858  ( 8858) [001] d..2 82318.142141: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130056          <idle>-0     (-----) [001] d..1 82318.142166: cpu_idle: state=0 cpu_id=1
130057 [email protected]   (  619) [003] ...1 82318.142186: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
130058 [email protected]   (  619) [003] ...1 82318.142303: tracing_mark_write: B|619|HWCSession::PresentDisplay::
130059 [email protected]   (  619) [003] ...1 82318.142494: tracing_mark_write: B|619|HWDeviceDRM::Commit::
130060 [email protected]   (  619) [003] ...1 82318.142510: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
130061 [email protected]   (  619) [003] d..2 82318.143170: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130062 [email protected]   (  619) [003] d..3 82318.143202: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130063          <idle>-0     (-----) [000] .n.1 82318.143208: cpu_idle: state=4294967295 cpu_id=0
130064          <idle>-0     (-----) [000] d..2 82318.143223: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130065 [email protected]   (  619) [003] ...1 82318.143326: tracing_mark_write: E|619
130066 [email protected]   (  619) [003] ...1 82318.143334: tracing_mark_write: E|619
130067 [email protected]   (  619) [003] ...1 82318.143400: tracing_mark_write: E|619
130068 [email protected]   (  619) [003] ...1 82318.143449: tracing_mark_write: E|619
130069 [email protected]   (  619) [003] .... 82318.143468: binder_transaction: transaction=1572829 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
130070 [email protected]   (  619) [003] .... 82318.143474: binder_transaction_alloc_buf: transaction=1572829 data_size=576 offsets_size=112
130071 [email protected]   (  619) [003] d..2 82318.143501: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130072 [email protected]   (  619) [003] d..3 82318.143524: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130073 [email protected]   (  619) [003] .... 82318.143530: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
130074          <idle>-0     (-----) [001] .n.1 82318.143531: cpu_idle: state=4294967295 cpu_id=1
130075          <idle>-0     (-----) [001] d..2 82318.143545: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
130076  surfaceflinger-8858  ( 8858) [001] .... 82318.143555: binder_transaction_received: transaction=1572829
130077 [email protected]   (  619) [003] d..2 82318.143639: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130078          <idle>-0     (-----) [003] d..1 82318.143664: cpu_idle: state=0 cpu_id=3
130079 crtc_commit:111-321   (  321) [000] d..2 82318.144002: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
130080          <idle>-0     (-----) [000] d..1 82318.144021: cpu_idle: state=0 cpu_id=0
130081  surfaceflinger-8858  ( 8858) [001] d..2 82318.144039: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130082          <idle>-0     (-----) [001] d..1 82318.144064: cpu_idle: state=0 cpu_id=1
130083          <idle>-0     (-----) [002] d.s2 82318.148473: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130084          <idle>-0     (-----) [002] dns3 82318.148492: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130085          <idle>-0     (-----) [002] dns3 82318.148499: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
130086          <idle>-0     (-----) [002] dns4 82318.148537: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
130087          <idle>-0     (-----) [002] .n.1 82318.148562: cpu_idle: state=4294967295 cpu_id=2
130088          <idle>-0     (-----) [002] d..2 82318.148577: 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
130089     rcu_preempt-7     (    7) [002] d..2 82318.148590: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130090     rcu_preempt-7     (    7) [002] d..3 82318.148606: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130091     rcu_preempt-7     (    7) [002] d..2 82318.148618: 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
130092         rcuop/0-10    (   10) [002] d..2 82318.148622: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130093         rcuop/0-10    (   10) [002] d..3 82318.148638: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130094         rcuop/0-10    (   10) [002] d..2 82318.148642: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130095         rcuop/0-10    (   10) [002] d..3 82318.148654: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130096         rcuop/0-10    (   10) [002] d..2 82318.148664: 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
130097         rcuop/1-21    (   21) [002] d..2 82318.148677: 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
130098     rcu_preempt-7     (    7) [002] d..2 82318.148690: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130099  kworker/u16:13-1147  ( 1147) [002] d..2 82318.148867: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130100          <idle>-0     (-----) [002] d..1 82318.148887: cpu_idle: state=0 cpu_id=2
130101          <idle>-0     (-----) [000] d.h5 82318.149083: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130102          <idle>-0     (-----) [000] d.h6 82318.149105: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130103          <idle>-0     (-----) [000] d.h5 82318.149110: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130104          <idle>-0     (-----) [002] .n.1 82318.149112: cpu_idle: state=4294967295 cpu_id=2
130105          <idle>-0     (-----) [000] dnh6 82318.149119: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130106          <idle>-0     (-----) [002] d..2 82318.149126: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130107          <idle>-0     (-----) [000] .n.1 82318.149134: cpu_idle: state=4294967295 cpu_id=0
130108          <idle>-0     (-----) [000] d..2 82318.149149: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130109  crtc_event:111-322   (  322) [002] d..2 82318.149166: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130110          <idle>-0     (-----) [002] d..1 82318.149178: cpu_idle: state=0 cpu_id=2
130111 crtc_commit:111-321   (  321) [000] d..2 82318.149299: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
130112          <idle>-0     (-----) [000] d..1 82318.149312: cpu_idle: state=0 cpu_id=0
130113          <idle>-0     (-----) [000] d.h5 82318.151410: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130114          <idle>-0     (-----) [000] dnh6 82318.151423: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130115          <idle>-0     (-----) [000] .n.1 82318.151437: cpu_idle: state=4294967295 cpu_id=0
130116          <idle>-0     (-----) [000] d..2 82318.151445: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130117 crtc_commit:111-321   (  321) [000] d..2 82318.151517: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130118          <idle>-0     (-----) [000] d..1 82318.151528: cpu_idle: state=0 cpu_id=0
130119          <idle>-0     (-----) [000] d.h5 82318.151714: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130120          <idle>-0     (-----) [000] d.h6 82318.151733: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130121          <idle>-0     (-----) [002] .n.1 82318.151739: cpu_idle: state=4294967295 cpu_id=2
130122          <idle>-0     (-----) [002] d..2 82318.151751: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130123          <idle>-0     (-----) [000] ...1 82318.151752: cpu_idle: state=4294967295 cpu_id=0
130124          <idle>-0     (-----) [000] d..1 82318.151758: cpu_idle: state=0 cpu_id=0
130125  crtc_event:111-322   (  322) [002] d..2 82318.151787: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130126          <idle>-0     (-----) [000] d.s3 82318.151811: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130127          <idle>-0     (-----) [000] d.s4 82318.151830: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130128          <idle>-0     (-----) [000] ...1 82318.151909: cpu_idle: state=4294967295 cpu_id=0
130129          <idle>-0     (-----) [000] d..1 82318.151917: cpu_idle: state=0 cpu_id=0
130130          <idle>-0     (-----) [002] d..2 82318.151918: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130131  crtc_event:111-322   (  322) [002] d..2 82318.151954: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130132          <idle>-0     (-----) [002] d..1 82318.151966: cpu_idle: state=0 cpu_id=2
130133          <idle>-0     (-----) [003] d.h2 82318.153495: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
130134          <idle>-0     (-----) [003] dnh3 82318.153517: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
130135          <idle>-0     (-----) [003] .n.1 82318.153528: cpu_idle: state=4294967295 cpu_id=3
130136          <idle>-0     (-----) [003] d..2 82318.153541: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
130137        DispSync-8879  ( 8858) [003] d..1 82318.153565: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
130138        DispSync-8879  ( 8858) [003] d..2 82318.153584: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
130139          <idle>-0     (-----) [001] .n.1 82318.153592: cpu_idle: state=4294967295 cpu_id=1
130140          <idle>-0     (-----) [001] d..2 82318.153607: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
130141        DispSync-8879  ( 8858) [003] d..2 82318.153626: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130142          <idle>-0     (-----) [003] d..1 82318.153642: cpu_idle: state=0 cpu_id=3
130143  appEventThread-8881  ( 8858) [001] d..3 82318.153658: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130144          <idle>-0     (-----) [004] dnh2 82318.153691: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130145          <idle>-0     (-----) [004] .n.1 82318.153695: cpu_idle: state=4294967295 cpu_id=4
130146          <idle>-0     (-----) [004] d..2 82318.153704: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
130147  appEventThread-8881  ( 8858) [001] d..2 82318.153728: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130148          <idle>-0     (-----) [001] d..1 82318.153748: cpu_idle: state=0 cpu_id=1
130149 s.nexuslauncher-10023 (10023) [004] .... 82318.153914: binder_transaction: transaction=1572830 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
130150 s.nexuslauncher-10023 (10023) [004] .... 82318.153919: binder_transaction_alloc_buf: transaction=1572830 data_size=80 offsets_size=0
130151 s.nexuslauncher-10023 (10023) [004] d..4 82318.153925: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
130152          <idle>-0     (-----) [000] dnh2 82318.153994: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
130153          <idle>-0     (-----) [000] .n.1 82318.154000: cpu_idle: state=4294967295 cpu_id=0
130154 s.nexuslauncher-10023 (10023) [004] d..3 82318.154013: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130155          <idle>-0     (-----) [000] d..2 82318.154015: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
130156   Binder:8858_1-8871  ( 8858) [000] .... 82318.154025: binder_transaction_received: transaction=1572830
130157 s.nexuslauncher-10023 (10023) [004] d..4 82318.154029: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130158          <idle>-0     (-----) [005] .n.1 82318.154037: cpu_idle: state=4294967295 cpu_id=5
130159          <idle>-0     (-----) [005] d..2 82318.154051: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130160   Binder:8858_1-8871  ( 8858) [000] d..1 82318.154067: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
130161   Binder:8858_1-8871  ( 8858) [000] d..2 82318.154087: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
130162          <idle>-0     (-----) [001] .n.1 82318.154094: cpu_idle: state=4294967295 cpu_id=1
130163    RenderThread-16607 (10023) [005] d..2 82318.154100: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130164          <idle>-0     (-----) [001] d..2 82318.154106: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
130165          <idle>-0     (-----) [005] d..1 82318.154111: cpu_idle: state=0 cpu_id=5
130166   Binder:8858_1-8871  ( 8858) [000] d..2 82318.154144: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130167  appEventThread-8881  ( 8858) [001] d..2 82318.154153: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130168          <idle>-0     (-----) [000] d..1 82318.154162: cpu_idle: state=0 cpu_id=0
130169          <idle>-0     (-----) [001] d..1 82318.154167: cpu_idle: state=0 cpu_id=1
130170 s.nexuslauncher-10023 (10023) [004] d..3 82318.154274: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130171 s.nexuslauncher-10023 (10023) [004] d..4 82318.154292: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130172          <idle>-0     (-----) [005] .n.1 82318.154297: cpu_idle: state=4294967295 cpu_id=5
130173          <idle>-0     (-----) [005] d..2 82318.154307: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130174 s.nexuslauncher-10023 (10023) [004] d..2 82318.154318: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
130175          <idle>-0     (-----) [004] d..1 82318.154335: cpu_idle: state=0 cpu_id=4
130176    RenderThread-16607 (10023) [005] d..1 82318.154445: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130177    RenderThread-16607 (10023) [005] d..2 82318.154461: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130178          <idle>-0     (-----) [004] .n.1 82318.154468: cpu_idle: state=4294967295 cpu_id=4
130179          <idle>-0     (-----) [004] d..2 82318.154477: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
130180    RenderThread-16607 (10023) [005] .... 82318.154510: binder_transaction: transaction=1572831 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
130181    RenderThread-16607 (10023) [005] .... 82318.154514: binder_transaction_alloc_buf: transaction=1572831 data_size=104 offsets_size=0
130182    RenderThread-16607 (10023) [005] ...2 82318.154517: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
130183    RenderThread-16607 (10023) [005] d..4 82318.154521: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
130184    RenderThread-16607 (10023) [005] d..5 82318.154543: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130185 s.nexuslauncher-10023 (10023) [004] d..2 82318.154587: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
130186    RenderThread-16607 (10023) [005] d..2 82318.154589: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130187          <idle>-0     (-----) [004] d..1 82318.154597: cpu_idle: state=0 cpu_id=4
130188   Binder:8858_1-8871  ( 8858) [005] .... 82318.154600: binder_transaction_received: transaction=1572831
130189   Binder:8858_1-8871  ( 8858) [005] .... 82318.154660: binder_transaction: transaction=1572832 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
130190   Binder:8858_1-8871  ( 8858) [005] .... 82318.154664: binder_transaction_alloc_buf: transaction=1572832 data_size=52 offsets_size=8
130191   Binder:8858_1-8871  ( 8858) [005] d..2 82318.154672: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130192   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.154683: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130193   Binder:8858_1-8871  ( 8858) [005] d..2 82318.154690: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
130194    RenderThread-16607 (10023) [005] .... 82318.154699: binder_transaction_received: transaction=1572832
130195          <idle>-0     (-----) [002] d.s2 82318.155135: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130196          <idle>-0     (-----) [002] dns3 82318.155159: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130197          <idle>-0     (-----) [002] .n.1 82318.155168: cpu_idle: state=4294967295 cpu_id=2
130198          <idle>-0     (-----) [002] d..2 82318.155180: 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
130199     rcu_preempt-7     (    7) [002] d..2 82318.155218: 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
130200          <idle>-0     (-----) [002] d..1 82318.155233: cpu_idle: state=0 cpu_id=2
130201    RenderThread-16607 (10023) [005] d..2 82318.155964: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130202   Binder:8858_1-8871  ( 8858) [005] .... 82318.155977: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
130203   Binder:8858_1-8871  ( 8858) [005] d..2 82318.156045: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130204          <idle>-0     (-----) [005] d.h2 82318.156057: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130205          <idle>-0     (-----) [005] d.h3 82318.156064: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
130206          <idle>-0     (-----) [005] dnh3 82318.156068: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130207          <idle>-0     (-----) [005] d..2 82318.156080: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130208    RenderThread-16607 (10023) [005] .... 82318.156232: binder_transaction: transaction=1572833 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
130209    RenderThread-16607 (10023) [005] .... 82318.156236: binder_transaction_alloc_buf: transaction=1572833 data_size=192 offsets_size=8
130210    RenderThread-16607 (10023) [005] ...2 82318.156243: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
130211    RenderThread-16607 (10023) [005] d..4 82318.156246: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130212    RenderThread-16607 (10023) [005] d..5 82318.156258: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130213    RenderThread-16607 (10023) [005] d..2 82318.156270: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130214   Binder:8858_1-8871  ( 8858) [005] .... 82318.156280: binder_transaction_received: transaction=1572833
130215   Binder:8858_1-8871  ( 8858) [005] .... 82318.156399: binder_transaction: transaction=1572834 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
130216   Binder:8858_1-8871  ( 8858) [005] .... 82318.156403: binder_transaction_alloc_buf: transaction=1572834 data_size=68 offsets_size=0
130217   Binder:8858_1-8871  ( 8858) [005] d..2 82318.156406: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130218   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.156417: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130219   Binder:8858_1-8871  ( 8858) [005] d..2 82318.156423: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
130220    RenderThread-16607 (10023) [005] .... 82318.156432: binder_transaction_received: transaction=1572834
130221    RenderThread-16607 (10023) [005] d..2 82318.156495: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130222   Binder:8858_1-8871  ( 8858) [005] .... 82318.156503: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
130223   Binder:8858_1-8871  ( 8858) [005] d..2 82318.156553: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130224          <idle>-0     (-----) [005] d..1 82318.156570: cpu_idle: state=0 cpu_id=5
130225          <idle>-0     (-----) [000] d.h3 82318.157390: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
130226          <idle>-0     (-----) [000] dnh4 82318.157408: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
130227          <idle>-0     (-----) [000] .n.1 82318.157423: cpu_idle: state=4294967295 cpu_id=0
130228          <idle>-0     (-----) [000] d..2 82318.157438: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
130229 kgsl_worker_thr-258   (  258) [000] d..2 82318.157496: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
130230          <idle>-0     (-----) [003] d.h2 82318.157497: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
130231          <idle>-0     (-----) [003] dnh3 82318.157512: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
130232          <idle>-0     (-----) [003] .n.1 82318.157522: cpu_idle: state=4294967295 cpu_id=3
130233          <idle>-0     (-----) [003] d..2 82318.157535: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
130234 kgsl_worker_thr-258   (  258) [000] d..3 82318.157548: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130235        DispSync-8879  ( 8858) [003] d..1 82318.157549: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130236        DispSync-8879  ( 8858) [003] d..2 82318.157566: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130237          <idle>-0     (-----) [002] .n.1 82318.157573: cpu_idle: state=4294967295 cpu_id=2
130238 kgsl_worker_thr-258   (  258) [000] d..2 82318.157577: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130239          <idle>-0     (-----) [002] d..2 82318.157585: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
130240        DispSync-8879  ( 8858) [003] d..2 82318.157605: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130241          <idle>-0     (-----) [003] d..1 82318.157620: cpu_idle: state=0 cpu_id=3
130242   sfEventThread-8882  ( 8858) [002] d..3 82318.157629: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130243   sfEventThread-8882  ( 8858) [002] d..4 82318.157653: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130244          <idle>-0     (-----) [001] .n.1 82318.157659: cpu_idle: state=4294967295 cpu_id=1
130245          <idle>-0     (-----) [001] d..2 82318.157673: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
130246   sfEventThread-8882  ( 8858) [002] d..2 82318.157694: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130247          <idle>-0     (-----) [002] d..1 82318.157710: cpu_idle: state=0 cpu_id=2
130248  kworker/u16:13-1147  ( 1147) [000] d..2 82318.157753: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130249          <idle>-0     (-----) [000] d..1 82318.157774: cpu_idle: state=0 cpu_id=0
130250  surfaceflinger-8858  ( 8858) [001] d..1 82318.158035: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130251  surfaceflinger-8858  ( 8858) [001] d..2 82318.158062: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130252          <idle>-0     (-----) [002] .n.1 82318.158068: cpu_idle: state=4294967295 cpu_id=2
130253          <idle>-0     (-----) [002] d..2 82318.158080: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
130254   sfEventThread-8882  ( 8858) [002] d..2 82318.158121: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130255          <idle>-0     (-----) [002] d..1 82318.158133: cpu_idle: state=0 cpu_id=2
130256  surfaceflinger-8858  ( 8858) [001] ...1 82318.158278: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
130257  surfaceflinger-8858  ( 8858) [001] ...1 82318.158288: tracing_mark_write: E|8858
130258  surfaceflinger-8858  ( 8858) [001] .... 82318.158352: binder_transaction: transaction=1572835 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
130259  surfaceflinger-8858  ( 8858) [001] .... 82318.158359: binder_transaction_alloc_buf: transaction=1572835 data_size=540 offsets_size=96
130260  surfaceflinger-8858  ( 8858) [001] ...2 82318.158386: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
130261  surfaceflinger-8858  ( 8858) [001] d..4 82318.158394: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
130262  surfaceflinger-8858  ( 8858) [001] d..5 82318.158421: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
130263          <idle>-0     (-----) [003] .n.1 82318.158427: cpu_idle: state=4294967295 cpu_id=3
130264          <idle>-0     (-----) [003] d..2 82318.158440: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
130265  surfaceflinger-8858  ( 8858) [001] d..2 82318.158467: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130266 [email protected]   (  619) [003] d.s4 82318.158492: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130267 [email protected]   (  619) [003] d.s5 82318.158516: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130268          <idle>-0     (-----) [000] .n.1 82318.158523: cpu_idle: state=4294967295 cpu_id=0
130269 [email protected]   (  619) [003] .... 82318.158539: binder_transaction_received: transaction=1572835
130270          <idle>-0     (-----) [000] d..2 82318.158540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130271          <idle>-0     (-----) [001] d..1 82318.158549: cpu_idle: state=0 cpu_id=1
130272 [email protected]   (  619) [003] ...1 82318.158589: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
130273  kworker/u16:13-1147  ( 1147) [000] d..2 82318.158716: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130274          <idle>-0     (-----) [000] d..1 82318.158732: cpu_idle: state=0 cpu_id=0
130275 [email protected]   (  619) [003] ...1 82318.158737: tracing_mark_write: B|619|HWCSession::PresentDisplay::
130276 [email protected]   (  619) [003] ...1 82318.158913: tracing_mark_write: B|619|HWDeviceDRM::Commit::
130277 [email protected]   (  619) [003] ...1 82318.158927: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
130278 [email protected]   (  619) [003] d..2 82318.159570: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130279 [email protected]   (  619) [003] d..3 82318.159600: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130280          <idle>-0     (-----) [000] .n.1 82318.159606: cpu_idle: state=4294967295 cpu_id=0
130281          <idle>-0     (-----) [000] d..2 82318.159620: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130282 [email protected]   (  619) [003] ...1 82318.159723: tracing_mark_write: E|619
130283 [email protected]   (  619) [003] ...1 82318.159731: tracing_mark_write: E|619
130284 [email protected]   (  619) [003] ...1 82318.159798: tracing_mark_write: E|619
130285 [email protected]   (  619) [003] ...1 82318.159848: tracing_mark_write: E|619
130286 [email protected]   (  619) [003] .... 82318.159867: binder_transaction: transaction=1572836 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
130287 [email protected]   (  619) [003] .... 82318.159873: binder_transaction_alloc_buf: transaction=1572836 data_size=576 offsets_size=112
130288 [email protected]   (  619) [003] d..2 82318.159898: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130289 [email protected]   (  619) [003] d..3 82318.159922: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130290          <idle>-0     (-----) [001] .n.1 82318.159928: cpu_idle: state=4294967295 cpu_id=1
130291 [email protected]   (  619) [003] .... 82318.159928: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
130292          <idle>-0     (-----) [001] d..2 82318.159942: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
130293  surfaceflinger-8858  ( 8858) [001] .... 82318.159954: binder_transaction_received: transaction=1572836
130294 [email protected]   (  619) [003] d..2 82318.160037: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130295          <idle>-0     (-----) [003] d..1 82318.160062: cpu_idle: state=0 cpu_id=3
130296 crtc_commit:111-321   (  321) [000] d..2 82318.160393: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
130297          <idle>-0     (-----) [000] d..1 82318.160412: cpu_idle: state=0 cpu_id=0
130298  surfaceflinger-8858  ( 8858) [001] d..2 82318.160436: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130299          <idle>-0     (-----) [001] d..1 82318.160463: cpu_idle: state=0 cpu_id=1
130300          <idle>-0     (-----) [002] d.s2 82318.161808: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130301          <idle>-0     (-----) [002] dns3 82318.161829: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130302          <idle>-0     (-----) [002] .n.1 82318.161847: cpu_idle: state=4294967295 cpu_id=2
130303          <idle>-0     (-----) [002] d..2 82318.161862: 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
130304     rcu_preempt-7     (    7) [002] d..2 82318.161872: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130305     rcu_preempt-7     (    7) [002] d..3 82318.161892: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130306     rcu_preempt-7     (    7) [002] d..2 82318.161906: 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
130307         rcuop/0-10    (   10) [002] d..2 82318.161911: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130308         rcuop/0-10    (   10) [002] d..3 82318.161927: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130309         rcuop/0-10    (   10) [002] d..2 82318.161931: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130310         rcuop/0-10    (   10) [002] d..3 82318.161943: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130311         rcuop/0-10    (   10) [002] d..2 82318.161953: 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
130312         rcuop/1-21    (   21) [002] d..2 82318.161970: 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
130313     rcu_preempt-7     (    7) [002] d..2 82318.162002: 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
130314          <idle>-0     (-----) [002] d..1 82318.162019: cpu_idle: state=0 cpu_id=2
130315          <idle>-0     (-----) [000] d.h5 82318.165556: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130316          <idle>-0     (-----) [000] d.h6 82318.165579: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130317          <idle>-0     (-----) [000] d.h5 82318.165584: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130318          <idle>-0     (-----) [002] .n.1 82318.165586: cpu_idle: state=4294967295 cpu_id=2
130319          <idle>-0     (-----) [000] dnh6 82318.165593: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130320          <idle>-0     (-----) [002] d..2 82318.165601: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130321          <idle>-0     (-----) [000] .n.1 82318.165610: cpu_idle: state=4294967295 cpu_id=0
130322          <idle>-0     (-----) [000] d..2 82318.165626: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130323  crtc_event:111-322   (  322) [002] d..2 82318.165641: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130324          <idle>-0     (-----) [002] d..2 82318.165646: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
130325          <idle>-0     (-----) [002] dn.3 82318.165660: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
130326          <idle>-0     (-----) [002] d..2 82318.165670: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
130327     ksoftirqd/2-26    (   26) [002] d..2 82318.165697: 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
130328          <idle>-0     (-----) [002] d..1 82318.165707: cpu_idle: state=0 cpu_id=2
130329 crtc_commit:111-321   (  321) [000] d..2 82318.165778: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
130330          <idle>-0     (-----) [000] d..1 82318.165792: cpu_idle: state=0 cpu_id=0
130331          <idle>-0     (-----) [000] d.h5 82318.167881: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130332          <idle>-0     (-----) [000] dnh6 82318.167894: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130333          <idle>-0     (-----) [000] .n.1 82318.167908: cpu_idle: state=4294967295 cpu_id=0
130334          <idle>-0     (-----) [000] d..2 82318.167916: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130335 crtc_commit:111-321   (  321) [000] d..2 82318.167986: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130336          <idle>-0     (-----) [000] d..1 82318.167997: cpu_idle: state=0 cpu_id=0
130337          <idle>-0     (-----) [000] d.h5 82318.168182: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130338          <idle>-0     (-----) [000] d.h6 82318.168201: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130339          <idle>-0     (-----) [002] .n.1 82318.168208: cpu_idle: state=4294967295 cpu_id=2
130340          <idle>-0     (-----) [002] d..2 82318.168217: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130341          <idle>-0     (-----) [000] ...1 82318.168228: cpu_idle: state=4294967295 cpu_id=0
130342          <idle>-0     (-----) [000] d..1 82318.168234: cpu_idle: state=0 cpu_id=0
130343  crtc_event:111-322   (  322) [002] d..2 82318.168246: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130344          <idle>-0     (-----) [002] d..1 82318.168254: cpu_idle: state=0 cpu_id=2
130345          <idle>-0     (-----) [002] d.s2 82318.168477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130346          <idle>-0     (-----) [000] d.s3 82318.168478: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130347          <idle>-0     (-----) [000] d.s4 82318.168498: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130348          <idle>-0     (-----) [002] dns3 82318.168507: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130349          <idle>-0     (-----) [000] d.s3 82318.168514: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130350          <idle>-0     (-----) [002] .n.1 82318.168525: cpu_idle: state=4294967295 cpu_id=2
130351          <idle>-0     (-----) [002] d..2 82318.168534: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130352          <idle>-0     (-----) [000] dns4 82318.168537: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130353  crtc_event:111-322   (  322) [002] d..2 82318.168554: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
130354          <idle>-0     (-----) [000] .n.1 82318.168563: cpu_idle: state=4294967295 cpu_id=0
130355          <idle>-0     (-----) [000] d..2 82318.168576: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130356     rcu_preempt-7     (    7) [002] d..2 82318.168589: 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
130357          <idle>-0     (-----) [002] d..1 82318.168630: cpu_idle: state=0 cpu_id=2
130358          <idle>-0     (-----) [002] ...1 82318.168646: cpu_idle: state=4294967295 cpu_id=2
130359          <idle>-0     (-----) [002] d..1 82318.168652: cpu_idle: state=0 cpu_id=2
130360  kworker/u16:13-1147  ( 1147) [000] d..2 82318.168780: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130361          <idle>-0     (-----) [000] d..1 82318.168799: cpu_idle: state=0 cpu_id=0
130362          <idle>-0     (-----) [003] d.h2 82318.169959: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
130363          <idle>-0     (-----) [003] dnh3 82318.169977: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
130364          <idle>-0     (-----) [003] .n.1 82318.169987: cpu_idle: state=4294967295 cpu_id=3
130365          <idle>-0     (-----) [003] d..2 82318.170001: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
130366        DispSync-8879  ( 8858) [003] d..1 82318.170024: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
130367        DispSync-8879  ( 8858) [003] d..2 82318.170041: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
130368          <idle>-0     (-----) [001] .n.1 82318.170049: cpu_idle: state=4294967295 cpu_id=1
130369          <idle>-0     (-----) [001] d..2 82318.170065: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
130370        DispSync-8879  ( 8858) [003] d..2 82318.170084: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130371          <idle>-0     (-----) [003] d..1 82318.170101: cpu_idle: state=0 cpu_id=3
130372  appEventThread-8881  ( 8858) [001] d..3 82318.170115: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130373          <idle>-0     (-----) [004] dnh2 82318.170146: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130374          <idle>-0     (-----) [004] .n.1 82318.170151: cpu_idle: state=4294967295 cpu_id=4
130375          <idle>-0     (-----) [004] d..2 82318.170160: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
130376  appEventThread-8881  ( 8858) [001] d..2 82318.170184: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130377          <idle>-0     (-----) [001] d..1 82318.170204: cpu_idle: state=0 cpu_id=1
130378 s.nexuslauncher-10023 (10023) [004] .... 82318.170373: binder_transaction: transaction=1572837 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
130379 s.nexuslauncher-10023 (10023) [004] .... 82318.170379: binder_transaction_alloc_buf: transaction=1572837 data_size=80 offsets_size=0
130380 s.nexuslauncher-10023 (10023) [004] d..4 82318.170384: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
130381          <idle>-0     (-----) [000] dnh2 82318.170454: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
130382          <idle>-0     (-----) [000] .n.1 82318.170461: cpu_idle: state=4294967295 cpu_id=0
130383          <idle>-0     (-----) [000] d..2 82318.170475: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
130384 s.nexuslauncher-10023 (10023) [004] d..3 82318.170475: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130385   Binder:8858_1-8871  ( 8858) [000] .... 82318.170485: binder_transaction_received: transaction=1572837
130386 s.nexuslauncher-10023 (10023) [004] d..4 82318.170491: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130387          <idle>-0     (-----) [005] .n.1 82318.170499: cpu_idle: state=4294967295 cpu_id=5
130388          <idle>-0     (-----) [005] d..2 82318.170513: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130389   Binder:8858_1-8871  ( 8858) [000] d..1 82318.170530: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
130390   Binder:8858_1-8871  ( 8858) [000] d..2 82318.170553: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
130391    RenderThread-16607 (10023) [005] d..2 82318.170556: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130392          <idle>-0     (-----) [001] .n.1 82318.170560: cpu_idle: state=4294967295 cpu_id=1
130393          <idle>-0     (-----) [005] d..1 82318.170568: cpu_idle: state=0 cpu_id=5
130394          <idle>-0     (-----) [001] d..2 82318.170573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
130395   Binder:8858_1-8871  ( 8858) [000] d..2 82318.170606: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130396  appEventThread-8881  ( 8858) [001] d..2 82318.170622: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130397          <idle>-0     (-----) [000] d..1 82318.170625: cpu_idle: state=0 cpu_id=0
130398          <idle>-0     (-----) [001] d..1 82318.170635: cpu_idle: state=0 cpu_id=1
130399 s.nexuslauncher-10023 (10023) [004] d..3 82318.170725: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130400 s.nexuslauncher-10023 (10023) [004] d..4 82318.170744: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130401          <idle>-0     (-----) [005] .n.1 82318.170748: cpu_idle: state=4294967295 cpu_id=5
130402          <idle>-0     (-----) [005] d..2 82318.170757: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130403 s.nexuslauncher-10023 (10023) [004] d..2 82318.170769: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
130404          <idle>-0     (-----) [004] d..1 82318.170787: cpu_idle: state=0 cpu_id=4
130405    RenderThread-16607 (10023) [005] d..1 82318.170908: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130406    RenderThread-16607 (10023) [005] d..2 82318.170925: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130407          <idle>-0     (-----) [004] .n.1 82318.170931: cpu_idle: state=4294967295 cpu_id=4
130408          <idle>-0     (-----) [004] d..2 82318.170941: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
130409    RenderThread-16607 (10023) [005] .... 82318.170972: binder_transaction: transaction=1572838 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
130410    RenderThread-16607 (10023) [005] .... 82318.170977: binder_transaction_alloc_buf: transaction=1572838 data_size=104 offsets_size=0
130411    RenderThread-16607 (10023) [005] ...2 82318.170981: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
130412    RenderThread-16607 (10023) [005] d..4 82318.170984: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
130413    RenderThread-16607 (10023) [005] d..5 82318.171005: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130414 s.nexuslauncher-10023 (10023) [004] d..2 82318.171050: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
130415    RenderThread-16607 (10023) [005] d..2 82318.171053: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130416          <idle>-0     (-----) [004] d..1 82318.171061: cpu_idle: state=0 cpu_id=4
130417   Binder:8858_1-8871  ( 8858) [005] .... 82318.171064: binder_transaction_received: transaction=1572838
130418   Binder:8858_1-8871  ( 8858) [005] .... 82318.171119: binder_transaction: transaction=1572839 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
130419   Binder:8858_1-8871  ( 8858) [005] .... 82318.171122: binder_transaction_alloc_buf: transaction=1572839 data_size=52 offsets_size=8
130420   Binder:8858_1-8871  ( 8858) [005] d..2 82318.171130: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130421   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.171141: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130422   Binder:8858_1-8871  ( 8858) [005] d..2 82318.171147: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
130423    RenderThread-16607 (10023) [005] .... 82318.171156: binder_transaction_received: transaction=1572839
130424    RenderThread-16607 (10023) [005] d..2 82318.172494: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130425   Binder:8858_1-8871  ( 8858) [005] .... 82318.172507: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
130426   Binder:8858_1-8871  ( 8858) [005] d..2 82318.172580: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130427          <idle>-0     (-----) [005] d.h3 82318.172592: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130428          <idle>-0     (-----) [005] d.h4 82318.172599: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
130429          <idle>-0     (-----) [005] dnh4 82318.172602: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130430          <idle>-0     (-----) [005] d..2 82318.172613: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130431    RenderThread-16607 (10023) [005] .... 82318.172765: binder_transaction: transaction=1572840 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
130432    RenderThread-16607 (10023) [005] .... 82318.172770: binder_transaction_alloc_buf: transaction=1572840 data_size=192 offsets_size=8
130433    RenderThread-16607 (10023) [005] ...2 82318.172777: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
130434    RenderThread-16607 (10023) [005] d..4 82318.172779: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130435    RenderThread-16607 (10023) [005] d..5 82318.172791: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130436    RenderThread-16607 (10023) [005] d..2 82318.172803: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130437   Binder:8858_1-8871  ( 8858) [005] .... 82318.172813: binder_transaction_received: transaction=1572840
130438   Binder:8858_1-8871  ( 8858) [005] .... 82318.172933: binder_transaction: transaction=1572841 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
130439   Binder:8858_1-8871  ( 8858) [005] .... 82318.172937: binder_transaction_alloc_buf: transaction=1572841 data_size=68 offsets_size=0
130440   Binder:8858_1-8871  ( 8858) [005] d..2 82318.172940: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130441   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.172951: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130442   Binder:8858_1-8871  ( 8858) [005] d..2 82318.172957: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
130443    RenderThread-16607 (10023) [005] .... 82318.172966: binder_transaction_received: transaction=1572841
130444    RenderThread-16607 (10023) [005] d..2 82318.173030: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130445   Binder:8858_1-8871  ( 8858) [005] .... 82318.173038: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
130446   Binder:8858_1-8871  ( 8858) [005] d..2 82318.173087: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130447          <idle>-0     (-----) [005] d..1 82318.173104: cpu_idle: state=0 cpu_id=5
130448          <idle>-0     (-----) [000] d.h3 82318.173921: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
130449          <idle>-0     (-----) [000] dnh4 82318.173941: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
130450          <idle>-0     (-----) [000] .n.1 82318.173955: cpu_idle: state=4294967295 cpu_id=0
130451          <idle>-0     (-----) [003] d.h2 82318.173961: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
130452          <idle>-0     (-----) [000] d..2 82318.173969: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
130453          <idle>-0     (-----) [003] dnh3 82318.173977: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
130454          <idle>-0     (-----) [003] .n.1 82318.173987: cpu_idle: state=4294967295 cpu_id=3
130455          <idle>-0     (-----) [003] d..2 82318.173999: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
130456        DispSync-8879  ( 8858) [003] d..1 82318.174013: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130457 kgsl_worker_thr-258   (  258) [000] d..2 82318.174025: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130458        DispSync-8879  ( 8858) [003] d..2 82318.174028: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130459          <idle>-0     (-----) [002] .n.1 82318.174034: cpu_idle: state=4294967295 cpu_id=2
130460          <idle>-0     (-----) [002] d..2 82318.174048: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
130461 kgsl_worker_thr-258   (  258) [000] d..3 82318.174050: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130462        DispSync-8879  ( 8858) [003] d..2 82318.174072: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130463 kgsl_worker_thr-258   (  258) [000] d..2 82318.174077: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130464          <idle>-0     (-----) [003] d..1 82318.174088: cpu_idle: state=0 cpu_id=3
130465   sfEventThread-8882  ( 8858) [002] d..3 82318.174092: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130466   sfEventThread-8882  ( 8858) [002] d..4 82318.174115: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130467          <idle>-0     (-----) [001] .n.1 82318.174121: cpu_idle: state=4294967295 cpu_id=1
130468          <idle>-0     (-----) [001] d..2 82318.174134: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
130469   sfEventThread-8882  ( 8858) [002] d..2 82318.174157: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130470          <idle>-0     (-----) [002] d..1 82318.174170: cpu_idle: state=0 cpu_id=2
130471  kworker/u16:13-1147  ( 1147) [000] d..2 82318.174256: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130472          <idle>-0     (-----) [000] d..1 82318.174276: cpu_idle: state=0 cpu_id=0
130473  surfaceflinger-8858  ( 8858) [001] d..1 82318.174503: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130474  surfaceflinger-8858  ( 8858) [001] d..2 82318.174531: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130475          <idle>-0     (-----) [002] .n.1 82318.174537: cpu_idle: state=4294967295 cpu_id=2
130476          <idle>-0     (-----) [002] d..2 82318.174547: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
130477   sfEventThread-8882  ( 8858) [002] d..2 82318.174587: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130478          <idle>-0     (-----) [002] d..1 82318.174596: cpu_idle: state=0 cpu_id=2
130479  surfaceflinger-8858  ( 8858) [001] ...1 82318.174750: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
130480  surfaceflinger-8858  ( 8858) [001] ...1 82318.174759: tracing_mark_write: E|8858
130481  surfaceflinger-8858  ( 8858) [001] .... 82318.174825: binder_transaction: transaction=1572842 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
130482  surfaceflinger-8858  ( 8858) [001] .... 82318.174832: binder_transaction_alloc_buf: transaction=1572842 data_size=540 offsets_size=96
130483  surfaceflinger-8858  ( 8858) [001] ...2 82318.174860: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
130484  surfaceflinger-8858  ( 8858) [001] d..4 82318.174868: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
130485  surfaceflinger-8858  ( 8858) [001] d..5 82318.174895: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
130486          <idle>-0     (-----) [003] .n.1 82318.174900: cpu_idle: state=4294967295 cpu_id=3
130487          <idle>-0     (-----) [003] d..2 82318.174913: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
130488 [email protected]   (  619) [003] .... 82318.174926: binder_transaction_received: transaction=1572842
130489  surfaceflinger-8858  ( 8858) [001] d..2 82318.174936: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130490          <idle>-0     (-----) [001] d..1 82318.174961: cpu_idle: state=0 cpu_id=1
130491 [email protected]   (  619) [003] ...1 82318.174975: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
130492 [email protected]   (  619) [003] ...1 82318.175093: tracing_mark_write: B|619|HWCSession::PresentDisplay::
130493          <idle>-0     (-----) [002] d.s2 82318.175140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130494          <idle>-0     (-----) [002] dns3 82318.175164: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130495          <idle>-0     (-----) [002] .n.1 82318.175183: cpu_idle: state=4294967295 cpu_id=2
130496          <idle>-0     (-----) [002] d..2 82318.175195: 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
130497     rcu_preempt-7     (    7) [002] d..2 82318.175207: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130498     rcu_preempt-7     (    7) [002] d..3 82318.175227: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130499     rcu_preempt-7     (    7) [002] d..2 82318.175242: 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
130500         rcuop/0-10    (   10) [002] d..2 82318.175248: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130501         rcuop/0-10    (   10) [002] d..3 82318.175265: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130502         rcuop/0-10    (   10) [002] d..2 82318.175269: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130503         rcuop/0-10    (   10) [002] d..3 82318.175282: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130504         rcuop/0-10    (   10) [002] d..2 82318.175292: 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
130505         rcuop/1-21    (   21) [002] d..2 82318.175308: 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
130506     rcu_preempt-7     (    7) [002] d..2 82318.175338: 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
130507 [email protected]   (  619) [003] ...1 82318.175339: tracing_mark_write: B|619|HWDeviceDRM::Commit::
130508 [email protected]   (  619) [003] ...1 82318.175356: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
130509          <idle>-0     (-----) [002] d..1 82318.175356: cpu_idle: state=0 cpu_id=2
130510 [email protected]   (  619) [003] d..2 82318.176021: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130511 [email protected]   (  619) [003] d..3 82318.176053: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130512          <idle>-0     (-----) [000] .n.1 82318.176060: cpu_idle: state=4294967295 cpu_id=0
130513          <idle>-0     (-----) [000] d..2 82318.176074: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130514 [email protected]   (  619) [003] ...1 82318.176178: tracing_mark_write: E|619
130515 [email protected]   (  619) [003] ...1 82318.176186: tracing_mark_write: E|619
130516 [email protected]   (  619) [003] ...1 82318.176252: tracing_mark_write: E|619
130517 [email protected]   (  619) [003] ...1 82318.176301: tracing_mark_write: E|619
130518 [email protected]   (  619) [003] .... 82318.176320: binder_transaction: transaction=1572843 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
130519 [email protected]   (  619) [003] .... 82318.176326: binder_transaction_alloc_buf: transaction=1572843 data_size=576 offsets_size=112
130520 [email protected]   (  619) [003] d..2 82318.176352: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130521 [email protected]   (  619) [003] d..3 82318.176376: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130522 [email protected]   (  619) [003] .... 82318.176383: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
130523          <idle>-0     (-----) [001] .n.1 82318.176383: cpu_idle: state=4294967295 cpu_id=1
130524          <idle>-0     (-----) [001] d..2 82318.176398: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
130525  surfaceflinger-8858  ( 8858) [001] .... 82318.176410: binder_transaction_received: transaction=1572843
130526 [email protected]   (  619) [003] d..2 82318.176492: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130527          <idle>-0     (-----) [003] d..1 82318.176517: cpu_idle: state=0 cpu_id=3
130528 crtc_commit:111-321   (  321) [000] d..2 82318.176856: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
130529          <idle>-0     (-----) [000] d..1 82318.176875: cpu_idle: state=0 cpu_id=0
130530  surfaceflinger-8858  ( 8858) [001] d..2 82318.176894: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130531          <idle>-0     (-----) [001] d..1 82318.176919: cpu_idle: state=0 cpu_id=1
130532          <idle>-0     (-----) [002] d.s2 82318.181806: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130533          <idle>-0     (-----) [002] dns3 82318.181826: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130534          <idle>-0     (-----) [002] dns3 82318.181832: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130535          <idle>-0     (-----) [002] dns4 82318.181875: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
130536          <idle>-0     (-----) [002] .n.1 82318.181890: cpu_idle: state=4294967295 cpu_id=2
130537          <idle>-0     (-----) [002] d..2 82318.181905: 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
130538     rcu_preempt-7     (    7) [002] d..2 82318.181918: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130539     rcu_preempt-7     (    7) [002] d..3 82318.181934: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130540     rcu_preempt-7     (    7) [002] d..2 82318.181946: 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
130541         rcuop/0-10    (   10) [002] d..2 82318.181951: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130542         rcuop/0-10    (   10) [002] d..3 82318.181965: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130543         rcuop/0-10    (   10) [002] d..2 82318.181969: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130544         rcuop/0-10    (   10) [002] d..3 82318.181981: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130545         rcuop/0-10    (   10) [002] d..2 82318.181991: 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
130546         rcuop/1-21    (   21) [002] d..2 82318.182003: 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
130547          <idle>-0     (-----) [000] d.h5 82318.182016: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
130548     rcu_preempt-7     (    7) [002] d..2 82318.182016: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130549          <idle>-0     (-----) [000] dnh6 82318.182047: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130550          <idle>-0     (-----) [000] dnh5 82318.182052: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
130551          <idle>-0     (-----) [000] dnh6 82318.182073: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130552          <idle>-0     (-----) [001] .n.1 82318.182081: cpu_idle: state=4294967295 cpu_id=1
130553          <idle>-0     (-----) [000] .n.1 82318.182089: cpu_idle: state=4294967295 cpu_id=0
130554          <idle>-0     (-----) [001] d..2 82318.182097: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130555          <idle>-0     (-----) [000] d..2 82318.182117: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130556  crtc_event:111-322   (  322) [000] d..2 82318.182163: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130557          <idle>-0     (-----) [000] d..1 82318.182179: cpu_idle: state=0 cpu_id=0
130558  kworker/u16:13-1147  ( 1147) [002] d..2 82318.182197: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130559          <idle>-0     (-----) [002] d..1 82318.182218: cpu_idle: state=0 cpu_id=2
130560 crtc_commit:111-321   (  321) [001] d..2 82318.182287: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
130561          <idle>-0     (-----) [001] d..1 82318.182300: cpu_idle: state=0 cpu_id=1
130562          <idle>-0     (-----) [000] d.h5 82318.184344: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130563          <idle>-0     (-----) [000] d.h6 82318.184365: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130564          <idle>-0     (-----) [001] .n.1 82318.184371: cpu_idle: state=4294967295 cpu_id=1
130565          <idle>-0     (-----) [000] ...1 82318.184380: cpu_idle: state=4294967295 cpu_id=0
130566          <idle>-0     (-----) [001] d..2 82318.184380: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130567          <idle>-0     (-----) [000] d..1 82318.184387: cpu_idle: state=0 cpu_id=0
130568 crtc_commit:111-321   (  321) [001] d..2 82318.184458: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130569          <idle>-0     (-----) [001] d..1 82318.184469: cpu_idle: state=0 cpu_id=1
130570          <idle>-0     (-----) [000] d.h5 82318.184647: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130571          <idle>-0     (-----) [000] dnh6 82318.184659: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130572          <idle>-0     (-----) [000] .n.1 82318.184674: cpu_idle: state=4294967295 cpu_id=0
130573          <idle>-0     (-----) [000] d..2 82318.184686: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130574  crtc_event:111-322   (  322) [000] d..2 82318.184714: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130575          <idle>-0     (-----) [000] d..1 82318.184727: cpu_idle: state=0 cpu_id=0
130576          <idle>-0     (-----) [001] d.s3 82318.185147: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130577          <idle>-0     (-----) [001] d.s4 82318.185174: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130578          <idle>-0     (-----) [000] .n.1 82318.185177: cpu_idle: state=4294967295 cpu_id=0
130579          <idle>-0     (-----) [000] d..2 82318.185191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130580          <idle>-0     (-----) [001] ...1 82318.185208: cpu_idle: state=4294967295 cpu_id=1
130581          <idle>-0     (-----) [001] d..1 82318.185216: cpu_idle: state=0 cpu_id=1
130582  crtc_event:111-322   (  322) [000] d..2 82318.185227: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130583          <idle>-0     (-----) [000] d..1 82318.185238: cpu_idle: state=0 cpu_id=0
130584          <idle>-0     (-----) [003] d.h2 82318.186425: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
130585          <idle>-0     (-----) [003] dnh3 82318.186443: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
130586          <idle>-0     (-----) [003] .n.1 82318.186454: cpu_idle: state=4294967295 cpu_id=3
130587          <idle>-0     (-----) [003] d..2 82318.186467: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
130588        DispSync-8879  ( 8858) [003] d..1 82318.186489: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
130589        DispSync-8879  ( 8858) [003] d..2 82318.186509: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
130590          <idle>-0     (-----) [001] .n.1 82318.186515: cpu_idle: state=4294967295 cpu_id=1
130591          <idle>-0     (-----) [001] d..2 82318.186528: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
130592        DispSync-8879  ( 8858) [003] d..2 82318.186550: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130593          <idle>-0     (-----) [003] d..1 82318.186567: cpu_idle: state=0 cpu_id=3
130594  appEventThread-8881  ( 8858) [001] d..3 82318.186583: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130595          <idle>-0     (-----) [004] dnh2 82318.186616: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130596          <idle>-0     (-----) [004] .n.1 82318.186621: cpu_idle: state=4294967295 cpu_id=4
130597          <idle>-0     (-----) [004] d..2 82318.186629: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
130598  appEventThread-8881  ( 8858) [001] d..2 82318.186653: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130599          <idle>-0     (-----) [001] d..1 82318.186671: cpu_idle: state=0 cpu_id=1
130600 s.nexuslauncher-10023 (10023) [004] .... 82318.186841: binder_transaction: transaction=1572844 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
130601 s.nexuslauncher-10023 (10023) [004] .... 82318.186847: binder_transaction_alloc_buf: transaction=1572844 data_size=80 offsets_size=0
130602 s.nexuslauncher-10023 (10023) [004] d..4 82318.186852: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
130603          <idle>-0     (-----) [000] dnh2 82318.186919: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
130604          <idle>-0     (-----) [000] .n.1 82318.186926: cpu_idle: state=4294967295 cpu_id=0
130605          <idle>-0     (-----) [000] d..2 82318.186939: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
130606 s.nexuslauncher-10023 (10023) [004] d..3 82318.186940: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130607   Binder:8858_1-8871  ( 8858) [000] .... 82318.186949: binder_transaction_received: transaction=1572844
130608 s.nexuslauncher-10023 (10023) [004] d..4 82318.186955: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130609          <idle>-0     (-----) [005] .n.1 82318.186963: cpu_idle: state=4294967295 cpu_id=5
130610          <idle>-0     (-----) [005] d..2 82318.186977: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130611   Binder:8858_1-8871  ( 8858) [000] d..1 82318.186991: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
130612   Binder:8858_1-8871  ( 8858) [000] d..2 82318.187012: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
130613          <idle>-0     (-----) [001] .n.1 82318.187019: cpu_idle: state=4294967295 cpu_id=1
130614    RenderThread-16607 (10023) [005] d..2 82318.187025: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130615          <idle>-0     (-----) [001] d..2 82318.187032: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
130616          <idle>-0     (-----) [005] d..1 82318.187037: cpu_idle: state=0 cpu_id=5
130617   Binder:8858_1-8871  ( 8858) [000] d..2 82318.187068: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130618  appEventThread-8881  ( 8858) [001] d..2 82318.187079: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130619          <idle>-0     (-----) [000] d..1 82318.187086: cpu_idle: state=0 cpu_id=0
130620          <idle>-0     (-----) [001] d..1 82318.187093: cpu_idle: state=0 cpu_id=1
130621 s.nexuslauncher-10023 (10023) [004] d..3 82318.187200: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130622 s.nexuslauncher-10023 (10023) [004] d..4 82318.187218: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130623          <idle>-0     (-----) [005] .n.1 82318.187222: cpu_idle: state=4294967295 cpu_id=5
130624          <idle>-0     (-----) [005] d..2 82318.187231: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130625 s.nexuslauncher-10023 (10023) [004] d..2 82318.187245: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
130626          <idle>-0     (-----) [004] d..1 82318.187262: cpu_idle: state=0 cpu_id=4
130627    RenderThread-16607 (10023) [005] d..1 82318.187374: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130628    RenderThread-16607 (10023) [005] d..2 82318.187390: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130629          <idle>-0     (-----) [004] .n.1 82318.187397: cpu_idle: state=4294967295 cpu_id=4
130630          <idle>-0     (-----) [004] d..2 82318.187406: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
130631    RenderThread-16607 (10023) [005] .... 82318.187439: binder_transaction: transaction=1572845 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
130632    RenderThread-16607 (10023) [005] .... 82318.187444: binder_transaction_alloc_buf: transaction=1572845 data_size=104 offsets_size=0
130633    RenderThread-16607 (10023) [005] ...2 82318.187448: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
130634    RenderThread-16607 (10023) [005] d..4 82318.187452: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
130635    RenderThread-16607 (10023) [005] d..5 82318.187474: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130636 s.nexuslauncher-10023 (10023) [004] d..2 82318.187519: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
130637    RenderThread-16607 (10023) [005] d..2 82318.187521: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130638          <idle>-0     (-----) [004] d..1 82318.187530: cpu_idle: state=0 cpu_id=4
130639   Binder:8858_1-8871  ( 8858) [005] .... 82318.187532: binder_transaction_received: transaction=1572845
130640   Binder:8858_1-8871  ( 8858) [005] .... 82318.187590: binder_transaction: transaction=1572846 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
130641   Binder:8858_1-8871  ( 8858) [005] .... 82318.187595: binder_transaction_alloc_buf: transaction=1572846 data_size=52 offsets_size=8
130642   Binder:8858_1-8871  ( 8858) [005] d..2 82318.187602: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130643   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.187613: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130644   Binder:8858_1-8871  ( 8858) [005] d..2 82318.187619: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
130645    RenderThread-16607 (10023) [005] .... 82318.187628: binder_transaction_received: transaction=1572846
130646          <idle>-0     (-----) [002] d.s2 82318.188477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130647          <idle>-0     (-----) [002] dns3 82318.188500: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130648          <idle>-0     (-----) [002] .n.1 82318.188523: cpu_idle: state=4294967295 cpu_id=2
130649          <idle>-0     (-----) [002] d..2 82318.188539: 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
130650     rcu_preempt-7     (    7) [002] d..2 82318.188577: 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
130651          <idle>-0     (-----) [002] d..1 82318.188592: cpu_idle: state=0 cpu_id=2
130652    RenderThread-16607 (10023) [005] d..2 82318.188894: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130653   Binder:8858_1-8871  ( 8858) [005] .... 82318.188907: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
130654   Binder:8858_1-8871  ( 8858) [005] d..2 82318.188976: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130655          <idle>-0     (-----) [005] d.h2 82318.188992: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130656          <idle>-0     (-----) [005] d.h3 82318.188999: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
130657          <idle>-0     (-----) [005] dnh3 82318.189003: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130658          <idle>-0     (-----) [005] d..2 82318.189016: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130659    RenderThread-16607 (10023) [005] .... 82318.189170: binder_transaction: transaction=1572847 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
130660    RenderThread-16607 (10023) [005] .... 82318.189174: binder_transaction_alloc_buf: transaction=1572847 data_size=192 offsets_size=8
130661    RenderThread-16607 (10023) [005] ...2 82318.189181: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
130662    RenderThread-16607 (10023) [005] d..4 82318.189184: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130663    RenderThread-16607 (10023) [005] d..5 82318.189196: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130664    RenderThread-16607 (10023) [005] d..2 82318.189208: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130665   Binder:8858_1-8871  ( 8858) [005] .... 82318.189218: binder_transaction_received: transaction=1572847
130666   Binder:8858_1-8871  ( 8858) [005] .... 82318.189338: binder_transaction: transaction=1572848 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
130667   Binder:8858_1-8871  ( 8858) [005] .... 82318.189342: binder_transaction_alloc_buf: transaction=1572848 data_size=68 offsets_size=0
130668   Binder:8858_1-8871  ( 8858) [005] d..2 82318.189344: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130669   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.189355: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130670   Binder:8858_1-8871  ( 8858) [005] d..2 82318.189362: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
130671    RenderThread-16607 (10023) [005] .... 82318.189371: binder_transaction_received: transaction=1572848
130672    RenderThread-16607 (10023) [005] d..2 82318.189435: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130673   Binder:8858_1-8871  ( 8858) [005] .... 82318.189443: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
130674   Binder:8858_1-8871  ( 8858) [005] d..2 82318.189492: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130675          <idle>-0     (-----) [005] d..1 82318.189509: cpu_idle: state=0 cpu_id=5
130676          <idle>-0     (-----) [000] d.h3 82318.190324: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
130677          <idle>-0     (-----) [000] dnh4 82318.190340: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
130678          <idle>-0     (-----) [000] .n.1 82318.190354: cpu_idle: state=4294967295 cpu_id=0
130679          <idle>-0     (-----) [000] d..2 82318.190369: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
130680 kgsl_worker_thr-258   (  258) [000] d..2 82318.190426: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
130681          <idle>-0     (-----) [003] d.h2 82318.190427: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
130682          <idle>-0     (-----) [003] dnh3 82318.190442: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
130683          <idle>-0     (-----) [003] .n.1 82318.190451: cpu_idle: state=4294967295 cpu_id=3
130684          <idle>-0     (-----) [003] d..2 82318.190463: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
130685        DispSync-8879  ( 8858) [003] d..1 82318.190477: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130686 kgsl_worker_thr-258   (  258) [000] d..3 82318.190480: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130687        DispSync-8879  ( 8858) [003] d..2 82318.190493: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130688          <idle>-0     (-----) [002] .n.1 82318.190500: cpu_idle: state=4294967295 cpu_id=2
130689 kgsl_worker_thr-258   (  258) [000] d..2 82318.190507: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130690          <idle>-0     (-----) [002] d..2 82318.190512: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
130691        DispSync-8879  ( 8858) [003] d..2 82318.190531: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130692          <idle>-0     (-----) [003] d..1 82318.190546: cpu_idle: state=0 cpu_id=3
130693   sfEventThread-8882  ( 8858) [002] d..3 82318.190555: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130694   sfEventThread-8882  ( 8858) [002] d..4 82318.190577: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130695          <idle>-0     (-----) [001] .n.1 82318.190583: cpu_idle: state=4294967295 cpu_id=1
130696          <idle>-0     (-----) [001] d..2 82318.190596: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
130697   sfEventThread-8882  ( 8858) [002] d..2 82318.190619: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130698          <idle>-0     (-----) [002] d..1 82318.190636: cpu_idle: state=0 cpu_id=2
130699  kworker/u16:13-1147  ( 1147) [000] d..2 82318.190679: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130700          <idle>-0     (-----) [000] d..1 82318.190699: cpu_idle: state=0 cpu_id=0
130701  surfaceflinger-8858  ( 8858) [001] d..1 82318.190978: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130702  surfaceflinger-8858  ( 8858) [001] d..2 82318.191006: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130703          <idle>-0     (-----) [002] .n.1 82318.191012: cpu_idle: state=4294967295 cpu_id=2
130704          <idle>-0     (-----) [002] d..2 82318.191025: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
130705   sfEventThread-8882  ( 8858) [002] d..2 82318.191065: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130706          <idle>-0     (-----) [002] d..1 82318.191078: cpu_idle: state=0 cpu_id=2
130707  surfaceflinger-8858  ( 8858) [001] ...1 82318.191228: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
130708  surfaceflinger-8858  ( 8858) [001] ...1 82318.191237: tracing_mark_write: E|8858
130709  surfaceflinger-8858  ( 8858) [001] .... 82318.191304: binder_transaction: transaction=1572849 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
130710  surfaceflinger-8858  ( 8858) [001] .... 82318.191311: binder_transaction_alloc_buf: transaction=1572849 data_size=540 offsets_size=96
130711  surfaceflinger-8858  ( 8858) [001] ...2 82318.191339: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
130712  surfaceflinger-8858  ( 8858) [001] d..4 82318.191347: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
130713  surfaceflinger-8858  ( 8858) [001] d..5 82318.191373: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
130714          <idle>-0     (-----) [003] .n.1 82318.191378: cpu_idle: state=4294967295 cpu_id=3
130715          <idle>-0     (-----) [003] d..2 82318.191391: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
130716 [email protected]   (  619) [003] .... 82318.191402: binder_transaction_received: transaction=1572849
130717  surfaceflinger-8858  ( 8858) [001] d..2 82318.191414: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130718          <idle>-0     (-----) [001] d..1 82318.191439: cpu_idle: state=0 cpu_id=1
130719 [email protected]   (  619) [003] ...1 82318.191450: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
130720 [email protected]   (  619) [003] ...1 82318.191569: tracing_mark_write: B|619|HWCSession::PresentDisplay::
130721 [email protected]   (  619) [003] ...1 82318.191759: tracing_mark_write: B|619|HWDeviceDRM::Commit::
130722 [email protected]   (  619) [003] d.s2 82318.191905: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130723 [email protected]   (  619) [003] d.s3 82318.191931: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130724          <idle>-0     (-----) [000] .n.1 82318.191937: cpu_idle: state=4294967295 cpu_id=0
130725          <idle>-0     (-----) [000] d..2 82318.191955: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130726 [email protected]   (  619) [003] ...1 82318.191959: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
130727  kworker/u16:13-1147  ( 1147) [000] d..2 82318.192132: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130728          <idle>-0     (-----) [000] d..1 82318.192149: cpu_idle: state=0 cpu_id=0
130729 [email protected]   (  619) [003] d..2 82318.192659: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130730 [email protected]   (  619) [003] d..3 82318.192691: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130731          <idle>-0     (-----) [001] .n.1 82318.192698: cpu_idle: state=4294967295 cpu_id=1
130732          <idle>-0     (-----) [001] d..2 82318.192713: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130733 [email protected]   (  619) [003] ...1 82318.192813: tracing_mark_write: E|619
130734 [email protected]   (  619) [003] ...1 82318.192822: tracing_mark_write: E|619
130735 [email protected]   (  619) [003] ...1 82318.192887: tracing_mark_write: E|619
130736 [email protected]   (  619) [003] ...1 82318.192937: tracing_mark_write: E|619
130737 [email protected]   (  619) [003] .... 82318.192956: binder_transaction: transaction=1572850 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
130738 [email protected]   (  619) [003] .... 82318.192962: binder_transaction_alloc_buf: transaction=1572850 data_size=576 offsets_size=112
130739 [email protected]   (  619) [003] d..2 82318.192987: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
130740 [email protected]   (  619) [003] d..3 82318.193022: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
130741          <idle>-0     (-----) [002] .n.1 82318.193027: cpu_idle: state=4294967295 cpu_id=2
130742 [email protected]   (  619) [003] .... 82318.193028: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
130743          <idle>-0     (-----) [002] d..2 82318.193040: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
130744  surfaceflinger-8858  ( 8858) [002] .... 82318.193052: binder_transaction_received: transaction=1572850
130745 [email protected]   (  619) [003] d..2 82318.193136: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130746          <idle>-0     (-----) [003] d..1 82318.193161: cpu_idle: state=0 cpu_id=3
130747  surfaceflinger-8858  ( 8858) [002] d..2 82318.193339: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
130748  surfaceflinger-8858  ( 8858) [002] d..3 82318.193401: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
130749 crtc_commit:111-321   (  321) [001] d..2 82318.193484: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
130750         rcuop/2-29    (   29) [001] d..2 82318.193522: 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
130751          <idle>-0     (-----) [001] d..1 82318.193546: cpu_idle: state=0 cpu_id=1
130752  surfaceflinger-8858  ( 8858) [002] d..2 82318.193716: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130753          <idle>-0     (-----) [002] d..1 82318.193742: cpu_idle: state=0 cpu_id=2
130754          <idle>-0     (-----) [002] d.s2 82318.195147: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130755          <idle>-0     (-----) [002] dns3 82318.195171: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130756          <idle>-0     (-----) [002] .n.1 82318.195182: cpu_idle: state=4294967295 cpu_id=2
130757          <idle>-0     (-----) [002] d..2 82318.195194: 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
130758     rcu_preempt-7     (    7) [002] d..2 82318.195204: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130759     rcu_preempt-7     (    7) [002] d..3 82318.195224: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
130760     rcu_preempt-7     (    7) [002] d..2 82318.195242: 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
130761         rcuop/0-10    (   10) [002] d..2 82318.195247: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130762         rcuop/0-10    (   10) [002] d..3 82318.195263: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
130763         rcuop/0-10    (   10) [002] d..2 82318.195275: 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
130764         rcuop/1-21    (   21) [002] d..2 82318.195311: 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
130765          <idle>-0     (-----) [002] d..1 82318.195329: cpu_idle: state=0 cpu_id=2
130766          <idle>-0     (-----) [001] ...1 82318.195448: cpu_idle: state=4294967295 cpu_id=1
130767          <idle>-0     (-----) [001] d..1 82318.195454: cpu_idle: state=0 cpu_id=1
130768          <idle>-0     (-----) [000] d.h5 82318.198490: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130769          <idle>-0     (-----) [000] dnh6 82318.198510: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130770          <idle>-0     (-----) [000] dnh5 82318.198515: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130771          <idle>-0     (-----) [000] dnh6 82318.198530: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130772          <idle>-0     (-----) [001] .n.1 82318.198535: cpu_idle: state=4294967295 cpu_id=1
130773          <idle>-0     (-----) [000] .n.1 82318.198547: cpu_idle: state=4294967295 cpu_id=0
130774          <idle>-0     (-----) [001] d..2 82318.198555: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130775          <idle>-0     (-----) [000] d..2 82318.198563: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130776  crtc_event:111-322   (  322) [000] d..2 82318.198603: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130777          <idle>-0     (-----) [000] d..2 82318.198608: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
130778          <idle>-0     (-----) [000] dn.3 82318.198623: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
130779          <idle>-0     (-----) [000] d..2 82318.198633: 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
130780     ksoftirqd/0-3     (    3) [000] d.s2 82318.198646: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130781     ksoftirqd/0-3     (    3) [000] d.s3 82318.198668: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130782     ksoftirqd/0-3     (    3) [000] d..2 82318.198682: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130783 crtc_commit:111-321   (  321) [001] d..2 82318.198711: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
130784          <idle>-0     (-----) [001] d..1 82318.198722: cpu_idle: state=0 cpu_id=1
130785  kworker/u16:13-1147  ( 1147) [000] d..2 82318.198765: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130786          <idle>-0     (-----) [000] d..1 82318.198782: cpu_idle: state=0 cpu_id=0
130787          <idle>-0     (-----) [000] d.h5 82318.200820: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130788          <idle>-0     (-----) [000] d.h6 82318.200839: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130789          <idle>-0     (-----) [001] .n.1 82318.200845: cpu_idle: state=4294967295 cpu_id=1
130790          <idle>-0     (-----) [001] d..2 82318.200855: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130791          <idle>-0     (-----) [000] ...1 82318.200855: cpu_idle: state=4294967295 cpu_id=0
130792          <idle>-0     (-----) [000] d..1 82318.200862: cpu_idle: state=0 cpu_id=0
130793 crtc_commit:111-321   (  321) [001] d..2 82318.200931: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130794          <idle>-0     (-----) [001] d..1 82318.200942: cpu_idle: state=0 cpu_id=1
130795          <idle>-0     (-----) [000] d.h5 82318.201118: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130796          <idle>-0     (-----) [000] dnh6 82318.201130: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130797          <idle>-0     (-----) [000] .n.1 82318.201144: cpu_idle: state=4294967295 cpu_id=0
130798          <idle>-0     (-----) [000] d..2 82318.201157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130799  crtc_event:111-322   (  322) [000] d..2 82318.201187: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130800          <idle>-0     (-----) [000] d..1 82318.201200: cpu_idle: state=0 cpu_id=0
130801          <idle>-0     (-----) [002] d.s2 82318.201810: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130802          <idle>-0     (-----) [001] d.s3 82318.201811: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130803          <idle>-0     (-----) [002] dns3 82318.201828: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130804          <idle>-0     (-----) [001] d.s4 82318.201836: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130805          <idle>-0     (-----) [000] .n.1 82318.201842: cpu_idle: state=4294967295 cpu_id=0
130806          <idle>-0     (-----) [001] d.s3 82318.201844: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
130807          <idle>-0     (-----) [002] .n.1 82318.201849: cpu_idle: state=4294967295 cpu_id=2
130808          <idle>-0     (-----) [000] d..2 82318.201855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130809          <idle>-0     (-----) [002] d..2 82318.201865: 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
130810          <idle>-0     (-----) [001] dns4 82318.201877: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
130811  crtc_event:111-322   (  322) [000] d..2 82318.201899: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130812     rcu_preempt-7     (    7) [002] d..2 82318.201901: 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
130813          <idle>-0     (-----) [001] .n.1 82318.201904: cpu_idle: state=4294967295 cpu_id=1
130814          <idle>-0     (-----) [000] d..1 82318.201910: cpu_idle: state=0 cpu_id=0
130815          <idle>-0     (-----) [002] d..1 82318.201916: cpu_idle: state=0 cpu_id=2
130816          <idle>-0     (-----) [001] d..2 82318.201916: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130817  kworker/u16:13-1147  ( 1147) [001] d..2 82318.202030: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130818          <idle>-0     (-----) [001] d..1 82318.202048: cpu_idle: state=0 cpu_id=1
130819          <idle>-0     (-----) [003] d.h2 82318.202889: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
130820          <idle>-0     (-----) [003] dnh3 82318.202909: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
130821          <idle>-0     (-----) [003] .n.1 82318.202919: cpu_idle: state=4294967295 cpu_id=3
130822          <idle>-0     (-----) [003] d..2 82318.202933: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
130823        DispSync-8879  ( 8858) [003] d..1 82318.202956: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
130824        DispSync-8879  ( 8858) [003] d..2 82318.202975: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
130825          <idle>-0     (-----) [001] .n.1 82318.202982: cpu_idle: state=4294967295 cpu_id=1
130826          <idle>-0     (-----) [001] d..2 82318.202996: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
130827        DispSync-8879  ( 8858) [003] d..2 82318.203017: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130828          <idle>-0     (-----) [003] d..1 82318.203034: cpu_idle: state=0 cpu_id=3
130829  appEventThread-8881  ( 8858) [001] d..3 82318.203050: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130830          <idle>-0     (-----) [004] dnh2 82318.203082: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130831          <idle>-0     (-----) [004] .n.1 82318.203087: cpu_idle: state=4294967295 cpu_id=4
130832          <idle>-0     (-----) [004] d..2 82318.203096: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
130833  appEventThread-8881  ( 8858) [001] d..2 82318.203119: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130834          <idle>-0     (-----) [001] d..1 82318.203137: cpu_idle: state=0 cpu_id=1
130835 s.nexuslauncher-10023 (10023) [004] .... 82318.203303: binder_transaction: transaction=1572851 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
130836 s.nexuslauncher-10023 (10023) [004] .... 82318.203308: binder_transaction_alloc_buf: transaction=1572851 data_size=80 offsets_size=0
130837 s.nexuslauncher-10023 (10023) [004] d..4 82318.203313: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
130838          <idle>-0     (-----) [000] dnh2 82318.203378: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
130839          <idle>-0     (-----) [000] .n.1 82318.203385: cpu_idle: state=4294967295 cpu_id=0
130840          <idle>-0     (-----) [000] d..2 82318.203397: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
130841 s.nexuslauncher-10023 (10023) [004] d..3 82318.203399: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130842   Binder:8858_1-8871  ( 8858) [000] .... 82318.203407: binder_transaction_received: transaction=1572851
130843 s.nexuslauncher-10023 (10023) [004] d..4 82318.203415: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130844          <idle>-0     (-----) [005] .n.1 82318.203423: cpu_idle: state=4294967295 cpu_id=5
130845          <idle>-0     (-----) [005] d..2 82318.203437: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130846   Binder:8858_1-8871  ( 8858) [000] d..1 82318.203448: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
130847   Binder:8858_1-8871  ( 8858) [000] d..2 82318.203469: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
130848          <idle>-0     (-----) [001] .n.1 82318.203476: cpu_idle: state=4294967295 cpu_id=1
130849    RenderThread-16607 (10023) [005] d..2 82318.203482: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130850          <idle>-0     (-----) [001] d..2 82318.203489: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
130851          <idle>-0     (-----) [005] d..1 82318.203493: cpu_idle: state=0 cpu_id=5
130852   Binder:8858_1-8871  ( 8858) [000] d..2 82318.203521: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130853  appEventThread-8881  ( 8858) [001] d..2 82318.203536: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
130854          <idle>-0     (-----) [000] d..1 82318.203541: cpu_idle: state=0 cpu_id=0
130855          <idle>-0     (-----) [001] d..1 82318.203549: cpu_idle: state=0 cpu_id=1
130856 s.nexuslauncher-10023 (10023) [004] d..3 82318.203654: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130857 s.nexuslauncher-10023 (10023) [004] d..4 82318.203672: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130858          <idle>-0     (-----) [005] .n.1 82318.203677: cpu_idle: state=4294967295 cpu_id=5
130859          <idle>-0     (-----) [005] d..2 82318.203686: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130860 s.nexuslauncher-10023 (10023) [004] d..2 82318.203697: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
130861          <idle>-0     (-----) [004] d..1 82318.203714: cpu_idle: state=0 cpu_id=4
130862    RenderThread-16607 (10023) [005] d..1 82318.203833: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130863    RenderThread-16607 (10023) [005] d..2 82318.203849: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
130864          <idle>-0     (-----) [004] .n.1 82318.203856: cpu_idle: state=4294967295 cpu_id=4
130865          <idle>-0     (-----) [004] d..2 82318.203866: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
130866    RenderThread-16607 (10023) [005] .... 82318.203899: binder_transaction: transaction=1572852 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
130867    RenderThread-16607 (10023) [005] .... 82318.203903: binder_transaction_alloc_buf: transaction=1572852 data_size=104 offsets_size=0
130868    RenderThread-16607 (10023) [005] ...2 82318.203907: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
130869    RenderThread-16607 (10023) [005] d..4 82318.203910: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
130870    RenderThread-16607 (10023) [005] d..5 82318.203931: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130871 s.nexuslauncher-10023 (10023) [004] d..2 82318.203976: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
130872    RenderThread-16607 (10023) [005] d..2 82318.203978: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130873          <idle>-0     (-----) [004] d..1 82318.203987: cpu_idle: state=0 cpu_id=4
130874   Binder:8858_1-8871  ( 8858) [005] .... 82318.203990: binder_transaction_received: transaction=1572852
130875   Binder:8858_1-8871  ( 8858) [005] .... 82318.204049: binder_transaction: transaction=1572853 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
130876   Binder:8858_1-8871  ( 8858) [005] .... 82318.204053: binder_transaction_alloc_buf: transaction=1572853 data_size=52 offsets_size=8
130877   Binder:8858_1-8871  ( 8858) [005] d..2 82318.204060: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130878   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.204070: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130879   Binder:8858_1-8871  ( 8858) [005] d..2 82318.204076: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
130880    RenderThread-16607 (10023) [005] .... 82318.204085: binder_transaction_received: transaction=1572853
130881    RenderThread-16607 (10023) [005] d..2 82318.205359: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130882   Binder:8858_1-8871  ( 8858) [005] .... 82318.205372: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
130883   Binder:8858_1-8871  ( 8858) [005] d..2 82318.205445: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130884          <idle>-0     (-----) [005] d.h2 82318.205460: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130885          <idle>-0     (-----) [005] d.h3 82318.205468: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
130886          <idle>-0     (-----) [005] dnh3 82318.205472: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130887          <idle>-0     (-----) [005] d..2 82318.205486: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
130888    RenderThread-16607 (10023) [005] .... 82318.205642: binder_transaction: transaction=1572854 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
130889    RenderThread-16607 (10023) [005] .... 82318.205647: binder_transaction_alloc_buf: transaction=1572854 data_size=192 offsets_size=8
130890    RenderThread-16607 (10023) [005] ...2 82318.205655: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
130891    RenderThread-16607 (10023) [005] d..4 82318.205657: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130892    RenderThread-16607 (10023) [005] d..5 82318.205669: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
130893    RenderThread-16607 (10023) [005] d..2 82318.205681: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130894   Binder:8858_1-8871  ( 8858) [005] .... 82318.205691: binder_transaction_received: transaction=1572854
130895   Binder:8858_1-8871  ( 8858) [005] .... 82318.205808: binder_transaction: transaction=1572855 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
130896   Binder:8858_1-8871  ( 8858) [005] .... 82318.205812: binder_transaction_alloc_buf: transaction=1572855 data_size=68 offsets_size=0
130897   Binder:8858_1-8871  ( 8858) [005] d..2 82318.205815: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
130898   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.205826: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
130899   Binder:8858_1-8871  ( 8858) [005] d..2 82318.205832: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
130900    RenderThread-16607 (10023) [005] .... 82318.205841: binder_transaction_received: transaction=1572855
130901    RenderThread-16607 (10023) [005] d..2 82318.205905: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
130902   Binder:8858_1-8871  ( 8858) [005] .... 82318.205913: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
130903   Binder:8858_1-8871  ( 8858) [005] d..2 82318.205964: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
130904          <idle>-0     (-----) [005] d..1 82318.205980: cpu_idle: state=0 cpu_id=5
130905          <idle>-0     (-----) [000] d.h3 82318.206793: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
130906          <idle>-0     (-----) [000] dnh4 82318.206812: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
130907          <idle>-0     (-----) [000] .n.1 82318.206827: cpu_idle: state=4294967295 cpu_id=0
130908          <idle>-0     (-----) [000] d..2 82318.206842: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
130909          <idle>-0     (-----) [003] d.h2 82318.206892: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
130910 kgsl_worker_thr-258   (  258) [000] d..2 82318.206898: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
130911          <idle>-0     (-----) [003] dnh3 82318.206906: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
130912          <idle>-0     (-----) [003] .n.1 82318.206915: cpu_idle: state=4294967295 cpu_id=3
130913          <idle>-0     (-----) [003] d..2 82318.206927: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
130914        DispSync-8879  ( 8858) [003] d..1 82318.206942: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130915 kgsl_worker_thr-258   (  258) [000] d..3 82318.206949: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
130916        DispSync-8879  ( 8858) [003] d..2 82318.206959: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130917          <idle>-0     (-----) [002] .n.1 82318.206966: cpu_idle: state=4294967295 cpu_id=2
130918          <idle>-0     (-----) [002] d..2 82318.206980: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
130919        DispSync-8879  ( 8858) [003] d..2 82318.206987: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
130920 kgsl_worker_thr-258   (  258) [000] d..2 82318.206990: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130921          <idle>-0     (-----) [000] d..1 82318.207008: cpu_idle: state=0 cpu_id=0
130922   sfEventThread-8882  ( 8858) [002] d..3 82318.207028: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
130923   sfEventThread-8882  ( 8858) [002] d..4 82318.207060: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
130924          <idle>-0     (-----) [000] .n.1 82318.207066: cpu_idle: state=4294967295 cpu_id=0
130925          <idle>-0     (-----) [000] d..2 82318.207079: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
130926   sfEventThread-8882  ( 8858) [002] d..2 82318.207102: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130927          <idle>-0     (-----) [002] d..1 82318.207115: cpu_idle: state=0 cpu_id=2
130928  kworker/u16:13-1147  ( 1147) [003] d..2 82318.207176: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130929          <idle>-0     (-----) [003] d..1 82318.207197: cpu_idle: state=0 cpu_id=3
130930  surfaceflinger-8858  ( 8858) [000] d..1 82318.207484: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130931  surfaceflinger-8858  ( 8858) [000] d..2 82318.207512: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
130932          <idle>-0     (-----) [002] .n.1 82318.207517: cpu_idle: state=4294967295 cpu_id=2
130933          <idle>-0     (-----) [002] d..2 82318.207528: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
130934   sfEventThread-8882  ( 8858) [002] d..2 82318.207572: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
130935          <idle>-0     (-----) [002] d..1 82318.207581: cpu_idle: state=0 cpu_id=2
130936  surfaceflinger-8858  ( 8858) [000] ...1 82318.207732: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
130937  surfaceflinger-8858  ( 8858) [000] ...1 82318.207742: tracing_mark_write: E|8858
130938  surfaceflinger-8858  ( 8858) [000] .... 82318.207807: binder_transaction: transaction=1572856 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
130939  surfaceflinger-8858  ( 8858) [000] .... 82318.207814: binder_transaction_alloc_buf: transaction=1572856 data_size=540 offsets_size=96
130940  surfaceflinger-8858  ( 8858) [000] ...2 82318.207843: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
130941  surfaceflinger-8858  ( 8858) [000] d..4 82318.207851: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
130942  surfaceflinger-8858  ( 8858) [000] d..5 82318.207875: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
130943          <idle>-0     (-----) [003] .n.1 82318.207882: cpu_idle: state=4294967295 cpu_id=3
130944          <idle>-0     (-----) [003] d..2 82318.207896: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
130945 [email protected]   (  619) [003] .... 82318.207909: binder_transaction_received: transaction=1572856
130946  surfaceflinger-8858  ( 8858) [000] d..2 82318.207920: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130947          <idle>-0     (-----) [000] d..1 82318.207945: cpu_idle: state=0 cpu_id=0
130948 [email protected]   (  619) [003] ...1 82318.207960: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
130949 [email protected]   (  619) [003] ...1 82318.208079: tracing_mark_write: B|619|HWCSession::PresentDisplay::
130950 [email protected]   (  619) [003] ...1 82318.208266: tracing_mark_write: B|619|HWDeviceDRM::Commit::
130951 [email protected]   (  619) [003] ...1 82318.208280: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
130952          <idle>-0     (-----) [002] d.s2 82318.208472: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130953          <idle>-0     (-----) [002] dns3 82318.208494: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130954          <idle>-0     (-----) [002] .n.1 82318.208508: cpu_idle: state=4294967295 cpu_id=2
130955          <idle>-0     (-----) [002] d..2 82318.208520: 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
130956     rcu_preempt-7     (    7) [002] d..2 82318.208531: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
130957     rcu_preempt-7     (    7) [002] d..3 82318.208572: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
130958     rcu_preempt-7     (    7) [002] d..2 82318.208591: 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
130959         rcuop/2-29    (   29) [002] d..2 82318.208625: 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
130960          <idle>-0     (-----) [002] d..1 82318.208642: cpu_idle: state=0 cpu_id=2
130961 [email protected]   (  619) [003] d..2 82318.209006: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130962 [email protected]   (  619) [003] d..3 82318.209035: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130963          <idle>-0     (-----) [001] .n.1 82318.209041: cpu_idle: state=4294967295 cpu_id=1
130964          <idle>-0     (-----) [001] d..2 82318.209054: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130965 [email protected]   (  619) [003] ...1 82318.209160: tracing_mark_write: E|619
130966 [email protected]   (  619) [003] ...1 82318.209169: tracing_mark_write: E|619
130967 [email protected]   (  619) [003] ...1 82318.209236: tracing_mark_write: E|619
130968 [email protected]   (  619) [003] ...1 82318.209286: tracing_mark_write: E|619
130969 [email protected]   (  619) [003] .... 82318.209307: binder_transaction: transaction=1572857 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
130970 [email protected]   (  619) [003] .... 82318.209313: binder_transaction_alloc_buf: transaction=1572857 data_size=576 offsets_size=112
130971 [email protected]   (  619) [003] d..2 82318.209340: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
130972 [email protected]   (  619) [003] d..3 82318.209362: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
130973 [email protected]   (  619) [003] .... 82318.209369: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
130974          <idle>-0     (-----) [000] .n.1 82318.209370: cpu_idle: state=4294967295 cpu_id=0
130975          <idle>-0     (-----) [000] d..2 82318.209384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
130976  surfaceflinger-8858  ( 8858) [000] .... 82318.209396: binder_transaction_received: transaction=1572857
130977 [email protected]   (  619) [003] d..2 82318.209478: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
130978          <idle>-0     (-----) [003] d..1 82318.209503: cpu_idle: state=0 cpu_id=3
130979 crtc_commit:111-321   (  321) [001] d..2 82318.209830: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
130980          <idle>-0     (-----) [001] d..1 82318.209849: cpu_idle: state=0 cpu_id=1
130981  surfaceflinger-8858  ( 8858) [000] d..2 82318.209886: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
130982          <idle>-0     (-----) [000] d..1 82318.209911: cpu_idle: state=0 cpu_id=0
130983          <idle>-0     (-----) [000] d.h5 82318.214965: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130984          <idle>-0     (-----) [000] dnh6 82318.214989: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
130985          <idle>-0     (-----) [000] dnh5 82318.214995: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130986          <idle>-0     (-----) [000] dnh6 82318.215012: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130987          <idle>-0     (-----) [001] .n.1 82318.215020: cpu_idle: state=4294967295 cpu_id=1
130988          <idle>-0     (-----) [001] d..2 82318.215037: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130989          <idle>-0     (-----) [000] .n.1 82318.215106: cpu_idle: state=4294967295 cpu_id=0
130990          <idle>-0     (-----) [000] d..2 82318.215125: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
130991 crtc_commit:111-321   (  321) [001] d..2 82318.215132: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
130992          <idle>-0     (-----) [002] d.s2 82318.215139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
130993  crtc_event:111-322   (  322) [000] d..2 82318.215141: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130994  crtc_event:111-322   (  322) [000] d..3 82318.215164: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
130995          <idle>-0     (-----) [002] d.s3 82318.215185: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
130996          <idle>-0     (-----) [002] d.s3 82318.215195: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
130997          <idle>-0     (-----) [001] d..2 82318.215222: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
130998          <idle>-0     (-----) [002] dns4 82318.215229: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
130999  crtc_event:111-322   (  322) [000] d..2 82318.215231: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
131000          <idle>-0     (-----) [002] .n.1 82318.215254: cpu_idle: state=4294967295 cpu_id=2
131001     rcu_preempt-7     (    7) [000] d..2 82318.215267: 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
131002          <idle>-0     (-----) [002] d..2 82318.215270: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131003          <idle>-0     (-----) [000] d..1 82318.215286: cpu_idle: state=0 cpu_id=0
131004 crtc_commit:111-321   (  321) [001] d..2 82318.215334: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
131005          <idle>-0     (-----) [001] d..1 82318.215358: cpu_idle: state=0 cpu_id=1
131006  kworker/u16:13-1147  ( 1147) [002] d..2 82318.215453: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131007          <idle>-0     (-----) [002] d..1 82318.215472: cpu_idle: state=0 cpu_id=2
131008          <idle>-0     (-----) [000] d.h5 82318.217293: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131009          <idle>-0     (-----) [000] d.h6 82318.217314: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131010          <idle>-0     (-----) [001] .n.1 82318.217320: cpu_idle: state=4294967295 cpu_id=1
131011          <idle>-0     (-----) [001] d..2 82318.217330: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131012          <idle>-0     (-----) [000] ...1 82318.217331: cpu_idle: state=4294967295 cpu_id=0
131013          <idle>-0     (-----) [000] d..1 82318.217338: cpu_idle: state=0 cpu_id=0
131014 crtc_commit:111-321   (  321) [001] d..2 82318.217405: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131015          <idle>-0     (-----) [001] d..1 82318.217417: cpu_idle: state=0 cpu_id=1
131016          <idle>-0     (-----) [000] d.h5 82318.217587: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131017          <idle>-0     (-----) [000] dnh6 82318.217599: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131018          <idle>-0     (-----) [000] .n.1 82318.217614: cpu_idle: state=4294967295 cpu_id=0
131019          <idle>-0     (-----) [000] d..2 82318.217627: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131020  crtc_event:111-322   (  322) [000] d..2 82318.217657: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131021          <idle>-0     (-----) [000] d..1 82318.217669: cpu_idle: state=0 cpu_id=0
131022          <idle>-0     (-----) [001] d.s3 82318.218477: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131023          <idle>-0     (-----) [001] d.s4 82318.218501: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131024          <idle>-0     (-----) [000] .n.1 82318.218507: cpu_idle: state=4294967295 cpu_id=0
131025          <idle>-0     (-----) [001] d.s3 82318.218509: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
131026          <idle>-0     (-----) [000] d..2 82318.218521: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131027          <idle>-0     (-----) [001] dns4 82318.218555: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
131028  crtc_event:111-322   (  322) [000] d..2 82318.218564: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131029          <idle>-0     (-----) [000] d..1 82318.218572: cpu_idle: state=0 cpu_id=0
131030          <idle>-0     (-----) [001] .n.1 82318.218572: cpu_idle: state=4294967295 cpu_id=1
131031          <idle>-0     (-----) [001] d..2 82318.218585: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131032  kworker/u16:13-1147  ( 1147) [001] d..2 82318.218665: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131033          <idle>-0     (-----) [001] d..1 82318.218683: cpu_idle: state=0 cpu_id=1
131034          <idle>-0     (-----) [003] d.h2 82318.219356: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
131035          <idle>-0     (-----) [003] dnh3 82318.219376: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
131036          <idle>-0     (-----) [003] .n.1 82318.219386: cpu_idle: state=4294967295 cpu_id=3
131037          <idle>-0     (-----) [003] d..2 82318.219400: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
131038        DispSync-8879  ( 8858) [003] d..1 82318.219423: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
131039        DispSync-8879  ( 8858) [003] d..2 82318.219444: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
131040          <idle>-0     (-----) [001] .n.1 82318.219450: cpu_idle: state=4294967295 cpu_id=1
131041          <idle>-0     (-----) [001] d..2 82318.219462: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
131042        DispSync-8879  ( 8858) [003] d..2 82318.219486: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131043          <idle>-0     (-----) [003] d..1 82318.219502: cpu_idle: state=0 cpu_id=3
131044  appEventThread-8881  ( 8858) [001] d..3 82318.219510: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131045          <idle>-0     (-----) [004] dnh2 82318.219541: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131046          <idle>-0     (-----) [004] .n.1 82318.219545: cpu_idle: state=4294967295 cpu_id=4
131047          <idle>-0     (-----) [004] d..2 82318.219554: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
131048  appEventThread-8881  ( 8858) [001] d..2 82318.219576: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131049          <idle>-0     (-----) [001] d..1 82318.219595: cpu_idle: state=0 cpu_id=1
131050 s.nexuslauncher-10023 (10023) [004] .... 82318.219760: binder_transaction: transaction=1572858 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
131051 s.nexuslauncher-10023 (10023) [004] .... 82318.219765: binder_transaction_alloc_buf: transaction=1572858 data_size=80 offsets_size=0
131052 s.nexuslauncher-10023 (10023) [004] d..4 82318.219771: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
131053          <idle>-0     (-----) [000] dnh2 82318.219838: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
131054          <idle>-0     (-----) [000] .n.1 82318.219844: cpu_idle: state=4294967295 cpu_id=0
131055          <idle>-0     (-----) [000] d..2 82318.219854: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
131056 s.nexuslauncher-10023 (10023) [004] d..3 82318.219858: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131057   Binder:8858_1-8871  ( 8858) [000] .... 82318.219865: binder_transaction_received: transaction=1572858
131058 s.nexuslauncher-10023 (10023) [004] d..4 82318.219875: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131059          <idle>-0     (-----) [005] .n.1 82318.219882: cpu_idle: state=4294967295 cpu_id=5
131060          <idle>-0     (-----) [005] d..2 82318.219894: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131061   Binder:8858_1-8871  ( 8858) [000] d..1 82318.219909: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
131062   Binder:8858_1-8871  ( 8858) [000] d..2 82318.219930: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
131063          <idle>-0     (-----) [001] .n.1 82318.219936: cpu_idle: state=4294967295 cpu_id=1
131064    RenderThread-16607 (10023) [005] d..2 82318.219941: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131065          <idle>-0     (-----) [001] d..2 82318.219949: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
131066          <idle>-0     (-----) [005] d..1 82318.219953: cpu_idle: state=0 cpu_id=5
131067   Binder:8858_1-8871  ( 8858) [000] d..2 82318.219984: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131068  appEventThread-8881  ( 8858) [001] d..2 82318.219995: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131069          <idle>-0     (-----) [000] d..1 82318.219998: cpu_idle: state=0 cpu_id=0
131070          <idle>-0     (-----) [001] d..1 82318.220009: cpu_idle: state=0 cpu_id=1
131071 s.nexuslauncher-10023 (10023) [004] d..3 82318.220113: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131072 s.nexuslauncher-10023 (10023) [004] d..4 82318.220131: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131073          <idle>-0     (-----) [005] .n.1 82318.220136: cpu_idle: state=4294967295 cpu_id=5
131074          <idle>-0     (-----) [005] d..2 82318.220146: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131075 s.nexuslauncher-10023 (10023) [004] d..2 82318.220157: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
131076          <idle>-0     (-----) [004] d..1 82318.220174: cpu_idle: state=0 cpu_id=4
131077    RenderThread-16607 (10023) [005] d..1 82318.220290: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131078    RenderThread-16607 (10023) [005] d..2 82318.220308: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131079          <idle>-0     (-----) [004] .n.1 82318.220314: cpu_idle: state=4294967295 cpu_id=4
131080          <idle>-0     (-----) [004] d..2 82318.220323: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
131081    RenderThread-16607 (10023) [005] .... 82318.220357: binder_transaction: transaction=1572859 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
131082    RenderThread-16607 (10023) [005] .... 82318.220362: binder_transaction_alloc_buf: transaction=1572859 data_size=104 offsets_size=0
131083    RenderThread-16607 (10023) [005] ...2 82318.220366: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
131084    RenderThread-16607 (10023) [005] d..4 82318.220369: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
131085    RenderThread-16607 (10023) [005] d..5 82318.220389: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131086 s.nexuslauncher-10023 (10023) [004] d..2 82318.220433: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
131087    RenderThread-16607 (10023) [005] d..2 82318.220436: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131088          <idle>-0     (-----) [004] d..1 82318.220446: cpu_idle: state=0 cpu_id=4
131089   Binder:8858_1-8871  ( 8858) [005] .... 82318.220447: binder_transaction_received: transaction=1572859
131090   Binder:8858_1-8871  ( 8858) [005] .... 82318.220506: binder_transaction: transaction=1572860 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
131091   Binder:8858_1-8871  ( 8858) [005] .... 82318.220510: binder_transaction_alloc_buf: transaction=1572860 data_size=52 offsets_size=8
131092   Binder:8858_1-8871  ( 8858) [005] d..2 82318.220517: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131093   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.220528: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131094   Binder:8858_1-8871  ( 8858) [005] d..2 82318.220534: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
131095    RenderThread-16607 (10023) [005] .... 82318.220543: binder_transaction_received: transaction=1572860
131096          <idle>-0     (-----) [004] ...1 82318.220695: cpu_idle: state=4294967295 cpu_id=4
131097          <idle>-0     (-----) [004] d..1 82318.220698: cpu_idle: state=0 cpu_id=4
131098    RenderThread-16607 (10023) [005] d..2 82318.221749: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131099   Binder:8858_1-8871  ( 8858) [005] .... 82318.221763: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
131100   Binder:8858_1-8871  ( 8858) [005] dnh2 82318.221805: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131101          <idle>-0     (-----) [000] d.s2 82318.221808: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131102   Binder:8858_1-8871  ( 8858) [005] dnh3 82318.221822: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
131103   Binder:8858_1-8871  ( 8858) [005] dnh3 82318.221828: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
131104          <idle>-0     (-----) [000] dns3 82318.221831: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131105          <idle>-0     (-----) [004] .n.1 82318.221833: cpu_idle: state=4294967295 cpu_id=4
131106          <idle>-0     (-----) [004] d..2 82318.221843: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131107          <idle>-0     (-----) [000] .n.1 82318.221855: cpu_idle: state=4294967295 cpu_id=0
131108          <idle>-0     (-----) [000] d..2 82318.221867: 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
131109     rcu_preempt-7     (    7) [000] d..2 82318.221877: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
131110   Binder:8858_1-8871  ( 8858) [005] d..2 82318.221904: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131111          <idle>-0     (-----) [005] d..1 82318.221919: cpu_idle: state=0 cpu_id=5
131112     rcu_preempt-7     (    7) [000] d..3 82318.221924: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
131113     rcu_preempt-7     (    7) [000] d..2 82318.221943: 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
131114         rcuop/0-10    (   10) [000] d..2 82318.221948: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
131115         rcuop/0-10    (   10) [000] d..3 82318.221984: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
131116         rcuop/0-10    (   10) [000] d..2 82318.221996: 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
131117    RenderThread-16607 (10023) [004] .... 82318.222019: binder_transaction: transaction=1572861 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
131118         rcuop/1-21    (   21) [000] d..2 82318.222023: 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
131119    RenderThread-16607 (10023) [004] .... 82318.222024: binder_transaction_alloc_buf: transaction=1572861 data_size=192 offsets_size=8
131120    RenderThread-16607 (10023) [004] ...2 82318.222033: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
131121    RenderThread-16607 (10023) [004] d..4 82318.222037: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131122          <idle>-0     (-----) [000] d..1 82318.222041: cpu_idle: state=0 cpu_id=0
131123    RenderThread-16607 (10023) [004] d..5 82318.222057: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
131124    RenderThread-16607 (10023) [004] d..2 82318.222070: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131125   Binder:8858_1-8871  ( 8858) [004] .... 82318.222084: binder_transaction_received: transaction=1572861
131126   Binder:8858_1-8871  ( 8858) [004] .... 82318.222210: binder_transaction: transaction=1572862 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
131127   Binder:8858_1-8871  ( 8858) [004] .... 82318.222215: binder_transaction_alloc_buf: transaction=1572862 data_size=68 offsets_size=0
131128   Binder:8858_1-8871  ( 8858) [004] d..2 82318.222217: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
131129   Binder:8858_1-8871  ( 8858) [004] dn.3 82318.222229: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
131130   Binder:8858_1-8871  ( 8858) [004] d..2 82318.222236: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
131131    RenderThread-16607 (10023) [004] .... 82318.222245: binder_transaction_received: transaction=1572862
131132    RenderThread-16607 (10023) [004] d..2 82318.222313: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131133   Binder:8858_1-8871  ( 8858) [004] .... 82318.222321: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
131134   Binder:8858_1-8871  ( 8858) [004] d..2 82318.222372: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
131135          <idle>-0     (-----) [004] d..1 82318.222388: cpu_idle: state=0 cpu_id=4
131136          <idle>-0     (-----) [000] d.h3 82318.223174: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
131137          <idle>-0     (-----) [000] dnh4 82318.223193: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
131138          <idle>-0     (-----) [000] .n.1 82318.223208: cpu_idle: state=4294967295 cpu_id=0
131139          <idle>-0     (-----) [000] d..2 82318.223221: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
131140 kgsl_worker_thr-258   (  258) [000] d..2 82318.223282: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
131141 kgsl_worker_thr-258   (  258) [000] d..3 82318.223325: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131142 kgsl_worker_thr-258   (  258) [000] d..2 82318.223352: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131143          <idle>-0     (-----) [003] d.h2 82318.223361: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
131144          <idle>-0     (-----) [003] dnh3 82318.223375: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
131145          <idle>-0     (-----) [003] .n.1 82318.223384: cpu_idle: state=4294967295 cpu_id=3
131146          <idle>-0     (-----) [003] d..2 82318.223396: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
131147        DispSync-8879  ( 8858) [003] d..1 82318.223411: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131148        DispSync-8879  ( 8858) [003] d..2 82318.223427: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131149          <idle>-0     (-----) [002] .n.1 82318.223435: cpu_idle: state=4294967295 cpu_id=2
131150          <idle>-0     (-----) [002] d..2 82318.223449: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
131151        DispSync-8879  ( 8858) [003] d..2 82318.223463: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131152          <idle>-0     (-----) [003] d..1 82318.223479: cpu_idle: state=0 cpu_id=3
131153   sfEventThread-8882  ( 8858) [002] d..3 82318.223492: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
131154   sfEventThread-8882  ( 8858) [002] d..4 82318.223530: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131155          <idle>-0     (-----) [003] .n.1 82318.223536: cpu_idle: state=4294967295 cpu_id=3
131156  kworker/u16:13-1147  ( 1147) [000] d..2 82318.223539: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131157          <idle>-0     (-----) [003] d..2 82318.223549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
131158          <idle>-0     (-----) [000] d..1 82318.223558: cpu_idle: state=0 cpu_id=0
131159   sfEventThread-8882  ( 8858) [002] d..2 82318.223571: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131160          <idle>-0     (-----) [002] d..1 82318.223589: cpu_idle: state=0 cpu_id=2
131161  surfaceflinger-8858  ( 8858) [003] d..1 82318.223961: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131162  surfaceflinger-8858  ( 8858) [003] d..2 82318.223990: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131163          <idle>-0     (-----) [002] .n.1 82318.223995: cpu_idle: state=4294967295 cpu_id=2
131164          <idle>-0     (-----) [002] d..2 82318.224007: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
131165   sfEventThread-8882  ( 8858) [002] d..2 82318.224049: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131166          <idle>-0     (-----) [002] d..1 82318.224061: cpu_idle: state=0 cpu_id=2
131167  surfaceflinger-8858  ( 8858) [003] ...1 82318.224207: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
131168  surfaceflinger-8858  ( 8858) [003] ...1 82318.224215: tracing_mark_write: E|8858
131169  surfaceflinger-8858  ( 8858) [003] .... 82318.224279: binder_transaction: transaction=1572863 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
131170  surfaceflinger-8858  ( 8858) [003] .... 82318.224285: binder_transaction_alloc_buf: transaction=1572863 data_size=540 offsets_size=96
131171  surfaceflinger-8858  ( 8858) [003] ...2 82318.224314: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
131172  surfaceflinger-8858  ( 8858) [003] d..4 82318.224322: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
131173  surfaceflinger-8858  ( 8858) [003] d..5 82318.224359: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
131174          <idle>-0     (-----) [002] .n.1 82318.224363: cpu_idle: state=4294967295 cpu_id=2
131175          <idle>-0     (-----) [002] d..2 82318.224375: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
131176 [email protected]   (  619) [002] .... 82318.224391: binder_transaction_received: transaction=1572863
131177  surfaceflinger-8858  ( 8858) [003] d..2 82318.224398: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131178          <idle>-0     (-----) [003] d..1 82318.224423: cpu_idle: state=0 cpu_id=3
131179 [email protected]   (  619) [002] ...1 82318.224448: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
131180 [email protected]   (  619) [002] ...1 82318.224575: tracing_mark_write: B|619|HWCSession::PresentDisplay::
131181 [email protected]   (  619) [002] ...1 82318.224757: tracing_mark_write: B|619|HWDeviceDRM::Commit::
131182 [email protected]   (  619) [002] ...1 82318.224773: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
131183 [email protected]   (  619) [002] d.s2 82318.225166: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131184 [email protected]   (  619) [002] d.s3 82318.225194: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131185          <idle>-0     (-----) [000] .n.1 82318.225200: cpu_idle: state=4294967295 cpu_id=0
131186          <idle>-0     (-----) [000] d..2 82318.225218: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131187  kworker/u16:13-1147  ( 1147) [000] d..2 82318.225395: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131188          <idle>-0     (-----) [000] d..1 82318.225406: cpu_idle: state=0 cpu_id=0
131189 [email protected]   (  619) [002] d..2 82318.225585: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131190 [email protected]   (  619) [002] d..3 82318.225615: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131191          <idle>-0     (-----) [001] .n.1 82318.225620: cpu_idle: state=4294967295 cpu_id=1
131192          <idle>-0     (-----) [001] d..2 82318.225634: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131193 [email protected]   (  619) [002] ...1 82318.225749: tracing_mark_write: E|619
131194 [email protected]   (  619) [002] ...1 82318.225757: tracing_mark_write: E|619
131195 [email protected]   (  619) [002] ...1 82318.225828: tracing_mark_write: E|619
131196 [email protected]   (  619) [002] ...1 82318.225880: tracing_mark_write: E|619
131197 [email protected]   (  619) [002] .... 82318.225899: binder_transaction: transaction=1572864 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
131198 [email protected]   (  619) [002] .... 82318.225905: binder_transaction_alloc_buf: transaction=1572864 data_size=576 offsets_size=112
131199 [email protected]   (  619) [002] d..2 82318.225932: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131200 [email protected]   (  619) [002] d..3 82318.225955: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131201 [email protected]   (  619) [002] .... 82318.225961: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
131202          <idle>-0     (-----) [003] .n.1 82318.225962: cpu_idle: state=4294967295 cpu_id=3
131203          <idle>-0     (-----) [003] d..2 82318.225977: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
131204  surfaceflinger-8858  ( 8858) [003] .... 82318.225989: binder_transaction_received: transaction=1572864
131205 [email protected]   (  619) [002] d..2 82318.226072: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131206          <idle>-0     (-----) [002] d..1 82318.226098: cpu_idle: state=0 cpu_id=2
131207 crtc_commit:111-321   (  321) [001] d..2 82318.226409: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
131208          <idle>-0     (-----) [001] d..1 82318.226429: cpu_idle: state=0 cpu_id=1
131209  surfaceflinger-8858  ( 8858) [003] d..2 82318.226486: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131210          <idle>-0     (-----) [003] d..1 82318.226511: cpu_idle: state=0 cpu_id=3
131211          <idle>-0     (-----) [000] d.s2 82318.228478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131212          <idle>-0     (-----) [000] dns3 82318.228499: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131213          <idle>-0     (-----) [000] .n.1 82318.228513: cpu_idle: state=4294967295 cpu_id=0
131214          <idle>-0     (-----) [000] d..2 82318.228524: 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
131215     rcu_preempt-7     (    7) [000] d..2 82318.228538: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
131216     rcu_preempt-7     (    7) [000] d..3 82318.228583: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
131217     rcu_preempt-7     (    7) [000] d..2 82318.228601: 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
131218         rcuop/2-29    (   29) [000] d..2 82318.228639: 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
131219          <idle>-0     (-----) [000] d..1 82318.228656: cpu_idle: state=0 cpu_id=0
131220          <idle>-0     (-----) [000] d.h5 82318.231423: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131221          <idle>-0     (-----) [000] dnh6 82318.231439: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131222          <idle>-0     (-----) [000] dnh5 82318.231445: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131223          <idle>-0     (-----) [000] dnh6 82318.231460: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131224          <idle>-0     (-----) [001] .n.1 82318.231468: cpu_idle: state=4294967295 cpu_id=1
131225          <idle>-0     (-----) [000] .n.1 82318.231476: cpu_idle: state=4294967295 cpu_id=0
131226          <idle>-0     (-----) [001] d..2 82318.231484: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131227          <idle>-0     (-----) [000] d..2 82318.231490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131228  crtc_event:111-322   (  322) [000] d..2 82318.231524: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131229          <idle>-0     (-----) [000] d..1 82318.231537: cpu_idle: state=0 cpu_id=0
131230 crtc_commit:111-321   (  321) [001] d..2 82318.231637: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
131231          <idle>-0     (-----) [001] d..1 82318.231648: cpu_idle: state=0 cpu_id=1
131232          <idle>-0     (-----) [001] d.H3 82318.231895: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
131233          <idle>-0     (-----) [001] d.H4 82318.231919: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
131234          <idle>-0     (-----) [003] .n.1 82318.231926: cpu_idle: state=4294967295 cpu_id=3
131235          <idle>-0     (-----) [001] d.s3 82318.231931: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131236          <idle>-0     (-----) [003] d..2 82318.231943: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
131237          <idle>-0     (-----) [001] d.s4 82318.231946: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131238          <idle>-0     (-----) [000] .n.1 82318.231952: cpu_idle: state=4294967295 cpu_id=0
131239          <idle>-0     (-----) [000] d..2 82318.231966: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131240          <idle>-0     (-----) [001] ...1 82318.231976: cpu_idle: state=4294967295 cpu_id=1
131241          <idle>-0     (-----) [001] d..1 82318.231986: cpu_idle: state=0 cpu_id=1
131242         sugov:0-576   (  576) [003] .... 82318.231992: clk_set_rate: pwrcl_clk 652800000
131243  crtc_event:111-322   (  322) [000] d..2 82318.232003: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131244          <idle>-0     (-----) [000] d..1 82318.232012: cpu_idle: state=0 cpu_id=0
131245         sugov:0-576   (  576) [003] .... 82318.232016: clk_set_rate: cpu3_pwrcl_clk 748800000
131246         sugov:0-576   (  576) [003] .... 82318.232027: clk_set_rate: cpu2_pwrcl_clk 748800000
131247         sugov:0-576   (  576) [003] .... 82318.232036: clk_set_rate: cpu1_pwrcl_clk 748800000
131248         sugov:0-576   (  576) [003] .... 82318.232044: clk_set_rate: cpu0_pwrcl_clk 652800000
131249         sugov:0-576   (  576) [003] .... 82318.232164: cpu_frequency: state=652800 cpu_id=0
131250         sugov:0-576   (  576) [003] .... 82318.232196: cpu_frequency: state=652800 cpu_id=1
131251         sugov:0-576   (  576) [003] .... 82318.232202: cpu_frequency: state=652800 cpu_id=2
131252         sugov:0-576   (  576) [003] .... 82318.232207: cpu_frequency: state=652800 cpu_id=3
131253         sugov:0-576   (  576) [003] d..2 82318.232250: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131254          <idle>-0     (-----) [003] d..1 82318.232267: cpu_idle: state=0 cpu_id=3
131255          <idle>-0     (-----) [000] d.h5 82318.233752: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131256          <idle>-0     (-----) [000] d.h6 82318.233775: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131257          <idle>-0     (-----) [001] .n.1 82318.233782: cpu_idle: state=4294967295 cpu_id=1
131258          <idle>-0     (-----) [000] ...1 82318.233793: cpu_idle: state=4294967295 cpu_id=0
131259          <idle>-0     (-----) [001] d..2 82318.233798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131260          <idle>-0     (-----) [000] d..1 82318.233800: cpu_idle: state=0 cpu_id=0
131261 crtc_commit:111-321   (  321) [001] d..2 82318.233885: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131262          <idle>-0     (-----) [001] d..1 82318.233902: cpu_idle: state=0 cpu_id=1
131263          <idle>-0     (-----) [000] d.h5 82318.234055: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131264          <idle>-0     (-----) [000] dnh6 82318.234068: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131265          <idle>-0     (-----) [000] .n.1 82318.234084: cpu_idle: state=4294967295 cpu_id=0
131266          <idle>-0     (-----) [000] d..2 82318.234093: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131267  crtc_event:111-322   (  322) [000] d..2 82318.234123: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131268          <idle>-0     (-----) [000] d..1 82318.234133: cpu_idle: state=0 cpu_id=0
131269          <idle>-0     (-----) [000] d.s2 82318.235142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131270          <idle>-0     (-----) [000] dns3 82318.235166: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131271          <idle>-0     (-----) [000] dns3 82318.235173: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131272          <idle>-0     (-----) [000] dns4 82318.235190: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131273          <idle>-0     (-----) [000] .n.1 82318.235215: cpu_idle: state=4294967295 cpu_id=0
131274          <idle>-0     (-----) [000] d..2 82318.235228: 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
131275     rcu_preempt-7     (    7) [000] d..2 82318.235241: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
131276     rcu_preempt-7     (    7) [000] d..3 82318.235261: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
131277     rcu_preempt-7     (    7) [000] d..2 82318.235281: 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
131278         rcuop/0-10    (   10) [000] d..2 82318.235299: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131279  kworker/u16:13-1147  ( 1147) [000] d..2 82318.235421: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131280          <idle>-0     (-----) [000] d..1 82318.235441: cpu_idle: state=0 cpu_id=0
131281          <idle>-0     (-----) [003] d.h2 82318.235821: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
131282          <idle>-0     (-----) [003] dnh3 82318.235844: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
131283          <idle>-0     (-----) [003] .n.1 82318.235855: cpu_idle: state=4294967295 cpu_id=3
131284          <idle>-0     (-----) [003] d..2 82318.235869: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
131285        DispSync-8879  ( 8858) [003] d..1 82318.235891: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
131286        DispSync-8879  ( 8858) [003] d..2 82318.235910: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
131287          <idle>-0     (-----) [001] .n.1 82318.235917: cpu_idle: state=4294967295 cpu_id=1
131288          <idle>-0     (-----) [001] d..2 82318.235933: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
131289        DispSync-8879  ( 8858) [003] d..2 82318.235952: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131290          <idle>-0     (-----) [003] d..1 82318.235970: cpu_idle: state=0 cpu_id=3
131291  appEventThread-8881  ( 8858) [001] d..3 82318.235983: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131292          <idle>-0     (-----) [004] dnh2 82318.236017: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131293          <idle>-0     (-----) [004] .n.1 82318.236022: cpu_idle: state=4294967295 cpu_id=4
131294          <idle>-0     (-----) [004] d..2 82318.236031: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
131295  appEventThread-8881  ( 8858) [001] d..2 82318.236054: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131296          <idle>-0     (-----) [001] d..1 82318.236075: cpu_idle: state=0 cpu_id=1
131297 s.nexuslauncher-10023 (10023) [004] .... 82318.236280: binder_transaction: transaction=1572865 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
131298 s.nexuslauncher-10023 (10023) [004] .... 82318.236285: binder_transaction_alloc_buf: transaction=1572865 data_size=80 offsets_size=0
131299 s.nexuslauncher-10023 (10023) [004] d..4 82318.236290: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
131300 s.nexuslauncher-10023 (10023) [004] d.h5 82318.236354: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
131301          <idle>-0     (-----) [000] dnh2 82318.236360: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
131302          <idle>-0     (-----) [000] .n.1 82318.236369: cpu_idle: state=4294967295 cpu_id=0
131303          <idle>-0     (-----) [003] dnh2 82318.236380: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
131304          <idle>-0     (-----) [000] d..2 82318.236384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
131305          <idle>-0     (-----) [003] .n.1 82318.236388: cpu_idle: state=4294967295 cpu_id=3
131306 s.nexuslauncher-10023 (10023) [004] d..3 82318.236394: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
131307   Binder:8858_1-8871  ( 8858) [000] .... 82318.236395: binder_transaction_received: transaction=1572865
131308          <idle>-0     (-----) [003] d..2 82318.236400: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
131309 s.nexuslauncher-10023 (10023) [004] d..4 82318.236415: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131310          <idle>-0     (-----) [005] .n.1 82318.236422: cpu_idle: state=4294967295 cpu_id=5
131311         sugov:0-576   (  576) [003] .... 82318.236428: clk_set_rate: pwrcl_clk 748800000
131312          <idle>-0     (-----) [005] d..2 82318.236434: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131313   Binder:8858_1-8871  ( 8858) [000] d..1 82318.236437: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
131314         sugov:0-576   (  576) [003] .... 82318.236440: clk_set_rate: cpu3_pwrcl_clk 652800000
131315         sugov:0-576   (  576) [003] .... 82318.236450: clk_set_rate: cpu2_pwrcl_clk 652800000
131316         sugov:0-576   (  576) [003] .... 82318.236459: clk_set_rate: cpu1_pwrcl_clk 652800000
131317   Binder:8858_1-8871  ( 8858) [000] d..2 82318.236462: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
131318          <idle>-0     (-----) [001] .n.1 82318.236467: cpu_idle: state=4294967295 cpu_id=1
131319         sugov:0-576   (  576) [003] .... 82318.236468: clk_set_rate: cpu0_pwrcl_clk 748800000
131320         sugov:0-576   (  576) [003] .... 82318.236477: cpu_frequency: state=748800 cpu_id=0
131321          <idle>-0     (-----) [001] d..2 82318.236482: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
131322    RenderThread-16607 (10023) [005] d..2 82318.236488: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131323         sugov:0-576   (  576) [003] .... 82318.236496: cpu_frequency: state=748800 cpu_id=1
131324          <idle>-0     (-----) [005] d..1 82318.236500: cpu_idle: state=0 cpu_id=5
131325         sugov:0-576   (  576) [003] .... 82318.236501: cpu_frequency: state=748800 cpu_id=2
131326         sugov:0-576   (  576) [003] .... 82318.236506: cpu_frequency: state=748800 cpu_id=3
131327   Binder:8858_1-8871  ( 8858) [000] d..2 82318.236523: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131328  appEventThread-8881  ( 8858) [001] d..2 82318.236534: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131329         sugov:0-576   (  576) [003] d..2 82318.236538: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131330          <idle>-0     (-----) [000] d..1 82318.236540: cpu_idle: state=0 cpu_id=0
131331          <idle>-0     (-----) [001] d..1 82318.236548: cpu_idle: state=0 cpu_id=1
131332          <idle>-0     (-----) [003] d..1 82318.236553: cpu_idle: state=0 cpu_id=3
131333 s.nexuslauncher-10023 (10023) [004] d..3 82318.236757: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131334 s.nexuslauncher-10023 (10023) [004] d..4 82318.236775: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131335          <idle>-0     (-----) [005] .n.1 82318.236781: cpu_idle: state=4294967295 cpu_id=5
131336          <idle>-0     (-----) [005] d..2 82318.236790: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131337 s.nexuslauncher-10023 (10023) [004] d..2 82318.236803: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
131338          <idle>-0     (-----) [004] d..1 82318.236821: cpu_idle: state=0 cpu_id=4
131339    RenderThread-16607 (10023) [005] d..1 82318.236954: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131340    RenderThread-16607 (10023) [005] d..2 82318.236971: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131341          <idle>-0     (-----) [004] .n.1 82318.236978: cpu_idle: state=4294967295 cpu_id=4
131342          <idle>-0     (-----) [004] d..2 82318.236988: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
131343    RenderThread-16607 (10023) [005] .... 82318.237025: binder_transaction: transaction=1572866 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
131344    RenderThread-16607 (10023) [005] .... 82318.237029: binder_transaction_alloc_buf: transaction=1572866 data_size=104 offsets_size=0
131345    RenderThread-16607 (10023) [005] ...2 82318.237033: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
131346    RenderThread-16607 (10023) [005] d..4 82318.237037: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
131347    RenderThread-16607 (10023) [005] d..5 82318.237059: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131348 s.nexuslauncher-10023 (10023) [004] d..2 82318.237103: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
131349    RenderThread-16607 (10023) [005] d..2 82318.237105: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131350          <idle>-0     (-----) [004] d..1 82318.237114: cpu_idle: state=0 cpu_id=4
131351   Binder:8858_1-8871  ( 8858) [005] .... 82318.237117: binder_transaction_received: transaction=1572866
131352   Binder:8858_1-8871  ( 8858) [005] .... 82318.237177: binder_transaction: transaction=1572867 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
131353   Binder:8858_1-8871  ( 8858) [005] .... 82318.237181: binder_transaction_alloc_buf: transaction=1572867 data_size=52 offsets_size=8
131354   Binder:8858_1-8871  ( 8858) [005] d..2 82318.237188: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131355   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.237198: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131356   Binder:8858_1-8871  ( 8858) [005] d..2 82318.237205: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
131357    RenderThread-16607 (10023) [005] .... 82318.237213: binder_transaction_received: transaction=1572867
131358    RenderThread-16607 (10023) [005] d..2 82318.238500: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131359   Binder:8858_1-8871  ( 8858) [005] .... 82318.238513: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
131360   Binder:8858_1-8871  ( 8858) [005] d..2 82318.238585: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131361          <idle>-0     (-----) [005] d.h2 82318.238600: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131362          <idle>-0     (-----) [005] d.h3 82318.238607: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
131363          <idle>-0     (-----) [005] dnh3 82318.238610: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131364          <idle>-0     (-----) [005] d..2 82318.238623: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131365    RenderThread-16607 (10023) [005] .... 82318.238781: binder_transaction: transaction=1572868 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
131366    RenderThread-16607 (10023) [005] .... 82318.238786: binder_transaction_alloc_buf: transaction=1572868 data_size=192 offsets_size=8
131367    RenderThread-16607 (10023) [005] ...2 82318.238793: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
131368    RenderThread-16607 (10023) [005] d..4 82318.238796: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131369    RenderThread-16607 (10023) [005] d..5 82318.238808: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131370    RenderThread-16607 (10023) [005] d..2 82318.238819: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131371   Binder:8858_1-8871  ( 8858) [005] .... 82318.238829: binder_transaction_received: transaction=1572868
131372   Binder:8858_1-8871  ( 8858) [005] .... 82318.238953: binder_transaction: transaction=1572869 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
131373   Binder:8858_1-8871  ( 8858) [005] .... 82318.238958: binder_transaction_alloc_buf: transaction=1572869 data_size=68 offsets_size=0
131374   Binder:8858_1-8871  ( 8858) [005] d..2 82318.238960: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131375   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.238971: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131376   Binder:8858_1-8871  ( 8858) [005] d..2 82318.238977: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
131377    RenderThread-16607 (10023) [005] .... 82318.238987: binder_transaction_received: transaction=1572869
131378    RenderThread-16607 (10023) [005] d..2 82318.239052: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131379   Binder:8858_1-8871  ( 8858) [005] .... 82318.239059: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
131380   Binder:8858_1-8871  ( 8858) [005] d..2 82318.239109: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131381          <idle>-0     (-----) [005] d..1 82318.239126: cpu_idle: state=0 cpu_id=5
131382          <idle>-0     (-----) [003] d.h2 82318.239825: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
131383          <idle>-0     (-----) [003] dnh3 82318.239841: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
131384          <idle>-0     (-----) [003] .n.1 82318.239851: cpu_idle: state=4294967295 cpu_id=3
131385          <idle>-0     (-----) [003] d..2 82318.239863: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
131386        DispSync-8879  ( 8858) [003] d..1 82318.239880: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131387          <idle>-0     (-----) [000] d.h3 82318.239890: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
131388        DispSync-8879  ( 8858) [003] d..2 82318.239898: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131389          <idle>-0     (-----) [002] .n.1 82318.239906: cpu_idle: state=4294967295 cpu_id=2
131390          <idle>-0     (-----) [000] dnh4 82318.239908: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
131391          <idle>-0     (-----) [002] d..2 82318.239923: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
131392          <idle>-0     (-----) [000] .n.1 82318.239924: cpu_idle: state=4294967295 cpu_id=0
131393        DispSync-8879  ( 8858) [003] d..2 82318.239937: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131394          <idle>-0     (-----) [000] d..2 82318.239938: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
131395          <idle>-0     (-----) [003] d..1 82318.239952: cpu_idle: state=0 cpu_id=3
131396   sfEventThread-8882  ( 8858) [002] d..3 82318.239979: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131397 kgsl_worker_thr-258   (  258) [000] d..2 82318.239994: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131398   sfEventThread-8882  ( 8858) [002] d..4 82318.240005: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131399          <idle>-0     (-----) [003] .n.1 82318.240012: cpu_idle: state=4294967295 cpu_id=3
131400 kgsl_worker_thr-258   (  258) [000] d..3 82318.240016: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131401          <idle>-0     (-----) [003] d..2 82318.240024: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
131402 kgsl_worker_thr-258   (  258) [000] d..2 82318.240043: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131403   sfEventThread-8882  ( 8858) [002] d..2 82318.240052: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131404          <idle>-0     (-----) [002] d..1 82318.240073: cpu_idle: state=0 cpu_id=2
131405  kworker/u16:13-1147  ( 1147) [000] d..2 82318.240221: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131406          <idle>-0     (-----) [000] d..1 82318.240235: cpu_idle: state=0 cpu_id=0
131407  surfaceflinger-8858  ( 8858) [003] d..1 82318.240399: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131408  surfaceflinger-8858  ( 8858) [003] d..2 82318.240426: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131409          <idle>-0     (-----) [002] .n.1 82318.240433: cpu_idle: state=4294967295 cpu_id=2
131410          <idle>-0     (-----) [002] d..2 82318.240447: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
131411   sfEventThread-8882  ( 8858) [002] d..2 82318.240489: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131412          <idle>-0     (-----) [002] d..1 82318.240502: cpu_idle: state=0 cpu_id=2
131413  surfaceflinger-8858  ( 8858) [003] ...1 82318.240643: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
131414  surfaceflinger-8858  ( 8858) [003] ...1 82318.240652: tracing_mark_write: E|8858
131415  surfaceflinger-8858  ( 8858) [003] .... 82318.240720: binder_transaction: transaction=1572870 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
131416  surfaceflinger-8858  ( 8858) [003] .... 82318.240728: binder_transaction_alloc_buf: transaction=1572870 data_size=540 offsets_size=96
131417  surfaceflinger-8858  ( 8858) [003] ...2 82318.240758: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
131418  surfaceflinger-8858  ( 8858) [003] d..4 82318.240766: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
131419  surfaceflinger-8858  ( 8858) [003] d..5 82318.240792: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
131420          <idle>-0     (-----) [002] .n.1 82318.240797: cpu_idle: state=4294967295 cpu_id=2
131421          <idle>-0     (-----) [002] d..2 82318.240809: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
131422 [email protected]   (  619) [002] .... 82318.240820: binder_transaction_received: transaction=1572870
131423  surfaceflinger-8858  ( 8858) [003] d..2 82318.240831: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131424          <idle>-0     (-----) [003] d..1 82318.240855: cpu_idle: state=0 cpu_id=3
131425 [email protected]   (  619) [002] ...1 82318.240869: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
131426 [email protected]   (  619) [002] ...1 82318.240990: tracing_mark_write: B|619|HWCSession::PresentDisplay::
131427 [email protected]   (  619) [002] ...1 82318.241178: tracing_mark_write: B|619|HWDeviceDRM::Commit::
131428 [email protected]   (  619) [002] ...1 82318.241193: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
131429          <idle>-0     (-----) [000] d.s2 82318.241809: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131430          <idle>-0     (-----) [000] dns3 82318.241831: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131431          <idle>-0     (-----) [000] .n.1 82318.241850: cpu_idle: state=4294967295 cpu_id=0
131432          <idle>-0     (-----) [000] d..2 82318.241861: 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
131433     rcu_preempt-7     (    7) [000] d..2 82318.241899: 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
131434          <idle>-0     (-----) [000] d..1 82318.241916: cpu_idle: state=0 cpu_id=0
131435 [email protected]   (  619) [002] d..2 82318.241926: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131436 [email protected]   (  619) [002] d..3 82318.241954: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131437          <idle>-0     (-----) [001] .n.1 82318.241960: cpu_idle: state=4294967295 cpu_id=1
131438          <idle>-0     (-----) [001] d..2 82318.241974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131439 [email protected]   (  619) [002] ...1 82318.242087: tracing_mark_write: E|619
131440 [email protected]   (  619) [002] ...1 82318.242095: tracing_mark_write: E|619
131441 [email protected]   (  619) [002] ...1 82318.242165: tracing_mark_write: E|619
131442 [email protected]   (  619) [002] ...1 82318.242217: tracing_mark_write: E|619
131443 [email protected]   (  619) [002] .... 82318.242237: binder_transaction: transaction=1572871 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
131444 [email protected]   (  619) [002] .... 82318.242242: binder_transaction_alloc_buf: transaction=1572871 data_size=576 offsets_size=112
131445 [email protected]   (  619) [002] d..2 82318.242268: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131446 [email protected]   (  619) [002] d..3 82318.242291: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131447 [email protected]   (  619) [002] .... 82318.242298: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
131448          <idle>-0     (-----) [003] .n.1 82318.242299: cpu_idle: state=4294967295 cpu_id=3
131449          <idle>-0     (-----) [003] d..2 82318.242314: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
131450  surfaceflinger-8858  ( 8858) [003] .... 82318.242326: binder_transaction_received: transaction=1572871
131451 [email protected]   (  619) [002] d..2 82318.242405: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131452          <idle>-0     (-----) [002] d..1 82318.242432: cpu_idle: state=0 cpu_id=2
131453 crtc_commit:111-321   (  321) [001] d..2 82318.242748: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
131454          <idle>-0     (-----) [001] d..1 82318.242768: cpu_idle: state=0 cpu_id=1
131455  surfaceflinger-8858  ( 8858) [003] d..2 82318.242820: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131456          <idle>-0     (-----) [003] d..1 82318.242845: cpu_idle: state=0 cpu_id=3
131457          <idle>-0     (-----) [002] ...1 82318.243788: cpu_idle: state=4294967295 cpu_id=2
131458          <idle>-0     (-----) [002] d..1 82318.243794: cpu_idle: state=0 cpu_id=2
131459          <idle>-0     (-----) [000] d.h5 82318.247893: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131460          <idle>-0     (-----) [000] dnh6 82318.247911: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131461          <idle>-0     (-----) [000] dnh5 82318.247917: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131462          <idle>-0     (-----) [000] dnh6 82318.247931: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131463          <idle>-0     (-----) [001] .n.1 82318.247939: cpu_idle: state=4294967295 cpu_id=1
131464          <idle>-0     (-----) [000] .n.1 82318.247946: cpu_idle: state=4294967295 cpu_id=0
131465          <idle>-0     (-----) [001] d..2 82318.247954: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131466          <idle>-0     (-----) [000] d..2 82318.247962: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131467  crtc_event:111-322   (  322) [000] d..2 82318.248002: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131468          <idle>-0     (-----) [000] d..2 82318.248007: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
131469          <idle>-0     (-----) [000] dn.3 82318.248021: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
131470          <idle>-0     (-----) [000] d..2 82318.248031: 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
131471     ksoftirqd/0-3     (    3) [000] d.s2 82318.248041: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131472     ksoftirqd/0-3     (    3) [000] d.s3 82318.248060: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131473     ksoftirqd/0-3     (    3) [000] d..2 82318.248076: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131474 crtc_commit:111-321   (  321) [001] d..2 82318.248104: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
131475          <idle>-0     (-----) [001] d..1 82318.248115: cpu_idle: state=0 cpu_id=1
131476  kworker/u16:13-1147  ( 1147) [000] d..2 82318.248190: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131477          <idle>-0     (-----) [000] d..1 82318.248203: cpu_idle: state=0 cpu_id=0
131478          <idle>-0     (-----) [000] d.s2 82318.248475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131479          <idle>-0     (-----) [001] d.s3 82318.248480: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131480          <idle>-0     (-----) [000] dns3 82318.248496: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131481          <idle>-0     (-----) [001] d.s4 82318.248504: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131482          <idle>-0     (-----) [001] d.s3 82318.248513: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131483          <idle>-0     (-----) [000] .n.1 82318.248524: cpu_idle: state=4294967295 cpu_id=0
131484          <idle>-0     (-----) [000] d..2 82318.248534: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131485          <idle>-0     (-----) [001] dns4 82318.248553: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
131486  crtc_event:111-322   (  322) [000] d..2 82318.248559: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
131487     rcu_preempt-7     (    7) [000] d..2 82318.248570: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
131488          <idle>-0     (-----) [001] .n.1 82318.248577: cpu_idle: state=4294967295 cpu_id=1
131489          <idle>-0     (-----) [001] d..2 82318.248589: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131490     rcu_preempt-7     (    7) [000] d..3 82318.248593: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
131491     rcu_preempt-7     (    7) [000] d..2 82318.248606: 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
131492         rcuop/2-29    (   29) [000] d..2 82318.248612: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
131493         rcuop/2-29    (   29) [000] d..3 82318.248657: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
131494         rcuop/2-29    (   29) [000] d..2 82318.248662: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
131495  kworker/u16:13-1147  ( 1147) [001] d..2 82318.248675: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131496          <idle>-0     (-----) [001] d..1 82318.248692: cpu_idle: state=0 cpu_id=1
131497         rcuop/2-29    (   29) [000] d..3 82318.248700: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
131498          <idle>-0     (-----) [001] .n.1 82318.248706: cpu_idle: state=4294967295 cpu_id=1
131499         rcuop/2-29    (   29) [000] d..2 82318.248713: 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
131500          <idle>-0     (-----) [001] d..2 82318.248721: 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
131501         rcuop/3-37    (   37) [000] d..2 82318.248748: 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
131502     rcu_preempt-7     (    7) [001] d..2 82318.248752: 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
131503          <idle>-0     (-----) [001] d..1 82318.248764: cpu_idle: state=0 cpu_id=1
131504          <idle>-0     (-----) [000] d..1 82318.248766: cpu_idle: state=0 cpu_id=0
131505          <idle>-0     (-----) [000] d.h5 82318.250221: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131506          <idle>-0     (-----) [000] d.h6 82318.250242: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131507          <idle>-0     (-----) [001] .n.1 82318.250248: cpu_idle: state=4294967295 cpu_id=1
131508          <idle>-0     (-----) [000] ...1 82318.250259: cpu_idle: state=4294967295 cpu_id=0
131509          <idle>-0     (-----) [001] d..2 82318.250259: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131510          <idle>-0     (-----) [000] d..1 82318.250265: cpu_idle: state=0 cpu_id=0
131511 crtc_commit:111-321   (  321) [001] d..2 82318.250337: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131512          <idle>-0     (-----) [001] d..1 82318.250351: cpu_idle: state=0 cpu_id=1
131513          <idle>-0     (-----) [000] d.h5 82318.250526: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131514          <idle>-0     (-----) [000] dnh6 82318.250538: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131515          <idle>-0     (-----) [000] .n.1 82318.250553: cpu_idle: state=4294967295 cpu_id=0
131516          <idle>-0     (-----) [000] d..2 82318.250566: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131517  crtc_event:111-322   (  322) [000] d..2 82318.250596: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131518          <idle>-0     (-----) [000] d..1 82318.250609: cpu_idle: state=0 cpu_id=0
131519          <idle>-0     (-----) [003] d.h2 82318.252295: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
131520          <idle>-0     (-----) [003] dnh3 82318.252322: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
131521          <idle>-0     (-----) [003] .n.1 82318.252404: cpu_idle: state=4294967295 cpu_id=3
131522          <idle>-0     (-----) [003] d..2 82318.252421: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
131523        DispSync-8879  ( 8858) [003] d..1 82318.252440: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
131524        DispSync-8879  ( 8858) [003] d..2 82318.252458: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
131525          <idle>-0     (-----) [001] .n.1 82318.252464: cpu_idle: state=4294967295 cpu_id=1
131526          <idle>-0     (-----) [001] d..2 82318.252480: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
131527        DispSync-8879  ( 8858) [003] d..2 82318.252503: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131528          <idle>-0     (-----) [003] d..2 82318.252508: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
131529          <idle>-0     (-----) [003] dn.3 82318.252526: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
131530  appEventThread-8881  ( 8858) [001] d..3 82318.252527: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131531          <idle>-0     (-----) [003] d..2 82318.252537: 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
131532          <idle>-0     (-----) [004] dnh2 82318.252560: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131533          <idle>-0     (-----) [004] .n.1 82318.252564: cpu_idle: state=4294967295 cpu_id=4
131534     ksoftirqd/3-34    (   34) [003] d..2 82318.252572: 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
131535          <idle>-0     (-----) [004] d..2 82318.252574: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
131536          <idle>-0     (-----) [003] d..1 82318.252587: cpu_idle: state=0 cpu_id=3
131537  appEventThread-8881  ( 8858) [001] d..2 82318.252595: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131538          <idle>-0     (-----) [001] d..1 82318.252608: cpu_idle: state=0 cpu_id=1
131539 s.nexuslauncher-10023 (10023) [004] .... 82318.252775: binder_transaction: transaction=1572872 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
131540 s.nexuslauncher-10023 (10023) [004] .... 82318.252780: binder_transaction_alloc_buf: transaction=1572872 data_size=80 offsets_size=0
131541 s.nexuslauncher-10023 (10023) [004] d..4 82318.252785: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
131542          <idle>-0     (-----) [000] dnh2 82318.252854: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
131543          <idle>-0     (-----) [000] .n.1 82318.252861: cpu_idle: state=4294967295 cpu_id=0
131544 s.nexuslauncher-10023 (10023) [004] d..3 82318.252874: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131545          <idle>-0     (-----) [000] d..2 82318.252874: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
131546   Binder:8858_1-8871  ( 8858) [000] .... 82318.252885: binder_transaction_received: transaction=1572872
131547 s.nexuslauncher-10023 (10023) [004] d..4 82318.252891: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131548          <idle>-0     (-----) [005] .n.1 82318.252898: cpu_idle: state=4294967295 cpu_id=5
131549          <idle>-0     (-----) [005] d..2 82318.252910: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131550   Binder:8858_1-8871  ( 8858) [000] d..1 82318.252928: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
131551   Binder:8858_1-8871  ( 8858) [000] d..2 82318.252948: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
131552          <idle>-0     (-----) [001] .n.1 82318.252954: cpu_idle: state=4294967295 cpu_id=1
131553    RenderThread-16607 (10023) [005] d..2 82318.252959: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131554          <idle>-0     (-----) [001] d..2 82318.252963: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
131555          <idle>-0     (-----) [005] d..1 82318.252971: cpu_idle: state=0 cpu_id=5
131556   Binder:8858_1-8871  ( 8858) [000] d..2 82318.253003: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131557  appEventThread-8881  ( 8858) [001] d..2 82318.253010: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131558          <idle>-0     (-----) [001] d..1 82318.253020: cpu_idle: state=0 cpu_id=1
131559          <idle>-0     (-----) [000] d..1 82318.253021: cpu_idle: state=0 cpu_id=0
131560 s.nexuslauncher-10023 (10023) [004] d..3 82318.253197: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131561 s.nexuslauncher-10023 (10023) [004] d..4 82318.253215: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131562          <idle>-0     (-----) [005] .n.1 82318.253220: cpu_idle: state=4294967295 cpu_id=5
131563          <idle>-0     (-----) [005] d..2 82318.253229: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131564 s.nexuslauncher-10023 (10023) [004] d..2 82318.253242: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
131565          <idle>-0     (-----) [004] d..1 82318.253259: cpu_idle: state=0 cpu_id=4
131566    RenderThread-16607 (10023) [005] d..1 82318.253386: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131567    RenderThread-16607 (10023) [005] d..2 82318.253404: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131568          <idle>-0     (-----) [004] .n.1 82318.253410: cpu_idle: state=4294967295 cpu_id=4
131569          <idle>-0     (-----) [004] d..2 82318.253420: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
131570    RenderThread-16607 (10023) [005] .... 82318.253453: binder_transaction: transaction=1572873 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
131571    RenderThread-16607 (10023) [005] .... 82318.253457: binder_transaction_alloc_buf: transaction=1572873 data_size=104 offsets_size=0
131572    RenderThread-16607 (10023) [005] ...2 82318.253462: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
131573    RenderThread-16607 (10023) [005] d..4 82318.253465: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
131574    RenderThread-16607 (10023) [005] d..5 82318.253486: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131575 s.nexuslauncher-10023 (10023) [004] d..2 82318.253531: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
131576    RenderThread-16607 (10023) [005] d..2 82318.253534: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131577          <idle>-0     (-----) [004] d..1 82318.253542: cpu_idle: state=0 cpu_id=4
131578   Binder:8858_1-8871  ( 8858) [005] .... 82318.253545: binder_transaction_received: transaction=1572873
131579   Binder:8858_1-8871  ( 8858) [005] .... 82318.253602: binder_transaction: transaction=1572874 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
131580   Binder:8858_1-8871  ( 8858) [005] .... 82318.253606: binder_transaction_alloc_buf: transaction=1572874 data_size=52 offsets_size=8
131581   Binder:8858_1-8871  ( 8858) [005] d..2 82318.253613: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131582   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.253623: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131583   Binder:8858_1-8871  ( 8858) [005] d..2 82318.253629: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
131584    RenderThread-16607 (10023) [005] .... 82318.253638: binder_transaction_received: transaction=1572874
131585    RenderThread-16607 (10023) [005] d..2 82318.254882: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131586   Binder:8858_1-8871  ( 8858) [005] .... 82318.254895: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
131587   Binder:8858_1-8871  ( 8858) [005] d..2 82318.254962: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131588          <idle>-0     (-----) [005] d.h2 82318.254978: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131589          <idle>-0     (-----) [005] d.h3 82318.254985: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
131590          <idle>-0     (-----) [005] dnh3 82318.254988: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131591          <idle>-0     (-----) [005] d..2 82318.255002: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131592          <idle>-0     (-----) [001] d.s2 82318.255138: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
131593    RenderThread-16607 (10023) [005] d.s2 82318.255143: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
131594          <idle>-0     (-----) [001] dns3 82318.255163: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
131595          <idle>-0     (-----) [001] .n.1 82318.255177: cpu_idle: state=4294967295 cpu_id=1
131596          <idle>-0     (-----) [001] d..2 82318.255188: 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
131597          <idle>-0     (-----) [000] dnh2 82318.255191: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131598          <idle>-0     (-----) [000] .n.1 82318.255199: cpu_idle: state=4294967295 cpu_id=0
131599          <idle>-0     (-----) [000] d..2 82318.255215: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131600     rcu_preempt-7     (    7) [001] d..2 82318.255229: 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
131601    RenderThread-16607 (10023) [005] .... 82318.255237: binder_transaction: transaction=1572875 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
131602    RenderThread-16607 (10023) [005] .... 82318.255241: binder_transaction_alloc_buf: transaction=1572875 data_size=192 offsets_size=8
131603    RenderThread-16607 (10023) [005] ...2 82318.255248: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
131604    RenderThread-16607 (10023) [005] d..4 82318.255251: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131605    RenderThread-16607 (10023) [005] d..5 82318.255260: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131606          <idle>-0     (-----) [001] d..1 82318.255271: cpu_idle: state=0 cpu_id=1
131607    RenderThread-16607 (10023) [005] d..2 82318.255273: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131608   Binder:8858_1-8871  ( 8858) [005] .... 82318.255283: binder_transaction_received: transaction=1572875
131609          <idle>-0     (-----) [001] ...1 82318.255287: cpu_idle: state=4294967295 cpu_id=1
131610          <idle>-0     (-----) [001] d..1 82318.255292: cpu_idle: state=0 cpu_id=1
131611  kworker/u16:13-1147  ( 1147) [000] d..2 82318.255433: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131612   Binder:8858_1-8871  ( 8858) [005] .... 82318.255433: binder_transaction: transaction=1572876 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
131613   Binder:8858_1-8871  ( 8858) [005] .... 82318.255437: binder_transaction_alloc_buf: transaction=1572876 data_size=68 offsets_size=0
131614   Binder:8858_1-8871  ( 8858) [005] d..2 82318.255440: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131615          <idle>-0     (-----) [000] d..1 82318.255449: cpu_idle: state=0 cpu_id=0
131616   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.255451: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131617   Binder:8858_1-8871  ( 8858) [005] d..2 82318.255457: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
131618    RenderThread-16607 (10023) [005] .... 82318.255466: binder_transaction_received: transaction=1572876
131619    RenderThread-16607 (10023) [005] d..2 82318.255531: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131620   Binder:8858_1-8871  ( 8858) [005] .... 82318.255539: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
131621   Binder:8858_1-8871  ( 8858) [005] d..2 82318.255589: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131622          <idle>-0     (-----) [005] d..1 82318.255606: cpu_idle: state=0 cpu_id=5
131623          <idle>-0     (-----) [003] d.h2 82318.256289: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
131624          <idle>-0     (-----) [003] dnh3 82318.256303: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
131625          <idle>-0     (-----) [000] d.h3 82318.256306: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
131626          <idle>-0     (-----) [003] .n.1 82318.256313: cpu_idle: state=4294967295 cpu_id=3
131627          <idle>-0     (-----) [003] d..2 82318.256326: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
131628          <idle>-0     (-----) [000] dnh4 82318.256327: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
131629        DispSync-8879  ( 8858) [003] d..1 82318.256342: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131630          <idle>-0     (-----) [000] .n.1 82318.256342: cpu_idle: state=4294967295 cpu_id=0
131631          <idle>-0     (-----) [000] d..2 82318.256356: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
131632        DispSync-8879  ( 8858) [003] d..2 82318.256360: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131633          <idle>-0     (-----) [002] .n.1 82318.256365: cpu_idle: state=4294967295 cpu_id=2
131634          <idle>-0     (-----) [002] d..2 82318.256379: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
131635        DispSync-8879  ( 8858) [003] d..2 82318.256396: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131636 kgsl_worker_thr-258   (  258) [000] d..2 82318.256411: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131637          <idle>-0     (-----) [003] d..1 82318.256413: cpu_idle: state=0 cpu_id=3
131638   sfEventThread-8882  ( 8858) [002] d..3 82318.256433: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131639 kgsl_worker_thr-258   (  258) [000] d..3 82318.256434: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131640   sfEventThread-8882  ( 8858) [002] d..4 82318.256459: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131641 kgsl_worker_thr-258   (  258) [000] d..2 82318.256460: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131642          <idle>-0     (-----) [003] .n.1 82318.256465: cpu_idle: state=4294967295 cpu_id=3
131643          <idle>-0     (-----) [003] d..2 82318.256478: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
131644   sfEventThread-8882  ( 8858) [002] d..2 82318.256507: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131645          <idle>-0     (-----) [002] d..1 82318.256527: cpu_idle: state=0 cpu_id=2
131646  kworker/u16:13-1147  ( 1147) [000] d..2 82318.256638: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131647          <idle>-0     (-----) [000] d..1 82318.256659: cpu_idle: state=0 cpu_id=0
131648  surfaceflinger-8858  ( 8858) [003] d..1 82318.256847: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131649  surfaceflinger-8858  ( 8858) [003] d..2 82318.256875: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131650          <idle>-0     (-----) [002] .n.1 82318.256880: cpu_idle: state=4294967295 cpu_id=2
131651          <idle>-0     (-----) [002] d..2 82318.256893: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
131652   sfEventThread-8882  ( 8858) [002] d..2 82318.256936: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131653          <idle>-0     (-----) [002] d..1 82318.256948: cpu_idle: state=0 cpu_id=2
131654  surfaceflinger-8858  ( 8858) [003] ...1 82318.257097: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
131655  surfaceflinger-8858  ( 8858) [003] ...1 82318.257108: tracing_mark_write: E|8858
131656  surfaceflinger-8858  ( 8858) [003] .... 82318.257176: binder_transaction: transaction=1572877 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
131657  surfaceflinger-8858  ( 8858) [003] .... 82318.257183: binder_transaction_alloc_buf: transaction=1572877 data_size=540 offsets_size=96
131658  surfaceflinger-8858  ( 8858) [003] ...2 82318.257211: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
131659  surfaceflinger-8858  ( 8858) [003] d..4 82318.257220: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
131660  surfaceflinger-8858  ( 8858) [003] d..5 82318.257246: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
131661          <idle>-0     (-----) [002] .n.1 82318.257251: cpu_idle: state=4294967295 cpu_id=2
131662          <idle>-0     (-----) [002] d..2 82318.257264: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
131663 [email protected]   (  619) [002] .... 82318.257276: binder_transaction_received: transaction=1572877
131664  surfaceflinger-8858  ( 8858) [003] d..2 82318.257289: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131665          <idle>-0     (-----) [003] d..1 82318.257312: cpu_idle: state=0 cpu_id=3
131666 [email protected]   (  619) [002] ...1 82318.257326: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
131667 [email protected]   (  619) [002] ...1 82318.257444: tracing_mark_write: B|619|HWCSession::PresentDisplay::
131668 [email protected]   (  619) [002] ...1 82318.257638: tracing_mark_write: B|619|HWDeviceDRM::Commit::
131669 [email protected]   (  619) [002] ...1 82318.257652: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
131670 [email protected]   (  619) [002] d..2 82318.258318: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131671 [email protected]   (  619) [002] d..3 82318.258350: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131672          <idle>-0     (-----) [001] .n.1 82318.258354: cpu_idle: state=4294967295 cpu_id=1
131673          <idle>-0     (-----) [001] d..2 82318.258367: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131674 crtc_commit:111-321   (  321) [001] d.s2 82318.258482: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
131675 crtc_commit:111-321   (  321) [001] d.s3 82318.258504: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
131676 [email protected]   (  619) [002] ...1 82318.258541: tracing_mark_write: E|619
131677 [email protected]   (  619) [002] ...1 82318.258550: tracing_mark_write: E|619
131678 [email protected]   (  619) [002] ...1 82318.258618: tracing_mark_write: E|619
131679 [email protected]   (  619) [002] ...1 82318.258670: tracing_mark_write: E|619
131680 [email protected]   (  619) [002] .... 82318.258690: binder_transaction: transaction=1572878 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
131681 [email protected]   (  619) [002] .... 82318.258695: binder_transaction_alloc_buf: transaction=1572878 data_size=576 offsets_size=112
131682 [email protected]   (  619) [002] d..2 82318.258722: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131683 [email protected]   (  619) [002] d..3 82318.258748: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131684          <idle>-0     (-----) [003] .n.1 82318.258753: cpu_idle: state=4294967295 cpu_id=3
131685 [email protected]   (  619) [002] .... 82318.258754: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
131686          <idle>-0     (-----) [003] d..2 82318.258768: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
131687  surfaceflinger-8858  ( 8858) [003] .... 82318.258779: binder_transaction_received: transaction=1572878
131688 [email protected]   (  619) [002] d..2 82318.258864: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131689          <idle>-0     (-----) [002] d..1 82318.258890: cpu_idle: state=0 cpu_id=2
131690 crtc_commit:111-321   (  321) [001] d..2 82318.259209: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
131691  surfaceflinger-8858  ( 8858) [003] d..2 82318.259268: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131692     kworker/1:1-25249 (25249) [001] d..2 82318.259269: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131693          <idle>-0     (-----) [001] d..1 82318.259283: cpu_idle: state=0 cpu_id=1
131694          <idle>-0     (-----) [003] d..1 82318.259293: cpu_idle: state=0 cpu_id=3
131695          <idle>-0     (-----) [002] ...1 82318.260233: cpu_idle: state=4294967295 cpu_id=2
131696          <idle>-0     (-----) [002] d..1 82318.260239: cpu_idle: state=0 cpu_id=2
131697          <idle>-0     (-----) [001] d.s2 82318.261812: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
131698          <idle>-0     (-----) [001] dns3 82318.261834: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
131699          <idle>-0     (-----) [001] .n.1 82318.261853: cpu_idle: state=4294967295 cpu_id=1
131700          <idle>-0     (-----) [001] d..2 82318.261865: 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
131701     rcu_preempt-7     (    7) [001] d..2 82318.261876: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
131702     rcu_preempt-7     (    7) [001] d..3 82318.261921: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
131703     rcu_preempt-7     (    7) [001] d..2 82318.261936: 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
131704         rcuop/2-29    (   29) [001] d..2 82318.261942: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
131705         rcuop/2-29    (   29) [001] d..3 82318.261978: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
131706         rcuop/2-29    (   29) [001] d..2 82318.261982: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
131707         rcuop/2-29    (   29) [001] d..3 82318.261995: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
131708         rcuop/2-29    (   29) [001] d..2 82318.262006: 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
131709         rcuop/3-37    (   37) [001] d..2 82318.262027: 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
131710     rcu_preempt-7     (    7) [001] d..2 82318.262058: 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
131711          <idle>-0     (-----) [001] d..1 82318.262077: cpu_idle: state=0 cpu_id=1
131712          <idle>-0     (-----) [000] d.h5 82318.264362: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131713          <idle>-0     (-----) [000] dnh6 82318.264381: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131714          <idle>-0     (-----) [000] dnh5 82318.264386: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131715          <idle>-0     (-----) [000] dnh6 82318.264400: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131716          <idle>-0     (-----) [001] .n.1 82318.264408: cpu_idle: state=4294967295 cpu_id=1
131717          <idle>-0     (-----) [000] .n.1 82318.264416: cpu_idle: state=4294967295 cpu_id=0
131718          <idle>-0     (-----) [001] d..2 82318.264420: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131719          <idle>-0     (-----) [000] d..2 82318.264431: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131720  crtc_event:111-322   (  322) [000] d..2 82318.264467: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131721          <idle>-0     (-----) [000] d..1 82318.264483: cpu_idle: state=0 cpu_id=0
131722 crtc_commit:111-321   (  321) [001] d..2 82318.264575: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
131723          <idle>-0     (-----) [001] d..1 82318.264587: cpu_idle: state=0 cpu_id=1
131724          <idle>-0     (-----) [001] d.s3 82318.265143: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131725          <idle>-0     (-----) [001] d.s4 82318.265166: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131726          <idle>-0     (-----) [000] .n.1 82318.265172: cpu_idle: state=4294967295 cpu_id=0
131727          <idle>-0     (-----) [001] d.s3 82318.265172: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131728          <idle>-0     (-----) [000] d..2 82318.265187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131729          <idle>-0     (-----) [001] dns4 82318.265208: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
131730          <idle>-0     (-----) [001] .n.1 82318.265227: cpu_idle: state=4294967295 cpu_id=1
131731  crtc_event:111-322   (  322) [000] d..2 82318.265230: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131732          <idle>-0     (-----) [001] d..2 82318.265240: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131733          <idle>-0     (-----) [000] d..1 82318.265241: cpu_idle: state=0 cpu_id=0
131734  kworker/u16:13-1147  ( 1147) [001] d..2 82318.265361: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131735          <idle>-0     (-----) [001] d..1 82318.265374: cpu_idle: state=0 cpu_id=1
131736          <idle>-0     (-----) [000] d.h5 82318.266690: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131737          <idle>-0     (-----) [000] d.h6 82318.266709: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131738          <idle>-0     (-----) [001] .n.1 82318.266717: cpu_idle: state=4294967295 cpu_id=1
131739          <idle>-0     (-----) [000] ...1 82318.266725: cpu_idle: state=4294967295 cpu_id=0
131740          <idle>-0     (-----) [001] d..2 82318.266726: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131741          <idle>-0     (-----) [000] d..1 82318.266732: cpu_idle: state=0 cpu_id=0
131742 crtc_commit:111-321   (  321) [001] d..2 82318.266804: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131743          <idle>-0     (-----) [001] d..1 82318.266815: cpu_idle: state=0 cpu_id=1
131744          <idle>-0     (-----) [000] d.h5 82318.266993: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131745          <idle>-0     (-----) [000] dnh6 82318.267005: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131746          <idle>-0     (-----) [000] .n.1 82318.267019: cpu_idle: state=4294967295 cpu_id=0
131747          <idle>-0     (-----) [000] d..2 82318.267032: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131748  crtc_event:111-322   (  322) [000] d..2 82318.267060: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131749          <idle>-0     (-----) [000] d..1 82318.267074: cpu_idle: state=0 cpu_id=0
131750          <idle>-0     (-----) [001] d.s2 82318.268477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
131751          <idle>-0     (-----) [001] dns3 82318.268500: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
131752          <idle>-0     (-----) [001] dns3 82318.268506: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
131753          <idle>-0     (-----) [001] dns4 82318.268520: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
131754          <idle>-0     (-----) [001] .n.1 82318.268530: cpu_idle: state=4294967295 cpu_id=1
131755          <idle>-0     (-----) [001] d..2 82318.268541: 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
131756     rcu_preempt-7     (    7) [001] d..2 82318.268554: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
131757     rcu_preempt-7     (    7) [001] d..3 82318.268569: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
131758     rcu_preempt-7     (    7) [001] d..2 82318.268582: 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
131759         rcuop/2-29    (   29) [001] d..2 82318.268586: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
131760         rcuop/2-29    (   29) [001] d..3 82318.268601: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
131761         rcuop/2-29    (   29) [001] d..2 82318.268611: 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
131762         rcuop/3-37    (   37) [001] d..2 82318.268627: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131763  kworker/u16:13-1147  ( 1147) [001] d..2 82318.268708: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131764          <idle>-0     (-----) [001] d..1 82318.268727: cpu_idle: state=0 cpu_id=1
131765          <idle>-0     (-----) [003] d.h2 82318.268753: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
131766          <idle>-0     (-----) [003] dnh3 82318.268773: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
131767          <idle>-0     (-----) [003] .n.1 82318.268783: cpu_idle: state=4294967295 cpu_id=3
131768          <idle>-0     (-----) [003] d..2 82318.268796: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
131769        DispSync-8879  ( 8858) [003] d..1 82318.268814: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
131770        DispSync-8879  ( 8858) [003] d..2 82318.268830: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
131771          <idle>-0     (-----) [001] .n.1 82318.268837: cpu_idle: state=4294967295 cpu_id=1
131772          <idle>-0     (-----) [001] d..2 82318.268850: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
131773          <idle>-0     (-----) [000] ...1 82318.268857: cpu_idle: state=4294967295 cpu_id=0
131774          <idle>-0     (-----) [000] d..1 82318.268862: cpu_idle: state=0 cpu_id=0
131775        DispSync-8879  ( 8858) [003] d..2 82318.268870: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131776          <idle>-0     (-----) [003] d..1 82318.268885: cpu_idle: state=0 cpu_id=3
131777  appEventThread-8881  ( 8858) [001] d..3 82318.268898: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131778          <idle>-0     (-----) [004] dnh2 82318.268926: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131779          <idle>-0     (-----) [004] .n.1 82318.268931: cpu_idle: state=4294967295 cpu_id=4
131780          <idle>-0     (-----) [004] d..2 82318.268939: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
131781  appEventThread-8881  ( 8858) [001] d..2 82318.268963: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131782          <idle>-0     (-----) [001] d..1 82318.268981: cpu_idle: state=0 cpu_id=1
131783 s.nexuslauncher-10023 (10023) [004] .... 82318.269133: binder_transaction: transaction=1572879 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
131784 s.nexuslauncher-10023 (10023) [004] .... 82318.269139: binder_transaction_alloc_buf: transaction=1572879 data_size=80 offsets_size=0
131785 s.nexuslauncher-10023 (10023) [004] d..4 82318.269145: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
131786          <idle>-0     (-----) [000] dnh2 82318.269213: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
131787          <idle>-0     (-----) [000] .n.1 82318.269220: cpu_idle: state=4294967295 cpu_id=0
131788          <idle>-0     (-----) [000] d..2 82318.269233: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
131789 s.nexuslauncher-10023 (10023) [004] d..3 82318.269236: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131790   Binder:8858_1-8871  ( 8858) [000] .... 82318.269243: binder_transaction_received: transaction=1572879
131791 s.nexuslauncher-10023 (10023) [004] d..4 82318.269252: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131792          <idle>-0     (-----) [005] .n.1 82318.269259: cpu_idle: state=4294967295 cpu_id=5
131793          <idle>-0     (-----) [005] d..2 82318.269271: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131794   Binder:8858_1-8871  ( 8858) [000] d..1 82318.269286: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
131795   Binder:8858_1-8871  ( 8858) [000] d..2 82318.269306: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
131796          <idle>-0     (-----) [001] .n.1 82318.269313: cpu_idle: state=4294967295 cpu_id=1
131797    RenderThread-16607 (10023) [005] d..2 82318.269314: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131798          <idle>-0     (-----) [005] d..1 82318.269325: cpu_idle: state=0 cpu_id=5
131799          <idle>-0     (-----) [001] d..2 82318.269326: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
131800   Binder:8858_1-8871  ( 8858) [000] d..2 82318.269360: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131801  appEventThread-8881  ( 8858) [001] d..2 82318.269373: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131802          <idle>-0     (-----) [000] d..1 82318.269379: cpu_idle: state=0 cpu_id=0
131803          <idle>-0     (-----) [001] d..1 82318.269388: cpu_idle: state=0 cpu_id=1
131804 s.nexuslauncher-10023 (10023) [004] d..3 82318.269555: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131805 s.nexuslauncher-10023 (10023) [004] d..4 82318.269574: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131806          <idle>-0     (-----) [005] .n.1 82318.269579: cpu_idle: state=4294967295 cpu_id=5
131807          <idle>-0     (-----) [005] d..2 82318.269588: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131808 s.nexuslauncher-10023 (10023) [004] d..2 82318.269600: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
131809          <idle>-0     (-----) [004] d..1 82318.269617: cpu_idle: state=0 cpu_id=4
131810    RenderThread-16607 (10023) [005] d..1 82318.269747: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131811    RenderThread-16607 (10023) [005] d..2 82318.269764: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
131812          <idle>-0     (-----) [004] .n.1 82318.269770: cpu_idle: state=4294967295 cpu_id=4
131813          <idle>-0     (-----) [004] d..2 82318.269780: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
131814    RenderThread-16607 (10023) [005] .... 82318.269813: binder_transaction: transaction=1572880 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
131815    RenderThread-16607 (10023) [005] .... 82318.269817: binder_transaction_alloc_buf: transaction=1572880 data_size=104 offsets_size=0
131816    RenderThread-16607 (10023) [005] ...2 82318.269821: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
131817    RenderThread-16607 (10023) [005] d..4 82318.269825: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
131818    RenderThread-16607 (10023) [005] d..5 82318.269846: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131819    RenderThread-16607 (10023) [005] d.h5 82318.269886: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
131820 s.nexuslauncher-10023 (10023) [004] d..2 82318.269897: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
131821          <idle>-0     (-----) [004] d..1 82318.269908: cpu_idle: state=0 cpu_id=4
131822    RenderThread-16607 (10023) [005] d..2 82318.269911: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131823          <idle>-0     (-----) [003] dnh2 82318.269913: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
131824          <idle>-0     (-----) [003] .n.1 82318.269920: cpu_idle: state=4294967295 cpu_id=3
131825   Binder:8858_1-8871  ( 8858) [005] .... 82318.269923: binder_transaction_received: transaction=1572880
131826          <idle>-0     (-----) [003] d..2 82318.269933: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
131827         sugov:0-576   (  576) [003] .... 82318.269973: clk_set_rate: pwrcl_clk 652800000
131828   Binder:8858_1-8871  ( 8858) [005] .... 82318.269979: binder_transaction: transaction=1572881 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
131829   Binder:8858_1-8871  ( 8858) [005] .... 82318.269983: binder_transaction_alloc_buf: transaction=1572881 data_size=52 offsets_size=8
131830   Binder:8858_1-8871  ( 8858) [005] d..2 82318.269989: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131831         sugov:0-576   (  576) [003] .... 82318.269992: clk_set_rate: cpu3_pwrcl_clk 748800000
131832   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.270000: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131833         sugov:0-576   (  576) [003] .... 82318.270002: clk_set_rate: cpu2_pwrcl_clk 748800000
131834   Binder:8858_1-8871  ( 8858) [005] d..2 82318.270007: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
131835         sugov:0-576   (  576) [003] .... 82318.270011: clk_set_rate: cpu1_pwrcl_clk 748800000
131836    RenderThread-16607 (10023) [005] .... 82318.270015: binder_transaction_received: transaction=1572881
131837         sugov:0-576   (  576) [003] .... 82318.270019: clk_set_rate: cpu0_pwrcl_clk 652800000
131838         sugov:0-576   (  576) [003] .... 82318.270134: cpu_frequency: state=652800 cpu_id=0
131839         sugov:0-576   (  576) [003] .... 82318.270159: cpu_frequency: state=652800 cpu_id=1
131840         sugov:0-576   (  576) [003] .... 82318.270165: cpu_frequency: state=652800 cpu_id=2
131841         sugov:0-576   (  576) [003] .... 82318.270170: cpu_frequency: state=652800 cpu_id=3
131842         sugov:0-576   (  576) [003] d..2 82318.270206: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131843          <idle>-0     (-----) [003] d..1 82318.270221: cpu_idle: state=0 cpu_id=3
131844          <idle>-0     (-----) [001] ...1 82318.270978: cpu_idle: state=4294967295 cpu_id=1
131845          <idle>-0     (-----) [001] d..1 82318.270984: cpu_idle: state=0 cpu_id=1
131846    RenderThread-16607 (10023) [005] d..2 82318.271291: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131847   Binder:8858_1-8871  ( 8858) [005] .... 82318.271303: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
131848   Binder:8858_1-8871  ( 8858) [005] d..2 82318.271370: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131849          <idle>-0     (-----) [005] d.h2 82318.271387: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131850          <idle>-0     (-----) [005] d.h3 82318.271394: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
131851          <idle>-0     (-----) [005] dnh3 82318.271397: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131852          <idle>-0     (-----) [005] d..2 82318.271411: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
131853    RenderThread-16607 (10023) [005] .... 82318.271563: binder_transaction: transaction=1572882 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
131854    RenderThread-16607 (10023) [005] .... 82318.271568: binder_transaction_alloc_buf: transaction=1572882 data_size=192 offsets_size=8
131855    RenderThread-16607 (10023) [005] ...2 82318.271575: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
131856    RenderThread-16607 (10023) [005] d..4 82318.271578: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131857    RenderThread-16607 (10023) [005] d..5 82318.271591: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
131858    RenderThread-16607 (10023) [005] d..2 82318.271603: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131859   Binder:8858_1-8871  ( 8858) [005] .... 82318.271614: binder_transaction_received: transaction=1572882
131860   Binder:8858_1-8871  ( 8858) [005] .... 82318.271731: binder_transaction: transaction=1572883 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
131861   Binder:8858_1-8871  ( 8858) [005] .... 82318.271735: binder_transaction_alloc_buf: transaction=1572883 data_size=68 offsets_size=0
131862   Binder:8858_1-8871  ( 8858) [005] d..2 82318.271738: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
131863   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.271750: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
131864   Binder:8858_1-8871  ( 8858) [005] d..2 82318.271756: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
131865    RenderThread-16607 (10023) [005] .... 82318.271765: binder_transaction_received: transaction=1572883
131866    RenderThread-16607 (10023) [005] d..2 82318.271929: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
131867   Binder:8858_1-8871  ( 8858) [005] .... 82318.271939: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
131868   Binder:8858_1-8871  ( 8858) [005] d..2 82318.271998: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
131869          <idle>-0     (-----) [005] d..1 82318.272015: cpu_idle: state=0 cpu_id=5
131870          <idle>-0     (-----) [003] d.h2 82318.272751: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
131871          <idle>-0     (-----) [003] dnh3 82318.272772: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
131872          <idle>-0     (-----) [003] .n.1 82318.272782: cpu_idle: state=4294967295 cpu_id=3
131873          <idle>-0     (-----) [003] d..2 82318.272796: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
131874        DispSync-8879  ( 8858) [003] d..1 82318.272815: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131875          <idle>-0     (-----) [000] d.h3 82318.272834: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
131876        DispSync-8879  ( 8858) [003] d..2 82318.272834: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131877          <idle>-0     (-----) [002] .n.1 82318.272841: cpu_idle: state=4294967295 cpu_id=2
131878          <idle>-0     (-----) [000] dnh4 82318.272854: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
131879          <idle>-0     (-----) [002] d..2 82318.272857: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
131880          <idle>-0     (-----) [000] .n.1 82318.272870: cpu_idle: state=4294967295 cpu_id=0
131881        DispSync-8879  ( 8858) [003] d..2 82318.272877: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131882          <idle>-0     (-----) [000] d..2 82318.272886: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
131883          <idle>-0     (-----) [003] d..1 82318.272894: cpu_idle: state=0 cpu_id=3
131884   sfEventThread-8882  ( 8858) [002] d..3 82318.272915: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131885   sfEventThread-8882  ( 8858) [002] d..4 82318.272942: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131886 kgsl_worker_thr-258   (  258) [000] d..2 82318.272944: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
131887          <idle>-0     (-----) [003] .n.1 82318.272949: cpu_idle: state=4294967295 cpu_id=3
131888          <idle>-0     (-----) [003] d..2 82318.272963: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
131889   sfEventThread-8882  ( 8858) [002] d..2 82318.272992: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131890 kgsl_worker_thr-258   (  258) [000] d..3 82318.273002: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131891          <idle>-0     (-----) [002] d..1 82318.273013: cpu_idle: state=0 cpu_id=2
131892 kgsl_worker_thr-258   (  258) [000] d..2 82318.273032: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131893  kworker/u16:13-1147  ( 1147) [000] d..2 82318.273218: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131894          <idle>-0     (-----) [000] d..1 82318.273238: cpu_idle: state=0 cpu_id=0
131895  surfaceflinger-8858  ( 8858) [003] d..2 82318.273329: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
131896  surfaceflinger-8858  ( 8858) [003] d..3 82318.273395: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
131897  surfaceflinger-8858  ( 8858) [003] d..1 82318.273431: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131898  surfaceflinger-8858  ( 8858) [003] d..2 82318.273454: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
131899          <idle>-0     (-----) [002] .n.1 82318.273462: cpu_idle: state=4294967295 cpu_id=2
131900          <idle>-0     (-----) [002] d..2 82318.273476: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
131901   sfEventThread-8882  ( 8858) [002] d..2 82318.273525: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131902          <idle>-0     (-----) [002] d..1 82318.273540: cpu_idle: state=0 cpu_id=2
131903  surfaceflinger-8858  ( 8858) [003] ...1 82318.273692: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
131904  surfaceflinger-8858  ( 8858) [003] ...1 82318.273702: tracing_mark_write: E|8858
131905  surfaceflinger-8858  ( 8858) [003] .... 82318.273774: binder_transaction: transaction=1572884 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
131906  surfaceflinger-8858  ( 8858) [003] .... 82318.273781: binder_transaction_alloc_buf: transaction=1572884 data_size=540 offsets_size=96
131907  surfaceflinger-8858  ( 8858) [003] ...2 82318.273810: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
131908  surfaceflinger-8858  ( 8858) [003] d..4 82318.273819: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
131909  surfaceflinger-8858  ( 8858) [003] d..5 82318.273846: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
131910          <idle>-0     (-----) [002] .n.1 82318.273851: cpu_idle: state=4294967295 cpu_id=2
131911          <idle>-0     (-----) [002] d..2 82318.273864: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
131912  surfaceflinger-8858  ( 8858) [003] d..2 82318.273876: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
131913 [email protected]   (  619) [002] .... 82318.273876: binder_transaction_received: transaction=1572884
131914         rcuop/2-29    (   29) [003] d..2 82318.273885: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
131915 [email protected]   (  619) [002] ...1 82318.273928: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
131916         rcuop/2-29    (   29) [003] d..3 82318.273937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
131917         rcuop/2-29    (   29) [003] d..2 82318.273952: 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
131918     rcu_preempt-7     (    7) [003] d..2 82318.273987: 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
131919          <idle>-0     (-----) [003] d..1 82318.274010: cpu_idle: state=0 cpu_id=3
131920 [email protected]   (  619) [002] ...1 82318.274048: tracing_mark_write: B|619|HWCSession::PresentDisplay::
131921 [email protected]   (  619) [002] ...1 82318.274260: tracing_mark_write: B|619|HWDeviceDRM::Commit::
131922 [email protected]   (  619) [002] ...1 82318.274277: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
131923 [email protected]   (  619) [002] d..2 82318.275016: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131924 [email protected]   (  619) [002] d..3 82318.275050: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131925          <idle>-0     (-----) [001] .n.1 82318.275055: cpu_idle: state=4294967295 cpu_id=1
131926          <idle>-0     (-----) [001] d..2 82318.275071: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131927 crtc_commit:111-321   (  321) [001] d.s2 82318.275153: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131928 crtc_commit:111-321   (  321) [001] d.s3 82318.275179: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
131929          <idle>-0     (-----) [000] .n.1 82318.275186: cpu_idle: state=4294967295 cpu_id=0
131930          <idle>-0     (-----) [000] d..2 82318.275206: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
131931 [email protected]   (  619) [002] ...1 82318.275256: tracing_mark_write: E|619
131932 [email protected]   (  619) [002] ...1 82318.275276: tracing_mark_write: E|619
131933 [email protected]   (  619) [002] ...1 82318.275365: tracing_mark_write: E|619
131934 [email protected]   (  619) [002] ...1 82318.275441: tracing_mark_write: E|619
131935  kworker/u16:13-1147  ( 1147) [000] d..2 82318.275460: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131936 [email protected]   (  619) [002] .... 82318.275462: binder_transaction: transaction=1572885 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
131937 [email protected]   (  619) [002] .... 82318.275468: binder_transaction_alloc_buf: transaction=1572885 data_size=576 offsets_size=112
131938          <idle>-0     (-----) [000] d..1 82318.275477: cpu_idle: state=0 cpu_id=0
131939 [email protected]   (  619) [002] d..2 82318.275496: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131940 [email protected]   (  619) [002] d..3 82318.275522: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
131941 [email protected]   (  619) [002] .... 82318.275528: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
131942          <idle>-0     (-----) [003] .n.1 82318.275529: cpu_idle: state=4294967295 cpu_id=3
131943          <idle>-0     (-----) [003] d..2 82318.275545: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
131944  surfaceflinger-8858  ( 8858) [003] .... 82318.275557: binder_transaction_received: transaction=1572885
131945 [email protected]   (  619) [002] d..2 82318.275644: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
131946          <idle>-0     (-----) [002] d..1 82318.275673: cpu_idle: state=0 cpu_id=2
131947 crtc_commit:111-321   (  321) [001] d..2 82318.276004: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
131948          <idle>-0     (-----) [001] d..1 82318.276027: cpu_idle: state=0 cpu_id=1
131949  surfaceflinger-8858  ( 8858) [003] d..2 82318.276094: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
131950          <idle>-0     (-----) [003] d..1 82318.276115: cpu_idle: state=0 cpu_id=3
131951          <idle>-0     (-----) [002] ...1 82318.277043: cpu_idle: state=4294967295 cpu_id=2
131952          <idle>-0     (-----) [002] d..1 82318.277049: cpu_idle: state=0 cpu_id=2
131953          <idle>-0     (-----) [003] d.s2 82318.278486: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
131954          <idle>-0     (-----) [003] dns3 82318.278512: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
131955          <idle>-0     (-----) [003] .n.1 82318.278537: cpu_idle: state=4294967295 cpu_id=3
131956          <idle>-0     (-----) [003] d..2 82318.278550: 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
131957     rcu_preempt-7     (    7) [003] d..2 82318.278567: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
131958     rcu_preempt-7     (    7) [003] d..3 82318.278586: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
131959     rcu_preempt-7     (    7) [003] d..2 82318.278601: 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
131960         rcuop/2-29    (   29) [003] d..2 82318.278605: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
131961         rcuop/2-29    (   29) [003] d..3 82318.278651: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
131962         rcuop/2-29    (   29) [003] d..2 82318.278656: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
131963         rcuop/2-29    (   29) [003] d..3 82318.278672: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
131964         rcuop/2-29    (   29) [003] d..2 82318.278683: 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
131965         rcuop/3-37    (   37) [003] d..2 82318.278700: 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
131966     rcu_preempt-7     (    7) [003] d..2 82318.278736: 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
131967          <idle>-0     (-----) [003] d..1 82318.278757: cpu_idle: state=0 cpu_id=3
131968          <idle>-0     (-----) [000] d.h5 82318.280836: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131969          <idle>-0     (-----) [000] dnh6 82318.280858: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131970          <idle>-0     (-----) [000] dnh5 82318.280865: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131971          <idle>-0     (-----) [000] dnh6 82318.280881: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131972          <idle>-0     (-----) [001] .n.1 82318.280889: cpu_idle: state=4294967295 cpu_id=1
131973          <idle>-0     (-----) [000] .n.1 82318.280899: cpu_idle: state=4294967295 cpu_id=0
131974          <idle>-0     (-----) [001] d..2 82318.280904: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131975          <idle>-0     (-----) [000] d..2 82318.280915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131976  crtc_event:111-322   (  322) [000] d..2 82318.280953: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131977          <idle>-0     (-----) [000] d..1 82318.280970: cpu_idle: state=0 cpu_id=0
131978 crtc_commit:111-321   (  321) [001] d..2 82318.281069: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
131979          <idle>-0     (-----) [001] d..1 82318.281081: cpu_idle: state=0 cpu_id=1
131980          <idle>-0     (-----) [001] d.s3 82318.281814: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131981          <idle>-0     (-----) [001] d.s4 82318.281838: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131982          <idle>-0     (-----) [000] .n.1 82318.281844: cpu_idle: state=4294967295 cpu_id=0
131983          <idle>-0     (-----) [000] d..2 82318.281859: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
131984          <idle>-0     (-----) [001] ...1 82318.281870: cpu_idle: state=4294967295 cpu_id=1
131985          <idle>-0     (-----) [001] d..1 82318.281878: cpu_idle: state=0 cpu_id=1
131986  crtc_event:111-322   (  322) [000] d..2 82318.281900: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
131987          <idle>-0     (-----) [000] d..1 82318.281912: cpu_idle: state=0 cpu_id=0
131988          <idle>-0     (-----) [000] d.h5 82318.283161: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131989          <idle>-0     (-----) [000] d.h6 82318.283181: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
131990          <idle>-0     (-----) [001] .n.1 82318.283188: cpu_idle: state=4294967295 cpu_id=1
131991          <idle>-0     (-----) [001] d..2 82318.283199: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
131992          <idle>-0     (-----) [000] ...1 82318.283200: cpu_idle: state=4294967295 cpu_id=0
131993          <idle>-0     (-----) [000] d..1 82318.283208: cpu_idle: state=0 cpu_id=0
131994 crtc_commit:111-321   (  321) [001] d..2 82318.283291: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
131995          <idle>-0     (-----) [001] d..1 82318.283303: cpu_idle: state=0 cpu_id=1
131996          <idle>-0     (-----) [000] d.h5 82318.283458: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131997          <idle>-0     (-----) [000] dnh6 82318.283471: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
131998          <idle>-0     (-----) [000] .n.1 82318.283487: cpu_idle: state=4294967295 cpu_id=0
131999          <idle>-0     (-----) [000] d..2 82318.283500: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
132000  crtc_event:111-322   (  322) [000] d..2 82318.283530: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132001          <idle>-0     (-----) [000] d..1 82318.283543: cpu_idle: state=0 cpu_id=0
132002          <idle>-0     (-----) [001] d.s3 82318.285143: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
132003          <idle>-0     (-----) [003] d.s2 82318.285143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132004          <idle>-0     (-----) [001] dns4 82318.285161: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
132005          <idle>-0     (-----) [003] dns3 82318.285165: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132006          <idle>-0     (-----) [001] dns3 82318.285172: sched_waking: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
132007          <idle>-0     (-----) [003] .n.1 82318.285177: cpu_idle: state=4294967295 cpu_id=3
132008          <idle>-0     (-----) [001] dns3 82318.285189: sched_waking: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
132009          <idle>-0     (-----) [003] d..2 82318.285192: 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
132010          <idle>-0     (-----) [007] dnh2 82318.285201: sched_wakeup: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
132011          <idle>-0     (-----) [001] dns3 82318.285203: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132012          <idle>-0     (-----) [007] .n.1 82318.285207: cpu_idle: state=4294967295 cpu_id=7
132013          <idle>-0     (-----) [006] dnh2 82318.285219: sched_wakeup: comm=kworker/6:3 pid=560 prio=120 target_cpu=006
132014          <idle>-0     (-----) [007] d..2 82318.285223: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/7:3 next_pid=442 next_prio=120
132015          <idle>-0     (-----) [006] .n.1 82318.285225: cpu_idle: state=4294967295 cpu_id=6
132016     rcu_preempt-7     (    7) [003] d..2 82318.285233: 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
132017          <idle>-0     (-----) [006] d..2 82318.285239: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/6:3 next_pid=560 next_prio=120
132018          <idle>-0     (-----) [003] d.h3 82318.285246: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
132019     kworker/7:3-442   (  442) [007] d..2 82318.285253: sched_switch: prev_comm=kworker/7:3 prev_pid=442 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
132020          <idle>-0     (-----) [007] d..1 82318.285263: cpu_idle: state=0 cpu_id=7
132021          <idle>-0     (-----) [001] dns4 82318.285264: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
132022<...>-560 ( 560) [006] d..2 82318.285271: sched_switch: prev_comm=kworker/6:3 prev_pid=560 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
132023          <idle>-0     (-----) [006] d..1 82318.285281: cpu_idle: state=0 cpu_id=6
132024          <idle>-0     (-----) [003] dnh4 82318.285285: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
132025          <idle>-0     (-----) [001] .n.1 82318.285288: cpu_idle: state=4294967295 cpu_id=1
132026          <idle>-0     (-----) [000] .n.1 82318.285291: cpu_idle: state=4294967295 cpu_id=0
132027          <idle>-0     (-----) [001] d..2 82318.285301: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
132028          <idle>-0     (-----) [000] d..2 82318.285304: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
132029          <idle>-0     (-----) [003] d..2 82318.285307: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132030        DispSync-8879  ( 8858) [000] d..1 82318.285327: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
132031        DispSync-8879  ( 8858) [000] d..2 82318.285359: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
132032          <idle>-0     (-----) [002] .n.1 82318.285365: cpu_idle: state=4294967295 cpu_id=2
132033          <idle>-0     (-----) [002] d..2 82318.285381: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
132034        DispSync-8879  ( 8858) [000] d..2 82318.285427: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132035          <idle>-0     (-----) [000] d..1 82318.285443: cpu_idle: state=0 cpu_id=0
132036  appEventThread-8881  ( 8858) [002] d..3 82318.285447: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132037     kworker/1:1-25249 (25249) [001] d..2 82318.285450: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
132038          <idle>-0     (-----) [001] d..1 82318.285480: cpu_idle: state=0 cpu_id=1
132039          <idle>-0     (-----) [004] dnh2 82318.285482: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132040          <idle>-0     (-----) [004] .n.1 82318.285487: cpu_idle: state=4294967295 cpu_id=4
132041          <idle>-0     (-----) [004] d..2 82318.285495: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
132042  appEventThread-8881  ( 8858) [002] d..2 82318.285551: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132043          <idle>-0     (-----) [002] d..1 82318.285573: cpu_idle: state=0 cpu_id=2
132044          <idle>-0     (-----) [002] ...1 82318.285594: cpu_idle: state=4294967295 cpu_id=2
132045          <idle>-0     (-----) [002] d..1 82318.285601: cpu_idle: state=0 cpu_id=2
132046  kworker/u16:13-1147  ( 1147) [003] d..2 82318.285630: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132047          <idle>-0     (-----) [003] d..1 82318.285652: cpu_idle: state=0 cpu_id=3
132048 s.nexuslauncher-10023 (10023) [004] .... 82318.285712: binder_transaction: transaction=1572886 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
132049 s.nexuslauncher-10023 (10023) [004] .... 82318.285717: binder_transaction_alloc_buf: transaction=1572886 data_size=80 offsets_size=0
132050 s.nexuslauncher-10023 (10023) [004] d..4 82318.285722: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
132051 s.nexuslauncher-10023 (10023) [004] d.h5 82318.285785: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
132052          <idle>-0     (-----) [000] dnh2 82318.285792: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
132053          <idle>-0     (-----) [000] .n.1 82318.285800: cpu_idle: state=4294967295 cpu_id=0
132054          <idle>-0     (-----) [003] dnh2 82318.285814: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
132055          <idle>-0     (-----) [000] d..2 82318.285815: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
132056          <idle>-0     (-----) [003] .n.1 82318.285822: cpu_idle: state=4294967295 cpu_id=3
132057   Binder:8858_1-8871  ( 8858) [000] .... 82318.285824: binder_transaction_received: transaction=1572886
132058 s.nexuslauncher-10023 (10023) [004] d..3 82318.285828: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132059          <idle>-0     (-----) [003] d..2 82318.285835: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
132060 s.nexuslauncher-10023 (10023) [004] d..4 82318.285843: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132061          <idle>-0     (-----) [005] .n.1 82318.285850: cpu_idle: state=4294967295 cpu_id=5
132062          <idle>-0     (-----) [005] d..2 82318.285860: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132063   Binder:8858_1-8871  ( 8858) [000] d..1 82318.285865: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
132064         sugov:0-576   (  576) [003] .... 82318.285870: clk_set_rate: pwrcl_clk 748800000
132065         sugov:0-576   (  576) [003] .... 82318.285887: clk_set_rate: cpu3_pwrcl_clk 652800000
132066   Binder:8858_1-8871  ( 8858) [000] d..2 82318.285888: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
132067          <idle>-0     (-----) [002] .n.1 82318.285893: cpu_idle: state=4294967295 cpu_id=2
132068         sugov:0-576   (  576) [003] .... 82318.285898: clk_set_rate: cpu2_pwrcl_clk 652800000
132069         sugov:0-576   (  576) [003] .... 82318.285906: clk_set_rate: cpu1_pwrcl_clk 652800000
132070          <idle>-0     (-----) [002] d..2 82318.285907: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
132071    RenderThread-16607 (10023) [005] d..2 82318.285909: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132072         sugov:0-576   (  576) [003] .... 82318.285915: clk_set_rate: cpu0_pwrcl_clk 748800000
132073          <idle>-0     (-----) [005] d..1 82318.285921: cpu_idle: state=0 cpu_id=5
132074         sugov:0-576   (  576) [003] .... 82318.285925: cpu_frequency: state=748800 cpu_id=0
132075         sugov:0-576   (  576) [003] .... 82318.285949: cpu_frequency: state=748800 cpu_id=1
132076   Binder:8858_1-8871  ( 8858) [000] d..2 82318.285951: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132077         sugov:0-576   (  576) [003] .... 82318.285954: cpu_frequency: state=748800 cpu_id=2
132078         sugov:0-576   (  576) [003] .... 82318.285959: cpu_frequency: state=748800 cpu_id=3
132079  appEventThread-8881  ( 8858) [002] d..2 82318.285966: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132080          <idle>-0     (-----) [000] d..1 82318.285969: cpu_idle: state=0 cpu_id=0
132081          <idle>-0     (-----) [002] d..1 82318.285980: cpu_idle: state=0 cpu_id=2
132082         sugov:0-576   (  576) [003] d..2 82318.285993: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132083          <idle>-0     (-----) [003] d..1 82318.286008: cpu_idle: state=0 cpu_id=3
132084 s.nexuslauncher-10023 (10023) [004] d..3 82318.286154: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132085          <idle>-0     (-----) [000] d.h3 82318.286162: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
132086 s.nexuslauncher-10023 (10023) [004] d..4 82318.286173: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132087          <idle>-0     (-----) [005] .n.1 82318.286178: cpu_idle: state=4294967295 cpu_id=5
132088          <idle>-0     (-----) [000] dnh4 82318.286182: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
132089          <idle>-0     (-----) [005] d..2 82318.286187: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132090 s.nexuslauncher-10023 (10023) [004] d..2 82318.286200: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
132091          <idle>-0     (-----) [000] .n.1 82318.286205: cpu_idle: state=4294967295 cpu_id=0
132092          <idle>-0     (-----) [004] d..1 82318.286218: cpu_idle: state=0 cpu_id=4
132093          <idle>-0     (-----) [000] d..2 82318.286220: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
132094     kworker/0:1-25262 (25262) [000] d..2 82318.286230: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
132095     kworker/0:1-25262 (25262) [000] d..3 82318.286240: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
132096     kworker/0:1-25262 (25262) [000] d..3 82318.286251: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
132097          <idle>-0     (-----) [001] .n.1 82318.286257: cpu_idle: state=4294967295 cpu_id=1
132098          <idle>-0     (-----) [001] d..2 82318.286272: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
132099     kworker/0:1-25262 (25262) [000] d..2 82318.286276: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132100          <idle>-0     (-----) [000] d..1 82318.286289: cpu_idle: state=0 cpu_id=0
132101    RenderThread-16607 (10023) [005] d..1 82318.286335: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132102    RenderThread-16607 (10023) [005] d..2 82318.286351: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132103          <idle>-0     (-----) [004] .n.1 82318.286358: cpu_idle: state=4294967295 cpu_id=4
132104          <idle>-0     (-----) [004] d..2 82318.286368: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
132105     kworker/1:1-25249 (25249) [001] d..2 82318.286386: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132106    RenderThread-16607 (10023) [005] .... 82318.286400: binder_transaction: transaction=1572887 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
132107          <idle>-0     (-----) [001] d..1 82318.286403: cpu_idle: state=0 cpu_id=1
132108    RenderThread-16607 (10023) [005] .... 82318.286404: binder_transaction_alloc_buf: transaction=1572887 data_size=104 offsets_size=0
132109    RenderThread-16607 (10023) [005] ...2 82318.286408: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
132110    RenderThread-16607 (10023) [005] d..4 82318.286411: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
132111    RenderThread-16607 (10023) [005] d..5 82318.286431: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132112    RenderThread-16607 (10023) [005] d..2 82318.286480: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132113 s.nexuslauncher-10023 (10023) [004] d..2 82318.286483: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
132114   Binder:8858_1-8871  ( 8858) [005] .... 82318.286492: binder_transaction_received: transaction=1572887
132115          <idle>-0     (-----) [004] d..1 82318.286494: cpu_idle: state=0 cpu_id=4
132116   Binder:8858_1-8871  ( 8858) [005] .... 82318.286550: binder_transaction: transaction=1572888 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
132117   Binder:8858_1-8871  ( 8858) [005] .... 82318.286554: binder_transaction_alloc_buf: transaction=1572888 data_size=52 offsets_size=8
132118   Binder:8858_1-8871  ( 8858) [005] d..2 82318.286561: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132119   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.286572: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132120   Binder:8858_1-8871  ( 8858) [005] d..2 82318.286579: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
132121    RenderThread-16607 (10023) [005] .... 82318.286587: binder_transaction_received: transaction=1572888
132122          <idle>-0     (-----) [002] ...1 82318.287257: cpu_idle: state=4294967295 cpu_id=2
132123          <idle>-0     (-----) [002] d..1 82318.287263: cpu_idle: state=0 cpu_id=2
132124    RenderThread-16607 (10023) [005] d..2 82318.287846: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132125   Binder:8858_1-8871  ( 8858) [005] .... 82318.287858: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
132126   Binder:8858_1-8871  ( 8858) [005] d..2 82318.287924: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132127          <idle>-0     (-----) [005] d.h2 82318.287942: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132128          <idle>-0     (-----) [005] d.h3 82318.287949: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
132129          <idle>-0     (-----) [005] dnh3 82318.287952: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132130          <idle>-0     (-----) [005] d..2 82318.287966: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132131    RenderThread-16607 (10023) [005] .... 82318.288121: binder_transaction: transaction=1572889 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
132132    RenderThread-16607 (10023) [005] .... 82318.288125: binder_transaction_alloc_buf: transaction=1572889 data_size=192 offsets_size=8
132133    RenderThread-16607 (10023) [005] ...2 82318.288132: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
132134    RenderThread-16607 (10023) [005] d..4 82318.288135: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132135    RenderThread-16607 (10023) [005] d..5 82318.288146: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132136    RenderThread-16607 (10023) [005] d..2 82318.288158: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132137   Binder:8858_1-8871  ( 8858) [005] .... 82318.288168: binder_transaction_received: transaction=1572889
132138   Binder:8858_1-8871  ( 8858) [005] .... 82318.288287: binder_transaction: transaction=1572890 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
132139   Binder:8858_1-8871  ( 8858) [005] .... 82318.288291: binder_transaction_alloc_buf: transaction=1572890 data_size=68 offsets_size=0
132140   Binder:8858_1-8871  ( 8858) [005] d..2 82318.288293: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132141   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.288304: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132142   Binder:8858_1-8871  ( 8858) [005] d..2 82318.288311: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
132143    RenderThread-16607 (10023) [005] .... 82318.288320: binder_transaction_received: transaction=1572890
132144    RenderThread-16607 (10023) [005] d..2 82318.288386: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132145   Binder:8858_1-8871  ( 8858) [005] .... 82318.288394: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
132146   Binder:8858_1-8871  ( 8858) [005] d..2 82318.288443: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132147          <idle>-0     (-----) [005] d..1 82318.288497: cpu_idle: state=0 cpu_id=5
132148          <idle>-0     (-----) [001] ...1 82318.288563: cpu_idle: state=4294967295 cpu_id=1
132149          <idle>-0     (-----) [001] d..1 82318.288568: cpu_idle: state=0 cpu_id=1
132150          <idle>-0     (-----) [000] d.h2 82318.289249: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
132151          <idle>-0     (-----) [000] dnh3 82318.289263: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
132152          <idle>-0     (-----) [000] .n.1 82318.289273: cpu_idle: state=4294967295 cpu_id=0
132153          <idle>-0     (-----) [000] d..2 82318.289286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
132154        DispSync-8879  ( 8858) [000] d..1 82318.289307: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
132155        DispSync-8879  ( 8858) [000] d..2 82318.289323: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
132156          <idle>-0     (-----) [002] .n.1 82318.289329: cpu_idle: state=4294967295 cpu_id=2
132157          <idle>-0     (-----) [002] d..2 82318.289343: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
132158        DispSync-8879  ( 8858) [000] d..2 82318.289366: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132159   sfEventThread-8882  ( 8858) [002] d..3 82318.289385: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
132160          <idle>-0     (-----) [000] d.h4 82318.289396: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
132161   sfEventThread-8882  ( 8858) [002] d..4 82318.289408: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
132162          <idle>-0     (-----) [000] dnh5 82318.289409: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
132163          <idle>-0     (-----) [003] .n.1 82318.289415: cpu_idle: state=4294967295 cpu_id=3
132164          <idle>-0     (-----) [000] d..2 82318.289426: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
132165          <idle>-0     (-----) [003] d..2 82318.289429: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
132166   sfEventThread-8882  ( 8858) [002] d..2 82318.289449: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132167          <idle>-0     (-----) [002] d..1 82318.289466: cpu_idle: state=0 cpu_id=2
132168 kgsl_worker_thr-258   (  258) [000] d..2 82318.289481: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
132169 kgsl_worker_thr-258   (  258) [000] d..3 82318.289531: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132170 kgsl_worker_thr-258   (  258) [000] d..2 82318.289556: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132171  kworker/u16:13-1147  ( 1147) [000] d..2 82318.289733: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132172          <idle>-0     (-----) [000] d..1 82318.289754: cpu_idle: state=0 cpu_id=0
132173  surfaceflinger-8858  ( 8858) [003] d..1 82318.289804: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
132174  surfaceflinger-8858  ( 8858) [003] d..2 82318.289832: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
132175          <idle>-0     (-----) [002] .n.1 82318.289838: cpu_idle: state=4294967295 cpu_id=2
132176          <idle>-0     (-----) [002] d..2 82318.289850: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
132177   sfEventThread-8882  ( 8858) [002] d..2 82318.289890: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132178          <idle>-0     (-----) [002] d..1 82318.289903: cpu_idle: state=0 cpu_id=2
132179  surfaceflinger-8858  ( 8858) [003] ...1 82318.290051: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
132180  surfaceflinger-8858  ( 8858) [003] ...1 82318.290061: tracing_mark_write: E|8858
132181  surfaceflinger-8858  ( 8858) [003] .... 82318.290127: binder_transaction: transaction=1572891 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
132182  surfaceflinger-8858  ( 8858) [003] .... 82318.290134: binder_transaction_alloc_buf: transaction=1572891 data_size=540 offsets_size=96
132183  surfaceflinger-8858  ( 8858) [003] ...2 82318.290162: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
132184  surfaceflinger-8858  ( 8858) [003] d..4 82318.290169: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
132185  surfaceflinger-8858  ( 8858) [003] d..5 82318.290193: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
132186          <idle>-0     (-----) [002] .n.1 82318.290198: cpu_idle: state=4294967295 cpu_id=2
132187          <idle>-0     (-----) [002] d..2 82318.290210: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
132188 [email protected]   (  619) [002] .... 82318.290221: binder_transaction_received: transaction=1572891
132189  surfaceflinger-8858  ( 8858) [003] d..2 82318.290235: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132190          <idle>-0     (-----) [003] d..1 82318.290253: cpu_idle: state=0 cpu_id=3
132191 [email protected]   (  619) [002] ...1 82318.290274: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
132192 [email protected]   (  619) [002] ...1 82318.290400: tracing_mark_write: B|619|HWCSession::PresentDisplay::
132193 [email protected]   (  619) [002] ...1 82318.290594: tracing_mark_write: B|619|HWDeviceDRM::Commit::
132194 [email protected]   (  619) [002] ...1 82318.290610: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
132195 [email protected]   (  619) [002] d..2 82318.291282: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132196 [email protected]   (  619) [002] d..3 82318.291311: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132197          <idle>-0     (-----) [001] .n.1 82318.291316: cpu_idle: state=4294967295 cpu_id=1
132198          <idle>-0     (-----) [001] d..2 82318.291329: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
132199 [email protected]   (  619) [002] ...1 82318.291435: tracing_mark_write: E|619
132200 [email protected]   (  619) [002] ...1 82318.291444: tracing_mark_write: E|619
132201 [email protected]   (  619) [002] ...1 82318.291512: tracing_mark_write: E|619
132202 [email protected]   (  619) [002] ...1 82318.291563: tracing_mark_write: E|619
132203 [email protected]   (  619) [002] .... 82318.291581: binder_transaction: transaction=1572892 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
132204 [email protected]   (  619) [002] .... 82318.291587: binder_transaction_alloc_buf: transaction=1572892 data_size=576 offsets_size=112
132205 [email protected]   (  619) [002] d..2 82318.291614: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
132206 [email protected]   (  619) [002] d..3 82318.291638: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
132207 [email protected]   (  619) [002] .... 82318.291644: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
132208          <idle>-0     (-----) [003] .n.1 82318.291645: cpu_idle: state=4294967295 cpu_id=3
132209          <idle>-0     (-----) [003] d..2 82318.291656: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
132210  surfaceflinger-8858  ( 8858) [003] .... 82318.291667: binder_transaction_received: transaction=1572892
132211 [email protected]   (  619) [002] d..2 82318.291755: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132212          <idle>-0     (-----) [002] d..1 82318.291784: cpu_idle: state=0 cpu_id=2
132213  surfaceflinger-8858  ( 8858) [003] d.s1 82318.291825: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132214  surfaceflinger-8858  ( 8858) [003] d.s2 82318.291927: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
132215 crtc_commit:111-321   (  321) [001] d..2 82318.292233: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
132216     rcu_preempt-7     (    7) [001] d..2 82318.292248: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
132217     rcu_preempt-7     (    7) [001] d..3 82318.292299: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
132218     rcu_preempt-7     (    7) [001] d..2 82318.292314: 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
132219         rcuop/2-29    (   29) [001] d..2 82318.292320: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
132220         rcuop/2-29    (   29) [001] d..3 82318.292340: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
132221  surfaceflinger-8858  ( 8858) [003] d..2 82318.292356: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
132222         rcuop/2-29    (   29) [001] d..2 82318.292366: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
132223         rcuop/3-37    (   37) [003] d..2 82318.292395: 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
132224         rcuop/2-29    (   29) [001] d..3 82318.292413: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132225          <idle>-0     (-----) [003] d..2 82318.292427: 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
132226         rcuop/2-29    (   29) [001] d..2 82318.292441: 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
132227     rcu_preempt-7     (    7) [003] d..2 82318.292457: 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
132228          <idle>-0     (-----) [001] d..1 82318.292465: cpu_idle: state=0 cpu_id=1
132229          <idle>-0     (-----) [003] d..1 82318.292473: cpu_idle: state=0 cpu_id=3
132230          <idle>-0     (-----) [002] ...1 82318.293039: cpu_idle: state=4294967295 cpu_id=2
132231          <idle>-0     (-----) [002] d..1 82318.293045: cpu_idle: state=0 cpu_id=2
132232          <idle>-0     (-----) [001] ...1 82318.294626: cpu_idle: state=4294967295 cpu_id=1
132233          <idle>-0     (-----) [001] d..1 82318.294631: cpu_idle: state=0 cpu_id=1
132234          <idle>-0     (-----) [000] d.h5 82318.297300: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132235          <idle>-0     (-----) [000] dnh6 82318.297321: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132236          <idle>-0     (-----) [000] dnh5 82318.297326: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132237          <idle>-0     (-----) [000] dnh6 82318.297341: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132238          <idle>-0     (-----) [001] .n.1 82318.297347: cpu_idle: state=4294967295 cpu_id=1
132239          <idle>-0     (-----) [000] .n.1 82318.297356: cpu_idle: state=4294967295 cpu_id=0
132240          <idle>-0     (-----) [001] d..2 82318.297362: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
132241          <idle>-0     (-----) [000] d..2 82318.297373: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
132242  crtc_event:111-322   (  322) [000] d..2 82318.297414: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132243          <idle>-0     (-----) [000] d..2 82318.297418: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
132244          <idle>-0     (-----) [000] dn.3 82318.297432: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
132245          <idle>-0     (-----) [000] d..2 82318.297442: 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
132246     ksoftirqd/0-3     (    3) [000] d.s2 82318.297454: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132247     ksoftirqd/0-3     (    3) [000] d.s3 82318.297476: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132248     ksoftirqd/0-3     (    3) [000] d..2 82318.297493: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132249 crtc_commit:111-321   (  321) [001] d..2 82318.297519: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
132250          <idle>-0     (-----) [001] d..1 82318.297555: cpu_idle: state=0 cpu_id=1
132251          <idle>-0     (-----) [001] ...1 82318.297571: cpu_idle: state=4294967295 cpu_id=1
132252          <idle>-0     (-----) [001] d..1 82318.297575: cpu_idle: state=0 cpu_id=1
132253  kworker/u16:13-1147  ( 1147) [000] d..2 82318.297669: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132254          <idle>-0     (-----) [000] d..1 82318.297687: cpu_idle: state=0 cpu_id=0
132255          <idle>-0     (-----) [001] d.s3 82318.298471: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132256          <idle>-0     (-----) [003] d.s2 82318.298473: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132257          <idle>-0     (-----) [001] d.s4 82318.298493: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132258          <idle>-0     (-----) [003] dns3 82318.298495: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132259          <idle>-0     (-----) [000] .n.1 82318.298500: cpu_idle: state=4294967295 cpu_id=0
132260          <idle>-0     (-----) [001] d.s3 82318.298501: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132261          <idle>-0     (-----) [003] .n.1 82318.298517: cpu_idle: state=4294967295 cpu_id=3
132262          <idle>-0     (-----) [000] d..2 82318.298518: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
132263          <idle>-0     (-----) [003] d..2 82318.298532: 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
132264          <idle>-0     (-----) [001] dns4 82318.298536: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
132265          <idle>-0     (-----) [001] .n.1 82318.298560: cpu_idle: state=4294967295 cpu_id=1
132266  crtc_event:111-322   (  322) [000] d..2 82318.298561: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132267     rcu_preempt-7     (    7) [003] d..2 82318.298568: 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
132268          <idle>-0     (-----) [000] d..1 82318.298572: cpu_idle: state=0 cpu_id=0
132269          <idle>-0     (-----) [001] d..2 82318.298572: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132270          <idle>-0     (-----) [003] d..1 82318.298584: cpu_idle: state=0 cpu_id=3
132271  kworker/u16:13-1147  ( 1147) [001] d..2 82318.298662: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132272          <idle>-0     (-----) [001] d..1 82318.298679: cpu_idle: state=0 cpu_id=1
132273          <idle>-0     (-----) [000] d.h5 82318.299627: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132274          <idle>-0     (-----) [000] d.h6 82318.299648: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132275          <idle>-0     (-----) [001] .n.1 82318.299655: cpu_idle: state=4294967295 cpu_id=1
132276          <idle>-0     (-----) [000] ...1 82318.299666: cpu_idle: state=4294967295 cpu_id=0
132277          <idle>-0     (-----) [001] d..2 82318.299667: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
132278          <idle>-0     (-----) [000] d..1 82318.299672: cpu_idle: state=0 cpu_id=0
132279 crtc_commit:111-321   (  321) [001] d..2 82318.299743: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132280          <idle>-0     (-----) [001] d..1 82318.299759: cpu_idle: state=0 cpu_id=1
132281          <idle>-0     (-----) [000] d.h5 82318.299920: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132282          <idle>-0     (-----) [000] dnh6 82318.299932: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132283          <idle>-0     (-----) [000] .n.1 82318.299948: cpu_idle: state=4294967295 cpu_id=0
132284          <idle>-0     (-----) [000] d..2 82318.299959: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
132285  crtc_event:111-322   (  322) [000] d..2 82318.299988: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132286          <idle>-0     (-----) [000] d..1 82318.299998: cpu_idle: state=0 cpu_id=0
132287          <idle>-0     (-----) [000] d.h2 82318.301679: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
132288          <idle>-0     (-----) [000] dnh3 82318.301692: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
132289          <idle>-0     (-----) [000] dnh2 82318.301697: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
132290          <idle>-0     (-----) [000] dnh3 82318.301720: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
132291          <idle>-0     (-----) [000] .n.1 82318.301730: cpu_idle: state=4294967295 cpu_id=0
132292          <idle>-0     (-----) [000] d..2 82318.301743: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
132293        DispSync-8879  ( 8858) [000] d..1 82318.301761: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
132294        DispSync-8879  ( 8858) [000] d..2 82318.301779: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
132295          <idle>-0     (-----) [002] .n.1 82318.301785: cpu_idle: state=4294967295 cpu_id=2
132296          <idle>-0     (-----) [002] d..2 82318.301806: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
132297        DispSync-8879  ( 8858) [000] d..1 82318.301830: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
132298  appEventThread-8881  ( 8858) [002] d..2 82318.301863: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132299          <idle>-0     (-----) [002] dn.1 82318.301879: cpu_idle: state=0 cpu_id=2
132300        DispSync-8879  ( 8858) [000] d..2 82318.301883: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
132301          <idle>-0     (-----) [002] .n.1 82318.301887: cpu_idle: state=4294967295 cpu_id=2
132302          <idle>-0     (-----) [002] d..2 82318.301899: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
132303        DispSync-8879  ( 8858) [000] d..2 82318.301910: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
132304  appEventThread-8881  ( 8858) [002] d..3 82318.301951: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132305          <idle>-0     (-----) [004] dnh2 82318.301985: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132306          <idle>-0     (-----) [004] .n.1 82318.301989: cpu_idle: state=4294967295 cpu_id=4
132307          <idle>-0     (-----) [004] d..2 82318.301998: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
132308  appEventThread-8881  ( 8858) [002] d..2 82318.302019: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132309          <idle>-0     (-----) [002] d..1 82318.302036: cpu_idle: state=0 cpu_id=2
132310 s.nexuslauncher-10023 (10023) [004] .... 82318.302185: binder_transaction: transaction=1572893 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
132311 s.nexuslauncher-10023 (10023) [004] .... 82318.302190: binder_transaction_alloc_buf: transaction=1572893 data_size=80 offsets_size=0
132312 s.nexuslauncher-10023 (10023) [004] d..4 82318.302195: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
132313 RxSchedulerPurg-25567 (25538) [000] d..2 82318.302264: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132314          <idle>-0     (-----) [001] dnh2 82318.302264: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
132315          <idle>-0     (-----) [001] .n.1 82318.302272: cpu_idle: state=4294967295 cpu_id=1
132316 s.nexuslauncher-10023 (10023) [004] d..3 82318.302283: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132317          <idle>-0     (-----) [000] d..1 82318.302286: cpu_idle: state=0 cpu_id=0
132318          <idle>-0     (-----) [001] d..2 82318.302286: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
132319   Binder:8858_1-8871  ( 8858) [001] .... 82318.302297: binder_transaction_received: transaction=1572893
132320 s.nexuslauncher-10023 (10023) [004] d..4 82318.302299: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132321          <idle>-0     (-----) [005] .n.1 82318.302305: cpu_idle: state=4294967295 cpu_id=5
132322          <idle>-0     (-----) [005] d..2 82318.302317: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132323   Binder:8858_1-8871  ( 8858) [001] d..1 82318.302343: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
132324    RenderThread-16607 (10023) [005] d..2 82318.302361: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132325   Binder:8858_1-8871  ( 8858) [001] d..2 82318.302365: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
132326          <idle>-0     (-----) [002] .n.1 82318.302372: cpu_idle: state=4294967295 cpu_id=2
132327          <idle>-0     (-----) [005] d..1 82318.302373: cpu_idle: state=0 cpu_id=5
132328          <idle>-0     (-----) [002] d..2 82318.302384: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
132329   Binder:8858_1-8871  ( 8858) [001] d..2 82318.302422: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132330  appEventThread-8881  ( 8858) [002] d..2 82318.302431: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132331          <idle>-0     (-----) [001] d..1 82318.302442: cpu_idle: state=0 cpu_id=1
132332          <idle>-0     (-----) [002] d..1 82318.302446: cpu_idle: state=0 cpu_id=2
132333 s.nexuslauncher-10023 (10023) [004] d..3 82318.302592: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132334 s.nexuslauncher-10023 (10023) [004] d..4 82318.302611: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132335          <idle>-0     (-----) [005] .n.1 82318.302616: cpu_idle: state=4294967295 cpu_id=5
132336          <idle>-0     (-----) [005] d..2 82318.302625: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132337 s.nexuslauncher-10023 (10023) [004] d..2 82318.302639: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
132338          <idle>-0     (-----) [004] d..1 82318.302655: cpu_idle: state=0 cpu_id=4
132339    RenderThread-16607 (10023) [005] d..1 82318.302790: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132340    RenderThread-16607 (10023) [005] d..2 82318.302807: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132341          <idle>-0     (-----) [004] .n.1 82318.302813: cpu_idle: state=4294967295 cpu_id=4
132342          <idle>-0     (-----) [004] d..2 82318.302823: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
132343    RenderThread-16607 (10023) [005] .... 82318.302857: binder_transaction: transaction=1572894 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
132344    RenderThread-16607 (10023) [005] .... 82318.302862: binder_transaction_alloc_buf: transaction=1572894 data_size=104 offsets_size=0
132345    RenderThread-16607 (10023) [005] ...2 82318.302866: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
132346    RenderThread-16607 (10023) [005] d..4 82318.302869: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=001
132347    RenderThread-16607 (10023) [005] d..5 82318.302890: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132348 s.nexuslauncher-10023 (10023) [004] d..2 82318.302935: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
132349    RenderThread-16607 (10023) [005] d..2 82318.302937: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132350          <idle>-0     (-----) [004] d..1 82318.302946: cpu_idle: state=0 cpu_id=4
132351   Binder:8858_1-8871  ( 8858) [005] .... 82318.302948: binder_transaction_received: transaction=1572894
132352   Binder:8858_1-8871  ( 8858) [005] .... 82318.303008: binder_transaction: transaction=1572895 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
132353   Binder:8858_1-8871  ( 8858) [005] .... 82318.303012: binder_transaction_alloc_buf: transaction=1572895 data_size=52 offsets_size=8
132354   Binder:8858_1-8871  ( 8858) [005] d..2 82318.303019: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132355   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.303030: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132356   Binder:8858_1-8871  ( 8858) [005] d..2 82318.303036: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
132357    RenderThread-16607 (10023) [005] .... 82318.303044: binder_transaction_received: transaction=1572895
132358          <idle>-0     (-----) [002] ...1 82318.303711: cpu_idle: state=4294967295 cpu_id=2
132359          <idle>-0     (-----) [002] d..1 82318.303717: cpu_idle: state=0 cpu_id=2
132360    RenderThread-16607 (10023) [005] d..2 82318.304297: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132361   Binder:8858_1-8871  ( 8858) [005] .... 82318.304310: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
132362   Binder:8858_1-8871  ( 8858) [005] d..2 82318.304376: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132363          <idle>-0     (-----) [005] d.h2 82318.304393: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132364          <idle>-0     (-----) [005] d.h3 82318.304400: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
132365          <idle>-0     (-----) [005] dnh3 82318.304404: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132366          <idle>-0     (-----) [005] d..2 82318.304418: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132367    RenderThread-16607 (10023) [005] .... 82318.304573: binder_transaction: transaction=1572896 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
132368    RenderThread-16607 (10023) [005] .... 82318.304577: binder_transaction_alloc_buf: transaction=1572896 data_size=192 offsets_size=8
132369    RenderThread-16607 (10023) [005] ...2 82318.304584: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
132370    RenderThread-16607 (10023) [005] d..4 82318.304587: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132371    RenderThread-16607 (10023) [005] d..5 82318.304599: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132372    RenderThread-16607 (10023) [005] d..2 82318.304610: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132373   Binder:8858_1-8871  ( 8858) [005] .... 82318.304621: binder_transaction_received: transaction=1572896
132374   Binder:8858_1-8871  ( 8858) [005] .... 82318.304742: binder_transaction: transaction=1572897 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
132375   Binder:8858_1-8871  ( 8858) [005] .... 82318.304746: binder_transaction_alloc_buf: transaction=1572897 data_size=68 offsets_size=0
132376   Binder:8858_1-8871  ( 8858) [005] d..2 82318.304749: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132377   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.304760: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132378   Binder:8858_1-8871  ( 8858) [005] d..2 82318.304767: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
132379    RenderThread-16607 (10023) [005] .... 82318.304777: binder_transaction_received: transaction=1572897
132380    RenderThread-16607 (10023) [005] d..2 82318.304842: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132381   Binder:8858_1-8871  ( 8858) [005] .... 82318.304851: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
132382   Binder:8858_1-8871  ( 8858) [005] d..2 82318.304900: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132383          <idle>-0     (-----) [005] d..1 82318.304917: cpu_idle: state=0 cpu_id=5
132384          <idle>-0     (-----) [003] d.s2 82318.305139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132385          <idle>-0     (-----) [003] dns3 82318.305158: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132386          <idle>-0     (-----) [003] dns3 82318.305165: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
132387          <idle>-0     (-----) [003] dns4 82318.305205: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
132388          <idle>-0     (-----) [003] .n.1 82318.305217: cpu_idle: state=4294967295 cpu_id=3
132389          <idle>-0     (-----) [003] d..2 82318.305232: 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
132390     rcu_preempt-7     (    7) [003] d..2 82318.305243: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
132391     rcu_preempt-7     (    7) [003] d..3 82318.305279: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
132392     rcu_preempt-7     (    7) [003] d..2 82318.305293: 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
132393         rcuop/2-29    (   29) [003] d..2 82318.305298: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
132394         rcuop/2-29    (   29) [003] d..3 82318.305313: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
132395         rcuop/2-29    (   29) [003] d..2 82318.305323: 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
132396         rcuop/3-37    (   37) [003] d..2 82318.305341: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132397  kworker/u16:13-1147  ( 1147) [003] d..2 82318.305468: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132398          <idle>-0     (-----) [003] d..1 82318.305489: cpu_idle: state=0 cpu_id=3
132399          <idle>-0     (-----) [000] d.h2 82318.305789: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
132400          <idle>-0     (-----) [000] dnh3 82318.305809: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
132401          <idle>-0     (-----) [000] dnh3 82318.305849: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
132402          <idle>-0     (-----) [000] dnh4 82318.305879: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
132403          <idle>-0     (-----) [002] .n.1 82318.305884: cpu_idle: state=4294967295 cpu_id=2
132404          <idle>-0     (-----) [000] .n.1 82318.305893: cpu_idle: state=4294967295 cpu_id=0
132405          <idle>-0     (-----) [002] d..2 82318.305898: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
132406          <idle>-0     (-----) [000] d..2 82318.305908: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
132407        DispSync-8879  ( 8858) [000] d..1 82318.305932: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
132408        DispSync-8879  ( 8858) [000] d..2 82318.305959: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132409 kgsl_worker_thr-258   (  258) [002] d..2 82318.305965: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
132410          <idle>-0     (-----) [001] .n.1 82318.305966: cpu_idle: state=4294967295 cpu_id=1
132411          <idle>-0     (-----) [001] d..2 82318.305979: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
132412 kgsl_worker_thr-258   (  258) [002] d..3 82318.305990: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
132413          <idle>-0     (-----) [003] .n.1 82318.305996: cpu_idle: state=4294967295 cpu_id=3
132414        DispSync-8879  ( 8858) [000] d..2 82318.306003: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132415          <idle>-0     (-----) [003] d..2 82318.306011: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132416          <idle>-0     (-----) [000] d..1 82318.306023: cpu_idle: state=0 cpu_id=0
132417   sfEventThread-8882  ( 8858) [001] d..3 82318.306027: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
132418 kgsl_worker_thr-258   (  258) [002] d..2 82318.306034: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132419          <idle>-0     (-----) [002] d..1 82318.306052: cpu_idle: state=0 cpu_id=2
132420   sfEventThread-8882  ( 8858) [001] d..4 82318.306059: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
132421          <idle>-0     (-----) [002] .n.1 82318.306066: cpu_idle: state=4294967295 cpu_id=2
132422          <idle>-0     (-----) [002] d..2 82318.306078: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
132423   sfEventThread-8882  ( 8858) [001] d..2 82318.306102: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132424          <idle>-0     (-----) [001] d..1 82318.306120: cpu_idle: state=0 cpu_id=1
132425  kworker/u16:13-1147  ( 1147) [003] d..2 82318.306205: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132426          <idle>-0     (-----) [003] d..1 82318.306222: cpu_idle: state=0 cpu_id=3
132427  surfaceflinger-8858  ( 8858) [002] d..2 82318.306464: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
132428  surfaceflinger-8858  ( 8858) [002] d..3 82318.306492: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
132429          <idle>-0     (-----) [003] .n.1 82318.306498: cpu_idle: state=4294967295 cpu_id=3
132430          <idle>-0     (-----) [003] d..2 82318.306513: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
132431         rcuop/2-29    (   29) [003] d..2 82318.306520: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132432  surfaceflinger-8858  ( 8858) [002] d..1 82318.306526: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132433         rcuop/2-29    (   29) [003] d..3 82318.306542: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132434  surfaceflinger-8858  ( 8858) [002] d..2 82318.306548: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132435          <idle>-0     (-----) [001] .n.1 82318.306554: cpu_idle: state=4294967295 cpu_id=1
132436         rcuop/2-29    (   29) [003] d..2 82318.306554: 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
132437          <idle>-0     (-----) [001] d..2 82318.306566: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
132438     rcu_preempt-7     (    7) [003] d..2 82318.306580: 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
132439          <idle>-0     (-----) [003] d..1 82318.306592: cpu_idle: state=0 cpu_id=3
132440   sfEventThread-8882  ( 8858) [001] d..2 82318.306608: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132441          <idle>-0     (-----) [001] d..1 82318.306621: cpu_idle: state=0 cpu_id=1
132442  surfaceflinger-8858  ( 8858) [002] ...1 82318.306774: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
132443  surfaceflinger-8858  ( 8858) [002] ...1 82318.306783: tracing_mark_write: E|8858
132444  surfaceflinger-8858  ( 8858) [002] .... 82318.306851: binder_transaction: transaction=1572898 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
132445  surfaceflinger-8858  ( 8858) [002] .... 82318.306857: binder_transaction_alloc_buf: transaction=1572898 data_size=540 offsets_size=96
132446  surfaceflinger-8858  ( 8858) [002] ...2 82318.306887: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
132447  surfaceflinger-8858  ( 8858) [002] d..4 82318.306895: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
132448  surfaceflinger-8858  ( 8858) [002] d..5 82318.306931: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
132449          <idle>-0     (-----) [003] .n.1 82318.306937: cpu_idle: state=4294967295 cpu_id=3
132450          <idle>-0     (-----) [003] d..2 82318.306949: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
132451 [email protected]   (  619) [003] .... 82318.306966: binder_transaction_received: transaction=1572898
132452  surfaceflinger-8858  ( 8858) [002] d..2 82318.306973: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132453          <idle>-0     (-----) [002] d..1 82318.306998: cpu_idle: state=0 cpu_id=2
132454 [email protected]   (  619) [003] ...1 82318.307030: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
132455 [email protected]   (  619) [003] ...1 82318.307162: tracing_mark_write: B|619|HWCSession::PresentDisplay::
132456 [email protected]   (  619) [003] ...1 82318.307363: tracing_mark_write: B|619|HWDeviceDRM::Commit::
132457 [email protected]   (  619) [003] ...1 82318.307377: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
132458 [email protected]   (  619) [003] d..2 82318.308052: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132459 [email protected]   (  619) [003] d..3 82318.308084: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132460          <idle>-0     (-----) [001] .n.1 82318.308089: cpu_idle: state=4294967295 cpu_id=1
132461          <idle>-0     (-----) [001] d..2 82318.308101: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
132462 [email protected]   (  619) [003] ...1 82318.308211: tracing_mark_write: E|619
132463 [email protected]   (  619) [003] ...1 82318.308219: tracing_mark_write: E|619
132464 [email protected]   (  619) [003] ...1 82318.308289: tracing_mark_write: E|619
132465 [email protected]   (  619) [003] ...1 82318.308345: tracing_mark_write: E|619
132466 [email protected]   (  619) [003] .... 82318.308364: binder_transaction: transaction=1572899 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
132467 [email protected]   (  619) [003] .... 82318.308370: binder_transaction_alloc_buf: transaction=1572899 data_size=576 offsets_size=112
132468 [email protected]   (  619) [003] d..2 82318.308397: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
132469 [email protected]   (  619) [003] d..3 82318.308421: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
132470 [email protected]   (  619) [003] .... 82318.308428: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
132471          <idle>-0     (-----) [002] .n.1 82318.308428: cpu_idle: state=4294967295 cpu_id=2
132472          <idle>-0     (-----) [002] d..2 82318.308442: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
132473  surfaceflinger-8858  ( 8858) [002] .... 82318.308506: binder_transaction_received: transaction=1572899
132474 [email protected]   (  619) [003] d..2 82318.308596: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132475          <idle>-0     (-----) [003] d..1 82318.308616: cpu_idle: state=0 cpu_id=3
132476 crtc_commit:111-321   (  321) [001] d..2 82318.308928: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
132477          <idle>-0     (-----) [001] d..1 82318.308950: cpu_idle: state=0 cpu_id=1
132478  surfaceflinger-8858  ( 8858) [002] d..2 82318.309008: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132479          <idle>-0     (-----) [002] d..1 82318.309034: cpu_idle: state=0 cpu_id=2
132480          <idle>-0     (-----) [003] d.H3 82318.311891: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
132481          <idle>-0     (-----) [003] dnH4 82318.311909: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
132482          <idle>-0     (-----) [003] dns2 82318.311919: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132483          <idle>-0     (-----) [003] dns3 82318.311940: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132484          <idle>-0     (-----) [003] dns3 82318.311948: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
132485          <idle>-0     (-----) [003] dns4 82318.311961: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
132486          <idle>-0     (-----) [003] dns3 82318.311968: sched_waking: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
132487          <idle>-0     (-----) [003] .n.1 82318.311987: cpu_idle: state=4294967295 cpu_id=3
132488          <idle>-0     (-----) [004] dnh2 82318.311993: sched_wakeup: comm=kworker/4:1 pid=25432 prio=120 target_cpu=004
132489          <idle>-0     (-----) [003] d..2 82318.311997: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
132490          <idle>-0     (-----) [004] .n.1 82318.311998: cpu_idle: state=4294967295 cpu_id=4
132491          <idle>-0     (-----) [004] d..2 82318.312007: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/4:1 next_pid=25432 next_prio=120
132492     kworker/4:1-25432 (25432) [004] d..2 82318.312032: sched_switch: prev_comm=kworker/4:1 prev_pid=25432 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
132493         sugov:0-576   (  576) [003] .... 82318.312035: clk_set_rate: pwrcl_clk 652800000
132494          <idle>-0     (-----) [004] d..1 82318.312039: cpu_idle: state=0 cpu_id=4
132495         sugov:0-576   (  576) [003] .... 82318.312054: clk_set_rate: cpu3_pwrcl_clk 748800000
132496         sugov:0-576   (  576) [003] .... 82318.312064: clk_set_rate: cpu2_pwrcl_clk 748800000
132497         sugov:0-576   (  576) [003] .... 82318.312072: clk_set_rate: cpu1_pwrcl_clk 748800000
132498         sugov:0-576   (  576) [003] .... 82318.312081: clk_set_rate: cpu0_pwrcl_clk 652800000
132499         sugov:0-576   (  576) [003] .... 82318.312198: cpu_frequency: state=652800 cpu_id=0
132500         sugov:0-576   (  576) [003] .... 82318.312226: cpu_frequency: state=652800 cpu_id=1
132501         sugov:0-576   (  576) [003] .... 82318.312232: cpu_frequency: state=652800 cpu_id=2
132502         sugov:0-576   (  576) [003] .... 82318.312237: cpu_frequency: state=652800 cpu_id=3
132503         sugov:0-576   (  576) [003] d..2 82318.312261: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
132504     kworker/3:1-25210 (25210) [003] d..2 82318.312289: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
132505     rcu_preempt-7     (    7) [003] d..2 82318.312304: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
132506     rcu_preempt-7     (    7) [003] d..3 82318.312330: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
132507     rcu_preempt-7     (    7) [003] d..2 82318.312343: 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
132508         rcuop/2-29    (   29) [003] d..2 82318.312352: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132509         rcuop/2-29    (   29) [003] d..3 82318.312368: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132510         rcuop/2-29    (   29) [003] d..2 82318.312380: 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
132511     rcu_preempt-7     (    7) [003] d..2 82318.312415: 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
132512          <idle>-0     (-----) [003] d..1 82318.312437: cpu_idle: state=0 cpu_id=3
132513          <idle>-0     (-----) [000] d.h5 82318.313764: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132514          <idle>-0     (-----) [000] dnh6 82318.313783: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132515          <idle>-0     (-----) [000] dnh5 82318.313789: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132516          <idle>-0     (-----) [000] dnh6 82318.313805: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132517          <idle>-0     (-----) [001] .n.1 82318.313814: cpu_idle: state=4294967295 cpu_id=1
132518          <idle>-0     (-----) [000] .n.1 82318.313821: cpu_idle: state=4294967295 cpu_id=0
132519          <idle>-0     (-----) [001] d..2 82318.313829: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
132520          <idle>-0     (-----) [000] d..2 82318.313837: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
132521  crtc_event:111-322   (  322) [000] d..2 82318.313875: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132522          <idle>-0     (-----) [000] d..1 82318.313890: cpu_idle: state=0 cpu_id=0
132523 crtc_commit:111-321   (  321) [001] d..2 82318.313992: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
132524          <idle>-0     (-----) [001] d..1 82318.314005: cpu_idle: state=0 cpu_id=1
132525          <idle>-0     (-----) [001] d.s3 82318.315146: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132526          <idle>-0     (-----) [001] d.s4 82318.315170: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132527          <idle>-0     (-----) [000] .n.1 82318.315176: cpu_idle: state=4294967295 cpu_id=0
132528          <idle>-0     (-----) [001] d.s3 82318.315179: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
132529          <idle>-0     (-----) [000] d..2 82318.315190: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
132530          <idle>-0     (-----) [001] dns4 82318.315231: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
132531  crtc_event:111-322   (  322) [000] d..2 82318.315240: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132532          <idle>-0     (-----) [000] d..1 82318.315251: cpu_idle: state=0 cpu_id=0
132533          <idle>-0     (-----) [001] .n.1 82318.315261: cpu_idle: state=4294967295 cpu_id=1
132534          <idle>-0     (-----) [001] d..2 82318.315275: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132535  kworker/u16:13-1147  ( 1147) [001] d..2 82318.315399: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132536          <idle>-0     (-----) [001] d..1 82318.315420: cpu_idle: state=0 cpu_id=1
132537          <idle>-0     (-----) [000] d.h5 82318.316087: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132538          <idle>-0     (-----) [000] d.h6 82318.316107: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132539          <idle>-0     (-----) [001] .n.1 82318.316115: cpu_idle: state=4294967295 cpu_id=1
132540          <idle>-0     (-----) [000] ...1 82318.316126: cpu_idle: state=4294967295 cpu_id=0
132541          <idle>-0     (-----) [001] d..2 82318.316129: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
132542          <idle>-0     (-----) [000] d..1 82318.316133: cpu_idle: state=0 cpu_id=0
132543 crtc_commit:111-321   (  321) [001] d..2 82318.316215: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132544          <idle>-0     (-----) [001] d..1 82318.316234: cpu_idle: state=0 cpu_id=1
132545          <idle>-0     (-----) [000] d.h5 82318.316385: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132546          <idle>-0     (-----) [000] dnh6 82318.316398: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132547          <idle>-0     (-----) [000] .n.1 82318.316413: cpu_idle: state=4294967295 cpu_id=0
132548          <idle>-0     (-----) [000] d..2 82318.316426: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
132549  crtc_event:111-322   (  322) [000] d..2 82318.316456: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132550          <idle>-0     (-----) [000] d..1 82318.316468: cpu_idle: state=0 cpu_id=0
132551          <idle>-0     (-----) [000] d.h2 82318.318153: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
132552          <idle>-0     (-----) [000] dnh3 82318.318168: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
132553          <idle>-0     (-----) [001] ...1 82318.318175: cpu_idle: state=4294967295 cpu_id=1
132554          <idle>-0     (-----) [000] .n.1 82318.318178: cpu_idle: state=4294967295 cpu_id=0
132555          <idle>-0     (-----) [001] d..1 82318.318181: cpu_idle: state=0 cpu_id=1
132556          <idle>-0     (-----) [000] d..2 82318.318190: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
132557        DispSync-8879  ( 8858) [000] d..1 82318.318208: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
132558        DispSync-8879  ( 8858) [000] d..2 82318.318226: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
132559          <idle>-0     (-----) [002] .n.1 82318.318235: cpu_idle: state=4294967295 cpu_id=2
132560          <idle>-0     (-----) [002] d..2 82318.318251: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
132561        DispSync-8879  ( 8858) [000] d..2 82318.318266: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132562          <idle>-0     (-----) [000] d..1 82318.318281: cpu_idle: state=0 cpu_id=0
132563  appEventThread-8881  ( 8858) [002] d..3 82318.318307: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132564          <idle>-0     (-----) [004] dnh2 82318.318338: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132565          <idle>-0     (-----) [004] .n.1 82318.318341: cpu_idle: state=4294967295 cpu_id=4
132566          <idle>-0     (-----) [004] d..2 82318.318348: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
132567  appEventThread-8881  ( 8858) [002] d..2 82318.318385: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132568          <idle>-0     (-----) [002] d..1 82318.318407: cpu_idle: state=0 cpu_id=2
132569 s.nexuslauncher-10023 (10023) [004] d.s2 82318.318473: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
132570          <idle>-0     (-----) [003] d.s2 82318.318480: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132571          <idle>-0     (-----) [003] dns3 82318.318502: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132572          <idle>-0     (-----) [000] dnh2 82318.318523: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132573          <idle>-0     (-----) [003] .n.1 82318.318528: cpu_idle: state=4294967295 cpu_id=3
132574          <idle>-0     (-----) [000] .n.1 82318.318531: cpu_idle: state=4294967295 cpu_id=0
132575          <idle>-0     (-----) [003] d..2 82318.318544: 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
132576          <idle>-0     (-----) [000] d..2 82318.318548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132577     rcu_preempt-7     (    7) [003] d..2 82318.318584: 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
132578          <idle>-0     (-----) [003] d..1 82318.318601: cpu_idle: state=0 cpu_id=3
132579 s.nexuslauncher-10023 (10023) [004] .... 82318.318626: binder_transaction: transaction=1572900 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
132580 s.nexuslauncher-10023 (10023) [004] .... 82318.318631: binder_transaction_alloc_buf: transaction=1572900 data_size=80 offsets_size=0
132581  kworker/u16:13-1147  ( 1147) [000] d..2 82318.318632: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132582 s.nexuslauncher-10023 (10023) [004] d..4 82318.318636: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
132583          <idle>-0     (-----) [000] d..1 82318.318645: cpu_idle: state=0 cpu_id=0
132584 s.nexuslauncher-10023 (10023) [004] d.h5 82318.318694: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
132585          <idle>-0     (-----) [000] dnh2 82318.318699: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
132586          <idle>-0     (-----) [000] .n.1 82318.318707: cpu_idle: state=4294967295 cpu_id=0
132587          <idle>-0     (-----) [000] d..2 82318.318720: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
132588          <idle>-0     (-----) [003] dnh2 82318.318721: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
132589          <idle>-0     (-----) [003] .n.1 82318.318729: cpu_idle: state=4294967295 cpu_id=3
132590   Binder:8858_1-8871  ( 8858) [000] .... 82318.318732: binder_transaction_received: transaction=1572900
132591 s.nexuslauncher-10023 (10023) [004] d..3 82318.318735: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132592          <idle>-0     (-----) [003] d..2 82318.318740: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
132593 s.nexuslauncher-10023 (10023) [004] d..4 82318.318753: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132594          <idle>-0     (-----) [005] .n.1 82318.318760: cpu_idle: state=4294967295 cpu_id=5
132595         sugov:0-576   (  576) [003] .... 82318.318769: clk_set_rate: pwrcl_clk 748800000
132596          <idle>-0     (-----) [005] d..2 82318.318773: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132597   Binder:8858_1-8871  ( 8858) [000] d..1 82318.318777: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
132598         sugov:0-576   (  576) [003] .... 82318.318782: clk_set_rate: cpu3_pwrcl_clk 652800000
132599         sugov:0-576   (  576) [003] .... 82318.318792: clk_set_rate: cpu2_pwrcl_clk 652800000
132600   Binder:8858_1-8871  ( 8858) [000] d..2 82318.318800: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
132601         sugov:0-576   (  576) [003] .... 82318.318801: clk_set_rate: cpu1_pwrcl_clk 652800000
132602          <idle>-0     (-----) [002] .n.1 82318.318807: cpu_idle: state=4294967295 cpu_id=2
132603         sugov:0-576   (  576) [003] .... 82318.318809: clk_set_rate: cpu0_pwrcl_clk 748800000
132604         sugov:0-576   (  576) [003] .... 82318.318819: cpu_frequency: state=748800 cpu_id=0
132605    RenderThread-16607 (10023) [005] d..2 82318.318823: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132606          <idle>-0     (-----) [002] d..2 82318.318824: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
132607          <idle>-0     (-----) [005] d..1 82318.318836: cpu_idle: state=0 cpu_id=5
132608         sugov:0-576   (  576) [003] .... 82318.318838: cpu_frequency: state=748800 cpu_id=1
132609         sugov:0-576   (  576) [003] .... 82318.318844: cpu_frequency: state=748800 cpu_id=2
132610         sugov:0-576   (  576) [003] .... 82318.318848: cpu_frequency: state=748800 cpu_id=3
132611   Binder:8858_1-8871  ( 8858) [000] d..2 82318.318864: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132612  appEventThread-8881  ( 8858) [002] d..2 82318.318878: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132613          <idle>-0     (-----) [000] d..1 82318.318881: cpu_idle: state=0 cpu_id=0
132614         sugov:0-576   (  576) [003] d..2 82318.318881: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132615          <idle>-0     (-----) [002] d..1 82318.318893: cpu_idle: state=0 cpu_id=2
132616          <idle>-0     (-----) [003] d..1 82318.318898: cpu_idle: state=0 cpu_id=3
132617 s.nexuslauncher-10023 (10023) [004] d..3 82318.319074: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132618 s.nexuslauncher-10023 (10023) [004] d..4 82318.319092: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132619          <idle>-0     (-----) [005] .n.1 82318.319097: cpu_idle: state=4294967295 cpu_id=5
132620          <idle>-0     (-----) [005] d..2 82318.319106: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132621 s.nexuslauncher-10023 (10023) [004] d..2 82318.319119: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
132622          <idle>-0     (-----) [004] d..1 82318.319136: cpu_idle: state=0 cpu_id=4
132623    RenderThread-16607 (10023) [005] d..1 82318.319269: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132624    RenderThread-16607 (10023) [005] d..2 82318.319288: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132625          <idle>-0     (-----) [004] .n.1 82318.319293: cpu_idle: state=4294967295 cpu_id=4
132626          <idle>-0     (-----) [004] d..2 82318.319303: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
132627    RenderThread-16607 (10023) [005] .... 82318.319338: binder_transaction: transaction=1572901 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
132628    RenderThread-16607 (10023) [005] .... 82318.319342: binder_transaction_alloc_buf: transaction=1572901 data_size=104 offsets_size=0
132629    RenderThread-16607 (10023) [005] ...2 82318.319346: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
132630    RenderThread-16607 (10023) [005] d..4 82318.319350: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
132631    RenderThread-16607 (10023) [005] d..5 82318.319371: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132632 s.nexuslauncher-10023 (10023) [004] d..2 82318.319415: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
132633    RenderThread-16607 (10023) [005] d..2 82318.319417: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132634          <idle>-0     (-----) [004] d..1 82318.319426: cpu_idle: state=0 cpu_id=4
132635   Binder:8858_1-8871  ( 8858) [005] .... 82318.319430: binder_transaction_received: transaction=1572901
132636   Binder:8858_1-8871  ( 8858) [005] .... 82318.319488: binder_transaction: transaction=1572902 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
132637   Binder:8858_1-8871  ( 8858) [005] .... 82318.319492: binder_transaction_alloc_buf: transaction=1572902 data_size=52 offsets_size=8
132638   Binder:8858_1-8871  ( 8858) [005] d..2 82318.319499: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132639   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.319509: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132640   Binder:8858_1-8871  ( 8858) [005] d..2 82318.319515: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
132641    RenderThread-16607 (10023) [005] .... 82318.319524: binder_transaction_received: transaction=1572902
132642    RenderThread-16607 (10023) [005] d..2 82318.320783: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132643   Binder:8858_1-8871  ( 8858) [005] .... 82318.320797: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
132644   Binder:8858_1-8871  ( 8858) [005] d..2 82318.320862: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132645          <idle>-0     (-----) [005] d.h2 82318.320879: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132646          <idle>-0     (-----) [005] d.h3 82318.320887: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
132647          <idle>-0     (-----) [005] dnh3 82318.320890: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132648          <idle>-0     (-----) [005] d..2 82318.320904: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132649    RenderThread-16607 (10023) [005] .... 82318.321061: binder_transaction: transaction=1572903 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
132650    RenderThread-16607 (10023) [005] .... 82318.321065: binder_transaction_alloc_buf: transaction=1572903 data_size=192 offsets_size=8
132651    RenderThread-16607 (10023) [005] ...2 82318.321072: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
132652    RenderThread-16607 (10023) [005] d..4 82318.321075: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132653    RenderThread-16607 (10023) [005] d..5 82318.321087: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132654    RenderThread-16607 (10023) [005] d..2 82318.321098: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132655   Binder:8858_1-8871  ( 8858) [005] .... 82318.321108: binder_transaction_received: transaction=1572903
132656   Binder:8858_1-8871  ( 8858) [005] .... 82318.321227: binder_transaction: transaction=1572904 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
132657   Binder:8858_1-8871  ( 8858) [005] .... 82318.321231: binder_transaction_alloc_buf: transaction=1572904 data_size=68 offsets_size=0
132658   Binder:8858_1-8871  ( 8858) [005] d..2 82318.321234: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132659   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.321245: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132660   Binder:8858_1-8871  ( 8858) [005] d..2 82318.321251: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
132661    RenderThread-16607 (10023) [005] .... 82318.321261: binder_transaction_received: transaction=1572904
132662    RenderThread-16607 (10023) [005] d..2 82318.321324: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132663   Binder:8858_1-8871  ( 8858) [005] .... 82318.321332: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
132664   Binder:8858_1-8871  ( 8858) [005] d..2 82318.321381: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132665          <idle>-0     (-----) [005] d..1 82318.321397: cpu_idle: state=0 cpu_id=5
132666          <idle>-0     (-----) [000] d.h2 82318.322151: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
132667          <idle>-0     (-----) [000] dnh3 82318.322165: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
132668          <idle>-0     (-----) [000] .n.1 82318.322175: cpu_idle: state=4294967295 cpu_id=0
132669          <idle>-0     (-----) [000] d..2 82318.322188: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
132670        DispSync-8879  ( 8858) [000] d..1 82318.322206: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132671        DispSync-8879  ( 8858) [000] d..2 82318.322224: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132672          <idle>-0     (-----) [001] .n.1 82318.322230: cpu_idle: state=4294967295 cpu_id=1
132673          <idle>-0     (-----) [001] d..2 82318.322245: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
132674        DispSync-8879  ( 8858) [000] d..2 82318.322267: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132675          <idle>-0     (-----) [000] d..2 82318.322272: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
132676          <idle>-0     (-----) [000] dn.3 82318.322286: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
132677   sfEventThread-8882  ( 8858) [001] d..3 82318.322290: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
132678          <idle>-0     (-----) [000] d..2 82318.322296: 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
132679   sfEventThread-8882  ( 8858) [001] d..4 82318.322315: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
132680          <idle>-0     (-----) [002] .n.1 82318.322322: cpu_idle: state=4294967295 cpu_id=2
132681     ksoftirqd/0-3     (    3) [000] d.H2 82318.322328: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
132682          <idle>-0     (-----) [002] d..2 82318.322335: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
132683   sfEventThread-8882  ( 8858) [001] d..2 82318.322359: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132684     ksoftirqd/0-3     (    3) [000] dnH3 82318.322363: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
132685          <idle>-0     (-----) [001] d..1 82318.322377: cpu_idle: state=0 cpu_id=1
132686     ksoftirqd/0-3     (    3) [000] d..2 82318.322387: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=R+ ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
132687 kgsl_worker_thr-258   (  258) [000] d..2 82318.322445: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132688 kgsl_worker_thr-258   (  258) [000] d..3 82318.322466: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132689 kgsl_worker_thr-258   (  258) [000] d..2 82318.322491: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
132690     ksoftirqd/0-3     (    3) [000] d..2 82318.322505: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132691  kworker/u16:13-1147  ( 1147) [000] d..2 82318.322688: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132692  surfaceflinger-8858  ( 8858) [002] d..1 82318.322699: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132693          <idle>-0     (-----) [000] d..1 82318.322711: cpu_idle: state=0 cpu_id=0
132694  surfaceflinger-8858  ( 8858) [002] d..2 82318.322726: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132695          <idle>-0     (-----) [001] .n.1 82318.322732: cpu_idle: state=4294967295 cpu_id=1
132696          <idle>-0     (-----) [001] d..2 82318.322744: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
132697   sfEventThread-8882  ( 8858) [001] d..2 82318.322786: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132698          <idle>-0     (-----) [001] d..1 82318.322798: cpu_idle: state=0 cpu_id=1
132699  surfaceflinger-8858  ( 8858) [002] ...1 82318.322948: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
132700  surfaceflinger-8858  ( 8858) [002] ...1 82318.322958: tracing_mark_write: E|8858
132701  surfaceflinger-8858  ( 8858) [002] .... 82318.323022: binder_transaction: transaction=1572905 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
132702  surfaceflinger-8858  ( 8858) [002] .... 82318.323029: binder_transaction_alloc_buf: transaction=1572905 data_size=540 offsets_size=96
132703  surfaceflinger-8858  ( 8858) [002] ...2 82318.323056: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
132704  surfaceflinger-8858  ( 8858) [002] d..4 82318.323064: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
132705  surfaceflinger-8858  ( 8858) [002] d..5 82318.323090: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
132706          <idle>-0     (-----) [003] .n.1 82318.323097: cpu_idle: state=4294967295 cpu_id=3
132707          <idle>-0     (-----) [003] d..2 82318.323111: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
132708 [email protected]   (  619) [003] .... 82318.323123: binder_transaction_received: transaction=1572905
132709  surfaceflinger-8858  ( 8858) [002] d..2 82318.323134: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132710          <idle>-0     (-----) [002] d..1 82318.323158: cpu_idle: state=0 cpu_id=2
132711 [email protected]   (  619) [003] ...1 82318.323174: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
132712 [email protected]   (  619) [003] ...1 82318.323295: tracing_mark_write: B|619|HWCSession::PresentDisplay::
132713 [email protected]   (  619) [003] ...1 82318.323482: tracing_mark_write: B|619|HWDeviceDRM::Commit::
132714 [email protected]   (  619) [003] ...1 82318.323498: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
132715 [email protected]   (  619) [003] d..2 82318.324169: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132716 [email protected]   (  619) [003] d..3 82318.324198: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132717          <idle>-0     (-----) [001] .n.1 82318.324203: cpu_idle: state=4294967295 cpu_id=1
132718          <idle>-0     (-----) [001] d..2 82318.324215: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
132719 [email protected]   (  619) [003] ...1 82318.324322: tracing_mark_write: E|619
132720 [email protected]   (  619) [003] ...1 82318.324331: tracing_mark_write: E|619
132721 [email protected]   (  619) [003] ...1 82318.324398: tracing_mark_write: E|619
132722 [email protected]   (  619) [003] ...1 82318.324449: tracing_mark_write: E|619
132723 [email protected]   (  619) [003] .... 82318.324468: binder_transaction: transaction=1572906 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
132724 [email protected]   (  619) [003] .... 82318.324474: binder_transaction_alloc_buf: transaction=1572906 data_size=576 offsets_size=112
132725 [email protected]   (  619) [003] d..2 82318.324501: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
132726 [email protected]   (  619) [003] d..3 82318.324525: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
132727 [email protected]   (  619) [003] .... 82318.324531: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
132728          <idle>-0     (-----) [002] .n.1 82318.324531: cpu_idle: state=4294967295 cpu_id=2
132729          <idle>-0     (-----) [002] d..2 82318.324545: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
132730  surfaceflinger-8858  ( 8858) [002] .... 82318.324555: binder_transaction_received: transaction=1572906
132731 [email protected]   (  619) [003] d..2 82318.324640: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132732          <idle>-0     (-----) [003] d..1 82318.324658: cpu_idle: state=0 cpu_id=3
132733 crtc_commit:111-321   (  321) [001] d..2 82318.324987: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
132734          <idle>-0     (-----) [001] d..1 82318.325007: cpu_idle: state=0 cpu_id=1
132735  surfaceflinger-8858  ( 8858) [002] d..2 82318.325037: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132736          <idle>-0     (-----) [002] d..1 82318.325061: cpu_idle: state=0 cpu_id=2
132737          <idle>-0     (-----) [003] d.s2 82318.325150: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132738          <idle>-0     (-----) [003] dns3 82318.325174: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132739          <idle>-0     (-----) [003] dns3 82318.325183: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132740          <idle>-0     (-----) [003] dns4 82318.325225: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
132741          <idle>-0     (-----) [003] .n.1 82318.325238: cpu_idle: state=4294967295 cpu_id=3
132742          <idle>-0     (-----) [003] d..2 82318.325251: 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
132743     rcu_preempt-7     (    7) [003] d..2 82318.325263: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
132744     rcu_preempt-7     (    7) [003] d..3 82318.325280: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
132745     rcu_preempt-7     (    7) [003] d..2 82318.325294: 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
132746         rcuop/2-29    (   29) [003] d..2 82318.325306: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132747         rcuop/2-29    (   29) [003] d..3 82318.325321: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132748         rcuop/2-29    (   29) [003] d..2 82318.325331: 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
132749     rcu_preempt-7     (    7) [003] d..2 82318.325347: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132750  kworker/u16:13-1147  ( 1147) [003] d..2 82318.325482: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132751          <idle>-0     (-----) [003] d..1 82318.325501: cpu_idle: state=0 cpu_id=3
132752          <idle>-0     (-----) [001] ...1 82318.326910: cpu_idle: state=4294967295 cpu_id=1
132753          <idle>-0     (-----) [001] d..1 82318.326916: cpu_idle: state=0 cpu_id=1
132754          <idle>-0     (-----) [000] d.h5 82318.330228: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132755          <idle>-0     (-----) [000] dnh6 82318.330246: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132756          <idle>-0     (-----) [000] dnh5 82318.330250: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132757          <idle>-0     (-----) [000] dnh6 82318.330266: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132758          <idle>-0     (-----) [001] .n.1 82318.330272: cpu_idle: state=4294967295 cpu_id=1
132759          <idle>-0     (-----) [000] .n.1 82318.330282: cpu_idle: state=4294967295 cpu_id=0
132760          <idle>-0     (-----) [001] d..2 82318.330287: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
132761          <idle>-0     (-----) [000] d..2 82318.330298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
132762  crtc_event:111-322   (  322) [000] d..2 82318.330340: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132763          <idle>-0     (-----) [000] d..2 82318.330345: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
132764          <idle>-0     (-----) [000] dn.3 82318.330356: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
132765          <idle>-0     (-----) [000] d..2 82318.330365: 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
132766     ksoftirqd/0-3     (    3) [000] d..2 82318.330389: 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
132767          <idle>-0     (-----) [000] d..1 82318.330404: cpu_idle: state=0 cpu_id=0
132768 crtc_commit:111-321   (  321) [001] d..2 82318.330443: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
132769          <idle>-0     (-----) [001] d..1 82318.330455: cpu_idle: state=0 cpu_id=1
132770          <idle>-0     (-----) [003] d.s2 82318.331810: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132771          <idle>-0     (-----) [003] dns3 82318.331880: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132772          <idle>-0     (-----) [001] d.s3 82318.331885: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132773          <idle>-0     (-----) [003] .n.1 82318.331894: cpu_idle: state=4294967295 cpu_id=3
132774          <idle>-0     (-----) [003] d..2 82318.331909: 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
132775          <idle>-0     (-----) [001] d.s4 82318.331910: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132776          <idle>-0     (-----) [000] .n.1 82318.331917: cpu_idle: state=4294967295 cpu_id=0
132777          <idle>-0     (-----) [000] d..2 82318.331931: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
132778     rcu_preempt-7     (    7) [003] d..2 82318.331947: 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
132779          <idle>-0     (-----) [001] ...1 82318.331949: cpu_idle: state=4294967295 cpu_id=1
132780          <idle>-0     (-----) [001] d..1 82318.331956: cpu_idle: state=0 cpu_id=1
132781          <idle>-0     (-----) [003] d..1 82318.331962: cpu_idle: state=0 cpu_id=3
132782  crtc_event:111-322   (  322) [000] d..2 82318.331966: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132783          <idle>-0     (-----) [000] d..1 82318.331976: cpu_idle: state=0 cpu_id=0
132784          <idle>-0     (-----) [000] d.h5 82318.332548: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132785          <idle>-0     (-----) [000] d.h6 82318.332568: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132786          <idle>-0     (-----) [001] .n.1 82318.332575: cpu_idle: state=4294967295 cpu_id=1
132787          <idle>-0     (-----) [000] ...1 82318.332586: cpu_idle: state=4294967295 cpu_id=0
132788          <idle>-0     (-----) [001] d..2 82318.332589: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
132789          <idle>-0     (-----) [000] d..1 82318.332592: cpu_idle: state=0 cpu_id=0
132790 crtc_commit:111-321   (  321) [001] d..2 82318.332668: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132791          <idle>-0     (-----) [001] d..1 82318.332682: cpu_idle: state=0 cpu_id=1
132792          <idle>-0     (-----) [000] d.h5 82318.332850: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132793          <idle>-0     (-----) [000] dnh6 82318.332862: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
132794          <idle>-0     (-----) [000] .n.1 82318.332877: cpu_idle: state=4294967295 cpu_id=0
132795          <idle>-0     (-----) [000] d..2 82318.332889: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
132796  crtc_event:111-322   (  322) [000] d..2 82318.332918: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132797          <idle>-0     (-----) [000] d..1 82318.332929: cpu_idle: state=0 cpu_id=0
132798          <idle>-0     (-----) [000] d.h2 82318.334607: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
132799          <idle>-0     (-----) [000] dnh3 82318.334621: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
132800          <idle>-0     (-----) [000] .n.1 82318.334630: cpu_idle: state=4294967295 cpu_id=0
132801          <idle>-0     (-----) [000] d..2 82318.334641: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
132802        DispSync-8879  ( 8858) [000] d..1 82318.334660: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
132803        DispSync-8879  ( 8858) [000] d..2 82318.334677: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
132804          <idle>-0     (-----) [002] .n.1 82318.334685: cpu_idle: state=4294967295 cpu_id=2
132805          <idle>-0     (-----) [002] d..2 82318.334700: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
132806        DispSync-8879  ( 8858) [000] d..2 82318.334715: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132807          <idle>-0     (-----) [000] d..1 82318.334729: cpu_idle: state=0 cpu_id=0
132808  appEventThread-8881  ( 8858) [002] d..3 82318.334751: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132809          <idle>-0     (-----) [004] dnh2 82318.334785: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132810          <idle>-0     (-----) [004] .n.1 82318.334790: cpu_idle: state=4294967295 cpu_id=4
132811          <idle>-0     (-----) [004] d..2 82318.334798: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
132812  appEventThread-8881  ( 8858) [002] d..2 82318.334822: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132813          <idle>-0     (-----) [002] d..1 82318.334842: cpu_idle: state=0 cpu_id=2
132814 s.nexuslauncher-10023 (10023) [004] .... 82318.334988: binder_transaction: transaction=1572907 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
132815 s.nexuslauncher-10023 (10023) [004] .... 82318.334993: binder_transaction_alloc_buf: transaction=1572907 data_size=80 offsets_size=0
132816 s.nexuslauncher-10023 (10023) [004] d..4 82318.334998: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
132817          <idle>-0     (-----) [000] dnh2 82318.335064: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
132818          <idle>-0     (-----) [000] .n.1 82318.335071: cpu_idle: state=4294967295 cpu_id=0
132819 s.nexuslauncher-10023 (10023) [004] d..3 82318.335084: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132820          <idle>-0     (-----) [000] d..2 82318.335084: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
132821   Binder:8858_1-8871  ( 8858) [000] .... 82318.335094: binder_transaction_received: transaction=1572907
132822 s.nexuslauncher-10023 (10023) [004] d..4 82318.335099: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132823          <idle>-0     (-----) [005] .n.1 82318.335107: cpu_idle: state=4294967295 cpu_id=5
132824          <idle>-0     (-----) [005] d..2 82318.335123: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132825 s.nexuslauncher-10023 (10023) [004] d.s2 82318.335135: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
132826    RenderThread-16607 (10023) [005] d..2 82318.335171: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132827   Binder:8858_1-8871  ( 8858) [000] d.h1 82318.335174: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132828          <idle>-0     (-----) [005] d..1 82318.335183: cpu_idle: state=0 cpu_id=5
132829   Binder:8858_1-8871  ( 8858) [000] d..1 82318.335199: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
132830   Binder:8858_1-8871  ( 8858) [000] d..2 82318.335221: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
132831          <idle>-0     (-----) [002] .n.1 82318.335229: cpu_idle: state=4294967295 cpu_id=2
132832          <idle>-0     (-----) [002] d..2 82318.335242: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
132833   Binder:8858_1-8871  ( 8858) [000] d..2 82318.335262: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132834  appEventThread-8881  ( 8858) [002] d..2 82318.335294: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132835          <idle>-0     (-----) [002] d..1 82318.335343: cpu_idle: state=0 cpu_id=2
132836  kworker/u16:13-1147  ( 1147) [000] d..2 82318.335483: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132837          <idle>-0     (-----) [000] d..1 82318.335502: cpu_idle: state=0 cpu_id=0
132838 s.nexuslauncher-10023 (10023) [004] d..3 82318.335507: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132839 s.nexuslauncher-10023 (10023) [004] d..4 82318.335525: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132840          <idle>-0     (-----) [005] .n.1 82318.335531: cpu_idle: state=4294967295 cpu_id=5
132841          <idle>-0     (-----) [005] d..2 82318.335540: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132842 s.nexuslauncher-10023 (10023) [004] d..2 82318.335551: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
132843          <idle>-0     (-----) [004] d..1 82318.335568: cpu_idle: state=0 cpu_id=4
132844    RenderThread-16607 (10023) [005] d..1 82318.335694: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132845    RenderThread-16607 (10023) [005] d..2 82318.335711: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
132846          <idle>-0     (-----) [004] .n.1 82318.335717: cpu_idle: state=4294967295 cpu_id=4
132847          <idle>-0     (-----) [004] d..2 82318.335726: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
132848    RenderThread-16607 (10023) [005] .... 82318.335759: binder_transaction: transaction=1572908 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
132849    RenderThread-16607 (10023) [005] .... 82318.335763: binder_transaction_alloc_buf: transaction=1572908 data_size=104 offsets_size=0
132850    RenderThread-16607 (10023) [005] ...2 82318.335767: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
132851    RenderThread-16607 (10023) [005] d..4 82318.335770: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
132852    RenderThread-16607 (10023) [005] d..5 82318.335793: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132853 s.nexuslauncher-10023 (10023) [004] d..2 82318.335836: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
132854    RenderThread-16607 (10023) [005] d..2 82318.335838: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132855          <idle>-0     (-----) [004] d..1 82318.335846: cpu_idle: state=0 cpu_id=4
132856   Binder:8858_1-8871  ( 8858) [005] .... 82318.335849: binder_transaction_received: transaction=1572908
132857   Binder:8858_1-8871  ( 8858) [005] .... 82318.335908: binder_transaction: transaction=1572909 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
132858   Binder:8858_1-8871  ( 8858) [005] .... 82318.335912: binder_transaction_alloc_buf: transaction=1572909 data_size=52 offsets_size=8
132859   Binder:8858_1-8871  ( 8858) [005] d..2 82318.335919: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132860   Binder:8858_1-8871  ( 8858) [005] dn.3 82318.335929: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132861   Binder:8858_1-8871  ( 8858) [005] d..2 82318.335935: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=110 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
132862    RenderThread-16607 (10023) [005] .... 82318.335944: binder_transaction_received: transaction=1572909
132863          <idle>-0     (-----) [001] d.h2 82318.336296: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
132864          <idle>-0     (-----) [001] dnh3 82318.336317: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
132865          <idle>-0     (-----) [001] .n.1 82318.336327: cpu_idle: state=4294967295 cpu_id=1
132866          <idle>-0     (-----) [001] d..2 82318.336340: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
132867 [email protected]  (  776) [001] d..2 82318.336440: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132868          <idle>-0     (-----) [001] d..1 82318.336455: cpu_idle: state=0 cpu_id=1
132869    RenderThread-16607 (10023) [005] d..2 82318.337190: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132870   Binder:8858_1-8871  ( 8858) [005] .... 82318.337203: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
132871   Binder:8858_1-8871  ( 8858) [005] d..2 82318.337269: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132872          <idle>-0     (-----) [005] d.h2 82318.337286: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132873          <idle>-0     (-----) [005] d.h3 82318.337294: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
132874          <idle>-0     (-----) [005] dnh3 82318.337297: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132875          <idle>-0     (-----) [005] d..2 82318.337311: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
132876    RenderThread-16607 (10023) [005] .... 82318.337463: binder_transaction: transaction=1572910 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
132877    RenderThread-16607 (10023) [005] .... 82318.337468: binder_transaction_alloc_buf: transaction=1572910 data_size=192 offsets_size=8
132878    RenderThread-16607 (10023) [005] ...2 82318.337475: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
132879    RenderThread-16607 (10023) [005] d..4 82318.337478: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132880    RenderThread-16607 (10023) [005] d..5 82318.337489: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
132881    RenderThread-16607 (10023) [005] d..2 82318.337500: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
132882   Binder:8858_1-8871  ( 8858) [005] .... 82318.337510: binder_transaction_received: transaction=1572910
132883   Binder:8858_1-8871  ( 8858) [005] .... 82318.337624: binder_transaction: transaction=1572911 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
132884   Binder:8858_1-8871  ( 8858) [005] .... 82318.337628: binder_transaction_alloc_buf: transaction=1572911 data_size=68 offsets_size=0
132885   Binder:8858_1-8871  ( 8858) [005] d..2 82318.337631: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
132886   Binder:8858_1-8871  ( 8858) [005] d..3 82318.337642: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
132887   Binder:8858_1-8871  ( 8858) [005] .... 82318.337644: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
132888   Binder:8858_1-8871  ( 8858) [005] d..2 82318.337654: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
132889    RenderThread-16607 (10023) [005] .... 82318.337663: binder_transaction_received: transaction=1572911
132890    RenderThread-16607 (10023) [005] d..2 82318.337728: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
132891   Binder:8858_1-8871  ( 8858) [005] d..2 82318.337773: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
132892          <idle>-0     (-----) [005] d..1 82318.337791: cpu_idle: state=0 cpu_id=5
132893          <idle>-0     (-----) [003] d.s2 82318.338474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132894          <idle>-0     (-----) [001] d.s3 82318.338486: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
132895          <idle>-0     (-----) [003] dns3 82318.338492: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132896          <idle>-0     (-----) [001] dns4 82318.338506: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
132897          <idle>-0     (-----) [003] .n.1 82318.338510: cpu_idle: state=4294967295 cpu_id=3
132898          <idle>-0     (-----) [001] dns3 82318.338514: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
132899          <idle>-0     (-----) [003] d..2 82318.338525: 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
132900          <idle>-0     (-----) [001] dns4 82318.338534: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
132901     rcu_preempt-7     (    7) [003] d..2 82318.338535: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
132902          <idle>-0     (-----) [002] .n.1 82318.338540: cpu_idle: state=4294967295 cpu_id=2
132903          <idle>-0     (-----) [001] .n.1 82318.338550: cpu_idle: state=4294967295 cpu_id=1
132904          <idle>-0     (-----) [002] d..2 82318.338559: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
132905          <idle>-0     (-----) [001] d..2 82318.338562: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
132906     kworker/1:1-25249 (25249) [001] d..2 82318.338580: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
132907     rcu_preempt-7     (    7) [003] d..3 82318.338583: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
132908     kworker/1:1-25249 (25249) [001] d..3 82318.338600: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
132909     kworker/2:1-25259 (25259) [002] d..2 82318.338600: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
132910          <idle>-0     (-----) [000] dnh2 82318.338613: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
132911         rcuop/2-29    (   29) [002] d..2 82318.338637: 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
132912     rcu_preempt-7     (    7) [003] d..2 82318.338641: 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
132913     kworker/1:1-25249 (25249) [001] d..2 82318.338650: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132914          <idle>-0     (-----) [002] d..1 82318.338650: cpu_idle: state=0 cpu_id=2
132915          <idle>-0     (-----) [000] dnh3 82318.338653: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
132916          <idle>-0     (-----) [003] d..2 82318.338665: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
132917          <idle>-0     (-----) [001] d..1 82318.338667: cpu_idle: state=0 cpu_id=1
132918          <idle>-0     (-----) [000] .n.1 82318.338667: cpu_idle: state=4294967295 cpu_id=0
132919          <idle>-0     (-----) [000] d..2 82318.338687: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
132920        DispSync-8879  ( 8858) [003] d..1 82318.338696: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132921        DispSync-8879  ( 8858) [003] d..2 82318.338721: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132922          <idle>-0     (-----) [001] .n.1 82318.338727: cpu_idle: state=4294967295 cpu_id=1
132923     kworker/0:1-25262 (25262) [000] d.h2 82318.338731: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
132924          <idle>-0     (-----) [001] d..2 82318.338741: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
132925     kworker/0:1-25262 (25262) [000] d.h3 82318.338761: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
132926          <idle>-0     (-----) [002] .n.1 82318.338767: cpu_idle: state=4294967295 cpu_id=2
132927        DispSync-8879  ( 8858) [003] d..2 82318.338767: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132928          <idle>-0     (-----) [002] d..2 82318.338779: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
132929          <idle>-0     (-----) [003] d..1 82318.338787: cpu_idle: state=0 cpu_id=3
132930   sfEventThread-8882  ( 8858) [001] d..3 82318.338791: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
132931     kworker/0:1-25262 (25262) [000] d..2 82318.338801: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132932          <idle>-0     (-----) [000] d..1 82318.338819: cpu_idle: state=0 cpu_id=0
132933          <idle>-0     (-----) [000] .n.1 82318.338824: cpu_idle: state=4294967295 cpu_id=0
132934   sfEventThread-8882  ( 8858) [001] d..4 82318.338825: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
132935          <idle>-0     (-----) [000] d..2 82318.338840: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
132936 kgsl_worker_thr-258   (  258) [002] d..2 82318.338842: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
132937   sfEventThread-8882  ( 8858) [001] d..2 82318.338869: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132938          <idle>-0     (-----) [001] d..1 82318.338887: cpu_idle: state=0 cpu_id=1
132939 kgsl_worker_thr-258   (  258) [002] d..3 82318.338897: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
132940          <idle>-0     (-----) [001] .n.1 82318.338903: cpu_idle: state=4294967295 cpu_id=1
132941          <idle>-0     (-----) [001] d..2 82318.338921: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
132942 kgsl_worker_thr-258   (  258) [002] d..2 82318.338939: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
132943          <idle>-0     (-----) [002] d..1 82318.338955: cpu_idle: state=0 cpu_id=2
132944  kworker/u16:13-1147  ( 1147) [001] d..2 82318.339112: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132945          <idle>-0     (-----) [001] d..1 82318.339129: cpu_idle: state=0 cpu_id=1
132946  surfaceflinger-8858  ( 8858) [000] d..2 82318.339209: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
132947  surfaceflinger-8858  ( 8858) [000] d..3 82318.339251: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
132948  surfaceflinger-8858  ( 8858) [000] d..1 82318.339288: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132949  surfaceflinger-8858  ( 8858) [000] d..2 82318.339310: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
132950          <idle>-0     (-----) [001] .n.1 82318.339316: cpu_idle: state=4294967295 cpu_id=1
132951          <idle>-0     (-----) [001] d..2 82318.339330: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
132952   sfEventThread-8882  ( 8858) [001] d..2 82318.339378: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
132953          <idle>-0     (-----) [001] d..1 82318.339391: cpu_idle: state=0 cpu_id=1
132954  surfaceflinger-8858  ( 8858) [000] ...1 82318.339532: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
132955  surfaceflinger-8858  ( 8858) [000] ...1 82318.339542: tracing_mark_write: E|8858
132956  surfaceflinger-8858  ( 8858) [000] .... 82318.339614: binder_transaction: transaction=1572912 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
132957  surfaceflinger-8858  ( 8858) [000] .... 82318.339621: binder_transaction_alloc_buf: transaction=1572912 data_size=540 offsets_size=96
132958  surfaceflinger-8858  ( 8858) [000] ...2 82318.339650: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
132959  surfaceflinger-8858  ( 8858) [000] d..4 82318.339658: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
132960  surfaceflinger-8858  ( 8858) [000] d..5 82318.339684: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
132961          <idle>-0     (-----) [003] .n.1 82318.339691: cpu_idle: state=4294967295 cpu_id=3
132962          <idle>-0     (-----) [003] d..2 82318.339704: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
132963  surfaceflinger-8858  ( 8858) [000] d..2 82318.339714: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
132964 [email protected]   (  619) [003] .... 82318.339718: binder_transaction_received: transaction=1572912
132965         rcuop/0-10    (   10) [000] d..2 82318.339723: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
132966         rcuop/0-10    (   10) [000] d..3 82318.339772: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
132967 [email protected]   (  619) [003] ...1 82318.339772: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
132968         rcuop/0-10    (   10) [000] d..2 82318.339788: 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
132969     rcu_preempt-7     (    7) [000] d..2 82318.339822: 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
132970          <idle>-0     (-----) [000] d..1 82318.339844: cpu_idle: state=0 cpu_id=0
132971 [email protected]   (  619) [003] ...1 82318.339888: tracing_mark_write: B|619|HWCSession::PresentDisplay::
132972 [email protected]   (  619) [003] ...1 82318.340084: tracing_mark_write: B|619|HWDeviceDRM::Commit::
132973 [email protected]   (  619) [003] ...1 82318.340099: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
132974 [email protected]   (  619) [003] d..2 82318.340761: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132975 [email protected]   (  619) [003] d..3 82318.340790: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
132976          <idle>-0     (-----) [001] .n.1 82318.340795: cpu_idle: state=4294967295 cpu_id=1
132977          <idle>-0     (-----) [001] d..2 82318.340807: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
132978 [email protected]   (  619) [003] ...1 82318.340912: tracing_mark_write: E|619
132979 [email protected]   (  619) [003] ...1 82318.340920: tracing_mark_write: E|619
132980 [email protected]   (  619) [003] ...1 82318.340990: tracing_mark_write: E|619
132981 [email protected]   (  619) [003] ...1 82318.341040: tracing_mark_write: E|619
132982 [email protected]   (  619) [003] .... 82318.341058: binder_transaction: transaction=1572913 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
132983 [email protected]   (  619) [003] .... 82318.341064: binder_transaction_alloc_buf: transaction=1572913 data_size=576 offsets_size=112
132984 [email protected]   (  619) [003] d..2 82318.341090: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
132985 [email protected]   (  619) [003] d..3 82318.341113: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
132986 [email protected]   (  619) [003] .... 82318.341119: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
132987          <idle>-0     (-----) [000] .n.1 82318.341120: cpu_idle: state=4294967295 cpu_id=0
132988          <idle>-0     (-----) [000] d..2 82318.341134: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
132989  surfaceflinger-8858  ( 8858) [000] .... 82318.341146: binder_transaction_received: transaction=1572913
132990 [email protected]   (  619) [003] d..2 82318.341229: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
132991          <idle>-0     (-----) [003] d..1 82318.341254: cpu_idle: state=0 cpu_id=3
132992 crtc_commit:111-321   (  321) [001] d..2 82318.341582: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
132993          <idle>-0     (-----) [001] d..1 82318.341600: cpu_idle: state=0 cpu_id=1
132994  surfaceflinger-8858  ( 8858) [000] d..2 82318.341643: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
132995          <idle>-0     (-----) [000] d..1 82318.341668: cpu_idle: state=0 cpu_id=0
132996          <idle>-0     (-----) [000] d.s2 82318.345145: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
132997          <idle>-0     (-----) [000] dns3 82318.345168: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
132998          <idle>-0     (-----) [000] dns3 82318.345176: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
132999          <idle>-0     (-----) [000] dns4 82318.345214: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
133000          <idle>-0     (-----) [000] .n.1 82318.345240: cpu_idle: state=4294967295 cpu_id=0
133001          <idle>-0     (-----) [000] d..2 82318.345257: 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
133002     rcu_preempt-7     (    7) [000] d..2 82318.345271: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
133003     rcu_preempt-7     (    7) [000] d..3 82318.345288: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
133004     rcu_preempt-7     (    7) [000] d..2 82318.345301: 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
133005         rcuop/0-10    (   10) [000] d..2 82318.345309: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133006         rcuop/0-10    (   10) [000] d..3 82318.345323: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133007         rcuop/0-10    (   10) [000] d..2 82318.345334: 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
133008     rcu_preempt-7     (    7) [000] d..2 82318.345348: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
133009  kworker/u16:13-1147  ( 1147) [000] d..2 82318.345464: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133010          <idle>-0     (-----) [000] d..1 82318.345484: cpu_idle: state=0 cpu_id=0
133011          <idle>-0     (-----) [000] d.h5 82318.346692: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
133012          <idle>-0     (-----) [000] dnh6 82318.346708: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
133013          <idle>-0     (-----) [000] dnh5 82318.346714: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133014          <idle>-0     (-----) [000] dnh6 82318.346728: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133015          <idle>-0     (-----) [001] .n.1 82318.346735: cpu_idle: state=4294967295 cpu_id=1
133016          <idle>-0     (-----) [000] .n.1 82318.346744: cpu_idle: state=4294967295 cpu_id=0
133017          <idle>-0     (-----) [001] d..2 82318.346749: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133018          <idle>-0     (-----) [000] d..2 82318.346760: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133019  crtc_event:111-322   (  322) [000] d..2 82318.346794: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133020          <idle>-0     (-----) [000] d..1 82318.346808: cpu_idle: state=0 cpu_id=0
133021 crtc_commit:111-321   (  321) [001] d..2 82318.346908: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
133022          <idle>-0     (-----) [001] d..1 82318.346919: cpu_idle: state=0 cpu_id=1
133023          <idle>-0     (-----) [001] d.s3 82318.348478: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
133024          <idle>-0     (-----) [001] d.s4 82318.348500: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
133025          <idle>-0     (-----) [000] .n.1 82318.348507: cpu_idle: state=4294967295 cpu_id=0
133026          <idle>-0     (-----) [001] d.s3 82318.348509: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
133027          <idle>-0     (-----) [000] d..2 82318.348521: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133028          <idle>-0     (-----) [001] dns4 82318.348541: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
133029  crtc_event:111-322   (  322) [000] d..2 82318.348561: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133030          <idle>-0     (-----) [001] .n.1 82318.348565: cpu_idle: state=4294967295 cpu_id=1
133031          <idle>-0     (-----) [000] d..1 82318.348571: cpu_idle: state=0 cpu_id=0
133032          <idle>-0     (-----) [001] d..2 82318.348577: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
133033  kworker/u16:13-1147  ( 1147) [001] d..2 82318.348667: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133034          <idle>-0     (-----) [001] d..1 82318.348683: cpu_idle: state=0 cpu_id=1
133035          <idle>-0     (-----) [000] d.h5 82318.349014: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133036          <idle>-0     (-----) [000] d.h6 82318.349033: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133037          <idle>-0     (-----) [001] .n.1 82318.349040: cpu_idle: state=4294967295 cpu_id=1
133038          <idle>-0     (-----) [000] ...1 82318.349049: cpu_idle: state=4294967295 cpu_id=0
133039          <idle>-0     (-----) [001] d..2 82318.349053: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133040          <idle>-0     (-----) [000] d..1 82318.349054: cpu_idle: state=0 cpu_id=0
133041 crtc_commit:111-321   (  321) [001] d..2 82318.349132: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133042          <idle>-0     (-----) [001] d..1 82318.349148: cpu_idle: state=0 cpu_id=1
133043          <idle>-0     (-----) [000] d.h5 82318.349315: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
133044          <idle>-0     (-----) [000] dnh6 82318.349326: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
133045          <idle>-0     (-----) [000] .n.1 82318.349341: cpu_idle: state=4294967295 cpu_id=0
133046          <idle>-0     (-----) [000] d..2 82318.349349: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133047  crtc_event:111-322   (  322) [000] d..2 82318.349376: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133048          <idle>-0     (-----) [000] d..1 82318.349385: cpu_idle: state=0 cpu_id=0
133049          <idle>-0     (-----) [003] d.h2 82318.351093: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
133050          <idle>-0     (-----) [003] dnh3 82318.351110: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
133051          <idle>-0     (-----) [003] .n.1 82318.351120: cpu_idle: state=4294967295 cpu_id=3
133052          <idle>-0     (-----) [003] d..2 82318.351133: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
133053        DispSync-8879  ( 8858) [003] d..1 82318.351156: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
133054        DispSync-8879  ( 8858) [003] d..2 82318.351173: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
133055          <idle>-0     (-----) [002] .n.1 82318.351180: cpu_idle: state=4294967295 cpu_id=2
133056          <idle>-0     (-----) [002] d..2 82318.351194: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
133057        DispSync-8879  ( 8858) [003] d..2 82318.351216: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133058          <idle>-0     (-----) [003] d..1 82318.351232: cpu_idle: state=0 cpu_id=3
133059  appEventThread-8881  ( 8858) [002] d..3 82318.351239: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133060          <idle>-0     (-----) [004] dnh2 82318.351267: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133061          <idle>-0     (-----) [004] .n.1 82318.351272: cpu_idle: state=4294967295 cpu_id=4
133062          <idle>-0     (-----) [004] d..2 82318.351281: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
133063  appEventThread-8881  ( 8858) [002] d..2 82318.351302: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133064          <idle>-0     (-----) [002] d..1 82318.351319: cpu_idle: state=0 cpu_id=2
133065 s.nexuslauncher-10023 (10023) [004] .... 82318.351475: binder_transaction: transaction=1572914 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
133066 s.nexuslauncher-10023 (10023) [004] .... 82318.351480: binder_transaction_alloc_buf: transaction=1572914 data_size=80 offsets_size=0
133067 s.nexuslauncher-10023 (10023) [004] d..4 82318.351485: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
133068          <idle>-0     (-----) [000] dnh2 82318.351553: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
133069          <idle>-0     (-----) [000] .n.1 82318.351560: cpu_idle: state=4294967295 cpu_id=0
133070          <idle>-0     (-----) [000] d..2 82318.351569: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
133071 s.nexuslauncher-10023 (10023) [004] d..3 82318.351573: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133072   Binder:8858_1-8871  ( 8858) [000] .... 82318.351580: binder_transaction_received: transaction=1572914
133073 s.nexuslauncher-10023 (10023) [004] d..4 82318.351590: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133074          <idle>-0     (-----) [005] .n.1 82318.351596: cpu_idle: state=4294967295 cpu_id=5
133075          <idle>-0     (-----) [005] d..2 82318.351608: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133076   Binder:8858_1-8871  ( 8858) [000] d..1 82318.351626: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
133077   Binder:8858_1-8871  ( 8858) [000] d..2 82318.351646: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
133078          <idle>-0     (-----) [002] .n.1 82318.351653: cpu_idle: state=4294967295 cpu_id=2
133079    RenderThread-16607 (10023) [005] d..2 82318.351655: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133080          <idle>-0     (-----) [002] d..2 82318.351665: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
133081          <idle>-0     (-----) [005] d..1 82318.351666: cpu_idle: state=0 cpu_id=5
133082   Binder:8858_1-8871  ( 8858) [000] d..2 82318.351701: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133083  appEventThread-8881  ( 8858) [002] d..2 82318.351712: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133084          <idle>-0     (-----) [000] d..1 82318.351715: cpu_idle: state=0 cpu_id=0
133085          <idle>-0     (-----) [002] d..1 82318.351724: cpu_idle: state=0 cpu_id=2
133086          <idle>-0     (-----) [000] d.s2 82318.351883: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133087          <idle>-0     (-----) [000] dns3 82318.351906: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133088          <idle>-0     (-----) [000] .n.1 82318.351920: cpu_idle: state=4294967295 cpu_id=0
133089          <idle>-0     (-----) [000] d..2 82318.351933: 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
133090     rcu_preempt-7     (    7) [000] d..2 82318.351971: 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
133091 s.nexuslauncher-10023 (10023) [004] d..3 82318.351974: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133092          <idle>-0     (-----) [000] d..1 82318.351989: cpu_idle: state=0 cpu_id=0
133093 s.nexuslauncher-10023 (10023) [004] d..4 82318.351993: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133094          <idle>-0     (-----) [005] .n.1 82318.351998: cpu_idle: state=4294967295 cpu_id=5
133095          <idle>-0     (-----) [005] d..2 82318.352008: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133096 s.nexuslauncher-10023 (10023) [004] d..2 82318.352020: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
133097          <idle>-0     (-----) [004] d..1 82318.352036: cpu_idle: state=0 cpu_id=4
133098    RenderThread-16607 (10023) [005] d..1 82318.352158: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133099    RenderThread-16607 (10023) [005] d..2 82318.352175: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133100          <idle>-0     (-----) [004] .n.1 82318.352181: cpu_idle: state=4294967295 cpu_id=4
133101          <idle>-0     (-----) [004] d..2 82318.352191: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
133102    RenderThread-16607 (10023) [005] .... 82318.352222: binder_transaction: transaction=1572915 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
133103    RenderThread-16607 (10023) [005] .... 82318.352226: binder_transaction_alloc_buf: transaction=1572915 data_size=104 offsets_size=0
133104    RenderThread-16607 (10023) [005] ...2 82318.352230: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
133105    RenderThread-16607 (10023) [005] d..4 82318.352234: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
133106    RenderThread-16607 (10023) [005] d..5 82318.352256: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133107 s.nexuslauncher-10023 (10023) [004] d..2 82318.352301: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
133108    RenderThread-16607 (10023) [005] d..2 82318.352303: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
133109          <idle>-0     (-----) [004] d..1 82318.352311: cpu_idle: state=0 cpu_id=4
133110   Binder:8858_1-8871  ( 8858) [005] .... 82318.352314: binder_transaction_received: transaction=1572915
133111   Binder:8858_1-8871  ( 8858) [005] .... 82318.352370: binder_transaction: transaction=1572916 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
133112   Binder:8858_1-8871  ( 8858) [005] .... 82318.352374: binder_transaction_alloc_buf: transaction=1572916 data_size=52 offsets_size=8
133113   Binder:8858_1-8871  ( 8858) [005] d..2 82318.352381: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133114   Binder:8858_1-8871  ( 8858) [005] d..3 82318.352390: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133115   Binder:8858_1-8871  ( 8858) [005] .... 82318.352393: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
133116   Binder:8858_1-8871  ( 8858) [005] d..2 82318.352403: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
133117    RenderThread-16607 (10023) [005] .... 82318.352412: binder_transaction_received: transaction=1572916
133118    RenderThread-16607 (10023) [005] d..2 82318.353634: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
133119   Binder:8858_1-8871  ( 8858) [005] d..2 82318.353701: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133120          <idle>-0     (-----) [005] d..1 82318.353716: cpu_idle: state=0 cpu_id=5
133121          <idle>-0     (-----) [005] d.h2 82318.353729: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133122          <idle>-0     (-----) [005] d.h3 82318.353737: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
133123          <idle>-0     (-----) [005] dnh3 82318.353740: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133124          <idle>-0     (-----) [005] .n.1 82318.353748: cpu_idle: state=4294967295 cpu_id=5
133125          <idle>-0     (-----) [005] d..2 82318.353757: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133126    RenderThread-16607 (10023) [005] .... 82318.353910: binder_transaction: transaction=1572917 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
133127    RenderThread-16607 (10023) [005] .... 82318.353914: binder_transaction_alloc_buf: transaction=1572917 data_size=192 offsets_size=8
133128    RenderThread-16607 (10023) [005] ...2 82318.353921: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
133129    RenderThread-16607 (10023) [005] d..4 82318.353924: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133130    RenderThread-16607 (10023) [005] d..5 82318.353935: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133131    RenderThread-16607 (10023) [005] d..2 82318.353947: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
133132   Binder:8858_1-8871  ( 8858) [005] .... 82318.353957: binder_transaction_received: transaction=1572917
133133   Binder:8858_1-8871  ( 8858) [005] .... 82318.354072: binder_transaction: transaction=1572918 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
133134   Binder:8858_1-8871  ( 8858) [005] .... 82318.354076: binder_transaction_alloc_buf: transaction=1572918 data_size=68 offsets_size=0
133135   Binder:8858_1-8871  ( 8858) [005] d..2 82318.354079: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133136   Binder:8858_1-8871  ( 8858) [005] d..3 82318.354090: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133137   Binder:8858_1-8871  ( 8858) [005] .... 82318.354092: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
133138   Binder:8858_1-8871  ( 8858) [005] d..2 82318.354103: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
133139    RenderThread-16607 (10023) [005] .... 82318.354113: binder_transaction_received: transaction=1572918
133140    RenderThread-16607 (10023) [005] d..2 82318.354177: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
133141   Binder:8858_1-8871  ( 8858) [005] d..2 82318.354222: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133142          <idle>-0     (-----) [005] d..1 82318.354238: cpu_idle: state=0 cpu_id=5
133143          <idle>-0     (-----) [003] d.h2 82318.355076: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
133144          <idle>-0     (-----) [003] dnh3 82318.355092: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
133145          <idle>-0     (-----) [003] .n.1 82318.355102: cpu_idle: state=4294967295 cpu_id=3
133146          <idle>-0     (-----) [003] d..2 82318.355120: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
133147        DispSync-8879  ( 8858) [003] d..1 82318.355135: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133148        DispSync-8879  ( 8858) [003] d..2 82318.355151: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133149          <idle>-0     (-----) [001] .n.1 82318.355158: cpu_idle: state=4294967295 cpu_id=1
133150          <idle>-0     (-----) [001] d..2 82318.355173: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
133151          <idle>-0     (-----) [000] d.h3 82318.355182: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
133152        DispSync-8879  ( 8858) [003] d..2 82318.355194: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133153          <idle>-0     (-----) [003] d..2 82318.355199: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
133154          <idle>-0     (-----) [000] d.h4 82318.355206: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
133155          <idle>-0     (-----) [002] .n.1 82318.355212: cpu_idle: state=4294967295 cpu_id=2
133156          <idle>-0     (-----) [003] dn.3 82318.355215: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
133157   sfEventThread-8882  ( 8858) [001] d..3 82318.355217: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133158          <idle>-0     (-----) [000] ...1 82318.355224: cpu_idle: state=4294967295 cpu_id=0
133159          <idle>-0     (-----) [002] d..2 82318.355226: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
133160          <idle>-0     (-----) [003] d..2 82318.355227: 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
133161          <idle>-0     (-----) [000] d..1 82318.355230: cpu_idle: state=0 cpu_id=0
133162   sfEventThread-8882  ( 8858) [001] d..4 82318.355241: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133163     ksoftirqd/3-34    (   34) [003] d.s2 82318.355243: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
133164          <idle>-0     (-----) [000] .n.1 82318.355246: cpu_idle: state=4294967295 cpu_id=0
133165          <idle>-0     (-----) [000] d..2 82318.355262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
133166   sfEventThread-8882  ( 8858) [001] d..2 82318.355287: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133167     ksoftirqd/3-34    (   34) [003] d.s3 82318.355288: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
133168          <idle>-0     (-----) [001] d..1 82318.355304: cpu_idle: state=0 cpu_id=1
133169     ksoftirqd/3-34    (   34) [003] d..2 82318.355309: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
133170  kworker/u16:13-1147  ( 1147) [003] d..2 82318.355315: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
133171 kgsl_worker_thr-258   (  258) [002] d..2 82318.355329: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133172          <idle>-0     (-----) [002] d..1 82318.355343: cpu_idle: state=0 cpu_id=2
133173  kworker/u16:13-1147  ( 1147) [003] d..3 82318.355351: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
133174          <idle>-0     (-----) [002] .n.1 82318.355356: cpu_idle: state=4294967295 cpu_id=2
133175          <idle>-0     (-----) [002] d..2 82318.355373: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
133176  kworker/u16:15-1311  ( 1311) [002] d..2 82318.355576: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133177          <idle>-0     (-----) [002] d..1 82318.355593: cpu_idle: state=0 cpu_id=2
133178  kworker/u16:13-1147  ( 1147) [003] d..2 82318.355672: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133179  surfaceflinger-8858  ( 8858) [000] d..1 82318.355684: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133180          <idle>-0     (-----) [003] d..1 82318.355691: cpu_idle: state=0 cpu_id=3
133181  surfaceflinger-8858  ( 8858) [000] d..2 82318.355710: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133182          <idle>-0     (-----) [001] .n.1 82318.355716: cpu_idle: state=4294967295 cpu_id=1
133183          <idle>-0     (-----) [001] d..2 82318.355729: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
133184   sfEventThread-8882  ( 8858) [001] d..2 82318.355772: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133185          <idle>-0     (-----) [001] d..1 82318.355786: cpu_idle: state=0 cpu_id=1
133186  surfaceflinger-8858  ( 8858) [000] ...1 82318.355937: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
133187  surfaceflinger-8858  ( 8858) [000] ...1 82318.355947: tracing_mark_write: E|8858
133188  surfaceflinger-8858  ( 8858) [000] .... 82318.356018: binder_transaction: transaction=1572919 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
133189  surfaceflinger-8858  ( 8858) [000] .... 82318.356025: binder_transaction_alloc_buf: transaction=1572919 data_size=540 offsets_size=96
133190  surfaceflinger-8858  ( 8858) [000] ...2 82318.356054: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
133191  surfaceflinger-8858  ( 8858) [000] d..4 82318.356062: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
133192  surfaceflinger-8858  ( 8858) [000] d..5 82318.356089: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
133193          <idle>-0     (-----) [003] .n.1 82318.356096: cpu_idle: state=4294967295 cpu_id=3
133194          <idle>-0     (-----) [003] d..2 82318.356111: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
133195 [email protected]   (  619) [003] .... 82318.356124: binder_transaction_received: transaction=1572919
133196  surfaceflinger-8858  ( 8858) [000] d..2 82318.356136: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133197          <idle>-0     (-----) [000] d..1 82318.356154: cpu_idle: state=0 cpu_id=0
133198 [email protected]   (  619) [003] ...1 82318.356177: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
133199 [email protected]   (  619) [003] ...1 82318.356302: tracing_mark_write: B|619|HWCSession::PresentDisplay::
133200 [email protected]   (  619) [003] ...1 82318.356485: tracing_mark_write: B|619|HWDeviceDRM::Commit::
133201 [email protected]   (  619) [003] ...1 82318.356500: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
133202 [email protected]   (  619) [003] d..2 82318.357166: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133203 [email protected]   (  619) [003] d..3 82318.357200: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133204          <idle>-0     (-----) [001] .n.1 82318.357204: cpu_idle: state=4294967295 cpu_id=1
133205          <idle>-0     (-----) [001] d..2 82318.357216: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133206 [email protected]   (  619) [003] ...1 82318.357325: tracing_mark_write: E|619
133207 [email protected]   (  619) [003] ...1 82318.357333: tracing_mark_write: E|619
133208 [email protected]   (  619) [003] ...1 82318.357402: tracing_mark_write: E|619
133209 [email protected]   (  619) [003] ...1 82318.357453: tracing_mark_write: E|619
133210 [email protected]   (  619) [003] .... 82318.357472: binder_transaction: transaction=1572920 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
133211 [email protected]   (  619) [003] .... 82318.357478: binder_transaction_alloc_buf: transaction=1572920 data_size=576 offsets_size=112
133212 [email protected]   (  619) [003] d..2 82318.357504: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133213 [email protected]   (  619) [003] d..3 82318.357528: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133214 [email protected]   (  619) [003] .... 82318.357535: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
133215          <idle>-0     (-----) [000] .n.1 82318.357535: cpu_idle: state=4294967295 cpu_id=0
133216          <idle>-0     (-----) [000] d..2 82318.357545: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
133217  surfaceflinger-8858  ( 8858) [000] .... 82318.357558: binder_transaction_received: transaction=1572920
133218 [email protected]   (  619) [003] d..2 82318.357647: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133219          <idle>-0     (-----) [003] d..1 82318.357670: cpu_idle: state=0 cpu_id=3
133220 crtc_commit:111-321   (  321) [001] d..2 82318.357985: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
133221          <idle>-0     (-----) [001] d..1 82318.358002: cpu_idle: state=0 cpu_id=1
133222  surfaceflinger-8858  ( 8858) [000] d..2 82318.358061: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133223          <idle>-0     (-----) [000] d..1 82318.358080: cpu_idle: state=0 cpu_id=0
133224          <idle>-0     (-----) [000] d.s2 82318.358484: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133225          <idle>-0     (-----) [000] dns3 82318.358507: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133226          <idle>-0     (-----) [000] .n.1 82318.358526: cpu_idle: state=4294967295 cpu_id=0
133227          <idle>-0     (-----) [000] d..2 82318.358538: 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
133228     rcu_preempt-7     (    7) [000] d..2 82318.358550: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
133229     rcu_preempt-7     (    7) [000] d..3 82318.358571: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
133230     rcu_preempt-7     (    7) [000] d..2 82318.358586: 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
133231         rcuop/0-10    (   10) [000] d..2 82318.358598: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133232         rcuop/0-10    (   10) [000] d..3 82318.358613: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133233         rcuop/0-10    (   10) [000] d..2 82318.358624: 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
133234     rcu_preempt-7     (    7) [000] d..2 82318.358657: 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
133235          <idle>-0     (-----) [000] d..1 82318.358675: cpu_idle: state=0 cpu_id=0
133236          <idle>-0     (-----) [000] d.h5 82318.363161: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
133237          <idle>-0     (-----) [000] dnh6 82318.363179: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
133238          <idle>-0     (-----) [000] dnh5 82318.363186: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133239          <idle>-0     (-----) [000] dnh6 82318.363200: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133240          <idle>-0     (-----) [001] .n.1 82318.363208: cpu_idle: state=4294967295 cpu_id=1
133241          <idle>-0     (-----) [000] .n.1 82318.363216: cpu_idle: state=4294967295 cpu_id=0
133242          <idle>-0     (-----) [001] d..2 82318.363223: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133243          <idle>-0     (-----) [000] d..2 82318.363233: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133244  crtc_event:111-322   (  322) [000] d..2 82318.363270: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133245          <idle>-0     (-----) [000] d..2 82318.363275: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
133246          <idle>-0     (-----) [000] dn.3 82318.363288: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
133247          <idle>-0     (-----) [000] d..2 82318.363297: 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
133248     ksoftirqd/0-3     (    3) [000] d..2 82318.363322: 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
133249          <idle>-0     (-----) [000] d..1 82318.363333: cpu_idle: state=0 cpu_id=0
133250 crtc_commit:111-321   (  321) [001] d..2 82318.363379: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
133251          <idle>-0     (-----) [001] d..1 82318.363389: cpu_idle: state=0 cpu_id=1
133252          <idle>-0     (-----) [000] d.s2 82318.365138: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133253          <idle>-0     (-----) [001] d.s3 82318.365146: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
133254          <idle>-0     (-----) [000] dns3 82318.365158: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133255          <idle>-0     (-----) [000] dns3 82318.365171: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
133256          <idle>-0     (-----) [001] dns4 82318.365174: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
133257          <idle>-0     (-----) [001] .n.1 82318.365197: cpu_idle: state=4294967295 cpu_id=1
133258          <idle>-0     (-----) [001] d..2 82318.365212: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133259          <idle>-0     (-----) [000] dns4 82318.365222: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
133260  crtc_event:111-322   (  322) [001] d..2 82318.365237: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
133261          <idle>-0     (-----) [000] .n.1 82318.365243: cpu_idle: state=4294967295 cpu_id=0
133262          <idle>-0     (-----) [000] d..2 82318.365255: 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
133263     rcu_preempt-7     (    7) [000] d..2 82318.365294: 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
133264          <idle>-0     (-----) [000] d..1 82318.365335: cpu_idle: state=0 cpu_id=0
133265          <idle>-0     (-----) [000] ...1 82318.365351: cpu_idle: state=4294967295 cpu_id=0
133266          <idle>-0     (-----) [000] d..1 82318.365356: cpu_idle: state=0 cpu_id=0
133267  kworker/u16:13-1147  ( 1147) [001] d..2 82318.365422: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133268          <idle>-0     (-----) [001] d..1 82318.365440: cpu_idle: state=0 cpu_id=1
133269          <idle>-0     (-----) [000] d.h5 82318.365492: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133270          <idle>-0     (-----) [000] d.h6 82318.365513: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133271          <idle>-0     (-----) [001] .n.1 82318.365520: cpu_idle: state=4294967295 cpu_id=1
133272          <idle>-0     (-----) [000] ...1 82318.365528: cpu_idle: state=4294967295 cpu_id=0
133273          <idle>-0     (-----) [001] d..2 82318.365533: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133274          <idle>-0     (-----) [000] d..1 82318.365535: cpu_idle: state=0 cpu_id=0
133275 crtc_commit:111-321   (  321) [001] d..2 82318.365608: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133276          <idle>-0     (-----) [001] d..1 82318.365624: cpu_idle: state=0 cpu_id=1
133277          <idle>-0     (-----) [000] d.h5 82318.365783: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
133278          <idle>-0     (-----) [000] d.h6 82318.365800: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
133279          <idle>-0     (-----) [001] .n.1 82318.365806: cpu_idle: state=4294967295 cpu_id=1
133280          <idle>-0     (-----) [000] ...1 82318.365815: cpu_idle: state=4294967295 cpu_id=0
133281          <idle>-0     (-----) [001] d..2 82318.365818: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133282          <idle>-0     (-----) [000] d..1 82318.365820: cpu_idle: state=0 cpu_id=0
133283  crtc_event:111-322   (  322) [001] d..2 82318.365849: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133284          <idle>-0     (-----) [001] d..1 82318.365861: cpu_idle: state=0 cpu_id=1
133285          <idle>-0     (-----) [003] d.h2 82318.367542: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
133286          <idle>-0     (-----) [003] dnh3 82318.367560: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
133287          <idle>-0     (-----) [003] .n.1 82318.367571: cpu_idle: state=4294967295 cpu_id=3
133288          <idle>-0     (-----) [003] d..2 82318.367584: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
133289        DispSync-8879  ( 8858) [003] d..1 82318.367607: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
133290        DispSync-8879  ( 8858) [003] d..2 82318.367626: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
133291          <idle>-0     (-----) [002] .n.1 82318.367633: cpu_idle: state=4294967295 cpu_id=2
133292          <idle>-0     (-----) [002] d..2 82318.367647: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
133293        DispSync-8879  ( 8858) [003] d..2 82318.367669: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133294          <idle>-0     (-----) [003] d..1 82318.367685: cpu_idle: state=0 cpu_id=3
133295  appEventThread-8881  ( 8858) [002] d..3 82318.367694: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133296          <idle>-0     (-----) [004] dnh2 82318.367723: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133297          <idle>-0     (-----) [004] .n.1 82318.367727: cpu_idle: state=4294967295 cpu_id=4
133298          <idle>-0     (-----) [004] d..2 82318.367735: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
133299  appEventThread-8881  ( 8858) [002] d..2 82318.367760: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133300          <idle>-0     (-----) [002] d..1 82318.367778: cpu_idle: state=0 cpu_id=2
133301 s.nexuslauncher-10023 (10023) [004] .... 82318.367930: binder_transaction: transaction=1572921 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
133302 s.nexuslauncher-10023 (10023) [004] .... 82318.367935: binder_transaction_alloc_buf: transaction=1572921 data_size=80 offsets_size=0
133303 s.nexuslauncher-10023 (10023) [004] d..4 82318.367940: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
133304          <idle>-0     (-----) [000] dnh2 82318.368007: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
133305          <idle>-0     (-----) [000] .n.1 82318.368013: cpu_idle: state=4294967295 cpu_id=0
133306 s.nexuslauncher-10023 (10023) [004] d..3 82318.368027: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133307          <idle>-0     (-----) [000] d..2 82318.368029: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
133308   Binder:8858_1-8871  ( 8858) [000] .... 82318.368040: binder_transaction_received: transaction=1572921
133309 s.nexuslauncher-10023 (10023) [004] d..4 82318.368043: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133310          <idle>-0     (-----) [005] .n.1 82318.368050: cpu_idle: state=4294967295 cpu_id=5
133311          <idle>-0     (-----) [005] d..2 82318.368062: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133312   Binder:8858_1-8871  ( 8858) [000] d..1 82318.368084: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
133313    RenderThread-16607 (10023) [005] d..2 82318.368104: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133314   Binder:8858_1-8871  ( 8858) [000] d..2 82318.368104: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
133315          <idle>-0     (-----) [002] .n.1 82318.368111: cpu_idle: state=4294967295 cpu_id=2
133316          <idle>-0     (-----) [005] d..1 82318.368115: cpu_idle: state=0 cpu_id=5
133317          <idle>-0     (-----) [002] d..2 82318.368125: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
133318   Binder:8858_1-8871  ( 8858) [000] d..2 82318.368162: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133319  appEventThread-8881  ( 8858) [002] d..2 82318.368172: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133320          <idle>-0     (-----) [000] d..1 82318.368180: cpu_idle: state=0 cpu_id=0
133321          <idle>-0     (-----) [002] d..1 82318.368185: cpu_idle: state=0 cpu_id=2
133322 s.nexuslauncher-10023 (10023) [004] d..3 82318.368342: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133323 s.nexuslauncher-10023 (10023) [004] d..4 82318.368360: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133324          <idle>-0     (-----) [005] .n.1 82318.368366: cpu_idle: state=4294967295 cpu_id=5
133325          <idle>-0     (-----) [005] d..2 82318.368375: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133326 s.nexuslauncher-10023 (10023) [004] d..2 82318.368387: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
133327          <idle>-0     (-----) [004] d..1 82318.368404: cpu_idle: state=0 cpu_id=4
133328    RenderThread-16607 (10023) [005] d.s2 82318.368472: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
133329          <idle>-0     (-----) [000] dnh2 82318.368516: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
133330          <idle>-0     (-----) [000] .n.1 82318.368524: cpu_idle: state=4294967295 cpu_id=0
133331          <idle>-0     (-----) [000] d..2 82318.368540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
133332    RenderThread-16607 (10023) [005] d..1 82318.368606: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133333    RenderThread-16607 (10023) [005] d..2 82318.368620: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133334          <idle>-0     (-----) [004] .n.1 82318.368628: cpu_idle: state=4294967295 cpu_id=4
133335  kworker/u16:13-1147  ( 1147) [000] d..2 82318.368633: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133336          <idle>-0     (-----) [004] d..2 82318.368638: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
133337          <idle>-0     (-----) [000] d..1 82318.368643: cpu_idle: state=0 cpu_id=0
133338    RenderThread-16607 (10023) [005] .... 82318.368672: binder_transaction: transaction=1572922 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
133339    RenderThread-16607 (10023) [005] .... 82318.368676: binder_transaction_alloc_buf: transaction=1572922 data_size=104 offsets_size=0
133340    RenderThread-16607 (10023) [005] ...2 82318.368680: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
133341    RenderThread-16607 (10023) [005] d..4 82318.368684: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
133342    RenderThread-16607 (10023) [005] d..5 82318.368704: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133343 s.nexuslauncher-10023 (10023) [004] d..2 82318.368749: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
133344    RenderThread-16607 (10023) [005] d..2 82318.368751: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
133345          <idle>-0     (-----) [004] d..1 82318.368760: cpu_idle: state=0 cpu_id=4
133346   Binder:8858_1-8871  ( 8858) [005] .... 82318.368762: binder_transaction_received: transaction=1572922
133347   Binder:8858_1-8871  ( 8858) [005] .... 82318.368820: binder_transaction: transaction=1572923 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
133348   Binder:8858_1-8871  ( 8858) [005] .... 82318.368824: binder_transaction_alloc_buf: transaction=1572923 data_size=52 offsets_size=8
133349   Binder:8858_1-8871  ( 8858) [005] d..2 82318.368830: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133350   Binder:8858_1-8871  ( 8858) [005] d..3 82318.368841: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133351   Binder:8858_1-8871  ( 8858) [005] .... 82318.368844: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
133352   Binder:8858_1-8871  ( 8858) [005] d..2 82318.368854: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
133353    RenderThread-16607 (10023) [005] .... 82318.368862: binder_transaction_received: transaction=1572923
133354    RenderThread-16607 (10023) [005] d..2 82318.370098: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
133355   Binder:8858_1-8871  ( 8858) [005] d..2 82318.370166: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133356          <idle>-0     (-----) [005] d..1 82318.370182: cpu_idle: state=0 cpu_id=5
133357          <idle>-0     (-----) [005] d.h2 82318.370195: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133358          <idle>-0     (-----) [005] d.h3 82318.370203: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
133359          <idle>-0     (-----) [005] dnh3 82318.370207: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133360          <idle>-0     (-----) [005] .n.1 82318.370214: cpu_idle: state=4294967295 cpu_id=5
133361          <idle>-0     (-----) [005] d..2 82318.370223: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133362    RenderThread-16607 (10023) [005] .... 82318.370378: binder_transaction: transaction=1572924 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
133363    RenderThread-16607 (10023) [005] .... 82318.370382: binder_transaction_alloc_buf: transaction=1572924 data_size=192 offsets_size=8
133364    RenderThread-16607 (10023) [005] ...2 82318.370389: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
133365    RenderThread-16607 (10023) [005] d..4 82318.370392: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133366    RenderThread-16607 (10023) [005] d..5 82318.370404: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133367    RenderThread-16607 (10023) [005] d..2 82318.370416: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
133368   Binder:8858_1-8871  ( 8858) [005] .... 82318.370427: binder_transaction_received: transaction=1572924
133369   Binder:8858_1-8871  ( 8858) [005] .... 82318.370546: binder_transaction: transaction=1572925 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
133370   Binder:8858_1-8871  ( 8858) [005] .... 82318.370550: binder_transaction_alloc_buf: transaction=1572925 data_size=68 offsets_size=0
133371   Binder:8858_1-8871  ( 8858) [005] d..2 82318.370553: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133372   Binder:8858_1-8871  ( 8858) [005] d..3 82318.370564: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133373   Binder:8858_1-8871  ( 8858) [005] .... 82318.370567: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
133374   Binder:8858_1-8871  ( 8858) [005] d..2 82318.370598: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
133375    RenderThread-16607 (10023) [005] .... 82318.370608: binder_transaction_received: transaction=1572925
133376    RenderThread-16607 (10023) [005] d..2 82318.370679: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133377          <idle>-0     (-----) [005] d..1 82318.370696: cpu_idle: state=0 cpu_id=5
133378          <idle>-0     (-----) [003] d.h2 82318.371544: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
133379          <idle>-0     (-----) [003] dnh3 82318.371558: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
133380          <idle>-0     (-----) [003] .n.1 82318.371568: cpu_idle: state=4294967295 cpu_id=3
133381          <idle>-0     (-----) [003] d..2 82318.371581: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
133382        DispSync-8879  ( 8858) [003] d..1 82318.371595: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133383        DispSync-8879  ( 8858) [003] d..2 82318.371609: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133384          <idle>-0     (-----) [001] .n.1 82318.371615: cpu_idle: state=4294967295 cpu_id=1
133385          <idle>-0     (-----) [001] d..2 82318.371629: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
133386        DispSync-8879  ( 8858) [003] d..2 82318.371644: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133387          <idle>-0     (-----) [000] d.h3 82318.371652: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
133388          <idle>-0     (-----) [003] d..1 82318.371659: cpu_idle: state=0 cpu_id=3
133389          <idle>-0     (-----) [000] d.h4 82318.371673: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
133390   sfEventThread-8882  ( 8858) [001] d..3 82318.371673: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133391          <idle>-0     (-----) [002] .n.1 82318.371679: cpu_idle: state=4294967295 cpu_id=2
133392          <idle>-0     (-----) [000] ...1 82318.371690: cpu_idle: state=4294967295 cpu_id=0
133393          <idle>-0     (-----) [002] d..2 82318.371692: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
133394   sfEventThread-8882  ( 8858) [001] d..4 82318.371696: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133395          <idle>-0     (-----) [000] d..2 82318.371705: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
133396   sfEventThread-8882  ( 8858) [001] d..2 82318.371748: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133397 kgsl_worker_thr-258   (  258) [002] d..2 82318.371750: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
133398          <idle>-0     (-----) [001] d..1 82318.371764: cpu_idle: state=0 cpu_id=1
133399 kgsl_worker_thr-258   (  258) [002] d..3 82318.371809: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
133400          <idle>-0     (-----) [001] .n.1 82318.371815: cpu_idle: state=4294967295 cpu_id=1
133401  surfaceflinger-8858  ( 8858) [000] d.s1 82318.371817: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
133402          <idle>-0     (-----) [001] d..2 82318.371833: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
133403  surfaceflinger-8858  ( 8858) [000] d.s2 82318.371874: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133404 kgsl_worker_thr-258   (  258) [002] d..2 82318.371980: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
133405     rcu_preempt-7     (    7) [002] d..2 82318.371992: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
133406     rcu_preempt-7     (    7) [002] d..3 82318.372040: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
133407     rcu_preempt-7     (    7) [002] d..2 82318.372054: 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
133408         rcuop/0-10    (   10) [002] d..2 82318.372089: 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
133409          <idle>-0     (-----) [002] d..1 82318.372108: cpu_idle: state=0 cpu_id=2
133410  kworker/u16:13-1147  ( 1147) [001] d..2 82318.372123: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133411          <idle>-0     (-----) [001] d..1 82318.372139: cpu_idle: state=0 cpu_id=1
133412  surfaceflinger-8858  ( 8858) [000] d..2 82318.372231: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
133413  surfaceflinger-8858  ( 8858) [000] d..3 82318.372258: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
133414          <idle>-0     (-----) [002] .n.1 82318.372265: cpu_idle: state=4294967295 cpu_id=2
133415          <idle>-0     (-----) [002] d..2 82318.372281: 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
133416         rcuop/0-10    (   10) [002] d..2 82318.372287: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133417  surfaceflinger-8858  ( 8858) [000] d..1 82318.372294: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133418         rcuop/0-10    (   10) [002] d..3 82318.372306: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133419  surfaceflinger-8858  ( 8858) [000] d..2 82318.372318: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133420         rcuop/0-10    (   10) [002] d..2 82318.372318: 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
133421          <idle>-0     (-----) [001] .n.1 82318.372324: cpu_idle: state=4294967295 cpu_id=1
133422          <idle>-0     (-----) [001] d..2 82318.372336: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
133423     rcu_preempt-7     (    7) [002] d..2 82318.372345: 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
133424          <idle>-0     (-----) [002] d..1 82318.372358: cpu_idle: state=0 cpu_id=2
133425   sfEventThread-8882  ( 8858) [001] d..2 82318.372384: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133426          <idle>-0     (-----) [001] d..1 82318.372401: cpu_idle: state=0 cpu_id=1
133427  surfaceflinger-8858  ( 8858) [000] ...1 82318.372541: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
133428  surfaceflinger-8858  ( 8858) [000] ...1 82318.372550: tracing_mark_write: E|8858
133429  surfaceflinger-8858  ( 8858) [000] .... 82318.372620: binder_transaction: transaction=1572926 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
133430  surfaceflinger-8858  ( 8858) [000] .... 82318.372627: binder_transaction_alloc_buf: transaction=1572926 data_size=540 offsets_size=96
133431  surfaceflinger-8858  ( 8858) [000] ...2 82318.372657: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
133432  surfaceflinger-8858  ( 8858) [000] d..4 82318.372665: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
133433  surfaceflinger-8858  ( 8858) [000] d..5 82318.372690: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
133434          <idle>-0     (-----) [003] .n.1 82318.372696: cpu_idle: state=4294967295 cpu_id=3
133435          <idle>-0     (-----) [003] d..2 82318.372710: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
133436 [email protected]   (  619) [003] .... 82318.372722: binder_transaction_received: transaction=1572926
133437  surfaceflinger-8858  ( 8858) [000] d..2 82318.372734: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133438          <idle>-0     (-----) [000] d..1 82318.372760: cpu_idle: state=0 cpu_id=0
133439 [email protected]   (  619) [003] ...1 82318.372775: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
133440 [email protected]   (  619) [003] ...1 82318.372893: tracing_mark_write: B|619|HWCSession::PresentDisplay::
133441 [email protected]   (  619) [003] ...1 82318.373081: tracing_mark_write: B|619|HWDeviceDRM::Commit::
133442 [email protected]   (  619) [003] ...1 82318.373097: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
133443          <idle>-0     (-----) [001] ...1 82318.373538: cpu_idle: state=4294967295 cpu_id=1
133444          <idle>-0     (-----) [001] d..1 82318.373543: cpu_idle: state=0 cpu_id=1
133445 [email protected]   (  619) [003] d..2 82318.373757: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133446 [email protected]   (  619) [003] d..3 82318.373790: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133447          <idle>-0     (-----) [001] .n.1 82318.373795: cpu_idle: state=4294967295 cpu_id=1
133448          <idle>-0     (-----) [001] d..2 82318.373807: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133449 [email protected]   (  619) [003] ...1 82318.373914: tracing_mark_write: E|619
133450 [email protected]   (  619) [003] ...1 82318.373922: tracing_mark_write: E|619
133451 [email protected]   (  619) [003] ...1 82318.373988: tracing_mark_write: E|619
133452 [email protected]   (  619) [003] ...1 82318.374037: tracing_mark_write: E|619
133453 [email protected]   (  619) [003] .... 82318.374057: binder_transaction: transaction=1572927 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
133454 [email protected]   (  619) [003] .... 82318.374063: binder_transaction_alloc_buf: transaction=1572927 data_size=576 offsets_size=112
133455 [email protected]   (  619) [003] d..2 82318.374089: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133456 [email protected]   (  619) [003] d..3 82318.374112: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133457 [email protected]   (  619) [003] .... 82318.374118: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
133458          <idle>-0     (-----) [000] .n.1 82318.374120: cpu_idle: state=4294967295 cpu_id=0
133459          <idle>-0     (-----) [000] d..2 82318.374134: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
133460  surfaceflinger-8858  ( 8858) [000] .... 82318.374145: binder_transaction_received: transaction=1572927
133461 [email protected]   (  619) [003] d..2 82318.374227: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133462          <idle>-0     (-----) [003] d..1 82318.374251: cpu_idle: state=0 cpu_id=3
133463 crtc_commit:111-321   (  321) [001] d..2 82318.374577: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
133464          <idle>-0     (-----) [001] d..1 82318.374596: cpu_idle: state=0 cpu_id=1
133465  surfaceflinger-8858  ( 8858) [000] d..2 82318.374649: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133466          <idle>-0     (-----) [000] d..1 82318.374675: cpu_idle: state=0 cpu_id=0
133467          <idle>-0     (-----) [002] d.s2 82318.378476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133468          <idle>-0     (-----) [002] dns3 82318.378494: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133469          <idle>-0     (-----) [002] dns3 82318.378501: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
133470          <idle>-0     (-----) [002] dns4 82318.378538: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
133471          <idle>-0     (-----) [002] .n.1 82318.378562: cpu_idle: state=4294967295 cpu_id=2
133472          <idle>-0     (-----) [002] d..2 82318.378578: 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
133473     rcu_preempt-7     (    7) [002] d..2 82318.378591: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
133474     rcu_preempt-7     (    7) [002] d..3 82318.378607: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
133475     rcu_preempt-7     (    7) [002] d..2 82318.378619: 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
133476         rcuop/0-10    (   10) [002] d..2 82318.378627: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133477         rcuop/0-10    (   10) [002] d..3 82318.378642: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133478         rcuop/0-10    (   10) [002] d..2 82318.378652: 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
133479     rcu_preempt-7     (    7) [002] d..2 82318.378665: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
133480  kworker/u16:13-1147  ( 1147) [002] d..2 82318.378788: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133481          <idle>-0     (-----) [002] d..1 82318.378806: cpu_idle: state=0 cpu_id=2
133482          <idle>-0     (-----) [000] d.h5 82318.379627: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
133483          <idle>-0     (-----) [000] d.h6 82318.379653: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
133484          <idle>-0     (-----) [000] d.h5 82318.379659: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133485          <idle>-0     (-----) [001] .n.1 82318.379660: cpu_idle: state=4294967295 cpu_id=1
133486          <idle>-0     (-----) [001] d..2 82318.379674: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133487          <idle>-0     (-----) [000] dnh6 82318.379690: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
133488          <idle>-0     (-----) [000] .n.1 82318.379706: cpu_idle: state=4294967295 cpu_id=0
133489  crtc_event:111-322   (  322) [001] d..2 82318.379717: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133490          <idle>-0     (-----) [000] d..2 82318.379722: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133491          <idle>-0     (-----) [001] d..1 82318.379731: cpu_idle: state=0 cpu_id=1
133492 crtc_commit:111-321   (  321) [000] d..2 82318.379882: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
133493          <idle>-0     (-----) [000] d..1 82318.379897: cpu_idle: state=0 cpu_id=0
133494          <idle>-0     (-----) [000] d.s3 82318.381813: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
133495          <idle>-0     (-----) [000] d.s4 82318.381832: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
133496          <idle>-0     (-----) [001] .n.1 82318.381838: cpu_idle: state=4294967295 cpu_id=1
133497          <idle>-0     (-----) [000] d.s3 82318.381843: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
133498          <idle>-0     (-----) [001] d..2 82318.381852: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133499          <idle>-0     (-----) [000] dns4 82318.381862: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
133500  crtc_event:111-322   (  322) [001] d..2 82318.381889: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133501          <idle>-0     (-----) [001] d..1 82318.381900: cpu_idle: state=0 cpu_id=1
133502          <idle>-0     (-----) [000] dnH5 82318.381949: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
133503          <idle>-0     (-----) [000] dnH6 82318.381973: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133504          <idle>-0     (-----) [001] .n.1 82318.381979: cpu_idle: state=4294967295 cpu_id=1
133505          <idle>-0     (-----) [001] d..2 82318.381991: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133506          <idle>-0     (-----) [000] .n.1 82318.381999: cpu_idle: state=4294967295 cpu_id=0
133507          <idle>-0     (-----) [000] d..2 82318.382011: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
133508     kworker/0:1-25262 (25262) [000] d..2 82318.382061: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133509 crtc_commit:111-321   (  321) [001] d..2 82318.382065: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133510          <idle>-0     (-----) [000] d..1 82318.382079: cpu_idle: state=0 cpu_id=0
133511          <idle>-0     (-----) [001] d..1 82318.382080: cpu_idle: state=0 cpu_id=1
133512          <idle>-0     (-----) [000] d.h5 82318.382253: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
133513          <idle>-0     (-----) [000] d.h6 82318.382271: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
133514          <idle>-0     (-----) [001] .n.1 82318.382278: cpu_idle: state=4294967295 cpu_id=1
133515          <idle>-0     (-----) [000] ...1 82318.382291: cpu_idle: state=4294967295 cpu_id=0
133516          <idle>-0     (-----) [001] d..2 82318.382292: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133517          <idle>-0     (-----) [000] d..1 82318.382298: cpu_idle: state=0 cpu_id=0
133518  crtc_event:111-322   (  322) [001] d..2 82318.382321: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133519          <idle>-0     (-----) [001] d..1 82318.382333: cpu_idle: state=0 cpu_id=1
133520          <idle>-0     (-----) [003] d.h2 82318.384005: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
133521          <idle>-0     (-----) [003] dnh3 82318.384027: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
133522          <idle>-0     (-----) [003] .n.1 82318.384037: cpu_idle: state=4294967295 cpu_id=3
133523          <idle>-0     (-----) [003] d..2 82318.384051: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
133524        DispSync-8879  ( 8858) [003] d..1 82318.384073: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
133525        DispSync-8879  ( 8858) [003] d..2 82318.384092: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
133526          <idle>-0     (-----) [002] .n.1 82318.384100: cpu_idle: state=4294967295 cpu_id=2
133527          <idle>-0     (-----) [002] d..2 82318.384115: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
133528        DispSync-8879  ( 8858) [003] d..2 82318.384131: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133529          <idle>-0     (-----) [003] d..1 82318.384148: cpu_idle: state=0 cpu_id=3
133530  appEventThread-8881  ( 8858) [002] d..3 82318.384162: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133531          <idle>-0     (-----) [004] dnh2 82318.384194: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133532          <idle>-0     (-----) [004] .n.1 82318.384199: cpu_idle: state=4294967295 cpu_id=4
133533          <idle>-0     (-----) [004] d..2 82318.384206: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
133534  appEventThread-8881  ( 8858) [002] d..2 82318.384231: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133535          <idle>-0     (-----) [002] d..1 82318.384244: cpu_idle: state=0 cpu_id=2
133536 s.nexuslauncher-10023 (10023) [004] .... 82318.384397: binder_transaction: transaction=1572928 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
133537 s.nexuslauncher-10023 (10023) [004] .... 82318.384402: binder_transaction_alloc_buf: transaction=1572928 data_size=80 offsets_size=0
133538 s.nexuslauncher-10023 (10023) [004] d..4 82318.384407: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
133539 s.nexuslauncher-10023 (10023) [004] d.h5 82318.384471: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
133540          <idle>-0     (-----) [000] dnh2 82318.384476: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
133541          <idle>-0     (-----) [000] .n.1 82318.384483: cpu_idle: state=4294967295 cpu_id=0
133542          <idle>-0     (-----) [000] d..2 82318.384497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
133543          <idle>-0     (-----) [003] dnh2 82318.384499: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
133544          <idle>-0     (-----) [003] .n.1 82318.384506: cpu_idle: state=4294967295 cpu_id=3
133545   Binder:8858_1-8871  ( 8858) [000] .... 82318.384508: binder_transaction_received: transaction=1572928
133546 s.nexuslauncher-10023 (10023) [004] d..3 82318.384513: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133547          <idle>-0     (-----) [003] d..2 82318.384518: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
133548 s.nexuslauncher-10023 (10023) [004] d..4 82318.384530: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133549          <idle>-0     (-----) [005] .n.1 82318.384535: cpu_idle: state=4294967295 cpu_id=5
133550          <idle>-0     (-----) [005] d..2 82318.384548: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133551   Binder:8858_1-8871  ( 8858) [000] d..1 82318.384552: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
133552         sugov:0-576   (  576) [003] .... 82318.384559: clk_set_rate: pwrcl_clk 825600000
133553   Binder:8858_1-8871  ( 8858) [000] d..2 82318.384572: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
133554          <idle>-0     (-----) [002] .n.1 82318.384579: cpu_idle: state=4294967295 cpu_id=2
133555         sugov:0-576   (  576) [003] .... 82318.384581: clk_set_rate: cpu3_pwrcl_clk 748800000
133556    RenderThread-16607 (10023) [005] d..2 82318.384583: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133557          <idle>-0     (-----) [002] d..2 82318.384589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
133558          <idle>-0     (-----) [005] d..1 82318.384591: cpu_idle: state=0 cpu_id=5
133559         sugov:0-576   (  576) [003] .... 82318.384591: clk_set_rate: cpu2_pwrcl_clk 748800000
133560         sugov:0-576   (  576) [003] .... 82318.384600: clk_set_rate: cpu1_pwrcl_clk 748800000
133561         sugov:0-576   (  576) [003] .... 82318.384609: clk_set_rate: cpu0_pwrcl_clk 825600000
133562         sugov:0-576   (  576) [003] .... 82318.384619: cpu_frequency: state=825600 cpu_id=0
133563   Binder:8858_1-8871  ( 8858) [000] d..2 82318.384630: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133564  appEventThread-8881  ( 8858) [002] d..2 82318.384641: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133565         sugov:0-576   (  576) [003] .... 82318.384646: cpu_frequency: state=825600 cpu_id=1
133566          <idle>-0     (-----) [000] d..1 82318.384650: cpu_idle: state=0 cpu_id=0
133567          <idle>-0     (-----) [002] d..1 82318.384650: cpu_idle: state=0 cpu_id=2
133568         sugov:0-576   (  576) [003] .... 82318.384651: cpu_frequency: state=825600 cpu_id=2
133569         sugov:0-576   (  576) [003] .... 82318.384656: cpu_frequency: state=825600 cpu_id=3
133570         sugov:0-576   (  576) [003] d..2 82318.384688: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133571          <idle>-0     (-----) [003] d..1 82318.384703: cpu_idle: state=0 cpu_id=3
133572 s.nexuslauncher-10023 (10023) [004] d..3 82318.384830: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133573 s.nexuslauncher-10023 (10023) [004] d..4 82318.384850: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133574          <idle>-0     (-----) [005] .n.1 82318.384855: cpu_idle: state=4294967295 cpu_id=5
133575          <idle>-0     (-----) [005] d..2 82318.384862: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133576 s.nexuslauncher-10023 (10023) [004] d..2 82318.384875: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
133577          <idle>-0     (-----) [004] d..1 82318.384892: cpu_idle: state=0 cpu_id=4
133578          <idle>-0     (-----) [002] d.s2 82318.385139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133579    RenderThread-16607 (10023) [005] d..1 82318.385148: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133580          <idle>-0     (-----) [002] dns3 82318.385160: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133581    RenderThread-16607 (10023) [005] d..2 82318.385163: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133582          <idle>-0     (-----) [004] .n.1 82318.385170: cpu_idle: state=4294967295 cpu_id=4
133583          <idle>-0     (-----) [002] .n.1 82318.385173: cpu_idle: state=4294967295 cpu_id=2
133584          <idle>-0     (-----) [004] d..2 82318.385181: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
133585          <idle>-0     (-----) [002] d..2 82318.385183: 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
133586    RenderThread-16607 (10023) [005] .... 82318.385215: binder_transaction: transaction=1572929 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
133587    RenderThread-16607 (10023) [005] .... 82318.385220: binder_transaction_alloc_buf: transaction=1572929 data_size=104 offsets_size=0
133588     rcu_preempt-7     (    7) [002] d..2 82318.385220: 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
133589    RenderThread-16607 (10023) [005] ...2 82318.385224: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
133590    RenderThread-16607 (10023) [005] d..4 82318.385227: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
133591          <idle>-0     (-----) [002] d..1 82318.385234: cpu_idle: state=0 cpu_id=2
133592    RenderThread-16607 (10023) [005] d..5 82318.385247: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133593 s.nexuslauncher-10023 (10023) [004] d..2 82318.385294: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
133594    RenderThread-16607 (10023) [005] d..2 82318.385296: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
133595          <idle>-0     (-----) [004] d..1 82318.385304: cpu_idle: state=0 cpu_id=4
133596   Binder:8858_1-8871  ( 8858) [005] .... 82318.385308: binder_transaction_received: transaction=1572929
133597   Binder:8858_1-8871  ( 8858) [005] .... 82318.385368: binder_transaction: transaction=1572930 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
133598   Binder:8858_1-8871  ( 8858) [005] .... 82318.385372: binder_transaction_alloc_buf: transaction=1572930 data_size=52 offsets_size=8
133599   Binder:8858_1-8871  ( 8858) [005] d..2 82318.385379: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133600   Binder:8858_1-8871  ( 8858) [005] d..3 82318.385389: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133601   Binder:8858_1-8871  ( 8858) [005] .... 82318.385392: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
133602   Binder:8858_1-8871  ( 8858) [005] d..2 82318.385402: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
133603    RenderThread-16607 (10023) [005] .... 82318.385410: binder_transaction_received: transaction=1572930
133604    RenderThread-16607 (10023) [005] d..2 82318.386688: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
133605   Binder:8858_1-8871  ( 8858) [005] d..2 82318.386757: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133606          <idle>-0     (-----) [005] d..1 82318.386772: cpu_idle: state=0 cpu_id=5
133607          <idle>-0     (-----) [005] d.h2 82318.386785: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133608          <idle>-0     (-----) [005] d.h3 82318.386793: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
133609          <idle>-0     (-----) [005] dnh3 82318.386797: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133610          <idle>-0     (-----) [005] .n.1 82318.386803: cpu_idle: state=4294967295 cpu_id=5
133611          <idle>-0     (-----) [005] d..2 82318.386812: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133612    RenderThread-16607 (10023) [005] .... 82318.386968: binder_transaction: transaction=1572931 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
133613    RenderThread-16607 (10023) [005] .... 82318.386973: binder_transaction_alloc_buf: transaction=1572931 data_size=192 offsets_size=8
133614    RenderThread-16607 (10023) [005] ...2 82318.386980: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
133615    RenderThread-16607 (10023) [005] d..4 82318.386982: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133616    RenderThread-16607 (10023) [005] d..5 82318.386994: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133617    RenderThread-16607 (10023) [005] d..2 82318.387006: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
133618   Binder:8858_1-8871  ( 8858) [005] .... 82318.387016: binder_transaction_received: transaction=1572931
133619   Binder:8858_1-8871  ( 8858) [005] .... 82318.387133: binder_transaction: transaction=1572932 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
133620   Binder:8858_1-8871  ( 8858) [005] .... 82318.387137: binder_transaction_alloc_buf: transaction=1572932 data_size=68 offsets_size=0
133621   Binder:8858_1-8871  ( 8858) [005] d..2 82318.387140: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133622   Binder:8858_1-8871  ( 8858) [005] d..3 82318.387151: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133623   Binder:8858_1-8871  ( 8858) [005] .... 82318.387153: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
133624   Binder:8858_1-8871  ( 8858) [005] d..2 82318.387185: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
133625    RenderThread-16607 (10023) [005] .... 82318.387194: binder_transaction_received: transaction=1572932
133626    RenderThread-16607 (10023) [005] d..2 82318.387267: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133627          <idle>-0     (-----) [005] d..1 82318.387283: cpu_idle: state=0 cpu_id=5
133628          <idle>-0     (-----) [003] d.h2 82318.388009: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
133629          <idle>-0     (-----) [003] dnh3 82318.388024: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
133630          <idle>-0     (-----) [003] .n.1 82318.388034: cpu_idle: state=4294967295 cpu_id=3
133631          <idle>-0     (-----) [003] d..2 82318.388045: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
133632        DispSync-8879  ( 8858) [003] d..1 82318.388062: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133633        DispSync-8879  ( 8858) [003] d..2 82318.388077: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133634          <idle>-0     (-----) [001] .n.1 82318.388083: cpu_idle: state=4294967295 cpu_id=1
133635          <idle>-0     (-----) [001] d..2 82318.388095: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
133636        DispSync-8879  ( 8858) [003] d..2 82318.388113: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133637          <idle>-0     (-----) [003] d..1 82318.388127: cpu_idle: state=0 cpu_id=3
133638   sfEventThread-8882  ( 8858) [001] d..3 82318.388135: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133639   sfEventThread-8882  ( 8858) [001] d..4 82318.388157: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133640          <idle>-0     (-----) [000] .n.1 82318.388164: cpu_idle: state=4294967295 cpu_id=0
133641          <idle>-0     (-----) [000] d..2 82318.388180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
133642   sfEventThread-8882  ( 8858) [001] d..2 82318.388196: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133643          <idle>-0     (-----) [001] d..1 82318.388210: cpu_idle: state=0 cpu_id=1
133644  surfaceflinger-8858  ( 8858) [000] d.h2 82318.388238: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
133645  surfaceflinger-8858  ( 8858) [000] d.h3 82318.388261: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
133646          <idle>-0     (-----) [002] .n.1 82318.388266: cpu_idle: state=4294967295 cpu_id=2
133647          <idle>-0     (-----) [002] d..2 82318.388279: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
133648 kgsl_worker_thr-258   (  258) [002] d..2 82318.388336: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
133649 kgsl_worker_thr-258   (  258) [002] d..3 82318.388359: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
133650 kgsl_worker_thr-258   (  258) [002] d..2 82318.388383: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
133651  surfaceflinger-8858  ( 8858) [000] d.s2 82318.388487: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
133652  surfaceflinger-8858  ( 8858) [000] d.s3 82318.388519: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
133653  kworker/u16:13-1147  ( 1147) [002] d..2 82318.388721: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
133654  surfaceflinger-8858  ( 8858) [000] d..1 82318.388754: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133655  kworker/u16:15-1311  ( 1311) [002] d..2 82318.388758: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133656          <idle>-0     (-----) [002] d..1 82318.388771: cpu_idle: state=0 cpu_id=2
133657  surfaceflinger-8858  ( 8858) [000] d..2 82318.388777: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
133658          <idle>-0     (-----) [001] .n.1 82318.388784: cpu_idle: state=4294967295 cpu_id=1
133659          <idle>-0     (-----) [001] d..2 82318.388796: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
133660   sfEventThread-8882  ( 8858) [001] d..2 82318.388839: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133661          <idle>-0     (-----) [001] d..1 82318.388852: cpu_idle: state=0 cpu_id=1
133662  surfaceflinger-8858  ( 8858) [000] ...1 82318.388996: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
133663  surfaceflinger-8858  ( 8858) [000] ...1 82318.389004: tracing_mark_write: E|8858
133664  surfaceflinger-8858  ( 8858) [000] .... 82318.389073: binder_transaction: transaction=1572933 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
133665  surfaceflinger-8858  ( 8858) [000] .... 82318.389080: binder_transaction_alloc_buf: transaction=1572933 data_size=540 offsets_size=96
133666  surfaceflinger-8858  ( 8858) [000] ...2 82318.389105: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
133667  surfaceflinger-8858  ( 8858) [000] d..4 82318.389112: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
133668  surfaceflinger-8858  ( 8858) [000] d..5 82318.389135: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
133669          <idle>-0     (-----) [003] .n.1 82318.389141: cpu_idle: state=4294967295 cpu_id=3
133670          <idle>-0     (-----) [003] d..2 82318.389154: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
133671 [email protected]   (  619) [003] .... 82318.389166: binder_transaction_received: transaction=1572933
133672  surfaceflinger-8858  ( 8858) [000] d..2 82318.389176: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133673          <idle>-0     (-----) [000] d..1 82318.389200: cpu_idle: state=0 cpu_id=0
133674 [email protected]   (  619) [003] ...1 82318.389215: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
133675 [email protected]   (  619) [003] ...1 82318.389329: tracing_mark_write: B|619|HWCSession::PresentDisplay::
133676 [email protected]   (  619) [003] ...1 82318.389506: tracing_mark_write: B|619|HWDeviceDRM::Commit::
133677 [email protected]   (  619) [003] ...1 82318.389521: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
133678 [email protected]   (  619) [003] d..2 82318.390140: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133679 [email protected]   (  619) [003] d..3 82318.390168: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133680          <idle>-0     (-----) [001] .n.1 82318.390173: cpu_idle: state=4294967295 cpu_id=1
133681          <idle>-0     (-----) [001] d..2 82318.390185: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133682 [email protected]   (  619) [003] ...1 82318.390284: tracing_mark_write: E|619
133683 [email protected]   (  619) [003] ...1 82318.390292: tracing_mark_write: E|619
133684 [email protected]   (  619) [003] ...1 82318.390354: tracing_mark_write: E|619
133685 [email protected]   (  619) [003] ...1 82318.390404: tracing_mark_write: E|619
133686 [email protected]   (  619) [003] .... 82318.390422: binder_transaction: transaction=1572934 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
133687 [email protected]   (  619) [003] .... 82318.390428: binder_transaction_alloc_buf: transaction=1572934 data_size=576 offsets_size=112
133688 [email protected]   (  619) [003] d..2 82318.390453: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133689 [email protected]   (  619) [003] d..3 82318.390475: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
133690 [email protected]   (  619) [003] .... 82318.390481: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
133691          <idle>-0     (-----) [000] .n.1 82318.390482: cpu_idle: state=4294967295 cpu_id=0
133692          <idle>-0     (-----) [000] d..2 82318.390494: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
133693  surfaceflinger-8858  ( 8858) [000] .... 82318.390505: binder_transaction_received: transaction=1572934
133694 [email protected]   (  619) [003] d..2 82318.390584: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133695          <idle>-0     (-----) [003] d..1 82318.390607: cpu_idle: state=0 cpu_id=3
133696 crtc_commit:111-321   (  321) [001] d..2 82318.390933: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
133697          <idle>-0     (-----) [001] d..1 82318.390951: cpu_idle: state=0 cpu_id=1
133698  surfaceflinger-8858  ( 8858) [000] d..2 82318.390976: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133699          <idle>-0     (-----) [000] d..1 82318.391000: cpu_idle: state=0 cpu_id=0
133700          <idle>-0     (-----) [002] d.s2 82318.391881: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133701          <idle>-0     (-----) [002] dns3 82318.391904: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133702          <idle>-0     (-----) [002] .n.1 82318.391923: cpu_idle: state=4294967295 cpu_id=2
133703          <idle>-0     (-----) [002] d..2 82318.391936: 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
133704     rcu_preempt-7     (    7) [002] d..2 82318.391947: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
133705     rcu_preempt-7     (    7) [002] d..3 82318.391966: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
133706     rcu_preempt-7     (    7) [002] d..2 82318.391978: 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
133707         rcuop/0-10    (   10) [002] d..2 82318.391990: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133708         rcuop/0-10    (   10) [002] d..3 82318.392004: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133709         rcuop/0-10    (   10) [002] d..2 82318.392014: 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
133710     rcu_preempt-7     (    7) [002] d..2 82318.392044: 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
133711          <idle>-0     (-----) [002] d..1 82318.392059: cpu_idle: state=0 cpu_id=2
133712          <idle>-0     (-----) [001] ...1 82318.392508: cpu_idle: state=4294967295 cpu_id=1
133713          <idle>-0     (-----) [001] d..1 82318.392513: cpu_idle: state=0 cpu_id=1
133714          <idle>-0     (-----) [002] d.h4 82318.394028: sched_waking: comm=AlarmManager pid=9027 prio=120 target_cpu=000
133715          <idle>-0     (-----) [002] d.h5 82318.394052: sched_wakeup: comm=AlarmManager pid=9027 prio=120 target_cpu=000
133716          <idle>-0     (-----) [000] .n.1 82318.394060: cpu_idle: state=4294967295 cpu_id=0
133717          <idle>-0     (-----) [002] ...1 82318.394067: cpu_idle: state=4294967295 cpu_id=2
133718          <idle>-0     (-----) [002] d..1 82318.394073: cpu_idle: state=0 cpu_id=2
133719          <idle>-0     (-----) [000] d..2 82318.394080: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=AlarmManager next_pid=9027 next_prio=120
133720    AlarmManager-9027  ( 8943) [000] d..3 82318.394432: sched_waking: comm=WifiStateMachin pid=9049 prio=120 target_cpu=000
133721    AlarmManager-9027  ( 8943) [000] d..4 82318.394479: sched_wakeup: comm=WifiStateMachin pid=9049 prio=120 target_cpu=001
133722          <idle>-0     (-----) [001] .n.1 82318.394483: cpu_idle: state=4294967295 cpu_id=1
133723          <idle>-0     (-----) [001] d..2 82318.394499: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=WifiStateMachin next_pid=9049 next_prio=120
133724    AlarmManager-9027  ( 8943) [000] d..3 82318.394514: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
133725    AlarmManager-9027  ( 8943) [000] d..4 82318.394539: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=002
133726          <idle>-0     (-----) [002] .n.1 82318.394544: cpu_idle: state=4294967295 cpu_id=2
133727          <idle>-0     (-----) [002] d..2 82318.394560: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
133728   system_server-8943  ( 8943) [002] d..2 82318.394680: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133729          <idle>-0     (-----) [002] d..1 82318.394696: cpu_idle: state=0 cpu_id=2
133730    AlarmManager-9027  ( 8943) [000] d..3 82318.394739: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=007
133731    AlarmManager-9027  ( 8943) [000] d..4 82318.394781: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=002
133732          <idle>-0     (-----) [002] .n.1 82318.394788: cpu_idle: state=4294967295 cpu_id=2
133733          <idle>-0     (-----) [002] d..2 82318.394840: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
133734 PowerManagerSer-8971  ( 8943) [002] d..2 82318.394933: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133735 WifiStateMachin-9049  ( 8943) [001] d..3 82318.394948: sched_waking: comm=WifiScanningSer pid=9050 prio=120 target_cpu=001
133736          <idle>-0     (-----) [002] d..1 82318.394948: cpu_idle: state=0 cpu_id=2
133737 WifiStateMachin-9049  ( 8943) [001] d..4 82318.394995: sched_wakeup: comm=WifiScanningSer pid=9050 prio=120 target_cpu=002
133738          <idle>-0     (-----) [002] .n.1 82318.395000: cpu_idle: state=4294967295 cpu_id=2
133739          <idle>-0     (-----) [002] d..2 82318.395015: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=WifiScanningSer next_pid=9050 next_prio=120
133740    AlarmManager-9027  ( 8943) [000] d..2 82318.395045: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=000
133741    AlarmManager-9027  ( 8943) [000] d..3 82318.395073: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
133742 WifiStateMachin-9049  ( 8943) [001] d..2 82318.395144: sched_switch: prev_comm=WifiStateMachin prev_pid=9049 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133743    AlarmManager-9027  ( 8943) [000] d..1 82318.395168: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=002
133744    AlarmManager-9027  ( 8943) [000] d..2 82318.395201: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=001
133745          <idle>-0     (-----) [001] d..2 82318.395221: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
133746    AlarmManager-9027  ( 8943) [000] d..3 82318.395245: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=002
133747    AlarmManager-9027  ( 8943) [000] d..4 82318.395271: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=003
133748          <idle>-0     (-----) [003] .n.1 82318.395280: cpu_idle: state=4294967295 cpu_id=3
133749          <idle>-0     (-----) [003] d..2 82318.395297: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
133750 PowerManagerSer-8971  ( 8943) [001] d..2 82318.395331: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133751          <idle>-0     (-----) [001] d..1 82318.395353: cpu_idle: state=0 cpu_id=1
133752   system_server-8943  ( 8943) [003] d..2 82318.395455: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
133753    AlarmManager-9027  ( 8943) [000] d..1 82318.395503: sched_waking: comm=WifiStateMachin pid=9049 prio=120 target_cpu=001
133754    AlarmManager-9027  ( 8943) [000] d..2 82318.395527: sched_wakeup: comm=WifiStateMachin pid=9049 prio=120 target_cpu=001
133755          <idle>-0     (-----) [001] .n.1 82318.395534: cpu_idle: state=4294967295 cpu_id=1
133756          <idle>-0     (-----) [001] d..2 82318.395549: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=WifiStateMachin next_pid=9049 next_prio=120
133757    AlarmManager-9027  ( 8943) [000] d..2 82318.395579: sched_switch: prev_comm=AlarmManager prev_pid=9027 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133758          <idle>-0     (-----) [000] d..1 82318.395603: cpu_idle: state=0 cpu_id=0
133759 WifiScanningSer-9050  ( 8943) [002] .... 82318.395634: binder_transaction: transaction=1572935 dest_node=1100 dest_proc=903 dest_thread=0 reply=0 flags=0x10 code=0x8
133760 WifiScanningSer-9050  ( 8943) [002] .... 82318.395643: binder_transaction_alloc_buf: transaction=1572935 data_size=64 offsets_size=0
133761 WifiScanningSer-9050  ( 8943) [002] d..5 82318.395653: sched_waking: comm=wificond pid=903 prio=120 target_cpu=000
133762 WifiScanningSer-9050  ( 8943) [002] d..6 82318.395710: sched_wakeup: comm=wificond pid=903 prio=120 target_cpu=000
133763          <idle>-0     (-----) [000] .n.1 82318.395717: cpu_idle: state=4294967295 cpu_id=0
133764          <idle>-0     (-----) [000] d..2 82318.395735: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=wificond next_pid=903 next_prio=120
133765 WifiScanningSer-9050  ( 8943) [002] d..2 82318.395749: sched_switch: prev_comm=WifiScanningSer prev_pid=9050 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133766          <idle>-0     (-----) [002] d..1 82318.395766: cpu_idle: state=0 cpu_id=2
133767   statsd.writer-1044  (  901) [003] d..2 82318.395823: 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
133768        wificond-903   (  903) [000] .... 82318.395829: binder_transaction_received: transaction=1572935
133769          <idle>-0     (-----) [003] d..1 82318.395846: cpu_idle: state=0 cpu_id=3
133770 WifiStateMachin-9049  ( 8943) [001] d..3 82318.395863: sched_waking: comm=system_server pid=8943 prio=118 target_cpu=003
133771 WifiStateMachin-9049  ( 8943) [001] d..4 82318.395890: sched_wakeup: comm=system_server pid=8943 prio=118 target_cpu=003
133772          <idle>-0     (-----) [003] .n.1 82318.395897: cpu_idle: state=4294967295 cpu_id=3
133773          <idle>-0     (-----) [003] d..2 82318.395914: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=system_server next_pid=8943 next_prio=118
133774   system_server-8943  ( 8943) [003] d..2 82318.396028: sched_switch: prev_comm=system_server prev_pid=8943 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133775 WifiStateMachin-9049  ( 8943) [001] d..2 82318.396028: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=003
133776          <idle>-0     (-----) [003] d..1 82318.396045: cpu_idle: state=0 cpu_id=3
133777 WifiStateMachin-9049  ( 8943) [001] d..3 82318.396057: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=001
133778        wificond-903   (  903) [000] d.h4 82318.396083: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=001
133779        wificond-903   (  903) [000] d.h5 82318.396124: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
133780        wificond-903   (  903) [000] d.h4 82318.396130: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
133781          <idle>-0     (-----) [003] .n.1 82318.396131: cpu_idle: state=4294967295 cpu_id=3
133782 WifiStateMachin-9049  ( 8943) [001] d..3 82318.396143: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=001
133783          <idle>-0     (-----) [003] d..2 82318.396145: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133784        wificond-903   (  903) [000] d.h5 82318.396150: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
133785          <idle>-0     (-----) [002] .n.1 82318.396158: cpu_idle: state=4294967295 cpu_id=2
133786          <idle>-0     (-----) [002] d..2 82318.396169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133787          <idle>-0     (-----) [006] dnh2 82318.396186: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=006
133788          <idle>-0     (-----) [006] .n.1 82318.396233: cpu_idle: state=4294967295 cpu_id=6
133789          <idle>-0     (-----) [006] d..2 82318.396239: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
133790  crtc_event:111-322   (  322) [003] d..2 82318.396252: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
133791 WifiStateMachin-9049  ( 8943) [001] d..1 82318.396300: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=006
133792 PowerManagerSer-8971  ( 8943) [006] d..2 82318.396310: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
133793          <idle>-0     (-----) [006] d..1 82318.396321: cpu_idle: state=0 cpu_id=6
133794 crtc_commit:111-321   (  321) [002] d..2 82318.396333: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
133795          <idle>-0     (-----) [006] dnh2 82318.396334: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=006
133796          <idle>-0     (-----) [006] .n.1 82318.396338: cpu_idle: state=4294967295 cpu_id=6
133797          <idle>-0     (-----) [002] d..1 82318.396344: cpu_idle: state=0 cpu_id=2
133798          <idle>-0     (-----) [006] d..2 82318.396346: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
133799 PowerManagerSer-8971  ( 8943) [006] d..2 82318.396405: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
133800   statsd.writer-1044  (  901) [003] d..2 82318.396406: 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
133801 WifiStateMachin-9049  ( 8943) [001] d..2 82318.396408: sched_switch: prev_comm=WifiStateMachin prev_pid=9049 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133802          <idle>-0     (-----) [006] d..1 82318.396415: cpu_idle: state=0 cpu_id=6
133803          <idle>-0     (-----) [003] d..1 82318.396425: cpu_idle: state=0 cpu_id=3
133804          <idle>-0     (-----) [001] d..1 82318.396432: cpu_idle: state=0 cpu_id=1
133805        wificond-903   (  903) [000] .... 82318.397846: binder_transaction: transaction=1572936 dest_node=0 dest_proc=8943 dest_thread=9050 reply=1 flags=0x0 code=0x0
133806        wificond-903   (  903) [000] .... 82318.397855: binder_transaction_alloc_buf: transaction=1572936 data_size=60 offsets_size=0
133807        wificond-903   (  903) [000] d..2 82318.397861: sched_waking: comm=WifiScanningSer pid=9050 prio=120 target_cpu=002
133808        wificond-903   (  903) [000] d..3 82318.397894: sched_wakeup: comm=WifiScanningSer pid=9050 prio=120 target_cpu=000
133809        wificond-903   (  903) [000] d..2 82318.397966: sched_switch: prev_comm=wificond prev_pid=903 prev_prio=120 prev_state=S ==> next_comm=WifiScanningSer next_pid=9050 next_prio=120
133810 WifiScanningSer-9050  ( 8943) [000] .... 82318.397980: binder_transaction_received: transaction=1572936
133811 WifiScanningSer-9050  ( 8943) [000] .... 82318.398132: binder_transaction: transaction=1572937 dest_node=1100 dest_proc=903 dest_thread=0 reply=0 flags=0x10 code=0x9
133812 WifiScanningSer-9050  ( 8943) [000] .... 82318.398138: binder_transaction_alloc_buf: transaction=1572937 data_size=64 offsets_size=0
133813 WifiScanningSer-9050  ( 8943) [000] d..5 82318.398145: sched_waking: comm=wificond pid=903 prio=120 target_cpu=000
133814 WifiScanningSer-9050  ( 8943) [000] d..6 82318.398185: sched_wakeup: comm=wificond pid=903 prio=120 target_cpu=001
133815          <idle>-0     (-----) [001] .n.1 82318.398191: cpu_idle: state=4294967295 cpu_id=1
133816          <idle>-0     (-----) [001] d..2 82318.398208: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=wificond next_pid=903 next_prio=120
133817 WifiScanningSer-9050  ( 8943) [000] d..2 82318.398220: sched_switch: prev_comm=WifiScanningSer prev_pid=9050 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133818          <idle>-0     (-----) [000] d..1 82318.398244: cpu_idle: state=0 cpu_id=0
133819        wificond-903   (  903) [001] .... 82318.398248: binder_transaction_received: transaction=1572937
133820          <idle>-0     (-----) [000] d.h5 82318.398434: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
133821          <idle>-0     (-----) [000] d.h6 82318.398457: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
133822          <idle>-0     (-----) [000] ...1 82318.398482: cpu_idle: state=4294967295 cpu_id=0
133823          <idle>-0     (-----) [002] dns3 82318.398484: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
133824          <idle>-0     (-----) [000] d..1 82318.398489: cpu_idle: state=0 cpu_id=0
133825        wificond-903   (  903) [001] d.s2 82318.398502: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
133826          <idle>-0     (-----) [002] dns4 82318.398508: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
133827          <idle>-0     (-----) [002] dns2 82318.398512: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
133828          <idle>-0     (-----) [003] .n.1 82318.398517: cpu_idle: state=4294967295 cpu_id=3
133829          <idle>-0     (-----) [003] d..2 82318.398531: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133830        wificond-903   (  903) [001] d.s3 82318.398572: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
133831          <idle>-0     (-----) [002] dns3 82318.398583: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
133832  crtc_event:111-322   (  322) [003] d..2 82318.398598: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
133833          <idle>-0     (-----) [002] .n.1 82318.398612: cpu_idle: state=4294967295 cpu_id=2
133834          <idle>-0     (-----) [002] d..2 82318.398621: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
133835     rcu_preempt-7     (    7) [003] d..2 82318.398623: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
133836          <idle>-0     (-----) [000] d.h5 82318.398715: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
133837 crtc_commit:111-321   (  321) [002] d..2 82318.398716: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133838          <idle>-0     (-----) [000] d.h6 82318.398744: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
133839          <idle>-0     (-----) [000] ...1 82318.398764: cpu_idle: state=4294967295 cpu_id=0
133840          <idle>-0     (-----) [002] d..2 82318.398765: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
133841  kworker/u16:15-1311  ( 1311) [003] .... 82318.398770: clk_set_rate: l3_cluster0_vote_clk 403200000
133842          <idle>-0     (-----) [000] d..1 82318.398773: cpu_idle: state=0 cpu_id=0
133843  kworker/u16:15-1311  ( 1311) [003] .... 82318.398779: clk_set_rate: l3_clk 403200000
133844  crtc_event:111-322   (  322) [002] d..2 82318.398796: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133845          <idle>-0     (-----) [002] d..1 82318.398814: cpu_idle: state=0 cpu_id=2
133846  kworker/u16:15-1311  ( 1311) [003] d..2 82318.399106: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
133847          <idle>-0     (-----) [003] d..1 82318.399121: cpu_idle: state=0 cpu_id=3
133848        wificond-903   (  903) [001] d.s2 82318.399137: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
133849        wificond-903   (  903) [001] d.s3 82318.399153: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
133850        wificond-903   (  903) [001] d.s3 82318.399164: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
133851          <idle>-0     (-----) [003] .n.1 82318.399170: cpu_idle: state=4294967295 cpu_id=3
133852          <idle>-0     (-----) [003] d..2 82318.399184: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
133853  kworker/u16:15-1311  ( 1311) [003] d..2 82318.399291: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133854          <idle>-0     (-----) [003] d..1 82318.399301: cpu_idle: state=0 cpu_id=3
133855          <idle>-0     (-----) [002] ...1 82318.400073: cpu_idle: state=4294967295 cpu_id=2
133856          <idle>-0     (-----) [002] d..1 82318.400078: cpu_idle: state=0 cpu_id=2
133857          <idle>-0     (-----) [000] ...1 82318.400196: cpu_idle: state=4294967295 cpu_id=0
133858          <idle>-0     (-----) [000] d..1 82318.400201: cpu_idle: state=0 cpu_id=0
133859        wificond-903   (  903) [001] .... 82318.400220: binder_transaction: transaction=1572938 dest_node=0 dest_proc=8943 dest_thread=9050 reply=1 flags=0x0 code=0x0
133860        wificond-903   (  903) [001] .... 82318.400227: binder_transaction_alloc_buf: transaction=1572938 data_size=48 offsets_size=0
133861        wificond-903   (  903) [001] d..2 82318.400232: sched_waking: comm=WifiScanningSer pid=9050 prio=120 target_cpu=000
133862        wificond-903   (  903) [001] dn.3 82318.400256: sched_wakeup: comm=WifiScanningSer pid=9050 prio=120 target_cpu=001
133863        wificond-903   (  903) [001] d..2 82318.400268: sched_switch: prev_comm=wificond prev_pid=903 prev_prio=120 prev_state=R+ ==> next_comm=WifiScanningSer next_pid=9050 next_prio=120
133864 WifiScanningSer-9050  ( 8943) [001] .... 82318.400279: binder_transaction_received: transaction=1572938
133865 WifiScanningSer-9050  ( 8943) [001] .... 82318.400403: binder_transaction: transaction=1572939 dest_node=1100 dest_proc=903 dest_thread=0 reply=0 flags=0x10 code=0xa
133866 WifiScanningSer-9050  ( 8943) [001] .... 82318.400408: binder_transaction_alloc_buf: transaction=1572939 data_size=64 offsets_size=0
133867 WifiScanningSer-9050  ( 8943) [001] d..2 82318.400431: sched_switch: prev_comm=WifiScanningSer prev_pid=9050 prev_prio=120 prev_state=S ==> next_comm=wificond next_pid=903 next_prio=120
133868          <idle>-0     (-----) [003] d.h2 82318.400468: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
133869          <idle>-0     (-----) [003] dnh3 82318.400486: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
133870        wificond-903   (  903) [001] .... 82318.400486: binder_transaction_received: transaction=1572939
133871          <idle>-0     (-----) [003] .n.1 82318.400495: cpu_idle: state=4294967295 cpu_id=3
133872          <idle>-0     (-----) [003] d..2 82318.400505: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
133873        DispSync-8879  ( 8858) [003] d..1 82318.400532: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
133874        DispSync-8879  ( 8858) [003] d..2 82318.400550: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
133875          <idle>-0     (-----) [002] .n.1 82318.400555: cpu_idle: state=4294967295 cpu_id=2
133876          <idle>-0     (-----) [002] d..2 82318.400566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
133877        DispSync-8879  ( 8858) [003] d..2 82318.400589: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
133878          <idle>-0     (-----) [003] d..1 82318.400603: cpu_idle: state=0 cpu_id=3
133879  appEventThread-8881  ( 8858) [002] d..3 82318.400629: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133880          <idle>-0     (-----) [004] dnh2 82318.400661: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133881          <idle>-0     (-----) [004] .n.1 82318.400665: cpu_idle: state=4294967295 cpu_id=4
133882          <idle>-0     (-----) [004] d..2 82318.400673: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
133883  appEventThread-8881  ( 8858) [002] d..2 82318.400696: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133884          <idle>-0     (-----) [002] d..1 82318.400712: cpu_idle: state=0 cpu_id=2
133885 s.nexuslauncher-10023 (10023) [004] .... 82318.400867: binder_transaction: transaction=1572940 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
133886 s.nexuslauncher-10023 (10023) [004] .... 82318.400872: binder_transaction_alloc_buf: transaction=1572940 data_size=80 offsets_size=0
133887 s.nexuslauncher-10023 (10023) [004] d..4 82318.400877: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
133888          <idle>-0     (-----) [000] dnh2 82318.400938: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
133889          <idle>-0     (-----) [000] .n.1 82318.400944: cpu_idle: state=4294967295 cpu_id=0
133890 s.nexuslauncher-10023 (10023) [004] d..3 82318.400957: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133891          <idle>-0     (-----) [000] d..2 82318.400958: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
133892   Binder:8858_1-8871  ( 8858) [000] .... 82318.400970: binder_transaction_received: transaction=1572940
133893 s.nexuslauncher-10023 (10023) [004] d..4 82318.400972: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133894          <idle>-0     (-----) [005] .n.1 82318.400978: cpu_idle: state=4294967295 cpu_id=5
133895          <idle>-0     (-----) [005] d..2 82318.400990: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133896   Binder:8858_1-8871  ( 8858) [000] d..1 82318.401011: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
133897    RenderThread-16607 (10023) [005] d..2 82318.401017: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133898          <idle>-0     (-----) [005] d..1 82318.401025: cpu_idle: state=0 cpu_id=5
133899   Binder:8858_1-8871  ( 8858) [000] d..2 82318.401032: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
133900          <idle>-0     (-----) [002] .n.1 82318.401038: cpu_idle: state=4294967295 cpu_id=2
133901          <idle>-0     (-----) [002] d..2 82318.401050: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
133902   Binder:8858_1-8871  ( 8858) [000] d..2 82318.401083: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
133903  appEventThread-8881  ( 8858) [002] d..2 82318.401093: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
133904          <idle>-0     (-----) [000] d..1 82318.401100: cpu_idle: state=0 cpu_id=0
133905          <idle>-0     (-----) [002] d..1 82318.401105: cpu_idle: state=0 cpu_id=2
133906 s.nexuslauncher-10023 (10023) [004] d..3 82318.401275: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133907 s.nexuslauncher-10023 (10023) [004] d..4 82318.401292: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133908          <idle>-0     (-----) [005] .n.1 82318.401297: cpu_idle: state=4294967295 cpu_id=5
133909          <idle>-0     (-----) [005] d..2 82318.401304: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133910 s.nexuslauncher-10023 (10023) [004] d..2 82318.401316: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
133911          <idle>-0     (-----) [004] d..1 82318.401330: cpu_idle: state=0 cpu_id=4
133912    RenderThread-16607 (10023) [005] d..1 82318.401474: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133913    RenderThread-16607 (10023) [005] d..2 82318.401491: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
133914          <idle>-0     (-----) [004] .n.1 82318.401497: cpu_idle: state=4294967295 cpu_id=4
133915          <idle>-0     (-----) [004] d..2 82318.401506: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
133916    RenderThread-16607 (10023) [005] .... 82318.401540: binder_transaction: transaction=1572941 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
133917    RenderThread-16607 (10023) [005] .... 82318.401544: binder_transaction_alloc_buf: transaction=1572941 data_size=104 offsets_size=0
133918    RenderThread-16607 (10023) [005] ...2 82318.401548: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
133919    RenderThread-16607 (10023) [005] d..4 82318.401550: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
133920    RenderThread-16607 (10023) [005] d..5 82318.401568: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133921 s.nexuslauncher-10023 (10023) [004] d..2 82318.401610: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
133922    RenderThread-16607 (10023) [005] d..2 82318.401612: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
133923          <idle>-0     (-----) [004] d..1 82318.401620: cpu_idle: state=0 cpu_id=4
133924   Binder:8858_1-8871  ( 8858) [005] .... 82318.401625: binder_transaction_received: transaction=1572941
133925   Binder:8858_1-8871  ( 8858) [005] .... 82318.401684: binder_transaction: transaction=1572942 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
133926   Binder:8858_1-8871  ( 8858) [005] .... 82318.401687: binder_transaction_alloc_buf: transaction=1572942 data_size=52 offsets_size=8
133927   Binder:8858_1-8871  ( 8858) [005] d..2 82318.401695: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133928   Binder:8858_1-8871  ( 8858) [005] d..3 82318.401705: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133929   Binder:8858_1-8871  ( 8858) [005] .... 82318.401708: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
133930   Binder:8858_1-8871  ( 8858) [005] d..2 82318.401717: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
133931    RenderThread-16607 (10023) [005] .... 82318.401725: binder_transaction_received: transaction=1572942
133932        wificond-903   (  903) [001] .... 82318.402231: binder_transaction: transaction=1572943 dest_node=0 dest_proc=8943 dest_thread=9050 reply=1 flags=0x0 code=0x0
133933        wificond-903   (  903) [001] .... 82318.402238: binder_transaction_alloc_buf: transaction=1572943 data_size=68 offsets_size=0
133934        wificond-903   (  903) [001] d..2 82318.402243: sched_waking: comm=WifiScanningSer pid=9050 prio=120 target_cpu=001
133935        wificond-903   (  903) [001] dn.3 82318.402259: sched_wakeup: comm=WifiScanningSer pid=9050 prio=120 target_cpu=001
133936        wificond-903   (  903) [001] d..2 82318.402271: sched_switch: prev_comm=wificond prev_pid=903 prev_prio=120 prev_state=R+ ==> next_comm=WifiScanningSer next_pid=9050 next_prio=120
133937 WifiScanningSer-9050  ( 8943) [001] .... 82318.402281: binder_transaction_received: transaction=1572943
133938 WifiScanningSer-9050  ( 8943) [001] .... 82318.402566: binder_transaction: transaction=1572944 dest_node=1159339 dest_proc=903 dest_thread=0 reply=0 flags=0x10 code=0x3
133939 WifiScanningSer-9050  ( 8943) [001] .... 82318.402572: binder_transaction_alloc_buf: transaction=1572944 data_size=92 offsets_size=0
133940 WifiScanningSer-9050  ( 8943) [001] d..2 82318.402596: sched_switch: prev_comm=WifiScanningSer prev_pid=9050 prev_prio=120 prev_state=S ==> next_comm=wificond next_pid=903 next_prio=120
133941        wificond-903   (  903) [001] .... 82318.402652: binder_transaction_received: transaction=1572944
133942        wificond-903   (  903) [001] d..2 82318.402803: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
133943        wificond-903   (  903) [001] d..3 82318.402845: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
133944          <idle>-0     (-----) [000] .n.1 82318.402851: cpu_idle: state=4294967295 cpu_id=0
133945          <idle>-0     (-----) [000] d..2 82318.402868: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
133946 wlan_logging_th-647   (  647) [000] d..2 82318.402906: sched_waking: [email protected] pid=16588 prio=120 target_cpu=002
133947 wlan_logging_th-647   (  647) [000] d..3 82318.402931: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=000
133948 wlan_logging_th-647   (  647) [000] d..2 82318.402957: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
133949        wificond-903   (  903) [001] d..2 82318.403016: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
133950    RenderThread-16607 (10023) [005] d..2 82318.403034: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
133951        wificond-903   (  903) [001] dn.3 82318.403057: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
133952        wificond-903   (  903) [001] d..2 82318.403068: sched_switch: prev_comm=wificond prev_pid=903 prev_prio=120 prev_state=R+ ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
133953 wlan_logging_th-647   (  647) [001] d..2 82318.403091: sched_waking: [email protected] pid=16588 prio=120 target_cpu=000
133954   Binder:8858_1-8871  ( 8858) [005] d..2 82318.403102: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133955          <idle>-0     (-----) [005] d..1 82318.403116: cpu_idle: state=0 cpu_id=5
133956          <idle>-0     (-----) [005] d.h2 82318.403130: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133957          <idle>-0     (-----) [005] d.h3 82318.403137: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
133958 [email protected] (  798) [000] d..2 82318.403140: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=wificond next_pid=903 next_prio=120
133959          <idle>-0     (-----) [005] dnh3 82318.403141: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133960          <idle>-0     (-----) [005] .n.1 82318.403147: cpu_idle: state=4294967295 cpu_id=5
133961          <idle>-0     (-----) [005] d..2 82318.403156: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
133962 wlan_logging_th-647   (  647) [001] d..3 82318.403165: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
133963 wlan_logging_th-647   (  647) [001] d..2 82318.403185: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
133964 [email protected] (  798) [001] d..2 82318.403275: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
133965        wificond-903   (  903) [000] d..2 82318.403284: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
133966          <idle>-0     (-----) [001] d..1 82318.403299: cpu_idle: state=0 cpu_id=1
133967        wificond-903   (  903) [000] dn.3 82318.403306: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=000
133968    RenderThread-16607 (10023) [005] .... 82318.403313: binder_transaction: transaction=1572945 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
133969    RenderThread-16607 (10023) [005] .... 82318.403317: binder_transaction_alloc_buf: transaction=1572945 data_size=192 offsets_size=8
133970        wificond-903   (  903) [000] d..2 82318.403318: sched_switch: prev_comm=wificond prev_pid=903 prev_prio=120 prev_state=R+ ==> [email protected] next_pid=16588 next_prio=120
133971    RenderThread-16607 (10023) [005] ...2 82318.403324: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
133972    RenderThread-16607 (10023) [005] d..4 82318.403327: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133973    RenderThread-16607 (10023) [005] d..5 82318.403337: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
133974    RenderThread-16607 (10023) [005] d..2 82318.403348: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
133975   Binder:8858_1-8871  ( 8858) [005] .... 82318.403357: binder_transaction_received: transaction=1572945
133976 [email protected] (  798) [000] d..2 82318.403373: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=wificond next_pid=903 next_prio=120
133977   Binder:8858_1-8871  ( 8858) [005] .... 82318.403474: binder_transaction: transaction=1572946 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
133978   Binder:8858_1-8871  ( 8858) [005] .... 82318.403477: binder_transaction_alloc_buf: transaction=1572946 data_size=68 offsets_size=0
133979   Binder:8858_1-8871  ( 8858) [005] d..2 82318.403480: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
133980   Binder:8858_1-8871  ( 8858) [005] d..3 82318.403490: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
133981   Binder:8858_1-8871  ( 8858) [005] .... 82318.403493: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
133982        wificond-903   (  903) [000] d..2 82318.403520: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
133983   Binder:8858_1-8871  ( 8858) [005] d..2 82318.403522: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
133984    RenderThread-16607 (10023) [005] .... 82318.403531: binder_transaction_received: transaction=1572946
133985        wificond-903   (  903) [000] d..3 82318.403550: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
133986          <idle>-0     (-----) [001] .n.1 82318.403557: cpu_idle: state=4294967295 cpu_id=1
133987          <idle>-0     (-----) [001] d..2 82318.403573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
133988        wificond-903   (  903) [000] d..2 82318.403586: sched_waking: comm=wpa_supplicant pid=16539 prio=120 target_cpu=000
133989    RenderThread-16607 (10023) [005] d..2 82318.403596: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
133990        wificond-903   (  903) [000] dn.3 82318.403603: sched_wakeup: comm=wpa_supplicant pid=16539 prio=120 target_cpu=000
133991          <idle>-0     (-----) [005] d..1 82318.403611: cpu_idle: state=0 cpu_id=5
133992        wificond-903   (  903) [000] d..2 82318.403614: sched_switch: prev_comm=wificond prev_pid=903 prev_prio=120 prev_state=R+ ==> next_comm=wpa_supplicant next_pid=16539 next_prio=120
133993   cds_mc_thread-16565 (16565) [001] d..2 82318.403651: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
133994   cds_mc_thread-16565 (16565) [001] d..3 82318.403674: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
133995   cds_mc_thread-16565 (16565) [001] d..2 82318.403753: sched_waking: [email protected] pid=16588 prio=120 target_cpu=000
133996   cds_mc_thread-16565 (16565) [001] d..3 82318.403794: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
133997  wpa_supplicant-16539 (16539) [000] d..2 82318.403929: sched_switch: prev_comm=wpa_supplicant prev_pid=16539 prev_prio=120 prev_state=S ==> next_comm=wificond next_pid=903 next_prio=120
133998        wificond-903   (  903) [000] d..2 82318.403943: sched_waking: comm=lowi-server pid=16589 prio=120 target_cpu=002
133999        wificond-903   (  903) [000] dn.3 82318.403969: sched_wakeup: comm=lowi-server pid=16589 prio=120 target_cpu=000
134000        wificond-903   (  903) [000] d..2 82318.403981: sched_switch: prev_comm=wificond prev_pid=903 prev_prio=120 prev_state=R+ ==> next_comm=lowi-server next_pid=16589 next_prio=120
134001     lowi-server-16589 (  992) [000] d..2 82318.404087: sched_switch: prev_comm=lowi-server prev_pid=16589 prev_prio=120 prev_state=S ==> next_comm=wificond next_pid=903 next_prio=120
134002        wificond-903   (  903) [000] .... 82318.404180: binder_transaction: transaction=1572947 dest_node=0 dest_proc=8943 dest_thread=9050 reply=1 flags=0x0 code=0x0
134003        wificond-903   (  903) [000] .... 82318.404186: binder_transaction_alloc_buf: transaction=1572947 data_size=8 offsets_size=0
134004        wificond-903   (  903) [000] d..2 82318.404191: sched_waking: comm=WifiScanningSer pid=9050 prio=120 target_cpu=001
134005        wificond-903   (  903) [000] dn.3 82318.404214: sched_wakeup: comm=WifiScanningSer pid=9050 prio=120 target_cpu=000
134006        wificond-903   (  903) [000] d..2 82318.404225: sched_switch: prev_comm=wificond prev_pid=903 prev_prio=120 prev_state=R+ ==> next_comm=WifiScanningSer next_pid=9050 next_prio=120
134007 WifiScanningSer-9050  ( 8943) [000] .... 82318.404237: binder_transaction_received: transaction=1572947
134008          <idle>-0     (-----) [003] d.h2 82318.404475: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
134009          <idle>-0     (-----) [003] dnh3 82318.404487: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
134010          <idle>-0     (-----) [003] .n.1 82318.404496: cpu_idle: state=4294967295 cpu_id=3
134011          <idle>-0     (-----) [003] d..2 82318.404507: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
134012        DispSync-8879  ( 8858) [003] d..1 82318.404520: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
134013        DispSync-8879  ( 8858) [003] d..2 82318.404545: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134014          <idle>-0     (-----) [002] .n.1 82318.404551: cpu_idle: state=4294967295 cpu_id=2
134015          <idle>-0     (-----) [002] d..2 82318.404563: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
134016 WifiScanningSer-9050  ( 8943) [000] d.h2 82318.404583: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=002
134017        DispSync-8879  ( 8858) [003] d..2 82318.404594: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=wificond next_pid=903 next_prio=120
134018   sfEventThread-8882  ( 8858) [002] d..3 82318.404602: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134019 WifiScanningSer-9050  ( 8943) [000] dnh3 82318.404622: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
134020   sfEventThread-8882  ( 8858) [002] d..4 82318.404627: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134021   cds_mc_thread-16565 (16565) [001] d..2 82318.404631: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134022        wificond-903   (  903) [003] d..2 82318.404639: sched_switch: prev_comm=wificond prev_pid=903 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
134023 WifiScanningSer-9050  ( 8943) [000] d..2 82318.404647: sched_switch: prev_comm=WifiScanningSer prev_pid=9050 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
134024   sfEventThread-8882  ( 8858) [002] d..2 82318.404687: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
134025 kgsl_worker_thr-258   (  258) [003] d..2 82318.404700: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134026 kgsl_worker_thr-258   (  258) [003] d..3 82318.404744: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
134027 wlan_logging_th-647   (  647) [002] d..2 82318.404766: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
134028 kgsl_worker_thr-258   (  258) [003] d..2 82318.404771: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=wificond next_pid=903 next_prio=120
134029        wificond-903   (  903) [003] d..2 82318.404870: sched_switch: prev_comm=wificond prev_pid=903 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134030          <idle>-0     (-----) [003] d..1 82318.404885: cpu_idle: state=0 cpu_id=3
134031 [email protected] (  798) [001] d..2 82318.404926: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134032          <idle>-0     (-----) [001] d..1 82318.404948: cpu_idle: state=0 cpu_id=1
134033  kworker/u16:15-1311  ( 1311) [002] d..2 82318.404960: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134034          <idle>-0     (-----) [002] d..1 82318.404979: cpu_idle: state=0 cpu_id=2
134035  surfaceflinger-8858  ( 8858) [000] d..1 82318.405058: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134036  surfaceflinger-8858  ( 8858) [000] d..2 82318.405083: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134037          <idle>-0     (-----) [002] .n.1 82318.405089: cpu_idle: state=4294967295 cpu_id=2
134038          <idle>-0     (-----) [002] d..2 82318.405101: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
134039          <idle>-0     (-----) [003] d.s2 82318.405140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134040          <idle>-0     (-----) [003] dns3 82318.405159: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134041          <idle>-0     (-----) [003] .n.1 82318.405182: cpu_idle: state=4294967295 cpu_id=3
134042          <idle>-0     (-----) [003] d..2 82318.405193: 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
134043   sfEventThread-8882  ( 8858) [002] d..2 82318.405201: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134044     rcu_preempt-7     (    7) [003] d..2 82318.405205: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
134045          <idle>-0     (-----) [002] d..1 82318.405214: cpu_idle: state=0 cpu_id=2
134046     rcu_preempt-7     (    7) [003] d..3 82318.405245: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
134047     rcu_preempt-7     (    7) [003] d..2 82318.405257: 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
134048         rcuop/0-10    (   10) [003] d..2 82318.405270: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134049         rcuop/0-10    (   10) [003] d..3 82318.405283: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134050         rcuop/0-10    (   10) [003] d..2 82318.405293: 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
134051     rcu_preempt-7     (    7) [003] d..2 82318.405322: 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
134052          <idle>-0     (-----) [003] d..1 82318.405338: cpu_idle: state=0 cpu_id=3
134053  surfaceflinger-8858  ( 8858) [000] ...1 82318.405362: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
134054  surfaceflinger-8858  ( 8858) [000] ...1 82318.405372: tracing_mark_write: E|8858
134055  surfaceflinger-8858  ( 8858) [000] .... 82318.405439: binder_transaction: transaction=1572948 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
134056  surfaceflinger-8858  ( 8858) [000] .... 82318.405444: binder_transaction_alloc_buf: transaction=1572948 data_size=540 offsets_size=96
134057  surfaceflinger-8858  ( 8858) [000] ...2 82318.405472: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
134058  surfaceflinger-8858  ( 8858) [000] d..4 82318.405481: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
134059  surfaceflinger-8858  ( 8858) [000] d..5 82318.405505: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
134060          <idle>-0     (-----) [003] .n.1 82318.405511: cpu_idle: state=4294967295 cpu_id=3
134061          <idle>-0     (-----) [003] d..2 82318.405522: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
134062  surfaceflinger-8858  ( 8858) [000] d..2 82318.405529: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=WifiScanningSer next_pid=9050 next_prio=120
134063 [email protected]   (  619) [003] .... 82318.405536: binder_transaction_received: transaction=1572948
134064 [email protected]   (  619) [003] d.h1 82318.405623: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
134065 [email protected]   (  619) [003] dnh2 82318.405640: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
134066 [email protected]   (  619) [003] d..2 82318.405662: sched_switch: [email protected] prev_pid=619 prev_prio=98 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
134067          <idle>-0     (-----) [002] .n.1 82318.405697: cpu_idle: state=4294967295 cpu_id=2
134068          <idle>-0     (-----) [002] d..2 82318.405708: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
134069 [email protected]   (  619) [002] ...1 82318.405730: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
134070 WifiScanningSer-9050  ( 8943) [000] d..2 82318.405748: sched_waking: comm=statsd.writer pid=1044 prio=120 target_cpu=003
134071 WifiScanningSer-9050  ( 8943) [000] d..3 82318.405778: sched_wakeup: comm=statsd.writer pid=1044 prio=120 target_cpu=000
134072 [email protected]   (  619) [002] ...1 82318.405854: tracing_mark_write: B|619|HWCSession::PresentDisplay::
134073 WifiScanningSer-9050  ( 8943) [000] d..2 82318.405861: sched_switch: prev_comm=WifiScanningSer prev_pid=9050 prev_prio=120 prev_state=S ==> next_comm=statsd.writer next_pid=1044 next_prio=120
134074 irq/80-1436400.-9674  ( 9674) [003] d..2 82318.405889: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
134075          <idle>-0     (-----) [003] d..1 82318.405907: cpu_idle: state=0 cpu_id=3
134076          <idle>-0     (-----) [001] d.s3 82318.405919: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
134077          <idle>-0     (-----) [001] d.s4 82318.405935: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
134078          <idle>-0     (-----) [003] .n.1 82318.405941: cpu_idle: state=4294967295 cpu_id=3
134079          <idle>-0     (-----) [001] ...1 82318.405946: cpu_idle: state=4294967295 cpu_id=1
134080          <idle>-0     (-----) [003] d..2 82318.405952: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
134081          <idle>-0     (-----) [001] d..1 82318.405953: cpu_idle: state=0 cpu_id=1
134082 irq/80-1436400.-9674  ( 9674) [003] d..2 82318.405992: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134083          <idle>-0     (-----) [003] d..1 82318.406002: cpu_idle: state=0 cpu_id=3
134084 [email protected]   (  619) [002] ...1 82318.406046: tracing_mark_write: B|619|HWDeviceDRM::Commit::
134085   statsd.writer-1044  (  901) [000] d..2 82318.406048: 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
134086 [email protected]   (  619) [002] ...1 82318.406061: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
134087          <idle>-0     (-----) [000] d..1 82318.406070: cpu_idle: state=0 cpu_id=0
134088 [email protected]   (  619) [002] d..2 82318.406741: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
134089 [email protected]   (  619) [002] d..3 82318.406778: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134090          <idle>-0     (-----) [003] .n.1 82318.406782: cpu_idle: state=4294967295 cpu_id=3
134091          <idle>-0     (-----) [003] d..2 82318.406793: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
134092 [email protected]   (  619) [002] ...1 82318.406894: tracing_mark_write: E|619
134093 [email protected]   (  619) [002] ...1 82318.406902: tracing_mark_write: E|619
134094 [email protected]   (  619) [002] ...1 82318.406972: tracing_mark_write: E|619
134095 [email protected]   (  619) [002] ...1 82318.407026: tracing_mark_write: E|619
134096 [email protected]   (  619) [002] .... 82318.407044: binder_transaction: transaction=1572949 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
134097 [email protected]   (  619) [002] .... 82318.407050: binder_transaction_alloc_buf: transaction=1572949 data_size=576 offsets_size=112
134098 [email protected]   (  619) [002] d..2 82318.407072: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134099 [email protected]   (  619) [002] d..3 82318.407092: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134100 [email protected]   (  619) [002] .... 82318.407097: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
134101          <idle>-0     (-----) [000] .n.1 82318.407099: cpu_idle: state=4294967295 cpu_id=0
134102          <idle>-0     (-----) [000] d..2 82318.407112: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
134103  surfaceflinger-8858  ( 8858) [000] .... 82318.407124: binder_transaction_received: transaction=1572949
134104 [email protected]   (  619) [002] d..2 82318.407195: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134105          <idle>-0     (-----) [002] d..1 82318.407215: cpu_idle: state=0 cpu_id=2
134106 crtc_commit:111-321   (  321) [003] d..2 82318.407542: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
134107          <idle>-0     (-----) [003] d..1 82318.407556: cpu_idle: state=0 cpu_id=3
134108  surfaceflinger-8858  ( 8858) [000] d..2 82318.407642: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134109          <idle>-0     (-----) [000] d..1 82318.407665: cpu_idle: state=0 cpu_id=0
134110          <idle>-0     (-----) [003] d..2 82318.408713: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
134111          <idle>-0     (-----) [003] dn.3 82318.408731: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
134112          <idle>-0     (-----) [003] .n.1 82318.408736: cpu_idle: state=4294967295 cpu_id=3
134113          <idle>-0     (-----) [001] d.s3 82318.408737: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134114          <idle>-0     (-----) [003] d..2 82318.408752: 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
134115          <idle>-0     (-----) [001] dns4 82318.408755: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134116     ksoftirqd/3-34    (   34) [003] d.s2 82318.408765: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
134117          <idle>-0     (-----) [001] .n.1 82318.408773: cpu_idle: state=4294967295 cpu_id=1
134118          <idle>-0     (-----) [001] d..2 82318.408790: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134119     ksoftirqd/3-34    (   34) [003] d.s3 82318.408807: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134120     ksoftirqd/3-34    (   34) [003] d..2 82318.408824: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
134121     kworker/1:1-25249 (25249) [001] d..2 82318.408830: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134122     kworker/1:1-25249 (25249) [001] d..3 82318.408845: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134123     kworker/1:1-25249 (25249) [001] d..2 82318.408880: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134124  kworker/u16:15-1311  ( 1311) [003] .... 82318.409001: clk_set_rate: l3_cluster0_vote_clk 480000000
134125  kworker/u16:15-1311  ( 1311) [003] .... 82318.409008: clk_set_rate: l3_clk 480000000
134126  kworker/u16:15-1311  ( 1311) [003] d..2 82318.409070: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134127          <idle>-0     (-----) [003] d..1 82318.409082: cpu_idle: state=0 cpu_id=3
134128 [email protected] (  798) [001] d..2 82318.409104: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134129          <idle>-0     (-----) [001] d..1 82318.409122: cpu_idle: state=0 cpu_id=1
134130          <idle>-0     (-----) [001] d.s3 82318.411322: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134131          <idle>-0     (-----) [001] dns4 82318.411334: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134132          <idle>-0     (-----) [001] .n.1 82318.411347: cpu_idle: state=4294967295 cpu_id=1
134133          <idle>-0     (-----) [001] d..2 82318.411361: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134134     kworker/1:1-25249 (25249) [001] d..2 82318.411387: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134135     kworker/1:1-25249 (25249) [001] d..3 82318.411399: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134136     kworker/1:1-25249 (25249) [001] d..2 82318.411423: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134137 [email protected] (  798) [001] d..2 82318.411550: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134138          <idle>-0     (-----) [001] d..1 82318.411566: cpu_idle: state=0 cpu_id=1
134139          <idle>-0     (-----) [003] d.H3 82318.411883: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
134140          <idle>-0     (-----) [003] dnH4 82318.411900: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
134141          <idle>-0     (-----) [003] dns2 82318.411908: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134142          <idle>-0     (-----) [003] dns3 82318.411926: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134143          <idle>-0     (-----) [003] .n.1 82318.411937: cpu_idle: state=4294967295 cpu_id=3
134144          <idle>-0     (-----) [003] d..2 82318.411946: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
134145         sugov:0-576   (  576) [003] .... 82318.411980: clk_set_rate: pwrcl_clk 979200000
134146         sugov:0-576   (  576) [003] .... 82318.411990: clk_set_rate: cpu3_pwrcl_clk 825600000
134147         sugov:0-576   (  576) [003] .... 82318.412000: clk_set_rate: cpu2_pwrcl_clk 825600000
134148         sugov:0-576   (  576) [003] .... 82318.412008: clk_set_rate: cpu1_pwrcl_clk 825600000
134149         sugov:0-576   (  576) [003] .... 82318.412015: clk_set_rate: cpu0_pwrcl_clk 979200000
134150         sugov:0-576   (  576) [003] .... 82318.412025: cpu_frequency: state=979200 cpu_id=0
134151         sugov:0-576   (  576) [003] .... 82318.412049: cpu_frequency: state=979200 cpu_id=1
134152         sugov:0-576   (  576) [003] .... 82318.412055: cpu_frequency: state=979200 cpu_id=2
134153         sugov:0-576   (  576) [003] .... 82318.412062: cpu_frequency: state=979200 cpu_id=3
134154         sugov:0-576   (  576) [003] d..2 82318.412080: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
134155     rcu_preempt-7     (    7) [003] d..2 82318.412092: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
134156     rcu_preempt-7     (    7) [003] d..3 82318.412110: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
134157     rcu_preempt-7     (    7) [003] d..2 82318.412121: 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
134158         rcuop/0-10    (   10) [003] d..2 82318.412150: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134159         rcuop/0-10    (   10) [003] d..3 82318.412162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134160         rcuop/0-10    (   10) [003] d..2 82318.412170: 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
134161     rcu_preempt-7     (    7) [003] d..2 82318.412197: 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
134162          <idle>-0     (-----) [003] d..1 82318.412210: cpu_idle: state=0 cpu_id=3
134163          <idle>-0     (-----) [000] d.h5 82318.412551: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
134164          <idle>-0     (-----) [000] d.h6 82318.412572: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
134165          <idle>-0     (-----) [000] d.h5 82318.412578: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134166          <idle>-0     (-----) [002] .n.1 82318.412579: cpu_idle: state=4294967295 cpu_id=2
134167          <idle>-0     (-----) [000] d.h6 82318.412590: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134168          <idle>-0     (-----) [002] d..2 82318.412590: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
134169          <idle>-0     (-----) [003] .n.1 82318.412597: cpu_idle: state=4294967295 cpu_id=3
134170          <idle>-0     (-----) [003] d..2 82318.412607: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
134171          <idle>-0     (-----) [000] ...1 82318.412608: cpu_idle: state=4294967295 cpu_id=0
134172          <idle>-0     (-----) [000] d..1 82318.412615: cpu_idle: state=0 cpu_id=0
134173  crtc_event:111-322   (  322) [002] d..2 82318.412624: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134174          <idle>-0     (-----) [002] d..1 82318.412634: cpu_idle: state=0 cpu_id=2
134175 crtc_commit:111-321   (  321) [003] d..2 82318.412754: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
134176          <idle>-0     (-----) [003] d..1 82318.412763: cpu_idle: state=0 cpu_id=3
134177          <idle>-0     (-----) [001] d.s3 82318.414369: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134178          <idle>-0     (-----) [001] dns4 82318.414382: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134179          <idle>-0     (-----) [001] .n.1 82318.414396: cpu_idle: state=4294967295 cpu_id=1
134180          <idle>-0     (-----) [001] d..2 82318.414409: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134181     kworker/1:1-25249 (25249) [001] d..2 82318.414433: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134182     kworker/1:1-25249 (25249) [001] d..3 82318.414445: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134183     kworker/1:1-25249 (25249) [001] d..2 82318.414468: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134184 [email protected] (  798) [001] d..2 82318.414617: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134185          <idle>-0     (-----) [001] d..1 82318.414634: cpu_idle: state=0 cpu_id=1
134186          <idle>-0     (-----) [000] d.h5 82318.414876: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134187          <idle>-0     (-----) [000] d.h6 82318.414890: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134188          <idle>-0     (-----) [003] .n.1 82318.414896: cpu_idle: state=4294967295 cpu_id=3
134189          <idle>-0     (-----) [000] ...1 82318.414903: cpu_idle: state=4294967295 cpu_id=0
134190          <idle>-0     (-----) [003] d..2 82318.414903: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
134191          <idle>-0     (-----) [000] d..1 82318.414910: cpu_idle: state=0 cpu_id=0
134192 crtc_commit:111-321   (  321) [003] d..2 82318.414966: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134193          <idle>-0     (-----) [003] d..1 82318.414974: cpu_idle: state=0 cpu_id=3
134194          <idle>-0     (-----) [003] d.s3 82318.415131: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
134195          <idle>-0     (-----) [003] d.s4 82318.415148: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
134196          <idle>-0     (-----) [002] .n.1 82318.415153: cpu_idle: state=4294967295 cpu_id=2
134197          <idle>-0     (-----) [003] ...1 82318.415161: cpu_idle: state=4294967295 cpu_id=3
134198          <idle>-0     (-----) [002] d..2 82318.415163: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
134199          <idle>-0     (-----) [003] d..1 82318.415166: cpu_idle: state=0 cpu_id=3
134200          <idle>-0     (-----) [000] d.h5 82318.415180: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
134201  crtc_event:111-322   (  322) [002] d..2 82318.415192: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134202          <idle>-0     (-----) [002] d..1 82318.415200: cpu_idle: state=0 cpu_id=2
134203          <idle>-0     (-----) [000] d.h6 82318.415207: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
134204          <idle>-0     (-----) [002] .n.1 82318.415213: cpu_idle: state=4294967295 cpu_id=2
134205          <idle>-0     (-----) [002] d..2 82318.415222: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
134206          <idle>-0     (-----) [000] ...1 82318.415224: cpu_idle: state=4294967295 cpu_id=0
134207          <idle>-0     (-----) [000] d..1 82318.415228: cpu_idle: state=0 cpu_id=0
134208  crtc_event:111-322   (  322) [002] d..2 82318.415242: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134209          <idle>-0     (-----) [002] d..1 82318.415250: cpu_idle: state=0 cpu_id=2
134210          <idle>-0     (-----) [001] d.s3 82318.415693: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134211          <idle>-0     (-----) [001] dns4 82318.415704: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134212          <idle>-0     (-----) [001] .n.1 82318.415716: cpu_idle: state=4294967295 cpu_id=1
134213          <idle>-0     (-----) [001] d..2 82318.415729: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134214     kworker/1:1-25249 (25249) [001] d..2 82318.415751: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134215     kworker/1:1-25249 (25249) [001] d..3 82318.415762: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134216     kworker/1:1-25249 (25249) [001] d..2 82318.415783: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134217 [email protected] (  798) [001] d..2 82318.415898: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134218          <idle>-0     (-----) [001] d..1 82318.415913: cpu_idle: state=0 cpu_id=1
134219          <idle>-0     (-----) [003] d.h2 82318.416936: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
134220          <idle>-0     (-----) [003] dnh3 82318.416948: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
134221          <idle>-0     (-----) [003] .n.1 82318.416955: cpu_idle: state=4294967295 cpu_id=3
134222          <idle>-0     (-----) [003] d..2 82318.416962: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
134223        DispSync-8879  ( 8858) [003] d..1 82318.416981: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
134224        DispSync-8879  ( 8858) [003] d..2 82318.416996: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
134225          <idle>-0     (-----) [002] .n.1 82318.417000: cpu_idle: state=4294967295 cpu_id=2
134226          <idle>-0     (-----) [002] d..2 82318.417009: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
134227        DispSync-8879  ( 8858) [003] d..2 82318.417028: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134228          <idle>-0     (-----) [003] d..1 82318.417037: cpu_idle: state=0 cpu_id=3
134229  appEventThread-8881  ( 8858) [002] d..3 82318.417058: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134230          <idle>-0     (-----) [004] dnh2 82318.417087: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134231          <idle>-0     (-----) [004] .n.1 82318.417091: cpu_idle: state=4294967295 cpu_id=4
134232          <idle>-0     (-----) [004] d..2 82318.417099: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
134233  appEventThread-8881  ( 8858) [002] d..2 82318.417113: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134234          <idle>-0     (-----) [002] d..1 82318.417125: cpu_idle: state=0 cpu_id=2
134235 s.nexuslauncher-10023 (10023) [004] .... 82318.417303: binder_transaction: transaction=1572950 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
134236 s.nexuslauncher-10023 (10023) [004] .... 82318.417307: binder_transaction_alloc_buf: transaction=1572950 data_size=80 offsets_size=0
134237 s.nexuslauncher-10023 (10023) [004] d..4 82318.417312: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
134238 s.nexuslauncher-10023 (10023) [004] d.h5 82318.417372: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
134239          <idle>-0     (-----) [000] dnh2 82318.417374: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
134240          <idle>-0     (-----) [000] .n.1 82318.417380: cpu_idle: state=4294967295 cpu_id=0
134241          <idle>-0     (-----) [003] dnh2 82318.417392: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
134242          <idle>-0     (-----) [000] d..2 82318.417393: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
134243          <idle>-0     (-----) [003] .n.1 82318.417398: cpu_idle: state=4294967295 cpu_id=3
134244   Binder:8858_1-8871  ( 8858) [000] .... 82318.417401: binder_transaction_received: transaction=1572950
134245          <idle>-0     (-----) [003] d..2 82318.417404: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
134246 s.nexuslauncher-10023 (10023) [004] d..3 82318.417408: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134247 s.nexuslauncher-10023 (10023) [004] d..4 82318.417423: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134248         sugov:0-576   (  576) [003] .... 82318.417426: clk_set_rate: pwrcl_clk 1056000000
134249          <idle>-0     (-----) [005] .n.1 82318.417429: cpu_idle: state=4294967295 cpu_id=5
134250   Binder:8858_1-8871  ( 8858) [000] d..1 82318.417434: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
134251         sugov:0-576   (  576) [003] .... 82318.417435: clk_set_rate: cpu3_pwrcl_clk 979200000
134252          <idle>-0     (-----) [005] d..2 82318.417439: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
134253         sugov:0-576   (  576) [003] .... 82318.417443: clk_set_rate: cpu2_pwrcl_clk 979200000
134254   Binder:8858_1-8871  ( 8858) [000] d..2 82318.417450: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
134255         sugov:0-576   (  576) [003] .... 82318.417451: clk_set_rate: cpu1_pwrcl_clk 979200000
134256          <idle>-0     (-----) [002] .n.1 82318.417457: cpu_idle: state=4294967295 cpu_id=2
134257         sugov:0-576   (  576) [003] .... 82318.417458: clk_set_rate: cpu0_pwrcl_clk 1056000000
134258         sugov:0-576   (  576) [003] .... 82318.417466: cpu_frequency: state=1056000 cpu_id=0
134259          <idle>-0     (-----) [002] d..2 82318.417466: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
134260    RenderThread-16607 (10023) [005] d..2 82318.417471: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
134261          <idle>-0     (-----) [005] d..1 82318.417479: cpu_idle: state=0 cpu_id=5
134262         sugov:0-576   (  576) [003] .... 82318.417479: cpu_frequency: state=1056000 cpu_id=1
134263         sugov:0-576   (  576) [003] .... 82318.417484: cpu_frequency: state=1056000 cpu_id=2
134264         sugov:0-576   (  576) [003] .... 82318.417487: cpu_frequency: state=1056000 cpu_id=3
134265   Binder:8858_1-8871  ( 8858) [000] d..2 82318.417495: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134266  appEventThread-8881  ( 8858) [002] d..2 82318.417504: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134267          <idle>-0     (-----) [000] d..1 82318.417510: cpu_idle: state=0 cpu_id=0
134268         sugov:0-576   (  576) [003] d..2 82318.417511: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134269          <idle>-0     (-----) [002] d..1 82318.417514: cpu_idle: state=0 cpu_id=2
134270          <idle>-0     (-----) [003] d..1 82318.417518: cpu_idle: state=0 cpu_id=3
134271 s.nexuslauncher-10023 (10023) [004] d..3 82318.417738: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134272 s.nexuslauncher-10023 (10023) [004] d..4 82318.417754: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134273          <idle>-0     (-----) [005] .n.1 82318.417759: cpu_idle: state=4294967295 cpu_id=5
134274          <idle>-0     (-----) [005] d..2 82318.417766: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
134275 s.nexuslauncher-10023 (10023) [004] d..2 82318.417779: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
134276          <idle>-0     (-----) [004] d..1 82318.417792: cpu_idle: state=0 cpu_id=4
134277    RenderThread-16607 (10023) [005] d..1 82318.417931: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134278    RenderThread-16607 (10023) [005] d..2 82318.417947: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134279          <idle>-0     (-----) [004] .n.1 82318.417953: cpu_idle: state=4294967295 cpu_id=4
134280          <idle>-0     (-----) [004] d..2 82318.417961: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
134281    RenderThread-16607 (10023) [005] .... 82318.417991: binder_transaction: transaction=1572951 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
134282    RenderThread-16607 (10023) [005] .... 82318.417995: binder_transaction_alloc_buf: transaction=1572951 data_size=104 offsets_size=0
134283    RenderThread-16607 (10023) [005] ...2 82318.417999: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
134284    RenderThread-16607 (10023) [005] d..4 82318.418001: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
134285    RenderThread-16607 (10023) [005] d..5 82318.418019: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
134286 s.nexuslauncher-10023 (10023) [004] d..2 82318.418059: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
134287    RenderThread-16607 (10023) [005] d..2 82318.418061: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
134288          <idle>-0     (-----) [004] d..1 82318.418069: cpu_idle: state=0 cpu_id=4
134289   Binder:8858_1-8871  ( 8858) [005] .... 82318.418072: binder_transaction_received: transaction=1572951
134290   Binder:8858_1-8871  ( 8858) [005] .... 82318.418125: binder_transaction: transaction=1572952 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
134291   Binder:8858_1-8871  ( 8858) [005] .... 82318.418128: binder_transaction_alloc_buf: transaction=1572952 data_size=52 offsets_size=8
134292   Binder:8858_1-8871  ( 8858) [005] d..2 82318.418134: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134293   Binder:8858_1-8871  ( 8858) [005] d..3 82318.418145: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134294   Binder:8858_1-8871  ( 8858) [005] .... 82318.418147: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
134295   Binder:8858_1-8871  ( 8858) [005] d..2 82318.418157: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
134296    RenderThread-16607 (10023) [005] .... 82318.418166: binder_transaction_received: transaction=1572952
134297          <idle>-0     (-----) [003] d.s2 82318.418468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134298          <idle>-0     (-----) [003] dns3 82318.418484: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134299          <idle>-0     (-----) [003] dns3 82318.418489: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134300          <idle>-0     (-----) [003] dns4 82318.418500: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134301          <idle>-0     (-----) [003] .n.1 82318.418510: cpu_idle: state=4294967295 cpu_id=3
134302          <idle>-0     (-----) [003] d..2 82318.418518: 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
134303     rcu_preempt-7     (    7) [003] d..2 82318.418535: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
134304  kworker/u16:15-1311  ( 1311) [003] .... 82318.418561: clk_set_rate: l3_cluster0_vote_clk 300000000
134305  kworker/u16:15-1311  ( 1311) [003] .... 82318.418565: clk_set_rate: l3_clk 300000000
134306  kworker/u16:15-1311  ( 1311) [003] d..2 82318.418834: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
134307          <idle>-0     (-----) [003] d..1 82318.418850: cpu_idle: state=0 cpu_id=3
134308          <idle>-0     (-----) [001] d.s3 82318.418867: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134309          <idle>-0     (-----) [001] d.s4 82318.418881: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
134310          <idle>-0     (-----) [001] d.s4 82318.418891: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134311          <idle>-0     (-----) [003] .n.1 82318.418898: cpu_idle: state=4294967295 cpu_id=3
134312          <idle>-0     (-----) [001] ...1 82318.418901: cpu_idle: state=4294967295 cpu_id=1
134313          <idle>-0     (-----) [001] d..1 82318.418908: cpu_idle: state=0 cpu_id=1
134314          <idle>-0     (-----) [003] d..2 82318.418911: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
134315  kworker/u16:15-1311  ( 1311) [003] d..2 82318.419037: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134316          <idle>-0     (-----) [003] d..1 82318.419047: cpu_idle: state=0 cpu_id=3
134317    RenderThread-16607 (10023) [005] d..2 82318.419602: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
134318   Binder:8858_1-8871  ( 8858) [005] d..2 82318.419673: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
134319          <idle>-0     (-----) [005] d..1 82318.419688: cpu_idle: state=0 cpu_id=5
134320          <idle>-0     (-----) [005] d.h2 82318.419701: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134321          <idle>-0     (-----) [005] d.h3 82318.419709: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
134322          <idle>-0     (-----) [005] dnh3 82318.419713: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134323          <idle>-0     (-----) [005] .n.1 82318.419720: cpu_idle: state=4294967295 cpu_id=5
134324          <idle>-0     (-----) [005] d..2 82318.419729: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
134325    RenderThread-16607 (10023) [005] .... 82318.419896: binder_transaction: transaction=1572953 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
134326    RenderThread-16607 (10023) [005] .... 82318.419900: binder_transaction_alloc_buf: transaction=1572953 data_size=192 offsets_size=8
134327    RenderThread-16607 (10023) [005] ...2 82318.419908: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
134328    RenderThread-16607 (10023) [005] d..4 82318.419911: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
134329    RenderThread-16607 (10023) [005] d..5 82318.419923: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
134330    RenderThread-16607 (10023) [005] d..2 82318.419935: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
134331   Binder:8858_1-8871  ( 8858) [005] .... 82318.419945: binder_transaction_received: transaction=1572953
134332   Binder:8858_1-8871  ( 8858) [005] .... 82318.420068: binder_transaction: transaction=1572954 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
134333   Binder:8858_1-8871  ( 8858) [005] .... 82318.420072: binder_transaction_alloc_buf: transaction=1572954 data_size=68 offsets_size=0
134334   Binder:8858_1-8871  ( 8858) [005] d..2 82318.420075: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134335   Binder:8858_1-8871  ( 8858) [005] d..3 82318.420085: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134336   Binder:8858_1-8871  ( 8858) [005] .... 82318.420088: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
134337   Binder:8858_1-8871  ( 8858) [005] d..2 82318.420119: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
134338    RenderThread-16607 (10023) [005] .... 82318.420128: binder_transaction_received: transaction=1572954
134339    RenderThread-16607 (10023) [005] d..2 82318.420202: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
134340          <idle>-0     (-----) [005] d..1 82318.420219: cpu_idle: state=0 cpu_id=5
134341          <idle>-0     (-----) [003] d.h2 82318.420933: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
134342          <idle>-0     (-----) [003] dnh3 82318.420948: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
134343          <idle>-0     (-----) [003] .n.1 82318.420957: cpu_idle: state=4294967295 cpu_id=3
134344          <idle>-0     (-----) [003] d..2 82318.420967: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
134345        DispSync-8879  ( 8858) [003] d..1 82318.420986: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134346        DispSync-8879  ( 8858) [003] d..2 82318.421001: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134347          <idle>-0     (-----) [002] .n.1 82318.421006: cpu_idle: state=4294967295 cpu_id=2
134348          <idle>-0     (-----) [002] d..2 82318.421017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
134349        DispSync-8879  ( 8858) [003] d..2 82318.421033: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134350          <idle>-0     (-----) [003] d..1 82318.421045: cpu_idle: state=0 cpu_id=3
134351   sfEventThread-8882  ( 8858) [002] d..3 82318.421055: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134352   sfEventThread-8882  ( 8858) [002] d..4 82318.421076: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134353          <idle>-0     (-----) [000] .n.1 82318.421083: cpu_idle: state=4294967295 cpu_id=0
134354          <idle>-0     (-----) [000] d..2 82318.421095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
134355   sfEventThread-8882  ( 8858) [002] d..2 82318.421108: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134356          <idle>-0     (-----) [002] d..1 82318.421122: cpu_idle: state=0 cpu_id=2
134357  surfaceflinger-8858  ( 8858) [000] d.h2 82318.421141: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
134358  surfaceflinger-8858  ( 8858) [000] d.h3 82318.421164: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
134359          <idle>-0     (-----) [003] .n.1 82318.421168: cpu_idle: state=4294967295 cpu_id=3
134360          <idle>-0     (-----) [003] d..2 82318.421179: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
134361 kgsl_worker_thr-258   (  258) [003] d..2 82318.421238: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134362 kgsl_worker_thr-258   (  258) [003] d..3 82318.421258: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134363 kgsl_worker_thr-258   (  258) [003] d..2 82318.421281: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
134364  kworker/u16:15-1311  ( 1311) [003] d..2 82318.421464: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134365          <idle>-0     (-----) [003] d..1 82318.421479: cpu_idle: state=0 cpu_id=3
134366  surfaceflinger-8858  ( 8858) [000] d..1 82318.421534: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134367  surfaceflinger-8858  ( 8858) [000] d..2 82318.421556: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134368          <idle>-0     (-----) [002] .n.1 82318.421561: cpu_idle: state=4294967295 cpu_id=2
134369          <idle>-0     (-----) [002] d..2 82318.421571: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
134370   sfEventThread-8882  ( 8858) [002] d..2 82318.421603: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134371          <idle>-0     (-----) [002] d..1 82318.421612: cpu_idle: state=0 cpu_id=2
134372  surfaceflinger-8858  ( 8858) [000] ...1 82318.421767: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
134373  surfaceflinger-8858  ( 8858) [000] ...1 82318.421832: tracing_mark_write: E|8858
134374  surfaceflinger-8858  ( 8858) [000] .... 82318.421900: binder_transaction: transaction=1572955 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
134375  surfaceflinger-8858  ( 8858) [000] .... 82318.421906: binder_transaction_alloc_buf: transaction=1572955 data_size=540 offsets_size=96
134376  surfaceflinger-8858  ( 8858) [000] ...2 82318.421932: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
134377  surfaceflinger-8858  ( 8858) [000] d..4 82318.421940: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
134378  surfaceflinger-8858  ( 8858) [000] d..5 82318.421961: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
134379          <idle>-0     (-----) [002] .n.1 82318.421966: cpu_idle: state=4294967295 cpu_id=2
134380          <idle>-0     (-----) [001] d.s3 82318.421969: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134381          <idle>-0     (-----) [002] d..2 82318.421977: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
134382 [email protected]   (  619) [002] .... 82318.421988: binder_transaction_received: transaction=1572955
134383          <idle>-0     (-----) [001] dns4 82318.421991: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134384  surfaceflinger-8858  ( 8858) [000] d..2 82318.422001: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134385          <idle>-0     (-----) [001] .n.1 82318.422006: cpu_idle: state=4294967295 cpu_id=1
134386          <idle>-0     (-----) [000] d..1 82318.422021: cpu_idle: state=0 cpu_id=0
134387          <idle>-0     (-----) [001] d..2 82318.422022: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
134388 [email protected]   (  619) [002] ...1 82318.422041: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
134389   cds_mc_thread-16565 (16565) [001] d.s2 82318.422065: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134390   cds_mc_thread-16565 (16565) [001] d.s3 82318.422077: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134391 [email protected]   (  619) [002] ...1 82318.422142: tracing_mark_write: B|619|HWCSession::PresentDisplay::
134392   cds_mc_thread-16565 (16565) [001] d..2 82318.422149: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134393     kworker/1:1-25249 (25249) [001] d..2 82318.422179: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134394     kworker/1:1-25249 (25249) [001] d..3 82318.422191: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134395     kworker/1:1-25249 (25249) [001] d..2 82318.422213: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134396 [email protected]   (  619) [002] ...1 82318.422301: tracing_mark_write: B|619|HWDeviceDRM::Commit::
134397 [email protected]   (  619) [002] ...1 82318.422314: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
134398 [email protected] (  798) [001] d..2 82318.422336: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134399          <idle>-0     (-----) [001] d..1 82318.422355: cpu_idle: state=0 cpu_id=1
134400 [email protected]   (  619) [002] d.s1 82318.422441: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
134401 [email protected]   (  619) [002] d.s2 82318.422464: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
134402          <idle>-0     (-----) [001] d.s3 82318.422729: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134403          <idle>-0     (-----) [001] dns4 82318.422740: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134404          <idle>-0     (-----) [001] .n.1 82318.422757: cpu_idle: state=4294967295 cpu_id=1
134405          <idle>-0     (-----) [001] d..2 82318.422771: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134406     kworker/1:1-25249 (25249) [001] d..2 82318.422797: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134407     kworker/1:1-25249 (25249) [001] d..3 82318.422808: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134408     kworker/1:1-25249 (25249) [001] d..2 82318.422831: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134409 [email protected]   (  619) [002] d..2 82318.422920: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134410 [email protected] (  798) [001] d..2 82318.422945: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134411 [email protected]   (  619) [002] d..3 82318.422945: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134412          <idle>-0     (-----) [003] .n.1 82318.422952: cpu_idle: state=4294967295 cpu_id=3
134413          <idle>-0     (-----) [001] d..1 82318.422963: cpu_idle: state=0 cpu_id=1
134414          <idle>-0     (-----) [003] d..2 82318.422964: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
134415 [email protected]   (  619) [002] ...1 82318.423051: tracing_mark_write: E|619
134416 [email protected]   (  619) [002] ...1 82318.423057: tracing_mark_write: E|619
134417 [email protected]   (  619) [002] ...1 82318.423117: tracing_mark_write: E|619
134418 [email protected]   (  619) [002] ...1 82318.423163: tracing_mark_write: E|619
134419 [email protected]   (  619) [002] .... 82318.423179: binder_transaction: transaction=1572956 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
134420 [email protected]   (  619) [002] .... 82318.423184: binder_transaction_alloc_buf: transaction=1572956 data_size=576 offsets_size=112
134421 [email protected]   (  619) [002] d..2 82318.423205: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134422 [email protected]   (  619) [002] d..3 82318.423226: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134423 [email protected]   (  619) [002] .... 82318.423232: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
134424          <idle>-0     (-----) [000] .n.1 82318.423233: cpu_idle: state=4294967295 cpu_id=0
134425          <idle>-0     (-----) [000] d..2 82318.423243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
134426  surfaceflinger-8858  ( 8858) [000] .... 82318.423253: binder_transaction_received: transaction=1572956
134427 [email protected]   (  619) [002] d..2 82318.423314: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
134428     ksoftirqd/2-26    (   26) [002] d..2 82318.423417: 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
134429          <idle>-0     (-----) [002] d..1 82318.423437: cpu_idle: state=0 cpu_id=2
134430 crtc_commit:111-321   (  321) [003] d..2 82318.423705: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
134431  surfaceflinger-8858  ( 8858) [000] d..2 82318.423709: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134432          <idle>-0     (-----) [003] d..1 82318.423716: cpu_idle: state=0 cpu_id=3
134433          <idle>-0     (-----) [000] d..1 82318.423731: cpu_idle: state=0 cpu_id=0
134434          <idle>-0     (-----) [001] d.s3 82318.423956: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134435          <idle>-0     (-----) [001] dns4 82318.423967: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134436          <idle>-0     (-----) [001] .n.1 82318.424017: cpu_idle: state=4294967295 cpu_id=1
134437          <idle>-0     (-----) [001] d..2 82318.424030: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134438     kworker/1:1-25249 (25249) [001] d..2 82318.424058: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134439     kworker/1:1-25249 (25249) [001] d..3 82318.424069: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134440     kworker/1:1-25249 (25249) [001] d..2 82318.424094: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134441 [email protected] (  798) [001] d..2 82318.424207: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134442          <idle>-0     (-----) [001] d..1 82318.424224: cpu_idle: state=0 cpu_id=1
134443          <idle>-0     (-----) [003] d.s2 82318.425139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134444          <idle>-0     (-----) [003] dns3 82318.425159: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134445          <idle>-0     (-----) [003] .n.1 82318.425175: cpu_idle: state=4294967295 cpu_id=3
134446          <idle>-0     (-----) [003] d..2 82318.425185: 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
134447     rcu_preempt-7     (    7) [003] d..2 82318.425196: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
134448     rcu_preempt-7     (    7) [003] d..3 82318.425212: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
134449     rcu_preempt-7     (    7) [003] d..2 82318.425224: 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
134450         rcuop/0-10    (   10) [003] d..2 82318.425234: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134451         rcuop/0-10    (   10) [003] d..3 82318.425246: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134452         rcuop/0-10    (   10) [003] d..2 82318.425254: 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
134453     rcu_preempt-7     (    7) [003] d..2 82318.425279: 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
134454          <idle>-0     (-----) [003] d..1 82318.425293: cpu_idle: state=0 cpu_id=3
134455          <idle>-0     (-----) [001] d.s3 82318.425362: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134456          <idle>-0     (-----) [001] dns4 82318.425374: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134457          <idle>-0     (-----) [001] .n.1 82318.425387: cpu_idle: state=4294967295 cpu_id=1
134458          <idle>-0     (-----) [001] d..2 82318.425401: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134459     kworker/1:1-25249 (25249) [001] d..2 82318.425427: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134460     kworker/1:1-25249 (25249) [001] d..3 82318.425439: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134461     kworker/1:1-25249 (25249) [001] d.s3 82318.425496: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134462     kworker/1:1-25249 (25249) [001] d.s4 82318.425518: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134463     kworker/1:1-25249 (25249) [001] d..2 82318.425536: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
134464   cds_mc_thread-16565 (16565) [001] d..2 82318.425574: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=002
134465   cds_mc_thread-16565 (16565) [001] d..3 82318.425617: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
134466   cds_mc_thread-16565 (16565) [001] d.s3 82318.425650: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134467   cds_mc_thread-16565 (16565) [001] d.s4 82318.425660: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134468   cds_mc_thread-16565 (16565) [001] d..2 82318.425697: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
134469 wlan_logging_th-647   (  647) [001] d..2 82318.425729: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134470     kworker/1:1-25249 (25249) [001] d..2 82318.425769: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134471          <idle>-0     (-----) [002] ...1 82318.425876: cpu_idle: state=4294967295 cpu_id=2
134472          <idle>-0     (-----) [002] d..1 82318.425883: cpu_idle: state=0 cpu_id=2
134473 [email protected] (  798) [001] d..2 82318.425981: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134474          <idle>-0     (-----) [001] d..1 82318.426001: cpu_idle: state=0 cpu_id=1
134475          <idle>-0     (-----) [002] d..2 82318.428855: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
134476          <idle>-0     (-----) [002] dn.3 82318.428867: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
134477          <idle>-0     (-----) [002] .n.1 82318.428871: cpu_idle: state=4294967295 cpu_id=2
134478          <idle>-0     (-----) [002] d..2 82318.428886: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
134479     ksoftirqd/2-26    (   26) [002] d.s2 82318.428895: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134480     ksoftirqd/2-26    (   26) [002] d.s3 82318.428934: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
134481     ksoftirqd/2-26    (   26) [002] d..2 82318.428949: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
134482          <idle>-0     (-----) [000] d.h5 82318.429014: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
134483          <idle>-0     (-----) [000] dnh6 82318.429040: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134484          <idle>-0     (-----) [000] dnh5 82318.429046: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134485          <idle>-0     (-----) [000] dnh6 82318.429060: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134486  kworker/u16:15-1311  ( 1311) [002] d..2 82318.429062: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134487          <idle>-0     (-----) [003] .n.1 82318.429067: cpu_idle: state=4294967295 cpu_id=3
134488          <idle>-0     (-----) [000] .n.1 82318.429074: cpu_idle: state=4294967295 cpu_id=0
134489          <idle>-0     (-----) [002] d..1 82318.429078: cpu_idle: state=0 cpu_id=2
134490          <idle>-0     (-----) [003] d..2 82318.429079: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
134491          <idle>-0     (-----) [000] d..2 82318.429088: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
134492  crtc_event:111-322   (  322) [000] d..2 82318.429120: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134493          <idle>-0     (-----) [000] d..1 82318.429133: cpu_idle: state=0 cpu_id=0
134494          <idle>-0     (-----) [001] d.s3 82318.429195: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134495          <idle>-0     (-----) [001] dns4 82318.429207: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134496          <idle>-0     (-----) [001] .n.1 82318.429220: cpu_idle: state=4294967295 cpu_id=1
134497 crtc_commit:111-321   (  321) [003] d..2 82318.429225: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
134498          <idle>-0     (-----) [003] d..1 82318.429235: cpu_idle: state=0 cpu_id=3
134499          <idle>-0     (-----) [001] d..2 82318.429237: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134500     kworker/1:1-25249 (25249) [001] d..2 82318.429293: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134501          <idle>-0     (-----) [002] ...1 82318.429296: cpu_idle: state=4294967295 cpu_id=2
134502          <idle>-0     (-----) [002] d..1 82318.429302: cpu_idle: state=0 cpu_id=2
134503     kworker/1:1-25249 (25249) [001] d..3 82318.429314: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134504     kworker/1:1-25249 (25249) [001] d..2 82318.429341: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
134505   cds_mc_thread-16565 (16565) [001] d..2 82318.429574: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134506          <idle>-0     (-----) [001] d..1 82318.429593: cpu_idle: state=0 cpu_id=1
134507          <idle>-0     (-----) [000] d.h5 82318.431345: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134508          <idle>-0     (-----) [000] d.h6 82318.431362: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134509          <idle>-0     (-----) [003] .n.1 82318.431368: cpu_idle: state=4294967295 cpu_id=3
134510          <idle>-0     (-----) [003] d..2 82318.431376: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
134511          <idle>-0     (-----) [000] ...1 82318.431380: cpu_idle: state=4294967295 cpu_id=0
134512          <idle>-0     (-----) [000] d..1 82318.431385: cpu_idle: state=0 cpu_id=0
134513 crtc_commit:111-321   (  321) [003] d..2 82318.431443: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134514          <idle>-0     (-----) [003] d..1 82318.431451: cpu_idle: state=0 cpu_id=3
134515          <idle>-0     (-----) [002] ...1 82318.431453: cpu_idle: state=4294967295 cpu_id=2
134516          <idle>-0     (-----) [002] d..1 82318.431458: cpu_idle: state=0 cpu_id=2
134517          <idle>-0     (-----) [000] d.h5 82318.431648: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134518          <idle>-0     (-----) [000] dnh6 82318.431657: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134519          <idle>-0     (-----) [000] .n.1 82318.431670: cpu_idle: state=4294967295 cpu_id=0
134520          <idle>-0     (-----) [000] d..2 82318.431680: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
134521  crtc_event:111-322   (  322) [000] d..2 82318.431703: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134522          <idle>-0     (-----) [000] d..1 82318.431712: cpu_idle: state=0 cpu_id=0
134523          <idle>-0     (-----) [001] d.s3 82318.431719: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134524          <idle>-0     (-----) [001] dns4 82318.431731: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134525          <idle>-0     (-----) [001] .n.1 82318.431746: cpu_idle: state=4294967295 cpu_id=1
134526          <idle>-0     (-----) [001] d..2 82318.431759: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134527          <idle>-0     (-----) [003] d.s3 82318.431876: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134528     kworker/1:1-25249 (25249) [001] d..2 82318.431894: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134529          <idle>-0     (-----) [003] d.s4 82318.431898: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134530          <idle>-0     (-----) [003] d.s2 82318.431901: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134531          <idle>-0     (-----) [000] .n.1 82318.431903: cpu_idle: state=4294967295 cpu_id=0
134532          <idle>-0     (-----) [000] d..2 82318.431915: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
134533          <idle>-0     (-----) [003] dns3 82318.431920: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134534          <idle>-0     (-----) [003] .n.1 82318.431931: cpu_idle: state=4294967295 cpu_id=3
134535          <idle>-0     (-----) [003] d..2 82318.431942: 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
134536     kworker/1:1-25249 (25249) [001] d..3 82318.431944: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
134537  crtc_event:111-322   (  322) [000] d..2 82318.431954: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
134538     rcu_preempt-7     (    7) [003] d..2 82318.431972: 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
134539          <idle>-0     (-----) [003] d..1 82318.431983: cpu_idle: state=0 cpu_id=3
134540     kworker/1:1-25249 (25249) [001] d..2 82318.431992: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134541          <idle>-0     (-----) [001] d..1 82318.432008: cpu_idle: state=0 cpu_id=1
134542   cds_mc_thread-16565 (16565) [000] d..2 82318.432105: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134543          <idle>-0     (-----) [000] d..1 82318.432122: cpu_idle: state=0 cpu_id=0
134544          <idle>-0     (-----) [003] d.h2 82318.433401: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
134545          <idle>-0     (-----) [003] dnh3 82318.433414: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
134546          <idle>-0     (-----) [003] .n.1 82318.433422: cpu_idle: state=4294967295 cpu_id=3
134547          <idle>-0     (-----) [003] d..2 82318.433431: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
134548        DispSync-8879  ( 8858) [003] d..1 82318.433448: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
134549        DispSync-8879  ( 8858) [003] d..2 82318.433462: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
134550          <idle>-0     (-----) [002] .n.1 82318.433468: cpu_idle: state=4294967295 cpu_id=2
134551          <idle>-0     (-----) [002] d..2 82318.433481: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
134552        DispSync-8879  ( 8858) [003] d..2 82318.433492: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134553          <idle>-0     (-----) [003] d..1 82318.433503: cpu_idle: state=0 cpu_id=3
134554  appEventThread-8881  ( 8858) [002] d..3 82318.433537: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134555          <idle>-0     (-----) [004] dnh2 82318.433568: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134556          <idle>-0     (-----) [004] .n.1 82318.433572: cpu_idle: state=4294967295 cpu_id=4
134557          <idle>-0     (-----) [004] d..2 82318.433581: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
134558  appEventThread-8881  ( 8858) [002] d..2 82318.433601: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134559          <idle>-0     (-----) [002] d..1 82318.433616: cpu_idle: state=0 cpu_id=2
134560 s.nexuslauncher-10023 (10023) [004] .... 82318.433791: binder_transaction: transaction=1572957 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
134561 s.nexuslauncher-10023 (10023) [004] .... 82318.433796: binder_transaction_alloc_buf: transaction=1572957 data_size=80 offsets_size=0
134562 s.nexuslauncher-10023 (10023) [004] d..4 82318.433801: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
134563          <idle>-0     (-----) [000] dnh2 82318.433868: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
134564          <idle>-0     (-----) [000] .n.1 82318.433875: cpu_idle: state=4294967295 cpu_id=0
134565          <idle>-0     (-----) [000] d..2 82318.433886: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
134566 s.nexuslauncher-10023 (10023) [004] d..3 82318.433888: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134567   Binder:8858_1-8871  ( 8858) [000] .... 82318.433895: binder_transaction_received: transaction=1572957
134568 s.nexuslauncher-10023 (10023) [004] d..4 82318.433904: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134569          <idle>-0     (-----) [005] .n.1 82318.433910: cpu_idle: state=4294967295 cpu_id=5
134570          <idle>-0     (-----) [005] d..2 82318.433922: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
134571   Binder:8858_1-8871  ( 8858) [000] d..1 82318.433935: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
134572    RenderThread-16607 (10023) [005] d..2 82318.433950: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
134573   Binder:8858_1-8871  ( 8858) [000] d..2 82318.433955: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
134574          <idle>-0     (-----) [005] d..1 82318.433958: cpu_idle: state=0 cpu_id=5
134575          <idle>-0     (-----) [002] .n.1 82318.433961: cpu_idle: state=4294967295 cpu_id=2
134576          <idle>-0     (-----) [002] d..2 82318.433971: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
134577   Binder:8858_1-8871  ( 8858) [000] d..2 82318.434001: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134578  appEventThread-8881  ( 8858) [002] d..2 82318.434010: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134579          <idle>-0     (-----) [000] d..1 82318.434017: cpu_idle: state=0 cpu_id=0
134580          <idle>-0     (-----) [002] d..1 82318.434020: cpu_idle: state=0 cpu_id=2
134581          <idle>-0     (-----) [002] ...1 82318.434218: cpu_idle: state=4294967295 cpu_id=2
134582          <idle>-0     (-----) [002] d..1 82318.434224: cpu_idle: state=0 cpu_id=2
134583 s.nexuslauncher-10023 (10023) [004] d..3 82318.434238: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134584 s.nexuslauncher-10023 (10023) [004] d..4 82318.434257: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134585          <idle>-0     (-----) [005] .n.1 82318.434262: cpu_idle: state=4294967295 cpu_id=5
134586          <idle>-0     (-----) [005] d..2 82318.434270: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
134587 s.nexuslauncher-10023 (10023) [004] d..2 82318.434284: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
134588          <idle>-0     (-----) [004] d..1 82318.434301: cpu_idle: state=0 cpu_id=4
134589          <idle>-0     (-----) [001] d.s3 82318.434321: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134590          <idle>-0     (-----) [001] dns4 82318.434332: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134591          <idle>-0     (-----) [001] .n.1 82318.434345: cpu_idle: state=4294967295 cpu_id=1
134592          <idle>-0     (-----) [001] d..2 82318.434358: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134593     kworker/1:1-25249 (25249) [001] d..2 82318.434399: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
134594     kworker/1:1-25249 (25249) [001] d..3 82318.434437: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134595    RenderThread-16607 (10023) [005] d..1 82318.434439: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134596    RenderThread-16607 (10023) [005] d..2 82318.434457: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134597     kworker/1:1-25249 (25249) [001] d..2 82318.434460: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
134598          <idle>-0     (-----) [004] .n.1 82318.434463: cpu_idle: state=4294967295 cpu_id=4
134599          <idle>-0     (-----) [004] d..2 82318.434472: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
134600    RenderThread-16607 (10023) [005] .... 82318.434507: binder_transaction: transaction=1572958 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
134601    RenderThread-16607 (10023) [005] .... 82318.434511: binder_transaction_alloc_buf: transaction=1572958 data_size=104 offsets_size=0
134602    RenderThread-16607 (10023) [005] ...2 82318.434514: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
134603    RenderThread-16607 (10023) [005] d..4 82318.434518: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
134604   cds_mc_thread-16565 (16565) [001] d..2 82318.434528: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
134605    RenderThread-16607 (10023) [005] d..5 82318.434537: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
134606   cds_mc_thread-16565 (16565) [001] d..3 82318.434581: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
134607    RenderThread-16607 (10023) [005] d..2 82318.434587: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
134608 s.nexuslauncher-10023 (10023) [004] d..2 82318.434590: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
134609   Binder:8858_1-8871  ( 8858) [005] .... 82318.434600: binder_transaction_received: transaction=1572958
134610          <idle>-0     (-----) [004] d..1 82318.434600: cpu_idle: state=0 cpu_id=4
134611   Binder:8858_1-8871  ( 8858) [005] .... 82318.434660: binder_transaction: transaction=1572959 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
134612   Binder:8858_1-8871  ( 8858) [005] .... 82318.434664: binder_transaction_alloc_buf: transaction=1572959 data_size=52 offsets_size=8
134613   Binder:8858_1-8871  ( 8858) [005] d..2 82318.434671: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134614   cds_mc_thread-16565 (16565) [001] d..2 82318.434676: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
134615   Binder:8858_1-8871  ( 8858) [005] d..3 82318.434682: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134616   Binder:8858_1-8871  ( 8858) [005] .... 82318.434684: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
134617   Binder:8858_1-8871  ( 8858) [005] d..2 82318.434694: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
134618 wlan_logging_th-647   (  647) [001] d..2 82318.434695: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134619    RenderThread-16607 (10023) [005] .... 82318.434703: binder_transaction_received: transaction=1572959
134620 wlan_logging_th-647   (  647) [001] d..3 82318.434708: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134621 wlan_logging_th-647   (  647) [001] d..2 82318.434725: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134622 [email protected] (  798) [001] d..2 82318.434793: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134623          <idle>-0     (-----) [001] d..1 82318.434813: cpu_idle: state=0 cpu_id=1
134624    RenderThread-16607 (10023) [005] d..2 82318.436073: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
134625   Binder:8858_1-8871  ( 8858) [005] d..2 82318.436148: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
134626          <idle>-0     (-----) [005] d.h2 82318.436165: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134627          <idle>-0     (-----) [005] d.h3 82318.436174: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
134628          <idle>-0     (-----) [005] dnh3 82318.436178: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134629          <idle>-0     (-----) [005] d..2 82318.436195: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
134630    RenderThread-16607 (10023) [005] .... 82318.436354: binder_transaction: transaction=1572960 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
134631    RenderThread-16607 (10023) [005] .... 82318.436358: binder_transaction_alloc_buf: transaction=1572960 data_size=192 offsets_size=8
134632    RenderThread-16607 (10023) [005] ...2 82318.436365: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
134633    RenderThread-16607 (10023) [005] d..4 82318.436369: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
134634    RenderThread-16607 (10023) [005] d..5 82318.436380: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
134635    RenderThread-16607 (10023) [005] d..2 82318.436392: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
134636   Binder:8858_1-8871  ( 8858) [005] .... 82318.436402: binder_transaction_received: transaction=1572960
134637          <idle>-0     (-----) [002] ...1 82318.436515: cpu_idle: state=4294967295 cpu_id=2
134638          <idle>-0     (-----) [002] d..1 82318.436521: cpu_idle: state=0 cpu_id=2
134639   Binder:8858_1-8871  ( 8858) [005] .... 82318.436528: binder_transaction: transaction=1572961 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
134640   Binder:8858_1-8871  ( 8858) [005] .... 82318.436532: binder_transaction_alloc_buf: transaction=1572961 data_size=68 offsets_size=0
134641   Binder:8858_1-8871  ( 8858) [005] d..2 82318.436535: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134642   Binder:8858_1-8871  ( 8858) [005] d..3 82318.436545: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134643   Binder:8858_1-8871  ( 8858) [005] .... 82318.436548: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
134644   Binder:8858_1-8871  ( 8858) [005] d..2 82318.436579: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
134645    RenderThread-16607 (10023) [005] .... 82318.436589: binder_transaction_received: transaction=1572961
134646          <idle>-0     (-----) [001] d.s3 82318.436621: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134647          <idle>-0     (-----) [001] dns4 82318.436633: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134648          <idle>-0     (-----) [001] .n.1 82318.436647: cpu_idle: state=4294967295 cpu_id=1
134649    RenderThread-16607 (10023) [005] d..2 82318.436660: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
134650          <idle>-0     (-----) [001] d..2 82318.436661: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134651          <idle>-0     (-----) [005] d..1 82318.436678: cpu_idle: state=0 cpu_id=5
134652     kworker/1:1-25249 (25249) [001] d..2 82318.436708: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134653     kworker/1:1-25249 (25249) [001] d..3 82318.436729: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134654     kworker/1:1-25249 (25249) [001] d..2 82318.436752: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
134655   cds_mc_thread-16565 (16565) [001] d..2 82318.436912: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134656          <idle>-0     (-----) [001] d..1 82318.436932: cpu_idle: state=0 cpu_id=1
134657          <idle>-0     (-----) [003] d.h2 82318.437398: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
134658          <idle>-0     (-----) [003] dnh3 82318.437410: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
134659          <idle>-0     (-----) [003] .n.1 82318.437418: cpu_idle: state=4294967295 cpu_id=3
134660          <idle>-0     (-----) [003] d..2 82318.437428: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
134661        DispSync-8879  ( 8858) [003] d..1 82318.437439: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134662        DispSync-8879  ( 8858) [003] d..2 82318.437453: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134663          <idle>-0     (-----) [002] .n.1 82318.437459: cpu_idle: state=4294967295 cpu_id=2
134664          <idle>-0     (-----) [002] d..2 82318.437471: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
134665        DispSync-8879  ( 8858) [003] d..2 82318.437482: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134666          <idle>-0     (-----) [003] d..1 82318.437491: cpu_idle: state=0 cpu_id=3
134667   sfEventThread-8882  ( 8858) [002] d..3 82318.437513: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134668   sfEventThread-8882  ( 8858) [002] d..4 82318.437536: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134669          <idle>-0     (-----) [000] .n.1 82318.437541: cpu_idle: state=4294967295 cpu_id=0
134670          <idle>-0     (-----) [000] d..2 82318.437554: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
134671   sfEventThread-8882  ( 8858) [002] d..2 82318.437573: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134672          <idle>-0     (-----) [002] d..1 82318.437587: cpu_idle: state=0 cpu_id=2
134673  surfaceflinger-8858  ( 8858) [000] d.h2 82318.437612: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
134674  surfaceflinger-8858  ( 8858) [000] d.h3 82318.437636: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
134675          <idle>-0     (-----) [003] .n.1 82318.437642: cpu_idle: state=4294967295 cpu_id=3
134676          <idle>-0     (-----) [003] d..2 82318.437650: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
134677 kgsl_worker_thr-258   (  258) [003] d..2 82318.437708: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
134678 kgsl_worker_thr-258   (  258) [003] d..3 82318.437748: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134679 kgsl_worker_thr-258   (  258) [003] d..2 82318.437770: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
134680  kworker/u16:15-1311  ( 1311) [003] d..2 82318.437947: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134681          <idle>-0     (-----) [003] d..1 82318.437959: cpu_idle: state=0 cpu_id=3
134682  surfaceflinger-8858  ( 8858) [000] d..1 82318.437973: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134683  surfaceflinger-8858  ( 8858) [000] d..2 82318.437995: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134684          <idle>-0     (-----) [002] .n.1 82318.438000: cpu_idle: state=4294967295 cpu_id=2
134685          <idle>-0     (-----) [002] d..2 82318.438011: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
134686   sfEventThread-8882  ( 8858) [002] d..2 82318.438045: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134687          <idle>-0     (-----) [002] d..1 82318.438055: cpu_idle: state=0 cpu_id=2
134688  surfaceflinger-8858  ( 8858) [000] ...1 82318.438200: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
134689  surfaceflinger-8858  ( 8858) [000] ...1 82318.438208: tracing_mark_write: E|8858
134690  surfaceflinger-8858  ( 8858) [000] .... 82318.438275: binder_transaction: transaction=1572962 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
134691  surfaceflinger-8858  ( 8858) [000] .... 82318.438281: binder_transaction_alloc_buf: transaction=1572962 data_size=540 offsets_size=96
134692  surfaceflinger-8858  ( 8858) [000] ...2 82318.438308: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
134693  surfaceflinger-8858  ( 8858) [000] d..4 82318.438316: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
134694  surfaceflinger-8858  ( 8858) [000] d..5 82318.438339: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
134695          <idle>-0     (-----) [002] .n.1 82318.438344: cpu_idle: state=4294967295 cpu_id=2
134696          <idle>-0     (-----) [002] d..2 82318.438353: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
134697 [email protected]   (  619) [002] .... 82318.438365: binder_transaction_received: transaction=1572962
134698  surfaceflinger-8858  ( 8858) [000] d..2 82318.438374: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134699          <idle>-0     (-----) [000] d..1 82318.438395: cpu_idle: state=0 cpu_id=0
134700 [email protected]   (  619) [002] ...1 82318.438418: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
134701          <idle>-0     (-----) [003] d.s2 82318.438472: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134702 [email protected]   (  619) [002] d.s2 82318.438488: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134703          <idle>-0     (-----) [003] dns3 82318.438490: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134704          <idle>-0     (-----) [003] .n.1 82318.438502: cpu_idle: state=4294967295 cpu_id=3
134705          <idle>-0     (-----) [003] d..2 82318.438511: 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
134706     rcu_preempt-7     (    7) [003] d..2 82318.438524: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
134707 [email protected]   (  619) [002] d.s3 82318.438524: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134708     rcu_preempt-7     (    7) [003] d..3 82318.438544: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
134709     rcu_preempt-7     (    7) [003] d..2 82318.438555: 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
134710         rcuop/0-10    (   10) [003] d..2 82318.438565: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134711         rcuop/0-10    (   10) [003] d..3 82318.438576: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134712         rcuop/0-10    (   10) [003] d..2 82318.438584: 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
134713     rcu_preempt-7     (    7) [003] d..2 82318.438597: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
134714 [email protected]   (  619) [002] ...1 82318.438652: tracing_mark_write: B|619|HWCSession::PresentDisplay::
134715  kworker/u16:15-1311  ( 1311) [003] d..2 82318.438757: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134716          <idle>-0     (-----) [003] d..1 82318.438773: cpu_idle: state=0 cpu_id=3
134717 [email protected]   (  619) [002] ...1 82318.438827: tracing_mark_write: B|619|HWDeviceDRM::Commit::
134718 [email protected]   (  619) [002] ...1 82318.438840: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
134719 [email protected]   (  619) [002] d.s1 82318.439126: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
134720 [email protected]   (  619) [002] d.s2 82318.439146: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
134721          <idle>-0     (-----) [001] d.s3 82318.439247: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134722          <idle>-0     (-----) [001] dns4 82318.439259: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134723          <idle>-0     (-----) [001] .n.1 82318.439288: cpu_idle: state=4294967295 cpu_id=1
134724          <idle>-0     (-----) [001] d..2 82318.439302: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134725     kworker/1:1-25249 (25249) [001] d..2 82318.439332: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134726     kworker/1:1-25249 (25249) [001] d..3 82318.439344: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134727     kworker/1:1-25249 (25249) [001] d..2 82318.439391: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134728     kworker/1:1-25249 (25249) [001] d..3 82318.439429: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=002
134729 [email protected]   (  619) [002] d..2 82318.439431: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134730     kworker/1:1-25249 (25249) [001] d..2 82318.439450: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134731 [email protected]   (  619) [002] d..3 82318.439458: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134732          <idle>-0     (-----) [003] .n.1 82318.439465: cpu_idle: state=4294967295 cpu_id=3
134733          <idle>-0     (-----) [003] d..2 82318.439477: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
134734 [email protected]   (  619) [002] ...1 82318.439569: tracing_mark_write: E|619
134735 [email protected]   (  619) [002] ...1 82318.439576: tracing_mark_write: E|619
134736 [email protected] (  798) [001] d..2 82318.439580: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134737          <idle>-0     (-----) [001] d..1 82318.439600: cpu_idle: state=0 cpu_id=1
134738 [email protected]   (  619) [002] ...1 82318.439635: tracing_mark_write: E|619
134739 [email protected]   (  619) [002] ...1 82318.439680: tracing_mark_write: E|619
134740 [email protected]   (  619) [002] .... 82318.439697: binder_transaction: transaction=1572963 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
134741 [email protected]   (  619) [002] .... 82318.439702: binder_transaction_alloc_buf: transaction=1572963 data_size=576 offsets_size=112
134742 [email protected]   (  619) [002] d..2 82318.439724: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134743 [email protected]   (  619) [002] d..3 82318.439745: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134744 [email protected]   (  619) [002] .... 82318.439750: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
134745          <idle>-0     (-----) [000] .n.1 82318.439751: cpu_idle: state=4294967295 cpu_id=0
134746          <idle>-0     (-----) [000] d..2 82318.439764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
134747  surfaceflinger-8858  ( 8858) [000] .... 82318.439774: binder_transaction_received: transaction=1572963
134748 [email protected]   (  619) [002] d..2 82318.439830: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
134749     ksoftirqd/2-26    (   26) [002] d..2 82318.439892: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
134750   cds_mc_thread-16565 (16565) [002] d..3 82318.440030: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
134751   cds_mc_thread-16565 (16565) [002] d..4 82318.440061: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
134752   cds_mc_thread-16565 (16565) [002] d..2 82318.440091: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
134753         rcuop/2-29    (   29) [002] d..2 82318.440120: 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
134754          <idle>-0     (-----) [002] d..1 82318.440141: cpu_idle: state=0 cpu_id=2
134755 crtc_commit:111-321   (  321) [003] d..2 82318.440209: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
134756  surfaceflinger-8858  ( 8858) [000] d..2 82318.440213: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134757          <idle>-0     (-----) [003] d..1 82318.440223: cpu_idle: state=0 cpu_id=3
134758          <idle>-0     (-----) [000] d..1 82318.440235: cpu_idle: state=0 cpu_id=0
134759          <idle>-0     (-----) [002] ...1 82318.441597: cpu_idle: state=4294967295 cpu_id=2
134760          <idle>-0     (-----) [002] d..1 82318.441601: cpu_idle: state=0 cpu_id=2
134761          <idle>-0     (-----) [001] d..2 82318.442921: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
134762          <idle>-0     (-----) [001] dn.3 82318.442936: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
134763          <idle>-0     (-----) [001] .n.1 82318.442940: cpu_idle: state=4294967295 cpu_id=1
134764          <idle>-0     (-----) [001] d..2 82318.442954: 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
134765     ksoftirqd/1-18    (   18) [001] d..2 82318.442989: 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
134766          <idle>-0     (-----) [001] d..1 82318.442999: cpu_idle: state=0 cpu_id=1
134767          <idle>-0     (-----) [003] d.s2 82318.445136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134768          <idle>-0     (-----) [003] dns3 82318.445156: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134769          <idle>-0     (-----) [003] .n.1 82318.445177: cpu_idle: state=4294967295 cpu_id=3
134770          <idle>-0     (-----) [003] d..2 82318.445189: 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
134771     rcu_preempt-7     (    7) [003] d..2 82318.445202: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
134772     rcu_preempt-7     (    7) [003] d..3 82318.445217: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
134773     rcu_preempt-7     (    7) [003] d..2 82318.445231: 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
134774         rcuop/0-10    (   10) [003] d..2 82318.445236: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
134775         rcuop/0-10    (   10) [003] d..3 82318.445275: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
134776         rcuop/0-10    (   10) [003] d..2 82318.445291: 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
134777         rcuop/1-21    (   21) [003] d..2 82318.445324: 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
134778          <idle>-0     (-----) [003] d..1 82318.445336: cpu_idle: state=0 cpu_id=3
134779          <idle>-0     (-----) [000] d.h5 82318.445494: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134780          <idle>-0     (-----) [000] dnh6 82318.445509: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134781          <idle>-0     (-----) [000] dnh5 82318.445513: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134782          <idle>-0     (-----) [000] dnh6 82318.445527: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134783          <idle>-0     (-----) [003] .n.1 82318.445534: cpu_idle: state=4294967295 cpu_id=3
134784          <idle>-0     (-----) [000] .n.1 82318.445542: cpu_idle: state=4294967295 cpu_id=0
134785          <idle>-0     (-----) [003] d..2 82318.445544: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
134786          <idle>-0     (-----) [000] d..2 82318.445556: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
134787  crtc_event:111-322   (  322) [000] d..2 82318.445587: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134788          <idle>-0     (-----) [000] d..1 82318.445600: cpu_idle: state=0 cpu_id=0
134789 crtc_commit:111-321   (  321) [003] d..2 82318.445687: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
134790          <idle>-0     (-----) [003] d..1 82318.445697: cpu_idle: state=0 cpu_id=3
134791          <idle>-0     (-----) [002] ...1 82318.445924: cpu_idle: state=4294967295 cpu_id=2
134792          <idle>-0     (-----) [002] d..1 82318.445930: cpu_idle: state=0 cpu_id=2
134793          <idle>-0     (-----) [000] d.h5 82318.447814: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134794          <idle>-0     (-----) [000] d.h6 82318.447831: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
134795          <idle>-0     (-----) [003] .n.1 82318.447837: cpu_idle: state=4294967295 cpu_id=3
134796          <idle>-0     (-----) [003] d..2 82318.447844: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
134797          <idle>-0     (-----) [000] ...1 82318.447846: cpu_idle: state=4294967295 cpu_id=0
134798          <idle>-0     (-----) [000] d..1 82318.447851: cpu_idle: state=0 cpu_id=0
134799 crtc_commit:111-321   (  321) [003] d..2 82318.447907: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134800          <idle>-0     (-----) [003] d..1 82318.447916: cpu_idle: state=0 cpu_id=3
134801          <idle>-0     (-----) [000] d.h5 82318.448118: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134802          <idle>-0     (-----) [000] dnh6 82318.448128: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134803          <idle>-0     (-----) [000] .n.1 82318.448140: cpu_idle: state=4294967295 cpu_id=0
134804          <idle>-0     (-----) [000] d..2 82318.448150: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
134805  crtc_event:111-322   (  322) [000] d..2 82318.448173: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134806          <idle>-0     (-----) [000] d..1 82318.448183: cpu_idle: state=0 cpu_id=0
134807          <idle>-0     (-----) [003] d.s3 82318.448472: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134808          <idle>-0     (-----) [003] d.s4 82318.448493: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
134809          <idle>-0     (-----) [000] .n.1 82318.448498: cpu_idle: state=4294967295 cpu_id=0
134810          <idle>-0     (-----) [003] d.s3 82318.448499: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134811          <idle>-0     (-----) [000] d..2 82318.448509: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
134812          <idle>-0     (-----) [003] dns4 82318.448515: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134813          <idle>-0     (-----) [003] .n.1 82318.448526: cpu_idle: state=4294967295 cpu_id=3
134814          <idle>-0     (-----) [003] d..2 82318.448536: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
134815  crtc_event:111-322   (  322) [000] d..2 82318.448539: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134816          <idle>-0     (-----) [000] d..1 82318.448548: cpu_idle: state=0 cpu_id=0
134817  kworker/u16:15-1311  ( 1311) [003] d..2 82318.448623: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134818          <idle>-0     (-----) [003] d..1 82318.448633: cpu_idle: state=0 cpu_id=3
134819          <idle>-0     (-----) [003] d.h2 82318.449861: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
134820          <idle>-0     (-----) [003] dnh3 82318.449873: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
134821          <idle>-0     (-----) [003] .n.1 82318.449881: cpu_idle: state=4294967295 cpu_id=3
134822          <idle>-0     (-----) [003] d..2 82318.449888: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
134823        DispSync-8879  ( 8858) [003] d..1 82318.449903: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
134824        DispSync-8879  ( 8858) [003] d..2 82318.449916: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
134825          <idle>-0     (-----) [002] .n.1 82318.449922: cpu_idle: state=4294967295 cpu_id=2
134826          <idle>-0     (-----) [002] d..2 82318.449935: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
134827        DispSync-8879  ( 8858) [003] d..2 82318.449950: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134828          <idle>-0     (-----) [003] d..1 82318.449959: cpu_idle: state=0 cpu_id=3
134829  appEventThread-8881  ( 8858) [002] d..3 82318.449992: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134830          <idle>-0     (-----) [004] dnh2 82318.450020: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134831          <idle>-0     (-----) [004] .n.1 82318.450025: cpu_idle: state=4294967295 cpu_id=4
134832          <idle>-0     (-----) [004] d..2 82318.450034: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
134833  appEventThread-8881  ( 8858) [002] d..2 82318.450056: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134834          <idle>-0     (-----) [002] d..1 82318.450071: cpu_idle: state=0 cpu_id=2
134835 s.nexuslauncher-10023 (10023) [004] .... 82318.450240: binder_transaction: transaction=1572964 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
134836 s.nexuslauncher-10023 (10023) [004] .... 82318.450245: binder_transaction_alloc_buf: transaction=1572964 data_size=80 offsets_size=0
134837 s.nexuslauncher-10023 (10023) [004] d..4 82318.450251: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
134838 s.nexuslauncher-10023 (10023) [004] d.h5 82318.450316: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
134839          <idle>-0     (-----) [000] dnh2 82318.450320: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
134840          <idle>-0     (-----) [000] .n.1 82318.450326: cpu_idle: state=4294967295 cpu_id=0
134841          <idle>-0     (-----) [000] d..2 82318.450336: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
134842          <idle>-0     (-----) [003] dnh2 82318.450341: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
134843   Binder:8858_1-8871  ( 8858) [000] .... 82318.450345: binder_transaction_received: transaction=1572964
134844          <idle>-0     (-----) [003] .n.1 82318.450347: cpu_idle: state=4294967295 cpu_id=3
134845          <idle>-0     (-----) [003] d..2 82318.450353: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
134846 s.nexuslauncher-10023 (10023) [004] d..3 82318.450358: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134847 s.nexuslauncher-10023 (10023) [004] d..4 82318.450374: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134848          <idle>-0     (-----) [005] .n.1 82318.450380: cpu_idle: state=4294967295 cpu_id=5
134849   Binder:8858_1-8871  ( 8858) [000] d..1 82318.450384: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
134850         sugov:0-576   (  576) [003] .... 82318.450389: clk_set_rate: pwrcl_clk 748800000
134851          <idle>-0     (-----) [005] d..2 82318.450392: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
134852   Binder:8858_1-8871  ( 8858) [000] d..2 82318.450402: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
134853         sugov:0-576   (  576) [003] .... 82318.450406: clk_set_rate: cpu3_pwrcl_clk 1056000000
134854          <idle>-0     (-----) [002] .n.1 82318.450408: cpu_idle: state=4294967295 cpu_id=2
134855         sugov:0-576   (  576) [003] .... 82318.450417: clk_set_rate: cpu2_pwrcl_clk 1056000000
134856          <idle>-0     (-----) [002] d..2 82318.450419: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
134857         sugov:0-576   (  576) [003] .... 82318.450425: clk_set_rate: cpu1_pwrcl_clk 1056000000
134858    RenderThread-16607 (10023) [005] d..2 82318.450427: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
134859         sugov:0-576   (  576) [003] .... 82318.450432: clk_set_rate: cpu0_pwrcl_clk 748800000
134860          <idle>-0     (-----) [005] d..1 82318.450435: cpu_idle: state=0 cpu_id=5
134861   Binder:8858_1-8871  ( 8858) [000] d..2 82318.450455: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134862  appEventThread-8881  ( 8858) [002] d..2 82318.450475: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134863          <idle>-0     (-----) [000] d..1 82318.450478: cpu_idle: state=0 cpu_id=0
134864          <idle>-0     (-----) [002] d..1 82318.450490: cpu_idle: state=0 cpu_id=2
134865         sugov:0-576   (  576) [003] .... 82318.450546: cpu_frequency: state=748800 cpu_id=0
134866         sugov:0-576   (  576) [003] .... 82318.450568: cpu_frequency: state=748800 cpu_id=1
134867         sugov:0-576   (  576) [003] .... 82318.450573: cpu_frequency: state=748800 cpu_id=2
134868         sugov:0-576   (  576) [003] .... 82318.450578: cpu_frequency: state=748800 cpu_id=3
134869 s.nexuslauncher-10023 (10023) [004] d..3 82318.450598: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134870         sugov:0-576   (  576) [003] d..2 82318.450610: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134871 s.nexuslauncher-10023 (10023) [004] d..4 82318.450616: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134872          <idle>-0     (-----) [005] .n.1 82318.450620: cpu_idle: state=4294967295 cpu_id=5
134873          <idle>-0     (-----) [003] d..1 82318.450621: cpu_idle: state=0 cpu_id=3
134874          <idle>-0     (-----) [005] d..2 82318.450630: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
134875 s.nexuslauncher-10023 (10023) [004] d..2 82318.450642: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
134876          <idle>-0     (-----) [004] d..1 82318.450659: cpu_idle: state=0 cpu_id=4
134877    RenderThread-16607 (10023) [005] d..1 82318.450785: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134878    RenderThread-16607 (10023) [005] d..2 82318.450803: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
134879          <idle>-0     (-----) [004] .n.1 82318.450810: cpu_idle: state=4294967295 cpu_id=4
134880          <idle>-0     (-----) [004] d..2 82318.450819: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
134881    RenderThread-16607 (10023) [005] .... 82318.450851: binder_transaction: transaction=1572965 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
134882    RenderThread-16607 (10023) [005] .... 82318.450855: binder_transaction_alloc_buf: transaction=1572965 data_size=104 offsets_size=0
134883    RenderThread-16607 (10023) [005] ...2 82318.450859: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
134884    RenderThread-16607 (10023) [005] d..4 82318.450862: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
134885    RenderThread-16607 (10023) [005] d..5 82318.450881: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
134886 s.nexuslauncher-10023 (10023) [004] d..2 82318.450927: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
134887    RenderThread-16607 (10023) [005] d..2 82318.450929: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
134888          <idle>-0     (-----) [004] d..1 82318.450937: cpu_idle: state=0 cpu_id=4
134889   Binder:8858_1-8871  ( 8858) [005] .... 82318.450941: binder_transaction_received: transaction=1572965
134890   Binder:8858_1-8871  ( 8858) [005] .... 82318.450999: binder_transaction: transaction=1572966 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
134891   Binder:8858_1-8871  ( 8858) [005] .... 82318.451003: binder_transaction_alloc_buf: transaction=1572966 data_size=52 offsets_size=8
134892   Binder:8858_1-8871  ( 8858) [005] d..2 82318.451010: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134893   Binder:8858_1-8871  ( 8858) [005] d..3 82318.451020: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134894   Binder:8858_1-8871  ( 8858) [005] .... 82318.451023: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
134895   Binder:8858_1-8871  ( 8858) [005] d..2 82318.451032: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
134896    RenderThread-16607 (10023) [005] .... 82318.451041: binder_transaction_received: transaction=1572966
134897          <idle>-0     (-----) [003] d.s2 82318.451885: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134898          <idle>-0     (-----) [003] dns3 82318.451909: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
134899          <idle>-0     (-----) [003] .n.1 82318.451919: cpu_idle: state=4294967295 cpu_id=3
134900          <idle>-0     (-----) [003] d..2 82318.451931: 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
134901     rcu_preempt-7     (    7) [003] d..2 82318.451972: 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
134902          <idle>-0     (-----) [003] d..1 82318.451986: cpu_idle: state=0 cpu_id=3
134903    RenderThread-16607 (10023) [005] d..2 82318.452366: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
134904   Binder:8858_1-8871  ( 8858) [005] d..2 82318.452438: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
134905          <idle>-0     (-----) [005] d..1 82318.452452: cpu_idle: state=0 cpu_id=5
134906          <idle>-0     (-----) [005] d.h2 82318.452465: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134907          <idle>-0     (-----) [005] d.h3 82318.452474: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
134908          <idle>-0     (-----) [005] dnh3 82318.452478: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134909          <idle>-0     (-----) [005] .n.1 82318.452485: cpu_idle: state=4294967295 cpu_id=5
134910          <idle>-0     (-----) [005] d..2 82318.452493: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
134911          <idle>-0     (-----) [002] ...1 82318.452626: cpu_idle: state=4294967295 cpu_id=2
134912          <idle>-0     (-----) [002] d..1 82318.452634: cpu_idle: state=0 cpu_id=2
134913    RenderThread-16607 (10023) [005] .... 82318.452650: binder_transaction: transaction=1572967 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
134914    RenderThread-16607 (10023) [005] .... 82318.452655: binder_transaction_alloc_buf: transaction=1572967 data_size=192 offsets_size=8
134915    RenderThread-16607 (10023) [005] ...2 82318.452662: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
134916    RenderThread-16607 (10023) [005] d..4 82318.452665: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
134917    RenderThread-16607 (10023) [005] d..5 82318.452676: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
134918    RenderThread-16607 (10023) [005] d..2 82318.452688: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
134919   Binder:8858_1-8871  ( 8858) [005] .... 82318.452698: binder_transaction_received: transaction=1572967
134920          <idle>-0     (-----) [002] ...1 82318.452733: cpu_idle: state=4294967295 cpu_id=2
134921          <idle>-0     (-----) [002] d..1 82318.452740: cpu_idle: state=0 cpu_id=2
134922   Binder:8858_1-8871  ( 8858) [005] .... 82318.452819: binder_transaction: transaction=1572968 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
134923   Binder:8858_1-8871  ( 8858) [005] .... 82318.452823: binder_transaction_alloc_buf: transaction=1572968 data_size=68 offsets_size=0
134924   Binder:8858_1-8871  ( 8858) [005] d..2 82318.452826: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
134925   Binder:8858_1-8871  ( 8858) [005] d..3 82318.452836: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
134926   Binder:8858_1-8871  ( 8858) [005] .... 82318.452838: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
134927   Binder:8858_1-8871  ( 8858) [005] d..2 82318.452870: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
134928    RenderThread-16607 (10023) [005] .... 82318.452879: binder_transaction_received: transaction=1572968
134929    RenderThread-16607 (10023) [005] d..2 82318.452950: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
134930          <idle>-0     (-----) [005] d..1 82318.452967: cpu_idle: state=0 cpu_id=5
134931          <idle>-0     (-----) [002] ...1 82318.452988: cpu_idle: state=4294967295 cpu_id=2
134932          <idle>-0     (-----) [002] d..1 82318.452995: cpu_idle: state=0 cpu_id=2
134933          <idle>-0     (-----) [001] d.s3 82318.453019: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134934          <idle>-0     (-----) [001] dns4 82318.453035: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134935          <idle>-0     (-----) [001] .n.1 82318.453053: cpu_idle: state=4294967295 cpu_id=1
134936          <idle>-0     (-----) [001] d..2 82318.453068: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134937     kworker/1:1-25249 (25249) [001] d..2 82318.453125: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
134938     kworker/1:1-25249 (25249) [001] d..3 82318.453152: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
134939     kworker/1:1-25249 (25249) [001] d..2 82318.453161: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=002
134940     kworker/1:1-25249 (25249) [001] d..3 82318.453201: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134941     kworker/1:1-25249 (25249) [001] d..2 82318.453347: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
134942 wlan_logging_th-647   (  647) [001] d..2 82318.453372: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134943 wlan_logging_th-647   (  647) [001] d..3 82318.453398: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
134944 wlan_logging_th-647   (  647) [001] d..2 82318.453421: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
134945   cds_mc_thread-16565 (16565) [001] d..2 82318.453678: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134946 [email protected] (  798) [001] d..2 82318.453770: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
134947          <idle>-0     (-----) [001] d..1 82318.453797: cpu_idle: state=0 cpu_id=1
134948          <idle>-0     (-----) [003] d.h2 82318.453865: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
134949          <idle>-0     (-----) [003] dnh3 82318.453883: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
134950          <idle>-0     (-----) [003] .n.1 82318.453893: cpu_idle: state=4294967295 cpu_id=3
134951          <idle>-0     (-----) [003] d..2 82318.453904: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
134952          <idle>-0     (-----) [000] d.h3 82318.453905: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
134953        DispSync-8879  ( 8858) [003] d..1 82318.453924: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134954          <idle>-0     (-----) [000] dnh4 82318.453937: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
134955        DispSync-8879  ( 8858) [003] d..2 82318.453944: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134956          <idle>-0     (-----) [002] .n.1 82318.453949: cpu_idle: state=4294967295 cpu_id=2
134957          <idle>-0     (-----) [000] .n.1 82318.453952: cpu_idle: state=4294967295 cpu_id=0
134958          <idle>-0     (-----) [002] d..2 82318.453965: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
134959          <idle>-0     (-----) [000] d..2 82318.453967: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
134960        DispSync-8879  ( 8858) [003] d..2 82318.453983: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
134961          <idle>-0     (-----) [003] d..1 82318.453997: cpu_idle: state=0 cpu_id=3
134962   sfEventThread-8882  ( 8858) [002] d..3 82318.454010: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
134963 kgsl_worker_thr-258   (  258) [000] d..2 82318.454029: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
134964   sfEventThread-8882  ( 8858) [002] d..4 82318.454051: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
134965          <idle>-0     (-----) [003] .n.1 82318.454057: cpu_idle: state=4294967295 cpu_id=3
134966          <idle>-0     (-----) [003] d..2 82318.454069: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
134967 kgsl_worker_thr-258   (  258) [000] d..3 82318.454089: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
134968   sfEventThread-8882  ( 8858) [002] d..2 82318.454098: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134969 kgsl_worker_thr-258   (  258) [000] d..2 82318.454118: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
134970          <idle>-0     (-----) [002] d..1 82318.454118: cpu_idle: state=0 cpu_id=2
134971  kworker/u16:15-1311  ( 1311) [000] d..2 82318.454311: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
134972          <idle>-0     (-----) [000] d..1 82318.454333: cpu_idle: state=0 cpu_id=0
134973  surfaceflinger-8858  ( 8858) [003] d..1 82318.454507: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134974  surfaceflinger-8858  ( 8858) [003] d..2 82318.454533: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
134975          <idle>-0     (-----) [002] .n.1 82318.454540: cpu_idle: state=4294967295 cpu_id=2
134976          <idle>-0     (-----) [002] d..2 82318.454552: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
134977   sfEventThread-8882  ( 8858) [002] d..2 82318.454593: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
134978          <idle>-0     (-----) [002] d..1 82318.454607: cpu_idle: state=0 cpu_id=2
134979          <idle>-0     (-----) [001] d.s3 82318.454624: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134980          <idle>-0     (-----) [001] dns4 82318.454639: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
134981          <idle>-0     (-----) [001] .n.1 82318.454657: cpu_idle: state=4294967295 cpu_id=1
134982          <idle>-0     (-----) [001] d..2 82318.454673: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
134983     kworker/1:1-25249 (25249) [001] d.s2 82318.454724: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134984     kworker/1:1-25249 (25249) [001] d.s3 82318.454748: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
134985  surfaceflinger-8858  ( 8858) [003] ...1 82318.454764: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
134986  surfaceflinger-8858  ( 8858) [003] ...1 82318.454773: tracing_mark_write: E|8858
134987     kworker/1:1-25249 (25249) [001] d..2 82318.454782: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
134988     kworker/1:1-25249 (25249) [001] d..3 82318.454824: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=003
134989  surfaceflinger-8858  ( 8858) [003] .... 82318.454842: binder_transaction: transaction=1572969 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
134990  surfaceflinger-8858  ( 8858) [003] .... 82318.454849: binder_transaction_alloc_buf: transaction=1572969 data_size=540 offsets_size=96
134991  surfaceflinger-8858  ( 8858) [003] ...2 82318.454878: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
134992  surfaceflinger-8858  ( 8858) [003] d..4 82318.454887: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
134993  surfaceflinger-8858  ( 8858) [003] d..5 82318.454913: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
134994          <idle>-0     (-----) [002] .n.1 82318.454919: cpu_idle: state=4294967295 cpu_id=2
134995          <idle>-0     (-----) [002] d..2 82318.454930: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
134996  surfaceflinger-8858  ( 8858) [003] d..2 82318.454943: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
134997 [email protected]   (  619) [002] .... 82318.454944: binder_transaction_received: transaction=1572969
134998     kworker/1:1-25249 (25249) [001] d..2 82318.454956: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
134999 [email protected]   (  619) [002] d.s1 82318.454982: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
135000 [email protected]   (  619) [002] d.s2 82318.455002: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
135001 [email protected]   (  619) [002] ...1 82318.455044: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
135002   cds_mc_thread-16565 (16565) [001] d.s2 82318.455090: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135003   cds_mc_thread-16565 (16565) [001] d.s3 82318.455106: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135004 [email protected]   (  619) [002] d.s2 82318.455156: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135005   cds_mc_thread-16565 (16565) [001] d.s1 82318.455179: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
135006 [email protected]   (  619) [002] d.s3 82318.455181: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135007          <idle>-0     (-----) [000] .n.1 82318.455188: cpu_idle: state=4294967295 cpu_id=0
135008   cds_mc_thread-16565 (16565) [001] d.s2 82318.455195: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
135009          <idle>-0     (-----) [000] d..2 82318.455205: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135010 [email protected]   (  619) [002] ...1 82318.455260: tracing_mark_write: B|619|HWCSession::PresentDisplay::
135011   cds_mc_thread-16565 (16565) [001] d..2 82318.455335: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
135012   cds_mc_thread-16565 (16565) [001] d..3 82318.455386: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
135013  kworker/u16:15-1311  ( 1311) [000] d..2 82318.455438: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
135014 [email protected]   (  619) [002] ...1 82318.455445: tracing_mark_write: B|619|HWDeviceDRM::Commit::
135015 [email protected] (  798) [003] d..2 82318.455451: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135016 [email protected]   (  619) [002] ...1 82318.455460: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
135017 wlan_logging_th-647   (  647) [000] d..2 82318.455467: sched_waking: [email protected] pid=16588 prio=120 target_cpu=003
135018          <idle>-0     (-----) [003] d..1 82318.455471: cpu_idle: state=0 cpu_id=3
135019 wlan_logging_th-647   (  647) [000] d..3 82318.455490: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=003
135020          <idle>-0     (-----) [003] .n.1 82318.455497: cpu_idle: state=4294967295 cpu_id=3
135021          <idle>-0     (-----) [003] d..2 82318.455512: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=16588 next_prio=120
135022   cds_mc_thread-16565 (16565) [001] d..2 82318.455515: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
135023 wlan_logging_th-647   (  647) [000] d..2 82318.455515: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135024     ksoftirqd/1-18    (   18) [001] d..2 82318.455532: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135025  kworker/u16:15-1311  ( 1311) [000] d..2 82318.455559: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135026     kworker/1:1-25249 (25249) [001] d..2 82318.455566: sched_waking: [email protected] pid=16588 prio=120 target_cpu=003
135027          <idle>-0     (-----) [000] d..1 82318.455580: cpu_idle: state=0 cpu_id=0
135028 [email protected] (  798) [003] d..2 82318.455583: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135029          <idle>-0     (-----) [003] d..1 82318.455595: cpu_idle: state=0 cpu_id=3
135030     kworker/1:1-25249 (25249) [001] d..3 82318.455607: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135031     kworker/1:1-25249 (25249) [001] d..2 82318.455660: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135032 [email protected] (  798) [001] d..2 82318.455933: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135033          <idle>-0     (-----) [001] d..1 82318.455958: cpu_idle: state=0 cpu_id=1
135034 [email protected]   (  619) [002] d..2 82318.456137: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135035 [email protected]   (  619) [002] d..3 82318.456169: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135036          <idle>-0     (-----) [003] .n.1 82318.456175: cpu_idle: state=4294967295 cpu_id=3
135037          <idle>-0     (-----) [003] d..2 82318.456186: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135038 [email protected]   (  619) [002] ...1 82318.456294: tracing_mark_write: E|619
135039 [email protected]   (  619) [002] ...1 82318.456303: tracing_mark_write: E|619
135040 [email protected]   (  619) [002] ...1 82318.456373: tracing_mark_write: E|619
135041 [email protected]   (  619) [002] ...1 82318.456427: tracing_mark_write: E|619
135042 [email protected]   (  619) [002] .... 82318.456446: binder_transaction: transaction=1572970 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
135043 [email protected]   (  619) [002] .... 82318.456451: binder_transaction_alloc_buf: transaction=1572970 data_size=576 offsets_size=112
135044 [email protected]   (  619) [002] d..2 82318.456475: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
135045 [email protected]   (  619) [002] d..3 82318.456509: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
135046          <idle>-0     (-----) [000] .n.1 82318.456515: cpu_idle: state=4294967295 cpu_id=0
135047 [email protected]   (  619) [002] .... 82318.456516: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
135048          <idle>-0     (-----) [000] d..2 82318.456529: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
135049  surfaceflinger-8858  ( 8858) [000] .... 82318.456541: binder_transaction_received: transaction=1572970
135050 [email protected]   (  619) [002] d..2 82318.456609: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
135051     ksoftirqd/2-26    (   26) [002] d..2 82318.456695: 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
135052          <idle>-0     (-----) [002] d..1 82318.456720: cpu_idle: state=0 cpu_id=2
135053 crtc_commit:111-321   (  321) [003] d..2 82318.456974: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
135054          <idle>-0     (-----) [003] d..1 82318.456988: cpu_idle: state=0 cpu_id=3
135055  surfaceflinger-8858  ( 8858) [000] d..2 82318.457077: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135056          <idle>-0     (-----) [000] d..1 82318.457102: cpu_idle: state=0 cpu_id=0
135057          <idle>-0     (-----) [001] d.s3 82318.457693: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135058          <idle>-0     (-----) [001] dns4 82318.457707: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135059          <idle>-0     (-----) [001] .n.1 82318.457725: cpu_idle: state=4294967295 cpu_id=1
135060          <idle>-0     (-----) [001] d..2 82318.457741: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135061     kworker/1:1-25249 (25249) [001] d..2 82318.457798: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
135062     kworker/1:1-25249 (25249) [001] d..3 82318.457822: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
135063     kworker/1:1-25249 (25249) [001] d..2 82318.457849: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
135064   cds_mc_thread-16565 (16565) [001] d..2 82318.458068: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135065          <idle>-0     (-----) [001] d..1 82318.458090: cpu_idle: state=0 cpu_id=1
135066          <idle>-0     (-----) [002] ...1 82318.458121: cpu_idle: state=4294967295 cpu_id=2
135067          <idle>-0     (-----) [002] d..1 82318.458127: cpu_idle: state=0 cpu_id=2
135068          <idle>-0     (-----) [003] d.s2 82318.458482: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
135069          <idle>-0     (-----) [003] dns3 82318.458506: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
135070          <idle>-0     (-----) [003] dns3 82318.458514: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135071          <idle>-0     (-----) [003] dns4 82318.458552: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
135072          <idle>-0     (-----) [003] .n.1 82318.458565: cpu_idle: state=4294967295 cpu_id=3
135073          <idle>-0     (-----) [003] d..2 82318.458578: 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
135074     rcu_preempt-7     (    7) [003] d..2 82318.458590: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
135075     rcu_preempt-7     (    7) [003] d..3 82318.458631: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
135076     rcu_preempt-7     (    7) [003] d..2 82318.458651: 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
135077         rcuop/2-29    (   29) [003] d..2 82318.458670: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135078  kworker/u16:15-1311  ( 1311) [003] d..2 82318.458808: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135079          <idle>-0     (-----) [003] d..1 82318.458828: cpu_idle: state=0 cpu_id=3
135080          <idle>-0     (-----) [000] d.h5 82318.461971: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135081          <idle>-0     (-----) [000] dnh6 82318.461993: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135082          <idle>-0     (-----) [000] dnh5 82318.461999: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135083          <idle>-0     (-----) [000] dnh6 82318.462014: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135084          <idle>-0     (-----) [003] .n.1 82318.462022: cpu_idle: state=4294967295 cpu_id=3
135085          <idle>-0     (-----) [000] .n.1 82318.462031: cpu_idle: state=4294967295 cpu_id=0
135086          <idle>-0     (-----) [003] d..2 82318.462039: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135087          <idle>-0     (-----) [000] d..2 82318.462048: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135088  crtc_event:111-322   (  322) [000] d..2 82318.462091: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135089          <idle>-0     (-----) [000] d..2 82318.462096: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
135090          <idle>-0     (-----) [000] dn.3 82318.462112: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
135091          <idle>-0     (-----) [000] d..2 82318.462123: 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
135092     ksoftirqd/0-3     (    3) [000] d..2 82318.462153: 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
135093          <idle>-0     (-----) [000] d..1 82318.462170: cpu_idle: state=0 cpu_id=0
135094 crtc_commit:111-321   (  321) [003] d..2 82318.462204: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
135095          <idle>-0     (-----) [003] d..1 82318.462216: cpu_idle: state=0 cpu_id=3
135096          <idle>-0     (-----) [000] d.h5 82318.464297: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135097          <idle>-0     (-----) [000] d.h6 82318.464318: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135098          <idle>-0     (-----) [003] .n.1 82318.464324: cpu_idle: state=4294967295 cpu_id=3
135099          <idle>-0     (-----) [003] d..2 82318.464333: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135100          <idle>-0     (-----) [000] ...1 82318.464334: cpu_idle: state=4294967295 cpu_id=0
135101          <idle>-0     (-----) [000] d..1 82318.464341: cpu_idle: state=0 cpu_id=0
135102 crtc_commit:111-321   (  321) [003] d..2 82318.464409: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135103          <idle>-0     (-----) [003] d..1 82318.464420: cpu_idle: state=0 cpu_id=3
135104          <idle>-0     (-----) [000] d.h5 82318.464595: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135105          <idle>-0     (-----) [000] dnh6 82318.464607: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135106          <idle>-0     (-----) [000] .n.1 82318.464622: cpu_idle: state=4294967295 cpu_id=0
135107          <idle>-0     (-----) [000] d..2 82318.464635: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135108  crtc_event:111-322   (  322) [000] d..2 82318.464662: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135109          <idle>-0     (-----) [000] d..1 82318.464675: cpu_idle: state=0 cpu_id=0
135110          <idle>-0     (-----) [003] d.s3 82318.465146: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135111          <idle>-0     (-----) [003] d.s4 82318.465171: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135112          <idle>-0     (-----) [003] d.s2 82318.465175: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
135113          <idle>-0     (-----) [000] .n.1 82318.465176: cpu_idle: state=4294967295 cpu_id=0
135114          <idle>-0     (-----) [000] d..2 82318.465190: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135115          <idle>-0     (-----) [003] dns3 82318.465195: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
135116          <idle>-0     (-----) [003] .n.1 82318.465218: cpu_idle: state=4294967295 cpu_id=3
135117  crtc_event:111-322   (  322) [000] d..2 82318.465226: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135118          <idle>-0     (-----) [003] d..2 82318.465230: 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
135119          <idle>-0     (-----) [000] d..1 82318.465239: cpu_idle: state=0 cpu_id=0
135120     rcu_preempt-7     (    7) [003] d..2 82318.465243: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
135121     rcu_preempt-7     (    7) [003] d..3 82318.465266: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
135122     rcu_preempt-7     (    7) [003] d..2 82318.465283: 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
135123         rcuop/0-10    (   10) [003] d..2 82318.465315: 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
135124          <idle>-0     (-----) [003] d..1 82318.465330: cpu_idle: state=0 cpu_id=3
135125          <idle>-0     (-----) [002] ...1 82318.465381: cpu_idle: state=4294967295 cpu_id=2
135126          <idle>-0     (-----) [002] d..1 82318.465390: cpu_idle: state=0 cpu_id=2
135127          <idle>-0     (-----) [001] d.s3 82318.465444: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135128          <idle>-0     (-----) [001] dns4 82318.465458: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135129          <idle>-0     (-----) [001] .n.1 82318.465475: cpu_idle: state=4294967295 cpu_id=1
135130          <idle>-0     (-----) [001] d..2 82318.465492: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135131     kworker/1:1-25249 (25249) [001] d..2 82318.465524: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135132     kworker/1:1-25249 (25249) [001] d..3 82318.465540: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135133     kworker/1:1-25249 (25249) [001] d..2 82318.465569: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135134          <idle>-0     (-----) [002] ...1 82318.465679: cpu_idle: state=4294967295 cpu_id=2
135135          <idle>-0     (-----) [002] d..1 82318.465685: cpu_idle: state=0 cpu_id=2
135136 [email protected] (  798) [001] d..2 82318.465724: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135137          <idle>-0     (-----) [001] d..1 82318.465746: cpu_idle: state=0 cpu_id=1
135138          <idle>-0     (-----) [001] d.s3 82318.465921: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135139          <idle>-0     (-----) [001] dns4 82318.465934: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135140          <idle>-0     (-----) [001] .n.1 82318.465955: cpu_idle: state=4294967295 cpu_id=1
135141          <idle>-0     (-----) [001] d..2 82318.465972: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135142     kworker/1:1-25249 (25249) [001] d..2 82318.466002: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135143     kworker/1:1-25249 (25249) [001] d..3 82318.466017: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135144     kworker/1:1-25249 (25249) [001] d..2 82318.466044: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135145 [email protected] (  798) [001] d..2 82318.466191: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135146          <idle>-0     (-----) [001] d..1 82318.466212: cpu_idle: state=0 cpu_id=1
135147          <idle>-0     (-----) [003] d.h2 82318.466341: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
135148          <idle>-0     (-----) [003] dnh3 82318.466357: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
135149          <idle>-0     (-----) [003] .n.1 82318.466366: cpu_idle: state=4294967295 cpu_id=3
135150          <idle>-0     (-----) [003] d..2 82318.466378: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
135151        DispSync-8879  ( 8858) [003] d..1 82318.466405: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
135152        DispSync-8879  ( 8858) [003] d..2 82318.466426: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
135153          <idle>-0     (-----) [002] .n.1 82318.466432: cpu_idle: state=4294967295 cpu_id=2
135154          <idle>-0     (-----) [002] d..2 82318.466446: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
135155        DispSync-8879  ( 8858) [003] d..2 82318.466468: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135156          <idle>-0     (-----) [003] d..1 82318.466483: cpu_idle: state=0 cpu_id=3
135157  appEventThread-8881  ( 8858) [002] d..3 82318.466510: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135158          <idle>-0     (-----) [004] dnh2 82318.466545: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135159          <idle>-0     (-----) [004] .n.1 82318.466549: cpu_idle: state=4294967295 cpu_id=4
135160          <idle>-0     (-----) [004] d..2 82318.466557: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
135161  appEventThread-8881  ( 8858) [002] d..2 82318.466590: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135162          <idle>-0     (-----) [002] d..1 82318.466611: cpu_idle: state=0 cpu_id=2
135163 s.nexuslauncher-10023 (10023) [004] .... 82318.466766: binder_transaction: transaction=1572971 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
135164 s.nexuslauncher-10023 (10023) [004] .... 82318.466771: binder_transaction_alloc_buf: transaction=1572971 data_size=80 offsets_size=0
135165 s.nexuslauncher-10023 (10023) [004] d..4 82318.466776: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
135166          <idle>-0     (-----) [000] dnh2 82318.466842: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
135167          <idle>-0     (-----) [000] .n.1 82318.466849: cpu_idle: state=4294967295 cpu_id=0
135168          <idle>-0     (-----) [000] d..2 82318.466861: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
135169 s.nexuslauncher-10023 (10023) [004] d..3 82318.466862: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135170   Binder:8858_1-8871  ( 8858) [000] .... 82318.466871: binder_transaction_received: transaction=1572971
135171 s.nexuslauncher-10023 (10023) [004] d..4 82318.466879: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135172          <idle>-0     (-----) [005] .n.1 82318.466884: cpu_idle: state=4294967295 cpu_id=5
135173          <idle>-0     (-----) [005] d..2 82318.466896: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
135174   Binder:8858_1-8871  ( 8858) [000] d..1 82318.466913: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
135175    RenderThread-16607 (10023) [005] d..2 82318.466926: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
135176          <idle>-0     (-----) [005] d..1 82318.466934: cpu_idle: state=0 cpu_id=5
135177   Binder:8858_1-8871  ( 8858) [000] d..2 82318.466935: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
135178          <idle>-0     (-----) [002] .n.1 82318.466943: cpu_idle: state=4294967295 cpu_id=2
135179          <idle>-0     (-----) [002] d..2 82318.466955: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
135180   Binder:8858_1-8871  ( 8858) [000] d..2 82318.466988: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135181  appEventThread-8881  ( 8858) [002] d..2 82318.467005: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135182          <idle>-0     (-----) [000] d..1 82318.467007: cpu_idle: state=0 cpu_id=0
135183          <idle>-0     (-----) [002] d..1 82318.467017: cpu_idle: state=0 cpu_id=2
135184 s.nexuslauncher-10023 (10023) [004] d..3 82318.467090: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135185 s.nexuslauncher-10023 (10023) [004] d..4 82318.467108: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135186          <idle>-0     (-----) [005] .n.1 82318.467112: cpu_idle: state=4294967295 cpu_id=5
135187          <idle>-0     (-----) [001] d.s3 82318.467117: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135188          <idle>-0     (-----) [005] d..2 82318.467120: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
135189          <idle>-0     (-----) [001] dns4 82318.467131: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135190 s.nexuslauncher-10023 (10023) [004] d..2 82318.467134: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
135191          <idle>-0     (-----) [004] d..1 82318.467150: cpu_idle: state=0 cpu_id=4
135192          <idle>-0     (-----) [001] .n.1 82318.467153: cpu_idle: state=4294967295 cpu_id=1
135193          <idle>-0     (-----) [001] d..2 82318.467168: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135194     kworker/1:1-25249 (25249) [001] d..2 82318.467199: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135195     kworker/1:1-25249 (25249) [001] d..3 82318.467214: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135196     kworker/1:1-25249 (25249) [001] d..2 82318.467246: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135197    RenderThread-16607 (10023) [005] d..1 82318.467274: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135198    RenderThread-16607 (10023) [005] d..2 82318.467292: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135199          <idle>-0     (-----) [004] .n.1 82318.467298: cpu_idle: state=4294967295 cpu_id=4
135200          <idle>-0     (-----) [004] d..2 82318.467308: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
135201    RenderThread-16607 (10023) [005] .... 82318.467341: binder_transaction: transaction=1572972 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
135202    RenderThread-16607 (10023) [005] .... 82318.467345: binder_transaction_alloc_buf: transaction=1572972 data_size=104 offsets_size=0
135203    RenderThread-16607 (10023) [005] ...2 82318.467349: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
135204    RenderThread-16607 (10023) [005] d..4 82318.467353: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
135205    RenderThread-16607 (10023) [005] d..5 82318.467371: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
135206 [email protected] (  798) [001] d..2 82318.467414: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135207    RenderThread-16607 (10023) [005] d..2 82318.467420: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
135208 s.nexuslauncher-10023 (10023) [004] d..2 82318.467422: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
135209          <idle>-0     (-----) [004] d..1 82318.467433: cpu_idle: state=0 cpu_id=4
135210   Binder:8858_1-8871  ( 8858) [005] .... 82318.467433: binder_transaction_received: transaction=1572972
135211          <idle>-0     (-----) [001] d..1 82318.467436: cpu_idle: state=0 cpu_id=1
135212   Binder:8858_1-8871  ( 8858) [005] .... 82318.467491: binder_transaction: transaction=1572973 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
135213   Binder:8858_1-8871  ( 8858) [005] .... 82318.467495: binder_transaction_alloc_buf: transaction=1572973 data_size=52 offsets_size=8
135214   Binder:8858_1-8871  ( 8858) [005] d..2 82318.467502: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135215   Binder:8858_1-8871  ( 8858) [005] d..3 82318.467513: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135216   Binder:8858_1-8871  ( 8858) [005] .... 82318.467515: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
135217   Binder:8858_1-8871  ( 8858) [005] d..2 82318.467525: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
135218    RenderThread-16607 (10023) [005] .... 82318.467534: binder_transaction_received: transaction=1572973
135219          <idle>-0     (-----) [001] d.s3 82318.467661: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
135220          <idle>-0     (-----) [001] dns4 82318.467684: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
135221          <idle>-0     (-----) [001] dns3 82318.467705: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135222          <idle>-0     (-----) [001] dns4 82318.467714: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135223          <idle>-0     (-----) [001] .n.1 82318.467730: cpu_idle: state=4294967295 cpu_id=1
135224          <idle>-0     (-----) [001] d..2 82318.467747: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135225     kworker/1:1-25249 (25249) [001] d..2 82318.467778: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135226     kworker/1:1-25249 (25249) [001] d..3 82318.467799: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135227     kworker/1:1-25249 (25249) [001] d..2 82318.467829: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
135228   cds_mc_thread-16565 (16565) [001] d..2 82318.467900: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135229          <idle>-0     (-----) [002] ...1 82318.468032: cpu_idle: state=4294967295 cpu_id=2
135230          <idle>-0     (-----) [002] d..1 82318.468039: cpu_idle: state=0 cpu_id=2
135231 [email protected] (  798) [001] d..2 82318.468103: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135232          <idle>-0     (-----) [001] d..1 82318.468128: cpu_idle: state=0 cpu_id=1
135233    RenderThread-16607 (10023) [005] d.s2 82318.468487: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
135234          <idle>-0     (-----) [000] dnh2 82318.468534: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135235          <idle>-0     (-----) [000] .n.1 82318.468542: cpu_idle: state=4294967295 cpu_id=0
135236          <idle>-0     (-----) [000] d..2 82318.468557: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135237  kworker/u16:15-1311  ( 1311) [000] d..2 82318.468789: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135238          <idle>-0     (-----) [000] d..1 82318.468806: cpu_idle: state=0 cpu_id=0
135239    RenderThread-16607 (10023) [005] d..2 82318.468965: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
135240   Binder:8858_1-8871  ( 8858) [005] d..2 82318.469035: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
135241          <idle>-0     (-----) [005] d..1 82318.469049: cpu_idle: state=0 cpu_id=5
135242          <idle>-0     (-----) [005] d.h2 82318.469062: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135243          <idle>-0     (-----) [005] d.h3 82318.469070: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
135244          <idle>-0     (-----) [005] dnh3 82318.469074: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135245          <idle>-0     (-----) [005] .n.1 82318.469081: cpu_idle: state=4294967295 cpu_id=5
135246          <idle>-0     (-----) [005] d..2 82318.469090: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
135247    RenderThread-16607 (10023) [005] .... 82318.469249: binder_transaction: transaction=1572974 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
135248    RenderThread-16607 (10023) [005] .... 82318.469254: binder_transaction_alloc_buf: transaction=1572974 data_size=192 offsets_size=8
135249    RenderThread-16607 (10023) [005] ...2 82318.469261: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
135250    RenderThread-16607 (10023) [005] d..4 82318.469264: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
135251    RenderThread-16607 (10023) [005] d..5 82318.469276: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
135252    RenderThread-16607 (10023) [005] d..2 82318.469287: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
135253   Binder:8858_1-8871  ( 8858) [005] .... 82318.469297: binder_transaction_received: transaction=1572974
135254   Binder:8858_1-8871  ( 8858) [005] .... 82318.469422: binder_transaction: transaction=1572975 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
135255   Binder:8858_1-8871  ( 8858) [005] .... 82318.469427: binder_transaction_alloc_buf: transaction=1572975 data_size=68 offsets_size=0
135256   Binder:8858_1-8871  ( 8858) [005] d..2 82318.469429: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135257   Binder:8858_1-8871  ( 8858) [005] d..3 82318.469440: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135258   Binder:8858_1-8871  ( 8858) [005] .... 82318.469443: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
135259   Binder:8858_1-8871  ( 8858) [005] d..2 82318.469474: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
135260    RenderThread-16607 (10023) [005] .... 82318.469483: binder_transaction_received: transaction=1572975
135261    RenderThread-16607 (10023) [005] d..2 82318.469554: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
135262          <idle>-0     (-----) [005] d..1 82318.469572: cpu_idle: state=0 cpu_id=5
135263          <idle>-0     (-----) [005] ...1 82318.469775: cpu_idle: state=4294967295 cpu_id=5
135264          <idle>-0     (-----) [005] d..1 82318.469779: cpu_idle: state=0 cpu_id=5
135265          <idle>-0     (-----) [003] d.h2 82318.470347: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
135266          <idle>-0     (-----) [003] dnh3 82318.470361: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
135267          <idle>-0     (-----) [003] .n.1 82318.470370: cpu_idle: state=4294967295 cpu_id=3
135268          <idle>-0     (-----) [003] d..2 82318.470383: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
135269        DispSync-8879  ( 8858) [003] d..1 82318.470398: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135270        DispSync-8879  ( 8858) [003] d..2 82318.470414: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135271          <idle>-0     (-----) [002] .n.1 82318.470420: cpu_idle: state=4294967295 cpu_id=2
135272          <idle>-0     (-----) [002] d..2 82318.470434: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
135273        DispSync-8879  ( 8858) [003] d..2 82318.470448: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135274          <idle>-0     (-----) [003] d..1 82318.470460: cpu_idle: state=0 cpu_id=3
135275   sfEventThread-8882  ( 8858) [002] d..3 82318.470480: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
135276   sfEventThread-8882  ( 8858) [002] d..4 82318.470504: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
135277          <idle>-0     (-----) [000] dnh3 82318.470513: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
135278          <idle>-0     (-----) [000] dnh4 82318.470543: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
135279   sfEventThread-8882  ( 8858) [002] d..2 82318.470548: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135280          <idle>-0     (-----) [003] .n.1 82318.470550: cpu_idle: state=4294967295 cpu_id=3
135281          <idle>-0     (-----) [003] d..2 82318.470561: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
135282          <idle>-0     (-----) [000] .n.1 82318.470565: cpu_idle: state=4294967295 cpu_id=0
135283          <idle>-0     (-----) [002] d..1 82318.470567: cpu_idle: state=0 cpu_id=2
135284          <idle>-0     (-----) [000] d..2 82318.470579: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
135285 kgsl_worker_thr-258   (  258) [003] d..2 82318.470628: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135286 kgsl_worker_thr-258   (  258) [003] d..3 82318.470680: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
135287 kgsl_worker_thr-258   (  258) [003] d..2 82318.470709: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135288  kworker/u16:15-1311  ( 1311) [003] d..2 82318.470910: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135289          <idle>-0     (-----) [003] d..1 82318.470924: cpu_idle: state=0 cpu_id=3
135290  surfaceflinger-8858  ( 8858) [000] d..1 82318.470981: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135291  surfaceflinger-8858  ( 8858) [000] d..2 82318.471008: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135292          <idle>-0     (-----) [002] .n.1 82318.471015: cpu_idle: state=4294967295 cpu_id=2
135293          <idle>-0     (-----) [002] d..2 82318.471027: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
135294   sfEventThread-8882  ( 8858) [002] d..2 82318.471069: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135295          <idle>-0     (-----) [002] d..1 82318.471082: cpu_idle: state=0 cpu_id=2
135296  surfaceflinger-8858  ( 8858) [000] ...1 82318.471245: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
135297  surfaceflinger-8858  ( 8858) [000] ...1 82318.471255: tracing_mark_write: E|8858
135298  surfaceflinger-8858  ( 8858) [000] .... 82318.471331: binder_transaction: transaction=1572976 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
135299  surfaceflinger-8858  ( 8858) [000] .... 82318.471338: binder_transaction_alloc_buf: transaction=1572976 data_size=540 offsets_size=96
135300  surfaceflinger-8858  ( 8858) [000] ...2 82318.471368: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
135301  surfaceflinger-8858  ( 8858) [000] d..4 82318.471376: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
135302  surfaceflinger-8858  ( 8858) [000] d..5 82318.471400: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
135303          <idle>-0     (-----) [002] .n.1 82318.471406: cpu_idle: state=4294967295 cpu_id=2
135304          <idle>-0     (-----) [002] d..2 82318.471418: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
135305 [email protected]   (  619) [002] .... 82318.471432: binder_transaction_received: transaction=1572976
135306  surfaceflinger-8858  ( 8858) [000] d..2 82318.471442: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135307          <idle>-0     (-----) [000] d..1 82318.471467: cpu_idle: state=0 cpu_id=0
135308 [email protected]   (  619) [002] ...1 82318.471491: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
135309 [email protected]   (  619) [002] ...1 82318.471625: tracing_mark_write: B|619|HWCSession::PresentDisplay::
135310          <idle>-0     (-----) [003] d.s2 82318.471889: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
135311          <idle>-0     (-----) [003] dns3 82318.471913: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
135312          <idle>-0     (-----) [003] .n.1 82318.471928: cpu_idle: state=4294967295 cpu_id=3
135313 [email protected]   (  619) [002] ...1 82318.471935: tracing_mark_write: B|619|HWDeviceDRM::Commit::
135314          <idle>-0     (-----) [003] d..2 82318.471940: 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
135315 [email protected]   (  619) [002] ...1 82318.471951: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
135316     rcu_preempt-7     (    7) [003] d..2 82318.471982: 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
135317          <idle>-0     (-----) [003] d..1 82318.471999: cpu_idle: state=0 cpu_id=3
135318 [email protected]   (  619) [002] d..2 82318.472634: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135319 [email protected]   (  619) [002] d..3 82318.472667: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135320          <idle>-0     (-----) [003] .n.1 82318.472673: cpu_idle: state=4294967295 cpu_id=3
135321          <idle>-0     (-----) [003] d..2 82318.472686: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135322 [email protected]   (  619) [002] ...1 82318.472791: tracing_mark_write: E|619
135323 [email protected]   (  619) [002] ...1 82318.472799: tracing_mark_write: E|619
135324 [email protected]   (  619) [002] ...1 82318.472870: tracing_mark_write: E|619
135325 [email protected]   (  619) [002] ...1 82318.472925: tracing_mark_write: E|619
135326 [email protected]   (  619) [002] .... 82318.472944: binder_transaction: transaction=1572977 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
135327 [email protected]   (  619) [002] .... 82318.472950: binder_transaction_alloc_buf: transaction=1572977 data_size=576 offsets_size=112
135328 [email protected]   (  619) [002] d..2 82318.472976: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
135329 [email protected]   (  619) [002] d..3 82318.473002: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
135330 [email protected]   (  619) [002] .... 82318.473008: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
135331          <idle>-0     (-----) [000] .n.1 82318.473009: cpu_idle: state=4294967295 cpu_id=0
135332          <idle>-0     (-----) [000] d..2 82318.473023: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
135333  surfaceflinger-8858  ( 8858) [000] .... 82318.473035: binder_transaction_received: transaction=1572977
135334 [email protected]   (  619) [002] d..2 82318.473119: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135335          <idle>-0     (-----) [002] d..1 82318.473145: cpu_idle: state=0 cpu_id=2
135336 crtc_commit:111-321   (  321) [003] d..2 82318.473470: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
135337          <idle>-0     (-----) [003] d..1 82318.473488: cpu_idle: state=0 cpu_id=3
135338  surfaceflinger-8858  ( 8858) [000] d..2 82318.473551: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135339          <idle>-0     (-----) [000] d..1 82318.473578: cpu_idle: state=0 cpu_id=0
135340          <idle>-0     (-----) [002] ...1 82318.474665: cpu_idle: state=4294967295 cpu_id=2
135341          <idle>-0     (-----) [002] d..1 82318.474671: cpu_idle: state=0 cpu_id=2
135342          <idle>-0     (-----) [000] d..2 82318.475955: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
135343          <idle>-0     (-----) [000] dn.3 82318.475973: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
135344          <idle>-0     (-----) [000] .n.1 82318.475978: cpu_idle: state=4294967295 cpu_id=0
135345          <idle>-0     (-----) [000] d..2 82318.475995: 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
135346     ksoftirqd/0-3     (    3) [000] d..2 82318.476036: 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
135347          <idle>-0     (-----) [000] d..1 82318.476049: cpu_idle: state=0 cpu_id=0
135348          <idle>-0     (-----) [002] ...1 82318.478393: cpu_idle: state=4294967295 cpu_id=2
135349          <idle>-0     (-----) [002] d..1 82318.478401: cpu_idle: state=0 cpu_id=2
135350          <idle>-0     (-----) [000] d.h5 82318.478435: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135351          <idle>-0     (-----) [000] dnh6 82318.478453: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135352          <idle>-0     (-----) [000] dnh5 82318.478459: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135353          <idle>-0     (-----) [000] dnh6 82318.478480: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135354          <idle>-0     (-----) [003] dns2 82318.478492: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
135355          <idle>-0     (-----) [000] .n.1 82318.478499: cpu_idle: state=4294967295 cpu_id=0
135356          <idle>-0     (-----) [000] d..2 82318.478514: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135357          <idle>-0     (-----) [003] dns3 82318.478548: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
135358  crtc_event:111-322   (  322) [000] d..2 82318.478560: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
135359          <idle>-0     (-----) [003] dns3 82318.478568: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
135360     rcu_preempt-7     (    7) [000] d..2 82318.478574: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
135361          <idle>-0     (-----) [003] dns4 82318.478605: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135362          <idle>-0     (-----) [003] .n.1 82318.478628: cpu_idle: state=4294967295 cpu_id=3
135363     rcu_preempt-7     (    7) [000] d..3 82318.478631: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
135364          <idle>-0     (-----) [003] d..2 82318.478642: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135365     rcu_preempt-7     (    7) [000] d..2 82318.478649: 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
135366         rcuop/2-29    (   29) [000] d..2 82318.478656: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
135367         rcuop/2-29    (   29) [000] d..3 82318.478679: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
135368         rcuop/2-29    (   29) [000] d..2 82318.478692: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135369 crtc_commit:111-321   (  321) [003] d..2 82318.478818: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcuop/3 next_pid=37 next_prio=120
135370         rcuop/3-37    (   37) [003] d..2 82318.478871: 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
135371          <idle>-0     (-----) [003] d..1 82318.478884: cpu_idle: state=0 cpu_id=3
135372  kworker/u16:15-1311  ( 1311) [000] d..2 82318.478884: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135373          <idle>-0     (-----) [000] d..1 82318.478906: cpu_idle: state=0 cpu_id=0
135374          <idle>-0     (-----) [000] d.h5 82318.480774: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135375          <idle>-0     (-----) [000] d.h6 82318.480795: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135376          <idle>-0     (-----) [003] .n.1 82318.480802: cpu_idle: state=4294967295 cpu_id=3
135377          <idle>-0     (-----) [003] d..2 82318.480811: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135378          <idle>-0     (-----) [000] ...1 82318.480813: cpu_idle: state=4294967295 cpu_id=0
135379          <idle>-0     (-----) [000] d..1 82318.480819: cpu_idle: state=0 cpu_id=0
135380 crtc_commit:111-321   (  321) [003] d..2 82318.480887: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135381          <idle>-0     (-----) [003] d..1 82318.480897: cpu_idle: state=0 cpu_id=3
135382          <idle>-0     (-----) [000] d.h5 82318.481058: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135383          <idle>-0     (-----) [000] dnh6 82318.481070: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135384          <idle>-0     (-----) [000] .n.1 82318.481085: cpu_idle: state=4294967295 cpu_id=0
135385          <idle>-0     (-----) [000] d..2 82318.481099: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135386  crtc_event:111-322   (  322) [000] d..2 82318.481128: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135387          <idle>-0     (-----) [000] d..1 82318.481140: cpu_idle: state=0 cpu_id=0
135388          <idle>-0     (-----) [003] d.s3 82318.481810: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135389          <idle>-0     (-----) [003] d.s4 82318.481834: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135390          <idle>-0     (-----) [000] .n.1 82318.481840: cpu_idle: state=4294967295 cpu_id=0
135391          <idle>-0     (-----) [000] d..2 82318.481855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135392          <idle>-0     (-----) [003] ...1 82318.481862: cpu_idle: state=4294967295 cpu_id=3
135393          <idle>-0     (-----) [003] d..1 82318.481869: cpu_idle: state=0 cpu_id=3
135394  crtc_event:111-322   (  322) [000] d..2 82318.481891: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135395          <idle>-0     (-----) [000] d..1 82318.481900: cpu_idle: state=0 cpu_id=0
135396          <idle>-0     (-----) [003] d.h2 82318.482797: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
135397          <idle>-0     (-----) [003] dnh3 82318.482813: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
135398          <idle>-0     (-----) [003] .n.1 82318.482822: cpu_idle: state=4294967295 cpu_id=3
135399          <idle>-0     (-----) [003] d..2 82318.482834: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
135400        DispSync-8879  ( 8858) [003] d..1 82318.482855: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
135401        DispSync-8879  ( 8858) [003] d..2 82318.482872: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
135402          <idle>-0     (-----) [002] .n.1 82318.482878: cpu_idle: state=4294967295 cpu_id=2
135403          <idle>-0     (-----) [002] d..2 82318.482895: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
135404        DispSync-8879  ( 8858) [003] d..2 82318.482912: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135405          <idle>-0     (-----) [003] d..1 82318.482926: cpu_idle: state=0 cpu_id=3
135406  appEventThread-8881  ( 8858) [002] d..3 82318.482955: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135407          <idle>-0     (-----) [004] dnh2 82318.482990: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135408          <idle>-0     (-----) [004] .n.1 82318.482994: cpu_idle: state=4294967295 cpu_id=4
135409          <idle>-0     (-----) [004] d..2 82318.483002: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
135410  appEventThread-8881  ( 8858) [002] d..2 82318.483031: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135411          <idle>-0     (-----) [002] d..1 82318.483049: cpu_idle: state=0 cpu_id=2
135412 s.nexuslauncher-10023 (10023) [004] .... 82318.483203: binder_transaction: transaction=1572978 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
135413 s.nexuslauncher-10023 (10023) [004] .... 82318.483208: binder_transaction_alloc_buf: transaction=1572978 data_size=80 offsets_size=0
135414 s.nexuslauncher-10023 (10023) [004] d..4 82318.483214: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
135415 s.nexuslauncher-10023 (10023) [004] d.h5 82318.483276: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
135416          <idle>-0     (-----) [000] dnh2 82318.483282: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
135417          <idle>-0     (-----) [000] .n.1 82318.483288: cpu_idle: state=4294967295 cpu_id=0
135418          <idle>-0     (-----) [000] d..2 82318.483298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
135419          <idle>-0     (-----) [003] dnh2 82318.483304: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
135420   Binder:8858_1-8871  ( 8858) [000] .... 82318.483309: binder_transaction_received: transaction=1572978
135421          <idle>-0     (-----) [003] .n.1 82318.483311: cpu_idle: state=4294967295 cpu_id=3
135422 s.nexuslauncher-10023 (10023) [004] d..3 82318.483319: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135423          <idle>-0     (-----) [003] d..2 82318.483322: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
135424 s.nexuslauncher-10023 (10023) [004] d..4 82318.483336: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135425          <idle>-0     (-----) [005] .n.1 82318.483340: cpu_idle: state=4294967295 cpu_id=5
135426          <idle>-0     (-----) [005] d..2 82318.483351: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
135427   Binder:8858_1-8871  ( 8858) [000] d..1 82318.483352: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
135428         sugov:0-576   (  576) [003] .... 82318.483362: clk_set_rate: pwrcl_clk 825600000
135429   Binder:8858_1-8871  ( 8858) [000] d..2 82318.483374: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
135430          <idle>-0     (-----) [002] .n.1 82318.483381: cpu_idle: state=4294967295 cpu_id=2
135431         sugov:0-576   (  576) [003] .... 82318.483384: clk_set_rate: cpu3_pwrcl_clk 748800000
135432    RenderThread-16607 (10023) [005] d..2 82318.483387: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
135433          <idle>-0     (-----) [002] d..2 82318.483394: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
135434          <idle>-0     (-----) [005] d..1 82318.483395: cpu_idle: state=0 cpu_id=5
135435         sugov:0-576   (  576) [003] .... 82318.483395: clk_set_rate: cpu2_pwrcl_clk 748800000
135436         sugov:0-576   (  576) [003] .... 82318.483403: clk_set_rate: cpu1_pwrcl_clk 748800000
135437         sugov:0-576   (  576) [003] .... 82318.483411: clk_set_rate: cpu0_pwrcl_clk 825600000
135438         sugov:0-576   (  576) [003] .... 82318.483422: cpu_frequency: state=825600 cpu_id=0
135439   Binder:8858_1-8871  ( 8858) [000] d..2 82318.483432: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135440          <idle>-0     (-----) [000] d..1 82318.483447: cpu_idle: state=0 cpu_id=0
135441  appEventThread-8881  ( 8858) [002] d..2 82318.483448: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135442         sugov:0-576   (  576) [003] .... 82318.483450: cpu_frequency: state=825600 cpu_id=1
135443         sugov:0-576   (  576) [003] .... 82318.483455: cpu_frequency: state=825600 cpu_id=2
135444          <idle>-0     (-----) [002] d..1 82318.483460: cpu_idle: state=0 cpu_id=2
135445         sugov:0-576   (  576) [003] .... 82318.483460: cpu_frequency: state=825600 cpu_id=3
135446         sugov:0-576   (  576) [003] d..2 82318.483490: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135447          <idle>-0     (-----) [003] d..1 82318.483504: cpu_idle: state=0 cpu_id=3
135448 s.nexuslauncher-10023 (10023) [004] d..3 82318.483555: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135449 s.nexuslauncher-10023 (10023) [004] d..4 82318.483573: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135450          <idle>-0     (-----) [005] .n.1 82318.483578: cpu_idle: state=4294967295 cpu_id=5
135451          <idle>-0     (-----) [005] d..2 82318.483585: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
135452 s.nexuslauncher-10023 (10023) [004] d..2 82318.483600: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
135453          <idle>-0     (-----) [004] d..1 82318.483615: cpu_idle: state=0 cpu_id=4
135454    RenderThread-16607 (10023) [005] d..1 82318.483733: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135455    RenderThread-16607 (10023) [005] d..2 82318.483751: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135456          <idle>-0     (-----) [004] .n.1 82318.483758: cpu_idle: state=4294967295 cpu_id=4
135457          <idle>-0     (-----) [004] d..2 82318.483767: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
135458    RenderThread-16607 (10023) [005] .... 82318.483800: binder_transaction: transaction=1572979 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
135459    RenderThread-16607 (10023) [005] .... 82318.483804: binder_transaction_alloc_buf: transaction=1572979 data_size=104 offsets_size=0
135460    RenderThread-16607 (10023) [005] ...2 82318.483808: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
135461    RenderThread-16607 (10023) [005] d..4 82318.483811: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
135462    RenderThread-16607 (10023) [005] d..5 82318.483830: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
135463 s.nexuslauncher-10023 (10023) [004] d..2 82318.483874: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
135464    RenderThread-16607 (10023) [005] d..2 82318.483877: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
135465          <idle>-0     (-----) [004] d..1 82318.483884: cpu_idle: state=0 cpu_id=4
135466   Binder:8858_1-8871  ( 8858) [005] .... 82318.483888: binder_transaction_received: transaction=1572979
135467   Binder:8858_1-8871  ( 8858) [005] .... 82318.483948: binder_transaction: transaction=1572980 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
135468   Binder:8858_1-8871  ( 8858) [005] .... 82318.483953: binder_transaction_alloc_buf: transaction=1572980 data_size=52 offsets_size=8
135469   Binder:8858_1-8871  ( 8858) [005] d..2 82318.483960: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135470   Binder:8858_1-8871  ( 8858) [005] d..3 82318.483971: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135471   Binder:8858_1-8871  ( 8858) [005] .... 82318.483974: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
135472   Binder:8858_1-8871  ( 8858) [005] d..2 82318.483984: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
135473    RenderThread-16607 (10023) [005] .... 82318.483993: binder_transaction_received: transaction=1572980
135474          <idle>-0     (-----) [000] d.s2 82318.485143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
135475          <idle>-0     (-----) [000] dns3 82318.485163: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
135476          <idle>-0     (-----) [000] .n.1 82318.485186: cpu_idle: state=4294967295 cpu_id=0
135477          <idle>-0     (-----) [000] d..2 82318.485197: 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
135478     rcu_preempt-7     (    7) [000] d..2 82318.485233: 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
135479          <idle>-0     (-----) [000] d..1 82318.485249: cpu_idle: state=0 cpu_id=0
135480    RenderThread-16607 (10023) [005] d..2 82318.485282: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
135481   Binder:8858_1-8871  ( 8858) [005] d..2 82318.485351: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
135482          <idle>-0     (-----) [005] d..1 82318.485366: cpu_idle: state=0 cpu_id=5
135483          <idle>-0     (-----) [005] d.h2 82318.485381: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135484          <idle>-0     (-----) [005] d.h3 82318.485391: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
135485          <idle>-0     (-----) [005] dnh3 82318.485394: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135486          <idle>-0     (-----) [005] .n.1 82318.485401: cpu_idle: state=4294967295 cpu_id=5
135487          <idle>-0     (-----) [005] d..2 82318.485410: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
135488    RenderThread-16607 (10023) [005] .... 82318.485565: binder_transaction: transaction=1572981 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
135489    RenderThread-16607 (10023) [005] .... 82318.485570: binder_transaction_alloc_buf: transaction=1572981 data_size=192 offsets_size=8
135490    RenderThread-16607 (10023) [005] ...2 82318.485577: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
135491    RenderThread-16607 (10023) [005] d..4 82318.485580: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
135492    RenderThread-16607 (10023) [005] d..5 82318.485591: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
135493    RenderThread-16607 (10023) [005] d..2 82318.485602: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
135494   Binder:8858_1-8871  ( 8858) [005] .... 82318.485613: binder_transaction_received: transaction=1572981
135495   Binder:8858_1-8871  ( 8858) [005] .... 82318.485732: binder_transaction: transaction=1572982 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
135496   Binder:8858_1-8871  ( 8858) [005] .... 82318.485735: binder_transaction_alloc_buf: transaction=1572982 data_size=68 offsets_size=0
135497   Binder:8858_1-8871  ( 8858) [005] d..2 82318.485738: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135498   Binder:8858_1-8871  ( 8858) [005] d..3 82318.485749: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135499   Binder:8858_1-8871  ( 8858) [005] .... 82318.485752: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
135500   Binder:8858_1-8871  ( 8858) [005] d..2 82318.485784: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
135501    RenderThread-16607 (10023) [005] .... 82318.485793: binder_transaction_received: transaction=1572982
135502    RenderThread-16607 (10023) [005] d..2 82318.485863: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
135503          <idle>-0     (-----) [005] d..1 82318.485880: cpu_idle: state=0 cpu_id=5
135504          <idle>-0     (-----) [005] ...1 82318.486084: cpu_idle: state=4294967295 cpu_id=5
135505          <idle>-0     (-----) [005] d..1 82318.486088: cpu_idle: state=0 cpu_id=5
135506          <idle>-0     (-----) [003] d.h2 82318.486806: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
135507          <idle>-0     (-----) [003] dnh3 82318.486820: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
135508          <idle>-0     (-----) [003] .n.1 82318.486829: cpu_idle: state=4294967295 cpu_id=3
135509          <idle>-0     (-----) [000] d.h3 82318.486838: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
135510          <idle>-0     (-----) [003] d..2 82318.486840: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
135511        DispSync-8879  ( 8858) [003] d..1 82318.486856: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135512          <idle>-0     (-----) [000] dnh4 82318.486870: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
135513        DispSync-8879  ( 8858) [003] d..2 82318.486874: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135514          <idle>-0     (-----) [002] .n.1 82318.486880: cpu_idle: state=4294967295 cpu_id=2
135515          <idle>-0     (-----) [000] .n.1 82318.486884: cpu_idle: state=4294967295 cpu_id=0
135516          <idle>-0     (-----) [002] d..2 82318.486894: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
135517          <idle>-0     (-----) [000] d..2 82318.486896: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
135518        DispSync-8879  ( 8858) [003] d..2 82318.486910: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135519          <idle>-0     (-----) [003] d..1 82318.486925: cpu_idle: state=0 cpu_id=3
135520   sfEventThread-8882  ( 8858) [002] d..3 82318.486933: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
135521 kgsl_worker_thr-258   (  258) [000] d..2 82318.486952: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135522   sfEventThread-8882  ( 8858) [002] d..4 82318.486965: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
135523          <idle>-0     (-----) [001] .n.1 82318.486973: cpu_idle: state=4294967295 cpu_id=1
135524 kgsl_worker_thr-258   (  258) [000] d..3 82318.486974: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135525          <idle>-0     (-----) [001] d..2 82318.486988: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
135526 kgsl_worker_thr-258   (  258) [000] d..2 82318.486999: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135527   sfEventThread-8882  ( 8858) [002] d..2 82318.487004: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135528          <idle>-0     (-----) [002] d..1 82318.487019: cpu_idle: state=0 cpu_id=2
135529  kworker/u16:15-1311  ( 1311) [000] d..2 82318.487181: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135530          <idle>-0     (-----) [000] d..1 82318.487200: cpu_idle: state=0 cpu_id=0
135531  surfaceflinger-8858  ( 8858) [001] d..1 82318.487403: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135532  surfaceflinger-8858  ( 8858) [001] d..2 82318.487431: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135533          <idle>-0     (-----) [002] .n.1 82318.487436: cpu_idle: state=4294967295 cpu_id=2
135534          <idle>-0     (-----) [002] d..2 82318.487448: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
135535   sfEventThread-8882  ( 8858) [002] d..2 82318.487486: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135536          <idle>-0     (-----) [002] d..1 82318.487497: cpu_idle: state=0 cpu_id=2
135537  surfaceflinger-8858  ( 8858) [001] ...1 82318.487653: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
135538  surfaceflinger-8858  ( 8858) [001] ...1 82318.487662: tracing_mark_write: E|8858
135539  surfaceflinger-8858  ( 8858) [001] .... 82318.487729: binder_transaction: transaction=1572983 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
135540  surfaceflinger-8858  ( 8858) [001] .... 82318.487734: binder_transaction_alloc_buf: transaction=1572983 data_size=540 offsets_size=96
135541  surfaceflinger-8858  ( 8858) [001] ...2 82318.487761: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
135542  surfaceflinger-8858  ( 8858) [001] d..4 82318.487769: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
135543  surfaceflinger-8858  ( 8858) [001] d..5 82318.487791: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
135544          <idle>-0     (-----) [002] .n.1 82318.487796: cpu_idle: state=4294967295 cpu_id=2
135545          <idle>-0     (-----) [002] d..2 82318.487808: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
135546 [email protected]   (  619) [002] .... 82318.487820: binder_transaction_received: transaction=1572983
135547  surfaceflinger-8858  ( 8858) [001] d..2 82318.487835: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135548          <idle>-0     (-----) [001] d..1 82318.487859: cpu_idle: state=0 cpu_id=1
135549 [email protected]   (  619) [002] ...1 82318.487870: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
135550 [email protected]   (  619) [002] d.s1 82318.487979: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
135551 [email protected]   (  619) [002] d.s2 82318.488001: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
135552 [email protected]   (  619) [002] ...1 82318.488030: tracing_mark_write: B|619|HWCSession::PresentDisplay::
135553 [email protected]   (  619) [002] ...1 82318.488211: tracing_mark_write: B|619|HWDeviceDRM::Commit::
135554 [email protected]   (  619) [002] ...1 82318.488226: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
135555 [email protected]   (  619) [002] d.s2 82318.488490: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135556 [email protected]   (  619) [002] d.s3 82318.488516: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135557          <idle>-0     (-----) [000] .n.1 82318.488522: cpu_idle: state=4294967295 cpu_id=0
135558          <idle>-0     (-----) [000] d..2 82318.488540: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135559  kworker/u16:15-1311  ( 1311) [000] d..2 82318.488725: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135560          <idle>-0     (-----) [000] d..1 82318.488736: cpu_idle: state=0 cpu_id=0
135561 [email protected]   (  619) [002] d..2 82318.488990: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135562 [email protected]   (  619) [002] d..3 82318.489019: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135563          <idle>-0     (-----) [003] .n.1 82318.489025: cpu_idle: state=4294967295 cpu_id=3
135564          <idle>-0     (-----) [003] d..2 82318.489037: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135565 [email protected]   (  619) [002] ...1 82318.489139: tracing_mark_write: E|619
135566 [email protected]   (  619) [002] ...1 82318.489146: tracing_mark_write: E|619
135567 [email protected]   (  619) [002] ...1 82318.489211: tracing_mark_write: E|619
135568 [email protected]   (  619) [002] ...1 82318.489261: tracing_mark_write: E|619
135569 [email protected]   (  619) [002] .... 82318.489280: binder_transaction: transaction=1572984 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
135570 [email protected]   (  619) [002] .... 82318.489285: binder_transaction_alloc_buf: transaction=1572984 data_size=576 offsets_size=112
135571 [email protected]   (  619) [002] d..2 82318.489310: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
135572 [email protected]   (  619) [002] d..3 82318.489332: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
135573 [email protected]   (  619) [002] .... 82318.489338: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
135574          <idle>-0     (-----) [001] .n.1 82318.489340: cpu_idle: state=4294967295 cpu_id=1
135575          <idle>-0     (-----) [001] d..2 82318.489353: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
135576  surfaceflinger-8858  ( 8858) [001] .... 82318.489364: binder_transaction_received: transaction=1572984
135577 [email protected]   (  619) [002] d..2 82318.489427: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
135578     ksoftirqd/2-26    (   26) [002] d..2 82318.489538: 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
135579          <idle>-0     (-----) [002] d..1 82318.489562: cpu_idle: state=0 cpu_id=2
135580 crtc_commit:111-321   (  321) [003] d..2 82318.489798: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
135581          <idle>-0     (-----) [003] d..1 82318.489816: cpu_idle: state=0 cpu_id=3
135582  surfaceflinger-8858  ( 8858) [001] d..2 82318.489847: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135583          <idle>-0     (-----) [001] d..1 82318.489871: cpu_idle: state=0 cpu_id=1
135584          <idle>-0     (-----) [000] d.s2 82318.491886: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
135585          <idle>-0     (-----) [000] dns3 82318.491909: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
135586          <idle>-0     (-----) [000] .n.1 82318.491919: cpu_idle: state=4294967295 cpu_id=0
135587          <idle>-0     (-----) [000] d..2 82318.491930: 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
135588     rcu_preempt-7     (    7) [000] d..2 82318.491941: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
135589     rcu_preempt-7     (    7) [000] d..3 82318.491985: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
135590     rcu_preempt-7     (    7) [000] d..2 82318.491999: 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
135591         rcuop/0-10    (   10) [000] d..2 82318.492005: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
135592         rcuop/0-10    (   10) [000] d..3 82318.492041: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
135593         rcuop/0-10    (   10) [000] d..2 82318.492051: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
135594         rcuop/0-10    (   10) [000] d..3 82318.492063: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
135595         rcuop/0-10    (   10) [000] d..2 82318.492074: 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
135596         rcuop/1-21    (   21) [000] d..2 82318.492088: 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
135597     rcu_preempt-7     (    7) [000] d..2 82318.492119: 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
135598          <idle>-0     (-----) [000] d..1 82318.492137: cpu_idle: state=0 cpu_id=0
135599          <idle>-0     (-----) [001] d.s3 82318.493694: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135600          <idle>-0     (-----) [001] dns4 82318.493714: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135601          <idle>-0     (-----) [001] .n.1 82318.493731: cpu_idle: state=4294967295 cpu_id=1
135602          <idle>-0     (-----) [001] d..2 82318.493748: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135603     kworker/1:1-25249 (25249) [001] d..2 82318.493797: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135604     kworker/1:1-25249 (25249) [001] d..3 82318.493815: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135605     kworker/1:1-25249 (25249) [001] d..2 82318.493852: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135606 [email protected] (  798) [001] d..2 82318.494022: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135607          <idle>-0     (-----) [001] d..1 82318.494044: cpu_idle: state=0 cpu_id=1
135608          <idle>-0     (-----) [000] d.h5 82318.494891: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135609          <idle>-0     (-----) [000] dnh6 82318.494909: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135610          <idle>-0     (-----) [000] dnh5 82318.494914: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135611          <idle>-0     (-----) [000] dnh6 82318.494928: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135612          <idle>-0     (-----) [003] .n.1 82318.494935: cpu_idle: state=4294967295 cpu_id=3
135613          <idle>-0     (-----) [000] .n.1 82318.494943: cpu_idle: state=4294967295 cpu_id=0
135614          <idle>-0     (-----) [003] d..2 82318.494948: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135615          <idle>-0     (-----) [000] d..2 82318.494956: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135616  crtc_event:111-322   (  322) [000] d..2 82318.494988: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135617          <idle>-0     (-----) [000] d..1 82318.495002: cpu_idle: state=0 cpu_id=0
135618 crtc_commit:111-321   (  321) [003] d..2 82318.495093: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
135619          <idle>-0     (-----) [003] d..1 82318.495103: cpu_idle: state=0 cpu_id=3
135620          <idle>-0     (-----) [003] d.s3 82318.495144: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135621          <idle>-0     (-----) [003] d.s4 82318.495165: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135622          <idle>-0     (-----) [000] .n.1 82318.495171: cpu_idle: state=4294967295 cpu_id=0
135623          <idle>-0     (-----) [003] ...1 82318.495183: cpu_idle: state=4294967295 cpu_id=3
135624          <idle>-0     (-----) [000] d..2 82318.495184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135625          <idle>-0     (-----) [003] d..1 82318.495188: cpu_idle: state=0 cpu_id=3
135626  crtc_event:111-322   (  322) [000] d..2 82318.495218: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135627          <idle>-0     (-----) [000] d..1 82318.495226: cpu_idle: state=0 cpu_id=0
135628          <idle>-0     (-----) [000] d.h5 82318.497221: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135629          <idle>-0     (-----) [000] d.h6 82318.497239: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135630          <idle>-0     (-----) [003] .n.1 82318.497245: cpu_idle: state=4294967295 cpu_id=3
135631          <idle>-0     (-----) [000] ...1 82318.497254: cpu_idle: state=4294967295 cpu_id=0
135632          <idle>-0     (-----) [003] d..2 82318.497257: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135633          <idle>-0     (-----) [000] d..1 82318.497259: cpu_idle: state=0 cpu_id=0
135634 crtc_commit:111-321   (  321) [003] d..2 82318.497335: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135635          <idle>-0     (-----) [003] d..1 82318.497348: cpu_idle: state=0 cpu_id=3
135636          <idle>-0     (-----) [000] d.h5 82318.497516: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135637          <idle>-0     (-----) [000] dnh6 82318.497527: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135638          <idle>-0     (-----) [000] .n.1 82318.497541: cpu_idle: state=4294967295 cpu_id=0
135639          <idle>-0     (-----) [000] d..2 82318.497548: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135640  crtc_event:111-322   (  322) [000] d..2 82318.497573: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135641          <idle>-0     (-----) [000] d..1 82318.497581: cpu_idle: state=0 cpu_id=0
135642          <idle>-0     (-----) [001] d.s3 82318.497964: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135643          <idle>-0     (-----) [001] dns4 82318.497977: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135644          <idle>-0     (-----) [001] .n.1 82318.497993: cpu_idle: state=4294967295 cpu_id=1
135645          <idle>-0     (-----) [001] d..2 82318.498010: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135646     kworker/1:1-25249 (25249) [001] d..2 82318.498043: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135647     kworker/1:1-25249 (25249) [001] d..3 82318.498057: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135648     kworker/1:1-25249 (25249) [001] d..2 82318.498087: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135649 [email protected] (  798) [001] d..2 82318.498227: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135650          <idle>-0     (-----) [001] d..1 82318.498247: cpu_idle: state=0 cpu_id=1
135651          <idle>-0     (-----) [000] d.s2 82318.498473: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
135652          <idle>-0     (-----) [000] dns3 82318.498493: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
135653          <idle>-0     (-----) [000] dns3 82318.498499: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135654          <idle>-0     (-----) [000] dns4 82318.498514: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135655          <idle>-0     (-----) [000] .n.1 82318.498530: cpu_idle: state=4294967295 cpu_id=0
135656          <idle>-0     (-----) [000] d..2 82318.498541: 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
135657     rcu_preempt-7     (    7) [000] d..2 82318.498553: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
135658     rcu_preempt-7     (    7) [000] d..3 82318.498569: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
135659     rcu_preempt-7     (    7) [000] d..2 82318.498580: 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
135660         rcuop/0-10    (   10) [000] d..2 82318.498585: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
135661         rcuop/0-10    (   10) [000] d..3 82318.498599: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
135662         rcuop/0-10    (   10) [000] d..2 82318.498615: 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
135663         rcuop/1-21    (   21) [000] d..2 82318.498629: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135664  kworker/u16:15-1311  ( 1311) [000] d..2 82318.498736: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135665          <idle>-0     (-----) [000] d..1 82318.498754: cpu_idle: state=0 cpu_id=0
135666          <idle>-0     (-----) [003] d.h2 82318.499268: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
135667          <idle>-0     (-----) [003] dnh3 82318.499286: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
135668          <idle>-0     (-----) [003] .n.1 82318.499295: cpu_idle: state=4294967295 cpu_id=3
135669          <idle>-0     (-----) [003] d..2 82318.499306: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
135670        DispSync-8879  ( 8858) [003] d..1 82318.499322: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
135671        DispSync-8879  ( 8858) [003] d..2 82318.499338: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
135672          <idle>-0     (-----) [002] .n.1 82318.499346: cpu_idle: state=4294967295 cpu_id=2
135673          <idle>-0     (-----) [002] d..2 82318.499361: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
135674        DispSync-8879  ( 8858) [003] d..2 82318.499375: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135675          <idle>-0     (-----) [003] d..1 82318.499388: cpu_idle: state=0 cpu_id=3
135676  appEventThread-8881  ( 8858) [002] d..3 82318.499417: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135677          <idle>-0     (-----) [004] dnh2 82318.499451: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135678          <idle>-0     (-----) [004] .n.1 82318.499456: cpu_idle: state=4294967295 cpu_id=4
135679          <idle>-0     (-----) [004] d..2 82318.499464: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
135680  appEventThread-8881  ( 8858) [002] d..2 82318.499489: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135681          <idle>-0     (-----) [002] d..1 82318.499508: cpu_idle: state=0 cpu_id=2
135682 s.nexuslauncher-10023 (10023) [004] .... 82318.499660: binder_transaction: transaction=1572985 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
135683 s.nexuslauncher-10023 (10023) [004] .... 82318.499666: binder_transaction_alloc_buf: transaction=1572985 data_size=80 offsets_size=0
135684 s.nexuslauncher-10023 (10023) [004] d..4 82318.499671: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
135685          <idle>-0     (-----) [000] dnh2 82318.499737: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
135686          <idle>-0     (-----) [000] .n.1 82318.499744: cpu_idle: state=4294967295 cpu_id=0
135687          <idle>-0     (-----) [000] d..2 82318.499758: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
135688 s.nexuslauncher-10023 (10023) [004] d..3 82318.499758: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135689   Binder:8858_1-8871  ( 8858) [000] .... 82318.499767: binder_transaction_received: transaction=1572985
135690 s.nexuslauncher-10023 (10023) [004] d..4 82318.499776: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135691          <idle>-0     (-----) [005] .n.1 82318.499780: cpu_idle: state=4294967295 cpu_id=5
135692          <idle>-0     (-----) [005] d..2 82318.499792: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
135693   Binder:8858_1-8871  ( 8858) [000] d..1 82318.499808: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
135694    RenderThread-16607 (10023) [005] d..2 82318.499822: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
135695          <idle>-0     (-----) [005] d..1 82318.499830: cpu_idle: state=0 cpu_id=5
135696   Binder:8858_1-8871  ( 8858) [000] d..2 82318.499830: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
135697          <idle>-0     (-----) [002] .n.1 82318.499837: cpu_idle: state=4294967295 cpu_id=2
135698          <idle>-0     (-----) [002] d..2 82318.499850: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
135699   Binder:8858_1-8871  ( 8858) [000] d..2 82318.499881: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135700  appEventThread-8881  ( 8858) [002] d..2 82318.499896: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135701          <idle>-0     (-----) [000] d..1 82318.499902: cpu_idle: state=0 cpu_id=0
135702          <idle>-0     (-----) [002] d..1 82318.499908: cpu_idle: state=0 cpu_id=2
135703 s.nexuslauncher-10023 (10023) [004] d..3 82318.499973: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135704 s.nexuslauncher-10023 (10023) [004] d..4 82318.499991: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135705          <idle>-0     (-----) [005] .n.1 82318.499995: cpu_idle: state=4294967295 cpu_id=5
135706          <idle>-0     (-----) [005] d..2 82318.500003: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
135707 s.nexuslauncher-10023 (10023) [004] d..2 82318.500016: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
135708          <idle>-0     (-----) [004] d..1 82318.500032: cpu_idle: state=0 cpu_id=4
135709    RenderThread-16607 (10023) [005] d..1 82318.500156: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135710    RenderThread-16607 (10023) [005] d..2 82318.500175: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
135711          <idle>-0     (-----) [004] .n.1 82318.500182: cpu_idle: state=4294967295 cpu_id=4
135712          <idle>-0     (-----) [004] d..2 82318.500191: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
135713    RenderThread-16607 (10023) [005] .... 82318.500224: binder_transaction: transaction=1572986 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
135714    RenderThread-16607 (10023) [005] .... 82318.500228: binder_transaction_alloc_buf: transaction=1572986 data_size=104 offsets_size=0
135715    RenderThread-16607 (10023) [005] ...2 82318.500232: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
135716    RenderThread-16607 (10023) [005] d..4 82318.500235: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
135717    RenderThread-16607 (10023) [005] d..5 82318.500255: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
135718 s.nexuslauncher-10023 (10023) [004] d..2 82318.500299: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
135719    RenderThread-16607 (10023) [005] d..2 82318.500302: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
135720          <idle>-0     (-----) [004] d..1 82318.500309: cpu_idle: state=0 cpu_id=4
135721   Binder:8858_1-8871  ( 8858) [005] .... 82318.500314: binder_transaction_received: transaction=1572986
135722   Binder:8858_1-8871  ( 8858) [005] .... 82318.500376: binder_transaction: transaction=1572987 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
135723   Binder:8858_1-8871  ( 8858) [005] .... 82318.500380: binder_transaction_alloc_buf: transaction=1572987 data_size=52 offsets_size=8
135724   Binder:8858_1-8871  ( 8858) [005] d..2 82318.500386: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135725   Binder:8858_1-8871  ( 8858) [005] d..3 82318.500398: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135726   Binder:8858_1-8871  ( 8858) [005] .... 82318.500401: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
135727   Binder:8858_1-8871  ( 8858) [005] d..2 82318.500411: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
135728    RenderThread-16607 (10023) [005] .... 82318.500419: binder_transaction_received: transaction=1572987
135729          <idle>-0     (-----) [000] ...1 82318.501457: cpu_idle: state=4294967295 cpu_id=0
135730          <idle>-0     (-----) [000] d..1 82318.501463: cpu_idle: state=0 cpu_id=0
135731    RenderThread-16607 (10023) [005] d..2 82318.501700: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
135732   Binder:8858_1-8871  ( 8858) [005] d..2 82318.501769: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
135733          <idle>-0     (-----) [005] d.h3 82318.501794: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135734          <idle>-0     (-----) [005] d.h4 82318.501802: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
135735          <idle>-0     (-----) [005] dnh4 82318.501805: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135736          <idle>-0     (-----) [005] d..2 82318.501829: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
135737    RenderThread-16607 (10023) [005] .... 82318.501985: binder_transaction: transaction=1572988 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
135738    RenderThread-16607 (10023) [005] .... 82318.501989: binder_transaction_alloc_buf: transaction=1572988 data_size=192 offsets_size=8
135739    RenderThread-16607 (10023) [005] ...2 82318.501997: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
135740    RenderThread-16607 (10023) [005] d..4 82318.502000: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
135741    RenderThread-16607 (10023) [005] d..5 82318.502011: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
135742    RenderThread-16607 (10023) [005] d..2 82318.502023: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
135743   Binder:8858_1-8871  ( 8858) [005] .... 82318.502033: binder_transaction_received: transaction=1572988
135744   Binder:8858_1-8871  ( 8858) [005] .... 82318.502154: binder_transaction: transaction=1572989 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
135745   Binder:8858_1-8871  ( 8858) [005] .... 82318.502159: binder_transaction_alloc_buf: transaction=1572989 data_size=68 offsets_size=0
135746   Binder:8858_1-8871  ( 8858) [005] d..2 82318.502162: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
135747   Binder:8858_1-8871  ( 8858) [005] d..3 82318.502172: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
135748   Binder:8858_1-8871  ( 8858) [005] .... 82318.502175: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
135749   Binder:8858_1-8871  ( 8858) [005] d..2 82318.502205: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
135750    RenderThread-16607 (10023) [005] .... 82318.502215: binder_transaction_received: transaction=1572989
135751    RenderThread-16607 (10023) [005] d..2 82318.502291: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
135752          <idle>-0     (-----) [005] d..1 82318.502308: cpu_idle: state=0 cpu_id=5
135753          <idle>-0     (-----) [000] d.h3 82318.503246: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
135754          <idle>-0     (-----) [003] d.h2 82318.503264: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
135755          <idle>-0     (-----) [000] dnh4 82318.503264: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
135756          <idle>-0     (-----) [003] dnh3 82318.503276: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
135757          <idle>-0     (-----) [000] .n.1 82318.503277: cpu_idle: state=4294967295 cpu_id=0
135758          <idle>-0     (-----) [003] .n.1 82318.503284: cpu_idle: state=4294967295 cpu_id=3
135759          <idle>-0     (-----) [000] d..2 82318.503291: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
135760          <idle>-0     (-----) [003] d..2 82318.503296: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
135761        DispSync-8879  ( 8858) [003] d..1 82318.503308: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135762        DispSync-8879  ( 8858) [003] d..2 82318.503323: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135763          <idle>-0     (-----) [002] .n.1 82318.503329: cpu_idle: state=4294967295 cpu_id=2
135764          <idle>-0     (-----) [002] d..2 82318.503342: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
135765 kgsl_worker_thr-258   (  258) [000] d..2 82318.503347: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
135766        DispSync-8879  ( 8858) [003] d..2 82318.503356: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135767          <idle>-0     (-----) [003] d..1 82318.503370: cpu_idle: state=0 cpu_id=3
135768   sfEventThread-8882  ( 8858) [002] d..3 82318.503380: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
135769 kgsl_worker_thr-258   (  258) [000] d..3 82318.503381: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
135770          <idle>-0     (-----) [003] .n.1 82318.503387: cpu_idle: state=4294967295 cpu_id=3
135771   sfEventThread-8882  ( 8858) [002] d..4 82318.503402: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
135772          <idle>-0     (-----) [003] d..2 82318.503403: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135773          <idle>-0     (-----) [001] .n.1 82318.503409: cpu_idle: state=4294967295 cpu_id=1
135774 kgsl_worker_thr-258   (  258) [000] d..2 82318.503420: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135775          <idle>-0     (-----) [001] d..2 82318.503423: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
135776          <idle>-0     (-----) [000] d..1 82318.503436: cpu_idle: state=0 cpu_id=0
135777   sfEventThread-8882  ( 8858) [002] d..2 82318.503440: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135778          <idle>-0     (-----) [002] d..1 82318.503455: cpu_idle: state=0 cpu_id=2
135779  kworker/u16:15-1311  ( 1311) [003] d..2 82318.503587: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135780          <idle>-0     (-----) [003] d..1 82318.503602: cpu_idle: state=0 cpu_id=3
135781  surfaceflinger-8858  ( 8858) [001] d..2 82318.503770: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
135782  surfaceflinger-8858  ( 8858) [001] d..3 82318.503831: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
135783  surfaceflinger-8858  ( 8858) [001] d..1 82318.503867: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135784  surfaceflinger-8858  ( 8858) [001] d..2 82318.503888: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
135785          <idle>-0     (-----) [002] .n.1 82318.503895: cpu_idle: state=4294967295 cpu_id=2
135786          <idle>-0     (-----) [002] d..2 82318.503907: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
135787   sfEventThread-8882  ( 8858) [002] d..2 82318.503968: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
135788         rcuop/0-10    (   10) [002] d..2 82318.503976: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
135789         rcuop/0-10    (   10) [002] d..3 82318.504017: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
135790         rcuop/0-10    (   10) [002] d..2 82318.504029: 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
135791     rcu_preempt-7     (    7) [002] d..2 82318.504054: 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
135792          <idle>-0     (-----) [002] d..1 82318.504068: cpu_idle: state=0 cpu_id=2
135793  surfaceflinger-8858  ( 8858) [001] ...1 82318.504099: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
135794  surfaceflinger-8858  ( 8858) [001] ...1 82318.504107: tracing_mark_write: E|8858
135795  surfaceflinger-8858  ( 8858) [001] .... 82318.504167: binder_transaction: transaction=1572990 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
135796  surfaceflinger-8858  ( 8858) [001] .... 82318.504174: binder_transaction_alloc_buf: transaction=1572990 data_size=540 offsets_size=96
135797  surfaceflinger-8858  ( 8858) [001] ...2 82318.504200: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
135798  surfaceflinger-8858  ( 8858) [001] d..4 82318.504208: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
135799  surfaceflinger-8858  ( 8858) [001] d..5 82318.504232: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
135800          <idle>-0     (-----) [002] .n.1 82318.504237: cpu_idle: state=4294967295 cpu_id=2
135801          <idle>-0     (-----) [002] d..2 82318.504250: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
135802 [email protected]   (  619) [002] .... 82318.504262: binder_transaction_received: transaction=1572990
135803  surfaceflinger-8858  ( 8858) [001] d..2 82318.504272: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135804          <idle>-0     (-----) [001] d..1 82318.504296: cpu_idle: state=0 cpu_id=1
135805 [email protected]   (  619) [002] ...1 82318.504314: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
135806 [email protected]   (  619) [002] ...1 82318.504420: tracing_mark_write: B|619|HWCSession::PresentDisplay::
135807 [email protected]   (  619) [002] ...1 82318.504598: tracing_mark_write: B|619|HWDeviceDRM::Commit::
135808 [email protected]   (  619) [002] ...1 82318.504611: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
135809 [email protected]   (  619) [002] d.s2 82318.505164: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
135810 [email protected]   (  619) [002] d.s3 82318.505189: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
135811          <idle>-0     (-----) [003] .n.1 82318.505195: cpu_idle: state=4294967295 cpu_id=3
135812 [email protected]   (  619) [002] d.s2 82318.505199: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
135813          <idle>-0     (-----) [003] d..2 82318.505211: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135814 [email protected]   (  619) [002] d.s3 82318.505215: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
135815 [email protected]   (  619) [002] d..2 82318.505341: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135816 [email protected]   (  619) [002] d..3 82318.505373: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
135817          <idle>-0     (-----) [000] .n.1 82318.505380: cpu_idle: state=4294967295 cpu_id=0
135818          <idle>-0     (-----) [000] d..2 82318.505395: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135819  kworker/u16:15-1311  ( 1311) [003] d..2 82318.505465: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
135820          <idle>-0     (-----) [003] d..1 82318.505480: cpu_idle: state=0 cpu_id=3
135821 [email protected]   (  619) [002] ...1 82318.505493: tracing_mark_write: E|619
135822          <idle>-0     (-----) [001] d.s3 82318.505494: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
135823 [email protected]   (  619) [002] ...1 82318.505501: tracing_mark_write: E|619
135824          <idle>-0     (-----) [001] d.s4 82318.505510: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
135825          <idle>-0     (-----) [001] d.s4 82318.505520: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
135826          <idle>-0     (-----) [003] .n.1 82318.505526: cpu_idle: state=4294967295 cpu_id=3
135827          <idle>-0     (-----) [001] ...1 82318.505532: cpu_idle: state=4294967295 cpu_id=1
135828          <idle>-0     (-----) [001] d..1 82318.505540: cpu_idle: state=0 cpu_id=1
135829          <idle>-0     (-----) [003] d..2 82318.505540: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135830 [email protected]   (  619) [002] ...1 82318.505565: tracing_mark_write: E|619
135831  kworker/u16:15-1311  ( 1311) [003] d..2 82318.505572: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135832          <idle>-0     (-----) [003] d..1 82318.505584: cpu_idle: state=0 cpu_id=3
135833 [email protected]   (  619) [002] ...1 82318.505614: tracing_mark_write: E|619
135834 [email protected]   (  619) [002] .... 82318.505632: binder_transaction: transaction=1572991 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
135835 [email protected]   (  619) [002] .... 82318.505637: binder_transaction_alloc_buf: transaction=1572991 data_size=576 offsets_size=112
135836 [email protected]   (  619) [002] d..2 82318.505661: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
135837 [email protected]   (  619) [002] d..3 82318.505684: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
135838          <idle>-0     (-----) [001] .n.1 82318.505689: cpu_idle: state=4294967295 cpu_id=1
135839 [email protected]   (  619) [002] .... 82318.505690: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
135840          <idle>-0     (-----) [001] d..2 82318.505703: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
135841  surfaceflinger-8858  ( 8858) [001] .... 82318.505715: binder_transaction_received: transaction=1572991
135842 [email protected]   (  619) [002] d..2 82318.505777: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
135843     kworker/2:1-25259 (25259) [002] d..2 82318.505836: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135844          <idle>-0     (-----) [002] d..1 82318.505852: cpu_idle: state=0 cpu_id=2
135845 crtc_commit:111-321   (  321) [000] d..2 82318.506160: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
135846          <idle>-0     (-----) [000] d..1 82318.506179: cpu_idle: state=0 cpu_id=0
135847  surfaceflinger-8858  ( 8858) [001] d..2 82318.506195: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135848          <idle>-0     (-----) [001] d..1 82318.506220: cpu_idle: state=0 cpu_id=1
135849          <idle>-0     (-----) [002] ...1 82318.507745: cpu_idle: state=4294967295 cpu_id=2
135850          <idle>-0     (-----) [002] d..1 82318.507752: cpu_idle: state=0 cpu_id=2
135851          <idle>-0     (-----) [001] d.s3 82318.507908: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135852          <idle>-0     (-----) [001] dns4 82318.507923: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135853          <idle>-0     (-----) [001] .n.1 82318.507941: cpu_idle: state=4294967295 cpu_id=1
135854          <idle>-0     (-----) [001] d..2 82318.507956: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135855     kworker/1:1-25249 (25249) [001] d..2 82318.507997: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135856          <idle>-0     (-----) [002] ...1 82318.508003: cpu_idle: state=4294967295 cpu_id=2
135857          <idle>-0     (-----) [002] d..1 82318.508008: cpu_idle: state=0 cpu_id=2
135858     kworker/1:1-25249 (25249) [001] d..3 82318.508012: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135859     kworker/1:1-25249 (25249) [001] d..2 82318.508047: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135860 [email protected] (  798) [001] d..2 82318.508208: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135861          <idle>-0     (-----) [001] d..1 82318.508230: cpu_idle: state=0 cpu_id=1
135862          <idle>-0     (-----) [002] d.s2 82318.508474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
135863          <idle>-0     (-----) [002] dns3 82318.508497: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
135864          <idle>-0     (-----) [002] dns3 82318.508504: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
135865          <idle>-0     (-----) [002] dns4 82318.508541: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
135866          <idle>-0     (-----) [002] .n.1 82318.508561: cpu_idle: state=4294967295 cpu_id=2
135867          <idle>-0     (-----) [002] d..2 82318.508574: 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
135868     rcu_preempt-7     (    7) [002] d..2 82318.508589: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
135869     rcu_preempt-7     (    7) [002] d..3 82318.508605: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
135870     rcu_preempt-7     (    7) [002] d..2 82318.508618: 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
135871         rcuop/0-10    (   10) [002] d..2 82318.508623: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
135872         rcuop/0-10    (   10) [002] d..3 82318.508657: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
135873         rcuop/0-10    (   10) [002] d..2 82318.508661: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
135874         rcuop/0-10    (   10) [002] d..3 82318.508674: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
135875         rcuop/0-10    (   10) [002] d..2 82318.508684: 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
135876         rcuop/1-21    (   21) [002] d..2 82318.508698: 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
135877     rcu_preempt-7     (    7) [002] d..2 82318.508711: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
135878  kworker/u16:15-1311  ( 1311) [002] d..2 82318.508833: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135879          <idle>-0     (-----) [002] d..1 82318.508852: cpu_idle: state=0 cpu_id=2
135880          <idle>-0     (-----) [001] d.s3 82318.509039: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135881          <idle>-0     (-----) [001] dns4 82318.509052: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135882          <idle>-0     (-----) [001] .n.1 82318.509074: cpu_idle: state=4294967295 cpu_id=1
135883          <idle>-0     (-----) [001] d..2 82318.509091: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135884     kworker/1:1-25249 (25249) [001] d..2 82318.509124: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135885     kworker/1:1-25249 (25249) [001] d..3 82318.509137: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135886     kworker/1:1-25249 (25249) [001] d..2 82318.509165: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135887 [email protected] (  798) [001] d..2 82318.509307: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135888          <idle>-0     (-----) [001] d..1 82318.509328: cpu_idle: state=0 cpu_id=1
135889          <idle>-0     (-----) [001] d.s3 82318.510228: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135890          <idle>-0     (-----) [001] dns4 82318.510240: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135891          <idle>-0     (-----) [001] .n.1 82318.510255: cpu_idle: state=4294967295 cpu_id=1
135892          <idle>-0     (-----) [001] d..2 82318.510270: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135893     kworker/1:1-25249 (25249) [001] d..2 82318.510300: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135894     kworker/1:1-25249 (25249) [001] d..3 82318.510313: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135895     kworker/1:1-25249 (25249) [001] d..2 82318.510339: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135896 [email protected] (  798) [001] d.s2 82318.510421: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
135897 [email protected] (  798) [001] dns3 82318.510451: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
135898 [email protected] (  798) [001] d..2 82318.510473: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
135899   cds_mc_thread-16565 (16565) [001] d..2 82318.510560: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135900 [email protected] (  798) [001] d.s2 82318.510610: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135901 [email protected] (  798) [001] d.s3 82318.510622: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135902 [email protected] (  798) [001] d..2 82318.510727: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135903          <idle>-0     (-----) [002] ...1 82318.510746: cpu_idle: state=4294967295 cpu_id=2
135904          <idle>-0     (-----) [002] d..1 82318.510753: cpu_idle: state=0 cpu_id=2
135905     kworker/1:1-25249 (25249) [001] d..2 82318.510756: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135906     kworker/1:1-25249 (25249) [001] d..3 82318.510768: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
135907     kworker/1:1-25249 (25249) [001] d..2 82318.510794: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135908 [email protected] (  798) [001] d..2 82318.510933: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135909          <idle>-0     (-----) [001] d..1 82318.510955: cpu_idle: state=0 cpu_id=1
135910          <idle>-0     (-----) [000] d.h5 82318.511353: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135911          <idle>-0     (-----) [000] dnh6 82318.511369: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135912          <idle>-0     (-----) [000] dnh5 82318.511374: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
135913          <idle>-0     (-----) [000] dnh6 82318.511395: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135914          <idle>-0     (-----) [003] .n.1 82318.511401: cpu_idle: state=4294967295 cpu_id=3
135915          <idle>-0     (-----) [000] .n.1 82318.511410: cpu_idle: state=4294967295 cpu_id=0
135916          <idle>-0     (-----) [003] d..2 82318.511413: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135917          <idle>-0     (-----) [000] d..2 82318.511425: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135918  crtc_event:111-322   (  322) [000] d..2 82318.511457: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135919          <idle>-0     (-----) [000] d..1 82318.511473: cpu_idle: state=0 cpu_id=0
135920 crtc_commit:111-321   (  321) [003] d..2 82318.511568: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
135921          <idle>-0     (-----) [003] d..1 82318.511579: cpu_idle: state=0 cpu_id=3
135922          <idle>-0     (-----) [003] d.H3 82318.511888: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
135923          <idle>-0     (-----) [003] dnH4 82318.511908: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
135924          <idle>-0     (-----) [003] dns3 82318.511919: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135925          <idle>-0     (-----) [003] dns4 82318.511933: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135926          <idle>-0     (-----) [000] .n.1 82318.511940: cpu_idle: state=4294967295 cpu_id=0
135927          <idle>-0     (-----) [000] d..2 82318.511953: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135928          <idle>-0     (-----) [003] .n.1 82318.511957: cpu_idle: state=4294967295 cpu_id=3
135929          <idle>-0     (-----) [003] d..2 82318.511967: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
135930  crtc_event:111-322   (  322) [000] d..2 82318.511991: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135931          <idle>-0     (-----) [000] d..1 82318.512002: cpu_idle: state=0 cpu_id=0
135932         sugov:0-576   (  576) [003] .... 82318.512008: clk_set_rate: pwrcl_clk 748800000
135933         sugov:0-576   (  576) [003] .... 82318.512028: clk_set_rate: cpu3_pwrcl_clk 825600000
135934         sugov:0-576   (  576) [003] .... 82318.512039: clk_set_rate: cpu2_pwrcl_clk 825600000
135935         sugov:0-576   (  576) [003] .... 82318.512047: clk_set_rate: cpu1_pwrcl_clk 825600000
135936         sugov:0-576   (  576) [003] .... 82318.512055: clk_set_rate: cpu0_pwrcl_clk 748800000
135937         sugov:0-576   (  576) [003] .... 82318.512121: cpu_frequency: state=748800 cpu_id=0
135938         sugov:0-576   (  576) [003] .... 82318.512147: cpu_frequency: state=748800 cpu_id=1
135939         sugov:0-576   (  576) [003] .... 82318.512153: cpu_frequency: state=748800 cpu_id=2
135940         sugov:0-576   (  576) [003] .... 82318.512157: cpu_frequency: state=748800 cpu_id=3
135941         sugov:0-576   (  576) [003] d..2 82318.512193: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135942          <idle>-0     (-----) [003] d..1 82318.512209: cpu_idle: state=0 cpu_id=3
135943          <idle>-0     (-----) [001] ...1 82318.512874: cpu_idle: state=4294967295 cpu_id=1
135944          <idle>-0     (-----) [001] d..1 82318.512880: cpu_idle: state=0 cpu_id=1
135945          <idle>-0     (-----) [000] d.h5 82318.513684: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135946          <idle>-0     (-----) [000] d.h6 82318.513708: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
135947          <idle>-0     (-----) [003] .n.1 82318.513714: cpu_idle: state=4294967295 cpu_id=3
135948          <idle>-0     (-----) [000] ...1 82318.513723: cpu_idle: state=4294967295 cpu_id=0
135949          <idle>-0     (-----) [003] d..2 82318.513726: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
135950          <idle>-0     (-----) [000] d..1 82318.513730: cpu_idle: state=0 cpu_id=0
135951 crtc_commit:111-321   (  321) [003] d..2 82318.513806: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135952          <idle>-0     (-----) [003] d..1 82318.513820: cpu_idle: state=0 cpu_id=3
135953          <idle>-0     (-----) [000] d.h5 82318.513978: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135954          <idle>-0     (-----) [000] dnh6 82318.513990: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
135955          <idle>-0     (-----) [000] .n.1 82318.514005: cpu_idle: state=4294967295 cpu_id=0
135956          <idle>-0     (-----) [000] d..2 82318.514018: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
135957  crtc_event:111-322   (  322) [000] d..2 82318.514046: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
135958          <idle>-0     (-----) [000] d..1 82318.514059: cpu_idle: state=0 cpu_id=0
135959          <idle>-0     (-----) [002] ...1 82318.514683: cpu_idle: state=4294967295 cpu_id=2
135960          <idle>-0     (-----) [002] d..1 82318.514689: cpu_idle: state=0 cpu_id=2
135961          <idle>-0     (-----) [001] d.s3 82318.515032: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135962          <idle>-0     (-----) [001] dns4 82318.515049: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
135963          <idle>-0     (-----) [001] .n.1 82318.515065: cpu_idle: state=4294967295 cpu_id=1
135964          <idle>-0     (-----) [001] d..2 82318.515083: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
135965          <idle>-0     (-----) [002] d.s2 82318.515140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
135966          <idle>-0     (-----) [002] dns3 82318.515166: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
135967          <idle>-0     (-----) [002] .n.1 82318.515179: cpu_idle: state=4294967295 cpu_id=2
135968          <idle>-0     (-----) [002] d..2 82318.515196: 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
135969     kworker/1:1-25249 (25249) [001] d..2 82318.515200: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
135970     rcu_preempt-7     (    7) [002] d..2 82318.515238: 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
135971          <idle>-0     (-----) [002] d..1 82318.515252: cpu_idle: state=0 cpu_id=2
135972     kworker/1:1-25249 (25249) [001] d..3 82318.515260: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=002
135973          <idle>-0     (-----) [002] .n.1 82318.515266: cpu_idle: state=4294967295 cpu_id=2
135974          <idle>-0     (-----) [002] d..2 82318.515281: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
135975     kworker/1:1-25249 (25249) [001] d..2 82318.515306: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
135976          <idle>-0     (-----) [001] d..1 82318.515326: cpu_idle: state=0 cpu_id=1
135977   cds_mc_thread-16565 (16565) [002] d..2 82318.515398: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
135978   cds_mc_thread-16565 (16565) [002] dn.3 82318.515453: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=002
135979   cds_mc_thread-16565 (16565) [002] d..2 82318.515466: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=R+ ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
135980 wlan_logging_th-647   (  647) [002] d..2 82318.515490: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
135981 wlan_logging_th-647   (  647) [002] d..3 82318.515532: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=002
135982 wlan_logging_th-647   (  647) [002] d..2 82318.515556: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
135983   cds_mc_thread-16565 (16565) [002] d..3 82318.515675: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
135984   cds_mc_thread-16565 (16565) [002] dn.4 82318.515722: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
135985          <idle>-0     (-----) [003] d.h2 82318.515728: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
135986   cds_mc_thread-16565 (16565) [002] d..2 82318.515734: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
135987          <idle>-0     (-----) [003] dnh3 82318.515749: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
135988         rcuop/2-29    (   29) [002] d..2 82318.515750: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
135989          <idle>-0     (-----) [003] .n.1 82318.515760: cpu_idle: state=4294967295 cpu_id=3
135990          <idle>-0     (-----) [003] d..2 82318.515772: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
135991   cds_mc_thread-16565 (16565) [002] d..2 82318.515788: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
135992        DispSync-8879  ( 8858) [003] d..1 82318.515790: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
135993        DispSync-8879  ( 8858) [003] d..2 82318.515820: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
135994          <idle>-0     (-----) [000] .n.1 82318.515825: cpu_idle: state=4294967295 cpu_id=0
135995          <idle>-0     (-----) [000] d..2 82318.515838: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
135996        DispSync-8879  ( 8858) [003] d..2 82318.515859: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
135997          <idle>-0     (-----) [003] d..1 82318.515873: cpu_idle: state=0 cpu_id=3
135998 [email protected] (  798) [002] d..2 82318.515891: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
135999  appEventThread-8881  ( 8858) [000] d..3 82318.515896: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136000          <idle>-0     (-----) [002] d..1 82318.515913: cpu_idle: state=0 cpu_id=2
136001          <idle>-0     (-----) [004] dnh2 82318.515927: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136002          <idle>-0     (-----) [004] .n.1 82318.515931: cpu_idle: state=4294967295 cpu_id=4
136003          <idle>-0     (-----) [004] d..2 82318.515939: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
136004  appEventThread-8881  ( 8858) [000] d..2 82318.515964: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136005          <idle>-0     (-----) [000] d..1 82318.515983: cpu_idle: state=0 cpu_id=0
136006 s.nexuslauncher-10023 (10023) [004] .... 82318.516135: binder_transaction: transaction=1572992 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
136007 s.nexuslauncher-10023 (10023) [004] .... 82318.516141: binder_transaction_alloc_buf: transaction=1572992 data_size=80 offsets_size=0
136008 s.nexuslauncher-10023 (10023) [004] d..4 82318.516146: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
136009          <idle>-0     (-----) [000] dnh2 82318.516214: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
136010          <idle>-0     (-----) [000] .n.1 82318.516221: cpu_idle: state=4294967295 cpu_id=0
136011 s.nexuslauncher-10023 (10023) [004] d..3 82318.516234: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136012          <idle>-0     (-----) [000] d..2 82318.516235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
136013   Binder:8858_1-8871  ( 8858) [000] .... 82318.516245: binder_transaction_received: transaction=1572992
136014 s.nexuslauncher-10023 (10023) [004] d..4 82318.516249: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136015          <idle>-0     (-----) [005] .n.1 82318.516255: cpu_idle: state=4294967295 cpu_id=5
136016          <idle>-0     (-----) [005] d..2 82318.516267: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136017   Binder:8858_1-8871  ( 8858) [000] d..1 82318.516282: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
136018    RenderThread-16607 (10023) [005] d..2 82318.516303: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136019          <idle>-0     (-----) [005] d..1 82318.516311: cpu_idle: state=0 cpu_id=5
136020   Binder:8858_1-8871  ( 8858) [000] d..2 82318.516311: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
136021          <idle>-0     (-----) [001] .n.1 82318.516318: cpu_idle: state=4294967295 cpu_id=1
136022          <idle>-0     (-----) [001] d..2 82318.516332: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
136023   Binder:8858_1-8871  ( 8858) [000] d..2 82318.516366: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136024          <idle>-0     (-----) [000] d..1 82318.516385: cpu_idle: state=0 cpu_id=0
136025  appEventThread-8881  ( 8858) [001] d..2 82318.516411: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136026          <idle>-0     (-----) [001] d..1 82318.516430: cpu_idle: state=0 cpu_id=1
136027 s.nexuslauncher-10023 (10023) [004] d..3 82318.516459: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136028 s.nexuslauncher-10023 (10023) [004] d..4 82318.516476: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136029          <idle>-0     (-----) [005] .n.1 82318.516481: cpu_idle: state=4294967295 cpu_id=5
136030          <idle>-0     (-----) [005] d..2 82318.516488: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136031 s.nexuslauncher-10023 (10023) [004] d..2 82318.516502: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
136032          <idle>-0     (-----) [004] d..1 82318.516518: cpu_idle: state=0 cpu_id=4
136033    RenderThread-16607 (10023) [005] d..1 82318.516637: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136034    RenderThread-16607 (10023) [005] d..2 82318.516655: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136035          <idle>-0     (-----) [004] .n.1 82318.516661: cpu_idle: state=4294967295 cpu_id=4
136036          <idle>-0     (-----) [004] d..2 82318.516671: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
136037    RenderThread-16607 (10023) [005] .... 82318.516704: binder_transaction: transaction=1572993 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
136038    RenderThread-16607 (10023) [005] .... 82318.516708: binder_transaction_alloc_buf: transaction=1572993 data_size=104 offsets_size=0
136039    RenderThread-16607 (10023) [005] ...2 82318.516711: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
136040    RenderThread-16607 (10023) [005] d..4 82318.516715: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
136041    RenderThread-16607 (10023) [005] d..5 82318.516734: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136042 s.nexuslauncher-10023 (10023) [004] d..2 82318.516778: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
136043    RenderThread-16607 (10023) [005] d..2 82318.516781: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
136044          <idle>-0     (-----) [004] d..1 82318.516788: cpu_idle: state=0 cpu_id=4
136045   Binder:8858_1-8871  ( 8858) [005] .... 82318.516794: binder_transaction_received: transaction=1572993
136046   Binder:8858_1-8871  ( 8858) [005] .... 82318.516856: binder_transaction: transaction=1572994 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
136047   Binder:8858_1-8871  ( 8858) [005] .... 82318.516861: binder_transaction_alloc_buf: transaction=1572994 data_size=52 offsets_size=8
136048   Binder:8858_1-8871  ( 8858) [005] d..2 82318.516868: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136049   Binder:8858_1-8871  ( 8858) [005] d..3 82318.516879: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136050   Binder:8858_1-8871  ( 8858) [005] .... 82318.516881: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
136051   Binder:8858_1-8871  ( 8858) [005] d..2 82318.516891: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
136052    RenderThread-16607 (10023) [005] .... 82318.516900: binder_transaction_received: transaction=1572994
136053    RenderThread-16607 (10023) [005] d..2 82318.518211: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
136054   Binder:8858_1-8871  ( 8858) [005] d..2 82318.518279: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136055          <idle>-0     (-----) [005] d..1 82318.518293: cpu_idle: state=0 cpu_id=5
136056          <idle>-0     (-----) [005] d.h2 82318.518307: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136057          <idle>-0     (-----) [005] d.h3 82318.518315: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
136058          <idle>-0     (-----) [005] dnh3 82318.518318: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136059          <idle>-0     (-----) [005] .n.1 82318.518325: cpu_idle: state=4294967295 cpu_id=5
136060          <idle>-0     (-----) [005] d..2 82318.518334: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136061    RenderThread-16607 (10023) [005] d.s2 82318.518473: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
136062          <idle>-0     (-----) [001] ...1 82318.518498: cpu_idle: state=4294967295 cpu_id=1
136063          <idle>-0     (-----) [001] d..1 82318.518503: cpu_idle: state=0 cpu_id=1
136064          <idle>-0     (-----) [000] dnh2 82318.518520: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136065          <idle>-0     (-----) [000] .n.1 82318.518528: cpu_idle: state=4294967295 cpu_id=0
136066          <idle>-0     (-----) [000] d..2 82318.518545: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136067    RenderThread-16607 (10023) [005] .... 82318.518571: binder_transaction: transaction=1572995 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
136068    RenderThread-16607 (10023) [005] .... 82318.518575: binder_transaction_alloc_buf: transaction=1572995 data_size=192 offsets_size=8
136069    RenderThread-16607 (10023) [005] ...2 82318.518582: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
136070    RenderThread-16607 (10023) [005] d..4 82318.518585: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136071    RenderThread-16607 (10023) [005] d..5 82318.518595: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136072    RenderThread-16607 (10023) [005] d..2 82318.518614: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
136073   Binder:8858_1-8871  ( 8858) [005] .... 82318.518631: binder_transaction_received: transaction=1572995
136074   Binder:8858_1-8871  ( 8858) [005] .... 82318.518773: binder_transaction: transaction=1572996 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
136075   Binder:8858_1-8871  ( 8858) [005] .... 82318.518777: binder_transaction_alloc_buf: transaction=1572996 data_size=68 offsets_size=0
136076   Binder:8858_1-8871  ( 8858) [005] d..2 82318.518780: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136077  kworker/u16:15-1311  ( 1311) [000] d..2 82318.518788: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136078   Binder:8858_1-8871  ( 8858) [005] d..3 82318.518791: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136079   Binder:8858_1-8871  ( 8858) [005] .... 82318.518794: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
136080          <idle>-0     (-----) [000] d..1 82318.518804: cpu_idle: state=0 cpu_id=0
136081   Binder:8858_1-8871  ( 8858) [005] d..2 82318.518824: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
136082    RenderThread-16607 (10023) [005] .... 82318.518834: binder_transaction_received: transaction=1572996
136083    RenderThread-16607 (10023) [005] d..2 82318.518905: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136084          <idle>-0     (-----) [005] d..1 82318.518922: cpu_idle: state=0 cpu_id=5
136085          <idle>-0     (-----) [003] d.h2 82318.519746: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
136086          <idle>-0     (-----) [000] d.h3 82318.519759: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
136087          <idle>-0     (-----) [003] dnh3 82318.519760: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
136088          <idle>-0     (-----) [003] .n.1 82318.519769: cpu_idle: state=4294967295 cpu_id=3
136089          <idle>-0     (-----) [000] dnh4 82318.519779: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
136090          <idle>-0     (-----) [003] d..2 82318.519781: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
136091          <idle>-0     (-----) [000] .n.1 82318.519794: cpu_idle: state=4294967295 cpu_id=0
136092        DispSync-8879  ( 8858) [003] d..1 82318.519797: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136093          <idle>-0     (-----) [000] d..2 82318.519808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
136094        DispSync-8879  ( 8858) [003] d..2 82318.519815: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136095          <idle>-0     (-----) [002] .n.1 82318.519824: cpu_idle: state=4294967295 cpu_id=2
136096          <idle>-0     (-----) [002] d..2 82318.519840: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
136097        DispSync-8879  ( 8858) [003] d..2 82318.519850: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136098 kgsl_worker_thr-258   (  258) [000] d..2 82318.519865: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136099          <idle>-0     (-----) [003] d..1 82318.519865: cpu_idle: state=0 cpu_id=3
136100 kgsl_worker_thr-258   (  258) [000] d..3 82318.519888: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136101   sfEventThread-8882  ( 8858) [002] d..3 82318.519896: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136102 kgsl_worker_thr-258   (  258) [000] d..2 82318.519915: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136103   sfEventThread-8882  ( 8858) [002] d..4 82318.519923: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136104          <idle>-0     (-----) [001] .n.1 82318.519929: cpu_idle: state=4294967295 cpu_id=1
136105          <idle>-0     (-----) [001] d..2 82318.519942: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
136106   sfEventThread-8882  ( 8858) [002] d..2 82318.519971: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136107          <idle>-0     (-----) [002] d..1 82318.519985: cpu_idle: state=0 cpu_id=2
136108  kworker/u16:15-1311  ( 1311) [000] d..2 82318.520100: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136109          <idle>-0     (-----) [000] d..1 82318.520122: cpu_idle: state=0 cpu_id=0
136110  surfaceflinger-8858  ( 8858) [001] d..1 82318.520353: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136111  surfaceflinger-8858  ( 8858) [001] d..2 82318.520381: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136112          <idle>-0     (-----) [002] .n.1 82318.520387: cpu_idle: state=4294967295 cpu_id=2
136113          <idle>-0     (-----) [002] d..2 82318.520397: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
136114   sfEventThread-8882  ( 8858) [002] d..2 82318.520438: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136115          <idle>-0     (-----) [002] d..1 82318.520447: cpu_idle: state=0 cpu_id=2
136116  surfaceflinger-8858  ( 8858) [001] ...1 82318.520621: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
136117  surfaceflinger-8858  ( 8858) [001] ...1 82318.520631: tracing_mark_write: E|8858
136118  surfaceflinger-8858  ( 8858) [001] .... 82318.520706: binder_transaction: transaction=1572997 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
136119  surfaceflinger-8858  ( 8858) [001] .... 82318.520713: binder_transaction_alloc_buf: transaction=1572997 data_size=540 offsets_size=96
136120  surfaceflinger-8858  ( 8858) [001] ...2 82318.520741: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
136121  surfaceflinger-8858  ( 8858) [001] d..4 82318.520750: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
136122  surfaceflinger-8858  ( 8858) [001] d..5 82318.520776: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
136123          <idle>-0     (-----) [002] .n.1 82318.520781: cpu_idle: state=4294967295 cpu_id=2
136124          <idle>-0     (-----) [002] d..2 82318.520790: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
136125 [email protected]   (  619) [002] .... 82318.520803: binder_transaction_received: transaction=1572997
136126  surfaceflinger-8858  ( 8858) [001] d..2 82318.520819: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136127          <idle>-0     (-----) [001] d..1 82318.520843: cpu_idle: state=0 cpu_id=1
136128 [email protected]   (  619) [002] ...1 82318.520865: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
136129 [email protected]   (  619) [002] ...1 82318.520996: tracing_mark_write: B|619|HWCSession::PresentDisplay::
136130 [email protected]   (  619) [002] ...1 82318.521200: tracing_mark_write: B|619|HWDeviceDRM::Commit::
136131 [email protected]   (  619) [002] ...1 82318.521217: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
136132 [email protected]   (  619) [002] d.s1 82318.521827: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136133 [email protected]   (  619) [002] d.s2 82318.521857: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136134 [email protected]   (  619) [002] d..2 82318.522007: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136135 [email protected]   (  619) [002] d..3 82318.522032: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136136          <idle>-0     (-----) [003] .n.1 82318.522039: cpu_idle: state=4294967295 cpu_id=3
136137          <idle>-0     (-----) [003] d..2 82318.522054: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
136138 [email protected]   (  619) [002] ...1 82318.522159: tracing_mark_write: E|619
136139 [email protected]   (  619) [002] ...1 82318.522168: tracing_mark_write: E|619
136140 [email protected]   (  619) [002] ...1 82318.522239: tracing_mark_write: E|619
136141 [email protected]   (  619) [002] ...1 82318.522292: tracing_mark_write: E|619
136142 [email protected]   (  619) [002] .... 82318.522311: binder_transaction: transaction=1572998 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
136143 [email protected]   (  619) [002] .... 82318.522317: binder_transaction_alloc_buf: transaction=1572998 data_size=576 offsets_size=112
136144 [email protected]   (  619) [002] d..2 82318.522345: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136145 [email protected]   (  619) [002] d..3 82318.522368: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136146 [email protected]   (  619) [002] .... 82318.522374: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
136147          <idle>-0     (-----) [001] .n.1 82318.522378: cpu_idle: state=4294967295 cpu_id=1
136148          <idle>-0     (-----) [001] d..2 82318.522393: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
136149  surfaceflinger-8858  ( 8858) [001] .... 82318.522404: binder_transaction_received: transaction=1572998
136150 [email protected]   (  619) [002] d..2 82318.522468: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
136151     rcu_preempt-7     (    7) [002] d..2 82318.522483: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
136152     rcu_preempt-7     (    7) [002] d..3 82318.522510: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
136153     rcu_preempt-7     (    7) [002] d..2 82318.522530: 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
136154         rcuop/0-10    (   10) [002] d..2 82318.522536: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
136155         rcuop/0-10    (   10) [002] d..3 82318.522553: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
136156         rcuop/0-10    (   10) [002] d..2 82318.522565: 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
136157         rcuop/1-21    (   21) [002] d..2 82318.522604: 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
136158          <idle>-0     (-----) [002] d..1 82318.522625: cpu_idle: state=0 cpu_id=2
136159 crtc_commit:111-321   (  321) [003] d..2 82318.522833: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
136160          <idle>-0     (-----) [003] d..1 82318.522851: cpu_idle: state=0 cpu_id=3
136161  surfaceflinger-8858  ( 8858) [001] d..2 82318.522902: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136162          <idle>-0     (-----) [001] d..1 82318.522927: cpu_idle: state=0 cpu_id=1
136163          <idle>-0     (-----) [000] d.h5 82318.527824: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136164          <idle>-0     (-----) [000] dnh6 82318.527841: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136165          <idle>-0     (-----) [000] dnh5 82318.527847: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136166          <idle>-0     (-----) [000] dnh6 82318.527863: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136167          <idle>-0     (-----) [003] .n.1 82318.527871: cpu_idle: state=4294967295 cpu_id=3
136168          <idle>-0     (-----) [000] .n.1 82318.527879: cpu_idle: state=4294967295 cpu_id=0
136169          <idle>-0     (-----) [003] d..2 82318.527885: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
136170          <idle>-0     (-----) [000] d..2 82318.527895: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
136171  crtc_event:111-322   (  322) [000] d..2 82318.527935: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136172          <idle>-0     (-----) [000] d..2 82318.527941: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
136173          <idle>-0     (-----) [000] dn.3 82318.527956: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
136174          <idle>-0     (-----) [000] d..2 82318.527966: 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
136175     ksoftirqd/0-3     (    3) [000] d..2 82318.527993: 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
136176          <idle>-0     (-----) [000] d..1 82318.528009: cpu_idle: state=0 cpu_id=0
136177 crtc_commit:111-321   (  321) [003] d..2 82318.528034: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
136178          <idle>-0     (-----) [003] d..1 82318.528045: cpu_idle: state=0 cpu_id=3
136179          <idle>-0     (-----) [003] d.s3 82318.528475: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136180          <idle>-0     (-----) [002] d.s2 82318.528478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136181          <idle>-0     (-----) [002] dns3 82318.528497: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136182          <idle>-0     (-----) [003] d.s4 82318.528497: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136183          <idle>-0     (-----) [000] .n.1 82318.528504: cpu_idle: state=4294967295 cpu_id=0
136184          <idle>-0     (-----) [003] d.s3 82318.528507: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136185          <idle>-0     (-----) [000] d..2 82318.528518: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
136186          <idle>-0     (-----) [002] .n.1 82318.528521: cpu_idle: state=4294967295 cpu_id=2
136187          <idle>-0     (-----) [002] d..2 82318.528538: 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
136188          <idle>-0     (-----) [003] dns4 82318.528540: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
136189  crtc_event:111-322   (  322) [000] d..2 82318.528563: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136190          <idle>-0     (-----) [003] .n.1 82318.528568: cpu_idle: state=4294967295 cpu_id=3
136191     rcu_preempt-7     (    7) [002] d..2 82318.528574: 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
136192          <idle>-0     (-----) [000] d..1 82318.528575: cpu_idle: state=0 cpu_id=0
136193          <idle>-0     (-----) [003] d..2 82318.528580: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136194          <idle>-0     (-----) [002] d..1 82318.528589: cpu_idle: state=0 cpu_id=2
136195  kworker/u16:15-1311  ( 1311) [003] d..2 82318.528698: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136196          <idle>-0     (-----) [003] d..1 82318.528714: cpu_idle: state=0 cpu_id=3
136197          <idle>-0     (-----) [000] d.h5 82318.530143: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136198          <idle>-0     (-----) [000] d.h6 82318.530163: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136199          <idle>-0     (-----) [003] .n.1 82318.530171: cpu_idle: state=4294967295 cpu_id=3
136200          <idle>-0     (-----) [000] ...1 82318.530179: cpu_idle: state=4294967295 cpu_id=0
136201          <idle>-0     (-----) [003] d..2 82318.530184: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
136202          <idle>-0     (-----) [000] d..1 82318.530187: cpu_idle: state=0 cpu_id=0
136203 crtc_commit:111-321   (  321) [003] d..2 82318.530261: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136204          <idle>-0     (-----) [003] d..1 82318.530275: cpu_idle: state=0 cpu_id=3
136205          <idle>-0     (-----) [000] d.h5 82318.530438: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136206          <idle>-0     (-----) [000] dnh6 82318.530449: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136207          <idle>-0     (-----) [000] .n.1 82318.530464: cpu_idle: state=4294967295 cpu_id=0
136208          <idle>-0     (-----) [000] d..2 82318.530477: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
136209  crtc_event:111-322   (  322) [000] d..2 82318.530502: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136210          <idle>-0     (-----) [000] d..1 82318.530517: cpu_idle: state=0 cpu_id=0
136211          <idle>-0     (-----) [002] ...1 82318.530820: cpu_idle: state=4294967295 cpu_id=2
136212          <idle>-0     (-----) [002] d..1 82318.530828: cpu_idle: state=0 cpu_id=2
136213          <idle>-0     (-----) [003] d.h2 82318.532205: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
136214          <idle>-0     (-----) [003] dnh3 82318.532231: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
136215          <idle>-0     (-----) [000] d..2 82318.532305: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
136216          <idle>-0     (-----) [003] dnh3 82318.532318: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
136217          <idle>-0     (-----) [000] dn.3 82318.532319: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
136218          <idle>-0     (-----) [000] .n.1 82318.532323: cpu_idle: state=4294967295 cpu_id=0
136219          <idle>-0     (-----) [000] d..2 82318.532342: 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
136220          <idle>-0     (-----) [003] dnh4 82318.532354: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
136221     ksoftirqd/0-3     (    3) [000] d..2 82318.532367: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=sugov:0 next_pid=576 next_prio=49
136222          <idle>-0     (-----) [003] .n.1 82318.532376: cpu_idle: state=4294967295 cpu_id=3
136223          <idle>-0     (-----) [003] d..2 82318.532391: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
136224         sugov:0-576   (  576) [000] .... 82318.532407: clk_set_rate: pwrcl_clk 652800000
136225        DispSync-8879  ( 8858) [003] d..1 82318.532409: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
136226        DispSync-8879  ( 8858) [003] d..2 82318.532426: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
136227         sugov:0-576   (  576) [000] .... 82318.532427: clk_set_rate: cpu3_pwrcl_clk 748800000
136228          <idle>-0     (-----) [001] .n.1 82318.532434: cpu_idle: state=4294967295 cpu_id=1
136229         sugov:0-576   (  576) [000] .... 82318.532436: clk_set_rate: cpu2_pwrcl_clk 748800000
136230         sugov:0-576   (  576) [000] .... 82318.532445: clk_set_rate: cpu1_pwrcl_clk 748800000
136231          <idle>-0     (-----) [001] d..2 82318.532451: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
136232         sugov:0-576   (  576) [000] .... 82318.532454: clk_set_rate: cpu0_pwrcl_clk 652800000
136233        DispSync-8879  ( 8858) [003] d..2 82318.532472: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136234          <idle>-0     (-----) [003] d..1 82318.532492: cpu_idle: state=0 cpu_id=3
136235  appEventThread-8881  ( 8858) [001] d..3 82318.532513: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136236          <idle>-0     (-----) [004] dnh2 82318.532550: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136237          <idle>-0     (-----) [004] .n.1 82318.532555: cpu_idle: state=4294967295 cpu_id=4
136238          <idle>-0     (-----) [004] d..2 82318.532562: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
136239         sugov:0-576   (  576) [000] .... 82318.532568: cpu_frequency: state=652800 cpu_id=0
136240         sugov:0-576   (  576) [000] .... 82318.532592: cpu_frequency: state=652800 cpu_id=1
136241  appEventThread-8881  ( 8858) [001] d..2 82318.532593: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136242         sugov:0-576   (  576) [000] .... 82318.532598: cpu_frequency: state=652800 cpu_id=2
136243         sugov:0-576   (  576) [000] .... 82318.532604: cpu_frequency: state=652800 cpu_id=3
136244          <idle>-0     (-----) [001] d..1 82318.532614: cpu_idle: state=0 cpu_id=1
136245         sugov:0-576   (  576) [000] d..2 82318.532641: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136246          <idle>-0     (-----) [000] d..1 82318.532658: cpu_idle: state=0 cpu_id=0
136247 s.nexuslauncher-10023 (10023) [004] .... 82318.532771: binder_transaction: transaction=1572999 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
136248 s.nexuslauncher-10023 (10023) [004] .... 82318.532776: binder_transaction_alloc_buf: transaction=1572999 data_size=80 offsets_size=0
136249 s.nexuslauncher-10023 (10023) [004] d..4 82318.532782: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
136250 s.nexuslauncher-10023 (10023) [004] d.h5 82318.532846: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
136251          <idle>-0     (-----) [000] dnh2 82318.532852: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
136252          <idle>-0     (-----) [000] .n.1 82318.532862: cpu_idle: state=4294967295 cpu_id=0
136253          <idle>-0     (-----) [000] d..2 82318.532878: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
136254          <idle>-0     (-----) [002] dnh2 82318.532886: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
136255   Binder:8858_1-8871  ( 8858) [000] .... 82318.532888: binder_transaction_received: transaction=1572999
136256          <idle>-0     (-----) [002] .n.1 82318.532894: cpu_idle: state=4294967295 cpu_id=2
136257 s.nexuslauncher-10023 (10023) [004] d..3 82318.532898: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136258          <idle>-0     (-----) [002] d..2 82318.532910: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
136259 s.nexuslauncher-10023 (10023) [004] d..4 82318.532914: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136260          <idle>-0     (-----) [005] .n.1 82318.532920: cpu_idle: state=4294967295 cpu_id=5
136261          <idle>-0     (-----) [005] d..2 82318.532932: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136262   Binder:8858_1-8871  ( 8858) [000] d..1 82318.532935: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
136263         sugov:0-576   (  576) [002] .... 82318.532944: clk_set_rate: pwrcl_clk 748800000
136264   Binder:8858_1-8871  ( 8858) [000] d..2 82318.532958: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
136265         sugov:0-576   (  576) [002] .... 82318.532959: clk_set_rate: cpu3_pwrcl_clk 652800000
136266    RenderThread-16607 (10023) [005] d..2 82318.532961: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136267          <idle>-0     (-----) [001] .n.1 82318.532964: cpu_idle: state=4294967295 cpu_id=1
136268          <idle>-0     (-----) [005] d..1 82318.532969: cpu_idle: state=0 cpu_id=5
136269         sugov:0-576   (  576) [002] .... 82318.532969: clk_set_rate: cpu2_pwrcl_clk 652800000
136270         sugov:0-576   (  576) [002] .... 82318.532978: clk_set_rate: cpu1_pwrcl_clk 652800000
136271          <idle>-0     (-----) [001] d..2 82318.532979: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
136272         sugov:0-576   (  576) [002] .... 82318.532987: clk_set_rate: cpu0_pwrcl_clk 748800000
136273         sugov:0-576   (  576) [002] .... 82318.532996: cpu_frequency: state=748800 cpu_id=0
136274   Binder:8858_1-8871  ( 8858) [000] d..2 82318.533020: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136275         sugov:0-576   (  576) [002] .... 82318.533021: cpu_frequency: state=748800 cpu_id=1
136276         sugov:0-576   (  576) [002] .... 82318.533026: cpu_frequency: state=748800 cpu_id=2
136277         sugov:0-576   (  576) [002] .... 82318.533031: cpu_frequency: state=748800 cpu_id=3
136278  appEventThread-8881  ( 8858) [001] d..2 82318.533036: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136279          <idle>-0     (-----) [000] d..1 82318.533040: cpu_idle: state=0 cpu_id=0
136280          <idle>-0     (-----) [001] d..1 82318.533050: cpu_idle: state=0 cpu_id=1
136281         sugov:0-576   (  576) [002] d..2 82318.533067: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136282          <idle>-0     (-----) [002] d..1 82318.533079: cpu_idle: state=0 cpu_id=2
136283 s.nexuslauncher-10023 (10023) [004] d..3 82318.533126: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136284 s.nexuslauncher-10023 (10023) [004] d..4 82318.533143: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136285          <idle>-0     (-----) [005] .n.1 82318.533148: cpu_idle: state=4294967295 cpu_id=5
136286          <idle>-0     (-----) [005] d..2 82318.533155: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136287 s.nexuslauncher-10023 (10023) [004] d..2 82318.533171: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
136288          <idle>-0     (-----) [004] d..1 82318.533187: cpu_idle: state=0 cpu_id=4
136289    RenderThread-16607 (10023) [005] d..1 82318.533313: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136290    RenderThread-16607 (10023) [005] d..2 82318.533331: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136291          <idle>-0     (-----) [004] .n.1 82318.533337: cpu_idle: state=4294967295 cpu_id=4
136292          <idle>-0     (-----) [004] d..2 82318.533346: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
136293    RenderThread-16607 (10023) [005] .... 82318.533379: binder_transaction: transaction=1573000 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
136294    RenderThread-16607 (10023) [005] .... 82318.533383: binder_transaction_alloc_buf: transaction=1573000 data_size=104 offsets_size=0
136295    RenderThread-16607 (10023) [005] ...2 82318.533387: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
136296    RenderThread-16607 (10023) [005] d..4 82318.533391: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
136297    RenderThread-16607 (10023) [005] d..5 82318.533410: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136298 s.nexuslauncher-10023 (10023) [004] d..2 82318.533454: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
136299    RenderThread-16607 (10023) [005] d..2 82318.533457: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
136300          <idle>-0     (-----) [004] d..1 82318.533465: cpu_idle: state=0 cpu_id=4
136301   Binder:8858_1-8871  ( 8858) [005] .... 82318.533470: binder_transaction_received: transaction=1573000
136302   Binder:8858_1-8871  ( 8858) [005] .... 82318.533530: binder_transaction: transaction=1573001 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
136303   Binder:8858_1-8871  ( 8858) [005] .... 82318.533534: binder_transaction_alloc_buf: transaction=1573001 data_size=52 offsets_size=8
136304   Binder:8858_1-8871  ( 8858) [005] d..2 82318.533541: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136305   Binder:8858_1-8871  ( 8858) [005] d..3 82318.533551: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136306   Binder:8858_1-8871  ( 8858) [005] .... 82318.533554: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
136307   Binder:8858_1-8871  ( 8858) [005] d..2 82318.533564: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
136308    RenderThread-16607 (10023) [005] .... 82318.533573: binder_transaction_received: transaction=1573001
136309    RenderThread-16607 (10023) [005] d..2 82318.534839: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
136310   Binder:8858_1-8871  ( 8858) [005] d..2 82318.534908: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136311          <idle>-0     (-----) [005] d..1 82318.534922: cpu_idle: state=0 cpu_id=5
136312          <idle>-0     (-----) [005] d.h2 82318.534936: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136313          <idle>-0     (-----) [005] d.h3 82318.534944: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
136314          <idle>-0     (-----) [005] dnh3 82318.534948: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136315          <idle>-0     (-----) [005] .n.1 82318.534955: cpu_idle: state=4294967295 cpu_id=5
136316          <idle>-0     (-----) [005] d..2 82318.534965: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136317          <idle>-0     (-----) [002] d.s2 82318.535139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136318          <idle>-0     (-----) [002] dns3 82318.535164: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136319    RenderThread-16607 (10023) [005] .... 82318.535167: binder_transaction: transaction=1573002 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
136320    RenderThread-16607 (10023) [005] .... 82318.535172: binder_transaction_alloc_buf: transaction=1573002 data_size=192 offsets_size=8
136321          <idle>-0     (-----) [002] .n.1 82318.535174: cpu_idle: state=4294967295 cpu_id=2
136322    RenderThread-16607 (10023) [005] ...2 82318.535180: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
136323    RenderThread-16607 (10023) [005] d..4 82318.535183: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136324          <idle>-0     (-----) [002] d..2 82318.535185: 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
136325    RenderThread-16607 (10023) [005] d..5 82318.535192: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136326     rcu_preempt-7     (    7) [002] d..2 82318.535196: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
136327    RenderThread-16607 (10023) [005] d..2 82318.535204: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
136328   Binder:8858_1-8871  ( 8858) [005] .... 82318.535214: binder_transaction_received: transaction=1573002
136329     rcu_preempt-7     (    7) [002] d..3 82318.535218: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
136330     rcu_preempt-7     (    7) [002] d..2 82318.535236: 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
136331         rcuop/2-29    (   29) [002] d..2 82318.535270: 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
136332          <idle>-0     (-----) [002] d..1 82318.535286: cpu_idle: state=0 cpu_id=2
136333   Binder:8858_1-8871  ( 8858) [005] .... 82318.535331: binder_transaction: transaction=1573003 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
136334   Binder:8858_1-8871  ( 8858) [005] .... 82318.535334: binder_transaction_alloc_buf: transaction=1573003 data_size=68 offsets_size=0
136335   Binder:8858_1-8871  ( 8858) [005] d..2 82318.535336: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136336   Binder:8858_1-8871  ( 8858) [005] d..3 82318.535348: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136337   Binder:8858_1-8871  ( 8858) [005] .... 82318.535351: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
136338   Binder:8858_1-8871  ( 8858) [005] d..2 82318.535382: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
136339    RenderThread-16607 (10023) [005] .... 82318.535391: binder_transaction_received: transaction=1573003
136340    RenderThread-16607 (10023) [005] d..2 82318.535462: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136341          <idle>-0     (-----) [005] d..1 82318.535480: cpu_idle: state=0 cpu_id=5
136342          <idle>-0     (-----) [005] ...1 82318.535680: cpu_idle: state=4294967295 cpu_id=5
136343          <idle>-0     (-----) [005] d..1 82318.535683: cpu_idle: state=0 cpu_id=5
136344          <idle>-0     (-----) [003] d.h2 82318.536200: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
136345          <idle>-0     (-----) [003] dnh3 82318.536215: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
136346          <idle>-0     (-----) [003] .n.1 82318.536224: cpu_idle: state=4294967295 cpu_id=3
136347          <idle>-0     (-----) [003] d..2 82318.536236: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
136348        DispSync-8879  ( 8858) [003] d..1 82318.536250: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136349        DispSync-8879  ( 8858) [003] d..2 82318.536268: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136350          <idle>-0     (-----) [002] .n.1 82318.536275: cpu_idle: state=4294967295 cpu_id=2
136351          <idle>-0     (-----) [002] d..2 82318.536287: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
136352        DispSync-8879  ( 8858) [003] d..2 82318.536302: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136353          <idle>-0     (-----) [003] d..1 82318.536317: cpu_idle: state=0 cpu_id=3
136354   sfEventThread-8882  ( 8858) [002] d..3 82318.536343: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136355   sfEventThread-8882  ( 8858) [002] d..4 82318.536369: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136356          <idle>-0     (-----) [001] .n.1 82318.536374: cpu_idle: state=4294967295 cpu_id=1
136357          <idle>-0     (-----) [000] d.h3 82318.536385: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
136358          <idle>-0     (-----) [001] d..2 82318.536387: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
136359          <idle>-0     (-----) [000] dnh4 82318.536405: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
136360   sfEventThread-8882  ( 8858) [002] d..2 82318.536413: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136361          <idle>-0     (-----) [000] .n.1 82318.536419: cpu_idle: state=4294967295 cpu_id=0
136362          <idle>-0     (-----) [002] d..1 82318.536430: cpu_idle: state=0 cpu_id=2
136363          <idle>-0     (-----) [000] d..2 82318.536433: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
136364 kgsl_worker_thr-258   (  258) [000] d..2 82318.536489: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
136365 kgsl_worker_thr-258   (  258) [000] d..3 82318.536541: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136366 kgsl_worker_thr-258   (  258) [000] d..2 82318.536567: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136367  kworker/u16:15-1311  ( 1311) [000] d..2 82318.536749: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136368  surfaceflinger-8858  ( 8858) [001] d..1 82318.536752: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136369          <idle>-0     (-----) [000] d..1 82318.536770: cpu_idle: state=0 cpu_id=0
136370  surfaceflinger-8858  ( 8858) [001] d..2 82318.536779: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136371          <idle>-0     (-----) [002] .n.1 82318.536785: cpu_idle: state=4294967295 cpu_id=2
136372          <idle>-0     (-----) [002] d..2 82318.536798: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
136373   sfEventThread-8882  ( 8858) [002] d..2 82318.536839: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136374          <idle>-0     (-----) [002] d..1 82318.536850: cpu_idle: state=0 cpu_id=2
136375  surfaceflinger-8858  ( 8858) [001] ...1 82318.536994: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
136376  surfaceflinger-8858  ( 8858) [001] ...1 82318.537005: tracing_mark_write: E|8858
136377  surfaceflinger-8858  ( 8858) [001] .... 82318.537074: binder_transaction: transaction=1573004 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
136378  surfaceflinger-8858  ( 8858) [001] .... 82318.537081: binder_transaction_alloc_buf: transaction=1573004 data_size=540 offsets_size=96
136379  surfaceflinger-8858  ( 8858) [001] ...2 82318.537109: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
136380  surfaceflinger-8858  ( 8858) [001] d..4 82318.537117: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
136381  surfaceflinger-8858  ( 8858) [001] d..5 82318.537142: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
136382          <idle>-0     (-----) [002] .n.1 82318.537147: cpu_idle: state=4294967295 cpu_id=2
136383          <idle>-0     (-----) [002] d..2 82318.537160: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
136384 [email protected]   (  619) [002] .... 82318.537174: binder_transaction_received: transaction=1573004
136385  surfaceflinger-8858  ( 8858) [001] d..2 82318.537183: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136386          <idle>-0     (-----) [001] d..1 82318.537207: cpu_idle: state=0 cpu_id=1
136387 [email protected]   (  619) [002] ...1 82318.537230: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
136388 [email protected]   (  619) [002] ...1 82318.537357: tracing_mark_write: B|619|HWCSession::PresentDisplay::
136389 [email protected]   (  619) [002] ...1 82318.537555: tracing_mark_write: B|619|HWDeviceDRM::Commit::
136390 [email protected]   (  619) [002] ...1 82318.537572: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
136391 [email protected]   (  619) [002] d..2 82318.538316: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136392 [email protected]   (  619) [002] d..3 82318.538350: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136393          <idle>-0     (-----) [003] .n.1 82318.538356: cpu_idle: state=4294967295 cpu_id=3
136394          <idle>-0     (-----) [003] d..2 82318.538368: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
136395 crtc_commit:111-321   (  321) [003] d.s2 82318.538482: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136396 crtc_commit:111-321   (  321) [003] d.s3 82318.538506: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136397          <idle>-0     (-----) [000] .n.1 82318.538513: cpu_idle: state=4294967295 cpu_id=0
136398          <idle>-0     (-----) [000] d..2 82318.538531: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136399 [email protected]   (  619) [002] ...1 82318.538538: tracing_mark_write: E|619
136400 [email protected]   (  619) [002] ...1 82318.538547: tracing_mark_write: E|619
136401 [email protected]   (  619) [002] ...1 82318.538639: tracing_mark_write: E|619
136402 [email protected]   (  619) [002] ...1 82318.538710: tracing_mark_write: E|619
136403 [email protected]   (  619) [002] .... 82318.538729: binder_transaction: transaction=1573005 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
136404 [email protected]   (  619) [002] .... 82318.538735: binder_transaction_alloc_buf: transaction=1573005 data_size=576 offsets_size=112
136405 [email protected]   (  619) [002] d..2 82318.538762: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136406  kworker/u16:15-1311  ( 1311) [000] d..2 82318.538776: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136407 [email protected]   (  619) [002] d..3 82318.538786: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136408 [email protected]   (  619) [002] .... 82318.538793: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
136409          <idle>-0     (-----) [000] d..1 82318.538793: cpu_idle: state=0 cpu_id=0
136410          <idle>-0     (-----) [001] .n.1 82318.538794: cpu_idle: state=4294967295 cpu_id=1
136411          <idle>-0     (-----) [001] d..2 82318.538808: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
136412  surfaceflinger-8858  ( 8858) [001] .... 82318.538819: binder_transaction_received: transaction=1573005
136413 [email protected]   (  619) [002] d..2 82318.538902: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136414          <idle>-0     (-----) [002] d..1 82318.538920: cpu_idle: state=0 cpu_id=2
136415 crtc_commit:111-321   (  321) [003] d..2 82318.539267: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
136416          <idle>-0     (-----) [003] d..1 82318.539287: cpu_idle: state=0 cpu_id=3
136417  surfaceflinger-8858  ( 8858) [001] d..2 82318.539302: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136418          <idle>-0     (-----) [001] d..1 82318.539328: cpu_idle: state=0 cpu_id=1
136419          <idle>-0     (-----) [002] ...1 82318.541131: cpu_idle: state=4294967295 cpu_id=2
136420          <idle>-0     (-----) [002] d..1 82318.541138: cpu_idle: state=0 cpu_id=2
136421          <idle>-0     (-----) [001] d.s3 82318.541267: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136422          <idle>-0     (-----) [001] dns4 82318.541287: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136423          <idle>-0     (-----) [001] .n.1 82318.541307: cpu_idle: state=4294967295 cpu_id=1
136424          <idle>-0     (-----) [001] d..2 82318.541323: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
136425     kworker/1:1-25249 (25249) [001] d..2 82318.541404: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=002
136426     kworker/1:1-25249 (25249) [001] d..3 82318.541460: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
136427     kworker/1:1-25249 (25249) [001] d..2 82318.541494: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
136428   cds_mc_thread-16565 (16565) [001] d..2 82318.541628: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136429          <idle>-0     (-----) [001] d..1 82318.541649: cpu_idle: state=0 cpu_id=1
136430          <idle>-0     (-----) [002] d.s2 82318.541811: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136431          <idle>-0     (-----) [002] dns3 82318.541837: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136432          <idle>-0     (-----) [002] .n.1 82318.541856: cpu_idle: state=4294967295 cpu_id=2
136433          <idle>-0     (-----) [002] d..2 82318.541869: 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
136434     rcu_preempt-7     (    7) [002] d..2 82318.541884: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
136435     rcu_preempt-7     (    7) [002] d..3 82318.541907: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
136436     rcu_preempt-7     (    7) [002] d..2 82318.541921: 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
136437         rcuop/0-10    (   10) [002] d..2 82318.541926: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
136438         rcuop/0-10    (   10) [002] d..3 82318.541943: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
136439         rcuop/0-10    (   10) [002] d..2 82318.541948: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136440         rcuop/0-10    (   10) [002] d..3 82318.541959: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136441         rcuop/0-10    (   10) [002] d..2 82318.541970: 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
136442         rcuop/1-21    (   21) [002] d..2 82318.541984: 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
136443     rcu_preempt-7     (    7) [002] d..2 82318.542017: 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
136444          <idle>-0     (-----) [002] d..1 82318.542035: cpu_idle: state=0 cpu_id=2
136445          <idle>-0     (-----) [000] d.h5 82318.544280: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136446          <idle>-0     (-----) [000] dnh6 82318.544301: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136447          <idle>-0     (-----) [000] dnh5 82318.544307: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136448          <idle>-0     (-----) [000] dnh6 82318.544322: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136449          <idle>-0     (-----) [003] .n.1 82318.544330: cpu_idle: state=4294967295 cpu_id=3
136450          <idle>-0     (-----) [000] .n.1 82318.544338: cpu_idle: state=4294967295 cpu_id=0
136451          <idle>-0     (-----) [003] d..2 82318.544345: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
136452          <idle>-0     (-----) [000] d..2 82318.544353: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
136453  crtc_event:111-322   (  322) [000] d..2 82318.544388: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136454          <idle>-0     (-----) [000] d..1 82318.544404: cpu_idle: state=0 cpu_id=0
136455 crtc_commit:111-321   (  321) [003] d..2 82318.544497: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
136456          <idle>-0     (-----) [003] d..1 82318.544509: cpu_idle: state=0 cpu_id=3
136457          <idle>-0     (-----) [003] d.s3 82318.545144: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136458          <idle>-0     (-----) [003] d.s4 82318.545166: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136459          <idle>-0     (-----) [000] .n.1 82318.545172: cpu_idle: state=4294967295 cpu_id=0
136460          <idle>-0     (-----) [000] d..2 82318.545186: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
136461          <idle>-0     (-----) [003] ...1 82318.545194: cpu_idle: state=4294967295 cpu_id=3
136462          <idle>-0     (-----) [003] d..1 82318.545201: cpu_idle: state=0 cpu_id=3
136463  crtc_event:111-322   (  322) [000] d..2 82318.545223: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136464          <idle>-0     (-----) [000] d..1 82318.545236: cpu_idle: state=0 cpu_id=0
136465          <idle>-0     (-----) [000] d.h5 82318.546606: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136466          <idle>-0     (-----) [000] d.h6 82318.546624: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136467          <idle>-0     (-----) [003] .n.1 82318.546631: cpu_idle: state=4294967295 cpu_id=3
136468          <idle>-0     (-----) [000] ...1 82318.546640: cpu_idle: state=4294967295 cpu_id=0
136469          <idle>-0     (-----) [003] d..2 82318.546643: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
136470          <idle>-0     (-----) [000] d..1 82318.546647: cpu_idle: state=0 cpu_id=0
136471 crtc_commit:111-321   (  321) [003] d..2 82318.546725: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136472          <idle>-0     (-----) [003] d..1 82318.546739: cpu_idle: state=0 cpu_id=3
136473          <idle>-0     (-----) [000] d.h5 82318.546900: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136474          <idle>-0     (-----) [000] dnh6 82318.546912: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136475          <idle>-0     (-----) [000] .n.1 82318.546926: cpu_idle: state=4294967295 cpu_id=0
136476          <idle>-0     (-----) [000] d..2 82318.546939: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
136477  crtc_event:111-322   (  322) [000] d..2 82318.546966: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136478          <idle>-0     (-----) [000] d..1 82318.546979: cpu_idle: state=0 cpu_id=0
136479          <idle>-0     (-----) [002] d.s2 82318.548475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136480          <idle>-0     (-----) [002] dns3 82318.548494: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136481          <idle>-0     (-----) [002] dns3 82318.548500: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136482          <idle>-0     (-----) [002] dns4 82318.548539: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
136483          <idle>-0     (-----) [002] .n.1 82318.548557: cpu_idle: state=4294967295 cpu_id=2
136484          <idle>-0     (-----) [002] d..2 82318.548573: 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
136485     rcu_preempt-7     (    7) [002] d..2 82318.548584: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
136486     rcu_preempt-7     (    7) [002] d..3 82318.548600: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
136487     rcu_preempt-7     (    7) [002] d..2 82318.548611: 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
136488         rcuop/0-10    (   10) [002] d..2 82318.548615: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
136489         rcuop/0-10    (   10) [002] d..3 82318.548628: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
136490         rcuop/0-10    (   10) [002] d..2 82318.548638: 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
136491         rcuop/1-21    (   21) [002] d..2 82318.548657: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136492          <idle>-0     (-----) [003] d.h2 82318.548661: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
136493          <idle>-0     (-----) [003] dnh3 82318.548677: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
136494          <idle>-0     (-----) [003] .n.1 82318.548686: cpu_idle: state=4294967295 cpu_id=3
136495          <idle>-0     (-----) [003] d..2 82318.548700: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
136496        DispSync-8879  ( 8858) [003] d..1 82318.548725: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
136497        DispSync-8879  ( 8858) [003] d..2 82318.548742: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
136498          <idle>-0     (-----) [001] .n.1 82318.548750: cpu_idle: state=4294967295 cpu_id=1
136499          <idle>-0     (-----) [001] d..2 82318.548766: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
136500        DispSync-8879  ( 8858) [003] d..2 82318.548798: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136501          <idle>-0     (-----) [003] d..1 82318.548812: cpu_idle: state=0 cpu_id=3
136502  appEventThread-8881  ( 8858) [001] d..3 82318.548842: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136503  kworker/u16:15-1311  ( 1311) [002] d..2 82318.548856: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136504          <idle>-0     (-----) [004] dnh2 82318.548872: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136505          <idle>-0     (-----) [002] d..1 82318.548875: cpu_idle: state=0 cpu_id=2
136506          <idle>-0     (-----) [004] .n.1 82318.548876: cpu_idle: state=4294967295 cpu_id=4
136507          <idle>-0     (-----) [004] d..2 82318.548884: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
136508  appEventThread-8881  ( 8858) [001] d..2 82318.548911: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136509          <idle>-0     (-----) [001] d..1 82318.548931: cpu_idle: state=0 cpu_id=1
136510 s.nexuslauncher-10023 (10023) [004] .... 82318.549077: binder_transaction: transaction=1573006 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
136511 s.nexuslauncher-10023 (10023) [004] .... 82318.549083: binder_transaction_alloc_buf: transaction=1573006 data_size=80 offsets_size=0
136512 s.nexuslauncher-10023 (10023) [004] d..4 82318.549088: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
136513          <idle>-0     (-----) [000] dnh2 82318.549156: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
136514          <idle>-0     (-----) [000] .n.1 82318.549162: cpu_idle: state=4294967295 cpu_id=0
136515          <idle>-0     (-----) [000] d..2 82318.549175: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
136516 s.nexuslauncher-10023 (10023) [004] d..3 82318.549175: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136517   Binder:8858_1-8871  ( 8858) [000] .... 82318.549185: binder_transaction_received: transaction=1573006
136518 s.nexuslauncher-10023 (10023) [004] d..4 82318.549191: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136519          <idle>-0     (-----) [005] .n.1 82318.549197: cpu_idle: state=4294967295 cpu_id=5
136520          <idle>-0     (-----) [005] d..2 82318.549208: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136521   Binder:8858_1-8871  ( 8858) [000] d..1 82318.549226: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
136522    RenderThread-16607 (10023) [005] d..2 82318.549243: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136523   Binder:8858_1-8871  ( 8858) [000] d..2 82318.549247: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
136524          <idle>-0     (-----) [005] d..1 82318.549252: cpu_idle: state=0 cpu_id=5
136525          <idle>-0     (-----) [001] .n.1 82318.549254: cpu_idle: state=4294967295 cpu_id=1
136526          <idle>-0     (-----) [001] d..2 82318.549267: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
136527   Binder:8858_1-8871  ( 8858) [000] d..2 82318.549301: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136528  appEventThread-8881  ( 8858) [001] d..2 82318.549316: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136529          <idle>-0     (-----) [000] d..1 82318.549321: cpu_idle: state=0 cpu_id=0
136530          <idle>-0     (-----) [001] d..1 82318.549329: cpu_idle: state=0 cpu_id=1
136531 s.nexuslauncher-10023 (10023) [004] d..3 82318.549396: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136532 s.nexuslauncher-10023 (10023) [004] d..4 82318.549414: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136533          <idle>-0     (-----) [005] .n.1 82318.549419: cpu_idle: state=4294967295 cpu_id=5
136534          <idle>-0     (-----) [005] d..2 82318.549427: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136535 s.nexuslauncher-10023 (10023) [004] d..2 82318.549440: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
136536          <idle>-0     (-----) [004] d..1 82318.549457: cpu_idle: state=0 cpu_id=4
136537    RenderThread-16607 (10023) [005] d..1 82318.549575: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136538    RenderThread-16607 (10023) [005] d..2 82318.549593: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136539          <idle>-0     (-----) [004] .n.1 82318.549600: cpu_idle: state=4294967295 cpu_id=4
136540          <idle>-0     (-----) [004] d..2 82318.549609: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
136541    RenderThread-16607 (10023) [005] .... 82318.549642: binder_transaction: transaction=1573007 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
136542    RenderThread-16607 (10023) [005] .... 82318.549646: binder_transaction_alloc_buf: transaction=1573007 data_size=104 offsets_size=0
136543    RenderThread-16607 (10023) [005] ...2 82318.549650: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
136544    RenderThread-16607 (10023) [005] d..4 82318.549654: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
136545    RenderThread-16607 (10023) [005] d..5 82318.549673: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136546 s.nexuslauncher-10023 (10023) [004] d..2 82318.549717: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
136547    RenderThread-16607 (10023) [005] d..2 82318.549720: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
136548          <idle>-0     (-----) [004] d..1 82318.549727: cpu_idle: state=0 cpu_id=4
136549   Binder:8858_1-8871  ( 8858) [005] .... 82318.549733: binder_transaction_received: transaction=1573007
136550   Binder:8858_1-8871  ( 8858) [005] .... 82318.549793: binder_transaction: transaction=1573008 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
136551   Binder:8858_1-8871  ( 8858) [005] .... 82318.549797: binder_transaction_alloc_buf: transaction=1573008 data_size=52 offsets_size=8
136552   Binder:8858_1-8871  ( 8858) [005] d..2 82318.549804: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136553   Binder:8858_1-8871  ( 8858) [005] d..3 82318.549814: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136554   Binder:8858_1-8871  ( 8858) [005] .... 82318.549817: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
136555   Binder:8858_1-8871  ( 8858) [005] d..2 82318.549827: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
136556    RenderThread-16607 (10023) [005] .... 82318.549836: binder_transaction_received: transaction=1573008
136557          <idle>-0     (-----) [002] ...1 82318.550512: cpu_idle: state=4294967295 cpu_id=2
136558          <idle>-0     (-----) [002] d..1 82318.550521: cpu_idle: state=0 cpu_id=2
136559          <idle>-0     (-----) [001] d.s3 82318.550551: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136560          <idle>-0     (-----) [001] dns4 82318.550565: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136561          <idle>-0     (-----) [001] .n.1 82318.550583: cpu_idle: state=4294967295 cpu_id=1
136562          <idle>-0     (-----) [001] d..2 82318.550598: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
136563     kworker/1:1-25249 (25249) [001] d..2 82318.550642: sched_waking: [email protected] pid=16588 prio=120 target_cpu=002
136564     kworker/1:1-25249 (25249) [001] d..3 82318.550669: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
136565     kworker/1:1-25249 (25249) [001] d..2 82318.550711: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
136566          <idle>-0     (-----) [002] ...1 82318.550780: cpu_idle: state=4294967295 cpu_id=2
136567          <idle>-0     (-----) [002] d..1 82318.550787: cpu_idle: state=0 cpu_id=2
136568 [email protected] (  798) [001] d..2 82318.550899: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136569          <idle>-0     (-----) [001] d..1 82318.550923: cpu_idle: state=0 cpu_id=1
136570    RenderThread-16607 (10023) [005] d..2 82318.551072: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
136571          <idle>-0     (-----) [001] d.s3 82318.551090: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136572          <idle>-0     (-----) [001] dns4 82318.551103: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136573          <idle>-0     (-----) [001] .n.1 82318.551124: cpu_idle: state=4294967295 cpu_id=1
136574   Binder:8858_1-8871  ( 8858) [005] d..2 82318.551140: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136575          <idle>-0     (-----) [001] d..2 82318.551142: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
136576          <idle>-0     (-----) [005] d..1 82318.551155: cpu_idle: state=0 cpu_id=5
136577          <idle>-0     (-----) [005] d.h2 82318.551168: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136578          <idle>-0     (-----) [005] d.h3 82318.551177: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
136579     kworker/1:1-25249 (25249) [001] d..2 82318.551178: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
136580          <idle>-0     (-----) [005] dnh3 82318.551180: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136581          <idle>-0     (-----) [005] .n.1 82318.551187: cpu_idle: state=4294967295 cpu_id=5
136582     kworker/1:1-25249 (25249) [001] d..3 82318.551193: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
136583          <idle>-0     (-----) [005] d..2 82318.551196: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136584     kworker/1:1-25249 (25249) [001] d..2 82318.551225: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
136585    RenderThread-16607 (10023) [005] .... 82318.551350: binder_transaction: transaction=1573009 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
136586    RenderThread-16607 (10023) [005] .... 82318.551355: binder_transaction_alloc_buf: transaction=1573009 data_size=192 offsets_size=8
136587    RenderThread-16607 (10023) [005] ...2 82318.551362: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
136588    RenderThread-16607 (10023) [005] d..4 82318.551365: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136589    RenderThread-16607 (10023) [005] d..5 82318.551378: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136590    RenderThread-16607 (10023) [005] d..2 82318.551390: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
136591   Binder:8858_1-8871  ( 8858) [005] .... 82318.551400: binder_transaction_received: transaction=1573009
136592   Binder:8858_1-8871  ( 8858) [005] .... 82318.551516: binder_transaction: transaction=1573010 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
136593 [email protected] (  798) [001] d..2 82318.551518: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136594   Binder:8858_1-8871  ( 8858) [005] .... 82318.551520: binder_transaction_alloc_buf: transaction=1573010 data_size=68 offsets_size=0
136595   Binder:8858_1-8871  ( 8858) [005] d..2 82318.551522: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136596   Binder:8858_1-8871  ( 8858) [005] d..3 82318.551533: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136597   Binder:8858_1-8871  ( 8858) [005] .... 82318.551536: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
136598          <idle>-0     (-----) [001] d..1 82318.551542: cpu_idle: state=0 cpu_id=1
136599   Binder:8858_1-8871  ( 8858) [005] d..2 82318.551568: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
136600    RenderThread-16607 (10023) [005] .... 82318.551578: binder_transaction_received: transaction=1573010
136601    RenderThread-16607 (10023) [005] d..2 82318.551649: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136602          <idle>-0     (-----) [005] d..1 82318.551666: cpu_idle: state=0 cpu_id=5
136603          <idle>-0     (-----) [005] d..2 82318.551871: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
136604          <idle>-0     (-----) [005] dn.3 82318.551881: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
136605          <idle>-0     (-----) [005] .n.1 82318.551937: cpu_idle: state=4294967295 cpu_id=5
136606          <idle>-0     (-----) [005] d..2 82318.551948: 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
136607     ksoftirqd/5-50    (   50) [005] d..2 82318.551968: 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
136608          <idle>-0     (-----) [005] d..1 82318.551975: cpu_idle: state=0 cpu_id=5
136609          <idle>-0     (-----) [001] d.s3 82318.552167: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136610          <idle>-0     (-----) [001] dns4 82318.552185: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136611          <idle>-0     (-----) [001] .n.1 82318.552210: cpu_idle: state=4294967295 cpu_id=1
136612          <idle>-0     (-----) [001] d..2 82318.552228: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
136613     kworker/1:1-25249 (25249) [001] d..2 82318.552261: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
136614     kworker/1:1-25249 (25249) [001] d..3 82318.552277: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
136615     kworker/1:1-25249 (25249) [001] d..2 82318.552307: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
136616 [email protected] (  798) [001] d..2 82318.552469: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136617          <idle>-0     (-----) [001] d..1 82318.552492: cpu_idle: state=0 cpu_id=1
136618          <idle>-0     (-----) [000] d.h3 82318.552607: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
136619          <idle>-0     (-----) [000] dnh4 82318.552626: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
136620          <idle>-0     (-----) [000] .n.1 82318.552641: cpu_idle: state=4294967295 cpu_id=0
136621          <idle>-0     (-----) [000] d..2 82318.552654: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
136622          <idle>-0     (-----) [003] d.h2 82318.552677: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
136623          <idle>-0     (-----) [003] dnh3 82318.552693: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
136624          <idle>-0     (-----) [003] .n.1 82318.552702: cpu_idle: state=4294967295 cpu_id=3
136625 kgsl_worker_thr-258   (  258) [000] d..2 82318.552710: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
136626          <idle>-0     (-----) [003] d..2 82318.552714: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
136627        DispSync-8879  ( 8858) [003] d..1 82318.552728: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136628        DispSync-8879  ( 8858) [003] d..2 82318.552745: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136629          <idle>-0     (-----) [002] .n.1 82318.552752: cpu_idle: state=4294967295 cpu_id=2
136630 kgsl_worker_thr-258   (  258) [000] d..3 82318.552763: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136631          <idle>-0     (-----) [002] d..2 82318.552768: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
136632 kgsl_worker_thr-258   (  258) [000] d..2 82318.552790: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136633        DispSync-8879  ( 8858) [003] d..2 82318.552807: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136634          <idle>-0     (-----) [003] d..1 82318.552822: cpu_idle: state=0 cpu_id=3
136635   sfEventThread-8882  ( 8858) [002] d..3 82318.552824: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136636   sfEventThread-8882  ( 8858) [002] d..4 82318.552851: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136637          <idle>-0     (-----) [001] dns3 82318.552886: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136638          <idle>-0     (-----) [001] dns4 82318.552900: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136639   sfEventThread-8882  ( 8858) [002] d..2 82318.552901: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136640          <idle>-0     (-----) [002] d..1 82318.552920: cpu_idle: state=0 cpu_id=2
136641          <idle>-0     (-----) [001] dns3 82318.552924: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
136642  kworker/u16:15-1311  ( 1311) [000] d..2 82318.552978: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136643          <idle>-0     (-----) [001] dns4 82318.552992: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
136644          <idle>-0     (-----) [000] d..2 82318.553008: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
136645          <idle>-0     (-----) [001] .n.1 82318.553012: cpu_idle: state=4294967295 cpu_id=1
136646          <idle>-0     (-----) [001] d..2 82318.553028: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
136647   cds_mc_thread-16565 (16565) [000] d..2 82318.553113: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136648          <idle>-0     (-----) [000] d..1 82318.553132: cpu_idle: state=0 cpu_id=0
136649          <idle>-0     (-----) [002] ...1 82318.553196: cpu_idle: state=4294967295 cpu_id=2
136650          <idle>-0     (-----) [002] d..1 82318.553204: cpu_idle: state=0 cpu_id=2
136651  surfaceflinger-8858  ( 8858) [001] d..2 82318.553409: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
136652  surfaceflinger-8858  ( 8858) [001] d..3 82318.553470: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
136653  surfaceflinger-8858  ( 8858) [001] d..1 82318.553508: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136654  surfaceflinger-8858  ( 8858) [001] d..2 82318.553529: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136655          <idle>-0     (-----) [002] .n.1 82318.553535: cpu_idle: state=4294967295 cpu_id=2
136656          <idle>-0     (-----) [002] d..2 82318.553550: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
136657   sfEventThread-8882  ( 8858) [002] d..2 82318.553626: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
136658         rcuop/0-10    (   10) [002] d..2 82318.553633: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136659         rcuop/0-10    (   10) [002] d..3 82318.553658: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136660         rcuop/0-10    (   10) [002] d..2 82318.553671: 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
136661     rcu_preempt-7     (    7) [002] d..2 82318.553703: 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
136662          <idle>-0     (-----) [002] d..1 82318.553719: cpu_idle: state=0 cpu_id=2
136663  surfaceflinger-8858  ( 8858) [001] ...1 82318.553748: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
136664  surfaceflinger-8858  ( 8858) [001] ...1 82318.553758: tracing_mark_write: E|8858
136665  surfaceflinger-8858  ( 8858) [001] .... 82318.553826: binder_transaction: transaction=1573011 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
136666  surfaceflinger-8858  ( 8858) [001] .... 82318.553833: binder_transaction_alloc_buf: transaction=1573011 data_size=540 offsets_size=96
136667  surfaceflinger-8858  ( 8858) [001] ...2 82318.553860: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
136668  surfaceflinger-8858  ( 8858) [001] d..4 82318.553871: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
136669  surfaceflinger-8858  ( 8858) [001] d..5 82318.553897: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
136670          <idle>-0     (-----) [002] .n.1 82318.553903: cpu_idle: state=4294967295 cpu_id=2
136671          <idle>-0     (-----) [002] d..2 82318.553916: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
136672  surfaceflinger-8858  ( 8858) [001] d..2 82318.553926: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
136673 [email protected]   (  619) [002] .... 82318.553929: binder_transaction_received: transaction=1573011
136674     kworker/1:1-25249 (25249) [001] d..2 82318.553968: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
136675     kworker/1:1-25249 (25249) [001] d..3 82318.553984: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
136676 [email protected]   (  619) [002] ...1 82318.553988: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
136677     kworker/1:1-25249 (25249) [001] d..2 82318.554019: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
136678 [email protected]   (  619) [002] ...1 82318.554109: tracing_mark_write: B|619|HWCSession::PresentDisplay::
136679 [email protected] (  798) [001] d..2 82318.554179: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136680          <idle>-0     (-----) [001] d..1 82318.554205: cpu_idle: state=0 cpu_id=1
136681 [email protected]   (  619) [002] ...1 82318.554301: tracing_mark_write: B|619|HWDeviceDRM::Commit::
136682 [email protected]   (  619) [002] ...1 82318.554317: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
136683 [email protected]   (  619) [002] d..2 82318.555002: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136684 [email protected]   (  619) [002] d..3 82318.555034: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136685          <idle>-0     (-----) [003] .n.1 82318.555039: cpu_idle: state=4294967295 cpu_id=3
136686          <idle>-0     (-----) [003] d..2 82318.555052: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
136687 crtc_commit:111-321   (  321) [003] d.s2 82318.555151: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136688 crtc_commit:111-321   (  321) [003] d.s3 82318.555201: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
136689 [email protected]   (  619) [002] ...1 82318.555236: tracing_mark_write: E|619
136690 [email protected]   (  619) [002] ...1 82318.555244: tracing_mark_write: E|619
136691 [email protected]   (  619) [002] ...1 82318.555314: tracing_mark_write: E|619
136692 [email protected]   (  619) [002] ...1 82318.555367: tracing_mark_write: E|619
136693 [email protected]   (  619) [002] .... 82318.555387: binder_transaction: transaction=1573012 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
136694 [email protected]   (  619) [002] .... 82318.555392: binder_transaction_alloc_buf: transaction=1573012 data_size=576 offsets_size=112
136695 [email protected]   (  619) [002] d..2 82318.555416: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136696 [email protected]   (  619) [002] d..3 82318.555440: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136697 [email protected]   (  619) [002] .... 82318.555445: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
136698          <idle>-0     (-----) [001] .n.1 82318.555448: cpu_idle: state=4294967295 cpu_id=1
136699          <idle>-0     (-----) [001] d..2 82318.555464: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
136700  surfaceflinger-8858  ( 8858) [001] .... 82318.555478: binder_transaction_received: transaction=1573012
136701 [email protected]   (  619) [002] d..2 82318.555558: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136702          <idle>-0     (-----) [002] d..1 82318.555576: cpu_idle: state=0 cpu_id=2
136703 crtc_commit:111-321   (  321) [003] d..2 82318.555927: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136704  surfaceflinger-8858  ( 8858) [001] d..2 82318.556005: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136705  kworker/u16:15-1311  ( 1311) [003] d..2 82318.556018: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136706          <idle>-0     (-----) [001] d..1 82318.556033: cpu_idle: state=0 cpu_id=1
136707          <idle>-0     (-----) [003] d..1 82318.556038: cpu_idle: state=0 cpu_id=3
136708          <idle>-0     (-----) [002] ...1 82318.557050: cpu_idle: state=4294967295 cpu_id=2
136709          <idle>-0     (-----) [002] d..1 82318.557057: cpu_idle: state=0 cpu_id=2
136710          <idle>-0     (-----) [001] d.s3 82318.557192: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136711          <idle>-0     (-----) [001] dns4 82318.557207: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
136712          <idle>-0     (-----) [001] .n.1 82318.557227: cpu_idle: state=4294967295 cpu_id=1
136713          <idle>-0     (-----) [001] d..2 82318.557243: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
136714     kworker/1:1-25249 (25249) [001] d..2 82318.557312: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
136715     kworker/1:1-25249 (25249) [001] d..3 82318.557363: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
136716     kworker/1:1-25249 (25249) [001] d..2 82318.557393: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
136717   cds_mc_thread-16565 (16565) [001] d..2 82318.557670: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136718          <idle>-0     (-----) [001] d..1 82318.557694: cpu_idle: state=0 cpu_id=1
136719          <idle>-0     (-----) [002] d.s2 82318.558476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136720          <idle>-0     (-----) [002] dns3 82318.558501: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136721          <idle>-0     (-----) [002] dns3 82318.558509: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
136722          <idle>-0     (-----) [002] dns4 82318.558548: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
136723          <idle>-0     (-----) [002] .n.1 82318.558570: cpu_idle: state=4294967295 cpu_id=2
136724          <idle>-0     (-----) [002] d..2 82318.558583: 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
136725     rcu_preempt-7     (    7) [002] d..2 82318.558599: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
136726     rcu_preempt-7     (    7) [002] d..3 82318.558616: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
136727     rcu_preempt-7     (    7) [002] d..2 82318.558629: 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
136728         rcuop/0-10    (   10) [002] d..2 82318.558634: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
136729         rcuop/0-10    (   10) [002] d..3 82318.558650: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
136730         rcuop/0-10    (   10) [002] d..2 82318.558654: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136731         rcuop/0-10    (   10) [002] d..3 82318.558666: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136732         rcuop/0-10    (   10) [002] d..2 82318.558676: 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
136733         rcuop/1-21    (   21) [002] d..2 82318.558690: 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
136734     rcu_preempt-7     (    7) [002] d..2 82318.558705: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136735  kworker/u16:15-1311  ( 1311) [002] .... 82318.558748: clk_set_rate: l3_cluster0_vote_clk 403200000
136736  kworker/u16:15-1311  ( 1311) [002] .... 82318.558757: clk_set_rate: l3_clk 403200000
136737  kworker/u16:15-1311  ( 1311) [002] d..2 82318.559059: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
136738          <idle>-0     (-----) [002] d..1 82318.559080: cpu_idle: state=0 cpu_id=2
136739          <idle>-0     (-----) [001] d.s3 82318.559094: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
136740          <idle>-0     (-----) [001] d.s4 82318.559109: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
136741          <idle>-0     (-----) [001] d.s4 82318.559119: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
136742          <idle>-0     (-----) [002] .n.1 82318.559126: cpu_idle: state=4294967295 cpu_id=2
136743          <idle>-0     (-----) [001] ...1 82318.559133: cpu_idle: state=4294967295 cpu_id=1
136744          <idle>-0     (-----) [001] d..1 82318.559141: cpu_idle: state=0 cpu_id=1
136745          <idle>-0     (-----) [002] d..2 82318.559141: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136746  kworker/u16:15-1311  ( 1311) [002] d..2 82318.559200: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136747          <idle>-0     (-----) [002] d..1 82318.559213: cpu_idle: state=0 cpu_id=2
136748          <idle>-0     (-----) [000] d.h5 82318.560739: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136749          <idle>-0     (-----) [000] dnh6 82318.560757: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136750          <idle>-0     (-----) [000] dnh5 82318.560763: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136751          <idle>-0     (-----) [000] dnh6 82318.560777: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136752          <idle>-0     (-----) [003] .n.1 82318.560784: cpu_idle: state=4294967295 cpu_id=3
136753          <idle>-0     (-----) [000] .n.1 82318.560792: cpu_idle: state=4294967295 cpu_id=0
136754          <idle>-0     (-----) [003] d..2 82318.560797: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
136755          <idle>-0     (-----) [000] d..2 82318.560806: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
136756  crtc_event:111-322   (  322) [000] d..2 82318.560838: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136757          <idle>-0     (-----) [000] d..1 82318.560853: cpu_idle: state=0 cpu_id=0
136758 crtc_commit:111-321   (  321) [003] d..2 82318.560943: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
136759          <idle>-0     (-----) [003] d..1 82318.560954: cpu_idle: state=0 cpu_id=3
136760          <idle>-0     (-----) [003] d.s3 82318.561806: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136761          <idle>-0     (-----) [003] d.s4 82318.561827: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136762          <idle>-0     (-----) [000] .n.1 82318.561833: cpu_idle: state=4294967295 cpu_id=0
136763          <idle>-0     (-----) [000] d..2 82318.561846: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
136764          <idle>-0     (-----) [003] ...1 82318.561854: cpu_idle: state=4294967295 cpu_id=3
136765          <idle>-0     (-----) [003] d..1 82318.561861: cpu_idle: state=0 cpu_id=3
136766  crtc_event:111-322   (  322) [000] d..2 82318.561882: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136767          <idle>-0     (-----) [000] d..1 82318.561894: cpu_idle: state=0 cpu_id=0
136768          <idle>-0     (-----) [000] d.h5 82318.563065: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136769          <idle>-0     (-----) [000] d.h6 82318.563083: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136770          <idle>-0     (-----) [003] .n.1 82318.563089: cpu_idle: state=4294967295 cpu_id=3
136771          <idle>-0     (-----) [000] ...1 82318.563099: cpu_idle: state=4294967295 cpu_id=0
136772          <idle>-0     (-----) [003] d..2 82318.563101: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
136773          <idle>-0     (-----) [000] d..1 82318.563106: cpu_idle: state=0 cpu_id=0
136774 crtc_commit:111-321   (  321) [003] d..2 82318.563177: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136775          <idle>-0     (-----) [003] d..1 82318.563190: cpu_idle: state=0 cpu_id=3
136776          <idle>-0     (-----) [000] d.h5 82318.563365: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136777          <idle>-0     (-----) [000] dnh6 82318.563376: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
136778          <idle>-0     (-----) [000] .n.1 82318.563390: cpu_idle: state=4294967295 cpu_id=0
136779          <idle>-0     (-----) [000] d..2 82318.563401: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
136780  crtc_event:111-322   (  322) [000] d..2 82318.563427: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136781          <idle>-0     (-----) [000] d..1 82318.563439: cpu_idle: state=0 cpu_id=0
136782          <idle>-0     (-----) [003] d.h2 82318.565132: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
136783          <idle>-0     (-----) [002] d.s2 82318.565140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136784          <idle>-0     (-----) [003] dnh3 82318.565147: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
136785          <idle>-0     (-----) [003] .n.1 82318.565157: cpu_idle: state=4294967295 cpu_id=3
136786          <idle>-0     (-----) [002] dns3 82318.565161: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136787          <idle>-0     (-----) [003] d..2 82318.565169: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
136788          <idle>-0     (-----) [002] .n.1 82318.565176: cpu_idle: state=4294967295 cpu_id=2
136789        DispSync-8879  ( 8858) [003] d..1 82318.565185: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
136790          <idle>-0     (-----) [002] d..2 82318.565190: 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
136791        DispSync-8879  ( 8858) [003] d..2 82318.565203: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
136792          <idle>-0     (-----) [001] .n.1 82318.565209: cpu_idle: state=4294967295 cpu_id=1
136793          <idle>-0     (-----) [001] d..2 82318.565223: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
136794     rcu_preempt-7     (    7) [002] d..2 82318.565225: 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
136795          <idle>-0     (-----) [002] d..1 82318.565239: cpu_idle: state=0 cpu_id=2
136796        DispSync-8879  ( 8858) [003] d..2 82318.565240: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136797          <idle>-0     (-----) [003] d..1 82318.565253: cpu_idle: state=0 cpu_id=3
136798  appEventThread-8881  ( 8858) [001] d..3 82318.565275: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136799          <idle>-0     (-----) [004] dnh2 82318.565306: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136800          <idle>-0     (-----) [004] .n.1 82318.565311: cpu_idle: state=4294967295 cpu_id=4
136801          <idle>-0     (-----) [004] d..2 82318.565319: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
136802  appEventThread-8881  ( 8858) [001] d..2 82318.565342: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136803          <idle>-0     (-----) [001] d..1 82318.565360: cpu_idle: state=0 cpu_id=1
136804 s.nexuslauncher-10023 (10023) [004] .... 82318.565508: binder_transaction: transaction=1573013 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
136805 s.nexuslauncher-10023 (10023) [004] .... 82318.565512: binder_transaction_alloc_buf: transaction=1573013 data_size=80 offsets_size=0
136806 s.nexuslauncher-10023 (10023) [004] d..4 82318.565517: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
136807          <idle>-0     (-----) [000] dnh2 82318.565581: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
136808          <idle>-0     (-----) [000] .n.1 82318.565588: cpu_idle: state=4294967295 cpu_id=0
136809 s.nexuslauncher-10023 (10023) [004] d..3 82318.565599: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136810          <idle>-0     (-----) [000] d..2 82318.565600: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
136811   Binder:8858_1-8871  ( 8858) [000] .... 82318.565610: binder_transaction_received: transaction=1573013
136812 s.nexuslauncher-10023 (10023) [004] d..4 82318.565614: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136813          <idle>-0     (-----) [005] .n.1 82318.565619: cpu_idle: state=4294967295 cpu_id=5
136814          <idle>-0     (-----) [005] d..2 82318.565628: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136815   Binder:8858_1-8871  ( 8858) [000] d..1 82318.565647: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
136816    RenderThread-16607 (10023) [005] d..2 82318.565656: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136817          <idle>-0     (-----) [005] d..1 82318.565664: cpu_idle: state=0 cpu_id=5
136818   Binder:8858_1-8871  ( 8858) [000] d..2 82318.565666: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
136819          <idle>-0     (-----) [001] .n.1 82318.565674: cpu_idle: state=4294967295 cpu_id=1
136820          <idle>-0     (-----) [001] d..2 82318.565685: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
136821   Binder:8858_1-8871  ( 8858) [000] d..2 82318.565715: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136822  appEventThread-8881  ( 8858) [001] d..2 82318.565730: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136823          <idle>-0     (-----) [000] d..1 82318.565732: cpu_idle: state=0 cpu_id=0
136824          <idle>-0     (-----) [001] d..1 82318.565744: cpu_idle: state=0 cpu_id=1
136825 s.nexuslauncher-10023 (10023) [004] d..3 82318.565805: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136826 s.nexuslauncher-10023 (10023) [004] d..4 82318.565821: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136827          <idle>-0     (-----) [005] .n.1 82318.565825: cpu_idle: state=4294967295 cpu_id=5
136828          <idle>-0     (-----) [005] d..2 82318.565832: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136829 s.nexuslauncher-10023 (10023) [004] d..2 82318.565844: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
136830          <idle>-0     (-----) [004] d..1 82318.565858: cpu_idle: state=0 cpu_id=4
136831    RenderThread-16607 (10023) [005] d..1 82318.565981: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136832    RenderThread-16607 (10023) [005] d..2 82318.565998: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
136833          <idle>-0     (-----) [004] .n.1 82318.566004: cpu_idle: state=4294967295 cpu_id=4
136834          <idle>-0     (-----) [004] d..2 82318.566013: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
136835    RenderThread-16607 (10023) [005] .... 82318.566044: binder_transaction: transaction=1573014 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
136836    RenderThread-16607 (10023) [005] .... 82318.566048: binder_transaction_alloc_buf: transaction=1573014 data_size=104 offsets_size=0
136837    RenderThread-16607 (10023) [005] ...2 82318.566051: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
136838    RenderThread-16607 (10023) [005] d..4 82318.566054: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
136839    RenderThread-16607 (10023) [005] d..5 82318.566072: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136840    RenderThread-16607 (10023) [005] d.h5 82318.566109: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
136841 s.nexuslauncher-10023 (10023) [004] d..2 82318.566114: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
136842          <idle>-0     (-----) [004] d..1 82318.566123: cpu_idle: state=0 cpu_id=4
136843    RenderThread-16607 (10023) [005] d..2 82318.566132: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
136844          <idle>-0     (-----) [002] dnh2 82318.566135: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
136845          <idle>-0     (-----) [002] .n.1 82318.566142: cpu_idle: state=4294967295 cpu_id=2
136846   Binder:8858_1-8871  ( 8858) [005] .... 82318.566143: binder_transaction_received: transaction=1573014
136847          <idle>-0     (-----) [002] d..2 82318.566153: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
136848         sugov:0-576   (  576) [002] .... 82318.566188: clk_set_rate: pwrcl_clk 652800000
136849   Binder:8858_1-8871  ( 8858) [005] .... 82318.566197: binder_transaction: transaction=1573015 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
136850   Binder:8858_1-8871  ( 8858) [005] .... 82318.566200: binder_transaction_alloc_buf: transaction=1573015 data_size=52 offsets_size=8
136851         sugov:0-576   (  576) [002] .... 82318.566201: clk_set_rate: cpu3_pwrcl_clk 748800000
136852   Binder:8858_1-8871  ( 8858) [005] d..2 82318.566207: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136853         sugov:0-576   (  576) [002] .... 82318.566210: clk_set_rate: cpu2_pwrcl_clk 748800000
136854   Binder:8858_1-8871  ( 8858) [005] d..3 82318.566217: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136855         sugov:0-576   (  576) [002] .... 82318.566219: clk_set_rate: cpu1_pwrcl_clk 748800000
136856   Binder:8858_1-8871  ( 8858) [005] .... 82318.566220: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
136857         sugov:0-576   (  576) [002] .... 82318.566227: clk_set_rate: cpu0_pwrcl_clk 652800000
136858   Binder:8858_1-8871  ( 8858) [005] d..2 82318.566229: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
136859    RenderThread-16607 (10023) [005] .... 82318.566239: binder_transaction_received: transaction=1573015
136860         sugov:0-576   (  576) [002] .... 82318.566341: cpu_frequency: state=652800 cpu_id=0
136861         sugov:0-576   (  576) [002] .... 82318.566366: cpu_frequency: state=652800 cpu_id=1
136862         sugov:0-576   (  576) [002] .... 82318.566371: cpu_frequency: state=652800 cpu_id=2
136863         sugov:0-576   (  576) [002] .... 82318.566376: cpu_frequency: state=652800 cpu_id=3
136864         sugov:0-576   (  576) [002] d..2 82318.566411: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136865          <idle>-0     (-----) [002] d..1 82318.566425: cpu_idle: state=0 cpu_id=2
136866    RenderThread-16607 (10023) [005] d..2 82318.567455: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
136867   Binder:8858_1-8871  ( 8858) [005] d..2 82318.567516: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136868          <idle>-0     (-----) [005] d..1 82318.567529: cpu_idle: state=0 cpu_id=5
136869          <idle>-0     (-----) [005] d.h2 82318.567550: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136870          <idle>-0     (-----) [005] d.h3 82318.567557: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
136871          <idle>-0     (-----) [005] dnh3 82318.567560: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136872          <idle>-0     (-----) [005] .n.1 82318.567567: cpu_idle: state=4294967295 cpu_id=5
136873          <idle>-0     (-----) [005] d..2 82318.567575: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
136874    RenderThread-16607 (10023) [005] .... 82318.567721: binder_transaction: transaction=1573016 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
136875    RenderThread-16607 (10023) [005] .... 82318.567725: binder_transaction_alloc_buf: transaction=1573016 data_size=192 offsets_size=8
136876    RenderThread-16607 (10023) [005] ...2 82318.567732: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
136877    RenderThread-16607 (10023) [005] d..4 82318.567735: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136878    RenderThread-16607 (10023) [005] d..5 82318.567745: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
136879          <idle>-0     (-----) [001] ...1 82318.567754: cpu_idle: state=4294967295 cpu_id=1
136880    RenderThread-16607 (10023) [005] d..2 82318.567756: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
136881          <idle>-0     (-----) [001] d..1 82318.567760: cpu_idle: state=0 cpu_id=1
136882   Binder:8858_1-8871  ( 8858) [005] .... 82318.567765: binder_transaction_received: transaction=1573016
136883   Binder:8858_1-8871  ( 8858) [005] .... 82318.567880: binder_transaction: transaction=1573017 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
136884   Binder:8858_1-8871  ( 8858) [005] .... 82318.567884: binder_transaction_alloc_buf: transaction=1573017 data_size=68 offsets_size=0
136885   Binder:8858_1-8871  ( 8858) [005] d..2 82318.567886: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
136886   Binder:8858_1-8871  ( 8858) [005] d..3 82318.567897: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
136887   Binder:8858_1-8871  ( 8858) [005] .... 82318.567899: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
136888   Binder:8858_1-8871  ( 8858) [005] d..2 82318.567929: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
136889    RenderThread-16607 (10023) [005] .... 82318.567938: binder_transaction_received: transaction=1573017
136890    RenderThread-16607 (10023) [005] d..2 82318.568003: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
136891          <idle>-0     (-----) [005] d..1 82318.568019: cpu_idle: state=0 cpu_id=5
136892          <idle>-0     (-----) [005] ...1 82318.568217: cpu_idle: state=4294967295 cpu_id=5
136893          <idle>-0     (-----) [005] d..1 82318.568221: cpu_idle: state=0 cpu_id=5
136894          <idle>-0     (-----) [000] d.h3 82318.569010: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
136895          <idle>-0     (-----) [000] dnh4 82318.569028: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
136896          <idle>-0     (-----) [000] .n.1 82318.569043: cpu_idle: state=4294967295 cpu_id=0
136897          <idle>-0     (-----) [000] d..2 82318.569059: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
136898 kgsl_worker_thr-258   (  258) [000] d..2 82318.569121: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
136899          <idle>-0     (-----) [003] d.h2 82318.569126: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
136900          <idle>-0     (-----) [003] dnh3 82318.569140: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
136901          <idle>-0     (-----) [003] .n.1 82318.569150: cpu_idle: state=4294967295 cpu_id=3
136902          <idle>-0     (-----) [003] d..2 82318.569164: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
136903 kgsl_worker_thr-258   (  258) [000] d..3 82318.569176: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
136904        DispSync-8879  ( 8858) [003] d..1 82318.569177: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136905        DispSync-8879  ( 8858) [003] d..2 82318.569194: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136906          <idle>-0     (-----) [002] .n.1 82318.569200: cpu_idle: state=4294967295 cpu_id=2
136907 kgsl_worker_thr-258   (  258) [000] d..2 82318.569203: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
136908          <idle>-0     (-----) [002] d..2 82318.569215: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
136909        DispSync-8879  ( 8858) [003] d..2 82318.569236: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136910          <idle>-0     (-----) [003] d..2 82318.569241: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
136911          <idle>-0     (-----) [003] dn.3 82318.569258: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
136912          <idle>-0     (-----) [003] d..2 82318.569269: 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
136913   sfEventThread-8882  ( 8858) [002] d..3 82318.569269: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136914     ksoftirqd/3-34    (   34) [003] d.s2 82318.569282: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
136915   sfEventThread-8882  ( 8858) [002] d..4 82318.569293: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136916          <idle>-0     (-----) [001] .n.1 82318.569298: cpu_idle: state=4294967295 cpu_id=1
136917          <idle>-0     (-----) [001] d..2 82318.569311: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
136918     ksoftirqd/3-34    (   34) [003] d.s3 82318.569332: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
136919   sfEventThread-8882  ( 8858) [002] d..2 82318.569348: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136920     ksoftirqd/3-34    (   34) [003] d..2 82318.569353: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
136921          <idle>-0     (-----) [002] d..1 82318.569361: cpu_idle: state=0 cpu_id=2
136922  kworker/u16:15-1311  ( 1311) [000] d..2 82318.569389: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
136923          <idle>-0     (-----) [000] d..1 82318.569449: cpu_idle: state=0 cpu_id=0
136924  kworker/u16:13-1147  ( 1147) [003] d..2 82318.569681: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
136925          <idle>-0     (-----) [003] d..1 82318.569703: cpu_idle: state=0 cpu_id=3
136926  surfaceflinger-8858  ( 8858) [001] d.s1 82318.569705: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
136927  surfaceflinger-8858  ( 8858) [001] d.s2 82318.569733: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
136928  surfaceflinger-8858  ( 8858) [001] d..1 82318.569804: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136929  surfaceflinger-8858  ( 8858) [001] d..2 82318.569827: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
136930          <idle>-0     (-----) [002] .n.1 82318.569834: cpu_idle: state=4294967295 cpu_id=2
136931          <idle>-0     (-----) [002] d..2 82318.569843: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
136932   sfEventThread-8882  ( 8858) [002] d..2 82318.569888: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136933          <idle>-0     (-----) [002] d..1 82318.569897: cpu_idle: state=0 cpu_id=2
136934  surfaceflinger-8858  ( 8858) [001] ...1 82318.570057: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
136935  surfaceflinger-8858  ( 8858) [001] ...1 82318.570067: tracing_mark_write: E|8858
136936  surfaceflinger-8858  ( 8858) [001] .... 82318.570137: binder_transaction: transaction=1573018 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
136937  surfaceflinger-8858  ( 8858) [001] .... 82318.570144: binder_transaction_alloc_buf: transaction=1573018 data_size=540 offsets_size=96
136938  surfaceflinger-8858  ( 8858) [001] ...2 82318.570176: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
136939  surfaceflinger-8858  ( 8858) [001] d..4 82318.570183: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
136940  surfaceflinger-8858  ( 8858) [001] d..5 82318.570206: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
136941          <idle>-0     (-----) [002] .n.1 82318.570211: cpu_idle: state=4294967295 cpu_id=2
136942          <idle>-0     (-----) [002] d..2 82318.570221: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
136943 [email protected]   (  619) [002] .... 82318.570233: binder_transaction_received: transaction=1573018
136944  surfaceflinger-8858  ( 8858) [001] d..2 82318.570235: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
136945     ksoftirqd/1-18    (   18) [001] d.s2 82318.570257: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
136946     ksoftirqd/1-18    (   18) [001] d.s3 82318.570272: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
136947     ksoftirqd/1-18    (   18) [001] d.s3 82318.570283: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
136948 [email protected]   (  619) [002] ...1 82318.570286: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
136949          <idle>-0     (-----) [003] .n.1 82318.570290: cpu_idle: state=4294967295 cpu_id=3
136950          <idle>-0     (-----) [003] d..2 82318.570307: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
136951     ksoftirqd/1-18    (   18) [001] d..2 82318.570317: 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
136952          <idle>-0     (-----) [001] d..1 82318.570340: cpu_idle: state=0 cpu_id=1
136953  kworker/u16:13-1147  ( 1147) [003] .... 82318.570399: clk_set_rate: l3_cluster0_vote_clk 300000000
136954  kworker/u16:13-1147  ( 1147) [003] .... 82318.570406: clk_set_rate: l3_clk 300000000
136955 [email protected]   (  619) [002] ...1 82318.570437: tracing_mark_write: B|619|HWCSession::PresentDisplay::
136956  kworker/u16:13-1147  ( 1147) [003] d..2 82318.570515: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
136957          <idle>-0     (-----) [003] d..1 82318.570534: cpu_idle: state=0 cpu_id=3
136958 [email protected]   (  619) [002] ...1 82318.570657: tracing_mark_write: B|619|HWDeviceDRM::Commit::
136959 [email protected]   (  619) [002] ...1 82318.570674: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
136960 [email protected]   (  619) [002] d..2 82318.571432: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136961 [email protected]   (  619) [002] d..3 82318.571464: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
136962          <idle>-0     (-----) [003] .n.1 82318.571470: cpu_idle: state=4294967295 cpu_id=3
136963          <idle>-0     (-----) [003] d..2 82318.571485: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
136964 [email protected]   (  619) [002] ...1 82318.571605: tracing_mark_write: E|619
136965 [email protected]   (  619) [002] ...1 82318.571614: tracing_mark_write: E|619
136966 [email protected]   (  619) [002] ...1 82318.571691: tracing_mark_write: E|619
136967 [email protected]   (  619) [002] ...1 82318.571750: tracing_mark_write: E|619
136968 [email protected]   (  619) [002] d.s2 82318.571827: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
136969 [email protected]   (  619) [002] d.s3 82318.571938: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
136970 [email protected]   (  619) [002] .... 82318.571950: binder_transaction: transaction=1573019 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
136971 [email protected]   (  619) [002] .... 82318.571955: binder_transaction_alloc_buf: transaction=1573019 data_size=576 offsets_size=112
136972 [email protected]   (  619) [002] d..2 82318.571987: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136973 [email protected]   (  619) [002] d..3 82318.572008: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
136974 [email protected]   (  619) [002] .... 82318.572014: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
136975          <idle>-0     (-----) [001] .n.1 82318.572017: cpu_idle: state=4294967295 cpu_id=1
136976          <idle>-0     (-----) [001] d..2 82318.572034: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
136977  surfaceflinger-8858  ( 8858) [001] .... 82318.572047: binder_transaction_received: transaction=1573019
136978 [email protected]   (  619) [002] d..2 82318.572138: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
136979          <idle>-0     (-----) [002] d..1 82318.572164: cpu_idle: state=0 cpu_id=2
136980 crtc_commit:111-321   (  321) [003] d..2 82318.572455: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
136981     rcu_preempt-7     (    7) [003] d..2 82318.572467: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
136982     rcu_preempt-7     (    7) [003] d..3 82318.572524: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
136983     rcu_preempt-7     (    7) [003] d..2 82318.572542: 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
136984         rcuop/0-10    (   10) [003] d..2 82318.572547: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
136985         rcuop/0-10    (   10) [003] d..3 82318.572589: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
136986         rcuop/0-10    (   10) [003] d..2 82318.572595: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
136987  surfaceflinger-8858  ( 8858) [001] d..2 82318.572606: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
136988          <idle>-0     (-----) [001] dn.1 82318.572634: cpu_idle: state=0 cpu_id=1
136989         rcuop/0-10    (   10) [003] d..3 82318.572637: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
136990          <idle>-0     (-----) [001] .n.1 82318.572645: cpu_idle: state=4294967295 cpu_id=1
136991         rcuop/0-10    (   10) [003] d..2 82318.572649: 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
136992          <idle>-0     (-----) [001] d..2 82318.572664: 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
136993         rcuop/1-21    (   21) [003] d..2 82318.572691: 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
136994     rcu_preempt-7     (    7) [001] d..2 82318.572705: 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
136995          <idle>-0     (-----) [003] d..1 82318.572716: cpu_idle: state=0 cpu_id=3
136996          <idle>-0     (-----) [001] d..1 82318.572719: cpu_idle: state=0 cpu_id=1
136997          <idle>-0     (-----) [002] ...1 82318.573284: cpu_idle: state=4294967295 cpu_id=2
136998          <idle>-0     (-----) [002] d..1 82318.573296: cpu_idle: state=0 cpu_id=2
136999          <idle>-0     (-----) [003] ...1 82318.574904: cpu_idle: state=4294967295 cpu_id=3
137000          <idle>-0     (-----) [003] d..1 82318.574911: cpu_idle: state=0 cpu_id=3
137001          <idle>-0     (-----) [002] ...1 82318.574974: cpu_idle: state=4294967295 cpu_id=2
137002          <idle>-0     (-----) [002] d..1 82318.574980: cpu_idle: state=0 cpu_id=2
137003          <idle>-0     (-----) [002] d..2 82318.577088: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
137004          <idle>-0     (-----) [002] dn.3 82318.577110: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
137005          <idle>-0     (-----) [002] .n.1 82318.577116: cpu_idle: state=4294967295 cpu_id=2
137006          <idle>-0     (-----) [002] d..2 82318.577136: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
137007     ksoftirqd/2-26    (   26) [002] d..2 82318.577182: 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
137008          <idle>-0     (-----) [002] d..1 82318.577197: cpu_idle: state=0 cpu_id=2
137009          <idle>-0     (-----) [000] d.h5 82318.577206: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137010          <idle>-0     (-----) [001] d.s3 82318.577215: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137011          <idle>-0     (-----) [000] dnh6 82318.577229: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137012          <idle>-0     (-----) [000] dnh5 82318.577235: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137013          <idle>-0     (-----) [001] dns4 82318.577235: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137014          <idle>-0     (-----) [000] dnh6 82318.577251: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137015          <idle>-0     (-----) [001] .n.1 82318.577254: cpu_idle: state=4294967295 cpu_id=1
137016          <idle>-0     (-----) [003] .n.1 82318.577257: cpu_idle: state=4294967295 cpu_id=3
137017          <idle>-0     (-----) [000] .n.1 82318.577268: cpu_idle: state=4294967295 cpu_id=0
137018          <idle>-0     (-----) [001] d..2 82318.577272: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
137019          <idle>-0     (-----) [003] d..2 82318.577274: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137020          <idle>-0     (-----) [000] d..2 82318.577285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137021  crtc_event:111-322   (  322) [000] d..2 82318.577323: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137022     kworker/1:1-25249 (25249) [001] d..2 82318.577337: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=002
137023          <idle>-0     (-----) [000] d..1 82318.577340: cpu_idle: state=0 cpu_id=0
137024     kworker/1:1-25249 (25249) [001] d..3 82318.577396: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=003
137025     kworker/1:1-25249 (25249) [001] d..2 82318.577414: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
137026 crtc_commit:111-321   (  321) [003] d..2 82318.577427: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
137027     kworker/1:1-25249 (25249) [001] d..3 82318.577460: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=003
137028 wlan_logging_th-647   (  647) [003] d..2 82318.577465: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
137029     kworker/1:1-25249 (25249) [001] d..2 82318.577510: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137030          <idle>-0     (-----) [001] d..1 82318.577527: cpu_idle: state=0 cpu_id=1
137031 wlan_logging_th-647   (  647) [003] d..3 82318.577533: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=003
137032 wlan_logging_th-647   (  647) [003] d..2 82318.577563: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
137033   cds_mc_thread-16565 (16565) [003] d..3 82318.577831: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
137034   cds_mc_thread-16565 (16565) [003] d..4 82318.577894: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
137035          <idle>-0     (-----) [000] .n.1 82318.577899: cpu_idle: state=4294967295 cpu_id=0
137036          <idle>-0     (-----) [000] d..2 82318.577916: 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
137037   cds_mc_thread-16565 (16565) [003] d..2 82318.577943: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
137038         rcuop/2-29    (   29) [000] d..2 82318.577947: 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
137039          <idle>-0     (-----) [000] d..1 82318.577960: cpu_idle: state=0 cpu_id=0
137040 [email protected] (  798) [003] d..2 82318.578076: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137041          <idle>-0     (-----) [003] d..1 82318.578094: cpu_idle: state=0 cpu_id=3
137042          <idle>-0     (-----) [003] d.s3 82318.578482: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137043          <idle>-0     (-----) [001] d.s2 82318.578484: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137044          <idle>-0     (-----) [001] dns3 82318.578506: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137045          <idle>-0     (-----) [003] d.s4 82318.578507: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137046          <idle>-0     (-----) [000] .n.1 82318.578513: cpu_idle: state=4294967295 cpu_id=0
137047          <idle>-0     (-----) [001] dns3 82318.578516: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
137048          <idle>-0     (-----) [000] d..2 82318.578527: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137049          <idle>-0     (-----) [003] ...1 82318.578540: cpu_idle: state=4294967295 cpu_id=3
137050          <idle>-0     (-----) [003] d..1 82318.578548: cpu_idle: state=0 cpu_id=3
137051          <idle>-0     (-----) [001] dns4 82318.578564: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
137052  crtc_event:111-322   (  322) [000] d..2 82318.578576: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
137053          <idle>-0     (-----) [001] dns3 82318.578583: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
137054          <idle>-0     (-----) [001] dns4 82318.578623: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
137055          <idle>-0     (-----) [001] .n.1 82318.578652: cpu_idle: state=4294967295 cpu_id=1
137056          <idle>-0     (-----) [001] d..2 82318.578666: 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
137057     rcu_preempt-7     (    7) [001] d..2 82318.578692: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137058  kworker/u16:13-1147  ( 1147) [000] d..2 82318.578706: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137059  kworker/u16:15-1311  ( 1311) [001] d..2 82318.578718: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137060          <idle>-0     (-----) [000] d..1 82318.578725: cpu_idle: state=0 cpu_id=0
137061          <idle>-0     (-----) [001] d..1 82318.578738: cpu_idle: state=0 cpu_id=1
137062          <idle>-0     (-----) [000] d.h5 82318.579543: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137063          <idle>-0     (-----) [000] d.h6 82318.579566: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137064          <idle>-0     (-----) [003] .n.1 82318.579572: cpu_idle: state=4294967295 cpu_id=3
137065          <idle>-0     (-----) [000] ...1 82318.579586: cpu_idle: state=4294967295 cpu_id=0
137066          <idle>-0     (-----) [003] d..2 82318.579586: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137067          <idle>-0     (-----) [000] d..1 82318.579595: cpu_idle: state=0 cpu_id=0
137068 crtc_commit:111-321   (  321) [003] d..2 82318.579682: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137069          <idle>-0     (-----) [003] d..1 82318.579698: cpu_idle: state=0 cpu_id=3
137070          <idle>-0     (-----) [000] d.h5 82318.579838: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137071          <idle>-0     (-----) [000] dnh6 82318.579851: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137072          <idle>-0     (-----) [000] .n.1 82318.579867: cpu_idle: state=4294967295 cpu_id=0
137073          <idle>-0     (-----) [000] d..2 82318.579881: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137074  crtc_event:111-322   (  322) [000] d..2 82318.579912: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137075          <idle>-0     (-----) [000] d..1 82318.579929: cpu_idle: state=0 cpu_id=0
137076          <idle>-0     (-----) [000] ...1 82318.581446: cpu_idle: state=4294967295 cpu_id=0
137077          <idle>-0     (-----) [000] d..1 82318.581452: cpu_idle: state=0 cpu_id=0
137078          <idle>-0     (-----) [003] d.h2 82318.581593: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
137079          <idle>-0     (-----) [003] dnh3 82318.581613: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
137080          <idle>-0     (-----) [003] .n.1 82318.581625: cpu_idle: state=4294967295 cpu_id=3
137081          <idle>-0     (-----) [003] d..2 82318.581638: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
137082        DispSync-8879  ( 8858) [003] d..1 82318.581664: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
137083        DispSync-8879  ( 8858) [003] d..2 82318.581684: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
137084          <idle>-0     (-----) [001] .n.1 82318.581691: cpu_idle: state=4294967295 cpu_id=1
137085          <idle>-0     (-----) [001] d..2 82318.581705: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
137086        DispSync-8879  ( 8858) [003] d..2 82318.581727: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137087          <idle>-0     (-----) [003] d..1 82318.581742: cpu_idle: state=0 cpu_id=3
137088  appEventThread-8881  ( 8858) [001] d..3 82318.581767: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137089          <idle>-0     (-----) [004] dnh2 82318.581802: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137090          <idle>-0     (-----) [004] .n.1 82318.581807: cpu_idle: state=4294967295 cpu_id=4
137091          <idle>-0     (-----) [004] d..2 82318.581816: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
137092  appEventThread-8881  ( 8858) [001] d..2 82318.581892: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137093          <idle>-0     (-----) [001] d..1 82318.581907: cpu_idle: state=0 cpu_id=1
137094 s.nexuslauncher-10023 (10023) [004] .... 82318.582014: binder_transaction: transaction=1573020 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
137095 s.nexuslauncher-10023 (10023) [004] .... 82318.582019: binder_transaction_alloc_buf: transaction=1573020 data_size=80 offsets_size=0
137096 s.nexuslauncher-10023 (10023) [004] d..4 82318.582025: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
137097 s.nexuslauncher-10023 (10023) [004] d.h5 82318.582087: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
137098          <idle>-0     (-----) [000] dnh2 82318.582093: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
137099          <idle>-0     (-----) [000] .n.1 82318.582101: cpu_idle: state=4294967295 cpu_id=0
137100          <idle>-0     (-----) [002] dnh2 82318.582115: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
137101          <idle>-0     (-----) [000] d..2 82318.582116: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
137102          <idle>-0     (-----) [002] .n.1 82318.582123: cpu_idle: state=4294967295 cpu_id=2
137103   Binder:8858_1-8871  ( 8858) [000] .... 82318.582128: binder_transaction_received: transaction=1573020
137104 s.nexuslauncher-10023 (10023) [004] d..3 82318.582129: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137105          <idle>-0     (-----) [002] d..2 82318.582136: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
137106 s.nexuslauncher-10023 (10023) [004] d..4 82318.582146: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137107          <idle>-0     (-----) [005] .n.1 82318.582151: cpu_idle: state=4294967295 cpu_id=5
137108          <idle>-0     (-----) [005] d..2 82318.582162: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137109         sugov:0-576   (  576) [002] .... 82318.582170: clk_set_rate: pwrcl_clk 748800000
137110   Binder:8858_1-8871  ( 8858) [000] d..1 82318.582173: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
137111         sugov:0-576   (  576) [002] .... 82318.582184: clk_set_rate: cpu3_pwrcl_clk 652800000
137112         sugov:0-576   (  576) [002] .... 82318.582194: clk_set_rate: cpu2_pwrcl_clk 652800000
137113   Binder:8858_1-8871  ( 8858) [000] d..2 82318.582195: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
137114    RenderThread-16607 (10023) [005] d..2 82318.582198: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
137115          <idle>-0     (-----) [001] .n.1 82318.582202: cpu_idle: state=4294967295 cpu_id=1
137116         sugov:0-576   (  576) [002] .... 82318.582203: clk_set_rate: cpu1_pwrcl_clk 652800000
137117          <idle>-0     (-----) [005] d..1 82318.582206: cpu_idle: state=0 cpu_id=5
137118         sugov:0-576   (  576) [002] .... 82318.582212: clk_set_rate: cpu0_pwrcl_clk 748800000
137119          <idle>-0     (-----) [001] d..2 82318.582215: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
137120         sugov:0-576   (  576) [002] .... 82318.582221: cpu_frequency: state=748800 cpu_id=0
137121         sugov:0-576   (  576) [002] .... 82318.582246: cpu_frequency: state=748800 cpu_id=1
137122         sugov:0-576   (  576) [002] .... 82318.582251: cpu_frequency: state=748800 cpu_id=2
137123         sugov:0-576   (  576) [002] .... 82318.582256: cpu_frequency: state=748800 cpu_id=3
137124   Binder:8858_1-8871  ( 8858) [000] d..2 82318.582259: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137125  appEventThread-8881  ( 8858) [001] d..2 82318.582272: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137126          <idle>-0     (-----) [000] d..1 82318.582279: cpu_idle: state=0 cpu_id=0
137127          <idle>-0     (-----) [001] d..1 82318.582281: cpu_idle: state=0 cpu_id=1
137128         sugov:0-576   (  576) [002] d..2 82318.582290: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137129          <idle>-0     (-----) [002] d..1 82318.582307: cpu_idle: state=0 cpu_id=2
137130 s.nexuslauncher-10023 (10023) [004] d..3 82318.582365: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137131 s.nexuslauncher-10023 (10023) [004] d..4 82318.582384: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137132          <idle>-0     (-----) [005] .n.1 82318.582389: cpu_idle: state=4294967295 cpu_id=5
137133          <idle>-0     (-----) [005] d..2 82318.582397: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137134 s.nexuslauncher-10023 (10023) [004] d..2 82318.582410: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
137135          <idle>-0     (-----) [004] d..1 82318.582426: cpu_idle: state=0 cpu_id=4
137136    RenderThread-16607 (10023) [005] d..1 82318.582545: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137137    RenderThread-16607 (10023) [005] d..2 82318.582563: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137138          <idle>-0     (-----) [004] .n.1 82318.582569: cpu_idle: state=4294967295 cpu_id=4
137139          <idle>-0     (-----) [004] d..2 82318.582578: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
137140    RenderThread-16607 (10023) [005] .... 82318.582612: binder_transaction: transaction=1573021 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
137141    RenderThread-16607 (10023) [005] .... 82318.582616: binder_transaction_alloc_buf: transaction=1573021 data_size=104 offsets_size=0
137142    RenderThread-16607 (10023) [005] ...2 82318.582620: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
137143    RenderThread-16607 (10023) [005] d..4 82318.582624: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
137144    RenderThread-16607 (10023) [005] d..5 82318.582643: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
137145 s.nexuslauncher-10023 (10023) [004] d..2 82318.582687: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
137146    RenderThread-16607 (10023) [005] d..2 82318.582691: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
137147          <idle>-0     (-----) [004] d..1 82318.582698: cpu_idle: state=0 cpu_id=4
137148   Binder:8858_1-8871  ( 8858) [005] .... 82318.582703: binder_transaction_received: transaction=1573021
137149   Binder:8858_1-8871  ( 8858) [005] .... 82318.582763: binder_transaction: transaction=1573022 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
137150   Binder:8858_1-8871  ( 8858) [005] .... 82318.582767: binder_transaction_alloc_buf: transaction=1573022 data_size=52 offsets_size=8
137151   Binder:8858_1-8871  ( 8858) [005] d..2 82318.582775: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137152   Binder:8858_1-8871  ( 8858) [005] d..3 82318.582784: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137153   Binder:8858_1-8871  ( 8858) [005] .... 82318.582787: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
137154   Binder:8858_1-8871  ( 8858) [005] d..2 82318.582798: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
137155    RenderThread-16607 (10023) [005] .... 82318.582807: binder_transaction_received: transaction=1573022
137156          <idle>-0     (-----) [000] ...1 82318.583796: cpu_idle: state=4294967295 cpu_id=0
137157          <idle>-0     (-----) [000] d..1 82318.583802: cpu_idle: state=0 cpu_id=0
137158    RenderThread-16607 (10023) [005] d..2 82318.584074: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
137159   Binder:8858_1-8871  ( 8858) [005] d..2 82318.584141: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
137160          <idle>-0     (-----) [005] d..1 82318.584156: cpu_idle: state=0 cpu_id=5
137161          <idle>-0     (-----) [005] d.h2 82318.584169: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137162          <idle>-0     (-----) [005] d.h3 82318.584177: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
137163          <idle>-0     (-----) [005] dnh3 82318.584180: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137164          <idle>-0     (-----) [005] .n.1 82318.584187: cpu_idle: state=4294967295 cpu_id=5
137165          <idle>-0     (-----) [005] d..2 82318.584196: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137166    RenderThread-16607 (10023) [005] .... 82318.584354: binder_transaction: transaction=1573023 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
137167    RenderThread-16607 (10023) [005] .... 82318.584358: binder_transaction_alloc_buf: transaction=1573023 data_size=192 offsets_size=8
137168    RenderThread-16607 (10023) [005] ...2 82318.584365: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
137169    RenderThread-16607 (10023) [005] d..4 82318.584368: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
137170    RenderThread-16607 (10023) [005] d..5 82318.584380: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
137171    RenderThread-16607 (10023) [005] d..2 82318.584391: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
137172   Binder:8858_1-8871  ( 8858) [005] .... 82318.584402: binder_transaction_received: transaction=1573023
137173   Binder:8858_1-8871  ( 8858) [005] .... 82318.584523: binder_transaction: transaction=1573024 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
137174   Binder:8858_1-8871  ( 8858) [005] .... 82318.584527: binder_transaction_alloc_buf: transaction=1573024 data_size=68 offsets_size=0
137175   Binder:8858_1-8871  ( 8858) [005] d..2 82318.584529: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137176   Binder:8858_1-8871  ( 8858) [005] d..3 82318.584540: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137177   Binder:8858_1-8871  ( 8858) [005] .... 82318.584542: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
137178   Binder:8858_1-8871  ( 8858) [005] d..2 82318.584573: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
137179    RenderThread-16607 (10023) [005] .... 82318.584583: binder_transaction_received: transaction=1573024
137180    RenderThread-16607 (10023) [005] d..2 82318.584652: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
137181          <idle>-0     (-----) [005] d..1 82318.584670: cpu_idle: state=0 cpu_id=5
137182          <idle>-0     (-----) [005] ...1 82318.584870: cpu_idle: state=4294967295 cpu_id=5
137183          <idle>-0     (-----) [005] d..1 82318.584874: cpu_idle: state=0 cpu_id=5
137184          <idle>-0     (-----) [001] d.s2 82318.585140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137185          <idle>-0     (-----) [001] dns3 82318.585162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137186          <idle>-0     (-----) [001] .n.1 82318.585174: cpu_idle: state=4294967295 cpu_id=1
137187          <idle>-0     (-----) [001] d..2 82318.585185: 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
137188     rcu_preempt-7     (    7) [001] d..2 82318.585196: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
137189     rcu_preempt-7     (    7) [001] d..3 82318.585238: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
137190     rcu_preempt-7     (    7) [001] d..2 82318.585257: 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
137191         rcuop/0-10    (   10) [001] d..2 82318.585263: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
137192         rcuop/0-10    (   10) [001] d..3 82318.585297: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
137193         rcuop/0-10    (   10) [001] d..2 82318.585309: 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
137194         rcuop/1-21    (   21) [001] d..2 82318.585349: 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
137195          <idle>-0     (-----) [001] d..1 82318.585366: cpu_idle: state=0 cpu_id=1
137196          <idle>-0     (-----) [003] d.h2 82318.585601: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
137197          <idle>-0     (-----) [000] d.h3 82318.585614: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
137198          <idle>-0     (-----) [003] dnh3 82318.585617: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
137199          <idle>-0     (-----) [003] .n.1 82318.585627: cpu_idle: state=4294967295 cpu_id=3
137200          <idle>-0     (-----) [000] dnh4 82318.585633: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
137201          <idle>-0     (-----) [003] d..2 82318.585639: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
137202          <idle>-0     (-----) [000] .n.1 82318.585648: cpu_idle: state=4294967295 cpu_id=0
137203        DispSync-8879  ( 8858) [003] d..1 82318.585652: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137204          <idle>-0     (-----) [000] d..2 82318.585661: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
137205        DispSync-8879  ( 8858) [003] d..2 82318.585671: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137206          <idle>-0     (-----) [002] .n.1 82318.585677: cpu_idle: state=4294967295 cpu_id=2
137207          <idle>-0     (-----) [002] d..2 82318.585690: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
137208        DispSync-8879  ( 8858) [003] d..2 82318.585705: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137209          <idle>-0     (-----) [003] d..1 82318.585720: cpu_idle: state=0 cpu_id=3
137210 kgsl_worker_thr-258   (  258) [000] d..2 82318.585720: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
137211   sfEventThread-8882  ( 8858) [002] d..3 82318.585744: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
137212 kgsl_worker_thr-258   (  258) [000] d..3 82318.585773: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
137213   sfEventThread-8882  ( 8858) [002] d..4 82318.585774: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
137214          <idle>-0     (-----) [001] .n.1 82318.585781: cpu_idle: state=4294967295 cpu_id=1
137215          <idle>-0     (-----) [001] d..2 82318.585794: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
137216 kgsl_worker_thr-258   (  258) [000] d..2 82318.585801: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137217   sfEventThread-8882  ( 8858) [002] d..2 82318.585819: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137218          <idle>-0     (-----) [002] d..1 82318.585837: cpu_idle: state=0 cpu_id=2
137219  kworker/u16:15-1311  ( 1311) [000] d..2 82318.585982: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137220          <idle>-0     (-----) [000] d..1 82318.586002: cpu_idle: state=0 cpu_id=0
137221  surfaceflinger-8858  ( 8858) [001] d..2 82318.586164: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
137222  surfaceflinger-8858  ( 8858) [001] d..3 82318.586195: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
137223  surfaceflinger-8858  ( 8858) [001] d..1 82318.586231: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137224  surfaceflinger-8858  ( 8858) [001] d..2 82318.586252: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137225          <idle>-0     (-----) [002] .n.1 82318.586260: cpu_idle: state=4294967295 cpu_id=2
137226          <idle>-0     (-----) [002] d..2 82318.586272: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
137227   sfEventThread-8882  ( 8858) [002] d..2 82318.586314: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137228          <idle>-0     (-----) [002] d..1 82318.586326: cpu_idle: state=0 cpu_id=2
137229  surfaceflinger-8858  ( 8858) [001] ...1 82318.586481: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
137230  surfaceflinger-8858  ( 8858) [001] ...1 82318.586490: tracing_mark_write: E|8858
137231  surfaceflinger-8858  ( 8858) [001] .... 82318.586561: binder_transaction: transaction=1573025 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
137232  surfaceflinger-8858  ( 8858) [001] .... 82318.586568: binder_transaction_alloc_buf: transaction=1573025 data_size=540 offsets_size=96
137233  surfaceflinger-8858  ( 8858) [001] ...2 82318.586596: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
137234  surfaceflinger-8858  ( 8858) [001] d..4 82318.586605: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
137235  surfaceflinger-8858  ( 8858) [001] d..5 82318.586628: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
137236          <idle>-0     (-----) [002] .n.1 82318.586632: cpu_idle: state=4294967295 cpu_id=2
137237          <idle>-0     (-----) [002] d..2 82318.586645: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
137238  surfaceflinger-8858  ( 8858) [001] d..2 82318.586656: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
137239 [email protected]   (  619) [002] .... 82318.586657: binder_transaction_received: transaction=1573025
137240         rcuop/0-10    (   10) [001] d..2 82318.586688: 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
137241          <idle>-0     (-----) [001] d..1 82318.586709: cpu_idle: state=0 cpu_id=1
137242 [email protected]   (  619) [002] ...1 82318.586712: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
137243 [email protected]   (  619) [002] ...1 82318.586842: tracing_mark_write: B|619|HWCSession::PresentDisplay::
137244 [email protected]   (  619) [002] ...1 82318.587039: tracing_mark_write: B|619|HWDeviceDRM::Commit::
137245 [email protected]   (  619) [002] ...1 82318.587055: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
137246 [email protected]   (  619) [002] d..2 82318.587744: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137247 [email protected]   (  619) [002] d..3 82318.587774: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137248          <idle>-0     (-----) [003] .n.1 82318.587779: cpu_idle: state=4294967295 cpu_id=3
137249          <idle>-0     (-----) [003] d..2 82318.587792: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137250 [email protected]   (  619) [002] ...1 82318.587899: tracing_mark_write: E|619
137251 [email protected]   (  619) [002] ...1 82318.587909: tracing_mark_write: E|619
137252 [email protected]   (  619) [002] ...1 82318.587978: tracing_mark_write: E|619
137253 [email protected]   (  619) [002] ...1 82318.588031: tracing_mark_write: E|619
137254 [email protected]   (  619) [002] .... 82318.588050: binder_transaction: transaction=1573026 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
137255 [email protected]   (  619) [002] .... 82318.588056: binder_transaction_alloc_buf: transaction=1573026 data_size=576 offsets_size=112
137256 [email protected]   (  619) [002] d..2 82318.588082: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
137257 [email protected]   (  619) [002] d..3 82318.588106: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
137258 [email protected]   (  619) [002] .... 82318.588112: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
137259          <idle>-0     (-----) [001] .n.1 82318.588113: cpu_idle: state=4294967295 cpu_id=1
137260          <idle>-0     (-----) [001] d..2 82318.588127: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
137261  surfaceflinger-8858  ( 8858) [001] .... 82318.588138: binder_transaction_received: transaction=1573026
137262 [email protected]   (  619) [002] d..2 82318.588219: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137263          <idle>-0     (-----) [002] d..1 82318.588244: cpu_idle: state=0 cpu_id=2
137264 crtc_commit:111-321   (  321) [003] d.s2 82318.588484: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
137265 crtc_commit:111-321   (  321) [003] d.s3 82318.588537: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
137266 crtc_commit:111-321   (  321) [003] d..2 82318.588680: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137267  surfaceflinger-8858  ( 8858) [001] d..2 82318.588702: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137268          <idle>-0     (-----) [001] d..1 82318.588721: cpu_idle: state=0 cpu_id=1
137269  kworker/u16:15-1311  ( 1311) [003] d..2 82318.588810: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137270          <idle>-0     (-----) [003] d..1 82318.588831: cpu_idle: state=0 cpu_id=3
137271          <idle>-0     (-----) [001] d.s2 82318.591887: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137272          <idle>-0     (-----) [001] dns3 82318.591913: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137273          <idle>-0     (-----) [001] .n.1 82318.591926: cpu_idle: state=4294967295 cpu_id=1
137274          <idle>-0     (-----) [001] d..2 82318.591938: 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
137275     rcu_preempt-7     (    7) [001] d..2 82318.591953: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
137276     rcu_preempt-7     (    7) [001] d..3 82318.591996: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
137277     rcu_preempt-7     (    7) [001] d..2 82318.592016: 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
137278         rcuop/2-29    (   29) [001] d..2 82318.592023: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
137279         rcuop/2-29    (   29) [001] d..3 82318.592062: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
137280         rcuop/2-29    (   29) [001] d..2 82318.592074: 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
137281         rcuop/3-37    (   37) [001] d..2 82318.592108: 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
137282          <idle>-0     (-----) [001] d..1 82318.592129: cpu_idle: state=0 cpu_id=1
137283          <idle>-0     (-----) [001] d.s3 82318.592903: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137284          <idle>-0     (-----) [001] dns4 82318.592920: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137285          <idle>-0     (-----) [001] .n.1 82318.592938: cpu_idle: state=4294967295 cpu_id=1
137286          <idle>-0     (-----) [001] d..2 82318.592953: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
137287          <idle>-0     (-----) [002] ...1 82318.592973: cpu_idle: state=4294967295 cpu_id=2
137288          <idle>-0     (-----) [002] d..1 82318.592982: cpu_idle: state=0 cpu_id=2
137289     kworker/1:1-25249 (25249) [001] d..2 82318.592998: sched_waking: [email protected] pid=16588 prio=120 target_cpu=003
137290     kworker/1:1-25249 (25249) [001] d..3 82318.593022: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
137291     kworker/1:1-25249 (25249) [001] d..2 82318.593060: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
137292 [email protected] (  798) [001] d.s2 82318.593184: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137293 [email protected] (  798) [001] d.s3 82318.593203: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137294          <idle>-0     (-----) [002] ...1 82318.593216: cpu_idle: state=4294967295 cpu_id=2
137295          <idle>-0     (-----) [002] d..1 82318.593223: cpu_idle: state=0 cpu_id=2
137296 [email protected] (  798) [001] d..2 82318.593322: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
137297     kworker/1:1-25249 (25249) [001] d..2 82318.593358: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
137298     kworker/1:1-25249 (25249) [001] d..3 82318.593371: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
137299     kworker/1:1-25249 (25249) [001] d..2 82318.593402: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
137300 [email protected] (  798) [001] d..2 82318.593550: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137301          <idle>-0     (-----) [001] d..1 82318.593573: cpu_idle: state=0 cpu_id=1
137302          <idle>-0     (-----) [000] d.h5 82318.593673: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137303          <idle>-0     (-----) [000] dnh6 82318.593692: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137304          <idle>-0     (-----) [000] dnh5 82318.593697: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137305          <idle>-0     (-----) [000] dnh6 82318.593714: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137306          <idle>-0     (-----) [003] .n.1 82318.593722: cpu_idle: state=4294967295 cpu_id=3
137307          <idle>-0     (-----) [000] .n.1 82318.593730: cpu_idle: state=4294967295 cpu_id=0
137308          <idle>-0     (-----) [003] d..2 82318.593737: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137309          <idle>-0     (-----) [000] d..2 82318.593744: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137310  crtc_event:111-322   (  322) [000] d..2 82318.593778: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137311          <idle>-0     (-----) [000] d..1 82318.593794: cpu_idle: state=0 cpu_id=0
137312 crtc_commit:111-321   (  321) [003] d..2 82318.593890: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
137313          <idle>-0     (-----) [003] d..1 82318.593902: cpu_idle: state=0 cpu_id=3
137314          <idle>-0     (-----) [001] d.s3 82318.594441: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137315          <idle>-0     (-----) [001] dns4 82318.594455: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137316          <idle>-0     (-----) [001] .n.1 82318.594508: cpu_idle: state=4294967295 cpu_id=1
137317          <idle>-0     (-----) [001] d..2 82318.594525: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
137318     kworker/1:1-25249 (25249) [001] d..2 82318.594557: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
137319     kworker/1:1-25249 (25249) [001] d..3 82318.594573: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
137320     kworker/1:1-25249 (25249) [001] d..2 82318.594602: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
137321 [email protected] (  798) [001] d..2 82318.594747: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137322          <idle>-0     (-----) [001] d..1 82318.594767: cpu_idle: state=0 cpu_id=1
137323          <idle>-0     (-----) [003] d.s3 82318.595144: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137324          <idle>-0     (-----) [003] d.s4 82318.595167: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137325          <idle>-0     (-----) [000] .n.1 82318.595173: cpu_idle: state=4294967295 cpu_id=0
137326          <idle>-0     (-----) [000] d..2 82318.595186: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137327          <idle>-0     (-----) [003] ...1 82318.595194: cpu_idle: state=4294967295 cpu_id=3
137328          <idle>-0     (-----) [003] d..1 82318.595202: cpu_idle: state=0 cpu_id=3
137329  crtc_event:111-322   (  322) [000] d..2 82318.595224: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137330          <idle>-0     (-----) [000] d..1 82318.595236: cpu_idle: state=0 cpu_id=0
137331          <idle>-0     (-----) [001] d.s3 82318.595420: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137332          <idle>-0     (-----) [001] dns4 82318.595434: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137333          <idle>-0     (-----) [001] .n.1 82318.595450: cpu_idle: state=4294967295 cpu_id=1
137334          <idle>-0     (-----) [001] d..2 82318.595466: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
137335     kworker/1:1-25249 (25249) [001] d.s2 82318.595547: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=003
137336     kworker/1:1-25249 (25249) [001] d.s3 82318.595602: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
137337     kworker/1:1-25249 (25249) [001] d..2 82318.595620: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
137338     kworker/1:1-25249 (25249) [001] d..3 82318.595635: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
137339     kworker/1:1-25249 (25249) [001] d..2 82318.595667: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
137340   cds_mc_thread-16565 (16565) [001] d..2 82318.595752: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
137341          <idle>-0     (-----) [002] ...1 82318.595841: cpu_idle: state=4294967295 cpu_id=2
137342          <idle>-0     (-----) [002] d..1 82318.595849: cpu_idle: state=0 cpu_id=2
137343 [email protected] (  798) [001] d..2 82318.595904: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137344          <idle>-0     (-----) [001] d..1 82318.595921: cpu_idle: state=0 cpu_id=1
137345          <idle>-0     (-----) [000] d.h5 82318.596000: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137346          <idle>-0     (-----) [000] d.h6 82318.596019: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137347          <idle>-0     (-----) [003] .n.1 82318.596026: cpu_idle: state=4294967295 cpu_id=3
137348          <idle>-0     (-----) [000] ...1 82318.596036: cpu_idle: state=4294967295 cpu_id=0
137349          <idle>-0     (-----) [003] d..2 82318.596038: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137350          <idle>-0     (-----) [000] d..1 82318.596043: cpu_idle: state=0 cpu_id=0
137351 crtc_commit:111-321   (  321) [003] d..2 82318.596120: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137352          <idle>-0     (-----) [003] d..1 82318.596133: cpu_idle: state=0 cpu_id=3
137353          <idle>-0     (-----) [000] d.h5 82318.596302: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137354          <idle>-0     (-----) [000] dnh6 82318.596314: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137355          <idle>-0     (-----) [000] .n.1 82318.596328: cpu_idle: state=4294967295 cpu_id=0
137356          <idle>-0     (-----) [000] d..2 82318.596340: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137357  crtc_event:111-322   (  322) [000] d..2 82318.596366: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137358          <idle>-0     (-----) [000] d..1 82318.596378: cpu_idle: state=0 cpu_id=0
137359          <idle>-0     (-----) [003] d.h2 82318.598058: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
137360          <idle>-0     (-----) [003] dnh3 82318.598076: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
137361          <idle>-0     (-----) [003] .n.1 82318.598086: cpu_idle: state=4294967295 cpu_id=3
137362          <idle>-0     (-----) [003] d..2 82318.598098: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
137363        DispSync-8879  ( 8858) [003] d..1 82318.598116: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
137364        DispSync-8879  ( 8858) [003] d..2 82318.598134: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
137365          <idle>-0     (-----) [001] .n.1 82318.598141: cpu_idle: state=4294967295 cpu_id=1
137366          <idle>-0     (-----) [001] d..2 82318.598152: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
137367        DispSync-8879  ( 8858) [003] d..2 82318.598171: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137368          <idle>-0     (-----) [003] d..1 82318.598185: cpu_idle: state=0 cpu_id=3
137369  appEventThread-8881  ( 8858) [001] d..3 82318.598215: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137370          <idle>-0     (-----) [004] dnh2 82318.598248: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137371          <idle>-0     (-----) [004] .n.1 82318.598253: cpu_idle: state=4294967295 cpu_id=4
137372          <idle>-0     (-----) [004] d..2 82318.598261: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
137373  appEventThread-8881  ( 8858) [001] d..2 82318.598287: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137374          <idle>-0     (-----) [001] d..1 82318.598301: cpu_idle: state=0 cpu_id=1
137375          <idle>-0     (-----) [001] d.s2 82318.598474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137376 s.nexuslauncher-10023 (10023) [004] d.s2 82318.598481: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
137377          <idle>-0     (-----) [001] dns3 82318.598495: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137378          <idle>-0     (-----) [001] dnh2 82318.598528: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
137379          <idle>-0     (-----) [001] .n.1 82318.598535: cpu_idle: state=4294967295 cpu_id=1
137380          <idle>-0     (-----) [001] d..2 82318.598547: 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
137381 s.nexuslauncher-10023 (10023) [004] .... 82318.598547: binder_transaction: transaction=1573027 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
137382 s.nexuslauncher-10023 (10023) [004] .... 82318.598552: binder_transaction_alloc_buf: transaction=1573027 data_size=80 offsets_size=0
137383 s.nexuslauncher-10023 (10023) [004] d..4 82318.598557: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
137384     rcu_preempt-7     (    7) [001] d..2 82318.598571: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137385          <idle>-0     (-----) [000] dnh2 82318.598614: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
137386          <idle>-0     (-----) [000] .n.1 82318.598621: cpu_idle: state=4294967295 cpu_id=0
137387          <idle>-0     (-----) [000] d..2 82318.598635: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
137388   Binder:8858_1-8871  ( 8858) [000] .... 82318.598645: binder_transaction_received: transaction=1573027
137389 s.nexuslauncher-10023 (10023) [004] d..3 82318.598651: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137390 s.nexuslauncher-10023 (10023) [004] d..4 82318.598668: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137391          <idle>-0     (-----) [005] .n.1 82318.598673: cpu_idle: state=4294967295 cpu_id=5
137392          <idle>-0     (-----) [005] d..2 82318.598685: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137393   Binder:8858_1-8871  ( 8858) [000] d..1 82318.598705: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
137394    RenderThread-16607 (10023) [005] d..2 82318.598719: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
137395          <idle>-0     (-----) [005] d..1 82318.598727: cpu_idle: state=0 cpu_id=5
137396   Binder:8858_1-8871  ( 8858) [000] d..2 82318.598737: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
137397          <idle>-0     (-----) [002] .n.1 82318.598743: cpu_idle: state=4294967295 cpu_id=2
137398          <idle>-0     (-----) [002] d..2 82318.598759: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
137399  kworker/u16:15-1311  ( 1311) [001] d..2 82318.598768: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137400          <idle>-0     (-----) [001] d..1 82318.598788: cpu_idle: state=0 cpu_id=1
137401   Binder:8858_1-8871  ( 8858) [000] d..2 82318.598794: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137402          <idle>-0     (-----) [000] d..1 82318.598813: cpu_idle: state=0 cpu_id=0
137403  appEventThread-8881  ( 8858) [002] d..2 82318.598841: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137404          <idle>-0     (-----) [002] d..1 82318.598858: cpu_idle: state=0 cpu_id=2
137405 s.nexuslauncher-10023 (10023) [004] d..3 82318.598893: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137406 s.nexuslauncher-10023 (10023) [004] d..4 82318.598910: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137407          <idle>-0     (-----) [005] .n.1 82318.598915: cpu_idle: state=4294967295 cpu_id=5
137408          <idle>-0     (-----) [005] d..2 82318.598923: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137409 s.nexuslauncher-10023 (10023) [004] d..2 82318.598936: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
137410          <idle>-0     (-----) [004] d..1 82318.598951: cpu_idle: state=0 cpu_id=4
137411    RenderThread-16607 (10023) [005] d..1 82318.599075: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137412    RenderThread-16607 (10023) [005] d..2 82318.599094: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137413          <idle>-0     (-----) [004] .n.1 82318.599100: cpu_idle: state=4294967295 cpu_id=4
137414          <idle>-0     (-----) [004] d..2 82318.599110: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
137415    RenderThread-16607 (10023) [005] .... 82318.599145: binder_transaction: transaction=1573028 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
137416    RenderThread-16607 (10023) [005] .... 82318.599149: binder_transaction_alloc_buf: transaction=1573028 data_size=104 offsets_size=0
137417    RenderThread-16607 (10023) [005] ...2 82318.599153: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
137418    RenderThread-16607 (10023) [005] d..4 82318.599156: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
137419    RenderThread-16607 (10023) [005] d..5 82318.599175: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
137420 s.nexuslauncher-10023 (10023) [004] d..2 82318.599214: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
137421    RenderThread-16607 (10023) [005] d..2 82318.599221: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
137422          <idle>-0     (-----) [004] d..1 82318.599224: cpu_idle: state=0 cpu_id=4
137423   Binder:8858_1-8871  ( 8858) [005] .... 82318.599233: binder_transaction_received: transaction=1573028
137424   Binder:8858_1-8871  ( 8858) [005] .... 82318.599294: binder_transaction: transaction=1573029 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
137425   Binder:8858_1-8871  ( 8858) [005] .... 82318.599298: binder_transaction_alloc_buf: transaction=1573029 data_size=52 offsets_size=8
137426   Binder:8858_1-8871  ( 8858) [005] d..2 82318.599305: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137427   Binder:8858_1-8871  ( 8858) [005] d..3 82318.599315: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137428   Binder:8858_1-8871  ( 8858) [005] .... 82318.599318: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
137429   Binder:8858_1-8871  ( 8858) [005] d..2 82318.599328: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
137430    RenderThread-16607 (10023) [005] .... 82318.599337: binder_transaction_received: transaction=1573029
137431    RenderThread-16607 (10023) [005] d..2 82318.600592: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
137432   Binder:8858_1-8871  ( 8858) [005] d..2 82318.600660: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
137433          <idle>-0     (-----) [005] d..1 82318.600675: cpu_idle: state=0 cpu_id=5
137434          <idle>-0     (-----) [005] d.h2 82318.600689: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137435          <idle>-0     (-----) [005] d.h3 82318.600697: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
137436          <idle>-0     (-----) [005] dnh3 82318.600701: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137437          <idle>-0     (-----) [005] .n.1 82318.600708: cpu_idle: state=4294967295 cpu_id=5
137438          <idle>-0     (-----) [005] d..2 82318.600717: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137439    RenderThread-16607 (10023) [005] .... 82318.600874: binder_transaction: transaction=1573030 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
137440    RenderThread-16607 (10023) [005] .... 82318.600878: binder_transaction_alloc_buf: transaction=1573030 data_size=192 offsets_size=8
137441    RenderThread-16607 (10023) [005] ...2 82318.600886: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
137442    RenderThread-16607 (10023) [005] d..4 82318.600889: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
137443    RenderThread-16607 (10023) [005] d..5 82318.600901: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
137444    RenderThread-16607 (10023) [005] d..2 82318.600913: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
137445   Binder:8858_1-8871  ( 8858) [005] .... 82318.600923: binder_transaction_received: transaction=1573030
137446   Binder:8858_1-8871  ( 8858) [005] .... 82318.601043: binder_transaction: transaction=1573031 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
137447   Binder:8858_1-8871  ( 8858) [005] .... 82318.601047: binder_transaction_alloc_buf: transaction=1573031 data_size=68 offsets_size=0
137448   Binder:8858_1-8871  ( 8858) [005] d..2 82318.601051: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137449   Binder:8858_1-8871  ( 8858) [005] d..3 82318.601062: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137450   Binder:8858_1-8871  ( 8858) [005] .... 82318.601064: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
137451   Binder:8858_1-8871  ( 8858) [005] d..2 82318.601095: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
137452    RenderThread-16607 (10023) [005] .... 82318.601105: binder_transaction_received: transaction=1573031
137453    RenderThread-16607 (10023) [005] d..2 82318.601175: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
137454          <idle>-0     (-----) [005] d..1 82318.601193: cpu_idle: state=0 cpu_id=5
137455          <idle>-0     (-----) [005] ...1 82318.601398: cpu_idle: state=4294967295 cpu_id=5
137456          <idle>-0     (-----) [005] d..1 82318.601401: cpu_idle: state=0 cpu_id=5
137457          <idle>-0     (-----) [003] d.h2 82318.602066: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
137458          <idle>-0     (-----) [003] dnh3 82318.602081: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
137459          <idle>-0     (-----) [003] .n.1 82318.602090: cpu_idle: state=4294967295 cpu_id=3
137460          <idle>-0     (-----) [003] d..2 82318.602103: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
137461        DispSync-8879  ( 8858) [003] d..1 82318.602117: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137462        DispSync-8879  ( 8858) [003] d..2 82318.602135: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137463          <idle>-0     (-----) [000] d.h3 82318.602139: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
137464          <idle>-0     (-----) [002] .n.1 82318.602142: cpu_idle: state=4294967295 cpu_id=2
137465          <idle>-0     (-----) [002] d..2 82318.602157: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
137466          <idle>-0     (-----) [000] dnh4 82318.602158: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
137467          <idle>-0     (-----) [000] .n.1 82318.602175: cpu_idle: state=4294967295 cpu_id=0
137468        DispSync-8879  ( 8858) [003] d..2 82318.602182: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137469          <idle>-0     (-----) [003] d..2 82318.602188: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
137470          <idle>-0     (-----) [000] d..2 82318.602188: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
137471          <idle>-0     (-----) [003] dn.3 82318.602204: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
137472   sfEventThread-8882  ( 8858) [002] d..3 82318.602204: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
137473          <idle>-0     (-----) [003] d..2 82318.602215: 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
137474   sfEventThread-8882  ( 8858) [002] d..4 82318.602228: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
137475          <idle>-0     (-----) [001] .n.1 82318.602235: cpu_idle: state=4294967295 cpu_id=1
137476     ksoftirqd/3-34    (   34) [003] d..2 82318.602243: 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
137477 kgsl_worker_thr-258   (  258) [000] d..2 82318.602245: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
137478          <idle>-0     (-----) [001] d..2 82318.602249: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
137479          <idle>-0     (-----) [003] d..1 82318.602260: cpu_idle: state=0 cpu_id=3
137480   sfEventThread-8882  ( 8858) [002] d..2 82318.602272: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137481          <idle>-0     (-----) [002] d..1 82318.602288: cpu_idle: state=0 cpu_id=2
137482 kgsl_worker_thr-258   (  258) [000] d..3 82318.602303: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
137483          <idle>-0     (-----) [002] .n.1 82318.602309: cpu_idle: state=4294967295 cpu_id=2
137484          <idle>-0     (-----) [002] d..2 82318.602325: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137485 kgsl_worker_thr-258   (  258) [000] d..2 82318.602342: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137486          <idle>-0     (-----) [000] d..1 82318.602360: cpu_idle: state=0 cpu_id=0
137487  kworker/u16:15-1311  ( 1311) [002] d..2 82318.602517: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137488          <idle>-0     (-----) [002] d..1 82318.602533: cpu_idle: state=0 cpu_id=2
137489  surfaceflinger-8858  ( 8858) [001] d..1 82318.602661: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137490  surfaceflinger-8858  ( 8858) [001] d..2 82318.602689: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137491          <idle>-0     (-----) [002] .n.1 82318.602696: cpu_idle: state=4294967295 cpu_id=2
137492          <idle>-0     (-----) [002] d..2 82318.602708: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
137493   sfEventThread-8882  ( 8858) [002] d..2 82318.602754: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137494          <idle>-0     (-----) [002] d..1 82318.602766: cpu_idle: state=0 cpu_id=2
137495  surfaceflinger-8858  ( 8858) [001] ...1 82318.602912: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
137496  surfaceflinger-8858  ( 8858) [001] ...1 82318.602922: tracing_mark_write: E|8858
137497  surfaceflinger-8858  ( 8858) [001] .... 82318.602991: binder_transaction: transaction=1573032 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
137498  surfaceflinger-8858  ( 8858) [001] .... 82318.602997: binder_transaction_alloc_buf: transaction=1573032 data_size=540 offsets_size=96
137499  surfaceflinger-8858  ( 8858) [001] ...2 82318.603026: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
137500  surfaceflinger-8858  ( 8858) [001] d..4 82318.603036: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
137501  surfaceflinger-8858  ( 8858) [001] d..5 82318.603062: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
137502          <idle>-0     (-----) [002] .n.1 82318.603067: cpu_idle: state=4294967295 cpu_id=2
137503          <idle>-0     (-----) [002] d..2 82318.603080: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
137504 [email protected]   (  619) [002] .... 82318.603092: binder_transaction_received: transaction=1573032
137505  surfaceflinger-8858  ( 8858) [001] d..2 82318.603103: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137506          <idle>-0     (-----) [001] d..1 82318.603121: cpu_idle: state=0 cpu_id=1
137507 [email protected]   (  619) [002] ...1 82318.603149: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
137508 [email protected]   (  619) [002] ...1 82318.603278: tracing_mark_write: B|619|HWCSession::PresentDisplay::
137509 [email protected]   (  619) [002] ...1 82318.603475: tracing_mark_write: B|619|HWDeviceDRM::Commit::
137510 [email protected]   (  619) [002] ...1 82318.603491: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
137511 [email protected]   (  619) [002] d..2 82318.604171: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137512 [email protected]   (  619) [002] d..3 82318.604201: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137513          <idle>-0     (-----) [003] .n.1 82318.604207: cpu_idle: state=4294967295 cpu_id=3
137514          <idle>-0     (-----) [003] d..2 82318.604219: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137515 [email protected]   (  619) [002] ...1 82318.604331: tracing_mark_write: E|619
137516 [email protected]   (  619) [002] ...1 82318.604339: tracing_mark_write: E|619
137517 [email protected]   (  619) [002] ...1 82318.604406: tracing_mark_write: E|619
137518 [email protected]   (  619) [002] ...1 82318.604458: tracing_mark_write: E|619
137519 [email protected]   (  619) [002] .... 82318.604476: binder_transaction: transaction=1573033 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
137520 [email protected]   (  619) [002] .... 82318.604482: binder_transaction_alloc_buf: transaction=1573033 data_size=576 offsets_size=112
137521 [email protected]   (  619) [002] d..2 82318.604508: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
137522 [email protected]   (  619) [002] d..3 82318.604532: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
137523 [email protected]   (  619) [002] .... 82318.604539: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
137524          <idle>-0     (-----) [001] .n.1 82318.604540: cpu_idle: state=4294967295 cpu_id=1
137525          <idle>-0     (-----) [001] d..2 82318.604550: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
137526  surfaceflinger-8858  ( 8858) [001] .... 82318.604563: binder_transaction_received: transaction=1573033
137527 [email protected]   (  619) [002] d..2 82318.604649: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137528          <idle>-0     (-----) [002] d..1 82318.604674: cpu_idle: state=0 cpu_id=2
137529 crtc_commit:111-321   (  321) [003] d..2 82318.604990: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
137530          <idle>-0     (-----) [003] d..1 82318.605009: cpu_idle: state=0 cpu_id=3
137531  surfaceflinger-8858  ( 8858) [001] d..2 82318.605061: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137532          <idle>-0     (-----) [001] d..1 82318.605079: cpu_idle: state=0 cpu_id=1
137533          <idle>-0     (-----) [001] d.s2 82318.605150: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137534          <idle>-0     (-----) [001] dns3 82318.605174: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137535          <idle>-0     (-----) [001] dns3 82318.605183: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
137536          <idle>-0     (-----) [001] dns4 82318.605224: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
137537          <idle>-0     (-----) [001] .n.1 82318.605237: cpu_idle: state=4294967295 cpu_id=1
137538          <idle>-0     (-----) [001] d..2 82318.605250: 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
137539     rcu_preempt-7     (    7) [001] d..2 82318.605264: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
137540     rcu_preempt-7     (    7) [001] d..3 82318.605286: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
137541     rcu_preempt-7     (    7) [001] d..2 82318.605301: 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
137542         rcuop/0-10    (   10) [001] d..2 82318.605307: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
137543         rcuop/0-10    (   10) [001] d..3 82318.605326: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
137544         rcuop/0-10    (   10) [001] d..2 82318.605331: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137545         rcuop/0-10    (   10) [001] d..3 82318.605344: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137546         rcuop/0-10    (   10) [001] d..2 82318.605354: 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
137547         rcuop/1-21    (   21) [001] d..2 82318.605371: 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
137548     rcu_preempt-7     (    7) [001] d..2 82318.605387: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137549  kworker/u16:15-1311  ( 1311) [001] d..2 82318.605482: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137550          <idle>-0     (-----) [001] d..1 82318.605502: cpu_idle: state=0 cpu_id=1
137551          <idle>-0     (-----) [003] ...1 82318.607498: cpu_idle: state=4294967295 cpu_id=3
137552          <idle>-0     (-----) [003] d..1 82318.607504: cpu_idle: state=0 cpu_id=3
137553          <idle>-0     (-----) [000] d.h5 82318.610144: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137554          <idle>-0     (-----) [000] dnh6 82318.610159: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137555          <idle>-0     (-----) [000] dnh5 82318.610164: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137556          <idle>-0     (-----) [000] dnh6 82318.610179: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137557          <idle>-0     (-----) [003] .n.1 82318.610185: cpu_idle: state=4294967295 cpu_id=3
137558          <idle>-0     (-----) [000] .n.1 82318.610195: cpu_idle: state=4294967295 cpu_id=0
137559          <idle>-0     (-----) [003] d..2 82318.610199: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137560          <idle>-0     (-----) [000] d..2 82318.610210: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137561  crtc_event:111-322   (  322) [000] d..2 82318.610249: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137562          <idle>-0     (-----) [000] d..2 82318.610255: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
137563          <idle>-0     (-----) [000] dn.3 82318.610272: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
137564          <idle>-0     (-----) [000] d..2 82318.610282: 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
137565     ksoftirqd/0-3     (    3) [000] d.s2 82318.610296: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
137566     ksoftirqd/0-3     (    3) [000] d.s3 82318.610342: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
137567 crtc_commit:111-321   (  321) [003] d..2 82318.610353: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
137568     ksoftirqd/0-3     (    3) [000] d..2 82318.610361: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137569          <idle>-0     (-----) [003] d..1 82318.610363: cpu_idle: state=0 cpu_id=3
137570  kworker/u16:15-1311  ( 1311) [000] d..2 82318.610471: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137571          <idle>-0     (-----) [000] d..1 82318.610491: cpu_idle: state=0 cpu_id=0
137572          <idle>-0     (-----) [001] d.s2 82318.611805: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137573          <idle>-0     (-----) [001] dns3 82318.611869: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137574          <idle>-0     (-----) [001] .n.1 82318.611882: cpu_idle: state=4294967295 cpu_id=1
137575          <idle>-0     (-----) [003] d.H3 82318.611898: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
137576          <idle>-0     (-----) [001] d..2 82318.611899: 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
137577          <idle>-0     (-----) [003] d.H4 82318.611920: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
137578          <idle>-0     (-----) [002] .n.1 82318.611929: cpu_idle: state=4294967295 cpu_id=2
137579          <idle>-0     (-----) [003] d.s3 82318.611932: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137580     rcu_preempt-7     (    7) [001] d..2 82318.611943: 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
137581          <idle>-0     (-----) [002] d..2 82318.611945: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
137582          <idle>-0     (-----) [003] d.s4 82318.611948: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137583          <idle>-0     (-----) [000] .n.1 82318.611956: cpu_idle: state=4294967295 cpu_id=0
137584          <idle>-0     (-----) [001] d..1 82318.611958: cpu_idle: state=0 cpu_id=1
137585          <idle>-0     (-----) [000] d..2 82318.611970: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137586          <idle>-0     (-----) [003] ...1 82318.611979: cpu_idle: state=4294967295 cpu_id=3
137587         sugov:0-576   (  576) [002] .... 82318.611984: clk_set_rate: pwrcl_clk 652800000
137588          <idle>-0     (-----) [003] d..1 82318.611988: cpu_idle: state=0 cpu_id=3
137589         sugov:0-576   (  576) [002] .... 82318.612002: clk_set_rate: cpu3_pwrcl_clk 748800000
137590  crtc_event:111-322   (  322) [000] d..2 82318.612007: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137591         sugov:0-576   (  576) [002] .... 82318.612013: clk_set_rate: cpu2_pwrcl_clk 748800000
137592          <idle>-0     (-----) [000] d..1 82318.612019: cpu_idle: state=0 cpu_id=0
137593         sugov:0-576   (  576) [002] .... 82318.612021: clk_set_rate: cpu1_pwrcl_clk 748800000
137594         sugov:0-576   (  576) [002] .... 82318.612029: clk_set_rate: cpu0_pwrcl_clk 652800000
137595         sugov:0-576   (  576) [002] .... 82318.612147: cpu_frequency: state=652800 cpu_id=0
137596         sugov:0-576   (  576) [002] .... 82318.612174: cpu_frequency: state=652800 cpu_id=1
137597         sugov:0-576   (  576) [002] .... 82318.612180: cpu_frequency: state=652800 cpu_id=2
137598         sugov:0-576   (  576) [002] .... 82318.612185: cpu_frequency: state=652800 cpu_id=3
137599         sugov:0-576   (  576) [002] d..2 82318.612225: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137600          <idle>-0     (-----) [002] d..1 82318.612242: cpu_idle: state=0 cpu_id=2
137601          <idle>-0     (-----) [000] d.h5 82318.612479: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137602          <idle>-0     (-----) [000] d.h6 82318.612506: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137603          <idle>-0     (-----) [003] .n.1 82318.612512: cpu_idle: state=4294967295 cpu_id=3
137604          <idle>-0     (-----) [000] ...1 82318.612526: cpu_idle: state=4294967295 cpu_id=0
137605          <idle>-0     (-----) [003] d..2 82318.612527: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137606          <idle>-0     (-----) [000] d..1 82318.612534: cpu_idle: state=0 cpu_id=0
137607 crtc_commit:111-321   (  321) [003] d..2 82318.612616: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137608          <idle>-0     (-----) [003] d..1 82318.612631: cpu_idle: state=0 cpu_id=3
137609          <idle>-0     (-----) [000] d.h5 82318.612774: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137610          <idle>-0     (-----) [000] dnh6 82318.612787: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137611          <idle>-0     (-----) [000] .n.1 82318.612804: cpu_idle: state=4294967295 cpu_id=0
137612          <idle>-0     (-----) [000] d..2 82318.612817: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137613  crtc_event:111-322   (  322) [000] d..2 82318.612847: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137614          <idle>-0     (-----) [000] d..1 82318.612861: cpu_idle: state=0 cpu_id=0
137615          <idle>-0     (-----) [003] d.h2 82318.614526: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
137616          <idle>-0     (-----) [003] dnh3 82318.614545: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
137617          <idle>-0     (-----) [003] .n.1 82318.614556: cpu_idle: state=4294967295 cpu_id=3
137618          <idle>-0     (-----) [003] d..2 82318.614570: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
137619        DispSync-8879  ( 8858) [003] d..1 82318.614589: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
137620        DispSync-8879  ( 8858) [003] d..2 82318.614607: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
137621          <idle>-0     (-----) [002] .n.1 82318.614614: cpu_idle: state=4294967295 cpu_id=2
137622          <idle>-0     (-----) [002] d..2 82318.614627: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
137623        DispSync-8879  ( 8858) [003] d..2 82318.614646: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137624          <idle>-0     (-----) [003] d..1 82318.614661: cpu_idle: state=0 cpu_id=3
137625  appEventThread-8881  ( 8858) [002] d..3 82318.614690: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137626          <idle>-0     (-----) [004] dnh2 82318.614726: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137627          <idle>-0     (-----) [004] .n.1 82318.614731: cpu_idle: state=4294967295 cpu_id=4
137628          <idle>-0     (-----) [004] d..2 82318.614738: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
137629  appEventThread-8881  ( 8858) [002] d..2 82318.614768: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137630          <idle>-0     (-----) [002] d..1 82318.614787: cpu_idle: state=0 cpu_id=2
137631 s.nexuslauncher-10023 (10023) [004] .... 82318.614940: binder_transaction: transaction=1573034 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
137632 s.nexuslauncher-10023 (10023) [004] .... 82318.614946: binder_transaction_alloc_buf: transaction=1573034 data_size=80 offsets_size=0
137633 s.nexuslauncher-10023 (10023) [004] d..4 82318.614951: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
137634 s.nexuslauncher-10023 (10023) [004] d.h5 82318.615012: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
137635          <idle>-0     (-----) [000] dnh2 82318.615018: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
137636          <idle>-0     (-----) [000] .n.1 82318.615026: cpu_idle: state=4294967295 cpu_id=0
137637          <idle>-0     (-----) [000] d..2 82318.615040: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
137638          <idle>-0     (-----) [002] dnh2 82318.615040: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
137639          <idle>-0     (-----) [002] .n.1 82318.615049: cpu_idle: state=4294967295 cpu_id=2
137640   Binder:8858_1-8871  ( 8858) [000] .... 82318.615051: binder_transaction_received: transaction=1573034
137641 s.nexuslauncher-10023 (10023) [004] d..3 82318.615053: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137642          <idle>-0     (-----) [002] d..2 82318.615061: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
137643 s.nexuslauncher-10023 (10023) [004] d..4 82318.615070: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137644          <idle>-0     (-----) [005] .n.1 82318.615075: cpu_idle: state=4294967295 cpu_id=5
137645          <idle>-0     (-----) [005] d..2 82318.615087: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137646         sugov:0-576   (  576) [002] .... 82318.615089: clk_set_rate: pwrcl_clk 748800000
137647   Binder:8858_1-8871  ( 8858) [000] d..1 82318.615094: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
137648         sugov:0-576   (  576) [002] .... 82318.615101: clk_set_rate: cpu3_pwrcl_clk 652800000
137649   Binder:8858_1-8871  ( 8858) [000] d..2 82318.615131: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
137650          <idle>-0     (-----) [001] .n.1 82318.615138: cpu_idle: state=4294967295 cpu_id=1
137651          <idle>-0     (-----) [001] d..2 82318.615153: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
137652         sugov:0-576   (  576) [002] .... 82318.615164: clk_set_rate: cpu2_pwrcl_clk 652800000
137653    RenderThread-16607 (10023) [005] d..2 82318.615173: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
137654         sugov:0-576   (  576) [002] .... 82318.615173: clk_set_rate: cpu1_pwrcl_clk 652800000
137655         sugov:0-576   (  576) [002] .... 82318.615182: clk_set_rate: cpu0_pwrcl_clk 748800000
137656          <idle>-0     (-----) [005] d..1 82318.615183: cpu_idle: state=0 cpu_id=5
137657   Binder:8858_1-8871  ( 8858) [000] d..1 82318.615192: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
137658         sugov:0-576   (  576) [002] .... 82318.615192: cpu_frequency: state=748800 cpu_id=0
137659  appEventThread-8881  ( 8858) [001] d..2 82318.615205: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137660         sugov:0-576   (  576) [002] .... 82318.615213: cpu_frequency: state=748800 cpu_id=1
137661          <idle>-0     (-----) [001] d..1 82318.615216: cpu_idle: state=0 cpu_id=1
137662         sugov:0-576   (  576) [002] .... 82318.615219: cpu_frequency: state=748800 cpu_id=2
137663         sugov:0-576   (  576) [002] .... 82318.615223: cpu_frequency: state=748800 cpu_id=3
137664   Binder:8858_1-8871  ( 8858) [000] d..2 82318.615225: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
137665          <idle>-0     (-----) [001] .n.1 82318.615232: cpu_idle: state=4294967295 cpu_id=1
137666          <idle>-0     (-----) [001] d..2 82318.615241: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
137667         sugov:0-576   (  576) [002] d..2 82318.615256: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137668          <idle>-0     (-----) [002] d..1 82318.615274: cpu_idle: state=0 cpu_id=2
137669   Binder:8858_1-8871  ( 8858) [000] d..2 82318.615281: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137670          <idle>-0     (-----) [000] d..1 82318.615302: cpu_idle: state=0 cpu_id=0
137671  appEventThread-8881  ( 8858) [001] d..2 82318.615307: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137672          <idle>-0     (-----) [001] d..1 82318.615318: cpu_idle: state=0 cpu_id=1
137673 s.nexuslauncher-10023 (10023) [004] d..3 82318.615331: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137674 s.nexuslauncher-10023 (10023) [004] d..4 82318.615350: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137675          <idle>-0     (-----) [005] .n.1 82318.615355: cpu_idle: state=4294967295 cpu_id=5
137676          <idle>-0     (-----) [005] d..2 82318.615365: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137677 s.nexuslauncher-10023 (10023) [004] d..2 82318.615376: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
137678          <idle>-0     (-----) [004] d..1 82318.615392: cpu_idle: state=0 cpu_id=4
137679    RenderThread-16607 (10023) [005] d..1 82318.615519: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137680    RenderThread-16607 (10023) [005] d..2 82318.615537: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137681          <idle>-0     (-----) [004] .n.1 82318.615544: cpu_idle: state=4294967295 cpu_id=4
137682          <idle>-0     (-----) [004] d..2 82318.615553: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
137683    RenderThread-16607 (10023) [005] .... 82318.615588: binder_transaction: transaction=1573035 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
137684    RenderThread-16607 (10023) [005] .... 82318.615592: binder_transaction_alloc_buf: transaction=1573035 data_size=104 offsets_size=0
137685    RenderThread-16607 (10023) [005] ...2 82318.615596: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
137686    RenderThread-16607 (10023) [005] d..4 82318.615599: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
137687    RenderThread-16607 (10023) [005] d..5 82318.615618: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
137688 s.nexuslauncher-10023 (10023) [004] d..2 82318.615660: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
137689    RenderThread-16607 (10023) [005] d..2 82318.615666: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
137690          <idle>-0     (-----) [004] d..1 82318.615670: cpu_idle: state=0 cpu_id=4
137691   Binder:8858_1-8871  ( 8858) [005] .... 82318.615678: binder_transaction_received: transaction=1573035
137692   Binder:8858_1-8871  ( 8858) [005] .... 82318.615735: binder_transaction: transaction=1573036 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
137693   Binder:8858_1-8871  ( 8858) [005] .... 82318.615739: binder_transaction_alloc_buf: transaction=1573036 data_size=52 offsets_size=8
137694   Binder:8858_1-8871  ( 8858) [005] d..2 82318.615746: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137695   Binder:8858_1-8871  ( 8858) [005] d..3 82318.615756: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137696   Binder:8858_1-8871  ( 8858) [005] .... 82318.615759: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
137697   Binder:8858_1-8871  ( 8858) [005] d..2 82318.615768: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
137698    RenderThread-16607 (10023) [005] .... 82318.615777: binder_transaction_received: transaction=1573036
137699          <idle>-0     (-----) [001] d.s3 82318.615825: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137700          <idle>-0     (-----) [001] dns4 82318.615843: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
137701          <idle>-0     (-----) [001] .n.1 82318.615861: cpu_idle: state=4294967295 cpu_id=1
137702          <idle>-0     (-----) [001] d..2 82318.615872: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
137703     kworker/1:1-25249 (25249) [001] d..2 82318.615918: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
137704          <idle>-0     (-----) [002] ...1 82318.615922: cpu_idle: state=4294967295 cpu_id=2
137705          <idle>-0     (-----) [002] d..1 82318.615931: cpu_idle: state=0 cpu_id=2
137706     kworker/1:1-25249 (25249) [001] d..3 82318.615936: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
137707     kworker/1:1-25249 (25249) [001] d..2 82318.615981: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
137708 [email protected] (  798) [001] d..2 82318.616228: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137709          <idle>-0     (-----) [001] d..1 82318.616246: cpu_idle: state=0 cpu_id=1
137710    RenderThread-16607 (10023) [005] d..2 82318.617022: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
137711   Binder:8858_1-8871  ( 8858) [005] d..2 82318.617090: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
137712          <idle>-0     (-----) [005] d..1 82318.617104: cpu_idle: state=0 cpu_id=5
137713          <idle>-0     (-----) [005] d.h2 82318.617118: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137714          <idle>-0     (-----) [005] d.h3 82318.617126: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
137715          <idle>-0     (-----) [005] dnh3 82318.617129: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137716          <idle>-0     (-----) [005] .n.1 82318.617136: cpu_idle: state=4294967295 cpu_id=5
137717          <idle>-0     (-----) [005] d..2 82318.617145: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137718    RenderThread-16607 (10023) [005] .... 82318.617303: binder_transaction: transaction=1573037 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
137719    RenderThread-16607 (10023) [005] .... 82318.617307: binder_transaction_alloc_buf: transaction=1573037 data_size=192 offsets_size=8
137720    RenderThread-16607 (10023) [005] ...2 82318.617314: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
137721    RenderThread-16607 (10023) [005] d..4 82318.617318: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
137722    RenderThread-16607 (10023) [005] d..5 82318.617330: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
137723    RenderThread-16607 (10023) [005] d..2 82318.617342: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
137724   Binder:8858_1-8871  ( 8858) [005] .... 82318.617352: binder_transaction_received: transaction=1573037
137725   Binder:8858_1-8871  ( 8858) [005] .... 82318.617469: binder_transaction: transaction=1573038 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
137726   Binder:8858_1-8871  ( 8858) [005] .... 82318.617473: binder_transaction_alloc_buf: transaction=1573038 data_size=68 offsets_size=0
137727   Binder:8858_1-8871  ( 8858) [005] d..2 82318.617476: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137728   Binder:8858_1-8871  ( 8858) [005] d..3 82318.617486: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137729   Binder:8858_1-8871  ( 8858) [005] .... 82318.617489: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
137730   Binder:8858_1-8871  ( 8858) [005] d..2 82318.617520: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
137731    RenderThread-16607 (10023) [005] .... 82318.617529: binder_transaction_received: transaction=1573038
137732    RenderThread-16607 (10023) [005] d..2 82318.617598: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
137733          <idle>-0     (-----) [005] d..1 82318.617615: cpu_idle: state=0 cpu_id=5
137734          <idle>-0     (-----) [005] ...1 82318.617817: cpu_idle: state=4294967295 cpu_id=5
137735          <idle>-0     (-----) [005] d..1 82318.617821: cpu_idle: state=0 cpu_id=5
137736          <idle>-0     (-----) [001] d.s2 82318.618482: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137737          <idle>-0     (-----) [001] dns3 82318.618506: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137738          <idle>-0     (-----) [001] dns3 82318.618513: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
137739          <idle>-0     (-----) [003] d.h2 82318.618527: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
137740          <idle>-0     (-----) [003] dnh3 82318.618541: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
137741          <idle>-0     (-----) [003] .n.1 82318.618551: cpu_idle: state=4294967295 cpu_id=3
137742          <idle>-0     (-----) [001] dns4 82318.618558: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
137743          <idle>-0     (-----) [003] d..2 82318.618564: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
137744          <idle>-0     (-----) [000] d.h3 82318.618568: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
137745        DispSync-8879  ( 8858) [003] d..1 82318.618578: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137746          <idle>-0     (-----) [001] .n.1 82318.618586: cpu_idle: state=4294967295 cpu_id=1
137747          <idle>-0     (-----) [000] dnh4 82318.618587: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
137748        DispSync-8879  ( 8858) [003] d..2 82318.618597: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137749          <idle>-0     (-----) [001] d..2 82318.618599: 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
137750          <idle>-0     (-----) [000] .n.1 82318.618601: cpu_idle: state=4294967295 cpu_id=0
137751          <idle>-0     (-----) [002] .n.1 82318.618603: cpu_idle: state=4294967295 cpu_id=2
137752     rcu_preempt-7     (    7) [001] d..2 82318.618611: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
137753          <idle>-0     (-----) [000] d..2 82318.618616: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
137754          <idle>-0     (-----) [002] d..2 82318.618620: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
137755        DispSync-8879  ( 8858) [003] d..2 82318.618651: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137756     rcu_preempt-7     (    7) [001] d..3 82318.618665: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
137757   sfEventThread-8882  ( 8858) [002] d..3 82318.618668: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
137758          <idle>-0     (-----) [003] d..2 82318.618679: 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
137759         rcuop/0-10    (   10) [003] d..2 82318.618686: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
137760     rcu_preempt-7     (    7) [001] d..2 82318.618689: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137761  kworker/u16:15-1311  ( 1311) [001] d..2 82318.618695: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
137762 kgsl_worker_thr-258   (  258) [000] d..2 82318.618712: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137763   sfEventThread-8882  ( 8858) [002] d..4 82318.618714: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
137764  kworker/u16:15-1311  ( 1311) [001] d..3 82318.618726: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
137765          <idle>-0     (-----) [000] d..2 82318.618741: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
137766   sfEventThread-8882  ( 8858) [002] d..2 82318.618759: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137767         rcuop/0-10    (   10) [003] dn.3 82318.618768: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
137768          <idle>-0     (-----) [002] d..1 82318.618777: cpu_idle: state=0 cpu_id=2
137769         rcuop/0-10    (   10) [003] d..2 82318.618785: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
137770  kworker/u16:13-1147  ( 1147) [000] d..2 82318.618788: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/1 next_pid=21 next_prio=120
137771         rcuop/1-21    (   21) [000] d..2 82318.618815: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
137772  kworker/u16:13-1147  ( 1147) [000] d..2 82318.619012: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137773          <idle>-0     (-----) [000] d..1 82318.619030: cpu_idle: state=0 cpu_id=0
137774  kworker/u16:15-1311  ( 1311) [001] d..2 82318.619114: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137775          <idle>-0     (-----) [001] d..1 82318.619135: cpu_idle: state=0 cpu_id=1
137776  surfaceflinger-8858  ( 8858) [003] d..2 82318.619208: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
137777  surfaceflinger-8858  ( 8858) [003] d..3 82318.619271: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
137778          <idle>-0     (-----) [000] .n.1 82318.619277: cpu_idle: state=4294967295 cpu_id=0
137779          <idle>-0     (-----) [000] d..2 82318.619292: 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
137780         rcuop/2-29    (   29) [000] d..2 82318.619301: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137781  surfaceflinger-8858  ( 8858) [003] d..1 82318.619307: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137782         rcuop/2-29    (   29) [000] d..3 82318.619323: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137783  surfaceflinger-8858  ( 8858) [003] d..2 82318.619328: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
137784          <idle>-0     (-----) [001] .n.1 82318.619330: cpu_idle: state=4294967295 cpu_id=1
137785          <idle>-0     (-----) [002] .n.1 82318.619335: cpu_idle: state=4294967295 cpu_id=2
137786          <idle>-0     (-----) [001] d..2 82318.619346: 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
137787         rcuop/2-29    (   29) [000] d..2 82318.619348: 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
137788          <idle>-0     (-----) [002] d..2 82318.619349: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
137789          <idle>-0     (-----) [000] d..1 82318.619361: cpu_idle: state=0 cpu_id=0
137790     rcu_preempt-7     (    7) [001] d..2 82318.619375: 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
137791          <idle>-0     (-----) [001] d..1 82318.619387: cpu_idle: state=0 cpu_id=1
137792   sfEventThread-8882  ( 8858) [002] d..2 82318.619413: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
137793         rcuop/0-10    (   10) [002] d..2 82318.619437: 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
137794          <idle>-0     (-----) [002] d..1 82318.619452: cpu_idle: state=0 cpu_id=2
137795  surfaceflinger-8858  ( 8858) [003] ...1 82318.619555: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
137796  surfaceflinger-8858  ( 8858) [003] ...1 82318.619565: tracing_mark_write: E|8858
137797  surfaceflinger-8858  ( 8858) [003] .... 82318.619635: binder_transaction: transaction=1573039 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
137798  surfaceflinger-8858  ( 8858) [003] .... 82318.619641: binder_transaction_alloc_buf: transaction=1573039 data_size=540 offsets_size=96
137799  surfaceflinger-8858  ( 8858) [003] ...2 82318.619670: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
137800  surfaceflinger-8858  ( 8858) [003] d..4 82318.619679: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
137801  surfaceflinger-8858  ( 8858) [003] d..5 82318.619705: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
137802          <idle>-0     (-----) [002] .n.1 82318.619711: cpu_idle: state=4294967295 cpu_id=2
137803          <idle>-0     (-----) [002] d..2 82318.619724: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
137804 [email protected]   (  619) [002] .... 82318.619738: binder_transaction_received: transaction=1573039
137805  surfaceflinger-8858  ( 8858) [003] d..2 82318.619749: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137806          <idle>-0     (-----) [003] d..1 82318.619772: cpu_idle: state=0 cpu_id=3
137807 [email protected]   (  619) [002] ...1 82318.619796: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
137808 [email protected]   (  619) [002] ...1 82318.619928: tracing_mark_write: B|619|HWCSession::PresentDisplay::
137809 [email protected]   (  619) [002] ...1 82318.620126: tracing_mark_write: B|619|HWDeviceDRM::Commit::
137810 [email protected]   (  619) [002] ...1 82318.620142: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
137811 [email protected]   (  619) [002] d..2 82318.620827: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137812 [email protected]   (  619) [002] d..3 82318.620858: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137813          <idle>-0     (-----) [003] .n.1 82318.620865: cpu_idle: state=4294967295 cpu_id=3
137814          <idle>-0     (-----) [003] d..2 82318.620879: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137815 [email protected]   (  619) [002] ...1 82318.620990: tracing_mark_write: E|619
137816 [email protected]   (  619) [002] ...1 82318.620998: tracing_mark_write: E|619
137817 [email protected]   (  619) [002] ...1 82318.621065: tracing_mark_write: E|619
137818 [email protected]   (  619) [002] ...1 82318.621118: tracing_mark_write: E|619
137819 [email protected]   (  619) [002] .... 82318.621137: binder_transaction: transaction=1573040 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
137820 [email protected]   (  619) [002] .... 82318.621143: binder_transaction_alloc_buf: transaction=1573040 data_size=576 offsets_size=112
137821 [email protected]   (  619) [002] d..2 82318.621168: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
137822 [email protected]   (  619) [002] d..3 82318.621202: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
137823          <idle>-0     (-----) [000] .n.1 82318.621207: cpu_idle: state=4294967295 cpu_id=0
137824 [email protected]   (  619) [002] .... 82318.621209: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
137825          <idle>-0     (-----) [000] d..2 82318.621219: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
137826  surfaceflinger-8858  ( 8858) [000] .... 82318.621233: binder_transaction_received: transaction=1573040
137827 [email protected]   (  619) [002] d..2 82318.621318: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
137828          <idle>-0     (-----) [002] d..1 82318.621344: cpu_idle: state=0 cpu_id=2
137829  surfaceflinger-8858  ( 8858) [000] d..2 82318.621451: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
137830  surfaceflinger-8858  ( 8858) [000] d..3 82318.621504: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
137831 crtc_commit:111-321   (  321) [003] d..2 82318.621644: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
137832         rcuop/0-10    (   10) [003] d..2 82318.621676: 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
137833          <idle>-0     (-----) [003] d..1 82318.621696: cpu_idle: state=0 cpu_id=3
137834  surfaceflinger-8858  ( 8858) [000] d..2 82318.621897: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137835          <idle>-0     (-----) [000] d..1 82318.621920: cpu_idle: state=0 cpu_id=0
137836          <idle>-0     (-----) [002] ...1 82318.622753: cpu_idle: state=4294967295 cpu_id=2
137837          <idle>-0     (-----) [002] d..1 82318.622759: cpu_idle: state=0 cpu_id=2
137838          <idle>-0     (-----) [003] ...1 82318.623940: cpu_idle: state=4294967295 cpu_id=3
137839          <idle>-0     (-----) [003] d..1 82318.623946: cpu_idle: state=0 cpu_id=3
137840          <idle>-0     (-----) [001] d.s2 82318.625144: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137841          <idle>-0     (-----) [001] dns3 82318.625165: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137842          <idle>-0     (-----) [001] .n.1 82318.625178: cpu_idle: state=4294967295 cpu_id=1
137843          <idle>-0     (-----) [001] d..2 82318.625193: 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
137844     rcu_preempt-7     (    7) [001] d..2 82318.625208: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
137845     rcu_preempt-7     (    7) [001] d..3 82318.625249: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
137846     rcu_preempt-7     (    7) [001] d..2 82318.625265: 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
137847         rcuop/2-29    (   29) [001] d..2 82318.625270: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
137848         rcuop/2-29    (   29) [001] d..3 82318.625290: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
137849         rcuop/2-29    (   29) [001] d..2 82318.625301: 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
137850         rcuop/3-37    (   37) [001] d..2 82318.625337: 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
137851          <idle>-0     (-----) [001] d..1 82318.625354: cpu_idle: state=0 cpu_id=1
137852          <idle>-0     (-----) [000] d.h5 82318.626614: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137853          <idle>-0     (-----) [000] dnh6 82318.626632: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137854          <idle>-0     (-----) [000] dnh5 82318.626637: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137855          <idle>-0     (-----) [000] dnh6 82318.626654: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137856          <idle>-0     (-----) [003] .n.1 82318.626660: cpu_idle: state=4294967295 cpu_id=3
137857          <idle>-0     (-----) [000] .n.1 82318.626671: cpu_idle: state=4294967295 cpu_id=0
137858          <idle>-0     (-----) [003] d..2 82318.626673: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137859          <idle>-0     (-----) [000] d..2 82318.626684: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137860  crtc_event:111-322   (  322) [000] d..2 82318.626718: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137861          <idle>-0     (-----) [000] d..1 82318.626731: cpu_idle: state=0 cpu_id=0
137862 crtc_commit:111-321   (  321) [003] d..2 82318.626832: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
137863          <idle>-0     (-----) [003] d..1 82318.626843: cpu_idle: state=0 cpu_id=3
137864          <idle>-0     (-----) [000] d.h2 82318.627244: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=000
137865          <idle>-0     (-----) [000] dnh3 82318.627275: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=000
137866          <idle>-0     (-----) [000] .n.1 82318.627288: cpu_idle: state=4294967295 cpu_id=0
137867          <idle>-0     (-----) [000] d..2 82318.627306: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
137868          <idle>-0     (-----) [003] d.s3 82318.628472: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
137869 LazyTaskWriterT-9080  ( 8943) [000] d.s2 82318.628504: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
137870          <idle>-0     (-----) [003] dns4 82318.628511: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
137871          <idle>-0     (-----) [003] .n.1 82318.628536: cpu_idle: state=4294967295 cpu_id=3
137872          <idle>-0     (-----) [003] d..2 82318.628545: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137873 LazyTaskWriterT-9080  ( 8943) [000] d.s3 82318.628571: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
137874 LazyTaskWriterT-9080  ( 8943) [000] d.s2 82318.628583: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
137875  crtc_event:111-322   (  322) [003] d..2 82318.628591: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137876 LazyTaskWriterT-9080  ( 8943) [000] dns3 82318.628604: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
137877 LazyTaskWriterT-9080  ( 8943) [000] d..2 82318.628627: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
137878     kworker/0:1-25262 (25262) [000] d..2 82318.628690: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
137879  kworker/u16:15-1311  ( 1311) [003] d..2 82318.628766: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137880          <idle>-0     (-----) [003] d..1 82318.628781: cpu_idle: state=0 cpu_id=3
137881 LazyTaskWriterT-9080  ( 8943) [000] d.h4 82318.628945: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137882 LazyTaskWriterT-9080  ( 8943) [000] d.h5 82318.628973: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
137883          <idle>-0     (-----) [003] .n.1 82318.628979: cpu_idle: state=4294967295 cpu_id=3
137884          <idle>-0     (-----) [003] d..2 82318.628992: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
137885 crtc_commit:111-321   (  321) [003] d..2 82318.629071: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137886          <idle>-0     (-----) [003] d..1 82318.629084: cpu_idle: state=0 cpu_id=3
137887 LazyTaskWriterT-9080  ( 8943) [000] d.h4 82318.629243: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
137888 LazyTaskWriterT-9080  ( 8943) [000] d.h5 82318.629268: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
137889          <idle>-0     (-----) [003] .n.1 82318.629274: cpu_idle: state=4294967295 cpu_id=3
137890          <idle>-0     (-----) [003] d..2 82318.629286: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
137891  crtc_event:111-322   (  322) [003] d..2 82318.629315: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137892          <idle>-0     (-----) [003] d..1 82318.629325: cpu_idle: state=0 cpu_id=3
137893 LazyTaskWriterT-9080  ( 8943) [000] d..3 82318.629753: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
137894 LazyTaskWriterT-9080  ( 8943) [000] d..4 82318.629782: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
137895          <idle>-0     (-----) [003] .n.1 82318.629787: cpu_idle: state=4294967295 cpu_id=3
137896 LazyTaskWriterT-9080  ( 8943) [000] d..3 82318.629796: sched_waking: comm=kworker/0:1H pid=578 prio=100 target_cpu=000
137897          <idle>-0     (-----) [003] d..2 82318.629800: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137898 LazyTaskWriterT-9080  ( 8943) [000] dn.4 82318.629816: sched_wakeup: comm=kworker/0:1H pid=578 prio=100 target_cpu=000
137899 LazyTaskWriterT-9080  ( 8943) [000] d..2 82318.629829: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=R+ ==> next_comm=kworker/0:1H next_pid=578 next_prio=100
137900    kworker/0:1H-578   (  578) [000] d..2 82318.629859: sched_switch: prev_comm=kworker/0:1H prev_pid=578 prev_prio=100 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
137901 LazyTaskWriterT-9080  ( 8943) [000] d..2 82318.629899: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
137902          <idle>-0     (-----) [000] d..1 82318.629923: cpu_idle: state=0 cpu_id=0
137903  kworker/u16:15-1311  ( 1311) [003] d..2 82318.630130: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
137904          <idle>-0     (-----) [003] d..1 82318.630145: cpu_idle: state=0 cpu_id=3
137905          <idle>-0     (-----) [001] d.s3 82318.630211: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
137906          <idle>-0     (-----) [001] d.s4 82318.630225: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
137907          <idle>-0     (-----) [001] d.s4 82318.630236: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
137908          <idle>-0     (-----) [003] .n.1 82318.630243: cpu_idle: state=4294967295 cpu_id=3
137909          <idle>-0     (-----) [001] ...1 82318.630247: cpu_idle: state=4294967295 cpu_id=1
137910          <idle>-0     (-----) [001] d..1 82318.630254: cpu_idle: state=0 cpu_id=1
137911          <idle>-0     (-----) [003] d..2 82318.630257: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137912  kworker/u16:15-1311  ( 1311) [003] d..2 82318.630396: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
137913          <idle>-0     (-----) [003] d..1 82318.630408: cpu_idle: state=0 cpu_id=3
137914          <idle>-0     (-----) [001] d.s3 82318.630411: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
137915          <idle>-0     (-----) [001] d.s4 82318.630422: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
137916          <idle>-0     (-----) [001] d.s4 82318.630431: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
137917          <idle>-0     (-----) [003] .n.1 82318.630438: cpu_idle: state=4294967295 cpu_id=3
137918          <idle>-0     (-----) [001] ...1 82318.630441: cpu_idle: state=4294967295 cpu_id=1
137919          <idle>-0     (-----) [001] d..1 82318.630446: cpu_idle: state=0 cpu_id=1
137920          <idle>-0     (-----) [003] d..2 82318.630451: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137921  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630482: clk_enable: gcc_ufs_phy_axi_clk_src
137922  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630504: clk_enable: gcc_ufs_phy_axi_clk
137923  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630516: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
137924  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630526: clk_enable: gcc_aggre_ufs_phy_axi_clk
137925  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630535: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
137926  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630543: clk_enable: gcc_ufs_phy_ahb_clk
137927  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630556: clk_enable: gcc_ufs_phy_unipro_core_clk_src
137928  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630563: clk_enable: gcc_ufs_phy_unipro_core_clk
137929  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630571: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
137930  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630581: clk_enable: gcc_ufs_phy_ice_core_clk_src
137931  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630588: clk_enable: gcc_ufs_phy_ice_core_clk
137932  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630596: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
137933  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630612: clk_enable: gcc_ufs_mem_clkref_clk
137934  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630623: clk_enable: gcc_ufs_phy_phy_aux_clk_src
137935  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630629: clk_enable: gcc_ufs_phy_phy_aux_clk
137936  kworker/u16:15-1311  ( 1311) [003] d..1 82318.630637: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
137937  kworker/u16:15-1311  ( 1311) [003] d..3 82318.630699: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
137938  kworker/u16:15-1311  ( 1311) [003] dn.4 82318.630751: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
137939  kworker/u16:15-1311  ( 1311) [003] d..2 82318.630764: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
137940          <idle>-0     (-----) [000] ...1 82318.630803: cpu_idle: state=4294967295 cpu_id=0
137941          <idle>-0     (-----) [001] ...1 82318.630805: cpu_idle: state=4294967295 cpu_id=1
137942          <idle>-0     (-----) [002] ...1 82318.630808: cpu_idle: state=4294967295 cpu_id=2
137943          <idle>-0     (-----) [000] d..1 82318.630808: cpu_idle: state=0 cpu_id=0
137944          <idle>-0     (-----) [001] d..1 82318.630809: cpu_idle: state=0 cpu_id=1
137945          <idle>-0     (-----) [002] d..1 82318.630814: cpu_idle: state=0 cpu_id=2
137946  kworker/u16:13-1147  ( 1147) [003] d..2 82318.630814: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
137947  kworker/u16:15-1311  ( 1311) [003] d..2 82318.630914: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137948          <idle>-0     (-----) [003] d..1 82318.630931: cpu_idle: state=0 cpu_id=3
137949          <idle>-0     (-----) [003] d.h2 82318.630991: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
137950          <idle>-0     (-----) [003] dnh3 82318.631007: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
137951          <idle>-0     (-----) [003] .n.1 82318.631017: cpu_idle: state=4294967295 cpu_id=3
137952          <idle>-0     (-----) [003] d..2 82318.631030: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
137953        DispSync-8879  ( 8858) [003] d..1 82318.631052: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
137954        DispSync-8879  ( 8858) [003] d..2 82318.631068: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
137955          <idle>-0     (-----) [001] .n.1 82318.631073: cpu_idle: state=4294967295 cpu_id=1
137956          <idle>-0     (-----) [001] d..2 82318.631089: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
137957        DispSync-8879  ( 8858) [003] d..2 82318.631106: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
137958          <idle>-0     (-----) [003] d..1 82318.631120: cpu_idle: state=0 cpu_id=3
137959  appEventThread-8881  ( 8858) [001] d..3 82318.631158: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137960          <idle>-0     (-----) [004] dnh2 82318.631187: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
137961          <idle>-0     (-----) [004] .n.1 82318.631191: cpu_idle: state=4294967295 cpu_id=4
137962          <idle>-0     (-----) [004] d..2 82318.631200: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
137963  appEventThread-8881  ( 8858) [001] d..2 82318.631228: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137964          <idle>-0     (-----) [001] d..1 82318.631242: cpu_idle: state=0 cpu_id=1
137965 s.nexuslauncher-10023 (10023) [004] .... 82318.631411: binder_transaction: transaction=1573041 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
137966 s.nexuslauncher-10023 (10023) [004] .... 82318.631417: binder_transaction_alloc_buf: transaction=1573041 data_size=80 offsets_size=0
137967 s.nexuslauncher-10023 (10023) [004] d..4 82318.631423: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
137968          <idle>-0     (-----) [000] dnh2 82318.631493: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
137969          <idle>-0     (-----) [000] .n.1 82318.631500: cpu_idle: state=4294967295 cpu_id=0
137970          <idle>-0     (-----) [000] d..2 82318.631510: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
137971 s.nexuslauncher-10023 (10023) [004] d..3 82318.631513: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137972   Binder:8858_1-8871  ( 8858) [000] .... 82318.631523: binder_transaction_received: transaction=1573041
137973 s.nexuslauncher-10023 (10023) [004] d..4 82318.631529: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137974          <idle>-0     (-----) [005] .n.1 82318.631535: cpu_idle: state=4294967295 cpu_id=5
137975          <idle>-0     (-----) [005] d..2 82318.631546: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137976   Binder:8858_1-8871  ( 8858) [000] d..1 82318.631573: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
137977    RenderThread-16607 (10023) [005] d..2 82318.631576: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
137978          <idle>-0     (-----) [005] d..1 82318.631584: cpu_idle: state=0 cpu_id=5
137979   Binder:8858_1-8871  ( 8858) [000] d..2 82318.631598: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
137980          <idle>-0     (-----) [001] .n.1 82318.631605: cpu_idle: state=4294967295 cpu_id=1
137981          <idle>-0     (-----) [001] d..2 82318.631615: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
137982   Binder:8858_1-8871  ( 8858) [000] d..2 82318.631657: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
137983  appEventThread-8881  ( 8858) [001] d..2 82318.631666: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
137984          <idle>-0     (-----) [000] d..1 82318.631673: cpu_idle: state=0 cpu_id=0
137985          <idle>-0     (-----) [001] d..1 82318.631675: cpu_idle: state=0 cpu_id=1
137986 s.nexuslauncher-10023 (10023) [004] d..3 82318.631740: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
137987 s.nexuslauncher-10023 (10023) [004] d..4 82318.631758: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
137988          <idle>-0     (-----) [005] .n.1 82318.631762: cpu_idle: state=4294967295 cpu_id=5
137989          <idle>-0     (-----) [005] d..2 82318.631770: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
137990 s.nexuslauncher-10023 (10023) [004] d..2 82318.631789: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
137991          <idle>-0     (-----) [001] d.s2 82318.631810: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137992          <idle>-0     (-----) [000] d.s3 82318.631823: sched_waking: comm=kworker/0:1H pid=578 prio=100 target_cpu=000
137993          <idle>-0     (-----) [001] dns3 82318.631857: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
137994          <idle>-0     (-----) [000] dns4 82318.631863: sched_wakeup: comm=kworker/0:1H pid=578 prio=100 target_cpu=000
137995          <idle>-0     (-----) [001] .n.1 82318.631872: cpu_idle: state=4294967295 cpu_id=1
137996          <idle>-0     (-----) [004] d.H4 82318.631876: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
137997          <idle>-0     (-----) [001] d..2 82318.631884: 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
137998          <idle>-0     (-----) [000] .n.1 82318.631888: cpu_idle: state=4294967295 cpu_id=0
137999          <idle>-0     (-----) [000] d..2 82318.631900: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1H next_pid=578 next_prio=100
138000          <idle>-0     (-----) [002] dnh2 82318.631901: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
138001          <idle>-0     (-----) [002] .n.1 82318.631908: cpu_idle: state=4294967295 cpu_id=2
138002          <idle>-0     (-----) [004] d..1 82318.631916: cpu_idle: state=0 cpu_id=4
138003          <idle>-0     (-----) [002] d..2 82318.631921: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
138004     rcu_preempt-7     (    7) [001] d..2 82318.631926: 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
138005    kworker/0:1H-578   (  578) [000] d..2 82318.631932: sched_switch: prev_comm=kworker/0:1H prev_pid=578 prev_prio=100 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138006          <idle>-0     (-----) [001] d..1 82318.631942: cpu_idle: state=0 cpu_id=1
138007          <idle>-0     (-----) [000] d..1 82318.631951: cpu_idle: state=0 cpu_id=0
138008         sugov:0-576   (  576) [002] .... 82318.631955: clk_set_rate: pwrcl_clk 902400000
138009    RenderThread-16607 (10023) [005] d..1 82318.631956: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138010          <idle>-0     (-----) [003] d.h4 82318.631969: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
138011         sugov:0-576   (  576) [002] .... 82318.631969: clk_set_rate: cpu3_pwrcl_clk 748800000
138012    RenderThread-16607 (10023) [005] d..2 82318.631973: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138013          <idle>-0     (-----) [004] .n.1 82318.631979: cpu_idle: state=4294967295 cpu_id=4
138014         sugov:0-576   (  576) [002] .... 82318.631979: clk_set_rate: cpu2_pwrcl_clk 748800000
138015         sugov:0-576   (  576) [002] .... 82318.631988: clk_set_rate: cpu1_pwrcl_clk 748800000
138016          <idle>-0     (-----) [003] dnh5 82318.631988: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
138017          <idle>-0     (-----) [004] d..2 82318.631989: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
138018         sugov:0-576   (  576) [002] .... 82318.631996: clk_set_rate: cpu0_pwrcl_clk 902400000
138019         sugov:0-576   (  576) [002] .... 82318.632006: cpu_frequency: state=902400 cpu_id=0
138020    RenderThread-16607 (10023) [005] .... 82318.632028: binder_transaction: transaction=1573042 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
138021         sugov:0-576   (  576) [002] .... 82318.632029: cpu_frequency: state=902400 cpu_id=1
138022    RenderThread-16607 (10023) [005] .... 82318.632032: binder_transaction_alloc_buf: transaction=1573042 data_size=104 offsets_size=0
138023         sugov:0-576   (  576) [002] .... 82318.632035: cpu_frequency: state=902400 cpu_id=2
138024    RenderThread-16607 (10023) [005] ...2 82318.632035: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
138025         sugov:0-576   (  576) [002] .... 82318.632038: cpu_frequency: state=902400 cpu_id=3
138026    RenderThread-16607 (10023) [005] d..4 82318.632039: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
138027    RenderThread-16607 (10023) [005] d..5 82318.632060: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
138028          <idle>-0     (-----) [003] dns3 82318.632061: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=000
138029         sugov:0-576   (  576) [002] d..2 82318.632071: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138030          <idle>-0     (-----) [002] d..1 82318.632086: cpu_idle: state=0 cpu_id=2
138031 s.nexuslauncher-10023 (10023) [004] d..2 82318.632109: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
138032    RenderThread-16607 (10023) [005] d..2 82318.632116: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
138033          <idle>-0     (-----) [003] dns4 82318.632116: sched_blocked_reason: pid=9080 iowait=1 caller=__filemap_fdatawait_range+0x120/0x184
138034          <idle>-0     (-----) [004] d..1 82318.632120: cpu_idle: state=0 cpu_id=4
138035          <idle>-0     (-----) [003] dns4 82318.632125: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=002
138036   Binder:8858_1-8871  ( 8858) [005] .... 82318.632128: binder_transaction_received: transaction=1573042
138037          <idle>-0     (-----) [002] .n.1 82318.632133: cpu_idle: state=4294967295 cpu_id=2
138038          <idle>-0     (-----) [002] d..2 82318.632147: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
138039          <idle>-0     (-----) [003] dns4 82318.632150: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
138040          <idle>-0     (-----) [003] dns5 82318.632164: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
138041          <idle>-0     (-----) [003] .n.1 82318.632186: cpu_idle: state=4294967295 cpu_id=3
138042   Binder:8858_1-8871  ( 8858) [005] .... 82318.632188: binder_transaction: transaction=1573043 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
138043   Binder:8858_1-8871  ( 8858) [005] .... 82318.632192: binder_transaction_alloc_buf: transaction=1573043 data_size=52 offsets_size=8
138044   Binder:8858_1-8871  ( 8858) [005] d..2 82318.632199: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138045          <idle>-0     (-----) [003] d..2 82318.632201: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
138046   Binder:8858_1-8871  ( 8858) [005] d..3 82318.632210: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138047   Binder:8858_1-8871  ( 8858) [005] .... 82318.632212: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
138048    kworker/3:1H-873   (  873) [003] d..2 82318.632219: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138049   Binder:8858_1-8871  ( 8858) [005] d..2 82318.632222: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
138050    RenderThread-16607 (10023) [005] .... 82318.632231: binder_transaction_received: transaction=1573043
138051  kworker/u16:15-1311  ( 1311) [003] d..2 82318.632249: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138052          <idle>-0     (-----) [003] d..1 82318.632261: cpu_idle: state=0 cpu_id=3
138053 LazyTaskWriterT-9080  ( 8943) [002] d..3 82318.632334: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
138054 LazyTaskWriterT-9080  ( 8943) [002] d..4 82318.632360: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
138055          <idle>-0     (-----) [003] .n.1 82318.632366: cpu_idle: state=4294967295 cpu_id=3
138056          <idle>-0     (-----) [003] d..2 82318.632377: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138057  kworker/u16:15-1311  ( 1311) [003] d..2 82318.632400: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138058          <idle>-0     (-----) [003] d..1 82318.632409: cpu_idle: state=0 cpu_id=3
138059 LazyTaskWriterT-9080  ( 8943) [002] d..2 82318.632418: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
138060          <idle>-0     (-----) [002] d..1 82318.632438: cpu_idle: state=0 cpu_id=2
138061          <idle>-0     (-----) [003] d.h4 82318.632444: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
138062          <idle>-0     (-----) [003] dnh5 82318.632457: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
138063          <idle>-0     (-----) [003] dns3 82318.632493: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=002
138064          <idle>-0     (-----) [003] dns4 82318.632505: sched_blocked_reason: pid=9080 iowait=1 caller=wait_on_node_pages_writeback+0x140/0x248
138065          <idle>-0     (-----) [003] dns4 82318.632514: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=002
138066          <idle>-0     (-----) [002] .n.1 82318.632522: cpu_idle: state=4294967295 cpu_id=2
138067          <idle>-0     (-----) [003] dns4 82318.632525: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
138068          <idle>-0     (-----) [003] dns5 82318.632533: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
138069          <idle>-0     (-----) [002] d..2 82318.632536: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
138070          <idle>-0     (-----) [003] .n.1 82318.632550: cpu_idle: state=4294967295 cpu_id=3
138071          <idle>-0     (-----) [003] d..2 82318.632562: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
138072    kworker/3:1H-873   (  873) [003] d..2 82318.632576: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138073  kworker/u16:15-1311  ( 1311) [003] d..2 82318.632601: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138074          <idle>-0     (-----) [003] d..1 82318.632612: cpu_idle: state=0 cpu_id=3
138075 LazyTaskWriterT-9080  ( 8943) [002] d..2 82318.632622: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
138076 LazyTaskWriterT-9080  ( 8943) [002] dn.3 82318.632672: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
138077 LazyTaskWriterT-9080  ( 8943) [002] d..2 82318.632684: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
138078         rcuop/2-29    (   29) [002] d..2 82318.632697: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
138079          <idle>-0     (-----) [003] d.h2 82318.633376: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
138080          <idle>-0     (-----) [003] dnh3 82318.633388: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
138081          <idle>-0     (-----) [003] .n.1 82318.633396: cpu_idle: state=4294967295 cpu_id=3
138082          <idle>-0     (-----) [003] d..2 82318.633405: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
138083          <idle>-0     (-----) [000] ...1 82318.633492: cpu_idle: state=4294967295 cpu_id=0
138084          <idle>-0     (-----) [000] d..1 82318.633497: cpu_idle: state=0 cpu_id=0
138085    RenderThread-16607 (10023) [005] d..2 82318.633541: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
138086 irq/80-1436400.-9674  ( 9674) [003] d..2 82318.633593: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
138087          <idle>-0     (-----) [003] d..1 82318.633607: cpu_idle: state=0 cpu_id=3
138088   Binder:8858_1-8871  ( 8858) [005] d..2 82318.633615: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
138089          <idle>-0     (-----) [001] d.s3 82318.633618: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
138090          <idle>-0     (-----) [005] d..1 82318.633630: cpu_idle: state=0 cpu_id=5
138091          <idle>-0     (-----) [001] d.s4 82318.633634: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
138092          <idle>-0     (-----) [003] .n.1 82318.633640: cpu_idle: state=4294967295 cpu_id=3
138093          <idle>-0     (-----) [001] ...1 82318.633644: cpu_idle: state=4294967295 cpu_id=1
138094          <idle>-0     (-----) [005] d.h2 82318.633644: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138095          <idle>-0     (-----) [001] d..1 82318.633649: cpu_idle: state=0 cpu_id=1
138096          <idle>-0     (-----) [003] d..2 82318.633651: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
138097          <idle>-0     (-----) [005] d.h3 82318.633652: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
138098          <idle>-0     (-----) [005] dnh3 82318.633656: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138099          <idle>-0     (-----) [005] .n.1 82318.633663: cpu_idle: state=4294967295 cpu_id=5
138100          <idle>-0     (-----) [005] d..2 82318.633672: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
138101 irq/80-1436400.-9674  ( 9674) [003] d..2 82318.633690: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138102          <idle>-0     (-----) [003] d..1 82318.633699: cpu_idle: state=0 cpu_id=3
138103 LazyTaskWriterT-9080  ( 8943) [002] d..2 82318.633791: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138104          <idle>-0     (-----) [002] d..1 82318.633814: cpu_idle: state=0 cpu_id=2
138105    RenderThread-16607 (10023) [005] .... 82318.633839: binder_transaction: transaction=1573044 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
138106    RenderThread-16607 (10023) [005] .... 82318.633844: binder_transaction_alloc_buf: transaction=1573044 data_size=192 offsets_size=8
138107    RenderThread-16607 (10023) [005] ...2 82318.633851: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
138108    RenderThread-16607 (10023) [005] d..4 82318.633855: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
138109    RenderThread-16607 (10023) [005] d..5 82318.633867: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
138110    RenderThread-16607 (10023) [005] d..2 82318.633879: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
138111   Binder:8858_1-8871  ( 8858) [005] .... 82318.633889: binder_transaction_received: transaction=1573044
138112   Binder:8858_1-8871  ( 8858) [005] .... 82318.634018: binder_transaction: transaction=1573045 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
138113   Binder:8858_1-8871  ( 8858) [005] .... 82318.634022: binder_transaction_alloc_buf: transaction=1573045 data_size=68 offsets_size=0
138114   Binder:8858_1-8871  ( 8858) [005] d..2 82318.634024: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138115   Binder:8858_1-8871  ( 8858) [005] d..3 82318.634034: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138116   Binder:8858_1-8871  ( 8858) [005] .... 82318.634037: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
138117   Binder:8858_1-8871  ( 8858) [005] d..2 82318.634068: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
138118    RenderThread-16607 (10023) [005] .... 82318.634078: binder_transaction_received: transaction=1573045
138119    RenderThread-16607 (10023) [005] d..2 82318.634149: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
138120          <idle>-0     (-----) [005] d..1 82318.634167: cpu_idle: state=0 cpu_id=5
138121          <idle>-0     (-----) [005] ...1 82318.634367: cpu_idle: state=4294967295 cpu_id=5
138122          <idle>-0     (-----) [005] d..1 82318.634371: cpu_idle: state=0 cpu_id=5
138123          <idle>-0     (-----) [003] d.h2 82318.634991: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
138124          <idle>-0     (-----) [003] dnh3 82318.635008: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
138125          <idle>-0     (-----) [003] .n.1 82318.635018: cpu_idle: state=4294967295 cpu_id=3
138126          <idle>-0     (-----) [003] d..2 82318.635028: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
138127        DispSync-8879  ( 8858) [003] d..1 82318.635047: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138128        DispSync-8879  ( 8858) [003] d..2 82318.635063: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138129          <idle>-0     (-----) [002] .n.1 82318.635072: cpu_idle: state=4294967295 cpu_id=2
138130          <idle>-0     (-----) [000] d.h3 82318.635072: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
138131          <idle>-0     (-----) [002] d..2 82318.635084: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
138132          <idle>-0     (-----) [000] dnh4 82318.635091: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
138133        DispSync-8879  ( 8858) [003] d..2 82318.635096: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138134          <idle>-0     (-----) [000] .n.1 82318.635103: cpu_idle: state=4294967295 cpu_id=0
138135          <idle>-0     (-----) [003] d..1 82318.635110: cpu_idle: state=0 cpu_id=3
138136          <idle>-0     (-----) [000] d..2 82318.635120: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
138137 kgsl_worker_thr-258   (  258) [000] d..2 82318.635180: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
138138   sfEventThread-8882  ( 8858) [002] d..3 82318.635198: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=000
138139 kgsl_worker_thr-258   (  258) [000] d..3 82318.635235: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138140   sfEventThread-8882  ( 8858) [002] d..4 82318.635240: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138141          <idle>-0     (-----) [001] .n.1 82318.635244: cpu_idle: state=4294967295 cpu_id=1
138142          <idle>-0     (-----) [001] d..2 82318.635259: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
138143 kgsl_worker_thr-258   (  258) [000] d..2 82318.635262: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138144   sfEventThread-8882  ( 8858) [002] d..2 82318.635290: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138145          <idle>-0     (-----) [002] d..1 82318.635308: cpu_idle: state=0 cpu_id=2
138146  kworker/u16:15-1311  ( 1311) [000] d..2 82318.635456: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138147          <idle>-0     (-----) [000] d..1 82318.635477: cpu_idle: state=0 cpu_id=0
138148  surfaceflinger-8858  ( 8858) [001] d..1 82318.635647: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138149          <idle>-0     (-----) [002] ...1 82318.635648: cpu_idle: state=4294967295 cpu_id=2
138150          <idle>-0     (-----) [002] d..1 82318.635658: cpu_idle: state=0 cpu_id=2
138151  surfaceflinger-8858  ( 8858) [001] d..2 82318.635672: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138152          <idle>-0     (-----) [002] .n.1 82318.635679: cpu_idle: state=4294967295 cpu_id=2
138153          <idle>-0     (-----) [002] d..2 82318.635691: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
138154  surfaceflinger-8858  ( 8858) [001] d.s1 82318.635706: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
138155  surfaceflinger-8858  ( 8858) [001] d.s2 82318.635725: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
138156   sfEventThread-8882  ( 8858) [002] d..2 82318.635740: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138157          <idle>-0     (-----) [002] d..1 82318.635752: cpu_idle: state=0 cpu_id=2
138158          <idle>-0     (-----) [002] ...1 82318.635876: cpu_idle: state=4294967295 cpu_id=2
138159          <idle>-0     (-----) [002] d..1 82318.635881: cpu_idle: state=0 cpu_id=2
138160  surfaceflinger-8858  ( 8858) [001] ...1 82318.635944: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
138161  surfaceflinger-8858  ( 8858) [001] ...1 82318.635953: tracing_mark_write: E|8858
138162  surfaceflinger-8858  ( 8858) [001] .... 82318.636021: binder_transaction: transaction=1573046 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
138163  surfaceflinger-8858  ( 8858) [001] .... 82318.636027: binder_transaction_alloc_buf: transaction=1573046 data_size=540 offsets_size=96
138164  surfaceflinger-8858  ( 8858) [001] ...2 82318.636054: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
138165  surfaceflinger-8858  ( 8858) [001] d..4 82318.636062: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
138166  surfaceflinger-8858  ( 8858) [001] d..5 82318.636086: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
138167          <idle>-0     (-----) [002] .n.1 82318.636091: cpu_idle: state=4294967295 cpu_id=2
138168          <idle>-0     (-----) [002] d..2 82318.636103: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
138169  surfaceflinger-8858  ( 8858) [001] d..2 82318.636111: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
138170 [email protected]   (  619) [002] .... 82318.636118: binder_transaction_received: transaction=1573046
138171     ksoftirqd/1-18    (   18) [001] d.s2 82318.636160: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138172     ksoftirqd/1-18    (   18) [001] d.s3 82318.636179: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138173 [email protected]   (  619) [002] ...1 82318.636179: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
138174     ksoftirqd/1-18    (   18) [001] d..2 82318.636202: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138175     kworker/1:1-25249 (25249) [001] d..2 82318.636254: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
138176     kworker/1:1-25249 (25249) [001] d..3 82318.636271: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
138177 [email protected]   (  619) [002] ...1 82318.636297: tracing_mark_write: B|619|HWCSession::PresentDisplay::
138178     kworker/1:1-25249 (25249) [001] d..2 82318.636310: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
138179 [email protected]   (  619) [002] ...1 82318.636478: tracing_mark_write: B|619|HWDeviceDRM::Commit::
138180 [email protected] (  798) [001] d..2 82318.636488: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138181 [email protected]   (  619) [002] ...1 82318.636491: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
138182          <idle>-0     (-----) [001] d..1 82318.636505: cpu_idle: state=0 cpu_id=1
138183          <idle>-0     (-----) [001] d.s3 82318.636766: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138184          <idle>-0     (-----) [001] dns4 82318.636778: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138185          <idle>-0     (-----) [001] .n.1 82318.636801: cpu_idle: state=4294967295 cpu_id=1
138186          <idle>-0     (-----) [001] d..2 82318.636811: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138187     kworker/1:1-25249 (25249) [001] d..2 82318.636844: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
138188     kworker/1:1-25249 (25249) [001] d..3 82318.636857: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
138189     kworker/1:1-25249 (25249) [001] d..2 82318.636884: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
138190 [email protected] (  798) [001] d..2 82318.637000: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138191          <idle>-0     (-----) [001] d..1 82318.637015: cpu_idle: state=0 cpu_id=1
138192          <idle>-0     (-----) [000] ...1 82318.637020: cpu_idle: state=4294967295 cpu_id=0
138193          <idle>-0     (-----) [000] d..1 82318.637025: cpu_idle: state=0 cpu_id=0
138194 [email protected]   (  619) [002] d..2 82318.637119: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
138195 [email protected]   (  619) [002] d..3 82318.637151: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
138196          <idle>-0     (-----) [003] .n.1 82318.637155: cpu_idle: state=4294967295 cpu_id=3
138197          <idle>-0     (-----) [003] d..2 82318.637168: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
138198 [email protected]   (  619) [002] ...1 82318.637269: tracing_mark_write: E|619
138199 [email protected]   (  619) [002] ...1 82318.637277: tracing_mark_write: E|619
138200 [email protected]   (  619) [002] ...1 82318.637346: tracing_mark_write: E|619
138201 [email protected]   (  619) [002] ...1 82318.637400: tracing_mark_write: E|619
138202 [email protected]   (  619) [002] .... 82318.637418: binder_transaction: transaction=1573047 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
138203 [email protected]   (  619) [002] .... 82318.637423: binder_transaction_alloc_buf: transaction=1573047 data_size=576 offsets_size=112
138204 [email protected]   (  619) [002] d..2 82318.637445: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138205 [email protected]   (  619) [002] d..3 82318.637465: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138206 [email protected]   (  619) [002] .... 82318.637471: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
138207          <idle>-0     (-----) [001] .n.1 82318.637472: cpu_idle: state=4294967295 cpu_id=1
138208          <idle>-0     (-----) [001] d..2 82318.637481: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
138209  surfaceflinger-8858  ( 8858) [001] .... 82318.637494: binder_transaction_received: transaction=1573047
138210 [email protected]   (  619) [002] d..2 82318.637571: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138211          <idle>-0     (-----) [002] d..1 82318.637594: cpu_idle: state=0 cpu_id=2
138212  surfaceflinger-8858  ( 8858) [001] d.s1 82318.637612: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
138213  surfaceflinger-8858  ( 8858) [001] d.s2 82318.637628: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
138214 crtc_commit:111-321   (  321) [003] d..2 82318.637630: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
138215          <idle>-0     (-----) [003] d..1 82318.637645: cpu_idle: state=0 cpu_id=3
138216  surfaceflinger-8858  ( 8858) [001] d..2 82318.638027: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
138217     ksoftirqd/1-18    (   18) [001] d.s2 82318.638066: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138218     ksoftirqd/1-18    (   18) [001] d.s3 82318.638081: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138219     ksoftirqd/1-18    (   18) [001] d.s2 82318.638108: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138220          <idle>-0     (-----) [002] ...1 82318.638123: cpu_idle: state=4294967295 cpu_id=2
138221          <idle>-0     (-----) [002] d..1 82318.638131: cpu_idle: state=0 cpu_id=2
138222     ksoftirqd/1-18    (   18) [001] d.s3 82318.638133: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138223     ksoftirqd/1-18    (   18) [001] d..2 82318.638174: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
138224   cds_mc_thread-16565 (16565) [001] d..2 82318.638276: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138225     kworker/1:1-25249 (25249) [001] d..2 82318.638308: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
138226     kworker/1:1-25249 (25249) [001] d..3 82318.638321: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
138227     kworker/1:1-25249 (25249) [001] d..2 82318.638370: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
138228 [email protected] (  798) [001] d.s1 82318.638493: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
138229 [email protected] (  798) [001] dns2 82318.638514: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
138230 [email protected] (  798) [001] dns2 82318.638523: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138231 [email protected] (  798) [001] dns3 82318.638560: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
138232 [email protected] (  798) [001] d..2 82318.638583: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=7 next_prio=120
138233     rcu_preempt-7     (    7) [001] d..2 82318.638597: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
138234     rcu_preempt-7     (    7) [001] d..3 82318.638636: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
138235     rcu_preempt-7     (    7) [001] d..2 82318.638654: 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
138236         rcuop/0-10    (   10) [001] d..2 82318.638671: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138237  kworker/u16:15-1311  ( 1311) [001] .... 82318.638723: clk_set_rate: l3_cluster0_vote_clk 403200000
138238  kworker/u16:15-1311  ( 1311) [001] .... 82318.638732: clk_set_rate: l3_clk 403200000
138239  kworker/u16:15-1311  ( 1311) [001] d..2 82318.638972: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> [email protected] next_pid=16588 next_prio=120
138240 [email protected] (  798) [001] d.s4 82318.639010: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
138241 [email protected] (  798) [001] d.s5 82318.639027: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
138242 [email protected] (  798) [001] d.s5 82318.639032: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
138243 [email protected] (  798) [001] d..2 82318.639170: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138244  kworker/u16:15-1311  ( 1311) [001] d..2 82318.639235: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138245          <idle>-0     (-----) [001] d..1 82318.639252: cpu_idle: state=0 cpu_id=1
138246          <idle>-0     (-----) [003] d.s3 82318.641807: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
138247          <idle>-0     (-----) [003] dns4 82318.641824: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
138248          <idle>-0     (-----) [003] .n.1 82318.641844: cpu_idle: state=4294967295 cpu_id=3
138249          <idle>-0     (-----) [003] d..2 82318.641857: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
138250          <idle>-0     (-----) [000] ...1 82318.641886: cpu_idle: state=4294967295 cpu_id=0
138251          <idle>-0     (-----) [000] d..1 82318.641891: cpu_idle: state=0 cpu_id=0
138252          <idle>-0     (-----) [001] ...1 82318.641892: cpu_idle: state=4294967295 cpu_id=1
138253          <idle>-0     (-----) [002] ...1 82318.641893: cpu_idle: state=4294967295 cpu_id=2
138254          <idle>-0     (-----) [001] d..1 82318.641896: cpu_idle: state=0 cpu_id=1
138255          <idle>-0     (-----) [002] d..1 82318.641897: cpu_idle: state=0 cpu_id=2
138256     kworker/3:1-25210 (25210) [003] d..2 82318.641913: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138257          <idle>-0     (-----) [003] d..1 82318.641924: cpu_idle: state=0 cpu_id=3
138258          <idle>-0     (-----) [000] d.h5 82318.643045: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138259          <idle>-0     (-----) [000] d.h6 82318.643067: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138260          <idle>-0     (-----) [000] d.h5 82318.643072: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
138261          <idle>-0     (-----) [003] .n.1 82318.643073: cpu_idle: state=4294967295 cpu_id=3
138262          <idle>-0     (-----) [003] d..2 82318.643083: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
138263          <idle>-0     (-----) [000] dnh6 82318.643096: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138264          <idle>-0     (-----) [000] .n.1 82318.643107: cpu_idle: state=4294967295 cpu_id=0
138265  crtc_event:111-322   (  322) [003] d..2 82318.643117: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138266          <idle>-0     (-----) [000] d..2 82318.643119: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
138267          <idle>-0     (-----) [003] d..1 82318.643125: cpu_idle: state=0 cpu_id=3
138268 crtc_commit:111-321   (  321) [000] d..2 82318.643233: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
138269          <idle>-0     (-----) [000] d..1 82318.643244: cpu_idle: state=0 cpu_id=0
138270          <idle>-0     (-----) [000] d.s3 82318.645134: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138271          <idle>-0     (-----) [001] d.s2 82318.645137: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
138272          <idle>-0     (-----) [000] d.s4 82318.645151: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138273          <idle>-0     (-----) [001] dns3 82318.645155: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
138274          <idle>-0     (-----) [003] .n.1 82318.645156: cpu_idle: state=4294967295 cpu_id=3
138275          <idle>-0     (-----) [003] d..2 82318.645166: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
138276          <idle>-0     (-----) [000] ...1 82318.645167: cpu_idle: state=4294967295 cpu_id=0
138277          <idle>-0     (-----) [000] d..1 82318.645173: cpu_idle: state=0 cpu_id=0
138278          <idle>-0     (-----) [001] .n.1 82318.645174: cpu_idle: state=4294967295 cpu_id=1
138279          <idle>-0     (-----) [001] d..2 82318.645187: 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
138280  crtc_event:111-322   (  322) [003] d..2 82318.645195: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138281          <idle>-0     (-----) [003] d..1 82318.645203: cpu_idle: state=0 cpu_id=3
138282     rcu_preempt-7     (    7) [001] d..2 82318.645217: 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
138283          <idle>-0     (-----) [001] d..1 82318.645229: cpu_idle: state=0 cpu_id=1
138284          <idle>-0     (-----) [000] d.h5 82318.645371: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138285          <idle>-0     (-----) [000] dnh6 82318.645382: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138286          <idle>-0     (-----) [000] .n.1 82318.645391: cpu_idle: state=4294967295 cpu_id=0
138287          <idle>-0     (-----) [000] d..2 82318.645401: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
138288 crtc_commit:111-321   (  321) [000] d..2 82318.645473: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138289          <idle>-0     (-----) [000] d..1 82318.645487: cpu_idle: state=0 cpu_id=0
138290          <idle>-0     (-----) [000] d.h5 82318.645678: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138291          <idle>-0     (-----) [000] d.h6 82318.645695: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138292          <idle>-0     (-----) [003] .n.1 82318.645701: cpu_idle: state=4294967295 cpu_id=3
138293          <idle>-0     (-----) [000] ...1 82318.645709: cpu_idle: state=4294967295 cpu_id=0
138294          <idle>-0     (-----) [003] d..2 82318.645709: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
138295          <idle>-0     (-----) [000] d..1 82318.645715: cpu_idle: state=0 cpu_id=0
138296  crtc_event:111-322   (  322) [003] d..2 82318.645733: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138297          <idle>-0     (-----) [003] d..1 82318.645741: cpu_idle: state=0 cpu_id=3
138298          <idle>-0     (-----) [003] d.h2 82318.647454: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
138299          <idle>-0     (-----) [003] dnh3 82318.647467: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
138300          <idle>-0     (-----) [003] .n.1 82318.647475: cpu_idle: state=4294967295 cpu_id=3
138301          <idle>-0     (-----) [003] d..2 82318.647484: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
138302        DispSync-8879  ( 8858) [003] d..1 82318.647497: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
138303        DispSync-8879  ( 8858) [003] d..2 82318.647513: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
138304          <idle>-0     (-----) [001] .n.1 82318.647518: cpu_idle: state=4294967295 cpu_id=1
138305          <idle>-0     (-----) [001] d..2 82318.647529: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
138306        DispSync-8879  ( 8858) [003] d..2 82318.647543: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138307          <idle>-0     (-----) [003] d..1 82318.647554: cpu_idle: state=0 cpu_id=3
138308  appEventThread-8881  ( 8858) [001] d..3 82318.647586: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138309          <idle>-0     (-----) [004] dnh2 82318.647614: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138310          <idle>-0     (-----) [004] .n.1 82318.647618: cpu_idle: state=4294967295 cpu_id=4
138311          <idle>-0     (-----) [004] d..2 82318.647627: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
138312  appEventThread-8881  ( 8858) [001] d..2 82318.647644: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138313          <idle>-0     (-----) [001] d..1 82318.647657: cpu_idle: state=0 cpu_id=1
138314 s.nexuslauncher-10023 (10023) [004] .... 82318.647830: binder_transaction: transaction=1573048 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
138315 s.nexuslauncher-10023 (10023) [004] .... 82318.647835: binder_transaction_alloc_buf: transaction=1573048 data_size=80 offsets_size=0
138316 s.nexuslauncher-10023 (10023) [004] d..4 82318.647840: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
138317          <idle>-0     (-----) [000] dnh2 82318.647907: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
138318          <idle>-0     (-----) [000] .n.1 82318.647913: cpu_idle: state=4294967295 cpu_id=0
138319          <idle>-0     (-----) [000] d..2 82318.647925: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
138320 s.nexuslauncher-10023 (10023) [004] d..3 82318.647931: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138321   Binder:8858_1-8871  ( 8858) [000] .... 82318.647933: binder_transaction_received: transaction=1573048
138322 s.nexuslauncher-10023 (10023) [004] d..4 82318.647946: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138323          <idle>-0     (-----) [005] .n.1 82318.647952: cpu_idle: state=4294967295 cpu_id=5
138324          <idle>-0     (-----) [005] d..2 82318.647962: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
138325   Binder:8858_1-8871  ( 8858) [000] d..1 82318.647969: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
138326   Binder:8858_1-8871  ( 8858) [000] d..2 82318.647986: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
138327          <idle>-0     (-----) [001] .n.1 82318.647992: cpu_idle: state=4294967295 cpu_id=1
138328    RenderThread-16607 (10023) [005] d..2 82318.647996: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
138329          <idle>-0     (-----) [001] d..2 82318.648002: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
138330          <idle>-0     (-----) [005] d..1 82318.648004: cpu_idle: state=0 cpu_id=5
138331   Binder:8858_1-8871  ( 8858) [000] d..2 82318.648031: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138332  appEventThread-8881  ( 8858) [001] d..2 82318.648042: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138333          <idle>-0     (-----) [000] d..1 82318.648046: cpu_idle: state=0 cpu_id=0
138334          <idle>-0     (-----) [001] d..1 82318.648052: cpu_idle: state=0 cpu_id=1
138335 s.nexuslauncher-10023 (10023) [004] d..3 82318.648162: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138336 s.nexuslauncher-10023 (10023) [004] d..4 82318.648178: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138337          <idle>-0     (-----) [005] .n.1 82318.648183: cpu_idle: state=4294967295 cpu_id=5
138338          <idle>-0     (-----) [005] d..2 82318.648190: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
138339 s.nexuslauncher-10023 (10023) [004] d..2 82318.648202: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
138340          <idle>-0     (-----) [004] d..1 82318.648216: cpu_idle: state=0 cpu_id=4
138341    RenderThread-16607 (10023) [005] d..1 82318.648344: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138342    RenderThread-16607 (10023) [005] d..2 82318.648360: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138343          <idle>-0     (-----) [004] .n.1 82318.648366: cpu_idle: state=4294967295 cpu_id=4
138344          <idle>-0     (-----) [004] d..2 82318.648375: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
138345    RenderThread-16607 (10023) [005] .... 82318.648405: binder_transaction: transaction=1573049 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
138346    RenderThread-16607 (10023) [005] .... 82318.648408: binder_transaction_alloc_buf: transaction=1573049 data_size=104 offsets_size=0
138347    RenderThread-16607 (10023) [005] ...2 82318.648412: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
138348    RenderThread-16607 (10023) [005] d..4 82318.648415: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
138349    RenderThread-16607 (10023) [005] d..5 82318.648433: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
138350 s.nexuslauncher-10023 (10023) [004] d..2 82318.648477: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
138351    RenderThread-16607 (10023) [005] d.s5 82318.648499: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
138352          <idle>-0     (-----) [004] d..1 82318.648521: cpu_idle: state=0 cpu_id=4
138353          <idle>-0     (-----) [000] dnh2 82318.648536: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138354    RenderThread-16607 (10023) [005] d..2 82318.648540: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
138355          <idle>-0     (-----) [000] .n.1 82318.648542: cpu_idle: state=4294967295 cpu_id=0
138356   Binder:8858_1-8871  ( 8858) [005] .... 82318.648552: binder_transaction_received: transaction=1573049
138357          <idle>-0     (-----) [000] d..2 82318.648555: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138358   Binder:8858_1-8871  ( 8858) [005] .... 82318.648624: binder_transaction: transaction=1573050 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
138359   Binder:8858_1-8871  ( 8858) [005] .... 82318.648628: binder_transaction_alloc_buf: transaction=1573050 data_size=52 offsets_size=8
138360   Binder:8858_1-8871  ( 8858) [005] d..2 82318.648635: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138361   Binder:8858_1-8871  ( 8858) [005] d..3 82318.648645: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138362   Binder:8858_1-8871  ( 8858) [005] .... 82318.648647: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
138363   Binder:8858_1-8871  ( 8858) [005] d..2 82318.648657: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
138364    RenderThread-16607 (10023) [005] .... 82318.648666: binder_transaction_received: transaction=1573050
138365  kworker/u16:15-1311  ( 1311) [000] d..2 82318.648786: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
138366          <idle>-0     (-----) [000] d..1 82318.648801: cpu_idle: state=0 cpu_id=0
138367          <idle>-0     (-----) [001] d.s3 82318.648816: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138368          <idle>-0     (-----) [001] d.s4 82318.648828: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
138369          <idle>-0     (-----) [001] d.s4 82318.648838: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138370          <idle>-0     (-----) [000] .n.1 82318.648844: cpu_idle: state=4294967295 cpu_id=0
138371          <idle>-0     (-----) [001] ...1 82318.648847: cpu_idle: state=4294967295 cpu_id=1
138372          <idle>-0     (-----) [001] d..1 82318.648853: cpu_idle: state=0 cpu_id=1
138373          <idle>-0     (-----) [000] d..2 82318.648857: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138374  kworker/u16:15-1311  ( 1311) [000] .... 82318.648932: clk_set_rate: l3_cluster0_vote_clk 300000000
138375  kworker/u16:15-1311  ( 1311) [000] .... 82318.648937: clk_set_rate: l3_clk 300000000
138376  kworker/u16:15-1311  ( 1311) [000] d..2 82318.648986: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138377          <idle>-0     (-----) [000] d..1 82318.649003: cpu_idle: state=0 cpu_id=0
138378    RenderThread-16607 (10023) [005] d..2 82318.649989: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
138379   Binder:8858_1-8871  ( 8858) [005] d..2 82318.650058: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
138380          <idle>-0     (-----) [005] d..1 82318.650073: cpu_idle: state=0 cpu_id=5
138381          <idle>-0     (-----) [005] d.h2 82318.650087: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138382          <idle>-0     (-----) [005] d.h3 82318.650096: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
138383          <idle>-0     (-----) [005] dnh3 82318.650099: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138384          <idle>-0     (-----) [005] .n.1 82318.650106: cpu_idle: state=4294967295 cpu_id=5
138385          <idle>-0     (-----) [005] d..2 82318.650115: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
138386          <idle>-0     (-----) [000] ...1 82318.650223: cpu_idle: state=4294967295 cpu_id=0
138387          <idle>-0     (-----) [000] d..1 82318.650227: cpu_idle: state=0 cpu_id=0
138388    RenderThread-16607 (10023) [005] .... 82318.650272: binder_transaction: transaction=1573051 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
138389    RenderThread-16607 (10023) [005] .... 82318.650276: binder_transaction_alloc_buf: transaction=1573051 data_size=192 offsets_size=8
138390    RenderThread-16607 (10023) [005] ...2 82318.650283: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
138391    RenderThread-16607 (10023) [005] d..4 82318.650286: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
138392    RenderThread-16607 (10023) [005] d..5 82318.650299: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
138393    RenderThread-16607 (10023) [005] d..2 82318.650313: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
138394   Binder:8858_1-8871  ( 8858) [005] .... 82318.650323: binder_transaction_received: transaction=1573051
138395   Binder:8858_1-8871  ( 8858) [005] .... 82318.650444: binder_transaction: transaction=1573052 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
138396   Binder:8858_1-8871  ( 8858) [005] .... 82318.650448: binder_transaction_alloc_buf: transaction=1573052 data_size=68 offsets_size=0
138397   Binder:8858_1-8871  ( 8858) [005] d..2 82318.650451: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138398   Binder:8858_1-8871  ( 8858) [005] d..3 82318.650462: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138399   Binder:8858_1-8871  ( 8858) [005] .... 82318.650465: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
138400   Binder:8858_1-8871  ( 8858) [005] d..2 82318.650496: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
138401    RenderThread-16607 (10023) [005] .... 82318.650505: binder_transaction_received: transaction=1573052
138402    RenderThread-16607 (10023) [005] d..2 82318.650577: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
138403          <idle>-0     (-----) [005] d..1 82318.650594: cpu_idle: state=0 cpu_id=5
138404          <idle>-0     (-----) [005] ...1 82318.650797: cpu_idle: state=4294967295 cpu_id=5
138405          <idle>-0     (-----) [005] d..1 82318.650801: cpu_idle: state=0 cpu_id=5
138406          <idle>-0     (-----) [003] d.h2 82318.651451: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
138407          <idle>-0     (-----) [003] dnh3 82318.651464: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
138408          <idle>-0     (-----) [003] .n.1 82318.651471: cpu_idle: state=4294967295 cpu_id=3
138409          <idle>-0     (-----) [003] d..2 82318.651482: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
138410        DispSync-8879  ( 8858) [003] d..1 82318.651495: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138411        DispSync-8879  ( 8858) [003] d..2 82318.651508: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138412          <idle>-0     (-----) [002] .n.1 82318.651513: cpu_idle: state=4294967295 cpu_id=2
138413          <idle>-0     (-----) [000] d.h3 82318.651527: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
138414          <idle>-0     (-----) [002] d..2 82318.651528: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
138415        DispSync-8879  ( 8858) [003] d..2 82318.651538: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138416          <idle>-0     (-----) [000] dnh4 82318.651544: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
138417          <idle>-0     (-----) [003] d..1 82318.651551: cpu_idle: state=0 cpu_id=3
138418          <idle>-0     (-----) [000] .n.1 82318.651555: cpu_idle: state=4294967295 cpu_id=0
138419          <idle>-0     (-----) [000] d..2 82318.651567: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
138420   sfEventThread-8882  ( 8858) [002] d..3 82318.651584: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138421   sfEventThread-8882  ( 8858) [002] d..4 82318.651605: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138422          <idle>-0     (-----) [001] .n.1 82318.651609: cpu_idle: state=4294967295 cpu_id=1
138423 kgsl_worker_thr-258   (  258) [000] d..2 82318.651619: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138424          <idle>-0     (-----) [001] d..2 82318.651622: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
138425   sfEventThread-8882  ( 8858) [002] d..2 82318.651651: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138426          <idle>-0     (-----) [002] d..1 82318.651668: cpu_idle: state=0 cpu_id=2
138427          <idle>-0     (-----) [002] .n.1 82318.651673: cpu_idle: state=4294967295 cpu_id=2
138428 kgsl_worker_thr-258   (  258) [000] d..3 82318.651674: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
138429          <idle>-0     (-----) [002] d..2 82318.651692: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138430 kgsl_worker_thr-258   (  258) [000] d..2 82318.651709: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138431          <idle>-0     (-----) [000] d..1 82318.651726: cpu_idle: state=0 cpu_id=0
138432  surfaceflinger-8858  ( 8858) [001] d.H2 82318.651900: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
138433  surfaceflinger-8858  ( 8858) [001] d.H3 82318.651933: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
138434          <idle>-0     (-----) [003] .n.1 82318.651939: cpu_idle: state=4294967295 cpu_id=3
138435  surfaceflinger-8858  ( 8858) [001] d.s1 82318.651941: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
138436          <idle>-0     (-----) [003] d..2 82318.651951: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
138437  kworker/u16:15-1311  ( 1311) [002] d..2 82318.651957: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138438          <idle>-0     (-----) [002] d..1 82318.651974: cpu_idle: state=0 cpu_id=2
138439  surfaceflinger-8858  ( 8858) [001] d.s2 82318.651988: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
138440         sugov:0-576   (  576) [003] .... 82318.651989: clk_set_rate: pwrcl_clk 748800000
138441          <idle>-0     (-----) [002] .n.1 82318.651994: cpu_idle: state=4294967295 cpu_id=2
138442         sugov:0-576   (  576) [003] .... 82318.652002: clk_set_rate: cpu3_pwrcl_clk 902400000
138443          <idle>-0     (-----) [002] d..2 82318.652008: 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
138444         sugov:0-576   (  576) [003] .... 82318.652012: clk_set_rate: cpu2_pwrcl_clk 902400000
138445     rcu_preempt-7     (    7) [002] d..2 82318.652019: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
138446         sugov:0-576   (  576) [003] .... 82318.652020: clk_set_rate: cpu1_pwrcl_clk 902400000
138447         sugov:0-576   (  576) [003] .... 82318.652029: clk_set_rate: cpu0_pwrcl_clk 748800000
138448     rcu_preempt-7     (    7) [002] d..3 82318.652079: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
138449     rcu_preempt-7     (    7) [002] d..2 82318.652112: 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
138450          <idle>-0     (-----) [002] d..1 82318.652128: cpu_idle: state=0 cpu_id=2
138451         sugov:0-576   (  576) [003] .... 82318.652143: cpu_frequency: state=748800 cpu_id=0
138452         sugov:0-576   (  576) [003] .... 82318.652169: cpu_frequency: state=748800 cpu_id=1
138453         sugov:0-576   (  576) [003] .... 82318.652174: cpu_frequency: state=748800 cpu_id=2
138454         sugov:0-576   (  576) [003] .... 82318.652179: cpu_frequency: state=748800 cpu_id=3
138455         sugov:0-576   (  576) [003] d..2 82318.652204: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
138456         rcuop/2-29    (   29) [003] d..2 82318.652245: 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
138457          <idle>-0     (-----) [003] d..1 82318.652260: cpu_idle: state=0 cpu_id=3
138458  surfaceflinger-8858  ( 8858) [001] d..1 82318.652270: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138459  surfaceflinger-8858  ( 8858) [001] d..2 82318.652296: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138460          <idle>-0     (-----) [002] .n.1 82318.652301: cpu_idle: state=4294967295 cpu_id=2
138461          <idle>-0     (-----) [002] d..2 82318.652314: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
138462   sfEventThread-8882  ( 8858) [002] d..2 82318.652364: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138463          <idle>-0     (-----) [002] d..1 82318.652377: cpu_idle: state=0 cpu_id=2
138464  surfaceflinger-8858  ( 8858) [001] ...1 82318.652533: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
138465  surfaceflinger-8858  ( 8858) [001] ...1 82318.652544: tracing_mark_write: E|8858
138466  surfaceflinger-8858  ( 8858) [001] .... 82318.652618: binder_transaction: transaction=1573053 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
138467  surfaceflinger-8858  ( 8858) [001] .... 82318.652625: binder_transaction_alloc_buf: transaction=1573053 data_size=540 offsets_size=96
138468  surfaceflinger-8858  ( 8858) [001] ...2 82318.652655: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
138469  surfaceflinger-8858  ( 8858) [001] d..4 82318.652663: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
138470  surfaceflinger-8858  ( 8858) [001] d..5 82318.652689: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
138471          <idle>-0     (-----) [002] .n.1 82318.652694: cpu_idle: state=4294967295 cpu_id=2
138472          <idle>-0     (-----) [002] d..2 82318.652706: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
138473 [email protected]   (  619) [002] .... 82318.652719: binder_transaction_received: transaction=1573053
138474  surfaceflinger-8858  ( 8858) [001] d..2 82318.652732: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138475          <idle>-0     (-----) [001] d..1 82318.652756: cpu_idle: state=0 cpu_id=1
138476 [email protected]   (  619) [002] ...1 82318.652778: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
138477 [email protected]   (  619) [002] ...1 82318.652913: tracing_mark_write: B|619|HWCSession::PresentDisplay::
138478 [email protected]   (  619) [002] ...1 82318.653118: tracing_mark_write: B|619|HWDeviceDRM::Commit::
138479 [email protected]   (  619) [002] ...1 82318.653134: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
138480 [email protected]   (  619) [002] d..2 82318.653828: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138481 [email protected]   (  619) [002] d..3 82318.653861: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138482          <idle>-0     (-----) [000] .n.1 82318.653866: cpu_idle: state=4294967295 cpu_id=0
138483          <idle>-0     (-----) [000] d..2 82318.653881: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
138484 [email protected]   (  619) [002] ...1 82318.653986: tracing_mark_write: E|619
138485 [email protected]   (  619) [002] ...1 82318.653994: tracing_mark_write: E|619
138486 [email protected]   (  619) [002] ...1 82318.654066: tracing_mark_write: E|619
138487 [email protected]   (  619) [002] ...1 82318.654120: tracing_mark_write: E|619
138488 [email protected]   (  619) [002] .... 82318.654140: binder_transaction: transaction=1573054 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
138489 [email protected]   (  619) [002] .... 82318.654146: binder_transaction_alloc_buf: transaction=1573054 data_size=576 offsets_size=112
138490 [email protected]   (  619) [002] d..2 82318.654172: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138491 [email protected]   (  619) [002] d..3 82318.654197: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138492 [email protected]   (  619) [002] .... 82318.654203: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
138493          <idle>-0     (-----) [001] .n.1 82318.654204: cpu_idle: state=4294967295 cpu_id=1
138494          <idle>-0     (-----) [001] d..2 82318.654218: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
138495  surfaceflinger-8858  ( 8858) [001] .... 82318.654230: binder_transaction_received: transaction=1573054
138496 [email protected]   (  619) [002] d..2 82318.654313: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138497          <idle>-0     (-----) [002] d..1 82318.654336: cpu_idle: state=0 cpu_id=2
138498 crtc_commit:111-321   (  321) [000] d..2 82318.654360: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
138499          <idle>-0     (-----) [000] d..1 82318.654381: cpu_idle: state=0 cpu_id=0
138500  surfaceflinger-8858  ( 8858) [001] d..2 82318.654758: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138501          <idle>-0     (-----) [001] d..1 82318.654784: cpu_idle: state=0 cpu_id=1
138502          <idle>-0     (-----) [002] d..2 82318.658138: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
138503          <idle>-0     (-----) [002] dn.3 82318.658158: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
138504          <idle>-0     (-----) [002] .n.1 82318.658164: cpu_idle: state=4294967295 cpu_id=2
138505          <idle>-0     (-----) [002] d..2 82318.658184: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
138506     ksoftirqd/2-26    (   26) [002] d..2 82318.658227: 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
138507          <idle>-0     (-----) [002] d..1 82318.658238: cpu_idle: state=0 cpu_id=2
138508          <idle>-0     (-----) [002] d.s2 82318.658470: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
138509          <idle>-0     (-----) [002] dns3 82318.658490: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
138510          <idle>-0     (-----) [002] dns3 82318.658498: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
138511          <idle>-0     (-----) [002] dns4 82318.658511: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
138512          <idle>-0     (-----) [002] .n.1 82318.658533: cpu_idle: state=4294967295 cpu_id=2
138513          <idle>-0     (-----) [002] d..2 82318.658545: 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
138514     rcu_preempt-7     (    7) [002] d..2 82318.658560: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
138515     rcu_preempt-7     (    7) [002] d..3 82318.658605: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
138516     rcu_preempt-7     (    7) [002] d..2 82318.658624: 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
138517         rcuop/0-10    (   10) [002] d..2 82318.658631: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
138518         rcuop/0-10    (   10) [002] d..3 82318.658670: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
138519         rcuop/0-10    (   10) [002] d..2 82318.658700: 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
138520         rcuop/1-21    (   21) [002] d..2 82318.658719: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138521  kworker/u16:15-1311  ( 1311) [002] d..2 82318.658839: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138522          <idle>-0     (-----) [002] d..1 82318.658859: cpu_idle: state=0 cpu_id=2
138523          <idle>-0     (-----) [000] d.h5 82318.659519: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138524          <idle>-0     (-----) [000] d.h6 82318.659545: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138525          <idle>-0     (-----) [000] d.h5 82318.659551: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138526          <idle>-0     (-----) [003] .n.1 82318.659552: cpu_idle: state=4294967295 cpu_id=3
138527          <idle>-0     (-----) [000] dnh6 82318.659560: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138528          <idle>-0     (-----) [003] d..2 82318.659565: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
138529          <idle>-0     (-----) [000] .n.1 82318.659575: cpu_idle: state=4294967295 cpu_id=0
138530          <idle>-0     (-----) [000] d..2 82318.659589: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
138531  crtc_event:111-322   (  322) [003] d..2 82318.659603: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138532          <idle>-0     (-----) [003] d..1 82318.659614: cpu_idle: state=0 cpu_id=3
138533 crtc_commit:111-321   (  321) [000] d..2 82318.659712: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
138534          <idle>-0     (-----) [000] d..1 82318.659726: cpu_idle: state=0 cpu_id=0
138535          <idle>-0     (-----) [000] d.H5 82318.661851: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138536          <idle>-0     (-----) [000] dnH6 82318.661865: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138537          <idle>-0     (-----) [000] dns3 82318.661879: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138538          <idle>-0     (-----) [000] dns4 82318.661894: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138539          <idle>-0     (-----) [003] .n.1 82318.661900: cpu_idle: state=4294967295 cpu_id=3
138540          <idle>-0     (-----) [003] d..2 82318.661912: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
138541          <idle>-0     (-----) [000] .n.1 82318.661917: cpu_idle: state=4294967295 cpu_id=0
138542          <idle>-0     (-----) [000] d..2 82318.661927: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
138543  crtc_event:111-322   (  322) [003] d..2 82318.661948: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138544          <idle>-0     (-----) [003] d..1 82318.661958: cpu_idle: state=0 cpu_id=3
138545 crtc_commit:111-321   (  321) [000] d..2 82318.662008: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138546          <idle>-0     (-----) [000] d..1 82318.662027: cpu_idle: state=0 cpu_id=0
138547          <idle>-0     (-----) [000] d.h5 82318.662152: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138548          <idle>-0     (-----) [000] d.h6 82318.662172: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138549          <idle>-0     (-----) [003] .n.1 82318.662178: cpu_idle: state=4294967295 cpu_id=3
138550          <idle>-0     (-----) [003] d..2 82318.662189: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
138551          <idle>-0     (-----) [000] ...1 82318.662189: cpu_idle: state=4294967295 cpu_id=0
138552          <idle>-0     (-----) [000] d..1 82318.662196: cpu_idle: state=0 cpu_id=0
138553  crtc_event:111-322   (  322) [003] d..2 82318.662215: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138554          <idle>-0     (-----) [003] d..1 82318.662224: cpu_idle: state=0 cpu_id=3
138555          <idle>-0     (-----) [002] ...1 82318.662258: cpu_idle: state=4294967295 cpu_id=2
138556          <idle>-0     (-----) [002] d..1 82318.662265: cpu_idle: state=0 cpu_id=2
138557          <idle>-0     (-----) [001] d.s3 82318.662592: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138558          <idle>-0     (-----) [001] dns4 82318.662612: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138559          <idle>-0     (-----) [001] .n.1 82318.662631: cpu_idle: state=4294967295 cpu_id=1
138560          <idle>-0     (-----) [001] d..2 82318.662648: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138561     kworker/1:1-25249 (25249) [001] d..2 82318.662725: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138562     kworker/1:1-25249 (25249) [001] d..3 82318.662754: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138563          <idle>-0     (-----) [002] ...1 82318.662785: cpu_idle: state=4294967295 cpu_id=2
138564     kworker/1:1-25249 (25249) [001] d..2 82318.662788: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
138565          <idle>-0     (-----) [002] d..1 82318.662790: cpu_idle: state=0 cpu_id=2
138566   cds_mc_thread-16565 (16565) [001] d..2 82318.663024: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138567          <idle>-0     (-----) [001] d..1 82318.663047: cpu_idle: state=0 cpu_id=1
138568          <idle>-0     (-----) [002] ...1 82318.663368: cpu_idle: state=4294967295 cpu_id=2
138569          <idle>-0     (-----) [002] d..1 82318.663375: cpu_idle: state=0 cpu_id=2
138570          <idle>-0     (-----) [002] ...1 82318.663496: cpu_idle: state=4294967295 cpu_id=2
138571          <idle>-0     (-----) [002] d..1 82318.663502: cpu_idle: state=0 cpu_id=2
138572          <idle>-0     (-----) [002] ...1 82318.663647: cpu_idle: state=4294967295 cpu_id=2
138573          <idle>-0     (-----) [002] d..1 82318.663653: cpu_idle: state=0 cpu_id=2
138574          <idle>-0     (-----) [003] d.h2 82318.663914: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
138575          <idle>-0     (-----) [003] dnh3 82318.663934: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
138576          <idle>-0     (-----) [003] .n.1 82318.663944: cpu_idle: state=4294967295 cpu_id=3
138577          <idle>-0     (-----) [003] d..2 82318.663954: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
138578        DispSync-8879  ( 8858) [003] d..1 82318.663970: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
138579        DispSync-8879  ( 8858) [003] d..2 82318.663988: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
138580          <idle>-0     (-----) [001] .n.1 82318.663996: cpu_idle: state=4294967295 cpu_id=1
138581          <idle>-0     (-----) [001] d..2 82318.664010: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
138582        DispSync-8879  ( 8858) [003] d..2 82318.664023: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138583          <idle>-0     (-----) [003] d..1 82318.664036: cpu_idle: state=0 cpu_id=3
138584  appEventThread-8881  ( 8858) [001] d..3 82318.664072: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138585          <idle>-0     (-----) [004] dnh2 82318.664104: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138586          <idle>-0     (-----) [004] .n.1 82318.664109: cpu_idle: state=4294967295 cpu_id=4
138587          <idle>-0     (-----) [004] d..2 82318.664117: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
138588  appEventThread-8881  ( 8858) [001] d..2 82318.664141: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138589          <idle>-0     (-----) [001] d..1 82318.664159: cpu_idle: state=0 cpu_id=1
138590 s.nexuslauncher-10023 (10023) [004] .... 82318.664326: binder_transaction: transaction=1573055 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
138591 s.nexuslauncher-10023 (10023) [004] .... 82318.664331: binder_transaction_alloc_buf: transaction=1573055 data_size=80 offsets_size=0
138592 s.nexuslauncher-10023 (10023) [004] d..4 82318.664336: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
138593          <idle>-0     (-----) [000] dnh2 82318.664406: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
138594          <idle>-0     (-----) [000] .n.1 82318.664412: cpu_idle: state=4294967295 cpu_id=0
138595          <idle>-0     (-----) [000] d..2 82318.664427: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
138596 s.nexuslauncher-10023 (10023) [004] d..3 82318.664429: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138597   Binder:8858_1-8871  ( 8858) [000] .... 82318.664437: binder_transaction_received: transaction=1573055
138598 s.nexuslauncher-10023 (10023) [004] d..4 82318.664445: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138599          <idle>-0     (-----) [005] .n.1 82318.664450: cpu_idle: state=4294967295 cpu_id=5
138600          <idle>-0     (-----) [005] d..2 82318.664461: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
138601   Binder:8858_1-8871  ( 8858) [000] d..1 82318.664481: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
138602    RenderThread-16607 (10023) [005] d..2 82318.664490: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
138603          <idle>-0     (-----) [005] d..1 82318.664498: cpu_idle: state=0 cpu_id=5
138604   Binder:8858_1-8871  ( 8858) [000] d..2 82318.664503: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
138605          <idle>-0     (-----) [001] .n.1 82318.664508: cpu_idle: state=4294967295 cpu_id=1
138606          <idle>-0     (-----) [001] d..2 82318.664521: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
138607   Binder:8858_1-8871  ( 8858) [000] d..2 82318.664561: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138608  appEventThread-8881  ( 8858) [001] d..2 82318.664570: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138609          <idle>-0     (-----) [000] d..1 82318.664580: cpu_idle: state=0 cpu_id=0
138610          <idle>-0     (-----) [001] d..1 82318.664584: cpu_idle: state=0 cpu_id=1
138611 s.nexuslauncher-10023 (10023) [004] d..3 82318.664659: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138612 s.nexuslauncher-10023 (10023) [004] d..4 82318.664678: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138613          <idle>-0     (-----) [005] .n.1 82318.664683: cpu_idle: state=4294967295 cpu_id=5
138614          <idle>-0     (-----) [005] d..2 82318.664690: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
138615 s.nexuslauncher-10023 (10023) [004] d..2 82318.664704: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
138616          <idle>-0     (-----) [004] d..1 82318.664720: cpu_idle: state=0 cpu_id=4
138617    RenderThread-16607 (10023) [005] d..1 82318.664843: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138618    RenderThread-16607 (10023) [005] d..2 82318.664861: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138619          <idle>-0     (-----) [004] .n.1 82318.664868: cpu_idle: state=4294967295 cpu_id=4
138620          <idle>-0     (-----) [004] d..2 82318.664877: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
138621    RenderThread-16607 (10023) [005] .... 82318.664909: binder_transaction: transaction=1573056 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
138622    RenderThread-16607 (10023) [005] .... 82318.664913: binder_transaction_alloc_buf: transaction=1573056 data_size=104 offsets_size=0
138623    RenderThread-16607 (10023) [005] ...2 82318.664917: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
138624    RenderThread-16607 (10023) [005] d..4 82318.664920: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
138625    RenderThread-16607 (10023) [005] d..5 82318.664939: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
138626    RenderThread-16607 (10023) [005] d..2 82318.664986: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
138627 s.nexuslauncher-10023 (10023) [004] d..2 82318.664989: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
138628   Binder:8858_1-8871  ( 8858) [005] .... 82318.664998: binder_transaction_received: transaction=1573056
138629          <idle>-0     (-----) [004] d..1 82318.665000: cpu_idle: state=0 cpu_id=4
138630   Binder:8858_1-8871  ( 8858) [005] .... 82318.665057: binder_transaction: transaction=1573057 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
138631   Binder:8858_1-8871  ( 8858) [005] .... 82318.665061: binder_transaction_alloc_buf: transaction=1573057 data_size=52 offsets_size=8
138632   Binder:8858_1-8871  ( 8858) [005] d..2 82318.665068: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138633   Binder:8858_1-8871  ( 8858) [005] d..3 82318.665080: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138634   Binder:8858_1-8871  ( 8858) [005] .... 82318.665082: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
138635   Binder:8858_1-8871  ( 8858) [005] d..2 82318.665092: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
138636    RenderThread-16607 (10023) [005] .... 82318.665101: binder_transaction_received: transaction=1573057
138637          <idle>-0     (-----) [002] d.s2 82318.665143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
138638          <idle>-0     (-----) [002] dns3 82318.665167: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
138639          <idle>-0     (-----) [002] .n.1 82318.665181: cpu_idle: state=4294967295 cpu_id=2
138640          <idle>-0     (-----) [002] d..2 82318.665198: 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
138641     rcu_preempt-7     (    7) [002] d..2 82318.665241: 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
138642          <idle>-0     (-----) [002] d..1 82318.665256: cpu_idle: state=0 cpu_id=2
138643    RenderThread-16607 (10023) [005] d..2 82318.666391: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
138644   Binder:8858_1-8871  ( 8858) [005] d..2 82318.666460: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
138645          <idle>-0     (-----) [005] d..1 82318.666475: cpu_idle: state=0 cpu_id=5
138646          <idle>-0     (-----) [005] d.h2 82318.666488: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138647          <idle>-0     (-----) [005] d.h3 82318.666496: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
138648          <idle>-0     (-----) [005] dnh3 82318.666500: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138649          <idle>-0     (-----) [005] .n.1 82318.666506: cpu_idle: state=4294967295 cpu_id=5
138650          <idle>-0     (-----) [005] d..2 82318.666515: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
138651    RenderThread-16607 (10023) [005] .... 82318.666671: binder_transaction: transaction=1573058 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
138652    RenderThread-16607 (10023) [005] .... 82318.666675: binder_transaction_alloc_buf: transaction=1573058 data_size=192 offsets_size=8
138653    RenderThread-16607 (10023) [005] ...2 82318.666682: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
138654    RenderThread-16607 (10023) [005] d..4 82318.666685: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
138655    RenderThread-16607 (10023) [005] d..5 82318.666697: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
138656    RenderThread-16607 (10023) [005] d..2 82318.666709: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
138657   Binder:8858_1-8871  ( 8858) [005] .... 82318.666720: binder_transaction_received: transaction=1573058
138658   Binder:8858_1-8871  ( 8858) [005] .... 82318.666838: binder_transaction: transaction=1573059 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
138659   Binder:8858_1-8871  ( 8858) [005] .... 82318.666842: binder_transaction_alloc_buf: transaction=1573059 data_size=68 offsets_size=0
138660   Binder:8858_1-8871  ( 8858) [005] d..2 82318.666845: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138661   Binder:8858_1-8871  ( 8858) [005] d..3 82318.666855: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138662   Binder:8858_1-8871  ( 8858) [005] .... 82318.666858: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
138663   Binder:8858_1-8871  ( 8858) [005] d..2 82318.666889: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
138664    RenderThread-16607 (10023) [005] .... 82318.666899: binder_transaction_received: transaction=1573059
138665    RenderThread-16607 (10023) [005] d..2 82318.666970: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
138666          <idle>-0     (-----) [005] d..1 82318.666988: cpu_idle: state=0 cpu_id=5
138667          <idle>-0     (-----) [002] ...1 82318.667176: cpu_idle: state=4294967295 cpu_id=2
138668          <idle>-0     (-----) [002] d..1 82318.667183: cpu_idle: state=0 cpu_id=2
138669          <idle>-0     (-----) [005] ...1 82318.667192: cpu_idle: state=4294967295 cpu_id=5
138670          <idle>-0     (-----) [005] d..1 82318.667196: cpu_idle: state=0 cpu_id=5
138671          <idle>-0     (-----) [001] d.s3 82318.667447: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138672          <idle>-0     (-----) [001] dns4 82318.667462: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138673          <idle>-0     (-----) [001] .n.1 82318.667480: cpu_idle: state=4294967295 cpu_id=1
138674          <idle>-0     (-----) [001] d..2 82318.667497: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138675     kworker/1:1-25249 (25249) [001] d..2 82318.667557: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=003
138676     kworker/1:1-25249 (25249) [001] dn.3 82318.667611: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
138677     kworker/1:1-25249 (25249) [001] d..2 82318.667623: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=R+ ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
138678 wlan_logging_th-647   (  647) [001] d..2 82318.667654: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
138679 wlan_logging_th-647   (  647) [001] d..3 82318.667676: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
138680 wlan_logging_th-647   (  647) [001] d..2 82318.667706: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138681     kworker/1:1-25249 (25249) [001] d..2 82318.667720: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138682     kworker/1:1-25249 (25249) [001] d..3 82318.667735: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138683     kworker/1:1-25249 (25249) [001] d..2 82318.667764: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
138684          <idle>-0     (-----) [003] d.h2 82318.667923: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
138685          <idle>-0     (-----) [000] d.h3 82318.667928: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
138686          <idle>-0     (-----) [003] dnh3 82318.667937: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
138687          <idle>-0     (-----) [003] .n.1 82318.667946: cpu_idle: state=4294967295 cpu_id=3
138688          <idle>-0     (-----) [000] dnh4 82318.667946: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
138689   cds_mc_thread-16565 (16565) [001] d..2 82318.667956: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
138690          <idle>-0     (-----) [003] d..2 82318.667958: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
138691          <idle>-0     (-----) [000] .n.1 82318.667961: cpu_idle: state=4294967295 cpu_id=0
138692        DispSync-8879  ( 8858) [003] d..1 82318.667972: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138693          <idle>-0     (-----) [000] d..2 82318.667974: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
138694        DispSync-8879  ( 8858) [003] d..2 82318.667989: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138695          <idle>-0     (-----) [002] .n.1 82318.667995: cpu_idle: state=4294967295 cpu_id=2
138696          <idle>-0     (-----) [002] d..2 82318.668010: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
138697        DispSync-8879  ( 8858) [003] d..2 82318.668023: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138698 kgsl_worker_thr-258   (  258) [000] d..2 82318.668028: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
138699          <idle>-0     (-----) [003] d..1 82318.668037: cpu_idle: state=0 cpu_id=3
138700   sfEventThread-8882  ( 8858) [002] d..3 82318.668065: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138701 kgsl_worker_thr-258   (  258) [000] d..3 82318.668079: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138702 [email protected] (  798) [001] d..2 82318.668084: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138703   sfEventThread-8882  ( 8858) [002] d..4 82318.668098: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138704 kgsl_worker_thr-258   (  258) [000] d..2 82318.668106: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138705          <idle>-0     (-----) [001] d..2 82318.668117: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
138706   sfEventThread-8882  ( 8858) [002] d..2 82318.668148: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138707          <idle>-0     (-----) [002] d..1 82318.668165: cpu_idle: state=0 cpu_id=2
138708  kworker/u16:15-1311  ( 1311) [000] d..2 82318.668297: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138709          <idle>-0     (-----) [000] d..1 82318.668318: cpu_idle: state=0 cpu_id=0
138710  surfaceflinger-8858  ( 8858) [001] d.s2 82318.668497: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138711  surfaceflinger-8858  ( 8858) [001] d.s3 82318.668524: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138712          <idle>-0     (-----) [000] .n.1 82318.668531: cpu_idle: state=4294967295 cpu_id=0
138713          <idle>-0     (-----) [000] d..2 82318.668550: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138714  surfaceflinger-8858  ( 8858) [001] d..1 82318.668647: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138715  surfaceflinger-8858  ( 8858) [001] d..2 82318.668670: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
138716          <idle>-0     (-----) [002] .n.1 82318.668677: cpu_idle: state=4294967295 cpu_id=2
138717          <idle>-0     (-----) [002] d..2 82318.668693: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
138718   sfEventThread-8882  ( 8858) [002] d..2 82318.668765: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138719          <idle>-0     (-----) [002] d..1 82318.668775: cpu_idle: state=0 cpu_id=2
138720  kworker/u16:15-1311  ( 1311) [000] d..2 82318.668805: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138721          <idle>-0     (-----) [000] d..1 82318.668823: cpu_idle: state=0 cpu_id=0
138722  surfaceflinger-8858  ( 8858) [001] ...1 82318.668914: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
138723  surfaceflinger-8858  ( 8858) [001] ...1 82318.668923: tracing_mark_write: E|8858
138724  surfaceflinger-8858  ( 8858) [001] .... 82318.668992: binder_transaction: transaction=1573060 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
138725  surfaceflinger-8858  ( 8858) [001] .... 82318.668999: binder_transaction_alloc_buf: transaction=1573060 data_size=540 offsets_size=96
138726  surfaceflinger-8858  ( 8858) [001] ...2 82318.669028: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
138727  surfaceflinger-8858  ( 8858) [001] d..4 82318.669036: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
138728  surfaceflinger-8858  ( 8858) [001] d..5 82318.669060: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
138729          <idle>-0     (-----) [002] .n.1 82318.669065: cpu_idle: state=4294967295 cpu_id=2
138730          <idle>-0     (-----) [002] d..2 82318.669075: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
138731 [email protected]   (  619) [002] .... 82318.669087: binder_transaction_received: transaction=1573060
138732  surfaceflinger-8858  ( 8858) [001] d..2 82318.669103: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138733          <idle>-0     (-----) [001] d..1 82318.669127: cpu_idle: state=0 cpu_id=1
138734 [email protected]   (  619) [002] ...1 82318.669146: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
138735 [email protected]   (  619) [002] ...1 82318.669287: tracing_mark_write: B|619|HWCSession::PresentDisplay::
138736 [email protected]   (  619) [002] ...1 82318.669488: tracing_mark_write: B|619|HWDeviceDRM::Commit::
138737 [email protected]   (  619) [002] ...1 82318.669504: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
138738 [email protected]   (  619) [002] d..2 82318.670194: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138739 [email protected]   (  619) [002] d..3 82318.670223: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138740          <idle>-0     (-----) [000] .n.1 82318.670230: cpu_idle: state=4294967295 cpu_id=0
138741          <idle>-0     (-----) [000] d..2 82318.670243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
138742 [email protected]   (  619) [002] ...1 82318.670352: tracing_mark_write: E|619
138743 [email protected]   (  619) [002] ...1 82318.670360: tracing_mark_write: E|619
138744 [email protected]   (  619) [002] ...1 82318.670429: tracing_mark_write: E|619
138745 [email protected]   (  619) [002] ...1 82318.670482: tracing_mark_write: E|619
138746 [email protected]   (  619) [002] .... 82318.670502: binder_transaction: transaction=1573061 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
138747 [email protected]   (  619) [002] .... 82318.670508: binder_transaction_alloc_buf: transaction=1573061 data_size=576 offsets_size=112
138748 [email protected]   (  619) [002] d..2 82318.670534: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138749 [email protected]   (  619) [002] d..3 82318.670557: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
138750 [email protected]   (  619) [002] .... 82318.670563: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
138751          <idle>-0     (-----) [001] .n.1 82318.670564: cpu_idle: state=4294967295 cpu_id=1
138752          <idle>-0     (-----) [001] d..2 82318.670578: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
138753  surfaceflinger-8858  ( 8858) [001] .... 82318.670589: binder_transaction_received: transaction=1573061
138754 [email protected]   (  619) [002] d..2 82318.670676: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138755          <idle>-0     (-----) [002] d..1 82318.670694: cpu_idle: state=0 cpu_id=2
138756 crtc_commit:111-321   (  321) [000] d..2 82318.670725: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
138757          <idle>-0     (-----) [000] d..1 82318.670745: cpu_idle: state=0 cpu_id=0
138758  surfaceflinger-8858  ( 8858) [001] d..2 82318.671177: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138759          <idle>-0     (-----) [001] d..1 82318.671203: cpu_idle: state=0 cpu_id=1
138760          <idle>-0     (-----) [002] d.s2 82318.671897: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
138761          <idle>-0     (-----) [002] dns3 82318.671923: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
138762          <idle>-0     (-----) [002] .n.1 82318.671944: cpu_idle: state=4294967295 cpu_id=2
138763          <idle>-0     (-----) [002] d..2 82318.671958: 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
138764     rcu_preempt-7     (    7) [002] d..2 82318.671970: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
138765     rcu_preempt-7     (    7) [002] d..3 82318.672015: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
138766     rcu_preempt-7     (    7) [002] d..2 82318.672035: 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
138767         rcuop/2-29    (   29) [002] d..2 82318.672078: 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
138768          <idle>-0     (-----) [002] d..1 82318.672096: cpu_idle: state=0 cpu_id=2
138769          <idle>-0     (-----) [002] ...1 82318.675031: cpu_idle: state=4294967295 cpu_id=2
138770          <idle>-0     (-----) [002] d..1 82318.675038: cpu_idle: state=0 cpu_id=2
138771          <idle>-0     (-----) [002] ...1 82318.675115: cpu_idle: state=4294967295 cpu_id=2
138772          <idle>-0     (-----) [002] d..1 82318.675121: cpu_idle: state=0 cpu_id=2
138773          <idle>-0     (-----) [002] d..2 82318.675255: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
138774          <idle>-0     (-----) [002] dn.3 82318.675272: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
138775          <idle>-0     (-----) [002] .n.1 82318.675277: cpu_idle: state=4294967295 cpu_id=2
138776          <idle>-0     (-----) [002] d..2 82318.675296: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
138777     ksoftirqd/2-26    (   26) [002] d..2 82318.675334: 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
138778          <idle>-0     (-----) [002] d..1 82318.675400: cpu_idle: state=0 cpu_id=2
138779          <idle>-0     (-----) [002] ...1 82318.675554: cpu_idle: state=4294967295 cpu_id=2
138780          <idle>-0     (-----) [002] d..1 82318.675560: cpu_idle: state=0 cpu_id=2
138781          <idle>-0     (-----) [001] d.s3 82318.675584: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138782          <idle>-0     (-----) [001] dns4 82318.675604: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138783          <idle>-0     (-----) [001] .n.1 82318.675640: cpu_idle: state=4294967295 cpu_id=1
138784          <idle>-0     (-----) [001] d..2 82318.675658: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138785     kworker/1:1-25249 (25249) [001] d..2 82318.675700: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
138786     kworker/1:1-25249 (25249) [001] d..3 82318.675719: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
138787     kworker/1:1-25249 (25249) [001] d..2 82318.675791: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138788     kworker/1:1-25249 (25249) [001] d..3 82318.675818: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138789     kworker/1:1-25249 (25249) [001] d..2 82318.675954: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
138790          <idle>-0     (-----) [000] d.h5 82318.675981: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138791          <idle>-0     (-----) [000] d.h6 82318.676006: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138792          <idle>-0     (-----) [000] d.h5 82318.676012: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138793          <idle>-0     (-----) [003] .n.1 82318.676012: cpu_idle: state=4294967295 cpu_id=3
138794          <idle>-0     (-----) [000] dnh6 82318.676022: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138795          <idle>-0     (-----) [003] d..2 82318.676025: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
138796          <idle>-0     (-----) [000] .n.1 82318.676036: cpu_idle: state=4294967295 cpu_id=0
138797          <idle>-0     (-----) [000] d..2 82318.676050: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
138798  crtc_event:111-322   (  322) [003] d..2 82318.676089: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
138799   cds_mc_thread-16565 (16565) [001] d.s3 82318.676136: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138800   cds_mc_thread-16565 (16565) [001] d.s4 82318.676156: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138801 crtc_commit:111-321   (  321) [000] d..2 82318.676166: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
138802          <idle>-0     (-----) [000] d..1 82318.676180: cpu_idle: state=0 cpu_id=0
138803 [email protected] (  798) [003] d..2 82318.676272: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138804          <idle>-0     (-----) [003] d..1 82318.676292: cpu_idle: state=0 cpu_id=3
138805   cds_mc_thread-16565 (16565) [001] d..2 82318.676318: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138806     kworker/1:1-25249 (25249) [001] d..2 82318.676366: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
138807     kworker/1:1-25249 (25249) [001] dn.3 82318.676396: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
138808     kworker/1:1-25249 (25249) [001] d..2 82318.676408: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=R+ ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
138809 wlan_logging_th-647   (  647) [001] d..2 82318.676431: sched_waking: [email protected] pid=16588 prio=120 target_cpu=003
138810 wlan_logging_th-647   (  647) [001] d..3 82318.676450: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=003
138811          <idle>-0     (-----) [003] .n.1 82318.676457: cpu_idle: state=4294967295 cpu_id=3
138812 wlan_logging_th-647   (  647) [001] d..2 82318.676473: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138813          <idle>-0     (-----) [003] d..2 82318.676474: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=16588 next_prio=120
138814     kworker/1:1-25249 (25249) [001] d..2 82318.676481: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138815     kworker/1:1-25249 (25249) [001] d..3 82318.676498: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138816     kworker/1:1-25249 (25249) [001] d..2 82318.676521: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
138817 [email protected] (  798) [003] d..2 82318.676640: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138818          <idle>-0     (-----) [003] d..1 82318.676659: cpu_idle: state=0 cpu_id=3
138819   cds_mc_thread-16565 (16565) [001] d..2 82318.676673: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138820          <idle>-0     (-----) [001] d..1 82318.676698: cpu_idle: state=0 cpu_id=1
138821          <idle>-0     (-----) [002] ...1 82318.677862: cpu_idle: state=4294967295 cpu_id=2
138822          <idle>-0     (-----) [002] d..1 82318.677869: cpu_idle: state=0 cpu_id=2
138823          <idle>-0     (-----) [001] d.s3 82318.677942: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138824          <idle>-0     (-----) [001] dns4 82318.677955: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138825          <idle>-0     (-----) [001] .n.1 82318.677972: cpu_idle: state=4294967295 cpu_id=1
138826          <idle>-0     (-----) [001] d..2 82318.677988: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138827     kworker/1:1-25249 (25249) [001] d..2 82318.678033: sched_waking: [email protected] pid=16588 prio=120 target_cpu=003
138828     kworker/1:1-25249 (25249) [001] d..3 82318.678059: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
138829     kworker/1:1-25249 (25249) [001] d..2 82318.678092: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
138830          <idle>-0     (-----) [002] ...1 82318.678162: cpu_idle: state=4294967295 cpu_id=2
138831          <idle>-0     (-----) [002] d..1 82318.678167: cpu_idle: state=0 cpu_id=2
138832 [email protected] (  798) [001] d..2 82318.678262: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138833          <idle>-0     (-----) [001] d..1 82318.678298: cpu_idle: state=0 cpu_id=1
138834          <idle>-0     (-----) [000] d.h5 82318.678327: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138835          <idle>-0     (-----) [000] dnh6 82318.678341: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
138836          <idle>-0     (-----) [000] .n.1 82318.678353: cpu_idle: state=4294967295 cpu_id=0
138837          <idle>-0     (-----) [000] d..2 82318.678361: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
138838 crtc_commit:111-321   (  321) [000] d..2 82318.678437: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138839          <idle>-0     (-----) [002] d.s2 82318.678474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
138840          <idle>-0     (-----) [000] d.s4 82318.678477: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138841          <idle>-0     (-----) [000] d.s5 82318.678497: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138842          <idle>-0     (-----) [003] .n.1 82318.678504: cpu_idle: state=4294967295 cpu_id=3
138843          <idle>-0     (-----) [003] d..2 82318.678519: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
138844          <idle>-0     (-----) [002] d.s3 82318.678525: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
138845          <idle>-0     (-----) [001] d.s3 82318.678530: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138846          <idle>-0     (-----) [002] d.s3 82318.678536: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138847          <idle>-0     (-----) [001] dns4 82318.678545: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138848          <idle>-0     (-----) [000] d..2 82318.678546: 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
138849          <idle>-0     (-----) [001] .n.1 82318.678565: cpu_idle: state=4294967295 cpu_id=1
138850  crtc_event:111-322   (  322) [003] d..2 82318.678567: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138851          <idle>-0     (-----) [003] d..1 82318.678577: cpu_idle: state=0 cpu_id=3
138852          <idle>-0     (-----) [001] d..2 82318.678585: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138853          <idle>-0     (-----) [002] dns4 82318.678585: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
138854     rcu_preempt-7     (    7) [000] d..2 82318.678587: 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
138855          <idle>-0     (-----) [002] .n.1 82318.678606: cpu_idle: state=4294967295 cpu_id=2
138856          <idle>-0     (-----) [002] d..2 82318.678619: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138857     kworker/1:1-25249 (25249) [001] d..2 82318.678620: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
138858          <idle>-0     (-----) [000] d.h6 82318.678633: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138859     kworker/1:1-25249 (25249) [001] d..3 82318.678635: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
138860          <idle>-0     (-----) [000] d.h7 82318.678652: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
138861          <idle>-0     (-----) [003] .n.1 82318.678658: cpu_idle: state=4294967295 cpu_id=3
138862     kworker/1:1-25249 (25249) [001] d..2 82318.678665: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
138863          <idle>-0     (-----) [003] d..2 82318.678669: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
138864  crtc_event:111-322   (  322) [003] d..2 82318.678700: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138865          <idle>-0     (-----) [000] d..1 82318.678707: cpu_idle: state=0 cpu_id=0
138866          <idle>-0     (-----) [003] d..1 82318.678710: cpu_idle: state=0 cpu_id=3
138867          <idle>-0     (-----) [000] ...1 82318.678724: cpu_idle: state=4294967295 cpu_id=0
138868          <idle>-0     (-----) [000] d..1 82318.678730: cpu_idle: state=0 cpu_id=0
138869 [email protected] (  798) [001] d..2 82318.678860: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138870  kworker/u16:15-1311  ( 1311) [002] d..2 82318.678877: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
138871          <idle>-0     (-----) [001] d..1 82318.678882: cpu_idle: state=0 cpu_id=1
138872          <idle>-0     (-----) [002] d..1 82318.678897: cpu_idle: state=0 cpu_id=2
138873          <idle>-0     (-----) [001] d.s3 82318.679716: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138874          <idle>-0     (-----) [001] dns4 82318.679730: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138875          <idle>-0     (-----) [001] .n.1 82318.679747: cpu_idle: state=4294967295 cpu_id=1
138876          <idle>-0     (-----) [001] d..2 82318.679762: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138877     kworker/1:1-25249 (25249) [001] d..2 82318.679795: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
138878     kworker/1:1-25249 (25249) [001] d..3 82318.679808: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
138879     kworker/1:1-25249 (25249) [001] d..2 82318.679838: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
138880 [email protected] (  798) [001] d.s2 82318.680040: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138881 [email protected] (  798) [001] dns3 82318.680072: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
138882          <idle>-0     (-----) [002] ...1 82318.680088: cpu_idle: state=4294967295 cpu_id=2
138883          <idle>-0     (-----) [002] d..1 82318.680093: cpu_idle: state=0 cpu_id=2
138884 [email protected] (  798) [001] dns2 82318.680099: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138885 [email protected] (  798) [001] dns3 82318.680111: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
138886 [email protected] (  798) [001] d..2 82318.680133: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
138887   cds_mc_thread-16565 (16565) [001] d..2 82318.680214: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
138888     kworker/1:1-25249 (25249) [001] d..2 82318.680267: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
138889          <idle>-0     (-----) [002] ...1 82318.680356: cpu_idle: state=4294967295 cpu_id=2
138890          <idle>-0     (-----) [002] d..1 82318.680365: cpu_idle: state=0 cpu_id=2
138891          <idle>-0     (-----) [003] d.h2 82318.680386: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
138892          <idle>-0     (-----) [003] dnh3 82318.680406: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
138893          <idle>-0     (-----) [003] .n.1 82318.680417: cpu_idle: state=4294967295 cpu_id=3
138894          <idle>-0     (-----) [003] d..2 82318.680428: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
138895        DispSync-8879  ( 8858) [003] d..1 82318.680450: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
138896        DispSync-8879  ( 8858) [003] d..2 82318.680480: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
138897          <idle>-0     (-----) [000] .n.1 82318.680485: cpu_idle: state=4294967295 cpu_id=0
138898          <idle>-0     (-----) [000] d..2 82318.680499: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
138899        DispSync-8879  ( 8858) [003] d..2 82318.680520: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138900          <idle>-0     (-----) [003] d..1 82318.680535: cpu_idle: state=0 cpu_id=3
138901 [email protected] (  798) [001] d..2 82318.680550: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
138902  appEventThread-8881  ( 8858) [000] d..3 82318.680562: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138903          <idle>-0     (-----) [001] d..1 82318.680577: cpu_idle: state=0 cpu_id=1
138904          <idle>-0     (-----) [004] dnh2 82318.680594: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138905          <idle>-0     (-----) [004] .n.1 82318.680599: cpu_idle: state=4294967295 cpu_id=4
138906          <idle>-0     (-----) [004] d..2 82318.680607: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
138907  appEventThread-8881  ( 8858) [000] d..2 82318.680632: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138908          <idle>-0     (-----) [000] d..1 82318.680650: cpu_idle: state=0 cpu_id=0
138909 s.nexuslauncher-10023 (10023) [004] .... 82318.680813: binder_transaction: transaction=1573062 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
138910 s.nexuslauncher-10023 (10023) [004] .... 82318.680818: binder_transaction_alloc_buf: transaction=1573062 data_size=80 offsets_size=0
138911 s.nexuslauncher-10023 (10023) [004] d..4 82318.680823: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
138912          <idle>-0     (-----) [000] dnh2 82318.680891: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
138913          <idle>-0     (-----) [000] .n.1 82318.680899: cpu_idle: state=4294967295 cpu_id=0
138914 s.nexuslauncher-10023 (10023) [004] d..3 82318.680910: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138915          <idle>-0     (-----) [000] d..2 82318.680912: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
138916   Binder:8858_1-8871  ( 8858) [000] .... 82318.680922: binder_transaction_received: transaction=1573062
138917 s.nexuslauncher-10023 (10023) [004] d..4 82318.680926: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138918          <idle>-0     (-----) [005] .n.1 82318.680931: cpu_idle: state=4294967295 cpu_id=5
138919          <idle>-0     (-----) [005] d..2 82318.680943: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
138920   Binder:8858_1-8871  ( 8858) [000] d..1 82318.680961: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
138921    RenderThread-16607 (10023) [005] d..2 82318.680978: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
138922          <idle>-0     (-----) [005] d..1 82318.680986: cpu_idle: state=0 cpu_id=5
138923   Binder:8858_1-8871  ( 8858) [000] d..2 82318.680991: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
138924          <idle>-0     (-----) [003] .n.1 82318.680997: cpu_idle: state=4294967295 cpu_id=3
138925          <idle>-0     (-----) [003] d..2 82318.681010: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
138926   Binder:8858_1-8871  ( 8858) [000] d..2 82318.681046: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138927          <idle>-0     (-----) [000] d..1 82318.681064: cpu_idle: state=0 cpu_id=0
138928  appEventThread-8881  ( 8858) [003] d..2 82318.681078: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
138929          <idle>-0     (-----) [003] d..1 82318.681090: cpu_idle: state=0 cpu_id=3
138930 s.nexuslauncher-10023 (10023) [004] d..3 82318.681143: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138931 s.nexuslauncher-10023 (10023) [004] d..4 82318.681161: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138932          <idle>-0     (-----) [005] .n.1 82318.681165: cpu_idle: state=4294967295 cpu_id=5
138933          <idle>-0     (-----) [005] d..2 82318.681173: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
138934 s.nexuslauncher-10023 (10023) [004] d..2 82318.681186: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
138935          <idle>-0     (-----) [004] d..1 82318.681202: cpu_idle: state=0 cpu_id=4
138936    RenderThread-16607 (10023) [005] d..1 82318.681329: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138937    RenderThread-16607 (10023) [005] d..2 82318.681347: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
138938          <idle>-0     (-----) [004] .n.1 82318.681354: cpu_idle: state=4294967295 cpu_id=4
138939          <idle>-0     (-----) [004] d..2 82318.681364: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
138940    RenderThread-16607 (10023) [005] .... 82318.681398: binder_transaction: transaction=1573063 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
138941    RenderThread-16607 (10023) [005] .... 82318.681403: binder_transaction_alloc_buf: transaction=1573063 data_size=104 offsets_size=0
138942    RenderThread-16607 (10023) [005] ...2 82318.681407: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
138943    RenderThread-16607 (10023) [005] d..4 82318.681411: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
138944    RenderThread-16607 (10023) [005] d..5 82318.681430: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
138945 s.nexuslauncher-10023 (10023) [004] d..2 82318.681470: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
138946    RenderThread-16607 (10023) [005] d..2 82318.681477: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
138947          <idle>-0     (-----) [004] d..1 82318.681481: cpu_idle: state=0 cpu_id=4
138948   Binder:8858_1-8871  ( 8858) [005] .... 82318.681490: binder_transaction_received: transaction=1573063
138949   Binder:8858_1-8871  ( 8858) [005] .... 82318.681552: binder_transaction: transaction=1573064 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
138950   Binder:8858_1-8871  ( 8858) [005] .... 82318.681556: binder_transaction_alloc_buf: transaction=1573064 data_size=52 offsets_size=8
138951   Binder:8858_1-8871  ( 8858) [005] d..2 82318.681563: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
138952   Binder:8858_1-8871  ( 8858) [005] d..3 82318.681574: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
138953   Binder:8858_1-8871  ( 8858) [005] .... 82318.681576: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
138954   Binder:8858_1-8871  ( 8858) [005] d..2 82318.681586: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
138955    RenderThread-16607 (10023) [005] .... 82318.681595: binder_transaction_received: transaction=1573064
138956    RenderThread-16607 (10023) [005] d.s2 82318.681814: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
138957          <idle>-0     (-----) [000] dnh2 82318.681859: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138958          <idle>-0     (-----) [000] .n.1 82318.681867: cpu_idle: state=4294967295 cpu_id=0
138959          <idle>-0     (-----) [002] ...1 82318.681871: cpu_idle: state=4294967295 cpu_id=2
138960          <idle>-0     (-----) [002] d..1 82318.681877: cpu_idle: state=0 cpu_id=2
138961          <idle>-0     (-----) [000] d..2 82318.681883: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138962  kworker/u16:15-1311  ( 1311) [000] d..2 82318.682113: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
138963          <idle>-0     (-----) [000] d..1 82318.682126: cpu_idle: state=0 cpu_id=0
138964          <idle>-0     (-----) [001] d.s3 82318.682144: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138965          <idle>-0     (-----) [001] d.s4 82318.682160: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
138966          <idle>-0     (-----) [001] d.s4 82318.682172: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138967          <idle>-0     (-----) [000] .n.1 82318.682178: cpu_idle: state=4294967295 cpu_id=0
138968          <idle>-0     (-----) [001] ...1 82318.682187: cpu_idle: state=4294967295 cpu_id=1
138969          <idle>-0     (-----) [000] d..2 82318.682190: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138970          <idle>-0     (-----) [001] d..1 82318.682194: cpu_idle: state=0 cpu_id=1
138971  kworker/u16:15-1311  ( 1311) [000] d..2 82318.682226: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
138972          <idle>-0     (-----) [000] d..1 82318.682234: cpu_idle: state=0 cpu_id=0
138973    RenderThread-16607 (10023) [005] d.h2 82318.682455: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138974          <idle>-0     (-----) [000] dnh2 82318.682485: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
138975          <idle>-0     (-----) [000] .n.1 82318.682492: cpu_idle: state=4294967295 cpu_id=0
138976          <idle>-0     (-----) [000] d..2 82318.682501: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
138977  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682533: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
138978  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682552: clk_disable: gcc_ufs_phy_phy_aux_clk
138979  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682564: clk_disable: gcc_ufs_phy_phy_aux_clk_src
138980  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682577: clk_disable: gcc_ufs_mem_clkref_clk
138981  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682595: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
138982  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682601: clk_disable: gcc_ufs_phy_axi_clk
138983  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682612: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
138984  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682618: clk_disable: gcc_aggre_ufs_phy_axi_clk
138985  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682626: clk_disable: gcc_ufs_phy_axi_clk_src
138986  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682635: clk_disable: gcc_ufs_phy_ahb_clk
138987  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682644: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
138988  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682650: clk_disable: gcc_ufs_phy_unipro_core_clk
138989  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682658: clk_disable: gcc_ufs_phy_unipro_core_clk_src
138990  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682667: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
138991  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682672: clk_disable: gcc_ufs_phy_ice_core_clk
138992  kworker/u16:15-1311  ( 1311) [000] d..1 82318.682680: clk_disable: gcc_ufs_phy_ice_core_clk_src
138993          <idle>-0     (-----) [001] ...1 82318.682827: cpu_idle: state=4294967295 cpu_id=1
138994          <idle>-0     (-----) [001] d..1 82318.682835: cpu_idle: state=0 cpu_id=1
138995    RenderThread-16607 (10023) [005] d..2 82318.683007: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
138996  kworker/u16:15-1311  ( 1311) [000] d..2 82318.683068: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
138997   Binder:8858_1-8871  ( 8858) [005] d..2 82318.683078: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
138998          <idle>-0     (-----) [000] d..1 82318.683084: cpu_idle: state=0 cpu_id=0
138999          <idle>-0     (-----) [005] d..1 82318.683093: cpu_idle: state=0 cpu_id=5
139000          <idle>-0     (-----) [001] d.s3 82318.683106: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139001          <idle>-0     (-----) [005] d.h2 82318.683106: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139002          <idle>-0     (-----) [005] d.h3 82318.683114: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
139003          <idle>-0     (-----) [005] dnh3 82318.683118: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139004          <idle>-0     (-----) [001] d.s4 82318.683119: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
139005          <idle>-0     (-----) [005] .n.1 82318.683125: cpu_idle: state=4294967295 cpu_id=5
139006          <idle>-0     (-----) [001] d.s4 82318.683129: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139007          <idle>-0     (-----) [005] d..2 82318.683134: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139008          <idle>-0     (-----) [000] .n.1 82318.683137: cpu_idle: state=4294967295 cpu_id=0
139009          <idle>-0     (-----) [001] ...1 82318.683141: cpu_idle: state=4294967295 cpu_id=1
139010          <idle>-0     (-----) [001] d..1 82318.683147: cpu_idle: state=0 cpu_id=1
139011          <idle>-0     (-----) [000] d..2 82318.683150: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139012  kworker/u16:15-1311  ( 1311) [000] d..2 82318.683192: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139013          <idle>-0     (-----) [000] d..1 82318.683201: cpu_idle: state=0 cpu_id=0
139014    RenderThread-16607 (10023) [005] .... 82318.683294: binder_transaction: transaction=1573065 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
139015    RenderThread-16607 (10023) [005] .... 82318.683298: binder_transaction_alloc_buf: transaction=1573065 data_size=192 offsets_size=8
139016    RenderThread-16607 (10023) [005] ...2 82318.683306: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
139017    RenderThread-16607 (10023) [005] d..4 82318.683309: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139018    RenderThread-16607 (10023) [005] d..5 82318.683321: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139019    RenderThread-16607 (10023) [005] d..2 82318.683333: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
139020   Binder:8858_1-8871  ( 8858) [005] .... 82318.683344: binder_transaction_received: transaction=1573065
139021   Binder:8858_1-8871  ( 8858) [005] .... 82318.683468: binder_transaction: transaction=1573066 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
139022   Binder:8858_1-8871  ( 8858) [005] .... 82318.683472: binder_transaction_alloc_buf: transaction=1573066 data_size=68 offsets_size=0
139023   Binder:8858_1-8871  ( 8858) [005] d..2 82318.683474: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139024   Binder:8858_1-8871  ( 8858) [005] d..3 82318.683486: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139025   Binder:8858_1-8871  ( 8858) [005] .... 82318.683488: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
139026   Binder:8858_1-8871  ( 8858) [005] d..2 82318.683519: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
139027    RenderThread-16607 (10023) [005] .... 82318.683529: binder_transaction_received: transaction=1573066
139028    RenderThread-16607 (10023) [005] d..2 82318.683601: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139029          <idle>-0     (-----) [005] d..1 82318.683619: cpu_idle: state=0 cpu_id=5
139030          <idle>-0     (-----) [005] ...1 82318.683822: cpu_idle: state=4294967295 cpu_id=5
139031          <idle>-0     (-----) [005] d..1 82318.683826: cpu_idle: state=0 cpu_id=5
139032          <idle>-0     (-----) [003] d.h2 82318.684405: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
139033          <idle>-0     (-----) [003] dnh3 82318.684420: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
139034          <idle>-0     (-----) [003] .n.1 82318.684430: cpu_idle: state=4294967295 cpu_id=3
139035          <idle>-0     (-----) [003] d..2 82318.684443: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
139036        DispSync-8879  ( 8858) [003] d..1 82318.684461: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139037        DispSync-8879  ( 8858) [003] d..2 82318.684481: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139038          <idle>-0     (-----) [002] .n.1 82318.684487: cpu_idle: state=4294967295 cpu_id=2
139039          <idle>-0     (-----) [002] d..2 82318.684501: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
139040        DispSync-8879  ( 8858) [003] d..2 82318.684516: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139041          <idle>-0     (-----) [003] d..1 82318.684532: cpu_idle: state=0 cpu_id=3
139042          <idle>-0     (-----) [000] d.h3 82318.684552: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
139043   sfEventThread-8882  ( 8858) [002] d..3 82318.684556: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139044          <idle>-0     (-----) [000] dnh4 82318.684573: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
139045   sfEventThread-8882  ( 8858) [002] d..4 82318.684583: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139046          <idle>-0     (-----) [000] .n.1 82318.684589: cpu_idle: state=4294967295 cpu_id=0
139047          <idle>-0     (-----) [001] .n.1 82318.684589: cpu_idle: state=4294967295 cpu_id=1
139048          <idle>-0     (-----) [000] d..2 82318.684600: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
139049          <idle>-0     (-----) [001] d..2 82318.684604: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
139050   sfEventThread-8882  ( 8858) [002] d..2 82318.684633: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139051          <idle>-0     (-----) [002] d..1 82318.684651: cpu_idle: state=0 cpu_id=2
139052 kgsl_worker_thr-258   (  258) [000] d..2 82318.684660: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139053 kgsl_worker_thr-258   (  258) [000] d..3 82318.684684: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139054 kgsl_worker_thr-258   (  258) [000] d..2 82318.684712: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139055  kworker/u16:15-1311  ( 1311) [000] d..2 82318.684903: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139056          <idle>-0     (-----) [000] d..1 82318.684918: cpu_idle: state=0 cpu_id=0
139057  surfaceflinger-8858  ( 8858) [001] d..1 82318.685027: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139058  surfaceflinger-8858  ( 8858) [001] d..2 82318.685055: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139059          <idle>-0     (-----) [002] .n.1 82318.685061: cpu_idle: state=4294967295 cpu_id=2
139060          <idle>-0     (-----) [002] d..2 82318.685075: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
139061   sfEventThread-8882  ( 8858) [002] d..2 82318.685117: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139062          <idle>-0     (-----) [000] d.s2 82318.685140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139063          <idle>-0     (-----) [000] dns3 82318.685162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139064          <idle>-0     (-----) [000] .n.1 82318.685176: cpu_idle: state=4294967295 cpu_id=0
139065          <idle>-0     (-----) [002] d..1 82318.685178: cpu_idle: state=0 cpu_id=2
139066          <idle>-0     (-----) [000] d..2 82318.685187: 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
139067     rcu_preempt-7     (    7) [000] d..2 82318.685200: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
139068     rcu_preempt-7     (    7) [000] d..3 82318.685249: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139069     rcu_preempt-7     (    7) [000] d..2 82318.685263: 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
139070         rcuop/0-10    (   10) [000] d..2 82318.685270: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
139071         rcuop/0-10    (   10) [000] d..3 82318.685308: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139072         rcuop/0-10    (   10) [000] d..2 82318.685313: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139073         rcuop/0-10    (   10) [000] d..3 82318.685326: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139074         rcuop/0-10    (   10) [000] d..2 82318.685337: 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
139075  surfaceflinger-8858  ( 8858) [001] ...1 82318.685352: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
139076  surfaceflinger-8858  ( 8858) [001] ...1 82318.685362: tracing_mark_write: E|8858
139077         rcuop/1-21    (   21) [000] d..2 82318.685367: 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
139078     rcu_preempt-7     (    7) [000] d..2 82318.685399: 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
139079          <idle>-0     (-----) [000] d..1 82318.685418: cpu_idle: state=0 cpu_id=0
139080  surfaceflinger-8858  ( 8858) [001] .... 82318.685434: binder_transaction: transaction=1573067 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
139081  surfaceflinger-8858  ( 8858) [001] .... 82318.685440: binder_transaction_alloc_buf: transaction=1573067 data_size=540 offsets_size=96
139082  surfaceflinger-8858  ( 8858) [001] ...2 82318.685469: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
139083  surfaceflinger-8858  ( 8858) [001] d..4 82318.685478: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
139084  surfaceflinger-8858  ( 8858) [001] d..5 82318.685506: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
139085          <idle>-0     (-----) [002] .n.1 82318.685512: cpu_idle: state=4294967295 cpu_id=2
139086          <idle>-0     (-----) [002] d..2 82318.685525: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
139087 [email protected]   (  619) [002] .... 82318.685539: binder_transaction_received: transaction=1573067
139088  surfaceflinger-8858  ( 8858) [001] d..2 82318.685548: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139089          <idle>-0     (-----) [001] d..1 82318.685573: cpu_idle: state=0 cpu_id=1
139090 [email protected]   (  619) [002] ...1 82318.685598: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
139091 [email protected]   (  619) [002] ...1 82318.685737: tracing_mark_write: B|619|HWCSession::PresentDisplay::
139092 [email protected]   (  619) [002] ...1 82318.685942: tracing_mark_write: B|619|HWDeviceDRM::Commit::
139093 [email protected]   (  619) [002] ...1 82318.685959: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
139094 [email protected]   (  619) [002] d..2 82318.686664: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139095 [email protected]   (  619) [002] d..3 82318.686694: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139096          <idle>-0     (-----) [000] .n.1 82318.686699: cpu_idle: state=4294967295 cpu_id=0
139097          <idle>-0     (-----) [000] d..2 82318.686714: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139098 [email protected]   (  619) [002] ...1 82318.686825: tracing_mark_write: E|619
139099 [email protected]   (  619) [002] ...1 82318.686834: tracing_mark_write: E|619
139100 [email protected]   (  619) [002] ...1 82318.686906: tracing_mark_write: E|619
139101 [email protected]   (  619) [002] ...1 82318.686962: tracing_mark_write: E|619
139102 [email protected]   (  619) [002] .... 82318.686982: binder_transaction: transaction=1573068 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
139103 [email protected]   (  619) [002] .... 82318.686990: binder_transaction_alloc_buf: transaction=1573068 data_size=576 offsets_size=112
139104 [email protected]   (  619) [002] d..2 82318.687016: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139105 [email protected]   (  619) [002] d..3 82318.687040: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139106 [email protected]   (  619) [002] .... 82318.687046: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
139107          <idle>-0     (-----) [001] .n.1 82318.687048: cpu_idle: state=4294967295 cpu_id=1
139108          <idle>-0     (-----) [001] d..2 82318.687062: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
139109  surfaceflinger-8858  ( 8858) [001] .... 82318.687073: binder_transaction_received: transaction=1573068
139110 [email protected]   (  619) [002] d..2 82318.687156: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139111          <idle>-0     (-----) [002] d..1 82318.687182: cpu_idle: state=0 cpu_id=2
139112 crtc_commit:111-321   (  321) [000] d..2 82318.687498: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
139113          <idle>-0     (-----) [000] d..1 82318.687517: cpu_idle: state=0 cpu_id=0
139114  surfaceflinger-8858  ( 8858) [001] d..2 82318.687595: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139115          <idle>-0     (-----) [001] d..1 82318.687621: cpu_idle: state=0 cpu_id=1
139116          <idle>-0     (-----) [002] d..2 82318.688791: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
139117          <idle>-0     (-----) [002] dn.3 82318.688806: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
139118          <idle>-0     (-----) [002] .n.1 82318.688811: cpu_idle: state=4294967295 cpu_id=2
139119          <idle>-0     (-----) [002] d..2 82318.688828: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
139120     ksoftirqd/2-26    (   26) [002] d.s2 82318.688841: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139121     ksoftirqd/2-26    (   26) [002] d.s3 82318.688889: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
139122     ksoftirqd/2-26    (   26) [002] d..2 82318.688907: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139123  kworker/u16:15-1311  ( 1311) [002] d..2 82318.689039: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139124          <idle>-0     (-----) [002] d..1 82318.689056: cpu_idle: state=0 cpu_id=2
139125          <idle>-0     (-----) [000] d.s2 82318.691893: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139126          <idle>-0     (-----) [000] dns3 82318.691919: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139127          <idle>-0     (-----) [000] .n.1 82318.691933: cpu_idle: state=4294967295 cpu_id=0
139128          <idle>-0     (-----) [000] d..2 82318.691950: 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
139129     rcu_preempt-7     (    7) [000] d..2 82318.691964: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139130     rcu_preempt-7     (    7) [000] d..3 82318.691983: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139131     rcu_preempt-7     (    7) [000] d..2 82318.691997: 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
139132         rcuop/0-10    (   10) [000] d..2 82318.692002: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139133         rcuop/0-10    (   10) [000] d..3 82318.692019: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139134         rcuop/0-10    (   10) [000] d..2 82318.692022: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139135         rcuop/0-10    (   10) [000] d..3 82318.692035: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139136         rcuop/0-10    (   10) [000] d..2 82318.692044: 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
139137         rcuop/1-21    (   21) [000] d..2 82318.692065: 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
139138     rcu_preempt-7     (    7) [000] d..2 82318.692097: 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
139139          <idle>-0     (-----) [000] d..1 82318.692117: cpu_idle: state=0 cpu_id=0
139140          <idle>-0     (-----) [000] d.h5 82318.692491: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139141          <idle>-0     (-----) [000] d.h6 82318.692514: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139142          <idle>-0     (-----) [000] d.h5 82318.692519: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139143          <idle>-0     (-----) [003] .n.1 82318.692520: cpu_idle: state=4294967295 cpu_id=3
139144          <idle>-0     (-----) [000] dnh6 82318.692529: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139145          <idle>-0     (-----) [003] d..2 82318.692534: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139146          <idle>-0     (-----) [000] .n.1 82318.692544: cpu_idle: state=4294967295 cpu_id=0
139147          <idle>-0     (-----) [000] d..2 82318.692558: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139148  crtc_event:111-322   (  322) [003] d..2 82318.692575: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139149          <idle>-0     (-----) [003] d..1 82318.692587: cpu_idle: state=0 cpu_id=3
139150 crtc_commit:111-321   (  321) [000] d..2 82318.692722: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
139151          <idle>-0     (-----) [000] d..1 82318.692736: cpu_idle: state=0 cpu_id=0
139152          <idle>-0     (-----) [000] d.h5 82318.694813: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139153          <idle>-0     (-----) [000] dnh6 82318.694825: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139154          <idle>-0     (-----) [000] .n.1 82318.694847: cpu_idle: state=4294967295 cpu_id=0
139155          <idle>-0     (-----) [000] d..2 82318.694856: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139156 crtc_commit:111-321   (  321) [000] d..2 82318.694929: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139157          <idle>-0     (-----) [000] d..1 82318.694941: cpu_idle: state=0 cpu_id=0
139158          <idle>-0     (-----) [000] d.h5 82318.695125: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139159          <idle>-0     (-----) [000] d.h6 82318.695144: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139160          <idle>-0     (-----) [003] .n.1 82318.695150: cpu_idle: state=4294967295 cpu_id=3
139161          <idle>-0     (-----) [000] d..2 82318.695162: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
139162          <idle>-0     (-----) [003] d..2 82318.695166: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139163          <idle>-0     (-----) [000] dn.3 82318.695178: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
139164  crtc_event:111-322   (  322) [003] d..2 82318.695200: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139165          <idle>-0     (-----) [003] d..1 82318.695209: cpu_idle: state=0 cpu_id=3
139166          <idle>-0     (-----) [000] dns3 82318.695214: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139167          <idle>-0     (-----) [000] dns4 82318.695232: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139168          <idle>-0     (-----) [003] .n.1 82318.695238: cpu_idle: state=4294967295 cpu_id=3
139169          <idle>-0     (-----) [000] .n.1 82318.695247: cpu_idle: state=4294967295 cpu_id=0
139170          <idle>-0     (-----) [003] d..2 82318.695249: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139171          <idle>-0     (-----) [000] d..2 82318.695259: 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
139172  crtc_event:111-322   (  322) [003] d..2 82318.695278: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139173          <idle>-0     (-----) [003] d..1 82318.695287: cpu_idle: state=0 cpu_id=3
139174     ksoftirqd/0-3     (    3) [000] d..2 82318.695288: 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
139175          <idle>-0     (-----) [000] d..1 82318.695299: cpu_idle: state=0 cpu_id=0
139176          <idle>-0     (-----) [003] d.h2 82318.696856: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
139177          <idle>-0     (-----) [003] dnh3 82318.696874: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
139178          <idle>-0     (-----) [003] .n.1 82318.696883: cpu_idle: state=4294967295 cpu_id=3
139179          <idle>-0     (-----) [003] d..2 82318.696894: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
139180        DispSync-8879  ( 8858) [003] d..1 82318.696909: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
139181        DispSync-8879  ( 8858) [003] d..2 82318.696934: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
139182          <idle>-0     (-----) [002] .n.1 82318.696942: cpu_idle: state=4294967295 cpu_id=2
139183          <idle>-0     (-----) [002] d..2 82318.696956: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
139184        DispSync-8879  ( 8858) [003] d..2 82318.696968: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139185          <idle>-0     (-----) [003] d..1 82318.696982: cpu_idle: state=0 cpu_id=3
139186  appEventThread-8881  ( 8858) [002] d..3 82318.697023: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139187          <idle>-0     (-----) [004] dnh2 82318.697057: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139188          <idle>-0     (-----) [004] .n.1 82318.697062: cpu_idle: state=4294967295 cpu_id=4
139189          <idle>-0     (-----) [004] d..2 82318.697070: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
139190  appEventThread-8881  ( 8858) [002] d..2 82318.697096: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139191          <idle>-0     (-----) [002] d..1 82318.697116: cpu_idle: state=0 cpu_id=2
139192 s.nexuslauncher-10023 (10023) [004] .... 82318.697273: binder_transaction: transaction=1573069 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
139193 s.nexuslauncher-10023 (10023) [004] .... 82318.697278: binder_transaction_alloc_buf: transaction=1573069 data_size=80 offsets_size=0
139194 s.nexuslauncher-10023 (10023) [004] d..4 82318.697284: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
139195          <idle>-0     (-----) [000] dnh2 82318.697349: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
139196          <idle>-0     (-----) [000] .n.1 82318.697355: cpu_idle: state=4294967295 cpu_id=0
139197          <idle>-0     (-----) [000] d..2 82318.697364: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
139198 s.nexuslauncher-10023 (10023) [004] d..3 82318.697371: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139199   Binder:8858_1-8871  ( 8858) [000] .... 82318.697374: binder_transaction_received: transaction=1573069
139200 s.nexuslauncher-10023 (10023) [004] d..4 82318.697388: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139201          <idle>-0     (-----) [005] .n.1 82318.697392: cpu_idle: state=4294967295 cpu_id=5
139202          <idle>-0     (-----) [005] d..2 82318.697403: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139203   Binder:8858_1-8871  ( 8858) [000] d..1 82318.697418: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
139204    RenderThread-16607 (10023) [005] d..2 82318.697433: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139205   Binder:8858_1-8871  ( 8858) [000] d..2 82318.697440: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
139206          <idle>-0     (-----) [005] d..1 82318.697441: cpu_idle: state=0 cpu_id=5
139207          <idle>-0     (-----) [002] .n.1 82318.697447: cpu_idle: state=4294967295 cpu_id=2
139208          <idle>-0     (-----) [002] d..2 82318.697459: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
139209   Binder:8858_1-8871  ( 8858) [000] d..2 82318.697497: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139210  appEventThread-8881  ( 8858) [002] d..2 82318.697509: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139211          <idle>-0     (-----) [000] d..1 82318.697510: cpu_idle: state=0 cpu_id=0
139212          <idle>-0     (-----) [002] d..1 82318.697521: cpu_idle: state=0 cpu_id=2
139213 s.nexuslauncher-10023 (10023) [004] d..3 82318.697595: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139214 s.nexuslauncher-10023 (10023) [004] d..4 82318.697613: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139215          <idle>-0     (-----) [005] .n.1 82318.697617: cpu_idle: state=4294967295 cpu_id=5
139216          <idle>-0     (-----) [005] d..2 82318.697624: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139217 s.nexuslauncher-10023 (10023) [004] d..2 82318.697638: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
139218          <idle>-0     (-----) [004] d..1 82318.697654: cpu_idle: state=0 cpu_id=4
139219    RenderThread-16607 (10023) [005] d..1 82318.697779: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139220    RenderThread-16607 (10023) [005] d..2 82318.697797: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139221          <idle>-0     (-----) [004] .n.1 82318.697803: cpu_idle: state=4294967295 cpu_id=4
139222          <idle>-0     (-----) [004] d..2 82318.697813: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
139223    RenderThread-16607 (10023) [005] .... 82318.697846: binder_transaction: transaction=1573070 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
139224    RenderThread-16607 (10023) [005] .... 82318.697850: binder_transaction_alloc_buf: transaction=1573070 data_size=104 offsets_size=0
139225    RenderThread-16607 (10023) [005] ...2 82318.697854: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
139226    RenderThread-16607 (10023) [005] d..4 82318.697857: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
139227    RenderThread-16607 (10023) [005] d..5 82318.697876: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139228 s.nexuslauncher-10023 (10023) [004] d..2 82318.697920: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
139229    RenderThread-16607 (10023) [005] d..2 82318.697923: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
139230          <idle>-0     (-----) [004] d..1 82318.697930: cpu_idle: state=0 cpu_id=4
139231   Binder:8858_1-8871  ( 8858) [005] .... 82318.697935: binder_transaction_received: transaction=1573070
139232   Binder:8858_1-8871  ( 8858) [005] .... 82318.697996: binder_transaction: transaction=1573071 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
139233   Binder:8858_1-8871  ( 8858) [005] .... 82318.698001: binder_transaction_alloc_buf: transaction=1573071 data_size=52 offsets_size=8
139234   Binder:8858_1-8871  ( 8858) [005] d..2 82318.698008: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139235   Binder:8858_1-8871  ( 8858) [005] d..3 82318.698019: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139236   Binder:8858_1-8871  ( 8858) [005] .... 82318.698021: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
139237   Binder:8858_1-8871  ( 8858) [005] d..2 82318.698031: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
139238    RenderThread-16607 (10023) [005] .... 82318.698039: binder_transaction_received: transaction=1573071
139239          <idle>-0     (-----) [000] d.s2 82318.698482: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139240          <idle>-0     (-----) [000] dns3 82318.698504: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139241          <idle>-0     (-----) [000] dns3 82318.698511: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
139242          <idle>-0     (-----) [000] dns4 82318.698551: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139243          <idle>-0     (-----) [000] .n.1 82318.698573: cpu_idle: state=4294967295 cpu_id=0
139244          <idle>-0     (-----) [000] d..2 82318.698585: 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
139245     rcu_preempt-7     (    7) [000] d..2 82318.698608: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139246  kworker/u16:15-1311  ( 1311) [000] d..2 82318.698780: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139247          <idle>-0     (-----) [000] d..1 82318.698800: cpu_idle: state=0 cpu_id=0
139248    RenderThread-16607 (10023) [005] d..2 82318.699414: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
139249   Binder:8858_1-8871  ( 8858) [005] d..2 82318.699484: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139250          <idle>-0     (-----) [005] d..1 82318.699499: cpu_idle: state=0 cpu_id=5
139251          <idle>-0     (-----) [005] d.h2 82318.699512: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139252          <idle>-0     (-----) [005] d.h3 82318.699520: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
139253          <idle>-0     (-----) [005] dnh3 82318.699523: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139254          <idle>-0     (-----) [005] .n.1 82318.699530: cpu_idle: state=4294967295 cpu_id=5
139255          <idle>-0     (-----) [005] d..2 82318.699539: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139256    RenderThread-16607 (10023) [005] .... 82318.699696: binder_transaction: transaction=1573072 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
139257    RenderThread-16607 (10023) [005] .... 82318.699701: binder_transaction_alloc_buf: transaction=1573072 data_size=192 offsets_size=8
139258    RenderThread-16607 (10023) [005] ...2 82318.699709: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
139259    RenderThread-16607 (10023) [005] d..4 82318.699712: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139260    RenderThread-16607 (10023) [005] d..5 82318.699723: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139261    RenderThread-16607 (10023) [005] d..2 82318.699735: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
139262   Binder:8858_1-8871  ( 8858) [005] .... 82318.699746: binder_transaction_received: transaction=1573072
139263   Binder:8858_1-8871  ( 8858) [005] .... 82318.699867: binder_transaction: transaction=1573073 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
139264   Binder:8858_1-8871  ( 8858) [005] .... 82318.699871: binder_transaction_alloc_buf: transaction=1573073 data_size=68 offsets_size=0
139265   Binder:8858_1-8871  ( 8858) [005] d..2 82318.699873: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139266   Binder:8858_1-8871  ( 8858) [005] d..3 82318.699884: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139267   Binder:8858_1-8871  ( 8858) [005] .... 82318.699887: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
139268   Binder:8858_1-8871  ( 8858) [005] d..2 82318.699918: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
139269    RenderThread-16607 (10023) [005] .... 82318.699928: binder_transaction_received: transaction=1573073
139270    RenderThread-16607 (10023) [005] d..2 82318.699999: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139271          <idle>-0     (-----) [005] d..1 82318.700016: cpu_idle: state=0 cpu_id=5
139272          <idle>-0     (-----) [005] ...1 82318.700218: cpu_idle: state=4294967295 cpu_id=5
139273          <idle>-0     (-----) [005] d..1 82318.700221: cpu_idle: state=0 cpu_id=5
139274          <idle>-0     (-----) [002] ...1 82318.700399: cpu_idle: state=4294967295 cpu_id=2
139275          <idle>-0     (-----) [002] d..1 82318.700409: cpu_idle: state=0 cpu_id=2
139276          <idle>-0     (-----) [003] d.h2 82318.700862: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
139277          <idle>-0     (-----) [003] dnh3 82318.700877: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
139278          <idle>-0     (-----) [003] .n.1 82318.700886: cpu_idle: state=4294967295 cpu_id=3
139279          <idle>-0     (-----) [003] d..2 82318.700898: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
139280        DispSync-8879  ( 8858) [003] d..1 82318.700912: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139281        DispSync-8879  ( 8858) [003] d..2 82318.700929: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139282          <idle>-0     (-----) [002] .n.1 82318.700935: cpu_idle: state=4294967295 cpu_id=2
139283          <idle>-0     (-----) [000] d.h3 82318.700949: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
139284          <idle>-0     (-----) [002] d..2 82318.700950: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
139285        DispSync-8879  ( 8858) [003] d..2 82318.700962: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139286          <idle>-0     (-----) [000] dnh4 82318.700970: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
139287          <idle>-0     (-----) [003] d..1 82318.700978: cpu_idle: state=0 cpu_id=3
139288          <idle>-0     (-----) [000] .n.1 82318.700985: cpu_idle: state=4294967295 cpu_id=0
139289   sfEventThread-8882  ( 8858) [002] d..3 82318.700995: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139290          <idle>-0     (-----) [000] d..2 82318.700998: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
139291   sfEventThread-8882  ( 8858) [002] d..4 82318.701019: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139292          <idle>-0     (-----) [001] .n.1 82318.701027: cpu_idle: state=4294967295 cpu_id=1
139293          <idle>-0     (-----) [001] d..2 82318.701042: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
139294 kgsl_worker_thr-258   (  258) [000] d..2 82318.701054: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139295   sfEventThread-8882  ( 8858) [002] d..2 82318.701063: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139296          <idle>-0     (-----) [002] d..1 82318.701080: cpu_idle: state=0 cpu_id=2
139297 kgsl_worker_thr-258   (  258) [000] d..3 82318.701087: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
139298          <idle>-0     (-----) [002] .n.1 82318.701094: cpu_idle: state=4294967295 cpu_id=2
139299          <idle>-0     (-----) [002] d..2 82318.701110: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139300 kgsl_worker_thr-258   (  258) [000] d..2 82318.701128: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139301          <idle>-0     (-----) [000] d..1 82318.701145: cpu_idle: state=0 cpu_id=0
139302  kworker/u16:15-1311  ( 1311) [002] d..2 82318.701313: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139303          <idle>-0     (-----) [002] d..1 82318.701329: cpu_idle: state=0 cpu_id=2
139304  surfaceflinger-8858  ( 8858) [001] d..1 82318.701400: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139305  surfaceflinger-8858  ( 8858) [001] d..2 82318.701428: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139306          <idle>-0     (-----) [002] .n.1 82318.701433: cpu_idle: state=4294967295 cpu_id=2
139307          <idle>-0     (-----) [002] d..2 82318.701447: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
139308   sfEventThread-8882  ( 8858) [002] d..2 82318.701492: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139309          <idle>-0     (-----) [002] d..1 82318.701507: cpu_idle: state=0 cpu_id=2
139310  surfaceflinger-8858  ( 8858) [001] ...1 82318.701643: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
139311  surfaceflinger-8858  ( 8858) [001] ...1 82318.701653: tracing_mark_write: E|8858
139312  surfaceflinger-8858  ( 8858) [001] .... 82318.701718: binder_transaction: transaction=1573074 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
139313  surfaceflinger-8858  ( 8858) [001] .... 82318.701724: binder_transaction_alloc_buf: transaction=1573074 data_size=540 offsets_size=96
139314  surfaceflinger-8858  ( 8858) [001] ...2 82318.701754: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
139315  surfaceflinger-8858  ( 8858) [001] d..4 82318.701761: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
139316  surfaceflinger-8858  ( 8858) [001] d..5 82318.701788: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
139317          <idle>-0     (-----) [002] .n.1 82318.701793: cpu_idle: state=4294967295 cpu_id=2
139318          <idle>-0     (-----) [002] d..2 82318.701812: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
139319 [email protected]   (  619) [002] .... 82318.701854: binder_transaction_received: transaction=1573074
139320  surfaceflinger-8858  ( 8858) [001] d..2 82318.701889: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139321 [email protected]   (  619) [002] ...1 82318.701908: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
139322          <idle>-0     (-----) [001] d..1 82318.701911: cpu_idle: state=0 cpu_id=1
139323 [email protected]   (  619) [002] ...1 82318.702027: tracing_mark_write: B|619|HWCSession::PresentDisplay::
139324 [email protected]   (  619) [002] ...1 82318.702213: tracing_mark_write: B|619|HWDeviceDRM::Commit::
139325 [email protected]   (  619) [002] ...1 82318.702228: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
139326 [email protected]   (  619) [002] d..2 82318.702891: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139327 [email protected]   (  619) [002] d..3 82318.702922: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139328          <idle>-0     (-----) [000] .n.1 82318.702928: cpu_idle: state=4294967295 cpu_id=0
139329          <idle>-0     (-----) [000] d..2 82318.702942: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139330 [email protected]   (  619) [002] ...1 82318.703050: tracing_mark_write: E|619
139331 [email protected]   (  619) [002] ...1 82318.703058: tracing_mark_write: E|619
139332 [email protected]   (  619) [002] ...1 82318.703126: tracing_mark_write: E|619
139333 [email protected]   (  619) [002] ...1 82318.703180: tracing_mark_write: E|619
139334 [email protected]   (  619) [002] .... 82318.703199: binder_transaction: transaction=1573075 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
139335 [email protected]   (  619) [002] .... 82318.703204: binder_transaction_alloc_buf: transaction=1573075 data_size=576 offsets_size=112
139336 [email protected]   (  619) [002] d..2 82318.703229: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139337 [email protected]   (  619) [002] d..3 82318.703253: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139338          <idle>-0     (-----) [001] .n.1 82318.703260: cpu_idle: state=4294967295 cpu_id=1
139339 [email protected]   (  619) [002] .... 82318.703260: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
139340          <idle>-0     (-----) [001] d..2 82318.703274: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
139341  surfaceflinger-8858  ( 8858) [001] .... 82318.703285: binder_transaction_received: transaction=1573075
139342 [email protected]   (  619) [002] d..2 82318.703369: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139343          <idle>-0     (-----) [002] d..1 82318.703394: cpu_idle: state=0 cpu_id=2
139344 crtc_commit:111-321   (  321) [000] d..2 82318.703719: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
139345          <idle>-0     (-----) [000] d..1 82318.703734: cpu_idle: state=0 cpu_id=0
139346  surfaceflinger-8858  ( 8858) [001] d..2 82318.703772: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139347          <idle>-0     (-----) [001] d..1 82318.703797: cpu_idle: state=0 cpu_id=1
139348          <idle>-0     (-----) [002] ...1 82318.704641: cpu_idle: state=4294967295 cpu_id=2
139349          <idle>-0     (-----) [002] d..1 82318.704647: cpu_idle: state=0 cpu_id=2
139350          <idle>-0     (-----) [000] d.s2 82318.705145: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139351          <idle>-0     (-----) [000] dns3 82318.705169: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139352          <idle>-0     (-----) [000] .n.1 82318.705178: cpu_idle: state=4294967295 cpu_id=0
139353          <idle>-0     (-----) [000] d..2 82318.705190: 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
139354     rcu_preempt-7     (    7) [000] d..2 82318.705201: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139355     rcu_preempt-7     (    7) [000] d..3 82318.705219: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139356     rcu_preempt-7     (    7) [000] d..2 82318.705233: 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
139357         rcuop/0-10    (   10) [000] d..2 82318.705239: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139358         rcuop/0-10    (   10) [000] d..3 82318.705254: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139359         rcuop/0-10    (   10) [000] d..2 82318.705258: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139360         rcuop/0-10    (   10) [000] d..3 82318.705270: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139361         rcuop/0-10    (   10) [000] d..2 82318.705280: 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
139362         rcuop/1-21    (   21) [000] d..2 82318.705298: 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
139363     rcu_preempt-7     (    7) [000] d..2 82318.705330: 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
139364          <idle>-0     (-----) [000] d..1 82318.705347: cpu_idle: state=0 cpu_id=0
139365          <idle>-0     (-----) [000] d.h5 82318.708966: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139366          <idle>-0     (-----) [000] d.h6 82318.708987: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139367          <idle>-0     (-----) [000] d.h5 82318.708993: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139368          <idle>-0     (-----) [003] .n.1 82318.708994: cpu_idle: state=4294967295 cpu_id=3
139369          <idle>-0     (-----) [000] dnh6 82318.709002: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139370          <idle>-0     (-----) [003] d..2 82318.709008: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139371          <idle>-0     (-----) [000] .n.1 82318.709017: cpu_idle: state=4294967295 cpu_id=0
139372          <idle>-0     (-----) [000] d..2 82318.709032: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139373  crtc_event:111-322   (  322) [003] d..2 82318.709052: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139374          <idle>-0     (-----) [003] d..2 82318.709058: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
139375          <idle>-0     (-----) [003] dn.3 82318.709076: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
139376          <idle>-0     (-----) [003] d..2 82318.709087: 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
139377     ksoftirqd/3-34    (   34) [003] d.s2 82318.709102: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
139378     ksoftirqd/3-34    (   34) [003] d.s3 82318.709148: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
139379     ksoftirqd/3-34    (   34) [003] d..2 82318.709168: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139380 crtc_commit:111-321   (  321) [000] d..2 82318.709187: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
139381          <idle>-0     (-----) [000] d..1 82318.709200: cpu_idle: state=0 cpu_id=0
139382  kworker/u16:15-1311  ( 1311) [003] d..2 82318.709280: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139383          <idle>-0     (-----) [003] d..1 82318.709297: cpu_idle: state=0 cpu_id=3
139384          <idle>-0     (-----) [000] d.h5 82318.711287: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139385          <idle>-0     (-----) [000] dnh6 82318.711300: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139386          <idle>-0     (-----) [000] .n.1 82318.711314: cpu_idle: state=4294967295 cpu_id=0
139387          <idle>-0     (-----) [000] d..2 82318.711322: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139388 crtc_commit:111-321   (  321) [000] d..2 82318.711393: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139389          <idle>-0     (-----) [000] d..1 82318.711406: cpu_idle: state=0 cpu_id=0
139390          <idle>-0     (-----) [000] d.h5 82318.711596: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139391          <idle>-0     (-----) [000] d.h6 82318.711615: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139392          <idle>-0     (-----) [003] .n.1 82318.711622: cpu_idle: state=4294967295 cpu_id=3
139393          <idle>-0     (-----) [000] ...1 82318.711634: cpu_idle: state=4294967295 cpu_id=0
139394          <idle>-0     (-----) [003] d..2 82318.711636: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139395          <idle>-0     (-----) [000] d..1 82318.711639: cpu_idle: state=0 cpu_id=0
139396  crtc_event:111-322   (  322) [003] d..2 82318.711667: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139397          <idle>-0     (-----) [003] d..1 82318.711678: cpu_idle: state=0 cpu_id=3
139398          <idle>-0     (-----) [000] d.s3 82318.711885: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139399          <idle>-0     (-----) [000] d.s4 82318.711906: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139400          <idle>-0     (-----) [000] d.s2 82318.711910: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139401          <idle>-0     (-----) [003] .n.1 82318.711912: cpu_idle: state=4294967295 cpu_id=3
139402          <idle>-0     (-----) [003] d..2 82318.711924: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139403          <idle>-0     (-----) [000] dns3 82318.711931: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139404          <idle>-0     (-----) [000] .n.1 82318.711944: cpu_idle: state=4294967295 cpu_id=0
139405          <idle>-0     (-----) [000] d..2 82318.711956: 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
139406  crtc_event:111-322   (  322) [003] d..2 82318.711963: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139407          <idle>-0     (-----) [003] d..1 82318.711972: cpu_idle: state=0 cpu_id=3
139408     rcu_preempt-7     (    7) [000] d..2 82318.711994: 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
139409          <idle>-0     (-----) [000] d..1 82318.712011: cpu_idle: state=0 cpu_id=0
139410          <idle>-0     (-----) [003] d.h2 82318.713317: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
139411          <idle>-0     (-----) [003] dnh3 82318.713336: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
139412          <idle>-0     (-----) [003] .n.1 82318.713346: cpu_idle: state=4294967295 cpu_id=3
139413          <idle>-0     (-----) [003] d..2 82318.713357: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
139414        DispSync-8879  ( 8858) [003] d..1 82318.713373: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
139415        DispSync-8879  ( 8858) [003] d..2 82318.713391: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
139416          <idle>-0     (-----) [002] .n.1 82318.713396: cpu_idle: state=4294967295 cpu_id=2
139417          <idle>-0     (-----) [002] d..2 82318.713411: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
139418        DispSync-8879  ( 8858) [003] d..2 82318.713426: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139419          <idle>-0     (-----) [003] d..1 82318.713439: cpu_idle: state=0 cpu_id=3
139420  appEventThread-8881  ( 8858) [002] d..3 82318.713470: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139421          <idle>-0     (-----) [004] dnh2 82318.713505: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139422          <idle>-0     (-----) [004] .n.1 82318.713510: cpu_idle: state=4294967295 cpu_id=4
139423          <idle>-0     (-----) [004] d..2 82318.713518: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
139424  appEventThread-8881  ( 8858) [002] d..2 82318.713544: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139425          <idle>-0     (-----) [002] d..1 82318.713564: cpu_idle: state=0 cpu_id=2
139426 s.nexuslauncher-10023 (10023) [004] .... 82318.713710: binder_transaction: transaction=1573076 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
139427 s.nexuslauncher-10023 (10023) [004] .... 82318.713716: binder_transaction_alloc_buf: transaction=1573076 data_size=80 offsets_size=0
139428 s.nexuslauncher-10023 (10023) [004] d..4 82318.713721: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
139429          <idle>-0     (-----) [000] dnh2 82318.713787: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
139430          <idle>-0     (-----) [000] .n.1 82318.713793: cpu_idle: state=4294967295 cpu_id=0
139431          <idle>-0     (-----) [000] d..2 82318.713806: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
139432 s.nexuslauncher-10023 (10023) [004] d..3 82318.713808: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139433   Binder:8858_1-8871  ( 8858) [000] .... 82318.713816: binder_transaction_received: transaction=1573076
139434 s.nexuslauncher-10023 (10023) [004] d..4 82318.713824: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139435          <idle>-0     (-----) [005] .n.1 82318.713829: cpu_idle: state=4294967295 cpu_id=5
139436          <idle>-0     (-----) [005] d..2 82318.713840: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139437   Binder:8858_1-8871  ( 8858) [000] d..1 82318.713859: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
139438    RenderThread-16607 (10023) [005] d..2 82318.713870: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139439          <idle>-0     (-----) [005] d..1 82318.713878: cpu_idle: state=0 cpu_id=5
139440   Binder:8858_1-8871  ( 8858) [000] d..2 82318.713881: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
139441          <idle>-0     (-----) [002] .n.1 82318.713889: cpu_idle: state=4294967295 cpu_id=2
139442          <idle>-0     (-----) [002] d..2 82318.713901: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
139443   Binder:8858_1-8871  ( 8858) [000] d..2 82318.713935: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139444  appEventThread-8881  ( 8858) [002] d..2 82318.713948: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139445          <idle>-0     (-----) [000] d..1 82318.713954: cpu_idle: state=0 cpu_id=0
139446          <idle>-0     (-----) [002] d..1 82318.713962: cpu_idle: state=0 cpu_id=2
139447 s.nexuslauncher-10023 (10023) [004] d..3 82318.714027: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139448 s.nexuslauncher-10023 (10023) [004] d..4 82318.714045: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139449          <idle>-0     (-----) [005] .n.1 82318.714050: cpu_idle: state=4294967295 cpu_id=5
139450          <idle>-0     (-----) [005] d..2 82318.714058: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139451 s.nexuslauncher-10023 (10023) [004] d..2 82318.714071: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
139452          <idle>-0     (-----) [004] d..1 82318.714087: cpu_idle: state=0 cpu_id=4
139453    RenderThread-16607 (10023) [005] d..1 82318.714207: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139454    RenderThread-16607 (10023) [005] d..2 82318.714226: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139455          <idle>-0     (-----) [004] .n.1 82318.714232: cpu_idle: state=4294967295 cpu_id=4
139456          <idle>-0     (-----) [004] d..2 82318.714242: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
139457    RenderThread-16607 (10023) [005] .... 82318.714275: binder_transaction: transaction=1573077 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
139458    RenderThread-16607 (10023) [005] .... 82318.714279: binder_transaction_alloc_buf: transaction=1573077 data_size=104 offsets_size=0
139459    RenderThread-16607 (10023) [005] ...2 82318.714283: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
139460    RenderThread-16607 (10023) [005] d..4 82318.714286: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
139461    RenderThread-16607 (10023) [005] d..5 82318.714306: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139462 s.nexuslauncher-10023 (10023) [004] d..2 82318.714350: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
139463    RenderThread-16607 (10023) [005] d..2 82318.714353: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
139464          <idle>-0     (-----) [004] d..1 82318.714360: cpu_idle: state=0 cpu_id=4
139465   Binder:8858_1-8871  ( 8858) [005] .... 82318.714365: binder_transaction_received: transaction=1573077
139466   Binder:8858_1-8871  ( 8858) [005] .... 82318.714425: binder_transaction: transaction=1573078 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
139467   Binder:8858_1-8871  ( 8858) [005] .... 82318.714428: binder_transaction_alloc_buf: transaction=1573078 data_size=52 offsets_size=8
139468   Binder:8858_1-8871  ( 8858) [005] d..2 82318.714435: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139469   Binder:8858_1-8871  ( 8858) [005] d..3 82318.714446: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139470   Binder:8858_1-8871  ( 8858) [005] .... 82318.714449: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
139471   Binder:8858_1-8871  ( 8858) [005] d..2 82318.714458: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
139472    RenderThread-16607 (10023) [005] .... 82318.714467: binder_transaction_received: transaction=1573078
139473          <idle>-0     (-----) [002] ...1 82318.715158: cpu_idle: state=4294967295 cpu_id=2
139474          <idle>-0     (-----) [002] d..1 82318.715163: cpu_idle: state=0 cpu_id=2
139475    RenderThread-16607 (10023) [005] d..2 82318.715767: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
139476   Binder:8858_1-8871  ( 8858) [005] d..2 82318.715842: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139477          <idle>-0     (-----) [005] d..1 82318.715857: cpu_idle: state=0 cpu_id=5
139478          <idle>-0     (-----) [005] d.h2 82318.715869: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139479          <idle>-0     (-----) [005] d.h3 82318.715877: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
139480          <idle>-0     (-----) [005] dnh3 82318.715881: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139481          <idle>-0     (-----) [005] .n.1 82318.715887: cpu_idle: state=4294967295 cpu_id=5
139482          <idle>-0     (-----) [005] d..2 82318.715897: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139483    RenderThread-16607 (10023) [005] .... 82318.716055: binder_transaction: transaction=1573079 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
139484    RenderThread-16607 (10023) [005] .... 82318.716059: binder_transaction_alloc_buf: transaction=1573079 data_size=192 offsets_size=8
139485    RenderThread-16607 (10023) [005] ...2 82318.716066: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
139486    RenderThread-16607 (10023) [005] d..4 82318.716069: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139487    RenderThread-16607 (10023) [005] d..5 82318.716081: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139488    RenderThread-16607 (10023) [005] d..2 82318.716093: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
139489   Binder:8858_1-8871  ( 8858) [005] .... 82318.716102: binder_transaction_received: transaction=1573079
139490   Binder:8858_1-8871  ( 8858) [005] .... 82318.716225: binder_transaction: transaction=1573080 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
139491   Binder:8858_1-8871  ( 8858) [005] .... 82318.716231: binder_transaction_alloc_buf: transaction=1573080 data_size=68 offsets_size=0
139492   Binder:8858_1-8871  ( 8858) [005] d..2 82318.716234: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139493   Binder:8858_1-8871  ( 8858) [005] d..3 82318.716245: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139494   Binder:8858_1-8871  ( 8858) [005] .... 82318.716247: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
139495   Binder:8858_1-8871  ( 8858) [005] d..2 82318.716278: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
139496    RenderThread-16607 (10023) [005] .... 82318.716288: binder_transaction_received: transaction=1573080
139497    RenderThread-16607 (10023) [005] d..2 82318.716358: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139498          <idle>-0     (-----) [005] d..1 82318.716377: cpu_idle: state=0 cpu_id=5
139499          <idle>-0     (-----) [005] ...1 82318.716576: cpu_idle: state=4294967295 cpu_id=5
139500          <idle>-0     (-----) [005] d..1 82318.716580: cpu_idle: state=0 cpu_id=5
139501          <idle>-0     (-----) [000] d.h3 82318.717310: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
139502          <idle>-0     (-----) [003] d.h2 82318.717319: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
139503          <idle>-0     (-----) [000] dnh4 82318.717329: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
139504          <idle>-0     (-----) [003] dnh3 82318.717333: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
139505          <idle>-0     (-----) [003] .n.1 82318.717342: cpu_idle: state=4294967295 cpu_id=3
139506          <idle>-0     (-----) [000] .n.1 82318.717345: cpu_idle: state=4294967295 cpu_id=0
139507          <idle>-0     (-----) [003] d..2 82318.717355: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
139508          <idle>-0     (-----) [000] d..2 82318.717359: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
139509        DispSync-8879  ( 8858) [003] d..1 82318.717369: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139510        DispSync-8879  ( 8858) [003] d..2 82318.717386: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139511          <idle>-0     (-----) [002] .n.1 82318.717391: cpu_idle: state=4294967295 cpu_id=2
139512          <idle>-0     (-----) [002] d..2 82318.717404: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
139513 kgsl_worker_thr-258   (  258) [000] d..2 82318.717416: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
139514        DispSync-8879  ( 8858) [003] d..2 82318.717420: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139515          <idle>-0     (-----) [003] d..1 82318.717435: cpu_idle: state=0 cpu_id=3
139516   sfEventThread-8882  ( 8858) [002] d..3 82318.717445: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139517   sfEventThread-8882  ( 8858) [002] d..4 82318.717468: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139518 kgsl_worker_thr-258   (  258) [000] d..3 82318.717472: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139519          <idle>-0     (-----) [001] .n.1 82318.717477: cpu_idle: state=4294967295 cpu_id=1
139520          <idle>-0     (-----) [001] d..2 82318.717491: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
139521 kgsl_worker_thr-258   (  258) [000] d..2 82318.717500: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139522   sfEventThread-8882  ( 8858) [002] d..2 82318.717509: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139523          <idle>-0     (-----) [002] d..1 82318.717525: cpu_idle: state=0 cpu_id=2
139524  kworker/u16:15-1311  ( 1311) [000] d..2 82318.717691: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139525          <idle>-0     (-----) [000] d..1 82318.717707: cpu_idle: state=0 cpu_id=0
139526  surfaceflinger-8858  ( 8858) [001] d..1 82318.717835: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139527  surfaceflinger-8858  ( 8858) [001] d..2 82318.717862: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139528          <idle>-0     (-----) [002] .n.1 82318.717869: cpu_idle: state=4294967295 cpu_id=2
139529          <idle>-0     (-----) [002] d..2 82318.717881: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
139530   sfEventThread-8882  ( 8858) [002] d..2 82318.717919: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139531          <idle>-0     (-----) [002] d..1 82318.717931: cpu_idle: state=0 cpu_id=2
139532  surfaceflinger-8858  ( 8858) [001] ...1 82318.718077: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
139533  surfaceflinger-8858  ( 8858) [001] ...1 82318.718086: tracing_mark_write: E|8858
139534  surfaceflinger-8858  ( 8858) [001] .... 82318.718150: binder_transaction: transaction=1573081 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
139535  surfaceflinger-8858  ( 8858) [001] .... 82318.718157: binder_transaction_alloc_buf: transaction=1573081 data_size=540 offsets_size=96
139536  surfaceflinger-8858  ( 8858) [001] ...2 82318.718183: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
139537  surfaceflinger-8858  ( 8858) [001] d..4 82318.718191: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
139538  surfaceflinger-8858  ( 8858) [001] d..5 82318.718217: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
139539          <idle>-0     (-----) [002] .n.1 82318.718222: cpu_idle: state=4294967295 cpu_id=2
139540          <idle>-0     (-----) [002] d..2 82318.718234: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
139541 [email protected]   (  619) [002] .... 82318.718247: binder_transaction_received: transaction=1573081
139542  surfaceflinger-8858  ( 8858) [001] d..2 82318.718258: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139543          <idle>-0     (-----) [001] d..1 82318.718282: cpu_idle: state=0 cpu_id=1
139544 [email protected]   (  619) [002] ...1 82318.718298: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
139545 [email protected]   (  619) [002] ...1 82318.718417: tracing_mark_write: B|619|HWCSession::PresentDisplay::
139546          <idle>-0     (-----) [000] d.s2 82318.718475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139547 [email protected]   (  619) [002] d.s2 82318.718496: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139548          <idle>-0     (-----) [000] dns3 82318.718496: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139549          <idle>-0     (-----) [000] .n.1 82318.718521: cpu_idle: state=4294967295 cpu_id=0
139550 [email protected]   (  619) [002] d.s3 82318.718528: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139551          <idle>-0     (-----) [000] d..2 82318.718538: 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
139552     rcu_preempt-7     (    7) [000] d..2 82318.718550: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139553     rcu_preempt-7     (    7) [000] d..3 82318.718572: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139554     rcu_preempt-7     (    7) [000] d..2 82318.718586: 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
139555         rcuop/0-10    (   10) [000] d..2 82318.718591: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139556         rcuop/0-10    (   10) [000] d..3 82318.718608: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139557         rcuop/0-10    (   10) [000] d..2 82318.718612: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139558         rcuop/0-10    (   10) [000] d..3 82318.718624: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139559         rcuop/0-10    (   10) [000] d..2 82318.718634: 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
139560         rcuop/1-21    (   21) [000] d..2 82318.718654: 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
139561     rcu_preempt-7     (    7) [000] d..2 82318.718670: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139562 [email protected]   (  619) [002] ...1 82318.718745: tracing_mark_write: B|619|HWDeviceDRM::Commit::
139563 [email protected]   (  619) [002] ...1 82318.718761: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
139564  kworker/u16:15-1311  ( 1311) [000] d..2 82318.718903: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139565          <idle>-0     (-----) [000] d..1 82318.718924: cpu_idle: state=0 cpu_id=0
139566 [email protected]   (  619) [002] d..2 82318.719438: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139567 [email protected]   (  619) [002] d..3 82318.719470: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139568          <idle>-0     (-----) [000] .n.1 82318.719477: cpu_idle: state=4294967295 cpu_id=0
139569          <idle>-0     (-----) [000] d..2 82318.719491: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139570 [email protected]   (  619) [002] ...1 82318.719595: tracing_mark_write: E|619
139571 [email protected]   (  619) [002] ...1 82318.719603: tracing_mark_write: E|619
139572 [email protected]   (  619) [002] ...1 82318.719669: tracing_mark_write: E|619
139573 [email protected]   (  619) [002] ...1 82318.719721: tracing_mark_write: E|619
139574 [email protected]   (  619) [002] .... 82318.719740: binder_transaction: transaction=1573082 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
139575 [email protected]   (  619) [002] .... 82318.719746: binder_transaction_alloc_buf: transaction=1573082 data_size=576 offsets_size=112
139576 [email protected]   (  619) [002] d..2 82318.719772: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139577 [email protected]   (  619) [002] d..3 82318.719796: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139578 [email protected]   (  619) [002] .... 82318.719802: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
139579          <idle>-0     (-----) [001] .n.1 82318.719802: cpu_idle: state=4294967295 cpu_id=1
139580          <idle>-0     (-----) [001] d..2 82318.719817: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
139581  surfaceflinger-8858  ( 8858) [001] .... 82318.719829: binder_transaction_received: transaction=1573082
139582 [email protected]   (  619) [002] d..2 82318.719911: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139583          <idle>-0     (-----) [002] d..1 82318.719935: cpu_idle: state=0 cpu_id=2
139584  surfaceflinger-8858  ( 8858) [001] d.s1 82318.720134: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
139585          <idle>-0     (-----) [002] ...1 82318.720143: cpu_idle: state=4294967295 cpu_id=2
139586          <idle>-0     (-----) [002] d..1 82318.720154: cpu_idle: state=0 cpu_id=2
139587  surfaceflinger-8858  ( 8858) [001] d.s2 82318.720158: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
139588 crtc_commit:111-321   (  321) [000] d..2 82318.720262: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
139589          <idle>-0     (-----) [000] d..1 82318.720280: cpu_idle: state=0 cpu_id=0
139590  surfaceflinger-8858  ( 8858) [001] d..2 82318.720344: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
139591          <idle>-0     (-----) [002] ...1 82318.720382: cpu_idle: state=4294967295 cpu_id=2
139592          <idle>-0     (-----) [002] d..1 82318.720388: cpu_idle: state=0 cpu_id=2
139593     ksoftirqd/1-18    (   18) [001] d.s2 82318.720403: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
139594     ksoftirqd/1-18    (   18) [001] d.s3 82318.720426: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
139595     ksoftirqd/1-18    (   18) [001] d..2 82318.720452: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
139596     kworker/1:1-25249 (25249) [001] d..2 82318.720509: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
139597     kworker/1:1-25249 (25249) [001] d..3 82318.720527: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
139598     kworker/1:1-25249 (25249) [001] d..2 82318.720571: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
139599 [email protected] (  798) [001] d.s2 82318.720690: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
139600 [email protected] (  798) [001] dns3 82318.720710: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
139601 [email protected] (  798) [001] d..2 82318.720732: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
139602     kworker/1:1-25249 (25249) [001] d..2 82318.720791: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
139603 [email protected] (  798) [001] d..2 82318.721017: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139604          <idle>-0     (-----) [001] d..1 82318.721042: cpu_idle: state=0 cpu_id=1
139605          <idle>-0     (-----) [001] d.s3 82318.722150: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
139606          <idle>-0     (-----) [001] dns4 82318.722165: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
139607          <idle>-0     (-----) [001] .n.1 82318.722192: cpu_idle: state=4294967295 cpu_id=1
139608          <idle>-0     (-----) [001] d..2 82318.722211: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
139609     kworker/1:1-25249 (25249) [001] d..2 82318.722242: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
139610     kworker/1:1-25249 (25249) [001] d..3 82318.722256: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
139611     kworker/1:1-25249 (25249) [001] d..2 82318.722284: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
139612 [email protected] (  798) [001] d..2 82318.722439: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139613          <idle>-0     (-----) [001] d..2 82318.722445: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
139614          <idle>-0     (-----) [001] dn.3 82318.722456: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
139615          <idle>-0     (-----) [001] d..2 82318.722467: 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
139616     ksoftirqd/1-18    (   18) [001] d..2 82318.722491: 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
139617          <idle>-0     (-----) [001] d..1 82318.722511: cpu_idle: state=0 cpu_id=1
139618          <idle>-0     (-----) [001] d.s3 82318.722693: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
139619          <idle>-0     (-----) [001] dns4 82318.722706: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
139620          <idle>-0     (-----) [001] dns3 82318.722741: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
139621          <idle>-0     (-----) [001] dns4 82318.722764: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
139622          <idle>-0     (-----) [001] .n.1 82318.722783: cpu_idle: state=4294967295 cpu_id=1
139623          <idle>-0     (-----) [001] d..2 82318.722799: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
139624   cds_mc_thread-16565 (16565) [001] d..2 82318.722891: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
139625     kworker/1:1-25249 (25249) [001] d..2 82318.722923: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
139626     kworker/1:1-25249 (25249) [001] d..3 82318.722937: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
139627     kworker/1:1-25249 (25249) [001] d..2 82318.722969: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
139628          <idle>-0     (-----) [002] ...1 82318.722988: cpu_idle: state=4294967295 cpu_id=2
139629          <idle>-0     (-----) [002] d..1 82318.722998: cpu_idle: state=0 cpu_id=2
139630 [email protected] (  798) [001] d..2 82318.723123: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139631          <idle>-0     (-----) [001] d..1 82318.723145: cpu_idle: state=0 cpu_id=1
139632          <idle>-0     (-----) [002] ...1 82318.724237: cpu_idle: state=4294967295 cpu_id=2
139633          <idle>-0     (-----) [002] d..1 82318.724243: cpu_idle: state=0 cpu_id=2
139634          <idle>-0     (-----) [000] d.s2 82318.725144: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139635          <idle>-0     (-----) [000] dns3 82318.725167: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139636          <idle>-0     (-----) [000] .n.1 82318.725181: cpu_idle: state=4294967295 cpu_id=0
139637          <idle>-0     (-----) [000] d..2 82318.725196: 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
139638     rcu_preempt-7     (    7) [000] d..2 82318.725211: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139639     rcu_preempt-7     (    7) [000] d..3 82318.725230: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139640     rcu_preempt-7     (    7) [000] d..2 82318.725246: 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
139641         rcuop/0-10    (   10) [000] d..2 82318.725251: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139642         rcuop/0-10    (   10) [000] d..3 82318.725265: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139643         rcuop/0-10    (   10) [000] d..2 82318.725270: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139644         rcuop/0-10    (   10) [000] d..3 82318.725282: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139645         rcuop/0-10    (   10) [000] d..2 82318.725293: 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
139646         rcuop/1-21    (   21) [000] d..2 82318.725308: 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
139647     rcu_preempt-7     (    7) [000] d..2 82318.725341: 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
139648          <idle>-0     (-----) [000] d.h6 82318.725436: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139649          <idle>-0     (-----) [000] d.h7 82318.725456: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139650          <idle>-0     (-----) [000] d.h6 82318.725462: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139651          <idle>-0     (-----) [003] .n.1 82318.725464: cpu_idle: state=4294967295 cpu_id=3
139652          <idle>-0     (-----) [000] dnh7 82318.725471: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139653          <idle>-0     (-----) [003] d..2 82318.725477: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139654          <idle>-0     (-----) [000] d..2 82318.725490: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139655  crtc_event:111-322   (  322) [003] d..2 82318.725514: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139656          <idle>-0     (-----) [003] d..1 82318.725526: cpu_idle: state=0 cpu_id=3
139657 crtc_commit:111-321   (  321) [000] d..2 82318.725642: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
139658          <idle>-0     (-----) [000] d..1 82318.725658: cpu_idle: state=0 cpu_id=0
139659          <idle>-0     (-----) [000] d.h5 82318.727768: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139660          <idle>-0     (-----) [000] dnh6 82318.727780: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139661          <idle>-0     (-----) [000] .n.1 82318.727794: cpu_idle: state=4294967295 cpu_id=0
139662          <idle>-0     (-----) [000] d..2 82318.727802: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139663 crtc_commit:111-321   (  321) [000] d..2 82318.727875: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139664          <idle>-0     (-----) [000] d..1 82318.727887: cpu_idle: state=0 cpu_id=0
139665          <idle>-0     (-----) [000] d.h5 82318.728066: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139666          <idle>-0     (-----) [000] d.h6 82318.728085: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139667          <idle>-0     (-----) [003] .n.1 82318.728091: cpu_idle: state=4294967295 cpu_id=3
139668          <idle>-0     (-----) [003] d..2 82318.728103: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139669          <idle>-0     (-----) [000] ...1 82318.728105: cpu_idle: state=4294967295 cpu_id=0
139670          <idle>-0     (-----) [000] d..1 82318.728110: cpu_idle: state=0 cpu_id=0
139671  crtc_event:111-322   (  322) [003] d..2 82318.728129: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139672          <idle>-0     (-----) [003] d..1 82318.728138: cpu_idle: state=0 cpu_id=3
139673          <idle>-0     (-----) [000] d.s3 82318.728474: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139674          <idle>-0     (-----) [000] d.s4 82318.728492: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139675          <idle>-0     (-----) [003] .n.1 82318.728498: cpu_idle: state=4294967295 cpu_id=3
139676          <idle>-0     (-----) [000] d.s3 82318.728498: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139677          <idle>-0     (-----) [003] d..2 82318.728509: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139678          <idle>-0     (-----) [000] dns4 82318.728518: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139679          <idle>-0     (-----) [000] .n.1 82318.728533: cpu_idle: state=4294967295 cpu_id=0
139680  crtc_event:111-322   (  322) [003] d..2 82318.728545: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139681          <idle>-0     (-----) [000] d..2 82318.728546: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139682          <idle>-0     (-----) [003] d..1 82318.728554: cpu_idle: state=0 cpu_id=3
139683  kworker/u16:15-1311  ( 1311) [000] d..2 82318.728657: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139684          <idle>-0     (-----) [000] d..1 82318.728670: cpu_idle: state=0 cpu_id=0
139685          <idle>-0     (-----) [003] d.h2 82318.729782: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
139686          <idle>-0     (-----) [003] dnh3 82318.729796: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
139687          <idle>-0     (-----) [003] .n.1 82318.729805: cpu_idle: state=4294967295 cpu_id=3
139688          <idle>-0     (-----) [003] d..2 82318.729816: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
139689        DispSync-8879  ( 8858) [003] d..1 82318.729830: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
139690        DispSync-8879  ( 8858) [003] d..2 82318.729845: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
139691          <idle>-0     (-----) [002] .n.1 82318.729850: cpu_idle: state=4294967295 cpu_id=2
139692          <idle>-0     (-----) [002] d..2 82318.729865: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
139693        DispSync-8879  ( 8858) [003] d..2 82318.729878: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139694          <idle>-0     (-----) [003] d..1 82318.729891: cpu_idle: state=0 cpu_id=3
139695  appEventThread-8881  ( 8858) [002] d..3 82318.729924: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139696          <idle>-0     (-----) [004] dnh2 82318.729957: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139697          <idle>-0     (-----) [004] .n.1 82318.729961: cpu_idle: state=4294967295 cpu_id=4
139698          <idle>-0     (-----) [004] d..2 82318.729969: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
139699  appEventThread-8881  ( 8858) [002] d..2 82318.730001: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139700          <idle>-0     (-----) [002] d..1 82318.730021: cpu_idle: state=0 cpu_id=2
139701 s.nexuslauncher-10023 (10023) [004] .... 82318.730161: binder_transaction: transaction=1573083 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
139702 s.nexuslauncher-10023 (10023) [004] .... 82318.730166: binder_transaction_alloc_buf: transaction=1573083 data_size=80 offsets_size=0
139703 s.nexuslauncher-10023 (10023) [004] d..4 82318.730171: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
139704          <idle>-0     (-----) [000] dnh2 82318.730239: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
139705          <idle>-0     (-----) [000] .n.1 82318.730246: cpu_idle: state=4294967295 cpu_id=0
139706          <idle>-0     (-----) [000] d..2 82318.730256: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
139707 s.nexuslauncher-10023 (10023) [004] d..3 82318.730259: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139708   Binder:8858_1-8871  ( 8858) [000] .... 82318.730267: binder_transaction_received: transaction=1573083
139709 s.nexuslauncher-10023 (10023) [004] d..4 82318.730274: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139710          <idle>-0     (-----) [005] .n.1 82318.730279: cpu_idle: state=4294967295 cpu_id=5
139711          <idle>-0     (-----) [005] d..2 82318.730290: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139712   Binder:8858_1-8871  ( 8858) [000] d..1 82318.730309: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
139713    RenderThread-16607 (10023) [005] d..2 82318.730325: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139714   Binder:8858_1-8871  ( 8858) [000] d..2 82318.730332: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
139715          <idle>-0     (-----) [005] d..1 82318.730333: cpu_idle: state=0 cpu_id=5
139716          <idle>-0     (-----) [002] .n.1 82318.730338: cpu_idle: state=4294967295 cpu_id=2
139717          <idle>-0     (-----) [002] d..2 82318.730351: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
139718   Binder:8858_1-8871  ( 8858) [000] d..2 82318.730387: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139719  appEventThread-8881  ( 8858) [002] d..2 82318.730400: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139720          <idle>-0     (-----) [000] d..1 82318.730401: cpu_idle: state=0 cpu_id=0
139721          <idle>-0     (-----) [002] d..1 82318.730413: cpu_idle: state=0 cpu_id=2
139722 s.nexuslauncher-10023 (10023) [004] d..3 82318.730475: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139723 s.nexuslauncher-10023 (10023) [004] d..4 82318.730494: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139724          <idle>-0     (-----) [005] .n.1 82318.730498: cpu_idle: state=4294967295 cpu_id=5
139725          <idle>-0     (-----) [005] d..2 82318.730506: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139726 s.nexuslauncher-10023 (10023) [004] d..2 82318.730519: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
139727          <idle>-0     (-----) [004] d..1 82318.730535: cpu_idle: state=0 cpu_id=4
139728    RenderThread-16607 (10023) [005] d..1 82318.730658: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139729    RenderThread-16607 (10023) [005] d..2 82318.730677: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139730          <idle>-0     (-----) [004] .n.1 82318.730683: cpu_idle: state=4294967295 cpu_id=4
139731          <idle>-0     (-----) [004] d..2 82318.730693: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
139732    RenderThread-16607 (10023) [005] .... 82318.730726: binder_transaction: transaction=1573084 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
139733    RenderThread-16607 (10023) [005] .... 82318.730730: binder_transaction_alloc_buf: transaction=1573084 data_size=104 offsets_size=0
139734    RenderThread-16607 (10023) [005] ...2 82318.730734: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
139735    RenderThread-16607 (10023) [005] d..4 82318.730737: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
139736    RenderThread-16607 (10023) [005] d..5 82318.730757: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139737 s.nexuslauncher-10023 (10023) [004] d..2 82318.730801: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
139738    RenderThread-16607 (10023) [005] d..2 82318.730804: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
139739          <idle>-0     (-----) [004] d..1 82318.730811: cpu_idle: state=0 cpu_id=4
139740   Binder:8858_1-8871  ( 8858) [005] .... 82318.730816: binder_transaction_received: transaction=1573084
139741   Binder:8858_1-8871  ( 8858) [005] .... 82318.730877: binder_transaction: transaction=1573085 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
139742   Binder:8858_1-8871  ( 8858) [005] .... 82318.730881: binder_transaction_alloc_buf: transaction=1573085 data_size=52 offsets_size=8
139743   Binder:8858_1-8871  ( 8858) [005] d..2 82318.730889: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139744   Binder:8858_1-8871  ( 8858) [005] d..3 82318.730899: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139745   Binder:8858_1-8871  ( 8858) [005] .... 82318.730902: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
139746   Binder:8858_1-8871  ( 8858) [005] d..2 82318.730911: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
139747    RenderThread-16607 (10023) [005] .... 82318.730921: binder_transaction_received: transaction=1573085
139748          <idle>-0     (-----) [000] d.s2 82318.731888: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139749          <idle>-0     (-----) [000] dns3 82318.731912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139750          <idle>-0     (-----) [000] dns3 82318.731919: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139751          <idle>-0     (-----) [000] dns4 82318.731935: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139752          <idle>-0     (-----) [000] .n.1 82318.731944: cpu_idle: state=4294967295 cpu_id=0
139753          <idle>-0     (-----) [000] d..2 82318.731956: 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
139754     rcu_preempt-7     (    7) [000] d..2 82318.731979: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139755  kworker/u16:15-1311  ( 1311) [000] d..2 82318.732063: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139756          <idle>-0     (-----) [000] d..1 82318.732082: cpu_idle: state=0 cpu_id=0
139757    RenderThread-16607 (10023) [005] d..2 82318.732238: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
139758   Binder:8858_1-8871  ( 8858) [005] d..2 82318.732309: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139759          <idle>-0     (-----) [005] d..1 82318.732324: cpu_idle: state=0 cpu_id=5
139760          <idle>-0     (-----) [005] d.h2 82318.732337: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139761          <idle>-0     (-----) [005] d.h3 82318.732345: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
139762          <idle>-0     (-----) [005] dnh3 82318.732348: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139763          <idle>-0     (-----) [005] .n.1 82318.732355: cpu_idle: state=4294967295 cpu_id=5
139764          <idle>-0     (-----) [005] d..2 82318.732364: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139765    RenderThread-16607 (10023) [005] .... 82318.732522: binder_transaction: transaction=1573086 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
139766    RenderThread-16607 (10023) [005] .... 82318.732527: binder_transaction_alloc_buf: transaction=1573086 data_size=192 offsets_size=8
139767    RenderThread-16607 (10023) [005] ...2 82318.732534: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
139768    RenderThread-16607 (10023) [005] d..4 82318.732537: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139769    RenderThread-16607 (10023) [005] d..5 82318.732548: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139770    RenderThread-16607 (10023) [005] d..2 82318.732560: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
139771   Binder:8858_1-8871  ( 8858) [005] .... 82318.732570: binder_transaction_received: transaction=1573086
139772   Binder:8858_1-8871  ( 8858) [005] .... 82318.732693: binder_transaction: transaction=1573087 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
139773   Binder:8858_1-8871  ( 8858) [005] .... 82318.732697: binder_transaction_alloc_buf: transaction=1573087 data_size=68 offsets_size=0
139774   Binder:8858_1-8871  ( 8858) [005] d..2 82318.732700: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139775   Binder:8858_1-8871  ( 8858) [005] d..3 82318.732711: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139776   Binder:8858_1-8871  ( 8858) [005] .... 82318.732713: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
139777   Binder:8858_1-8871  ( 8858) [005] d..2 82318.732744: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
139778    RenderThread-16607 (10023) [005] .... 82318.732754: binder_transaction_received: transaction=1573087
139779    RenderThread-16607 (10023) [005] d..2 82318.732826: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139780          <idle>-0     (-----) [005] d..1 82318.732843: cpu_idle: state=0 cpu_id=5
139781          <idle>-0     (-----) [005] ...1 82318.733041: cpu_idle: state=4294967295 cpu_id=5
139782          <idle>-0     (-----) [005] d..1 82318.733045: cpu_idle: state=0 cpu_id=5
139783          <idle>-0     (-----) [000] d.h3 82318.733776: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
139784          <idle>-0     (-----) [003] d.h2 82318.733781: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
139785          <idle>-0     (-----) [000] dnh4 82318.733796: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
139786          <idle>-0     (-----) [003] dnh3 82318.733798: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
139787          <idle>-0     (-----) [003] .n.1 82318.733807: cpu_idle: state=4294967295 cpu_id=3
139788          <idle>-0     (-----) [000] .n.1 82318.733811: cpu_idle: state=4294967295 cpu_id=0
139789          <idle>-0     (-----) [003] d..2 82318.733819: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
139790          <idle>-0     (-----) [000] d..2 82318.733824: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
139791        DispSync-8879  ( 8858) [003] d..1 82318.733832: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139792        DispSync-8879  ( 8858) [003] d..2 82318.733848: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139793          <idle>-0     (-----) [002] .n.1 82318.733854: cpu_idle: state=4294967295 cpu_id=2
139794          <idle>-0     (-----) [002] d..2 82318.733868: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
139795 kgsl_worker_thr-258   (  258) [000] d..2 82318.733882: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139796        DispSync-8879  ( 8858) [003] d..2 82318.733882: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139797          <idle>-0     (-----) [003] d..1 82318.733897: cpu_idle: state=0 cpu_id=3
139798   sfEventThread-8882  ( 8858) [002] d..3 82318.733908: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139799 kgsl_worker_thr-258   (  258) [000] d..3 82318.733915: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
139800          <idle>-0     (-----) [003] .n.1 82318.733920: cpu_idle: state=4294967295 cpu_id=3
139801   sfEventThread-8882  ( 8858) [002] d..4 82318.733931: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139802          <idle>-0     (-----) [003] d..2 82318.733935: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139803          <idle>-0     (-----) [001] .n.1 82318.733939: cpu_idle: state=4294967295 cpu_id=1
139804          <idle>-0     (-----) [001] d..2 82318.733955: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
139805 kgsl_worker_thr-258   (  258) [000] d..2 82318.733956: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139806          <idle>-0     (-----) [000] d..1 82318.733972: cpu_idle: state=0 cpu_id=0
139807   sfEventThread-8882  ( 8858) [002] d..2 82318.733973: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139808          <idle>-0     (-----) [002] d..1 82318.733989: cpu_idle: state=0 cpu_id=2
139809  kworker/u16:15-1311  ( 1311) [003] d..2 82318.734135: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139810          <idle>-0     (-----) [003] d..1 82318.734151: cpu_idle: state=0 cpu_id=3
139811  surfaceflinger-8858  ( 8858) [001] d..1 82318.734354: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139812  surfaceflinger-8858  ( 8858) [001] d..2 82318.734383: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
139813          <idle>-0     (-----) [002] .n.1 82318.734388: cpu_idle: state=4294967295 cpu_id=2
139814          <idle>-0     (-----) [002] d..2 82318.734401: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
139815   sfEventThread-8882  ( 8858) [002] d..2 82318.734442: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139816          <idle>-0     (-----) [002] d..1 82318.734454: cpu_idle: state=0 cpu_id=2
139817  surfaceflinger-8858  ( 8858) [001] ...1 82318.734607: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
139818  surfaceflinger-8858  ( 8858) [001] ...1 82318.734616: tracing_mark_write: E|8858
139819  surfaceflinger-8858  ( 8858) [001] .... 82318.734688: binder_transaction: transaction=1573088 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
139820  surfaceflinger-8858  ( 8858) [001] .... 82318.734695: binder_transaction_alloc_buf: transaction=1573088 data_size=540 offsets_size=96
139821  surfaceflinger-8858  ( 8858) [001] ...2 82318.734723: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
139822  surfaceflinger-8858  ( 8858) [001] d..4 82318.734732: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
139823  surfaceflinger-8858  ( 8858) [001] d..5 82318.734759: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
139824          <idle>-0     (-----) [002] .n.1 82318.734764: cpu_idle: state=4294967295 cpu_id=2
139825          <idle>-0     (-----) [002] d..2 82318.734776: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
139826 [email protected]   (  619) [002] .... 82318.734790: binder_transaction_received: transaction=1573088
139827  surfaceflinger-8858  ( 8858) [001] d..2 82318.734805: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139828          <idle>-0     (-----) [001] d..1 82318.734829: cpu_idle: state=0 cpu_id=1
139829 [email protected]   (  619) [002] ...1 82318.734846: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
139830 [email protected]   (  619) [002] ...1 82318.734976: tracing_mark_write: B|619|HWCSession::PresentDisplay::
139831 [email protected]   (  619) [002] ...1 82318.735235: tracing_mark_write: B|619|HWDeviceDRM::Commit::
139832 [email protected]   (  619) [002] ...1 82318.735251: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
139833 [email protected]   (  619) [002] d..2 82318.735931: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139834 [email protected]   (  619) [002] d..3 82318.735961: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139835          <idle>-0     (-----) [000] .n.1 82318.735966: cpu_idle: state=4294967295 cpu_id=0
139836          <idle>-0     (-----) [000] d..2 82318.735982: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139837 [email protected]   (  619) [002] ...1 82318.736083: tracing_mark_write: E|619
139838 [email protected]   (  619) [002] ...1 82318.736091: tracing_mark_write: E|619
139839 [email protected]   (  619) [002] ...1 82318.736159: tracing_mark_write: E|619
139840 [email protected]   (  619) [002] ...1 82318.736210: tracing_mark_write: E|619
139841 [email protected]   (  619) [002] .... 82318.736229: binder_transaction: transaction=1573089 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
139842 [email protected]   (  619) [002] .... 82318.736235: binder_transaction_alloc_buf: transaction=1573089 data_size=576 offsets_size=112
139843 [email protected]   (  619) [002] d..2 82318.736261: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139844 [email protected]   (  619) [002] d..3 82318.736285: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
139845 [email protected]   (  619) [002] .... 82318.736291: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
139846          <idle>-0     (-----) [001] .n.1 82318.736293: cpu_idle: state=4294967295 cpu_id=1
139847          <idle>-0     (-----) [001] d..2 82318.736309: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
139848  surfaceflinger-8858  ( 8858) [001] .... 82318.736320: binder_transaction_received: transaction=1573089
139849 [email protected]   (  619) [002] d..2 82318.736404: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139850          <idle>-0     (-----) [002] d..1 82318.736427: cpu_idle: state=0 cpu_id=2
139851 crtc_commit:111-321   (  321) [000] d..2 82318.736762: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
139852          <idle>-0     (-----) [000] d..1 82318.736776: cpu_idle: state=0 cpu_id=0
139853  surfaceflinger-8858  ( 8858) [001] d..2 82318.736962: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
139854          <idle>-0     (-----) [001] d..1 82318.736986: cpu_idle: state=0 cpu_id=1
139855          <idle>-0     (-----) [000] d.s2 82318.738478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139856          <idle>-0     (-----) [000] dns3 82318.738501: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139857          <idle>-0     (-----) [000] dns3 82318.738508: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
139858          <idle>-0     (-----) [000] dns4 82318.738551: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139859          <idle>-0     (-----) [000] .n.1 82318.738572: cpu_idle: state=4294967295 cpu_id=0
139860          <idle>-0     (-----) [000] d..2 82318.738585: 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
139861     rcu_preempt-7     (    7) [000] d..2 82318.738596: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139862     rcu_preempt-7     (    7) [000] d..3 82318.738616: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
139863     rcu_preempt-7     (    7) [000] d..2 82318.738629: 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
139864         rcuop/0-10    (   10) [000] d..2 82318.738635: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139865         rcuop/0-10    (   10) [000] d..3 82318.738650: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
139866         rcuop/0-10    (   10) [000] d..2 82318.738655: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139867         rcuop/0-10    (   10) [000] d..3 82318.738668: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139868         rcuop/0-10    (   10) [000] d..2 82318.738678: 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
139869         rcuop/1-21    (   21) [000] d..2 82318.738695: 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
139870     rcu_preempt-7     (    7) [000] d..2 82318.738709: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139871  kworker/u16:15-1311  ( 1311) [000] d..2 82318.738832: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139872          <idle>-0     (-----) [000] d..1 82318.738853: cpu_idle: state=0 cpu_id=0
139873          <idle>-0     (-----) [000] d.h5 82318.741903: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139874          <idle>-0     (-----) [000] d.h6 82318.741927: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139875          <idle>-0     (-----) [000] d.h5 82318.741932: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139876          <idle>-0     (-----) [003] .n.1 82318.741934: cpu_idle: state=4294967295 cpu_id=3
139877          <idle>-0     (-----) [000] dnh6 82318.741941: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139878          <idle>-0     (-----) [003] d..2 82318.741950: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139879          <idle>-0     (-----) [000] .n.1 82318.741957: cpu_idle: state=4294967295 cpu_id=0
139880          <idle>-0     (-----) [000] d..2 82318.741973: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139881  crtc_event:111-322   (  322) [003] d..2 82318.741995: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139882          <idle>-0     (-----) [003] d..2 82318.742001: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
139883          <idle>-0     (-----) [003] dn.3 82318.742015: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
139884          <idle>-0     (-----) [003] d..2 82318.742026: 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
139885     ksoftirqd/3-34    (   34) [003] d..2 82318.742056: 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
139886          <idle>-0     (-----) [003] d..1 82318.742068: cpu_idle: state=0 cpu_id=3
139887 crtc_commit:111-321   (  321) [000] d..2 82318.742126: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
139888          <idle>-0     (-----) [000] d..1 82318.742139: cpu_idle: state=0 cpu_id=0
139889          <idle>-0     (-----) [002] ...1 82318.743058: cpu_idle: state=4294967295 cpu_id=2
139890          <idle>-0     (-----) [002] d..1 82318.743067: cpu_idle: state=0 cpu_id=2
139891          <idle>-0     (-----) [000] d.h5 82318.744237: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139892          <idle>-0     (-----) [000] dnh6 82318.744251: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
139893          <idle>-0     (-----) [000] .n.1 82318.744266: cpu_idle: state=4294967295 cpu_id=0
139894          <idle>-0     (-----) [000] d..2 82318.744274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
139895 crtc_commit:111-321   (  321) [000] d..2 82318.744345: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139896          <idle>-0     (-----) [000] d..1 82318.744357: cpu_idle: state=0 cpu_id=0
139897          <idle>-0     (-----) [000] d.h5 82318.744536: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139898          <idle>-0     (-----) [000] d.h6 82318.744555: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139899          <idle>-0     (-----) [003] .n.1 82318.744562: cpu_idle: state=4294967295 cpu_id=3
139900          <idle>-0     (-----) [003] d..2 82318.744573: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139901          <idle>-0     (-----) [000] ...1 82318.744574: cpu_idle: state=4294967295 cpu_id=0
139902          <idle>-0     (-----) [000] d..1 82318.744580: cpu_idle: state=0 cpu_id=0
139903  crtc_event:111-322   (  322) [003] d..2 82318.744602: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139904          <idle>-0     (-----) [003] d..1 82318.744613: cpu_idle: state=0 cpu_id=3
139905          <idle>-0     (-----) [000] d.s3 82318.745141: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139906          <idle>-0     (-----) [000] d.s4 82318.745159: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
139907          <idle>-0     (-----) [000] d.s2 82318.745163: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139908          <idle>-0     (-----) [003] .n.1 82318.745166: cpu_idle: state=4294967295 cpu_id=3
139909          <idle>-0     (-----) [003] d..2 82318.745178: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
139910          <idle>-0     (-----) [000] dns3 82318.745183: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
139911          <idle>-0     (-----) [000] .n.1 82318.745196: cpu_idle: state=4294967295 cpu_id=0
139912          <idle>-0     (-----) [000] d..2 82318.745208: 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
139913  crtc_event:111-322   (  322) [003] d..2 82318.745211: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139914          <idle>-0     (-----) [003] d..1 82318.745221: cpu_idle: state=0 cpu_id=3
139915     rcu_preempt-7     (    7) [000] d..2 82318.745244: 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
139916          <idle>-0     (-----) [000] d..1 82318.745261: cpu_idle: state=0 cpu_id=0
139917          <idle>-0     (-----) [003] d.h2 82318.746246: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
139918          <idle>-0     (-----) [003] dnh3 82318.746262: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
139919          <idle>-0     (-----) [003] .n.1 82318.746272: cpu_idle: state=4294967295 cpu_id=3
139920          <idle>-0     (-----) [003] d..2 82318.746283: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
139921        DispSync-8879  ( 8858) [003] d..1 82318.746298: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
139922        DispSync-8879  ( 8858) [003] d..2 82318.746317: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
139923          <idle>-0     (-----) [002] .n.1 82318.746323: cpu_idle: state=4294967295 cpu_id=2
139924          <idle>-0     (-----) [002] d..2 82318.746340: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
139925        DispSync-8879  ( 8858) [003] d..2 82318.746352: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
139926          <idle>-0     (-----) [003] d..1 82318.746365: cpu_idle: state=0 cpu_id=3
139927  appEventThread-8881  ( 8858) [002] d..3 82318.746396: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139928          <idle>-0     (-----) [004] dnh2 82318.746432: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139929          <idle>-0     (-----) [004] .n.1 82318.746436: cpu_idle: state=4294967295 cpu_id=4
139930          <idle>-0     (-----) [004] d..2 82318.746445: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
139931  appEventThread-8881  ( 8858) [002] d..2 82318.746473: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139932          <idle>-0     (-----) [002] d..1 82318.746493: cpu_idle: state=0 cpu_id=2
139933 s.nexuslauncher-10023 (10023) [004] .... 82318.746635: binder_transaction: transaction=1573090 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
139934 s.nexuslauncher-10023 (10023) [004] .... 82318.746640: binder_transaction_alloc_buf: transaction=1573090 data_size=80 offsets_size=0
139935 s.nexuslauncher-10023 (10023) [004] d..4 82318.746645: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
139936          <idle>-0     (-----) [000] dnh2 82318.746710: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
139937          <idle>-0     (-----) [000] .n.1 82318.746717: cpu_idle: state=4294967295 cpu_id=0
139938          <idle>-0     (-----) [000] d..2 82318.746730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
139939 s.nexuslauncher-10023 (10023) [004] d..3 82318.746732: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139940   Binder:8858_1-8871  ( 8858) [000] .... 82318.746740: binder_transaction_received: transaction=1573090
139941 s.nexuslauncher-10023 (10023) [004] d..4 82318.746748: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139942          <idle>-0     (-----) [005] .n.1 82318.746753: cpu_idle: state=4294967295 cpu_id=5
139943          <idle>-0     (-----) [005] d..2 82318.746764: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139944   Binder:8858_1-8871  ( 8858) [000] d..1 82318.746782: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
139945    RenderThread-16607 (10023) [005] d..2 82318.746793: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139946          <idle>-0     (-----) [005] d..1 82318.746802: cpu_idle: state=0 cpu_id=5
139947   Binder:8858_1-8871  ( 8858) [000] d..2 82318.746804: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
139948          <idle>-0     (-----) [002] .n.1 82318.746811: cpu_idle: state=4294967295 cpu_id=2
139949          <idle>-0     (-----) [002] d..2 82318.746824: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
139950   Binder:8858_1-8871  ( 8858) [000] d..2 82318.746858: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139951  appEventThread-8881  ( 8858) [002] d..2 82318.746874: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
139952          <idle>-0     (-----) [000] d..1 82318.746876: cpu_idle: state=0 cpu_id=0
139953          <idle>-0     (-----) [002] d..1 82318.746886: cpu_idle: state=0 cpu_id=2
139954 s.nexuslauncher-10023 (10023) [004] d..3 82318.746952: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139955 s.nexuslauncher-10023 (10023) [004] d..4 82318.746970: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139956          <idle>-0     (-----) [005] .n.1 82318.746974: cpu_idle: state=4294967295 cpu_id=5
139957          <idle>-0     (-----) [005] d..2 82318.746982: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139958 s.nexuslauncher-10023 (10023) [004] d..2 82318.746996: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
139959          <idle>-0     (-----) [004] d..1 82318.747012: cpu_idle: state=0 cpu_id=4
139960    RenderThread-16607 (10023) [005] d..1 82318.747129: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139961    RenderThread-16607 (10023) [005] d..2 82318.747146: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
139962          <idle>-0     (-----) [004] .n.1 82318.747153: cpu_idle: state=4294967295 cpu_id=4
139963          <idle>-0     (-----) [004] d..2 82318.747162: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
139964    RenderThread-16607 (10023) [005] .... 82318.747195: binder_transaction: transaction=1573091 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
139965    RenderThread-16607 (10023) [005] .... 82318.747199: binder_transaction_alloc_buf: transaction=1573091 data_size=104 offsets_size=0
139966    RenderThread-16607 (10023) [005] ...2 82318.747203: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
139967    RenderThread-16607 (10023) [005] d..4 82318.747206: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
139968    RenderThread-16607 (10023) [005] d..5 82318.747224: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139969 s.nexuslauncher-10023 (10023) [004] d..2 82318.747270: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
139970    RenderThread-16607 (10023) [005] d..2 82318.747272: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
139971          <idle>-0     (-----) [004] d..1 82318.747281: cpu_idle: state=0 cpu_id=4
139972   Binder:8858_1-8871  ( 8858) [005] .... 82318.747284: binder_transaction_received: transaction=1573091
139973   Binder:8858_1-8871  ( 8858) [005] .... 82318.747343: binder_transaction: transaction=1573092 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
139974   Binder:8858_1-8871  ( 8858) [005] .... 82318.747347: binder_transaction_alloc_buf: transaction=1573092 data_size=52 offsets_size=8
139975   Binder:8858_1-8871  ( 8858) [005] d..2 82318.747354: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139976   Binder:8858_1-8871  ( 8858) [005] d..3 82318.747365: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139977   Binder:8858_1-8871  ( 8858) [005] .... 82318.747368: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
139978   Binder:8858_1-8871  ( 8858) [005] d..2 82318.747378: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
139979    RenderThread-16607 (10023) [005] .... 82318.747387: binder_transaction_received: transaction=1573092
139980    RenderThread-16607 (10023) [005] d.s2 82318.748482: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139981          <idle>-0     (-----) [000] dnh2 82318.748517: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
139982          <idle>-0     (-----) [000] .n.1 82318.748524: cpu_idle: state=4294967295 cpu_id=0
139983          <idle>-0     (-----) [000] d..2 82318.748539: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
139984    RenderThread-16607 (10023) [005] d..2 82318.748696: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
139985   Binder:8858_1-8871  ( 8858) [005] d..2 82318.748784: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
139986          <idle>-0     (-----) [005] d.h3 82318.748794: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
139987  kworker/u16:15-1311  ( 1311) [000] d..2 82318.748798: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
139988          <idle>-0     (-----) [005] d.h4 82318.748802: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
139989          <idle>-0     (-----) [005] dnh4 82318.748805: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
139990          <idle>-0     (-----) [000] d..1 82318.748810: cpu_idle: state=0 cpu_id=0
139991          <idle>-0     (-----) [005] d..2 82318.748816: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
139992    RenderThread-16607 (10023) [005] .... 82318.748969: binder_transaction: transaction=1573093 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
139993    RenderThread-16607 (10023) [005] .... 82318.748974: binder_transaction_alloc_buf: transaction=1573093 data_size=192 offsets_size=8
139994    RenderThread-16607 (10023) [005] ...2 82318.748981: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
139995    RenderThread-16607 (10023) [005] d..4 82318.748984: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139996    RenderThread-16607 (10023) [005] d..5 82318.748995: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
139997    RenderThread-16607 (10023) [005] d..2 82318.749007: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
139998   Binder:8858_1-8871  ( 8858) [005] .... 82318.749017: binder_transaction_received: transaction=1573093
139999   Binder:8858_1-8871  ( 8858) [005] .... 82318.749129: binder_transaction: transaction=1573094 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
140000   Binder:8858_1-8871  ( 8858) [005] .... 82318.749133: binder_transaction_alloc_buf: transaction=1573094 data_size=68 offsets_size=0
140001   Binder:8858_1-8871  ( 8858) [005] d..2 82318.749136: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140002   Binder:8858_1-8871  ( 8858) [005] d..3 82318.749146: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140003   Binder:8858_1-8871  ( 8858) [005] .... 82318.749149: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
140004   Binder:8858_1-8871  ( 8858) [005] d..2 82318.749181: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
140005    RenderThread-16607 (10023) [005] .... 82318.749190: binder_transaction_received: transaction=1573094
140006    RenderThread-16607 (10023) [005] d..2 82318.749258: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
140007          <idle>-0     (-----) [005] d..1 82318.749275: cpu_idle: state=0 cpu_id=5
140008          <idle>-0     (-----) [000] d.h3 82318.750229: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
140009          <idle>-0     (-----) [000] dnh4 82318.750246: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
140010          <idle>-0     (-----) [003] d.h2 82318.750251: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
140011          <idle>-0     (-----) [000] .n.1 82318.750261: cpu_idle: state=4294967295 cpu_id=0
140012          <idle>-0     (-----) [003] dnh3 82318.750264: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
140013          <idle>-0     (-----) [000] d..2 82318.750269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
140014          <idle>-0     (-----) [003] .n.1 82318.750273: cpu_idle: state=4294967295 cpu_id=3
140015          <idle>-0     (-----) [003] d..2 82318.750285: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
140016        DispSync-8879  ( 8858) [003] d..1 82318.750300: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140017        DispSync-8879  ( 8858) [003] d..2 82318.750314: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140018          <idle>-0     (-----) [002] .n.1 82318.750320: cpu_idle: state=4294967295 cpu_id=2
140019 kgsl_worker_thr-258   (  258) [000] d..2 82318.750324: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
140020          <idle>-0     (-----) [002] d..2 82318.750333: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
140021        DispSync-8879  ( 8858) [003] d..2 82318.750348: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140022          <idle>-0     (-----) [003] d..1 82318.750363: cpu_idle: state=0 cpu_id=3
140023   sfEventThread-8882  ( 8858) [002] d..3 82318.750375: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140024 kgsl_worker_thr-258   (  258) [000] d..3 82318.750380: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
140025          <idle>-0     (-----) [003] .n.1 82318.750386: cpu_idle: state=4294967295 cpu_id=3
140026   sfEventThread-8882  ( 8858) [002] d..4 82318.750396: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140027          <idle>-0     (-----) [003] d..2 82318.750401: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
140028          <idle>-0     (-----) [001] .n.1 82318.750403: cpu_idle: state=4294967295 cpu_id=1
140029          <idle>-0     (-----) [001] d..2 82318.750418: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
140030 kgsl_worker_thr-258   (  258) [000] d..2 82318.750420: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140031          <idle>-0     (-----) [000] d..1 82318.750433: cpu_idle: state=0 cpu_id=0
140032   sfEventThread-8882  ( 8858) [002] d..2 82318.750436: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140033          <idle>-0     (-----) [002] d..1 82318.750452: cpu_idle: state=0 cpu_id=2
140034  kworker/u16:15-1311  ( 1311) [003] d..2 82318.750576: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140035          <idle>-0     (-----) [003] d..1 82318.750592: cpu_idle: state=0 cpu_id=3
140036  surfaceflinger-8858  ( 8858) [001] d..1 82318.750790: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140037  surfaceflinger-8858  ( 8858) [001] d..2 82318.750818: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140038          <idle>-0     (-----) [002] .n.1 82318.750823: cpu_idle: state=4294967295 cpu_id=2
140039          <idle>-0     (-----) [002] d..2 82318.750836: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
140040   sfEventThread-8882  ( 8858) [002] d..2 82318.750875: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140041          <idle>-0     (-----) [002] d..1 82318.750888: cpu_idle: state=0 cpu_id=2
140042  surfaceflinger-8858  ( 8858) [001] ...1 82318.751034: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
140043  surfaceflinger-8858  ( 8858) [001] ...1 82318.751043: tracing_mark_write: E|8858
140044  surfaceflinger-8858  ( 8858) [001] .... 82318.751112: binder_transaction: transaction=1573095 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
140045  surfaceflinger-8858  ( 8858) [001] .... 82318.751119: binder_transaction_alloc_buf: transaction=1573095 data_size=540 offsets_size=96
140046  surfaceflinger-8858  ( 8858) [001] ...2 82318.751147: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
140047  surfaceflinger-8858  ( 8858) [001] d..4 82318.751155: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
140048  surfaceflinger-8858  ( 8858) [001] d..5 82318.751178: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
140049          <idle>-0     (-----) [002] .n.1 82318.751183: cpu_idle: state=4294967295 cpu_id=2
140050          <idle>-0     (-----) [002] d..2 82318.751195: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
140051 [email protected]   (  619) [002] .... 82318.751207: binder_transaction_received: transaction=1573095
140052  surfaceflinger-8858  ( 8858) [001] d..2 82318.751221: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140053          <idle>-0     (-----) [001] d..1 82318.751245: cpu_idle: state=0 cpu_id=1
140054 [email protected]   (  619) [002] ...1 82318.751259: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
140055 [email protected]   (  619) [002] ...1 82318.751381: tracing_mark_write: B|619|HWCSession::PresentDisplay::
140056 [email protected]   (  619) [002] ...1 82318.751571: tracing_mark_write: B|619|HWDeviceDRM::Commit::
140057 [email protected]   (  619) [002] ...1 82318.751587: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
140058 [email protected]   (  619) [002] d.s2 82318.751874: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
140059          <idle>-0     (-----) [000] d.s2 82318.751888: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
140060 [email protected]   (  619) [002] d.s3 82318.751902: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
140061          <idle>-0     (-----) [000] dns3 82318.751912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
140062          <idle>-0     (-----) [000] .n.1 82318.751923: cpu_idle: state=4294967295 cpu_id=0
140063          <idle>-0     (-----) [000] d..2 82318.751934: 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
140064     rcu_preempt-7     (    7) [000] d..2 82318.751946: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
140065     rcu_preempt-7     (    7) [000] d..3 82318.751966: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
140066     rcu_preempt-7     (    7) [000] d..2 82318.751980: 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
140067         rcuop/0-10    (   10) [000] d..2 82318.751985: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
140068         rcuop/0-10    (   10) [000] d..3 82318.752002: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
140069         rcuop/0-10    (   10) [000] d..2 82318.752006: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
140070         rcuop/0-10    (   10) [000] d..3 82318.752018: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
140071         rcuop/0-10    (   10) [000] d..2 82318.752029: 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
140072         rcuop/1-21    (   21) [000] d..2 82318.752048: 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
140073     rcu_preempt-7     (    7) [000] d..2 82318.752080: 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
140074          <idle>-0     (-----) [000] d..1 82318.752098: cpu_idle: state=0 cpu_id=0
140075 [email protected]   (  619) [002] d..2 82318.752402: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140076 [email protected]   (  619) [002] d..3 82318.752435: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140077          <idle>-0     (-----) [000] .n.1 82318.752442: cpu_idle: state=4294967295 cpu_id=0
140078          <idle>-0     (-----) [000] d..2 82318.752456: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140079 [email protected]   (  619) [002] ...1 82318.752560: tracing_mark_write: E|619
140080 [email protected]   (  619) [002] ...1 82318.752568: tracing_mark_write: E|619
140081 [email protected]   (  619) [002] ...1 82318.752637: tracing_mark_write: E|619
140082 [email protected]   (  619) [002] ...1 82318.752687: tracing_mark_write: E|619
140083 [email protected]   (  619) [002] .... 82318.752706: binder_transaction: transaction=1573096 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
140084 [email protected]   (  619) [002] .... 82318.752711: binder_transaction_alloc_buf: transaction=1573096 data_size=576 offsets_size=112
140085 [email protected]   (  619) [002] d..2 82318.752738: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140086 [email protected]   (  619) [002] d..3 82318.752763: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140087 [email protected]   (  619) [002] .... 82318.752769: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
140088          <idle>-0     (-----) [001] .n.1 82318.752771: cpu_idle: state=4294967295 cpu_id=1
140089          <idle>-0     (-----) [001] d..2 82318.752785: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
140090  surfaceflinger-8858  ( 8858) [001] .... 82318.752797: binder_transaction_received: transaction=1573096
140091 [email protected]   (  619) [002] d..2 82318.752861: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
140092     kworker/2:1-25259 (25259) [002] d..2 82318.752923: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140093          <idle>-0     (-----) [002] d..1 82318.752946: cpu_idle: state=0 cpu_id=2
140094 crtc_commit:111-321   (  321) [000] d..2 82318.753235: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
140095          <idle>-0     (-----) [000] d..1 82318.753255: cpu_idle: state=0 cpu_id=0
140096  surfaceflinger-8858  ( 8858) [001] d..2 82318.753277: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140097          <idle>-0     (-----) [001] d..1 82318.753302: cpu_idle: state=0 cpu_id=1
140098          <idle>-0     (-----) [000] d.h5 82318.758375: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140099          <idle>-0     (-----) [000] d.h6 82318.758400: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140100          <idle>-0     (-----) [000] d.h5 82318.758405: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140101          <idle>-0     (-----) [003] .n.1 82318.758407: cpu_idle: state=4294967295 cpu_id=3
140102          <idle>-0     (-----) [000] dnh6 82318.758415: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140103          <idle>-0     (-----) [003] d..2 82318.758423: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140104          <idle>-0     (-----) [000] .n.1 82318.758430: cpu_idle: state=4294967295 cpu_id=0
140105          <idle>-0     (-----) [000] d..2 82318.758448: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140106  crtc_event:111-322   (  322) [003] d.s2 82318.758481: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
140107 crtc_commit:111-321   (  321) [000] d.s3 82318.758488: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
140108  crtc_event:111-322   (  322) [003] d.s3 82318.758508: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
140109 crtc_commit:111-321   (  321) [000] d.s4 82318.758540: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140110  crtc_event:111-322   (  322) [003] d..2 82318.758558: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
140111     rcu_preempt-7     (    7) [003] d..2 82318.758587: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
140112  kworker/u16:15-1311  ( 1311) [003] d..2 82318.758757: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140113 crtc_commit:111-321   (  321) [000] d..2 82318.758764: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
140114          <idle>-0     (-----) [003] d..1 82318.758775: cpu_idle: state=0 cpu_id=3
140115          <idle>-0     (-----) [000] d..1 82318.758780: cpu_idle: state=0 cpu_id=0
140116          <idle>-0     (-----) [000] d.h5 82318.760700: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140117          <idle>-0     (-----) [000] dnh6 82318.760714: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140118          <idle>-0     (-----) [000] .n.1 82318.760728: cpu_idle: state=4294967295 cpu_id=0
140119          <idle>-0     (-----) [000] d..2 82318.760737: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140120 crtc_commit:111-321   (  321) [000] d..2 82318.760810: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140121          <idle>-0     (-----) [000] d..1 82318.760822: cpu_idle: state=0 cpu_id=0
140122          <idle>-0     (-----) [000] d.h5 82318.761009: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140123          <idle>-0     (-----) [000] d.h6 82318.761029: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140124          <idle>-0     (-----) [003] .n.1 82318.761036: cpu_idle: state=4294967295 cpu_id=3
140125          <idle>-0     (-----) [000] ...1 82318.761048: cpu_idle: state=4294967295 cpu_id=0
140126          <idle>-0     (-----) [003] d..2 82318.761050: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140127          <idle>-0     (-----) [000] d..1 82318.761054: cpu_idle: state=0 cpu_id=0
140128  crtc_event:111-322   (  322) [003] d..2 82318.761082: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140129          <idle>-0     (-----) [003] d..1 82318.761093: cpu_idle: state=0 cpu_id=3
140130          <idle>-0     (-----) [000] d.s3 82318.761809: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140131          <idle>-0     (-----) [000] d.s4 82318.761828: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140132          <idle>-0     (-----) [003] .n.1 82318.761834: cpu_idle: state=4294967295 cpu_id=3
140133          <idle>-0     (-----) [003] d..2 82318.761847: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140134          <idle>-0     (-----) [000] ...1 82318.761857: cpu_idle: state=4294967295 cpu_id=0
140135          <idle>-0     (-----) [000] d..1 82318.761865: cpu_idle: state=0 cpu_id=0
140136  crtc_event:111-322   (  322) [003] d..2 82318.761881: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140137          <idle>-0     (-----) [003] d..1 82318.761889: cpu_idle: state=0 cpu_id=3
140138          <idle>-0     (-----) [003] d.h2 82318.762712: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
140139          <idle>-0     (-----) [003] dnh3 82318.762732: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
140140          <idle>-0     (-----) [003] .n.1 82318.762743: cpu_idle: state=4294967295 cpu_id=3
140141          <idle>-0     (-----) [003] d..2 82318.762752: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
140142        DispSync-8879  ( 8858) [003] d..1 82318.762769: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
140143        DispSync-8879  ( 8858) [003] d..2 82318.762797: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
140144          <idle>-0     (-----) [000] .n.1 82318.762802: cpu_idle: state=4294967295 cpu_id=0
140145          <idle>-0     (-----) [002] ...1 82318.762805: cpu_idle: state=4294967295 cpu_id=2
140146          <idle>-0     (-----) [002] d..1 82318.762814: cpu_idle: state=0 cpu_id=2
140147          <idle>-0     (-----) [000] d..2 82318.762816: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
140148          <idle>-0     (-----) [001] d.s3 82318.762822: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140149        DispSync-8879  ( 8858) [003] d..2 82318.762835: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140150          <idle>-0     (-----) [001] dns4 82318.762842: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140151          <idle>-0     (-----) [003] d..1 82318.762847: cpu_idle: state=0 cpu_id=3
140152          <idle>-0     (-----) [001] .n.1 82318.762862: cpu_idle: state=4294967295 cpu_id=1
140153  appEventThread-8881  ( 8858) [000] d..3 82318.762870: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140154          <idle>-0     (-----) [001] d..2 82318.762881: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
140155          <idle>-0     (-----) [004] dnh2 82318.762901: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140156          <idle>-0     (-----) [004] .n.1 82318.762905: cpu_idle: state=4294967295 cpu_id=4
140157          <idle>-0     (-----) [004] d..2 82318.762913: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
140158     kworker/1:1-25249 (25249) [001] d..2 82318.762932: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
140159  appEventThread-8881  ( 8858) [000] d..2 82318.762940: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140160     kworker/1:1-25249 (25249) [001] d..3 82318.762953: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
140161          <idle>-0     (-----) [000] d..1 82318.762959: cpu_idle: state=0 cpu_id=0
140162     kworker/1:1-25249 (25249) [001] d..2 82318.762994: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
140163          <idle>-0     (-----) [002] ...1 82318.763038: cpu_idle: state=4294967295 cpu_id=2
140164          <idle>-0     (-----) [002] d..1 82318.763045: cpu_idle: state=0 cpu_id=2
140165 s.nexuslauncher-10023 (10023) [004] .... 82318.763098: binder_transaction: transaction=1573097 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
140166 s.nexuslauncher-10023 (10023) [004] .... 82318.763103: binder_transaction_alloc_buf: transaction=1573097 data_size=80 offsets_size=0
140167 s.nexuslauncher-10023 (10023) [004] d..4 82318.763108: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
140168          <idle>-0     (-----) [000] dnh2 82318.763176: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
140169          <idle>-0     (-----) [000] .n.1 82318.763183: cpu_idle: state=4294967295 cpu_id=0
140170 s.nexuslauncher-10023 (10023) [004] d..3 82318.763195: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140171          <idle>-0     (-----) [000] d..2 82318.763197: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
140172 [email protected] (  798) [001] d..2 82318.763198: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140173   Binder:8858_1-8871  ( 8858) [000] .... 82318.763207: binder_transaction_received: transaction=1573097
140174 s.nexuslauncher-10023 (10023) [004] d..4 82318.763212: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140175          <idle>-0     (-----) [005] .n.1 82318.763219: cpu_idle: state=4294967295 cpu_id=5
140176          <idle>-0     (-----) [001] d..1 82318.763222: cpu_idle: state=0 cpu_id=1
140177          <idle>-0     (-----) [005] d..2 82318.763231: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140178   Binder:8858_1-8871  ( 8858) [000] d..1 82318.763245: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
140179    RenderThread-16607 (10023) [005] d..2 82318.763265: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
140180          <idle>-0     (-----) [005] d..1 82318.763272: cpu_idle: state=0 cpu_id=5
140181   Binder:8858_1-8871  ( 8858) [000] d..2 82318.763275: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
140182          <idle>-0     (-----) [003] .n.1 82318.763281: cpu_idle: state=4294967295 cpu_id=3
140183          <idle>-0     (-----) [003] d..2 82318.763290: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
140184   Binder:8858_1-8871  ( 8858) [000] d..2 82318.763329: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140185          <idle>-0     (-----) [000] d..1 82318.763350: cpu_idle: state=0 cpu_id=0
140186  appEventThread-8881  ( 8858) [003] d..2 82318.763352: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140187          <idle>-0     (-----) [003] d..1 82318.763362: cpu_idle: state=0 cpu_id=3
140188 s.nexuslauncher-10023 (10023) [004] d..3 82318.763409: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140189 s.nexuslauncher-10023 (10023) [004] d..4 82318.763427: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140190          <idle>-0     (-----) [005] .n.1 82318.763431: cpu_idle: state=4294967295 cpu_id=5
140191          <idle>-0     (-----) [005] d..2 82318.763439: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140192 s.nexuslauncher-10023 (10023) [004] d..2 82318.763452: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
140193          <idle>-0     (-----) [004] d..1 82318.763468: cpu_idle: state=0 cpu_id=4
140194    RenderThread-16607 (10023) [005] d..1 82318.763585: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140195    RenderThread-16607 (10023) [005] d..2 82318.763603: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140196          <idle>-0     (-----) [004] .n.1 82318.763609: cpu_idle: state=4294967295 cpu_id=4
140197          <idle>-0     (-----) [004] d..2 82318.763619: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
140198    RenderThread-16607 (10023) [005] .... 82318.763651: binder_transaction: transaction=1573098 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
140199    RenderThread-16607 (10023) [005] .... 82318.763655: binder_transaction_alloc_buf: transaction=1573098 data_size=104 offsets_size=0
140200    RenderThread-16607 (10023) [005] ...2 82318.763659: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
140201    RenderThread-16607 (10023) [005] d..4 82318.763662: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
140202    RenderThread-16607 (10023) [005] d..5 82318.763681: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
140203    RenderThread-16607 (10023) [005] d..2 82318.763728: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
140204 s.nexuslauncher-10023 (10023) [004] d..2 82318.763731: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
140205   Binder:8858_1-8871  ( 8858) [005] .... 82318.763741: binder_transaction_received: transaction=1573098
140206          <idle>-0     (-----) [004] d..1 82318.763743: cpu_idle: state=0 cpu_id=4
140207   Binder:8858_1-8871  ( 8858) [005] .... 82318.763801: binder_transaction: transaction=1573099 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
140208   Binder:8858_1-8871  ( 8858) [005] .... 82318.763806: binder_transaction_alloc_buf: transaction=1573099 data_size=52 offsets_size=8
140209   Binder:8858_1-8871  ( 8858) [005] d..2 82318.763812: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140210   Binder:8858_1-8871  ( 8858) [005] d..3 82318.763823: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140211   Binder:8858_1-8871  ( 8858) [005] .... 82318.763826: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
140212   Binder:8858_1-8871  ( 8858) [005] d..2 82318.763836: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
140213    RenderThread-16607 (10023) [005] .... 82318.763846: binder_transaction_received: transaction=1573099
140214          <idle>-0     (-----) [004] ...1 82318.763994: cpu_idle: state=4294967295 cpu_id=4
140215          <idle>-0     (-----) [004] d..1 82318.763997: cpu_idle: state=0 cpu_id=4
140216          <idle>-0     (-----) [001] d.s3 82318.764281: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140217          <idle>-0     (-----) [001] dns4 82318.764295: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140218          <idle>-0     (-----) [001] .n.1 82318.764318: cpu_idle: state=4294967295 cpu_id=1
140219          <idle>-0     (-----) [001] d..2 82318.764334: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
140220     kworker/1:1-25249 (25249) [001] d..2 82318.764371: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
140221     kworker/1:1-25249 (25249) [001] d..3 82318.764385: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
140222     kworker/1:1-25249 (25249) [001] d..2 82318.764418: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
140223 [email protected] (  798) [001] d..2 82318.764566: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140224          <idle>-0     (-----) [001] d..1 82318.764587: cpu_idle: state=0 cpu_id=1
140225          <idle>-0     (-----) [000] ...1 82318.764854: cpu_idle: state=4294967295 cpu_id=0
140226          <idle>-0     (-----) [000] d..1 82318.764859: cpu_idle: state=0 cpu_id=0
140227          <idle>-0     (-----) [001] d.s3 82318.764953: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140228          <idle>-0     (-----) [001] dns4 82318.764966: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140229          <idle>-0     (-----) [001] dns3 82318.764994: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
140230          <idle>-0     (-----) [001] dns4 82318.765017: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
140231          <idle>-0     (-----) [001] .n.1 82318.765035: cpu_idle: state=4294967295 cpu_id=1
140232          <idle>-0     (-----) [001] d..2 82318.765052: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
140233    RenderThread-16607 (10023) [005] d..2 82318.765089: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
140234   Binder:8858_1-8871  ( 8858) [005] d.h2 82318.765137: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140235          <idle>-0     (-----) [003] d.s2 82318.765140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140236   Binder:8858_1-8871  ( 8858) [005] d.h3 82318.765155: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
140237   Binder:8858_1-8871  ( 8858) [005] d.h3 82318.765162: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
140238          <idle>-0     (-----) [003] dns3 82318.765165: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140239          <idle>-0     (-----) [004] .n.1 82318.765167: cpu_idle: state=4294967295 cpu_id=4
140240          <idle>-0     (-----) [004] d..2 82318.765177: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140241          <idle>-0     (-----) [003] .n.1 82318.765190: cpu_idle: state=4294967295 cpu_id=3
140242          <idle>-0     (-----) [003] d..2 82318.765202: 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
140243     rcu_preempt-7     (    7) [003] d..2 82318.765210: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
140244   Binder:8858_1-8871  ( 8858) [005] d..2 82318.765239: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
140245   cds_mc_thread-16565 (16565) [001] d..2 82318.765251: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
140246          <idle>-0     (-----) [005] d..1 82318.765255: cpu_idle: state=0 cpu_id=5
140247     rcu_preempt-7     (    7) [003] d..3 82318.765258: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
140248          <idle>-0     (-----) [002] ...1 82318.765258: cpu_idle: state=4294967295 cpu_id=2
140249          <idle>-0     (-----) [002] d..1 82318.765264: cpu_idle: state=0 cpu_id=2
140250     rcu_preempt-7     (    7) [003] d..2 82318.765272: 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
140251         rcuop/0-10    (   10) [003] d..2 82318.765277: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
140252     kworker/1:1-25249 (25249) [001] d..2 82318.765285: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
140253     kworker/1:1-25249 (25249) [001] d..3 82318.765301: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
140254         rcuop/0-10    (   10) [003] d..3 82318.765314: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
140255         rcuop/0-10    (   10) [003] d..2 82318.765318: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140256         rcuop/0-10    (   10) [003] d..3 82318.765331: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140257         rcuop/0-10    (   10) [003] d..2 82318.765342: 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
140258     kworker/1:1-25249 (25249) [001] d..2 82318.765355: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
140259         rcuop/1-21    (   21) [003] d..2 82318.765357: 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
140260    RenderThread-16607 (10023) [004] .... 82318.765361: binder_transaction: transaction=1573100 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
140261    RenderThread-16607 (10023) [004] .... 82318.765366: binder_transaction_alloc_buf: transaction=1573100 data_size=192 offsets_size=8
140262    RenderThread-16607 (10023) [004] ...2 82318.765374: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
140263    RenderThread-16607 (10023) [004] d..4 82318.765378: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
140264     rcu_preempt-7     (    7) [003] d..2 82318.765385: 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
140265    RenderThread-16607 (10023) [004] d..5 82318.765398: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
140266          <idle>-0     (-----) [003] d..1 82318.765399: cpu_idle: state=0 cpu_id=3
140267    RenderThread-16607 (10023) [004] d..2 82318.765410: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
140268   Binder:8858_1-8871  ( 8858) [004] .... 82318.765425: binder_transaction_received: transaction=1573100
140269   Binder:8858_1-8871  ( 8858) [004] .... 82318.765559: binder_transaction: transaction=1573101 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
140270   Binder:8858_1-8871  ( 8858) [004] .... 82318.765563: binder_transaction_alloc_buf: transaction=1573101 data_size=68 offsets_size=0
140271   Binder:8858_1-8871  ( 8858) [004] d..2 82318.765566: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
140272   Binder:8858_1-8871  ( 8858) [004] d..3 82318.765578: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
140273   Binder:8858_1-8871  ( 8858) [004] .... 82318.765581: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
140274   Binder:8858_1-8871  ( 8858) [004] d..2 82318.765591: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
140275    RenderThread-16607 (10023) [004] .... 82318.765601: binder_transaction_received: transaction=1573101
140276    RenderThread-16607 (10023) [004] d..2 82318.765670: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
140277 [email protected] (  798) [001] d..2 82318.765680: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140278          <idle>-0     (-----) [003] d.h2 82318.765691: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
140279          <idle>-0     (-----) [001] d..1 82318.765705: cpu_idle: state=0 cpu_id=1
140280          <idle>-0     (-----) [003] dnh3 82318.765706: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
140281          <idle>-0     (-----) [003] .n.1 82318.765716: cpu_idle: state=4294967295 cpu_id=3
140282   Binder:8858_1-8871  ( 8858) [004] d..2 82318.765718: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
140283          <idle>-0     (-----) [003] d..2 82318.765728: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
140284          <idle>-0     (-----) [004] d..1 82318.765736: cpu_idle: state=0 cpu_id=4
140285 irq/80-1436400.-9674  ( 9674) [003] d..2 82318.765968: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
140286          <idle>-0     (-----) [003] d..1 82318.765983: cpu_idle: state=0 cpu_id=3
140287          <idle>-0     (-----) [001] d.s3 82318.766002: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
140288          <idle>-0     (-----) [001] d.s4 82318.766020: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
140289          <idle>-0     (-----) [003] .n.1 82318.766027: cpu_idle: state=4294967295 cpu_id=3
140290          <idle>-0     (-----) [001] ...1 82318.766033: cpu_idle: state=4294967295 cpu_id=1
140291          <idle>-0     (-----) [003] d..2 82318.766038: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
140292          <idle>-0     (-----) [001] d..1 82318.766041: cpu_idle: state=0 cpu_id=1
140293 irq/80-1436400.-9674  ( 9674) [003] d..2 82318.766081: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140294          <idle>-0     (-----) [003] d..1 82318.766092: cpu_idle: state=0 cpu_id=3
140295          <idle>-0     (-----) [002] ...1 82318.766176: cpu_idle: state=4294967295 cpu_id=2
140296          <idle>-0     (-----) [002] d..1 82318.766183: cpu_idle: state=0 cpu_id=2
140297          <idle>-0     (-----) [000] d.h3 82318.766620: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
140298          <idle>-0     (-----) [000] dnh4 82318.766645: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
140299          <idle>-0     (-----) [000] .n.1 82318.766659: cpu_idle: state=4294967295 cpu_id=0
140300          <idle>-0     (-----) [000] d..2 82318.766673: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
140301          <idle>-0     (-----) [003] d.h2 82318.766730: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
140302 kgsl_worker_thr-258   (  258) [000] d..2 82318.766733: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
140303          <idle>-0     (-----) [003] dnh3 82318.766746: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
140304 kgsl_worker_thr-258   (  258) [000] d..3 82318.766758: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
140305          <idle>-0     (-----) [003] .n.1 82318.766765: cpu_idle: state=4294967295 cpu_id=3
140306          <idle>-0     (-----) [003] d..2 82318.766777: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
140307        DispSync-8879  ( 8858) [003] d..1 82318.766798: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140308 kgsl_worker_thr-258   (  258) [000] d..2 82318.766808: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140309        DispSync-8879  ( 8858) [003] d..2 82318.766818: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140310          <idle>-0     (-----) [002] .n.1 82318.766823: cpu_idle: state=4294967295 cpu_id=2
140311          <idle>-0     (-----) [000] d..1 82318.766828: cpu_idle: state=0 cpu_id=0
140312          <idle>-0     (-----) [002] d..2 82318.766839: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
140313        DispSync-8879  ( 8858) [003] d..2 82318.766851: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
140314   sfEventThread-8882  ( 8858) [002] d..3 82318.766895: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140315   sfEventThread-8882  ( 8858) [002] d..4 82318.766920: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140316          <idle>-0     (-----) [001] .n.1 82318.766924: cpu_idle: state=4294967295 cpu_id=1
140317          <idle>-0     (-----) [001] d..2 82318.766939: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
140318   sfEventThread-8882  ( 8858) [002] d..2 82318.766969: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140319          <idle>-0     (-----) [002] d..1 82318.766987: cpu_idle: state=0 cpu_id=2
140320  kworker/u16:15-1311  ( 1311) [003] d..2 82318.767038: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140321          <idle>-0     (-----) [003] d..1 82318.767056: cpu_idle: state=0 cpu_id=3
140322  surfaceflinger-8858  ( 8858) [001] d..1 82318.767366: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140323  surfaceflinger-8858  ( 8858) [001] d..2 82318.767395: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140324          <idle>-0     (-----) [002] .n.1 82318.767401: cpu_idle: state=4294967295 cpu_id=2
140325          <idle>-0     (-----) [002] d..2 82318.767414: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
140326   sfEventThread-8882  ( 8858) [002] d..2 82318.767457: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140327          <idle>-0     (-----) [002] d..1 82318.767471: cpu_idle: state=0 cpu_id=2
140328  surfaceflinger-8858  ( 8858) [001] ...1 82318.767628: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
140329  surfaceflinger-8858  ( 8858) [001] ...1 82318.767637: tracing_mark_write: E|8858
140330  surfaceflinger-8858  ( 8858) [001] .... 82318.767707: binder_transaction: transaction=1573102 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
140331  surfaceflinger-8858  ( 8858) [001] .... 82318.767714: binder_transaction_alloc_buf: transaction=1573102 data_size=540 offsets_size=96
140332  surfaceflinger-8858  ( 8858) [001] ...2 82318.767744: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
140333  surfaceflinger-8858  ( 8858) [001] d..4 82318.767753: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
140334  surfaceflinger-8858  ( 8858) [001] d..5 82318.767777: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
140335          <idle>-0     (-----) [002] .n.1 82318.767784: cpu_idle: state=4294967295 cpu_id=2
140336          <idle>-0     (-----) [002] d..2 82318.767796: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
140337 [email protected]   (  619) [002] .... 82318.767809: binder_transaction_received: transaction=1573102
140338  surfaceflinger-8858  ( 8858) [001] d..2 82318.767819: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140339          <idle>-0     (-----) [001] d..1 82318.767846: cpu_idle: state=0 cpu_id=1
140340 [email protected]   (  619) [002] ...1 82318.767863: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
140341 [email protected]   (  619) [002] ...1 82318.767993: tracing_mark_write: B|619|HWCSession::PresentDisplay::
140342 [email protected]   (  619) [002] ...1 82318.768194: tracing_mark_write: B|619|HWDeviceDRM::Commit::
140343 [email protected]   (  619) [002] ...1 82318.768211: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
140344          <idle>-0     (-----) [000] ...1 82318.768328: cpu_idle: state=4294967295 cpu_id=0
140345          <idle>-0     (-----) [000] d..1 82318.768333: cpu_idle: state=0 cpu_id=0
140346 [email protected]   (  619) [002] d.s2 82318.768498: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
140347 [email protected]   (  619) [002] d.s3 82318.768524: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
140348          <idle>-0     (-----) [003] .n.1 82318.768531: cpu_idle: state=4294967295 cpu_id=3
140349          <idle>-0     (-----) [003] d..2 82318.768549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
140350  kworker/u16:15-1311  ( 1311) [003] d..2 82318.768784: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140351          <idle>-0     (-----) [003] d..1 82318.768796: cpu_idle: state=0 cpu_id=3
140352 [email protected]   (  619) [002] d..2 82318.769055: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140353 [email protected]   (  619) [002] d..3 82318.769085: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140354          <idle>-0     (-----) [000] .n.1 82318.769089: cpu_idle: state=4294967295 cpu_id=0
140355          <idle>-0     (-----) [000] d..2 82318.769103: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140356 [email protected]   (  619) [002] ...1 82318.769215: tracing_mark_write: E|619
140357 [email protected]   (  619) [002] ...1 82318.769223: tracing_mark_write: E|619
140358 [email protected]   (  619) [002] ...1 82318.769293: tracing_mark_write: E|619
140359 [email protected]   (  619) [002] ...1 82318.769346: tracing_mark_write: E|619
140360 [email protected]   (  619) [002] .... 82318.769365: binder_transaction: transaction=1573103 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
140361 [email protected]   (  619) [002] .... 82318.769371: binder_transaction_alloc_buf: transaction=1573103 data_size=576 offsets_size=112
140362 [email protected]   (  619) [002] d..2 82318.769398: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140363 [email protected]   (  619) [002] d..3 82318.769421: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140364 [email protected]   (  619) [002] .... 82318.769428: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
140365          <idle>-0     (-----) [001] .n.1 82318.769430: cpu_idle: state=4294967295 cpu_id=1
140366          <idle>-0     (-----) [001] d..2 82318.769443: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
140367  surfaceflinger-8858  ( 8858) [001] .... 82318.769454: binder_transaction_received: transaction=1573103
140368 [email protected]   (  619) [002] d..2 82318.769537: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140369          <idle>-0     (-----) [002] d..1 82318.769562: cpu_idle: state=0 cpu_id=2
140370 crtc_commit:111-321   (  321) [000] d..2 82318.769890: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
140371          <idle>-0     (-----) [000] d..1 82318.769909: cpu_idle: state=0 cpu_id=0
140372  surfaceflinger-8858  ( 8858) [001] d..2 82318.769963: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140373          <idle>-0     (-----) [001] d..1 82318.769990: cpu_idle: state=0 cpu_id=1
140374          <idle>-0     (-----) [002] ...1 82318.771140: cpu_idle: state=4294967295 cpu_id=2
140375          <idle>-0     (-----) [002] d..1 82318.771146: cpu_idle: state=0 cpu_id=2
140376          <idle>-0     (-----) [001] ...1 82318.771806: cpu_idle: state=4294967295 cpu_id=1
140377          <idle>-0     (-----) [001] d..1 82318.771813: cpu_idle: state=0 cpu_id=1
140378          <idle>-0     (-----) [003] d.s2 82318.771891: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140379          <idle>-0     (-----) [003] dns3 82318.771917: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140380          <idle>-0     (-----) [003] .n.1 82318.771930: cpu_idle: state=4294967295 cpu_id=3
140381          <idle>-0     (-----) [003] d..2 82318.771942: 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
140382     rcu_preempt-7     (    7) [003] d..2 82318.771957: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
140383     rcu_preempt-7     (    7) [003] d..3 82318.771977: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
140384     rcu_preempt-7     (    7) [003] d..2 82318.771991: 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
140385         rcuop/0-10    (   10) [003] d..2 82318.771996: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
140386         rcuop/0-10    (   10) [003] d..3 82318.772012: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
140387         rcuop/0-10    (   10) [003] d..2 82318.772016: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140388         rcuop/0-10    (   10) [003] d..3 82318.772029: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140389         rcuop/0-10    (   10) [003] d..2 82318.772038: 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
140390         rcuop/1-21    (   21) [003] d..2 82318.772056: 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
140391     rcu_preempt-7     (    7) [003] d..2 82318.772088: 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
140392          <idle>-0     (-----) [003] d..1 82318.772106: cpu_idle: state=0 cpu_id=3
140393          <idle>-0     (-----) [000] d.h5 82318.774847: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140394          <idle>-0     (-----) [000] d.h6 82318.774873: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140395          <idle>-0     (-----) [000] d.h5 82318.774878: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140396          <idle>-0     (-----) [003] .n.1 82318.774881: cpu_idle: state=4294967295 cpu_id=3
140397          <idle>-0     (-----) [000] dnh6 82318.774889: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140398          <idle>-0     (-----) [003] d..2 82318.774894: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140399          <idle>-0     (-----) [000] .n.1 82318.774905: cpu_idle: state=4294967295 cpu_id=0
140400          <idle>-0     (-----) [000] d..2 82318.774919: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140401  crtc_event:111-322   (  322) [003] d..2 82318.774933: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140402          <idle>-0     (-----) [003] d..1 82318.774945: cpu_idle: state=0 cpu_id=3
140403 crtc_commit:111-321   (  321) [000] d..2 82318.775075: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
140404          <idle>-0     (-----) [000] d..1 82318.775088: cpu_idle: state=0 cpu_id=0
140405          <idle>-0     (-----) [000] d.s3 82318.775142: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140406          <idle>-0     (-----) [000] d.s4 82318.775161: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140407          <idle>-0     (-----) [003] .n.1 82318.775167: cpu_idle: state=4294967295 cpu_id=3
140408          <idle>-0     (-----) [000] ...1 82318.775180: cpu_idle: state=4294967295 cpu_id=0
140409          <idle>-0     (-----) [003] d..2 82318.775180: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140410          <idle>-0     (-----) [000] d..1 82318.775188: cpu_idle: state=0 cpu_id=0
140411  crtc_event:111-322   (  322) [003] d..2 82318.775217: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140412          <idle>-0     (-----) [003] d..1 82318.775226: cpu_idle: state=0 cpu_id=3
140413          <idle>-0     (-----) [000] d.h5 82318.777171: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140414          <idle>-0     (-----) [000] dnh6 82318.777183: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140415          <idle>-0     (-----) [000] .n.1 82318.777196: cpu_idle: state=4294967295 cpu_id=0
140416          <idle>-0     (-----) [000] d..2 82318.777209: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140417 crtc_commit:111-321   (  321) [000] d..2 82318.777288: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140418          <idle>-0     (-----) [000] d..1 82318.777306: cpu_idle: state=0 cpu_id=0
140419          <idle>-0     (-----) [000] d.h5 82318.777484: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140420          <idle>-0     (-----) [000] d.h6 82318.777504: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140421          <idle>-0     (-----) [003] .n.1 82318.777510: cpu_idle: state=4294967295 cpu_id=3
140422          <idle>-0     (-----) [003] d..2 82318.777518: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140423          <idle>-0     (-----) [000] ...1 82318.777524: cpu_idle: state=4294967295 cpu_id=0
140424          <idle>-0     (-----) [000] d..1 82318.777531: cpu_idle: state=0 cpu_id=0
140425  crtc_event:111-322   (  322) [003] d..2 82318.777545: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140426          <idle>-0     (-----) [003] d..1 82318.777553: cpu_idle: state=0 cpu_id=3
140427          <idle>-0     (-----) [003] d.s2 82318.778472: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140428          <idle>-0     (-----) [003] dns3 82318.778492: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140429          <idle>-0     (-----) [003] dns3 82318.778498: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
140430          <idle>-0     (-----) [003] dns4 82318.778514: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
140431          <idle>-0     (-----) [003] .n.1 82318.778536: cpu_idle: state=4294967295 cpu_id=3
140432          <idle>-0     (-----) [003] d..2 82318.778548: 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
140433     rcu_preempt-7     (    7) [003] d..2 82318.778558: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
140434     rcu_preempt-7     (    7) [003] d..3 82318.778575: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
140435     rcu_preempt-7     (    7) [003] d..2 82318.778586: 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
140436         rcuop/0-10    (   10) [003] d..2 82318.778590: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
140437         rcuop/0-10    (   10) [003] d..3 82318.778604: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
140438         rcuop/0-10    (   10) [003] d..2 82318.778614: 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
140439         rcuop/1-21    (   21) [003] d..2 82318.778630: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
140440  kworker/u16:15-1311  ( 1311) [003] d..2 82318.778733: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140441          <idle>-0     (-----) [003] d..1 82318.778749: cpu_idle: state=0 cpu_id=3
140442          <idle>-0     (-----) [003] d.h2 82318.779190: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
140443          <idle>-0     (-----) [003] dnh3 82318.779209: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
140444          <idle>-0     (-----) [003] .n.1 82318.779220: cpu_idle: state=4294967295 cpu_id=3
140445          <idle>-0     (-----) [003] d..2 82318.779232: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
140446        DispSync-8879  ( 8858) [003] d..1 82318.779250: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
140447        DispSync-8879  ( 8858) [003] d..2 82318.779276: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
140448          <idle>-0     (-----) [002] .n.1 82318.779281: cpu_idle: state=4294967295 cpu_id=2
140449          <idle>-0     (-----) [002] d..2 82318.779296: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
140450        DispSync-8879  ( 8858) [003] d..2 82318.779314: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140451          <idle>-0     (-----) [003] d..1 82318.779329: cpu_idle: state=0 cpu_id=3
140452  appEventThread-8881  ( 8858) [002] d..3 82318.779356: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140453          <idle>-0     (-----) [004] dnh2 82318.779391: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140454          <idle>-0     (-----) [004] .n.1 82318.779397: cpu_idle: state=4294967295 cpu_id=4
140455          <idle>-0     (-----) [004] d..2 82318.779406: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
140456  appEventThread-8881  ( 8858) [002] d..2 82318.779432: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140457          <idle>-0     (-----) [002] d..1 82318.779453: cpu_idle: state=0 cpu_id=2
140458 s.nexuslauncher-10023 (10023) [004] .... 82318.779661: binder_transaction: transaction=1573104 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
140459 s.nexuslauncher-10023 (10023) [004] .... 82318.779666: binder_transaction_alloc_buf: transaction=1573104 data_size=80 offsets_size=0
140460 s.nexuslauncher-10023 (10023) [004] d..4 82318.779671: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
140461          <idle>-0     (-----) [000] dnh2 82318.779740: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
140462          <idle>-0     (-----) [000] .n.1 82318.779747: cpu_idle: state=4294967295 cpu_id=0
140463 s.nexuslauncher-10023 (10023) [004] d..3 82318.779758: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
140464          <idle>-0     (-----) [000] d..2 82318.779762: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
140465   Binder:8858_1-8871  ( 8858) [000] .... 82318.779773: binder_transaction_received: transaction=1573104
140466 s.nexuslauncher-10023 (10023) [004] d..4 82318.779780: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140467          <idle>-0     (-----) [005] .n.1 82318.779786: cpu_idle: state=4294967295 cpu_id=5
140468          <idle>-0     (-----) [005] d..2 82318.779798: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140469   Binder:8858_1-8871  ( 8858) [000] d..1 82318.779810: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
140470   Binder:8858_1-8871  ( 8858) [000] d..2 82318.779831: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
140471          <idle>-0     (-----) [002] .n.1 82318.779839: cpu_idle: state=4294967295 cpu_id=2
140472    RenderThread-16607 (10023) [005] d..2 82318.779849: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
140473          <idle>-0     (-----) [002] d..2 82318.779851: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
140474          <idle>-0     (-----) [005] d..1 82318.779861: cpu_idle: state=0 cpu_id=5
140475   Binder:8858_1-8871  ( 8858) [000] d..2 82318.779886: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140476  appEventThread-8881  ( 8858) [002] d..2 82318.779900: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140477          <idle>-0     (-----) [000] d..1 82318.779906: cpu_idle: state=0 cpu_id=0
140478          <idle>-0     (-----) [002] d..1 82318.779914: cpu_idle: state=0 cpu_id=2
140479 s.nexuslauncher-10023 (10023) [004] d..3 82318.780022: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140480 s.nexuslauncher-10023 (10023) [004] d..4 82318.780040: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140481          <idle>-0     (-----) [005] .n.1 82318.780045: cpu_idle: state=4294967295 cpu_id=5
140482          <idle>-0     (-----) [005] d..2 82318.780055: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140483 s.nexuslauncher-10023 (10023) [004] d..2 82318.780067: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
140484          <idle>-0     (-----) [004] d..1 82318.780084: cpu_idle: state=0 cpu_id=4
140485    RenderThread-16607 (10023) [005] d..1 82318.780213: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140486    RenderThread-16607 (10023) [005] d..2 82318.780229: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140487          <idle>-0     (-----) [004] .n.1 82318.780236: cpu_idle: state=4294967295 cpu_id=4
140488          <idle>-0     (-----) [004] d..2 82318.780246: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
140489    RenderThread-16607 (10023) [005] .... 82318.780284: binder_transaction: transaction=1573105 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
140490    RenderThread-16607 (10023) [005] .... 82318.780289: binder_transaction_alloc_buf: transaction=1573105 data_size=104 offsets_size=0
140491    RenderThread-16607 (10023) [005] ...2 82318.780293: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
140492    RenderThread-16607 (10023) [005] d..4 82318.780296: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
140493    RenderThread-16607 (10023) [005] d..5 82318.780317: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
140494 s.nexuslauncher-10023 (10023) [004] d..2 82318.780358: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
140495    RenderThread-16607 (10023) [005] d..2 82318.780364: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
140496          <idle>-0     (-----) [004] d..1 82318.780369: cpu_idle: state=0 cpu_id=4
140497   Binder:8858_1-8871  ( 8858) [005] .... 82318.780376: binder_transaction_received: transaction=1573105
140498   Binder:8858_1-8871  ( 8858) [005] .... 82318.780438: binder_transaction: transaction=1573106 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
140499   Binder:8858_1-8871  ( 8858) [005] .... 82318.780443: binder_transaction_alloc_buf: transaction=1573106 data_size=52 offsets_size=8
140500   Binder:8858_1-8871  ( 8858) [005] d..2 82318.780450: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140501   Binder:8858_1-8871  ( 8858) [005] d..3 82318.780460: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140502   Binder:8858_1-8871  ( 8858) [005] .... 82318.780462: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
140503   Binder:8858_1-8871  ( 8858) [005] d..2 82318.780473: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
140504    RenderThread-16607 (10023) [005] .... 82318.780482: binder_transaction_received: transaction=1573106
140505          <idle>-0     (-----) [002] ...1 82318.781365: cpu_idle: state=4294967295 cpu_id=2
140506          <idle>-0     (-----) [002] d..1 82318.781370: cpu_idle: state=0 cpu_id=2
140507    RenderThread-16607 (10023) [005] d..2 82318.781825: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
140508   Binder:8858_1-8871  ( 8858) [005] d.h1 82318.781877: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140509   Binder:8858_1-8871  ( 8858) [005] d.h2 82318.781896: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
140510   Binder:8858_1-8871  ( 8858) [005] d.h2 82318.781903: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
140511          <idle>-0     (-----) [004] .n.1 82318.781909: cpu_idle: state=4294967295 cpu_id=4
140512          <idle>-0     (-----) [004] d..2 82318.781920: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140513   Binder:8858_1-8871  ( 8858) [005] d..2 82318.781933: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
140514          <idle>-0     (-----) [005] d..1 82318.781949: cpu_idle: state=0 cpu_id=5
140515    RenderThread-16607 (10023) [004] .... 82318.782092: binder_transaction: transaction=1573107 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
140516    RenderThread-16607 (10023) [004] .... 82318.782097: binder_transaction_alloc_buf: transaction=1573107 data_size=192 offsets_size=8
140517    RenderThread-16607 (10023) [004] ...2 82318.782105: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
140518    RenderThread-16607 (10023) [004] d..4 82318.782109: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
140519    RenderThread-16607 (10023) [004] d..5 82318.782130: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
140520    RenderThread-16607 (10023) [004] d..2 82318.782143: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
140521   Binder:8858_1-8871  ( 8858) [004] .... 82318.782157: binder_transaction_received: transaction=1573107
140522   Binder:8858_1-8871  ( 8858) [004] .... 82318.782282: binder_transaction: transaction=1573108 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
140523   Binder:8858_1-8871  ( 8858) [004] .... 82318.782286: binder_transaction_alloc_buf: transaction=1573108 data_size=68 offsets_size=0
140524   Binder:8858_1-8871  ( 8858) [004] d..2 82318.782289: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
140525   Binder:8858_1-8871  ( 8858) [004] d..3 82318.782300: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
140526   Binder:8858_1-8871  ( 8858) [004] .... 82318.782303: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
140527   Binder:8858_1-8871  ( 8858) [004] d..2 82318.782313: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
140528    RenderThread-16607 (10023) [004] .... 82318.782323: binder_transaction_received: transaction=1573108
140529    RenderThread-16607 (10023) [004] d..2 82318.782388: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
140530   Binder:8858_1-8871  ( 8858) [004] d..2 82318.782436: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
140531          <idle>-0     (-----) [004] d..1 82318.782453: cpu_idle: state=0 cpu_id=4
140532          <idle>-0     (-----) [003] d.h2 82318.783193: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
140533          <idle>-0     (-----) [003] dnh3 82318.783207: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
140534          <idle>-0     (-----) [003] .n.1 82318.783216: cpu_idle: state=4294967295 cpu_id=3
140535          <idle>-0     (-----) [003] d..2 82318.783228: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
140536        DispSync-8879  ( 8858) [003] d..1 82318.783244: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140537        DispSync-8879  ( 8858) [003] d..2 82318.783262: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140538          <idle>-0     (-----) [002] .n.1 82318.783267: cpu_idle: state=4294967295 cpu_id=2
140539          <idle>-0     (-----) [002] d..2 82318.783280: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
140540        DispSync-8879  ( 8858) [003] d..2 82318.783296: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140541          <idle>-0     (-----) [003] d..1 82318.783310: cpu_idle: state=0 cpu_id=3
140542          <idle>-0     (-----) [000] d.h3 82318.783322: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
140543   sfEventThread-8882  ( 8858) [002] d..3 82318.783323: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140544          <idle>-0     (-----) [000] dnh4 82318.783340: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
140545   sfEventThread-8882  ( 8858) [002] d..4 82318.783347: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140546          <idle>-0     (-----) [001] .n.1 82318.783353: cpu_idle: state=4294967295 cpu_id=1
140547          <idle>-0     (-----) [000] .n.1 82318.783355: cpu_idle: state=4294967295 cpu_id=0
140548          <idle>-0     (-----) [001] d..2 82318.783368: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
140549          <idle>-0     (-----) [000] d..2 82318.783369: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
140550   sfEventThread-8882  ( 8858) [002] d..2 82318.783388: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140551          <idle>-0     (-----) [002] d..1 82318.783404: cpu_idle: state=0 cpu_id=2
140552 kgsl_worker_thr-258   (  258) [000] d..2 82318.783426: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
140553 kgsl_worker_thr-258   (  258) [000] d..3 82318.783481: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
140554 kgsl_worker_thr-258   (  258) [000] d..2 82318.783508: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
140555  kworker/u16:15-1311  ( 1311) [000] d..2 82318.783691: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140556  surfaceflinger-8858  ( 8858) [001] d..2 82318.783703: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
140557          <idle>-0     (-----) [000] d..1 82318.783712: cpu_idle: state=0 cpu_id=0
140558  surfaceflinger-8858  ( 8858) [001] d..3 82318.783761: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
140559  surfaceflinger-8858  ( 8858) [001] d..1 82318.783797: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140560  surfaceflinger-8858  ( 8858) [001] d..2 82318.783817: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140561          <idle>-0     (-----) [002] .n.1 82318.783824: cpu_idle: state=4294967295 cpu_id=2
140562          <idle>-0     (-----) [002] d..2 82318.783836: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
140563   sfEventThread-8882  ( 8858) [002] d..2 82318.783876: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140564          <idle>-0     (-----) [002] d..1 82318.783888: cpu_idle: state=0 cpu_id=2
140565  surfaceflinger-8858  ( 8858) [001] ...1 82318.784043: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
140566  surfaceflinger-8858  ( 8858) [001] ...1 82318.784053: tracing_mark_write: E|8858
140567  surfaceflinger-8858  ( 8858) [001] .... 82318.784124: binder_transaction: transaction=1573109 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
140568  surfaceflinger-8858  ( 8858) [001] .... 82318.784131: binder_transaction_alloc_buf: transaction=1573109 data_size=540 offsets_size=96
140569  surfaceflinger-8858  ( 8858) [001] ...2 82318.784159: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
140570  surfaceflinger-8858  ( 8858) [001] d..4 82318.784168: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
140571  surfaceflinger-8858  ( 8858) [001] d..5 82318.784193: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
140572          <idle>-0     (-----) [002] .n.1 82318.784198: cpu_idle: state=4294967295 cpu_id=2
140573          <idle>-0     (-----) [002] d..2 82318.784210: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
140574  surfaceflinger-8858  ( 8858) [001] d..2 82318.784221: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
140575 [email protected]   (  619) [002] .... 82318.784222: binder_transaction_received: transaction=1573109
140576         rcuop/0-10    (   10) [001] d..2 82318.784229: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
140577         rcuop/0-10    (   10) [001] d..3 82318.784275: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
140578 [email protected]   (  619) [002] ...1 82318.784276: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
140579         rcuop/0-10    (   10) [001] d..2 82318.784288: 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
140580     rcu_preempt-7     (    7) [001] d..2 82318.784321: 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
140581          <idle>-0     (-----) [001] d..1 82318.784342: cpu_idle: state=0 cpu_id=1
140582 [email protected]   (  619) [002] ...1 82318.784398: tracing_mark_write: B|619|HWCSession::PresentDisplay::
140583 [email protected]   (  619) [002] ...1 82318.784597: tracing_mark_write: B|619|HWDeviceDRM::Commit::
140584 [email protected]   (  619) [002] ...1 82318.784614: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
140585 [email protected]   (  619) [002] d.s1 82318.785203: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
140586 [email protected]   (  619) [002] d.s2 82318.785225: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
140587 [email protected]   (  619) [002] d..2 82318.785429: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140588 [email protected]   (  619) [002] d..3 82318.785455: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140589          <idle>-0     (-----) [000] .n.1 82318.785462: cpu_idle: state=4294967295 cpu_id=0
140590          <idle>-0     (-----) [000] d..2 82318.785478: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140591 [email protected]   (  619) [002] ...1 82318.785583: tracing_mark_write: E|619
140592 [email protected]   (  619) [002] ...1 82318.785591: tracing_mark_write: E|619
140593 [email protected]   (  619) [002] ...1 82318.785665: tracing_mark_write: E|619
140594 [email protected]   (  619) [002] ...1 82318.785716: tracing_mark_write: E|619
140595 [email protected]   (  619) [002] .... 82318.785734: binder_transaction: transaction=1573110 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
140596 [email protected]   (  619) [002] .... 82318.785740: binder_transaction_alloc_buf: transaction=1573110 data_size=576 offsets_size=112
140597 [email protected]   (  619) [002] d..2 82318.785766: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140598 [email protected]   (  619) [002] d..3 82318.785790: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140599 [email protected]   (  619) [002] .... 82318.785796: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
140600          <idle>-0     (-----) [001] .n.1 82318.785798: cpu_idle: state=4294967295 cpu_id=1
140601          <idle>-0     (-----) [001] d..2 82318.785813: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
140602  surfaceflinger-8858  ( 8858) [001] .... 82318.785825: binder_transaction_received: transaction=1573110
140603 [email protected]   (  619) [002] d..2 82318.785887: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
140604     ksoftirqd/2-26    (   26) [002] d..2 82318.786034: 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
140605          <idle>-0     (-----) [002] d..1 82318.786058: cpu_idle: state=0 cpu_id=2
140606 crtc_commit:111-321   (  321) [000] d..2 82318.786253: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
140607          <idle>-0     (-----) [000] d..1 82318.786274: cpu_idle: state=0 cpu_id=0
140608  surfaceflinger-8858  ( 8858) [001] d..2 82318.786315: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140609          <idle>-0     (-----) [001] d..1 82318.786333: cpu_idle: state=0 cpu_id=1
140610          <idle>-0     (-----) [001] d.s2 82318.788479: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
140611          <idle>-0     (-----) [001] dns3 82318.788502: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
140612          <idle>-0     (-----) [001] dns3 82318.788511: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
140613          <idle>-0     (-----) [001] dns4 82318.788550: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
140614          <idle>-0     (-----) [001] .n.1 82318.788575: cpu_idle: state=4294967295 cpu_id=1
140615          <idle>-0     (-----) [001] d..2 82318.788588: 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
140616     rcu_preempt-7     (    7) [001] d..2 82318.788603: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
140617     rcu_preempt-7     (    7) [001] d..3 82318.788620: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
140618     rcu_preempt-7     (    7) [001] d..2 82318.788633: 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
140619         rcuop/0-10    (   10) [001] d..2 82318.788638: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
140620         rcuop/0-10    (   10) [001] d..3 82318.788674: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
140621         rcuop/0-10    (   10) [001] d..2 82318.788678: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
140622         rcuop/0-10    (   10) [001] d..3 82318.788691: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
140623         rcuop/0-10    (   10) [001] d..2 82318.788702: 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
140624         rcuop/1-21    (   21) [001] d..2 82318.788717: 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
140625     rcu_preempt-7     (    7) [001] d..2 82318.788731: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
140626  kworker/u16:15-1311  ( 1311) [001] d..2 82318.788862: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140627          <idle>-0     (-----) [001] d..1 82318.788882: cpu_idle: state=0 cpu_id=1
140628          <idle>-0     (-----) [000] d.h5 82318.791318: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140629          <idle>-0     (-----) [000] d.h6 82318.791341: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140630          <idle>-0     (-----) [000] d.h5 82318.791346: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140631          <idle>-0     (-----) [003] .n.1 82318.791347: cpu_idle: state=4294967295 cpu_id=3
140632          <idle>-0     (-----) [000] dnh6 82318.791355: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140633          <idle>-0     (-----) [003] d..2 82318.791360: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140634          <idle>-0     (-----) [000] .n.1 82318.791370: cpu_idle: state=4294967295 cpu_id=0
140635          <idle>-0     (-----) [000] d..2 82318.791384: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140636  crtc_event:111-322   (  322) [003] d..2 82318.791403: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140637          <idle>-0     (-----) [003] d..1 82318.791415: cpu_idle: state=0 cpu_id=3
140638 crtc_commit:111-321   (  321) [000] d..2 82318.791535: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
140639          <idle>-0     (-----) [000] d..1 82318.791548: cpu_idle: state=0 cpu_id=0
140640          <idle>-0     (-----) [000] d.s3 82318.791889: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140641          <idle>-0     (-----) [000] d.s4 82318.791911: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140642          <idle>-0     (-----) [003] .n.1 82318.791917: cpu_idle: state=4294967295 cpu_id=3
140643          <idle>-0     (-----) [003] d..2 82318.791931: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140644          <idle>-0     (-----) [000] ...1 82318.791946: cpu_idle: state=4294967295 cpu_id=0
140645          <idle>-0     (-----) [000] d..1 82318.791956: cpu_idle: state=0 cpu_id=0
140646  crtc_event:111-322   (  322) [003] d..2 82318.791968: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140647          <idle>-0     (-----) [003] d..1 82318.791978: cpu_idle: state=0 cpu_id=3
140648          <idle>-0     (-----) [000] d.h5 82318.793650: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140649          <idle>-0     (-----) [000] dnh6 82318.793666: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140650          <idle>-0     (-----) [000] .n.1 82318.793679: cpu_idle: state=4294967295 cpu_id=0
140651          <idle>-0     (-----) [000] d..2 82318.793693: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140652 crtc_commit:111-321   (  321) [000] d..2 82318.793771: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140653          <idle>-0     (-----) [000] d..1 82318.793789: cpu_idle: state=0 cpu_id=0
140654          <idle>-0     (-----) [000] d.h5 82318.793957: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140655          <idle>-0     (-----) [000] d.h6 82318.793976: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140656          <idle>-0     (-----) [003] .n.1 82318.793982: cpu_idle: state=4294967295 cpu_id=3
140657          <idle>-0     (-----) [003] d..2 82318.793993: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140658          <idle>-0     (-----) [000] ...1 82318.793997: cpu_idle: state=4294967295 cpu_id=0
140659          <idle>-0     (-----) [000] d..1 82318.794004: cpu_idle: state=0 cpu_id=0
140660  crtc_event:111-322   (  322) [003] d..2 82318.794020: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140661          <idle>-0     (-----) [003] d..1 82318.794030: cpu_idle: state=0 cpu_id=3
140662          <idle>-0     (-----) [001] d.s2 82318.795143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
140663          <idle>-0     (-----) [001] dns3 82318.795167: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
140664          <idle>-0     (-----) [001] .n.1 82318.795180: cpu_idle: state=4294967295 cpu_id=1
140665          <idle>-0     (-----) [001] d..2 82318.795195: 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
140666     rcu_preempt-7     (    7) [001] d..2 82318.795206: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
140667     rcu_preempt-7     (    7) [001] d..3 82318.795225: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
140668     rcu_preempt-7     (    7) [001] d..2 82318.795237: 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
140669         rcuop/0-10    (   10) [001] d..2 82318.795241: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
140670         rcuop/0-10    (   10) [001] d..3 82318.795257: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
140671         rcuop/0-10    (   10) [001] d..2 82318.795267: 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
140672         rcuop/1-21    (   21) [001] d..2 82318.795301: 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
140673          <idle>-0     (-----) [001] d..1 82318.795316: cpu_idle: state=0 cpu_id=1
140674          <idle>-0     (-----) [003] d.h2 82318.795647: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
140675          <idle>-0     (-----) [003] dnh3 82318.795665: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
140676          <idle>-0     (-----) [003] .n.1 82318.795675: cpu_idle: state=4294967295 cpu_id=3
140677          <idle>-0     (-----) [003] d..2 82318.795686: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
140678        DispSync-8879  ( 8858) [003] d..1 82318.795700: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
140679        DispSync-8879  ( 8858) [003] d..2 82318.795717: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
140680          <idle>-0     (-----) [002] .n.1 82318.795725: cpu_idle: state=4294967295 cpu_id=2
140681          <idle>-0     (-----) [002] d..2 82318.795741: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
140682        DispSync-8879  ( 8858) [003] d..2 82318.795753: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140683          <idle>-0     (-----) [003] d..1 82318.795766: cpu_idle: state=0 cpu_id=3
140684  appEventThread-8881  ( 8858) [002] d..3 82318.795797: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140685          <idle>-0     (-----) [004] dnh2 82318.795830: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140686          <idle>-0     (-----) [004] .n.1 82318.795836: cpu_idle: state=4294967295 cpu_id=4
140687          <idle>-0     (-----) [004] d..2 82318.795846: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
140688  appEventThread-8881  ( 8858) [002] d..2 82318.795871: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140689          <idle>-0     (-----) [002] d..1 82318.795890: cpu_idle: state=0 cpu_id=2
140690 s.nexuslauncher-10023 (10023) [004] .... 82318.796080: binder_transaction: transaction=1573111 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
140691 s.nexuslauncher-10023 (10023) [004] .... 82318.796086: binder_transaction_alloc_buf: transaction=1573111 data_size=80 offsets_size=0
140692 s.nexuslauncher-10023 (10023) [004] d..4 82318.796091: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
140693          <idle>-0     (-----) [000] dnh2 82318.796160: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
140694          <idle>-0     (-----) [000] .n.1 82318.796167: cpu_idle: state=4294967295 cpu_id=0
140695 s.nexuslauncher-10023 (10023) [004] d..3 82318.796178: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
140696          <idle>-0     (-----) [000] d..2 82318.796183: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
140697   Binder:8858_1-8871  ( 8858) [000] .... 82318.796193: binder_transaction_received: transaction=1573111
140698 s.nexuslauncher-10023 (10023) [004] d..4 82318.796199: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140699          <idle>-0     (-----) [005] .n.1 82318.796205: cpu_idle: state=4294967295 cpu_id=5
140700          <idle>-0     (-----) [005] d..2 82318.796217: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140701   Binder:8858_1-8871  ( 8858) [000] d..1 82318.796233: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
140702   Binder:8858_1-8871  ( 8858) [000] d..2 82318.796253: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
140703          <idle>-0     (-----) [002] .n.1 82318.796260: cpu_idle: state=4294967295 cpu_id=2
140704    RenderThread-16607 (10023) [005] d..2 82318.796269: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
140705          <idle>-0     (-----) [002] d..2 82318.796273: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
140706          <idle>-0     (-----) [005] d..1 82318.796281: cpu_idle: state=0 cpu_id=5
140707   Binder:8858_1-8871  ( 8858) [000] d..2 82318.796308: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140708  appEventThread-8881  ( 8858) [002] d..2 82318.796322: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140709          <idle>-0     (-----) [000] d..1 82318.796327: cpu_idle: state=0 cpu_id=0
140710          <idle>-0     (-----) [002] d..1 82318.796334: cpu_idle: state=0 cpu_id=2
140711 s.nexuslauncher-10023 (10023) [004] d..3 82318.796428: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140712 s.nexuslauncher-10023 (10023) [004] d..4 82318.796446: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140713          <idle>-0     (-----) [005] .n.1 82318.796450: cpu_idle: state=4294967295 cpu_id=5
140714          <idle>-0     (-----) [005] d..2 82318.796459: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140715 s.nexuslauncher-10023 (10023) [004] d..2 82318.796472: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
140716          <idle>-0     (-----) [004] d..1 82318.796490: cpu_idle: state=0 cpu_id=4
140717    RenderThread-16607 (10023) [005] d..1 82318.796619: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140718    RenderThread-16607 (10023) [005] d..2 82318.796634: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140719          <idle>-0     (-----) [004] .n.1 82318.796641: cpu_idle: state=4294967295 cpu_id=4
140720          <idle>-0     (-----) [004] d..2 82318.796651: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
140721    RenderThread-16607 (10023) [005] .... 82318.796688: binder_transaction: transaction=1573112 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
140722    RenderThread-16607 (10023) [005] .... 82318.796693: binder_transaction_alloc_buf: transaction=1573112 data_size=104 offsets_size=0
140723    RenderThread-16607 (10023) [005] ...2 82318.796697: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
140724    RenderThread-16607 (10023) [005] d..4 82318.796700: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
140725    RenderThread-16607 (10023) [005] d..5 82318.796721: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
140726 s.nexuslauncher-10023 (10023) [004] d..2 82318.796760: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
140727    RenderThread-16607 (10023) [005] d..2 82318.796767: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
140728          <idle>-0     (-----) [004] d..1 82318.796771: cpu_idle: state=0 cpu_id=4
140729   Binder:8858_1-8871  ( 8858) [005] .... 82318.796779: binder_transaction_received: transaction=1573112
140730   Binder:8858_1-8871  ( 8858) [005] .... 82318.796839: binder_transaction: transaction=1573113 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
140731   Binder:8858_1-8871  ( 8858) [005] .... 82318.796843: binder_transaction_alloc_buf: transaction=1573113 data_size=52 offsets_size=8
140732   Binder:8858_1-8871  ( 8858) [005] d..2 82318.796850: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140733   Binder:8858_1-8871  ( 8858) [005] d..3 82318.796861: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140734   Binder:8858_1-8871  ( 8858) [005] .... 82318.796864: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
140735   Binder:8858_1-8871  ( 8858) [005] d..2 82318.796873: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
140736    RenderThread-16607 (10023) [005] .... 82318.796882: binder_transaction_received: transaction=1573113
140737    RenderThread-16607 (10023) [005] d..2 82318.798143: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
140738   Binder:8858_1-8871  ( 8858) [005] d..2 82318.798211: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
140739          <idle>-0     (-----) [005] d..1 82318.798226: cpu_idle: state=0 cpu_id=5
140740          <idle>-0     (-----) [005] d.h2 82318.798240: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140741          <idle>-0     (-----) [005] d.h3 82318.798248: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
140742          <idle>-0     (-----) [005] dnh3 82318.798251: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140743          <idle>-0     (-----) [005] .n.1 82318.798258: cpu_idle: state=4294967295 cpu_id=5
140744          <idle>-0     (-----) [005] d..2 82318.798267: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140745    RenderThread-16607 (10023) [005] .... 82318.798428: binder_transaction: transaction=1573114 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
140746    RenderThread-16607 (10023) [005] .... 82318.798432: binder_transaction_alloc_buf: transaction=1573114 data_size=192 offsets_size=8
140747    RenderThread-16607 (10023) [005] d.s2 82318.798474: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
140748    RenderThread-16607 (10023) [005] ...2 82318.798513: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
140749    RenderThread-16607 (10023) [005] d..4 82318.798516: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
140750          <idle>-0     (-----) [000] dnh2 82318.798519: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
140751    RenderThread-16607 (10023) [005] d..5 82318.798524: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
140752          <idle>-0     (-----) [000] .n.1 82318.798527: cpu_idle: state=4294967295 cpu_id=0
140753    RenderThread-16607 (10023) [005] d..2 82318.798535: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
140754          <idle>-0     (-----) [000] d..2 82318.798543: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
140755   Binder:8858_1-8871  ( 8858) [005] .... 82318.798546: binder_transaction_received: transaction=1573114
140756   Binder:8858_1-8871  ( 8858) [005] .... 82318.798701: binder_transaction: transaction=1573115 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
140757   Binder:8858_1-8871  ( 8858) [005] .... 82318.798706: binder_transaction_alloc_buf: transaction=1573115 data_size=68 offsets_size=0
140758   Binder:8858_1-8871  ( 8858) [005] d..2 82318.798709: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140759   Binder:8858_1-8871  ( 8858) [005] d..3 82318.798721: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140760   Binder:8858_1-8871  ( 8858) [005] .... 82318.798724: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
140761  kworker/u16:15-1311  ( 1311) [000] d..2 82318.798726: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140762          <idle>-0     (-----) [000] d..1 82318.798743: cpu_idle: state=0 cpu_id=0
140763   Binder:8858_1-8871  ( 8858) [005] d..2 82318.798756: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
140764    RenderThread-16607 (10023) [005] .... 82318.798766: binder_transaction_received: transaction=1573115
140765    RenderThread-16607 (10023) [005] d..2 82318.798841: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
140766          <idle>-0     (-----) [005] d..1 82318.798858: cpu_idle: state=0 cpu_id=5
140767          <idle>-0     (-----) [003] d.h2 82318.799644: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
140768          <idle>-0     (-----) [003] dnh3 82318.799658: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
140769          <idle>-0     (-----) [003] .n.1 82318.799667: cpu_idle: state=4294967295 cpu_id=3
140770          <idle>-0     (-----) [000] d.h3 82318.799679: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
140771          <idle>-0     (-----) [003] d..2 82318.799681: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
140772        DispSync-8879  ( 8858) [003] d..1 82318.799694: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140773          <idle>-0     (-----) [000] dnh4 82318.799698: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
140774        DispSync-8879  ( 8858) [003] d..2 82318.799712: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140775          <idle>-0     (-----) [000] .n.1 82318.799714: cpu_idle: state=4294967295 cpu_id=0
140776          <idle>-0     (-----) [002] .n.1 82318.799719: cpu_idle: state=4294967295 cpu_id=2
140777          <idle>-0     (-----) [000] d..2 82318.799727: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
140778          <idle>-0     (-----) [002] d..2 82318.799732: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
140779        DispSync-8879  ( 8858) [003] d..2 82318.799749: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140780          <idle>-0     (-----) [003] d..1 82318.799764: cpu_idle: state=0 cpu_id=3
140781   sfEventThread-8882  ( 8858) [002] d..3 82318.799772: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140782 kgsl_worker_thr-258   (  258) [000] d..2 82318.799779: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
140783   sfEventThread-8882  ( 8858) [002] d..4 82318.799796: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140784 kgsl_worker_thr-258   (  258) [000] d..3 82318.799803: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
140785          <idle>-0     (-----) [001] .n.1 82318.799803: cpu_idle: state=4294967295 cpu_id=1
140786          <idle>-0     (-----) [001] d..2 82318.799816: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
140787 kgsl_worker_thr-258   (  258) [000] d..2 82318.799830: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
140788   sfEventThread-8882  ( 8858) [002] d..2 82318.799837: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140789          <idle>-0     (-----) [002] d..1 82318.799854: cpu_idle: state=0 cpu_id=2
140790  kworker/u16:15-1311  ( 1311) [000] d..2 82318.800009: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140791          <idle>-0     (-----) [000] d..1 82318.800031: cpu_idle: state=0 cpu_id=0
140792  surfaceflinger-8858  ( 8858) [001] d..2 82318.800172: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
140793  surfaceflinger-8858  ( 8858) [001] d..3 82318.800203: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
140794  surfaceflinger-8858  ( 8858) [001] d..1 82318.800239: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140795  surfaceflinger-8858  ( 8858) [001] d..2 82318.800259: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
140796          <idle>-0     (-----) [002] .n.1 82318.800265: cpu_idle: state=4294967295 cpu_id=2
140797          <idle>-0     (-----) [002] d..2 82318.800280: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
140798   sfEventThread-8882  ( 8858) [002] d..2 82318.800345: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
140799         rcuop/0-10    (   10) [002] d..2 82318.800353: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
140800         rcuop/0-10    (   10) [002] d..3 82318.800395: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
140801         rcuop/0-10    (   10) [002] d..2 82318.800408: 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
140802     rcu_preempt-7     (    7) [002] d..2 82318.800435: 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
140803          <idle>-0     (-----) [002] d..1 82318.800450: cpu_idle: state=0 cpu_id=2
140804  surfaceflinger-8858  ( 8858) [001] ...1 82318.800477: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
140805  surfaceflinger-8858  ( 8858) [001] ...1 82318.800487: tracing_mark_write: E|8858
140806  surfaceflinger-8858  ( 8858) [001] .... 82318.800554: binder_transaction: transaction=1573116 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
140807  surfaceflinger-8858  ( 8858) [001] .... 82318.800561: binder_transaction_alloc_buf: transaction=1573116 data_size=540 offsets_size=96
140808  surfaceflinger-8858  ( 8858) [001] ...2 82318.800588: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
140809  surfaceflinger-8858  ( 8858) [001] d..4 82318.800596: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
140810  surfaceflinger-8858  ( 8858) [001] d..5 82318.800622: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
140811          <idle>-0     (-----) [002] .n.1 82318.800628: cpu_idle: state=4294967295 cpu_id=2
140812          <idle>-0     (-----) [002] d..2 82318.800641: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
140813 [email protected]   (  619) [002] .... 82318.800654: binder_transaction_received: transaction=1573116
140814  surfaceflinger-8858  ( 8858) [001] d..2 82318.800667: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140815          <idle>-0     (-----) [001] d..1 82318.800691: cpu_idle: state=0 cpu_id=1
140816 [email protected]   (  619) [002] ...1 82318.800708: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
140817 [email protected]   (  619) [002] ...1 82318.800831: tracing_mark_write: B|619|HWCSession::PresentDisplay::
140818 [email protected]   (  619) [002] ...1 82318.801025: tracing_mark_write: B|619|HWDeviceDRM::Commit::
140819 [email protected]   (  619) [002] ...1 82318.801041: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
140820 [email protected]   (  619) [002] d..2 82318.801715: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140821 [email protected]   (  619) [002] d..3 82318.801744: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140822          <idle>-0     (-----) [000] .n.1 82318.801750: cpu_idle: state=4294967295 cpu_id=0
140823          <idle>-0     (-----) [000] d..2 82318.801764: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140824 [email protected]   (  619) [002] ...1 82318.801934: tracing_mark_write: E|619
140825 [email protected]   (  619) [002] ...1 82318.801943: tracing_mark_write: E|619
140826 [email protected]   (  619) [002] ...1 82318.802008: tracing_mark_write: E|619
140827 [email protected]   (  619) [002] ...1 82318.802061: tracing_mark_write: E|619
140828 [email protected]   (  619) [002] .... 82318.802079: binder_transaction: transaction=1573117 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
140829 [email protected]   (  619) [002] .... 82318.802085: binder_transaction_alloc_buf: transaction=1573117 data_size=576 offsets_size=112
140830 [email protected]   (  619) [002] d..2 82318.802112: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140831 [email protected]   (  619) [002] d..3 82318.802135: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
140832 [email protected]   (  619) [002] .... 82318.802141: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
140833          <idle>-0     (-----) [001] .n.1 82318.802142: cpu_idle: state=4294967295 cpu_id=1
140834          <idle>-0     (-----) [001] d..2 82318.802158: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
140835  surfaceflinger-8858  ( 8858) [001] .... 82318.802171: binder_transaction_received: transaction=1573117
140836 [email protected]   (  619) [002] d..2 82318.802255: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140837          <idle>-0     (-----) [002] d..1 82318.802273: cpu_idle: state=0 cpu_id=2
140838 crtc_commit:111-321   (  321) [000] d..2 82318.802587: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
140839          <idle>-0     (-----) [000] d..1 82318.802609: cpu_idle: state=0 cpu_id=0
140840  surfaceflinger-8858  ( 8858) [001] d..2 82318.802660: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140841          <idle>-0     (-----) [001] d..1 82318.802684: cpu_idle: state=0 cpu_id=1
140842          <idle>-0     (-----) [001] d.s3 82318.805028: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140843          <idle>-0     (-----) [001] dns4 82318.805049: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140844          <idle>-0     (-----) [001] .n.1 82318.805069: cpu_idle: state=4294967295 cpu_id=1
140845          <idle>-0     (-----) [002] ...1 82318.805083: cpu_idle: state=4294967295 cpu_id=2
140846          <idle>-0     (-----) [001] d..2 82318.805086: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
140847          <idle>-0     (-----) [002] d..1 82318.805091: cpu_idle: state=0 cpu_id=2
140848          <idle>-0     (-----) [002] d.s2 82318.805139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
140849          <idle>-0     (-----) [002] dns3 82318.805163: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
140850          <idle>-0     (-----) [002] .n.1 82318.805184: cpu_idle: state=4294967295 cpu_id=2
140851     kworker/1:1-25249 (25249) [001] d..2 82318.805192: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
140852          <idle>-0     (-----) [002] d..2 82318.805196: 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
140853     kworker/1:1-25249 (25249) [001] d..3 82318.805211: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
140854     rcu_preempt-7     (    7) [002] d..2 82318.805238: 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
140855          <idle>-0     (-----) [002] d..1 82318.805254: cpu_idle: state=0 cpu_id=2
140856     kworker/1:1-25249 (25249) [001] d..2 82318.805337: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
140857          <idle>-0     (-----) [002] ...1 82318.805340: cpu_idle: state=4294967295 cpu_id=2
140858          <idle>-0     (-----) [002] d..1 82318.805348: cpu_idle: state=0 cpu_id=2
140859 [email protected] (  798) [001] d..2 82318.805633: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140860          <idle>-0     (-----) [001] d..1 82318.805658: cpu_idle: state=0 cpu_id=1
140861          <idle>-0     (-----) [001] d.s3 82318.806521: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140862          <idle>-0     (-----) [001] dns4 82318.806535: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140863          <idle>-0     (-----) [001] .n.1 82318.806588: cpu_idle: state=4294967295 cpu_id=1
140864          <idle>-0     (-----) [001] d..2 82318.806604: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
140865     kworker/1:1-25249 (25249) [001] d..2 82318.806638: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
140866     kworker/1:1-25249 (25249) [001] d..3 82318.806652: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
140867     kworker/1:1-25249 (25249) [001] d..2 82318.806680: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
140868 [email protected] (  798) [001] d..2 82318.806827: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140869          <idle>-0     (-----) [001] d..1 82318.806848: cpu_idle: state=0 cpu_id=1
140870          <idle>-0     (-----) [001] d.s3 82318.807483: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140871          <idle>-0     (-----) [001] dns4 82318.807496: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
140872          <idle>-0     (-----) [001] .n.1 82318.807512: cpu_idle: state=4294967295 cpu_id=1
140873          <idle>-0     (-----) [001] d..2 82318.807529: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
140874     kworker/1:1-25249 (25249) [001] d..2 82318.807560: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
140875     kworker/1:1-25249 (25249) [001] d..3 82318.807574: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
140876     kworker/1:1-25249 (25249) [001] d.s3 82318.807621: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
140877     kworker/1:1-25249 (25249) [001] dns4 82318.807647: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
140878     kworker/1:1-25249 (25249) [001] d..2 82318.807670: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=R+ ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
140879   cds_mc_thread-16565 (16565) [001] d..2 82318.807760: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
140880          <idle>-0     (-----) [000] d.h5 82318.807785: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140881     kworker/1:1-25249 (25249) [001] d..2 82318.807785: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
140882          <idle>-0     (-----) [000] d.h6 82318.807807: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140883          <idle>-0     (-----) [000] d.h5 82318.807812: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140884          <idle>-0     (-----) [003] .n.1 82318.807813: cpu_idle: state=4294967295 cpu_id=3
140885          <idle>-0     (-----) [000] dnh6 82318.807821: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140886          <idle>-0     (-----) [003] d..2 82318.807826: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140887          <idle>-0     (-----) [000] .n.1 82318.807836: cpu_idle: state=4294967295 cpu_id=0
140888          <idle>-0     (-----) [000] d..2 82318.807851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140889  crtc_event:111-322   (  322) [003] d..2 82318.807862: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140890          <idle>-0     (-----) [003] d..1 82318.807873: cpu_idle: state=0 cpu_id=3
140891          <idle>-0     (-----) [002] ...1 82318.807902: cpu_idle: state=4294967295 cpu_id=2
140892          <idle>-0     (-----) [002] d..1 82318.807908: cpu_idle: state=0 cpu_id=2
140893 [email protected] (  798) [001] d..2 82318.807937: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
140894          <idle>-0     (-----) [001] d..1 82318.807960: cpu_idle: state=0 cpu_id=1
140895 crtc_commit:111-321   (  321) [000] d..2 82318.808000: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
140896          <idle>-0     (-----) [000] d..1 82318.808012: cpu_idle: state=0 cpu_id=0
140897          <idle>-0     (-----) [000] d.s3 82318.808476: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140898          <idle>-0     (-----) [000] d.s4 82318.808496: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140899          <idle>-0     (-----) [003] .n.1 82318.808502: cpu_idle: state=4294967295 cpu_id=3
140900          <idle>-0     (-----) [000] d.s3 82318.808503: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
140901          <idle>-0     (-----) [003] d..2 82318.808515: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140902          <idle>-0     (-----) [000] dns4 82318.808523: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
140903          <idle>-0     (-----) [000] .n.1 82318.808549: cpu_idle: state=4294967295 cpu_id=0
140904  crtc_event:111-322   (  322) [003] d..2 82318.808553: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140905          <idle>-0     (-----) [000] d..2 82318.808561: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
140906          <idle>-0     (-----) [003] d..1 82318.808564: cpu_idle: state=0 cpu_id=3
140907  kworker/u16:15-1311  ( 1311) [000] d..2 82318.808673: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140908          <idle>-0     (-----) [000] d..1 82318.808692: cpu_idle: state=0 cpu_id=0
140909          <idle>-0     (-----) [006] d.h2 82318.808811: sched_waking: comm=PowerManagerSer pid=8971 prio=116 target_cpu=006
140910          <idle>-0     (-----) [000] dnh2 82318.808854: sched_wakeup: comm=PowerManagerSer pid=8971 prio=116 target_cpu=000
140911          <idle>-0     (-----) [006] ...1 82318.808888: cpu_idle: state=4294967295 cpu_id=6
140912          <idle>-0     (-----) [000] .n.1 82318.808890: cpu_idle: state=4294967295 cpu_id=0
140913          <idle>-0     (-----) [006] d..1 82318.808894: cpu_idle: state=0 cpu_id=6
140914          <idle>-0     (-----) [000] d..2 82318.808905: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=PowerManagerSer next_pid=8971 next_prio=116
140915 PowerManagerSer-8971  ( 8943) [000] d..2 82318.809079: sched_switch: prev_comm=PowerManagerSer prev_pid=8971 prev_prio=116 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140916          <idle>-0     (-----) [000] d..1 82318.809100: cpu_idle: state=0 cpu_id=0
140917          <idle>-0     (-----) [007] ...1 82318.809921: cpu_idle: state=4294967295 cpu_id=7
140918          <idle>-0     (-----) [007] d..1 82318.809926: cpu_idle: state=0 cpu_id=7
140919          <idle>-0     (-----) [000] d.h5 82318.810124: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140920          <idle>-0     (-----) [000] dnh6 82318.810142: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
140921          <idle>-0     (-----) [000] .n.1 82318.810157: cpu_idle: state=4294967295 cpu_id=0
140922          <idle>-0     (-----) [000] d..2 82318.810170: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
140923 crtc_commit:111-321   (  321) [000] d..2 82318.810253: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140924          <idle>-0     (-----) [000] d..1 82318.810271: cpu_idle: state=0 cpu_id=0
140925          <idle>-0     (-----) [000] d.h5 82318.810431: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140926          <idle>-0     (-----) [000] d.h6 82318.810451: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
140927          <idle>-0     (-----) [003] .n.1 82318.810457: cpu_idle: state=4294967295 cpu_id=3
140928          <idle>-0     (-----) [003] d..2 82318.810468: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
140929          <idle>-0     (-----) [000] ...1 82318.810472: cpu_idle: state=4294967295 cpu_id=0
140930          <idle>-0     (-----) [000] d..1 82318.810482: cpu_idle: state=0 cpu_id=0
140931  crtc_event:111-322   (  322) [003] d..2 82318.810496: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140932          <idle>-0     (-----) [003] d..1 82318.810506: cpu_idle: state=0 cpu_id=3
140933          <idle>-0     (-----) [002] d.s2 82318.811890: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
140934          <idle>-0     (-----) [000] ...1 82318.811896: cpu_idle: state=4294967295 cpu_id=0
140935          <idle>-0     (-----) [000] d..1 82318.811901: cpu_idle: state=0 cpu_id=0
140936          <idle>-0     (-----) [002] dns3 82318.811917: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
140937          <idle>-0     (-----) [002] .n.1 82318.811928: cpu_idle: state=4294967295 cpu_id=2
140938          <idle>-0     (-----) [002] d..2 82318.811944: 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
140939     rcu_preempt-7     (    7) [002] d..2 82318.811955: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
140940     rcu_preempt-7     (    7) [002] d..3 82318.811974: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
140941     rcu_preempt-7     (    7) [002] d..2 82318.811987: 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
140942         rcuop/0-10    (   10) [002] d..2 82318.811992: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
140943         rcuop/0-10    (   10) [002] d..3 82318.812033: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
140944         rcuop/0-10    (   10) [002] d..2 82318.812038: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
140945         rcuop/0-10    (   10) [002] d..3 82318.812051: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
140946         rcuop/0-10    (   10) [002] d..2 82318.812061: 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
140947         rcuop/1-21    (   21) [002] d..2 82318.812075: 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
140948     rcu_preempt-7     (    7) [002] d..2 82318.812109: 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
140949          <idle>-0     (-----) [003] d.h2 82318.812112: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
140950          <idle>-0     (-----) [002] d..1 82318.812126: cpu_idle: state=0 cpu_id=2
140951          <idle>-0     (-----) [003] dnh3 82318.812130: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
140952          <idle>-0     (-----) [003] .n.1 82318.812139: cpu_idle: state=4294967295 cpu_id=3
140953          <idle>-0     (-----) [003] d..2 82318.812151: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
140954        DispSync-8879  ( 8858) [003] d..1 82318.812164: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
140955        DispSync-8879  ( 8858) [003] d..2 82318.812181: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
140956          <idle>-0     (-----) [002] .n.1 82318.812189: cpu_idle: state=4294967295 cpu_id=2
140957          <idle>-0     (-----) [002] d..2 82318.812203: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
140958        DispSync-8879  ( 8858) [003] d..2 82318.812217: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
140959          <idle>-0     (-----) [003] d..1 82318.812230: cpu_idle: state=0 cpu_id=3
140960  appEventThread-8881  ( 8858) [002] d..3 82318.812260: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140961          <idle>-0     (-----) [004] dnh2 82318.812292: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140962          <idle>-0     (-----) [004] .n.1 82318.812297: cpu_idle: state=4294967295 cpu_id=4
140963          <idle>-0     (-----) [004] d..2 82318.812307: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
140964  appEventThread-8881  ( 8858) [002] d..2 82318.812331: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140965          <idle>-0     (-----) [002] d..1 82318.812350: cpu_idle: state=0 cpu_id=2
140966 s.nexuslauncher-10023 (10023) [004] .... 82318.812505: binder_transaction: transaction=1573118 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
140967 s.nexuslauncher-10023 (10023) [004] .... 82318.812510: binder_transaction_alloc_buf: transaction=1573118 data_size=80 offsets_size=0
140968 s.nexuslauncher-10023 (10023) [004] d..4 82318.812515: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
140969          <idle>-0     (-----) [000] dnh2 82318.812581: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
140970          <idle>-0     (-----) [000] .n.1 82318.812588: cpu_idle: state=4294967295 cpu_id=0
140971 s.nexuslauncher-10023 (10023) [004] d..3 82318.812603: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140972          <idle>-0     (-----) [000] d..2 82318.812603: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
140973   Binder:8858_1-8871  ( 8858) [000] .... 82318.812615: binder_transaction_received: transaction=1573118
140974 s.nexuslauncher-10023 (10023) [004] d..4 82318.812619: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140975          <idle>-0     (-----) [005] .n.1 82318.812625: cpu_idle: state=4294967295 cpu_id=5
140976          <idle>-0     (-----) [005] d..2 82318.812637: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140977   Binder:8858_1-8871  ( 8858) [000] d..1 82318.812660: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
140978    RenderThread-16607 (10023) [005] d..2 82318.812667: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
140979          <idle>-0     (-----) [005] d..1 82318.812674: cpu_idle: state=0 cpu_id=5
140980   Binder:8858_1-8871  ( 8858) [000] d..2 82318.812682: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
140981          <idle>-0     (-----) [002] .n.1 82318.812689: cpu_idle: state=4294967295 cpu_id=2
140982          <idle>-0     (-----) [002] d..2 82318.812702: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
140983   Binder:8858_1-8871  ( 8858) [000] d..2 82318.812740: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
140984  appEventThread-8881  ( 8858) [002] d..2 82318.812751: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
140985          <idle>-0     (-----) [000] d..1 82318.812762: cpu_idle: state=0 cpu_id=0
140986          <idle>-0     (-----) [002] d..1 82318.812764: cpu_idle: state=0 cpu_id=2
140987 s.nexuslauncher-10023 (10023) [004] d..3 82318.812834: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
140988 s.nexuslauncher-10023 (10023) [004] d..4 82318.812852: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
140989          <idle>-0     (-----) [005] .n.1 82318.812857: cpu_idle: state=4294967295 cpu_id=5
140990          <idle>-0     (-----) [005] d..2 82318.812865: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
140991 s.nexuslauncher-10023 (10023) [004] d..2 82318.812877: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
140992          <idle>-0     (-----) [004] d..1 82318.812894: cpu_idle: state=0 cpu_id=4
140993    RenderThread-16607 (10023) [005] d..1 82318.813013: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140994    RenderThread-16607 (10023) [005] d..2 82318.813031: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
140995          <idle>-0     (-----) [004] .n.1 82318.813037: cpu_idle: state=4294967295 cpu_id=4
140996          <idle>-0     (-----) [004] d..2 82318.813047: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
140997    RenderThread-16607 (10023) [005] .... 82318.813079: binder_transaction: transaction=1573119 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
140998    RenderThread-16607 (10023) [005] .... 82318.813083: binder_transaction_alloc_buf: transaction=1573119 data_size=104 offsets_size=0
140999    RenderThread-16607 (10023) [005] ...2 82318.813087: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
141000    RenderThread-16607 (10023) [005] d..4 82318.813090: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
141001    RenderThread-16607 (10023) [005] d..5 82318.813109: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
141002 s.nexuslauncher-10023 (10023) [004] d..2 82318.813153: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
141003    RenderThread-16607 (10023) [005] d..2 82318.813156: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
141004          <idle>-0     (-----) [004] d..1 82318.813164: cpu_idle: state=0 cpu_id=4
141005   Binder:8858_1-8871  ( 8858) [005] .... 82318.813168: binder_transaction_received: transaction=1573119
141006   Binder:8858_1-8871  ( 8858) [005] .... 82318.813225: binder_transaction: transaction=1573120 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
141007   Binder:8858_1-8871  ( 8858) [005] .... 82318.813229: binder_transaction_alloc_buf: transaction=1573120 data_size=52 offsets_size=8
141008   Binder:8858_1-8871  ( 8858) [005] d..2 82318.813236: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141009   Binder:8858_1-8871  ( 8858) [005] d..3 82318.813246: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141010   Binder:8858_1-8871  ( 8858) [005] .... 82318.813248: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
141011   Binder:8858_1-8871  ( 8858) [005] d..2 82318.813258: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
141012    RenderThread-16607 (10023) [005] .... 82318.813267: binder_transaction_received: transaction=1573120
141013          <idle>-0     (-----) [000] ...1 82318.814178: cpu_idle: state=4294967295 cpu_id=0
141014          <idle>-0     (-----) [000] d..1 82318.814183: cpu_idle: state=0 cpu_id=0
141015    RenderThread-16607 (10023) [005] d..2 82318.814509: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
141016   Binder:8858_1-8871  ( 8858) [005] d..2 82318.814577: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141017          <idle>-0     (-----) [005] d..1 82318.814592: cpu_idle: state=0 cpu_id=5
141018          <idle>-0     (-----) [005] d.h2 82318.814605: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141019          <idle>-0     (-----) [005] d.h3 82318.814613: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
141020          <idle>-0     (-----) [005] dnh3 82318.814617: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141021          <idle>-0     (-----) [005] .n.1 82318.814623: cpu_idle: state=4294967295 cpu_id=5
141022          <idle>-0     (-----) [005] d..2 82318.814632: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
141023    RenderThread-16607 (10023) [005] .... 82318.814789: binder_transaction: transaction=1573121 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
141024    RenderThread-16607 (10023) [005] .... 82318.814794: binder_transaction_alloc_buf: transaction=1573121 data_size=192 offsets_size=8
141025    RenderThread-16607 (10023) [005] ...2 82318.814802: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
141026    RenderThread-16607 (10023) [005] d..4 82318.814805: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
141027    RenderThread-16607 (10023) [005] d..5 82318.814816: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
141028    RenderThread-16607 (10023) [005] d..2 82318.814828: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
141029   Binder:8858_1-8871  ( 8858) [005] .... 82318.814838: binder_transaction_received: transaction=1573121
141030   Binder:8858_1-8871  ( 8858) [005] .... 82318.814955: binder_transaction: transaction=1573122 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
141031   Binder:8858_1-8871  ( 8858) [005] .... 82318.814960: binder_transaction_alloc_buf: transaction=1573122 data_size=68 offsets_size=0
141032   Binder:8858_1-8871  ( 8858) [005] d..2 82318.814962: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141033   Binder:8858_1-8871  ( 8858) [005] d..3 82318.814973: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141034   Binder:8858_1-8871  ( 8858) [005] .... 82318.814975: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
141035   Binder:8858_1-8871  ( 8858) [005] d..2 82318.815007: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
141036    RenderThread-16607 (10023) [005] .... 82318.815016: binder_transaction_received: transaction=1573122
141037    RenderThread-16607 (10023) [005] d..2 82318.815086: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141038          <idle>-0     (-----) [005] d..1 82318.815103: cpu_idle: state=0 cpu_id=5
141039          <idle>-0     (-----) [005] d..2 82318.815306: sched_waking: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
141040          <idle>-0     (-----) [005] dn.3 82318.815316: sched_wakeup: comm=ksoftirqd/5 pid=50 prio=120 target_cpu=005
141041          <idle>-0     (-----) [005] .n.1 82318.815319: cpu_idle: state=4294967295 cpu_id=5
141042          <idle>-0     (-----) [005] d..2 82318.815329: 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
141043     ksoftirqd/5-50    (   50) [005] d.s2 82318.815338: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
141044          <idle>-0     (-----) [000] dnh2 82318.815370: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
141045          <idle>-0     (-----) [000] .n.1 82318.815377: cpu_idle: state=4294967295 cpu_id=0
141046     ksoftirqd/5-50    (   50) [005] d..2 82318.815379: 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
141047          <idle>-0     (-----) [005] d..1 82318.815386: cpu_idle: state=0 cpu_id=5
141048          <idle>-0     (-----) [000] d..2 82318.815394: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
141049  kworker/u16:15-1311  ( 1311) [000] d..2 82318.815648: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
141050          <idle>-0     (-----) [000] d..1 82318.815666: cpu_idle: state=0 cpu_id=0
141051          <idle>-0     (-----) [001] d.s3 82318.815680: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
141052          <idle>-0     (-----) [001] d.s4 82318.815696: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
141053          <idle>-0     (-----) [001] d.s4 82318.815707: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
141054          <idle>-0     (-----) [000] .n.1 82318.815714: cpu_idle: state=4294967295 cpu_id=0
141055          <idle>-0     (-----) [001] ...1 82318.815719: cpu_idle: state=4294967295 cpu_id=1
141056          <idle>-0     (-----) [000] d..2 82318.815728: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
141057          <idle>-0     (-----) [001] d..1 82318.815728: cpu_idle: state=0 cpu_id=1
141058  kworker/u16:15-1311  ( 1311) [000] d..2 82318.815763: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141059          <idle>-0     (-----) [000] d..1 82318.815776: cpu_idle: state=0 cpu_id=0
141060          <idle>-0     (-----) [000] d.h3 82318.816035: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
141061          <idle>-0     (-----) [000] dnh4 82318.816056: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
141062          <idle>-0     (-----) [000] .n.1 82318.816071: cpu_idle: state=4294967295 cpu_id=0
141063          <idle>-0     (-----) [000] d..2 82318.816083: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
141064          <idle>-0     (-----) [003] d.h2 82318.816111: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
141065          <idle>-0     (-----) [003] dnh3 82318.816124: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
141066          <idle>-0     (-----) [003] .n.1 82318.816133: cpu_idle: state=4294967295 cpu_id=3
141067 kgsl_worker_thr-258   (  258) [000] d..2 82318.816140: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
141068          <idle>-0     (-----) [003] d..2 82318.816144: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
141069        DispSync-8879  ( 8858) [003] d..1 82318.816158: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
141070        DispSync-8879  ( 8858) [003] d..2 82318.816175: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
141071          <idle>-0     (-----) [002] .n.1 82318.816181: cpu_idle: state=4294967295 cpu_id=2
141072 kgsl_worker_thr-258   (  258) [000] d..3 82318.816192: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
141073          <idle>-0     (-----) [002] d..2 82318.816195: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
141074        DispSync-8879  ( 8858) [003] d..2 82318.816209: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
141075   sfEventThread-8882  ( 8858) [002] d..3 82318.816235: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
141076 kgsl_worker_thr-258   (  258) [000] d..2 82318.816250: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141077   sfEventThread-8882  ( 8858) [002] d..4 82318.816258: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
141078          <idle>-0     (-----) [001] .n.1 82318.816263: cpu_idle: state=4294967295 cpu_id=1
141079          <idle>-0     (-----) [000] d..1 82318.816268: cpu_idle: state=0 cpu_id=0
141080          <idle>-0     (-----) [001] d..2 82318.816279: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
141081   sfEventThread-8882  ( 8858) [002] d..2 82318.816300: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141082          <idle>-0     (-----) [002] d..1 82318.816312: cpu_idle: state=0 cpu_id=2
141083  kworker/u16:15-1311  ( 1311) [003] d..2 82318.816391: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141084          <idle>-0     (-----) [003] d..1 82318.816410: cpu_idle: state=0 cpu_id=3
141085  surfaceflinger-8858  ( 8858) [001] d..1 82318.816685: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
141086  surfaceflinger-8858  ( 8858) [001] d..2 82318.816713: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
141087          <idle>-0     (-----) [002] .n.1 82318.816719: cpu_idle: state=4294967295 cpu_id=2
141088          <idle>-0     (-----) [002] d..2 82318.816728: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
141089   sfEventThread-8882  ( 8858) [002] d..2 82318.816768: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141090          <idle>-0     (-----) [002] d..1 82318.816776: cpu_idle: state=0 cpu_id=2
141091  surfaceflinger-8858  ( 8858) [001] ...1 82318.816926: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
141092  surfaceflinger-8858  ( 8858) [001] ...1 82318.816935: tracing_mark_write: E|8858
141093  surfaceflinger-8858  ( 8858) [001] .... 82318.816999: binder_transaction: transaction=1573123 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
141094  surfaceflinger-8858  ( 8858) [001] .... 82318.817005: binder_transaction_alloc_buf: transaction=1573123 data_size=540 offsets_size=96
141095  surfaceflinger-8858  ( 8858) [001] ...2 82318.817032: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
141096  surfaceflinger-8858  ( 8858) [001] d..4 82318.817040: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
141097  surfaceflinger-8858  ( 8858) [001] d..5 82318.817066: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
141098          <idle>-0     (-----) [002] .n.1 82318.817071: cpu_idle: state=4294967295 cpu_id=2
141099          <idle>-0     (-----) [002] d..2 82318.817080: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
141100 [email protected]   (  619) [002] .... 82318.817094: binder_transaction_received: transaction=1573123
141101  surfaceflinger-8858  ( 8858) [001] d..2 82318.817109: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141102          <idle>-0     (-----) [001] d..1 82318.817134: cpu_idle: state=0 cpu_id=1
141103 [email protected]   (  619) [002] ...1 82318.817149: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
141104 [email protected]   (  619) [002] ...1 82318.817278: tracing_mark_write: B|619|HWCSession::PresentDisplay::
141105 [email protected]   (  619) [002] ...1 82318.817480: tracing_mark_write: B|619|HWDeviceDRM::Commit::
141106 [email protected]   (  619) [002] ...1 82318.817498: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
141107 [email protected]   (  619) [002] d..2 82318.818182: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141108 [email protected]   (  619) [002] d..3 82318.818214: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141109          <idle>-0     (-----) [000] .n.1 82318.818220: cpu_idle: state=4294967295 cpu_id=0
141110          <idle>-0     (-----) [000] d..2 82318.818234: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
141111 [email protected]   (  619) [002] ...1 82318.818341: tracing_mark_write: E|619
141112 [email protected]   (  619) [002] ...1 82318.818349: tracing_mark_write: E|619
141113 [email protected]   (  619) [002] ...1 82318.818418: tracing_mark_write: E|619
141114 crtc_commit:111-321   (  321) [000] d.s2 82318.818487: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
141115 [email protected]   (  619) [002] d.s1 82318.818488: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
141116 crtc_commit:111-321   (  321) [000] d.s3 82318.818543: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
141117 [email protected]   (  619) [002] d.s2 82318.818556: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141118 [email protected]   (  619) [002] ...1 82318.818612: tracing_mark_write: E|619
141119 [email protected]   (  619) [002] .... 82318.818633: binder_transaction: transaction=1573124 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
141120 [email protected]   (  619) [002] .... 82318.818639: binder_transaction_alloc_buf: transaction=1573124 data_size=576 offsets_size=112
141121 [email protected]   (  619) [002] d..2 82318.818666: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
141122 [email protected]   (  619) [002] d..3 82318.818687: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
141123 [email protected]   (  619) [002] .... 82318.818693: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
141124          <idle>-0     (-----) [001] .n.1 82318.818695: cpu_idle: state=4294967295 cpu_id=1
141125          <idle>-0     (-----) [001] d..2 82318.818711: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
141126  surfaceflinger-8858  ( 8858) [001] .... 82318.818723: binder_transaction_received: transaction=1573124
141127 [email protected]   (  619) [002] d..2 82318.818807: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141128          <idle>-0     (-----) [002] d..1 82318.818833: cpu_idle: state=0 cpu_id=2
141129 crtc_commit:111-321   (  321) [000] d..2 82318.819140: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
141130     rcu_preempt-7     (    7) [000] d..2 82318.819167: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
141131  surfaceflinger-8858  ( 8858) [001] d..2 82318.819223: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141132          <idle>-0     (-----) [001] d..1 82318.819287: cpu_idle: state=0 cpu_id=1
141133  kworker/u16:15-1311  ( 1311) [000] d..2 82318.819430: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141134          <idle>-0     (-----) [000] d..1 82318.819451: cpu_idle: state=0 cpu_id=0
141135          <idle>-0     (-----) [002] ...1 82318.820121: cpu_idle: state=4294967295 cpu_id=2
141136          <idle>-0     (-----) [002] d..1 82318.820128: cpu_idle: state=0 cpu_id=2
141137          <idle>-0     (-----) [001] ...1 82318.821166: cpu_idle: state=4294967295 cpu_id=1
141138          <idle>-0     (-----) [001] d..1 82318.821172: cpu_idle: state=0 cpu_id=1
141139          <idle>-0     (-----) [000] d.h5 82318.824267: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141140          <idle>-0     (-----) [000] d.h6 82318.824291: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141141          <idle>-0     (-----) [000] d.h5 82318.824296: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141142          <idle>-0     (-----) [003] .n.1 82318.824298: cpu_idle: state=4294967295 cpu_id=3
141143          <idle>-0     (-----) [000] dnh6 82318.824305: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141144          <idle>-0     (-----) [003] d..2 82318.824314: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
141145          <idle>-0     (-----) [000] .n.1 82318.824320: cpu_idle: state=4294967295 cpu_id=0
141146          <idle>-0     (-----) [000] d..2 82318.824337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
141147  crtc_event:111-322   (  322) [003] d..2 82318.824359: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141148          <idle>-0     (-----) [003] d..2 82318.824365: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
141149          <idle>-0     (-----) [003] dn.3 82318.824380: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
141150          <idle>-0     (-----) [003] d..2 82318.824390: 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
141151     ksoftirqd/3-34    (   34) [003] d..2 82318.824418: 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
141152          <idle>-0     (-----) [003] d..1 82318.824431: cpu_idle: state=0 cpu_id=3
141153 crtc_commit:111-321   (  321) [000] d..2 82318.824491: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
141154          <idle>-0     (-----) [000] d..1 82318.824505: cpu_idle: state=0 cpu_id=0
141155          <idle>-0     (-----) [000] d.s3 82318.825141: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141156          <idle>-0     (-----) [000] d.s4 82318.825160: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141157          <idle>-0     (-----) [000] d.s2 82318.825165: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141158          <idle>-0     (-----) [003] .n.1 82318.825167: cpu_idle: state=4294967295 cpu_id=3
141159          <idle>-0     (-----) [003] d..2 82318.825181: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
141160          <idle>-0     (-----) [000] dns3 82318.825186: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141161          <idle>-0     (-----) [000] .n.1 82318.825210: cpu_idle: state=4294967295 cpu_id=0
141162  crtc_event:111-322   (  322) [003] d..2 82318.825217: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141163          <idle>-0     (-----) [000] d..2 82318.825222: 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
141164          <idle>-0     (-----) [003] d..1 82318.825228: cpu_idle: state=0 cpu_id=3
141165     rcu_preempt-7     (    7) [000] d..2 82318.825233: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
141166     rcu_preempt-7     (    7) [000] d..3 82318.825279: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
141167     rcu_preempt-7     (    7) [000] d..2 82318.825294: 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
141168         rcuop/0-10    (   10) [000] d..2 82318.825300: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
141169         rcuop/0-10    (   10) [000] d..3 82318.825333: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
141170         rcuop/0-10    (   10) [000] d..2 82318.825341: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141171         rcuop/0-10    (   10) [000] d..3 82318.825353: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141172         rcuop/0-10    (   10) [000] d..2 82318.825365: 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
141173         rcuop/1-21    (   21) [000] d..2 82318.825385: 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
141174     rcu_preempt-7     (    7) [000] d..2 82318.825411: 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
141175          <idle>-0     (-----) [000] d..1 82318.825430: cpu_idle: state=0 cpu_id=0
141176          <idle>-0     (-----) [000] d.h5 82318.826598: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141177          <idle>-0     (-----) [000] dnh6 82318.826612: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141178          <idle>-0     (-----) [000] .n.1 82318.826626: cpu_idle: state=4294967295 cpu_id=0
141179          <idle>-0     (-----) [000] d..2 82318.826638: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
141180 crtc_commit:111-321   (  321) [000] d..2 82318.826717: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141181          <idle>-0     (-----) [000] d..1 82318.826733: cpu_idle: state=0 cpu_id=0
141182          <idle>-0     (-----) [000] d.h5 82318.826901: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141183          <idle>-0     (-----) [000] d.h6 82318.826920: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141184          <idle>-0     (-----) [003] .n.1 82318.826925: cpu_idle: state=4294967295 cpu_id=3
141185          <idle>-0     (-----) [003] d..2 82318.826937: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
141186          <idle>-0     (-----) [000] ...1 82318.826941: cpu_idle: state=4294967295 cpu_id=0
141187          <idle>-0     (-----) [000] d..1 82318.826947: cpu_idle: state=0 cpu_id=0
141188  crtc_event:111-322   (  322) [003] d..2 82318.826965: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141189          <idle>-0     (-----) [003] d..1 82318.826975: cpu_idle: state=0 cpu_id=3
141190          <idle>-0     (-----) [001] d.s3 82318.827855: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141191          <idle>-0     (-----) [001] dns4 82318.827875: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141192          <idle>-0     (-----) [001] .n.1 82318.827893: cpu_idle: state=4294967295 cpu_id=1
141193          <idle>-0     (-----) [001] d..2 82318.827910: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141194     kworker/1:1-25249 (25249) [001] d..2 82318.827954: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
141195     kworker/1:1-25249 (25249) [001] d..3 82318.827972: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
141196          <idle>-0     (-----) [002] ...1 82318.827973: cpu_idle: state=4294967295 cpu_id=2
141197          <idle>-0     (-----) [002] d..1 82318.827981: cpu_idle: state=0 cpu_id=2
141198     kworker/1:1-25249 (25249) [001] d..2 82318.828013: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141199 [email protected] (  798) [001] d..2 82318.828188: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141200          <idle>-0     (-----) [001] d..1 82318.828211: cpu_idle: state=0 cpu_id=1
141201          <idle>-0     (-----) [003] d.h2 82318.828581: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
141202          <idle>-0     (-----) [003] dnh3 82318.828598: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
141203          <idle>-0     (-----) [003] .n.1 82318.828608: cpu_idle: state=4294967295 cpu_id=3
141204          <idle>-0     (-----) [003] d..2 82318.828620: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
141205        DispSync-8879  ( 8858) [003] d..1 82318.828636: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
141206        DispSync-8879  ( 8858) [003] d..2 82318.828652: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
141207          <idle>-0     (-----) [002] .n.1 82318.828658: cpu_idle: state=4294967295 cpu_id=2
141208          <idle>-0     (-----) [002] d..2 82318.828675: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
141209        DispSync-8879  ( 8858) [003] d..2 82318.828693: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141210          <idle>-0     (-----) [003] d..2 82318.828698: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
141211          <idle>-0     (-----) [003] dn.3 82318.828708: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
141212          <idle>-0     (-----) [003] d..2 82318.828718: 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
141213     ksoftirqd/3-34    (   34) [003] d.s2 82318.828726: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
141214  appEventThread-8881  ( 8858) [002] d..3 82318.828734: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141215          <idle>-0     (-----) [004] dnh2 82318.828765: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141216     ksoftirqd/3-34    (   34) [003] d.s3 82318.828769: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
141217          <idle>-0     (-----) [004] .n.1 82318.828770: cpu_idle: state=4294967295 cpu_id=4
141218          <idle>-0     (-----) [004] d..2 82318.828779: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
141219     ksoftirqd/3-34    (   34) [003] d..2 82318.828787: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
141220  appEventThread-8881  ( 8858) [002] d..2 82318.828809: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141221          <idle>-0     (-----) [002] d..1 82318.828828: cpu_idle: state=0 cpu_id=2
141222  kworker/u16:15-1311  ( 1311) [003] d..2 82318.828940: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141223          <idle>-0     (-----) [003] d..1 82318.828957: cpu_idle: state=0 cpu_id=3
141224 s.nexuslauncher-10023 (10023) [004] .... 82318.829010: binder_transaction: transaction=1573125 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
141225 s.nexuslauncher-10023 (10023) [004] .... 82318.829015: binder_transaction_alloc_buf: transaction=1573125 data_size=80 offsets_size=0
141226 s.nexuslauncher-10023 (10023) [004] d..4 82318.829021: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
141227          <idle>-0     (-----) [000] dnh2 82318.829087: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
141228          <idle>-0     (-----) [000] .n.1 82318.829093: cpu_idle: state=4294967295 cpu_id=0
141229 s.nexuslauncher-10023 (10023) [004] d..3 82318.829106: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141230          <idle>-0     (-----) [000] d..2 82318.829109: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
141231   Binder:8858_1-8871  ( 8858) [000] .... 82318.829119: binder_transaction_received: transaction=1573125
141232 s.nexuslauncher-10023 (10023) [004] d..4 82318.829122: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141233          <idle>-0     (-----) [005] .n.1 82318.829127: cpu_idle: state=4294967295 cpu_id=5
141234          <idle>-0     (-----) [005] d..2 82318.829135: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
141235   Binder:8858_1-8871  ( 8858) [000] d..1 82318.829163: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
141236    RenderThread-16607 (10023) [005] d..2 82318.829169: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141237          <idle>-0     (-----) [005] d..1 82318.829178: cpu_idle: state=0 cpu_id=5
141238   Binder:8858_1-8871  ( 8858) [000] d..2 82318.829183: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
141239          <idle>-0     (-----) [002] .n.1 82318.829190: cpu_idle: state=4294967295 cpu_id=2
141240          <idle>-0     (-----) [002] d..2 82318.829203: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
141241   Binder:8858_1-8871  ( 8858) [000] d..2 82318.829240: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141242  appEventThread-8881  ( 8858) [002] d..2 82318.829252: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141243          <idle>-0     (-----) [000] d..1 82318.829255: cpu_idle: state=0 cpu_id=0
141244          <idle>-0     (-----) [002] d..1 82318.829268: cpu_idle: state=0 cpu_id=2
141245 s.nexuslauncher-10023 (10023) [004] d..3 82318.829330: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141246 s.nexuslauncher-10023 (10023) [004] d..4 82318.829348: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141247          <idle>-0     (-----) [005] .n.1 82318.829353: cpu_idle: state=4294967295 cpu_id=5
141248          <idle>-0     (-----) [005] d..2 82318.829360: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
141249 s.nexuslauncher-10023 (10023) [004] d..2 82318.829374: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
141250          <idle>-0     (-----) [004] d..1 82318.829390: cpu_idle: state=0 cpu_id=4
141251    RenderThread-16607 (10023) [005] d..1 82318.829511: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141252    RenderThread-16607 (10023) [005] d..2 82318.829528: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141253          <idle>-0     (-----) [004] .n.1 82318.829535: cpu_idle: state=4294967295 cpu_id=4
141254          <idle>-0     (-----) [004] d..2 82318.829545: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
141255    RenderThread-16607 (10023) [005] .... 82318.829581: binder_transaction: transaction=1573126 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
141256    RenderThread-16607 (10023) [005] .... 82318.829584: binder_transaction_alloc_buf: transaction=1573126 data_size=104 offsets_size=0
141257    RenderThread-16607 (10023) [005] ...2 82318.829588: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
141258    RenderThread-16607 (10023) [005] d..4 82318.829592: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
141259    RenderThread-16607 (10023) [005] d..5 82318.829612: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
141260 s.nexuslauncher-10023 (10023) [004] d..2 82318.829651: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
141261    RenderThread-16607 (10023) [005] d..2 82318.829658: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
141262          <idle>-0     (-----) [004] d..1 82318.829661: cpu_idle: state=0 cpu_id=4
141263   Binder:8858_1-8871  ( 8858) [005] .... 82318.829670: binder_transaction_received: transaction=1573126
141264   Binder:8858_1-8871  ( 8858) [005] .... 82318.829731: binder_transaction: transaction=1573127 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
141265   Binder:8858_1-8871  ( 8858) [005] .... 82318.829735: binder_transaction_alloc_buf: transaction=1573127 data_size=52 offsets_size=8
141266   Binder:8858_1-8871  ( 8858) [005] d..2 82318.829742: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141267   Binder:8858_1-8871  ( 8858) [005] d..3 82318.829753: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141268   Binder:8858_1-8871  ( 8858) [005] .... 82318.829756: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
141269   Binder:8858_1-8871  ( 8858) [005] d..2 82318.829766: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
141270    RenderThread-16607 (10023) [005] .... 82318.829775: binder_transaction_received: transaction=1573127
141271          <idle>-0     (-----) [002] ...1 82318.830715: cpu_idle: state=4294967295 cpu_id=2
141272          <idle>-0     (-----) [002] d..1 82318.830720: cpu_idle: state=0 cpu_id=2
141273    RenderThread-16607 (10023) [005] d..2 82318.831029: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
141274   Binder:8858_1-8871  ( 8858) [005] d..2 82318.831097: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141275          <idle>-0     (-----) [005] d..1 82318.831111: cpu_idle: state=0 cpu_id=5
141276          <idle>-0     (-----) [005] d.h2 82318.831124: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141277          <idle>-0     (-----) [005] d.h3 82318.831132: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
141278          <idle>-0     (-----) [005] dnh3 82318.831136: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141279          <idle>-0     (-----) [005] .n.1 82318.831142: cpu_idle: state=4294967295 cpu_id=5
141280          <idle>-0     (-----) [005] d..2 82318.831151: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
141281    RenderThread-16607 (10023) [005] .... 82318.831312: binder_transaction: transaction=1573128 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
141282    RenderThread-16607 (10023) [005] .... 82318.831317: binder_transaction_alloc_buf: transaction=1573128 data_size=192 offsets_size=8
141283    RenderThread-16607 (10023) [005] ...2 82318.831325: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
141284    RenderThread-16607 (10023) [005] d..4 82318.831328: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
141285    RenderThread-16607 (10023) [005] d..5 82318.831340: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
141286    RenderThread-16607 (10023) [005] d..2 82318.831352: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
141287   Binder:8858_1-8871  ( 8858) [005] .... 82318.831362: binder_transaction_received: transaction=1573128
141288   Binder:8858_1-8871  ( 8858) [005] .... 82318.831484: binder_transaction: transaction=1573129 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
141289   Binder:8858_1-8871  ( 8858) [005] .... 82318.831489: binder_transaction_alloc_buf: transaction=1573129 data_size=68 offsets_size=0
141290   Binder:8858_1-8871  ( 8858) [005] d..2 82318.831491: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141291   Binder:8858_1-8871  ( 8858) [005] d..3 82318.831502: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141292   Binder:8858_1-8871  ( 8858) [005] .... 82318.831504: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
141293   Binder:8858_1-8871  ( 8858) [005] d..2 82318.831535: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
141294    RenderThread-16607 (10023) [005] .... 82318.831545: binder_transaction_received: transaction=1573129
141295    RenderThread-16607 (10023) [005] d..2 82318.831616: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141296          <idle>-0     (-----) [005] d..1 82318.831634: cpu_idle: state=0 cpu_id=5
141297          <idle>-0     (-----) [005] ...1 82318.831874: cpu_idle: state=4294967295 cpu_id=5
141298          <idle>-0     (-----) [005] d..1 82318.831878: cpu_idle: state=0 cpu_id=5
141299          <idle>-0     (-----) [000] d.s2 82318.831887: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141300          <idle>-0     (-----) [000] dns3 82318.831912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141301          <idle>-0     (-----) [000] .n.1 82318.831926: cpu_idle: state=4294967295 cpu_id=0
141302          <idle>-0     (-----) [000] d..2 82318.831938: 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
141303     rcu_preempt-7     (    7) [000] d..2 82318.831953: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
141304     rcu_preempt-7     (    7) [000] d..3 82318.831972: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
141305     rcu_preempt-7     (    7) [000] d..2 82318.831986: 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
141306         rcuop/0-10    (   10) [000] d..2 82318.831991: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
141307         rcuop/0-10    (   10) [000] d..3 82318.832007: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
141308         rcuop/0-10    (   10) [000] d..2 82318.832017: 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
141309         rcuop/1-21    (   21) [000] d..2 82318.832054: 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
141310          <idle>-0     (-----) [000] d..1 82318.832073: cpu_idle: state=0 cpu_id=0
141311          <idle>-0     (-----) [000] d.h3 82318.832557: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
141312          <idle>-0     (-----) [000] dnh4 82318.832576: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
141313          <idle>-0     (-----) [003] d.h2 82318.832579: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
141314          <idle>-0     (-----) [000] .n.1 82318.832591: cpu_idle: state=4294967295 cpu_id=0
141315          <idle>-0     (-----) [003] dnh3 82318.832598: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
141316          <idle>-0     (-----) [000] d..2 82318.832604: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
141317          <idle>-0     (-----) [003] .n.1 82318.832610: cpu_idle: state=4294967295 cpu_id=3
141318          <idle>-0     (-----) [003] d..2 82318.832622: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
141319        DispSync-8879  ( 8858) [003] d..1 82318.832639: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
141320        DispSync-8879  ( 8858) [003] d..2 82318.832656: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
141321 kgsl_worker_thr-258   (  258) [000] d..2 82318.832660: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
141322          <idle>-0     (-----) [002] .n.1 82318.832661: cpu_idle: state=4294967295 cpu_id=2
141323          <idle>-0     (-----) [002] d..2 82318.832674: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
141324 kgsl_worker_thr-258   (  258) [000] d..3 82318.832686: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
141325        DispSync-8879  ( 8858) [003] d..2 82318.832698: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
141326   sfEventThread-8882  ( 8858) [002] d..3 82318.832715: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
141327   sfEventThread-8882  ( 8858) [002] d..4 82318.832739: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
141328 kgsl_worker_thr-258   (  258) [000] d..2 82318.832739: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141329          <idle>-0     (-----) [001] .n.1 82318.832747: cpu_idle: state=4294967295 cpu_id=1
141330          <idle>-0     (-----) [000] d..1 82318.832758: cpu_idle: state=0 cpu_id=0
141331          <idle>-0     (-----) [001] d..2 82318.832762: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
141332   sfEventThread-8882  ( 8858) [002] d..2 82318.832783: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141333          <idle>-0     (-----) [002] d..1 82318.832800: cpu_idle: state=0 cpu_id=2
141334  kworker/u16:15-1311  ( 1311) [003] d..2 82318.832878: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141335          <idle>-0     (-----) [003] d..1 82318.832898: cpu_idle: state=0 cpu_id=3
141336  surfaceflinger-8858  ( 8858) [001] d..2 82318.833131: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
141337  surfaceflinger-8858  ( 8858) [001] d..3 82318.833160: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
141338          <idle>-0     (-----) [000] .n.1 82318.833165: cpu_idle: state=4294967295 cpu_id=0
141339          <idle>-0     (-----) [000] d..2 82318.833182: 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
141340         rcuop/0-10    (   10) [000] d..2 82318.833188: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141341  surfaceflinger-8858  ( 8858) [001] d..1 82318.833195: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
141342         rcuop/0-10    (   10) [000] d..3 82318.833207: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141343  surfaceflinger-8858  ( 8858) [001] d..2 82318.833217: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
141344         rcuop/0-10    (   10) [000] d..2 82318.833220: 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
141345          <idle>-0     (-----) [002] .n.1 82318.833223: cpu_idle: state=4294967295 cpu_id=2
141346          <idle>-0     (-----) [002] d..2 82318.833236: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
141347     rcu_preempt-7     (    7) [000] d..2 82318.833246: 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
141348          <idle>-0     (-----) [000] d..1 82318.833258: cpu_idle: state=0 cpu_id=0
141349   sfEventThread-8882  ( 8858) [002] d..2 82318.833277: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141350          <idle>-0     (-----) [002] d..1 82318.833289: cpu_idle: state=0 cpu_id=2
141351  surfaceflinger-8858  ( 8858) [001] ...1 82318.833438: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
141352  surfaceflinger-8858  ( 8858) [001] ...1 82318.833448: tracing_mark_write: E|8858
141353  surfaceflinger-8858  ( 8858) [001] .... 82318.833517: binder_transaction: transaction=1573130 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
141354  surfaceflinger-8858  ( 8858) [001] .... 82318.833525: binder_transaction_alloc_buf: transaction=1573130 data_size=540 offsets_size=96
141355  surfaceflinger-8858  ( 8858) [001] ...2 82318.833553: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
141356  surfaceflinger-8858  ( 8858) [001] d..4 82318.833561: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
141357  surfaceflinger-8858  ( 8858) [001] d..5 82318.833586: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
141358          <idle>-0     (-----) [002] .n.1 82318.833591: cpu_idle: state=4294967295 cpu_id=2
141359          <idle>-0     (-----) [002] d..2 82318.833603: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
141360 [email protected]   (  619) [002] .... 82318.833616: binder_transaction_received: transaction=1573130
141361  surfaceflinger-8858  ( 8858) [001] d..2 82318.833629: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141362          <idle>-0     (-----) [001] d..1 82318.833654: cpu_idle: state=0 cpu_id=1
141363 [email protected]   (  619) [002] ...1 82318.833670: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
141364 [email protected]   (  619) [002] ...1 82318.833796: tracing_mark_write: B|619|HWCSession::PresentDisplay::
141365 [email protected]   (  619) [002] ...1 82318.833989: tracing_mark_write: B|619|HWDeviceDRM::Commit::
141366 [email protected]   (  619) [002] ...1 82318.834005: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
141367 [email protected]   (  619) [002] d..2 82318.834673: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141368 [email protected]   (  619) [002] d..3 82318.834705: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141369          <idle>-0     (-----) [000] .n.1 82318.834711: cpu_idle: state=4294967295 cpu_id=0
141370          <idle>-0     (-----) [000] d..2 82318.834724: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
141371 [email protected]   (  619) [002] ...1 82318.834829: tracing_mark_write: E|619
141372 [email protected]   (  619) [002] ...1 82318.834837: tracing_mark_write: E|619
141373 [email protected]   (  619) [002] ...1 82318.834905: tracing_mark_write: E|619
141374 [email protected]   (  619) [002] ...1 82318.834956: tracing_mark_write: E|619
141375 [email protected]   (  619) [002] .... 82318.834974: binder_transaction: transaction=1573131 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
141376 [email protected]   (  619) [002] .... 82318.834980: binder_transaction_alloc_buf: transaction=1573131 data_size=576 offsets_size=112
141377 [email protected]   (  619) [002] d..2 82318.835006: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
141378 [email protected]   (  619) [002] d..3 82318.835030: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
141379 [email protected]   (  619) [002] .... 82318.835037: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
141380          <idle>-0     (-----) [001] .n.1 82318.835038: cpu_idle: state=4294967295 cpu_id=1
141381          <idle>-0     (-----) [001] d..2 82318.835051: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
141382  surfaceflinger-8858  ( 8858) [001] .... 82318.835063: binder_transaction_received: transaction=1573131
141383 [email protected]   (  619) [002] d..2 82318.835202: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141384          <idle>-0     (-----) [002] d..1 82318.835225: cpu_idle: state=0 cpu_id=2
141385 crtc_commit:111-321   (  321) [000] d..2 82318.835549: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
141386          <idle>-0     (-----) [000] d..1 82318.835565: cpu_idle: state=0 cpu_id=0
141387  surfaceflinger-8858  ( 8858) [001] d..2 82318.835615: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141388          <idle>-0     (-----) [001] d..1 82318.835640: cpu_idle: state=0 cpu_id=1
141389          <idle>-0     (-----) [002] ...1 82318.836678: cpu_idle: state=4294967295 cpu_id=2
141390          <idle>-0     (-----) [002] d..1 82318.836684: cpu_idle: state=0 cpu_id=2
141391          <idle>-0     (-----) [000] d.s2 82318.838475: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141392          <idle>-0     (-----) [000] dns3 82318.838498: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141393          <idle>-0     (-----) [000] dns3 82318.838505: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
141394          <idle>-0     (-----) [000] dns4 82318.838546: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
141395          <idle>-0     (-----) [000] .n.1 82318.838559: cpu_idle: state=4294967295 cpu_id=0
141396          <idle>-0     (-----) [000] d..2 82318.838570: 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
141397     rcu_preempt-7     (    7) [000] d..2 82318.838583: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
141398     rcu_preempt-7     (    7) [000] d..3 82318.838599: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
141399     rcu_preempt-7     (    7) [000] d..2 82318.838612: 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
141400         rcuop/0-10    (   10) [000] d..2 82318.838616: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
141401         rcuop/0-10    (   10) [000] d..3 82318.838631: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
141402         rcuop/0-10    (   10) [000] d..2 82318.838634: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141403         rcuop/0-10    (   10) [000] d..3 82318.838647: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141404         rcuop/0-10    (   10) [000] d..2 82318.838657: 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
141405         rcuop/1-21    (   21) [000] d..2 82318.838671: 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
141406     rcu_preempt-7     (    7) [000] d..2 82318.838684: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
141407  kworker/u16:15-1311  ( 1311) [000] d..2 82318.838804: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141408          <idle>-0     (-----) [000] d..1 82318.838824: cpu_idle: state=0 cpu_id=0
141409          <idle>-0     (-----) [000] d.h5 82318.840734: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141410          <idle>-0     (-----) [000] d.h6 82318.840758: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141411          <idle>-0     (-----) [000] d.h5 82318.840764: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141412          <idle>-0     (-----) [003] .n.1 82318.840766: cpu_idle: state=4294967295 cpu_id=3
141413          <idle>-0     (-----) [000] dnh6 82318.840773: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141414          <idle>-0     (-----) [003] d..2 82318.840780: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
141415          <idle>-0     (-----) [000] .n.1 82318.840789: cpu_idle: state=4294967295 cpu_id=0
141416          <idle>-0     (-----) [000] d..2 82318.840803: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
141417  crtc_event:111-322   (  322) [003] d..2 82318.840821: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141418          <idle>-0     (-----) [003] d..1 82318.840833: cpu_idle: state=0 cpu_id=3
141419 crtc_commit:111-321   (  321) [000] d..2 82318.840955: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
141420          <idle>-0     (-----) [000] d..1 82318.840969: cpu_idle: state=0 cpu_id=0
141421          <idle>-0     (-----) [000] d.s3 82318.841809: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141422          <idle>-0     (-----) [000] d.s4 82318.841827: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141423          <idle>-0     (-----) [003] .n.1 82318.841834: cpu_idle: state=4294967295 cpu_id=3
141424          <idle>-0     (-----) [003] d..2 82318.841847: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
141425          <idle>-0     (-----) [000] ...1 82318.841856: cpu_idle: state=4294967295 cpu_id=0
141426          <idle>-0     (-----) [000] d..1 82318.841863: cpu_idle: state=0 cpu_id=0
141427  crtc_event:111-322   (  322) [003] d..2 82318.841883: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141428          <idle>-0     (-----) [003] d..1 82318.841893: cpu_idle: state=0 cpu_id=3
141429          <idle>-0     (-----) [000] d.h5 82318.843061: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141430          <idle>-0     (-----) [000] dnh6 82318.843073: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141431          <idle>-0     (-----) [000] .n.1 82318.843086: cpu_idle: state=4294967295 cpu_id=0
141432          <idle>-0     (-----) [000] d..2 82318.843095: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
141433 crtc_commit:111-321   (  321) [000] d..2 82318.843178: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141434          <idle>-0     (-----) [000] d..1 82318.843191: cpu_idle: state=0 cpu_id=0
141435          <idle>-0     (-----) [000] d.h5 82318.843362: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141436          <idle>-0     (-----) [000] d.h6 82318.843381: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141437          <idle>-0     (-----) [003] .n.1 82318.843386: cpu_idle: state=4294967295 cpu_id=3
141438          <idle>-0     (-----) [003] d..2 82318.843398: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
141439          <idle>-0     (-----) [000] ...1 82318.843399: cpu_idle: state=4294967295 cpu_id=0
141440          <idle>-0     (-----) [000] d..1 82318.843404: cpu_idle: state=0 cpu_id=0
141441  crtc_event:111-322   (  322) [003] d..2 82318.843425: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141442          <idle>-0     (-----) [003] d..1 82318.843434: cpu_idle: state=0 cpu_id=3
141443          <idle>-0     (-----) [003] d.h2 82318.845045: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
141444          <idle>-0     (-----) [003] dnh3 82318.845061: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
141445          <idle>-0     (-----) [003] .n.1 82318.845073: cpu_idle: state=4294967295 cpu_id=3
141446          <idle>-0     (-----) [003] d..2 82318.845084: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
141447        DispSync-8879  ( 8858) [003] d..1 82318.845100: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
141448        DispSync-8879  ( 8858) [003] d..2 82318.845117: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
141449          <idle>-0     (-----) [002] .n.1 82318.845123: cpu_idle: state=4294967295 cpu_id=2
141450          <idle>-0     (-----) [002] d..2 82318.845138: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
141451          <idle>-0     (-----) [000] d.s2 82318.845139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141452          <idle>-0     (-----) [000] dns3 82318.845162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141453          <idle>-0     (-----) [000] .n.1 82318.845170: cpu_idle: state=4294967295 cpu_id=0
141454        DispSync-8879  ( 8858) [003] d..1 82318.845171: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
141455          <idle>-0     (-----) [000] d..2 82318.845182: 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
141456  appEventThread-8881  ( 8858) [002] d..2 82318.845194: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141457          <idle>-0     (-----) [002] dn.1 82318.845210: cpu_idle: state=0 cpu_id=2
141458          <idle>-0     (-----) [002] .n.1 82318.845214: cpu_idle: state=4294967295 cpu_id=2
141459        DispSync-8879  ( 8858) [003] d..2 82318.845214: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
141460     rcu_preempt-7     (    7) [000] d..2 82318.845218: 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
141461          <idle>-0     (-----) [002] d..2 82318.845229: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
141462          <idle>-0     (-----) [000] d..1 82318.845235: cpu_idle: state=0 cpu_id=0
141463        DispSync-8879  ( 8858) [003] d..2 82318.845251: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141464          <idle>-0     (-----) [003] d..1 82318.845267: cpu_idle: state=0 cpu_id=3
141465  appEventThread-8881  ( 8858) [002] d..3 82318.845281: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141466          <idle>-0     (-----) [004] dnh2 82318.845313: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141467          <idle>-0     (-----) [004] .n.1 82318.845318: cpu_idle: state=4294967295 cpu_id=4
141468          <idle>-0     (-----) [004] d..2 82318.845327: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
141469  appEventThread-8881  ( 8858) [002] d..2 82318.845348: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141470          <idle>-0     (-----) [002] d..1 82318.845365: cpu_idle: state=0 cpu_id=2
141471 s.nexuslauncher-10023 (10023) [004] .... 82318.845521: binder_transaction: transaction=1573132 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
141472 s.nexuslauncher-10023 (10023) [004] .... 82318.845526: binder_transaction_alloc_buf: transaction=1573132 data_size=80 offsets_size=0
141473 s.nexuslauncher-10023 (10023) [004] d..4 82318.845531: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
141474 s.nexuslauncher-10023 (10023) [004] d.h5 82318.845595: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
141475          <idle>-0     (-----) [000] dnh2 82318.845597: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
141476          <idle>-0     (-----) [000] .n.1 82318.845604: cpu_idle: state=4294967295 cpu_id=0
141477          <idle>-0     (-----) [000] d..2 82318.845617: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
141478          <idle>-0     (-----) [003] dnh2 82318.845623: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
141479   Binder:8858_1-8871  ( 8858) [000] .... 82318.845627: binder_transaction_received: transaction=1573132
141480          <idle>-0     (-----) [003] .n.1 82318.845631: cpu_idle: state=4294967295 cpu_id=3
141481 s.nexuslauncher-10023 (10023) [004] d..3 82318.845638: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141482          <idle>-0     (-----) [003] d..2 82318.845642: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
141483 s.nexuslauncher-10023 (10023) [004] d..4 82318.845653: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141484          <idle>-0     (-----) [005] .n.1 82318.845658: cpu_idle: state=4294967295 cpu_id=5
141485          <idle>-0     (-----) [005] d..2 82318.845669: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
141486   Binder:8858_1-8871  ( 8858) [000] d..1 82318.845670: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
141487         sugov:0-576   (  576) [003] .... 82318.845688: clk_set_rate: pwrcl_clk 825600000
141488   Binder:8858_1-8871  ( 8858) [000] d..2 82318.845691: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
141489    RenderThread-16607 (10023) [005] d..2 82318.845698: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141490          <idle>-0     (-----) [002] .n.1 82318.845699: cpu_idle: state=4294967295 cpu_id=2
141491          <idle>-0     (-----) [005] d..1 82318.845707: cpu_idle: state=0 cpu_id=5
141492          <idle>-0     (-----) [002] d..2 82318.845711: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
141493         sugov:0-576   (  576) [003] .... 82318.845713: clk_set_rate: cpu3_pwrcl_clk 748800000
141494         sugov:0-576   (  576) [003] .... 82318.845724: clk_set_rate: cpu2_pwrcl_clk 748800000
141495         sugov:0-576   (  576) [003] .... 82318.845733: clk_set_rate: cpu1_pwrcl_clk 748800000
141496         sugov:0-576   (  576) [003] .... 82318.845741: clk_set_rate: cpu0_pwrcl_clk 825600000
141497   Binder:8858_1-8871  ( 8858) [000] d..2 82318.845745: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141498         sugov:0-576   (  576) [003] .... 82318.845751: cpu_frequency: state=825600 cpu_id=0
141499  appEventThread-8881  ( 8858) [002] d..2 82318.845762: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141500          <idle>-0     (-----) [000] d..1 82318.845768: cpu_idle: state=0 cpu_id=0
141501          <idle>-0     (-----) [002] d..1 82318.845778: cpu_idle: state=0 cpu_id=2
141502         sugov:0-576   (  576) [003] .... 82318.845782: cpu_frequency: state=825600 cpu_id=1
141503         sugov:0-576   (  576) [003] .... 82318.845787: cpu_frequency: state=825600 cpu_id=2
141504         sugov:0-576   (  576) [003] .... 82318.845792: cpu_frequency: state=825600 cpu_id=3
141505         sugov:0-576   (  576) [003] d..2 82318.845823: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141506          <idle>-0     (-----) [003] d..1 82318.845837: cpu_idle: state=0 cpu_id=3
141507 s.nexuslauncher-10023 (10023) [004] d..3 82318.845855: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141508 s.nexuslauncher-10023 (10023) [004] d..4 82318.845874: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141509          <idle>-0     (-----) [005] .n.1 82318.845878: cpu_idle: state=4294967295 cpu_id=5
141510          <idle>-0     (-----) [005] d..2 82318.845885: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
141511 s.nexuslauncher-10023 (10023) [004] d..2 82318.845900: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
141512          <idle>-0     (-----) [004] d..1 82318.845916: cpu_idle: state=0 cpu_id=4
141513    RenderThread-16607 (10023) [005] d..1 82318.846035: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141514    RenderThread-16607 (10023) [005] d..2 82318.846054: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141515          <idle>-0     (-----) [004] .n.1 82318.846060: cpu_idle: state=4294967295 cpu_id=4
141516          <idle>-0     (-----) [004] d..2 82318.846069: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
141517    RenderThread-16607 (10023) [005] .... 82318.846104: binder_transaction: transaction=1573133 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
141518    RenderThread-16607 (10023) [005] .... 82318.846108: binder_transaction_alloc_buf: transaction=1573133 data_size=104 offsets_size=0
141519    RenderThread-16607 (10023) [005] ...2 82318.846111: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
141520    RenderThread-16607 (10023) [005] d..4 82318.846115: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
141521    RenderThread-16607 (10023) [005] d..5 82318.846134: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
141522 s.nexuslauncher-10023 (10023) [004] d..2 82318.846179: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
141523    RenderThread-16607 (10023) [005] d..2 82318.846181: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
141524          <idle>-0     (-----) [004] d..1 82318.846189: cpu_idle: state=0 cpu_id=4
141525   Binder:8858_1-8871  ( 8858) [005] .... 82318.846193: binder_transaction_received: transaction=1573133
141526   Binder:8858_1-8871  ( 8858) [005] .... 82318.846253: binder_transaction: transaction=1573134 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
141527   Binder:8858_1-8871  ( 8858) [005] .... 82318.846257: binder_transaction_alloc_buf: transaction=1573134 data_size=52 offsets_size=8
141528   Binder:8858_1-8871  ( 8858) [005] d..2 82318.846264: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141529   Binder:8858_1-8871  ( 8858) [005] d..3 82318.846276: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141530   Binder:8858_1-8871  ( 8858) [005] .... 82318.846278: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
141531   Binder:8858_1-8871  ( 8858) [005] d..2 82318.846289: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
141532    RenderThread-16607 (10023) [005] .... 82318.846298: binder_transaction_received: transaction=1573134
141533          <idle>-0     (-----) [002] ...1 82318.847056: cpu_idle: state=4294967295 cpu_id=2
141534          <idle>-0     (-----) [002] d..1 82318.847061: cpu_idle: state=0 cpu_id=2
141535    RenderThread-16607 (10023) [005] d..2 82318.847545: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
141536   Binder:8858_1-8871  ( 8858) [005] d..2 82318.847614: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141537          <idle>-0     (-----) [005] d..1 82318.847628: cpu_idle: state=0 cpu_id=5
141538          <idle>-0     (-----) [005] d.h2 82318.847641: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141539          <idle>-0     (-----) [005] d.h3 82318.847649: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
141540          <idle>-0     (-----) [005] dnh3 82318.847653: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141541          <idle>-0     (-----) [005] .n.1 82318.847660: cpu_idle: state=4294967295 cpu_id=5
141542          <idle>-0     (-----) [005] d..2 82318.847669: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
141543          <idle>-0     (-----) [002] ...1 82318.847706: cpu_idle: state=4294967295 cpu_id=2
141544          <idle>-0     (-----) [002] d..1 82318.847713: cpu_idle: state=0 cpu_id=2
141545    RenderThread-16607 (10023) [005] .... 82318.847824: binder_transaction: transaction=1573135 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
141546    RenderThread-16607 (10023) [005] .... 82318.847829: binder_transaction_alloc_buf: transaction=1573135 data_size=192 offsets_size=8
141547          <idle>-0     (-----) [001] d.s3 82318.847835: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141548    RenderThread-16607 (10023) [005] ...2 82318.847837: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
141549    RenderThread-16607 (10023) [005] d..4 82318.847839: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
141550    RenderThread-16607 (10023) [005] d..5 82318.847851: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
141551          <idle>-0     (-----) [001] dns4 82318.847853: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141552    RenderThread-16607 (10023) [005] d..2 82318.847863: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
141553          <idle>-0     (-----) [001] .n.1 82318.847871: cpu_idle: state=4294967295 cpu_id=1
141554   Binder:8858_1-8871  ( 8858) [005] .... 82318.847873: binder_transaction_received: transaction=1573135
141555          <idle>-0     (-----) [001] d..2 82318.847889: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141556     kworker/1:1-25249 (25249) [001] d..2 82318.847933: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
141557          <idle>-0     (-----) [002] ...1 82318.847933: cpu_idle: state=4294967295 cpu_id=2
141558          <idle>-0     (-----) [002] d..1 82318.847940: cpu_idle: state=0 cpu_id=2
141559     kworker/1:1-25249 (25249) [001] d..3 82318.847949: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
141560     kworker/1:1-25249 (25249) [001] d..2 82318.847987: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141561   Binder:8858_1-8871  ( 8858) [005] .... 82318.847989: binder_transaction: transaction=1573136 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
141562   Binder:8858_1-8871  ( 8858) [005] .... 82318.847993: binder_transaction_alloc_buf: transaction=1573136 data_size=68 offsets_size=0
141563   Binder:8858_1-8871  ( 8858) [005] d..2 82318.847995: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141564   Binder:8858_1-8871  ( 8858) [005] d..3 82318.848006: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141565   Binder:8858_1-8871  ( 8858) [005] .... 82318.848009: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
141566   Binder:8858_1-8871  ( 8858) [005] d..2 82318.848041: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
141567    RenderThread-16607 (10023) [005] .... 82318.848050: binder_transaction_received: transaction=1573136
141568    RenderThread-16607 (10023) [005] d..2 82318.848122: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141569          <idle>-0     (-----) [005] d..1 82318.848140: cpu_idle: state=0 cpu_id=5
141570 [email protected] (  798) [001] d..2 82318.848317: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141571          <idle>-0     (-----) [005] ...1 82318.848338: cpu_idle: state=4294967295 cpu_id=5
141572          <idle>-0     (-----) [001] d..1 82318.848342: cpu_idle: state=0 cpu_id=1
141573          <idle>-0     (-----) [005] d..1 82318.848342: cpu_idle: state=0 cpu_id=5
141574          <idle>-0     (-----) [003] d.h2 82318.848822: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
141575          <idle>-0     (-----) [003] dnh3 82318.848833: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
141576          <idle>-0     (-----) [003] .n.1 82318.848843: cpu_idle: state=4294967295 cpu_id=3
141577          <idle>-0     (-----) [003] d..2 82318.848855: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
141578          <idle>-0     (-----) [001] d.s3 82318.848910: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141579          <idle>-0     (-----) [001] dns4 82318.848924: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141580          <idle>-0     (-----) [001] .n.1 82318.848947: cpu_idle: state=4294967295 cpu_id=1
141581          <idle>-0     (-----) [001] d..2 82318.848964: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141582     kworker/1:1-25249 (25249) [001] d..2 82318.848999: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
141583     kworker/1:1-25249 (25249) [001] d..3 82318.849013: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
141584     kworker/1:1-25249 (25249) [001] d..2 82318.849042: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141585          <idle>-0     (-----) [000] d.h3 82318.849070: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
141586 irq/80-1436400.-9674  ( 9674) [003] d..2 82318.849077: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
141587          <idle>-0     (-----) [003] d..2 82318.849083: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
141588          <idle>-0     (-----) [000] dnh4 82318.849088: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
141589 [email protected] (  798) [001] d.s2 82318.849090: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
141590          <idle>-0     (-----) [003] dn.3 82318.849098: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
141591          <idle>-0     (-----) [000] .n.1 82318.849102: cpu_idle: state=4294967295 cpu_id=0
141592 [email protected] (  798) [001] d.s3 82318.849112: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
141593          <idle>-0     (-----) [000] d..2 82318.849115: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
141594          <idle>-0     (-----) [003] d..2 82318.849119: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
141595 irq/80-1436400.-9674  ( 9674) [003] d.h2 82318.849138: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
141596 irq/80-1436400.-9674  ( 9674) [003] d.h3 82318.849165: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
141597 kgsl_worker_thr-258   (  258) [000] d..2 82318.849167: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
141598          <idle>-0     (-----) [002] .n.1 82318.849170: cpu_idle: state=4294967295 cpu_id=2
141599          <idle>-0     (-----) [002] d..2 82318.849185: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
141600 kgsl_worker_thr-258   (  258) [000] d..3 82318.849190: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
141601        DispSync-8879  ( 8858) [002] d..1 82318.849209: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
141602 kgsl_worker_thr-258   (  258) [000] d..2 82318.849214: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
141603  kworker/u16:15-1311  ( 1311) [000] d..2 82318.849220: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
141604 irq/80-1436400.-9674  ( 9674) [003] d..2 82318.849224: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=ksoftirqd/3 next_pid=34 next_prio=120
141605        DispSync-8879  ( 8858) [002] d..2 82318.849257: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
141606 [email protected] (  798) [001] d..2 82318.849264: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141607     ksoftirqd/3-34    (   34) [003] d..2 82318.849281: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=sfEventThread next_pid=8882 next_prio=97
141608  kworker/u16:15-1311  ( 1311) [000] d..3 82318.849287: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
141609        DispSync-8879  ( 8858) [002] d..2 82318.849300: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141610          <idle>-0     (-----) [001] d..2 82318.849304: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
141611          <idle>-0     (-----) [002] d..1 82318.849317: cpu_idle: state=0 cpu_id=2
141612   sfEventThread-8882  ( 8858) [003] d..3 82318.849333: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
141613   sfEventThread-8882  ( 8858) [003] d..4 82318.849361: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
141614          <idle>-0     (-----) [002] .n.1 82318.849368: cpu_idle: state=4294967295 cpu_id=2
141615          <idle>-0     (-----) [002] d..2 82318.849380: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
141616   sfEventThread-8882  ( 8858) [003] d..2 82318.849399: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141617          <idle>-0     (-----) [003] d..1 82318.849421: cpu_idle: state=0 cpu_id=3
141618  kworker/u16:15-1311  ( 1311) [000] d..2 82318.849481: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141619          <idle>-0     (-----) [000] d..1 82318.849496: cpu_idle: state=0 cpu_id=0
141620  kworker/u16:13-1147  ( 1147) [001] d..2 82318.849581: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141621          <idle>-0     (-----) [001] d..1 82318.849597: cpu_idle: state=0 cpu_id=1
141622  surfaceflinger-8858  ( 8858) [002] d..2 82318.849776: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
141623          <idle>-0     (-----) [001] d.s3 82318.849781: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141624          <idle>-0     (-----) [001] dns4 82318.849797: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141625          <idle>-0     (-----) [001] .n.1 82318.849813: cpu_idle: state=4294967295 cpu_id=1
141626          <idle>-0     (-----) [001] d..2 82318.849832: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141627  surfaceflinger-8858  ( 8858) [002] d..3 82318.849847: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
141628     kworker/1:1-25249 (25249) [001] d..2 82318.849865: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
141629  surfaceflinger-8858  ( 8858) [002] d..1 82318.849882: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
141630     kworker/1:1-25249 (25249) [001] d..3 82318.849890: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
141631  surfaceflinger-8858  ( 8858) [002] d..2 82318.849902: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
141632          <idle>-0     (-----) [003] .n.1 82318.849911: cpu_idle: state=4294967295 cpu_id=3
141633          <idle>-0     (-----) [003] d..2 82318.849923: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
141634     kworker/1:1-25249 (25249) [001] d.s3 82318.849937: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
141635   sfEventThread-8882  ( 8858) [003] d..2 82318.849996: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
141636     kworker/1:1-25249 (25249) [001] d.s4 82318.850010: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=003
141637         rcuop/2-29    (   29) [003] d..2 82318.850022: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
141638     kworker/1:1-25249 (25249) [001] d..2 82318.850066: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141639  surfaceflinger-8858  ( 8858) [002] ...1 82318.850110: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
141640 [email protected] (  798) [001] d.s2 82318.850113: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141641  surfaceflinger-8858  ( 8858) [002] ...1 82318.850118: tracing_mark_write: E|8858
141642 [email protected] (  798) [001] dns3 82318.850127: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141643   cds_mc_thread-16565 (16565) [003] d..2 82318.850131: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141644  surfaceflinger-8858  ( 8858) [002] d.s1 82318.850144: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
141645 [email protected] (  798) [001] d..2 82318.850146: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141646          <idle>-0     (-----) [003] d..1 82318.850148: cpu_idle: state=0 cpu_id=3
141647  surfaceflinger-8858  ( 8858) [002] d.s2 82318.850165: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
141648     kworker/1:1-25249 (25249) [001] d..2 82318.850203: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141649  surfaceflinger-8858  ( 8858) [002] .... 82318.850232: binder_transaction: transaction=1573137 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
141650  surfaceflinger-8858  ( 8858) [002] .... 82318.850238: binder_transaction_alloc_buf: transaction=1573137 data_size=540 offsets_size=96
141651  surfaceflinger-8858  ( 8858) [002] ...2 82318.850265: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
141652  surfaceflinger-8858  ( 8858) [002] d..4 82318.850273: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
141653  surfaceflinger-8858  ( 8858) [002] d..5 82318.850305: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
141654          <idle>-0     (-----) [003] .n.1 82318.850312: cpu_idle: state=4294967295 cpu_id=3
141655          <idle>-0     (-----) [003] d..2 82318.850325: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
141656  surfaceflinger-8858  ( 8858) [002] d..2 82318.850329: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
141657 [email protected]   (  619) [003] .... 82318.850341: binder_transaction_received: transaction=1573137
141658 [email protected]   (  619) [003] ...1 82318.850401: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
141659 [email protected] (  798) [001] d..2 82318.850432: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141660     ksoftirqd/2-26    (   26) [002] d..2 82318.850434: 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
141661          <idle>-0     (-----) [001] d..1 82318.850454: cpu_idle: state=0 cpu_id=1
141662          <idle>-0     (-----) [002] d..1 82318.850458: cpu_idle: state=0 cpu_id=2
141663 [email protected]   (  619) [003] ...1 82318.850527: tracing_mark_write: B|619|HWCSession::PresentDisplay::
141664 [email protected]   (  619) [003] ...1 82318.850704: tracing_mark_write: B|619|HWDeviceDRM::Commit::
141665 [email protected]   (  619) [003] ...1 82318.850718: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
141666          <idle>-0     (-----) [002] ...1 82318.850739: cpu_idle: state=4294967295 cpu_id=2
141667          <idle>-0     (-----) [002] d..1 82318.850745: cpu_idle: state=0 cpu_id=2
141668          <idle>-0     (-----) [002] ...1 82318.850870: cpu_idle: state=4294967295 cpu_id=2
141669          <idle>-0     (-----) [002] d..1 82318.850878: cpu_idle: state=0 cpu_id=2
141670          <idle>-0     (-----) [001] d.s3 82318.850939: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141671          <idle>-0     (-----) [001] dns4 82318.850953: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141672          <idle>-0     (-----) [001] .n.1 82318.850969: cpu_idle: state=4294967295 cpu_id=1
141673          <idle>-0     (-----) [001] d..2 82318.850985: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141674          <idle>-0     (-----) [002] ...1 82318.850992: cpu_idle: state=4294967295 cpu_id=2
141675          <idle>-0     (-----) [002] d..1 82318.850998: cpu_idle: state=0 cpu_id=2
141676     kworker/1:1-25249 (25249) [001] d..2 82318.851040: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
141677     kworker/1:1-25249 (25249) [001] d..3 82318.851068: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
141678     kworker/1:1-25249 (25249) [001] d..2 82318.851082: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=003
141679     kworker/1:1-25249 (25249) [001] d..3 82318.851120: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
141680          <idle>-0     (-----) [002] ...1 82318.851130: cpu_idle: state=4294967295 cpu_id=2
141681          <idle>-0     (-----) [002] d..1 82318.851138: cpu_idle: state=0 cpu_id=2
141682     kworker/1:1-25249 (25249) [001] d..2 82318.851149: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
141683 wlan_logging_th-647   (  647) [001] d.s2 82318.851197: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141684 wlan_logging_th-647   (  647) [001] d.s3 82318.851211: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141685          <idle>-0     (-----) [002] ...1 82318.851234: cpu_idle: state=4294967295 cpu_id=2
141686 wlan_logging_th-647   (  647) [001] d..2 82318.851239: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
141687          <idle>-0     (-----) [002] d..1 82318.851239: cpu_idle: state=0 cpu_id=2
141688 wlan_logging_th-647   (  647) [001] d..3 82318.851257: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
141689 wlan_logging_th-647   (  647) [001] d..2 82318.851279: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
141690 [email protected]   (  619) [003] d..2 82318.851332: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141691          <idle>-0     (-----) [002] ...1 82318.851360: cpu_idle: state=4294967295 cpu_id=2
141692 [email protected]   (  619) [003] d..3 82318.851361: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141693          <idle>-0     (-----) [000] .n.1 82318.851367: cpu_idle: state=4294967295 cpu_id=0
141694          <idle>-0     (-----) [002] d..1 82318.851368: cpu_idle: state=0 cpu_id=2
141695          <idle>-0     (-----) [000] d..2 82318.851376: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
141696 [email protected]   (  619) [003] ...1 82318.851479: tracing_mark_write: E|619
141697 [email protected]   (  619) [003] ...1 82318.851487: tracing_mark_write: E|619
141698          <idle>-0     (-----) [002] ...1 82318.851506: cpu_idle: state=4294967295 cpu_id=2
141699          <idle>-0     (-----) [002] d..1 82318.851512: cpu_idle: state=0 cpu_id=2
141700   cds_mc_thread-16565 (16565) [001] d..2 82318.851541: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141701 [email protected]   (  619) [003] ...1 82318.851553: tracing_mark_write: E|619
141702     kworker/1:1-25249 (25249) [001] d..2 82318.851588: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
141703 [email protected]   (  619) [003] ...1 82318.851605: tracing_mark_write: E|619
141704 [email protected]   (  619) [003] .... 82318.851623: binder_transaction: transaction=1573138 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
141705 [email protected]   (  619) [003] .... 82318.851628: binder_transaction_alloc_buf: transaction=1573138 data_size=576 offsets_size=112
141706     kworker/1:1-25249 (25249) [001] d..3 82318.851634: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141707          <idle>-0     (-----) [002] ...1 82318.851646: cpu_idle: state=4294967295 cpu_id=2
141708 [email protected]   (  619) [003] d..2 82318.851652: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
141709          <idle>-0     (-----) [002] d..1 82318.851653: cpu_idle: state=0 cpu_id=2
141710 [email protected]   (  619) [003] d..3 82318.851675: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
141711          <idle>-0     (-----) [002] .n.1 82318.851680: cpu_idle: state=4294967295 cpu_id=2
141712 [email protected]   (  619) [003] .... 82318.851680: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
141713          <idle>-0     (-----) [002] d..2 82318.851694: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
141714  surfaceflinger-8858  ( 8858) [002] .... 82318.851706: binder_transaction_received: transaction=1573138
141715 [email protected]   (  619) [003] d..2 82318.851794: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141716 crtc_commit:111-321   (  321) [000] d.s1 82318.851817: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
141717 crtc_commit:111-321   (  321) [000] d.s2 82318.851855: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
141718     kworker/1:1-25249 (25249) [001] d..2 82318.851924: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141719 [email protected] (  798) [001] d.s4 82318.851968: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141720          <idle>-0     (-----) [003] d..2 82318.851979: 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
141721 [email protected] (  798) [001] dns5 82318.851983: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141722     rcu_preempt-7     (    7) [003] d..2 82318.851992: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
141723 [email protected] (  798) [001] d..2 82318.852002: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141724     rcu_preempt-7     (    7) [003] d..3 82318.852039: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
141725     rcu_preempt-7     (    7) [003] d..2 82318.852058: 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
141726         rcuop/0-10    (   10) [003] d..2 82318.852064: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
141727     kworker/1:1-25249 (25249) [001] d..2 82318.852070: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141728         rcuop/0-10    (   10) [003] d..3 82318.852096: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
141729         rcuop/0-10    (   10) [003] d..2 82318.852107: 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
141730         rcuop/1-21    (   21) [003] d..2 82318.852140: 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
141731          <idle>-0     (-----) [003] d..1 82318.852160: cpu_idle: state=0 cpu_id=3
141732 [email protected] (  798) [001] d.s2 82318.852175: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141733 [email protected] (  798) [001] dns3 82318.852191: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141734 [email protected] (  798) [001] d..2 82318.852211: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141735  surfaceflinger-8858  ( 8858) [002] d..2 82318.852253: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141736 crtc_commit:111-321   (  321) [000] d..2 82318.852268: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
141737          <idle>-0     (-----) [002] d..1 82318.852277: cpu_idle: state=0 cpu_id=2
141738     kworker/1:1-25249 (25249) [001] d..2 82318.852281: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141739   cds_mc_thread-16565 (16565) [000] d..2 82318.852348: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
141740   cds_mc_thread-16565 (16565) [000] d..3 82318.852397: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
141741 [email protected] (  798) [001] d.s2 82318.852419: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141742 [email protected] (  798) [001] dns3 82318.852435: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141743 [email protected] (  798) [001] d..2 82318.852454: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141744          <idle>-0     (-----) [002] ...1 82318.852499: cpu_idle: state=4294967295 cpu_id=2
141745          <idle>-0     (-----) [002] d..1 82318.852505: cpu_idle: state=0 cpu_id=2
141746          <idle>-0     (-----) [002] ...1 82318.852608: cpu_idle: state=4294967295 cpu_id=2
141747     kworker/1:1-25249 (25249) [001] d..2 82318.852608: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141748          <idle>-0     (-----) [002] d..1 82318.852616: cpu_idle: state=0 cpu_id=2
141749 [email protected] (  798) [001] d.s4 82318.852649: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141750 [email protected] (  798) [001] dns5 82318.852662: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141751 [email protected] (  798) [001] d..2 82318.852681: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141752          <idle>-0     (-----) [002] ...1 82318.852747: cpu_idle: state=4294967295 cpu_id=2
141753          <idle>-0     (-----) [002] d..1 82318.852752: cpu_idle: state=0 cpu_id=2
141754     kworker/1:1-25249 (25249) [001] d..2 82318.852819: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141755 [email protected] (  798) [001] d..2 82318.852854: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141756          <idle>-0     (-----) [001] d..1 82318.852876: cpu_idle: state=0 cpu_id=1
141757          <idle>-0     (-----) [002] ...1 82318.852894: cpu_idle: state=4294967295 cpu_id=2
141758          <idle>-0     (-----) [002] d..1 82318.852902: cpu_idle: state=0 cpu_id=2
141759          <idle>-0     (-----) [001] d.s3 82318.852937: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141760          <idle>-0     (-----) [001] dns4 82318.852949: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141761          <idle>-0     (-----) [001] .n.1 82318.852966: cpu_idle: state=4294967295 cpu_id=1
141762          <idle>-0     (-----) [001] d..2 82318.852980: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141763     kworker/1:1-25249 (25249) [001] d..2 82318.853010: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
141764     kworker/1:1-25249 (25249) [001] d..3 82318.853024: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
141765          <idle>-0     (-----) [002] ...1 82318.853057: cpu_idle: state=4294967295 cpu_id=2
141766          <idle>-0     (-----) [002] d..1 82318.853062: cpu_idle: state=0 cpu_id=2
141767     kworker/1:1-25249 (25249) [001] d..2 82318.853152: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141768          <idle>-0     (-----) [002] ...1 82318.853233: cpu_idle: state=4294967295 cpu_id=2
141769          <idle>-0     (-----) [002] d..1 82318.853241: cpu_idle: state=0 cpu_id=2
141770 [email protected] (  798) [001] d.s2 82318.853307: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141771   cds_mc_thread-16565 (16565) [000] d..2 82318.853319: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
141772 [email protected] (  798) [001] dns3 82318.853324: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141773 [email protected] (  798) [001] d..2 82318.853344: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141774     kworker/1:1-25249 (25249) [001] d..2 82318.853392: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141775 wlan_logging_th-647   (  647) [000] d..2 82318.853401: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141776     kworker/1:1-25249 (25249) [001] d..3 82318.853423: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141777          <idle>-0     (-----) [002] ...1 82318.853424: cpu_idle: state=4294967295 cpu_id=2
141778          <idle>-0     (-----) [002] d..1 82318.853429: cpu_idle: state=0 cpu_id=2
141779          <idle>-0     (-----) [000] d..2 82318.853438: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
141780     kworker/1:1-25249 (25249) [001] d..2 82318.853449: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141781   cds_mc_thread-16565 (16565) [000] d..2 82318.853556: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
141782 [email protected] (  798) [001] d.s2 82318.853564: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141783 [email protected] (  798) [001] dns3 82318.853581: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141784   cds_mc_thread-16565 (16565) [000] d..3 82318.853583: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
141785 [email protected] (  798) [001] d..2 82318.853601: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141786          <idle>-0     (-----) [002] ...1 82318.853619: cpu_idle: state=4294967295 cpu_id=2
141787   cds_mc_thread-16565 (16565) [000] d..2 82318.853622: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
141788          <idle>-0     (-----) [002] d..1 82318.853627: cpu_idle: state=0 cpu_id=2
141789     kworker/1:1-25249 (25249) [001] d..2 82318.853652: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141790     kworker/1:1-25249 (25249) [001] d..3 82318.853677: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141791 wlan_logging_th-647   (  647) [000] d..2 82318.853687: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
141792     kworker/1:1-25249 (25249) [001] d..2 82318.853714: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141793 [email protected] (  798) [001] d.s2 82318.853806: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141794 [email protected] (  798) [001] dns3 82318.853822: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141795   cds_mc_thread-16565 (16565) [000] d..2 82318.853826: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141796 [email protected] (  798) [001] d..2 82318.853842: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141797          <idle>-0     (-----) [000] d..1 82318.853848: cpu_idle: state=0 cpu_id=0
141798          <idle>-0     (-----) [002] ...1 82318.853866: cpu_idle: state=4294967295 cpu_id=2
141799          <idle>-0     (-----) [002] d..1 82318.853872: cpu_idle: state=0 cpu_id=2
141800     kworker/1:1-25249 (25249) [001] d..2 82318.853893: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141801     kworker/1:1-25249 (25249) [001] d..3 82318.853913: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141802          <idle>-0     (-----) [000] .n.1 82318.853920: cpu_idle: state=4294967295 cpu_id=0
141803          <idle>-0     (-----) [000] d..2 82318.853937: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
141804     kworker/1:1-25249 (25249) [001] d..2 82318.853942: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141805 [email protected] (  798) [001] d..2 82318.853980: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141806          <idle>-0     (-----) [001] d..1 82318.854002: cpu_idle: state=0 cpu_id=1
141807          <idle>-0     (-----) [001] d.s3 82318.854056: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141808          <idle>-0     (-----) [001] dns4 82318.854067: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141809   cds_mc_thread-16565 (16565) [000] d..2 82318.854076: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141810          <idle>-0     (-----) [000] d..1 82318.854094: cpu_idle: state=0 cpu_id=0
141811          <idle>-0     (-----) [001] .n.1 82318.854099: cpu_idle: state=4294967295 cpu_id=1
141812          <idle>-0     (-----) [001] d..2 82318.854116: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141813     kworker/1:1-25249 (25249) [001] d..2 82318.854147: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
141814     kworker/1:1-25249 (25249) [001] d..3 82318.854161: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
141815     kworker/1:1-25249 (25249) [001] d..2 82318.854215: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141816     kworker/1:1-25249 (25249) [001] d..3 82318.854234: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141817          <idle>-0     (-----) [000] .n.1 82318.854241: cpu_idle: state=4294967295 cpu_id=0
141818     kworker/1:1-25249 (25249) [001] d..2 82318.854257: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141819          <idle>-0     (-----) [000] d..2 82318.854258: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
141820 [email protected] (  798) [001] d.s2 82318.854344: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141821   cds_mc_thread-16565 (16565) [000] d..2 82318.854350: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
141822 [email protected] (  798) [001] dns3 82318.854360: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141823   cds_mc_thread-16565 (16565) [000] d..3 82318.854376: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
141824 [email protected] (  798) [001] d..2 82318.854381: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141825   cds_mc_thread-16565 (16565) [000] d..2 82318.854417: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
141826     kworker/1:1-25249 (25249) [001] d..2 82318.854430: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141827     kworker/1:1-25249 (25249) [001] d..3 82318.854456: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141828 wlan_logging_th-647   (  647) [000] d..2 82318.854475: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
141829     kworker/1:1-25249 (25249) [001] d..2 82318.854483: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141830   cds_mc_thread-16565 (16565) [000] d..2 82318.854614: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141831          <idle>-0     (-----) [000] d..1 82318.854635: cpu_idle: state=0 cpu_id=0
141832 [email protected] (  798) [001] d.s2 82318.854640: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141833 [email protected] (  798) [001] dns3 82318.854655: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141834 [email protected] (  798) [001] d..2 82318.854676: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141835     kworker/1:1-25249 (25249) [001] d..2 82318.854726: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141836     kworker/1:1-25249 (25249) [001] d..3 82318.854746: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141837          <idle>-0     (-----) [000] .n.1 82318.854753: cpu_idle: state=4294967295 cpu_id=0
141838          <idle>-0     (-----) [000] d..2 82318.854768: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
141839     kworker/1:1-25249 (25249) [001] d..2 82318.854771: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141840 [email protected] (  798) [001] d..2 82318.854814: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141841          <idle>-0     (-----) [001] d..1 82318.854836: cpu_idle: state=0 cpu_id=1
141842   cds_mc_thread-16565 (16565) [000] d..2 82318.854926: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141843          <idle>-0     (-----) [000] d..1 82318.854946: cpu_idle: state=0 cpu_id=0
141844          <idle>-0     (-----) [001] d..2 82318.856072: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
141845          <idle>-0     (-----) [001] dn.3 82318.856089: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
141846          <idle>-0     (-----) [001] .n.1 82318.856094: cpu_idle: state=4294967295 cpu_id=1
141847          <idle>-0     (-----) [001] d..2 82318.856109: 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
141848     ksoftirqd/1-18    (   18) [001] d..2 82318.856147: 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
141849          <idle>-0     (-----) [001] d..1 82318.856159: cpu_idle: state=0 cpu_id=1
141850          <idle>-0     (-----) [002] ...1 82318.856801: cpu_idle: state=4294967295 cpu_id=2
141851          <idle>-0     (-----) [002] d..1 82318.856807: cpu_idle: state=0 cpu_id=2
141852          <idle>-0     (-----) [002] ...1 82318.856964: cpu_idle: state=4294967295 cpu_id=2
141853          <idle>-0     (-----) [002] d..1 82318.856969: cpu_idle: state=0 cpu_id=2
141854          <idle>-0     (-----) [001] d.s3 82318.857101: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141855          <idle>-0     (-----) [001] dns4 82318.857113: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
141856          <idle>-0     (-----) [001] .n.1 82318.857128: cpu_idle: state=4294967295 cpu_id=1
141857          <idle>-0     (-----) [001] d..2 82318.857142: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
141858          <idle>-0     (-----) [000] d.h5 82318.857193: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141859     kworker/1:1-25249 (25249) [001] d..2 82318.857194: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=000
141860          <idle>-0     (-----) [000] d.h6 82318.857219: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141861          <idle>-0     (-----) [000] d.h5 82318.857224: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141862          <idle>-0     (-----) [003] .n.1 82318.857226: cpu_idle: state=4294967295 cpu_id=3
141863          <idle>-0     (-----) [000] dnh6 82318.857238: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141864          <idle>-0     (-----) [003] d..2 82318.857240: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
141865     kworker/1:1-25249 (25249) [001] d..3 82318.857243: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
141866          <idle>-0     (-----) [000] .n.1 82318.857254: cpu_idle: state=4294967295 cpu_id=0
141867          <idle>-0     (-----) [000] d..2 82318.857268: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
141868  crtc_event:111-322   (  322) [003] d..2 82318.857287: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
141869          <idle>-0     (-----) [003] d..1 82318.857296: cpu_idle: state=0 cpu_id=3
141870     kworker/1:1-25249 (25249) [001] d..2 82318.857362: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
141871     kworker/1:1-25249 (25249) [001] d..3 82318.857417: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=000
141872 crtc_commit:111-321   (  321) [000] d..2 82318.857429: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> [email protected] next_pid=16588 next_prio=120
141873     kworker/1:1-25249 (25249) [001] d..2 82318.857486: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
141874     kworker/1:1-25249 (25249) [001] d..3 82318.857509: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
141875 [email protected] (  798) [000] d..2 82318.857528: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
141876     kworker/1:1-25249 (25249) [001] d..2 82318.857543: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
141877 wlan_logging_th-647   (  647) [000] d..2 82318.857573: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
141878 [email protected] (  798) [000] d..2 82318.857685: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141879          <idle>-0     (-----) [000] d..1 82318.857703: cpu_idle: state=0 cpu_id=0
141880   cds_mc_thread-16565 (16565) [001] d..2 82318.857816: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141881          <idle>-0     (-----) [001] d..1 82318.857840: cpu_idle: state=0 cpu_id=1
141882          <idle>-0     (-----) [003] d.s2 82318.858471: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
141883          <idle>-0     (-----) [000] d.s3 82318.858478: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=003
141884          <idle>-0     (-----) [003] dns3 82318.858491: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
141885          <idle>-0     (-----) [003] dns3 82318.858505: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
141886          <idle>-0     (-----) [000] dns4 82318.858507: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
141887          <idle>-0     (-----) [000] .n.1 82318.858531: cpu_idle: state=4294967295 cpu_id=0
141888          <idle>-0     (-----) [000] d..2 82318.858544: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
141889          <idle>-0     (-----) [003] dns4 82318.858553: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
141890          <idle>-0     (-----) [003] .n.1 82318.858569: cpu_idle: state=4294967295 cpu_id=3
141891  crtc_event:111-322   (  322) [000] d..2 82318.858570: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
141892          <idle>-0     (-----) [003] d..2 82318.858579: 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
141893     rcu_preempt-7     (    7) [003] d..2 82318.858620: 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
141894          <idle>-0     (-----) [003] d..1 82318.858659: cpu_idle: state=0 cpu_id=3
141895          <idle>-0     (-----) [003] ...1 82318.858674: cpu_idle: state=4294967295 cpu_id=3
141896          <idle>-0     (-----) [003] d..1 82318.858680: cpu_idle: state=0 cpu_id=3
141897  kworker/u16:13-1147  ( 1147) [000] .... 82318.858687: clk_set_rate: l3_cluster0_vote_clk 480000000
141898  kworker/u16:13-1147  ( 1147) [000] .... 82318.858696: clk_set_rate: l3_clk 480000000
141899  kworker/u16:13-1147  ( 1147) [000] d..2 82318.858962: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
141900          <idle>-0     (-----) [000] d..1 82318.858982: cpu_idle: state=0 cpu_id=0
141901          <idle>-0     (-----) [001] d.s3 82318.859003: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
141902          <idle>-0     (-----) [001] d.s4 82318.859016: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
141903          <idle>-0     (-----) [001] d.s4 82318.859026: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
141904          <idle>-0     (-----) [000] .n.1 82318.859033: cpu_idle: state=4294967295 cpu_id=0
141905          <idle>-0     (-----) [001] ...1 82318.859037: cpu_idle: state=4294967295 cpu_id=1
141906          <idle>-0     (-----) [001] d..1 82318.859043: cpu_idle: state=0 cpu_id=1
141907          <idle>-0     (-----) [000] d..2 82318.859047: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
141908  kworker/u16:13-1147  ( 1147) [000] d..2 82318.859099: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141909          <idle>-0     (-----) [000] d..1 82318.859114: cpu_idle: state=0 cpu_id=0
141910          <idle>-0     (-----) [000] d.h5 82318.859531: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141911          <idle>-0     (-----) [000] dnh6 82318.859545: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
141912          <idle>-0     (-----) [000] .n.1 82318.859560: cpu_idle: state=4294967295 cpu_id=0
141913          <idle>-0     (-----) [000] d..2 82318.859570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
141914 crtc_commit:111-321   (  321) [000] d..2 82318.859637: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141915          <idle>-0     (-----) [000] d..1 82318.859652: cpu_idle: state=0 cpu_id=0
141916          <idle>-0     (-----) [000] d.h5 82318.859814: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
141917          <idle>-0     (-----) [000] dnh6 82318.859826: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
141918          <idle>-0     (-----) [000] .n.1 82318.859843: cpu_idle: state=4294967295 cpu_id=0
141919          <idle>-0     (-----) [000] d..2 82318.859853: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
141920  crtc_event:111-322   (  322) [000] d..2 82318.859877: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141921          <idle>-0     (-----) [000] d..1 82318.859889: cpu_idle: state=0 cpu_id=0
141922          <idle>-0     (-----) [000] ...1 82318.861204: cpu_idle: state=4294967295 cpu_id=0
141923          <idle>-0     (-----) [000] d..1 82318.861209: cpu_idle: state=0 cpu_id=0
141924          <idle>-0     (-----) [002] d.h2 82318.861543: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
141925          <idle>-0     (-----) [002] dnh3 82318.861563: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
141926          <idle>-0     (-----) [002] .n.1 82318.861571: cpu_idle: state=4294967295 cpu_id=2
141927          <idle>-0     (-----) [002] d..2 82318.861582: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
141928        DispSync-8879  ( 8858) [002] d..1 82318.861599: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
141929        DispSync-8879  ( 8858) [002] d..2 82318.861622: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
141930          <idle>-0     (-----) [001] .n.1 82318.861628: cpu_idle: state=4294967295 cpu_id=1
141931          <idle>-0     (-----) [001] d..2 82318.861641: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
141932        DispSync-8879  ( 8858) [002] d..2 82318.861659: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
141933          <idle>-0     (-----) [002] d..1 82318.861672: cpu_idle: state=0 cpu_id=2
141934  appEventThread-8881  ( 8858) [001] d..3 82318.861698: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141935          <idle>-0     (-----) [004] dnh2 82318.861726: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141936          <idle>-0     (-----) [004] .n.1 82318.861730: cpu_idle: state=4294967295 cpu_id=4
141937          <idle>-0     (-----) [004] d..2 82318.861738: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
141938  appEventThread-8881  ( 8858) [001] d..2 82318.861760: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141939          <idle>-0     (-----) [001] d..1 82318.861776: cpu_idle: state=0 cpu_id=1
141940 s.nexuslauncher-10023 (10023) [004] .... 82318.861969: binder_transaction: transaction=1573139 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
141941 s.nexuslauncher-10023 (10023) [004] .... 82318.861973: binder_transaction_alloc_buf: transaction=1573139 data_size=80 offsets_size=0
141942 s.nexuslauncher-10023 (10023) [004] d..4 82318.861978: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
141943          <idle>-0     (-----) [000] dnh2 82318.862037: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
141944          <idle>-0     (-----) [000] .n.1 82318.862042: cpu_idle: state=4294967295 cpu_id=0
141945          <idle>-0     (-----) [000] d..2 82318.862055: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
141946 s.nexuslauncher-10023 (10023) [004] d..3 82318.862056: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141947   Binder:8858_1-8871  ( 8858) [000] .... 82318.862065: binder_transaction_received: transaction=1573139
141948 s.nexuslauncher-10023 (10023) [004] d..4 82318.862072: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141949          <idle>-0     (-----) [005] .n.1 82318.862077: cpu_idle: state=4294967295 cpu_id=5
141950          <idle>-0     (-----) [005] d..2 82318.862087: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
141951   Binder:8858_1-8871  ( 8858) [000] d..1 82318.862103: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
141952   Binder:8858_1-8871  ( 8858) [000] d..2 82318.862122: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
141953          <idle>-0     (-----) [001] .n.1 82318.862128: cpu_idle: state=4294967295 cpu_id=1
141954    RenderThread-16607 (10023) [005] d..2 82318.862130: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141955          <idle>-0     (-----) [005] d..1 82318.862138: cpu_idle: state=0 cpu_id=5
141956          <idle>-0     (-----) [001] d..2 82318.862139: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
141957   Binder:8858_1-8871  ( 8858) [000] d..2 82318.862170: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
141958  appEventThread-8881  ( 8858) [001] d..2 82318.862182: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
141959          <idle>-0     (-----) [000] d..1 82318.862187: cpu_idle: state=0 cpu_id=0
141960          <idle>-0     (-----) [001] d..1 82318.862193: cpu_idle: state=0 cpu_id=1
141961 s.nexuslauncher-10023 (10023) [004] d..3 82318.862270: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141962 s.nexuslauncher-10023 (10023) [004] d..4 82318.862285: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141963          <idle>-0     (-----) [005] .n.1 82318.862290: cpu_idle: state=4294967295 cpu_id=5
141964          <idle>-0     (-----) [005] d..2 82318.862297: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
141965 s.nexuslauncher-10023 (10023) [004] d..2 82318.862308: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
141966          <idle>-0     (-----) [004] d..1 82318.862322: cpu_idle: state=0 cpu_id=4
141967    RenderThread-16607 (10023) [005] d..1 82318.862449: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141968    RenderThread-16607 (10023) [005] d..2 82318.862463: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
141969          <idle>-0     (-----) [004] .n.1 82318.862469: cpu_idle: state=4294967295 cpu_id=4
141970          <idle>-0     (-----) [004] d..2 82318.862478: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
141971    RenderThread-16607 (10023) [005] .... 82318.862508: binder_transaction: transaction=1573140 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
141972    RenderThread-16607 (10023) [005] .... 82318.862511: binder_transaction_alloc_buf: transaction=1573140 data_size=104 offsets_size=0
141973    RenderThread-16607 (10023) [005] ...2 82318.862515: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
141974    RenderThread-16607 (10023) [005] d..4 82318.862518: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
141975    RenderThread-16607 (10023) [005] d..5 82318.862535: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
141976 s.nexuslauncher-10023 (10023) [004] d..2 82318.862575: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
141977    RenderThread-16607 (10023) [005] d..2 82318.862577: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
141978          <idle>-0     (-----) [004] d..1 82318.862585: cpu_idle: state=0 cpu_id=4
141979   Binder:8858_1-8871  ( 8858) [005] .... 82318.862588: binder_transaction_received: transaction=1573140
141980   Binder:8858_1-8871  ( 8858) [005] .... 82318.862642: binder_transaction: transaction=1573141 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
141981   Binder:8858_1-8871  ( 8858) [005] .... 82318.862648: binder_transaction_alloc_buf: transaction=1573141 data_size=52 offsets_size=8
141982   Binder:8858_1-8871  ( 8858) [005] d..2 82318.862654: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141983   Binder:8858_1-8871  ( 8858) [005] d..3 82318.862663: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141984   Binder:8858_1-8871  ( 8858) [005] .... 82318.862665: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
141985   Binder:8858_1-8871  ( 8858) [005] d..2 82318.862675: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
141986    RenderThread-16607 (10023) [005] .... 82318.862683: binder_transaction_received: transaction=1573141
141987          <idle>-0     (-----) [000] ...1 82318.863503: cpu_idle: state=4294967295 cpu_id=0
141988          <idle>-0     (-----) [000] d..1 82318.863508: cpu_idle: state=0 cpu_id=0
141989    RenderThread-16607 (10023) [005] d..2 82318.863925: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
141990   Binder:8858_1-8871  ( 8858) [005] d..2 82318.863983: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
141991          <idle>-0     (-----) [005] d..1 82318.863995: cpu_idle: state=0 cpu_id=5
141992          <idle>-0     (-----) [005] d.h2 82318.864021: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
141993          <idle>-0     (-----) [005] d.h3 82318.864029: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
141994          <idle>-0     (-----) [005] dnh3 82318.864032: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
141995          <idle>-0     (-----) [005] .n.1 82318.864039: cpu_idle: state=4294967295 cpu_id=5
141996          <idle>-0     (-----) [005] d..2 82318.864047: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
141997    RenderThread-16607 (10023) [005] .... 82318.864191: binder_transaction: transaction=1573142 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
141998    RenderThread-16607 (10023) [005] .... 82318.864195: binder_transaction_alloc_buf: transaction=1573142 data_size=192 offsets_size=8
141999    RenderThread-16607 (10023) [005] ...2 82318.864202: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
142000    RenderThread-16607 (10023) [005] d..4 82318.864204: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142001    RenderThread-16607 (10023) [005] d..5 82318.864216: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142002    RenderThread-16607 (10023) [005] d..2 82318.864226: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
142003   Binder:8858_1-8871  ( 8858) [005] .... 82318.864234: binder_transaction_received: transaction=1573142
142004   Binder:8858_1-8871  ( 8858) [005] .... 82318.864345: binder_transaction: transaction=1573143 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
142005   Binder:8858_1-8871  ( 8858) [005] .... 82318.864348: binder_transaction_alloc_buf: transaction=1573143 data_size=68 offsets_size=0
142006   Binder:8858_1-8871  ( 8858) [005] d..2 82318.864351: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142007   Binder:8858_1-8871  ( 8858) [005] d..3 82318.864360: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142008   Binder:8858_1-8871  ( 8858) [005] .... 82318.864362: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
142009   Binder:8858_1-8871  ( 8858) [005] d..2 82318.864391: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
142010    RenderThread-16607 (10023) [005] .... 82318.864400: binder_transaction_received: transaction=1573143
142011    RenderThread-16607 (10023) [005] d..2 82318.864462: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
142012          <idle>-0     (-----) [005] d..1 82318.864477: cpu_idle: state=0 cpu_id=5
142013          <idle>-0     (-----) [005] ...1 82318.864674: cpu_idle: state=4294967295 cpu_id=5
142014          <idle>-0     (-----) [005] d..1 82318.864678: cpu_idle: state=0 cpu_id=5
142015          <idle>-0     (-----) [003] d.s2 82318.865134: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142016          <idle>-0     (-----) [003] dns3 82318.865150: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142017          <idle>-0     (-----) [003] .n.1 82318.865160: cpu_idle: state=4294967295 cpu_id=3
142018          <idle>-0     (-----) [003] d..2 82318.865172: 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
142019     rcu_preempt-7     (    7) [003] d..2 82318.865180: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
142020     rcu_preempt-7     (    7) [003] d..3 82318.865199: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
142021     rcu_preempt-7     (    7) [003] d..2 82318.865215: 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
142022         rcuop/2-29    (   29) [003] d..2 82318.865248: 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
142023          <idle>-0     (-----) [003] d..1 82318.865262: cpu_idle: state=0 cpu_id=3
142024          <idle>-0     (-----) [000] d.h3 82318.865459: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
142025          <idle>-0     (-----) [000] dnh4 82318.865477: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
142026          <idle>-0     (-----) [000] .n.1 82318.865489: cpu_idle: state=4294967295 cpu_id=0
142027          <idle>-0     (-----) [000] d..2 82318.865501: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
142028          <idle>-0     (-----) [002] d.h2 82318.865511: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
142029          <idle>-0     (-----) [002] dnh3 82318.865523: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
142030          <idle>-0     (-----) [002] .n.1 82318.865531: cpu_idle: state=4294967295 cpu_id=2
142031          <idle>-0     (-----) [002] d..2 82318.865540: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
142032        DispSync-8879  ( 8858) [002] d..1 82318.865552: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142033 kgsl_worker_thr-258   (  258) [000] d..2 82318.865556: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142034        DispSync-8879  ( 8858) [002] d..2 82318.865568: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142035          <idle>-0     (-----) [003] .n.1 82318.865574: cpu_idle: state=4294967295 cpu_id=3
142036 kgsl_worker_thr-258   (  258) [000] d..3 82318.865576: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142037          <idle>-0     (-----) [003] d..2 82318.865585: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
142038 kgsl_worker_thr-258   (  258) [000] d..2 82318.865599: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142039        DispSync-8879  ( 8858) [002] d..2 82318.865615: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142040          <idle>-0     (-----) [002] d..1 82318.865628: cpu_idle: state=0 cpu_id=2
142041   sfEventThread-8882  ( 8858) [003] d..3 82318.865633: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142042   sfEventThread-8882  ( 8858) [003] d..4 82318.865653: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142043          <idle>-0     (-----) [002] .n.1 82318.865659: cpu_idle: state=4294967295 cpu_id=2
142044          <idle>-0     (-----) [002] d..2 82318.865669: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
142045   sfEventThread-8882  ( 8858) [003] d..2 82318.865691: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142046          <idle>-0     (-----) [003] d..1 82318.865706: cpu_idle: state=0 cpu_id=3
142047  kworker/u16:13-1147  ( 1147) [000] d..2 82318.865768: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142048          <idle>-0     (-----) [000] d..1 82318.865785: cpu_idle: state=0 cpu_id=0
142049  surfaceflinger-8858  ( 8858) [002] d..1 82318.866021: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142050  surfaceflinger-8858  ( 8858) [002] d..2 82318.866043: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142051          <idle>-0     (-----) [003] .n.1 82318.866049: cpu_idle: state=4294967295 cpu_id=3
142052          <idle>-0     (-----) [003] d..2 82318.866060: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
142053   sfEventThread-8882  ( 8858) [003] d..2 82318.866098: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142054          <idle>-0     (-----) [003] d..1 82318.866108: cpu_idle: state=0 cpu_id=3
142055  surfaceflinger-8858  ( 8858) [002] ...1 82318.866245: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
142056  surfaceflinger-8858  ( 8858) [002] ...1 82318.866253: tracing_mark_write: E|8858
142057  surfaceflinger-8858  ( 8858) [002] .... 82318.866314: binder_transaction: transaction=1573144 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
142058  surfaceflinger-8858  ( 8858) [002] .... 82318.866319: binder_transaction_alloc_buf: transaction=1573144 data_size=540 offsets_size=96
142059  surfaceflinger-8858  ( 8858) [002] ...2 82318.866344: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
142060  surfaceflinger-8858  ( 8858) [002] d..4 82318.866350: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
142061  surfaceflinger-8858  ( 8858) [002] d..5 82318.866371: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
142062          <idle>-0     (-----) [003] .n.1 82318.866375: cpu_idle: state=4294967295 cpu_id=3
142063          <idle>-0     (-----) [003] d..2 82318.866386: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
142064 [email protected]   (  619) [003] .... 82318.866397: binder_transaction_received: transaction=1573144
142065  surfaceflinger-8858  ( 8858) [002] d..2 82318.866404: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142066          <idle>-0     (-----) [002] d..1 82318.866422: cpu_idle: state=0 cpu_id=2
142067 [email protected]   (  619) [003] ...1 82318.866446: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
142068 [email protected]   (  619) [003] ...1 82318.866562: tracing_mark_write: B|619|HWCSession::PresentDisplay::
142069 [email protected]   (  619) [003] ...1 82318.866743: tracing_mark_write: B|619|HWDeviceDRM::Commit::
142070 [email protected]   (  619) [003] ...1 82318.866757: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
142071 [email protected]   (  619) [003] d..2 82318.867377: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
142072 [email protected]   (  619) [003] d..3 82318.867402: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
142073          <idle>-0     (-----) [000] .n.1 82318.867408: cpu_idle: state=4294967295 cpu_id=0
142074          <idle>-0     (-----) [000] d..2 82318.867419: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142075 [email protected]   (  619) [003] ...1 82318.867507: tracing_mark_write: E|619
142076 [email protected]   (  619) [003] ...1 82318.867514: tracing_mark_write: E|619
142077 [email protected]   (  619) [003] ...1 82318.867575: tracing_mark_write: E|619
142078 [email protected]   (  619) [003] ...1 82318.867622: tracing_mark_write: E|619
142079 [email protected]   (  619) [003] .... 82318.867638: binder_transaction: transaction=1573145 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
142080 [email protected]   (  619) [003] .... 82318.867643: binder_transaction_alloc_buf: transaction=1573145 data_size=576 offsets_size=112
142081 [email protected]   (  619) [003] d..2 82318.867666: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142082 [email protected]   (  619) [003] d..3 82318.867684: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142083 [email protected]   (  619) [003] .... 82318.867689: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
142084          <idle>-0     (-----) [002] .n.1 82318.867691: cpu_idle: state=4294967295 cpu_id=2
142085          <idle>-0     (-----) [002] d..2 82318.867702: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
142086  surfaceflinger-8858  ( 8858) [002] .... 82318.867710: binder_transaction_received: transaction=1573145
142087 [email protected]   (  619) [003] d..2 82318.867778: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142088          <idle>-0     (-----) [003] d..1 82318.867797: cpu_idle: state=0 cpu_id=3
142089  surfaceflinger-8858  ( 8858) [002] d..2 82318.868124: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142090 crtc_commit:111-321   (  321) [000] d..2 82318.868138: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
142091          <idle>-0     (-----) [002] d..1 82318.868143: cpu_idle: state=0 cpu_id=2
142092          <idle>-0     (-----) [000] d..1 82318.868155: cpu_idle: state=0 cpu_id=0
142093          <idle>-0     (-----) [002] d..2 82318.870291: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
142094          <idle>-0     (-----) [002] dn.3 82318.870305: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
142095          <idle>-0     (-----) [002] .n.1 82318.870310: cpu_idle: state=4294967295 cpu_id=2
142096          <idle>-0     (-----) [002] d..2 82318.870326: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
142097     ksoftirqd/2-26    (   26) [002] d.s2 82318.870338: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142098     ksoftirqd/2-26    (   26) [002] d.s3 82318.870381: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
142099     ksoftirqd/2-26    (   26) [002] d..2 82318.870399: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142100  kworker/u16:13-1147  ( 1147) [002] d..2 82318.870646: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
142101          <idle>-0     (-----) [002] d..1 82318.870663: cpu_idle: state=0 cpu_id=2
142102          <idle>-0     (-----) [001] d.s3 82318.870677: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
142103          <idle>-0     (-----) [001] d.s4 82318.870689: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
142104          <idle>-0     (-----) [001] d.s4 82318.870699: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
142105          <idle>-0     (-----) [002] .n.1 82318.870705: cpu_idle: state=4294967295 cpu_id=2
142106          <idle>-0     (-----) [001] ...1 82318.870709: cpu_idle: state=4294967295 cpu_id=1
142107          <idle>-0     (-----) [001] d..1 82318.870716: cpu_idle: state=0 cpu_id=1
142108          <idle>-0     (-----) [002] d..2 82318.870718: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142109  kworker/u16:13-1147  ( 1147) [002] .... 82318.870773: clk_set_rate: l3_cluster0_vote_clk 300000000
142110  kworker/u16:13-1147  ( 1147) [002] .... 82318.870779: clk_set_rate: l3_clk 300000000
142111  kworker/u16:13-1147  ( 1147) [002] d..2 82318.870883: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142112          <idle>-0     (-----) [002] d..1 82318.870899: cpu_idle: state=0 cpu_id=2
142113          <idle>-0     (-----) [002] ...1 82318.871084: cpu_idle: state=4294967295 cpu_id=2
142114          <idle>-0     (-----) [002] d..1 82318.871091: cpu_idle: state=0 cpu_id=2
142115          <idle>-0     (-----) [002] ...1 82318.871208: cpu_idle: state=4294967295 cpu_id=2
142116          <idle>-0     (-----) [002] d..1 82318.871214: cpu_idle: state=0 cpu_id=2
142117          <idle>-0     (-----) [001] d.s3 82318.871339: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142118          <idle>-0     (-----) [001] dns4 82318.871352: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142119          <idle>-0     (-----) [002] ...1 82318.871367: cpu_idle: state=4294967295 cpu_id=2
142120          <idle>-0     (-----) [001] .n.1 82318.871368: cpu_idle: state=4294967295 cpu_id=1
142121          <idle>-0     (-----) [002] d..1 82318.871373: cpu_idle: state=0 cpu_id=2
142122          <idle>-0     (-----) [001] d..2 82318.871384: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142123     kworker/1:1-25249 (25249) [001] d..2 82318.871449: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142124     kworker/1:1-25249 (25249) [001] d..3 82318.871474: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142125          <idle>-0     (-----) [002] ...1 82318.871482: cpu_idle: state=4294967295 cpu_id=2
142126          <idle>-0     (-----) [002] d..1 82318.871488: cpu_idle: state=0 cpu_id=2
142127     kworker/1:1-25249 (25249) [001] d..2 82318.871506: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
142128   cds_mc_thread-16565 (16565) [001] d.s4 82318.871549: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142129   cds_mc_thread-16565 (16565) [001] d.s5 82318.871561: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142130          <idle>-0     (-----) [002] ...1 82318.871657: cpu_idle: state=4294967295 cpu_id=2
142131          <idle>-0     (-----) [002] d..1 82318.871663: cpu_idle: state=0 cpu_id=2
142132   cds_mc_thread-16565 (16565) [001] d..2 82318.871753: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142133          <idle>-0     (-----) [002] d..2 82318.871786: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
142134          <idle>-0     (-----) [002] dn.3 82318.871803: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
142135          <idle>-0     (-----) [003] d.s2 82318.871811: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142136          <idle>-0     (-----) [003] dns3 82318.871872: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142137          <idle>-0     (-----) [003] .n.1 82318.871897: cpu_idle: state=4294967295 cpu_id=3
142138          <idle>-0     (-----) [002] .n.1 82318.871899: cpu_idle: state=4294967295 cpu_id=2
142139          <idle>-0     (-----) [003] d..2 82318.871913: 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
142140     rcu_preempt-7     (    7) [003] d..2 82318.871950: 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
142141          <idle>-0     (-----) [003] d..1 82318.871965: cpu_idle: state=0 cpu_id=3
142142     kworker/1:1-25249 (25249) [001] d..2 82318.871971: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142143          <idle>-0     (-----) [002] d..2 82318.871972: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
142144     ksoftirqd/2-26    (   26) [002] d..2 82318.872002: 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
142145          <idle>-0     (-----) [002] d..1 82318.872016: cpu_idle: state=0 cpu_id=2
142146     kworker/1:1-25249 (25249) [001] d..3 82318.872026: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=002
142147          <idle>-0     (-----) [002] .n.1 82318.872032: cpu_idle: state=4294967295 cpu_id=2
142148          <idle>-0     (-----) [002] d..2 82318.872045: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
142149     kworker/1:1-25249 (25249) [001] d..2 82318.872072: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=000
142150     kworker/1:1-25249 (25249) [001] d..3 82318.872113: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
142151     kworker/1:1-25249 (25249) [001] d..2 82318.872153: sched_waking: [email protected] pid=16588 prio=120 target_cpu=000
142152     kworker/1:1-25249 (25249) [001] d..3 82318.872192: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=002
142153     kworker/1:1-25249 (25249) [001] d..2 82318.872360: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
142154 wlan_logging_th-647   (  647) [001] d..2 82318.872417: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142155          <idle>-0     (-----) [001] d..1 82318.872438: cpu_idle: state=0 cpu_id=1
142156          <idle>-0     (-----) [001] d.s3 82318.872497: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142157   cds_mc_thread-16565 (16565) [002] d..2 82318.872508: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
142158          <idle>-0     (-----) [001] dns4 82318.872509: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142159          <idle>-0     (-----) [001] .n.1 82318.872525: cpu_idle: state=4294967295 cpu_id=1
142160   cds_mc_thread-16565 (16565) [002] d..3 82318.872538: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
142161          <idle>-0     (-----) [001] d..2 82318.872549: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
142162 wlan_logging_th-647   (  647) [001] d..2 82318.872585: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142163     kworker/1:1-25249 (25249) [001] d..2 82318.872634: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=002
142164   cds_mc_thread-16565 (16565) [002] d..2 82318.872650: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
142165     kworker/1:1-25249 (25249) [001] d..3 82318.872702: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142166     kworker/1:1-25249 (25249) [001] d..2 82318.872729: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
142167   cds_mc_thread-16565 (16565) [001] d..2 82318.872912: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142168          <idle>-0     (-----) [001] d..1 82318.872933: cpu_idle: state=0 cpu_id=1
142169 [email protected] (  798) [002] d..2 82318.873200: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142170          <idle>-0     (-----) [002] d..1 82318.873224: cpu_idle: state=0 cpu_id=2
142171          <idle>-0     (-----) [000] d.h5 82318.873653: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142172          <idle>-0     (-----) [000] dnh6 82318.873672: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142173          <idle>-0     (-----) [000] dnh5 82318.873676: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
142174          <idle>-0     (-----) [000] dnh6 82318.873699: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
142175          <idle>-0     (-----) [003] .n.1 82318.873706: cpu_idle: state=4294967295 cpu_id=3
142176          <idle>-0     (-----) [000] .n.1 82318.873715: cpu_idle: state=4294967295 cpu_id=0
142177          <idle>-0     (-----) [003] d..2 82318.873717: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142178          <idle>-0     (-----) [000] d..2 82318.873730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142179  crtc_event:111-322   (  322) [000] d..2 82318.873762: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142180          <idle>-0     (-----) [000] d..1 82318.873777: cpu_idle: state=0 cpu_id=0
142181 crtc_commit:111-321   (  321) [003] d..2 82318.873878: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
142182          <idle>-0     (-----) [003] d..1 82318.873889: cpu_idle: state=0 cpu_id=3
142183          <idle>-0     (-----) [003] d.s3 82318.875141: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142184          <idle>-0     (-----) [003] d.s4 82318.875162: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142185          <idle>-0     (-----) [000] .n.1 82318.875168: cpu_idle: state=4294967295 cpu_id=0
142186          <idle>-0     (-----) [003] d.s3 82318.875173: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
142187          <idle>-0     (-----) [000] d..2 82318.875181: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142188          <idle>-0     (-----) [003] dns4 82318.875190: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
142189          <idle>-0     (-----) [003] .n.1 82318.875199: cpu_idle: state=4294967295 cpu_id=3
142190          <idle>-0     (-----) [003] d..2 82318.875210: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
142191  crtc_event:111-322   (  322) [000] d..2 82318.875218: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142192          <idle>-0     (-----) [000] d..1 82318.875229: cpu_idle: state=0 cpu_id=0
142193     kworker/3:1-25210 (25210) [003] d..2 82318.875262: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142194          <idle>-0     (-----) [003] d..1 82318.875271: cpu_idle: state=0 cpu_id=3
142195          <idle>-0     (-----) [001] d.s3 82318.875911: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142196          <idle>-0     (-----) [001] dns4 82318.875931: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142197          <idle>-0     (-----) [001] .n.1 82318.875946: cpu_idle: state=4294967295 cpu_id=1
142198          <idle>-0     (-----) [001] d..2 82318.875962: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142199          <idle>-0     (-----) [000] d.h5 82318.875991: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
142200     kworker/1:1-25249 (25249) [001] d..2 82318.875994: sched_waking: [email protected] pid=16588 prio=120 target_cpu=002
142201          <idle>-0     (-----) [000] d.h6 82318.876011: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
142202     kworker/1:1-25249 (25249) [001] d..3 82318.876016: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
142203          <idle>-0     (-----) [003] .n.1 82318.876018: cpu_idle: state=4294967295 cpu_id=3
142204          <idle>-0     (-----) [000] ...1 82318.876026: cpu_idle: state=4294967295 cpu_id=0
142205          <idle>-0     (-----) [003] d..2 82318.876027: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142206          <idle>-0     (-----) [000] d..1 82318.876032: cpu_idle: state=0 cpu_id=0
142207     kworker/1:1-25249 (25249) [001] d..2 82318.876044: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
142208 crtc_commit:111-321   (  321) [003] d..2 82318.876106: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142209          <idle>-0     (-----) [003] d..1 82318.876116: cpu_idle: state=0 cpu_id=3
142210 [email protected] (  798) [001] d..2 82318.876206: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142211          <idle>-0     (-----) [001] d..1 82318.876227: cpu_idle: state=0 cpu_id=1
142212          <idle>-0     (-----) [000] d.h5 82318.876274: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142213          <idle>-0     (-----) [000] dnh6 82318.876285: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142214          <idle>-0     (-----) [000] .n.1 82318.876299: cpu_idle: state=4294967295 cpu_id=0
142215          <idle>-0     (-----) [000] d..2 82318.876311: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142216  crtc_event:111-322   (  322) [000] d..2 82318.876335: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142217          <idle>-0     (-----) [000] d..1 82318.876347: cpu_idle: state=0 cpu_id=0
142218          <idle>-0     (-----) [002] d.h2 82318.877974: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
142219          <idle>-0     (-----) [002] dnh3 82318.877995: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
142220          <idle>-0     (-----) [002] .n.1 82318.878005: cpu_idle: state=4294967295 cpu_id=2
142221          <idle>-0     (-----) [002] d..2 82318.878019: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
142222        DispSync-8879  ( 8858) [002] d..1 82318.878043: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
142223        DispSync-8879  ( 8858) [002] d..2 82318.878061: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
142224          <idle>-0     (-----) [001] .n.1 82318.878069: cpu_idle: state=4294967295 cpu_id=1
142225          <idle>-0     (-----) [001] d..2 82318.878083: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
142226        DispSync-8879  ( 8858) [002] d..2 82318.878103: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142227          <idle>-0     (-----) [002] d..1 82318.878117: cpu_idle: state=0 cpu_id=2
142228  appEventThread-8881  ( 8858) [001] d..3 82318.878138: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142229          <idle>-0     (-----) [004] dnh2 82318.878170: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142230          <idle>-0     (-----) [004] .n.1 82318.878174: cpu_idle: state=4294967295 cpu_id=4
142231          <idle>-0     (-----) [004] d..2 82318.878182: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
142232  appEventThread-8881  ( 8858) [001] d..2 82318.878205: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142233          <idle>-0     (-----) [001] d..1 82318.878223: cpu_idle: state=0 cpu_id=1
142234 s.nexuslauncher-10023 (10023) [004] .... 82318.878399: binder_transaction: transaction=1573146 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
142235 s.nexuslauncher-10023 (10023) [004] .... 82318.878404: binder_transaction_alloc_buf: transaction=1573146 data_size=80 offsets_size=0
142236 s.nexuslauncher-10023 (10023) [004] d..4 82318.878410: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
142237          <idle>-0     (-----) [000] dnh2 82318.878477: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
142238          <idle>-0     (-----) [000] .n.1 82318.878484: cpu_idle: state=4294967295 cpu_id=0
142239 s.nexuslauncher-10023 (10023) [004] d.H5 82318.878498: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
142240          <idle>-0     (-----) [003] d.s2 82318.878498: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142241          <idle>-0     (-----) [000] d..2 82318.878499: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
142242          <idle>-0     (-----) [003] dns3 82318.878523: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142243   Binder:8858_1-8871  ( 8858) [000] .... 82318.878526: binder_transaction_received: transaction=1573146
142244          <idle>-0     (-----) [003] dnH3 82318.878536: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
142245          <idle>-0     (-----) [003] dns3 82318.878546: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
142246 s.nexuslauncher-10023 (10023) [004] d..3 82318.878554: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142247   Binder:8858_1-8871  ( 8858) [000] d..1 82318.878570: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
142248 s.nexuslauncher-10023 (10023) [004] d..4 82318.878571: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142249          <idle>-0     (-----) [005] .n.1 82318.878576: cpu_idle: state=4294967295 cpu_id=5
142250          <idle>-0     (-----) [003] dns4 82318.878584: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
142251          <idle>-0     (-----) [005] d..2 82318.878587: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
142252   Binder:8858_1-8871  ( 8858) [000] d..2 82318.878589: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
142253          <idle>-0     (-----) [003] .n.1 82318.878595: cpu_idle: state=4294967295 cpu_id=3
142254          <idle>-0     (-----) [001] .n.1 82318.878596: cpu_idle: state=4294967295 cpu_id=1
142255          <idle>-0     (-----) [003] d..2 82318.878604: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
142256          <idle>-0     (-----) [001] d..2 82318.878610: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
142257    RenderThread-16607 (10023) [005] d..2 82318.878623: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
142258          <idle>-0     (-----) [005] d..1 82318.878631: cpu_idle: state=0 cpu_id=5
142259         sugov:0-576   (  576) [003] .... 82318.878644: clk_set_rate: pwrcl_clk 902400000
142260   Binder:8858_1-8871  ( 8858) [000] d..2 82318.878645: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142261         sugov:0-576   (  576) [003] .... 82318.878659: clk_set_rate: cpu3_pwrcl_clk 825600000
142262  appEventThread-8881  ( 8858) [001] d..2 82318.878659: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142263          <idle>-0     (-----) [000] d..1 82318.878664: cpu_idle: state=0 cpu_id=0
142264         sugov:0-576   (  576) [003] .... 82318.878670: clk_set_rate: cpu2_pwrcl_clk 825600000
142265          <idle>-0     (-----) [001] d..1 82318.878671: cpu_idle: state=0 cpu_id=1
142266         sugov:0-576   (  576) [003] .... 82318.878678: clk_set_rate: cpu1_pwrcl_clk 825600000
142267         sugov:0-576   (  576) [003] .... 82318.878686: clk_set_rate: cpu0_pwrcl_clk 902400000
142268         sugov:0-576   (  576) [003] .... 82318.878696: cpu_frequency: state=902400 cpu_id=0
142269         sugov:0-576   (  576) [003] .... 82318.878726: cpu_frequency: state=902400 cpu_id=1
142270         sugov:0-576   (  576) [003] .... 82318.878731: cpu_frequency: state=902400 cpu_id=2
142271         sugov:0-576   (  576) [003] .... 82318.878734: cpu_frequency: state=902400 cpu_id=3
142272         sugov:0-576   (  576) [003] d..2 82318.878755: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
142273     rcu_preempt-7     (    7) [003] d..2 82318.878765: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
142274     rcu_preempt-7     (    7) [003] d..3 82318.878789: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
142275 s.nexuslauncher-10023 (10023) [004] d..3 82318.878801: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142276     rcu_preempt-7     (    7) [003] d..2 82318.878805: 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
142277         rcuop/0-10    (   10) [003] d..2 82318.878810: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
142278 s.nexuslauncher-10023 (10023) [004] d..4 82318.878820: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142279          <idle>-0     (-----) [005] .n.1 82318.878824: cpu_idle: state=4294967295 cpu_id=5
142280         rcuop/0-10    (   10) [003] d..3 82318.878827: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
142281          <idle>-0     (-----) [005] d..2 82318.878831: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
142282         rcuop/0-10    (   10) [003] d..2 82318.878838: 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
142283 s.nexuslauncher-10023 (10023) [004] d..2 82318.878845: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
142284         rcuop/1-21    (   21) [003] d..2 82318.878853: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142285          <idle>-0     (-----) [004] d..1 82318.878861: cpu_idle: state=0 cpu_id=4
142286  kworker/u16:13-1147  ( 1147) [003] d..2 82318.879009: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142287    RenderThread-16607 (10023) [005] d..1 82318.879026: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142288          <idle>-0     (-----) [003] d..1 82318.879027: cpu_idle: state=0 cpu_id=3
142289    RenderThread-16607 (10023) [005] d..2 82318.879043: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142290          <idle>-0     (-----) [004] .n.1 82318.879050: cpu_idle: state=4294967295 cpu_id=4
142291          <idle>-0     (-----) [004] d..2 82318.879059: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
142292    RenderThread-16607 (10023) [005] .... 82318.879094: binder_transaction: transaction=1573147 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
142293    RenderThread-16607 (10023) [005] .... 82318.879098: binder_transaction_alloc_buf: transaction=1573147 data_size=104 offsets_size=0
142294    RenderThread-16607 (10023) [005] ...2 82318.879102: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
142295    RenderThread-16607 (10023) [005] d..4 82318.879105: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
142296    RenderThread-16607 (10023) [005] d..5 82318.879124: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142297 s.nexuslauncher-10023 (10023) [004] d..2 82318.879167: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
142298    RenderThread-16607 (10023) [005] d..2 82318.879169: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
142299          <idle>-0     (-----) [004] d..1 82318.879178: cpu_idle: state=0 cpu_id=4
142300   Binder:8858_1-8871  ( 8858) [005] .... 82318.879181: binder_transaction_received: transaction=1573147
142301   Binder:8858_1-8871  ( 8858) [005] .... 82318.879243: binder_transaction: transaction=1573148 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
142302   Binder:8858_1-8871  ( 8858) [005] .... 82318.879247: binder_transaction_alloc_buf: transaction=1573148 data_size=52 offsets_size=8
142303   Binder:8858_1-8871  ( 8858) [005] d..2 82318.879254: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142304   Binder:8858_1-8871  ( 8858) [005] d..3 82318.879266: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142305   Binder:8858_1-8871  ( 8858) [005] .... 82318.879268: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
142306   Binder:8858_1-8871  ( 8858) [005] d..2 82318.879278: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
142307    RenderThread-16607 (10023) [005] .... 82318.879287: binder_transaction_received: transaction=1573148
142308    RenderThread-16607 (10023) [005] d..2 82318.880629: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
142309   Binder:8858_1-8871  ( 8858) [005] d..2 82318.880698: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
142310          <idle>-0     (-----) [005] d..1 82318.880712: cpu_idle: state=0 cpu_id=5
142311          <idle>-0     (-----) [005] d.h2 82318.880725: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142312          <idle>-0     (-----) [005] d.h3 82318.880733: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
142313          <idle>-0     (-----) [005] dnh3 82318.880737: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142314          <idle>-0     (-----) [005] .n.1 82318.880744: cpu_idle: state=4294967295 cpu_id=5
142315          <idle>-0     (-----) [005] d..2 82318.880753: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
142316    RenderThread-16607 (10023) [005] .... 82318.880918: binder_transaction: transaction=1573149 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
142317    RenderThread-16607 (10023) [005] .... 82318.880922: binder_transaction_alloc_buf: transaction=1573149 data_size=192 offsets_size=8
142318    RenderThread-16607 (10023) [005] ...2 82318.880929: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
142319    RenderThread-16607 (10023) [005] d..4 82318.880932: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142320    RenderThread-16607 (10023) [005] d..5 82318.880943: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142321    RenderThread-16607 (10023) [005] d..2 82318.880956: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
142322   Binder:8858_1-8871  ( 8858) [005] .... 82318.880966: binder_transaction_received: transaction=1573149
142323   Binder:8858_1-8871  ( 8858) [005] .... 82318.881092: binder_transaction: transaction=1573150 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
142324   Binder:8858_1-8871  ( 8858) [005] .... 82318.881096: binder_transaction_alloc_buf: transaction=1573150 data_size=68 offsets_size=0
142325   Binder:8858_1-8871  ( 8858) [005] d..2 82318.881099: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142326   Binder:8858_1-8871  ( 8858) [005] d..3 82318.881109: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142327   Binder:8858_1-8871  ( 8858) [005] .... 82318.881112: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
142328   Binder:8858_1-8871  ( 8858) [005] d..2 82318.881144: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
142329    RenderThread-16607 (10023) [005] .... 82318.881153: binder_transaction_received: transaction=1573150
142330    RenderThread-16607 (10023) [005] d..2 82318.881223: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
142331          <idle>-0     (-----) [005] d..1 82318.881240: cpu_idle: state=0 cpu_id=5
142332          <idle>-0     (-----) [005] ...1 82318.881442: cpu_idle: state=4294967295 cpu_id=5
142333          <idle>-0     (-----) [005] d..1 82318.881446: cpu_idle: state=0 cpu_id=5
142334          <idle>-0     (-----) [002] d.h2 82318.881983: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
142335          <idle>-0     (-----) [002] dnh3 82318.881997: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
142336          <idle>-0     (-----) [002] .n.1 82318.882005: cpu_idle: state=4294967295 cpu_id=2
142337          <idle>-0     (-----) [002] d..2 82318.882017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
142338        DispSync-8879  ( 8858) [002] d..1 82318.882030: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142339        DispSync-8879  ( 8858) [002] d..2 82318.882049: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142340          <idle>-0     (-----) [003] .n.1 82318.882054: cpu_idle: state=4294967295 cpu_id=3
142341          <idle>-0     (-----) [003] d..2 82318.882069: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
142342        DispSync-8879  ( 8858) [002] d..2 82318.882086: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142343          <idle>-0     (-----) [002] d..2 82318.882091: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
142344          <idle>-0     (-----) [002] dn.3 82318.882101: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
142345          <idle>-0     (-----) [002] d..2 82318.882110: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
142346   sfEventThread-8882  ( 8858) [003] d..3 82318.882124: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142347     ksoftirqd/2-26    (   26) [002] d..2 82318.882140: 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
142348   sfEventThread-8882  ( 8858) [003] d..4 82318.882151: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142349          <idle>-0     (-----) [000] d.h3 82318.882158: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
142350          <idle>-0     (-----) [002] d..2 82318.882162: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R+ ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
142351          <idle>-0     (-----) [000] dnh4 82318.882174: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
142352          <idle>-0     (-----) [000] .n.1 82318.882187: cpu_idle: state=4294967295 cpu_id=0
142353   sfEventThread-8882  ( 8858) [003] d..2 82318.882192: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142354          <idle>-0     (-----) [000] d..2 82318.882199: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
142355          <idle>-0     (-----) [003] d..1 82318.882203: cpu_idle: state=0 cpu_id=3
142356 kgsl_worker_thr-258   (  258) [000] d..2 82318.882255: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
142357 kgsl_worker_thr-258   (  258) [000] d..3 82318.882297: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142358 kgsl_worker_thr-258   (  258) [000] d..2 82318.882322: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142359  kworker/u16:13-1147  ( 1147) [000] d..2 82318.882498: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142360          <idle>-0     (-----) [000] d..1 82318.882517: cpu_idle: state=0 cpu_id=0
142361  surfaceflinger-8858  ( 8858) [002] d..1 82318.882550: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142362  surfaceflinger-8858  ( 8858) [002] d..2 82318.882575: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142363          <idle>-0     (-----) [003] .n.1 82318.882581: cpu_idle: state=4294967295 cpu_id=3
142364          <idle>-0     (-----) [003] d..2 82318.882590: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
142365   sfEventThread-8882  ( 8858) [003] d..2 82318.882630: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142366          <idle>-0     (-----) [003] d..1 82318.882637: cpu_idle: state=0 cpu_id=3
142367  surfaceflinger-8858  ( 8858) [002] ...1 82318.882794: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
142368  surfaceflinger-8858  ( 8858) [002] ...1 82318.882802: tracing_mark_write: E|8858
142369  surfaceflinger-8858  ( 8858) [002] .... 82318.882868: binder_transaction: transaction=1573151 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
142370  surfaceflinger-8858  ( 8858) [002] .... 82318.882874: binder_transaction_alloc_buf: transaction=1573151 data_size=540 offsets_size=96
142371  surfaceflinger-8858  ( 8858) [002] ...2 82318.882901: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
142372  surfaceflinger-8858  ( 8858) [002] d..4 82318.882910: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
142373  surfaceflinger-8858  ( 8858) [002] d..5 82318.882934: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
142374          <idle>-0     (-----) [003] .n.1 82318.882939: cpu_idle: state=4294967295 cpu_id=3
142375          <idle>-0     (-----) [003] d..2 82318.882949: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
142376 [email protected]   (  619) [003] .... 82318.882961: binder_transaction_received: transaction=1573151
142377  surfaceflinger-8858  ( 8858) [002] d..2 82318.882973: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142378          <idle>-0     (-----) [002] d..1 82318.883005: cpu_idle: state=0 cpu_id=2
142379 [email protected]   (  619) [003] ...1 82318.883017: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
142380 [email protected]   (  619) [003] ...1 82318.883145: tracing_mark_write: B|619|HWCSession::PresentDisplay::
142381 [email protected]   (  619) [003] ...1 82318.883326: tracing_mark_write: B|619|HWDeviceDRM::Commit::
142382 [email protected]   (  619) [003] ...1 82318.883342: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
142383 [email protected]   (  619) [003] d..2 82318.883961: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
142384 [email protected]   (  619) [003] d..3 82318.883999: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
142385          <idle>-0     (-----) [000] .n.1 82318.884005: cpu_idle: state=4294967295 cpu_id=0
142386          <idle>-0     (-----) [000] d..2 82318.884017: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142387 [email protected]   (  619) [003] ...1 82318.884113: tracing_mark_write: E|619
142388 [email protected]   (  619) [003] ...1 82318.884121: tracing_mark_write: E|619
142389 [email protected]   (  619) [003] ...1 82318.884185: tracing_mark_write: E|619
142390 [email protected]   (  619) [003] ...1 82318.884234: tracing_mark_write: E|619
142391 [email protected]   (  619) [003] .... 82318.884252: binder_transaction: transaction=1573152 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
142392 [email protected]   (  619) [003] .... 82318.884257: binder_transaction_alloc_buf: transaction=1573152 data_size=576 offsets_size=112
142393 [email protected]   (  619) [003] d..2 82318.884281: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142394 [email protected]   (  619) [003] d..3 82318.884302: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142395 [email protected]   (  619) [003] .... 82318.884308: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
142396          <idle>-0     (-----) [002] .n.1 82318.884309: cpu_idle: state=4294967295 cpu_id=2
142397          <idle>-0     (-----) [002] d..2 82318.884320: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
142398  surfaceflinger-8858  ( 8858) [002] .... 82318.884331: binder_transaction_received: transaction=1573152
142399 [email protected]   (  619) [003] d..2 82318.884410: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142400          <idle>-0     (-----) [003] d..1 82318.884427: cpu_idle: state=0 cpu_id=3
142401 crtc_commit:111-321   (  321) [000] d..2 82318.884768: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
142402          <idle>-0     (-----) [000] d..1 82318.884785: cpu_idle: state=0 cpu_id=0
142403  surfaceflinger-8858  ( 8858) [002] d..2 82318.884791: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142404          <idle>-0     (-----) [002] d..1 82318.884813: cpu_idle: state=0 cpu_id=2
142405          <idle>-0     (-----) [003] d.s2 82318.885147: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142406          <idle>-0     (-----) [003] dns3 82318.885169: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142407          <idle>-0     (-----) [003] .n.1 82318.885185: cpu_idle: state=4294967295 cpu_id=3
142408          <idle>-0     (-----) [003] d..2 82318.885196: 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
142409     rcu_preempt-7     (    7) [003] d..2 82318.885209: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
142410     rcu_preempt-7     (    7) [003] d..3 82318.885229: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
142411     rcu_preempt-7     (    7) [003] d..2 82318.885246: 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
142412         rcuop/2-29    (   29) [003] d..2 82318.885292: 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
142413          <idle>-0     (-----) [003] d..1 82318.885308: cpu_idle: state=0 cpu_id=3
142414          <idle>-0     (-----) [002] ...1 82318.885325: cpu_idle: state=4294967295 cpu_id=2
142415          <idle>-0     (-----) [002] d..1 82318.885379: cpu_idle: state=0 cpu_id=2
142416          <idle>-0     (-----) [002] ...1 82318.885524: cpu_idle: state=4294967295 cpu_id=2
142417          <idle>-0     (-----) [002] d..1 82318.885530: cpu_idle: state=0 cpu_id=2
142418          <idle>-0     (-----) [001] d.s3 82318.885606: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142419          <idle>-0     (-----) [001] dns4 82318.885620: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142420          <idle>-0     (-----) [001] .n.1 82318.885635: cpu_idle: state=4294967295 cpu_id=1
142421          <idle>-0     (-----) [001] d..2 82318.885650: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142422          <idle>-0     (-----) [002] ...1 82318.885661: cpu_idle: state=4294967295 cpu_id=2
142423          <idle>-0     (-----) [002] d..1 82318.885669: cpu_idle: state=0 cpu_id=2
142424     kworker/1:1-25249 (25249) [001] d..2 82318.885710: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142425     kworker/1:1-25249 (25249) [001] d..3 82318.885734: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142426     kworker/1:1-25249 (25249) [001] d..2 82318.885763: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
142427          <idle>-0     (-----) [002] ...1 82318.885819: cpu_idle: state=4294967295 cpu_id=2
142428          <idle>-0     (-----) [002] d..1 82318.885824: cpu_idle: state=0 cpu_id=2
142429   cds_mc_thread-16565 (16565) [001] d.s2 82318.885862: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142430   cds_mc_thread-16565 (16565) [001] d.s3 82318.885877: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142431   cds_mc_thread-16565 (16565) [001] d..2 82318.886023: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142432     kworker/1:1-25249 (25249) [001] d..2 82318.886065: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142433     kworker/1:1-25249 (25249) [001] d..3 82318.886086: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142434     kworker/1:1-25249 (25249) [001] d..2 82318.886112: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
142435   cds_mc_thread-16565 (16565) [001] d.s2 82318.886168: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142436   cds_mc_thread-16565 (16565) [001] d.s3 82318.886181: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142437   cds_mc_thread-16565 (16565) [001] d..2 82318.886230: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
142438   cds_mc_thread-16565 (16565) [001] dn.3 82318.886251: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
142439   cds_mc_thread-16565 (16565) [001] d..2 82318.886260: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=R+ ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
142440 wlan_logging_th-647   (  647) [001] d..2 82318.886285: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
142441 wlan_logging_th-647   (  647) [001] d..3 82318.886302: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
142442 wlan_logging_th-647   (  647) [001] d..2 82318.886323: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142443     kworker/1:1-25249 (25249) [001] d..2 82318.886384: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
142444   cds_mc_thread-16565 (16565) [001] d.s2 82318.886443: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142445   cds_mc_thread-16565 (16565) [001] d.s3 82318.886456: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142446   cds_mc_thread-16565 (16565) [001] d..2 82318.886728: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142447     kworker/1:1-25249 (25249) [001] d..2 82318.886814: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142448     kworker/1:1-25249 (25249) [001] d..3 82318.886837: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142449     kworker/1:1-25249 (25249) [001] d..2 82318.886930: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
142450   cds_mc_thread-16565 (16565) [001] d..2 82318.887091: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
142451   cds_mc_thread-16565 (16565) [001] dn.3 82318.887116: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
142452   cds_mc_thread-16565 (16565) [001] d..2 82318.887127: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=R+ ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
142453 wlan_logging_th-647   (  647) [001] d..2 82318.887159: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
142454   cds_mc_thread-16565 (16565) [001] d..2 82318.887257: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
142455 [email protected] (  798) [001] d..2 82318.887455: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142456          <idle>-0     (-----) [001] d..1 82318.887477: cpu_idle: state=0 cpu_id=1
142457          <idle>-0     (-----) [002] d..2 82318.889985: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
142458          <idle>-0     (-----) [002] dn.3 82318.889999: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
142459          <idle>-0     (-----) [002] .n.1 82318.890003: cpu_idle: state=4294967295 cpu_id=2
142460          <idle>-0     (-----) [002] d..2 82318.890020: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
142461     ksoftirqd/2-26    (   26) [002] d.s2 82318.890030: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142462     ksoftirqd/2-26    (   26) [002] d.s3 82318.890074: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
142463     ksoftirqd/2-26    (   26) [002] d..2 82318.890091: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142464          <idle>-0     (-----) [000] d.h5 82318.890105: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142465          <idle>-0     (-----) [000] dnh6 82318.890122: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142466          <idle>-0     (-----) [000] dnh5 82318.890126: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
142467          <idle>-0     (-----) [000] dnh6 82318.890147: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
142468          <idle>-0     (-----) [003] .n.1 82318.890154: cpu_idle: state=4294967295 cpu_id=3
142469          <idle>-0     (-----) [001] d.s3 82318.890157: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142470          <idle>-0     (-----) [000] .n.1 82318.890162: cpu_idle: state=4294967295 cpu_id=0
142471          <idle>-0     (-----) [003] d..2 82318.890167: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142472          <idle>-0     (-----) [001] dns4 82318.890172: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142473          <idle>-0     (-----) [000] d..2 82318.890176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142474          <idle>-0     (-----) [001] .n.1 82318.890187: cpu_idle: state=4294967295 cpu_id=1
142475          <idle>-0     (-----) [001] d..2 82318.890205: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142476  crtc_event:111-322   (  322) [000] d..2 82318.890211: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142477          <idle>-0     (-----) [000] d..1 82318.890225: cpu_idle: state=0 cpu_id=0
142478  kworker/u16:13-1147  ( 1147) [002] d..2 82318.890230: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142479     kworker/1:1-25249 (25249) [001] d..2 82318.890237: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
142480          <idle>-0     (-----) [002] d..1 82318.890245: cpu_idle: state=0 cpu_id=2
142481     kworker/1:1-25249 (25249) [001] d..3 82318.890251: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
142482     kworker/1:1-25249 (25249) [001] d..2 82318.890280: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
142483          <idle>-0     (-----) [002] ...1 82318.890321: cpu_idle: state=4294967295 cpu_id=2
142484          <idle>-0     (-----) [002] d..1 82318.890327: cpu_idle: state=0 cpu_id=2
142485 crtc_commit:111-321   (  321) [003] d..2 82318.890342: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
142486          <idle>-0     (-----) [003] d..1 82318.890353: cpu_idle: state=0 cpu_id=3
142487 [email protected] (  798) [001] d..2 82318.890404: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142488          <idle>-0     (-----) [001] d..1 82318.890425: cpu_idle: state=0 cpu_id=1
142489          <idle>-0     (-----) [001] d.s3 82318.891265: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142490          <idle>-0     (-----) [001] dns4 82318.891276: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142491          <idle>-0     (-----) [001] .n.1 82318.891300: cpu_idle: state=4294967295 cpu_id=1
142492          <idle>-0     (-----) [001] d..2 82318.891315: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142493     kworker/1:1-25249 (25249) [001] d..2 82318.891347: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
142494     kworker/1:1-25249 (25249) [001] d..3 82318.891359: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
142495     kworker/1:1-25249 (25249) [001] d..2 82318.891388: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
142496 [email protected] (  798) [001] d..2 82318.891517: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142497          <idle>-0     (-----) [001] d..1 82318.891536: cpu_idle: state=0 cpu_id=1
142498          <idle>-0     (-----) [003] d.s3 82318.891879: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142499          <idle>-0     (-----) [003] d.s4 82318.891900: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142500          <idle>-0     (-----) [003] d.s2 82318.891905: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142501          <idle>-0     (-----) [000] .n.1 82318.891906: cpu_idle: state=4294967295 cpu_id=0
142502          <idle>-0     (-----) [000] d..2 82318.891918: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142503          <idle>-0     (-----) [003] dns3 82318.891924: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142504          <idle>-0     (-----) [003] .n.1 82318.891946: cpu_idle: state=4294967295 cpu_id=3
142505  crtc_event:111-322   (  322) [000] d..2 82318.891953: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142506          <idle>-0     (-----) [003] d..2 82318.891958: 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
142507          <idle>-0     (-----) [000] d..1 82318.891964: cpu_idle: state=0 cpu_id=0
142508     rcu_preempt-7     (    7) [003] d..2 82318.891968: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
142509     rcu_preempt-7     (    7) [003] d..3 82318.891987: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
142510     rcu_preempt-7     (    7) [003] d..2 82318.892001: 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
142511         rcuop/0-10    (   10) [003] d..2 82318.892006: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
142512         rcuop/0-10    (   10) [003] d..3 82318.892021: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
142513         rcuop/0-10    (   10) [003] d..2 82318.892045: 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
142514         rcuop/1-21    (   21) [003] d..2 82318.892070: 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
142515          <idle>-0     (-----) [003] d..1 82318.892086: cpu_idle: state=0 cpu_id=3
142516          <idle>-0     (-----) [001] d.s3 82318.892188: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142517          <idle>-0     (-----) [001] dns4 82318.892202: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142518          <idle>-0     (-----) [001] .n.1 82318.892217: cpu_idle: state=4294967295 cpu_id=1
142519          <idle>-0     (-----) [001] d..2 82318.892232: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142520     kworker/1:1-25249 (25249) [001] d..2 82318.892261: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
142521     kworker/1:1-25249 (25249) [001] d..3 82318.892275: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
142522     kworker/1:1-25249 (25249) [001] d..2 82318.892299: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
142523 [email protected] (  798) [001] d.s4 82318.892342: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142524 [email protected] (  798) [001] dns5 82318.892365: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
142525 [email protected] (  798) [001] d..2 82318.892390: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
142526          <idle>-0     (-----) [000] d.h5 82318.892441: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
142527   cds_mc_thread-16565 (16565) [001] d..2 82318.892457: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
142528          <idle>-0     (-----) [000] d.h6 82318.892461: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
142529          <idle>-0     (-----) [003] .n.1 82318.892468: cpu_idle: state=4294967295 cpu_id=3
142530          <idle>-0     (-----) [000] ...1 82318.892475: cpu_idle: state=4294967295 cpu_id=0
142531          <idle>-0     (-----) [003] d..2 82318.892480: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142532          <idle>-0     (-----) [000] d..1 82318.892481: cpu_idle: state=0 cpu_id=0
142533 [email protected] (  798) [001] d.s2 82318.892545: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142534 crtc_commit:111-321   (  321) [003] d..2 82318.892556: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142535 [email protected] (  798) [001] dns3 82318.892560: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
142536          <idle>-0     (-----) [003] d..1 82318.892569: cpu_idle: state=0 cpu_id=3
142537 [email protected] (  798) [001] d..2 82318.892581: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
142538          <idle>-0     (-----) [002] ...1 82318.892629: cpu_idle: state=4294967295 cpu_id=2
142539     kworker/1:1-25249 (25249) [001] d..2 82318.892633: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
142540          <idle>-0     (-----) [002] d..1 82318.892634: cpu_idle: state=0 cpu_id=2
142541          <idle>-0     (-----) [000] d.h5 82318.892733: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142542          <idle>-0     (-----) [000] dnh6 82318.892743: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142543          <idle>-0     (-----) [000] .n.1 82318.892758: cpu_idle: state=4294967295 cpu_id=0
142544          <idle>-0     (-----) [000] d..2 82318.892769: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142545  crtc_event:111-322   (  322) [000] d..2 82318.892795: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142546 [email protected] (  798) [001] d..2 82318.892805: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142547          <idle>-0     (-----) [000] d..1 82318.892807: cpu_idle: state=0 cpu_id=0
142548          <idle>-0     (-----) [001] d..1 82318.892826: cpu_idle: state=0 cpu_id=1
142549          <idle>-0     (-----) [002] d.h2 82318.894437: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
142550          <idle>-0     (-----) [002] dnh3 82318.894457: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
142551          <idle>-0     (-----) [002] .n.1 82318.894466: cpu_idle: state=4294967295 cpu_id=2
142552          <idle>-0     (-----) [002] d..2 82318.894478: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
142553        DispSync-8879  ( 8858) [002] d..1 82318.894499: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
142554        DispSync-8879  ( 8858) [002] d..2 82318.894515: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
142555          <idle>-0     (-----) [001] .n.1 82318.894523: cpu_idle: state=4294967295 cpu_id=1
142556          <idle>-0     (-----) [001] d..2 82318.894536: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
142557        DispSync-8879  ( 8858) [002] d..2 82318.894554: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142558          <idle>-0     (-----) [002] d..1 82318.894566: cpu_idle: state=0 cpu_id=2
142559  appEventThread-8881  ( 8858) [001] d..3 82318.894588: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142560          <idle>-0     (-----) [004] dnh2 82318.894620: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142561          <idle>-0     (-----) [004] .n.1 82318.894624: cpu_idle: state=4294967295 cpu_id=4
142562          <idle>-0     (-----) [004] d..2 82318.894633: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
142563  appEventThread-8881  ( 8858) [001] d..2 82318.894654: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142564          <idle>-0     (-----) [001] d..1 82318.894672: cpu_idle: state=0 cpu_id=1
142565 s.nexuslauncher-10023 (10023) [004] .... 82318.894842: binder_transaction: transaction=1573153 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
142566 s.nexuslauncher-10023 (10023) [004] .... 82318.894847: binder_transaction_alloc_buf: transaction=1573153 data_size=80 offsets_size=0
142567 s.nexuslauncher-10023 (10023) [004] d..4 82318.894853: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
142568          <idle>-0     (-----) [000] dnh2 82318.894917: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
142569          <idle>-0     (-----) [000] .n.1 82318.894923: cpu_idle: state=4294967295 cpu_id=0
142570          <idle>-0     (-----) [000] d..2 82318.894934: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
142571 s.nexuslauncher-10023 (10023) [004] d..3 82318.894938: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142572   Binder:8858_1-8871  ( 8858) [000] .... 82318.894944: binder_transaction_received: transaction=1573153
142573 s.nexuslauncher-10023 (10023) [004] d..4 82318.894954: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142574          <idle>-0     (-----) [005] .n.1 82318.894959: cpu_idle: state=4294967295 cpu_id=5
142575          <idle>-0     (-----) [005] d..2 82318.894971: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
142576   Binder:8858_1-8871  ( 8858) [000] d..1 82318.894984: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
142577   Binder:8858_1-8871  ( 8858) [000] d..2 82318.895003: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
142578    RenderThread-16607 (10023) [005] d..2 82318.895007: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
142579          <idle>-0     (-----) [001] .n.1 82318.895010: cpu_idle: state=4294967295 cpu_id=1
142580          <idle>-0     (-----) [005] d..1 82318.895015: cpu_idle: state=0 cpu_id=5
142581          <idle>-0     (-----) [001] d..2 82318.895021: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
142582   Binder:8858_1-8871  ( 8858) [000] d..2 82318.895052: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142583  appEventThread-8881  ( 8858) [001] d..2 82318.895064: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142584          <idle>-0     (-----) [000] d..1 82318.895069: cpu_idle: state=0 cpu_id=0
142585          <idle>-0     (-----) [001] d..1 82318.895075: cpu_idle: state=0 cpu_id=1
142586 s.nexuslauncher-10023 (10023) [004] d..3 82318.895202: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142587 s.nexuslauncher-10023 (10023) [004] d..4 82318.895219: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142588          <idle>-0     (-----) [005] .n.1 82318.895224: cpu_idle: state=4294967295 cpu_id=5
142589          <idle>-0     (-----) [005] d..2 82318.895232: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
142590 s.nexuslauncher-10023 (10023) [004] d..2 82318.895247: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
142591          <idle>-0     (-----) [004] d..1 82318.895262: cpu_idle: state=0 cpu_id=4
142592    RenderThread-16607 (10023) [005] d..1 82318.895392: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142593    RenderThread-16607 (10023) [005] d..2 82318.895409: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142594          <idle>-0     (-----) [004] .n.1 82318.895416: cpu_idle: state=4294967295 cpu_id=4
142595          <idle>-0     (-----) [004] d..2 82318.895426: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
142596    RenderThread-16607 (10023) [005] .... 82318.895458: binder_transaction: transaction=1573154 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
142597    RenderThread-16607 (10023) [005] .... 82318.895463: binder_transaction_alloc_buf: transaction=1573154 data_size=104 offsets_size=0
142598    RenderThread-16607 (10023) [005] ...2 82318.895467: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
142599    RenderThread-16607 (10023) [005] d..4 82318.895470: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
142600    RenderThread-16607 (10023) [005] d..5 82318.895489: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142601    RenderThread-16607 (10023) [005] d..2 82318.895537: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
142602 s.nexuslauncher-10023 (10023) [004] d..2 82318.895539: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
142603   Binder:8858_1-8871  ( 8858) [005] .... 82318.895549: binder_transaction_received: transaction=1573154
142604          <idle>-0     (-----) [004] d..1 82318.895550: cpu_idle: state=0 cpu_id=4
142605   Binder:8858_1-8871  ( 8858) [005] .... 82318.895609: binder_transaction: transaction=1573155 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
142606   Binder:8858_1-8871  ( 8858) [005] .... 82318.895613: binder_transaction_alloc_buf: transaction=1573155 data_size=52 offsets_size=8
142607   Binder:8858_1-8871  ( 8858) [005] d..2 82318.895621: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142608   Binder:8858_1-8871  ( 8858) [005] d..3 82318.895632: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142609   Binder:8858_1-8871  ( 8858) [005] .... 82318.895635: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
142610   Binder:8858_1-8871  ( 8858) [005] d..2 82318.895645: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
142611    RenderThread-16607 (10023) [005] .... 82318.895653: binder_transaction_received: transaction=1573155
142612    RenderThread-16607 (10023) [005] d..2 82318.896962: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
142613   Binder:8858_1-8871  ( 8858) [005] d..2 82318.897030: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
142614          <idle>-0     (-----) [005] d..1 82318.897045: cpu_idle: state=0 cpu_id=5
142615          <idle>-0     (-----) [005] d.h2 82318.897058: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142616          <idle>-0     (-----) [005] d.h3 82318.897066: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
142617          <idle>-0     (-----) [005] dnh3 82318.897070: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142618          <idle>-0     (-----) [005] .n.1 82318.897076: cpu_idle: state=4294967295 cpu_id=5
142619          <idle>-0     (-----) [005] d..2 82318.897086: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
142620    RenderThread-16607 (10023) [005] .... 82318.897244: binder_transaction: transaction=1573156 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
142621    RenderThread-16607 (10023) [005] .... 82318.897249: binder_transaction_alloc_buf: transaction=1573156 data_size=192 offsets_size=8
142622    RenderThread-16607 (10023) [005] ...2 82318.897256: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
142623    RenderThread-16607 (10023) [005] d..4 82318.897259: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142624    RenderThread-16607 (10023) [005] d..5 82318.897271: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142625    RenderThread-16607 (10023) [005] d..2 82318.897283: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
142626   Binder:8858_1-8871  ( 8858) [005] .... 82318.897293: binder_transaction_received: transaction=1573156
142627   Binder:8858_1-8871  ( 8858) [005] .... 82318.897421: binder_transaction: transaction=1573157 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
142628   Binder:8858_1-8871  ( 8858) [005] .... 82318.897425: binder_transaction_alloc_buf: transaction=1573157 data_size=68 offsets_size=0
142629   Binder:8858_1-8871  ( 8858) [005] d..2 82318.897428: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142630   Binder:8858_1-8871  ( 8858) [005] d..3 82318.897438: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142631   Binder:8858_1-8871  ( 8858) [005] .... 82318.897440: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
142632   Binder:8858_1-8871  ( 8858) [005] d..2 82318.897471: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
142633    RenderThread-16607 (10023) [005] .... 82318.897481: binder_transaction_received: transaction=1573157
142634    RenderThread-16607 (10023) [005] d..2 82318.897553: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
142635          <idle>-0     (-----) [005] d..1 82318.897570: cpu_idle: state=0 cpu_id=5
142636          <idle>-0     (-----) [005] ...1 82318.897783: cpu_idle: state=4294967295 cpu_id=5
142637          <idle>-0     (-----) [005] d..1 82318.897787: cpu_idle: state=0 cpu_id=5
142638          <idle>-0     (-----) [000] d.h3 82318.898374: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
142639          <idle>-0     (-----) [000] dnh4 82318.898392: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
142640          <idle>-0     (-----) [000] .n.1 82318.898406: cpu_idle: state=4294967295 cpu_id=0
142641          <idle>-0     (-----) [000] d..2 82318.898419: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
142642          <idle>-0     (-----) [002] d.h2 82318.898438: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
142643          <idle>-0     (-----) [002] dnh3 82318.898450: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
142644          <idle>-0     (-----) [002] .n.1 82318.898458: cpu_idle: state=4294967295 cpu_id=2
142645          <idle>-0     (-----) [002] d..2 82318.898472: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
142646          <idle>-0     (-----) [003] d.s2 82318.898474: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142647 kgsl_worker_thr-258   (  258) [000] d.s4 82318.898482: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
142648        DispSync-8879  ( 8858) [002] d..1 82318.898485: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142649          <idle>-0     (-----) [003] dns3 82318.898499: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
142650        DispSync-8879  ( 8858) [002] d..2 82318.898505: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142651          <idle>-0     (-----) [003] .n.1 82318.898517: cpu_idle: state=4294967295 cpu_id=3
142652 kgsl_worker_thr-258   (  258) [000] d.s5 82318.898528: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142653          <idle>-0     (-----) [003] d..2 82318.898530: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
142654        DispSync-8879  ( 8858) [002] d..2 82318.898569: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
142655   sfEventThread-8882  ( 8858) [003] d..3 82318.898584: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142656 kgsl_worker_thr-258   (  258) [000] d..2 82318.898605: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142657   sfEventThread-8882  ( 8858) [003] d..4 82318.898610: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142658  kworker/u16:13-1147  ( 1147) [000] d..2 82318.898611: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
142659     rcu_preempt-7     (    7) [002] d..2 82318.898619: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
142660  kworker/u16:13-1147  ( 1147) [000] d..3 82318.898659: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
142661   sfEventThread-8882  ( 8858) [003] d..2 82318.898671: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
142662  kworker/u16:15-1311  ( 1311) [003] d..2 82318.898881: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142663          <idle>-0     (-----) [003] d..1 82318.898900: cpu_idle: state=0 cpu_id=3
142664  surfaceflinger-8858  ( 8858) [002] d..1 82318.899032: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142665  surfaceflinger-8858  ( 8858) [002] d..2 82318.899056: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142666          <idle>-0     (-----) [003] .n.1 82318.899062: cpu_idle: state=4294967295 cpu_id=3
142667          <idle>-0     (-----) [003] d..2 82318.899074: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
142668   sfEventThread-8882  ( 8858) [003] d..2 82318.899118: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142669          <idle>-0     (-----) [003] d..1 82318.899129: cpu_idle: state=0 cpu_id=3
142670  kworker/u16:13-1147  ( 1147) [000] d..2 82318.899177: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
142671          <idle>-0     (-----) [000] d..1 82318.899199: cpu_idle: state=0 cpu_id=0
142672          <idle>-0     (-----) [001] d.s3 82318.899204: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142673          <idle>-0     (-----) [001] d.s4 82318.899218: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
142674          <idle>-0     (-----) [001] d.s4 82318.899229: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142675          <idle>-0     (-----) [000] .n.1 82318.899235: cpu_idle: state=4294967295 cpu_id=0
142676          <idle>-0     (-----) [001] ...1 82318.899240: cpu_idle: state=4294967295 cpu_id=1
142677          <idle>-0     (-----) [001] d..1 82318.899248: cpu_idle: state=0 cpu_id=1
142678          <idle>-0     (-----) [000] d..2 82318.899250: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142679  surfaceflinger-8858  ( 8858) [002] ...1 82318.899255: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
142680  surfaceflinger-8858  ( 8858) [002] ...1 82318.899264: tracing_mark_write: E|8858
142681  kworker/u16:13-1147  ( 1147) [000] d..2 82318.899282: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142682          <idle>-0     (-----) [000] d..1 82318.899294: cpu_idle: state=0 cpu_id=0
142683  surfaceflinger-8858  ( 8858) [002] .... 82318.899328: binder_transaction: transaction=1573158 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
142684  surfaceflinger-8858  ( 8858) [002] .... 82318.899335: binder_transaction_alloc_buf: transaction=1573158 data_size=540 offsets_size=96
142685  surfaceflinger-8858  ( 8858) [002] ...2 82318.899362: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
142686  surfaceflinger-8858  ( 8858) [002] d..4 82318.899370: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
142687  surfaceflinger-8858  ( 8858) [002] d..5 82318.899394: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
142688          <idle>-0     (-----) [003] .n.1 82318.899399: cpu_idle: state=4294967295 cpu_id=3
142689          <idle>-0     (-----) [003] d..2 82318.899411: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
142690 [email protected]   (  619) [003] .... 82318.899425: binder_transaction_received: transaction=1573158
142691  surfaceflinger-8858  ( 8858) [002] d..2 82318.899432: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142692          <idle>-0     (-----) [002] d..1 82318.899452: cpu_idle: state=0 cpu_id=2
142693 [email protected]   (  619) [003] ...1 82318.899481: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
142694 [email protected]   (  619) [003] ...1 82318.899598: tracing_mark_write: B|619|HWCSession::PresentDisplay::
142695 [email protected]   (  619) [003] ...1 82318.899777: tracing_mark_write: B|619|HWDeviceDRM::Commit::
142696 [email protected]   (  619) [003] ...1 82318.899790: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
142697 [email protected]   (  619) [003] d..2 82318.900398: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
142698 [email protected]   (  619) [003] d..3 82318.900436: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
142699          <idle>-0     (-----) [000] .n.1 82318.900441: cpu_idle: state=4294967295 cpu_id=0
142700          <idle>-0     (-----) [000] d..2 82318.900451: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142701 [email protected]   (  619) [003] ...1 82318.900551: tracing_mark_write: E|619
142702 [email protected]   (  619) [003] ...1 82318.900558: tracing_mark_write: E|619
142703 [email protected]   (  619) [003] ...1 82318.900621: tracing_mark_write: E|619
142704 [email protected]   (  619) [003] ...1 82318.900669: tracing_mark_write: E|619
142705 [email protected]   (  619) [003] .... 82318.900688: binder_transaction: transaction=1573159 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
142706 [email protected]   (  619) [003] .... 82318.900693: binder_transaction_alloc_buf: transaction=1573159 data_size=576 offsets_size=112
142707 [email protected]   (  619) [003] d..2 82318.900716: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142708 [email protected]   (  619) [003] d..3 82318.900738: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142709 [email protected]   (  619) [003] .... 82318.900744: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
142710          <idle>-0     (-----) [002] .n.1 82318.900745: cpu_idle: state=4294967295 cpu_id=2
142711          <idle>-0     (-----) [002] d..2 82318.900757: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
142712  surfaceflinger-8858  ( 8858) [002] .... 82318.900767: binder_transaction_received: transaction=1573159
142713 [email protected]   (  619) [003] d..2 82318.900844: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142714          <idle>-0     (-----) [003] d..1 82318.900866: cpu_idle: state=0 cpu_id=3
142715 crtc_commit:111-321   (  321) [000] d..2 82318.901202: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
142716          <idle>-0     (-----) [000] d..1 82318.901219: cpu_idle: state=0 cpu_id=0
142717  surfaceflinger-8858  ( 8858) [002] d..2 82318.901224: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142718          <idle>-0     (-----) [002] d..1 82318.901245: cpu_idle: state=0 cpu_id=2
142719          <idle>-0     (-----) [002] d.s2 82318.905142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
142720          <idle>-0     (-----) [002] dns3 82318.905164: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
142721          <idle>-0     (-----) [002] .n.1 82318.905185: cpu_idle: state=4294967295 cpu_id=2
142722          <idle>-0     (-----) [002] d..2 82318.905200: 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
142723     rcu_preempt-7     (    7) [002] d..2 82318.905209: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
142724     rcu_preempt-7     (    7) [002] d..3 82318.905250: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
142725     rcu_preempt-7     (    7) [002] d..2 82318.905268: 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
142726         rcuop/2-29    (   29) [002] d..2 82318.905312: 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
142727          <idle>-0     (-----) [002] d..1 82318.905325: cpu_idle: state=0 cpu_id=2
142728          <idle>-0     (-----) [000] d.h5 82318.906572: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142729          <idle>-0     (-----) [000] dnh6 82318.906589: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142730          <idle>-0     (-----) [000] dnh5 82318.906594: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
142731          <idle>-0     (-----) [000] dnh6 82318.906614: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
142732          <idle>-0     (-----) [002] .n.1 82318.906621: cpu_idle: state=4294967295 cpu_id=2
142733          <idle>-0     (-----) [000] .n.1 82318.906629: cpu_idle: state=4294967295 cpu_id=0
142734          <idle>-0     (-----) [002] d..2 82318.906632: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142735          <idle>-0     (-----) [000] d..2 82318.906642: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142736  crtc_event:111-322   (  322) [000] d..2 82318.906672: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142737          <idle>-0     (-----) [000] d..1 82318.906686: cpu_idle: state=0 cpu_id=0
142738 crtc_commit:111-321   (  321) [002] d..2 82318.906787: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
142739          <idle>-0     (-----) [002] d..1 82318.906797: cpu_idle: state=0 cpu_id=2
142740          <idle>-0     (-----) [002] d.s3 82318.908473: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142741          <idle>-0     (-----) [002] d.s4 82318.908493: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142742          <idle>-0     (-----) [000] .n.1 82318.908499: cpu_idle: state=4294967295 cpu_id=0
142743          <idle>-0     (-----) [002] d.s3 82318.908500: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142744          <idle>-0     (-----) [000] d..2 82318.908513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142745          <idle>-0     (-----) [002] dns4 82318.908530: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
142746          <idle>-0     (-----) [002] .n.1 82318.908543: cpu_idle: state=4294967295 cpu_id=2
142747  crtc_event:111-322   (  322) [000] d..2 82318.908549: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142748          <idle>-0     (-----) [002] d..2 82318.908554: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142749          <idle>-0     (-----) [000] d..1 82318.908560: cpu_idle: state=0 cpu_id=0
142750  kworker/u16:13-1147  ( 1147) [002] d..2 82318.908654: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142751          <idle>-0     (-----) [002] d..1 82318.908665: cpu_idle: state=0 cpu_id=2
142752          <idle>-0     (-----) [000] d.h5 82318.908898: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
142753          <idle>-0     (-----) [000] d.h6 82318.908916: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
142754          <idle>-0     (-----) [002] .n.1 82318.908923: cpu_idle: state=4294967295 cpu_id=2
142755          <idle>-0     (-----) [000] ...1 82318.908929: cpu_idle: state=4294967295 cpu_id=0
142756          <idle>-0     (-----) [002] d..2 82318.908932: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142757          <idle>-0     (-----) [000] d..1 82318.908936: cpu_idle: state=0 cpu_id=0
142758 crtc_commit:111-321   (  321) [002] d..2 82318.909004: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142759          <idle>-0     (-----) [002] d..1 82318.909014: cpu_idle: state=0 cpu_id=2
142760          <idle>-0     (-----) [000] d.h5 82318.909191: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142761          <idle>-0     (-----) [000] dnh6 82318.909201: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142762          <idle>-0     (-----) [000] .n.1 82318.909214: cpu_idle: state=4294967295 cpu_id=0
142763          <idle>-0     (-----) [000] d..2 82318.909225: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142764  crtc_event:111-322   (  322) [000] d..2 82318.909249: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142765          <idle>-0     (-----) [000] d..1 82318.909260: cpu_idle: state=0 cpu_id=0
142766          <idle>-0     (-----) [002] d.h2 82318.910906: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
142767          <idle>-0     (-----) [002] dnh3 82318.910921: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
142768          <idle>-0     (-----) [002] .n.1 82318.910930: cpu_idle: state=4294967295 cpu_id=2
142769          <idle>-0     (-----) [002] d..2 82318.910938: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
142770        DispSync-8879  ( 8858) [002] d..1 82318.910957: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
142771        DispSync-8879  ( 8858) [002] d..2 82318.910971: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
142772          <idle>-0     (-----) [001] .n.1 82318.910976: cpu_idle: state=4294967295 cpu_id=1
142773          <idle>-0     (-----) [001] d..2 82318.910989: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
142774        DispSync-8879  ( 8858) [002] d..2 82318.911004: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142775          <idle>-0     (-----) [002] d..1 82318.911014: cpu_idle: state=0 cpu_id=2
142776  appEventThread-8881  ( 8858) [001] d..3 82318.911027: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142777          <idle>-0     (-----) [004] dnh2 82318.911053: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142778          <idle>-0     (-----) [004] .n.1 82318.911057: cpu_idle: state=4294967295 cpu_id=4
142779          <idle>-0     (-----) [004] d..2 82318.911066: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
142780  appEventThread-8881  ( 8858) [001] d..2 82318.911084: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142781          <idle>-0     (-----) [001] d..1 82318.911099: cpu_idle: state=0 cpu_id=1
142782 s.nexuslauncher-10023 (10023) [004] .... 82318.911271: binder_transaction: transaction=1573160 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
142783 s.nexuslauncher-10023 (10023) [004] .... 82318.911276: binder_transaction_alloc_buf: transaction=1573160 data_size=80 offsets_size=0
142784 s.nexuslauncher-10023 (10023) [004] d..4 82318.911281: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
142785 s.nexuslauncher-10023 (10023) [004] d.h5 82318.911345: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
142786          <idle>-0     (-----) [000] dnh2 82318.911348: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
142787          <idle>-0     (-----) [000] .n.1 82318.911354: cpu_idle: state=4294967295 cpu_id=0
142788          <idle>-0     (-----) [000] d..2 82318.911365: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
142789   Binder:8858_1-8871  ( 8858) [000] .... 82318.911374: binder_transaction_received: transaction=1573160
142790          <idle>-0     (-----) [003] dnh2 82318.911375: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
142791          <idle>-0     (-----) [003] .n.1 82318.911382: cpu_idle: state=4294967295 cpu_id=3
142792 s.nexuslauncher-10023 (10023) [004] d..3 82318.911388: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142793          <idle>-0     (-----) [003] d..2 82318.911394: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
142794 s.nexuslauncher-10023 (10023) [004] d..4 82318.911404: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142795          <idle>-0     (-----) [005] .n.1 82318.911408: cpu_idle: state=4294967295 cpu_id=5
142796   Binder:8858_1-8871  ( 8858) [000] d..1 82318.911414: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
142797          <idle>-0     (-----) [005] d..2 82318.911420: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
142798   Binder:8858_1-8871  ( 8858) [000] d..2 82318.911432: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
142799         sugov:0-576   (  576) [003] .... 82318.911433: clk_set_rate: pwrcl_clk 748800000
142800          <idle>-0     (-----) [001] .n.1 82318.911437: cpu_idle: state=4294967295 cpu_id=1
142801          <idle>-0     (-----) [001] d..2 82318.911449: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
142802    RenderThread-16607 (10023) [005] d..2 82318.911451: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
142803         sugov:0-576   (  576) [003] .... 82318.911453: clk_set_rate: cpu3_pwrcl_clk 902400000
142804          <idle>-0     (-----) [005] d..1 82318.911460: cpu_idle: state=0 cpu_id=5
142805         sugov:0-576   (  576) [003] .... 82318.911463: clk_set_rate: cpu2_pwrcl_clk 902400000
142806         sugov:0-576   (  576) [003] .... 82318.911471: clk_set_rate: cpu1_pwrcl_clk 902400000
142807         sugov:0-576   (  576) [003] .... 82318.911480: clk_set_rate: cpu0_pwrcl_clk 748800000
142808   Binder:8858_1-8871  ( 8858) [000] d..2 82318.911482: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142809  appEventThread-8881  ( 8858) [001] d..2 82318.911493: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142810          <idle>-0     (-----) [000] d..1 82318.911506: cpu_idle: state=0 cpu_id=0
142811          <idle>-0     (-----) [001] d..1 82318.911510: cpu_idle: state=0 cpu_id=1
142812         sugov:0-576   (  576) [003] .... 82318.911594: cpu_frequency: state=748800 cpu_id=0
142813 s.nexuslauncher-10023 (10023) [004] d..3 82318.911620: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142814         sugov:0-576   (  576) [003] .... 82318.911621: cpu_frequency: state=748800 cpu_id=1
142815         sugov:0-576   (  576) [003] .... 82318.911628: cpu_frequency: state=748800 cpu_id=2
142816         sugov:0-576   (  576) [003] .... 82318.911632: cpu_frequency: state=748800 cpu_id=3
142817 s.nexuslauncher-10023 (10023) [004] d..4 82318.911637: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142818          <idle>-0     (-----) [005] .n.1 82318.911642: cpu_idle: state=4294967295 cpu_id=5
142819          <idle>-0     (-----) [005] d..2 82318.911649: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
142820 s.nexuslauncher-10023 (10023) [004] d..2 82318.911662: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
142821         sugov:0-576   (  576) [003] d..2 82318.911669: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142822          <idle>-0     (-----) [004] d..1 82318.911680: cpu_idle: state=0 cpu_id=4
142823          <idle>-0     (-----) [003] d..1 82318.911686: cpu_idle: state=0 cpu_id=3
142824          <idle>-0     (-----) [002] d.s2 82318.911811: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
142825          <idle>-0     (-----) [002] dns3 82318.911864: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
142826          <idle>-0     (-----) [002] .n.1 82318.911874: cpu_idle: state=4294967295 cpu_id=2
142827          <idle>-0     (-----) [002] d..2 82318.911886: 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
142828    RenderThread-16607 (10023) [005] d..1 82318.911898: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142829    RenderThread-16607 (10023) [005] d..2 82318.911914: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
142830          <idle>-0     (-----) [004] .n.1 82318.911921: cpu_idle: state=4294967295 cpu_id=4
142831     rcu_preempt-7     (    7) [002] d..2 82318.911927: 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
142832          <idle>-0     (-----) [004] d..2 82318.911932: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
142833          <idle>-0     (-----) [002] d..1 82318.911940: cpu_idle: state=0 cpu_id=2
142834    RenderThread-16607 (10023) [005] .... 82318.911967: binder_transaction: transaction=1573161 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
142835    RenderThread-16607 (10023) [005] .... 82318.911971: binder_transaction_alloc_buf: transaction=1573161 data_size=104 offsets_size=0
142836    RenderThread-16607 (10023) [005] ...2 82318.911975: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
142837    RenderThread-16607 (10023) [005] d..4 82318.911979: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
142838    RenderThread-16607 (10023) [005] d..5 82318.911998: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142839 s.nexuslauncher-10023 (10023) [004] d..2 82318.912037: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
142840    RenderThread-16607 (10023) [005] d..2 82318.912039: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
142841          <idle>-0     (-----) [004] d..1 82318.912048: cpu_idle: state=0 cpu_id=4
142842   Binder:8858_1-8871  ( 8858) [005] .... 82318.912051: binder_transaction_received: transaction=1573161
142843   Binder:8858_1-8871  ( 8858) [005] .... 82318.912109: binder_transaction: transaction=1573162 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
142844   Binder:8858_1-8871  ( 8858) [005] .... 82318.912113: binder_transaction_alloc_buf: transaction=1573162 data_size=52 offsets_size=8
142845   Binder:8858_1-8871  ( 8858) [005] d..2 82318.912120: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142846   Binder:8858_1-8871  ( 8858) [005] d..3 82318.912131: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142847   Binder:8858_1-8871  ( 8858) [005] .... 82318.912133: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
142848   Binder:8858_1-8871  ( 8858) [005] d..2 82318.912143: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
142849    RenderThread-16607 (10023) [005] .... 82318.912151: binder_transaction_received: transaction=1573162
142850          <idle>-0     (-----) [002] ...1 82318.912698: cpu_idle: state=4294967295 cpu_id=2
142851          <idle>-0     (-----) [002] d..1 82318.912705: cpu_idle: state=0 cpu_id=2
142852    RenderThread-16607 (10023) [005] d..2 82318.913392: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
142853   Binder:8858_1-8871  ( 8858) [005] d..2 82318.913459: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
142854          <idle>-0     (-----) [005] d..1 82318.913474: cpu_idle: state=0 cpu_id=5
142855          <idle>-0     (-----) [005] d.h2 82318.913487: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142856          <idle>-0     (-----) [005] d.h3 82318.913495: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
142857          <idle>-0     (-----) [005] dnh3 82318.913498: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142858          <idle>-0     (-----) [005] .n.1 82318.913505: cpu_idle: state=4294967295 cpu_id=5
142859          <idle>-0     (-----) [005] d..2 82318.913514: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
142860    RenderThread-16607 (10023) [005] .... 82318.913672: binder_transaction: transaction=1573163 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
142861    RenderThread-16607 (10023) [005] .... 82318.913676: binder_transaction_alloc_buf: transaction=1573163 data_size=192 offsets_size=8
142862    RenderThread-16607 (10023) [005] ...2 82318.913683: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
142863    RenderThread-16607 (10023) [005] d..4 82318.913686: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142864    RenderThread-16607 (10023) [005] d..5 82318.913698: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
142865    RenderThread-16607 (10023) [005] d..2 82318.913711: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
142866   Binder:8858_1-8871  ( 8858) [005] .... 82318.913722: binder_transaction_received: transaction=1573163
142867   Binder:8858_1-8871  ( 8858) [005] .... 82318.913840: binder_transaction: transaction=1573164 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
142868   Binder:8858_1-8871  ( 8858) [005] .... 82318.913845: binder_transaction_alloc_buf: transaction=1573164 data_size=68 offsets_size=0
142869   Binder:8858_1-8871  ( 8858) [005] d..2 82318.913847: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
142870   Binder:8858_1-8871  ( 8858) [005] d..3 82318.913858: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
142871   Binder:8858_1-8871  ( 8858) [005] .... 82318.913861: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
142872   Binder:8858_1-8871  ( 8858) [005] d..2 82318.913893: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
142873    RenderThread-16607 (10023) [005] .... 82318.913903: binder_transaction_received: transaction=1573164
142874    RenderThread-16607 (10023) [005] d..2 82318.913973: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
142875          <idle>-0     (-----) [005] d..1 82318.913990: cpu_idle: state=0 cpu_id=5
142876          <idle>-0     (-----) [005] ...1 82318.914200: cpu_idle: state=4294967295 cpu_id=5
142877          <idle>-0     (-----) [005] d..1 82318.914204: cpu_idle: state=0 cpu_id=5
142878          <idle>-0     (-----) [000] d.h3 82318.914809: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
142879          <idle>-0     (-----) [000] dnh4 82318.914827: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
142880          <idle>-0     (-----) [000] .n.1 82318.914842: cpu_idle: state=4294967295 cpu_id=0
142881          <idle>-0     (-----) [000] d..2 82318.914856: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
142882          <idle>-0     (-----) [002] d.h2 82318.914902: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
142883 kgsl_worker_thr-258   (  258) [000] d..2 82318.914912: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
142884          <idle>-0     (-----) [002] dnh3 82318.914925: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
142885          <idle>-0     (-----) [002] .n.1 82318.914935: cpu_idle: state=4294967295 cpu_id=2
142886          <idle>-0     (-----) [002] d..2 82318.914949: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
142887        DispSync-8879  ( 8858) [002] d..1 82318.914968: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142888 kgsl_worker_thr-258   (  258) [000] d..3 82318.914970: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142889        DispSync-8879  ( 8858) [002] d..2 82318.914987: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142890          <idle>-0     (-----) [003] .n.1 82318.914993: cpu_idle: state=4294967295 cpu_id=3
142891 kgsl_worker_thr-258   (  258) [000] d..2 82318.914996: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142892          <idle>-0     (-----) [003] d..2 82318.915007: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
142893        DispSync-8879  ( 8858) [002] d..2 82318.915029: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142894          <idle>-0     (-----) [002] d..1 82318.915044: cpu_idle: state=0 cpu_id=2
142895   sfEventThread-8882  ( 8858) [003] d..3 82318.915060: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142896   sfEventThread-8882  ( 8858) [003] d..4 82318.915085: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142897          <idle>-0     (-----) [002] .n.1 82318.915092: cpu_idle: state=4294967295 cpu_id=2
142898          <idle>-0     (-----) [002] d..2 82318.915104: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
142899   sfEventThread-8882  ( 8858) [003] d..2 82318.915138: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142900          <idle>-0     (-----) [003] d..1 82318.915208: cpu_idle: state=0 cpu_id=3
142901  kworker/u16:13-1147  ( 1147) [000] d..2 82318.915231: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142902          <idle>-0     (-----) [000] d..1 82318.915253: cpu_idle: state=0 cpu_id=0
142903  surfaceflinger-8858  ( 8858) [002] d..1 82318.915545: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142904  surfaceflinger-8858  ( 8858) [002] d..2 82318.915573: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
142905          <idle>-0     (-----) [003] .n.1 82318.915579: cpu_idle: state=4294967295 cpu_id=3
142906          <idle>-0     (-----) [003] d..2 82318.915593: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
142907   sfEventThread-8882  ( 8858) [003] d..2 82318.915641: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142908          <idle>-0     (-----) [003] d..1 82318.915654: cpu_idle: state=0 cpu_id=3
142909  surfaceflinger-8858  ( 8858) [002] ...1 82318.915794: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
142910  surfaceflinger-8858  ( 8858) [002] ...1 82318.915803: tracing_mark_write: E|8858
142911  surfaceflinger-8858  ( 8858) [002] .... 82318.915875: binder_transaction: transaction=1573165 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
142912  surfaceflinger-8858  ( 8858) [002] .... 82318.915882: binder_transaction_alloc_buf: transaction=1573165 data_size=540 offsets_size=96
142913  surfaceflinger-8858  ( 8858) [002] ...2 82318.915909: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
142914  surfaceflinger-8858  ( 8858) [002] d..4 82318.915918: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
142915  surfaceflinger-8858  ( 8858) [002] d..5 82318.915944: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
142916          <idle>-0     (-----) [003] .n.1 82318.915950: cpu_idle: state=4294967295 cpu_id=3
142917          <idle>-0     (-----) [003] d..2 82318.915962: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
142918 [email protected]   (  619) [003] .... 82318.915974: binder_transaction_received: transaction=1573165
142919  surfaceflinger-8858  ( 8858) [002] d..2 82318.915987: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142920          <idle>-0     (-----) [002] d..1 82318.916005: cpu_idle: state=0 cpu_id=2
142921 [email protected]   (  619) [003] ...1 82318.916026: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
142922 [email protected]   (  619) [003] ...1 82318.916150: tracing_mark_write: B|619|HWCSession::PresentDisplay::
142923 [email protected]   (  619) [003] ...1 82318.916343: tracing_mark_write: B|619|HWDeviceDRM::Commit::
142924 [email protected]   (  619) [003] ...1 82318.916359: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
142925 [email protected]   (  619) [003] d..2 82318.917028: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
142926 [email protected]   (  619) [003] d..3 82318.917061: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
142927          <idle>-0     (-----) [002] .n.1 82318.917068: cpu_idle: state=4294967295 cpu_id=2
142928          <idle>-0     (-----) [002] d..2 82318.917080: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142929 [email protected]   (  619) [003] ...1 82318.917185: tracing_mark_write: E|619
142930 [email protected]   (  619) [003] ...1 82318.917193: tracing_mark_write: E|619
142931 [email protected]   (  619) [003] ...1 82318.917260: tracing_mark_write: E|619
142932 [email protected]   (  619) [003] ...1 82318.917313: tracing_mark_write: E|619
142933 [email protected]   (  619) [003] .... 82318.917332: binder_transaction: transaction=1573166 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
142934 [email protected]   (  619) [003] .... 82318.917338: binder_transaction_alloc_buf: transaction=1573166 data_size=576 offsets_size=112
142935 [email protected]   (  619) [003] d..2 82318.917362: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
142936 [email protected]   (  619) [003] d..3 82318.917397: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
142937          <idle>-0     (-----) [001] .n.1 82318.917401: cpu_idle: state=4294967295 cpu_id=1
142938 [email protected]   (  619) [003] .... 82318.917403: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
142939          <idle>-0     (-----) [001] d..2 82318.917414: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
142940  surfaceflinger-8858  ( 8858) [001] .... 82318.917428: binder_transaction_received: transaction=1573166
142941 [email protected]   (  619) [003] d..2 82318.917517: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
142942          <idle>-0     (-----) [003] d..1 82318.917542: cpu_idle: state=0 cpu_id=3
142943 crtc_commit:111-321   (  321) [002] d..2 82318.917858: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
142944          <idle>-0     (-----) [002] d..1 82318.917872: cpu_idle: state=0 cpu_id=2
142945  surfaceflinger-8858  ( 8858) [001] d..2 82318.917946: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
142946          <idle>-0     (-----) [001] d..1 82318.917971: cpu_idle: state=0 cpu_id=1
142947          <idle>-0     (-----) [002] d.s2 82318.918479: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
142948          <idle>-0     (-----) [002] dns3 82318.918503: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
142949          <idle>-0     (-----) [002] dns3 82318.918511: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
142950          <idle>-0     (-----) [002] dns4 82318.918551: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
142951          <idle>-0     (-----) [002] .n.1 82318.918574: cpu_idle: state=4294967295 cpu_id=2
142952          <idle>-0     (-----) [002] d..2 82318.918586: 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
142953     rcu_preempt-7     (    7) [002] d..2 82318.918600: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
142954     rcu_preempt-7     (    7) [002] d..3 82318.918646: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
142955     rcu_preempt-7     (    7) [002] d..2 82318.918667: 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
142956         rcuop/0-10    (   10) [002] d..2 82318.918674: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
142957         rcuop/0-10    (   10) [002] d..3 82318.918711: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
142958         rcuop/0-10    (   10) [002] d..2 82318.918725: 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
142959         rcuop/1-21    (   21) [002] d..2 82318.918744: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
142960  kworker/u16:13-1147  ( 1147) [002] d..2 82318.918923: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142961          <idle>-0     (-----) [002] d..1 82318.918945: cpu_idle: state=0 cpu_id=2
142962          <idle>-0     (-----) [000] d.h5 82318.923035: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142963          <idle>-0     (-----) [000] dnh6 82318.923055: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142964          <idle>-0     (-----) [000] dnh5 82318.923060: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
142965          <idle>-0     (-----) [000] dnh6 82318.923074: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
142966          <idle>-0     (-----) [002] .n.1 82318.923082: cpu_idle: state=4294967295 cpu_id=2
142967          <idle>-0     (-----) [000] .n.1 82318.923091: cpu_idle: state=4294967295 cpu_id=0
142968          <idle>-0     (-----) [002] d..2 82318.923097: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142969          <idle>-0     (-----) [000] d..2 82318.923107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142970  crtc_event:111-322   (  322) [000] d..2 82318.923145: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142971          <idle>-0     (-----) [000] d..2 82318.923151: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
142972          <idle>-0     (-----) [000] dn.3 82318.923167: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
142973          <idle>-0     (-----) [000] d..2 82318.923178: 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
142974     ksoftirqd/0-3     (    3) [000] d..2 82318.923206: 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
142975          <idle>-0     (-----) [000] d..1 82318.923222: cpu_idle: state=0 cpu_id=0
142976 crtc_commit:111-321   (  321) [002] d..2 82318.923255: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
142977          <idle>-0     (-----) [002] d..1 82318.923266: cpu_idle: state=0 cpu_id=2
142978          <idle>-0     (-----) [002] d.s3 82318.925141: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142979          <idle>-0     (-----) [002] d.s4 82318.925163: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142980          <idle>-0     (-----) [002] d.s2 82318.925167: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
142981          <idle>-0     (-----) [000] .n.1 82318.925169: cpu_idle: state=4294967295 cpu_id=0
142982          <idle>-0     (-----) [000] d..2 82318.925183: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
142983          <idle>-0     (-----) [002] dns3 82318.925186: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
142984          <idle>-0     (-----) [002] .n.1 82318.925204: cpu_idle: state=4294967295 cpu_id=2
142985          <idle>-0     (-----) [002] d..2 82318.925216: 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
142986  crtc_event:111-322   (  322) [000] d..2 82318.925222: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
142987          <idle>-0     (-----) [000] d..1 82318.925235: cpu_idle: state=0 cpu_id=0
142988     rcu_preempt-7     (    7) [002] d..2 82318.925253: 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
142989          <idle>-0     (-----) [002] d..1 82318.925266: cpu_idle: state=0 cpu_id=2
142990          <idle>-0     (-----) [000] d.h5 82318.925358: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
142991          <idle>-0     (-----) [000] d.h6 82318.925378: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
142992          <idle>-0     (-----) [002] .n.1 82318.925384: cpu_idle: state=4294967295 cpu_id=2
142993          <idle>-0     (-----) [000] ...1 82318.925394: cpu_idle: state=4294967295 cpu_id=0
142994          <idle>-0     (-----) [002] d..2 82318.925395: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
142995          <idle>-0     (-----) [000] d..1 82318.925401: cpu_idle: state=0 cpu_id=0
142996 crtc_commit:111-321   (  321) [002] d..2 82318.925472: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
142997          <idle>-0     (-----) [002] d..1 82318.925485: cpu_idle: state=0 cpu_id=2
142998          <idle>-0     (-----) [000] d.h5 82318.925650: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
142999          <idle>-0     (-----) [000] dnh6 82318.925661: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143000          <idle>-0     (-----) [000] .n.1 82318.925676: cpu_idle: state=4294967295 cpu_id=0
143001          <idle>-0     (-----) [000] d..2 82318.925688: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
143002  crtc_event:111-322   (  322) [000] d..2 82318.925717: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143003          <idle>-0     (-----) [000] d..1 82318.925730: cpu_idle: state=0 cpu_id=0
143004          <idle>-0     (-----) [002] d.h2 82318.927374: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
143005          <idle>-0     (-----) [002] dnh3 82318.927391: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
143006          <idle>-0     (-----) [002] .n.1 82318.927401: cpu_idle: state=4294967295 cpu_id=2
143007          <idle>-0     (-----) [002] d..2 82318.927413: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
143008        DispSync-8879  ( 8858) [002] d..1 82318.927435: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
143009        DispSync-8879  ( 8858) [002] d..2 82318.927453: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
143010          <idle>-0     (-----) [001] .n.1 82318.927462: cpu_idle: state=4294967295 cpu_id=1
143011          <idle>-0     (-----) [001] d..2 82318.927477: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
143012        DispSync-8879  ( 8858) [002] d..2 82318.927490: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143013          <idle>-0     (-----) [002] d..1 82318.927504: cpu_idle: state=0 cpu_id=2
143014  appEventThread-8881  ( 8858) [001] d..3 82318.927528: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143015          <idle>-0     (-----) [004] dnh2 82318.927558: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143016          <idle>-0     (-----) [004] .n.1 82318.927563: cpu_idle: state=4294967295 cpu_id=4
143017          <idle>-0     (-----) [004] d..2 82318.927571: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
143018  appEventThread-8881  ( 8858) [001] d..2 82318.927594: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143019          <idle>-0     (-----) [001] d..1 82318.927613: cpu_idle: state=0 cpu_id=1
143020 s.nexuslauncher-10023 (10023) [004] .... 82318.927762: binder_transaction: transaction=1573167 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
143021 s.nexuslauncher-10023 (10023) [004] .... 82318.927767: binder_transaction_alloc_buf: transaction=1573167 data_size=80 offsets_size=0
143022 s.nexuslauncher-10023 (10023) [004] d..4 82318.927772: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
143023          <idle>-0     (-----) [000] dnh2 82318.927837: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
143024          <idle>-0     (-----) [000] .n.1 82318.927844: cpu_idle: state=4294967295 cpu_id=0
143025          <idle>-0     (-----) [000] d..2 82318.927857: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
143026 s.nexuslauncher-10023 (10023) [004] d..3 82318.927857: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143027   Binder:8858_1-8871  ( 8858) [000] .... 82318.927866: binder_transaction_received: transaction=1573167
143028 s.nexuslauncher-10023 (10023) [004] d..4 82318.927872: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143029          <idle>-0     (-----) [005] .n.1 82318.927877: cpu_idle: state=4294967295 cpu_id=5
143030          <idle>-0     (-----) [005] d..2 82318.927888: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143031   Binder:8858_1-8871  ( 8858) [000] d..1 82318.927907: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
143032    RenderThread-16607 (10023) [005] d..2 82318.927923: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143033   Binder:8858_1-8871  ( 8858) [000] d..2 82318.927927: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
143034          <idle>-0     (-----) [005] d..1 82318.927931: cpu_idle: state=0 cpu_id=5
143035          <idle>-0     (-----) [001] .n.1 82318.927934: cpu_idle: state=4294967295 cpu_id=1
143036          <idle>-0     (-----) [001] d..2 82318.927947: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
143037   Binder:8858_1-8871  ( 8858) [000] d..2 82318.927981: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143038  appEventThread-8881  ( 8858) [001] d..2 82318.927995: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143039          <idle>-0     (-----) [000] d..1 82318.928000: cpu_idle: state=0 cpu_id=0
143040          <idle>-0     (-----) [001] d..1 82318.928009: cpu_idle: state=0 cpu_id=1
143041 s.nexuslauncher-10023 (10023) [004] d..3 82318.928067: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143042 s.nexuslauncher-10023 (10023) [004] d..4 82318.928085: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143043          <idle>-0     (-----) [005] .n.1 82318.928089: cpu_idle: state=4294967295 cpu_id=5
143044          <idle>-0     (-----) [005] d..2 82318.928097: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143045 s.nexuslauncher-10023 (10023) [004] d..2 82318.928110: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
143046          <idle>-0     (-----) [004] d..1 82318.928126: cpu_idle: state=0 cpu_id=4
143047    RenderThread-16607 (10023) [005] d..1 82318.928240: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143048    RenderThread-16607 (10023) [005] d..2 82318.928257: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143049          <idle>-0     (-----) [004] .n.1 82318.928263: cpu_idle: state=4294967295 cpu_id=4
143050          <idle>-0     (-----) [004] d..2 82318.928273: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
143051    RenderThread-16607 (10023) [005] .... 82318.928304: binder_transaction: transaction=1573168 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
143052    RenderThread-16607 (10023) [005] .... 82318.928308: binder_transaction_alloc_buf: transaction=1573168 data_size=104 offsets_size=0
143053    RenderThread-16607 (10023) [005] ...2 82318.928312: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
143054    RenderThread-16607 (10023) [005] d..4 82318.928315: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
143055    RenderThread-16607 (10023) [005] d..5 82318.928334: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143056    RenderThread-16607 (10023) [005] d..2 82318.928380: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
143057 s.nexuslauncher-10023 (10023) [004] d..2 82318.928383: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
143058   Binder:8858_1-8871  ( 8858) [005] .... 82318.928392: binder_transaction_received: transaction=1573168
143059          <idle>-0     (-----) [004] d..1 82318.928393: cpu_idle: state=0 cpu_id=4
143060   Binder:8858_1-8871  ( 8858) [005] d.s2 82318.928476: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
143061          <idle>-0     (-----) [000] dnh2 82318.928520: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143062          <idle>-0     (-----) [000] .n.1 82318.928528: cpu_idle: state=4294967295 cpu_id=0
143063   Binder:8858_1-8871  ( 8858) [005] .... 82318.928531: binder_transaction: transaction=1573169 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
143064   Binder:8858_1-8871  ( 8858) [005] .... 82318.928535: binder_transaction_alloc_buf: transaction=1573169 data_size=52 offsets_size=8
143065   Binder:8858_1-8871  ( 8858) [005] d..2 82318.928542: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143066          <idle>-0     (-----) [000] d..2 82318.928543: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143067   Binder:8858_1-8871  ( 8858) [005] d..3 82318.928550: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143068   Binder:8858_1-8871  ( 8858) [005] .... 82318.928553: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
143069   Binder:8858_1-8871  ( 8858) [005] d..2 82318.928563: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
143070    RenderThread-16607 (10023) [005] .... 82318.928586: binder_transaction_received: transaction=1573169
143071  kworker/u16:13-1147  ( 1147) [000] d..2 82318.928724: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143072          <idle>-0     (-----) [000] d..1 82318.928741: cpu_idle: state=0 cpu_id=0
143073    RenderThread-16607 (10023) [005] d..2 82318.929845: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
143074   Binder:8858_1-8871  ( 8858) [005] d..2 82318.929915: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143075          <idle>-0     (-----) [005] d..1 82318.929930: cpu_idle: state=0 cpu_id=5
143076          <idle>-0     (-----) [005] d.h2 82318.929942: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143077          <idle>-0     (-----) [005] d.h3 82318.929950: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
143078          <idle>-0     (-----) [005] dnh3 82318.929954: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143079          <idle>-0     (-----) [005] .n.1 82318.929961: cpu_idle: state=4294967295 cpu_id=5
143080          <idle>-0     (-----) [005] d..2 82318.929970: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143081    RenderThread-16607 (10023) [005] .... 82318.930125: binder_transaction: transaction=1573170 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
143082    RenderThread-16607 (10023) [005] .... 82318.930130: binder_transaction_alloc_buf: transaction=1573170 data_size=192 offsets_size=8
143083    RenderThread-16607 (10023) [005] ...2 82318.930137: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
143084    RenderThread-16607 (10023) [005] d..4 82318.930140: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143085    RenderThread-16607 (10023) [005] d..5 82318.930152: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143086    RenderThread-16607 (10023) [005] d..2 82318.930164: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
143087   Binder:8858_1-8871  ( 8858) [005] .... 82318.930175: binder_transaction_received: transaction=1573170
143088   Binder:8858_1-8871  ( 8858) [005] .... 82318.930293: binder_transaction: transaction=1573171 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
143089   Binder:8858_1-8871  ( 8858) [005] .... 82318.930297: binder_transaction_alloc_buf: transaction=1573171 data_size=68 offsets_size=0
143090   Binder:8858_1-8871  ( 8858) [005] d..2 82318.930301: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143091   Binder:8858_1-8871  ( 8858) [005] d..3 82318.930312: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143092   Binder:8858_1-8871  ( 8858) [005] .... 82318.930315: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
143093   Binder:8858_1-8871  ( 8858) [005] d..2 82318.930346: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
143094    RenderThread-16607 (10023) [005] .... 82318.930356: binder_transaction_received: transaction=1573171
143095    RenderThread-16607 (10023) [005] d..2 82318.930429: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143096          <idle>-0     (-----) [005] d..1 82318.930446: cpu_idle: state=0 cpu_id=5
143097          <idle>-0     (-----) [005] ...1 82318.930644: cpu_idle: state=4294967295 cpu_id=5
143098          <idle>-0     (-----) [005] d..1 82318.930647: cpu_idle: state=0 cpu_id=5
143099          <idle>-0     (-----) [000] d.h3 82318.931257: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
143100          <idle>-0     (-----) [000] dnh4 82318.931273: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
143101          <idle>-0     (-----) [000] .n.1 82318.931288: cpu_idle: state=4294967295 cpu_id=0
143102          <idle>-0     (-----) [000] d..2 82318.931301: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
143103 kgsl_worker_thr-258   (  258) [000] d..2 82318.931355: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143104          <idle>-0     (-----) [002] d.h2 82318.931374: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
143105 kgsl_worker_thr-258   (  258) [000] d..3 82318.931377: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143106          <idle>-0     (-----) [002] dnh3 82318.931386: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
143107          <idle>-0     (-----) [002] .n.1 82318.931396: cpu_idle: state=4294967295 cpu_id=2
143108 kgsl_worker_thr-258   (  258) [000] d..2 82318.931403: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143109          <idle>-0     (-----) [002] d..2 82318.931408: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
143110        DispSync-8879  ( 8858) [002] d..1 82318.931421: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
143111        DispSync-8879  ( 8858) [002] d..2 82318.931437: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
143112          <idle>-0     (-----) [003] .n.1 82318.931446: cpu_idle: state=4294967295 cpu_id=3
143113          <idle>-0     (-----) [003] d..2 82318.931461: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
143114        DispSync-8879  ( 8858) [002] d..2 82318.931476: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143115          <idle>-0     (-----) [002] d..1 82318.931487: cpu_idle: state=0 cpu_id=2
143116   sfEventThread-8882  ( 8858) [003] d..3 82318.931511: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143117   sfEventThread-8882  ( 8858) [003] d..4 82318.931534: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143118          <idle>-0     (-----) [001] .n.1 82318.931539: cpu_idle: state=4294967295 cpu_id=1
143119          <idle>-0     (-----) [001] d..2 82318.931552: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
143120  kworker/u16:13-1147  ( 1147) [000] d..2 82318.931574: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143121   sfEventThread-8882  ( 8858) [003] d..2 82318.931579: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143122          <idle>-0     (-----) [000] d..1 82318.931596: cpu_idle: state=0 cpu_id=0
143123          <idle>-0     (-----) [003] d..1 82318.931597: cpu_idle: state=0 cpu_id=3
143124          <idle>-0     (-----) [002] d.H3 82318.931887: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
143125          <idle>-0     (-----) [002] d.H4 82318.931907: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
143126          <idle>-0     (-----) [003] .n.1 82318.931914: cpu_idle: state=4294967295 cpu_id=3
143127          <idle>-0     (-----) [002] d.s2 82318.931916: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143128          <idle>-0     (-----) [003] d..2 82318.931930: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
143129          <idle>-0     (-----) [002] dns3 82318.931938: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143130          <idle>-0     (-----) [002] .n.1 82318.931959: cpu_idle: state=4294967295 cpu_id=2
143131         sugov:0-576   (  576) [003] .... 82318.931968: clk_set_rate: pwrcl_clk 652800000
143132          <idle>-0     (-----) [002] d..2 82318.931972: 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
143133     rcu_preempt-7     (    7) [002] d..2 82318.931982: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
143134         sugov:0-576   (  576) [003] .... 82318.931986: clk_set_rate: cpu3_pwrcl_clk 748800000
143135         sugov:0-576   (  576) [003] .... 82318.931996: clk_set_rate: cpu2_pwrcl_clk 748800000
143136         sugov:0-576   (  576) [003] .... 82318.932004: clk_set_rate: cpu1_pwrcl_clk 748800000
143137         sugov:0-576   (  576) [003] .... 82318.932012: clk_set_rate: cpu0_pwrcl_clk 652800000
143138     rcu_preempt-7     (    7) [002] d..3 82318.932027: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
143139  surfaceflinger-8858  ( 8858) [001] d..1 82318.932037: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
143140     rcu_preempt-7     (    7) [002] d..2 82318.932074: 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
143141  surfaceflinger-8858  ( 8858) [001] d..2 82318.932089: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
143142          <idle>-0     (-----) [002] d..2 82318.932103: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
143143         sugov:0-576   (  576) [003] .... 82318.932127: cpu_frequency: state=652800 cpu_id=0
143144         sugov:0-576   (  576) [003] .... 82318.932152: cpu_frequency: state=652800 cpu_id=1
143145         sugov:0-576   (  576) [003] .... 82318.932158: cpu_frequency: state=652800 cpu_id=2
143146         sugov:0-576   (  576) [003] .... 82318.932163: cpu_frequency: state=652800 cpu_id=3
143147   sfEventThread-8882  ( 8858) [002] d..2 82318.932163: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143148          <idle>-0     (-----) [002] d..1 82318.932181: cpu_idle: state=0 cpu_id=2
143149         sugov:0-576   (  576) [003] d..2 82318.932188: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
143150         rcuop/2-29    (   29) [003] d..2 82318.932238: 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
143151          <idle>-0     (-----) [003] d..1 82318.932257: cpu_idle: state=0 cpu_id=3
143152  surfaceflinger-8858  ( 8858) [001] ...1 82318.932325: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
143153  surfaceflinger-8858  ( 8858) [001] ...1 82318.932335: tracing_mark_write: E|8858
143154  surfaceflinger-8858  ( 8858) [001] .... 82318.932399: binder_transaction: transaction=1573172 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
143155  surfaceflinger-8858  ( 8858) [001] .... 82318.932406: binder_transaction_alloc_buf: transaction=1573172 data_size=540 offsets_size=96
143156  surfaceflinger-8858  ( 8858) [001] ...2 82318.932434: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
143157  surfaceflinger-8858  ( 8858) [001] d..4 82318.932442: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
143158          <idle>-0     (-----) [002] ...1 82318.932447: cpu_idle: state=4294967295 cpu_id=2
143159          <idle>-0     (-----) [002] d..1 82318.932456: cpu_idle: state=0 cpu_id=2
143160  surfaceflinger-8858  ( 8858) [001] d..5 82318.932470: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
143161          <idle>-0     (-----) [003] .n.1 82318.932476: cpu_idle: state=4294967295 cpu_id=3
143162          <idle>-0     (-----) [003] d..2 82318.932489: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
143163  surfaceflinger-8858  ( 8858) [001] d.s4 82318.932503: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
143164  surfaceflinger-8858  ( 8858) [001] d.s5 82318.932525: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
143165 [email protected]   (  619) [003] .... 82318.932538: binder_transaction_received: transaction=1573172
143166  surfaceflinger-8858  ( 8858) [001] d..2 82318.932553: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
143167 [email protected]   (  619) [003] ...1 82318.932591: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
143168     ksoftirqd/1-18    (   18) [001] d.s2 82318.932613: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143169     ksoftirqd/1-18    (   18) [001] d.s3 82318.932633: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143170     ksoftirqd/1-18    (   18) [001] d..2 82318.932660: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
143171          <idle>-0     (-----) [002] ...1 82318.932682: cpu_idle: state=4294967295 cpu_id=2
143172          <idle>-0     (-----) [002] d..1 82318.932688: cpu_idle: state=0 cpu_id=2
143173 [email protected]   (  619) [003] ...1 82318.932704: tracing_mark_write: B|619|HWCSession::PresentDisplay::
143174     kworker/1:1-25249 (25249) [001] d..2 82318.932718: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
143175     kworker/1:1-25249 (25249) [001] d..3 82318.932737: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
143176     kworker/1:1-25249 (25249) [001] d..2 82318.932787: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
143177 [email protected]   (  619) [003] ...1 82318.932902: tracing_mark_write: B|619|HWDeviceDRM::Commit::
143178 [email protected]   (  619) [003] ...1 82318.932918: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
143179 [email protected] (  798) [001] d..2 82318.933165: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143180          <idle>-0     (-----) [001] d..1 82318.933194: cpu_idle: state=0 cpu_id=1
143181          <idle>-0     (-----) [001] d.s3 82318.933422: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143182          <idle>-0     (-----) [001] dns4 82318.933438: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143183          <idle>-0     (-----) [001] .n.1 82318.933457: cpu_idle: state=4294967295 cpu_id=1
143184          <idle>-0     (-----) [001] d..2 82318.933475: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
143185     kworker/1:1-25249 (25249) [001] d..2 82318.933517: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
143186     kworker/1:1-25249 (25249) [001] d..3 82318.933533: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
143187     kworker/1:1-25249 (25249) [001] d..2 82318.933567: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
143188 [email protected]   (  619) [003] d..2 82318.933629: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143189 [email protected]   (  619) [003] d..3 82318.933662: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143190          <idle>-0     (-----) [002] .n.1 82318.933667: cpu_idle: state=4294967295 cpu_id=2
143191          <idle>-0     (-----) [002] d..2 82318.933684: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
143192 [email protected] (  798) [001] d..2 82318.933740: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143193          <idle>-0     (-----) [001] d..1 82318.933763: cpu_idle: state=0 cpu_id=1
143194 [email protected]   (  619) [003] ...1 82318.933797: tracing_mark_write: E|619
143195 [email protected]   (  619) [003] ...1 82318.933806: tracing_mark_write: E|619
143196 [email protected]   (  619) [003] ...1 82318.933879: tracing_mark_write: E|619
143197 [email protected]   (  619) [003] ...1 82318.933934: tracing_mark_write: E|619
143198 [email protected]   (  619) [003] .... 82318.933953: binder_transaction: transaction=1573173 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
143199 [email protected]   (  619) [003] .... 82318.933959: binder_transaction_alloc_buf: transaction=1573173 data_size=576 offsets_size=112
143200 [email protected]   (  619) [003] d..2 82318.933985: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143201 [email protected]   (  619) [003] d..3 82318.934011: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143202 [email protected]   (  619) [003] .... 82318.934017: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
143203          <idle>-0     (-----) [001] .n.1 82318.934018: cpu_idle: state=4294967295 cpu_id=1
143204          <idle>-0     (-----) [001] d..2 82318.934033: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
143205  surfaceflinger-8858  ( 8858) [001] .... 82318.934048: binder_transaction_received: transaction=1573173
143206 [email protected]   (  619) [003] d..2 82318.934133: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143207          <idle>-0     (-----) [003] d..1 82318.934161: cpu_idle: state=0 cpu_id=3
143208 crtc_commit:111-321   (  321) [002] d..2 82318.934488: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
143209          <idle>-0     (-----) [002] d..1 82318.934507: cpu_idle: state=0 cpu_id=2
143210  surfaceflinger-8858  ( 8858) [001] d..2 82318.934609: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143211          <idle>-0     (-----) [001] d..1 82318.934636: cpu_idle: state=0 cpu_id=1
143212          <idle>-0     (-----) [001] d.s3 82318.934961: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
143213          <idle>-0     (-----) [001] dns4 82318.934993: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
143214          <idle>-0     (-----) [001] dns3 82318.935024: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143215          <idle>-0     (-----) [001] dns4 82318.935037: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143216          <idle>-0     (-----) [001] .n.1 82318.935054: cpu_idle: state=4294967295 cpu_id=1
143217          <idle>-0     (-----) [001] d..2 82318.935073: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
143218     kworker/1:1-25249 (25249) [001] d..2 82318.935215: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
143219     kworker/1:1-25249 (25249) [001] d..3 82318.935242: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
143220          <idle>-0     (-----) [002] ...1 82318.935255: cpu_idle: state=4294967295 cpu_id=2
143221          <idle>-0     (-----) [002] d..1 82318.935262: cpu_idle: state=0 cpu_id=2
143222     kworker/1:1-25249 (25249) [001] d..2 82318.935320: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
143223   cds_mc_thread-16565 (16565) [001] d..2 82318.935415: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
143224          <idle>-0     (-----) [003] ...1 82318.935477: cpu_idle: state=4294967295 cpu_id=3
143225          <idle>-0     (-----) [003] d..1 82318.935483: cpu_idle: state=0 cpu_id=3
143226 [email protected] (  798) [001] d..2 82318.935715: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143227          <idle>-0     (-----) [001] d..1 82318.935743: cpu_idle: state=0 cpu_id=1
143228          <idle>-0     (-----) [001] ...1 82318.937004: cpu_idle: state=4294967295 cpu_id=1
143229          <idle>-0     (-----) [001] d..1 82318.937011: cpu_idle: state=0 cpu_id=1
143230          <idle>-0     (-----) [002] d.s2 82318.938478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143231          <idle>-0     (-----) [002] dns3 82318.938504: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143232          <idle>-0     (-----) [002] dns3 82318.938513: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143233          <idle>-0     (-----) [002] dns4 82318.938560: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
143234          <idle>-0     (-----) [002] .n.1 82318.938577: cpu_idle: state=4294967295 cpu_id=2
143235          <idle>-0     (-----) [002] d..2 82318.938596: 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
143236     rcu_preempt-7     (    7) [002] d..2 82318.938611: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
143237     rcu_preempt-7     (    7) [002] d..3 82318.938634: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
143238     rcu_preempt-7     (    7) [002] d..2 82318.938654: 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
143239         rcuop/0-10    (   10) [002] d..2 82318.938660: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
143240         rcuop/0-10    (   10) [002] d..3 82318.938680: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
143241         rcuop/0-10    (   10) [002] d..2 82318.938694: 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
143242         rcuop/1-21    (   21) [002] d..2 82318.938714: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143243  kworker/u16:13-1147  ( 1147) [002] d..2 82318.938844: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143244          <idle>-0     (-----) [002] d..1 82318.938864: cpu_idle: state=0 cpu_id=2
143245          <idle>-0     (-----) [000] d.h5 82318.939494: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143246          <idle>-0     (-----) [000] dnh6 82318.939515: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143247          <idle>-0     (-----) [000] dnh5 82318.939521: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143248          <idle>-0     (-----) [000] dnh6 82318.939537: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143249          <idle>-0     (-----) [002] .n.1 82318.939546: cpu_idle: state=4294967295 cpu_id=2
143250          <idle>-0     (-----) [000] .n.1 82318.939554: cpu_idle: state=4294967295 cpu_id=0
143251          <idle>-0     (-----) [002] d..2 82318.939560: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
143252          <idle>-0     (-----) [000] d..2 82318.939570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
143253  crtc_event:111-322   (  322) [000] d..2 82318.939608: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143254          <idle>-0     (-----) [000] d..1 82318.939626: cpu_idle: state=0 cpu_id=0
143255 crtc_commit:111-321   (  321) [002] d..2 82318.939726: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
143256          <idle>-0     (-----) [002] d..1 82318.939739: cpu_idle: state=0 cpu_id=2
143257          <idle>-0     (-----) [002] d.s3 82318.941812: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143258          <idle>-0     (-----) [000] d.h5 82318.941817: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143259          <idle>-0     (-----) [002] d.s4 82318.941834: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143260          <idle>-0     (-----) [000] dnh6 82318.941839: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143261          <idle>-0     (-----) [000] .n.1 82318.941858: cpu_idle: state=4294967295 cpu_id=0
143262          <idle>-0     (-----) [002] .n.1 82318.941863: cpu_idle: state=4294967295 cpu_id=2
143263          <idle>-0     (-----) [000] d..2 82318.941873: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
143264          <idle>-0     (-----) [002] d..2 82318.941875: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
143265  crtc_event:111-322   (  322) [000] d..2 82318.941913: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143266          <idle>-0     (-----) [000] d..1 82318.941928: cpu_idle: state=0 cpu_id=0
143267 crtc_commit:111-321   (  321) [002] d..2 82318.941962: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143268          <idle>-0     (-----) [002] d..1 82318.941976: cpu_idle: state=0 cpu_id=2
143269          <idle>-0     (-----) [000] d.h5 82318.942116: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143270          <idle>-0     (-----) [000] dnh6 82318.942131: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143271          <idle>-0     (-----) [000] .n.1 82318.942148: cpu_idle: state=4294967295 cpu_id=0
143272          <idle>-0     (-----) [000] d..2 82318.942161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
143273  crtc_event:111-322   (  322) [000] d..2 82318.942190: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143274          <idle>-0     (-----) [000] d..1 82318.942205: cpu_idle: state=0 cpu_id=0
143275          <idle>-0     (-----) [002] d.h2 82318.943834: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
143276          <idle>-0     (-----) [002] dnh3 82318.943853: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
143277          <idle>-0     (-----) [002] .n.1 82318.943864: cpu_idle: state=4294967295 cpu_id=2
143278          <idle>-0     (-----) [002] d..2 82318.943873: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
143279        DispSync-8879  ( 8858) [002] d..1 82318.943896: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
143280        DispSync-8879  ( 8858) [002] d..2 82318.943914: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
143281          <idle>-0     (-----) [001] .n.1 82318.943920: cpu_idle: state=4294967295 cpu_id=1
143282          <idle>-0     (-----) [001] d..2 82318.943939: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
143283        DispSync-8879  ( 8858) [002] d..2 82318.943958: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143284          <idle>-0     (-----) [002] d..1 82318.943970: cpu_idle: state=0 cpu_id=2
143285  appEventThread-8881  ( 8858) [001] d..3 82318.944001: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143286          <idle>-0     (-----) [004] dnh2 82318.944034: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143287          <idle>-0     (-----) [004] .n.1 82318.944039: cpu_idle: state=4294967295 cpu_id=4
143288          <idle>-0     (-----) [004] d..2 82318.944048: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
143289  appEventThread-8881  ( 8858) [001] d..2 82318.944081: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143290          <idle>-0     (-----) [001] d..1 82318.944103: cpu_idle: state=0 cpu_id=1
143291 s.nexuslauncher-10023 (10023) [004] .... 82318.944243: binder_transaction: transaction=1573174 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
143292 s.nexuslauncher-10023 (10023) [004] .... 82318.944248: binder_transaction_alloc_buf: transaction=1573174 data_size=80 offsets_size=0
143293 s.nexuslauncher-10023 (10023) [004] d..4 82318.944254: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
143294 s.nexuslauncher-10023 (10023) [004] d.h5 82318.944314: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
143295          <idle>-0     (-----) [000] dnh2 82318.944321: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
143296          <idle>-0     (-----) [000] .n.1 82318.944329: cpu_idle: state=4294967295 cpu_id=0
143297          <idle>-0     (-----) [003] dnh2 82318.944340: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
143298          <idle>-0     (-----) [000] d..2 82318.944343: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
143299          <idle>-0     (-----) [003] .n.1 82318.944348: cpu_idle: state=4294967295 cpu_id=3
143300   Binder:8858_1-8871  ( 8858) [000] .... 82318.944354: binder_transaction_received: transaction=1573174
143301 s.nexuslauncher-10023 (10023) [004] d..3 82318.944355: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143302          <idle>-0     (-----) [003] d..2 82318.944362: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
143303 s.nexuslauncher-10023 (10023) [004] d..4 82318.944372: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143304          <idle>-0     (-----) [005] .n.1 82318.944377: cpu_idle: state=4294967295 cpu_id=5
143305          <idle>-0     (-----) [005] d..2 82318.944389: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143306         sugov:0-576   (  576) [003] .... 82318.944398: clk_set_rate: pwrcl_clk 748800000
143307   Binder:8858_1-8871  ( 8858) [000] d..1 82318.944398: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
143308         sugov:0-576   (  576) [003] .... 82318.944414: clk_set_rate: cpu3_pwrcl_clk 652800000
143309   Binder:8858_1-8871  ( 8858) [000] d..2 82318.944420: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
143310    RenderThread-16607 (10023) [005] d..2 82318.944420: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143311         sugov:0-576   (  576) [003] .... 82318.944426: clk_set_rate: cpu2_pwrcl_clk 652800000
143312          <idle>-0     (-----) [001] .n.1 82318.944427: cpu_idle: state=4294967295 cpu_id=1
143313          <idle>-0     (-----) [005] d..1 82318.944429: cpu_idle: state=0 cpu_id=5
143314         sugov:0-576   (  576) [003] .... 82318.944434: clk_set_rate: cpu1_pwrcl_clk 652800000
143315          <idle>-0     (-----) [001] d..2 82318.944442: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
143316         sugov:0-576   (  576) [003] .... 82318.944443: clk_set_rate: cpu0_pwrcl_clk 748800000
143317         sugov:0-576   (  576) [003] .... 82318.944453: cpu_frequency: state=748800 cpu_id=0
143318         sugov:0-576   (  576) [003] .... 82318.944478: cpu_frequency: state=748800 cpu_id=1
143319   Binder:8858_1-8871  ( 8858) [000] d..2 82318.944482: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143320         sugov:0-576   (  576) [003] .... 82318.944483: cpu_frequency: state=748800 cpu_id=2
143321         sugov:0-576   (  576) [003] .... 82318.944487: cpu_frequency: state=748800 cpu_id=3
143322  appEventThread-8881  ( 8858) [001] d..2 82318.944499: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143323          <idle>-0     (-----) [000] d..1 82318.944502: cpu_idle: state=0 cpu_id=0
143324          <idle>-0     (-----) [001] d..1 82318.944514: cpu_idle: state=0 cpu_id=1
143325         sugov:0-576   (  576) [003] d..2 82318.944522: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143326          <idle>-0     (-----) [003] d..1 82318.944540: cpu_idle: state=0 cpu_id=3
143327 s.nexuslauncher-10023 (10023) [004] d..3 82318.944580: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143328 s.nexuslauncher-10023 (10023) [004] d..4 82318.944598: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143329          <idle>-0     (-----) [005] .n.1 82318.944603: cpu_idle: state=4294967295 cpu_id=5
143330          <idle>-0     (-----) [005] d..2 82318.944611: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143331 s.nexuslauncher-10023 (10023) [004] d..2 82318.944626: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
143332          <idle>-0     (-----) [004] d..1 82318.944642: cpu_idle: state=0 cpu_id=4
143333    RenderThread-16607 (10023) [005] d..1 82318.944763: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143334    RenderThread-16607 (10023) [005] d..2 82318.944781: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143335          <idle>-0     (-----) [004] .n.1 82318.944787: cpu_idle: state=4294967295 cpu_id=4
143336          <idle>-0     (-----) [004] d..2 82318.944796: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
143337    RenderThread-16607 (10023) [005] .... 82318.944831: binder_transaction: transaction=1573175 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
143338    RenderThread-16607 (10023) [005] .... 82318.944834: binder_transaction_alloc_buf: transaction=1573175 data_size=104 offsets_size=0
143339    RenderThread-16607 (10023) [005] ...2 82318.944838: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
143340    RenderThread-16607 (10023) [005] d..4 82318.944842: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
143341    RenderThread-16607 (10023) [005] d..5 82318.944862: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143342 s.nexuslauncher-10023 (10023) [004] d..2 82318.944906: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
143343    RenderThread-16607 (10023) [005] d..2 82318.944909: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
143344          <idle>-0     (-----) [004] d..1 82318.944916: cpu_idle: state=0 cpu_id=4
143345   Binder:8858_1-8871  ( 8858) [005] .... 82318.944921: binder_transaction_received: transaction=1573175
143346   Binder:8858_1-8871  ( 8858) [005] .... 82318.944982: binder_transaction: transaction=1573176 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
143347   Binder:8858_1-8871  ( 8858) [005] .... 82318.944986: binder_transaction_alloc_buf: transaction=1573176 data_size=52 offsets_size=8
143348   Binder:8858_1-8871  ( 8858) [005] d..2 82318.944994: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143349   Binder:8858_1-8871  ( 8858) [005] d..3 82318.945005: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143350   Binder:8858_1-8871  ( 8858) [005] .... 82318.945007: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
143351   Binder:8858_1-8871  ( 8858) [005] d..2 82318.945017: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
143352    RenderThread-16607 (10023) [005] .... 82318.945025: binder_transaction_received: transaction=1573176
143353          <idle>-0     (-----) [002] d.s2 82318.945143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143354          <idle>-0     (-----) [002] dns3 82318.945165: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143355          <idle>-0     (-----) [002] .n.1 82318.945175: cpu_idle: state=4294967295 cpu_id=2
143356          <idle>-0     (-----) [002] d..2 82318.945186: 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
143357     rcu_preempt-7     (    7) [002] d..2 82318.945226: 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
143358          <idle>-0     (-----) [002] d..1 82318.945238: cpu_idle: state=0 cpu_id=2
143359          <idle>-0     (-----) [001] ...1 82318.945772: cpu_idle: state=4294967295 cpu_id=1
143360          <idle>-0     (-----) [001] d..1 82318.945777: cpu_idle: state=0 cpu_id=1
143361    RenderThread-16607 (10023) [005] d..2 82318.946334: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
143362   Binder:8858_1-8871  ( 8858) [005] d..2 82318.946405: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143363          <idle>-0     (-----) [005] d..1 82318.946420: cpu_idle: state=0 cpu_id=5
143364          <idle>-0     (-----) [005] d.h2 82318.946434: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143365          <idle>-0     (-----) [005] d.h3 82318.946442: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
143366          <idle>-0     (-----) [005] dnh3 82318.946445: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143367          <idle>-0     (-----) [005] .n.1 82318.946452: cpu_idle: state=4294967295 cpu_id=5
143368          <idle>-0     (-----) [005] d..2 82318.946462: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143369    RenderThread-16607 (10023) [005] .... 82318.946623: binder_transaction: transaction=1573177 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
143370    RenderThread-16607 (10023) [005] .... 82318.946627: binder_transaction_alloc_buf: transaction=1573177 data_size=192 offsets_size=8
143371    RenderThread-16607 (10023) [005] ...2 82318.946634: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
143372    RenderThread-16607 (10023) [005] d..4 82318.946637: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143373    RenderThread-16607 (10023) [005] d..5 82318.946648: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143374    RenderThread-16607 (10023) [005] d..2 82318.946660: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
143375   Binder:8858_1-8871  ( 8858) [005] .... 82318.946670: binder_transaction_received: transaction=1573177
143376   Binder:8858_1-8871  ( 8858) [005] .... 82318.946792: binder_transaction: transaction=1573178 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
143377   Binder:8858_1-8871  ( 8858) [005] .... 82318.946796: binder_transaction_alloc_buf: transaction=1573178 data_size=68 offsets_size=0
143378   Binder:8858_1-8871  ( 8858) [005] d..2 82318.946799: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143379   Binder:8858_1-8871  ( 8858) [005] d..3 82318.946809: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143380   Binder:8858_1-8871  ( 8858) [005] .... 82318.946812: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
143381   Binder:8858_1-8871  ( 8858) [005] d..2 82318.946843: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
143382    RenderThread-16607 (10023) [005] .... 82318.946852: binder_transaction_received: transaction=1573178
143383    RenderThread-16607 (10023) [005] d..2 82318.946924: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143384          <idle>-0     (-----) [005] d..1 82318.946941: cpu_idle: state=0 cpu_id=5
143385          <idle>-0     (-----) [005] ...1 82318.947140: cpu_idle: state=4294967295 cpu_id=5
143386          <idle>-0     (-----) [005] d..1 82318.947144: cpu_idle: state=0 cpu_id=5
143387          <idle>-0     (-----) [000] d.h3 82318.947749: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
143388          <idle>-0     (-----) [000] dnh4 82318.947767: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
143389          <idle>-0     (-----) [000] .n.1 82318.947782: cpu_idle: state=4294967295 cpu_id=0
143390          <idle>-0     (-----) [000] d..2 82318.947796: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
143391          <idle>-0     (-----) [002] d.h2 82318.947840: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
143392 kgsl_worker_thr-258   (  258) [000] d..2 82318.947852: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
143393          <idle>-0     (-----) [002] dnh3 82318.947853: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
143394          <idle>-0     (-----) [002] .n.1 82318.947867: cpu_idle: state=4294967295 cpu_id=2
143395 kgsl_worker_thr-258   (  258) [000] d..3 82318.947879: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
143396          <idle>-0     (-----) [002] d..2 82318.947887: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
143397        DispSync-8879  ( 8858) [002] d..1 82318.947904: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
143398        DispSync-8879  ( 8858) [002] d..2 82318.947930: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
143399 kgsl_worker_thr-258   (  258) [000] d..2 82318.947957: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=sfEventThread next_pid=8882 next_prio=97
143400        DispSync-8879  ( 8858) [002] d..2 82318.947982: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143401          <idle>-0     (-----) [002] d..1 82318.947995: cpu_idle: state=0 cpu_id=2
143402   sfEventThread-8882  ( 8858) [000] d..3 82318.948015: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143403   sfEventThread-8882  ( 8858) [000] d..4 82318.948036: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143404          <idle>-0     (-----) [001] .n.1 82318.948041: cpu_idle: state=4294967295 cpu_id=1
143405          <idle>-0     (-----) [001] d..2 82318.948055: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
143406   sfEventThread-8882  ( 8858) [000] d..2 82318.948066: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143407  kworker/u16:13-1147  ( 1147) [000] d..2 82318.948237: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143408          <idle>-0     (-----) [000] d..1 82318.948259: cpu_idle: state=0 cpu_id=0
143409  surfaceflinger-8858  ( 8858) [001] d.s2 82318.948494: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143410  surfaceflinger-8858  ( 8858) [001] d.s3 82318.948521: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143411          <idle>-0     (-----) [000] .n.1 82318.948528: cpu_idle: state=4294967295 cpu_id=0
143412          <idle>-0     (-----) [000] d..2 82318.948546: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143413  surfaceflinger-8858  ( 8858) [001] d..1 82318.948561: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
143414  surfaceflinger-8858  ( 8858) [001] d..2 82318.948590: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
143415          <idle>-0     (-----) [002] .n.1 82318.948596: cpu_idle: state=4294967295 cpu_id=2
143416          <idle>-0     (-----) [002] d..2 82318.948610: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
143417   sfEventThread-8882  ( 8858) [002] d..2 82318.948679: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143418          <idle>-0     (-----) [002] d..1 82318.948700: cpu_idle: state=0 cpu_id=2
143419  surfaceflinger-8858  ( 8858) [001] ...1 82318.948856: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
143420  surfaceflinger-8858  ( 8858) [001] ...1 82318.948865: tracing_mark_write: E|8858
143421  surfaceflinger-8858  ( 8858) [001] .... 82318.948930: binder_transaction: transaction=1573179 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
143422  surfaceflinger-8858  ( 8858) [001] .... 82318.948937: binder_transaction_alloc_buf: transaction=1573179 data_size=540 offsets_size=96
143423  surfaceflinger-8858  ( 8858) [001] ...2 82318.948964: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
143424  surfaceflinger-8858  ( 8858) [001] d..4 82318.948973: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
143425  surfaceflinger-8858  ( 8858) [001] d..5 82318.948996: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
143426          <idle>-0     (-----) [003] .n.1 82318.949002: cpu_idle: state=4294967295 cpu_id=3
143427  kworker/u16:13-1147  ( 1147) [000] d..2 82318.949007: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
143428          <idle>-0     (-----) [003] d..2 82318.949016: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
143429          <idle>-0     (-----) [000] d..1 82318.949028: cpu_idle: state=0 cpu_id=0
143430  surfaceflinger-8858  ( 8858) [001] d.s4 82318.949039: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
143431  surfaceflinger-8858  ( 8858) [001] d.s5 82318.949060: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
143432 [email protected]   (  619) [003] .... 82318.949073: binder_transaction_received: transaction=1573179
143433  surfaceflinger-8858  ( 8858) [001] d..2 82318.949087: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
143434     ksoftirqd/1-18    (   18) [001] d.s2 82318.949108: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143435 [email protected]   (  619) [003] ...1 82318.949120: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
143436     ksoftirqd/1-18    (   18) [001] d.s3 82318.949122: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
143437     ksoftirqd/1-18    (   18) [001] d.s3 82318.949132: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143438          <idle>-0     (-----) [000] .n.1 82318.949139: cpu_idle: state=4294967295 cpu_id=0
143439          <idle>-0     (-----) [000] d..2 82318.949155: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143440     ksoftirqd/1-18    (   18) [001] d..2 82318.949165: 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
143441          <idle>-0     (-----) [001] d..1 82318.949188: cpu_idle: state=0 cpu_id=1
143442  kworker/u16:13-1147  ( 1147) [000] d..2 82318.949194: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143443          <idle>-0     (-----) [000] d..1 82318.949207: cpu_idle: state=0 cpu_id=0
143444 [email protected]   (  619) [003] ...1 82318.949232: tracing_mark_write: B|619|HWCSession::PresentDisplay::
143445 [email protected]   (  619) [003] ...1 82318.949425: tracing_mark_write: B|619|HWDeviceDRM::Commit::
143446 [email protected]   (  619) [003] ...1 82318.949441: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
143447 [email protected]   (  619) [003] d..2 82318.950120: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143448 [email protected]   (  619) [003] d..3 82318.950149: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143449          <idle>-0     (-----) [002] .n.1 82318.950154: cpu_idle: state=4294967295 cpu_id=2
143450          <idle>-0     (-----) [002] d..2 82318.950164: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
143451 [email protected]   (  619) [003] ...1 82318.950273: tracing_mark_write: E|619
143452 [email protected]   (  619) [003] ...1 82318.950283: tracing_mark_write: E|619
143453 [email protected]   (  619) [003] ...1 82318.950351: tracing_mark_write: E|619
143454 [email protected]   (  619) [003] ...1 82318.950404: tracing_mark_write: E|619
143455 [email protected]   (  619) [003] .... 82318.950422: binder_transaction: transaction=1573180 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
143456 [email protected]   (  619) [003] .... 82318.950427: binder_transaction_alloc_buf: transaction=1573180 data_size=576 offsets_size=112
143457 [email protected]   (  619) [003] d..2 82318.950452: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143458 [email protected]   (  619) [003] d..3 82318.950476: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143459 [email protected]   (  619) [003] .... 82318.950482: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
143460          <idle>-0     (-----) [001] .n.1 82318.950483: cpu_idle: state=4294967295 cpu_id=1
143461          <idle>-0     (-----) [001] d..2 82318.950496: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
143462  surfaceflinger-8858  ( 8858) [001] .... 82318.950508: binder_transaction_received: transaction=1573180
143463 [email protected]   (  619) [003] d..2 82318.950589: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143464          <idle>-0     (-----) [003] d..1 82318.950614: cpu_idle: state=0 cpu_id=3
143465 crtc_commit:111-321   (  321) [002] d..2 82318.950943: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
143466          <idle>-0     (-----) [002] d..1 82318.950957: cpu_idle: state=0 cpu_id=2
143467  surfaceflinger-8858  ( 8858) [001] d..2 82318.951019: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143468          <idle>-0     (-----) [001] d..1 82318.951045: cpu_idle: state=0 cpu_id=1
143469          <idle>-0     (-----) [002] d.s2 82318.951888: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143470          <idle>-0     (-----) [002] dns3 82318.951913: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143471          <idle>-0     (-----) [002] .n.1 82318.951933: cpu_idle: state=4294967295 cpu_id=2
143472          <idle>-0     (-----) [002] d..2 82318.951945: 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
143473     rcu_preempt-7     (    7) [002] d..2 82318.951957: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
143474     rcu_preempt-7     (    7) [002] d..3 82318.952005: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
143475     rcu_preempt-7     (    7) [002] d..2 82318.952026: 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
143476         rcuop/2-29    (   29) [002] d..2 82318.952061: 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
143477          <idle>-0     (-----) [002] d..1 82318.952080: cpu_idle: state=0 cpu_id=2
143478          <idle>-0     (-----) [002] d..2 82318.955321: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
143479          <idle>-0     (-----) [002] dn.3 82318.955339: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
143480          <idle>-0     (-----) [002] .n.1 82318.955345: cpu_idle: state=4294967295 cpu_id=2
143481          <idle>-0     (-----) [002] d..2 82318.955365: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
143482     ksoftirqd/2-26    (   26) [002] d..2 82318.955403: 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
143483          <idle>-0     (-----) [002] d..1 82318.955414: cpu_idle: state=0 cpu_id=2
143484          <idle>-0     (-----) [000] d.h5 82318.955949: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143485          <idle>-0     (-----) [000] dnh6 82318.955970: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143486          <idle>-0     (-----) [000] dnh5 82318.955975: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143487          <idle>-0     (-----) [000] dnh6 82318.955990: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143488          <idle>-0     (-----) [002] .n.1 82318.955998: cpu_idle: state=4294967295 cpu_id=2
143489          <idle>-0     (-----) [000] .n.1 82318.956006: cpu_idle: state=4294967295 cpu_id=0
143490          <idle>-0     (-----) [002] d..2 82318.956007: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
143491          <idle>-0     (-----) [000] d..2 82318.956020: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
143492  crtc_event:111-322   (  322) [000] d..2 82318.956056: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143493          <idle>-0     (-----) [000] d..1 82318.956072: cpu_idle: state=0 cpu_id=0
143494 crtc_commit:111-321   (  321) [002] d..2 82318.956163: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
143495          <idle>-0     (-----) [002] d..1 82318.956175: cpu_idle: state=0 cpu_id=2
143496          <idle>-0     (-----) [000] d.h5 82318.958277: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143497          <idle>-0     (-----) [000] d.h6 82318.958297: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143498          <idle>-0     (-----) [002] .n.1 82318.958303: cpu_idle: state=4294967295 cpu_id=2
143499          <idle>-0     (-----) [002] d..2 82318.958311: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
143500          <idle>-0     (-----) [000] ...1 82318.958319: cpu_idle: state=4294967295 cpu_id=0
143501          <idle>-0     (-----) [000] d..1 82318.958326: cpu_idle: state=0 cpu_id=0
143502 crtc_commit:111-321   (  321) [002] d..2 82318.958385: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143503          <idle>-0     (-----) [002] d..1 82318.958396: cpu_idle: state=0 cpu_id=2
143504          <idle>-0     (-----) [002] d.s3 82318.958476: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143505          <idle>-0     (-----) [002] d.s4 82318.958498: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143506          <idle>-0     (-----) [002] d.s2 82318.958502: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143507          <idle>-0     (-----) [002] dns3 82318.958522: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143508          <idle>-0     (-----) [002] dns3 82318.958528: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143509          <idle>-0     (-----) [002] dns4 82318.958544: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143510          <idle>-0     (-----) [002] .n.1 82318.958563: cpu_idle: state=4294967295 cpu_id=2
143511          <idle>-0     (-----) [002] d..2 82318.958574: 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
143512          <idle>-0     (-----) [000] .n.1 82318.958585: cpu_idle: state=4294967295 cpu_id=0
143513          <idle>-0     (-----) [000] d..2 82318.958600: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
143514     rcu_preempt-7     (    7) [002] d..2 82318.958612: 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
143515          <idle>-0     (-----) [002] d..1 82318.958625: cpu_idle: state=0 cpu_id=2
143516  crtc_event:111-322   (  322) [000] d..2 82318.958626: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143517  kworker/u16:13-1147  ( 1147) [000] d..2 82318.958734: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143518          <idle>-0     (-----) [000] d..1 82318.958751: cpu_idle: state=0 cpu_id=0
143519          <idle>-0     (-----) [002] d.h2 82318.960324: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
143520          <idle>-0     (-----) [002] dnh3 82318.960341: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
143521          <idle>-0     (-----) [002] .n.1 82318.960350: cpu_idle: state=4294967295 cpu_id=2
143522          <idle>-0     (-----) [002] d..2 82318.960362: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
143523        DispSync-8879  ( 8858) [002] d..1 82318.960382: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
143524        DispSync-8879  ( 8858) [002] d..2 82318.960399: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
143525          <idle>-0     (-----) [001] .n.1 82318.960408: cpu_idle: state=4294967295 cpu_id=1
143526          <idle>-0     (-----) [001] d..2 82318.960424: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
143527        DispSync-8879  ( 8858) [002] d..2 82318.960437: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143528          <idle>-0     (-----) [002] d..1 82318.960452: cpu_idle: state=0 cpu_id=2
143529  appEventThread-8881  ( 8858) [001] d..3 82318.960477: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143530          <idle>-0     (-----) [004] dnh2 82318.960509: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143531          <idle>-0     (-----) [004] .n.1 82318.960514: cpu_idle: state=4294967295 cpu_id=4
143532          <idle>-0     (-----) [004] d..2 82318.960522: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
143533  appEventThread-8881  ( 8858) [001] d..2 82318.960547: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143534          <idle>-0     (-----) [001] d..1 82318.960567: cpu_idle: state=0 cpu_id=1
143535 s.nexuslauncher-10023 (10023) [004] .... 82318.960718: binder_transaction: transaction=1573181 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
143536 s.nexuslauncher-10023 (10023) [004] .... 82318.960723: binder_transaction_alloc_buf: transaction=1573181 data_size=80 offsets_size=0
143537 s.nexuslauncher-10023 (10023) [004] d..4 82318.960728: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
143538          <idle>-0     (-----) [000] dnh2 82318.960794: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
143539          <idle>-0     (-----) [000] .n.1 82318.960801: cpu_idle: state=4294967295 cpu_id=0
143540 s.nexuslauncher-10023 (10023) [004] d..3 82318.960813: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143541          <idle>-0     (-----) [000] d..2 82318.960815: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
143542   Binder:8858_1-8871  ( 8858) [000] .... 82318.960826: binder_transaction_received: transaction=1573181
143543 s.nexuslauncher-10023 (10023) [004] d..4 82318.960830: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143544          <idle>-0     (-----) [005] .n.1 82318.960835: cpu_idle: state=4294967295 cpu_id=5
143545          <idle>-0     (-----) [005] d..2 82318.960846: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143546   Binder:8858_1-8871  ( 8858) [000] d..1 82318.960868: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
143547    RenderThread-16607 (10023) [005] d..2 82318.960881: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143548          <idle>-0     (-----) [005] d..1 82318.960890: cpu_idle: state=0 cpu_id=5
143549   Binder:8858_1-8871  ( 8858) [000] d..2 82318.960891: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
143550          <idle>-0     (-----) [001] .n.1 82318.960898: cpu_idle: state=4294967295 cpu_id=1
143551          <idle>-0     (-----) [001] d..2 82318.960911: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
143552   Binder:8858_1-8871  ( 8858) [000] d..2 82318.960946: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143553  appEventThread-8881  ( 8858) [001] d..2 82318.960961: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143554          <idle>-0     (-----) [000] d..1 82318.960965: cpu_idle: state=0 cpu_id=0
143555          <idle>-0     (-----) [001] d..1 82318.960974: cpu_idle: state=0 cpu_id=1
143556 s.nexuslauncher-10023 (10023) [004] d..3 82318.961028: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143557 s.nexuslauncher-10023 (10023) [004] d..4 82318.961045: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143558          <idle>-0     (-----) [005] .n.1 82318.961049: cpu_idle: state=4294967295 cpu_id=5
143559          <idle>-0     (-----) [005] d..2 82318.961057: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143560 s.nexuslauncher-10023 (10023) [004] d..2 82318.961070: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
143561          <idle>-0     (-----) [004] d..1 82318.961086: cpu_idle: state=0 cpu_id=4
143562    RenderThread-16607 (10023) [005] d..1 82318.961206: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143563    RenderThread-16607 (10023) [005] d..2 82318.961223: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143564          <idle>-0     (-----) [004] .n.1 82318.961230: cpu_idle: state=4294967295 cpu_id=4
143565          <idle>-0     (-----) [004] d..2 82318.961239: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
143566    RenderThread-16607 (10023) [005] .... 82318.961271: binder_transaction: transaction=1573182 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
143567    RenderThread-16607 (10023) [005] .... 82318.961275: binder_transaction_alloc_buf: transaction=1573182 data_size=104 offsets_size=0
143568    RenderThread-16607 (10023) [005] ...2 82318.961279: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
143569    RenderThread-16607 (10023) [005] d..4 82318.961282: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
143570    RenderThread-16607 (10023) [005] d..5 82318.961302: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143571    RenderThread-16607 (10023) [005] d..2 82318.961349: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
143572 s.nexuslauncher-10023 (10023) [004] d..2 82318.961352: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
143573   Binder:8858_1-8871  ( 8858) [005] .... 82318.961362: binder_transaction_received: transaction=1573182
143574          <idle>-0     (-----) [004] d..1 82318.961362: cpu_idle: state=0 cpu_id=4
143575   Binder:8858_1-8871  ( 8858) [005] .... 82318.961424: binder_transaction: transaction=1573183 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
143576   Binder:8858_1-8871  ( 8858) [005] .... 82318.961428: binder_transaction_alloc_buf: transaction=1573183 data_size=52 offsets_size=8
143577   Binder:8858_1-8871  ( 8858) [005] d..2 82318.961436: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143578   Binder:8858_1-8871  ( 8858) [005] d..3 82318.961447: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143579   Binder:8858_1-8871  ( 8858) [005] .... 82318.961449: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
143580   Binder:8858_1-8871  ( 8858) [005] d..2 82318.961459: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
143581    RenderThread-16607 (10023) [005] .... 82318.961468: binder_transaction_received: transaction=1573183
143582    RenderThread-16607 (10023) [005] d..2 82318.962774: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
143583   Binder:8858_1-8871  ( 8858) [005] d..2 82318.962848: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143584          <idle>-0     (-----) [005] d..1 82318.962863: cpu_idle: state=0 cpu_id=5
143585          <idle>-0     (-----) [005] d.h2 82318.962875: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143586          <idle>-0     (-----) [005] d.h3 82318.962883: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
143587          <idle>-0     (-----) [005] dnh3 82318.962887: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143588          <idle>-0     (-----) [005] .n.1 82318.962894: cpu_idle: state=4294967295 cpu_id=5
143589          <idle>-0     (-----) [005] d..2 82318.962903: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143590    RenderThread-16607 (10023) [005] .... 82318.963062: binder_transaction: transaction=1573184 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
143591    RenderThread-16607 (10023) [005] .... 82318.963067: binder_transaction_alloc_buf: transaction=1573184 data_size=192 offsets_size=8
143592    RenderThread-16607 (10023) [005] ...2 82318.963074: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
143593    RenderThread-16607 (10023) [005] d..4 82318.963077: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143594    RenderThread-16607 (10023) [005] d..5 82318.963089: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143595    RenderThread-16607 (10023) [005] d..2 82318.963101: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
143596   Binder:8858_1-8871  ( 8858) [005] .... 82318.963112: binder_transaction_received: transaction=1573184
143597   Binder:8858_1-8871  ( 8858) [005] .... 82318.963236: binder_transaction: transaction=1573185 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
143598   Binder:8858_1-8871  ( 8858) [005] .... 82318.963240: binder_transaction_alloc_buf: transaction=1573185 data_size=68 offsets_size=0
143599   Binder:8858_1-8871  ( 8858) [005] d..2 82318.963243: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143600   Binder:8858_1-8871  ( 8858) [005] d..3 82318.963254: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143601   Binder:8858_1-8871  ( 8858) [005] .... 82318.963256: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
143602   Binder:8858_1-8871  ( 8858) [005] d..2 82318.963289: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
143603    RenderThread-16607 (10023) [005] .... 82318.963299: binder_transaction_received: transaction=1573185
143604    RenderThread-16607 (10023) [005] d..2 82318.963369: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143605          <idle>-0     (-----) [005] d..1 82318.963387: cpu_idle: state=0 cpu_id=5
143606          <idle>-0     (-----) [005] ...1 82318.963585: cpu_idle: state=4294967295 cpu_id=5
143607          <idle>-0     (-----) [005] d..1 82318.963588: cpu_idle: state=0 cpu_id=5
143608          <idle>-0     (-----) [000] d.h3 82318.964194: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
143609          <idle>-0     (-----) [000] dnh4 82318.964214: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
143610          <idle>-0     (-----) [000] .n.1 82318.964230: cpu_idle: state=4294967295 cpu_id=0
143611          <idle>-0     (-----) [000] d..2 82318.964244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
143612 kgsl_worker_thr-258   (  258) [000] d..2 82318.964302: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143613          <idle>-0     (-----) [002] d.h2 82318.964303: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
143614          <idle>-0     (-----) [002] dnh3 82318.964317: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
143615          <idle>-0     (-----) [002] .n.1 82318.964326: cpu_idle: state=4294967295 cpu_id=2
143616 kgsl_worker_thr-258   (  258) [000] d..3 82318.964326: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143617          <idle>-0     (-----) [002] d..2 82318.964338: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
143618        DispSync-8879  ( 8858) [002] d..1 82318.964352: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
143619 kgsl_worker_thr-258   (  258) [000] d..2 82318.964354: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143620        DispSync-8879  ( 8858) [002] d..2 82318.964378: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
143621          <idle>-0     (-----) [003] .n.1 82318.964386: cpu_idle: state=4294967295 cpu_id=3
143622          <idle>-0     (-----) [003] d..2 82318.964401: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
143623        DispSync-8879  ( 8858) [002] d..2 82318.964415: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143624          <idle>-0     (-----) [002] d..1 82318.964426: cpu_idle: state=0 cpu_id=2
143625   sfEventThread-8882  ( 8858) [003] d..3 82318.964453: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143626   sfEventThread-8882  ( 8858) [003] d..4 82318.964478: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143627          <idle>-0     (-----) [001] .n.1 82318.964483: cpu_idle: state=4294967295 cpu_id=1
143628          <idle>-0     (-----) [001] d..2 82318.964496: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
143629   sfEventThread-8882  ( 8858) [003] d..2 82318.964523: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143630  kworker/u16:13-1147  ( 1147) [000] d..2 82318.964527: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143631          <idle>-0     (-----) [003] d..1 82318.964542: cpu_idle: state=0 cpu_id=3
143632          <idle>-0     (-----) [000] d..1 82318.964547: cpu_idle: state=0 cpu_id=0
143633  surfaceflinger-8858  ( 8858) [001] d..1 82318.964880: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
143634  surfaceflinger-8858  ( 8858) [001] d..2 82318.964907: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
143635          <idle>-0     (-----) [003] .n.1 82318.964913: cpu_idle: state=4294967295 cpu_id=3
143636          <idle>-0     (-----) [003] d..2 82318.964926: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
143637   sfEventThread-8882  ( 8858) [003] d..2 82318.964967: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143638          <idle>-0     (-----) [003] d..1 82318.964980: cpu_idle: state=0 cpu_id=3
143639          <idle>-0     (-----) [002] d.s2 82318.965135: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143640          <idle>-0     (-----) [002] dns3 82318.965157: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143641          <idle>-0     (-----) [002] .n.1 82318.965175: cpu_idle: state=4294967295 cpu_id=2
143642          <idle>-0     (-----) [002] d..2 82318.965186: 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
143643  surfaceflinger-8858  ( 8858) [001] ...1 82318.965194: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
143644     rcu_preempt-7     (    7) [002] d..2 82318.965197: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
143645  surfaceflinger-8858  ( 8858) [001] ...1 82318.965203: tracing_mark_write: E|8858
143646     rcu_preempt-7     (    7) [002] d..3 82318.965219: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
143647     rcu_preempt-7     (    7) [002] d..2 82318.965233: 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
143648         rcuop/0-10    (   10) [002] d..2 82318.965239: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
143649         rcuop/0-10    (   10) [002] d..3 82318.965256: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
143650         rcuop/0-10    (   10) [002] d..2 82318.965261: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143651  surfaceflinger-8858  ( 8858) [001] .... 82318.965266: binder_transaction: transaction=1573186 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
143652  surfaceflinger-8858  ( 8858) [001] .... 82318.965273: binder_transaction_alloc_buf: transaction=1573186 data_size=540 offsets_size=96
143653         rcuop/0-10    (   10) [002] d..3 82318.965273: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143654         rcuop/0-10    (   10) [002] d..2 82318.965284: 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
143655  surfaceflinger-8858  ( 8858) [001] ...2 82318.965301: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
143656         rcuop/1-21    (   21) [002] d..2 82318.965304: 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
143657  surfaceflinger-8858  ( 8858) [001] d..4 82318.965309: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
143658  surfaceflinger-8858  ( 8858) [001] d..5 82318.965335: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
143659     rcu_preempt-7     (    7) [002] d..2 82318.965337: 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
143660          <idle>-0     (-----) [003] .n.1 82318.965340: cpu_idle: state=4294967295 cpu_id=3
143661          <idle>-0     (-----) [003] d..2 82318.965353: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
143662          <idle>-0     (-----) [002] d..1 82318.965354: cpu_idle: state=0 cpu_id=2
143663 [email protected]   (  619) [003] .... 82318.965366: binder_transaction_received: transaction=1573186
143664  surfaceflinger-8858  ( 8858) [001] d..2 82318.965376: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143665          <idle>-0     (-----) [001] d..1 82318.965399: cpu_idle: state=0 cpu_id=1
143666 [email protected]   (  619) [003] ...1 82318.965414: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
143667 [email protected]   (  619) [003] ...1 82318.965538: tracing_mark_write: B|619|HWCSession::PresentDisplay::
143668 [email protected]   (  619) [003] ...1 82318.965728: tracing_mark_write: B|619|HWDeviceDRM::Commit::
143669 [email protected]   (  619) [003] ...1 82318.965743: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
143670 [email protected]   (  619) [003] d..2 82318.966413: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143671 [email protected]   (  619) [003] d..3 82318.966444: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143672          <idle>-0     (-----) [002] .n.1 82318.966450: cpu_idle: state=4294967295 cpu_id=2
143673          <idle>-0     (-----) [002] d..2 82318.966463: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
143674 [email protected]   (  619) [003] ...1 82318.966568: tracing_mark_write: E|619
143675 [email protected]   (  619) [003] ...1 82318.966576: tracing_mark_write: E|619
143676 [email protected]   (  619) [003] ...1 82318.966640: tracing_mark_write: E|619
143677 [email protected]   (  619) [003] ...1 82318.966691: tracing_mark_write: E|619
143678 [email protected]   (  619) [003] .... 82318.966710: binder_transaction: transaction=1573187 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
143679 [email protected]   (  619) [003] .... 82318.966715: binder_transaction_alloc_buf: transaction=1573187 data_size=576 offsets_size=112
143680 [email protected]   (  619) [003] d..2 82318.966742: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143681 [email protected]   (  619) [003] d..3 82318.966765: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143682 [email protected]   (  619) [003] .... 82318.966771: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
143683          <idle>-0     (-----) [001] .n.1 82318.966772: cpu_idle: state=4294967295 cpu_id=1
143684          <idle>-0     (-----) [001] d..2 82318.966786: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
143685  surfaceflinger-8858  ( 8858) [001] .... 82318.966798: binder_transaction_received: transaction=1573187
143686 [email protected]   (  619) [003] d..2 82318.966879: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143687          <idle>-0     (-----) [003] d..1 82318.966904: cpu_idle: state=0 cpu_id=3
143688 crtc_commit:111-321   (  321) [002] d..2 82318.967235: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
143689          <idle>-0     (-----) [002] d..1 82318.967252: cpu_idle: state=0 cpu_id=2
143690  surfaceflinger-8858  ( 8858) [001] d..2 82318.967287: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143691          <idle>-0     (-----) [001] d..1 82318.967312: cpu_idle: state=0 cpu_id=1
143692          <idle>-0     (-----) [002] d.H3 82318.971888: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
143693          <idle>-0     (-----) [002] d.H4 82318.971910: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
143694          <idle>-0     (-----) [003] .n.1 82318.971918: cpu_idle: state=4294967295 cpu_id=3
143695          <idle>-0     (-----) [002] d.s2 82318.971919: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143696          <idle>-0     (-----) [003] d..2 82318.971935: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
143697          <idle>-0     (-----) [002] dns3 82318.971941: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143698          <idle>-0     (-----) [002] dns3 82318.971948: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143699         sugov:0-576   (  576) [003] .... 82318.971973: clk_set_rate: pwrcl_clk 652800000
143700          <idle>-0     (-----) [002] dns4 82318.971990: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
143701         sugov:0-576   (  576) [003] .... 82318.971991: clk_set_rate: cpu3_pwrcl_clk 748800000
143702         sugov:0-576   (  576) [003] .... 82318.972001: clk_set_rate: cpu2_pwrcl_clk 748800000
143703          <idle>-0     (-----) [002] .n.1 82318.972008: cpu_idle: state=4294967295 cpu_id=2
143704         sugov:0-576   (  576) [003] .... 82318.972009: clk_set_rate: cpu1_pwrcl_clk 748800000
143705         sugov:0-576   (  576) [003] .... 82318.972018: clk_set_rate: cpu0_pwrcl_clk 652800000
143706          <idle>-0     (-----) [002] d..2 82318.972026: 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
143707     rcu_preempt-7     (    7) [002] d..2 82318.972054: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143708         sugov:0-576   (  576) [003] .... 82318.972134: cpu_frequency: state=652800 cpu_id=0
143709         sugov:0-576   (  576) [003] .... 82318.972159: cpu_frequency: state=652800 cpu_id=1
143710         sugov:0-576   (  576) [003] .... 82318.972165: cpu_frequency: state=652800 cpu_id=2
143711         sugov:0-576   (  576) [003] .... 82318.972188: cpu_frequency: state=652800 cpu_id=3
143712         sugov:0-576   (  576) [003] d..2 82318.972240: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143713          <idle>-0     (-----) [003] d..1 82318.972295: cpu_idle: state=0 cpu_id=3
143714  kworker/u16:13-1147  ( 1147) [002] d..2 82318.972372: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143715          <idle>-0     (-----) [002] d..1 82318.972391: cpu_idle: state=0 cpu_id=2
143716          <idle>-0     (-----) [000] d.h5 82318.972410: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143717          <idle>-0     (-----) [000] dnh6 82318.972431: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143718          <idle>-0     (-----) [000] dnh5 82318.972436: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143719          <idle>-0     (-----) [000] dnh6 82318.972452: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143720          <idle>-0     (-----) [002] .n.1 82318.972461: cpu_idle: state=4294967295 cpu_id=2
143721          <idle>-0     (-----) [000] .n.1 82318.972470: cpu_idle: state=4294967295 cpu_id=0
143722          <idle>-0     (-----) [002] d..2 82318.972474: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
143723          <idle>-0     (-----) [000] d..2 82318.972486: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
143724  crtc_event:111-322   (  322) [000] d..2 82318.972524: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143725          <idle>-0     (-----) [000] d..1 82318.972542: cpu_idle: state=0 cpu_id=0
143726 crtc_commit:111-321   (  321) [002] d..2 82318.972640: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
143727          <idle>-0     (-----) [002] d..1 82318.972652: cpu_idle: state=0 cpu_id=2
143728          <idle>-0     (-----) [000] d.h5 82318.974738: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143729          <idle>-0     (-----) [000] d.h6 82318.974759: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143730          <idle>-0     (-----) [002] .n.1 82318.974766: cpu_idle: state=4294967295 cpu_id=2
143731          <idle>-0     (-----) [002] d..2 82318.974776: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
143732          <idle>-0     (-----) [000] ...1 82318.974777: cpu_idle: state=4294967295 cpu_id=0
143733          <idle>-0     (-----) [000] d..1 82318.974785: cpu_idle: state=0 cpu_id=0
143734 crtc_commit:111-321   (  321) [002] d..2 82318.974855: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143735          <idle>-0     (-----) [002] d..1 82318.974866: cpu_idle: state=0 cpu_id=2
143736          <idle>-0     (-----) [002] ...1 82318.975020: cpu_idle: state=4294967295 cpu_id=2
143737          <idle>-0     (-----) [002] d..1 82318.975027: cpu_idle: state=0 cpu_id=2
143738          <idle>-0     (-----) [000] d.h5 82318.975032: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143739          <idle>-0     (-----) [000] dnh6 82318.975045: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143740          <idle>-0     (-----) [000] .n.1 82318.975061: cpu_idle: state=4294967295 cpu_id=0
143741          <idle>-0     (-----) [000] d..2 82318.975074: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
143742          <idle>-0     (-----) [001] d.s3 82318.975086: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143743  crtc_event:111-322   (  322) [000] d..2 82318.975103: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143744          <idle>-0     (-----) [001] dns4 82318.975108: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143745          <idle>-0     (-----) [001] .n.1 82318.975129: cpu_idle: state=4294967295 cpu_id=1
143746          <idle>-0     (-----) [002] d.s3 82318.975149: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143747          <idle>-0     (-----) [001] d..2 82318.975151: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
143748          <idle>-0     (-----) [002] d.s4 82318.975174: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
143749          <idle>-0     (-----) [000] d..2 82318.975187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
143750     kworker/1:1-25249 (25249) [001] d..2 82318.975205: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
143751  crtc_event:111-322   (  322) [000] d..2 82318.975227: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143752     kworker/1:1-25249 (25249) [001] d..3 82318.975228: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
143753          <idle>-0     (-----) [000] d..1 82318.975242: cpu_idle: state=0 cpu_id=0
143754          <idle>-0     (-----) [002] ...1 82318.975271: cpu_idle: state=4294967295 cpu_id=2
143755     kworker/1:1-25249 (25249) [001] d..2 82318.975273: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
143756          <idle>-0     (-----) [002] d..1 82318.975280: cpu_idle: state=0 cpu_id=2
143757 [email protected] (  798) [001] d..2 82318.975485: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143758          <idle>-0     (-----) [001] d..1 82318.975510: cpu_idle: state=0 cpu_id=1
143759          <idle>-0     (-----) [001] d.s3 82318.975779: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143760          <idle>-0     (-----) [001] dns4 82318.975794: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143761          <idle>-0     (-----) [001] .n.1 82318.975817: cpu_idle: state=4294967295 cpu_id=1
143762          <idle>-0     (-----) [001] d..2 82318.975835: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
143763     kworker/1:1-25249 (25249) [001] d..2 82318.975873: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
143764     kworker/1:1-25249 (25249) [001] d..3 82318.975887: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
143765     kworker/1:1-25249 (25249) [001] d..2 82318.975921: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
143766 [email protected] (  798) [001] d..2 82318.976088: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143767          <idle>-0     (-----) [001] d..1 82318.976112: cpu_idle: state=0 cpu_id=1
143768          <idle>-0     (-----) [002] d.h2 82318.976774: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
143769          <idle>-0     (-----) [002] dnh3 82318.976792: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
143770          <idle>-0     (-----) [002] .n.1 82318.976802: cpu_idle: state=4294967295 cpu_id=2
143771          <idle>-0     (-----) [002] d..2 82318.976812: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
143772        DispSync-8879  ( 8858) [002] d..1 82318.976832: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
143773        DispSync-8879  ( 8858) [002] d..2 82318.976850: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
143774          <idle>-0     (-----) [001] .n.1 82318.976859: cpu_idle: state=4294967295 cpu_id=1
143775          <idle>-0     (-----) [001] d..2 82318.976874: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
143776        DispSync-8879  ( 8858) [002] d..2 82318.976894: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143777          <idle>-0     (-----) [002] d..1 82318.976905: cpu_idle: state=0 cpu_id=2
143778  appEventThread-8881  ( 8858) [001] d..3 82318.976936: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143779          <idle>-0     (-----) [004] dnh2 82318.976970: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143780          <idle>-0     (-----) [004] .n.1 82318.976975: cpu_idle: state=4294967295 cpu_id=4
143781          <idle>-0     (-----) [004] d..2 82318.976983: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
143782  appEventThread-8881  ( 8858) [001] d..2 82318.977014: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143783          <idle>-0     (-----) [001] d.s4 82318.977112: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143784          <idle>-0     (-----) [001] dns5 82318.977128: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143785 s.nexuslauncher-10023 (10023) [004] .... 82318.977168: binder_transaction: transaction=1573188 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
143786 s.nexuslauncher-10023 (10023) [004] .... 82318.977173: binder_transaction_alloc_buf: transaction=1573188 data_size=80 offsets_size=0
143787 s.nexuslauncher-10023 (10023) [004] d..4 82318.977178: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
143788          <idle>-0     (-----) [001] d..2 82318.977185: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
143789     kworker/1:1-25249 (25249) [001] d..2 82318.977223: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
143790 s.nexuslauncher-10023 (10023) [004] d.h5 82318.977238: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
143791          <idle>-0     (-----) [000] dnh2 82318.977245: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
143792     kworker/1:1-25249 (25249) [001] d..3 82318.977248: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
143793          <idle>-0     (-----) [000] .n.1 82318.977253: cpu_idle: state=4294967295 cpu_id=0
143794          <idle>-0     (-----) [003] dnh2 82318.977265: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
143795          <idle>-0     (-----) [000] d..2 82318.977267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
143796          <idle>-0     (-----) [003] .n.1 82318.977272: cpu_idle: state=4294967295 cpu_id=3
143797 s.nexuslauncher-10023 (10023) [004] d..3 82318.977278: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143798   Binder:8858_1-8871  ( 8858) [000] .... 82318.977278: binder_transaction_received: transaction=1573188
143799     kworker/1:1-25249 (25249) [001] d..2 82318.977284: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
143800          <idle>-0     (-----) [003] d..2 82318.977285: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
143801 s.nexuslauncher-10023 (10023) [004] d..4 82318.977294: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143802          <idle>-0     (-----) [005] .n.1 82318.977299: cpu_idle: state=4294967295 cpu_id=5
143803         sugov:0-576   (  576) [003] .... 82318.977310: clk_set_rate: pwrcl_clk 748800000
143804          <idle>-0     (-----) [005] d..2 82318.977311: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143805   Binder:8858_1-8871  ( 8858) [000] d..1 82318.977321: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
143806         sugov:0-576   (  576) [003] .... 82318.977321: clk_set_rate: cpu3_pwrcl_clk 652800000
143807         sugov:0-576   (  576) [003] .... 82318.977331: clk_set_rate: cpu2_pwrcl_clk 652800000
143808         sugov:0-576   (  576) [003] .... 82318.977341: clk_set_rate: cpu1_pwrcl_clk 652800000
143809    RenderThread-16607 (10023) [005] d..2 82318.977342: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143810         sugov:0-576   (  576) [003] .... 82318.977349: clk_set_rate: cpu0_pwrcl_clk 748800000
143811          <idle>-0     (-----) [005] d..1 82318.977350: cpu_idle: state=0 cpu_id=5
143812   Binder:8858_1-8871  ( 8858) [000] d..2 82318.977354: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
143813         sugov:0-576   (  576) [003] .... 82318.977359: cpu_frequency: state=748800 cpu_id=0
143814          <idle>-0     (-----) [002] .n.1 82318.977361: cpu_idle: state=4294967295 cpu_id=2
143815          <idle>-0     (-----) [002] d..2 82318.977374: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
143816         sugov:0-576   (  576) [003] .... 82318.977375: cpu_frequency: state=748800 cpu_id=1
143817         sugov:0-576   (  576) [003] .... 82318.977381: cpu_frequency: state=748800 cpu_id=2
143818         sugov:0-576   (  576) [003] .... 82318.977386: cpu_frequency: state=748800 cpu_id=3
143819   Binder:8858_1-8871  ( 8858) [000] d..2 82318.977417: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143820         sugov:0-576   (  576) [003] d..2 82318.977418: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143821          <idle>-0     (-----) [003] d..1 82318.977433: cpu_idle: state=0 cpu_id=3
143822  appEventThread-8881  ( 8858) [002] d..2 82318.977437: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143823          <idle>-0     (-----) [000] d..1 82318.977439: cpu_idle: state=0 cpu_id=0
143824          <idle>-0     (-----) [002] d..1 82318.977448: cpu_idle: state=0 cpu_id=2
143825 [email protected] (  798) [001] d..2 82318.977459: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143826          <idle>-0     (-----) [001] d..1 82318.977483: cpu_idle: state=0 cpu_id=1
143827 s.nexuslauncher-10023 (10023) [004] d..3 82318.977498: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143828 s.nexuslauncher-10023 (10023) [004] d..4 82318.977515: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143829          <idle>-0     (-----) [005] .n.1 82318.977520: cpu_idle: state=4294967295 cpu_id=5
143830          <idle>-0     (-----) [005] d..2 82318.977529: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143831 s.nexuslauncher-10023 (10023) [004] d..2 82318.977542: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
143832          <idle>-0     (-----) [004] d..1 82318.977557: cpu_idle: state=0 cpu_id=4
143833    RenderThread-16607 (10023) [005] d..1 82318.977674: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143834    RenderThread-16607 (10023) [005] d..2 82318.977691: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
143835          <idle>-0     (-----) [004] .n.1 82318.977697: cpu_idle: state=4294967295 cpu_id=4
143836          <idle>-0     (-----) [004] d..2 82318.977707: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
143837    RenderThread-16607 (10023) [005] .... 82318.977738: binder_transaction: transaction=1573189 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
143838    RenderThread-16607 (10023) [005] .... 82318.977742: binder_transaction_alloc_buf: transaction=1573189 data_size=104 offsets_size=0
143839    RenderThread-16607 (10023) [005] ...2 82318.977746: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
143840    RenderThread-16607 (10023) [005] d..4 82318.977749: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
143841    RenderThread-16607 (10023) [005] d..5 82318.977769: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143842    RenderThread-16607 (10023) [005] d..2 82318.977817: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
143843 s.nexuslauncher-10023 (10023) [004] d..2 82318.977820: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
143844   Binder:8858_1-8871  ( 8858) [005] .... 82318.977827: binder_transaction_received: transaction=1573189
143845          <idle>-0     (-----) [004] d..1 82318.977830: cpu_idle: state=0 cpu_id=4
143846   Binder:8858_1-8871  ( 8858) [005] .... 82318.977887: binder_transaction: transaction=1573190 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
143847   Binder:8858_1-8871  ( 8858) [005] .... 82318.977891: binder_transaction_alloc_buf: transaction=1573190 data_size=52 offsets_size=8
143848   Binder:8858_1-8871  ( 8858) [005] d..2 82318.977897: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143849   Binder:8858_1-8871  ( 8858) [005] d..3 82318.977908: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143850   Binder:8858_1-8871  ( 8858) [005] .... 82318.977911: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
143851   Binder:8858_1-8871  ( 8858) [005] d..2 82318.977921: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
143852    RenderThread-16607 (10023) [005] .... 82318.977930: binder_transaction_received: transaction=1573190
143853          <idle>-0     (-----) [001] d.s3 82318.978270: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143854          <idle>-0     (-----) [001] dns4 82318.978285: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143855          <idle>-0     (-----) [001] .n.1 82318.978301: cpu_idle: state=4294967295 cpu_id=1
143856          <idle>-0     (-----) [001] d..2 82318.978319: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
143857     kworker/1:1-25249 (25249) [001] d.s2 82318.978387: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
143858     kworker/1:1-25249 (25249) [001] d.s3 82318.978417: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
143859     kworker/1:1-25249 (25249) [001] d..2 82318.978437: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
143860     kworker/1:1-25249 (25249) [001] d..3 82318.978454: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
143861          <idle>-0     (-----) [002] d.s2 82318.978478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143862          <idle>-0     (-----) [002] dns3 82318.978501: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143863          <idle>-0     (-----) [002] .n.1 82318.978511: cpu_idle: state=4294967295 cpu_id=2
143864          <idle>-0     (-----) [002] d..2 82318.978523: 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
143865     rcu_preempt-7     (    7) [002] d..2 82318.978533: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
143866     rcu_preempt-7     (    7) [002] d..3 82318.978554: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
143867     rcu_preempt-7     (    7) [002] d..2 82318.978568: 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
143868         rcuop/0-10    (   10) [002] d..2 82318.978573: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
143869         rcuop/0-10    (   10) [002] d..3 82318.978589: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
143870         rcuop/0-10    (   10) [002] d..2 82318.978593: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143871         rcuop/0-10    (   10) [002] d..3 82318.978605: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143872     kworker/1:1-25249 (25249) [001] d..2 82318.978611: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
143873         rcuop/0-10    (   10) [002] d..2 82318.978616: 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
143874         rcuop/1-21    (   21) [002] d..2 82318.978634: 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
143875     rcu_preempt-7     (    7) [002] d..2 82318.978674: 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
143876   cds_mc_thread-16565 (16565) [001] d..2 82318.978706: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
143877          <idle>-0     (-----) [002] d..1 82318.978775: cpu_idle: state=0 cpu_id=2
143878 [email protected] (  798) [001] d..2 82318.979017: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143879          <idle>-0     (-----) [001] d..1 82318.979045: cpu_idle: state=0 cpu_id=1
143880    RenderThread-16607 (10023) [005] d..2 82318.979202: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
143881   Binder:8858_1-8871  ( 8858) [005] d..2 82318.979272: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143882          <idle>-0     (-----) [005] d..1 82318.979287: cpu_idle: state=0 cpu_id=5
143883          <idle>-0     (-----) [005] d.h2 82318.979300: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143884          <idle>-0     (-----) [005] d.h3 82318.979308: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
143885          <idle>-0     (-----) [005] dnh3 82318.979312: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143886          <idle>-0     (-----) [005] .n.1 82318.979319: cpu_idle: state=4294967295 cpu_id=5
143887          <idle>-0     (-----) [005] d..2 82318.979328: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
143888    RenderThread-16607 (10023) [005] .... 82318.979486: binder_transaction: transaction=1573191 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
143889    RenderThread-16607 (10023) [005] .... 82318.979490: binder_transaction_alloc_buf: transaction=1573191 data_size=192 offsets_size=8
143890    RenderThread-16607 (10023) [005] ...2 82318.979498: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
143891    RenderThread-16607 (10023) [005] d..4 82318.979501: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143892    RenderThread-16607 (10023) [005] d..5 82318.979512: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
143893    RenderThread-16607 (10023) [005] d..2 82318.979524: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
143894   Binder:8858_1-8871  ( 8858) [005] .... 82318.979533: binder_transaction_received: transaction=1573191
143895          <idle>-0     (-----) [002] ...1 82318.979536: cpu_idle: state=4294967295 cpu_id=2
143896          <idle>-0     (-----) [002] d..1 82318.979542: cpu_idle: state=0 cpu_id=2
143897   Binder:8858_1-8871  ( 8858) [005] .... 82318.979655: binder_transaction: transaction=1573192 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
143898   Binder:8858_1-8871  ( 8858) [005] .... 82318.979660: binder_transaction_alloc_buf: transaction=1573192 data_size=68 offsets_size=0
143899   Binder:8858_1-8871  ( 8858) [005] d..2 82318.979662: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
143900   Binder:8858_1-8871  ( 8858) [005] d..3 82318.979673: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
143901   Binder:8858_1-8871  ( 8858) [005] .... 82318.979675: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
143902   Binder:8858_1-8871  ( 8858) [005] d..2 82318.979707: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
143903    RenderThread-16607 (10023) [005] .... 82318.979717: binder_transaction_received: transaction=1573192
143904    RenderThread-16607 (10023) [005] d..2 82318.979790: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
143905          <idle>-0     (-----) [005] d..1 82318.979807: cpu_idle: state=0 cpu_id=5
143906          <idle>-0     (-----) [001] d.s3 82318.979876: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143907          <idle>-0     (-----) [001] dns4 82318.979890: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
143908          <idle>-0     (-----) [001] .n.1 82318.979910: cpu_idle: state=4294967295 cpu_id=1
143909          <idle>-0     (-----) [001] d..2 82318.979927: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
143910     kworker/1:1-25249 (25249) [001] d..2 82318.979997: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
143911          <idle>-0     (-----) [005] ...1 82318.980006: cpu_idle: state=4294967295 cpu_id=5
143912          <idle>-0     (-----) [005] d..1 82318.980010: cpu_idle: state=0 cpu_id=5
143913     kworker/1:1-25249 (25249) [001] d..3 82318.980022: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
143914     kworker/1:1-25249 (25249) [001] d..2 82318.980052: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
143915   cds_mc_thread-16565 (16565) [001] d..2 82318.980316: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143916          <idle>-0     (-----) [001] d..1 82318.980339: cpu_idle: state=0 cpu_id=1
143917          <idle>-0     (-----) [000] d.h3 82318.980613: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
143918          <idle>-0     (-----) [000] dnh4 82318.980633: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
143919          <idle>-0     (-----) [000] .n.1 82318.980648: cpu_idle: state=4294967295 cpu_id=0
143920          <idle>-0     (-----) [000] d..2 82318.980662: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
143921 kgsl_worker_thr-258   (  258) [000] d..2 82318.980723: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
143922          <idle>-0     (-----) [002] d.h2 82318.980774: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
143923 kgsl_worker_thr-258   (  258) [000] d..3 82318.980777: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143924          <idle>-0     (-----) [002] dnh3 82318.980790: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
143925          <idle>-0     (-----) [002] .n.1 82318.980800: cpu_idle: state=4294967295 cpu_id=2
143926 kgsl_worker_thr-258   (  258) [000] d..2 82318.980803: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143927          <idle>-0     (-----) [002] d..2 82318.980814: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
143928        DispSync-8879  ( 8858) [002] d..1 82318.980835: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
143929        DispSync-8879  ( 8858) [002] d..2 82318.980855: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
143930          <idle>-0     (-----) [003] .n.1 82318.980861: cpu_idle: state=4294967295 cpu_id=3
143931          <idle>-0     (-----) [003] d..2 82318.980875: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
143932        DispSync-8879  ( 8858) [002] d..2 82318.980895: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
143933          <idle>-0     (-----) [002] d..1 82318.980910: cpu_idle: state=0 cpu_id=2
143934   sfEventThread-8882  ( 8858) [003] d..3 82318.980927: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143935   sfEventThread-8882  ( 8858) [003] d..4 82318.980952: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143936          <idle>-0     (-----) [001] .n.1 82318.980960: cpu_idle: state=4294967295 cpu_id=1
143937  kworker/u16:13-1147  ( 1147) [000] d..2 82318.980974: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143938          <idle>-0     (-----) [001] d..2 82318.980974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
143939          <idle>-0     (-----) [000] d..1 82318.980996: cpu_idle: state=0 cpu_id=0
143940   sfEventThread-8882  ( 8858) [003] d..2 82318.980997: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143941          <idle>-0     (-----) [003] d..1 82318.981015: cpu_idle: state=0 cpu_id=3
143942  surfaceflinger-8858  ( 8858) [001] d..1 82318.981406: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
143943  surfaceflinger-8858  ( 8858) [001] d..2 82318.981435: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
143944          <idle>-0     (-----) [003] .n.1 82318.981441: cpu_idle: state=4294967295 cpu_id=3
143945          <idle>-0     (-----) [003] d..2 82318.981454: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
143946   sfEventThread-8882  ( 8858) [003] d..2 82318.981497: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143947          <idle>-0     (-----) [003] d..1 82318.981509: cpu_idle: state=0 cpu_id=3
143948  surfaceflinger-8858  ( 8858) [001] ...1 82318.981675: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
143949  surfaceflinger-8858  ( 8858) [001] ...1 82318.981685: tracing_mark_write: E|8858
143950  surfaceflinger-8858  ( 8858) [001] .... 82318.981755: binder_transaction: transaction=1573193 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
143951  surfaceflinger-8858  ( 8858) [001] .... 82318.981762: binder_transaction_alloc_buf: transaction=1573193 data_size=540 offsets_size=96
143952  surfaceflinger-8858  ( 8858) [001] d.s2 82318.981827: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143953  surfaceflinger-8858  ( 8858) [001] d.s3 82318.981852: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
143954          <idle>-0     (-----) [000] .n.1 82318.981858: cpu_idle: state=4294967295 cpu_id=0
143955          <idle>-0     (-----) [000] d..2 82318.981876: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
143956  surfaceflinger-8858  ( 8858) [001] ...2 82318.981891: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
143957  surfaceflinger-8858  ( 8858) [001] d..4 82318.981909: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
143958  surfaceflinger-8858  ( 8858) [001] d..5 82318.981932: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
143959          <idle>-0     (-----) [003] .n.1 82318.981938: cpu_idle: state=4294967295 cpu_id=3
143960          <idle>-0     (-----) [003] d..2 82318.981953: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
143961 [email protected]   (  619) [003] .... 82318.981975: binder_transaction_received: transaction=1573193
143962  surfaceflinger-8858  ( 8858) [001] d..2 82318.981992: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143963          <idle>-0     (-----) [001] d..1 82318.982016: cpu_idle: state=0 cpu_id=1
143964 [email protected]   (  619) [003] ...1 82318.982037: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
143965  kworker/u16:13-1147  ( 1147) [000] d..2 82318.982116: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
143966          <idle>-0     (-----) [000] d..1 82318.982133: cpu_idle: state=0 cpu_id=0
143967 [email protected]   (  619) [003] ...1 82318.982177: tracing_mark_write: B|619|HWCSession::PresentDisplay::
143968 [email protected]   (  619) [003] ...1 82318.982376: tracing_mark_write: B|619|HWDeviceDRM::Commit::
143969 [email protected]   (  619) [003] ...1 82318.982392: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
143970 [email protected]   (  619) [003] d..2 82318.983075: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143971 [email protected]   (  619) [003] d..3 82318.983105: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
143972          <idle>-0     (-----) [002] .n.1 82318.983110: cpu_idle: state=4294967295 cpu_id=2
143973          <idle>-0     (-----) [002] d..2 82318.983125: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
143974 [email protected]   (  619) [003] ...1 82318.983232: tracing_mark_write: E|619
143975 [email protected]   (  619) [003] ...1 82318.983240: tracing_mark_write: E|619
143976 [email protected]   (  619) [003] ...1 82318.983308: tracing_mark_write: E|619
143977 [email protected]   (  619) [003] ...1 82318.983361: tracing_mark_write: E|619
143978 [email protected]   (  619) [003] .... 82318.983381: binder_transaction: transaction=1573194 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
143979 [email protected]   (  619) [003] .... 82318.983386: binder_transaction_alloc_buf: transaction=1573194 data_size=576 offsets_size=112
143980 [email protected]   (  619) [003] d..2 82318.983412: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143981 [email protected]   (  619) [003] d..3 82318.983435: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
143982          <idle>-0     (-----) [001] .n.1 82318.983442: cpu_idle: state=4294967295 cpu_id=1
143983 [email protected]   (  619) [003] .... 82318.983442: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
143984          <idle>-0     (-----) [001] d..2 82318.983455: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
143985  surfaceflinger-8858  ( 8858) [001] .... 82318.983466: binder_transaction_received: transaction=1573194
143986 [email protected]   (  619) [003] d..2 82318.983551: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
143987          <idle>-0     (-----) [003] d..1 82318.983577: cpu_idle: state=0 cpu_id=3
143988 crtc_commit:111-321   (  321) [002] d..2 82318.983907: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
143989          <idle>-0     (-----) [002] d..1 82318.983921: cpu_idle: state=0 cpu_id=2
143990  surfaceflinger-8858  ( 8858) [001] d..2 82318.983970: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
143991          <idle>-0     (-----) [001] d..1 82318.983997: cpu_idle: state=0 cpu_id=1
143992          <idle>-0     (-----) [002] d.s2 82318.985143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143993          <idle>-0     (-----) [002] dns3 82318.985167: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
143994          <idle>-0     (-----) [002] .n.1 82318.985182: cpu_idle: state=4294967295 cpu_id=2
143995          <idle>-0     (-----) [002] d..2 82318.985194: 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
143996     rcu_preempt-7     (    7) [002] d..2 82318.985208: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
143997     rcu_preempt-7     (    7) [002] d..3 82318.985227: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
143998     rcu_preempt-7     (    7) [002] d..2 82318.985241: 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
143999         rcuop/0-10    (   10) [002] d..2 82318.985245: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
144000         rcuop/0-10    (   10) [002] d..3 82318.985260: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
144001         rcuop/0-10    (   10) [002] d..2 82318.985264: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144002         rcuop/0-10    (   10) [002] d..3 82318.985276: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144003         rcuop/0-10    (   10) [002] d..2 82318.985287: 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
144004         rcuop/1-21    (   21) [002] d..2 82318.985304: 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
144005     rcu_preempt-7     (    7) [002] d..2 82318.985337: 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
144006          <idle>-0     (-----) [002] d..1 82318.985354: cpu_idle: state=0 cpu_id=2
144007          <idle>-0     (-----) [001] ...1 82318.985867: cpu_idle: state=4294967295 cpu_id=1
144008          <idle>-0     (-----) [001] d..1 82318.985874: cpu_idle: state=0 cpu_id=1
144009          <idle>-0     (-----) [000] d.h5 82318.988876: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144010          <idle>-0     (-----) [000] dnh6 82318.988894: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144011          <idle>-0     (-----) [000] dnh5 82318.988900: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144012          <idle>-0     (-----) [000] dnh6 82318.988915: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144013          <idle>-0     (-----) [002] .n.1 82318.988923: cpu_idle: state=4294967295 cpu_id=2
144014          <idle>-0     (-----) [000] .n.1 82318.988931: cpu_idle: state=4294967295 cpu_id=0
144015          <idle>-0     (-----) [002] d..2 82318.988938: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
144016          <idle>-0     (-----) [000] d..2 82318.988947: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
144017  crtc_event:111-322   (  322) [000] d..2 82318.988988: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144018          <idle>-0     (-----) [000] d..2 82318.988993: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
144019          <idle>-0     (-----) [000] dn.3 82318.989008: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
144020          <idle>-0     (-----) [000] d..2 82318.989019: 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
144021     ksoftirqd/0-3     (    3) [000] d..2 82318.989046: 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
144022          <idle>-0     (-----) [000] d..1 82318.989062: cpu_idle: state=0 cpu_id=0
144023 crtc_commit:111-321   (  321) [002] d..2 82318.989096: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
144024          <idle>-0     (-----) [002] d..1 82318.989108: cpu_idle: state=0 cpu_id=2
144025          <idle>-0     (-----) [004] d.h2 82318.990832: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144026          <idle>-0     (-----) [004] dnh3 82318.990842: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144027          <idle>-0     (-----) [004] .n.1 82318.990849: cpu_idle: state=4294967295 cpu_id=4
144028          <idle>-0     (-----) [004] d..2 82318.990857: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
144029 s.nexuslauncher-10023 (10023) [004] d..2 82318.990902: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
144030          <idle>-0     (-----) [004] d..1 82318.990913: cpu_idle: state=0 cpu_id=4
144031          <idle>-0     (-----) [000] d.h5 82318.991202: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144032          <idle>-0     (-----) [000] d.h6 82318.991221: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144033          <idle>-0     (-----) [002] .n.1 82318.991228: cpu_idle: state=4294967295 cpu_id=2
144034          <idle>-0     (-----) [002] d..2 82318.991237: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
144035          <idle>-0     (-----) [000] ...1 82318.991239: cpu_idle: state=4294967295 cpu_id=0
144036          <idle>-0     (-----) [000] d..1 82318.991246: cpu_idle: state=0 cpu_id=0
144037 crtc_commit:111-321   (  321) [002] d..2 82318.991312: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144038          <idle>-0     (-----) [002] d..1 82318.991322: cpu_idle: state=0 cpu_id=2
144039          <idle>-0     (-----) [000] d.h5 82318.991492: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144040          <idle>-0     (-----) [000] dnh6 82318.991504: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144041          <idle>-0     (-----) [000] .n.1 82318.991518: cpu_idle: state=4294967295 cpu_id=0
144042          <idle>-0     (-----) [000] d..2 82318.991530: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
144043  crtc_event:111-322   (  322) [000] d..2 82318.991557: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144044          <idle>-0     (-----) [000] d..1 82318.991570: cpu_idle: state=0 cpu_id=0
144045          <idle>-0     (-----) [002] d.s3 82318.991888: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144046          <idle>-0     (-----) [002] d.s4 82318.991912: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144047          <idle>-0     (-----) [002] d.s2 82318.991917: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144048          <idle>-0     (-----) [000] .n.1 82318.991918: cpu_idle: state=4294967295 cpu_id=0
144049          <idle>-0     (-----) [000] d..2 82318.991932: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
144050          <idle>-0     (-----) [002] dns3 82318.991937: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144051          <idle>-0     (-----) [002] dns3 82318.991943: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144052          <idle>-0     (-----) [002] dns4 82318.991963: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144053  crtc_event:111-322   (  322) [000] d..2 82318.991974: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144054          <idle>-0     (-----) [002] dns3 82318.991981: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
144055          <idle>-0     (-----) [002] dns4 82318.992024: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
144056          <idle>-0     (-----) [002] .n.1 82318.992051: cpu_idle: state=4294967295 cpu_id=2
144057          <idle>-0     (-----) [002] d..2 82318.992064: 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
144058     rcu_preempt-7     (    7) [002] d..2 82318.992095: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
144059  kworker/u16:15-1311  ( 1311) [002] d..2 82318.992129: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144060          <idle>-0     (-----) [002] d..1 82318.992154: cpu_idle: state=0 cpu_id=2
144061  kworker/u16:13-1147  ( 1147) [000] d..2 82318.992174: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144062          <idle>-0     (-----) [000] d..1 82318.992191: cpu_idle: state=0 cpu_id=0
144063          <idle>-0     (-----) [002] d.h2 82318.993238: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144064          <idle>-0     (-----) [002] dnh3 82318.993255: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
144065          <idle>-0     (-----) [002] .n.1 82318.993264: cpu_idle: state=4294967295 cpu_id=2
144066          <idle>-0     (-----) [002] d..2 82318.993277: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
144067        DispSync-8879  ( 8858) [002] d..1 82318.993295: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
144068        DispSync-8879  ( 8858) [002] d..2 82318.993319: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144069          <idle>-0     (-----) [003] .n.1 82318.993328: cpu_idle: state=4294967295 cpu_id=3
144070          <idle>-0     (-----) [003] d..2 82318.993344: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144071        DispSync-8879  ( 8858) [002] d..2 82318.993357: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144072          <idle>-0     (-----) [002] d..1 82318.993371: cpu_idle: state=0 cpu_id=2
144073  appEventThread-8881  ( 8858) [003] d..3 82318.993409: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144074          <idle>-0     (-----) [004] dnh2 82318.993442: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144075          <idle>-0     (-----) [004] .n.1 82318.993446: cpu_idle: state=4294967295 cpu_id=4
144076          <idle>-0     (-----) [004] d..2 82318.993455: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
144077  appEventThread-8881  ( 8858) [003] d..2 82318.993483: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144078          <idle>-0     (-----) [003] d..1 82318.993503: cpu_idle: state=0 cpu_id=3
144079 s.nexuslauncher-10023 (10023) [004] .... 82318.993641: binder_transaction: transaction=1573195 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
144080 s.nexuslauncher-10023 (10023) [004] .... 82318.993647: binder_transaction_alloc_buf: transaction=1573195 data_size=80 offsets_size=0
144081 s.nexuslauncher-10023 (10023) [004] d..4 82318.993651: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
144082          <idle>-0     (-----) [000] dnh2 82318.993716: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144083          <idle>-0     (-----) [000] .n.1 82318.993723: cpu_idle: state=4294967295 cpu_id=0
144084          <idle>-0     (-----) [000] d..2 82318.993737: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
144085   Binder:8858_1-8871  ( 8858) [000] .... 82318.993747: binder_transaction_received: transaction=1573195
144086   Binder:8858_1-8871  ( 8858) [000] d..1 82318.993788: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144087   Binder:8858_1-8871  ( 8858) [000] d..2 82318.993811: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144088          <idle>-0     (-----) [003] .n.1 82318.993819: cpu_idle: state=4294967295 cpu_id=3
144089          <idle>-0     (-----) [003] d..2 82318.993832: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144090 s.nexuslauncher-10023 (10023) [004] d..2 82318.993840: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
144091          <idle>-0     (-----) [004] d..1 82318.993856: cpu_idle: state=0 cpu_id=4
144092   Binder:8858_1-8871  ( 8858) [000] d..2 82318.993867: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144093  appEventThread-8881  ( 8858) [003] d..2 82318.993881: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144094          <idle>-0     (-----) [000] d..1 82318.993886: cpu_idle: state=0 cpu_id=0
144095          <idle>-0     (-----) [003] d..1 82318.993895: cpu_idle: state=0 cpu_id=3
144096          <idle>-0     (-----) [002] d.h2 82318.997245: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144097          <idle>-0     (-----) [002] dnh3 82318.997259: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
144098          <idle>-0     (-----) [002] .n.1 82318.997269: cpu_idle: state=4294967295 cpu_id=2
144099          <idle>-0     (-----) [002] d..2 82318.997282: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
144100        DispSync-8879  ( 8858) [002] d..1 82318.997297: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
144101        DispSync-8879  ( 8858) [002] d..2 82318.997313: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
144102          <idle>-0     (-----) [003] .n.1 82318.997319: cpu_idle: state=4294967295 cpu_id=3
144103          <idle>-0     (-----) [003] d..2 82318.997334: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
144104        DispSync-8879  ( 8858) [002] d..2 82318.997354: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144105          <idle>-0     (-----) [002] d..2 82318.997359: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144106   sfEventThread-8882  ( 8858) [003] d..3 82318.997369: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
144107          <idle>-0     (-----) [002] dn.3 82318.997373: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144108          <idle>-0     (-----) [002] d..2 82318.997383: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
144109   sfEventThread-8882  ( 8858) [003] d..4 82318.997393: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
144110          <idle>-0     (-----) [001] .n.1 82318.997399: cpu_idle: state=4294967295 cpu_id=1
144111     ksoftirqd/2-26    (   26) [002] d..2 82318.997413: 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
144112          <idle>-0     (-----) [001] d..2 82318.997415: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
144113          <idle>-0     (-----) [002] d..1 82318.997424: cpu_idle: state=0 cpu_id=2
144114   sfEventThread-8882  ( 8858) [003] d..2 82318.997435: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144115          <idle>-0     (-----) [003] d..1 82318.997452: cpu_idle: state=0 cpu_id=3
144116  surfaceflinger-8858  ( 8858) [001] d..1 82318.997837: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
144117  surfaceflinger-8858  ( 8858) [001] d..2 82318.997865: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
144118          <idle>-0     (-----) [003] .n.1 82318.997870: cpu_idle: state=4294967295 cpu_id=3
144119          <idle>-0     (-----) [003] d..2 82318.997883: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
144120   sfEventThread-8882  ( 8858) [003] d..2 82318.997923: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144121          <idle>-0     (-----) [003] d..1 82318.997936: cpu_idle: state=0 cpu_id=3
144122  surfaceflinger-8858  ( 8858) [001] ...1 82318.997977: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
144123  surfaceflinger-8858  ( 8858) [001] ...1 82318.997986: tracing_mark_write: E|8858
144124  surfaceflinger-8858  ( 8858) [001] .... 82318.998045: binder_transaction: transaction=1573196 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
144125  surfaceflinger-8858  ( 8858) [001] .... 82318.998052: binder_transaction_alloc_buf: transaction=1573196 data_size=540 offsets_size=96
144126  surfaceflinger-8858  ( 8858) [001] ...2 82318.998077: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
144127  surfaceflinger-8858  ( 8858) [001] d..4 82318.998083: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
144128  surfaceflinger-8858  ( 8858) [001] d..5 82318.998109: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
144129          <idle>-0     (-----) [003] .n.1 82318.998114: cpu_idle: state=4294967295 cpu_id=3
144130          <idle>-0     (-----) [003] d..2 82318.998126: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
144131 [email protected]   (  619) [003] .... 82318.998138: binder_transaction_received: transaction=1573196
144132  surfaceflinger-8858  ( 8858) [001] d..2 82318.998153: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144133          <idle>-0     (-----) [001] d..1 82318.998178: cpu_idle: state=0 cpu_id=1
144134 [email protected]   (  619) [003] ...1 82318.998185: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
144135 [email protected]   (  619) [003] ...1 82318.998293: tracing_mark_write: B|619|HWCSession::PresentDisplay::
144136          <idle>-0     (-----) [002] d.s2 82318.998468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144137          <idle>-0     (-----) [002] dns3 82318.998488: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144138 [email protected]   (  619) [003] d.s2 82318.998495: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144139          <idle>-0     (-----) [002] .n.1 82318.998498: cpu_idle: state=4294967295 cpu_id=2
144140          <idle>-0     (-----) [002] d..2 82318.998510: 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
144141     rcu_preempt-7     (    7) [002] d..2 82318.998521: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
144142     rcu_preempt-7     (    7) [002] d..3 82318.998544: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
144143 [email protected]   (  619) [003] d.s3 82318.998559: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
144144 [email protected]   (  619) [003] d.s2 82318.998568: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
144145     rcu_preempt-7     (    7) [002] d..2 82318.998576: 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
144146         rcuop/0-10    (   10) [002] d..2 82318.998581: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
144147 [email protected]   (  619) [003] d.s3 82318.998584: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
144148         rcuop/0-10    (   10) [002] d..3 82318.998597: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
144149         rcuop/0-10    (   10) [002] d..2 82318.998600: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144150         rcuop/0-10    (   10) [002] d..3 82318.998612: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144151         rcuop/0-10    (   10) [002] d..2 82318.998622: 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
144152 [email protected]   (  619) [003] ...1 82318.998629: tracing_mark_write: B|619|HWDeviceDRM::Commit::
144153         rcuop/1-21    (   21) [002] d..2 82318.998641: 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
144154 [email protected]   (  619) [003] ...1 82318.998645: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
144155     rcu_preempt-7     (    7) [002] d..2 82318.998655: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144156  kworker/u16:13-1147  ( 1147) [002] d..2 82318.998993: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
144157          <idle>-0     (-----) [002] d..1 82318.999015: cpu_idle: state=0 cpu_id=2
144158          <idle>-0     (-----) [001] d.s3 82318.999020: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
144159          <idle>-0     (-----) [001] d.s4 82318.999036: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
144160          <idle>-0     (-----) [001] d.s4 82318.999048: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
144161          <idle>-0     (-----) [002] .n.1 82318.999056: cpu_idle: state=4294967295 cpu_id=2
144162          <idle>-0     (-----) [001] ...1 82318.999063: cpu_idle: state=4294967295 cpu_id=1
144163          <idle>-0     (-----) [001] d..1 82318.999070: cpu_idle: state=0 cpu_id=1
144164          <idle>-0     (-----) [002] d..2 82318.999071: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144165  kworker/u16:13-1147  ( 1147) [002] d..2 82318.999112: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144166          <idle>-0     (-----) [002] d..1 82318.999124: cpu_idle: state=0 cpu_id=2
144167 [email protected]   (  619) [003] d..2 82318.999245: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144168 [email protected]   (  619) [003] d..3 82318.999276: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144169          <idle>-0     (-----) [002] .n.1 82318.999281: cpu_idle: state=4294967295 cpu_id=2
144170          <idle>-0     (-----) [002] d..2 82318.999293: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
144171 [email protected]   (  619) [003] ...1 82318.999396: tracing_mark_write: E|619
144172 [email protected]   (  619) [003] ...1 82318.999404: tracing_mark_write: E|619
144173 [email protected]   (  619) [003] ...1 82318.999466: tracing_mark_write: E|619
144174 crtc_commit:111-321   (  321) [002] d.s1 82318.999479: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144175 crtc_commit:111-321   (  321) [002] d.s2 82318.999493: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144176 [email protected]   (  619) [003] ...1 82318.999512: tracing_mark_write: E|619
144177 [email protected]   (  619) [003] .... 82318.999529: binder_transaction: transaction=1573197 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
144178 [email protected]   (  619) [003] .... 82318.999535: binder_transaction_alloc_buf: transaction=1573197 data_size=576 offsets_size=112
144179 [email protected]   (  619) [003] d..2 82318.999560: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
144180 [email protected]   (  619) [003] d..3 82318.999583: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
144181 [email protected]   (  619) [003] .... 82318.999589: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
144182          <idle>-0     (-----) [001] dns2 82318.999613: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
144183          <idle>-0     (-----) [001] dns3 82318.999629: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
144184          <idle>-0     (-----) [001] .n.1 82318.999636: cpu_idle: state=4294967295 cpu_id=1
144185          <idle>-0     (-----) [001] d..2 82318.999650: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
144186  surfaceflinger-8858  ( 8858) [001] .... 82318.999662: binder_transaction_received: transaction=1573197
144187 [email protected]   (  619) [003] d..2 82318.999679: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
144188     kworker/3:1-25210 (25210) [003] d..2 82318.999744: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144189          <idle>-0     (-----) [003] d..1 82318.999767: cpu_idle: state=0 cpu_id=3
144190 crtc_commit:111-321   (  321) [002] d..2 82319.000075: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
144191  surfaceflinger-8858  ( 8858) [001] d..2 82319.000092: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
144192     ksoftirqd/1-18    (   18) [001] d.s2 82319.000147: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144193     ksoftirqd/1-18    (   18) [001] d.s3 82319.000167: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144194     ksoftirqd/2-26    (   26) [002] d..2 82319.000174: 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
144195     ksoftirqd/1-18    (   18) [001] d..2 82319.000192: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144196     kworker/1:1-25249 (25249) [001] d..2 82319.000254: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
144197          <idle>-0     (-----) [002] d..1 82319.000260: cpu_idle: state=0 cpu_id=2
144198     kworker/1:1-25249 (25249) [001] d..3 82319.000284: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
144199     kworker/1:1-25249 (25249) [001] d..2 82319.000298: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144200     kworker/1:1-25249 (25249) [001] d..3 82319.000315: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144201     kworker/1:1-25249 (25249) [001] d..2 82319.000345: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
144202 wlan_logging_th-647   (  647) [001] d..2 82319.000375: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
144203 wlan_logging_th-647   (  647) [001] d..3 82319.000399: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
144204 wlan_logging_th-647   (  647) [001] d..2 82319.000423: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
144205   cds_mc_thread-16565 (16565) [001] d..2 82319.000667: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
144206 [email protected] (  798) [001] d..2 82319.000781: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144207          <idle>-0     (-----) [001] d..1 82319.000807: cpu_idle: state=0 cpu_id=1
144208          <idle>-0     (-----) [001] d..2 82319.002660: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
144209          <idle>-0     (-----) [001] dn.3 82319.002673: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
144210          <idle>-0     (-----) [001] .n.1 82319.002678: cpu_idle: state=4294967295 cpu_id=1
144211          <idle>-0     (-----) [001] d..2 82319.002695: 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
144212     ksoftirqd/1-18    (   18) [001] d.s2 82319.002706: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
144213     ksoftirqd/1-18    (   18) [001] d.s3 82319.002752: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
144214     ksoftirqd/1-18    (   18) [001] d..2 82319.002770: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144215  kworker/u16:13-1147  ( 1147) [001] d..2 82319.002894: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144216          <idle>-0     (-----) [001] d..1 82319.002914: cpu_idle: state=0 cpu_id=1
144217          <idle>-0     (-----) [002] d.s2 82319.005142: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144218          <idle>-0     (-----) [002] dns3 82319.005167: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144219          <idle>-0     (-----) [002] .n.1 82319.005180: cpu_idle: state=4294967295 cpu_id=2
144220          <idle>-0     (-----) [002] d..2 82319.005195: 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
144221     rcu_preempt-7     (    7) [002] d..2 82319.005208: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
144222     rcu_preempt-7     (    7) [002] d..3 82319.005225: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
144223     rcu_preempt-7     (    7) [002] d..2 82319.005238: 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
144224         rcuop/0-10    (   10) [002] d..2 82319.005242: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
144225         rcuop/0-10    (   10) [002] d..3 82319.005257: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
144226         rcuop/0-10    (   10) [002] d..2 82319.005260: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144227         rcuop/0-10    (   10) [002] d..3 82319.005272: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144228         rcuop/0-10    (   10) [002] d..2 82319.005281: 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
144229         rcuop/1-21    (   21) [002] d..2 82319.005294: 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
144230          <idle>-0     (-----) [000] d.h5 82319.005322: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144231     rcu_preempt-7     (    7) [002] d..2 82319.005330: 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
144232          <idle>-0     (-----) [000] dnh6 82319.005338: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144233          <idle>-0     (-----) [000] dnh5 82319.005343: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144234          <idle>-0     (-----) [002] d..1 82319.005345: cpu_idle: state=0 cpu_id=2
144235          <idle>-0     (-----) [000] dnh6 82319.005359: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144236          <idle>-0     (-----) [002] .n.1 82319.005365: cpu_idle: state=4294967295 cpu_id=2
144237          <idle>-0     (-----) [000] .n.1 82319.005374: cpu_idle: state=4294967295 cpu_id=0
144238          <idle>-0     (-----) [002] d..2 82319.005378: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
144239          <idle>-0     (-----) [000] d..2 82319.005390: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
144240  crtc_event:111-322   (  322) [000] d..2 82319.005424: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144241          <idle>-0     (-----) [000] d..1 82319.005439: cpu_idle: state=0 cpu_id=0
144242 crtc_commit:111-321   (  321) [002] d..2 82319.005526: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
144243          <idle>-0     (-----) [002] d..1 82319.005538: cpu_idle: state=0 cpu_id=2
144244          <idle>-0     (-----) [000] d.h5 82319.007658: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144245          <idle>-0     (-----) [000] d.h6 82319.007677: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144246          <idle>-0     (-----) [002] .n.1 82319.007684: cpu_idle: state=4294967295 cpu_id=2
144247          <idle>-0     (-----) [002] d..2 82319.007693: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
144248          <idle>-0     (-----) [000] ...1 82319.007693: cpu_idle: state=4294967295 cpu_id=0
144249          <idle>-0     (-----) [000] d..1 82319.007700: cpu_idle: state=0 cpu_id=0
144250 crtc_commit:111-321   (  321) [002] d..2 82319.007762: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144251          <idle>-0     (-----) [002] d..1 82319.007773: cpu_idle: state=0 cpu_id=2
144252          <idle>-0     (-----) [000] d.h5 82319.007951: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144253          <idle>-0     (-----) [000] dnh6 82319.007963: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144254          <idle>-0     (-----) [000] .n.1 82319.007978: cpu_idle: state=4294967295 cpu_id=0
144255          <idle>-0     (-----) [000] d..2 82319.007989: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
144256  crtc_event:111-322   (  322) [000] d..2 82319.008016: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144257          <idle>-0     (-----) [000] d..1 82319.008029: cpu_idle: state=0 cpu_id=0
144258          <idle>-0     (-----) [002] d.s3 82319.008477: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144259          <idle>-0     (-----) [002] d.s4 82319.008501: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144260          <idle>-0     (-----) [000] .n.1 82319.008506: cpu_idle: state=4294967295 cpu_id=0
144261          <idle>-0     (-----) [000] d..2 82319.008521: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
144262          <idle>-0     (-----) [002] ...1 82319.008526: cpu_idle: state=4294967295 cpu_id=2
144263          <idle>-0     (-----) [002] d..1 82319.008532: cpu_idle: state=0 cpu_id=2
144264  crtc_event:111-322   (  322) [000] d..2 82319.008557: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144265          <idle>-0     (-----) [000] d..1 82319.008569: cpu_idle: state=0 cpu_id=0
144266          <idle>-0     (-----) [002] d.h2 82319.009694: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144267          <idle>-0     (-----) [002] dnh3 82319.009708: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
144268          <idle>-0     (-----) [002] .n.1 82319.009716: cpu_idle: state=4294967295 cpu_id=2
144269          <idle>-0     (-----) [002] d..2 82319.009725: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
144270        DispSync-8879  ( 8858) [002] d..1 82319.009743: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144271        DispSync-8879  ( 8858) [002] d..2 82319.009759: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144272          <idle>-0     (-----) [003] .n.1 82319.009767: cpu_idle: state=4294967295 cpu_id=3
144273          <idle>-0     (-----) [003] d..2 82319.009782: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144274        DispSync-8879  ( 8858) [002] d..2 82319.009799: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144275          <idle>-0     (-----) [002] d..1 82319.009809: cpu_idle: state=0 cpu_id=2
144276  appEventThread-8881  ( 8858) [003] d..3 82319.009840: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144277          <idle>-0     (-----) [004] dnh2 82319.009871: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144278          <idle>-0     (-----) [004] .n.1 82319.009876: cpu_idle: state=4294967295 cpu_id=4
144279          <idle>-0     (-----) [004] d..2 82319.009886: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
144280  appEventThread-8881  ( 8858) [003] d..2 82319.009910: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144281          <idle>-0     (-----) [003] d..1 82319.009930: cpu_idle: state=0 cpu_id=3
144282 s.nexuslauncher-10023 (10023) [004] .... 82319.010026: binder_transaction: transaction=1573198 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
144283 s.nexuslauncher-10023 (10023) [004] .... 82319.010031: binder_transaction_alloc_buf: transaction=1573198 data_size=80 offsets_size=0
144284 s.nexuslauncher-10023 (10023) [004] d..4 82319.010035: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144285          <idle>-0     (-----) [000] dnh2 82319.010065: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144286          <idle>-0     (-----) [000] .n.1 82319.010072: cpu_idle: state=4294967295 cpu_id=0
144287          <idle>-0     (-----) [000] d..2 82319.010084: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
144288   Binder:8858_1-8871  ( 8858) [000] .... 82319.010094: binder_transaction_received: transaction=1573198
144289   Binder:8858_1-8871  ( 8858) [000] d..1 82319.010129: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144290 s.nexuslauncher-10023 (10023) [004] d..2 82319.010144: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
144291   Binder:8858_1-8871  ( 8858) [000] d..2 82319.010151: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144292          <idle>-0     (-----) [003] .n.1 82319.010158: cpu_idle: state=4294967295 cpu_id=3
144293          <idle>-0     (-----) [004] d..1 82319.010159: cpu_idle: state=0 cpu_id=4
144294          <idle>-0     (-----) [003] d..2 82319.010170: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144295   Binder:8858_1-8871  ( 8858) [000] d..2 82319.010202: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144296  appEventThread-8881  ( 8858) [003] d..2 82319.010217: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144297          <idle>-0     (-----) [000] d..1 82319.010221: cpu_idle: state=0 cpu_id=0
144298          <idle>-0     (-----) [003] d..1 82319.010231: cpu_idle: state=0 cpu_id=3
144299          <idle>-0     (-----) [002] d.H3 82319.011883: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
144300          <idle>-0     (-----) [002] d.H4 82319.011905: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
144301          <idle>-0     (-----) [003] .n.1 82319.011911: cpu_idle: state=4294967295 cpu_id=3
144302          <idle>-0     (-----) [002] d.s2 82319.011914: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144303          <idle>-0     (-----) [003] d..2 82319.011925: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
144304          <idle>-0     (-----) [002] dns3 82319.011935: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144305          <idle>-0     (-----) [002] dns3 82319.011943: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
144306         sugov:0-576   (  576) [003] .... 82319.011963: clk_set_rate: pwrcl_clk 652800000
144307         sugov:0-576   (  576) [003] .... 82319.011979: clk_set_rate: cpu3_pwrcl_clk 748800000
144308          <idle>-0     (-----) [002] dns4 82319.011983: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
144309         sugov:0-576   (  576) [003] .... 82319.011990: clk_set_rate: cpu2_pwrcl_clk 748800000
144310          <idle>-0     (-----) [002] .n.1 82319.011997: cpu_idle: state=4294967295 cpu_id=2
144311         sugov:0-576   (  576) [003] .... 82319.011999: clk_set_rate: cpu1_pwrcl_clk 748800000
144312         sugov:0-576   (  576) [003] .... 82319.012008: clk_set_rate: cpu0_pwrcl_clk 652800000
144313          <idle>-0     (-----) [002] d..2 82319.012009: 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
144314     rcu_preempt-7     (    7) [002] d..2 82319.012037: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144315         sugov:0-576   (  576) [003] .... 82319.012124: cpu_frequency: state=652800 cpu_id=0
144316         sugov:0-576   (  576) [003] .... 82319.012148: cpu_frequency: state=652800 cpu_id=1
144317         sugov:0-576   (  576) [003] .... 82319.012154: cpu_frequency: state=652800 cpu_id=2
144318         sugov:0-576   (  576) [003] .... 82319.012169: cpu_frequency: state=652800 cpu_id=3
144319         sugov:0-576   (  576) [003] d..2 82319.012228: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144320          <idle>-0     (-----) [003] d..1 82319.012272: cpu_idle: state=0 cpu_id=3
144321          <idle>-0     (-----) [003] ...1 82319.012289: cpu_idle: state=4294967295 cpu_id=3
144322          <idle>-0     (-----) [003] d..1 82319.012295: cpu_idle: state=0 cpu_id=3
144323  kworker/u16:13-1147  ( 1147) [002] d..2 82319.012324: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144324          <idle>-0     (-----) [002] d..1 82319.012342: cpu_idle: state=0 cpu_id=2
144325          <idle>-0     (-----) [002] d.h2 82319.013700: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144326          <idle>-0     (-----) [002] dnh3 82319.013719: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
144327          <idle>-0     (-----) [002] .n.1 82319.013730: cpu_idle: state=4294967295 cpu_id=2
144328          <idle>-0     (-----) [002] d..2 82319.013744: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
144329        DispSync-8879  ( 8858) [002] d..1 82319.013763: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
144330        DispSync-8879  ( 8858) [002] d..2 82319.013781: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
144331          <idle>-0     (-----) [003] .n.1 82319.013786: cpu_idle: state=4294967295 cpu_id=3
144332          <idle>-0     (-----) [003] d..2 82319.013801: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
144333        DispSync-8879  ( 8858) [002] d..2 82319.013821: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144334          <idle>-0     (-----) [002] d..1 82319.013838: cpu_idle: state=0 cpu_id=2
144335   sfEventThread-8882  ( 8858) [003] d..3 82319.013842: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
144336   sfEventThread-8882  ( 8858) [003] d..4 82319.013869: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
144337          <idle>-0     (-----) [001] .n.1 82319.013876: cpu_idle: state=4294967295 cpu_id=1
144338          <idle>-0     (-----) [001] d..2 82319.013892: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
144339   sfEventThread-8882  ( 8858) [003] d..2 82319.013915: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144340          <idle>-0     (-----) [003] d..1 82319.013934: cpu_idle: state=0 cpu_id=3
144341  surfaceflinger-8858  ( 8858) [001] d..2 82319.014113: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144342          <idle>-0     (-----) [001] d..1 82319.014136: cpu_idle: state=0 cpu_id=1
144343          <idle>-0     (-----) [002] d..2 82319.018108: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144344          <idle>-0     (-----) [002] dn.3 82319.018125: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144345          <idle>-0     (-----) [002] .n.1 82319.018130: cpu_idle: state=4294967295 cpu_id=2
144346          <idle>-0     (-----) [002] d..2 82319.018150: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
144347          <idle>-0     (-----) [000] d.h2 82319.018162: sched_waking: comm=CCodecWatchdog pid=25284 prio=120 target_cpu=000
144348          <idle>-0     (-----) [001] d.s3 82319.018164: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144349          <idle>-0     (-----) [001] dns4 82319.018184: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144350          <idle>-0     (-----) [000] dnh3 82319.018187: sched_wakeup: comm=CCodecWatchdog pid=25284 prio=120 target_cpu=000
144351     ksoftirqd/2-26    (   26) [002] d..2 82319.018190: 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
144352          <idle>-0     (-----) [000] .n.1 82319.018198: cpu_idle: state=4294967295 cpu_id=0
144353          <idle>-0     (-----) [002] d..1 82319.018202: cpu_idle: state=0 cpu_id=2
144354          <idle>-0     (-----) [001] .n.1 82319.018203: cpu_idle: state=4294967295 cpu_id=1
144355          <idle>-0     (-----) [000] d..2 82319.018216: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=25284 next_prio=120
144356          <idle>-0     (-----) [001] d..2 82319.018222: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144357     kworker/1:1-25249 (25249) [001] d..2 82319.018263: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
144358     kworker/1:1-25249 (25249) [001] d..3 82319.018282: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
144359     kworker/1:1-25249 (25249) [001] d..2 82319.018317: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
144360  CCodecWatchdog-25284 (  900) [000] d..2 82319.018348: sched_switch: prev_comm=CCodecWatchdog prev_pid=25284 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144361          <idle>-0     (-----) [000] d..1 82319.018369: cpu_idle: state=0 cpu_id=0
144362          <idle>-0     (-----) [002] ...1 82319.018402: cpu_idle: state=4294967295 cpu_id=2
144363          <idle>-0     (-----) [002] d..1 82319.018409: cpu_idle: state=0 cpu_id=2
144364          <idle>-0     (-----) [002] d.s2 82319.018471: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144365          <idle>-0     (-----) [002] dns3 82319.018496: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144366          <idle>-0     (-----) [002] .n.1 82319.018506: cpu_idle: state=4294967295 cpu_id=2
144367          <idle>-0     (-----) [002] d..2 82319.018520: 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
144368     rcu_preempt-7     (    7) [002] d..2 82319.018531: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
144369 [email protected] (  798) [001] d.s2 82319.018533: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144370 [email protected] (  798) [001] dns3 82319.018550: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144371     rcu_preempt-7     (    7) [002] d..3 82319.018553: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
144372 [email protected] (  798) [001] dns1 82319.018561: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
144373     rcu_preempt-7     (    7) [002] d..2 82319.018568: 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
144374         rcuop/0-10    (   10) [002] d..2 82319.018573: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
144375 [email protected] (  798) [001] dns2 82319.018575: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
144376 [email protected] (  798) [001] d..2 82319.018589: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144377         rcuop/0-10    (   10) [002] d..3 82319.018590: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
144378         rcuop/0-10    (   10) [002] d..2 82319.018602: 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
144379         rcuop/1-21    (   21) [002] d..2 82319.018650: 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
144380          <idle>-0     (-----) [002] d..1 82319.018668: cpu_idle: state=0 cpu_id=2
144381     kworker/1:1-25249 (25249) [001] d..2 82319.018669: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
144382     ksoftirqd/1-18    (   18) [001] d..2 82319.018683: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
144383 [email protected] (  798) [001] d..2 82319.018894: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144384          <idle>-0     (-----) [001] d..1 82319.018919: cpu_idle: state=0 cpu_id=1
144385          <idle>-0     (-----) [001] d.s3 82319.019679: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144386          <idle>-0     (-----) [001] dns4 82319.019694: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144387          <idle>-0     (-----) [001] .n.1 82319.019719: cpu_idle: state=4294967295 cpu_id=1
144388          <idle>-0     (-----) [001] d..2 82319.019736: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144389     kworker/1:1-25249 (25249) [001] d..2 82319.019771: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
144390     kworker/1:1-25249 (25249) [001] d..3 82319.019786: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
144391     kworker/1:1-25249 (25249) [001] d..2 82319.019818: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
144392 [email protected] (  798) [001] d..2 82319.019983: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144393          <idle>-0     (-----) [001] d..1 82319.020007: cpu_idle: state=0 cpu_id=1
144394          <idle>-0     (-----) [001] d.s3 82319.020392: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144395          <idle>-0     (-----) [001] dns4 82319.020405: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144396          <idle>-0     (-----) [001] dns3 82319.020433: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144397          <idle>-0     (-----) [001] dns4 82319.020457: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144398          <idle>-0     (-----) [001] .n.1 82319.020476: cpu_idle: state=4294967295 cpu_id=1
144399          <idle>-0     (-----) [001] d..2 82319.020494: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
144400   cds_mc_thread-16565 (16565) [001] d..2 82319.020581: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144401     kworker/1:1-25249 (25249) [001] d..2 82319.020619: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
144402     kworker/1:1-25249 (25249) [001] d..3 82319.020636: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
144403     kworker/1:1-25249 (25249) [001] d..2 82319.020665: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
144404          <idle>-0     (-----) [002] ...1 82319.020698: cpu_idle: state=4294967295 cpu_id=2
144405          <idle>-0     (-----) [002] d..1 82319.020706: cpu_idle: state=0 cpu_id=2
144406 [email protected] (  798) [001] d..2 82319.020840: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144407          <idle>-0     (-----) [001] d..1 82319.020864: cpu_idle: state=0 cpu_id=1
144408          <idle>-0     (-----) [000] d.h5 82319.021791: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144409          <idle>-0     (-----) [000] dnh6 82319.021812: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
144410          <idle>-0     (-----) [000] .n.1 82319.021831: cpu_idle: state=4294967295 cpu_id=0
144411          <idle>-0     (-----) [000] d..2 82319.021854: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
144412  crtc_event:111-322   (  322) [000] d..2 82319.021896: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144413          <idle>-0     (-----) [000] d..2 82319.021902: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
144414          <idle>-0     (-----) [000] dn.3 82319.021916: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
144415          <idle>-0     (-----) [000] d..2 82319.021927: 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
144416     ksoftirqd/0-3     (    3) [000] d.s2 82319.021940: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
144417     ksoftirqd/0-3     (    3) [000] d.s3 82319.021990: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144418     ksoftirqd/0-3     (    3) [000] d..2 82319.022013: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144419  kworker/u16:13-1147  ( 1147) [000] d..2 82319.022173: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144420          <idle>-0     (-----) [000] d..1 82319.022196: cpu_idle: state=0 cpu_id=0
144421          <idle>-0     (-----) [000] ...1 82319.024432: cpu_idle: state=4294967295 cpu_id=0
144422          <idle>-0     (-----) [000] d..1 82319.024440: cpu_idle: state=0 cpu_id=0
144423          <idle>-0     (-----) [002] d.h2 82319.026173: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144424          <idle>-0     (-----) [002] dnh3 82319.026193: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
144425          <idle>-0     (-----) [002] .n.1 82319.026203: cpu_idle: state=4294967295 cpu_id=2
144426          <idle>-0     (-----) [002] d..2 82319.026219: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
144427        DispSync-8879  ( 8858) [002] d..1 82319.026238: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144428        DispSync-8879  ( 8858) [002] d..2 82319.026258: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144429          <idle>-0     (-----) [003] .n.1 82319.026265: cpu_idle: state=4294967295 cpu_id=3
144430          <idle>-0     (-----) [003] d..2 82319.026282: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144431        DispSync-8879  ( 8858) [002] d..2 82319.026311: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144432          <idle>-0     (-----) [002] d..2 82319.026317: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144433  appEventThread-8881  ( 8858) [003] d..3 82319.026325: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144434          <idle>-0     (-----) [002] dn.3 82319.026329: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144435          <idle>-0     (-----) [002] d..2 82319.026340: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
144436          <idle>-0     (-----) [004] dnh2 82319.026358: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144437          <idle>-0     (-----) [004] .n.1 82319.026363: cpu_idle: state=4294967295 cpu_id=4
144438     ksoftirqd/2-26    (   26) [002] d..2 82319.026370: 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
144439          <idle>-0     (-----) [004] d..2 82319.026373: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
144440          <idle>-0     (-----) [002] d..1 82319.026386: cpu_idle: state=0 cpu_id=2
144441  appEventThread-8881  ( 8858) [003] d..2 82319.026396: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144442          <idle>-0     (-----) [003] d..1 82319.026416: cpu_idle: state=0 cpu_id=3
144443 s.nexuslauncher-10023 (10023) [004] .... 82319.026496: binder_transaction: transaction=1573199 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
144444 s.nexuslauncher-10023 (10023) [004] .... 82319.026500: binder_transaction_alloc_buf: transaction=1573199 data_size=80 offsets_size=0
144445 s.nexuslauncher-10023 (10023) [004] d..4 82319.026504: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144446          <idle>-0     (-----) [000] dnh2 82319.026536: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144447          <idle>-0     (-----) [000] .n.1 82319.026543: cpu_idle: state=4294967295 cpu_id=0
144448          <idle>-0     (-----) [000] d..2 82319.026560: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
144449   Binder:8858_1-8871  ( 8858) [000] .... 82319.026572: binder_transaction_received: transaction=1573199
144450 s.nexuslauncher-10023 (10023) [004] d..2 82319.026587: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
144451          <idle>-0     (-----) [004] d..1 82319.026601: cpu_idle: state=0 cpu_id=4
144452   Binder:8858_1-8871  ( 8858) [000] d..1 82319.026615: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144453   Binder:8858_1-8871  ( 8858) [000] d..2 82319.026641: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144454          <idle>-0     (-----) [003] .n.1 82319.026649: cpu_idle: state=4294967295 cpu_id=3
144455          <idle>-0     (-----) [003] d..2 82319.026663: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144456   Binder:8858_1-8871  ( 8858) [000] d..2 82319.026704: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144457  appEventThread-8881  ( 8858) [003] d..2 82319.026716: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144458          <idle>-0     (-----) [000] d..1 82319.026727: cpu_idle: state=0 cpu_id=0
144459          <idle>-0     (-----) [003] d..1 82319.026730: cpu_idle: state=0 cpu_id=3
144460          <idle>-0     (-----) [002] d.h2 82319.030174: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144461          <idle>-0     (-----) [002] dnh3 82319.030190: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
144462          <idle>-0     (-----) [002] .n.1 82319.030201: cpu_idle: state=4294967295 cpu_id=2
144463          <idle>-0     (-----) [002] d..2 82319.030215: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
144464        DispSync-8879  ( 8858) [002] d..1 82319.030231: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
144465        DispSync-8879  ( 8858) [002] d..2 82319.030249: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
144466          <idle>-0     (-----) [003] .n.1 82319.030255: cpu_idle: state=4294967295 cpu_id=3
144467          <idle>-0     (-----) [003] d..2 82319.030270: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
144468        DispSync-8879  ( 8858) [002] d..2 82319.030293: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144469   sfEventThread-8882  ( 8858) [003] d..1 82319.030295: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144470          <idle>-0     (-----) [002] d..2 82319.030298: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144471          <idle>-0     (-----) [002] dn.3 82319.030311: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144472   sfEventThread-8882  ( 8858) [003] d..2 82319.030321: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
144473          <idle>-0     (-----) [002] d..2 82319.030331: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
144474        DispSync-8879  ( 8858) [002] d..2 82319.030357: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
144475   sfEventThread-8882  ( 8858) [003] d..2 82319.030376: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144476     ksoftirqd/2-26    (   26) [002] d..2 82319.030386: 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
144477          <idle>-0     (-----) [003] d..1 82319.030394: cpu_idle: state=0 cpu_id=3
144478          <idle>-0     (-----) [002] d..1 82319.030403: cpu_idle: state=0 cpu_id=2
144479          <idle>-0     (-----) [002] d..2 82319.040794: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144480          <idle>-0     (-----) [002] dn.3 82319.040813: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144481          <idle>-0     (-----) [002] .n.1 82319.040819: cpu_idle: state=4294967295 cpu_id=2
144482          <idle>-0     (-----) [002] d..2 82319.040840: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
144483     ksoftirqd/2-26    (   26) [002] d.s2 82319.040850: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144484          <idle>-0     (-----) [000] d..2 82319.040885: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
144485     ksoftirqd/2-26    (   26) [002] d.s3 82319.040902: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
144486          <idle>-0     (-----) [000] dn.3 82319.040909: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
144487          <idle>-0     (-----) [000] .n.1 82319.040914: cpu_idle: state=4294967295 cpu_id=0
144488     ksoftirqd/2-26    (   26) [002] d..2 82319.040923: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144489          <idle>-0     (-----) [000] d..2 82319.040934: 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
144490     ksoftirqd/0-3     (    3) [000] d..2 82319.040977: 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
144491          <idle>-0     (-----) [000] d..1 82319.041030: cpu_idle: state=0 cpu_id=0
144492  kworker/u16:13-1147  ( 1147) [002] d..2 82319.041099: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144493          <idle>-0     (-----) [002] d..1 82319.041117: cpu_idle: state=0 cpu_id=2
144494          <idle>-0     (-----) [002] d.h2 82319.042602: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144495          <idle>-0     (-----) [002] dnh3 82319.042622: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
144496          <idle>-0     (-----) [002] .n.1 82319.042633: cpu_idle: state=4294967295 cpu_id=2
144497          <idle>-0     (-----) [002] d..2 82319.042647: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
144498        DispSync-8879  ( 8858) [002] d..1 82319.042666: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144499        DispSync-8879  ( 8858) [002] d..2 82319.042685: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144500          <idle>-0     (-----) [003] .n.1 82319.042691: cpu_idle: state=4294967295 cpu_id=3
144501          <idle>-0     (-----) [003] d..2 82319.042707: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144502        DispSync-8879  ( 8858) [002] d..2 82319.042733: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144503          <idle>-0     (-----) [002] d..2 82319.042738: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144504  appEventThread-8881  ( 8858) [003] d..3 82319.042747: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144505          <idle>-0     (-----) [002] dn.3 82319.042750: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
144506          <idle>-0     (-----) [002] d..2 82319.042761: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
144507          <idle>-0     (-----) [004] dnh2 82319.042779: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144508          <idle>-0     (-----) [004] .n.1 82319.042784: cpu_idle: state=4294967295 cpu_id=4
144509     ksoftirqd/2-26    (   26) [002] d..2 82319.042789: 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
144510          <idle>-0     (-----) [004] d..2 82319.042793: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
144511          <idle>-0     (-----) [002] d..1 82319.042806: cpu_idle: state=0 cpu_id=2
144512  appEventThread-8881  ( 8858) [003] d..2 82319.042813: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144513          <idle>-0     (-----) [003] d..1 82319.042832: cpu_idle: state=0 cpu_id=3
144514 s.nexuslauncher-10023 (10023) [004] .... 82319.042907: binder_transaction: transaction=1573200 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
144515 s.nexuslauncher-10023 (10023) [004] .... 82319.042912: binder_transaction_alloc_buf: transaction=1573200 data_size=80 offsets_size=0
144516 s.nexuslauncher-10023 (10023) [004] d..4 82319.042916: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144517          <idle>-0     (-----) [000] dnh2 82319.042946: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144518          <idle>-0     (-----) [000] .n.1 82319.042954: cpu_idle: state=4294967295 cpu_id=0
144519          <idle>-0     (-----) [000] d..2 82319.042968: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
144520   Binder:8858_1-8871  ( 8858) [000] .... 82319.042979: binder_transaction_received: transaction=1573200
144521 s.nexuslauncher-10023 (10023) [004] d..2 82319.042998: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
144522          <idle>-0     (-----) [004] d..1 82319.043012: cpu_idle: state=0 cpu_id=4
144523   Binder:8858_1-8871  ( 8858) [000] d..1 82319.043013: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144524   Binder:8858_1-8871  ( 8858) [000] d..2 82319.043036: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144525          <idle>-0     (-----) [003] .n.1 82319.043043: cpu_idle: state=4294967295 cpu_id=3
144526          <idle>-0     (-----) [003] d..2 82319.043057: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144527   Binder:8858_1-8871  ( 8858) [000] d..2 82319.043091: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144528  appEventThread-8881  ( 8858) [003] d..2 82319.043106: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144529          <idle>-0     (-----) [000] d..1 82319.043112: cpu_idle: state=0 cpu_id=0
144530          <idle>-0     (-----) [003] d..1 82319.043121: cpu_idle: state=0 cpu_id=3
144531          <idle>-0     (-----) [000] d..2 82319.057351: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
144532          <idle>-0     (-----) [000] dn.3 82319.057366: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
144533          <idle>-0     (-----) [000] dns3 82319.057450: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
144534          <idle>-0     (-----) [000] dns4 82319.057499: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144535          <idle>-0     (-----) [000] .n.1 82319.057516: cpu_idle: state=4294967295 cpu_id=0
144536          <idle>-0     (-----) [000] d..2 82319.057537: 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
144537     ksoftirqd/0-3     (    3) [000] d..2 82319.057552: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144538  kworker/u16:13-1147  ( 1147) [000] d..2 82319.057876: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
144539          <idle>-0     (-----) [000] d..1 82319.057894: cpu_idle: state=0 cpu_id=0
144540          <idle>-0     (-----) [001] d.s3 82319.057897: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144541          <idle>-0     (-----) [001] d.s4 82319.057914: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
144542          <idle>-0     (-----) [001] d.s4 82319.057926: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144543          <idle>-0     (-----) [000] .n.1 82319.057934: cpu_idle: state=4294967295 cpu_id=0
144544          <idle>-0     (-----) [001] ...1 82319.057940: cpu_idle: state=4294967295 cpu_id=1
144545          <idle>-0     (-----) [000] d..2 82319.057947: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144546          <idle>-0     (-----) [001] d..1 82319.057950: cpu_idle: state=0 cpu_id=1
144547  kworker/u16:13-1147  ( 1147) [000] d..2 82319.057986: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144548          <idle>-0     (-----) [000] d..1 82319.057997: cpu_idle: state=0 cpu_id=0
144549          <idle>-0     (-----) [000] d.s3 82319.058482: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144550          <idle>-0     (-----) [000] dns4 82319.058499: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144551          <idle>-0     (-----) [000] .n.1 82319.058522: cpu_idle: state=4294967295 cpu_id=0
144552          <idle>-0     (-----) [000] d..2 82319.058534: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144553  kworker/u16:13-1147  ( 1147) [000] d..2 82319.058620: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
144554          <idle>-0     (-----) [000] d..1 82319.058635: cpu_idle: state=0 cpu_id=0
144555          <idle>-0     (-----) [000] d.h2 82319.058701: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144556          <idle>-0     (-----) [000] d.h3 82319.058713: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
144557          <idle>-0     (-----) [000] dnh3 82319.058720: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144558          <idle>-0     (-----) [000] .n.1 82319.058730: cpu_idle: state=4294967295 cpu_id=0
144559          <idle>-0     (-----) [000] d..2 82319.058744: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144560  kworker/u16:13-1147  ( 1147) [000] d..2 82319.058840: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
144561          <idle>-0     (-----) [000] d..1 82319.058853: cpu_idle: state=0 cpu_id=0
144562          <idle>-0     (-----) [000] d.h2 82319.058926: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144563          <idle>-0     (-----) [000] d.h3 82319.058938: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
144564          <idle>-0     (-----) [000] dnh3 82319.058943: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144565          <idle>-0     (-----) [000] .n.1 82319.058953: cpu_idle: state=4294967295 cpu_id=0
144566          <idle>-0     (-----) [000] d..2 82319.058967: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144567  kworker/u16:13-1147  ( 1147) [000] d..2 82319.059047: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
144568          <idle>-0     (-----) [000] d..1 82319.059059: cpu_idle: state=0 cpu_id=0
144569          <idle>-0     (-----) [002] d.h2 82319.059101: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144570          <idle>-0     (-----) [002] dnh3 82319.059120: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
144571          <idle>-0     (-----) [002] .n.1 82319.059130: cpu_idle: state=4294967295 cpu_id=2
144572          <idle>-0     (-----) [000] d.h2 82319.059135: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144573          <idle>-0     (-----) [002] d..2 82319.059143: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
144574          <idle>-0     (-----) [000] d.h3 82319.059146: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
144575          <idle>-0     (-----) [000] dnh3 82319.059152: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144576        DispSync-8879  ( 8858) [002] d..1 82319.059159: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144577          <idle>-0     (-----) [000] .n.1 82319.059162: cpu_idle: state=4294967295 cpu_id=0
144578          <idle>-0     (-----) [000] d..2 82319.059176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144579        DispSync-8879  ( 8858) [002] d..2 82319.059178: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144580          <idle>-0     (-----) [003] .n.1 82319.059185: cpu_idle: state=4294967295 cpu_id=3
144581          <idle>-0     (-----) [003] d..2 82319.059201: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144582  kworker/u16:13-1147  ( 1147) [000] d..2 82319.059209: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
144583        DispSync-8879  ( 8858) [002] d..2 82319.059218: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144584          <idle>-0     (-----) [000] d..1 82319.059221: cpu_idle: state=0 cpu_id=0
144585          <idle>-0     (-----) [002] d..1 82319.059235: cpu_idle: state=0 cpu_id=2
144586  appEventThread-8881  ( 8858) [003] d..3 82319.059237: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144587          <idle>-0     (-----) [004] dnh2 82319.059267: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144588          <idle>-0     (-----) [004] .n.1 82319.059271: cpu_idle: state=4294967295 cpu_id=4
144589          <idle>-0     (-----) [004] d..2 82319.059280: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
144590          <idle>-0     (-----) [000] d.h2 82319.059297: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144591  appEventThread-8881  ( 8858) [003] d..2 82319.059300: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144592          <idle>-0     (-----) [000] d.h3 82319.059308: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
144593          <idle>-0     (-----) [000] dnh3 82319.059314: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144594          <idle>-0     (-----) [003] d..1 82319.059319: cpu_idle: state=0 cpu_id=3
144595          <idle>-0     (-----) [000] .n.1 82319.059323: cpu_idle: state=4294967295 cpu_id=0
144596          <idle>-0     (-----) [000] d..2 82319.059336: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144597  kworker/u16:13-1147  ( 1147) [000] d..2 82319.059367: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
144598          <idle>-0     (-----) [000] d..1 82319.059379: cpu_idle: state=0 cpu_id=0
144599 s.nexuslauncher-10023 (10023) [004] .... 82319.059388: binder_transaction: transaction=1573201 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
144600 s.nexuslauncher-10023 (10023) [004] .... 82319.059393: binder_transaction_alloc_buf: transaction=1573201 data_size=80 offsets_size=0
144601 s.nexuslauncher-10023 (10023) [004] d..4 82319.059396: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144602          <idle>-0     (-----) [000] dnh2 82319.059428: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144603          <idle>-0     (-----) [000] .n.1 82319.059435: cpu_idle: state=4294967295 cpu_id=0
144604          <idle>-0     (-----) [000] d..2 82319.059447: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
144605   Binder:8858_1-8871  ( 8858) [000] d.h3 82319.059456: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144606   Binder:8858_1-8871  ( 8858) [000] d.h4 82319.059475: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_wait_for_lowest_idle+0x2a0/0x730
144607 s.nexuslauncher-10023 (10023) [004] d..2 82319.059479: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
144608   Binder:8858_1-8871  ( 8858) [000] d.h4 82319.059481: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144609          <idle>-0     (-----) [004] d..1 82319.059492: cpu_idle: state=0 cpu_id=4
144610   Binder:8858_1-8871  ( 8858) [000] .... 82319.059495: binder_transaction_received: transaction=1573201
144611   Binder:8858_1-8871  ( 8858) [000] d..1 82319.059533: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144612   Binder:8858_1-8871  ( 8858) [000] d..2 82319.059556: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144613          <idle>-0     (-----) [003] .n.1 82319.059564: cpu_idle: state=4294967295 cpu_id=3
144614          <idle>-0     (-----) [003] d..2 82319.059578: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144615   Binder:8858_1-8871  ( 8858) [000] d..2 82319.059602: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144616  appEventThread-8881  ( 8858) [003] d..2 82319.059627: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144617          <idle>-0     (-----) [003] d..1 82319.059642: cpu_idle: state=0 cpu_id=3
144618  kworker/u16:13-1147  ( 1147) [000] d..2 82319.059831: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
144619          <idle>-0     (-----) [000] d..1 82319.059855: cpu_idle: state=0 cpu_id=0
144620          <idle>-0     (-----) [001] d.s3 82319.059857: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144621          <idle>-0     (-----) [001] d.s4 82319.059871: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
144622          <idle>-0     (-----) [001] d.s4 82319.059881: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144623          <idle>-0     (-----) [000] .n.1 82319.059890: cpu_idle: state=4294967295 cpu_id=0
144624          <idle>-0     (-----) [001] ...1 82319.059892: cpu_idle: state=4294967295 cpu_id=1
144625          <idle>-0     (-----) [001] d..1 82319.059901: cpu_idle: state=0 cpu_id=1
144626          <idle>-0     (-----) [000] d..2 82319.059907: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144627  kworker/u16:13-1147  ( 1147) [000] d..2 82319.059981: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
144628          <idle>-0     (-----) [000] d..1 82319.059994: cpu_idle: state=0 cpu_id=0
144629          <idle>-0     (-----) [000] d.h2 82319.060073: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144630          <idle>-0     (-----) [000] d.h3 82319.060086: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
144631          <idle>-0     (-----) [000] dnh3 82319.060092: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144632          <idle>-0     (-----) [000] .n.1 82319.060104: cpu_idle: state=4294967295 cpu_id=0
144633          <idle>-0     (-----) [000] d..2 82319.060118: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144634  kworker/u16:13-1147  ( 1147) [000] d..2 82319.060208: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
144635          <idle>-0     (-----) [000] d..1 82319.060221: cpu_idle: state=0 cpu_id=0
144636          <idle>-0     (-----) [000] d.h2 82319.060298: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144637          <idle>-0     (-----) [000] d.h3 82319.060310: sched_blocked_reason: pid=1147 iowait=0 caller=a6xx_rpmh_gpu_pwrctrl+0x13d4/0x3168
144638          <idle>-0     (-----) [000] dnh3 82319.060315: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
144639          <idle>-0     (-----) [000] .n.1 82319.060325: cpu_idle: state=4294967295 cpu_id=0
144640          <idle>-0     (-----) [000] d..2 82319.060339: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
144641  kworker/u16:13-1147  ( 1147) [000] d..1 82319.060353: clk_disable: gpu_cc_cx_gmu_clk
144642  kworker/u16:13-1147  ( 1147) [000] d..1 82319.060374: clk_disable: gpu_cc_gmu_clk_src
144643  kworker/u16:13-1147  ( 1147) [000] d..1 82319.060406: clk_disable: gcc_gpu_gpll0_div_clk_src
144644          <idle>-0     (-----) [002] ...1 82319.060448: cpu_idle: state=4294967295 cpu_id=2
144645          <idle>-0     (-----) [002] d..1 82319.060457: cpu_idle: state=0 cpu_id=2
144646          <idle>-0     (-----) [001] d.s3 82319.060466: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144647          <idle>-0     (-----) [001] dns4 82319.060482: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144648          <idle>-0     (-----) [001] .n.1 82319.060500: cpu_idle: state=4294967295 cpu_id=1
144649          <idle>-0     (-----) [001] d..2 82319.060519: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144650     kworker/1:1-25249 (25249) [001] d..2 82319.060553: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
144651     kworker/1:1-25249 (25249) [001] d..3 82319.060570: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
144652     kworker/1:1-25249 (25249) [001] d..2 82319.060606: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
144653          <idle>-0     (-----) [002] ...1 82319.060727: cpu_idle: state=4294967295 cpu_id=2
144654          <idle>-0     (-----) [002] d..1 82319.060734: cpu_idle: state=0 cpu_id=2
144655 [email protected] (  798) [001] d..2 82319.060782: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144656          <idle>-0     (-----) [001] d..1 82319.060805: cpu_idle: state=0 cpu_id=1
144657  kworker/u16:13-1147  ( 1147) [000] d..1 82319.060917: clk_disable: gpll0_out_even
144658  kworker/u16:13-1147  ( 1147) [000] d..1 82319.060960: clk_disable: gpu_cc_cxo_clk
144659  kworker/u16:13-1147  ( 1147) [000] d..1 82319.060975: clk_disable: gcc_ddrss_gpu_axi_clk
144660  kworker/u16:13-1147  ( 1147) [000] d..1 82319.060998: clk_disable: gcc_gpu_memnoc_gfx_clk
144661  kworker/u16:13-1147  ( 1147) [000] d..2 82319.061151: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
144662  kworker/u16:13-1147  ( 1147) [000] d..3 82319.061206: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
144663          <idle>-0     (-----) [002] ...1 82319.061246: cpu_idle: state=4294967295 cpu_id=2
144664          <idle>-0     (-----) [003] ...1 82319.061249: cpu_idle: state=4294967295 cpu_id=3
144665          <idle>-0     (-----) [004] ...1 82319.061252: cpu_idle: state=4294967295 cpu_id=4
144666          <idle>-0     (-----) [005] ...1 82319.061254: cpu_idle: state=4294967295 cpu_id=5
144667          <idle>-0     (-----) [002] d..1 82319.061254: cpu_idle: state=0 cpu_id=2
144668          <idle>-0     (-----) [003] d..1 82319.061256: cpu_idle: state=2 cpu_id=3
144669          <idle>-0     (-----) [004] d..1 82319.061256: cpu_idle: state=2 cpu_id=4
144670          <idle>-0     (-----) [006] ...1 82319.061257: cpu_idle: state=4294967295 cpu_id=6
144671          <idle>-0     (-----) [005] d..1 82319.061259: cpu_idle: state=2 cpu_id=5
144672          <idle>-0     (-----) [007] ...1 82319.061260: cpu_idle: state=4294967295 cpu_id=7
144673          <idle>-0     (-----) [006] d..1 82319.061262: cpu_idle: state=2 cpu_id=6
144674          <idle>-0     (-----) [007] d..1 82319.061265: cpu_idle: state=2 cpu_id=7
144675  kworker/u16:13-1147  ( 1147) [000] d..2 82319.061449: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
144676  kworker/u16:15-1311  ( 1311) [000] d..2 82319.061479: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144677          <idle>-0     (-----) [000] d..1 82319.061503: cpu_idle: state=0 cpu_id=0
144678          <idle>-0     (-----) [001] d.s3 82319.062124: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144679          <idle>-0     (-----) [001] dns4 82319.062139: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144680          <idle>-0     (-----) [001] .n.1 82319.062192: cpu_idle: state=4294967295 cpu_id=1
144681          <idle>-0     (-----) [001] d..2 82319.062213: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144682     kworker/1:1-25249 (25249) [001] d..2 82319.062247: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
144683     kworker/1:1-25249 (25249) [001] d..3 82319.062262: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
144684     kworker/1:1-25249 (25249) [001] d..2 82319.062295: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
144685 [email protected] (  798) [001] d..2 82319.062472: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144686          <idle>-0     (-----) [001] d..2 82319.062479: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
144687          <idle>-0     (-----) [001] dn.3 82319.062493: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
144688          <idle>-0     (-----) [001] d..2 82319.062506: 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
144689     ksoftirqd/1-18    (   18) [001] d..2 82319.062534: 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
144690          <idle>-0     (-----) [001] d..1 82319.062555: cpu_idle: state=0 cpu_id=1
144691          <idle>-0     (-----) [000] ...1 82319.062625: cpu_idle: state=4294967295 cpu_id=0
144692          <idle>-0     (-----) [000] d..1 82319.062632: cpu_idle: state=0 cpu_id=0
144693          <idle>-0     (-----) [002] ...1 82319.063102: cpu_idle: state=4294967295 cpu_id=2
144694          <idle>-0     (-----) [002] d..1 82319.063108: cpu_idle: state=2 cpu_id=2
144695          <idle>-0     (-----) [001] d.s3 82319.063119: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144696          <idle>-0     (-----) [001] dns4 82319.063133: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144697          <idle>-0     (-----) [001] dns3 82319.063158: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144698          <idle>-0     (-----) [001] dns4 82319.063180: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144699          <idle>-0     (-----) [001] .n.1 82319.063198: cpu_idle: state=4294967295 cpu_id=1
144700          <idle>-0     (-----) [001] d..2 82319.063216: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144701     kworker/1:1-25249 (25249) [001] d..2 82319.063251: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
144702     kworker/1:1-25249 (25249) [001] d..3 82319.063272: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
144703     kworker/1:1-25249 (25249) [001] d..2 82319.063305: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
144704   cds_mc_thread-16565 (16565) [001] d.s2 82319.063409: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144705   cds_mc_thread-16565 (16565) [001] d.s3 82319.063426: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144706   cds_mc_thread-16565 (16565) [001] d..2 82319.063463: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144707     kworker/1:1-25249 (25249) [001] d..2 82319.063518: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
144708          <idle>-0     (-----) [002] ...1 82319.063700: cpu_idle: state=4294967295 cpu_id=2
144709          <idle>-0     (-----) [002] d..1 82319.063716: cpu_idle: state=0 cpu_id=2
144710          <idle>-0     (-----) [002] ...1 82319.063784: cpu_idle: state=4294967295 cpu_id=2
144711          <idle>-0     (-----) [002] d..1 82319.063795: cpu_idle: state=0 cpu_id=2
144712          <idle>-0     (-----) [002] ...1 82319.063944: cpu_idle: state=4294967295 cpu_id=2
144713          <idle>-0     (-----) [002] d..1 82319.063951: cpu_idle: state=0 cpu_id=2
144714 [email protected] (  798) [001] d..2 82319.063951: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144715          <idle>-0     (-----) [001] d..1 82319.063978: cpu_idle: state=0 cpu_id=1
144716          <idle>-0     (-----) [001] d.s3 82319.064070: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144717          <idle>-0     (-----) [001] dns4 82319.064085: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144718          <idle>-0     (-----) [001] .n.1 82319.064121: cpu_idle: state=4294967295 cpu_id=1
144719          <idle>-0     (-----) [001] d..2 82319.064141: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144720          <idle>-0     (-----) [002] ...1 82319.064141: cpu_idle: state=4294967295 cpu_id=2
144721          <idle>-0     (-----) [002] d..1 82319.064151: cpu_idle: state=0 cpu_id=2
144722     kworker/1:1-25249 (25249) [001] d..2 82319.064178: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
144723     kworker/1:1-25249 (25249) [001] d..3 82319.064194: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
144724     kworker/1:1-25249 (25249) [001] d..2 82319.064265: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144725     kworker/1:1-25249 (25249) [001] d..3 82319.064290: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144726     kworker/1:1-25249 (25249) [001] d..2 82319.064317: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
144727          <idle>-0     (-----) [002] ...1 82319.064320: cpu_idle: state=4294967295 cpu_id=2
144728          <idle>-0     (-----) [002] d..1 82319.064327: cpu_idle: state=0 cpu_id=2
144729   cds_mc_thread-16565 (16565) [001] d.s2 82319.064374: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144730   cds_mc_thread-16565 (16565) [001] d.s3 82319.064389: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144731          <idle>-0     (-----) [002] ...1 82319.064522: cpu_idle: state=4294967295 cpu_id=2
144732          <idle>-0     (-----) [002] d..1 82319.064531: cpu_idle: state=0 cpu_id=2
144733   cds_mc_thread-16565 (16565) [001] d..3 82319.064558: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
144734   cds_mc_thread-16565 (16565) [001] d..4 82319.064619: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
144735          <idle>-0     (-----) [000] .n.1 82319.064624: cpu_idle: state=4294967295 cpu_id=0
144736          <idle>-0     (-----) [000] d..2 82319.064642: 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
144737         rcuop/0-10    (   10) [000] d..2 82319.064650: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
144738         rcuop/0-10    (   10) [000] d..3 82319.064706: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
144739         rcuop/0-10    (   10) [000] d..2 82319.064722: 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
144740   cds_mc_thread-16565 (16565) [001] d..2 82319.064723: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144741     rcu_preempt-7     (    7) [000] d..2 82319.064753: 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
144742          <idle>-0     (-----) [000] d..1 82319.064768: cpu_idle: state=0 cpu_id=0
144743     kworker/1:1-25249 (25249) [001] d..2 82319.064778: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
144744     kworker/1:1-25249 (25249) [001] d..3 82319.064808: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
144745     kworker/1:1-25249 (25249) [001] d..2 82319.064817: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144746     kworker/1:1-25249 (25249) [001] d..3 82319.064833: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144747     kworker/1:1-25249 (25249) [001] d..2 82319.065010: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
144748 wlan_logging_th-647   (  647) [001] d..2 82319.065055: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
144749   cds_mc_thread-16565 (16565) [001] d.s2 82319.065158: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
144750   cds_mc_thread-16565 (16565) [001] d.s3 82319.065211: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
144751   cds_mc_thread-16565 (16565) [001] d.s2 82319.065273: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144752   cds_mc_thread-16565 (16565) [001] d.s3 82319.065287: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144753          <idle>-0     (-----) [002] ...1 82319.065651: cpu_idle: state=4294967295 cpu_id=2
144754          <idle>-0     (-----) [002] d..1 82319.065656: cpu_idle: state=2 cpu_id=2
144755   cds_mc_thread-16565 (16565) [001] d..2 82319.065683: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144756     kworker/1:1-25249 (25249) [001] d..2 82319.065766: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
144757     kworker/1:1-25249 (25249) [001] d..3 82319.065796: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
144758     kworker/1:1-25249 (25249) [001] d..2 82319.065804: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144759     kworker/1:1-25249 (25249) [001] d..3 82319.065820: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144760     kworker/1:1-25249 (25249) [001] d..2 82319.065848: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
144761 wlan_logging_th-647   (  647) [001] d..2 82319.065891: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
144762   cds_mc_thread-16565 (16565) [001] d..2 82319.066049: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
144763  kworker/u16:15-1311  ( 1311) [001] d..2 82319.066286: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> [email protected] next_pid=16588 next_prio=120
144764 [email protected] (  798) [001] d.s4 82319.066330: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
144765 [email protected] (  798) [001] d.s5 82319.066353: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
144766 [email protected] (  798) [001] d.s5 82319.066361: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
144767 [email protected] (  798) [001] d..2 82319.066704: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
144768  kworker/u16:15-1311  ( 1311) [001] .... 82319.066774: clk_set_rate: l3_cluster0_vote_clk 403200000
144769  kworker/u16:15-1311  ( 1311) [001] .... 82319.066785: clk_set_rate: l3_clk 403200000
144770  kworker/u16:15-1311  ( 1311) [001] d..2 82319.066860: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144771          <idle>-0     (-----) [001] d..1 82319.066885: cpu_idle: state=0 cpu_id=1
144772          <idle>-0     (-----) [001] ...1 82319.068466: cpu_idle: state=4294967295 cpu_id=1
144773          <idle>-0     (-----) [001] d..1 82319.068472: cpu_idle: state=0 cpu_id=1
144774          <idle>-0     (-----) [000] d.s2 82319.068476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
144775          <idle>-0     (-----) [000] dns3 82319.068496: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
144776          <idle>-0     (-----) [000] .n.1 82319.068519: cpu_idle: state=4294967295 cpu_id=0
144777          <idle>-0     (-----) [000] d..2 82319.068534: 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
144778     rcu_preempt-7     (    7) [000] d..2 82319.068547: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
144779     rcu_preempt-7     (    7) [000] d..3 82319.068565: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
144780     rcu_preempt-7     (    7) [000] d..2 82319.068579: 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
144781         rcuop/0-10    (   10) [000] d..2 82319.068584: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
144782         rcuop/0-10    (   10) [000] d..3 82319.068626: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
144783         rcuop/0-10    (   10) [000] d..2 82319.068630: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
144784         rcuop/0-10    (   10) [000] d..3 82319.068645: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
144785         rcuop/0-10    (   10) [000] d..2 82319.068657: 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
144786         rcuop/1-21    (   21) [000] d..2 82319.068672: 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
144787     rcu_preempt-7     (    7) [000] d..2 82319.068705: 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
144788          <idle>-0     (-----) [000] d..1 82319.068724: cpu_idle: state=0 cpu_id=0
144789          <idle>-0     (-----) [000] d..2 82319.073799: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
144790          <idle>-0     (-----) [000] dn.3 82319.073813: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
144791          <idle>-0     (-----) [000] dnH3 82319.073890: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
144792          <idle>-0     (-----) [000] dnH4 82319.073911: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
144793          <idle>-0     (-----) [000] dns3 82319.073924: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
144794          <idle>-0     (-----) [000] dns4 82319.073967: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
144795          <idle>-0     (-----) [000] .n.1 82319.073979: cpu_idle: state=4294967295 cpu_id=0
144796          <idle>-0     (-----) [000] d..2 82319.073998: 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
144797     ksoftirqd/0-3     (    3) [000] d..2 82319.074012: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
144798          <idle>-0     (-----) [003] .n.1 82319.074082: cpu_idle: state=4294967295 cpu_id=3
144799  kworker/u16:15-1311  ( 1311) [000] d..2 82319.074090: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144800          <idle>-0     (-----) [000] d..1 82319.074104: cpu_idle: state=0 cpu_id=0
144801          <idle>-0     (-----) [003] d..2 82319.074109: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
144802         sugov:0-576   (  576) [003] .... 82319.074146: clk_set_rate: pwrcl_clk 748800000
144803         sugov:0-576   (  576) [003] .... 82319.074161: clk_set_rate: cpu3_pwrcl_clk 652800000
144804         sugov:0-576   (  576) [003] .... 82319.074171: clk_set_rate: cpu2_pwrcl_clk 652800000
144805         sugov:0-576   (  576) [003] .... 82319.074180: clk_set_rate: cpu1_pwrcl_clk 652800000
144806         sugov:0-576   (  576) [003] .... 82319.074188: clk_set_rate: cpu0_pwrcl_clk 748800000
144807         sugov:0-576   (  576) [003] .... 82319.074198: cpu_frequency: state=748800 cpu_id=0
144808         sugov:0-576   (  576) [003] .... 82319.074223: cpu_frequency: state=748800 cpu_id=1
144809         sugov:0-576   (  576) [003] .... 82319.074228: cpu_frequency: state=748800 cpu_id=2
144810         sugov:0-576   (  576) [003] .... 82319.074232: cpu_frequency: state=748800 cpu_id=3
144811         sugov:0-576   (  576) [003] d..2 82319.074276: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144812          <idle>-0     (-----) [003] d..1 82319.074294: cpu_idle: state=2 cpu_id=3
144813          <idle>-0     (-----) [000] d.s2 82319.075134: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
144814          <idle>-0     (-----) [000] dns3 82319.075154: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
144815          <idle>-0     (-----) [000] dns3 82319.075160: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
144816          <idle>-0     (-----) [000] dns4 82319.075173: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
144817          <idle>-0     (-----) [000] .n.1 82319.075189: cpu_idle: state=4294967295 cpu_id=0
144818          <idle>-0     (-----) [000] d..2 82319.075200: 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
144819     rcu_preempt-7     (    7) [000] d..2 82319.075210: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
144820     rcu_preempt-7     (    7) [000] d..3 82319.075226: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
144821     rcu_preempt-7     (    7) [000] d..2 82319.075238: 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
144822         rcuop/0-10    (   10) [000] d..2 82319.075243: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
144823         rcuop/0-10    (   10) [000] d..3 82319.075258: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
144824         rcuop/0-10    (   10) [000] d..2 82319.075268: 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
144825         rcuop/1-21    (   21) [000] d..2 82319.075283: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
144826  kworker/u16:15-1311  ( 1311) [000] .... 82319.075317: clk_set_rate: l3_cluster0_vote_clk 300000000
144827  kworker/u16:15-1311  ( 1311) [000] .... 82319.075323: clk_set_rate: l3_clk 300000000
144828  kworker/u16:15-1311  ( 1311) [000] d..2 82319.075571: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
144829          <idle>-0     (-----) [000] d..1 82319.075588: cpu_idle: state=0 cpu_id=0
144830          <idle>-0     (-----) [001] d.s3 82319.075600: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
144831          <idle>-0     (-----) [001] d.s4 82319.075617: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
144832          <idle>-0     (-----) [001] d.s4 82319.075629: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
144833          <idle>-0     (-----) [000] .n.1 82319.075636: cpu_idle: state=4294967295 cpu_id=0
144834          <idle>-0     (-----) [001] ...1 82319.075640: cpu_idle: state=4294967295 cpu_id=1
144835          <idle>-0     (-----) [001] d..1 82319.075650: cpu_idle: state=0 cpu_id=1
144836          <idle>-0     (-----) [000] d..2 82319.075650: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
144837  kworker/u16:15-1311  ( 1311) [000] d..2 82319.075706: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144838          <idle>-0     (-----) [000] d..1 82319.075716: cpu_idle: state=0 cpu_id=0
144839          <idle>-0     (-----) [002] d.h2 82319.075747: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144840          <idle>-0     (-----) [002] dnh3 82319.075776: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
144841          <idle>-0     (-----) [002] .n.1 82319.075799: cpu_idle: state=4294967295 cpu_id=2
144842          <idle>-0     (-----) [002] d..2 82319.075817: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
144843        DispSync-8879  ( 8858) [002] d..1 82319.075846: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144844        DispSync-8879  ( 8858) [002] d..2 82319.075865: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144845        DispSync-8879  ( 8858) [002] d..2 82319.075915: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
144846          <idle>-0     (-----) [002] d..1 82319.075936: cpu_idle: state=0 cpu_id=2
144847          <idle>-0     (-----) [003] .n.1 82319.076034: cpu_idle: state=4294967295 cpu_id=3
144848          <idle>-0     (-----) [003] d..2 82319.076061: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144849  appEventThread-8881  ( 8858) [003] d..3 82319.076130: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144850  appEventThread-8881  ( 8858) [003] d..2 82319.076213: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144851          <idle>-0     (-----) [003] d..1 82319.076236: cpu_idle: state=0 cpu_id=3
144852          <idle>-0     (-----) [004] dnh2 82319.076936: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
144853          <idle>-0     (-----) [004] .n.1 82319.076945: cpu_idle: state=4294967295 cpu_id=4
144854          <idle>-0     (-----) [004] d..2 82319.076959: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
144855          <idle>-0     (-----) [002] ...1 82319.077071: cpu_idle: state=4294967295 cpu_id=2
144856          <idle>-0     (-----) [002] d..1 82319.077078: cpu_idle: state=2 cpu_id=2
144857 s.nexuslauncher-10023 (10023) [004] .... 82319.077187: binder_transaction: transaction=1573202 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
144858 s.nexuslauncher-10023 (10023) [004] .... 82319.077193: binder_transaction_alloc_buf: transaction=1573202 data_size=80 offsets_size=0
144859 s.nexuslauncher-10023 (10023) [004] d..4 82319.077197: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144860          <idle>-0     (-----) [001] ...1 82319.077223: cpu_idle: state=4294967295 cpu_id=1
144861          <idle>-0     (-----) [001] d..1 82319.077227: cpu_idle: state=0 cpu_id=1
144862          <idle>-0     (-----) [000] dnh2 82319.077232: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
144863          <idle>-0     (-----) [000] .n.1 82319.077240: cpu_idle: state=4294967295 cpu_id=0
144864          <idle>-0     (-----) [000] d..2 82319.077250: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
144865   Binder:8858_1-8871  ( 8858) [000] .... 82319.077261: binder_transaction_received: transaction=1573202
144866 s.nexuslauncher-10023 (10023) [004] d..2 82319.077299: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
144867   Binder:8858_1-8871  ( 8858) [000] d..1 82319.077303: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
144868          <idle>-0     (-----) [004] d..1 82319.077315: cpu_idle: state=2 cpu_id=4
144869   Binder:8858_1-8871  ( 8858) [000] d..2 82319.077327: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
144870          <idle>-0     (-----) [003] .n.1 82319.077335: cpu_idle: state=4294967295 cpu_id=3
144871          <idle>-0     (-----) [003] d..2 82319.077348: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
144872   Binder:8858_1-8871  ( 8858) [000] d..2 82319.077381: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
144873          <idle>-0     (-----) [000] d..1 82319.077396: cpu_idle: state=0 cpu_id=0
144874  appEventThread-8881  ( 8858) [003] d..2 82319.077398: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
144875          <idle>-0     (-----) [003] d..1 82319.077413: cpu_idle: state=0 cpu_id=3
144876          <idle>-0     (-----) [000] d.s3 82319.078482: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144877          <idle>-0     (-----) [000] d.s4 82319.078504: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144878          <idle>-0     (-----) [000] ...1 82319.078528: cpu_idle: state=4294967295 cpu_id=0
144879          <idle>-0     (-----) [000] d..1 82319.078537: cpu_idle: state=0 cpu_id=0
144880          <idle>-0     (-----) [002] .n.1 82319.078664: cpu_idle: state=4294967295 cpu_id=2
144881          <idle>-0     (-----) [002] d..2 82319.078692: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
144882 crtc_commit:111-321   (  321) [002] d..2 82319.078792: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
144883          <idle>-0     (-----) [002] d..1 82319.078813: cpu_idle: state=0 cpu_id=2
144884          <idle>-0     (-----) [003] d..2 82319.083429: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
144885          <idle>-0     (-----) [003] dn.3 82319.083448: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
144886          <idle>-0     (-----) [003] .n.1 82319.083453: cpu_idle: state=4294967295 cpu_id=3
144887          <idle>-0     (-----) [003] d..2 82319.083471: 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
144888     ksoftirqd/3-34    (   34) [003] d..2 82319.083519: 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
144889          <idle>-0     (-----) [003] d..1 82319.083531: cpu_idle: state=2 cpu_id=3
144890          <idle>-0     (-----) [002] ...1 82319.083547: cpu_idle: state=4294967295 cpu_id=2
144891          <idle>-0     (-----) [002] d..1 82319.083554: cpu_idle: state=0 cpu_id=2
144892          <idle>-0     (-----) [002] ...1 82319.083848: cpu_idle: state=4294967295 cpu_id=2
144893          <idle>-0     (-----) [002] d..1 82319.083856: cpu_idle: state=0 cpu_id=2
144894          <idle>-0     (-----) [002] ...1 82319.083976: cpu_idle: state=4294967295 cpu_id=2
144895          <idle>-0     (-----) [002] d..1 82319.083984: cpu_idle: state=0 cpu_id=2
144896          <idle>-0     (-----) [002] ...1 82319.084152: cpu_idle: state=4294967295 cpu_id=2
144897          <idle>-0     (-----) [002] d..1 82319.084159: cpu_idle: state=0 cpu_id=2
144898          <idle>-0     (-----) [001] d.s3 82319.084167: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144899          <idle>-0     (-----) [001] dns4 82319.084182: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144900          <idle>-0     (-----) [001] .n.1 82319.084199: cpu_idle: state=4294967295 cpu_id=1
144901          <idle>-0     (-----) [001] d..2 82319.084216: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144902     kworker/1:1-25249 (25249) [001] d..2 82319.084271: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144903     kworker/1:1-25249 (25249) [001] d..3 82319.084296: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144904     kworker/1:1-25249 (25249) [001] d..2 82319.084326: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
144905          <idle>-0     (-----) [002] ...1 82319.084327: cpu_idle: state=4294967295 cpu_id=2
144906          <idle>-0     (-----) [002] d..1 82319.084335: cpu_idle: state=0 cpu_id=2
144907   cds_mc_thread-16565 (16565) [001] d.s2 82319.084417: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144908   cds_mc_thread-16565 (16565) [001] d.s3 82319.084432: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
144909          <idle>-0     (-----) [002] ...1 82319.084502: cpu_idle: state=4294967295 cpu_id=2
144910          <idle>-0     (-----) [002] d..1 82319.084507: cpu_idle: state=0 cpu_id=2
144911   cds_mc_thread-16565 (16565) [001] d..3 82319.084547: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
144912   cds_mc_thread-16565 (16565) [001] d..4 82319.084595: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
144913   cds_mc_thread-16565 (16565) [001] d..2 82319.084631: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
144914         rcuop/0-10    (   10) [001] d..2 82319.084689: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
144915         rcuop/0-10    (   10) [001] d..3 82319.084730: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
144916         rcuop/0-10    (   10) [001] d..2 82319.084743: 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
144917     rcu_preempt-7     (    7) [001] d..2 82319.084761: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
144918     kworker/1:1-25249 (25249) [001] d..2 82319.084810: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144919     kworker/1:1-25249 (25249) [001] d..3 82319.084830: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
144920     kworker/1:1-25249 (25249) [001] d..2 82319.084952: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
144921     kworker/1:1-25249 (25249) [001] d..3 82319.084979: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
144922     kworker/1:1-25249 (25249) [001] d..2 82319.085081: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
144923     kworker/1:1-25249 (25249) [001] d..3 82319.085106: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
144924     kworker/1:1-25249 (25249) [001] d.s3 82319.085148: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
144925     kworker/1:1-25249 (25249) [001] d.s4 82319.085188: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
144926     kworker/1:1-25249 (25249) [001] d..2 82319.085332: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
144927 wlan_logging_th-647   (  647) [001] d..2 82319.085369: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
144928   cds_mc_thread-16565 (16565) [001] d..2 82319.085850: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
144929   cds_mc_thread-16565 (16565) [001] d..3 82319.085880: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
144930   cds_mc_thread-16565 (16565) [001] d..2 82319.085917: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
144931 wlan_logging_th-647   (  647) [001] d..2 82319.085954: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
144932  kworker/u16:15-1311  ( 1311) [001] d..2 82319.086046: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
144933 [email protected] (  798) [001] d..2 82319.086260: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
144934          <idle>-0     (-----) [001] d..1 82319.086277: cpu_idle: state=0 cpu_id=1
144935          <idle>-0     (-----) [001] d.s2 82319.088480: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
144936          <idle>-0     (-----) [001] dns3 82319.088505: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
144937          <idle>-0     (-----) [001] .n.1 82319.088527: cpu_idle: state=4294967295 cpu_id=1
144938          <idle>-0     (-----) [001] d..2 82319.088539: 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
144939     rcu_preempt-7     (    7) [001] d..2 82319.088552: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
144940     rcu_preempt-7     (    7) [001] d..3 82319.088569: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
144941     rcu_preempt-7     (    7) [001] d..2 82319.088582: 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
144942         rcuop/0-10    (   10) [001] d..2 82319.088587: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
144943         rcuop/0-10    (   10) [001] d..3 82319.088624: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
144944         rcuop/0-10    (   10) [001] d..2 82319.088628: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
144945         rcuop/0-10    (   10) [001] d..3 82319.088641: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
144946         rcuop/0-10    (   10) [001] d..2 82319.088651: 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
144947         rcuop/1-21    (   21) [001] d..2 82319.088664: 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
144948     rcu_preempt-7     (    7) [001] d..2 82319.088695: 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
144949          <idle>-0     (-----) [001] d..1 82319.088713: cpu_idle: state=0 cpu_id=1
144950          <idle>-0     (-----) [000] d.h5 82319.090239: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144951          <idle>-0     (-----) [000] d.h6 82319.090259: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144952          <idle>-0     (-----) [002] .n.1 82319.090265: cpu_idle: state=4294967295 cpu_id=2
144953          <idle>-0     (-----) [000] ...1 82319.090276: cpu_idle: state=4294967295 cpu_id=0
144954          <idle>-0     (-----) [002] d..2 82319.090281: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
144955          <idle>-0     (-----) [000] d..1 82319.090284: cpu_idle: state=0 cpu_id=0
144956          <idle>-0     (-----) [000] ...1 82319.090325: cpu_idle: state=4294967295 cpu_id=0
144957          <idle>-0     (-----) [001] ...1 82319.090331: cpu_idle: state=4294967295 cpu_id=1
144958          <idle>-0     (-----) [000] d..1 82319.090331: cpu_idle: state=2 cpu_id=0
144959          <idle>-0     (-----) [001] d..1 82319.090337: cpu_idle: state=2 cpu_id=1
144960 crtc_commit:111-321   (  321) [002] d..1 82319.090385: clk_disable: disp_cc_mdss_byte0_intf_clk
144961 crtc_commit:111-321   (  321) [002] d..1 82319.090404: clk_disable: disp_cc_mdss_byte0_div_clk_src
144962 crtc_commit:111-321   (  321) [002] d..1 82319.090408: clk_disable: disp_cc_mdss_pclk0_clk
144963 crtc_commit:111-321   (  321) [002] d..1 82319.090420: clk_disable: disp_cc_mdss_pclk0_clk_src
144964 crtc_commit:111-321   (  321) [002] d..1 82319.090423: clk_disable: dsi0_phy_pll_out_dsiclk
144965 crtc_commit:111-321   (  321) [002] d..1 82319.090425: clk_disable: dsi0pll_pclk_src
144966 crtc_commit:111-321   (  321) [002] d..1 82319.090427: clk_disable: dsi0pll_pclk_src_mux
144967 crtc_commit:111-321   (  321) [002] d..1 82319.090429: clk_disable: dsi0pll_post_bit_div
144968 crtc_commit:111-321   (  321) [002] d..1 82319.090432: clk_disable: disp_cc_mdss_byte0_clk
144969 crtc_commit:111-321   (  321) [002] d..1 82319.090443: clk_disable: disp_cc_mdss_byte0_clk_src
144970 crtc_commit:111-321   (  321) [002] d..1 82319.090445: clk_disable: dsi0_phy_pll_out_byteclk
144971 crtc_commit:111-321   (  321) [002] d..1 82319.090447: clk_disable: dsi0pll_byteclk_src
144972 crtc_commit:111-321   (  321) [002] d..1 82319.090449: clk_disable: dsi0pll_bitclk_src
144973 crtc_commit:111-321   (  321) [002] d..1 82319.090450: clk_disable: dsi0pll_pll_out_div
144974 crtc_commit:111-321   (  321) [002] d..1 82319.090452: clk_disable: dsi0pll_vco_clk
144975 crtc_commit:111-321   (  321) [002] d..1 82319.090504: clk_disable: disp_cc_mdss_esc0_clk
144976 crtc_commit:111-321   (  321) [002] d..1 82319.090516: clk_disable: disp_cc_mdss_esc0_clk_src
144977 crtc_commit:111-321   (  321) [002] d..1 82319.090612: clk_disable: disp_cc_mdss_vsync_clk
144978 crtc_commit:111-321   (  321) [002] d..1 82319.090628: clk_disable: disp_cc_mdss_mdp_clk
144979 crtc_commit:111-321   (  321) [002] d..1 82319.090640: clk_disable: disp_cc_mdss_mdp_clk_src
144980 crtc_commit:111-321   (  321) [002] d..1 82319.090675: clk_disable: gcc_disp_gpll0_clk_src
144981 crtc_commit:111-321   (  321) [002] d..1 82319.091208: clk_disable: disp_cc_mdss_axi_clk
144982 crtc_commit:111-321   (  321) [002] d..1 82319.091225: clk_disable: disp_cc_mdss_ahb_clk
144983 crtc_commit:111-321   (  321) [002] d..1 82319.091239: clk_disable: gcc_disp_axi_clk
144984 crtc_commit:111-321   (  321) [002] d..2 82319.091331: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
144985          <idle>-0     (-----) [002] d..1 82319.091346: cpu_idle: state=0 cpu_id=2
144986          <idle>-0     (-----) [002] d.h2 82319.091410: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144987          <idle>-0     (-----) [002] dnh3 82319.091425: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144988          <idle>-0     (-----) [002] .n.1 82319.091435: cpu_idle: state=4294967295 cpu_id=2
144989          <idle>-0     (-----) [002] d..2 82319.091447: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
144990 crtc_commit:111-321   (  321) [002] d..1 82319.091467: clk_disable: disp_cc_mdss_rscc_ahb_clk
144991 crtc_commit:111-321   (  321) [002] d..1 82319.091483: clk_disable: disp_cc_mdss_rscc_vsync_clk
144992 crtc_commit:111-321   (  321) [002] d..1 82319.091494: clk_disable: disp_cc_mdss_vsync_clk_src
144993 crtc_commit:111-321   (  321) [002] d..2 82319.091701: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
144994          <idle>-0     (-----) [002] d..1 82319.091718: cpu_idle: state=0 cpu_id=2
144995          <idle>-0     (-----) [001] d.s3 82319.091985: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144996          <idle>-0     (-----) [001] d.s4 82319.092015: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
144997          <idle>-0     (-----) [001] d..2 82319.092024: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
144998          <idle>-0     (-----) [002] dnh2 82319.092033: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
144999          <idle>-0     (-----) [001] dn.3 82319.092041: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145000          <idle>-0     (-----) [001] .n.1 82319.092047: cpu_idle: state=4294967295 cpu_id=1
145001          <idle>-0     (-----) [002] dnh3 82319.092066: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
145002          <idle>-0     (-----) [001] d..2 82319.092072: 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
145003          <idle>-0     (-----) [002] .n.1 82319.092112: cpu_idle: state=4294967295 cpu_id=2
145004     ksoftirqd/1-18    (   18) [001] d..2 82319.092115: 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
145005          <idle>-0     (-----) [002] d..2 82319.092127: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
145006          <idle>-0     (-----) [001] d..1 82319.092130: cpu_idle: state=0 cpu_id=1
145007          <idle>-0     (-----) [003] .n.1 82319.092229: cpu_idle: state=4294967295 cpu_id=3
145008          <idle>-0     (-----) [003] d..2 82319.092255: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
145009        DispSync-8879  ( 8858) [003] d..1 82319.092281: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
145010        DispSync-8879  ( 8858) [003] d..2 82319.092315: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145011          <idle>-0     (-----) [001] .n.1 82319.092322: cpu_idle: state=4294967295 cpu_id=1
145012          <idle>-0     (-----) [001] d..2 82319.092332: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145013 crtc_commit:111-321   (  321) [002] d..2 82319.092346: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
145014          <idle>-0     (-----) [002] d..1 82319.092365: cpu_idle: state=0 cpu_id=2
145015        DispSync-8879  ( 8858) [003] d..2 82319.092366: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145016  appEventThread-8881  ( 8858) [001] d.s3 82319.092375: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145017          <idle>-0     (-----) [003] d..1 82319.092388: cpu_idle: state=0 cpu_id=3
145018  appEventThread-8881  ( 8858) [001] d.s4 82319.092389: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145019  appEventThread-8881  ( 8858) [001] d..3 82319.092455: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145020  appEventThread-8881  ( 8858) [001] d..2 82319.092514: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
145021     ksoftirqd/1-18    (   18) [001] d.s2 82319.092531: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
145022     ksoftirqd/1-18    (   18) [001] d.s3 82319.092555: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
145023          <idle>-0     (-----) [002] .n.1 82319.092562: cpu_idle: state=4294967295 cpu_id=2
145024          <idle>-0     (-----) [002] d..2 82319.092575: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
145025     ksoftirqd/1-18    (   18) [001] d..2 82319.092584: 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
145026          <idle>-0     (-----) [001] d..1 82319.092599: cpu_idle: state=0 cpu_id=1
145027 crtc_commit:111-321   (  321) [002] d..3 82319.092603: sched_waking: comm=SDM_EventThread pid=644 prio=111 target_cpu=003
145028 crtc_commit:111-321   (  321) [002] d..4 82319.092664: sched_wakeup: comm=SDM_EventThread pid=644 prio=111 target_cpu=002
145029 crtc_commit:111-321   (  321) [002] d..2 82319.092685: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=SDM_EventThread next_pid=644 next_prio=111
145030 SDM_EventThread-644   (  619) [002] d..2 82319.092787: sched_switch: prev_comm=SDM_EventThread prev_pid=644 prev_prio=111 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145031          <idle>-0     (-----) [002] d..1 82319.092808: cpu_idle: state=0 cpu_id=2
145032          <idle>-0     (-----) [004] dnh2 82319.093254: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145033          <idle>-0     (-----) [004] .n.1 82319.093263: cpu_idle: state=4294967295 cpu_id=4
145034          <idle>-0     (-----) [004] d..2 82319.093276: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
145035 s.nexuslauncher-10023 (10023) [004] .... 82319.093464: binder_transaction: transaction=1573203 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
145036 s.nexuslauncher-10023 (10023) [004] .... 82319.093469: binder_transaction_alloc_buf: transaction=1573203 data_size=80 offsets_size=0
145037 s.nexuslauncher-10023 (10023) [004] d..4 82319.093473: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145038 s.nexuslauncher-10023 (10023) [004] d..2 82319.093568: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
145039          <idle>-0     (-----) [004] d..1 82319.093584: cpu_idle: state=2 cpu_id=4
145040          <idle>-0     (-----) [000] dnh2 82319.093675: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145041          <idle>-0     (-----) [000] .n.1 82319.093687: cpu_idle: state=4294967295 cpu_id=0
145042          <idle>-0     (-----) [000] d..2 82319.093709: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
145043   Binder:8858_1-8871  ( 8858) [000] .... 82319.093721: binder_transaction_received: transaction=1573203
145044   Binder:8858_1-8871  ( 8858) [000] d..1 82319.093768: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145045   Binder:8858_1-8871  ( 8858) [000] d..2 82319.093791: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145046          <idle>-0     (-----) [001] .n.1 82319.093799: cpu_idle: state=4294967295 cpu_id=1
145047          <idle>-0     (-----) [001] d..2 82319.093809: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145048   Binder:8858_1-8871  ( 8858) [000] d..2 82319.093850: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145049  appEventThread-8881  ( 8858) [001] d..2 82319.093862: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145050          <idle>-0     (-----) [001] d..1 82319.093873: cpu_idle: state=0 cpu_id=1
145051          <idle>-0     (-----) [000] d..1 82319.093874: cpu_idle: state=0 cpu_id=0
145052          <idle>-0     (-----) [002] ...1 82319.093990: cpu_idle: state=4294967295 cpu_id=2
145053          <idle>-0     (-----) [002] d..1 82319.093996: cpu_idle: state=2 cpu_id=2
145054          <idle>-0     (-----) [001] d.s2 82319.095141: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
145055          <idle>-0     (-----) [001] dns3 82319.095165: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
145056          <idle>-0     (-----) [001] dns3 82319.095172: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
145057          <idle>-0     (-----) [001] dns4 82319.095188: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
145058          <idle>-0     (-----) [001] .n.1 82319.095202: cpu_idle: state=4294967295 cpu_id=1
145059          <idle>-0     (-----) [001] d..2 82319.095214: 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
145060     rcu_preempt-7     (    7) [001] d..2 82319.095227: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
145061     rcu_preempt-7     (    7) [001] d..3 82319.095244: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
145062     rcu_preempt-7     (    7) [001] d..2 82319.095258: 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
145063         rcuop/0-10    (   10) [001] d..2 82319.095263: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
145064         rcuop/0-10    (   10) [001] d..3 82319.095278: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
145065         rcuop/0-10    (   10) [001] d..2 82319.095289: 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
145066         rcuop/1-21    (   21) [001] d..2 82319.095304: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145067  kworker/u16:15-1311  ( 1311) [001] d..2 82319.095411: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145068          <idle>-0     (-----) [001] d..1 82319.095431: cpu_idle: state=0 cpu_id=1
145069          <idle>-0     (-----) [001] ...1 82319.097477: cpu_idle: state=4294967295 cpu_id=1
145070          <idle>-0     (-----) [001] d..1 82319.097483: cpu_idle: state=2 cpu_id=1
145071          <idle>-0     (-----) [003] ...1 82319.098400: cpu_idle: state=4294967295 cpu_id=3
145072          <idle>-0     (-----) [003] d..1 82319.098405: cpu_idle: state=2 cpu_id=3
145073          <idle>-0     (-----) [000] d..2 82319.099886: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
145074          <idle>-0     (-----) [000] dn.3 82319.099901: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
145075          <idle>-0     (-----) [000] .n.1 82319.099906: cpu_idle: state=4294967295 cpu_id=0
145076          <idle>-0     (-----) [000] d..2 82319.099923: 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
145077     ksoftirqd/0-3     (    3) [000] d..2 82319.099961: 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
145078          <idle>-0     (-----) [000] d..1 82319.099974: cpu_idle: state=2 cpu_id=0
145079          <idle>-0     (-----) [002] d..2 82319.103516: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145080          <idle>-0     (-----) [002] dn.3 82319.103537: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145081          <idle>-0     (-----) [001] d.s3 82319.103540: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145082          <idle>-0     (-----) [002] .n.1 82319.103544: cpu_idle: state=4294967295 cpu_id=2
145083          <idle>-0     (-----) [002] d..2 82319.103567: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145084          <idle>-0     (-----) [001] dns4 82319.103567: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145085          <idle>-0     (-----) [001] .n.1 82319.103588: cpu_idle: state=4294967295 cpu_id=1
145086     ksoftirqd/2-26    (   26) [002] d..2 82319.103614: 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
145087          <idle>-0     (-----) [001] d..2 82319.103617: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145088          <idle>-0     (-----) [002] d..1 82319.103632: cpu_idle: state=2 cpu_id=2
145089     kworker/1:1-25249 (25249) [001] d..2 82319.103656: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145090     kworker/1:1-25249 (25249) [001] d..3 82319.103673: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145091     kworker/1:1-25249 (25249) [001] d..2 82319.103706: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145092 [email protected] (  798) [001] d..2 82319.103873: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145093          <idle>-0     (-----) [001] d..1 82319.103898: cpu_idle: state=0 cpu_id=1
145094          <idle>-0     (-----) [001] d.s3 82319.104057: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145095          <idle>-0     (-----) [001] dns4 82319.104072: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145096          <idle>-0     (-----) [001] .n.1 82319.104091: cpu_idle: state=4294967295 cpu_id=1
145097          <idle>-0     (-----) [001] d..2 82319.104107: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145098     kworker/1:1-25249 (25249) [001] d..2 82319.104140: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145099     kworker/1:1-25249 (25249) [001] d..3 82319.104154: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145100     kworker/1:1-25249 (25249) [001] d..2 82319.104183: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145101 [email protected] (  798) [001] d..2 82319.104333: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145102          <idle>-0     (-----) [001] d..1 82319.104356: cpu_idle: state=2 cpu_id=1
145103          <idle>-0     (-----) [001] d.s3 82319.105819: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
145104          <idle>-0     (-----) [001] dns4 82319.105851: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
145105          <idle>-0     (-----) [001] dns3 82319.105881: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145106          <idle>-0     (-----) [001] dns4 82319.105892: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145107          <idle>-0     (-----) [001] .n.1 82319.105924: cpu_idle: state=4294967295 cpu_id=1
145108          <idle>-0     (-----) [001] d..2 82319.105946: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
145109   cds_mc_thread-16565 (16565) [001] d..2 82319.106026: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145110     kworker/1:1-25249 (25249) [001] d..2 82319.106058: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145111     kworker/1:1-25249 (25249) [001] d..3 82319.106074: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145112          <idle>-0     (-----) [002] d..2 82319.106091: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145113          <idle>-0     (-----) [002] dn.3 82319.106114: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145114          <idle>-0     (-----) [002] .n.1 82319.106122: cpu_idle: state=4294967295 cpu_id=2
145115     kworker/1:1-25249 (25249) [001] d..2 82319.106126: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145116          <idle>-0     (-----) [002] d..2 82319.106148: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145117     ksoftirqd/2-26    (   26) [002] d.s2 82319.106160: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
145118     ksoftirqd/2-26    (   26) [002] d.s3 82319.106211: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
145119     ksoftirqd/2-26    (   26) [002] d..2 82319.106230: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145120  kworker/u16:15-1311  ( 1311) [002] d..2 82319.106451: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145121          <idle>-0     (-----) [002] d..1 82319.106473: cpu_idle: state=0 cpu_id=2
145122 [email protected] (  798) [001] d..2 82319.106491: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145123          <idle>-0     (-----) [001] d..1 82319.106525: cpu_idle: state=0 cpu_id=1
145124          <idle>-0     (-----) [003] d.h2 82319.108698: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
145125          <idle>-0     (-----) [003] dnh3 82319.108724: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
145126          <idle>-0     (-----) [003] .n.1 82319.108738: cpu_idle: state=4294967295 cpu_id=3
145127          <idle>-0     (-----) [003] d..2 82319.108758: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
145128        DispSync-8879  ( 8858) [003] d..1 82319.108785: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145129        DispSync-8879  ( 8858) [003] d..2 82319.108802: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145130          <idle>-0     (-----) [001] .n.1 82319.108812: cpu_idle: state=4294967295 cpu_id=1
145131          <idle>-0     (-----) [001] d..2 82319.108829: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145132        DispSync-8879  ( 8858) [003] d..2 82319.108859: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145133          <idle>-0     (-----) [003] d..2 82319.108865: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145134          <idle>-0     (-----) [003] dn.3 82319.108880: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145135          <idle>-0     (-----) [003] d..2 82319.108891: 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
145136  appEventThread-8881  ( 8858) [001] d..3 82319.108893: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145137     ksoftirqd/3-34    (   34) [003] d..2 82319.108920: 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
145138          <idle>-0     (-----) [003] d..1 82319.108940: cpu_idle: state=0 cpu_id=3
145139  appEventThread-8881  ( 8858) [001] d..2 82319.108972: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145140          <idle>-0     (-----) [001] d..1 82319.108995: cpu_idle: state=0 cpu_id=1
145141          <idle>-0     (-----) [004] dnh2 82319.109692: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145142          <idle>-0     (-----) [004] .n.1 82319.109701: cpu_idle: state=4294967295 cpu_id=4
145143          <idle>-0     (-----) [004] d..2 82319.109715: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
145144 s.nexuslauncher-10023 (10023) [004] .... 82319.109893: binder_transaction: transaction=1573204 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
145145 s.nexuslauncher-10023 (10023) [004] .... 82319.109899: binder_transaction_alloc_buf: transaction=1573204 data_size=80 offsets_size=0
145146 s.nexuslauncher-10023 (10023) [004] d..4 82319.109904: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145147 s.nexuslauncher-10023 (10023) [004] d..2 82319.109995: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
145148          <idle>-0     (-----) [004] d..1 82319.110012: cpu_idle: state=2 cpu_id=4
145149          <idle>-0     (-----) [000] dnh2 82319.110102: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145150          <idle>-0     (-----) [000] .n.1 82319.110114: cpu_idle: state=4294967295 cpu_id=0
145151          <idle>-0     (-----) [000] d..2 82319.110135: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
145152   Binder:8858_1-8871  ( 8858) [000] .... 82319.110146: binder_transaction_received: transaction=1573204
145153   Binder:8858_1-8871  ( 8858) [000] d..1 82319.110192: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145154   Binder:8858_1-8871  ( 8858) [000] d..2 82319.110217: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145155          <idle>-0     (-----) [001] .n.1 82319.110226: cpu_idle: state=4294967295 cpu_id=1
145156          <idle>-0     (-----) [001] d..2 82319.110239: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145157   Binder:8858_1-8871  ( 8858) [000] d..2 82319.110276: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145158  appEventThread-8881  ( 8858) [001] d..2 82319.110290: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145159          <idle>-0     (-----) [000] d..1 82319.110299: cpu_idle: state=0 cpu_id=0
145160          <idle>-0     (-----) [001] d..1 82319.110306: cpu_idle: state=0 cpu_id=1
145161          <idle>-0     (-----) [002] d..2 82319.112492: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145162          <idle>-0     (-----) [002] dn.3 82319.112507: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145163          <idle>-0     (-----) [002] dnH3 82319.112588: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
145164          <idle>-0     (-----) [002] dnH4 82319.112609: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
145165          <idle>-0     (-----) [003] .n.1 82319.112617: cpu_idle: state=4294967295 cpu_id=3
145166          <idle>-0     (-----) [002] .n.1 82319.112624: cpu_idle: state=4294967295 cpu_id=2
145167          <idle>-0     (-----) [003] d..2 82319.112633: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
145168          <idle>-0     (-----) [002] d..2 82319.112643: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145169         sugov:0-576   (  576) [003] .... 82319.112667: clk_set_rate: pwrcl_clk 652800000
145170     ksoftirqd/2-26    (   26) [002] d..2 82319.112676: 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
145171         sugov:0-576   (  576) [003] .... 82319.112680: clk_set_rate: cpu3_pwrcl_clk 748800000
145172         sugov:0-576   (  576) [003] .... 82319.112690: clk_set_rate: cpu2_pwrcl_clk 748800000
145173          <idle>-0     (-----) [002] d..1 82319.112691: cpu_idle: state=2 cpu_id=2
145174         sugov:0-576   (  576) [003] .... 82319.112699: clk_set_rate: cpu1_pwrcl_clk 748800000
145175         sugov:0-576   (  576) [003] .... 82319.112707: clk_set_rate: cpu0_pwrcl_clk 652800000
145176         sugov:0-576   (  576) [003] .... 82319.112821: cpu_frequency: state=652800 cpu_id=0
145177         sugov:0-576   (  576) [003] .... 82319.112840: cpu_frequency: state=652800 cpu_id=1
145178         sugov:0-576   (  576) [003] .... 82319.112846: cpu_frequency: state=652800 cpu_id=2
145179         sugov:0-576   (  576) [003] .... 82319.112852: cpu_frequency: state=652800 cpu_id=3
145180         sugov:0-576   (  576) [003] d..2 82319.112886: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145181          <idle>-0     (-----) [003] d..1 82319.112906: cpu_idle: state=0 cpu_id=3
145182          <idle>-0     (-----) [001] d..2 82319.116321: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145183          <idle>-0     (-----) [001] dn.3 82319.116339: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145184          <idle>-0     (-----) [001] .n.1 82319.116344: cpu_idle: state=4294967295 cpu_id=1
145185          <idle>-0     (-----) [001] d..2 82319.116364: 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
145186     ksoftirqd/1-18    (   18) [001] d.s2 82319.116377: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
145187     ksoftirqd/1-18    (   18) [001] d.s3 82319.116431: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
145188     ksoftirqd/1-18    (   18) [001] d..2 82319.116451: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145189  kworker/u16:15-1311  ( 1311) [001] d..2 82319.116573: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145190          <idle>-0     (-----) [001] d..1 82319.116593: cpu_idle: state=2 cpu_id=1
145191          <idle>-0     (-----) [000] d.s3 82319.118515: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
145192          <idle>-0     (-----) [000] dns4 82319.118537: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
145193          <idle>-0     (-----) [000] .n.1 82319.118563: cpu_idle: state=4294967295 cpu_id=0
145194          <idle>-0     (-----) [000] d..2 82319.118581: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
145195     kworker/0:1-25262 (25262) [000] d..2 82319.118653: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145196          <idle>-0     (-----) [000] d..1 82319.118674: cpu_idle: state=0 cpu_id=0
145197          <idle>-0     (-----) [003] ...1 82319.118922: cpu_idle: state=4294967295 cpu_id=3
145198          <idle>-0     (-----) [003] d..1 82319.118929: cpu_idle: state=2 cpu_id=3
145199          <idle>-0     (-----) [000] d..2 82319.124684: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
145200          <idle>-0     (-----) [000] dn.3 82319.124699: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
145201          <idle>-0     (-----) [000] .n.1 82319.124705: cpu_idle: state=4294967295 cpu_id=0
145202          <idle>-0     (-----) [000] d..2 82319.124720: 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
145203     ksoftirqd/0-3     (    3) [000] d.s2 82319.124731: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
145204     ksoftirqd/0-3     (    3) [000] d.s3 82319.124778: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
145205     ksoftirqd/0-3     (    3) [000] d.s2 82319.124784: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
145206     ksoftirqd/0-3     (    3) [000] d.s3 82319.124794: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
145207     ksoftirqd/0-3     (    3) [000] d..2 82319.124809: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
145208     kworker/0:1-25262 (25262) [000] d..2 82319.124849: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145209  kworker/u16:15-1311  ( 1311) [000] d..2 82319.124926: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145210          <idle>-0     (-----) [000] d..1 82319.124944: cpu_idle: state=2 cpu_id=0
145211          <idle>-0     (-----) [003] d.h2 82319.125140: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
145212          <idle>-0     (-----) [003] dnh3 82319.125168: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
145213          <idle>-0     (-----) [003] .n.1 82319.125183: cpu_idle: state=4294967295 cpu_id=3
145214          <idle>-0     (-----) [003] d..2 82319.125203: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
145215        DispSync-8879  ( 8858) [003] d..1 82319.125230: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145216        DispSync-8879  ( 8858) [003] d..2 82319.125249: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145217        DispSync-8879  ( 8858) [003] d..2 82319.125307: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145218          <idle>-0     (-----) [003] d..2 82319.125313: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145219          <idle>-0     (-----) [003] dn.3 82319.125327: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145220          <idle>-0     (-----) [003] d..2 82319.125338: 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
145221     ksoftirqd/3-34    (   34) [003] d.s2 82319.125351: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
145222     ksoftirqd/3-34    (   34) [003] d.s3 82319.125368: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
145223     ksoftirqd/3-34    (   34) [003] d..2 82319.125399: 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
145224          <idle>-0     (-----) [003] d..1 82319.125420: cpu_idle: state=2 cpu_id=3
145225          <idle>-0     (-----) [001] .n.1 82319.125422: cpu_idle: state=4294967295 cpu_id=1
145226          <idle>-0     (-----) [001] d..2 82319.125456: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145227  appEventThread-8881  ( 8858) [001] d..3 82319.125519: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145228          <idle>-0     (-----) [000] .n.1 82319.125550: cpu_idle: state=4294967295 cpu_id=0
145229          <idle>-0     (-----) [000] d..2 82319.125581: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145230  appEventThread-8881  ( 8858) [001] d..2 82319.125601: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145231          <idle>-0     (-----) [001] d..1 82319.125627: cpu_idle: state=0 cpu_id=1
145232  kworker/u16:15-1311  ( 1311) [000] d..2 82319.125712: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145233          <idle>-0     (-----) [000] d..1 82319.125742: cpu_idle: state=0 cpu_id=0
145234          <idle>-0     (-----) [002] ...1 82319.126109: cpu_idle: state=4294967295 cpu_id=2
145235          <idle>-0     (-----) [002] d..1 82319.126127: cpu_idle: state=0 cpu_id=2
145236          <idle>-0     (-----) [004] dnh2 82319.126318: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145237          <idle>-0     (-----) [004] .n.1 82319.126327: cpu_idle: state=4294967295 cpu_id=4
145238          <idle>-0     (-----) [004] d..2 82319.126341: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
145239 s.nexuslauncher-10023 (10023) [004] .... 82319.126516: binder_transaction: transaction=1573205 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
145240 s.nexuslauncher-10023 (10023) [004] .... 82319.126522: binder_transaction_alloc_buf: transaction=1573205 data_size=80 offsets_size=0
145241 s.nexuslauncher-10023 (10023) [004] d..4 82319.126526: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145242          <idle>-0     (-----) [000] dnh2 82319.126566: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145243          <idle>-0     (-----) [000] .n.1 82319.126577: cpu_idle: state=4294967295 cpu_id=0
145244          <idle>-0     (-----) [000] d..2 82319.126592: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
145245   Binder:8858_1-8871  ( 8858) [000] .... 82319.126604: binder_transaction_received: transaction=1573205
145246 s.nexuslauncher-10023 (10023) [004] d..2 82319.126621: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
145247          <idle>-0     (-----) [004] d..1 82319.126637: cpu_idle: state=2 cpu_id=4
145248   Binder:8858_1-8871  ( 8858) [000] d..1 82319.126660: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145249   Binder:8858_1-8871  ( 8858) [000] d..2 82319.126685: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145250          <idle>-0     (-----) [001] .n.1 82319.126693: cpu_idle: state=4294967295 cpu_id=1
145251          <idle>-0     (-----) [001] d..2 82319.126707: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145252   Binder:8858_1-8871  ( 8858) [000] d..2 82319.126750: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145253  appEventThread-8881  ( 8858) [001] d..2 82319.126764: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145254          <idle>-0     (-----) [000] d..1 82319.126773: cpu_idle: state=0 cpu_id=0
145255          <idle>-0     (-----) [001] d..1 82319.126782: cpu_idle: state=0 cpu_id=1
145256          <idle>-0     (-----) [001] d..2 82319.129291: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145257          <idle>-0     (-----) [001] dn.3 82319.129307: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145258          <idle>-0     (-----) [001] .n.1 82319.129312: cpu_idle: state=4294967295 cpu_id=1
145259          <idle>-0     (-----) [001] d..2 82319.129329: 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
145260     ksoftirqd/1-18    (   18) [001] d..2 82319.129371: 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
145261          <idle>-0     (-----) [001] d..1 82319.129385: cpu_idle: state=2 cpu_id=1
145262          <idle>-0     (-----) [002] d..2 82319.132144: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145263          <idle>-0     (-----) [002] dn.3 82319.132163: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145264          <idle>-0     (-----) [002] .n.1 82319.132249: cpu_idle: state=4294967295 cpu_id=2
145265          <idle>-0     (-----) [002] d..2 82319.132271: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145266     ksoftirqd/2-26    (   26) [002] d..2 82319.132311: 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
145267          <idle>-0     (-----) [002] d..1 82319.132327: cpu_idle: state=2 cpu_id=2
145268          <idle>-0     (-----) [000] ...1 82319.132787: cpu_idle: state=4294967295 cpu_id=0
145269          <idle>-0     (-----) [000] d..1 82319.132793: cpu_idle: state=2 cpu_id=0
145270          <idle>-0     (-----) [003] d.h2 82319.141694: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
145271          <idle>-0     (-----) [003] dnh3 82319.141721: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
145272          <idle>-0     (-----) [003] .n.1 82319.141736: cpu_idle: state=4294967295 cpu_id=3
145273          <idle>-0     (-----) [003] d..2 82319.141757: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
145274        DispSync-8879  ( 8858) [003] d.s2 82319.141817: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
145275        DispSync-8879  ( 8858) [003] d.s3 82319.141872: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
145276        DispSync-8879  ( 8858) [003] d..1 82319.141905: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145277        DispSync-8879  ( 8858) [003] d..2 82319.141926: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145278        DispSync-8879  ( 8858) [003] d..2 82319.141958: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145279  kworker/u16:15-1311  ( 1311) [003] d..2 82319.142086: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145280          <idle>-0     (-----) [001] .n.1 82319.142098: cpu_idle: state=4294967295 cpu_id=1
145281          <idle>-0     (-----) [003] d..1 82319.142110: cpu_idle: state=2 cpu_id=3
145282          <idle>-0     (-----) [001] d..2 82319.142131: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145283  appEventThread-8881  ( 8858) [001] d..3 82319.142193: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145284  appEventThread-8881  ( 8858) [001] d..2 82319.142275: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145285          <idle>-0     (-----) [001] d..1 82319.142298: cpu_idle: state=2 cpu_id=1
145286          <idle>-0     (-----) [004] dnh2 82319.142996: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145287          <idle>-0     (-----) [004] .n.1 82319.143005: cpu_idle: state=4294967295 cpu_id=4
145288          <idle>-0     (-----) [004] d..2 82319.143017: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
145289 s.nexuslauncher-10023 (10023) [004] .... 82319.143186: binder_transaction: transaction=1573206 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
145290 s.nexuslauncher-10023 (10023) [004] .... 82319.143192: binder_transaction_alloc_buf: transaction=1573206 data_size=80 offsets_size=0
145291 s.nexuslauncher-10023 (10023) [004] d..4 82319.143196: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145292 s.nexuslauncher-10023 (10023) [004] d..2 82319.143291: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
145293          <idle>-0     (-----) [004] d..1 82319.143306: cpu_idle: state=2 cpu_id=4
145294          <idle>-0     (-----) [000] dnh2 82319.143488: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145295          <idle>-0     (-----) [000] .n.1 82319.143502: cpu_idle: state=4294967295 cpu_id=0
145296          <idle>-0     (-----) [000] d..2 82319.143523: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
145297   Binder:8858_1-8871  ( 8858) [000] .... 82319.143534: binder_transaction_received: transaction=1573206
145298   Binder:8858_1-8871  ( 8858) [000] d..1 82319.143580: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145299   Binder:8858_1-8871  ( 8858) [000] d..2 82319.143603: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145300   Binder:8858_1-8871  ( 8858) [000] d..2 82319.143665: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145301          <idle>-0     (-----) [000] d..1 82319.143689: cpu_idle: state=2 cpu_id=0
145302          <idle>-0     (-----) [001] .n.1 82319.143777: cpu_idle: state=4294967295 cpu_id=1
145303          <idle>-0     (-----) [001] d..2 82319.143805: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145304  appEventThread-8881  ( 8858) [001] d..2 82319.143891: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145305          <idle>-0     (-----) [001] d..1 82319.143914: cpu_idle: state=0 cpu_id=1
145306          <idle>-0     (-----) [001] d.s3 82319.145702: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145307          <idle>-0     (-----) [001] dns4 82319.145723: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145308          <idle>-0     (-----) [001] .n.1 82319.145743: cpu_idle: state=4294967295 cpu_id=1
145309          <idle>-0     (-----) [001] d..2 82319.145762: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145310     kworker/1:1-25249 (25249) [001] d..2 82319.145802: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145311          <idle>-0     (-----) [002] d..2 82319.145818: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145312     kworker/1:1-25249 (25249) [001] d..3 82319.145821: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145313          <idle>-0     (-----) [002] dn.3 82319.145842: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145314     kworker/1:1-25249 (25249) [001] d..2 82319.145858: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145315          <idle>-0     (-----) [002] .n.1 82319.145907: cpu_idle: state=4294967295 cpu_id=2
145316          <idle>-0     (-----) [002] d..2 82319.145935: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145317     ksoftirqd/2-26    (   26) [002] d..2 82319.145981: 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
145318          <idle>-0     (-----) [002] d..1 82319.146002: cpu_idle: state=0 cpu_id=2
145319 [email protected] (  798) [001] d..2 82319.146047: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145320          <idle>-0     (-----) [001] d..1 82319.146081: cpu_idle: state=0 cpu_id=1
145321          <idle>-0     (-----) [001] d.s3 82319.146319: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145322          <idle>-0     (-----) [001] dns4 82319.146335: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145323          <idle>-0     (-----) [001] .n.1 82319.146358: cpu_idle: state=4294967295 cpu_id=1
145324          <idle>-0     (-----) [001] d..2 82319.146376: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145325     kworker/1:1-25249 (25249) [001] d..2 82319.146414: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145326     kworker/1:1-25249 (25249) [001] d..3 82319.146429: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145327     kworker/1:1-25249 (25249) [001] d..2 82319.146462: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145328 [email protected] (  798) [001] d..2 82319.146632: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145329          <idle>-0     (-----) [001] d..1 82319.146657: cpu_idle: state=0 cpu_id=1
145330          <idle>-0     (-----) [001] d.s3 82319.147873: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145331          <idle>-0     (-----) [001] dns4 82319.147887: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145332          <idle>-0     (-----) [001] .n.1 82319.147907: cpu_idle: state=4294967295 cpu_id=1
145333          <idle>-0     (-----) [001] d..2 82319.147923: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145334     kworker/1:1-25249 (25249) [001] d..2 82319.147959: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145335     kworker/1:1-25249 (25249) [001] d..3 82319.147974: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145336     kworker/1:1-25249 (25249) [001] d..2 82319.148005: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145337 [email protected] (  798) [001] d..2 82319.148168: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145338          <idle>-0     (-----) [001] d..1 82319.148193: cpu_idle: state=0 cpu_id=1
145339          <idle>-0     (-----) [001] d.s3 82319.148361: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
145340          <idle>-0     (-----) [001] dns4 82319.148390: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
145341          <idle>-0     (-----) [001] dns3 82319.148414: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145342          <idle>-0     (-----) [001] dns4 82319.148425: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145343          <idle>-0     (-----) [001] .n.1 82319.148445: cpu_idle: state=4294967295 cpu_id=1
145344          <idle>-0     (-----) [001] d..2 82319.148470: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
145345   cds_mc_thread-16565 (16565) [001] d..2 82319.148557: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145346     kworker/1:1-25249 (25249) [001] d..2 82319.148589: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145347     kworker/1:1-25249 (25249) [001] d..3 82319.148604: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145348     kworker/1:1-25249 (25249) [001] d..2 82319.148636: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145349          <idle>-0     (-----) [002] d..2 82319.148666: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145350          <idle>-0     (-----) [002] dn.3 82319.148682: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145351          <idle>-0     (-----) [002] .n.1 82319.148689: cpu_idle: state=4294967295 cpu_id=2
145352          <idle>-0     (-----) [002] d..2 82319.148708: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145353     ksoftirqd/2-26    (   26) [002] d..2 82319.148746: 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
145354          <idle>-0     (-----) [002] d..1 82319.148763: cpu_idle: state=0 cpu_id=2
145355 [email protected] (  798) [001] d..2 82319.148803: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145356          <idle>-0     (-----) [001] d..1 82319.148834: cpu_idle: state=0 cpu_id=1
145357          <idle>-0     (-----) [002] d.h2 82319.154773: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=002
145358          <idle>-0     (-----) [002] dnh3 82319.154810: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=002
145359          <idle>-0     (-----) [001] d..2 82319.154888: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145360          <idle>-0     (-----) [002] .n.1 82319.154890: cpu_idle: state=4294967295 cpu_id=2
145361          <idle>-0     (-----) [001] dn.3 82319.154907: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145362          <idle>-0     (-----) [002] d..2 82319.154911: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
145363          <idle>-0     (-----) [001] .n.1 82319.154913: cpu_idle: state=4294967295 cpu_id=1
145364          <idle>-0     (-----) [001] d..2 82319.154933: 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
145365     ksoftirqd/1-18    (   18) [001] d.s2 82319.154945: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
145366     ksoftirqd/1-18    (   18) [001] d.s3 82319.154998: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
145367     ksoftirqd/1-18    (   18) [001] d..2 82319.155018: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145368 LazyTaskWriterT-9080  ( 8943) [002] d.s2 82319.155166: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
145369 LazyTaskWriterT-9080  ( 8943) [002] d.s3 82319.155229: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
145370  kworker/u16:15-1311  ( 1311) [001] d..2 82319.155476: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145371  kworker/u16:13-1147  ( 1147) [001] d.s4 82319.155515: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
145372  kworker/u16:13-1147  ( 1147) [001] d.s5 82319.155567: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
145373  kworker/u16:13-1147  ( 1147) [001] d.s5 82319.155577: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
145374  kworker/u16:13-1147  ( 1147) [001] d..2 82319.155627: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145375          <idle>-0     (-----) [001] d..1 82319.155648: cpu_idle: state=2 cpu_id=1
145376 LazyTaskWriterT-9080  ( 8943) [002] d..2 82319.155674: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
145377 LazyTaskWriterT-9080  ( 8943) [002] dn.3 82319.155718: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
145378 LazyTaskWriterT-9080  ( 8943) [002] d..2 82319.155734: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
145379         rcuop/2-29    (   29) [002] d..2 82319.155744: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
145380         rcuop/2-29    (   29) [002] d..3 82319.155789: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
145381         rcuop/2-29    (   29) [002] d..2 82319.155804: 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
145382     rcu_preempt-7     (    7) [002] d..2 82319.155822: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145383  kworker/u16:15-1311  ( 1311) [002] d..2 82319.155850: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
145384 LazyTaskWriterT-9080  ( 8943) [002] d..3 82319.157453: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
145385 LazyTaskWriterT-9080  ( 8943) [002] dn.4 82319.157492: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
145386 LazyTaskWriterT-9080  ( 8943) [002] d..2 82319.157507: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=R+ ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145387  kworker/u16:15-1311  ( 1311) [002] d..2 82319.157793: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
145388 LazyTaskWriterT-9080  ( 8943) [002] d..3 82319.157811: sched_waking: comm=kworker/2:1H pid=1001 prio=100 target_cpu=002
145389 LazyTaskWriterT-9080  ( 8943) [002] dn.4 82319.157833: sched_wakeup: comm=kworker/2:1H pid=1001 prio=100 target_cpu=002
145390 LazyTaskWriterT-9080  ( 8943) [002] d..2 82319.157846: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=R+ ==> next_comm=kworker/2:1H next_pid=1001 next_prio=100
145391    kworker/2:1H-1001  ( 1001) [002] d..2 82319.157877: sched_switch: prev_comm=kworker/2:1H prev_pid=1001 prev_prio=100 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
145392 LazyTaskWriterT-9080  ( 8943) [002] d..2 82319.157914: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
145393          <idle>-0     (-----) [002] d..1 82319.157932: cpu_idle: state=0 cpu_id=2
145394          <idle>-0     (-----) [001] d.s3 82319.158049: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
145395          <idle>-0     (-----) [003] d.h2 82319.158076: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
145396          <idle>-0     (-----) [001] d.s4 82319.158077: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
145397          <idle>-0     (-----) [001] d.s4 82319.158093: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
145398          <idle>-0     (-----) [002] .n.1 82319.158101: cpu_idle: state=4294967295 cpu_id=2
145399          <idle>-0     (-----) [003] dnh3 82319.158107: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
145400          <idle>-0     (-----) [001] ...1 82319.158111: cpu_idle: state=4294967295 cpu_id=1
145401          <idle>-0     (-----) [002] d..2 82319.158115: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145402          <idle>-0     (-----) [003] .n.1 82319.158124: cpu_idle: state=4294967295 cpu_id=3
145403          <idle>-0     (-----) [001] d..1 82319.158125: cpu_idle: state=2 cpu_id=1
145404          <idle>-0     (-----) [003] d..2 82319.158145: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
145405        DispSync-8879  ( 8858) [003] d..1 82319.158174: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145406        DispSync-8879  ( 8858) [003] d..2 82319.158194: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145407        DispSync-8879  ( 8858) [003] d..2 82319.158248: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145408  kworker/u16:15-1311  ( 1311) [002] d..2 82319.158263: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
145409          <idle>-0     (-----) [003] d..1 82319.158270: cpu_idle: state=2 cpu_id=3
145410          <idle>-0     (-----) [002] d..1 82319.158278: cpu_idle: state=0 cpu_id=2
145411          <idle>-0     (-----) [001] dns2 82319.158414: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145412          <idle>-0     (-----) [001] dns3 82319.158434: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145413          <idle>-0     (-----) [001] .n.1 82319.158443: cpu_idle: state=4294967295 cpu_id=1
145414          <idle>-0     (-----) [001] d..2 82319.158469: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145415          <idle>-0     (-----) [002] d.s3 82319.158484: sched_waking: comm=kworker/2:1H pid=1001 prio=100 target_cpu=002
145416          <idle>-0     (-----) [002] dns4 82319.158500: sched_wakeup: comm=kworker/2:1H pid=1001 prio=100 target_cpu=002
145417          <idle>-0     (-----) [002] .n.1 82319.158526: cpu_idle: state=4294967295 cpu_id=2
145418  appEventThread-8881  ( 8858) [001] d..3 82319.158536: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145419          <idle>-0     (-----) [002] d..2 82319.158538: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1H next_pid=1001 next_prio=100
145420    kworker/2:1H-1001  ( 1001) [002] d..2 82319.158584: sched_switch: prev_comm=kworker/2:1H prev_pid=1001 prev_prio=100 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145421          <idle>-0     (-----) [002] d..1 82319.158596: cpu_idle: state=0 cpu_id=2
145422  appEventThread-8881  ( 8858) [001] d..2 82319.158599: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
145423     ksoftirqd/1-18    (   18) [001] d.s2 82319.158617: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
145424     ksoftirqd/1-18    (   18) [001] d.s3 82319.158633: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
145425     ksoftirqd/1-18    (   18) [001] d.s3 82319.158645: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
145426          <idle>-0     (-----) [002] .n.1 82319.158651: cpu_idle: state=4294967295 cpu_id=2
145427          <idle>-0     (-----) [002] d..2 82319.158664: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
145428     ksoftirqd/1-18    (   18) [001] d..2 82319.158685: 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
145429  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158701: clk_enable: gcc_ufs_phy_axi_clk_src
145430          <idle>-0     (-----) [001] d..1 82319.158712: cpu_idle: state=0 cpu_id=1
145431  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158717: clk_enable: gcc_ufs_phy_axi_clk
145432  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158730: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
145433  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158741: clk_enable: gcc_aggre_ufs_phy_axi_clk
145434  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158752: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
145435  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158762: clk_enable: gcc_ufs_phy_ahb_clk
145436  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158777: clk_enable: gcc_ufs_phy_unipro_core_clk_src
145437  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158786: clk_enable: gcc_ufs_phy_unipro_core_clk
145438  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158795: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
145439  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158806: clk_enable: gcc_ufs_phy_ice_core_clk_src
145440  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158814: clk_enable: gcc_ufs_phy_ice_core_clk
145441  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158822: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
145442  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158842: clk_enable: gcc_ufs_mem_clkref_clk
145443  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158854: clk_enable: gcc_ufs_phy_phy_aux_clk_src
145444  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158861: clk_enable: gcc_ufs_phy_phy_aux_clk
145445  kworker/u16:15-1311  ( 1311) [002] d..1 82319.158870: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
145446  kworker/u16:15-1311  ( 1311) [002] d..3 82319.158929: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
145447  kworker/u16:15-1311  ( 1311) [002] d..4 82319.158989: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145448          <idle>-0     (-----) [001] ...1 82319.159105: cpu_idle: state=4294967295 cpu_id=1
145449          <idle>-0     (-----) [001] d..1 82319.159112: cpu_idle: state=0 cpu_id=1
145450  kworker/u16:15-1311  ( 1311) [002] d..2 82319.159113: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145451  kworker/u16:13-1147  ( 1147) [002] d..2 82319.159141: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145452          <idle>-0     (-----) [002] d..1 82319.159156: cpu_idle: state=0 cpu_id=2
145453          <idle>-0     (-----) [000] ...1 82319.159251: cpu_idle: state=4294967295 cpu_id=0
145454          <idle>-0     (-----) [000] d..1 82319.159265: cpu_idle: state=0 cpu_id=0
145455          <idle>-0     (-----) [004] dnh2 82319.159347: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145456          <idle>-0     (-----) [004] .n.1 82319.159356: cpu_idle: state=4294967295 cpu_id=4
145457          <idle>-0     (-----) [003] ...1 82319.159369: cpu_idle: state=4294967295 cpu_id=3
145458          <idle>-0     (-----) [004] d..2 82319.159370: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
145459          <idle>-0     (-----) [003] d..1 82319.159387: cpu_idle: state=0 cpu_id=3
145460 s.nexuslauncher-10023 (10023) [004] .... 82319.159552: binder_transaction: transaction=1573207 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
145461 s.nexuslauncher-10023 (10023) [004] .... 82319.159558: binder_transaction_alloc_buf: transaction=1573207 data_size=80 offsets_size=0
145462 s.nexuslauncher-10023 (10023) [004] d..4 82319.159562: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145463          <idle>-0     (-----) [000] dnh2 82319.159605: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145464          <idle>-0     (-----) [000] .n.1 82319.159614: cpu_idle: state=4294967295 cpu_id=0
145465          <idle>-0     (-----) [000] d..2 82319.159635: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
145466   Binder:8858_1-8871  ( 8858) [000] .... 82319.159650: binder_transaction_received: transaction=1573207
145467 s.nexuslauncher-10023 (10023) [004] d..2 82319.159657: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
145468          <idle>-0     (-----) [004] d..1 82319.159673: cpu_idle: state=2 cpu_id=4
145469   Binder:8858_1-8871  ( 8858) [000] d..1 82319.159706: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145470   Binder:8858_1-8871  ( 8858) [000] d..2 82319.159732: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145471          <idle>-0     (-----) [001] .n.1 82319.159737: cpu_idle: state=4294967295 cpu_id=1
145472          <idle>-0     (-----) [001] d..2 82319.159751: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145473   Binder:8858_1-8871  ( 8858) [000] d..2 82319.159801: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145474  appEventThread-8881  ( 8858) [001] d..2 82319.159814: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145475          <idle>-0     (-----) [000] d..1 82319.159824: cpu_idle: state=0 cpu_id=0
145476          <idle>-0     (-----) [001] d..1 82319.159831: cpu_idle: state=0 cpu_id=1
145477          <idle>-0     (-----) [003] d.h4 82319.160160: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145478          <idle>-0     (-----) [003] d.h5 82319.160189: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145479          <idle>-0     (-----) [002] .n.1 82319.160196: cpu_idle: state=4294967295 cpu_id=2
145480          <idle>-0     (-----) [002] d..2 82319.160210: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145481  kworker/u16:13-1147  ( 1147) [002] d..2 82319.160243: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145482          <idle>-0     (-----) [002] d..1 82319.160252: cpu_idle: state=0 cpu_id=2
145483          <idle>-0     (-----) [003] d.s3 82319.160265: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=002
145484          <idle>-0     (-----) [003] d.s4 82319.160311: sched_blocked_reason: pid=9080 iowait=1 caller=__filemap_fdatawait_range+0x120/0x184
145485          <idle>-0     (-----) [003] dns4 82319.160318: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=003
145486          <idle>-0     (-----) [003] dns4 82319.160345: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
145487          <idle>-0     (-----) [003] dns5 82319.160364: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
145488          <idle>-0     (-----) [003] .n.1 82319.160395: cpu_idle: state=4294967295 cpu_id=3
145489          <idle>-0     (-----) [003] d..2 82319.160416: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
145490    kworker/3:1H-873   (  873) [003] d..2 82319.160442: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
145491 LazyTaskWriterT-9080  ( 8943) [003] d..3 82319.160645: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145492 LazyTaskWriterT-9080  ( 8943) [003] d..4 82319.160672: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145493          <idle>-0     (-----) [002] .n.1 82319.160677: cpu_idle: state=4294967295 cpu_id=2
145494          <idle>-0     (-----) [002] d..2 82319.160689: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145495  kworker/u16:13-1147  ( 1147) [002] d..2 82319.160716: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145496          <idle>-0     (-----) [002] d..1 82319.160724: cpu_idle: state=0 cpu_id=2
145497 LazyTaskWriterT-9080  ( 8943) [003] d..2 82319.160741: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
145498          <idle>-0     (-----) [003] d.h5 82319.160781: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145499          <idle>-0     (-----) [003] d.h6 82319.160800: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145500          <idle>-0     (-----) [002] .n.1 82319.160806: cpu_idle: state=4294967295 cpu_id=2
145501          <idle>-0     (-----) [002] d..2 82319.160819: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145502          <idle>-0     (-----) [003] d.s4 82319.160836: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=003
145503  kworker/u16:13-1147  ( 1147) [002] d..2 82319.160846: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145504          <idle>-0     (-----) [003] d.s5 82319.160847: sched_blocked_reason: pid=9080 iowait=1 caller=wait_on_node_pages_writeback+0x140/0x248
145505          <idle>-0     (-----) [003] dns5 82319.160852: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=003
145506          <idle>-0     (-----) [002] d..1 82319.160854: cpu_idle: state=0 cpu_id=2
145507          <idle>-0     (-----) [003] dns5 82319.160864: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
145508          <idle>-0     (-----) [003] dns6 82319.160875: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
145509          <idle>-0     (-----) [003] d..2 82319.160902: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
145510    kworker/3:1H-873   (  873) [003] d..2 82319.160921: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
145511          <idle>-0     (-----) [001] ...1 82319.161187: cpu_idle: state=4294967295 cpu_id=1
145512          <idle>-0     (-----) [001] d..1 82319.161193: cpu_idle: state=0 cpu_id=1
145513 LazyTaskWriterT-9080  ( 8943) [003] d..2 82319.161491: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145514          <idle>-0     (-----) [003] d..1 82319.161521: cpu_idle: state=0 cpu_id=3
145515          <idle>-0     (-----) [002] d.s3 82319.161818: sched_waking: comm=kworker/2:1H pid=1001 prio=100 target_cpu=002
145516          <idle>-0     (-----) [002] dns4 82319.161831: sched_wakeup: comm=kworker/2:1H pid=1001 prio=100 target_cpu=002
145517          <idle>-0     (-----) [002] dns2 82319.161835: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
145518          <idle>-0     (-----) [002] dns3 82319.161855: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
145519          <idle>-0     (-----) [002] dns3 82319.161860: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145520          <idle>-0     (-----) [002] dns4 82319.161874: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145521          <idle>-0     (-----) [002] .n.1 82319.161884: cpu_idle: state=4294967295 cpu_id=2
145522          <idle>-0     (-----) [002] d..2 82319.161896: 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
145523     rcu_preempt-7     (    7) [002] d..2 82319.161913: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
145524     rcu_preempt-7     (    7) [002] d..3 82319.161930: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
145525     rcu_preempt-7     (    7) [002] d..2 82319.161944: 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
145526         rcuop/2-29    (   29) [002] d..2 82319.161960: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
145527         rcuop/2-29    (   29) [002] d..3 82319.161977: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
145528         rcuop/2-29    (   29) [002] d..2 82319.161991: 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
145529     rcu_preempt-7     (    7) [002] d..2 82319.162007: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/2:1H next_pid=1001 next_prio=100
145530    kworker/2:1H-1001  ( 1001) [002] d..2 82319.162023: sched_switch: prev_comm=kworker/2:1H prev_pid=1001 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145531  kworker/u16:13-1147  ( 1147) [002] d..2 82319.162088: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145532          <idle>-0     (-----) [002] d..1 82319.162110: cpu_idle: state=0 cpu_id=2
145533          <idle>-0     (-----) [003] d..2 82319.167536: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145534          <idle>-0     (-----) [003] dn.3 82319.167554: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145535          <idle>-0     (-----) [003] .n.1 82319.167560: cpu_idle: state=4294967295 cpu_id=3
145536          <idle>-0     (-----) [003] d..2 82319.167580: 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
145537     ksoftirqd/3-34    (   34) [003] d.s2 82319.167594: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145538     ksoftirqd/3-34    (   34) [003] d.s3 82319.167647: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145539     ksoftirqd/3-34    (   34) [003] d..2 82319.167667: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145540  kworker/u16:13-1147  ( 1147) [003] d..2 82319.167792: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145541          <idle>-0     (-----) [003] d..1 82319.167810: cpu_idle: state=0 cpu_id=3
145542          <idle>-0     (-----) [002] d.s2 82319.168476: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
145543          <idle>-0     (-----) [002] dns3 82319.168497: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
145544          <idle>-0     (-----) [002] dns3 82319.168505: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
145545          <idle>-0     (-----) [002] dns4 82319.168520: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
145546          <idle>-0     (-----) [002] .n.1 82319.168533: cpu_idle: state=4294967295 cpu_id=2
145547          <idle>-0     (-----) [002] d..2 82319.168550: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
145548          <idle>-0     (-----) [000] ...1 82319.168579: cpu_idle: state=4294967295 cpu_id=0
145549          <idle>-0     (-----) [001] ...1 82319.168580: cpu_idle: state=4294967295 cpu_id=1
145550          <idle>-0     (-----) [003] ...1 82319.168585: cpu_idle: state=4294967295 cpu_id=3
145551          <idle>-0     (-----) [000] d..1 82319.168586: cpu_idle: state=2 cpu_id=0
145552          <idle>-0     (-----) [001] d..1 82319.168589: cpu_idle: state=0 cpu_id=1
145553     kworker/2:1-25259 (25259) [002] d..2 82319.168590: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
145554          <idle>-0     (-----) [003] d..1 82319.168593: cpu_idle: state=0 cpu_id=3
145555     rcu_preempt-7     (    7) [002] d..2 82319.168721: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
145556     rcu_preempt-7     (    7) [002] d..3 82319.168749: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
145557     rcu_preempt-7     (    7) [002] d..2 82319.168765: 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
145558         rcuop/2-29    (   29) [002] d..2 82319.168771: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
145559         rcuop/2-29    (   29) [002] d..3 82319.168823: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
145560         rcuop/2-29    (   29) [002] d..2 82319.168846: 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
145561         rcuop/3-37    (   37) [002] d..2 82319.168896: 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
145562          <idle>-0     (-----) [002] d..1 82319.168921: cpu_idle: state=0 cpu_id=2
145563          <idle>-0     (-----) [002] ...1 82319.170552: cpu_idle: state=4294967295 cpu_id=2
145564          <idle>-0     (-----) [002] d..1 82319.170559: cpu_idle: state=2 cpu_id=2
145565          <idle>-0     (-----) [003] d.h2 82319.174344: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
145566          <idle>-0     (-----) [003] dnh3 82319.174371: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
145567          <idle>-0     (-----) [003] .n.1 82319.174485: cpu_idle: state=4294967295 cpu_id=3
145568          <idle>-0     (-----) [003] d..2 82319.174502: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
145569        DispSync-8879  ( 8858) [003] d..1 82319.174534: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145570        DispSync-8879  ( 8858) [003] d..2 82319.174557: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145571          <idle>-0     (-----) [001] .n.1 82319.174563: cpu_idle: state=4294967295 cpu_id=1
145572          <idle>-0     (-----) [001] d..2 82319.174580: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145573        DispSync-8879  ( 8858) [003] d..2 82319.174610: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145574          <idle>-0     (-----) [003] d..2 82319.174616: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145575  appEventThread-8881  ( 8858) [001] d..3 82319.174621: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145576          <idle>-0     (-----) [003] dn.3 82319.174630: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145577          <idle>-0     (-----) [003] d..2 82319.174642: 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
145578     ksoftirqd/3-34    (   34) [003] d.s2 82319.174653: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145579     ksoftirqd/3-34    (   34) [003] d.s3 82319.174676: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145580     ksoftirqd/3-34    (   34) [003] d..2 82319.174696: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145581  appEventThread-8881  ( 8858) [001] d..2 82319.174702: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145582          <idle>-0     (-----) [001] d..1 82319.174722: cpu_idle: state=0 cpu_id=1
145583  kworker/u16:13-1147  ( 1147) [003] d..2 82319.174783: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145584          <idle>-0     (-----) [003] d..1 82319.174811: cpu_idle: state=0 cpu_id=3
145585          <idle>-0     (-----) [004] dnh2 82319.175416: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145586          <idle>-0     (-----) [004] .n.1 82319.175425: cpu_idle: state=4294967295 cpu_id=4
145587          <idle>-0     (-----) [004] d..2 82319.175440: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
145588 s.nexuslauncher-10023 (10023) [004] .... 82319.175614: binder_transaction: transaction=1573208 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
145589 s.nexuslauncher-10023 (10023) [004] .... 82319.175620: binder_transaction_alloc_buf: transaction=1573208 data_size=80 offsets_size=0
145590 s.nexuslauncher-10023 (10023) [004] d..4 82319.175625: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145591 s.nexuslauncher-10023 (10023) [004] d..2 82319.175724: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
145592          <idle>-0     (-----) [004] d..2 82319.175729: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
145593          <idle>-0     (-----) [004] dn.3 82319.175739: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
145594          <idle>-0     (-----) [004] d..2 82319.175746: 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
145595     ksoftirqd/4-42    (   42) [004] d.s2 82319.175757: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145596     ksoftirqd/4-42    (   42) [004] d..2 82319.175781: 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
145597          <idle>-0     (-----) [003] dnh2 82319.175784: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145598          <idle>-0     (-----) [004] d..1 82319.175794: cpu_idle: state=2 cpu_id=4
145599          <idle>-0     (-----) [003] .n.1 82319.175794: cpu_idle: state=4294967295 cpu_id=3
145600          <idle>-0     (-----) [003] d..2 82319.175811: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145601          <idle>-0     (-----) [000] dnh2 82319.175823: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145602          <idle>-0     (-----) [000] .n.1 82319.175836: cpu_idle: state=4294967295 cpu_id=0
145603          <idle>-0     (-----) [000] d..2 82319.175858: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
145604   Binder:8858_1-8871  ( 8858) [000] .... 82319.175892: binder_transaction_received: transaction=1573208
145605  kworker/u16:13-1147  ( 1147) [003] d..2 82319.175936: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145606   Binder:8858_1-8871  ( 8858) [000] d..1 82319.175943: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145607          <idle>-0     (-----) [003] d..1 82319.175955: cpu_idle: state=0 cpu_id=3
145608   Binder:8858_1-8871  ( 8858) [000] d..2 82319.175971: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
145609          <idle>-0     (-----) [001] .n.1 82319.175978: cpu_idle: state=4294967295 cpu_id=1
145610          <idle>-0     (-----) [001] d..2 82319.175992: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145611   Binder:8858_1-8871  ( 8858) [000] d..2 82319.176036: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145612  appEventThread-8881  ( 8858) [001] d..2 82319.176047: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145613          <idle>-0     (-----) [000] d..1 82319.176062: cpu_idle: state=2 cpu_id=0
145614          <idle>-0     (-----) [001] d..1 82319.176064: cpu_idle: state=2 cpu_id=1
145615          <idle>-0     (-----) [003] d..2 82319.181968: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145616          <idle>-0     (-----) [003] dn.3 82319.181981: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145617          <idle>-0     (-----) [003] .n.1 82319.181986: cpu_idle: state=4294967295 cpu_id=3
145618          <idle>-0     (-----) [003] d..2 82319.182003: 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
145619     ksoftirqd/3-34    (   34) [003] d.s2 82319.182012: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145620     ksoftirqd/3-34    (   34) [003] d.s3 82319.182034: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145621     ksoftirqd/3-34    (   34) [003] d..2 82319.182049: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145622  kworker/u16:13-1147  ( 1147) [003] d..2 82319.182104: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145623          <idle>-0     (-----) [003] d..1 82319.182121: cpu_idle: state=2 cpu_id=3
145624          <idle>-0     (-----) [002] d..2 82319.188681: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145625          <idle>-0     (-----) [002] dn.3 82319.188704: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145626          <idle>-0     (-----) [002] .n.1 82319.188711: cpu_idle: state=4294967295 cpu_id=2
145627          <idle>-0     (-----) [001] d.s3 82319.188717: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145628          <idle>-0     (-----) [002] d..2 82319.188735: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145629          <idle>-0     (-----) [001] dns4 82319.188746: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145630     ksoftirqd/2-26    (   26) [002] d.s2 82319.188750: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145631          <idle>-0     (-----) [001] .n.1 82319.188768: cpu_idle: state=4294967295 cpu_id=1
145632          <idle>-0     (-----) [001] d..2 82319.188798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145633     ksoftirqd/2-26    (   26) [002] d.s3 82319.188805: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145634     ksoftirqd/2-26    (   26) [002] d..2 82319.188826: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145635     kworker/1:1-25249 (25249) [001] d..2 82319.188915: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145636     kworker/1:1-25249 (25249) [001] d..3 82319.188938: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145637  kworker/u16:13-1147  ( 1147) [002] d..2 82319.189024: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145638     kworker/1:1-25249 (25249) [001] d..2 82319.189034: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145639          <idle>-0     (-----) [002] d..1 82319.189046: cpu_idle: state=2 cpu_id=2
145640 [email protected] (  798) [001] d..2 82319.189335: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145641          <idle>-0     (-----) [001] d..1 82319.189362: cpu_idle: state=2 cpu_id=1
145642          <idle>-0     (-----) [001] d.s3 82319.190330: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145643          <idle>-0     (-----) [001] dns4 82319.190350: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145644          <idle>-0     (-----) [001] .n.1 82319.190376: cpu_idle: state=4294967295 cpu_id=1
145645          <idle>-0     (-----) [001] d..2 82319.190398: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145646     kworker/1:1-25249 (25249) [001] d..2 82319.190437: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145647     kworker/1:1-25249 (25249) [001] d..3 82319.190452: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145648     kworker/1:1-25249 (25249) [001] d..2 82319.190485: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145649 [email protected] (  798) [001] d.s2 82319.190792: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145650 [email protected] (  798) [001] dns3 82319.190815: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145651 [email protected] (  798) [001] dns2 82319.190842: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
145652 [email protected] (  798) [001] dns3 82319.190871: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
145653 [email protected] (  798) [001] d..2 82319.190896: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145654     kworker/1:1-25249 (25249) [001] d..2 82319.190959: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
145655          <idle>-0     (-----) [003] d.h2 82319.190985: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
145656          <idle>-0     (-----) [003] dnh3 82319.191014: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
145657          <idle>-0     (-----) [003] .n.1 82319.191029: cpu_idle: state=4294967295 cpu_id=3
145658   cds_mc_thread-16565 (16565) [001] d..2 82319.191041: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145659          <idle>-0     (-----) [003] d..2 82319.191049: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
145660        DispSync-8879  ( 8858) [003] d..1 82319.191078: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
145661        DispSync-8879  ( 8858) [003] d..2 82319.191107: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
145662        DispSync-8879  ( 8858) [003] d..2 82319.191159: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145663          <idle>-0     (-----) [003] d..1 82319.191180: cpu_idle: state=2 cpu_id=3
145664 [email protected] (  798) [001] d..2 82319.191241: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145665          <idle>-0     (-----) [000] .n.1 82319.191270: cpu_idle: state=4294967295 cpu_id=0
145666          <idle>-0     (-----) [001] d..1 82319.191273: cpu_idle: state=0 cpu_id=1
145667          <idle>-0     (-----) [002] ...1 82319.191283: cpu_idle: state=4294967295 cpu_id=2
145668          <idle>-0     (-----) [000] d..2 82319.191297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145669          <idle>-0     (-----) [002] d..1 82319.191302: cpu_idle: state=0 cpu_id=2
145670  appEventThread-8881  ( 8858) [000] d..3 82319.191365: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145671  appEventThread-8881  ( 8858) [000] d..2 82319.191446: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145672          <idle>-0     (-----) [000] d..1 82319.191470: cpu_idle: state=2 cpu_id=0
145673          <idle>-0     (-----) [004] dnh2 82319.192151: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145674          <idle>-0     (-----) [004] .n.1 82319.192210: cpu_idle: state=4294967295 cpu_id=4
145675          <idle>-0     (-----) [004] d..2 82319.192226: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
145676          <idle>-0     (-----) [007] d.s3 82319.192255: sched_waking: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
145677          <idle>-0     (-----) [007] dns4 82319.192271: sched_wakeup: comm=kworker/7:3 pid=442 prio=120 target_cpu=007
145678          <idle>-0     (-----) [007] dns3 82319.192275: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145679          <idle>-0     (-----) [007] .n.1 82319.192320: cpu_idle: state=4294967295 cpu_id=7
145680          <idle>-0     (-----) [001] dnh2 82319.192326: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
145681          <idle>-0     (-----) [007] d..2 82319.192333: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/7:3 next_pid=442 next_prio=120
145682          <idle>-0     (-----) [001] .n.1 82319.192336: cpu_idle: state=4294967295 cpu_id=1
145683          <idle>-0     (-----) [001] d..2 82319.192355: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145684     kworker/7:3-442   (  442) [007] d..2 82319.192356: sched_switch: prev_comm=kworker/7:3 prev_pid=442 prev_prio=120 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
145685          <idle>-0     (-----) [007] d..1 82319.192368: cpu_idle: state=2 cpu_id=7
145686 s.nexuslauncher-10023 (10023) [004] .... 82319.192417: binder_transaction: transaction=1573209 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
145687 s.nexuslauncher-10023 (10023) [004] .... 82319.192423: binder_transaction_alloc_buf: transaction=1573209 data_size=80 offsets_size=0
145688 s.nexuslauncher-10023 (10023) [004] d..4 82319.192427: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145689  kworker/u16:13-1147  ( 1147) [001] d..2 82319.192452: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145690          <idle>-0     (-----) [001] d..1 82319.192472: cpu_idle: state=0 cpu_id=1
145691 s.nexuslauncher-10023 (10023) [004] d..2 82319.192522: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
145692          <idle>-0     (-----) [004] d..1 82319.192538: cpu_idle: state=2 cpu_id=4
145693          <idle>-0     (-----) [000] dnh2 82319.192702: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145694          <idle>-0     (-----) [000] .n.1 82319.192715: cpu_idle: state=4294967295 cpu_id=0
145695          <idle>-0     (-----) [000] d..2 82319.192737: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
145696   Binder:8858_1-8871  ( 8858) [000] .... 82319.192748: binder_transaction_received: transaction=1573209
145697   Binder:8858_1-8871  ( 8858) [000] d..1 82319.192793: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
145698   Binder:8858_1-8871  ( 8858) [000] d..2 82319.192830: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
145699          <idle>-0     (-----) [002] .n.1 82319.192838: cpu_idle: state=4294967295 cpu_id=2
145700          <idle>-0     (-----) [002] d..2 82319.192857: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145701   Binder:8858_1-8871  ( 8858) [000] d..2 82319.192893: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145702          <idle>-0     (-----) [000] d..1 82319.192919: cpu_idle: state=0 cpu_id=0
145703  appEventThread-8881  ( 8858) [002] d..2 82319.192951: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145704          <idle>-0     (-----) [002] d..1 82319.192972: cpu_idle: state=0 cpu_id=2
145705          <idle>-0     (-----) [001] d..2 82319.198487: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145706          <idle>-0     (-----) [001] dn.3 82319.198506: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145707          <idle>-0     (-----) [001] .n.1 82319.198512: cpu_idle: state=4294967295 cpu_id=1
145708          <idle>-0     (-----) [001] d..2 82319.198530: 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
145709     ksoftirqd/1-18    (   18) [001] d.s2 82319.198541: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
145710     ksoftirqd/1-18    (   18) [001] d.s3 82319.198565: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
145711     ksoftirqd/1-18    (   18) [001] d..2 82319.198584: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145712  kworker/u16:13-1147  ( 1147) [001] d..2 82319.198683: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145713          <idle>-0     (-----) [001] d..1 82319.198701: cpu_idle: state=2 cpu_id=1
145714          <idle>-0     (-----) [000] ...1 82319.198933: cpu_idle: state=4294967295 cpu_id=0
145715          <idle>-0     (-----) [000] d..1 82319.198939: cpu_idle: state=2 cpu_id=0
145716          <idle>-0     (-----) [002] ...1 82319.198988: cpu_idle: state=4294967295 cpu_id=2
145717          <idle>-0     (-----) [002] d..1 82319.198995: cpu_idle: state=2 cpu_id=2
145718          <idle>-0     (-----) [003] d.h2 82319.207544: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
145719          <idle>-0     (-----) [003] dnh3 82319.207572: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
145720          <idle>-0     (-----) [003] .n.1 82319.207587: cpu_idle: state=4294967295 cpu_id=3
145721          <idle>-0     (-----) [003] d..2 82319.207607: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
145722        DispSync-8879  ( 8858) [003] d..1 82319.207635: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
145723        DispSync-8879  ( 8858) [003] d..2 82319.207653: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
145724        DispSync-8879  ( 8858) [003] d..2 82319.207711: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145725          <idle>-0     (-----) [003] d..2 82319.207717: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145726          <idle>-0     (-----) [003] dn.3 82319.207732: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145727          <idle>-0     (-----) [003] d..2 82319.207744: 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
145728     ksoftirqd/3-34    (   34) [003] d.s2 82319.207756: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
145729     ksoftirqd/3-34    (   34) [003] d.s3 82319.207803: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145730     ksoftirqd/3-34    (   34) [003] d..2 82319.207822: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145731          <idle>-0     (-----) [002] .n.1 82319.207825: cpu_idle: state=4294967295 cpu_id=2
145732          <idle>-0     (-----) [002] d..2 82319.207857: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145733  appEventThread-8881  ( 8858) [002] d..3 82319.207923: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145734  appEventThread-8881  ( 8858) [002] d..2 82319.208009: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145735          <idle>-0     (-----) [002] d..1 82319.208033: cpu_idle: state=0 cpu_id=2
145736  kworker/u16:13-1147  ( 1147) [003] d..2 82319.208051: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
145737          <idle>-0     (-----) [003] d..1 82319.208081: cpu_idle: state=0 cpu_id=3
145738          <idle>-0     (-----) [001] d.s3 82319.208242: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145739          <idle>-0     (-----) [001] d.s4 82319.208266: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
145740          <idle>-0     (-----) [001] d.s4 82319.208280: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145741          <idle>-0     (-----) [003] .n.1 82319.208289: cpu_idle: state=4294967295 cpu_id=3
145742          <idle>-0     (-----) [001] ...1 82319.208297: cpu_idle: state=4294967295 cpu_id=1
145743          <idle>-0     (-----) [003] d..2 82319.208307: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145744          <idle>-0     (-----) [001] d..1 82319.208314: cpu_idle: state=0 cpu_id=1
145745  kworker/u16:13-1147  ( 1147) [003] d..2 82319.208344: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145746          <idle>-0     (-----) [003] d..1 82319.208357: cpu_idle: state=0 cpu_id=3
145747          <idle>-0     (-----) [004] dnh2 82319.208723: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145748          <idle>-0     (-----) [004] .n.1 82319.208733: cpu_idle: state=4294967295 cpu_id=4
145749          <idle>-0     (-----) [004] d..2 82319.208747: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
145750 s.nexuslauncher-10023 (10023) [004] .... 82319.208920: binder_transaction: transaction=1573210 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
145751 s.nexuslauncher-10023 (10023) [004] .... 82319.208925: binder_transaction_alloc_buf: transaction=1573210 data_size=80 offsets_size=0
145752 s.nexuslauncher-10023 (10023) [004] d..4 82319.208929: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145753 s.nexuslauncher-10023 (10023) [004] d..2 82319.209029: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
145754          <idle>-0     (-----) [004] d..2 82319.209034: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
145755          <idle>-0     (-----) [004] dn.3 82319.209043: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
145756          <idle>-0     (-----) [004] d..2 82319.209050: 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
145757     ksoftirqd/4-42    (   42) [004] d.s2 82319.209059: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145758     ksoftirqd/4-42    (   42) [004] d..2 82319.209079: 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
145759          <idle>-0     (-----) [003] dnh2 82319.209086: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145760          <idle>-0     (-----) [004] d..1 82319.209092: cpu_idle: state=2 cpu_id=4
145761          <idle>-0     (-----) [003] .n.1 82319.209094: cpu_idle: state=4294967295 cpu_id=3
145762          <idle>-0     (-----) [003] d..2 82319.209107: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145763          <idle>-0     (-----) [000] dnh2 82319.209126: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145764          <idle>-0     (-----) [000] .n.1 82319.209139: cpu_idle: state=4294967295 cpu_id=0
145765          <idle>-0     (-----) [000] d..2 82319.209161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
145766   Binder:8858_1-8871  ( 8858) [000] .... 82319.209194: binder_transaction_received: transaction=1573210
145767  kworker/u16:13-1147  ( 1147) [003] d..2 82319.209234: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145768   Binder:8858_1-8871  ( 8858) [000] d..1 82319.209246: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
145769          <idle>-0     (-----) [003] d..1 82319.209248: cpu_idle: state=0 cpu_id=3
145770   Binder:8858_1-8871  ( 8858) [000] d..2 82319.209274: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
145771          <idle>-0     (-----) [002] .n.1 82319.209282: cpu_idle: state=4294967295 cpu_id=2
145772          <idle>-0     (-----) [002] d..2 82319.209297: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145773   Binder:8858_1-8871  ( 8858) [000] d..2 82319.209338: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145774  appEventThread-8881  ( 8858) [002] d..2 82319.209352: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145775          <idle>-0     (-----) [000] d..1 82319.209365: cpu_idle: state=0 cpu_id=0
145776          <idle>-0     (-----) [002] d..1 82319.209370: cpu_idle: state=0 cpu_id=2
145777          <idle>-0     (-----) [003] d.h3 82319.210793: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145778          <idle>-0     (-----) [003] dnh4 82319.210809: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145779          <idle>-0     (-----) [003] .n.1 82319.210821: cpu_idle: state=4294967295 cpu_id=3
145780          <idle>-0     (-----) [003] d..2 82319.210836: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145781  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210861: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
145782  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210874: clk_disable: gcc_ufs_phy_phy_aux_clk
145783  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210885: clk_disable: gcc_ufs_phy_phy_aux_clk_src
145784  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210896: clk_disable: gcc_ufs_mem_clkref_clk
145785  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210912: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
145786  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210918: clk_disable: gcc_ufs_phy_axi_clk
145787  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210928: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
145788  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210934: clk_disable: gcc_aggre_ufs_phy_axi_clk
145789  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210943: clk_disable: gcc_ufs_phy_axi_clk_src
145790  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210950: clk_disable: gcc_ufs_phy_ahb_clk
145791  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210959: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
145792  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210965: clk_disable: gcc_ufs_phy_unipro_core_clk
145793  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210974: clk_disable: gcc_ufs_phy_unipro_core_clk_src
145794  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210981: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
145795  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210987: clk_disable: gcc_ufs_phy_ice_core_clk
145796  kworker/u16:13-1147  ( 1147) [003] d..1 82319.210995: clk_disable: gcc_ufs_phy_ice_core_clk_src
145797          <idle>-0     (-----) [001] ...1 82319.211135: cpu_idle: state=4294967295 cpu_id=1
145798          <idle>-0     (-----) [001] d..1 82319.211142: cpu_idle: state=0 cpu_id=1
145799          <idle>-0     (-----) [002] ...1 82319.211142: cpu_idle: state=4294967295 cpu_id=2
145800          <idle>-0     (-----) [002] d..1 82319.211151: cpu_idle: state=0 cpu_id=2
145801  kworker/u16:13-1147  ( 1147) [003] d..2 82319.211356: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
145802          <idle>-0     (-----) [003] d..1 82319.211379: cpu_idle: state=2 cpu_id=3
145803          <idle>-0     (-----) [001] d.s3 82319.211393: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145804          <idle>-0     (-----) [001] d.s4 82319.211408: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
145805          <idle>-0     (-----) [001] d.s4 82319.211418: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145806          <idle>-0     (-----) [001] ...1 82319.211430: cpu_idle: state=4294967295 cpu_id=1
145807          <idle>-0     (-----) [001] d..1 82319.211440: cpu_idle: state=0 cpu_id=1
145808          <idle>-0     (-----) [003] .n.1 82319.211652: cpu_idle: state=4294967295 cpu_id=3
145809          <idle>-0     (-----) [003] d..2 82319.211682: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145810  kworker/u16:13-1147  ( 1147) [003] d..2 82319.211743: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145811          <idle>-0     (-----) [003] d..1 82319.211763: cpu_idle: state=0 cpu_id=3
145812          <idle>-0     (-----) [000] d..2 82319.215385: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
145813          <idle>-0     (-----) [000] dn.3 82319.215402: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
145814          <idle>-0     (-----) [000] dns3 82319.215485: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145815          <idle>-0     (-----) [000] dns4 82319.215536: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
145816          <idle>-0     (-----) [000] .n.1 82319.215548: cpu_idle: state=4294967295 cpu_id=0
145817          <idle>-0     (-----) [000] d..2 82319.215571: 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
145818     ksoftirqd/0-3     (    3) [000] d..2 82319.215586: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145819  kworker/u16:13-1147  ( 1147) [000] d..2 82319.215652: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145820          <idle>-0     (-----) [000] d..1 82319.215670: cpu_idle: state=2 cpu_id=0
145821          <idle>-0     (-----) [001] ...1 82319.217448: cpu_idle: state=4294967295 cpu_id=1
145822          <idle>-0     (-----) [001] d..1 82319.217453: cpu_idle: state=2 cpu_id=1
145823          <idle>-0     (-----) [003] d.h2 82319.223730: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
145824          <idle>-0     (-----) [003] dnh3 82319.223752: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
145825          <idle>-0     (-----) [003] .n.1 82319.223796: cpu_idle: state=4294967295 cpu_id=3
145826          <idle>-0     (-----) [003] d..2 82319.223812: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
145827        DispSync-8879  ( 8858) [003] d..1 82319.223840: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
145828        DispSync-8879  ( 8858) [003] d..2 82319.223861: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
145829          <idle>-0     (-----) [002] .n.1 82319.223867: cpu_idle: state=4294967295 cpu_id=2
145830          <idle>-0     (-----) [002] d..2 82319.223886: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145831        DispSync-8879  ( 8858) [003] d..2 82319.223915: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145832          <idle>-0     (-----) [003] d..2 82319.223921: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145833  appEventThread-8881  ( 8858) [002] d..3 82319.223931: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145834          <idle>-0     (-----) [003] dn.3 82319.223936: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145835          <idle>-0     (-----) [003] d..2 82319.223947: 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
145836     ksoftirqd/3-34    (   34) [003] d.s2 82319.223960: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
145837     ksoftirqd/3-34    (   34) [003] d.s3 82319.224009: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145838  appEventThread-8881  ( 8858) [002] d..2 82319.224012: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145839     ksoftirqd/3-34    (   34) [003] d..2 82319.224031: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145840          <idle>-0     (-----) [002] d..1 82319.224031: cpu_idle: state=2 cpu_id=2
145841  kworker/u16:13-1147  ( 1147) [003] d..2 82319.224165: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145842          <idle>-0     (-----) [003] d..1 82319.224187: cpu_idle: state=0 cpu_id=3
145843          <idle>-0     (-----) [004] dnh2 82319.224726: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145844          <idle>-0     (-----) [004] .n.1 82319.224736: cpu_idle: state=4294967295 cpu_id=4
145845          <idle>-0     (-----) [004] d..2 82319.224750: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
145846 s.nexuslauncher-10023 (10023) [004] .... 82319.224916: binder_transaction: transaction=1573211 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
145847 s.nexuslauncher-10023 (10023) [004] .... 82319.224922: binder_transaction_alloc_buf: transaction=1573211 data_size=80 offsets_size=0
145848 s.nexuslauncher-10023 (10023) [004] d..4 82319.224926: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145849 s.nexuslauncher-10023 (10023) [004] d..2 82319.225019: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
145850          <idle>-0     (-----) [004] d..1 82319.225036: cpu_idle: state=2 cpu_id=4
145851          <idle>-0     (-----) [000] dnh2 82319.225132: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145852          <idle>-0     (-----) [000] .n.1 82319.225145: cpu_idle: state=4294967295 cpu_id=0
145853          <idle>-0     (-----) [000] d..2 82319.225169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
145854   Binder:8858_1-8871  ( 8858) [000] .... 82319.225181: binder_transaction_received: transaction=1573211
145855   Binder:8858_1-8871  ( 8858) [000] d..1 82319.225226: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
145856   Binder:8858_1-8871  ( 8858) [000] d..2 82319.225251: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
145857   Binder:8858_1-8871  ( 8858) [000] d..2 82319.225323: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145858          <idle>-0     (-----) [000] d..2 82319.225330: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
145859          <idle>-0     (-----) [000] dn.3 82319.225342: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
145860          <idle>-0     (-----) [000] d..2 82319.225354: 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
145861     ksoftirqd/0-3     (    3) [000] d.s2 82319.225367: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145862     ksoftirqd/0-3     (    3) [000] d.s3 82319.225386: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145863          <idle>-0     (-----) [003] .n.1 82319.225395: cpu_idle: state=4294967295 cpu_id=3
145864     ksoftirqd/0-3     (    3) [000] d..2 82319.225412: 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
145865          <idle>-0     (-----) [003] d..2 82319.225413: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145866          <idle>-0     (-----) [002] .n.1 82319.225421: cpu_idle: state=4294967295 cpu_id=2
145867          <idle>-0     (-----) [000] d..1 82319.225439: cpu_idle: state=0 cpu_id=0
145868          <idle>-0     (-----) [002] d..2 82319.225448: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145869  kworker/u16:13-1147  ( 1147) [003] d..2 82319.225467: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145870          <idle>-0     (-----) [003] d..1 82319.225485: cpu_idle: state=0 cpu_id=3
145871  appEventThread-8881  ( 8858) [002] d..2 82319.225538: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145872          <idle>-0     (-----) [002] d..1 82319.225561: cpu_idle: state=0 cpu_id=2
145873          <idle>-0     (-----) [003] ...1 82319.227430: cpu_idle: state=4294967295 cpu_id=3
145874          <idle>-0     (-----) [003] d..1 82319.227437: cpu_idle: state=2 cpu_id=3
145875          <idle>-0     (-----) [002] d..2 82319.230879: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145876          <idle>-0     (-----) [002] dn.3 82319.230899: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145877          <idle>-0     (-----) [002] .n.1 82319.230907: cpu_idle: state=4294967295 cpu_id=2
145878          <idle>-0     (-----) [002] d..2 82319.230927: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145879     ksoftirqd/2-26    (   26) [002] d..2 82319.230970: 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
145880          <idle>-0     (-----) [002] d..1 82319.230987: cpu_idle: state=0 cpu_id=2
145881          <idle>-0     (-----) [001] d.s3 82319.231056: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145882          <idle>-0     (-----) [001] dns4 82319.231080: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145883          <idle>-0     (-----) [001] .n.1 82319.231117: cpu_idle: state=4294967295 cpu_id=1
145884          <idle>-0     (-----) [001] d..2 82319.231140: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145885          <idle>-0     (-----) [002] ...1 82319.231154: cpu_idle: state=4294967295 cpu_id=2
145886          <idle>-0     (-----) [002] d..1 82319.231161: cpu_idle: state=0 cpu_id=2
145887     kworker/1:1-25249 (25249) [001] d..2 82319.231183: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145888     kworker/1:1-25249 (25249) [001] d..3 82319.231203: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145889     kworker/1:1-25249 (25249) [001] d..2 82319.231269: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145890          <idle>-0     (-----) [000] ...1 82319.231451: cpu_idle: state=4294967295 cpu_id=0
145891          <idle>-0     (-----) [000] d..1 82319.231458: cpu_idle: state=2 cpu_id=0
145892 [email protected] (  798) [001] d..2 82319.231555: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145893          <idle>-0     (-----) [001] d..1 82319.231580: cpu_idle: state=2 cpu_id=1
145894          <idle>-0     (-----) [001] d.s3 82319.232735: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145895          <idle>-0     (-----) [001] dns4 82319.232757: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145896          <idle>-0     (-----) [001] .n.1 82319.232777: cpu_idle: state=4294967295 cpu_id=1
145897          <idle>-0     (-----) [001] d..2 82319.232801: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145898     kworker/1:1-25249 (25249) [001] d..2 82319.232840: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145899     kworker/1:1-25249 (25249) [001] d..3 82319.232858: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145900     kworker/1:1-25249 (25249) [001] d..2 82319.232891: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145901 [email protected] (  798) [001] d..2 82319.233082: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145902          <idle>-0     (-----) [001] d..2 82319.233089: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145903          <idle>-0     (-----) [001] dn.3 82319.233104: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
145904          <idle>-0     (-----) [001] d..2 82319.233116: 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
145905     ksoftirqd/1-18    (   18) [001] d.s2 82319.233127: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
145906     ksoftirqd/1-18    (   18) [001] d.s3 82319.233176: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
145907     ksoftirqd/1-18    (   18) [001] d.s2 82319.233229: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145908     ksoftirqd/1-18    (   18) [001] d.s3 82319.233243: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
145909     ksoftirqd/1-18    (   18) [001] d.s2 82319.233269: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
145910     ksoftirqd/1-18    (   18) [001] d.s3 82319.233290: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
145911     ksoftirqd/1-18    (   18) [001] d..2 82319.233315: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
145912     kworker/1:1-25249 (25249) [001] d..2 82319.233349: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
145913     kworker/1:1-25249 (25249) [001] d..3 82319.233370: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
145914     kworker/1:1-25249 (25249) [001] d..2 82319.233402: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
145915   cds_mc_thread-16565 (16565) [001] d..2 82319.233484: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145916          <idle>-0     (-----) [002] ...1 82319.233507: cpu_idle: state=4294967295 cpu_id=2
145917          <idle>-0     (-----) [002] d..1 82319.233519: cpu_idle: state=0 cpu_id=2
145918  kworker/u16:13-1147  ( 1147) [001] d..2 82319.233565: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
145919 [email protected] (  798) [001] d..2 82319.233738: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
145920          <idle>-0     (-----) [001] d..1 82319.233768: cpu_idle: state=0 cpu_id=1
145921          <idle>-0     (-----) [002] d..2 82319.239530: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145922          <idle>-0     (-----) [002] dn.3 82319.239549: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145923          <idle>-0     (-----) [002] .n.1 82319.239555: cpu_idle: state=4294967295 cpu_id=2
145924          <idle>-0     (-----) [002] d..2 82319.239575: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145925     ksoftirqd/2-26    (   26) [002] d.s2 82319.239588: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
145926     ksoftirqd/2-26    (   26) [002] d.s3 82319.239642: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145927     ksoftirqd/2-26    (   26) [002] d..2 82319.239660: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145928  kworker/u16:13-1147  ( 1147) [002] d..2 82319.239736: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145929          <idle>-0     (-----) [002] d..1 82319.239754: cpu_idle: state=2 cpu_id=2
145930          <idle>-0     (-----) [001] ...1 82319.239781: cpu_idle: state=4294967295 cpu_id=1
145931          <idle>-0     (-----) [001] d..1 82319.239788: cpu_idle: state=2 cpu_id=1
145932          <idle>-0     (-----) [003] d.h2 82319.240466: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
145933          <idle>-0     (-----) [003] dnh3 82319.240494: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
145934          <idle>-0     (-----) [003] .n.1 82319.240509: cpu_idle: state=4294967295 cpu_id=3
145935          <idle>-0     (-----) [003] d..2 82319.240529: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
145936        DispSync-8879  ( 8858) [003] d..1 82319.240557: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
145937        DispSync-8879  ( 8858) [003] d..2 82319.240575: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
145938        DispSync-8879  ( 8858) [003] d..2 82319.240624: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145939          <idle>-0     (-----) [003] d..1 82319.240646: cpu_idle: state=0 cpu_id=3
145940          <idle>-0     (-----) [002] .n.1 82319.240761: cpu_idle: state=4294967295 cpu_id=2
145941          <idle>-0     (-----) [002] d..2 82319.240797: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145942  appEventThread-8881  ( 8858) [002] d..3 82319.240866: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145943  appEventThread-8881  ( 8858) [002] d..2 82319.240966: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145944          <idle>-0     (-----) [002] d..1 82319.240995: cpu_idle: state=0 cpu_id=2
145945          <idle>-0     (-----) [004] dnh2 82319.241670: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
145946          <idle>-0     (-----) [004] .n.1 82319.241679: cpu_idle: state=4294967295 cpu_id=4
145947          <idle>-0     (-----) [004] d..2 82319.241693: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
145948 s.nexuslauncher-10023 (10023) [004] d.s2 82319.241809: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145949          <idle>-0     (-----) [002] dnh2 82319.241851: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145950          <idle>-0     (-----) [002] .n.1 82319.241861: cpu_idle: state=4294967295 cpu_id=2
145951          <idle>-0     (-----) [002] d..2 82319.241879: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145952 s.nexuslauncher-10023 (10023) [004] .... 82319.241960: binder_transaction: transaction=1573212 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
145953 s.nexuslauncher-10023 (10023) [004] .... 82319.241965: binder_transaction_alloc_buf: transaction=1573212 data_size=80 offsets_size=0
145954 s.nexuslauncher-10023 (10023) [004] d..4 82319.241969: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145955  kworker/u16:13-1147  ( 1147) [002] d..2 82319.242018: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145956          <idle>-0     (-----) [002] d..1 82319.242036: cpu_idle: state=2 cpu_id=2
145957 s.nexuslauncher-10023 (10023) [004] d..2 82319.242061: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
145958          <idle>-0     (-----) [004] d..1 82319.242076: cpu_idle: state=2 cpu_id=4
145959          <idle>-0     (-----) [000] dnh2 82319.242171: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
145960          <idle>-0     (-----) [000] .n.1 82319.242184: cpu_idle: state=4294967295 cpu_id=0
145961          <idle>-0     (-----) [000] d..2 82319.242205: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
145962   Binder:8858_1-8871  ( 8858) [000] .... 82319.242218: binder_transaction_received: transaction=1573212
145963   Binder:8858_1-8871  ( 8858) [000] d..1 82319.242264: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
145964   Binder:8858_1-8871  ( 8858) [000] d..2 82319.242290: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
145965   Binder:8858_1-8871  ( 8858) [000] d..2 82319.242352: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
145966          <idle>-0     (-----) [000] d..1 82319.242378: cpu_idle: state=0 cpu_id=0
145967          <idle>-0     (-----) [002] .n.1 82319.242459: cpu_idle: state=4294967295 cpu_id=2
145968          <idle>-0     (-----) [002] d..2 82319.242485: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
145969  appEventThread-8881  ( 8858) [002] d..2 82319.242575: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145970          <idle>-0     (-----) [002] d..1 82319.242597: cpu_idle: state=0 cpu_id=2
145971          <idle>-0     (-----) [003] d..2 82319.246658: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145972          <idle>-0     (-----) [003] dn.3 82319.246676: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
145973          <idle>-0     (-----) [003] .n.1 82319.246682: cpu_idle: state=4294967295 cpu_id=3
145974          <idle>-0     (-----) [003] d..2 82319.246700: 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
145975     ksoftirqd/3-34    (   34) [003] d.s2 82319.246714: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
145976     ksoftirqd/3-34    (   34) [003] d.s3 82319.246732: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
145977     ksoftirqd/3-34    (   34) [003] d..2 82319.246748: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
145978     kworker/3:1-25210 (25210) [003] d..2 82319.246813: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
145979          <idle>-0     (-----) [003] d..1 82319.246829: cpu_idle: state=2 cpu_id=3
145980          <idle>-0     (-----) [000] ...1 82319.248390: cpu_idle: state=4294967295 cpu_id=0
145981          <idle>-0     (-----) [000] d..1 82319.248397: cpu_idle: state=2 cpu_id=0
145982          <idle>-0     (-----) [002] d..2 82319.248607: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145983          <idle>-0     (-----) [002] dn.3 82319.248623: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145984          <idle>-0     (-----) [002] .n.1 82319.248628: cpu_idle: state=4294967295 cpu_id=2
145985          <idle>-0     (-----) [002] d..2 82319.248647: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145986     ksoftirqd/2-26    (   26) [002] d.s2 82319.248658: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145987     ksoftirqd/2-26    (   26) [002] d.s3 82319.248684: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145988     ksoftirqd/2-26    (   26) [002] d..2 82319.248700: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145989  kworker/u16:13-1147  ( 1147) [002] d..2 82319.248763: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145990          <idle>-0     (-----) [002] d..1 82319.248779: cpu_idle: state=2 cpu_id=2
145991          <idle>-0     (-----) [002] d..2 82319.253883: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145992          <idle>-0     (-----) [002] dn.3 82319.253904: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
145993          <idle>-0     (-----) [002] .n.1 82319.253912: cpu_idle: state=4294967295 cpu_id=2
145994          <idle>-0     (-----) [002] d..2 82319.253937: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
145995     ksoftirqd/2-26    (   26) [002] d.s2 82319.253948: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145996     ksoftirqd/2-26    (   26) [002] d.s3 82319.253975: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
145997     ksoftirqd/2-26    (   26) [002] d..2 82319.253994: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
145998  kworker/u16:13-1147  ( 1147) [002] d..2 82319.254096: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
145999          <idle>-0     (-----) [002] d..1 82319.254120: cpu_idle: state=0 cpu_id=2
146000          <idle>-0     (-----) [003] d.h2 82319.256855: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146001          <idle>-0     (-----) [003] dnh3 82319.256891: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146002          <idle>-0     (-----) [003] .n.1 82319.256908: cpu_idle: state=4294967295 cpu_id=3
146003          <idle>-0     (-----) [003] d..2 82319.256933: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146004        DispSync-8879  ( 8858) [003] d..1 82319.256962: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146005        DispSync-8879  ( 8858) [003] d..2 82319.256983: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146006          <idle>-0     (-----) [002] .n.1 82319.256993: cpu_idle: state=4294967295 cpu_id=2
146007          <idle>-0     (-----) [002] d..2 82319.257011: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146008        DispSync-8879  ( 8858) [003] d..2 82319.257047: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146009          <idle>-0     (-----) [003] d..2 82319.257056: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146010          <idle>-0     (-----) [003] dn.3 82319.257072: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146011  appEventThread-8881  ( 8858) [002] d..3 82319.257079: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146012          <idle>-0     (-----) [003] d..2 82319.257085: 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
146013     ksoftirqd/3-34    (   34) [003] d.s2 82319.257097: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
146014     ksoftirqd/3-34    (   34) [003] d.s3 82319.257152: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146015  appEventThread-8881  ( 8858) [002] d..2 82319.257161: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146016     ksoftirqd/3-34    (   34) [003] d..2 82319.257170: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146017          <idle>-0     (-----) [002] d..1 82319.257183: cpu_idle: state=0 cpu_id=2
146018  kworker/u16:13-1147  ( 1147) [003] d..2 82319.257380: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
146019          <idle>-0     (-----) [003] d..1 82319.257412: cpu_idle: state=0 cpu_id=3
146020          <idle>-0     (-----) [001] d.s3 82319.257580: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146021          <idle>-0     (-----) [001] d.s4 82319.257602: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
146022          <idle>-0     (-----) [001] d.s4 82319.257616: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146023          <idle>-0     (-----) [003] .n.1 82319.257626: cpu_idle: state=4294967295 cpu_id=3
146024          <idle>-0     (-----) [001] ...1 82319.257633: cpu_idle: state=4294967295 cpu_id=1
146025          <idle>-0     (-----) [003] d..2 82319.257642: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146026          <idle>-0     (-----) [001] d..1 82319.257649: cpu_idle: state=0 cpu_id=1
146027  kworker/u16:13-1147  ( 1147) [003] d..2 82319.257680: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146028          <idle>-0     (-----) [003] d..1 82319.257694: cpu_idle: state=2 cpu_id=3
146029          <idle>-0     (-----) [004] dnh2 82319.257879: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146030          <idle>-0     (-----) [004] .n.1 82319.257888: cpu_idle: state=4294967295 cpu_id=4
146031          <idle>-0     (-----) [004] d..2 82319.257901: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146032 s.nexuslauncher-10023 (10023) [004] .... 82319.258070: binder_transaction: transaction=1573213 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146033 s.nexuslauncher-10023 (10023) [004] .... 82319.258076: binder_transaction_alloc_buf: transaction=1573213 data_size=80 offsets_size=0
146034 s.nexuslauncher-10023 (10023) [004] d..4 82319.258080: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146035 s.nexuslauncher-10023 (10023) [004] d..2 82319.258171: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146036          <idle>-0     (-----) [004] d..1 82319.258186: cpu_idle: state=2 cpu_id=4
146037          <idle>-0     (-----) [000] dnh2 82319.258284: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146038          <idle>-0     (-----) [000] .n.1 82319.258297: cpu_idle: state=4294967295 cpu_id=0
146039          <idle>-0     (-----) [000] d..2 82319.258319: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146040   Binder:8858_1-8871  ( 8858) [000] .... 82319.258330: binder_transaction_received: transaction=1573213
146041   Binder:8858_1-8871  ( 8858) [000] d..1 82319.258378: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146042   Binder:8858_1-8871  ( 8858) [000] d..2 82319.258405: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146043          <idle>-0     (-----) [002] .n.1 82319.258413: cpu_idle: state=4294967295 cpu_id=2
146044          <idle>-0     (-----) [002] d..2 82319.258427: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146045   Binder:8858_1-8871  ( 8858) [000] d..2 82319.258479: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146046  appEventThread-8881  ( 8858) [002] d.s2 82319.258487: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146047  appEventThread-8881  ( 8858) [002] d.s3 82319.258511: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146048          <idle>-0     (-----) [000] d..1 82319.258567: cpu_idle: state=0 cpu_id=0
146049  appEventThread-8881  ( 8858) [002] d..2 82319.258573: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146050          <idle>-0     (-----) [002] d..1 82319.258594: cpu_idle: state=0 cpu_id=2
146051          <idle>-0     (-----) [003] .n.1 82319.258678: cpu_idle: state=4294967295 cpu_id=3
146052          <idle>-0     (-----) [003] d..2 82319.258709: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146053  kworker/u16:13-1147  ( 1147) [003] d..2 82319.258780: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146054          <idle>-0     (-----) [003] d..1 82319.258802: cpu_idle: state=0 cpu_id=3
146055          <idle>-0     (-----) [001] d.s3 82319.259134: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146056          <idle>-0     (-----) [001] dns4 82319.259151: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146057          <idle>-0     (-----) [001] .n.1 82319.259172: cpu_idle: state=4294967295 cpu_id=1
146058          <idle>-0     (-----) [001] d..2 82319.259192: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146059     kworker/1:1-25249 (25249) [001] d..2 82319.259238: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146060     kworker/1:1-25249 (25249) [001] d..3 82319.259257: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146061     kworker/1:1-25249 (25249) [001] d..2 82319.259296: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146062 [email protected] (  798) [001] d..2 82319.259480: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146063          <idle>-0     (-----) [001] d..1 82319.259506: cpu_idle: state=0 cpu_id=1
146064          <idle>-0     (-----) [000] d..2 82319.264576: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146065          <idle>-0     (-----) [000] dn.3 82319.264592: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146066          <idle>-0     (-----) [000] .n.1 82319.264598: cpu_idle: state=4294967295 cpu_id=0
146067          <idle>-0     (-----) [002] ...1 82319.264605: cpu_idle: state=4294967295 cpu_id=2
146068          <idle>-0     (-----) [002] d..1 82319.264611: cpu_idle: state=2 cpu_id=2
146069          <idle>-0     (-----) [000] d..2 82319.264617: 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
146070     ksoftirqd/0-3     (    3) [000] d.s2 82319.264631: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146071     ksoftirqd/0-3     (    3) [000] d.s3 82319.264682: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146072     ksoftirqd/0-3     (    3) [000] d..2 82319.264702: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146073          <idle>-0     (-----) [003] ...1 82319.264815: cpu_idle: state=4294967295 cpu_id=3
146074  kworker/u16:13-1147  ( 1147) [000] d..2 82319.264816: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146075          <idle>-0     (-----) [003] d..1 82319.264823: cpu_idle: state=2 cpu_id=3
146076          <idle>-0     (-----) [000] d..1 82319.264834: cpu_idle: state=2 cpu_id=0
146077          <idle>-0     (-----) [001] d..2 82319.265516: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146078          <idle>-0     (-----) [001] dn.3 82319.265532: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146079          <idle>-0     (-----) [001] .n.1 82319.265538: cpu_idle: state=4294967295 cpu_id=1
146080          <idle>-0     (-----) [001] d..2 82319.265556: 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
146081     ksoftirqd/1-18    (   18) [001] d..2 82319.265597: 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
146082          <idle>-0     (-----) [001] d..1 82319.265612: cpu_idle: state=2 cpu_id=1
146083          <idle>-0     (-----) [003] d.h2 82319.273384: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146084          <idle>-0     (-----) [003] dnh3 82319.273417: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146085          <idle>-0     (-----) [003] .n.1 82319.273510: cpu_idle: state=4294967295 cpu_id=3
146086          <idle>-0     (-----) [003] d..2 82319.273532: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146087        DispSync-8879  ( 8858) [003] d..1 82319.273560: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146088          <idle>-0     (-----) [001] d.s3 82319.273566: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146089          <idle>-0     (-----) [002] d..2 82319.273567: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146090        DispSync-8879  ( 8858) [003] d..2 82319.273588: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146091          <idle>-0     (-----) [001] dns4 82319.273594: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146092          <idle>-0     (-----) [002] dn.3 82319.273605: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146093          <idle>-0     (-----) [001] .n.1 82319.273616: cpu_idle: state=4294967295 cpu_id=1
146094          <idle>-0     (-----) [002] .n.1 82319.273617: cpu_idle: state=4294967295 cpu_id=2
146095          <idle>-0     (-----) [002] d..2 82319.273643: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146096          <idle>-0     (-----) [001] d..2 82319.273645: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146097        DispSync-8879  ( 8858) [003] d..2 82319.273661: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146098          <idle>-0     (-----) [003] d..1 82319.273684: cpu_idle: state=0 cpu_id=3
146099     kworker/1:1-25249 (25249) [001] d..2 82319.273689: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146100     kworker/1:1-25249 (25249) [001] d..3 82319.273708: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146101  appEventThread-8881  ( 8858) [002] d..3 82319.273710: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146102     kworker/1:1-25249 (25249) [001] d..2 82319.273745: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146103  appEventThread-8881  ( 8858) [002] d..2 82319.273779: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
146104     ksoftirqd/2-26    (   26) [002] d.s2 82319.273795: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146105     ksoftirqd/2-26    (   26) [002] d.s3 82319.273852: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
146106     ksoftirqd/2-26    (   26) [002] d..2 82319.273874: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146107 [email protected] (  798) [001] d..2 82319.273933: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146108          <idle>-0     (-----) [001] d.s4 82319.274033: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146109          <idle>-0     (-----) [001] dns5 82319.274048: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146110          <idle>-0     (-----) [001] d..2 82319.274107: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146111     kworker/1:1-25249 (25249) [001] d..2 82319.274145: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146112     kworker/1:1-25249 (25249) [001] d..3 82319.274161: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146113  kworker/u16:13-1147  ( 1147) [002] d..2 82319.274170: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146114     kworker/1:1-25249 (25249) [001] d..2 82319.274194: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146115          <idle>-0     (-----) [002] d..1 82319.274200: cpu_idle: state=0 cpu_id=2
146116 [email protected] (  798) [001] d..2 82319.274412: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146117          <idle>-0     (-----) [001] d..1 82319.274442: cpu_idle: state=0 cpu_id=1
146118          <idle>-0     (-----) [004] dnh2 82319.274504: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146119          <idle>-0     (-----) [004] .n.1 82319.274512: cpu_idle: state=4294967295 cpu_id=4
146120          <idle>-0     (-----) [004] d..2 82319.274525: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146121 s.nexuslauncher-10023 (10023) [004] .... 82319.274692: binder_transaction: transaction=1573214 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146122 s.nexuslauncher-10023 (10023) [004] .... 82319.274697: binder_transaction_alloc_buf: transaction=1573214 data_size=80 offsets_size=0
146123 s.nexuslauncher-10023 (10023) [004] d..4 82319.274701: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146124 s.nexuslauncher-10023 (10023) [004] d..2 82319.274795: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146125          <idle>-0     (-----) [004] d..1 82319.274811: cpu_idle: state=2 cpu_id=4
146126          <idle>-0     (-----) [000] dnh2 82319.274957: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146127          <idle>-0     (-----) [000] .n.1 82319.274970: cpu_idle: state=4294967295 cpu_id=0
146128          <idle>-0     (-----) [000] d..2 82319.274993: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146129   Binder:8858_1-8871  ( 8858) [000] .... 82319.275005: binder_transaction_received: transaction=1573214
146130   Binder:8858_1-8871  ( 8858) [000] d..1 82319.275052: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146131   Binder:8858_1-8871  ( 8858) [000] d..2 82319.275079: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146132          <idle>-0     (-----) [002] .n.1 82319.275088: cpu_idle: state=4294967295 cpu_id=2
146133          <idle>-0     (-----) [002] d..2 82319.275102: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146134   Binder:8858_1-8871  ( 8858) [000] d..2 82319.275209: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146135  appEventThread-8881  ( 8858) [002] d..2 82319.275220: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146136          <idle>-0     (-----) [000] d..1 82319.275234: cpu_idle: state=2 cpu_id=0
146137          <idle>-0     (-----) [002] d..1 82319.275240: cpu_idle: state=2 cpu_id=2
146138          <idle>-0     (-----) [001] d.s3 82319.275438: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146139          <idle>-0     (-----) [001] dns4 82319.275453: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146140          <idle>-0     (-----) [001] .n.1 82319.275479: cpu_idle: state=4294967295 cpu_id=1
146141          <idle>-0     (-----) [001] d..2 82319.275497: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146142     kworker/1:1-25249 (25249) [001] d..2 82319.275533: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146143     kworker/1:1-25249 (25249) [001] d..3 82319.275549: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146144     kworker/1:1-25249 (25249) [001] d..2 82319.275583: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146145 [email protected] (  798) [001] d..2 82319.275749: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146146          <idle>-0     (-----) [001] d..1 82319.275774: cpu_idle: state=0 cpu_id=1
146147          <idle>-0     (-----) [001] d.s3 82319.275911: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
146148          <idle>-0     (-----) [001] dns4 82319.275940: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
146149          <idle>-0     (-----) [001] dns3 82319.275965: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146150          <idle>-0     (-----) [001] dns4 82319.275975: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146151          <idle>-0     (-----) [001] .n.1 82319.275995: cpu_idle: state=4294967295 cpu_id=1
146152          <idle>-0     (-----) [001] d..2 82319.276013: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
146153   cds_mc_thread-16565 (16565) [001] d..2 82319.276098: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146154     kworker/1:1-25249 (25249) [001] d..2 82319.276131: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146155     kworker/1:1-25249 (25249) [001] d..3 82319.276148: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146156     kworker/1:1-25249 (25249) [001] d..2 82319.276177: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146157 [email protected] (  798) [001] d..2 82319.276346: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146158          <idle>-0     (-----) [001] d..1 82319.276370: cpu_idle: state=2 cpu_id=1
146159          <idle>-0     (-----) [002] ...1 82319.276410: cpu_idle: state=4294967295 cpu_id=2
146160          <idle>-0     (-----) [002] d..1 82319.276427: cpu_idle: state=0 cpu_id=2
146161          <idle>-0     (-----) [003] d..2 82319.279699: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146162          <idle>-0     (-----) [003] dn.3 82319.279716: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146163          <idle>-0     (-----) [003] .n.1 82319.279721: cpu_idle: state=4294967295 cpu_id=3
146164          <idle>-0     (-----) [003] d..2 82319.279738: 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
146165     ksoftirqd/3-34    (   34) [003] d..2 82319.279780: 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
146166          <idle>-0     (-----) [003] d..1 82319.279794: cpu_idle: state=2 cpu_id=3
146167          <idle>-0     (-----) [002] d..2 82319.282436: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146168          <idle>-0     (-----) [002] dn.3 82319.282453: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146169          <idle>-0     (-----) [002] .n.1 82319.282458: cpu_idle: state=4294967295 cpu_id=2
146170          <idle>-0     (-----) [002] d..2 82319.282479: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
146171     ksoftirqd/2-26    (   26) [002] d.s2 82319.282491: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
146172     ksoftirqd/2-26    (   26) [002] d.s3 82319.282518: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
146173     ksoftirqd/2-26    (   26) [002] d..2 82319.282537: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146174  kworker/u16:13-1147  ( 1147) [002] d..2 82319.282655: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146175          <idle>-0     (-----) [002] d..1 82319.282674: cpu_idle: state=2 cpu_id=2
146176          <idle>-0     (-----) [003] d.h2 82319.289872: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146177          <idle>-0     (-----) [003] dnh3 82319.289898: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146178          <idle>-0     (-----) [003] .n.1 82319.289913: cpu_idle: state=4294967295 cpu_id=3
146179          <idle>-0     (-----) [003] d..2 82319.289933: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146180        DispSync-8879  ( 8858) [003] d..1 82319.289960: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146181        DispSync-8879  ( 8858) [003] d..2 82319.289978: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146182        DispSync-8879  ( 8858) [003] d..2 82319.290036: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146183          <idle>-0     (-----) [003] d..2 82319.290042: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146184          <idle>-0     (-----) [003] dn.3 82319.290055: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146185          <idle>-0     (-----) [003] d..2 82319.290066: 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
146186     ksoftirqd/3-34    (   34) [003] d..2 82319.290094: 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
146187          <idle>-0     (-----) [003] d..1 82319.290116: cpu_idle: state=0 cpu_id=3
146188          <idle>-0     (-----) [002] .n.1 82319.290158: cpu_idle: state=4294967295 cpu_id=2
146189          <idle>-0     (-----) [002] d..2 82319.290195: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146190  appEventThread-8881  ( 8858) [002] d..3 82319.290261: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146191  appEventThread-8881  ( 8858) [002] d..2 82319.290357: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146192          <idle>-0     (-----) [002] d..1 82319.290385: cpu_idle: state=0 cpu_id=2
146193          <idle>-0     (-----) [004] dnh2 82319.291063: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146194          <idle>-0     (-----) [004] .n.1 82319.291072: cpu_idle: state=4294967295 cpu_id=4
146195          <idle>-0     (-----) [004] d..2 82319.291085: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146196 s.nexuslauncher-10023 (10023) [004] .... 82319.291255: binder_transaction: transaction=1573215 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146197 s.nexuslauncher-10023 (10023) [004] .... 82319.291261: binder_transaction_alloc_buf: transaction=1573215 data_size=80 offsets_size=0
146198 s.nexuslauncher-10023 (10023) [004] d..4 82319.291265: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146199 s.nexuslauncher-10023 (10023) [004] d..2 82319.291358: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146200          <idle>-0     (-----) [004] d..1 82319.291373: cpu_idle: state=2 cpu_id=4
146201          <idle>-0     (-----) [000] dnh2 82319.291468: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146202          <idle>-0     (-----) [000] .n.1 82319.291481: cpu_idle: state=4294967295 cpu_id=0
146203          <idle>-0     (-----) [000] d..2 82319.291503: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146204   Binder:8858_1-8871  ( 8858) [000] .... 82319.291515: binder_transaction_received: transaction=1573215
146205   Binder:8858_1-8871  ( 8858) [000] d..1 82319.291564: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146206   Binder:8858_1-8871  ( 8858) [000] d..2 82319.291592: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146207          <idle>-0     (-----) [002] .n.1 82319.291601: cpu_idle: state=4294967295 cpu_id=2
146208          <idle>-0     (-----) [002] d..2 82319.291614: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146209   Binder:8858_1-8871  ( 8858) [000] d..2 82319.291655: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146210  appEventThread-8881  ( 8858) [002] d..2 82319.291670: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146211          <idle>-0     (-----) [000] d..1 82319.291679: cpu_idle: state=2 cpu_id=0
146212          <idle>-0     (-----) [002] d..1 82319.291686: cpu_idle: state=0 cpu_id=2
146213          <idle>-0     (-----) [003] d..2 82319.296133: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146214          <idle>-0     (-----) [003] dn.3 82319.296147: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146215          <idle>-0     (-----) [003] dns3 82319.296228: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
146216          <idle>-0     (-----) [003] dns4 82319.296277: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146217          <idle>-0     (-----) [003] .n.1 82319.296291: cpu_idle: state=4294967295 cpu_id=3
146218          <idle>-0     (-----) [002] ...1 82319.296310: cpu_idle: state=4294967295 cpu_id=2
146219          <idle>-0     (-----) [003] d..2 82319.296311: 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
146220          <idle>-0     (-----) [002] d..1 82319.296318: cpu_idle: state=0 cpu_id=2
146221     ksoftirqd/3-34    (   34) [003] d..2 82319.296325: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146222  kworker/u16:13-1147  ( 1147) [003] d..2 82319.296444: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146223          <idle>-0     (-----) [003] d..1 82319.296463: cpu_idle: state=2 cpu_id=3
146224          <idle>-0     (-----) [001] d.s3 82319.298674: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146225          <idle>-0     (-----) [001] dns4 82319.298695: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146226          <idle>-0     (-----) [001] .n.1 82319.298727: cpu_idle: state=4294967295 cpu_id=1
146227          <idle>-0     (-----) [001] d..2 82319.298748: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146228     kworker/1:1-25249 (25249) [001] d..2 82319.298890: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
146229          <idle>-0     (-----) [001] d..1 82319.298910: cpu_idle: state=2 cpu_id=1
146230          <idle>-0     (-----) [000] d.h3 82319.299777: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
146231          <idle>-0     (-----) [000] dnh4 82319.299803: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
146232          <idle>-0     (-----) [000] .n.1 82319.299828: cpu_idle: state=4294967295 cpu_id=0
146233          <idle>-0     (-----) [000] d..2 82319.299849: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
146234     kworker/0:1-25262 (25262) [000] d..2 82319.299859: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146235     kworker/0:1-25262 (25262) [000] d..3 82319.299869: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
146236     kworker/0:1-25262 (25262) [000] d..3 82319.299879: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146237     kworker/0:1-25262 (25262) [000] d..2 82319.299913: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146238          <idle>-0     (-----) [000] d..1 82319.299935: cpu_idle: state=2 cpu_id=0
146239          <idle>-0     (-----) [001] .n.1 82319.300050: cpu_idle: state=4294967295 cpu_id=1
146240          <idle>-0     (-----) [001] d..2 82319.300079: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146241     kworker/1:1-25249 (25249) [001] d..2 82319.300219: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146242          <idle>-0     (-----) [001] d..1 82319.300241: cpu_idle: state=0 cpu_id=1
146243          <idle>-0     (-----) [003] d.h2 82319.306234: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146244          <idle>-0     (-----) [001] d..2 82319.306252: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146245          <idle>-0     (-----) [003] dnh3 82319.306264: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146246          <idle>-0     (-----) [001] dn.3 82319.306272: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146247          <idle>-0     (-----) [001] .n.1 82319.306278: cpu_idle: state=4294967295 cpu_id=1
146248          <idle>-0     (-----) [003] .n.1 82319.306280: cpu_idle: state=4294967295 cpu_id=3
146249          <idle>-0     (-----) [001] d..2 82319.306295: 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
146250          <idle>-0     (-----) [003] d..2 82319.306302: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146251     ksoftirqd/1-18    (   18) [001] d.s2 82319.306306: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146252        DispSync-8879  ( 8858) [003] d..1 82319.306332: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146253        DispSync-8879  ( 8858) [003] d..2 82319.306353: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146254          <idle>-0     (-----) [002] .n.1 82319.306359: cpu_idle: state=4294967295 cpu_id=2
146255     ksoftirqd/1-18    (   18) [001] d.s3 82319.306360: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
146256          <idle>-0     (-----) [002] d..2 82319.306376: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146257     ksoftirqd/1-18    (   18) [001] d..2 82319.306381: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146258        DispSync-8879  ( 8858) [003] d..2 82319.306414: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146259          <idle>-0     (-----) [003] d..1 82319.306436: cpu_idle: state=0 cpu_id=3
146260  appEventThread-8881  ( 8858) [002] d..3 82319.306443: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146261  appEventThread-8881  ( 8858) [002] d..2 82319.306541: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146262          <idle>-0     (-----) [002] d..1 82319.306564: cpu_idle: state=0 cpu_id=2
146263  kworker/u16:13-1147  ( 1147) [001] d..2 82319.306600: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146264          <idle>-0     (-----) [001] d..1 82319.306619: cpu_idle: state=2 cpu_id=1
146265          <idle>-0     (-----) [004] dnh2 82319.307241: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146266          <idle>-0     (-----) [004] .n.1 82319.307249: cpu_idle: state=4294967295 cpu_id=4
146267          <idle>-0     (-----) [004] d..2 82319.307263: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146268 s.nexuslauncher-10023 (10023) [004] .... 82319.307433: binder_transaction: transaction=1573216 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146269 s.nexuslauncher-10023 (10023) [004] .... 82319.307438: binder_transaction_alloc_buf: transaction=1573216 data_size=80 offsets_size=0
146270 s.nexuslauncher-10023 (10023) [004] d..4 82319.307442: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146271 s.nexuslauncher-10023 (10023) [004] d..2 82319.307534: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146272          <idle>-0     (-----) [004] d..1 82319.307549: cpu_idle: state=2 cpu_id=4
146273          <idle>-0     (-----) [000] dnh2 82319.307647: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146274          <idle>-0     (-----) [000] .n.1 82319.307660: cpu_idle: state=4294967295 cpu_id=0
146275          <idle>-0     (-----) [000] d..2 82319.307682: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146276   Binder:8858_1-8871  ( 8858) [000] .... 82319.307694: binder_transaction_received: transaction=1573216
146277   Binder:8858_1-8871  ( 8858) [000] d..1 82319.307743: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146278   Binder:8858_1-8871  ( 8858) [000] d..2 82319.307771: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146279          <idle>-0     (-----) [002] .n.1 82319.307778: cpu_idle: state=4294967295 cpu_id=2
146280          <idle>-0     (-----) [002] d..2 82319.307792: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146281   Binder:8858_1-8871  ( 8858) [000] d..2 82319.307832: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146282  appEventThread-8881  ( 8858) [002] d..2 82319.307845: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146283          <idle>-0     (-----) [000] d..1 82319.307855: cpu_idle: state=2 cpu_id=0
146284          <idle>-0     (-----) [002] d..1 82319.307860: cpu_idle: state=2 cpu_id=2
146285          <idle>-0     (-----) [003] d..2 82319.312452: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146286          <idle>-0     (-----) [003] dn.3 82319.312468: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146287          <idle>-0     (-----) [003] .n.1 82319.312549: cpu_idle: state=4294967295 cpu_id=3
146288          <idle>-0     (-----) [003] d..2 82319.312569: 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
146289     ksoftirqd/3-34    (   34) [003] d..2 82319.312605: 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
146290          <idle>-0     (-----) [003] d..1 82319.312620: cpu_idle: state=2 cpu_id=3
146291          <idle>-0     (-----) [001] d.s3 82319.316206: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146292          <idle>-0     (-----) [001] dns4 82319.316229: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146293          <idle>-0     (-----) [001] .n.1 82319.316250: cpu_idle: state=4294967295 cpu_id=1
146294          <idle>-0     (-----) [001] d..2 82319.316274: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146295     kworker/1:1-25249 (25249) [001] d..2 82319.316316: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146296          <idle>-0     (-----) [002] d..2 82319.316321: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146297     kworker/1:1-25249 (25249) [001] d..3 82319.316336: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146298          <idle>-0     (-----) [002] dn.3 82319.316350: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146299          <idle>-0     (-----) [002] .n.1 82319.316358: cpu_idle: state=4294967295 cpu_id=2
146300     kworker/1:1-25249 (25249) [001] d..2 82319.316371: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146301          <idle>-0     (-----) [002] d..2 82319.316387: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
146302     ksoftirqd/2-26    (   26) [002] d.s2 82319.316401: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
146303     ksoftirqd/2-26    (   26) [002] d.s3 82319.316458: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
146304     ksoftirqd/2-26    (   26) [002] d..2 82319.316479: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146305 [email protected] (  798) [001] d.s2 82319.316512: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146306 [email protected] (  798) [001] dns3 82319.316533: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146307 [email protected] (  798) [001] d..2 82319.316580: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146308     kworker/1:1-25249 (25249) [001] d..2 82319.316665: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146309  kworker/u16:13-1147  ( 1147) [002] d..2 82319.316678: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146310          <idle>-0     (-----) [002] d..1 82319.316700: cpu_idle: state=2 cpu_id=2
146311 [email protected] (  798) [001] d..2 82319.316903: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146312          <idle>-0     (-----) [001] d..1 82319.316929: cpu_idle: state=0 cpu_id=1
146313          <idle>-0     (-----) [001] d.s3 82319.317820: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146314          <idle>-0     (-----) [001] dns4 82319.317835: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146315          <idle>-0     (-----) [001] .n.1 82319.317858: cpu_idle: state=4294967295 cpu_id=1
146316          <idle>-0     (-----) [001] d..2 82319.317875: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146317     kworker/1:1-25249 (25249) [001] d..2 82319.317910: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146318     kworker/1:1-25249 (25249) [001] d..3 82319.317925: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146319     kworker/1:1-25249 (25249) [001] d..2 82319.317955: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146320 [email protected] (  798) [001] d..2 82319.318121: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146321          <idle>-0     (-----) [001] d..1 82319.318145: cpu_idle: state=0 cpu_id=1
146322          <idle>-0     (-----) [001] d.s3 82319.318381: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
146323          <idle>-0     (-----) [001] dns4 82319.318409: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
146324          <idle>-0     (-----) [001] dns3 82319.318434: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146325          <idle>-0     (-----) [001] dns4 82319.318445: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146326          <idle>-0     (-----) [001] .n.1 82319.318464: cpu_idle: state=4294967295 cpu_id=1
146327          <idle>-0     (-----) [001] d..2 82319.318485: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
146328   cds_mc_thread-16565 (16565) [001] d..2 82319.318571: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146329     kworker/1:1-25249 (25249) [001] d..2 82319.318604: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146330     kworker/1:1-25249 (25249) [001] d..3 82319.318619: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146331     kworker/1:1-25249 (25249) [001] d..2 82319.318648: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146332 [email protected] (  798) [001] d..2 82319.318813: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146333          <idle>-0     (-----) [001] d..2 82319.318820: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146334          <idle>-0     (-----) [001] dn.3 82319.318836: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146335          <idle>-0     (-----) [001] d..2 82319.318848: 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
146336     ksoftirqd/1-18    (   18) [001] d..2 82319.318876: 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
146337          <idle>-0     (-----) [002] ...1 82319.318890: cpu_idle: state=4294967295 cpu_id=2
146338          <idle>-0     (-----) [001] d..1 82319.318903: cpu_idle: state=0 cpu_id=1
146339          <idle>-0     (-----) [002] d..1 82319.318911: cpu_idle: state=0 cpu_id=2
146340          <idle>-0     (-----) [003] d.h2 82319.322710: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146341          <idle>-0     (-----) [003] dnh3 82319.322743: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146342          <idle>-0     (-----) [003] .n.1 82319.322761: cpu_idle: state=4294967295 cpu_id=3
146343          <idle>-0     (-----) [003] d..2 82319.322785: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146344        DispSync-8879  ( 8858) [003] d..1 82319.322814: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146345        DispSync-8879  ( 8858) [003] d..2 82319.322834: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146346          <idle>-0     (-----) [002] .n.1 82319.322842: cpu_idle: state=4294967295 cpu_id=2
146347          <idle>-0     (-----) [002] d..2 82319.322863: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146348        DispSync-8879  ( 8858) [003] d..2 82319.322901: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146349          <idle>-0     (-----) [003] d..2 82319.322908: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146350          <idle>-0     (-----) [003] dn.3 82319.322923: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146351  appEventThread-8881  ( 8858) [002] d..3 82319.322930: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146352          <idle>-0     (-----) [003] d..2 82319.322936: 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
146353     ksoftirqd/3-34    (   34) [003] d.s2 82319.322948: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
146354     ksoftirqd/3-34    (   34) [003] d.s3 82319.323005: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146355     ksoftirqd/3-34    (   34) [003] d..2 82319.323023: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146356  appEventThread-8881  ( 8858) [002] d..2 82319.323045: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146357          <idle>-0     (-----) [002] d..1 82319.323067: cpu_idle: state=0 cpu_id=2
146358  kworker/u16:13-1147  ( 1147) [003] d..2 82319.323098: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146359          <idle>-0     (-----) [003] d..1 82319.323121: cpu_idle: state=0 cpu_id=3
146360          <idle>-0     (-----) [004] dnh2 82319.323719: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146361          <idle>-0     (-----) [004] .n.1 82319.323728: cpu_idle: state=4294967295 cpu_id=4
146362          <idle>-0     (-----) [004] d..2 82319.323741: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146363 s.nexuslauncher-10023 (10023) [004] .... 82319.323910: binder_transaction: transaction=1573217 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146364 s.nexuslauncher-10023 (10023) [004] .... 82319.323915: binder_transaction_alloc_buf: transaction=1573217 data_size=80 offsets_size=0
146365 s.nexuslauncher-10023 (10023) [004] d..4 82319.323919: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146366 s.nexuslauncher-10023 (10023) [004] d..2 82319.324012: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146367          <idle>-0     (-----) [004] d..1 82319.324027: cpu_idle: state=2 cpu_id=4
146368          <idle>-0     (-----) [000] dnh2 82319.324123: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146369          <idle>-0     (-----) [000] .n.1 82319.324136: cpu_idle: state=4294967295 cpu_id=0
146370          <idle>-0     (-----) [000] d..2 82319.324158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146371   Binder:8858_1-8871  ( 8858) [000] .... 82319.324170: binder_transaction_received: transaction=1573217
146372   Binder:8858_1-8871  ( 8858) [000] d..1 82319.324218: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146373   Binder:8858_1-8871  ( 8858) [000] d..2 82319.324245: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146374          <idle>-0     (-----) [002] .n.1 82319.324253: cpu_idle: state=4294967295 cpu_id=2
146375          <idle>-0     (-----) [002] d..2 82319.324267: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146376   Binder:8858_1-8871  ( 8858) [000] d..2 82319.324307: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146377  appEventThread-8881  ( 8858) [002] d..2 82319.324325: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146378          <idle>-0     (-----) [000] d..1 82319.324331: cpu_idle: state=2 cpu_id=0
146379          <idle>-0     (-----) [002] d..1 82319.324341: cpu_idle: state=0 cpu_id=2
146380          <idle>-0     (-----) [001] ...1 82319.324916: cpu_idle: state=4294967295 cpu_id=1
146381          <idle>-0     (-----) [001] d..1 82319.324923: cpu_idle: state=2 cpu_id=1
146382          <idle>-0     (-----) [003] d..2 82319.329134: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146383          <idle>-0     (-----) [003] dn.3 82319.329147: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146384          <idle>-0     (-----) [003] .n.1 82319.329152: cpu_idle: state=4294967295 cpu_id=3
146385          <idle>-0     (-----) [003] d..2 82319.329169: 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
146386     ksoftirqd/3-34    (   34) [003] d.s2 82319.329177: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146387     ksoftirqd/3-34    (   34) [003] d.s3 82319.329200: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146388     ksoftirqd/3-34    (   34) [003] d..2 82319.329221: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146389  kworker/u16:13-1147  ( 1147) [003] d..2 82319.329334: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146390          <idle>-0     (-----) [003] d..1 82319.329353: cpu_idle: state=2 cpu_id=3
146391          <idle>-0     (-----) [002] ...1 82319.330352: cpu_idle: state=4294967295 cpu_id=2
146392          <idle>-0     (-----) [002] d..1 82319.330359: cpu_idle: state=2 cpu_id=2
146393          <idle>-0     (-----) [001] d.h2 82319.336689: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
146394          <idle>-0     (-----) [001] dnh3 82319.336725: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
146395          <idle>-0     (-----) [001] .n.1 82319.336806: cpu_idle: state=4294967295 cpu_id=1
146396          <idle>-0     (-----) [001] d..2 82319.336828: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
146397 [email protected]  (  776) [001] d..2 82319.336949: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146398          <idle>-0     (-----) [001] d..2 82319.336955: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146399          <idle>-0     (-----) [001] dn.3 82319.336970: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146400          <idle>-0     (-----) [001] d..2 82319.336982: 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
146401     ksoftirqd/1-18    (   18) [001] d..2 82319.337013: 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
146402          <idle>-0     (-----) [001] d..1 82319.337036: cpu_idle: state=0 cpu_id=1
146403          <idle>-0     (-----) [002] d..2 82319.338911: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146404          <idle>-0     (-----) [002] dn.3 82319.338942: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146405          <idle>-0     (-----) [002] .n.1 82319.338951: cpu_idle: state=4294967295 cpu_id=2
146406          <idle>-0     (-----) [002] d..2 82319.338982: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
146407     ksoftirqd/2-26    (   26) [002] d.s2 82319.338998: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146408     ksoftirqd/2-26    (   26) [002] d.s3 82319.339058: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
146409     ksoftirqd/2-26    (   26) [002] d..2 82319.339080: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146410          <idle>-0     (-----) [003] d.h2 82319.339154: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146411          <idle>-0     (-----) [003] dnh3 82319.339188: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146412          <idle>-0     (-----) [003] .n.1 82319.339204: cpu_idle: state=4294967295 cpu_id=3
146413  kworker/u16:13-1147  ( 1147) [002] d..2 82319.339210: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146414          <idle>-0     (-----) [003] d..2 82319.339224: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146415          <idle>-0     (-----) [002] d..1 82319.339237: cpu_idle: state=0 cpu_id=2
146416        DispSync-8879  ( 8858) [003] d..1 82319.339253: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146417        DispSync-8879  ( 8858) [003] d..2 82319.339275: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146418          <idle>-0     (-----) [002] .n.1 82319.339284: cpu_idle: state=4294967295 cpu_id=2
146419          <idle>-0     (-----) [002] d..2 82319.339300: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146420        DispSync-8879  ( 8858) [003] d..2 82319.339326: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146421          <idle>-0     (-----) [003] d..1 82319.339348: cpu_idle: state=2 cpu_id=3
146422  appEventThread-8881  ( 8858) [002] d..3 82319.339365: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146423  appEventThread-8881  ( 8858) [002] d..2 82319.339441: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146424          <idle>-0     (-----) [002] d..1 82319.339462: cpu_idle: state=0 cpu_id=2
146425          <idle>-0     (-----) [004] dnh2 82319.340161: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146426          <idle>-0     (-----) [004] .n.1 82319.340170: cpu_idle: state=4294967295 cpu_id=4
146427          <idle>-0     (-----) [004] d..2 82319.340182: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146428 s.nexuslauncher-10023 (10023) [004] .... 82319.340352: binder_transaction: transaction=1573218 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146429 s.nexuslauncher-10023 (10023) [004] .... 82319.340358: binder_transaction_alloc_buf: transaction=1573218 data_size=80 offsets_size=0
146430 s.nexuslauncher-10023 (10023) [004] d..4 82319.340362: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146431 s.nexuslauncher-10023 (10023) [004] d..2 82319.340457: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146432          <idle>-0     (-----) [004] d..1 82319.340472: cpu_idle: state=2 cpu_id=4
146433          <idle>-0     (-----) [000] dnh2 82319.340570: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146434          <idle>-0     (-----) [000] .n.1 82319.340583: cpu_idle: state=4294967295 cpu_id=0
146435          <idle>-0     (-----) [000] d..2 82319.340604: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146436   Binder:8858_1-8871  ( 8858) [000] .... 82319.340616: binder_transaction_received: transaction=1573218
146437   Binder:8858_1-8871  ( 8858) [000] d..1 82319.340664: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146438   Binder:8858_1-8871  ( 8858) [000] d..2 82319.340690: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146439          <idle>-0     (-----) [002] .n.1 82319.340698: cpu_idle: state=4294967295 cpu_id=2
146440          <idle>-0     (-----) [002] d..2 82319.340711: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146441   Binder:8858_1-8871  ( 8858) [000] d..2 82319.340753: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146442  appEventThread-8881  ( 8858) [002] d..2 82319.340766: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146443          <idle>-0     (-----) [000] d.h3 82319.340771: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
146444          <idle>-0     (-----) [002] d..1 82319.340781: cpu_idle: state=2 cpu_id=2
146445          <idle>-0     (-----) [000] dnh4 82319.340799: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
146446          <idle>-0     (-----) [000] d..2 82319.340851: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
146447 RxSchedulerPurg-25567 (25538) [000] d..2 82319.341222: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146448          <idle>-0     (-----) [000] d..1 82319.341249: cpu_idle: state=2 cpu_id=0
146449          <idle>-0     (-----) [001] d..2 82319.343048: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146450          <idle>-0     (-----) [001] dn.3 82319.343060: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146451          <idle>-0     (-----) [001] .n.1 82319.343065: cpu_idle: state=4294967295 cpu_id=1
146452          <idle>-0     (-----) [001] d..2 82319.343081: 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
146453     ksoftirqd/1-18    (   18) [001] d..2 82319.343117: 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
146454          <idle>-0     (-----) [001] d..1 82319.343130: cpu_idle: state=2 cpu_id=1
146455          <idle>-0     (-----) [003] d.h2 82319.358569: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146456          <idle>-0     (-----) [003] dnh3 82319.358646: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146457          <idle>-0     (-----) [000] d..2 82319.358684: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146458          <idle>-0     (-----) [001] d.s3 82319.358704: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146459          <idle>-0     (-----) [002] ...1 82319.358787: cpu_idle: state=4294967295 cpu_id=2
146460          <idle>-0     (-----) [000] dn.3 82319.358790: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146461          <idle>-0     (-----) [001] dns4 82319.358790: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146462          <idle>-0     (-----) [003] .n.1 82319.358792: cpu_idle: state=4294967295 cpu_id=3
146463          <idle>-0     (-----) [001] .n.1 82319.358814: cpu_idle: state=4294967295 cpu_id=1
146464          <idle>-0     (-----) [002] d..1 82319.358814: cpu_idle: state=2 cpu_id=2
146465          <idle>-0     (-----) [003] d..2 82319.358833: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146466          <idle>-0     (-----) [001] d..2 82319.358848: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146467          <idle>-0     (-----) [000] dns3 82319.358866: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
146468        DispSync-8879  ( 8858) [003] d..1 82319.358906: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146469        DispSync-8879  ( 8858) [003] d..2 82319.358931: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146470          <idle>-0     (-----) [000] dns4 82319.358951: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146471          <idle>-0     (-----) [000] dns3 82319.358965: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
146472          <idle>-0     (-----) [000] dns4 82319.358980: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
146473     kworker/1:1-25249 (25249) [001] d..2 82319.358981: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146474          <idle>-0     (-----) [000] .n.1 82319.358996: cpu_idle: state=4294967295 cpu_id=0
146475     kworker/1:1-25249 (25249) [001] d..3 82319.359008: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146476          <idle>-0     (-----) [000] d..2 82319.359028: 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
146477     ksoftirqd/0-3     (    3) [000] d..2 82319.359050: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
146478        DispSync-8879  ( 8858) [003] d..2 82319.359054: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146479          <idle>-0     (-----) [003] d..1 82319.359077: cpu_idle: state=2 cpu_id=3
146480     kworker/0:1-25262 (25262) [000] d..2 82319.359078: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
146481     kworker/0:1-25262 (25262) [000] d..3 82319.359095: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
146482     kworker/0:1-25262 (25262) [000] d..2 82319.359103: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
146483          <idle>-0     (-----) [002] .n.1 82319.359106: cpu_idle: state=4294967295 cpu_id=2
146484     kworker/1:1-25249 (25249) [001] d..2 82319.359121: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146485     kworker/0:1-25262 (25262) [000] d..3 82319.359122: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
146486     kworker/0:1-25262 (25262) [000] d..2 82319.359131: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
146487          <idle>-0     (-----) [002] d..2 82319.359135: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146488     kworker/0:1-25262 (25262) [000] d..2 82319.359167: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146489  appEventThread-8881  ( 8858) [002] d..3 82319.359280: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146490          <idle>-0     (-----) [003] .n.1 82319.359343: cpu_idle: state=4294967295 cpu_id=3
146491  appEventThread-8881  ( 8858) [002] d..2 82319.359355: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
146492          <idle>-0     (-----) [003] d..2 82319.359373: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
146493     kworker/2:1-25259 (25259) [002] d..2 82319.359432: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146494     kworker/3:1-25210 (25210) [003] d..2 82319.359437: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146495          <idle>-0     (-----) [002] d..1 82319.359454: cpu_idle: state=2 cpu_id=2
146496          <idle>-0     (-----) [003] d..1 82319.359494: cpu_idle: state=2 cpu_id=3
146497 [email protected] (  798) [001] d..2 82319.359709: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146498          <idle>-0     (-----) [001] d..1 82319.359737: cpu_idle: state=2 cpu_id=1
146499  kworker/u16:13-1147  ( 1147) [000] d..2 82319.359816: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
146500          <idle>-0     (-----) [000] d..1 82319.359849: cpu_idle: state=2 cpu_id=0
146501          <idle>-0     (-----) [005] dnh2 82319.359929: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
146502          <idle>-0     (-----) [005] .n.1 82319.359939: cpu_idle: state=4294967295 cpu_id=5
146503          <idle>-0     (-----) [005] d..2 82319.359954: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
146504          <idle>-0     (-----) [004] dnh2 82319.359973: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146505          <idle>-0     (-----) [004] .n.1 82319.359985: cpu_idle: state=4294967295 cpu_id=4
146506     kworker/5:0-23997 (23997) [005] d..2 82319.359985: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
146507          <idle>-0     (-----) [005] d..1 82319.359996: cpu_idle: state=2 cpu_id=5
146508          <idle>-0     (-----) [004] d..2 82319.360004: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146509          <idle>-0     (-----) [001] d.s3 82319.360293: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146510          <idle>-0     (-----) [001] dns4 82319.360315: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146511          <idle>-0     (-----) [001] dns3 82319.360361: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146512          <idle>-0     (-----) [001] dns4 82319.360377: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
146513          <idle>-0     (-----) [001] dns4 82319.360387: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146514          <idle>-0     (-----) [001] dns2 82319.360392: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146515          <idle>-0     (-----) [001] dns3 82319.360406: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146516          <idle>-0     (-----) [001] .n.1 82319.360416: cpu_idle: state=4294967295 cpu_id=1
146517          <idle>-0     (-----) [001] d..2 82319.360437: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146518     kworker/1:1-25249 (25249) [001] d..2 82319.360481: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146519 s.nexuslauncher-10023 (10023) [004] .... 82319.360481: binder_transaction: transaction=1573219 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146520 s.nexuslauncher-10023 (10023) [004] .... 82319.360492: binder_transaction_alloc_buf: transaction=1573219 data_size=80 offsets_size=0
146521 s.nexuslauncher-10023 (10023) [004] d..4 82319.360500: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146522     kworker/1:1-25249 (25249) [001] d..3 82319.360540: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=000
146523          <idle>-0     (-----) [000] .n.1 82319.360546: cpu_idle: state=4294967295 cpu_id=0
146524          <idle>-0     (-----) [000] d..2 82319.360578: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146525     kworker/1:1-25249 (25249) [001] d..2 82319.360579: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
146526     ksoftirqd/1-18    (   18) [001] d..2 82319.360622: 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
146527  kworker/u16:13-1147  ( 1147) [000] d..2 82319.360624: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146528 s.nexuslauncher-10023 (10023) [004] d..2 82319.360638: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146529          <idle>-0     (-----) [001] d..1 82319.360644: cpu_idle: state=2 cpu_id=1
146530          <idle>-0     (-----) [004] d..1 82319.360657: cpu_idle: state=2 cpu_id=4
146531          <idle>-0     (-----) [002] dnh2 82319.360711: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=002
146532          <idle>-0     (-----) [002] .n.1 82319.360725: cpu_idle: state=4294967295 cpu_id=2
146533          <idle>-0     (-----) [002] d..2 82319.360746: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146534   Binder:8858_1-8871  ( 8858) [002] .... 82319.360763: binder_transaction_received: transaction=1573219
146535 [email protected] (  798) [000] d..2 82319.360818: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146536   Binder:8858_1-8871  ( 8858) [002] d..1 82319.360839: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146537          <idle>-0     (-----) [000] d..1 82319.360841: cpu_idle: state=2 cpu_id=0
146538   Binder:8858_1-8871  ( 8858) [002] d..2 82319.360874: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
146539   Binder:8858_1-8871  ( 8858) [002] d..2 82319.360946: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146540          <idle>-0     (-----) [002] d..1 82319.360968: cpu_idle: state=2 cpu_id=2
146541          <idle>-0     (-----) [003] .n.1 82319.361040: cpu_idle: state=4294967295 cpu_id=3
146542          <idle>-0     (-----) [003] d..2 82319.361066: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146543  appEventThread-8881  ( 8858) [003] d..2 82319.361159: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146544          <idle>-0     (-----) [003] d..1 82319.361179: cpu_idle: state=2 cpu_id=3
146545          <idle>-0     (-----) [001] d.s3 82319.361246: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146546          <idle>-0     (-----) [001] dns4 82319.361267: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146547          <idle>-0     (-----) [001] dns3 82319.361299: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
146548          <idle>-0     (-----) [001] dns4 82319.361330: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
146549          <idle>-0     (-----) [001] .n.1 82319.361352: cpu_idle: state=4294967295 cpu_id=1
146550          <idle>-0     (-----) [001] d..2 82319.361372: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146551     kworker/1:1-25249 (25249) [001] d..2 82319.361412: sched_waking: [email protected] pid=16588 prio=120 target_cpu=000
146552     kworker/1:1-25249 (25249) [001] d..3 82319.361433: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=000
146553     kworker/1:1-25249 (25249) [001] d..2 82319.361467: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
146554          <idle>-0     (-----) [002] ...1 82319.361571: cpu_idle: state=4294967295 cpu_id=2
146555          <idle>-0     (-----) [002] d..1 82319.361585: cpu_idle: state=2 cpu_id=2
146556   cds_mc_thread-16565 (16565) [001] d..2 82319.361594: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146557          <idle>-0     (-----) [000] .n.1 82319.361603: cpu_idle: state=4294967295 cpu_id=0
146558          <idle>-0     (-----) [001] d..1 82319.361620: cpu_idle: state=2 cpu_id=1
146559          <idle>-0     (-----) [000] d..2 82319.361637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=16588 next_prio=120
146560 [email protected] (  798) [000] d..2 82319.361916: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146561          <idle>-0     (-----) [000] d..1 82319.361939: cpu_idle: state=2 cpu_id=0
146562          <idle>-0     (-----) [003] d.h2 82319.372155: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146563          <idle>-0     (-----) [003] dnh3 82319.372187: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146564          <idle>-0     (-----) [003] .n.1 82319.372270: cpu_idle: state=4294967295 cpu_id=3
146565          <idle>-0     (-----) [003] d..2 82319.372292: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146566        DispSync-8879  ( 8858) [003] d..1 82319.372319: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
146567        DispSync-8879  ( 8858) [003] d..2 82319.372347: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146568        DispSync-8879  ( 8858) [003] d..2 82319.372404: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146569          <idle>-0     (-----) [003] d..2 82319.372411: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146570          <idle>-0     (-----) [003] dn.3 82319.372430: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146571          <idle>-0     (-----) [003] d..2 82319.372443: 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
146572     ksoftirqd/3-34    (   34) [003] d.s2 82319.372459: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146573     ksoftirqd/3-34    (   34) [003] d.s3 82319.372508: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146574     ksoftirqd/3-34    (   34) [003] d.s2 82319.372519: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
146575          <idle>-0     (-----) [002] .n.1 82319.372521: cpu_idle: state=4294967295 cpu_id=2
146576     ksoftirqd/3-34    (   34) [003] d.s3 82319.372531: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
146577     ksoftirqd/3-34    (   34) [003] d..2 82319.372553: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
146578          <idle>-0     (-----) [002] d..2 82319.372554: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146579     kworker/3:1-25210 (25210) [003] d..2 82319.372594: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146580  appEventThread-8881  ( 8858) [002] d..3 82319.372621: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146581  appEventThread-8881  ( 8858) [002] d..2 82319.372740: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146582          <idle>-0     (-----) [002] d..1 82319.372802: cpu_idle: state=0 cpu_id=2
146583  kworker/u16:13-1147  ( 1147) [003] d..2 82319.372874: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146584          <idle>-0     (-----) [003] d..1 82319.372902: cpu_idle: state=2 cpu_id=3
146585          <idle>-0     (-----) [004] dnh2 82319.373427: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146586          <idle>-0     (-----) [004] .n.1 82319.373436: cpu_idle: state=4294967295 cpu_id=4
146587          <idle>-0     (-----) [004] d..2 82319.373449: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146588 s.nexuslauncher-10023 (10023) [004] .... 82319.373619: binder_transaction: transaction=1573220 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146589 s.nexuslauncher-10023 (10023) [004] .... 82319.373624: binder_transaction_alloc_buf: transaction=1573220 data_size=80 offsets_size=0
146590 s.nexuslauncher-10023 (10023) [004] d..4 82319.373629: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=002
146591 s.nexuslauncher-10023 (10023) [004] d..2 82319.373726: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146592          <idle>-0     (-----) [004] d..1 82319.373740: cpu_idle: state=2 cpu_id=4
146593          <idle>-0     (-----) [000] dnh2 82319.373841: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146594          <idle>-0     (-----) [000] .n.1 82319.373854: cpu_idle: state=4294967295 cpu_id=0
146595          <idle>-0     (-----) [000] d..2 82319.373876: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146596   Binder:8858_1-8871  ( 8858) [000] .... 82319.373889: binder_transaction_received: transaction=1573220
146597   Binder:8858_1-8871  ( 8858) [000] d..1 82319.373939: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146598   Binder:8858_1-8871  ( 8858) [000] d..2 82319.373966: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146599          <idle>-0     (-----) [002] .n.1 82319.373974: cpu_idle: state=4294967295 cpu_id=2
146600          <idle>-0     (-----) [002] d..2 82319.373988: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146601   Binder:8858_1-8871  ( 8858) [000] d..2 82319.374031: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146602  appEventThread-8881  ( 8858) [002] d..2 82319.374048: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146603          <idle>-0     (-----) [000] d..1 82319.374054: cpu_idle: state=2 cpu_id=0
146604          <idle>-0     (-----) [002] d..1 82319.374069: cpu_idle: state=0 cpu_id=2
146605          <idle>-0     (-----) [002] d..2 82319.375880: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146606          <idle>-0     (-----) [002] dn.3 82319.375903: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146607          <idle>-0     (-----) [002] .n.1 82319.375909: cpu_idle: state=4294967295 cpu_id=2
146608          <idle>-0     (-----) [002] d..2 82319.375927: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
146609     ksoftirqd/2-26    (   26) [002] d..2 82319.375976: 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
146610          <idle>-0     (-----) [002] d..1 82319.375990: cpu_idle: state=2 cpu_id=2
146611          <idle>-0     (-----) [000] d..2 82319.384548: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146612          <idle>-0     (-----) [000] dn.3 82319.384608: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146613          <idle>-0     (-----) [002] ...1 82319.384655: cpu_idle: state=4294967295 cpu_id=2
146614          <idle>-0     (-----) [002] d..1 82319.384684: cpu_idle: state=2 cpu_id=2
146615          <idle>-0     (-----) [000] dns3 82319.384688: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146616          <idle>-0     (-----) [000] dns4 82319.384779: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146617          <idle>-0     (-----) [000] .n.1 82319.384799: cpu_idle: state=4294967295 cpu_id=0
146618          <idle>-0     (-----) [000] d..2 82319.384850: 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
146619     ksoftirqd/0-3     (    3) [000] d..2 82319.384879: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146620  kworker/u16:13-1147  ( 1147) [000] d..2 82319.385152: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146621          <idle>-0     (-----) [000] d..1 82319.385262: cpu_idle: state=2 cpu_id=0
146622          <idle>-0     (-----) [003] d.h2 82319.388615: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146623          <idle>-0     (-----) [003] dnh3 82319.388658: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146624          <idle>-0     (-----) [003] .n.1 82319.388676: cpu_idle: state=4294967295 cpu_id=3
146625          <idle>-0     (-----) [003] d..2 82319.388704: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146626        DispSync-8879  ( 8858) [003] d..1 82319.388786: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146627        DispSync-8879  ( 8858) [003] d..2 82319.388811: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146628        DispSync-8879  ( 8858) [003] d..2 82319.388895: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146629          <idle>-0     (-----) [003] d..2 82319.388905: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146630          <idle>-0     (-----) [003] dn.3 82319.388922: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146631          <idle>-0     (-----) [003] d..2 82319.388934: 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
146632     ksoftirqd/3-34    (   34) [003] d..2 82319.388971: 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
146633          <idle>-0     (-----) [002] .n.1 82319.388988: cpu_idle: state=4294967295 cpu_id=2
146634          <idle>-0     (-----) [003] d..1 82319.388992: cpu_idle: state=2 cpu_id=3
146635          <idle>-0     (-----) [002] d..2 82319.389026: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146636  appEventThread-8881  ( 8858) [002] d..3 82319.389176: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146637  appEventThread-8881  ( 8858) [002] d..2 82319.389279: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146638          <idle>-0     (-----) [002] d..1 82319.389307: cpu_idle: state=2 cpu_id=2
146639          <idle>-0     (-----) [004] dnh2 82319.390004: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146640          <idle>-0     (-----) [004] .n.1 82319.390014: cpu_idle: state=4294967295 cpu_id=4
146641          <idle>-0     (-----) [004] d..2 82319.390031: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146642 s.nexuslauncher-10023 (10023) [004] .... 82319.390468: binder_transaction: transaction=1573221 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146643 s.nexuslauncher-10023 (10023) [004] .... 82319.390479: binder_transaction_alloc_buf: transaction=1573221 data_size=80 offsets_size=0
146644 s.nexuslauncher-10023 (10023) [004] d..4 82319.390487: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146645 s.nexuslauncher-10023 (10023) [004] d..2 82319.390624: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146646          <idle>-0     (-----) [004] d..1 82319.390640: cpu_idle: state=2 cpu_id=4
146647          <idle>-0     (-----) [000] dnh2 82319.390783: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146648          <idle>-0     (-----) [000] .n.1 82319.390797: cpu_idle: state=4294967295 cpu_id=0
146649          <idle>-0     (-----) [000] d..2 82319.390820: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146650   Binder:8858_1-8871  ( 8858) [000] .... 82319.390837: binder_transaction_received: transaction=1573221
146651   Binder:8858_1-8871  ( 8858) [000] d..1 82319.390917: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146652   Binder:8858_1-8871  ( 8858) [000] d..2 82319.390940: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146653   Binder:8858_1-8871  ( 8858) [000] d..2 82319.391016: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146654          <idle>-0     (-----) [000] d..1 82319.391038: cpu_idle: state=2 cpu_id=0
146655          <idle>-0     (-----) [002] .n.1 82319.391112: cpu_idle: state=4294967295 cpu_id=2
146656          <idle>-0     (-----) [002] d..2 82319.391141: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146657  appEventThread-8881  ( 8858) [002] d..2 82319.391236: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146658          <idle>-0     (-----) [002] d..1 82319.391256: cpu_idle: state=2 cpu_id=2
146659          <idle>-0     (-----) [000] d..2 82319.404328: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146660          <idle>-0     (-----) [001] d.s3 82319.404370: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146661          <idle>-0     (-----) [002] ...1 82319.404372: cpu_idle: state=4294967295 cpu_id=2
146662          <idle>-0     (-----) [000] dn.3 82319.404382: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146663          <idle>-0     (-----) [002] d..1 82319.404399: cpu_idle: state=2 cpu_id=2
146664          <idle>-0     (-----) [001] dns4 82319.404406: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146665          <idle>-0     (-----) [000] dns3 82319.404460: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146666          <idle>-0     (-----) [001] dns3 82319.404498: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
146667          <idle>-0     (-----) [000] dns4 82319.404502: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146668          <idle>-0     (-----) [000] .n.1 82319.404520: cpu_idle: state=4294967295 cpu_id=0
146669          <idle>-0     (-----) [001] dns4 82319.404531: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
146670          <idle>-0     (-----) [001] .n.1 82319.404554: cpu_idle: state=4294967295 cpu_id=1
146671          <idle>-0     (-----) [000] d..2 82319.404570: 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
146672          <idle>-0     (-----) [001] d..2 82319.404588: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146673     ksoftirqd/0-3     (    3) [000] d..2 82319.404599: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146674     kworker/1:1-25249 (25249) [001] d..2 82319.404672: sched_waking: [email protected] pid=16588 prio=120 target_cpu=000
146675     kworker/1:1-25249 (25249) [001] d..3 82319.404760: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146676     kworker/1:1-25249 (25249) [001] d..2 82319.404938: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
146677  kworker/u16:13-1147  ( 1147) [000] d..2 82319.404966: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146678   cds_mc_thread-16565 (16565) [001] d..2 82319.404991: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
146679          <idle>-0     (-----) [000] d..1 82319.404992: cpu_idle: state=2 cpu_id=0
146680          <idle>-0     (-----) [003] d.h2 82319.405010: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146681   cds_mc_thread-16565 (16565) [001] d..3 82319.405023: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
146682          <idle>-0     (-----) [003] dnh3 82319.405054: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146683          <idle>-0     (-----) [003] .n.1 82319.405071: cpu_idle: state=4294967295 cpu_id=3
146684   cds_mc_thread-16565 (16565) [001] d..2 82319.405092: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
146685          <idle>-0     (-----) [003] d..2 82319.405096: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146686 wlan_logging_th-647   (  647) [001] d..2 82319.405215: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146687        DispSync-8879  ( 8858) [003] d..1 82319.405247: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146688        DispSync-8879  ( 8858) [003] d..2 82319.405273: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146689        DispSync-8879  ( 8858) [003] d..2 82319.405346: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146690          <idle>-0     (-----) [003] d..1 82319.405369: cpu_idle: state=2 cpu_id=3
146691          <idle>-0     (-----) [002] .n.1 82319.405436: cpu_idle: state=4294967295 cpu_id=2
146692          <idle>-0     (-----) [002] d..2 82319.405467: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146693  appEventThread-8881  ( 8858) [002] d..3 82319.405602: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146694  appEventThread-8881  ( 8858) [002] d..2 82319.405699: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146695          <idle>-0     (-----) [002] d..1 82319.405721: cpu_idle: state=2 cpu_id=2
146696 [email protected] (  798) [001] d..2 82319.405825: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146697          <idle>-0     (-----) [001] d..1 82319.405861: cpu_idle: state=2 cpu_id=1
146698          <idle>-0     (-----) [004] dnh2 82319.406431: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146699          <idle>-0     (-----) [004] .n.1 82319.406441: cpu_idle: state=4294967295 cpu_id=4
146700          <idle>-0     (-----) [004] d..2 82319.406458: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146701 s.nexuslauncher-10023 (10023) [004] .... 82319.406880: binder_transaction: transaction=1573222 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146702 s.nexuslauncher-10023 (10023) [004] .... 82319.406891: binder_transaction_alloc_buf: transaction=1573222 data_size=80 offsets_size=0
146703 s.nexuslauncher-10023 (10023) [004] d..4 82319.406899: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146704 s.nexuslauncher-10023 (10023) [004] d..2 82319.407031: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146705          <idle>-0     (-----) [004] d..1 82319.407048: cpu_idle: state=2 cpu_id=4
146706          <idle>-0     (-----) [000] dnh2 82319.407191: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146707          <idle>-0     (-----) [000] .n.1 82319.407205: cpu_idle: state=4294967295 cpu_id=0
146708          <idle>-0     (-----) [000] d..2 82319.407229: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146709   Binder:8858_1-8871  ( 8858) [000] .... 82319.407246: binder_transaction_received: transaction=1573222
146710   Binder:8858_1-8871  ( 8858) [000] d..1 82319.407324: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146711   Binder:8858_1-8871  ( 8858) [000] d..2 82319.407348: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146712   Binder:8858_1-8871  ( 8858) [000] d..2 82319.407423: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146713          <idle>-0     (-----) [000] d..1 82319.407444: cpu_idle: state=2 cpu_id=0
146714          <idle>-0     (-----) [002] .n.1 82319.407519: cpu_idle: state=4294967295 cpu_id=2
146715          <idle>-0     (-----) [002] d..2 82319.407548: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146716  appEventThread-8881  ( 8858) [002] d..2 82319.407645: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146717          <idle>-0     (-----) [002] d..1 82319.407665: cpu_idle: state=2 cpu_id=2
146718          <idle>-0     (-----) [003] d.h2 82319.424396: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146719          <idle>-0     (-----) [001] d.s3 82319.424483: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146720          <idle>-0     (-----) [003] dnh3 82319.424520: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146721          <idle>-0     (-----) [001] dns4 82319.424540: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146722          <idle>-0     (-----) [000] d..2 82319.424546: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146723          <idle>-0     (-----) [003] .n.1 82319.424552: cpu_idle: state=4294967295 cpu_id=3
146724          <idle>-0     (-----) [001] .n.1 82319.424568: cpu_idle: state=4294967295 cpu_id=1
146725          <idle>-0     (-----) [000] dn.3 82319.424576: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146726          <idle>-0     (-----) [003] d..2 82319.424598: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146727          <idle>-0     (-----) [001] d..2 82319.424605: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146728          <idle>-0     (-----) [000] dns3 82319.424652: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146729          <idle>-0     (-----) [002] d..2 82319.424665: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146730        DispSync-8879  ( 8858) [003] d..1 82319.424672: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146731          <idle>-0     (-----) [000] dns4 82319.424692: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146732     kworker/1:1-25249 (25249) [001] d..2 82319.424692: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146733          <idle>-0     (-----) [002] dn.3 82319.424698: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146734        DispSync-8879  ( 8858) [003] d..2 82319.424707: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146735          <idle>-0     (-----) [000] .n.1 82319.424713: cpu_idle: state=4294967295 cpu_id=0
146736          <idle>-0     (-----) [002] .n.1 82319.424714: cpu_idle: state=4294967295 cpu_id=2
146737     kworker/1:1-25249 (25249) [001] d..3 82319.424718: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146738          <idle>-0     (-----) [002] d..2 82319.424741: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146739          <idle>-0     (-----) [000] d..2 82319.424742: 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
146740     ksoftirqd/0-3     (    3) [000] d..2 82319.424765: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146741     kworker/1:1-25249 (25249) [001] d..2 82319.424778: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146742        DispSync-8879  ( 8858) [003] d..2 82319.424806: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146743          <idle>-0     (-----) [003] d..1 82319.424839: cpu_idle: state=2 cpu_id=3
146744  appEventThread-8881  ( 8858) [002] d..3 82319.424865: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146745  appEventThread-8881  ( 8858) [002] d..2 82319.424971: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
146746     ksoftirqd/2-26    (   26) [002] d..2 82319.425013: 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
146747          <idle>-0     (-----) [002] d..1 82319.425075: cpu_idle: state=2 cpu_id=2
146748 [email protected] (  798) [001] d..2 82319.425263: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146749  kworker/u16:13-1147  ( 1147) [000] d..2 82319.425284: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146750          <idle>-0     (-----) [001] d..1 82319.425292: cpu_idle: state=2 cpu_id=1
146751          <idle>-0     (-----) [000] d..1 82319.425315: cpu_idle: state=2 cpu_id=0
146752          <idle>-0     (-----) [004] dnh2 82319.425698: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146753          <idle>-0     (-----) [004] .n.1 82319.425709: cpu_idle: state=4294967295 cpu_id=4
146754          <idle>-0     (-----) [004] d..2 82319.425725: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146755 s.nexuslauncher-10023 (10023) [004] .... 82319.426150: binder_transaction: transaction=1573223 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146756 s.nexuslauncher-10023 (10023) [004] .... 82319.426161: binder_transaction_alloc_buf: transaction=1573223 data_size=80 offsets_size=0
146757 s.nexuslauncher-10023 (10023) [004] d..4 82319.426169: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146758 s.nexuslauncher-10023 (10023) [004] d..2 82319.426306: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146759          <idle>-0     (-----) [004] d..1 82319.426321: cpu_idle: state=2 cpu_id=4
146760          <idle>-0     (-----) [000] dnh2 82319.426463: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146761          <idle>-0     (-----) [000] .n.1 82319.426477: cpu_idle: state=4294967295 cpu_id=0
146762          <idle>-0     (-----) [000] d..2 82319.426499: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146763   Binder:8858_1-8871  ( 8858) [000] .... 82319.426516: binder_transaction_received: transaction=1573223
146764   Binder:8858_1-8871  ( 8858) [000] d..1 82319.426595: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146765   Binder:8858_1-8871  ( 8858) [000] d..2 82319.426619: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146766   Binder:8858_1-8871  ( 8858) [000] d..2 82319.426697: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146767          <idle>-0     (-----) [000] d..1 82319.426719: cpu_idle: state=2 cpu_id=0
146768          <idle>-0     (-----) [002] .n.1 82319.426791: cpu_idle: state=4294967295 cpu_id=2
146769          <idle>-0     (-----) [002] d..2 82319.426821: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146770  appEventThread-8881  ( 8858) [002] d..2 82319.426917: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146771          <idle>-0     (-----) [002] d..1 82319.426937: cpu_idle: state=2 cpu_id=2
146772          <idle>-0     (-----) [003] d.h2 82319.440827: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146773          <idle>-0     (-----) [003] dnh3 82319.440909: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146774          <idle>-0     (-----) [000] d..2 82319.440924: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146775          <idle>-0     (-----) [000] dn.3 82319.440972: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146776          <idle>-0     (-----) [003] .n.1 82319.441103: cpu_idle: state=4294967295 cpu_id=3
146777          <idle>-0     (-----) [000] dns3 82319.441143: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146778          <idle>-0     (-----) [003] d..2 82319.441152: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146779          <idle>-0     (-----) [000] dns4 82319.441185: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146780          <idle>-0     (-----) [000] .n.1 82319.441204: cpu_idle: state=4294967295 cpu_id=0
146781        DispSync-8879  ( 8858) [003] d..1 82319.441233: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146782          <idle>-0     (-----) [000] d..2 82319.441240: 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
146783        DispSync-8879  ( 8858) [003] d..2 82319.441258: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146784     ksoftirqd/0-3     (    3) [000] d..2 82319.441265: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146785        DispSync-8879  ( 8858) [003] d..2 82319.441363: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146786          <idle>-0     (-----) [003] d..1 82319.441433: cpu_idle: state=2 cpu_id=3
146787          <idle>-0     (-----) [002] .n.1 82319.441436: cpu_idle: state=4294967295 cpu_id=2
146788          <idle>-0     (-----) [002] d..2 82319.441468: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146789  kworker/u16:13-1147  ( 1147) [000] d..2 82319.441594: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146790          <idle>-0     (-----) [000] d..1 82319.441616: cpu_idle: state=2 cpu_id=0
146791  appEventThread-8881  ( 8858) [002] d..3 82319.441638: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146792  appEventThread-8881  ( 8858) [002] d..2 82319.441739: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146793          <idle>-0     (-----) [002] d..1 82319.441765: cpu_idle: state=2 cpu_id=2
146794          <idle>-0     (-----) [004] dnh2 82319.442466: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146795          <idle>-0     (-----) [004] .n.1 82319.442478: cpu_idle: state=4294967295 cpu_id=4
146796          <idle>-0     (-----) [004] d..2 82319.442495: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146797 s.nexuslauncher-10023 (10023) [004] .... 82319.442934: binder_transaction: transaction=1573224 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146798 s.nexuslauncher-10023 (10023) [004] .... 82319.442944: binder_transaction_alloc_buf: transaction=1573224 data_size=80 offsets_size=0
146799 s.nexuslauncher-10023 (10023) [004] d..4 82319.442953: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146800 s.nexuslauncher-10023 (10023) [004] d..2 82319.443094: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146801          <idle>-0     (-----) [004] d..2 82319.443099: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
146802          <idle>-0     (-----) [004] dn.3 82319.443108: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
146803          <idle>-0     (-----) [004] d..2 82319.443117: 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
146804     ksoftirqd/4-42    (   42) [004] d..2 82319.443135: 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
146805          <idle>-0     (-----) [004] d..1 82319.443147: cpu_idle: state=2 cpu_id=4
146806          <idle>-0     (-----) [000] dnh2 82319.443246: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146807          <idle>-0     (-----) [000] .n.1 82319.443262: cpu_idle: state=4294967295 cpu_id=0
146808          <idle>-0     (-----) [000] d..2 82319.443287: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146809   Binder:8858_1-8871  ( 8858) [000] .... 82319.443306: binder_transaction_received: transaction=1573224
146810   Binder:8858_1-8871  ( 8858) [000] d..1 82319.443385: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146811   Binder:8858_1-8871  ( 8858) [000] d..2 82319.443409: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146812   Binder:8858_1-8871  ( 8858) [000] d..2 82319.443483: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146813          <idle>-0     (-----) [000] d..1 82319.443505: cpu_idle: state=2 cpu_id=0
146814          <idle>-0     (-----) [002] dns2 82319.443622: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146815          <idle>-0     (-----) [002] dns3 82319.443647: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
146816          <idle>-0     (-----) [002] .n.1 82319.443657: cpu_idle: state=4294967295 cpu_id=2
146817          <idle>-0     (-----) [002] d..2 82319.443679: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146818  appEventThread-8881  ( 8858) [002] d..2 82319.443749: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
146819     ksoftirqd/2-26    (   26) [002] d..2 82319.443907: 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
146820          <idle>-0     (-----) [002] d..1 82319.443929: cpu_idle: state=2 cpu_id=2
146821          <idle>-0     (-----) [001] d.s3 82319.443956: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146822          <idle>-0     (-----) [001] dns4 82319.443987: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146823          <idle>-0     (-----) [001] .n.1 82319.444010: cpu_idle: state=4294967295 cpu_id=1
146824          <idle>-0     (-----) [001] d..2 82319.444038: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146825     kworker/1:1-25249 (25249) [001] d..2 82319.444113: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146826     kworker/1:1-25249 (25249) [001] d..3 82319.444139: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146827     kworker/1:1-25249 (25249) [001] d..2 82319.444194: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146828 [email protected] (  798) [001] d..2 82319.444454: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146829          <idle>-0     (-----) [001] d..1 82319.444483: cpu_idle: state=2 cpu_id=1
146830          <idle>-0     (-----) [001] d.s3 82319.445226: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146831          <idle>-0     (-----) [001] dns4 82319.445246: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146832          <idle>-0     (-----) [001] .n.1 82319.445301: cpu_idle: state=4294967295 cpu_id=1
146833          <idle>-0     (-----) [001] d..2 82319.445324: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146834     kworker/1:1-25249 (25249) [001] d..2 82319.445365: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146835     kworker/1:1-25249 (25249) [001] d..3 82319.445382: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146836     kworker/1:1-25249 (25249) [001] d..2 82319.445425: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146837 [email protected] (  798) [001] d..2 82319.445606: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146838          <idle>-0     (-----) [001] d..2 82319.445623: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146839          <idle>-0     (-----) [001] dn.3 82319.445641: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
146840          <idle>-0     (-----) [001] d..2 82319.445655: 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
146841     ksoftirqd/1-18    (   18) [001] d..2 82319.445691: 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
146842          <idle>-0     (-----) [001] d..1 82319.445712: cpu_idle: state=2 cpu_id=1
146843          <idle>-0     (-----) [001] d.s3 82319.446669: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
146844          <idle>-0     (-----) [001] dns4 82319.446712: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
146845          <idle>-0     (-----) [001] dns3 82319.446743: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146846          <idle>-0     (-----) [001] dns4 82319.446755: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
146847          <idle>-0     (-----) [001] .n.1 82319.446792: cpu_idle: state=4294967295 cpu_id=1
146848          <idle>-0     (-----) [001] d..2 82319.446814: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
146849   cds_mc_thread-16565 (16565) [001] d..2 82319.446956: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
146850     kworker/1:1-25249 (25249) [001] d..2 82319.446995: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
146851     kworker/1:1-25249 (25249) [001] d..3 82319.447013: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
146852     kworker/1:1-25249 (25249) [001] d..2 82319.447072: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
146853 [email protected] (  798) [001] d..2 82319.447367: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
146854          <idle>-0     (-----) [001] d..1 82319.447391: cpu_idle: state=2 cpu_id=1
146855          <idle>-0     (-----) [003] d.h2 82319.454363: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146856          <idle>-0     (-----) [003] dnh3 82319.454395: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146857          <idle>-0     (-----) [003] .n.1 82319.454477: cpu_idle: state=4294967295 cpu_id=3
146858          <idle>-0     (-----) [003] d..2 82319.454499: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146859        DispSync-8879  ( 8858) [003] d..1 82319.454527: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146860        DispSync-8879  ( 8858) [003] d..2 82319.454546: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146861        DispSync-8879  ( 8858) [003] d..2 82319.454601: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146862          <idle>-0     (-----) [003] d..2 82319.454611: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146863          <idle>-0     (-----) [003] dn.3 82319.454630: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146864          <idle>-0     (-----) [003] d..2 82319.454643: 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
146865     ksoftirqd/3-34    (   34) [003] d.s2 82319.454659: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146866          <idle>-0     (-----) [002] .n.1 82319.454718: cpu_idle: state=4294967295 cpu_id=2
146867     ksoftirqd/3-34    (   34) [003] d.s3 82319.454728: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146868          <idle>-0     (-----) [002] d..2 82319.454750: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146869     ksoftirqd/3-34    (   34) [003] d..2 82319.454753: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146870  appEventThread-8881  ( 8858) [002] d..3 82319.454840: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146871  kworker/u16:13-1147  ( 1147) [003] d..2 82319.454934: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146872  appEventThread-8881  ( 8858) [002] d..2 82319.454955: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146873          <idle>-0     (-----) [003] d..1 82319.454956: cpu_idle: state=2 cpu_id=3
146874          <idle>-0     (-----) [002] d..1 82319.454981: cpu_idle: state=2 cpu_id=2
146875          <idle>-0     (-----) [004] dnh2 82319.455642: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146876          <idle>-0     (-----) [004] .n.1 82319.455650: cpu_idle: state=4294967295 cpu_id=4
146877          <idle>-0     (-----) [004] d..2 82319.455664: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146878 s.nexuslauncher-10023 (10023) [004] .... 82319.455830: binder_transaction: transaction=1573225 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146879 s.nexuslauncher-10023 (10023) [004] .... 82319.455835: binder_transaction_alloc_buf: transaction=1573225 data_size=80 offsets_size=0
146880 s.nexuslauncher-10023 (10023) [004] d..4 82319.455839: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146881 s.nexuslauncher-10023 (10023) [004] d..2 82319.455938: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146882          <idle>-0     (-----) [004] d..2 82319.455943: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
146883          <idle>-0     (-----) [004] dn.3 82319.455951: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
146884          <idle>-0     (-----) [004] d..2 82319.455959: 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
146885     ksoftirqd/4-42    (   42) [004] d..2 82319.455975: 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
146886          <idle>-0     (-----) [004] d..1 82319.455987: cpu_idle: state=2 cpu_id=4
146887          <idle>-0     (-----) [000] dnh2 82319.456131: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146888          <idle>-0     (-----) [000] .n.1 82319.456145: cpu_idle: state=4294967295 cpu_id=0
146889          <idle>-0     (-----) [000] d..2 82319.456168: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146890   Binder:8858_1-8871  ( 8858) [000] .... 82319.456179: binder_transaction_received: transaction=1573225
146891   Binder:8858_1-8871  ( 8858) [000] d..1 82319.456225: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146892   Binder:8858_1-8871  ( 8858) [000] d..2 82319.456249: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146893   Binder:8858_1-8871  ( 8858) [000] d..2 82319.456310: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146894          <idle>-0     (-----) [000] d..1 82319.456332: cpu_idle: state=2 cpu_id=0
146895          <idle>-0     (-----) [002] .n.1 82319.456423: cpu_idle: state=4294967295 cpu_id=2
146896          <idle>-0     (-----) [002] d..2 82319.456451: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146897  appEventThread-8881  ( 8858) [002] d..2 82319.456534: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146898          <idle>-0     (-----) [002] d..1 82319.456553: cpu_idle: state=2 cpu_id=2
146899          <idle>-0     (-----) [003] d.h2 82319.473644: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146900          <idle>-0     (-----) [003] dnh3 82319.473725: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146901          <idle>-0     (-----) [000] d..2 82319.473743: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146902          <idle>-0     (-----) [000] dn.3 82319.473880: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146903          <idle>-0     (-----) [003] .n.1 82319.473917: cpu_idle: state=4294967295 cpu_id=3
146904          <idle>-0     (-----) [000] dns3 82319.473963: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
146905          <idle>-0     (-----) [003] d..2 82319.473966: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146906        DispSync-8879  ( 8858) [003] d..1 82319.474046: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146907          <idle>-0     (-----) [000] dns4 82319.474059: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146908        DispSync-8879  ( 8858) [003] d..2 82319.474073: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146909          <idle>-0     (-----) [000] .n.1 82319.474081: cpu_idle: state=4294967295 cpu_id=0
146910          <idle>-0     (-----) [000] d..2 82319.474116: 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
146911     ksoftirqd/0-3     (    3) [000] d..2 82319.474138: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146912        DispSync-8879  ( 8858) [003] d..2 82319.474181: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146913          <idle>-0     (-----) [002] .n.1 82319.474250: cpu_idle: state=4294967295 cpu_id=2
146914          <idle>-0     (-----) [003] d..1 82319.474258: cpu_idle: state=2 cpu_id=3
146915          <idle>-0     (-----) [002] d..2 82319.474283: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146916  appEventThread-8881  ( 8858) [002] d..3 82319.474451: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146917  appEventThread-8881  ( 8858) [002] d..2 82319.474550: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146918          <idle>-0     (-----) [002] d..1 82319.474575: cpu_idle: state=2 cpu_id=2
146919  kworker/u16:13-1147  ( 1147) [000] d..2 82319.474681: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
146920          <idle>-0     (-----) [000] d..1 82319.474706: cpu_idle: state=2 cpu_id=0
146921          <idle>-0     (-----) [001] d.s3 82319.474886: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146922          <idle>-0     (-----) [001] d.s4 82319.474915: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
146923          <idle>-0     (-----) [001] d.s4 82319.474929: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146924          <idle>-0     (-----) [001] ...1 82319.474954: cpu_idle: state=4294967295 cpu_id=1
146925          <idle>-0     (-----) [001] d..1 82319.474968: cpu_idle: state=2 cpu_id=1
146926          <idle>-0     (-----) [000] .n.1 82319.475098: cpu_idle: state=4294967295 cpu_id=0
146927          <idle>-0     (-----) [000] d..2 82319.475130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146928  kworker/u16:13-1147  ( 1147) [000] d..2 82319.475199: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146929          <idle>-0     (-----) [000] d..2 82319.475205: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146930          <idle>-0     (-----) [000] dn.3 82319.475219: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
146931          <idle>-0     (-----) [000] d..2 82319.475230: 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
146932     ksoftirqd/0-3     (    3) [000] d.s2 82319.475240: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146933     ksoftirqd/0-3     (    3) [000] d.s3 82319.475262: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146934          <idle>-0     (-----) [004] dnh2 82319.475279: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146935     ksoftirqd/0-3     (    3) [000] d..2 82319.475279: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146936          <idle>-0     (-----) [004] .n.1 82319.475293: cpu_idle: state=4294967295 cpu_id=4
146937          <idle>-0     (-----) [004] d..2 82319.475311: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146938  kworker/u16:13-1147  ( 1147) [000] d..2 82319.475354: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146939          <idle>-0     (-----) [000] d..1 82319.475374: cpu_idle: state=2 cpu_id=0
146940 s.nexuslauncher-10023 (10023) [004] .... 82319.475755: binder_transaction: transaction=1573226 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146941 s.nexuslauncher-10023 (10023) [004] .... 82319.475765: binder_transaction_alloc_buf: transaction=1573226 data_size=80 offsets_size=0
146942 s.nexuslauncher-10023 (10023) [004] d..4 82319.475774: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146943 s.nexuslauncher-10023 (10023) [004] d..2 82319.475909: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146944          <idle>-0     (-----) [004] d..1 82319.475924: cpu_idle: state=2 cpu_id=4
146945          <idle>-0     (-----) [000] dnh2 82319.476061: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146946          <idle>-0     (-----) [000] .n.1 82319.476075: cpu_idle: state=4294967295 cpu_id=0
146947          <idle>-0     (-----) [000] d..2 82319.476098: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146948   Binder:8858_1-8871  ( 8858) [000] .... 82319.476113: binder_transaction_received: transaction=1573226
146949   Binder:8858_1-8871  ( 8858) [000] d..1 82319.476193: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146950   Binder:8858_1-8871  ( 8858) [000] d..2 82319.476216: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146951   Binder:8858_1-8871  ( 8858) [000] d..2 82319.476292: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146952          <idle>-0     (-----) [000] d..1 82319.476314: cpu_idle: state=0 cpu_id=0
146953          <idle>-0     (-----) [002] .n.1 82319.476390: cpu_idle: state=4294967295 cpu_id=2
146954          <idle>-0     (-----) [002] d..2 82319.476427: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146955  appEventThread-8881  ( 8858) [002] d..2 82319.476540: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146956          <idle>-0     (-----) [002] d..1 82319.476564: cpu_idle: state=2 cpu_id=2
146957          <idle>-0     (-----) [000] d.h2 82319.481580: sched_waking: comm=RxCachedWorkerP pid=25568 prio=120 target_cpu=000
146958          <idle>-0     (-----) [000] dnh3 82319.481609: sched_wakeup: comm=RxCachedWorkerP pid=25568 prio=120 target_cpu=000
146959          <idle>-0     (-----) [000] .n.1 82319.481658: cpu_idle: state=4294967295 cpu_id=0
146960          <idle>-0     (-----) [000] d..2 82319.481678: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RxCachedWorkerP next_pid=25568 next_prio=120
146961 RxCachedWorkerP-25568 (25538) [000] d.s2 82319.481854: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146962 RxCachedWorkerP-25568 (25538) [000] d.s3 82319.481879: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
146963 RxCachedWorkerP-25568 (25538) [000] d..2 82319.482130: sched_switch: prev_comm=RxCachedWorkerP prev_pid=25568 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
146964  kworker/u16:13-1147  ( 1147) [000] d..2 82319.482254: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146965          <idle>-0     (-----) [000] d..1 82319.482276: cpu_idle: state=2 cpu_id=0
146966          <idle>-0     (-----) [003] d.h2 82319.487245: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
146967          <idle>-0     (-----) [003] dnh3 82319.487270: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
146968          <idle>-0     (-----) [003] .n.1 82319.487286: cpu_idle: state=4294967295 cpu_id=3
146969          <idle>-0     (-----) [003] d..2 82319.487306: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
146970        DispSync-8879  ( 8858) [003] d..1 82319.487333: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146971        DispSync-8879  ( 8858) [003] d..2 82319.487350: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146972        DispSync-8879  ( 8858) [003] d..2 82319.487407: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
146973          <idle>-0     (-----) [003] d..2 82319.487415: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146974          <idle>-0     (-----) [003] dn.3 82319.487435: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
146975          <idle>-0     (-----) [003] d..2 82319.487448: 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
146976     ksoftirqd/3-34    (   34) [003] d..2 82319.487484: 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
146977          <idle>-0     (-----) [003] d..1 82319.487503: cpu_idle: state=2 cpu_id=3
146978          <idle>-0     (-----) [002] .n.1 82319.487527: cpu_idle: state=4294967295 cpu_id=2
146979          <idle>-0     (-----) [002] d..2 82319.487559: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
146980  appEventThread-8881  ( 8858) [002] d..3 82319.487624: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146981  appEventThread-8881  ( 8858) [002] d..2 82319.487702: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
146982          <idle>-0     (-----) [002] d..1 82319.487723: cpu_idle: state=2 cpu_id=2
146983          <idle>-0     (-----) [004] dnh2 82319.488420: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
146984          <idle>-0     (-----) [004] .n.1 82319.488429: cpu_idle: state=4294967295 cpu_id=4
146985          <idle>-0     (-----) [004] d..2 82319.488442: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
146986 s.nexuslauncher-10023 (10023) [004] .... 82319.488642: binder_transaction: transaction=1573227 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
146987 s.nexuslauncher-10023 (10023) [004] .... 82319.488647: binder_transaction_alloc_buf: transaction=1573227 data_size=80 offsets_size=0
146988 s.nexuslauncher-10023 (10023) [004] d..4 82319.488652: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146989 s.nexuslauncher-10023 (10023) [004] d..2 82319.488748: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
146990          <idle>-0     (-----) [004] d..1 82319.488762: cpu_idle: state=2 cpu_id=4
146991          <idle>-0     (-----) [000] dnh2 82319.488944: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
146992          <idle>-0     (-----) [000] .n.1 82319.488958: cpu_idle: state=4294967295 cpu_id=0
146993          <idle>-0     (-----) [000] d..2 82319.488979: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
146994   Binder:8858_1-8871  ( 8858) [000] .... 82319.488992: binder_transaction_received: transaction=1573227
146995   Binder:8858_1-8871  ( 8858) [000] d..1 82319.489038: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
146996   Binder:8858_1-8871  ( 8858) [000] d..2 82319.489063: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
146997   Binder:8858_1-8871  ( 8858) [000] d..2 82319.489125: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
146998          <idle>-0     (-----) [000] d..1 82319.489156: cpu_idle: state=0 cpu_id=0
146999          <idle>-0     (-----) [002] .n.1 82319.489240: cpu_idle: state=4294967295 cpu_id=2
147000          <idle>-0     (-----) [002] d..2 82319.489276: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147001  appEventThread-8881  ( 8858) [002] d..2 82319.489377: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147002          <idle>-0     (-----) [002] d..1 82319.489400: cpu_idle: state=2 cpu_id=2
147003          <idle>-0     (-----) [000] d..2 82319.495174: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147004          <idle>-0     (-----) [000] dn.3 82319.495190: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147005          <idle>-0     (-----) [000] dnH3 82319.495271: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
147006          <idle>-0     (-----) [000] dnH4 82319.495293: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
147007          <idle>-0     (-----) [000] dns3 82319.495306: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147008          <idle>-0     (-----) [000] dns4 82319.495328: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147009          <idle>-0     (-----) [000] dns3 82319.495340: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
147010          <idle>-0     (-----) [000] dns4 82319.495355: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
147011          <idle>-0     (-----) [000] .n.1 82319.495365: cpu_idle: state=4294967295 cpu_id=0
147012          <idle>-0     (-----) [000] d..2 82319.495385: 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
147013     ksoftirqd/0-3     (    3) [000] d..2 82319.495399: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
147014     kworker/0:1-25262 (25262) [000] d..2 82319.495442: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147015          <idle>-0     (-----) [003] .n.1 82319.495456: cpu_idle: state=4294967295 cpu_id=3
147016          <idle>-0     (-----) [003] d..2 82319.495513: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
147017         sugov:0-576   (  576) [003] .... 82319.495579: clk_set_rate: pwrcl_clk 748800000
147018         sugov:0-576   (  576) [003] .... 82319.495607: clk_set_rate: cpu3_pwrcl_clk 652800000
147019         sugov:0-576   (  576) [003] .... 82319.495618: clk_set_rate: cpu2_pwrcl_clk 652800000
147020         sugov:0-576   (  576) [003] .... 82319.495627: clk_set_rate: cpu1_pwrcl_clk 652800000
147021         sugov:0-576   (  576) [003] .... 82319.495636: clk_set_rate: cpu0_pwrcl_clk 748800000
147022         sugov:0-576   (  576) [003] .... 82319.495649: cpu_frequency: state=748800 cpu_id=0
147023         sugov:0-576   (  576) [003] .... 82319.495678: cpu_frequency: state=748800 cpu_id=1
147024         sugov:0-576   (  576) [003] .... 82319.495684: cpu_frequency: state=748800 cpu_id=2
147025         sugov:0-576   (  576) [003] .... 82319.495689: cpu_frequency: state=748800 cpu_id=3
147026  kworker/u16:13-1147  ( 1147) [000] d..2 82319.495691: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147027          <idle>-0     (-----) [000] d..1 82319.495709: cpu_idle: state=2 cpu_id=0
147028         sugov:0-576   (  576) [003] d..2 82319.495737: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147029          <idle>-0     (-----) [003] d..1 82319.495759: cpu_idle: state=2 cpu_id=3
147030          <idle>-0     (-----) [003] d.h2 82319.503648: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147031          <idle>-0     (-----) [003] dnh3 82319.503674: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147032          <idle>-0     (-----) [003] .n.1 82319.503687: cpu_idle: state=4294967295 cpu_id=3
147033          <idle>-0     (-----) [003] d..2 82319.503705: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147034        DispSync-8879  ( 8858) [003] d..1 82319.503731: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
147035        DispSync-8879  ( 8858) [003] d..2 82319.503747: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
147036        DispSync-8879  ( 8858) [003] d..2 82319.503797: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147037          <idle>-0     (-----) [003] d..2 82319.503803: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147038          <idle>-0     (-----) [003] dn.3 82319.503817: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147039          <idle>-0     (-----) [003] d..2 82319.503827: 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
147040     ksoftirqd/3-34    (   34) [003] d..2 82319.503853: 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
147041          <idle>-0     (-----) [003] d..1 82319.503869: cpu_idle: state=2 cpu_id=3
147042          <idle>-0     (-----) [002] .n.1 82319.503922: cpu_idle: state=4294967295 cpu_id=2
147043          <idle>-0     (-----) [002] d..2 82319.503951: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147044  appEventThread-8881  ( 8858) [002] d..3 82319.504011: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147045  appEventThread-8881  ( 8858) [002] d..2 82319.504083: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147046          <idle>-0     (-----) [002] d..1 82319.504106: cpu_idle: state=0 cpu_id=2
147047          <idle>-0     (-----) [004] dnh2 82319.504801: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147048          <idle>-0     (-----) [004] .n.1 82319.504811: cpu_idle: state=4294967295 cpu_id=4
147049          <idle>-0     (-----) [004] d..2 82319.504826: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147050 s.nexuslauncher-10023 (10023) [004] .... 82319.504996: binder_transaction: transaction=1573228 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147051 s.nexuslauncher-10023 (10023) [004] .... 82319.505001: binder_transaction_alloc_buf: transaction=1573228 data_size=80 offsets_size=0
147052 s.nexuslauncher-10023 (10023) [004] d..4 82319.505005: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147053 s.nexuslauncher-10023 (10023) [004] d..2 82319.505103: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147054          <idle>-0     (-----) [004] d.s4 82319.505137: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147055          <idle>-0     (-----) [004] d..1 82319.505168: cpu_idle: state=2 cpu_id=4
147056          <idle>-0     (-----) [000] dnh2 82319.505207: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147057          <idle>-0     (-----) [000] dnh2 82319.505216: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147058          <idle>-0     (-----) [000] .n.1 82319.505227: cpu_idle: state=4294967295 cpu_id=0
147059          <idle>-0     (-----) [000] d..2 82319.505249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147060   Binder:8858_1-8871  ( 8858) [000] .... 82319.505261: binder_transaction_received: transaction=1573228
147061   Binder:8858_1-8871  ( 8858) [000] d..1 82319.505309: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
147062   Binder:8858_1-8871  ( 8858) [000] d..2 82319.505335: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
147063          <idle>-0     (-----) [002] .n.1 82319.505344: cpu_idle: state=4294967295 cpu_id=2
147064          <idle>-0     (-----) [002] d..2 82319.505358: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147065   Binder:8858_1-8871  ( 8858) [000] d..2 82319.505377: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147066  appEventThread-8881  ( 8858) [002] d..2 82319.505416: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147067          <idle>-0     (-----) [002] d..1 82319.505461: cpu_idle: state=0 cpu_id=2
147068          <idle>-0     (-----) [002] ...1 82319.505479: cpu_idle: state=4294967295 cpu_id=2
147069          <idle>-0     (-----) [002] d..1 82319.505483: cpu_idle: state=0 cpu_id=2
147070  kworker/u16:13-1147  ( 1147) [000] d..2 82319.505542: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147071          <idle>-0     (-----) [000] d..1 82319.505568: cpu_idle: state=0 cpu_id=0
147072          <idle>-0     (-----) [000] d..2 82319.511581: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147073          <idle>-0     (-----) [000] dn.3 82319.511593: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147074          <idle>-0     (-----) [000] .n.1 82319.511598: cpu_idle: state=4294967295 cpu_id=0
147075          <idle>-0     (-----) [000] d..2 82319.511615: 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
147076     ksoftirqd/0-3     (    3) [000] d..2 82319.511652: 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
147077          <idle>-0     (-----) [000] d..1 82319.511665: cpu_idle: state=2 cpu_id=0
147078          <idle>-0     (-----) [003] d.h2 82319.520033: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147079          <idle>-0     (-----) [003] dnh3 82319.520064: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147080          <idle>-0     (-----) [003] dnh3 82319.520144: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
147081          <idle>-0     (-----) [003] dnh4 82319.520170: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
147082          <idle>-0     (-----) [002] .n.1 82319.520175: cpu_idle: state=4294967295 cpu_id=2
147083          <idle>-0     (-----) [003] .n.1 82319.520180: cpu_idle: state=4294967295 cpu_id=3
147084          <idle>-0     (-----) [002] d..2 82319.520190: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
147085          <idle>-0     (-----) [003] d..2 82319.520200: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147086         sugov:0-576   (  576) [002] .... 82319.520218: clk_set_rate: pwrcl_clk 652800000
147087        DispSync-8879  ( 8858) [003] d..1 82319.520227: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
147088         sugov:0-576   (  576) [002] .... 82319.520230: clk_set_rate: cpu3_pwrcl_clk 748800000
147089         sugov:0-576   (  576) [002] .... 82319.520239: clk_set_rate: cpu2_pwrcl_clk 748800000
147090         sugov:0-576   (  576) [002] .... 82319.520249: clk_set_rate: cpu1_pwrcl_clk 748800000
147091        DispSync-8879  ( 8858) [003] d..2 82319.520253: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147092         sugov:0-576   (  576) [002] .... 82319.520257: clk_set_rate: cpu0_pwrcl_clk 652800000
147093        DispSync-8879  ( 8858) [003] d..2 82319.520314: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147094          <idle>-0     (-----) [003] d..2 82319.520322: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147095          <idle>-0     (-----) [003] dn.3 82319.520337: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147096          <idle>-0     (-----) [003] d..2 82319.520350: 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
147097     ksoftirqd/3-34    (   34) [003] d.s2 82319.520363: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147098         sugov:0-576   (  576) [002] .... 82319.520370: cpu_frequency: state=652800 cpu_id=0
147099         sugov:0-576   (  576) [002] .... 82319.520387: cpu_frequency: state=652800 cpu_id=1
147100         sugov:0-576   (  576) [002] .... 82319.520394: cpu_frequency: state=652800 cpu_id=2
147101         sugov:0-576   (  576) [002] .... 82319.520399: cpu_frequency: state=652800 cpu_id=3
147102     ksoftirqd/3-34    (   34) [003] d.s3 82319.520412: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147103          <idle>-0     (-----) [001] .n.1 82319.520429: cpu_idle: state=4294967295 cpu_id=1
147104     ksoftirqd/3-34    (   34) [003] d..2 82319.520433: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147105         sugov:0-576   (  576) [002] d..2 82319.520447: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147106          <idle>-0     (-----) [001] d..2 82319.520463: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147107          <idle>-0     (-----) [002] d..1 82319.520467: cpu_idle: state=0 cpu_id=2
147108  appEventThread-8881  ( 8858) [001] d..3 82319.520584: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147109  kworker/u16:13-1147  ( 1147) [003] d..2 82319.520630: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147110          <idle>-0     (-----) [003] d..1 82319.520656: cpu_idle: state=2 cpu_id=3
147111  appEventThread-8881  ( 8858) [001] d..2 82319.520678: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147112          <idle>-0     (-----) [001] d..1 82319.520703: cpu_idle: state=2 cpu_id=1
147113          <idle>-0     (-----) [004] dnh2 82319.521383: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147114          <idle>-0     (-----) [004] .n.1 82319.521392: cpu_idle: state=4294967295 cpu_id=4
147115          <idle>-0     (-----) [004] d..2 82319.521406: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147116 s.nexuslauncher-10023 (10023) [004] .... 82319.521573: binder_transaction: transaction=1573229 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147117 s.nexuslauncher-10023 (10023) [004] .... 82319.521578: binder_transaction_alloc_buf: transaction=1573229 data_size=80 offsets_size=0
147118 s.nexuslauncher-10023 (10023) [004] d..4 82319.521583: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147119 s.nexuslauncher-10023 (10023) [004] d..2 82319.521673: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147120          <idle>-0     (-----) [004] d..1 82319.521687: cpu_idle: state=2 cpu_id=4
147121          <idle>-0     (-----) [000] dnh2 82319.521789: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147122          <idle>-0     (-----) [000] .n.1 82319.521802: cpu_idle: state=4294967295 cpu_id=0
147123          <idle>-0     (-----) [000] d..2 82319.521827: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147124   Binder:8858_1-8871  ( 8858) [000] .... 82319.521838: binder_transaction_received: transaction=1573229
147125   Binder:8858_1-8871  ( 8858) [000] d..1 82319.521883: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147126   Binder:8858_1-8871  ( 8858) [000] d..2 82319.521907: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147127   Binder:8858_1-8871  ( 8858) [000] d..2 82319.521978: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147128          <idle>-0     (-----) [000] d..2 82319.521984: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147129          <idle>-0     (-----) [000] dn.3 82319.521998: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147130          <idle>-0     (-----) [000] d..2 82319.522009: 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
147131     ksoftirqd/0-3     (    3) [000] d..2 82319.522038: 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
147132          <idle>-0     (-----) [000] d..1 82319.522062: cpu_idle: state=0 cpu_id=0
147133          <idle>-0     (-----) [001] .n.1 82319.522076: cpu_idle: state=4294967295 cpu_id=1
147134          <idle>-0     (-----) [001] d..2 82319.522104: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147135  appEventThread-8881  ( 8858) [001] d..2 82319.522198: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147136          <idle>-0     (-----) [001] d..1 82319.522218: cpu_idle: state=2 cpu_id=1
147137          <idle>-0     (-----) [002] d..2 82319.526484: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
147138          <idle>-0     (-----) [002] dn.3 82319.526510: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
147139          <idle>-0     (-----) [002] .n.1 82319.526516: cpu_idle: state=4294967295 cpu_id=2
147140          <idle>-0     (-----) [002] d..2 82319.526535: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
147141     ksoftirqd/2-26    (   26) [002] d.s2 82319.526553: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147142     ksoftirqd/2-26    (   26) [002] d.s3 82319.526606: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
147143     ksoftirqd/2-26    (   26) [002] d..2 82319.526629: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147144  kworker/u16:13-1147  ( 1147) [002] d..2 82319.526757: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147145          <idle>-0     (-----) [002] d..1 82319.526774: cpu_idle: state=2 cpu_id=2
147146          <idle>-0     (-----) [000] ...1 82319.528074: cpu_idle: state=4294967295 cpu_id=0
147147          <idle>-0     (-----) [000] d..1 82319.528080: cpu_idle: state=2 cpu_id=0
147148          <idle>-0     (-----) [003] d.h2 82319.536596: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147149          <idle>-0     (-----) [003] dnh3 82319.536628: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147150          <idle>-0     (-----) [003] .n.1 82319.536710: cpu_idle: state=4294967295 cpu_id=3
147151          <idle>-0     (-----) [003] d..2 82319.536732: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147152        DispSync-8879  ( 8858) [003] d..1 82319.536760: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147153        DispSync-8879  ( 8858) [003] d..2 82319.536780: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147154        DispSync-8879  ( 8858) [003] d..2 82319.536837: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147155          <idle>-0     (-----) [003] d..2 82319.536844: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147156          <idle>-0     (-----) [003] dn.3 82319.536858: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147157          <idle>-0     (-----) [003] d..2 82319.536870: 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
147158     ksoftirqd/3-34    (   34) [003] d.s2 82319.536883: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
147159     ksoftirqd/3-34    (   34) [003] d.s3 82319.536931: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147160     ksoftirqd/3-34    (   34) [003] d..2 82319.536952: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147161          <idle>-0     (-----) [001] .n.1 82319.536954: cpu_idle: state=4294967295 cpu_id=1
147162          <idle>-0     (-----) [001] d..2 82319.536987: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147163  appEventThread-8881  ( 8858) [001] d..3 82319.537089: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147164  kworker/u16:13-1147  ( 1147) [003] d..2 82319.537124: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147165          <idle>-0     (-----) [003] d..1 82319.537148: cpu_idle: state=2 cpu_id=3
147166  appEventThread-8881  ( 8858) [001] d..2 82319.537183: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147167          <idle>-0     (-----) [001] d..1 82319.537209: cpu_idle: state=2 cpu_id=1
147168          <idle>-0     (-----) [004] dnh2 82319.537892: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147169          <idle>-0     (-----) [004] .n.1 82319.537900: cpu_idle: state=4294967295 cpu_id=4
147170          <idle>-0     (-----) [004] d..2 82319.537913: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147171 s.nexuslauncher-10023 (10023) [004] .... 82319.538078: binder_transaction: transaction=1573230 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147172 s.nexuslauncher-10023 (10023) [004] .... 82319.538083: binder_transaction_alloc_buf: transaction=1573230 data_size=80 offsets_size=0
147173 s.nexuslauncher-10023 (10023) [004] d..4 82319.538087: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147174 s.nexuslauncher-10023 (10023) [004] d..2 82319.538183: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147175          <idle>-0     (-----) [004] d..1 82319.538198: cpu_idle: state=2 cpu_id=4
147176          <idle>-0     (-----) [000] dnh2 82319.538380: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147177          <idle>-0     (-----) [000] .n.1 82319.538394: cpu_idle: state=4294967295 cpu_id=0
147178          <idle>-0     (-----) [000] d..2 82319.538414: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147179   Binder:8858_1-8871  ( 8858) [000] .... 82319.538426: binder_transaction_received: transaction=1573230
147180   Binder:8858_1-8871  ( 8858) [000] d..1 82319.538527: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147181   Binder:8858_1-8871  ( 8858) [000] d..2 82319.538550: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147182   Binder:8858_1-8871  ( 8858) [000] d..2 82319.538619: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147183          <idle>-0     (-----) [000] d..1 82319.538643: cpu_idle: state=2 cpu_id=0
147184          <idle>-0     (-----) [001] .n.1 82319.538724: cpu_idle: state=4294967295 cpu_id=1
147185          <idle>-0     (-----) [001] d..2 82319.538754: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147186  appEventThread-8881  ( 8858) [001] d..2 82319.538836: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147187          <idle>-0     (-----) [001] d..1 82319.538859: cpu_idle: state=0 cpu_id=1
147188          <idle>-0     (-----) [002] d..2 82319.542526: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
147189          <idle>-0     (-----) [002] dn.3 82319.542551: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
147190          <idle>-0     (-----) [002] .n.1 82319.542560: cpu_idle: state=4294967295 cpu_id=2
147191          <idle>-0     (-----) [002] d..2 82319.542589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
147192     ksoftirqd/2-26    (   26) [002] d..2 82319.542647: 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
147193          <idle>-0     (-----) [002] d..1 82319.542675: cpu_idle: state=2 cpu_id=2
147194          <idle>-0     (-----) [001] d.s3 82319.542684: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147195          <idle>-0     (-----) [001] dns4 82319.542710: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147196          <idle>-0     (-----) [001] .n.1 82319.542732: cpu_idle: state=4294967295 cpu_id=1
147197          <idle>-0     (-----) [001] d..2 82319.542750: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
147198     kworker/1:1-25249 (25249) [001] d..2 82319.542846: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147199     kworker/1:1-25249 (25249) [001] d..3 82319.542880: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147200          <idle>-0     (-----) [002] ...1 82319.543019: cpu_idle: state=4294967295 cpu_id=2
147201     kworker/1:1-25249 (25249) [001] d..2 82319.543033: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
147202          <idle>-0     (-----) [002] d..1 82319.543035: cpu_idle: state=0 cpu_id=2
147203   cds_mc_thread-16565 (16565) [001] d.s2 82319.543215: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147204   cds_mc_thread-16565 (16565) [001] d.s3 82319.543237: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147205   cds_mc_thread-16565 (16565) [001] d..3 82319.543379: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147206   cds_mc_thread-16565 (16565) [001] d..4 82319.543413: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147207   cds_mc_thread-16565 (16565) [001] d..2 82319.543657: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
147208         rcuop/0-10    (   10) [001] d..2 82319.543670: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
147209         rcuop/0-10    (   10) [001] d..3 82319.543728: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147210         rcuop/0-10    (   10) [001] d..2 82319.543744: 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
147211     rcu_preempt-7     (    7) [001] d..2 82319.543769: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
147212     kworker/1:1-25249 (25249) [001] d..2 82319.543881: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
147213     kworker/1:1-25249 (25249) [001] d..3 82319.543917: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
147214     kworker/1:1-25249 (25249) [001] d..2 82319.543927: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147215     kworker/1:1-25249 (25249) [001] d..3 82319.543943: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147216     kworker/1:1-25249 (25249) [001] d..2 82319.544007: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
147217     kworker/1:1-25249 (25249) [001] d..3 82319.544036: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
147218     kworker/1:1-25249 (25249) [001] d..2 82319.544174: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
147219 wlan_logging_th-647   (  647) [001] d..2 82319.544219: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
147220          <idle>-0     (-----) [002] ...1 82319.544496: cpu_idle: state=4294967295 cpu_id=2
147221          <idle>-0     (-----) [002] d..1 82319.544504: cpu_idle: state=0 cpu_id=2
147222   cds_mc_thread-16565 (16565) [001] d..2 82319.544644: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
147223          <idle>-0     (-----) [002] ...1 82319.544797: cpu_idle: state=4294967295 cpu_id=2
147224          <idle>-0     (-----) [002] d..1 82319.544807: cpu_idle: state=0 cpu_id=2
147225          <idle>-0     (-----) [002] ...1 82319.544962: cpu_idle: state=4294967295 cpu_id=2
147226          <idle>-0     (-----) [002] d..1 82319.544968: cpu_idle: state=0 cpu_id=2
147227 [email protected] (  798) [001] d.s2 82319.545104: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147228 [email protected] (  798) [001] dns3 82319.545131: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147229          <idle>-0     (-----) [002] ...1 82319.545172: cpu_idle: state=4294967295 cpu_id=2
147230          <idle>-0     (-----) [002] d..1 82319.545181: cpu_idle: state=0 cpu_id=2
147231 [email protected] (  798) [001] dns1 82319.545215: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
147232 [email protected] (  798) [001] dns2 82319.545233: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
147233 [email protected] (  798) [001] dns2 82319.545259: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147234 [email protected] (  798) [001] dns3 82319.545310: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147235          <idle>-0     (-----) [002] ...1 82319.545372: cpu_idle: state=4294967295 cpu_id=2
147236          <idle>-0     (-----) [002] d..1 82319.545378: cpu_idle: state=0 cpu_id=2
147237 [email protected] (  798) [001] d..2 82319.545389: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
147238     kworker/1:1-25249 (25249) [001] d..2 82319.545496: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
147239     kworker/1:1-25249 (25249) [001] d..3 82319.545523: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
147240     kworker/1:1-25249 (25249) [001] d..2 82319.545533: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147241          <idle>-0     (-----) [002] ...1 82319.545549: cpu_idle: state=4294967295 cpu_id=2
147242     kworker/1:1-25249 (25249) [001] d..3 82319.545551: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147243          <idle>-0     (-----) [002] d..1 82319.545557: cpu_idle: state=0 cpu_id=2
147244     kworker/1:1-25249 (25249) [001] d..2 82319.545855: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
147245     ksoftirqd/1-18    (   18) [001] d..2 82319.545878: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
147246 wlan_logging_th-647   (  647) [001] d..2 82319.545911: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
147247   cds_mc_thread-16565 (16565) [001] d..2 82319.546232: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
147248   cds_mc_thread-16565 (16565) [001] d..3 82319.546266: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
147249          <idle>-0     (-----) [002] ...1 82319.546717: cpu_idle: state=4294967295 cpu_id=2
147250          <idle>-0     (-----) [002] d..1 82319.546723: cpu_idle: state=2 cpu_id=2
147251   cds_mc_thread-16565 (16565) [001] d..2 82319.546731: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
147252 wlan_logging_th-647   (  647) [001] d..2 82319.546773: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147253  kworker/u16:13-1147  ( 1147) [001] .... 82319.546810: clk_set_rate: l3_cluster0_vote_clk 403200000
147254  kworker/u16:13-1147  ( 1147) [001] .... 82319.546818: clk_set_rate: l3_clk 403200000
147255  kworker/u16:13-1147  ( 1147) [001] d..2 82319.547057: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> [email protected] next_pid=16588 next_prio=120
147256 [email protected] (  798) [001] d.s4 82319.547101: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147257 [email protected] (  798) [001] d.s5 82319.547122: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
147258 [email protected] (  798) [001] d.s5 82319.547130: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147259 [email protected] (  798) [001] d..2 82319.547383: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147260  kworker/u16:13-1147  ( 1147) [001] d..2 82319.547460: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147261          <idle>-0     (-----) [001] d..1 82319.547484: cpu_idle: state=0 cpu_id=1
147262          <idle>-0     (-----) [001] d.s2 82319.548480: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147263          <idle>-0     (-----) [001] dns3 82319.548502: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147264          <idle>-0     (-----) [001] .n.1 82319.548525: cpu_idle: state=4294967295 cpu_id=1
147265          <idle>-0     (-----) [001] d..2 82319.548537: 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
147266     rcu_preempt-7     (    7) [001] d..2 82319.548557: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147267     rcu_preempt-7     (    7) [001] d..3 82319.548576: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147268     rcu_preempt-7     (    7) [001] d..2 82319.548592: 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
147269         rcuop/0-10    (   10) [001] d..2 82319.548597: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
147270         rcuop/0-10    (   10) [001] d..3 82319.548619: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
147271         rcuop/0-10    (   10) [001] d..2 82319.548624: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147272         rcuop/0-10    (   10) [001] d..3 82319.548637: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147273         rcuop/0-10    (   10) [001] d..2 82319.548649: 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
147274         rcuop/1-21    (   21) [001] d..2 82319.548667: 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
147275     rcu_preempt-7     (    7) [001] d..2 82319.548702: 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
147276          <idle>-0     (-----) [001] d..1 82319.548722: cpu_idle: state=0 cpu_id=1
147277          <idle>-0     (-----) [003] d.h2 82319.552971: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147278          <idle>-0     (-----) [003] dnh3 82319.553009: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147279          <idle>-0     (-----) [003] .n.1 82319.553090: cpu_idle: state=4294967295 cpu_id=3
147280          <idle>-0     (-----) [003] d..2 82319.553118: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147281        DispSync-8879  ( 8858) [003] d..1 82319.553144: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147282        DispSync-8879  ( 8858) [003] d..2 82319.553162: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147283          <idle>-0     (-----) [001] .n.1 82319.553170: cpu_idle: state=4294967295 cpu_id=1
147284          <idle>-0     (-----) [001] d..2 82319.553187: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147285        DispSync-8879  ( 8858) [003] d..2 82319.553220: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147286          <idle>-0     (-----) [003] d..2 82319.553226: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147287          <idle>-0     (-----) [003] dn.3 82319.553241: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147288  appEventThread-8881  ( 8858) [001] d..3 82319.553244: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147289          <idle>-0     (-----) [003] d..2 82319.553253: 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
147290     ksoftirqd/3-34    (   34) [003] d..2 82319.553283: 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
147291          <idle>-0     (-----) [003] d..1 82319.553303: cpu_idle: state=2 cpu_id=3
147292  appEventThread-8881  ( 8858) [001] d..2 82319.553318: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147293          <idle>-0     (-----) [001] d..1 82319.553334: cpu_idle: state=0 cpu_id=1
147294          <idle>-0     (-----) [004] dnh2 82319.554024: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147295          <idle>-0     (-----) [004] .n.1 82319.554032: cpu_idle: state=4294967295 cpu_id=4
147296          <idle>-0     (-----) [004] d..2 82319.554044: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147297 s.nexuslauncher-10023 (10023) [004] .... 82319.554202: binder_transaction: transaction=1573231 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147298 s.nexuslauncher-10023 (10023) [004] .... 82319.554208: binder_transaction_alloc_buf: transaction=1573231 data_size=80 offsets_size=0
147299 s.nexuslauncher-10023 (10023) [004] d..4 82319.554211: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147300 s.nexuslauncher-10023 (10023) [004] d..2 82319.554297: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147301          <idle>-0     (-----) [004] d..1 82319.554311: cpu_idle: state=2 cpu_id=4
147302          <idle>-0     (-----) [000] dnh2 82319.554403: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147303          <idle>-0     (-----) [000] .n.1 82319.554415: cpu_idle: state=4294967295 cpu_id=0
147304          <idle>-0     (-----) [000] d..2 82319.554435: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147305   Binder:8858_1-8871  ( 8858) [000] .... 82319.554445: binder_transaction_received: transaction=1573231
147306   Binder:8858_1-8871  ( 8858) [000] d..1 82319.554489: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147307   Binder:8858_1-8871  ( 8858) [000] d..2 82319.554512: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147308          <idle>-0     (-----) [001] .n.1 82319.554519: cpu_idle: state=4294967295 cpu_id=1
147309          <idle>-0     (-----) [001] d..2 82319.554530: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147310   Binder:8858_1-8871  ( 8858) [000] d..2 82319.554571: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147311  appEventThread-8881  ( 8858) [001] d..2 82319.554582: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147312          <idle>-0     (-----) [001] d..1 82319.554593: cpu_idle: state=0 cpu_id=1
147313          <idle>-0     (-----) [000] d..1 82319.554593: cpu_idle: state=2 cpu_id=0
147314          <idle>-0     (-----) [001] d.s2 82319.555139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147315          <idle>-0     (-----) [001] dns3 82319.555162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147316          <idle>-0     (-----) [001] dns3 82319.555169: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147317          <idle>-0     (-----) [001] dns4 82319.555186: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147318          <idle>-0     (-----) [001] .n.1 82319.555201: cpu_idle: state=4294967295 cpu_id=1
147319          <idle>-0     (-----) [001] d..2 82319.555213: 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
147320     rcu_preempt-7     (    7) [001] d..2 82319.555226: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147321     rcu_preempt-7     (    7) [001] d..3 82319.555244: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147322     rcu_preempt-7     (    7) [001] d..2 82319.555260: 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
147323         rcuop/0-10    (   10) [001] d..2 82319.555265: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
147324         rcuop/0-10    (   10) [001] d..3 82319.555281: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
147325         rcuop/0-10    (   10) [001] d..2 82319.555292: 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
147326         rcuop/1-21    (   21) [001] d..2 82319.555314: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147327  kworker/u16:13-1147  ( 1147) [001] d..2 82319.555543: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
147328          <idle>-0     (-----) [001] d.s4 82319.555592: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147329          <idle>-0     (-----) [001] d.s5 82319.555605: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
147330          <idle>-0     (-----) [001] dns5 82319.555613: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147331          <idle>-0     (-----) [001] d..2 82319.555628: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147332  kworker/u16:13-1147  ( 1147) [001] .... 82319.555681: clk_set_rate: l3_cluster0_vote_clk 300000000
147333  kworker/u16:13-1147  ( 1147) [001] .... 82319.555688: clk_set_rate: l3_clk 300000000
147334  kworker/u16:13-1147  ( 1147) [001] d..2 82319.555743: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147335          <idle>-0     (-----) [001] d..1 82319.555766: cpu_idle: state=2 cpu_id=1
147336          <idle>-0     (-----) [002] d..2 82319.559115: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
147337          <idle>-0     (-----) [002] dn.3 82319.559137: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
147338          <idle>-0     (-----) [002] .n.1 82319.559145: cpu_idle: state=4294967295 cpu_id=2
147339          <idle>-0     (-----) [002] d..2 82319.559169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
147340     ksoftirqd/2-26    (   26) [002] d..2 82319.559223: 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
147341          <idle>-0     (-----) [000] ...1 82319.559232: cpu_idle: state=4294967295 cpu_id=0
147342          <idle>-0     (-----) [002] d..1 82319.559245: cpu_idle: state=2 cpu_id=2
147343          <idle>-0     (-----) [000] d..1 82319.559248: cpu_idle: state=2 cpu_id=0
147344          <idle>-0     (-----) [001] d.s3 82319.559338: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147345          <idle>-0     (-----) [001] dns4 82319.559360: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147346          <idle>-0     (-----) [001] dns3 82319.559419: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147347          <idle>-0     (-----) [001] dns4 82319.559445: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147348          <idle>-0     (-----) [001] .n.1 82319.559466: cpu_idle: state=4294967295 cpu_id=1
147349          <idle>-0     (-----) [001] d..2 82319.559488: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
147350     kworker/1:1-25249 (25249) [001] d..2 82319.559529: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
147351     kworker/1:1-25249 (25249) [001] d..3 82319.559553: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
147352     kworker/1:1-25249 (25249) [001] d..2 82319.559644: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
147353   cds_mc_thread-16565 (16565) [001] d..2 82319.559742: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
147354 [email protected] (  798) [001] d..2 82319.560300: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147355          <idle>-0     (-----) [001] d..1 82319.560332: cpu_idle: state=2 cpu_id=1
147356          <idle>-0     (-----) [003] d.h2 82319.569521: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147357          <idle>-0     (-----) [003] dnh3 82319.569546: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147358          <idle>-0     (-----) [003] .n.1 82319.569561: cpu_idle: state=4294967295 cpu_id=3
147359          <idle>-0     (-----) [003] d..2 82319.569581: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147360        DispSync-8879  ( 8858) [003] d..1 82319.569609: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147361        DispSync-8879  ( 8858) [003] d..2 82319.569625: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147362        DispSync-8879  ( 8858) [003] d..2 82319.569683: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147363          <idle>-0     (-----) [003] d..2 82319.569690: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147364          <idle>-0     (-----) [003] dn.3 82319.569703: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147365          <idle>-0     (-----) [003] d..2 82319.569715: 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
147366     ksoftirqd/3-34    (   34) [003] d.s2 82319.569728: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147367     ksoftirqd/3-34    (   34) [003] d.s3 82319.569774: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147368     ksoftirqd/3-34    (   34) [003] d..2 82319.569795: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147369          <idle>-0     (-----) [001] .n.1 82319.569802: cpu_idle: state=4294967295 cpu_id=1
147370          <idle>-0     (-----) [001] d..2 82319.569834: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147371  appEventThread-8881  ( 8858) [001] d..3 82319.569925: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147372  kworker/u16:13-1147  ( 1147) [003] d..2 82319.569939: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147373          <idle>-0     (-----) [003] d..1 82319.569961: cpu_idle: state=2 cpu_id=3
147374  appEventThread-8881  ( 8858) [001] d..2 82319.570015: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147375          <idle>-0     (-----) [001] d..1 82319.570041: cpu_idle: state=2 cpu_id=1
147376          <idle>-0     (-----) [004] dnh2 82319.570726: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147377          <idle>-0     (-----) [004] .n.1 82319.570734: cpu_idle: state=4294967295 cpu_id=4
147378          <idle>-0     (-----) [004] d..2 82319.570747: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147379 s.nexuslauncher-10023 (10023) [004] .... 82319.570919: binder_transaction: transaction=1573232 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147380 s.nexuslauncher-10023 (10023) [004] .... 82319.570925: binder_transaction_alloc_buf: transaction=1573232 data_size=80 offsets_size=0
147381 s.nexuslauncher-10023 (10023) [004] d..4 82319.570929: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147382 s.nexuslauncher-10023 (10023) [004] d..2 82319.571022: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147383          <idle>-0     (-----) [004] d..1 82319.571036: cpu_idle: state=2 cpu_id=4
147384          <idle>-0     (-----) [000] dnh2 82319.571220: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147385          <idle>-0     (-----) [000] .n.1 82319.571234: cpu_idle: state=4294967295 cpu_id=0
147386          <idle>-0     (-----) [000] d..2 82319.571254: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147387   Binder:8858_1-8871  ( 8858) [000] .... 82319.571266: binder_transaction_received: transaction=1573232
147388   Binder:8858_1-8871  ( 8858) [000] d..1 82319.571312: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147389   Binder:8858_1-8871  ( 8858) [000] d..2 82319.571338: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147390   Binder:8858_1-8871  ( 8858) [000] d..2 82319.571399: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147391          <idle>-0     (-----) [000] d..1 82319.571420: cpu_idle: state=2 cpu_id=0
147392          <idle>-0     (-----) [001] .n.1 82319.571509: cpu_idle: state=4294967295 cpu_id=1
147393          <idle>-0     (-----) [001] d..2 82319.571536: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147394  appEventThread-8881  ( 8858) [001] d..2 82319.571619: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147395          <idle>-0     (-----) [001] d..1 82319.571638: cpu_idle: state=2 cpu_id=1
147396          <idle>-0     (-----) [000] d..2 82319.582746: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147397          <idle>-0     (-----) [000] dn.3 82319.582801: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147398          <idle>-0     (-----) [001] d.s3 82319.582812: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147399          <idle>-0     (-----) [001] dns4 82319.582849: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147400          <idle>-0     (-----) [001] .n.1 82319.582879: cpu_idle: state=4294967295 cpu_id=1
147401          <idle>-0     (-----) [000] dns3 82319.582881: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147402          <idle>-0     (-----) [001] d..2 82319.582935: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
147403          <idle>-0     (-----) [000] dns4 82319.582969: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147404          <idle>-0     (-----) [000] .n.1 82319.582990: cpu_idle: state=4294967295 cpu_id=0
147405          <idle>-0     (-----) [000] d..2 82319.583024: 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
147406     kworker/1:1-25249 (25249) [001] d..2 82319.583034: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
147407     ksoftirqd/0-3     (    3) [000] d..2 82319.583047: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147408     kworker/1:1-25249 (25249) [001] d..3 82319.583060: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
147409     kworker/1:1-25249 (25249) [001] d..2 82319.583127: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
147410 [email protected] (  798) [001] d.s2 82319.583360: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147411  kworker/u16:13-1147  ( 1147) [000] d..2 82319.583370: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
147412 [email protected] (  798) [001] d.s3 82319.583395: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
147413 [email protected] (  798) [001] d.s3 82319.583411: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147414          <idle>-0     (-----) [000] d..2 82319.583429: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147415 [email protected] (  798) [001] d..2 82319.583527: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147416          <idle>-0     (-----) [001] d..1 82319.583561: cpu_idle: state=2 cpu_id=1
147417  kworker/u16:13-1147  ( 1147) [000] d..2 82319.583677: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147418          <idle>-0     (-----) [000] d..1 82319.583696: cpu_idle: state=2 cpu_id=0
147419          <idle>-0     (-----) [003] d.h2 82319.586022: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147420          <idle>-0     (-----) [003] dnh3 82319.586069: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147421          <idle>-0     (-----) [003] .n.1 82319.586089: cpu_idle: state=4294967295 cpu_id=3
147422          <idle>-0     (-----) [003] d..2 82319.586117: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147423        DispSync-8879  ( 8858) [003] d..1 82319.586191: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147424        DispSync-8879  ( 8858) [003] d..2 82319.586214: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147425        DispSync-8879  ( 8858) [003] d..2 82319.586297: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147426          <idle>-0     (-----) [003] d..2 82319.586305: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147427          <idle>-0     (-----) [003] dn.3 82319.586322: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147428          <idle>-0     (-----) [003] d..2 82319.586334: 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
147429     ksoftirqd/3-34    (   34) [003] d..2 82319.586370: 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
147430          <idle>-0     (-----) [001] .n.1 82319.586386: cpu_idle: state=4294967295 cpu_id=1
147431          <idle>-0     (-----) [003] d..1 82319.586392: cpu_idle: state=2 cpu_id=3
147432          <idle>-0     (-----) [001] d..2 82319.586419: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147433  appEventThread-8881  ( 8858) [001] d..3 82319.586552: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147434  appEventThread-8881  ( 8858) [001] d..2 82319.586645: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147435          <idle>-0     (-----) [001] d..1 82319.586668: cpu_idle: state=2 cpu_id=1
147436          <idle>-0     (-----) [004] dnh2 82319.587378: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147437          <idle>-0     (-----) [004] .n.1 82319.587388: cpu_idle: state=4294967295 cpu_id=4
147438          <idle>-0     (-----) [004] d..2 82319.587404: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147439 s.nexuslauncher-10023 (10023) [004] .... 82319.587818: binder_transaction: transaction=1573233 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147440 s.nexuslauncher-10023 (10023) [004] .... 82319.587828: binder_transaction_alloc_buf: transaction=1573233 data_size=80 offsets_size=0
147441 s.nexuslauncher-10023 (10023) [004] d..4 82319.587837: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147442 s.nexuslauncher-10023 (10023) [004] d..2 82319.587968: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147443          <idle>-0     (-----) [004] d..1 82319.587984: cpu_idle: state=2 cpu_id=4
147444          <idle>-0     (-----) [000] dnh2 82319.588128: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147445          <idle>-0     (-----) [000] .n.1 82319.588143: cpu_idle: state=4294967295 cpu_id=0
147446          <idle>-0     (-----) [000] d..2 82319.588166: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147447   Binder:8858_1-8871  ( 8858) [000] .... 82319.588183: binder_transaction_received: transaction=1573233
147448   Binder:8858_1-8871  ( 8858) [000] d..1 82319.588261: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147449   Binder:8858_1-8871  ( 8858) [000] d..2 82319.588284: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147450   Binder:8858_1-8871  ( 8858) [000] d..2 82319.588361: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147451          <idle>-0     (-----) [000] d..1 82319.588382: cpu_idle: state=2 cpu_id=0
147452          <idle>-0     (-----) [001] .n.1 82319.588455: cpu_idle: state=4294967295 cpu_id=1
147453          <idle>-0     (-----) [001] d..2 82319.588490: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147454  appEventThread-8881  ( 8858) [001] d..2 82319.588593: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147455          <idle>-0     (-----) [001] d..2 82319.588601: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
147456          <idle>-0     (-----) [001] dn.3 82319.588623: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
147457          <idle>-0     (-----) [001] d..2 82319.588636: 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
147458     ksoftirqd/1-18    (   18) [001] d..2 82319.588671: 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
147459          <idle>-0     (-----) [001] d..1 82319.588689: cpu_idle: state=2 cpu_id=1
147460          <idle>-0     (-----) [003] d.h2 82319.605365: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147461          <idle>-0     (-----) [003] dnh3 82319.605447: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147462          <idle>-0     (-----) [000] d..2 82319.605458: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147463          <idle>-0     (-----) [000] dn.3 82319.605504: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147464          <idle>-0     (-----) [003] .n.1 82319.605632: cpu_idle: state=4294967295 cpu_id=3
147465          <idle>-0     (-----) [000] dns3 82319.605674: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147466          <idle>-0     (-----) [003] d..2 82319.605680: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147467          <idle>-0     (-----) [000] dns4 82319.605716: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147468          <idle>-0     (-----) [000] .n.1 82319.605736: cpu_idle: state=4294967295 cpu_id=0
147469        DispSync-8879  ( 8858) [003] d..1 82319.605760: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147470          <idle>-0     (-----) [000] d..2 82319.605772: 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
147471        DispSync-8879  ( 8858) [003] d..2 82319.605786: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147472     ksoftirqd/0-3     (    3) [000] d..2 82319.605796: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147473        DispSync-8879  ( 8858) [003] d..2 82319.605892: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147474          <idle>-0     (-----) [001] .n.1 82319.605962: cpu_idle: state=4294967295 cpu_id=1
147475          <idle>-0     (-----) [003] d..1 82319.605963: cpu_idle: state=2 cpu_id=3
147476          <idle>-0     (-----) [001] d..2 82319.605996: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147477  kworker/u16:13-1147  ( 1147) [000] d..2 82319.606123: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147478          <idle>-0     (-----) [000] d..1 82319.606146: cpu_idle: state=2 cpu_id=0
147479  appEventThread-8881  ( 8858) [001] d..3 82319.606161: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147480  appEventThread-8881  ( 8858) [001] d..2 82319.606263: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147481          <idle>-0     (-----) [001] d..1 82319.606289: cpu_idle: state=2 cpu_id=1
147482          <idle>-0     (-----) [004] dnh2 82319.606990: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147483          <idle>-0     (-----) [004] .n.1 82319.607001: cpu_idle: state=4294967295 cpu_id=4
147484          <idle>-0     (-----) [004] d..2 82319.607018: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147485 s.nexuslauncher-10023 (10023) [004] .... 82319.607438: binder_transaction: transaction=1573234 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147486 s.nexuslauncher-10023 (10023) [004] .... 82319.607449: binder_transaction_alloc_buf: transaction=1573234 data_size=80 offsets_size=0
147487 s.nexuslauncher-10023 (10023) [004] d..4 82319.607457: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147488 s.nexuslauncher-10023 (10023) [004] d..2 82319.607586: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147489          <idle>-0     (-----) [004] d..1 82319.607602: cpu_idle: state=2 cpu_id=4
147490          <idle>-0     (-----) [000] dnh2 82319.607747: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147491          <idle>-0     (-----) [000] .n.1 82319.607761: cpu_idle: state=4294967295 cpu_id=0
147492          <idle>-0     (-----) [000] d..2 82319.607783: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147493   Binder:8858_1-8871  ( 8858) [000] .... 82319.607799: binder_transaction_received: transaction=1573234
147494   Binder:8858_1-8871  ( 8858) [000] d..1 82319.607876: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147495   Binder:8858_1-8871  ( 8858) [000] d..2 82319.607899: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147496   Binder:8858_1-8871  ( 8858) [000] d..2 82319.607974: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147497          <idle>-0     (-----) [000] d..1 82319.607996: cpu_idle: state=2 cpu_id=0
147498          <idle>-0     (-----) [001] .n.1 82319.608069: cpu_idle: state=4294967295 cpu_id=1
147499          <idle>-0     (-----) [001] d..2 82319.608098: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147500  appEventThread-8881  ( 8858) [001] d..2 82319.608191: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147501          <idle>-0     (-----) [001] d..1 82319.608214: cpu_idle: state=2 cpu_id=1
147502          <idle>-0     (-----) [003] d.h2 82319.621662: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147503          <idle>-0     (-----) [003] dnh3 82319.621725: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147504          <idle>-0     (-----) [000] ...1 82319.621855: cpu_idle: state=4294967295 cpu_id=0
147505          <idle>-0     (-----) [000] d..1 82319.621884: cpu_idle: state=2 cpu_id=0
147506          <idle>-0     (-----) [003] dns3 82319.621888: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
147507          <idle>-0     (-----) [003] dns4 82319.621921: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
147508          <idle>-0     (-----) [003] dns3 82319.621933: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
147509          <idle>-0     (-----) [003] dns4 82319.622019: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147510          <idle>-0     (-----) [003] .n.1 82319.622084: cpu_idle: state=4294967295 cpu_id=3
147511          <idle>-0     (-----) [003] d..2 82319.622123: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147512        DispSync-8879  ( 8858) [003] d..1 82319.622208: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147513        DispSync-8879  ( 8858) [003] d..2 82319.622237: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147514        DispSync-8879  ( 8858) [003] d..2 82319.622300: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
147515          <idle>-0     (-----) [001] .n.1 82319.622414: cpu_idle: state=4294967295 cpu_id=1
147516          <idle>-0     (-----) [001] d..2 82319.622454: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147517     kworker/3:1-25210 (25210) [003] d..3 82319.622549: sched_waking: comm=kworker/3:2 pid=25265 prio=120 target_cpu=003
147518     kworker/3:1-25210 (25210) [003] d..3 82319.622570: sched_wakeup: comm=kworker/3:2 pid=25265 prio=120 target_cpu=003
147519     kworker/3:1-25210 (25210) [003] d..2 82319.622580: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=D ==> next_comm=kworker/3:2 next_pid=25265 next_prio=120
147520     kworker/3:2-25265 (25265) [003] d.h3 82319.622595: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
147521  appEventThread-8881  ( 8858) [001] d..3 82319.622599: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147522     kworker/3:2-25265 (25265) [003] d.h4 82319.622607: sched_blocked_reason: pid=25210 iowait=0 caller=fg_direct_mem_request+0xc4/0x308
147523     kworker/3:2-25265 (25265) [003] d.h4 82319.622615: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
147524     kworker/3:2-25265 (25265) [003] d..2 82319.622634: sched_switch: prev_comm=kworker/3:2 prev_pid=25265 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
147525  appEventThread-8881  ( 8858) [001] d..2 82319.622744: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147526          <idle>-0     (-----) [000] d.h2 82319.622786: sched_waking: comm=irq/1055-dma-gr pid=491 prio=49 target_cpu=002
147527          <idle>-0     (-----) [000] d.h3 82319.622824: sched_wakeup: comm=irq/1055-dma-gr pid=491 prio=49 target_cpu=002
147528     kworker/3:1-25210 (25210) [003] d..3 82319.622836: sched_waking: comm=kworker/3:2 pid=25265 prio=120 target_cpu=003
147529     kworker/3:1-25210 (25210) [003] d..3 82319.622847: sched_wakeup: comm=kworker/3:2 pid=25265 prio=120 target_cpu=003
147530     kworker/3:1-25210 (25210) [003] d..2 82319.622855: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=D ==> next_comm=kworker/3:2 next_pid=25265 next_prio=120
147531     kworker/3:2-25265 (25265) [003] d.h2 82319.622877: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
147532     kworker/3:2-25265 (25265) [003] d.h3 82319.622885: sched_blocked_reason: pid=25210 iowait=0 caller=fg_direct_mem_request+0xc4/0x308
147533     kworker/3:2-25265 (25265) [003] d.h3 82319.622891: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
147534          <idle>-0     (-----) [000] ...1 82319.622911: cpu_idle: state=4294967295 cpu_id=0
147535          <idle>-0     (-----) [000] d..1 82319.622923: cpu_idle: state=2 cpu_id=0
147536     kworker/3:2-25265 (25265) [003] d..2 82319.622944: sched_switch: prev_comm=kworker/3:2 prev_pid=25265 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
147537          <idle>-0     (-----) [002] .n.1 82319.623009: cpu_idle: state=4294967295 cpu_id=2
147538          <idle>-0     (-----) [002] d..2 82319.623042: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/1055-dma-gr next_pid=491 next_prio=49
147539  kworker/u16:13-1147  ( 1147) [001] d..2 82319.623088: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147540 irq/1055-dma-gr-491   (  491) [002] d..2 82319.623103: sched_switch: prev_comm=irq/1055-dma-gr prev_pid=491 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147541          <idle>-0     (-----) [001] d..1 82319.623116: cpu_idle: state=2 cpu_id=1
147542          <idle>-0     (-----) [002] d..1 82319.623128: cpu_idle: state=2 cpu_id=2
147543     kworker/3:1-25210 (25210) [003] d..2 82319.623165: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
147544          <idle>-0     (-----) [003] d..2 82319.623174: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147545          <idle>-0     (-----) [003] dn.3 82319.623190: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147546          <idle>-0     (-----) [003] dnh2 82319.623203: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
147547          <idle>-0     (-----) [003] dnh3 82319.623210: sched_blocked_reason: pid=25210 iowait=0 caller=fg_direct_mem_request+0xc4/0x308
147548          <idle>-0     (-----) [003] dnh3 82319.623215: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
147549          <idle>-0     (-----) [003] d..2 82319.623240: 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
147550     ksoftirqd/3-34    (   34) [003] d..2 82319.623258: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
147551          <idle>-0     (-----) [000] d.h2 82319.623366: sched_waking: comm=irq/1055-dma-gr pid=491 prio=49 target_cpu=002
147552          <idle>-0     (-----) [000] d.h3 82319.623396: sched_wakeup: comm=irq/1055-dma-gr pid=491 prio=49 target_cpu=002
147553          <idle>-0     (-----) [000] ...1 82319.623424: cpu_idle: state=4294967295 cpu_id=0
147554          <idle>-0     (-----) [000] d..1 82319.623435: cpu_idle: state=2 cpu_id=0
147555          <idle>-0     (-----) [004] dnh2 82319.623436: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147556          <idle>-0     (-----) [004] .n.1 82319.623448: cpu_idle: state=4294967295 cpu_id=4
147557          <idle>-0     (-----) [004] d..2 82319.623465: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147558     kworker/3:1-25210 (25210) [003] d..2 82319.623473: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
147559          <idle>-0     (-----) [003] d..1 82319.623495: cpu_idle: state=0 cpu_id=3
147560          <idle>-0     (-----) [003] d.h2 82319.623512: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
147561          <idle>-0     (-----) [003] d.h3 82319.623521: sched_blocked_reason: pid=25210 iowait=0 caller=fg_direct_mem_request+0xc4/0x308
147562          <idle>-0     (-----) [003] dnh3 82319.623527: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
147563          <idle>-0     (-----) [003] .n.1 82319.623537: cpu_idle: state=4294967295 cpu_id=3
147564          <idle>-0     (-----) [003] d..2 82319.623553: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
147565          <idle>-0     (-----) [002] .n.1 82319.623557: cpu_idle: state=4294967295 cpu_id=2
147566          <idle>-0     (-----) [002] d..2 82319.623582: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/1055-dma-gr next_pid=491 next_prio=49
147567 irq/1055-dma-gr-491   (  491) [002] d..2 82319.623625: sched_switch: prev_comm=irq/1055-dma-gr prev_pid=491 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147568          <idle>-0     (-----) [002] d..1 82319.623643: cpu_idle: state=2 cpu_id=2
147569     kworker/3:1-25210 (25210) [003] d..2 82319.623699: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147570          <idle>-0     (-----) [003] d..1 82319.623716: cpu_idle: state=2 cpu_id=3
147571          <idle>-0     (-----) [000] d.h2 82319.623737: sched_waking: comm=irq/1055-dma-gr pid=491 prio=49 target_cpu=002
147572          <idle>-0     (-----) [000] d.h3 82319.623767: sched_wakeup: comm=irq/1055-dma-gr pid=491 prio=49 target_cpu=002
147573          <idle>-0     (-----) [000] ...1 82319.623795: cpu_idle: state=4294967295 cpu_id=0
147574          <idle>-0     (-----) [000] d..1 82319.623807: cpu_idle: state=2 cpu_id=0
147575 s.nexuslauncher-10023 (10023) [004] .... 82319.623877: binder_transaction: transaction=1573235 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147576 s.nexuslauncher-10023 (10023) [004] .... 82319.623888: binder_transaction_alloc_buf: transaction=1573235 data_size=80 offsets_size=0
147577 s.nexuslauncher-10023 (10023) [004] d..4 82319.623896: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147578          <idle>-0     (-----) [002] .n.1 82319.623926: cpu_idle: state=4294967295 cpu_id=2
147579          <idle>-0     (-----) [002] d..2 82319.623952: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=irq/1055-dma-gr next_pid=491 next_prio=49
147580 irq/1055-dma-gr-491   (  491) [002] d..2 82319.623996: sched_switch: prev_comm=irq/1055-dma-gr prev_pid=491 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147581          <idle>-0     (-----) [002] d..1 82319.624014: cpu_idle: state=2 cpu_id=2
147582 s.nexuslauncher-10023 (10023) [004] d..2 82319.624026: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147583          <idle>-0     (-----) [004] d..1 82319.624045: cpu_idle: state=2 cpu_id=4
147584          <idle>-0     (-----) [000] dnh2 82319.624099: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147585          <idle>-0     (-----) [000] .n.1 82319.624112: cpu_idle: state=4294967295 cpu_id=0
147586          <idle>-0     (-----) [000] d..2 82319.624139: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147587   Binder:8858_1-8871  ( 8858) [000] .... 82319.624158: binder_transaction_received: transaction=1573235
147588   Binder:8858_1-8871  ( 8858) [000] d..1 82319.624238: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147589   Binder:8858_1-8871  ( 8858) [000] d..2 82319.624261: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147590   Binder:8858_1-8871  ( 8858) [000] d..2 82319.624341: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147591          <idle>-0     (-----) [000] d..1 82319.624369: cpu_idle: state=0 cpu_id=0
147592          <idle>-0     (-----) [001] .n.1 82319.624428: cpu_idle: state=4294967295 cpu_id=1
147593          <idle>-0     (-----) [001] d..2 82319.624459: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147594  appEventThread-8881  ( 8858) [001] d..2 82319.624572: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147595          <idle>-0     (-----) [001] d..1 82319.624596: cpu_idle: state=2 cpu_id=1
147596          <idle>-0     (-----) [000] d..2 82319.625820: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147597          <idle>-0     (-----) [000] dn.3 82319.625842: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147598          <idle>-0     (-----) [000] .n.1 82319.625847: cpu_idle: state=4294967295 cpu_id=0
147599          <idle>-0     (-----) [000] d..2 82319.625867: 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
147600     ksoftirqd/0-3     (    3) [000] d..2 82319.625915: 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
147601          <idle>-0     (-----) [000] d..1 82319.625929: cpu_idle: state=2 cpu_id=0
147602          <idle>-0     (-----) [003] d.h2 82319.635332: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147603          <idle>-0     (-----) [003] dnh3 82319.635364: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147604          <idle>-0     (-----) [003] .n.1 82319.635446: cpu_idle: state=4294967295 cpu_id=3
147605          <idle>-0     (-----) [003] d..2 82319.635467: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147606        DispSync-8879  ( 8858) [003] d..1 82319.635495: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147607        DispSync-8879  ( 8858) [003] d..2 82319.635516: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147608        DispSync-8879  ( 8858) [003] d..2 82319.635572: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147609          <idle>-0     (-----) [003] d..2 82319.635578: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147610          <idle>-0     (-----) [003] dn.3 82319.635593: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147611          <idle>-0     (-----) [003] d..2 82319.635605: 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
147612     ksoftirqd/3-34    (   34) [003] d.s2 82319.635618: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147613     ksoftirqd/3-34    (   34) [003] d.s3 82319.635665: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147614     ksoftirqd/3-34    (   34) [003] d..2 82319.635689: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147615          <idle>-0     (-----) [001] .n.1 82319.635690: cpu_idle: state=4294967295 cpu_id=1
147616          <idle>-0     (-----) [001] d..2 82319.635747: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147617  appEventThread-8881  ( 8858) [001] d..3 82319.635839: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147618  appEventThread-8881  ( 8858) [001] d..2 82319.635929: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147619          <idle>-0     (-----) [001] d..1 82319.635951: cpu_idle: state=2 cpu_id=1
147620  kworker/u16:13-1147  ( 1147) [003] d..2 82319.636203: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
147621          <idle>-0     (-----) [003] d..1 82319.636226: cpu_idle: state=2 cpu_id=3
147622          <idle>-0     (-----) [001] d.s3 82319.636404: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147623          <idle>-0     (-----) [001] d.s4 82319.636423: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
147624          <idle>-0     (-----) [001] d.s4 82319.636435: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147625          <idle>-0     (-----) [001] ...1 82319.636457: cpu_idle: state=4294967295 cpu_id=1
147626          <idle>-0     (-----) [001] d..1 82319.636467: cpu_idle: state=2 cpu_id=1
147627          <idle>-0     (-----) [004] dnh2 82319.636635: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147628          <idle>-0     (-----) [004] .n.1 82319.636644: cpu_idle: state=4294967295 cpu_id=4
147629          <idle>-0     (-----) [004] d..2 82319.636656: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147630          <idle>-0     (-----) [003] .n.1 82319.636695: cpu_idle: state=4294967295 cpu_id=3
147631          <idle>-0     (-----) [003] d..2 82319.636734: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147632  kworker/u16:13-1147  ( 1147) [003] d..2 82319.636794: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147633          <idle>-0     (-----) [003] d..1 82319.636812: cpu_idle: state=2 cpu_id=3
147634 s.nexuslauncher-10023 (10023) [004] .... 82319.636825: binder_transaction: transaction=1573236 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147635 s.nexuslauncher-10023 (10023) [004] .... 82319.636830: binder_transaction_alloc_buf: transaction=1573236 data_size=80 offsets_size=0
147636 s.nexuslauncher-10023 (10023) [004] d..4 82319.636835: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147637 s.nexuslauncher-10023 (10023) [004] d..2 82319.636925: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147638          <idle>-0     (-----) [004] d..1 82319.636940: cpu_idle: state=2 cpu_id=4
147639          <idle>-0     (-----) [000] dnh2 82319.637051: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147640          <idle>-0     (-----) [000] .n.1 82319.637066: cpu_idle: state=4294967295 cpu_id=0
147641          <idle>-0     (-----) [000] d..2 82319.637088: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147642   Binder:8858_1-8871  ( 8858) [000] .... 82319.637100: binder_transaction_received: transaction=1573236
147643   Binder:8858_1-8871  ( 8858) [000] d..1 82319.637146: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147644   Binder:8858_1-8871  ( 8858) [000] d..2 82319.637169: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147645   Binder:8858_1-8871  ( 8858) [000] d..2 82319.637230: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147646          <idle>-0     (-----) [000] d..1 82319.637254: cpu_idle: state=0 cpu_id=0
147647          <idle>-0     (-----) [001] .n.1 82319.637343: cpu_idle: state=4294967295 cpu_id=1
147648          <idle>-0     (-----) [001] d..2 82319.637376: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147649  appEventThread-8881  ( 8858) [001] d..2 82319.637477: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147650          <idle>-0     (-----) [001] d..1 82319.637508: cpu_idle: state=0 cpu_id=1
147651          <idle>-0     (-----) [000] d..2 82319.638706: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147652          <idle>-0     (-----) [000] dn.3 82319.638722: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147653          <idle>-0     (-----) [000] .n.1 82319.638728: cpu_idle: state=4294967295 cpu_id=0
147654          <idle>-0     (-----) [000] d..2 82319.638748: 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
147655     ksoftirqd/0-3     (    3) [000] d..2 82319.638791: 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
147656          <idle>-0     (-----) [000] d..1 82319.638806: cpu_idle: state=2 cpu_id=0
147657          <idle>-0     (-----) [001] d..2 82319.643523: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
147658          <idle>-0     (-----) [001] dn.3 82319.643548: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
147659          <idle>-0     (-----) [001] .n.1 82319.643554: cpu_idle: state=4294967295 cpu_id=1
147660          <idle>-0     (-----) [001] d..2 82319.643573: 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
147661     ksoftirqd/1-18    (   18) [001] d..2 82319.643623: 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
147662          <idle>-0     (-----) [001] d..1 82319.643638: cpu_idle: state=2 cpu_id=1
147663          <idle>-0     (-----) [003] d.h2 82319.651747: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147664          <idle>-0     (-----) [003] dnh3 82319.651773: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147665          <idle>-0     (-----) [003] .n.1 82319.651862: cpu_idle: state=4294967295 cpu_id=3
147666          <idle>-0     (-----) [003] d..2 82319.651887: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147667        DispSync-8879  ( 8858) [003] d..1 82319.651915: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147668        DispSync-8879  ( 8858) [003] d..2 82319.651934: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147669        DispSync-8879  ( 8858) [003] d..2 82319.651990: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147670          <idle>-0     (-----) [003] d..2 82319.651997: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147671          <idle>-0     (-----) [003] dn.3 82319.652012: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147672          <idle>-0     (-----) [003] d..2 82319.652024: 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
147673     ksoftirqd/3-34    (   34) [003] d.s2 82319.652037: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147674     ksoftirqd/3-34    (   34) [003] d.s3 82319.652059: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147675     ksoftirqd/3-34    (   34) [003] d..2 82319.652078: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147676          <idle>-0     (-----) [001] .n.1 82319.652109: cpu_idle: state=4294967295 cpu_id=1
147677          <idle>-0     (-----) [001] d..2 82319.652164: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147678  appEventThread-8881  ( 8858) [001] d..3 82319.652251: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147679  kworker/u16:13-1147  ( 1147) [003] d..2 82319.652251: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147680          <idle>-0     (-----) [003] d..1 82319.652279: cpu_idle: state=0 cpu_id=3
147681  appEventThread-8881  ( 8858) [001] d..2 82319.652347: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147682          <idle>-0     (-----) [001] d..1 82319.652379: cpu_idle: state=0 cpu_id=1
147683          <idle>-0     (-----) [004] dnh2 82319.653055: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147684          <idle>-0     (-----) [004] .n.1 82319.653064: cpu_idle: state=4294967295 cpu_id=4
147685          <idle>-0     (-----) [004] d..2 82319.653079: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147686 s.nexuslauncher-10023 (10023) [004] .... 82319.653247: binder_transaction: transaction=1573237 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147687 s.nexuslauncher-10023 (10023) [004] .... 82319.653252: binder_transaction_alloc_buf: transaction=1573237 data_size=80 offsets_size=0
147688 s.nexuslauncher-10023 (10023) [004] d..4 82319.653256: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147689 s.nexuslauncher-10023 (10023) [004] d..2 82319.653351: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147690          <idle>-0     (-----) [004] d..1 82319.653366: cpu_idle: state=2 cpu_id=4
147691          <idle>-0     (-----) [000] dnh2 82319.653463: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147692          <idle>-0     (-----) [000] .n.1 82319.653476: cpu_idle: state=4294967295 cpu_id=0
147693          <idle>-0     (-----) [000] d..2 82319.653498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147694   Binder:8858_1-8871  ( 8858) [000] .... 82319.653509: binder_transaction_received: transaction=1573237
147695   Binder:8858_1-8871  ( 8858) [000] d..1 82319.653559: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147696   Binder:8858_1-8871  ( 8858) [000] d..2 82319.653586: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147697          <idle>-0     (-----) [001] .n.1 82319.653594: cpu_idle: state=4294967295 cpu_id=1
147698          <idle>-0     (-----) [001] d..2 82319.653609: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147699   Binder:8858_1-8871  ( 8858) [000] d..2 82319.653651: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147700  appEventThread-8881  ( 8858) [001] d..2 82319.653664: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147701          <idle>-0     (-----) [000] d..1 82319.653677: cpu_idle: state=0 cpu_id=0
147702          <idle>-0     (-----) [001] d..1 82319.653682: cpu_idle: state=0 cpu_id=1
147703          <idle>-0     (-----) [003] d..2 82319.658292: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147704          <idle>-0     (-----) [003] dn.3 82319.658306: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
147705          <idle>-0     (-----) [003] .n.1 82319.658312: cpu_idle: state=4294967295 cpu_id=3
147706          <idle>-0     (-----) [003] d..2 82319.658331: 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
147707     ksoftirqd/3-34    (   34) [003] d..2 82319.658369: 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
147708          <idle>-0     (-----) [003] d..1 82319.658384: cpu_idle: state=2 cpu_id=3
147709          <idle>-0     (-----) [000] d..2 82319.659691: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147710          <idle>-0     (-----) [001] ...1 82319.659699: cpu_idle: state=4294967295 cpu_id=1
147711          <idle>-0     (-----) [001] d..1 82319.659705: cpu_idle: state=2 cpu_id=1
147712          <idle>-0     (-----) [000] dn.3 82319.659707: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
147713          <idle>-0     (-----) [000] .n.1 82319.659713: cpu_idle: state=4294967295 cpu_id=0
147714          <idle>-0     (-----) [000] d..2 82319.659731: 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
147715     ksoftirqd/0-3     (    3) [000] d..2 82319.659771: 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
147716          <idle>-0     (-----) [000] d..1 82319.659785: cpu_idle: state=2 cpu_id=0
147717          <idle>-0     (-----) [003] d.h2 82319.668212: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147718          <idle>-0     (-----) [003] dnh3 82319.668238: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147719          <idle>-0     (-----) [003] dnh2 82319.668245: sched_waking: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=003
147720          <idle>-0     (-----) [003] dnh3 82319.668277: sched_wakeup: comm=LazyTaskWriterT pid=9080 prio=130 target_cpu=003
147721          <idle>-0     (-----) [003] .n.1 82319.668294: cpu_idle: state=4294967295 cpu_id=3
147722          <idle>-0     (-----) [003] d..2 82319.668313: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147723        DispSync-8879  ( 8858) [003] d..1 82319.668341: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147724        DispSync-8879  ( 8858) [003] d..2 82319.668359: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
147725        DispSync-8879  ( 8858) [003] d..2 82319.668390: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
147726 LazyTaskWriterT-9080  ( 8943) [003] d.s2 82319.668506: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147727          <idle>-0     (-----) [001] .n.1 82319.668530: cpu_idle: state=4294967295 cpu_id=1
147728          <idle>-0     (-----) [001] d..2 82319.668566: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147729 LazyTaskWriterT-9080  ( 8943) [003] d.s3 82319.668581: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147730  appEventThread-8881  ( 8858) [001] d..3 82319.668630: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147731  appEventThread-8881  ( 8858) [001] d..2 82319.668698: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147732  kworker/u16:13-1147  ( 1147) [001] d..2 82319.668892: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147733 LazyTaskWriterT-9080  ( 8943) [003] .... 82319.668907: cgroup_attach_task: dst_root=3 dst_id=2 dst_level=1 dst_path=/foreground pid=9080 comm=LazyTaskWriterT
147734          <idle>-0     (-----) [001] d..1 82319.668918: cpu_idle: state=0 cpu_id=1
147735 LazyTaskWriterT-9080  ( 8943) [003] d..2 82319.669173: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
147736 LazyTaskWriterT-9080  ( 8943) [003] dn.3 82319.669242: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
147737 LazyTaskWriterT-9080  ( 8943) [003] d..2 82319.669262: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
147738         rcuop/2-29    (   29) [003] d..2 82319.669274: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
147739         rcuop/2-29    (   29) [003] d..3 82319.669321: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
147740         rcuop/2-29    (   29) [003] d..2 82319.669337: 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
147741     rcu_preempt-7     (    7) [003] d..2 82319.669360: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=LazyTaskWriterT next_pid=9080 next_prio=130
147742          <idle>-0     (-----) [004] dnh2 82319.669420: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147743          <idle>-0     (-----) [004] .n.1 82319.669430: cpu_idle: state=4294967295 cpu_id=4
147744          <idle>-0     (-----) [004] d..2 82319.669443: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147745 LazyTaskWriterT-9080  ( 8943) [003] d..1 82319.669454: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=006
147746          <idle>-0     (-----) [001] d.s3 82319.669487: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147747          <idle>-0     (-----) [001] dns4 82319.669512: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147748          <idle>-0     (-----) [001] .n.1 82319.669538: cpu_idle: state=4294967295 cpu_id=1
147749 LazyTaskWriterT-9080  ( 8943) [003] .... 82319.669541: cgroup_attach_task: dst_root=3 dst_id=3 dst_level=1 dst_path=/background pid=9080 comm=LazyTaskWriterT
147750          <idle>-0     (-----) [001] d..2 82319.669557: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
147751 s.nexuslauncher-10023 (10023) [004] .... 82319.669619: binder_transaction: transaction=1573238 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147752          <idle>-0     (-----) [002] ...1 82319.669622: cpu_idle: state=4294967295 cpu_id=2
147753 s.nexuslauncher-10023 (10023) [004] .... 82319.669624: binder_transaction_alloc_buf: transaction=1573238 data_size=80 offsets_size=0
147754     kworker/1:1-25249 (25249) [001] d..2 82319.669628: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
147755 s.nexuslauncher-10023 (10023) [004] d..4 82319.669629: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147756          <idle>-0     (-----) [002] d..1 82319.669636: cpu_idle: state=2 cpu_id=2
147757     kworker/1:1-25249 (25249) [001] d..3 82319.669652: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
147758     kworker/1:1-25249 (25249) [001] d..2 82319.669707: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
147759          <idle>-0     (-----) [006] dnh2 82319.669717: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=006
147760 s.nexuslauncher-10023 (10023) [004] d..2 82319.669725: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147761          <idle>-0     (-----) [006] .n.1 82319.669728: cpu_idle: state=4294967295 cpu_id=6
147762          <idle>-0     (-----) [004] d..1 82319.669741: cpu_idle: state=2 cpu_id=4
147763          <idle>-0     (-----) [006] d..2 82319.669743: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
147764          <idle>-0     (-----) [000] dnh2 82319.669827: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147765          <idle>-0     (-----) [000] .n.1 82319.669841: cpu_idle: state=4294967295 cpu_id=0
147766          <idle>-0     (-----) [000] d..2 82319.669864: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147767   Binder:8858_1-8871  ( 8858) [000] .... 82319.669879: binder_transaction_received: transaction=1573238
147768 [email protected] (  798) [001] d.s2 82319.669880: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147769 [email protected] (  798) [001] dns3 82319.669902: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147770   Binder:8858_1-8871  ( 8858) [000] d..1 82319.669929: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
147771 [email protected] (  798) [001] d..2 82319.669932: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
147772   Binder:8858_1-8871  ( 8858) [000] dn.2 82319.669965: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
147773   Binder:8858_1-8871  ( 8858) [000] d..2 82319.669978: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=appEventThread next_pid=8881 next_prio=97
147774 TaskSnapshotPer-9077  ( 8943) [006] d..2 82319.669983: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=000
147775     kworker/1:1-25249 (25249) [001] d..2 82319.670002: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
147776          <idle>-0     (-----) [002] ...1 82319.670004: cpu_idle: state=4294967295 cpu_id=2
147777  appEventThread-8881  ( 8858) [000] d..2 82319.670008: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147778   Binder:8858_1-8871  ( 8858) [000] d..1 82319.670016: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
147779          <idle>-0     (-----) [002] d..1 82319.670021: cpu_idle: state=0 cpu_id=2
147780 [email protected] (  798) [001] dnh1 82319.670038: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=001
147781   Binder:8858_1-8871  ( 8858) [000] d..2 82319.670045: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
147782 [email protected] (  798) [001] d..2 82319.670051: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=rcuop/6 next_pid=61 next_prio=120
147783          <idle>-0     (-----) [002] .n.1 82319.670053: cpu_idle: state=4294967295 cpu_id=2
147784         rcuop/6-61    (   61) [001] d..2 82319.670069: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
147785          <idle>-0     (-----) [002] d..2 82319.670072: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147786   Binder:8858_1-8871  ( 8858) [000] d..2 82319.670109: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147787 TaskSnapshotPer-9077  ( 8943) [006] d..2 82319.670124: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
147788          <idle>-0     (-----) [000] d..1 82319.670138: cpu_idle: state=0 cpu_id=0
147789          <idle>-0     (-----) [006] d..1 82319.670140: cpu_idle: state=2 cpu_id=6
147790  appEventThread-8881  ( 8858) [002] d..2 82319.670170: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147791          <idle>-0     (-----) [002] d..1 82319.670195: cpu_idle: state=0 cpu_id=2
147792 [email protected] (  798) [001] d..2 82319.670312: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147793          <idle>-0     (-----) [001] d..1 82319.670341: cpu_idle: state=0 cpu_id=1
147794 LazyTaskWriterT-9080  ( 8943) [003] d..2 82319.670806: sched_switch: prev_comm=LazyTaskWriterT prev_pid=9080 prev_prio=130 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147795          <idle>-0     (-----) [003] d..1 82319.670842: cpu_idle: state=0 cpu_id=3
147796          <idle>-0     (-----) [001] d.s3 82319.671167: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147797          <idle>-0     (-----) [001] dns4 82319.671182: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147798          <idle>-0     (-----) [001] .n.1 82319.671203: cpu_idle: state=4294967295 cpu_id=1
147799          <idle>-0     (-----) [001] d..2 82319.671221: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
147800     kworker/1:1-25249 (25249) [001] d..2 82319.671259: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
147801     kworker/1:1-25249 (25249) [001] d..3 82319.671275: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
147802     kworker/1:1-25249 (25249) [001] d..2 82319.671316: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
147803          <idle>-0     (-----) [002] ...1 82319.671458: cpu_idle: state=4294967295 cpu_id=2
147804          <idle>-0     (-----) [002] d..1 82319.671464: cpu_idle: state=2 cpu_id=2
147805 [email protected] (  798) [001] d..2 82319.671490: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147806          <idle>-0     (-----) [001] d..1 82319.671519: cpu_idle: state=2 cpu_id=1
147807          <idle>-0     (-----) [001] d.s3 82319.671960: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147808          <idle>-0     (-----) [001] dns4 82319.671999: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147809          <idle>-0     (-----) [001] dns3 82319.672031: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147810          <idle>-0     (-----) [001] dns4 82319.672044: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147811          <idle>-0     (-----) [001] .n.1 82319.672064: cpu_idle: state=4294967295 cpu_id=1
147812          <idle>-0     (-----) [001] d..2 82319.672089: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
147813   cds_mc_thread-16565 (16565) [001] d..2 82319.672219: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
147814     kworker/1:1-25249 (25249) [001] d..2 82319.672256: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
147815     kworker/1:1-25249 (25249) [001] d..3 82319.672275: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
147816     kworker/1:1-25249 (25249) [001] d..2 82319.672307: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
147817 [email protected] (  798) [001] d..2 82319.672497: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147818          <idle>-0     (-----) [001] d..2 82319.672506: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
147819          <idle>-0     (-----) [001] dn.3 82319.672521: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
147820          <idle>-0     (-----) [001] d..2 82319.672534: 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
147821     ksoftirqd/1-18    (   18) [001] d..2 82319.672564: 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
147822          <idle>-0     (-----) [001] d..1 82319.672587: cpu_idle: state=0 cpu_id=1
147823          <idle>-0     (-----) [001] ...1 82319.674284: cpu_idle: state=4294967295 cpu_id=1
147824          <idle>-0     (-----) [001] d..1 82319.674291: cpu_idle: state=2 cpu_id=1
147825          <idle>-0     (-----) [003] d.s2 82319.675148: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
147826          <idle>-0     (-----) [003] dns3 82319.675177: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
147827          <idle>-0     (-----) [003] .n.1 82319.675205: cpu_idle: state=4294967295 cpu_id=3
147828          <idle>-0     (-----) [003] d..2 82319.675223: 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
147829     rcu_preempt-7     (    7) [003] d..2 82319.675247: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
147830     rcu_preempt-7     (    7) [003] d..3 82319.675269: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
147831     rcu_preempt-7     (    7) [003] d..2 82319.675292: 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
147832         rcuop/2-29    (   29) [003] d..2 82319.675298: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
147833         rcuop/2-29    (   29) [003] d..3 82319.675344: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
147834         rcuop/2-29    (   29) [003] d..2 82319.675358: 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
147835         rcuop/3-37    (   37) [003] d..2 82319.675397: 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
147836          <idle>-0     (-----) [003] d..1 82319.675418: cpu_idle: state=0 cpu_id=3
147837          <idle>-0     (-----) [000] ...1 82319.676155: cpu_idle: state=4294967295 cpu_id=0
147838          <idle>-0     (-----) [000] d..1 82319.676162: cpu_idle: state=2 cpu_id=0
147839          <idle>-0     (-----) [003] d.s2 82319.681808: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
147840          <idle>-0     (-----) [003] dns3 82319.681827: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
147841          <idle>-0     (-----) [003] dns3 82319.681835: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147842          <idle>-0     (-----) [003] dns4 82319.681877: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147843          <idle>-0     (-----) [003] .n.1 82319.681893: cpu_idle: state=4294967295 cpu_id=3
147844          <idle>-0     (-----) [003] d..2 82319.681909: 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
147845     rcu_preempt-7     (    7) [003] d..2 82319.681920: sched_waking: comm=rcuop/6 pid=61 prio=120 target_cpu=001
147846     rcu_preempt-7     (    7) [003] d..3 82319.681964: sched_wakeup: comm=rcuop/6 pid=61 prio=120 target_cpu=003
147847     rcu_preempt-7     (    7) [003] d..2 82319.681985: 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
147848         rcuop/6-61    (   61) [003] d..2 82319.682002: sched_switch: prev_comm=rcuop/6 prev_pid=61 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147849  kworker/u16:13-1147  ( 1147) [003] d..2 82319.682122: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147850          <idle>-0     (-----) [003] d..1 82319.682141: cpu_idle: state=0 cpu_id=3
147851          <idle>-0     (-----) [003] d.h2 82319.684401: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147852          <idle>-0     (-----) [003] dnh3 82319.684421: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147853          <idle>-0     (-----) [003] .n.1 82319.684433: cpu_idle: state=4294967295 cpu_id=3
147854          <idle>-0     (-----) [003] d..2 82319.684446: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147855        DispSync-8879  ( 8858) [003] d..1 82319.684474: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
147856        DispSync-8879  ( 8858) [003] d..2 82319.684494: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
147857        DispSync-8879  ( 8858) [003] d..2 82319.684537: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147858          <idle>-0     (-----) [003] d..1 82319.684554: cpu_idle: state=0 cpu_id=3
147859          <idle>-0     (-----) [002] .n.1 82319.684669: cpu_idle: state=4294967295 cpu_id=2
147860          <idle>-0     (-----) [002] d..2 82319.684703: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147861  appEventThread-8881  ( 8858) [002] d..3 82319.684775: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147862  appEventThread-8881  ( 8858) [002] d..2 82319.684875: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147863          <idle>-0     (-----) [002] d..1 82319.684905: cpu_idle: state=0 cpu_id=2
147864          <idle>-0     (-----) [004] dnh2 82319.685587: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147865          <idle>-0     (-----) [004] .n.1 82319.685597: cpu_idle: state=4294967295 cpu_id=4
147866          <idle>-0     (-----) [004] d..2 82319.685612: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147867 s.nexuslauncher-10023 (10023) [004] .... 82319.685791: binder_transaction: transaction=1573239 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147868 s.nexuslauncher-10023 (10023) [004] .... 82319.685797: binder_transaction_alloc_buf: transaction=1573239 data_size=80 offsets_size=0
147869 s.nexuslauncher-10023 (10023) [004] d..4 82319.685801: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147870 s.nexuslauncher-10023 (10023) [004] d..2 82319.685901: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147871          <idle>-0     (-----) [004] d..2 82319.685907: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
147872          <idle>-0     (-----) [004] dn.3 82319.685916: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
147873          <idle>-0     (-----) [004] d..2 82319.685923: 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
147874     ksoftirqd/4-42    (   42) [004] d.s2 82319.685933: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
147875     ksoftirqd/4-42    (   42) [004] d..2 82319.685972: 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
147876          <idle>-0     (-----) [002] dnh2 82319.685981: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
147877          <idle>-0     (-----) [004] d..1 82319.685985: cpu_idle: state=2 cpu_id=4
147878          <idle>-0     (-----) [002] .n.1 82319.685992: cpu_idle: state=4294967295 cpu_id=2
147879          <idle>-0     (-----) [000] dnh2 82319.686007: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147880          <idle>-0     (-----) [002] d..2 82319.686008: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147881          <idle>-0     (-----) [000] .n.1 82319.686021: cpu_idle: state=4294967295 cpu_id=0
147882          <idle>-0     (-----) [000] d..2 82319.686043: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147883   Binder:8858_1-8871  ( 8858) [000] .... 82319.686056: binder_transaction_received: transaction=1573239
147884   Binder:8858_1-8871  ( 8858) [000] d..1 82319.686107: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
147885   Binder:8858_1-8871  ( 8858) [000] d..2 82319.686140: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
147886  kworker/u16:13-1147  ( 1147) [002] d..2 82319.686151: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=appEventThread next_pid=8881 next_prio=97
147887  appEventThread-8881  ( 8858) [002] d..2 82319.686213: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147888   Binder:8858_1-8871  ( 8858) [000] d..2 82319.686219: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147889          <idle>-0     (-----) [002] d..1 82319.686232: cpu_idle: state=0 cpu_id=2
147890          <idle>-0     (-----) [000] d..1 82319.686245: cpu_idle: state=0 cpu_id=0
147891          <idle>-0     (-----) [003] d.s2 82319.688478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
147892          <idle>-0     (-----) [003] dns3 82319.688504: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
147893          <idle>-0     (-----) [003] .n.1 82319.688518: cpu_idle: state=4294967295 cpu_id=3
147894          <idle>-0     (-----) [003] d..2 82319.688535: 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
147895     rcu_preempt-7     (    7) [003] d..2 82319.688549: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
147896     rcu_preempt-7     (    7) [003] d..3 82319.688570: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
147897     rcu_preempt-7     (    7) [003] d..2 82319.688586: 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
147898         rcuop/2-29    (   29) [003] d..2 82319.688591: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
147899         rcuop/2-29    (   29) [003] d..3 82319.688607: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
147900         rcuop/2-29    (   29) [003] d..2 82319.688618: 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
147901         rcuop/3-37    (   37) [003] d..2 82319.688671: 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
147902          <idle>-0     (-----) [003] d..1 82319.688691: cpu_idle: state=2 cpu_id=3
147903          <idle>-0     (-----) [002] ...1 82319.690630: cpu_idle: state=4294967295 cpu_id=2
147904          <idle>-0     (-----) [002] d..1 82319.690638: cpu_idle: state=0 cpu_id=2
147905          <idle>-0     (-----) [002] ...1 82319.690719: cpu_idle: state=4294967295 cpu_id=2
147906          <idle>-0     (-----) [002] d..1 82319.690727: cpu_idle: state=2 cpu_id=2
147907          <idle>-0     (-----) [002] ...1 82319.691066: cpu_idle: state=4294967295 cpu_id=2
147908          <idle>-0     (-----) [002] d..1 82319.691083: cpu_idle: state=0 cpu_id=2
147909          <idle>-0     (-----) [001] d.s3 82319.691331: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147910          <idle>-0     (-----) [001] dns4 82319.691351: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
147911          <idle>-0     (-----) [001] .n.1 82319.691373: cpu_idle: state=4294967295 cpu_id=1
147912          <idle>-0     (-----) [001] d..2 82319.691396: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
147913     kworker/1:1-25249 (25249) [001] d..2 82319.691470: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
147914     kworker/1:1-25249 (25249) [001] d..3 82319.691510: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
147915     kworker/1:1-25249 (25249) [001] d..2 82319.691530: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147916     kworker/1:1-25249 (25249) [001] d..3 82319.691547: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
147917     kworker/1:1-25249 (25249) [001] d..2 82319.691582: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
147918 wlan_logging_th-647   (  647) [001] d..2 82319.691614: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
147919 wlan_logging_th-647   (  647) [001] d..3 82319.691638: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
147920 wlan_logging_th-647   (  647) [001] d..2 82319.691662: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
147921   cds_mc_thread-16565 (16565) [001] d.s2 82319.691905: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
147922   cds_mc_thread-16565 (16565) [001] d.s3 82319.691959: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147923   cds_mc_thread-16565 (16565) [001] d..3 82319.692148: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147924   cds_mc_thread-16565 (16565) [001] d..4 82319.692182: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
147925   cds_mc_thread-16565 (16565) [001] d..2 82319.692232: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
147926         rcuop/0-10    (   10) [001] d..2 82319.692244: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
147927          <idle>-0     (-----) [000] ...1 82319.692258: cpu_idle: state=4294967295 cpu_id=0
147928          <idle>-0     (-----) [000] d..1 82319.692265: cpu_idle: state=2 cpu_id=0
147929         rcuop/0-10    (   10) [001] d..3 82319.692294: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147930         rcuop/0-10    (   10) [001] d..2 82319.692309: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147931  kworker/u16:13-1147  ( 1147) [001] d..2 82319.692410: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
147932          <idle>-0     (-----) [000] .n.1 82319.692517: cpu_idle: state=4294967295 cpu_id=0
147933 [email protected] (  798) [001] d..2 82319.692521: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
147934          <idle>-0     (-----) [001] d..1 82319.692550: cpu_idle: state=0 cpu_id=1
147935          <idle>-0     (-----) [000] d..2 82319.692553: 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
147936     rcu_preempt-7     (    7) [000] d..2 82319.692606: 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
147937          <idle>-0     (-----) [000] d..1 82319.692624: cpu_idle: state=0 cpu_id=0
147938          <idle>-0     (-----) [002] ...1 82319.693017: cpu_idle: state=4294967295 cpu_id=2
147939          <idle>-0     (-----) [002] d..1 82319.693026: cpu_idle: state=0 cpu_id=2
147940          <idle>-0     (-----) [002] ...1 82319.693723: cpu_idle: state=4294967295 cpu_id=2
147941          <idle>-0     (-----) [002] d..1 82319.693733: cpu_idle: state=0 cpu_id=2
147942          <idle>-0     (-----) [002] ...1 82319.693842: cpu_idle: state=4294967295 cpu_id=2
147943          <idle>-0     (-----) [002] d..1 82319.693849: cpu_idle: state=0 cpu_id=2
147944          <idle>-0     (-----) [000] d.s2 82319.698481: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147945          <idle>-0     (-----) [000] dns3 82319.698507: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147946          <idle>-0     (-----) [000] .n.1 82319.698534: cpu_idle: state=4294967295 cpu_id=0
147947          <idle>-0     (-----) [000] d..2 82319.698550: 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
147948          <idle>-0     (-----) [001] ...1 82319.698567: cpu_idle: state=4294967295 cpu_id=1
147949          <idle>-0     (-----) [001] d..1 82319.698574: cpu_idle: state=2 cpu_id=1
147950     rcu_preempt-7     (    7) [000] d..2 82319.698593: 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
147951          <idle>-0     (-----) [000] d..1 82319.698610: cpu_idle: state=2 cpu_id=0
147952          <idle>-0     (-----) [003] d.h2 82319.701060: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
147953          <idle>-0     (-----) [003] dnh3 82319.701088: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
147954          <idle>-0     (-----) [003] .n.1 82319.701104: cpu_idle: state=4294967295 cpu_id=3
147955          <idle>-0     (-----) [003] d..2 82319.701122: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
147956        DispSync-8879  ( 8858) [003] d..1 82319.701149: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
147957        DispSync-8879  ( 8858) [003] d..2 82319.701169: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
147958          <idle>-0     (-----) [002] .n.1 82319.701176: cpu_idle: state=4294967295 cpu_id=2
147959          <idle>-0     (-----) [002] d..2 82319.701197: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147960        DispSync-8879  ( 8858) [003] d..2 82319.701219: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147961          <idle>-0     (-----) [003] d..1 82319.701241: cpu_idle: state=2 cpu_id=3
147962  appEventThread-8881  ( 8858) [002] d..3 82319.701266: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147963  appEventThread-8881  ( 8858) [002] d..2 82319.701353: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147964          <idle>-0     (-----) [002] d..1 82319.701376: cpu_idle: state=0 cpu_id=2
147965          <idle>-0     (-----) [004] dnh2 82319.702068: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
147966          <idle>-0     (-----) [004] .n.1 82319.702078: cpu_idle: state=4294967295 cpu_id=4
147967          <idle>-0     (-----) [004] d..2 82319.702093: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
147968 s.nexuslauncher-10023 (10023) [004] .... 82319.702266: binder_transaction: transaction=1573240 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
147969 s.nexuslauncher-10023 (10023) [004] .... 82319.702273: binder_transaction_alloc_buf: transaction=1573240 data_size=80 offsets_size=0
147970 s.nexuslauncher-10023 (10023) [004] d..4 82319.702277: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147971 s.nexuslauncher-10023 (10023) [004] d..2 82319.702382: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
147972          <idle>-0     (-----) [004] d..2 82319.702388: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
147973          <idle>-0     (-----) [004] dn.3 82319.702396: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
147974          <idle>-0     (-----) [004] d..2 82319.702403: 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
147975     ksoftirqd/4-42    (   42) [004] d.s2 82319.702410: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
147976     ksoftirqd/4-42    (   42) [004] d..2 82319.702447: 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
147977          <idle>-0     (-----) [002] dnh2 82319.702461: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
147978          <idle>-0     (-----) [004] d..1 82319.702461: cpu_idle: state=2 cpu_id=4
147979          <idle>-0     (-----) [002] .n.1 82319.702472: cpu_idle: state=4294967295 cpu_id=2
147980          <idle>-0     (-----) [000] dnh2 82319.702487: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
147981          <idle>-0     (-----) [002] d..2 82319.702490: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
147982          <idle>-0     (-----) [000] .n.1 82319.702501: cpu_idle: state=4294967295 cpu_id=0
147983          <idle>-0     (-----) [000] d..2 82319.702524: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
147984   Binder:8858_1-8871  ( 8858) [000] .... 82319.702550: binder_transaction_received: transaction=1573240
147985   Binder:8858_1-8871  ( 8858) [000] d..1 82319.702625: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
147986   Binder:8858_1-8871  ( 8858) [000] d..2 82319.702662: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
147987  kworker/u16:13-1147  ( 1147) [002] d..2 82319.702676: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
147988          <idle>-0     (-----) [002] d..1 82319.702694: cpu_idle: state=2 cpu_id=2
147989   Binder:8858_1-8871  ( 8858) [000] d..2 82319.702731: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
147990          <idle>-0     (-----) [000] d..1 82319.702750: cpu_idle: state=0 cpu_id=0
147991          <idle>-0     (-----) [003] .n.1 82319.702831: cpu_idle: state=4294967295 cpu_id=3
147992          <idle>-0     (-----) [003] d..2 82319.702859: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
147993  appEventThread-8881  ( 8858) [003] d..2 82319.702948: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
147994          <idle>-0     (-----) [003] d..1 82319.702972: cpu_idle: state=0 cpu_id=3
147995          <idle>-0     (-----) [000] d.s2 82319.705184: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147996          <idle>-0     (-----) [000] dns3 82319.705209: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
147997          <idle>-0     (-----) [000] .n.1 82319.705221: cpu_idle: state=4294967295 cpu_id=0
147998          <idle>-0     (-----) [000] d..2 82319.705235: 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
147999     rcu_preempt-7     (    7) [000] d..2 82319.705245: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
148000     rcu_preempt-7     (    7) [000] d..3 82319.705290: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
148001     rcu_preempt-7     (    7) [000] d..2 82319.705305: 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
148002         rcuop/0-10    (   10) [000] d..2 82319.705312: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
148003         rcuop/0-10    (   10) [000] d..3 82319.705356: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
148004         rcuop/0-10    (   10) [000] d..2 82319.705369: 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
148005         rcuop/1-21    (   21) [000] d..2 82319.705412: 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
148006          <idle>-0     (-----) [000] d..1 82319.705436: cpu_idle: state=0 cpu_id=0
148007          <idle>-0     (-----) [003] d..2 82319.708990: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148008          <idle>-0     (-----) [003] dn.3 82319.709012: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148009          <idle>-0     (-----) [003] .n.1 82319.709017: cpu_idle: state=4294967295 cpu_id=3
148010          <idle>-0     (-----) [003] d..2 82319.709037: 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
148011     ksoftirqd/3-34    (   34) [003] d..2 82319.709085: 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
148012          <idle>-0     (-----) [003] d..1 82319.709100: cpu_idle: state=2 cpu_id=3
148013          <idle>-0     (-----) [000] ...1 82319.711447: cpu_idle: state=4294967295 cpu_id=0
148014          <idle>-0     (-----) [000] d..1 82319.711453: cpu_idle: state=2 cpu_id=0
148015          <idle>-0     (-----) [002] d..2 82319.713403: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148016          <idle>-0     (-----) [001] d.s3 82319.713420: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148017          <idle>-0     (-----) [002] dn.3 82319.713430: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148018          <idle>-0     (-----) [002] .n.1 82319.713439: cpu_idle: state=4294967295 cpu_id=2
148019          <idle>-0     (-----) [001] dns4 82319.713451: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148020          <idle>-0     (-----) [002] d..2 82319.713463: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
148021          <idle>-0     (-----) [001] .n.1 82319.713474: cpu_idle: state=4294967295 cpu_id=1
148022     ksoftirqd/2-26    (   26) [002] d.s2 82319.713479: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148023          <idle>-0     (-----) [001] d..2 82319.713503: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148024     ksoftirqd/2-26    (   26) [002] d.s3 82319.713508: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148025     ksoftirqd/2-26    (   26) [002] d..2 82319.713529: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148026     kworker/1:1-25249 (25249) [001] d..2 82319.713544: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148027     kworker/1:1-25249 (25249) [001] d..3 82319.713565: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148028     kworker/1:1-25249 (25249) [001] d..2 82319.713613: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148029  kworker/u16:13-1147  ( 1147) [002] d..2 82319.713844: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148030 [email protected] (  798) [001] d..2 82319.713915: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148031          <idle>-0     (-----) [002] d..1 82319.713937: cpu_idle: state=2 cpu_id=2
148032          <idle>-0     (-----) [001] d..1 82319.713955: cpu_idle: state=0 cpu_id=1
148033          <idle>-0     (-----) [002] d..2 82319.717322: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148034          <idle>-0     (-----) [002] dn.3 82319.717341: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148035          <idle>-0     (-----) [002] .n.1 82319.717348: cpu_idle: state=4294967295 cpu_id=2
148036          <idle>-0     (-----) [002] d..2 82319.717373: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
148037     ksoftirqd/2-26    (   26) [002] d..2 82319.717423: 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
148038          <idle>-0     (-----) [002] d..1 82319.717446: cpu_idle: state=0 cpu_id=2
148039          <idle>-0     (-----) [003] d.h2 82319.717540: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148040          <idle>-0     (-----) [003] dnh3 82319.717572: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148041          <idle>-0     (-----) [003] .n.1 82319.717589: cpu_idle: state=4294967295 cpu_id=3
148042          <idle>-0     (-----) [003] d..2 82319.717611: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148043        DispSync-8879  ( 8858) [003] d..1 82319.717639: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
148044        DispSync-8879  ( 8858) [003] d..2 82319.717670: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148045          <idle>-0     (-----) [002] .n.1 82319.717679: cpu_idle: state=4294967295 cpu_id=2
148046          <idle>-0     (-----) [002] d..2 82319.717692: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148047        DispSync-8879  ( 8858) [003] d..2 82319.717724: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148048          <idle>-0     (-----) [003] d..1 82319.717749: cpu_idle: state=0 cpu_id=3
148049  appEventThread-8881  ( 8858) [002] d..3 82319.717759: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148050  appEventThread-8881  ( 8858) [002] d..2 82319.717841: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148051          <idle>-0     (-----) [002] d..1 82319.717863: cpu_idle: state=0 cpu_id=2
148052          <idle>-0     (-----) [004] dnh2 82319.718558: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148053          <idle>-0     (-----) [004] .n.1 82319.718567: cpu_idle: state=4294967295 cpu_id=4
148054          <idle>-0     (-----) [004] d..2 82319.718581: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148055 s.nexuslauncher-10023 (10023) [004] .... 82319.718751: binder_transaction: transaction=1573241 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148056 s.nexuslauncher-10023 (10023) [004] .... 82319.718756: binder_transaction_alloc_buf: transaction=1573241 data_size=80 offsets_size=0
148057 s.nexuslauncher-10023 (10023) [004] d..4 82319.718761: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148058 s.nexuslauncher-10023 (10023) [004] d..2 82319.718861: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148059          <idle>-0     (-----) [004] d..2 82319.718866: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
148060          <idle>-0     (-----) [004] dn.3 82319.718874: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
148061          <idle>-0     (-----) [004] d..2 82319.718881: 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
148062     ksoftirqd/4-42    (   42) [004] d..2 82319.718896: 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
148063          <idle>-0     (-----) [004] d..1 82319.718908: cpu_idle: state=2 cpu_id=4
148064          <idle>-0     (-----) [000] dnh2 82319.718971: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148065          <idle>-0     (-----) [000] .n.1 82319.718984: cpu_idle: state=4294967295 cpu_id=0
148066          <idle>-0     (-----) [000] d..2 82319.719006: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148067   Binder:8858_1-8871  ( 8858) [000] .... 82319.719018: binder_transaction_received: transaction=1573241
148068   Binder:8858_1-8871  ( 8858) [000] d..1 82319.719068: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148069   Binder:8858_1-8871  ( 8858) [000] d..2 82319.719096: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148070          <idle>-0     (-----) [002] .n.1 82319.719105: cpu_idle: state=4294967295 cpu_id=2
148071          <idle>-0     (-----) [002] d..2 82319.719118: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148072   Binder:8858_1-8871  ( 8858) [000] d..2 82319.719160: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148073  appEventThread-8881  ( 8858) [002] d..2 82319.719174: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148074          <idle>-0     (-----) [000] d..1 82319.719186: cpu_idle: state=0 cpu_id=0
148075          <idle>-0     (-----) [002] d..1 82319.719191: cpu_idle: state=0 cpu_id=2
148076          <idle>-0     (-----) [001] ...1 82319.719969: cpu_idle: state=4294967295 cpu_id=1
148077          <idle>-0     (-----) [001] d..1 82319.719976: cpu_idle: state=2 cpu_id=1
148078          <idle>-0     (-----) [003] d..2 82319.723761: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148079          <idle>-0     (-----) [003] dn.3 82319.723778: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148080          <idle>-0     (-----) [003] .n.1 82319.723783: cpu_idle: state=4294967295 cpu_id=3
148081          <idle>-0     (-----) [003] d..2 82319.723802: 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
148082     ksoftirqd/3-34    (   34) [003] d.s2 82319.723814: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148083     ksoftirqd/3-34    (   34) [003] d.s3 82319.723865: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148084     ksoftirqd/3-34    (   34) [003] d..2 82319.723886: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148085  kworker/u16:13-1147  ( 1147) [003] d..2 82319.724007: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148086          <idle>-0     (-----) [003] d..1 82319.724027: cpu_idle: state=2 cpu_id=3
148087          <idle>-0     (-----) [000] d..2 82319.725196: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148088          <idle>-0     (-----) [002] ...1 82319.725208: cpu_idle: state=4294967295 cpu_id=2
148089          <idle>-0     (-----) [000] dn.3 82319.725213: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148090          <idle>-0     (-----) [002] d..1 82319.725214: cpu_idle: state=2 cpu_id=2
148091          <idle>-0     (-----) [000] .n.1 82319.725219: cpu_idle: state=4294967295 cpu_id=0
148092          <idle>-0     (-----) [000] d..2 82319.725236: 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
148093     ksoftirqd/0-3     (    3) [000] d..2 82319.725277: 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
148094          <idle>-0     (-----) [000] d..1 82319.725290: cpu_idle: state=2 cpu_id=0
148095          <idle>-0     (-----) [002] d..2 82319.733221: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148096          <idle>-0     (-----) [002] dn.3 82319.733243: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148097          <idle>-0     (-----) [002] .n.1 82319.733251: cpu_idle: state=4294967295 cpu_id=2
148098          <idle>-0     (-----) [002] d..2 82319.733275: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
148099          <idle>-0     (-----) [001] d.s3 82319.733282: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148100     ksoftirqd/2-26    (   26) [002] d.s2 82319.733289: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148101          <idle>-0     (-----) [001] dns4 82319.733311: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148102          <idle>-0     (-----) [001] .n.1 82319.733339: cpu_idle: state=4294967295 cpu_id=1
148103     ksoftirqd/2-26    (   26) [002] d.s3 82319.733344: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148104     ksoftirqd/2-26    (   26) [002] d..2 82319.733365: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148105          <idle>-0     (-----) [001] d..2 82319.733369: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148106     kworker/1:1-25249 (25249) [001] d..2 82319.733434: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148107     kworker/1:1-25249 (25249) [001] d..3 82319.733453: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148108     kworker/1:1-25249 (25249) [001] d..2 82319.733509: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148109  kworker/u16:13-1147  ( 1147) [002] d..2 82319.733550: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148110          <idle>-0     (-----) [002] d..1 82319.733575: cpu_idle: state=0 cpu_id=2
148111 [email protected] (  798) [001] d..2 82319.733699: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148112          <idle>-0     (-----) [001] d..1 82319.733734: cpu_idle: state=0 cpu_id=1
148113          <idle>-0     (-----) [003] d.h2 82319.734007: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148114          <idle>-0     (-----) [003] dnh3 82319.734037: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148115          <idle>-0     (-----) [003] .n.1 82319.734052: cpu_idle: state=4294967295 cpu_id=3
148116          <idle>-0     (-----) [003] d..2 82319.734070: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148117        DispSync-8879  ( 8858) [003] d..1 82319.734099: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148118        DispSync-8879  ( 8858) [003] d..2 82319.734119: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148119          <idle>-0     (-----) [002] .n.1 82319.734129: cpu_idle: state=4294967295 cpu_id=2
148120          <idle>-0     (-----) [002] d..2 82319.734145: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148121        DispSync-8879  ( 8858) [003] d..2 82319.734170: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148122          <idle>-0     (-----) [003] d..1 82319.734194: cpu_idle: state=0 cpu_id=3
148123  appEventThread-8881  ( 8858) [002] d..3 82319.734212: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148124  appEventThread-8881  ( 8858) [002] d..2 82319.734289: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148125          <idle>-0     (-----) [002] d..1 82319.734311: cpu_idle: state=0 cpu_id=2
148126          <idle>-0     (-----) [001] d.s3 82319.734417: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148127          <idle>-0     (-----) [001] dns4 82319.734433: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148128          <idle>-0     (-----) [001] .n.1 82319.734467: cpu_idle: state=4294967295 cpu_id=1
148129          <idle>-0     (-----) [001] d..2 82319.734484: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148130     kworker/1:1-25249 (25249) [001] d..2 82319.734523: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148131     kworker/1:1-25249 (25249) [001] d..3 82319.734540: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148132     kworker/1:1-25249 (25249) [001] d..2 82319.734572: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148133 [email protected] (  798) [001] d..2 82319.734743: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148134          <idle>-0     (-----) [001] d..1 82319.734769: cpu_idle: state=0 cpu_id=1
148135          <idle>-0     (-----) [004] dnh2 82319.734999: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148136          <idle>-0     (-----) [004] .n.1 82319.735008: cpu_idle: state=4294967295 cpu_id=4
148137          <idle>-0     (-----) [004] d..2 82319.735021: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148138          <idle>-0     (-----) [001] d.s3 82319.735096: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148139          <idle>-0     (-----) [001] dns4 82319.735112: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148140          <idle>-0     (-----) [001] .n.1 82319.735131: cpu_idle: state=4294967295 cpu_id=1
148141 s.nexuslauncher-10023 (10023) [004] d.s2 82319.735141: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148142          <idle>-0     (-----) [001] d..2 82319.735152: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148143          <idle>-0     (-----) [002] dnh2 82319.735174: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148144          <idle>-0     (-----) [002] .n.1 82319.735183: cpu_idle: state=4294967295 cpu_id=2
148145          <idle>-0     (-----) [002] d..2 82319.735200: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148146     kworker/1:1-25249 (25249) [001] d.s3 82319.735204: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
148147     kworker/1:1-25249 (25249) [001] d.s4 82319.735237: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
148148 s.nexuslauncher-10023 (10023) [004] .... 82319.735255: binder_transaction: transaction=1573242 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148149 s.nexuslauncher-10023 (10023) [004] .... 82319.735260: binder_transaction_alloc_buf: transaction=1573242 data_size=80 offsets_size=0
148150 s.nexuslauncher-10023 (10023) [004] d..4 82319.735264: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148151     kworker/1:1-25249 (25249) [001] d..2 82319.735275: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148152     kworker/1:1-25249 (25249) [001] d..3 82319.735328: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=003
148153          <idle>-0     (-----) [003] .n.1 82319.735336: cpu_idle: state=4294967295 cpu_id=3
148154          <idle>-0     (-----) [003] d..2 82319.735356: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=16588 next_prio=120
148155 s.nexuslauncher-10023 (10023) [004] d..2 82319.735360: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148156     kworker/1:1-25249 (25249) [001] d..2 82319.735366: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
148157          <idle>-0     (-----) [004] d..1 82319.735375: cpu_idle: state=2 cpu_id=4
148158  kworker/u16:13-1147  ( 1147) [002] d..2 82319.735463: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
148159          <idle>-0     (-----) [000] dnh2 82319.735464: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148160          <idle>-0     (-----) [000] .n.1 82319.735478: cpu_idle: state=4294967295 cpu_id=0
148161   cds_mc_thread-16565 (16565) [001] d.s2 82319.735480: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148162          <idle>-0     (-----) [002] d..1 82319.735485: cpu_idle: state=0 cpu_id=2
148163   cds_mc_thread-16565 (16565) [001] d.s3 82319.735496: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
148164          <idle>-0     (-----) [000] d..2 82319.735500: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148165   cds_mc_thread-16565 (16565) [001] d.s3 82319.735509: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148166   Binder:8858_1-8871  ( 8858) [000] .... 82319.735512: binder_transaction_received: transaction=1573242
148167          <idle>-0     (-----) [002] .n.1 82319.735517: cpu_idle: state=4294967295 cpu_id=2
148168          <idle>-0     (-----) [002] d..2 82319.735534: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148169   cds_mc_thread-16565 (16565) [001] d..2 82319.735549: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148170 [email protected] (  798) [003] d..2 82319.735557: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148171   Binder:8858_1-8871  ( 8858) [000] d..1 82319.735559: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148172          <idle>-0     (-----) [001] d..1 82319.735572: cpu_idle: state=2 cpu_id=1
148173  kworker/u16:13-1147  ( 1147) [002] d..2 82319.735574: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148174          <idle>-0     (-----) [003] d..1 82319.735583: cpu_idle: state=0 cpu_id=3
148175   Binder:8858_1-8871  ( 8858) [000] d..2 82319.735588: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148176          <idle>-0     (-----) [002] d..2 82319.735599: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148177   Binder:8858_1-8871  ( 8858) [000] d..2 82319.735654: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148178  appEventThread-8881  ( 8858) [002] d..2 82319.735659: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148179          <idle>-0     (-----) [002] d..1 82319.735676: cpu_idle: state=0 cpu_id=2
148180          <idle>-0     (-----) [000] d..1 82319.735679: cpu_idle: state=0 cpu_id=0
148181          <idle>-0     (-----) [001] d.s3 82319.735897: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148182          <idle>-0     (-----) [001] dns4 82319.735916: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148183          <idle>-0     (-----) [001] .n.1 82319.735936: cpu_idle: state=4294967295 cpu_id=1
148184          <idle>-0     (-----) [001] d..2 82319.735959: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148185     kworker/1:1-25249 (25249) [001] d..2 82319.736003: sched_waking: [email protected] pid=16588 prio=120 target_cpu=003
148186     kworker/1:1-25249 (25249) [001] d..3 82319.736032: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148187     kworker/1:1-25249 (25249) [001] d..2 82319.736070: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148188 [email protected] (  798) [001] d..2 82319.736261: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148189          <idle>-0     (-----) [001] d..1 82319.736287: cpu_idle: state=0 cpu_id=1
148190          <idle>-0     (-----) [002] ...1 82319.737358: cpu_idle: state=4294967295 cpu_id=2
148191          <idle>-0     (-----) [002] d..1 82319.737364: cpu_idle: state=2 cpu_id=2
148192          <idle>-0     (-----) [003] d..2 82319.741598: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148193          <idle>-0     (-----) [003] dn.3 82319.741615: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148194          <idle>-0     (-----) [003] .n.1 82319.741620: cpu_idle: state=4294967295 cpu_id=3
148195          <idle>-0     (-----) [003] d..2 82319.741639: 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
148196     ksoftirqd/3-34    (   34) [003] d..2 82319.741682: 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
148197          <idle>-0     (-----) [000] ...1 82319.741696: cpu_idle: state=4294967295 cpu_id=0
148198          <idle>-0     (-----) [003] d..1 82319.741696: cpu_idle: state=2 cpu_id=3
148199          <idle>-0     (-----) [000] d..1 82319.741703: cpu_idle: state=2 cpu_id=0
148200          <idle>-0     (-----) [001] d..2 82319.742299: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
148201          <idle>-0     (-----) [001] dn.3 82319.742316: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
148202          <idle>-0     (-----) [001] .n.1 82319.742322: cpu_idle: state=4294967295 cpu_id=1
148203          <idle>-0     (-----) [001] d..2 82319.742340: 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
148204     ksoftirqd/1-18    (   18) [001] d.s2 82319.742353: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148205     ksoftirqd/1-18    (   18) [001] d.s3 82319.742404: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
148206     ksoftirqd/1-18    (   18) [001] d..2 82319.742425: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148207  kworker/u16:13-1147  ( 1147) [001] d..2 82319.742545: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148208          <idle>-0     (-----) [001] d..1 82319.742564: cpu_idle: state=2 cpu_id=1
148209          <idle>-0     (-----) [003] d.h2 82319.750552: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148210          <idle>-0     (-----) [003] dnh3 82319.750577: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148211          <idle>-0     (-----) [003] .n.1 82319.750593: cpu_idle: state=4294967295 cpu_id=3
148212          <idle>-0     (-----) [003] d..2 82319.750612: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148213        DispSync-8879  ( 8858) [003] d..1 82319.750642: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148214        DispSync-8879  ( 8858) [003] d..2 82319.750662: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148215        DispSync-8879  ( 8858) [003] d..2 82319.750720: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148216          <idle>-0     (-----) [003] d..2 82319.750727: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148217          <idle>-0     (-----) [003] dn.3 82319.750740: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148218          <idle>-0     (-----) [003] d..2 82319.750752: 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
148219     ksoftirqd/3-34    (   34) [003] d.s2 82319.750764: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
148220     ksoftirqd/3-34    (   34) [003] d.s3 82319.750780: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
148221     ksoftirqd/3-34    (   34) [003] d..2 82319.750796: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
148222          <idle>-0     (-----) [002] .n.1 82319.750839: cpu_idle: state=4294967295 cpu_id=2
148223     kworker/3:1-25210 (25210) [003] d..2 82319.750844: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148224          <idle>-0     (-----) [003] d..1 82319.750870: cpu_idle: state=0 cpu_id=3
148225          <idle>-0     (-----) [002] d..2 82319.750872: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148226  appEventThread-8881  ( 8858) [002] d..3 82319.750939: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148227  appEventThread-8881  ( 8858) [002] d..2 82319.751038: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148228          <idle>-0     (-----) [002] d..1 82319.751066: cpu_idle: state=2 cpu_id=2
148229          <idle>-0     (-----) [004] dnh2 82319.751739: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148230          <idle>-0     (-----) [004] .n.1 82319.751747: cpu_idle: state=4294967295 cpu_id=4
148231          <idle>-0     (-----) [004] d..2 82319.751760: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148232 s.nexuslauncher-10023 (10023) [004] d.s2 82319.751847: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
148233          <idle>-0     (-----) [003] dnh2 82319.751896: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148234          <idle>-0     (-----) [003] .n.1 82319.751907: cpu_idle: state=4294967295 cpu_id=3
148235          <idle>-0     (-----) [003] d..2 82319.751924: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148236 s.nexuslauncher-10023 (10023) [004] .... 82319.752075: binder_transaction: transaction=1573243 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148237 s.nexuslauncher-10023 (10023) [004] .... 82319.752081: binder_transaction_alloc_buf: transaction=1573243 data_size=80 offsets_size=0
148238 s.nexuslauncher-10023 (10023) [004] d..4 82319.752085: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148239  kworker/u16:13-1147  ( 1147) [003] d..2 82319.752102: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148240          <idle>-0     (-----) [003] d..1 82319.752123: cpu_idle: state=2 cpu_id=3
148241 s.nexuslauncher-10023 (10023) [004] d..2 82319.752178: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148242          <idle>-0     (-----) [004] d..1 82319.752195: cpu_idle: state=2 cpu_id=4
148243          <idle>-0     (-----) [000] dnh2 82319.752291: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148244          <idle>-0     (-----) [000] .n.1 82319.752305: cpu_idle: state=4294967295 cpu_id=0
148245          <idle>-0     (-----) [000] d..2 82319.752327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148246   Binder:8858_1-8871  ( 8858) [000] .... 82319.752339: binder_transaction_received: transaction=1573243
148247   Binder:8858_1-8871  ( 8858) [000] d..1 82319.752385: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148248   Binder:8858_1-8871  ( 8858) [000] d..2 82319.752411: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148249   Binder:8858_1-8871  ( 8858) [000] d..2 82319.752473: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148250          <idle>-0     (-----) [000] d..1 82319.752497: cpu_idle: state=0 cpu_id=0
148251          <idle>-0     (-----) [002] .n.1 82319.752584: cpu_idle: state=4294967295 cpu_id=2
148252          <idle>-0     (-----) [002] d..2 82319.752618: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148253  appEventThread-8881  ( 8858) [002] d..2 82319.752718: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148254          <idle>-0     (-----) [002] d..1 82319.752746: cpu_idle: state=0 cpu_id=2
148255          <idle>-0     (-----) [000] d..2 82319.758512: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148256          <idle>-0     (-----) [000] dn.3 82319.758528: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148257          <idle>-0     (-----) [000] .n.1 82319.758534: cpu_idle: state=4294967295 cpu_id=0
148258          <idle>-0     (-----) [000] d..2 82319.758553: 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
148259     ksoftirqd/0-3     (    3) [000] d..2 82319.758597: 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
148260          <idle>-0     (-----) [000] d..1 82319.758611: cpu_idle: state=2 cpu_id=0
148261          <idle>-0     (-----) [002] ...1 82319.758757: cpu_idle: state=4294967295 cpu_id=2
148262          <idle>-0     (-----) [002] d..1 82319.758763: cpu_idle: state=2 cpu_id=2
148263          <idle>-0     (-----) [000] d..2 82319.766453: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148264          <idle>-0     (-----) [000] dn.3 82319.766472: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148265          <idle>-0     (-----) [000] .n.1 82319.766479: cpu_idle: state=4294967295 cpu_id=0
148266          <idle>-0     (-----) [000] d..2 82319.766501: 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
148267     ksoftirqd/0-3     (    3) [000] d.s2 82319.766513: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148268     ksoftirqd/0-3     (    3) [000] d.s3 82319.766566: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148269     ksoftirqd/0-3     (    3) [000] d..2 82319.766586: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148270  kworker/u16:13-1147  ( 1147) [000] d..2 82319.766711: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148271          <idle>-0     (-----) [000] d..1 82319.766732: cpu_idle: state=2 cpu_id=0
148272          <idle>-0     (-----) [003] d.h2 82319.766939: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148273          <idle>-0     (-----) [003] dnh3 82319.766969: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148274          <idle>-0     (-----) [003] .n.1 82319.766985: cpu_idle: state=4294967295 cpu_id=3
148275          <idle>-0     (-----) [003] d..2 82319.767001: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148276        DispSync-8879  ( 8858) [003] d..1 82319.767029: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148277        DispSync-8879  ( 8858) [003] d..2 82319.767046: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148278        DispSync-8879  ( 8858) [003] d..2 82319.767095: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148279          <idle>-0     (-----) [003] d..1 82319.767115: cpu_idle: state=2 cpu_id=3
148280          <idle>-0     (-----) [002] .n.1 82319.767226: cpu_idle: state=4294967295 cpu_id=2
148281          <idle>-0     (-----) [002] d..2 82319.767253: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148282  appEventThread-8881  ( 8858) [002] d..3 82319.767314: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148283  appEventThread-8881  ( 8858) [002] d..2 82319.767390: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148284          <idle>-0     (-----) [002] d..1 82319.767416: cpu_idle: state=0 cpu_id=2
148285          <idle>-0     (-----) [004] dnh2 82319.768111: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148286          <idle>-0     (-----) [004] .n.1 82319.768122: cpu_idle: state=4294967295 cpu_id=4
148287          <idle>-0     (-----) [004] d..2 82319.768139: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148288 s.nexuslauncher-10023 (10023) [004] .... 82319.768307: binder_transaction: transaction=1573244 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148289 s.nexuslauncher-10023 (10023) [004] .... 82319.768312: binder_transaction_alloc_buf: transaction=1573244 data_size=80 offsets_size=0
148290 s.nexuslauncher-10023 (10023) [004] d..4 82319.768316: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148291 s.nexuslauncher-10023 (10023) [004] d..2 82319.768412: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148292          <idle>-0     (-----) [004] d..1 82319.768429: cpu_idle: state=2 cpu_id=4
148293          <idle>-0     (-----) [000] dnh2 82319.768519: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148294          <idle>-0     (-----) [000] .n.1 82319.768532: cpu_idle: state=4294967295 cpu_id=0
148295          <idle>-0     (-----) [000] d..2 82319.768555: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148296   Binder:8858_1-8871  ( 8858) [000] .... 82319.768568: binder_transaction_received: transaction=1573244
148297   Binder:8858_1-8871  ( 8858) [000] d..1 82319.768618: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148298   Binder:8858_1-8871  ( 8858) [000] d..2 82319.768645: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148299          <idle>-0     (-----) [002] .n.1 82319.768653: cpu_idle: state=4294967295 cpu_id=2
148300          <idle>-0     (-----) [002] d..2 82319.768669: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148301   Binder:8858_1-8871  ( 8858) [000] d..2 82319.768716: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148302          <idle>-0     (-----) [000] d..2 82319.768722: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148303  appEventThread-8881  ( 8858) [002] d..2 82319.768728: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148304          <idle>-0     (-----) [000] dn.3 82319.768734: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148305          <idle>-0     (-----) [002] d..1 82319.768745: cpu_idle: state=0 cpu_id=2
148306          <idle>-0     (-----) [000] d..2 82319.768746: 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
148307     ksoftirqd/0-3     (    3) [000] d..2 82319.768774: 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
148308          <idle>-0     (-----) [000] d..1 82319.768798: cpu_idle: state=0 cpu_id=0
148309          <idle>-0     (-----) [002] d..2 82319.774765: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148310          <idle>-0     (-----) [002] dn.3 82319.774786: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148311          <idle>-0     (-----) [000] ...1 82319.774853: cpu_idle: state=4294967295 cpu_id=0
148312          <idle>-0     (-----) [000] d..1 82319.774860: cpu_idle: state=2 cpu_id=0
148313          <idle>-0     (-----) [002] .n.1 82319.774875: cpu_idle: state=4294967295 cpu_id=2
148314          <idle>-0     (-----) [002] d..2 82319.774895: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
148315     ksoftirqd/2-26    (   26) [002] d..2 82319.774931: 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
148316          <idle>-0     (-----) [002] d..1 82319.774947: cpu_idle: state=2 cpu_id=2
148317          <idle>-0     (-----) [003] d.h2 82319.783483: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148318          <idle>-0     (-----) [003] dnh3 82319.783511: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148319          <idle>-0     (-----) [003] .n.1 82319.783526: cpu_idle: state=4294967295 cpu_id=3
148320          <idle>-0     (-----) [003] d..2 82319.783546: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148321        DispSync-8879  ( 8858) [003] d..1 82319.783574: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148322        DispSync-8879  ( 8858) [003] d..2 82319.783592: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148323        DispSync-8879  ( 8858) [003] d..2 82319.783649: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148324          <idle>-0     (-----) [003] d..2 82319.783655: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148325          <idle>-0     (-----) [003] dn.3 82319.783670: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148326          <idle>-0     (-----) [003] d..2 82319.783682: 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
148327     ksoftirqd/3-34    (   34) [003] d.s2 82319.783695: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148328     ksoftirqd/3-34    (   34) [003] d.s3 82319.783744: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148329     ksoftirqd/3-34    (   34) [003] d..2 82319.783765: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148330          <idle>-0     (-----) [002] .n.1 82319.783771: cpu_idle: state=4294967295 cpu_id=2
148331          <idle>-0     (-----) [002] d..2 82319.783827: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148332  appEventThread-8881  ( 8858) [002] d..3 82319.783916: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148333  kworker/u16:13-1147  ( 1147) [003] d..2 82319.783959: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148334          <idle>-0     (-----) [003] d..1 82319.783983: cpu_idle: state=2 cpu_id=3
148335  appEventThread-8881  ( 8858) [002] d..2 82319.784010: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148336          <idle>-0     (-----) [002] d..1 82319.784039: cpu_idle: state=0 cpu_id=2
148337          <idle>-0     (-----) [004] dnh2 82319.784719: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148338          <idle>-0     (-----) [004] .n.1 82319.784728: cpu_idle: state=4294967295 cpu_id=4
148339          <idle>-0     (-----) [004] d..2 82319.784741: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148340 s.nexuslauncher-10023 (10023) [004] .... 82319.784909: binder_transaction: transaction=1573245 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148341 s.nexuslauncher-10023 (10023) [004] .... 82319.784914: binder_transaction_alloc_buf: transaction=1573245 data_size=80 offsets_size=0
148342 s.nexuslauncher-10023 (10023) [004] d..4 82319.784919: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148343 s.nexuslauncher-10023 (10023) [004] d..2 82319.785014: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148344          <idle>-0     (-----) [004] d..1 82319.785029: cpu_idle: state=2 cpu_id=4
148345          <idle>-0     (-----) [000] dnh2 82319.785129: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148346          <idle>-0     (-----) [000] .n.1 82319.785142: cpu_idle: state=4294967295 cpu_id=0
148347          <idle>-0     (-----) [000] d..2 82319.785165: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148348   Binder:8858_1-8871  ( 8858) [000] .... 82319.785178: binder_transaction_received: transaction=1573245
148349   Binder:8858_1-8871  ( 8858) [000] d..1 82319.785228: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148350   Binder:8858_1-8871  ( 8858) [000] d..2 82319.785253: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148351          <idle>-0     (-----) [002] .n.1 82319.785262: cpu_idle: state=4294967295 cpu_id=2
148352          <idle>-0     (-----) [002] d..2 82319.785280: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148353   Binder:8858_1-8871  ( 8858) [000] d..2 82319.785325: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148354          <idle>-0     (-----) [000] d..2 82319.785332: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148355  appEventThread-8881  ( 8858) [002] d..2 82319.785338: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148356          <idle>-0     (-----) [000] dn.3 82319.785348: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148357          <idle>-0     (-----) [002] d..1 82319.785356: cpu_idle: state=0 cpu_id=2
148358          <idle>-0     (-----) [000] d..2 82319.785359: 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
148359     ksoftirqd/0-3     (    3) [000] d.s2 82319.785372: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148360     ksoftirqd/0-3     (    3) [000] d.s3 82319.785390: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148361     ksoftirqd/0-3     (    3) [000] d..2 82319.785418: 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
148362          <idle>-0     (-----) [000] d..1 82319.785444: cpu_idle: state=0 cpu_id=0
148363          <idle>-0     (-----) [003] .n.1 82319.785560: cpu_idle: state=4294967295 cpu_id=3
148364          <idle>-0     (-----) [003] d..2 82319.785593: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148365  kworker/u16:13-1147  ( 1147) [003] d..2 82319.785729: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148366          <idle>-0     (-----) [003] d..1 82319.785752: cpu_idle: state=0 cpu_id=3
148367          <idle>-0     (-----) [002] d..2 82319.791371: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148368          <idle>-0     (-----) [002] dn.3 82319.791389: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148369          <idle>-0     (-----) [002] .n.1 82319.791394: cpu_idle: state=4294967295 cpu_id=2
148370          <idle>-0     (-----) [002] d..2 82319.791412: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
148371     ksoftirqd/2-26    (   26) [002] d..2 82319.791458: 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
148372          <idle>-0     (-----) [000] ...1 82319.791459: cpu_idle: state=4294967295 cpu_id=0
148373          <idle>-0     (-----) [000] d..1 82319.791466: cpu_idle: state=2 cpu_id=0
148374          <idle>-0     (-----) [002] d..1 82319.791472: cpu_idle: state=2 cpu_id=2
148375          <idle>-0     (-----) [003] ...1 82319.791763: cpu_idle: state=4294967295 cpu_id=3
148376          <idle>-0     (-----) [003] d..1 82319.791769: cpu_idle: state=2 cpu_id=3
148377          <idle>-0     (-----) [003] d.h2 82319.799951: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148378          <idle>-0     (-----) [003] dnh3 82319.799984: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148379          <idle>-0     (-----) [003] .n.1 82319.800062: cpu_idle: state=4294967295 cpu_id=3
148380          <idle>-0     (-----) [003] d..2 82319.800082: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148381        DispSync-8879  ( 8858) [003] d..1 82319.800110: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148382        DispSync-8879  ( 8858) [003] d..2 82319.800129: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148383        DispSync-8879  ( 8858) [003] d..2 82319.800186: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148384          <idle>-0     (-----) [003] d..2 82319.800193: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148385          <idle>-0     (-----) [003] dn.3 82319.800207: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148386          <idle>-0     (-----) [003] d..2 82319.800219: 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
148387     ksoftirqd/3-34    (   34) [003] d.s2 82319.800231: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148388     ksoftirqd/3-34    (   34) [003] d.s3 82319.800254: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148389     ksoftirqd/3-34    (   34) [003] d..2 82319.800273: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148390          <idle>-0     (-----) [002] .n.1 82319.800299: cpu_idle: state=4294967295 cpu_id=2
148391          <idle>-0     (-----) [002] d..2 82319.800332: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148392  appEventThread-8881  ( 8858) [002] d..3 82319.800433: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148393  kworker/u16:13-1147  ( 1147) [003] d..2 82319.800459: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148394          <idle>-0     (-----) [003] d..1 82319.800485: cpu_idle: state=0 cpu_id=3
148395  appEventThread-8881  ( 8858) [002] d..2 82319.800530: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148396          <idle>-0     (-----) [002] d..1 82319.800560: cpu_idle: state=2 cpu_id=2
148397          <idle>-0     (-----) [004] dnh2 82319.801235: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148398          <idle>-0     (-----) [004] .n.1 82319.801243: cpu_idle: state=4294967295 cpu_id=4
148399          <idle>-0     (-----) [004] d..2 82319.801257: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148400 s.nexuslauncher-10023 (10023) [004] .... 82319.801422: binder_transaction: transaction=1573246 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148401 s.nexuslauncher-10023 (10023) [004] .... 82319.801427: binder_transaction_alloc_buf: transaction=1573246 data_size=80 offsets_size=0
148402 s.nexuslauncher-10023 (10023) [004] d..4 82319.801431: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148403 s.nexuslauncher-10023 (10023) [004] d..2 82319.801524: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148404          <idle>-0     (-----) [004] d..1 82319.801540: cpu_idle: state=2 cpu_id=4
148405          <idle>-0     (-----) [000] dnh2 82319.801642: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148406          <idle>-0     (-----) [000] .n.1 82319.801655: cpu_idle: state=4294967295 cpu_id=0
148407          <idle>-0     (-----) [000] d..2 82319.801677: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148408   Binder:8858_1-8871  ( 8858) [000] .... 82319.801689: binder_transaction_received: transaction=1573246
148409   Binder:8858_1-8871  ( 8858) [000] d..1 82319.801735: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148410   Binder:8858_1-8871  ( 8858) [000] d..2 82319.801759: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148411   Binder:8858_1-8871  ( 8858) [000] d..2 82319.801883: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148412          <idle>-0     (-----) [000] d..1 82319.801908: cpu_idle: state=0 cpu_id=0
148413          <idle>-0     (-----) [002] .n.1 82319.801925: cpu_idle: state=4294967295 cpu_id=2
148414          <idle>-0     (-----) [002] d..2 82319.801953: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148415  appEventThread-8881  ( 8858) [002] d..2 82319.802044: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148416          <idle>-0     (-----) [002] d..1 82319.802067: cpu_idle: state=0 cpu_id=2
148417          <idle>-0     (-----) [003] d..2 82319.806502: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148418          <idle>-0     (-----) [003] dn.3 82319.806516: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148419          <idle>-0     (-----) [003] .n.1 82319.806521: cpu_idle: state=4294967295 cpu_id=3
148420          <idle>-0     (-----) [003] d..2 82319.806540: 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
148421     ksoftirqd/3-34    (   34) [003] d..2 82319.806581: 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
148422          <idle>-0     (-----) [003] d..1 82319.806595: cpu_idle: state=2 cpu_id=3
148423          <idle>-0     (-----) [000] ...1 82319.807918: cpu_idle: state=4294967295 cpu_id=0
148424          <idle>-0     (-----) [000] d..1 82319.807924: cpu_idle: state=2 cpu_id=0
148425          <idle>-0     (-----) [002] ...1 82319.808079: cpu_idle: state=4294967295 cpu_id=2
148426          <idle>-0     (-----) [002] d..1 82319.808085: cpu_idle: state=2 cpu_id=2
148427          <idle>-0     (-----) [006] d.h2 82319.810902: sched_waking: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=006
148428          <idle>-0     (-----) [006] dnh3 82319.810922: sched_wakeup: comm=TaskSnapshotPer pid=9077 prio=130 target_cpu=006
148429          <idle>-0     (-----) [006] .n.1 82319.810938: cpu_idle: state=4294967295 cpu_id=6
148430          <idle>-0     (-----) [006] d..2 82319.810951: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSnapshotPer next_pid=9077 next_prio=130
148431 TaskSnapshotPer-9077  ( 8943) [006] d..2 82319.811031: sched_switch: prev_comm=TaskSnapshotPer prev_pid=9077 prev_prio=130 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
148432          <idle>-0     (-----) [006] d..2 82319.811036: sched_waking: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
148433          <idle>-0     (-----) [006] dn.3 82319.811046: sched_wakeup: comm=ksoftirqd/6 pid=58 prio=120 target_cpu=006
148434          <idle>-0     (-----) [006] d..2 82319.811053: 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
148435     ksoftirqd/6-58    (   58) [006] d.s2 82319.811064: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148436     ksoftirqd/6-58    (   58) [006] d..2 82319.811097: 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
148437          <idle>-0     (-----) [006] d..1 82319.811109: cpu_idle: state=2 cpu_id=6
148438          <idle>-0     (-----) [003] dnh2 82319.811462: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148439          <idle>-0     (-----) [003] .n.1 82319.811475: cpu_idle: state=4294967295 cpu_id=3
148440          <idle>-0     (-----) [003] d..2 82319.811496: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148441  kworker/u16:13-1147  ( 1147) [003] d..2 82319.811613: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148442          <idle>-0     (-----) [003] d..1 82319.811632: cpu_idle: state=0 cpu_id=3
148443          <idle>-0     (-----) [003] d.h2 82319.816147: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148444          <idle>-0     (-----) [003] dnh3 82319.816173: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148445          <idle>-0     (-----) [003] .n.1 82319.816281: cpu_idle: state=4294967295 cpu_id=3
148446          <idle>-0     (-----) [003] d..2 82319.816298: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148447        DispSync-8879  ( 8858) [003] d..1 82319.816327: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148448        DispSync-8879  ( 8858) [003] d..2 82319.816347: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148449        DispSync-8879  ( 8858) [003] d..2 82319.816400: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148450          <idle>-0     (-----) [003] d..2 82319.816407: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148451          <idle>-0     (-----) [003] dn.3 82319.816421: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148452          <idle>-0     (-----) [003] d..2 82319.816433: 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
148453     ksoftirqd/3-34    (   34) [003] d..2 82319.816460: 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
148454          <idle>-0     (-----) [003] d..1 82319.816481: cpu_idle: state=0 cpu_id=3
148455          <idle>-0     (-----) [002] .n.1 82319.816524: cpu_idle: state=4294967295 cpu_id=2
148456          <idle>-0     (-----) [002] d..2 82319.816560: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148457  appEventThread-8881  ( 8858) [002] d..3 82319.816627: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148458  appEventThread-8881  ( 8858) [002] d..2 82319.816726: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148459          <idle>-0     (-----) [002] d..1 82319.816757: cpu_idle: state=0 cpu_id=2
148460          <idle>-0     (-----) [004] dnh2 82319.817434: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148461          <idle>-0     (-----) [004] .n.1 82319.817443: cpu_idle: state=4294967295 cpu_id=4
148462          <idle>-0     (-----) [004] d..2 82319.817457: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148463 s.nexuslauncher-10023 (10023) [004] .... 82319.817626: binder_transaction: transaction=1573247 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148464 s.nexuslauncher-10023 (10023) [004] .... 82319.817631: binder_transaction_alloc_buf: transaction=1573247 data_size=80 offsets_size=0
148465 s.nexuslauncher-10023 (10023) [004] d..4 82319.817635: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148466 s.nexuslauncher-10023 (10023) [004] d..2 82319.817732: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148467          <idle>-0     (-----) [004] d..1 82319.817747: cpu_idle: state=2 cpu_id=4
148468          <idle>-0     (-----) [000] dnh2 82319.817844: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148469          <idle>-0     (-----) [000] .n.1 82319.817857: cpu_idle: state=4294967295 cpu_id=0
148470          <idle>-0     (-----) [000] d..2 82319.817879: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148471   Binder:8858_1-8871  ( 8858) [000] .... 82319.817892: binder_transaction_received: transaction=1573247
148472   Binder:8858_1-8871  ( 8858) [000] d..1 82319.817941: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148473   Binder:8858_1-8871  ( 8858) [000] d..2 82319.817969: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148474          <idle>-0     (-----) [002] .n.1 82319.817978: cpu_idle: state=4294967295 cpu_id=2
148475          <idle>-0     (-----) [002] d..2 82319.817992: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148476   Binder:8858_1-8871  ( 8858) [000] d..2 82319.818033: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148477  appEventThread-8881  ( 8858) [002] d..2 82319.818047: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148478          <idle>-0     (-----) [000] d..1 82319.818058: cpu_idle: state=0 cpu_id=0
148479          <idle>-0     (-----) [002] d..1 82319.818065: cpu_idle: state=0 cpu_id=2
148480          <idle>-0     (-----) [003] d..2 82319.822494: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148481          <idle>-0     (-----) [003] dn.3 82319.822506: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148482          <idle>-0     (-----) [003] .n.1 82319.822511: cpu_idle: state=4294967295 cpu_id=3
148483          <idle>-0     (-----) [003] d..2 82319.822527: 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
148484     ksoftirqd/3-34    (   34) [003] d.s2 82319.822537: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148485     ksoftirqd/3-34    (   34) [003] d.s3 82319.822562: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148486     ksoftirqd/3-34    (   34) [003] d..2 82319.822581: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148487  kworker/u16:13-1147  ( 1147) [003] d..2 82319.822694: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148488          <idle>-0     (-----) [003] d..1 82319.822713: cpu_idle: state=2 cpu_id=3
148489          <idle>-0     (-----) [000] ...1 82319.824073: cpu_idle: state=4294967295 cpu_id=0
148490          <idle>-0     (-----) [000] d..1 82319.824079: cpu_idle: state=2 cpu_id=0
148491          <idle>-0     (-----) [002] ...1 82319.824081: cpu_idle: state=4294967295 cpu_id=2
148492          <idle>-0     (-----) [002] d..1 82319.824089: cpu_idle: state=2 cpu_id=2
148493          <idle>-0     (-----) [003] d.h2 82319.832887: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148494          <idle>-0     (-----) [003] dnh3 82319.832920: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148495          <idle>-0     (-----) [003] .n.1 82319.833001: cpu_idle: state=4294967295 cpu_id=3
148496          <idle>-0     (-----) [003] d..2 82319.833025: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148497        DispSync-8879  ( 8858) [003] d..1 82319.833052: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148498        DispSync-8879  ( 8858) [003] d..2 82319.833072: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148499        DispSync-8879  ( 8858) [003] d..2 82319.833129: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148500          <idle>-0     (-----) [003] d..2 82319.833135: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148501          <idle>-0     (-----) [003] dn.3 82319.833150: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148502          <idle>-0     (-----) [003] d..2 82319.833162: 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
148503     ksoftirqd/3-34    (   34) [003] d.s2 82319.833174: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148504     ksoftirqd/3-34    (   34) [003] d.s3 82319.833196: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148505     ksoftirqd/3-34    (   34) [003] d..2 82319.833215: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148506          <idle>-0     (-----) [002] .n.1 82319.833246: cpu_idle: state=4294967295 cpu_id=2
148507          <idle>-0     (-----) [002] d..2 82319.833278: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148508  kworker/u16:13-1147  ( 1147) [003] d..2 82319.833361: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148509  appEventThread-8881  ( 8858) [002] d..3 82319.833366: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148510          <idle>-0     (-----) [003] d..1 82319.833387: cpu_idle: state=0 cpu_id=3
148511  appEventThread-8881  ( 8858) [002] d..2 82319.833461: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148512          <idle>-0     (-----) [002] d..1 82319.833494: cpu_idle: state=0 cpu_id=2
148513          <idle>-0     (-----) [004] dnh2 82319.834172: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148514          <idle>-0     (-----) [004] .n.1 82319.834181: cpu_idle: state=4294967295 cpu_id=4
148515          <idle>-0     (-----) [004] d..2 82319.834195: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148516 s.nexuslauncher-10023 (10023) [004] .... 82319.834364: binder_transaction: transaction=1573248 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148517 s.nexuslauncher-10023 (10023) [004] .... 82319.834368: binder_transaction_alloc_buf: transaction=1573248 data_size=80 offsets_size=0
148518 s.nexuslauncher-10023 (10023) [004] d..4 82319.834373: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148519 s.nexuslauncher-10023 (10023) [004] d..2 82319.834467: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148520          <idle>-0     (-----) [004] d..1 82319.834483: cpu_idle: state=2 cpu_id=4
148521          <idle>-0     (-----) [000] dnh2 82319.834581: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148522          <idle>-0     (-----) [000] .n.1 82319.834594: cpu_idle: state=4294967295 cpu_id=0
148523          <idle>-0     (-----) [000] d..2 82319.834615: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148524   Binder:8858_1-8871  ( 8858) [000] .... 82319.834627: binder_transaction_received: transaction=1573248
148525   Binder:8858_1-8871  ( 8858) [000] d..1 82319.834678: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148526   Binder:8858_1-8871  ( 8858) [000] d..2 82319.834705: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148527          <idle>-0     (-----) [002] .n.1 82319.834713: cpu_idle: state=4294967295 cpu_id=2
148528          <idle>-0     (-----) [002] d..2 82319.834727: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148529   Binder:8858_1-8871  ( 8858) [000] d..2 82319.834770: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148530  appEventThread-8881  ( 8858) [002] d..2 82319.834784: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148531          <idle>-0     (-----) [000] d..1 82319.834795: cpu_idle: state=0 cpu_id=0
148532          <idle>-0     (-----) [002] d..1 82319.834801: cpu_idle: state=0 cpu_id=2
148533          <idle>-0     (-----) [000] d..2 82319.840809: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148534          <idle>-0     (-----) [002] ...1 82319.840817: cpu_idle: state=4294967295 cpu_id=2
148535          <idle>-0     (-----) [002] d..1 82319.840823: cpu_idle: state=2 cpu_id=2
148536          <idle>-0     (-----) [000] dn.3 82319.840825: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148537          <idle>-0     (-----) [000] .n.1 82319.840832: cpu_idle: state=4294967295 cpu_id=0
148538          <idle>-0     (-----) [000] d..2 82319.840849: 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
148539     ksoftirqd/0-3     (    3) [000] d.s2 82319.840864: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148540     ksoftirqd/0-3     (    3) [000] d.s3 82319.840916: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148541     ksoftirqd/0-3     (    3) [000] d..2 82319.840934: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148542  kworker/u16:13-1147  ( 1147) [000] d..2 82319.841068: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148543          <idle>-0     (-----) [000] d..1 82319.841086: cpu_idle: state=2 cpu_id=0
148544          <idle>-0     (-----) [003] d.h2 82319.842835: sched_waking: comm=CCodecWatchdog pid=10161 prio=120 target_cpu=003
148545          <idle>-0     (-----) [003] dnh3 82319.842867: sched_wakeup: comm=CCodecWatchdog pid=10161 prio=120 target_cpu=003
148546          <idle>-0     (-----) [003] .n.1 82319.842882: cpu_idle: state=4294967295 cpu_id=3
148547          <idle>-0     (-----) [003] d..2 82319.842900: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=CCodecWatchdog next_pid=10161 next_prio=120
148548  CCodecWatchdog-10161 ( 9748) [003] d..2 82319.843053: sched_switch: prev_comm=CCodecWatchdog prev_pid=10161 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148549          <idle>-0     (-----) [003] d..2 82319.843060: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148550          <idle>-0     (-----) [003] dn.3 82319.843071: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148551          <idle>-0     (-----) [003] d..2 82319.843084: 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
148552     ksoftirqd/3-34    (   34) [003] d.s2 82319.843094: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148553     ksoftirqd/3-34    (   34) [003] d.s3 82319.843140: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148554     ksoftirqd/3-34    (   34) [003] d..2 82319.843159: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148555  kworker/u16:13-1147  ( 1147) [003] d..2 82319.843263: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148556          <idle>-0     (-----) [003] d..1 82319.843284: cpu_idle: state=0 cpu_id=3
148557          <idle>-0     (-----) [002] d..2 82319.845475: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148558          <idle>-0     (-----) [002] dn.3 82319.845502: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148559          <idle>-0     (-----) [002] .n.1 82319.845510: cpu_idle: state=4294967295 cpu_id=2
148560          <idle>-0     (-----) [002] d..2 82319.845538: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
148561          <idle>-0     (-----) [001] d.s3 82319.845577: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148562     ksoftirqd/2-26    (   26) [002] d..2 82319.845599: 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
148563          <idle>-0     (-----) [001] dns4 82319.845601: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148564          <idle>-0     (-----) [001] .n.1 82319.845624: cpu_idle: state=4294967295 cpu_id=1
148565          <idle>-0     (-----) [001] d..2 82319.845648: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148566          <idle>-0     (-----) [002] d..1 82319.845692: cpu_idle: state=2 cpu_id=2
148567     kworker/1:1-25249 (25249) [001] d..2 82319.845694: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148568     kworker/1:1-25249 (25249) [001] d..3 82319.845715: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148569     kworker/1:1-25249 (25249) [001] d..2 82319.845751: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148570 [email protected] (  798) [001] d..2 82319.845932: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148571          <idle>-0     (-----) [001] d..1 82319.845959: cpu_idle: state=0 cpu_id=1
148572          <idle>-0     (-----) [001] d.s3 82319.846194: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148573          <idle>-0     (-----) [001] dns4 82319.846208: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148574          <idle>-0     (-----) [001] .n.1 82319.846233: cpu_idle: state=4294967295 cpu_id=1
148575          <idle>-0     (-----) [001] d..2 82319.846250: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148576     kworker/1:1-25249 (25249) [001] d..2 82319.846287: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148577     kworker/1:1-25249 (25249) [001] d..3 82319.846302: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148578     kworker/1:1-25249 (25249) [001] d..2 82319.846339: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148579 [email protected] (  798) [001] d..2 82319.846508: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148580          <idle>-0     (-----) [001] d..1 82319.846538: cpu_idle: state=0 cpu_id=1
148581          <idle>-0     (-----) [001] d.s3 82319.847520: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148582          <idle>-0     (-----) [001] dns4 82319.847535: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148583          <idle>-0     (-----) [001] .n.1 82319.847554: cpu_idle: state=4294967295 cpu_id=1
148584          <idle>-0     (-----) [001] d..2 82319.847571: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148585     kworker/1:1-25249 (25249) [001] d..2 82319.847605: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148586     kworker/1:1-25249 (25249) [001] d..3 82319.847621: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148587     kworker/1:1-25249 (25249) [001] d..2 82319.847653: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148588 [email protected] (  798) [001] d..2 82319.847813: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148589          <idle>-0     (-----) [001] d.s4 82319.847873: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
148590          <idle>-0     (-----) [001] dns5 82319.847901: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
148591          <idle>-0     (-----) [001] dns4 82319.847927: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148592          <idle>-0     (-----) [001] dns5 82319.847938: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148593          <idle>-0     (-----) [001] d..2 82319.847962: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
148594   cds_mc_thread-16565 (16565) [001] d..2 82319.848051: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148595     kworker/1:1-25249 (25249) [001] d..2 82319.848084: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148596     kworker/1:1-25249 (25249) [001] d..3 82319.848099: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148597     kworker/1:1-25249 (25249) [001] d..2 82319.848126: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148598 [email protected] (  798) [001] d..2 82319.848392: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148599          <idle>-0     (-----) [001] d..1 82319.848420: cpu_idle: state=0 cpu_id=1
148600          <idle>-0     (-----) [003] d.h2 82319.849083: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148601          <idle>-0     (-----) [003] dnh3 82319.849103: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148602          <idle>-0     (-----) [003] .n.1 82319.849115: cpu_idle: state=4294967295 cpu_id=3
148603          <idle>-0     (-----) [003] d..2 82319.849132: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148604        DispSync-8879  ( 8858) [003] d..1 82319.849155: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148605        DispSync-8879  ( 8858) [003] d..2 82319.849173: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148606        DispSync-8879  ( 8858) [003] d..2 82319.849226: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148607          <idle>-0     (-----) [003] d..2 82319.849232: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148608          <idle>-0     (-----) [003] dn.3 82319.849244: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148609          <idle>-0     (-----) [003] d..2 82319.849255: 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
148610     ksoftirqd/3-34    (   34) [003] d..2 82319.849283: 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
148611          <idle>-0     (-----) [003] d..1 82319.849302: cpu_idle: state=2 cpu_id=3
148612          <idle>-0     (-----) [002] .n.1 82319.849345: cpu_idle: state=4294967295 cpu_id=2
148613          <idle>-0     (-----) [002] d..2 82319.849371: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148614  appEventThread-8881  ( 8858) [002] d..3 82319.849435: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148615  appEventThread-8881  ( 8858) [002] d..2 82319.849511: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148616          <idle>-0     (-----) [002] d..1 82319.849536: cpu_idle: state=0 cpu_id=2
148617          <idle>-0     (-----) [001] ...1 82319.849846: cpu_idle: state=4294967295 cpu_id=1
148618          <idle>-0     (-----) [001] d..1 82319.849853: cpu_idle: state=2 cpu_id=1
148619          <idle>-0     (-----) [004] dnh2 82319.850231: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148620          <idle>-0     (-----) [004] .n.1 82319.850240: cpu_idle: state=4294967295 cpu_id=4
148621          <idle>-0     (-----) [004] d..2 82319.850255: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148622 s.nexuslauncher-10023 (10023) [004] .... 82319.850423: binder_transaction: transaction=1573249 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148623 s.nexuslauncher-10023 (10023) [004] .... 82319.850429: binder_transaction_alloc_buf: transaction=1573249 data_size=80 offsets_size=0
148624 s.nexuslauncher-10023 (10023) [004] d..4 82319.850433: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148625 s.nexuslauncher-10023 (10023) [004] d..2 82319.850525: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148626          <idle>-0     (-----) [004] d..1 82319.850540: cpu_idle: state=2 cpu_id=4
148627          <idle>-0     (-----) [000] dnh2 82319.850640: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148628          <idle>-0     (-----) [000] .n.1 82319.850653: cpu_idle: state=4294967295 cpu_id=0
148629          <idle>-0     (-----) [000] d..2 82319.850675: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148630   Binder:8858_1-8871  ( 8858) [000] .... 82319.850687: binder_transaction_received: transaction=1573249
148631   Binder:8858_1-8871  ( 8858) [000] d..1 82319.850737: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148632   Binder:8858_1-8871  ( 8858) [000] d..2 82319.850764: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148633          <idle>-0     (-----) [002] .n.1 82319.850772: cpu_idle: state=4294967295 cpu_id=2
148634          <idle>-0     (-----) [002] d..2 82319.850786: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148635   Binder:8858_1-8871  ( 8858) [000] d..2 82319.850828: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148636  appEventThread-8881  ( 8858) [002] d..2 82319.850842: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148637          <idle>-0     (-----) [000] d..1 82319.850851: cpu_idle: state=2 cpu_id=0
148638          <idle>-0     (-----) [002] d..1 82319.850862: cpu_idle: state=0 cpu_id=2
148639          <idle>-0     (-----) [002] d..2 82319.856881: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148640          <idle>-0     (-----) [002] dn.3 82319.856899: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148641          <idle>-0     (-----) [002] dns3 82319.856976: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148642          <idle>-0     (-----) [002] dns4 82319.857026: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148643          <idle>-0     (-----) [002] .n.1 82319.857041: cpu_idle: state=4294967295 cpu_id=2
148644          <idle>-0     (-----) [002] d..2 82319.857061: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
148645     ksoftirqd/2-26    (   26) [002] d..2 82319.857076: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148646  kworker/u16:13-1147  ( 1147) [002] d..2 82319.857193: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148647          <idle>-0     (-----) [002] d..1 82319.857212: cpu_idle: state=2 cpu_id=2
148648          <idle>-0     (-----) [003] d.h2 82319.865817: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148649          <idle>-0     (-----) [003] dnh3 82319.865845: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148650          <idle>-0     (-----) [003] .n.1 82319.865861: cpu_idle: state=4294967295 cpu_id=3
148651          <idle>-0     (-----) [003] d..2 82319.865880: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148652        DispSync-8879  ( 8858) [003] d..1 82319.865908: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148653        DispSync-8879  ( 8858) [003] d..2 82319.865927: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148654        DispSync-8879  ( 8858) [003] d..2 82319.865984: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148655          <idle>-0     (-----) [003] d..2 82319.865991: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148656          <idle>-0     (-----) [003] dn.3 82319.866005: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148657          <idle>-0     (-----) [003] d..2 82319.866016: 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
148658     ksoftirqd/3-34    (   34) [003] d.s2 82319.866029: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
148659     ksoftirqd/3-34    (   34) [003] d.s3 82319.866076: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148660     ksoftirqd/3-34    (   34) [003] d..2 82319.866096: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148661          <idle>-0     (-----) [002] .n.1 82319.866104: cpu_idle: state=4294967295 cpu_id=2
148662          <idle>-0     (-----) [002] d..2 82319.866139: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148663  appEventThread-8881  ( 8858) [002] d..3 82319.866241: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148664  kworker/u16:13-1147  ( 1147) [003] d..2 82319.866267: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148665          <idle>-0     (-----) [003] d..1 82319.866292: cpu_idle: state=2 cpu_id=3
148666  appEventThread-8881  ( 8858) [002] d..2 82319.866334: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148667          <idle>-0     (-----) [002] d..1 82319.866364: cpu_idle: state=0 cpu_id=2
148668          <idle>-0     (-----) [004] dnh2 82319.867043: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148669          <idle>-0     (-----) [004] .n.1 82319.867052: cpu_idle: state=4294967295 cpu_id=4
148670          <idle>-0     (-----) [004] d..2 82319.867065: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148671 s.nexuslauncher-10023 (10023) [004] .... 82319.867235: binder_transaction: transaction=1573250 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148672 s.nexuslauncher-10023 (10023) [004] .... 82319.867240: binder_transaction_alloc_buf: transaction=1573250 data_size=80 offsets_size=0
148673 s.nexuslauncher-10023 (10023) [004] d..4 82319.867244: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148674 s.nexuslauncher-10023 (10023) [004] d..2 82319.867338: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148675          <idle>-0     (-----) [004] d..1 82319.867354: cpu_idle: state=2 cpu_id=4
148676          <idle>-0     (-----) [000] dnh2 82319.867452: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148677          <idle>-0     (-----) [000] .n.1 82319.867465: cpu_idle: state=4294967295 cpu_id=0
148678          <idle>-0     (-----) [000] d..2 82319.867487: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148679   Binder:8858_1-8871  ( 8858) [000] .... 82319.867498: binder_transaction_received: transaction=1573250
148680   Binder:8858_1-8871  ( 8858) [000] d..1 82319.867548: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148681   Binder:8858_1-8871  ( 8858) [000] d..2 82319.867574: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148682          <idle>-0     (-----) [002] .n.1 82319.867582: cpu_idle: state=4294967295 cpu_id=2
148683          <idle>-0     (-----) [002] d..2 82319.867596: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148684   Binder:8858_1-8871  ( 8858) [000] d..2 82319.867638: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148685  appEventThread-8881  ( 8858) [002] d..2 82319.867653: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148686          <idle>-0     (-----) [000] d..1 82319.867661: cpu_idle: state=2 cpu_id=0
148687          <idle>-0     (-----) [002] d..1 82319.867671: cpu_idle: state=0 cpu_id=2
148688          <idle>-0     (-----) [002] d..2 82319.873690: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148689          <idle>-0     (-----) [002] dn.3 82319.873707: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
148690          <idle>-0     (-----) [002] dns3 82319.873789: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
148691          <idle>-0     (-----) [002] dns4 82319.873808: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
148692          <idle>-0     (-----) [002] .n.1 82319.873819: cpu_idle: state=4294967295 cpu_id=2
148693          <idle>-0     (-----) [002] d..2 82319.873838: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
148694     kworker/2:1-25259 (25259) [002] d..2 82319.873885: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
148695     ksoftirqd/2-26    (   26) [002] d..2 82319.873919: 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
148696          <idle>-0     (-----) [002] d..1 82319.873934: cpu_idle: state=2 cpu_id=2
148697          <idle>-0     (-----) [003] d.h2 82319.882287: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148698          <idle>-0     (-----) [003] dnh3 82319.882315: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148699          <idle>-0     (-----) [003] .n.1 82319.882330: cpu_idle: state=4294967295 cpu_id=3
148700          <idle>-0     (-----) [003] d..2 82319.882351: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148701        DispSync-8879  ( 8858) [003] d..1 82319.882378: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148702        DispSync-8879  ( 8858) [003] d..2 82319.882396: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148703        DispSync-8879  ( 8858) [003] d..2 82319.882453: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148704          <idle>-0     (-----) [003] d..2 82319.882460: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148705          <idle>-0     (-----) [003] dn.3 82319.882475: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148706          <idle>-0     (-----) [003] d..2 82319.882487: 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
148707     ksoftirqd/3-34    (   34) [003] d.s2 82319.882500: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148708     ksoftirqd/3-34    (   34) [003] d.s3 82319.882523: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148709     ksoftirqd/3-34    (   34) [003] d..2 82319.882542: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148710          <idle>-0     (-----) [002] .n.1 82319.882574: cpu_idle: state=4294967295 cpu_id=2
148711          <idle>-0     (-----) [002] d..2 82319.882605: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148712  kworker/u16:13-1147  ( 1147) [003] d..2 82319.882691: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148713  appEventThread-8881  ( 8858) [002] d..3 82319.882693: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148714          <idle>-0     (-----) [003] d..1 82319.882716: cpu_idle: state=2 cpu_id=3
148715  appEventThread-8881  ( 8858) [002] d..2 82319.882783: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148716          <idle>-0     (-----) [002] d..1 82319.882812: cpu_idle: state=0 cpu_id=2
148717          <idle>-0     (-----) [004] dnh2 82319.883494: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148718          <idle>-0     (-----) [004] .n.1 82319.883504: cpu_idle: state=4294967295 cpu_id=4
148719          <idle>-0     (-----) [004] d..2 82319.883519: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148720 s.nexuslauncher-10023 (10023) [004] .... 82319.883686: binder_transaction: transaction=1573251 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148721 s.nexuslauncher-10023 (10023) [004] .... 82319.883691: binder_transaction_alloc_buf: transaction=1573251 data_size=80 offsets_size=0
148722 s.nexuslauncher-10023 (10023) [004] d..4 82319.883696: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148723 s.nexuslauncher-10023 (10023) [004] d..2 82319.883791: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148724          <idle>-0     (-----) [004] d..1 82319.883807: cpu_idle: state=2 cpu_id=4
148725          <idle>-0     (-----) [000] dnh2 82319.883903: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148726          <idle>-0     (-----) [000] .n.1 82319.883915: cpu_idle: state=4294967295 cpu_id=0
148727          <idle>-0     (-----) [000] d..2 82319.883937: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148728   Binder:8858_1-8871  ( 8858) [000] .... 82319.883949: binder_transaction_received: transaction=1573251
148729   Binder:8858_1-8871  ( 8858) [000] d..1 82319.883999: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148730   Binder:8858_1-8871  ( 8858) [000] d..2 82319.884024: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148731          <idle>-0     (-----) [002] .n.1 82319.884033: cpu_idle: state=4294967295 cpu_id=2
148732          <idle>-0     (-----) [002] d..2 82319.884047: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148733   Binder:8858_1-8871  ( 8858) [000] d..2 82319.884089: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148734  appEventThread-8881  ( 8858) [002] d..2 82319.884103: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148735          <idle>-0     (-----) [000] d..1 82319.884111: cpu_idle: state=2 cpu_id=0
148736          <idle>-0     (-----) [002] d..1 82319.884120: cpu_idle: state=2 cpu_id=2
148737          <idle>-0     (-----) [003] d.h2 82319.901626: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148738          <idle>-0     (-----) [003] dnh3 82319.901710: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148739          <idle>-0     (-----) [000] d..2 82319.901714: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148740          <idle>-0     (-----) [000] dn.3 82319.901762: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148741          <idle>-0     (-----) [003] .n.1 82319.901883: cpu_idle: state=4294967295 cpu_id=3
148742          <idle>-0     (-----) [000] dns3 82319.901922: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
148743          <idle>-0     (-----) [003] d..2 82319.901933: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148744        DispSync-8879  ( 8858) [003] d..1 82319.902011: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148745          <idle>-0     (-----) [000] dns4 82319.902025: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148746        DispSync-8879  ( 8858) [003] d..2 82319.902036: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148747          <idle>-0     (-----) [000] .n.1 82319.902049: cpu_idle: state=4294967295 cpu_id=0
148748          <idle>-0     (-----) [000] d..2 82319.902083: 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
148749     ksoftirqd/0-3     (    3) [000] d..2 82319.902108: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148750        DispSync-8879  ( 8858) [003] d..2 82319.902144: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148751          <idle>-0     (-----) [003] d..1 82319.902180: cpu_idle: state=2 cpu_id=3
148752          <idle>-0     (-----) [002] .n.1 82319.902217: cpu_idle: state=4294967295 cpu_id=2
148753          <idle>-0     (-----) [002] d..2 82319.902248: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148754  appEventThread-8881  ( 8858) [002] d..3 82319.902390: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148755  kworker/u16:13-1147  ( 1147) [000] d..2 82319.902392: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
148756          <idle>-0     (-----) [000] d..1 82319.902417: cpu_idle: state=2 cpu_id=0
148757  appEventThread-8881  ( 8858) [002] d..2 82319.902492: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148758          <idle>-0     (-----) [002] d..1 82319.902519: cpu_idle: state=2 cpu_id=2
148759          <idle>-0     (-----) [001] d.s3 82319.902591: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148760          <idle>-0     (-----) [001] d.s4 82319.902618: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
148761          <idle>-0     (-----) [001] d.s4 82319.902631: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148762          <idle>-0     (-----) [001] ...1 82319.902655: cpu_idle: state=4294967295 cpu_id=1
148763          <idle>-0     (-----) [001] d..1 82319.902669: cpu_idle: state=2 cpu_id=1
148764          <idle>-0     (-----) [000] .n.1 82319.902802: cpu_idle: state=4294967295 cpu_id=0
148765          <idle>-0     (-----) [000] d..2 82319.902830: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148766  kworker/u16:13-1147  ( 1147) [000] d..2 82319.903085: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148767          <idle>-0     (-----) [000] d..1 82319.903105: cpu_idle: state=2 cpu_id=0
148768          <idle>-0     (-----) [004] dnh2 82319.903210: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148769          <idle>-0     (-----) [004] .n.1 82319.903221: cpu_idle: state=4294967295 cpu_id=4
148770          <idle>-0     (-----) [004] d..2 82319.903240: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148771 s.nexuslauncher-10023 (10023) [004] .... 82319.903667: binder_transaction: transaction=1573252 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148772 s.nexuslauncher-10023 (10023) [004] .... 82319.903678: binder_transaction_alloc_buf: transaction=1573252 data_size=80 offsets_size=0
148773 s.nexuslauncher-10023 (10023) [004] d..4 82319.903687: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148774 s.nexuslauncher-10023 (10023) [004] d..2 82319.903821: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148775          <idle>-0     (-----) [004] d..1 82319.903837: cpu_idle: state=2 cpu_id=4
148776          <idle>-0     (-----) [000] dnh2 82319.903978: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148777          <idle>-0     (-----) [000] .n.1 82319.903992: cpu_idle: state=4294967295 cpu_id=0
148778          <idle>-0     (-----) [000] d..2 82319.904013: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148779   Binder:8858_1-8871  ( 8858) [000] .... 82319.904029: binder_transaction_received: transaction=1573252
148780   Binder:8858_1-8871  ( 8858) [000] d..1 82319.904105: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148781   Binder:8858_1-8871  ( 8858) [000] d..2 82319.904129: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148782   Binder:8858_1-8871  ( 8858) [000] d..2 82319.904202: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148783          <idle>-0     (-----) [000] d..1 82319.904224: cpu_idle: state=2 cpu_id=0
148784          <idle>-0     (-----) [002] .n.1 82319.904296: cpu_idle: state=4294967295 cpu_id=2
148785          <idle>-0     (-----) [002] d..2 82319.904324: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148786  appEventThread-8881  ( 8858) [002] d..2 82319.904415: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148787          <idle>-0     (-----) [002] d..1 82319.904434: cpu_idle: state=2 cpu_id=2
148788          <idle>-0     (-----) [003] d.h2 82319.918091: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148789          <idle>-0     (-----) [003] dnh3 82319.918174: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148790          <idle>-0     (-----) [000] d..2 82319.918183: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148791          <idle>-0     (-----) [000] dn.3 82319.918232: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148792          <idle>-0     (-----) [003] .n.1 82319.918364: cpu_idle: state=4294967295 cpu_id=3
148793          <idle>-0     (-----) [000] dns3 82319.918404: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148794          <idle>-0     (-----) [003] d..2 82319.918411: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148795          <idle>-0     (-----) [000] dns4 82319.918447: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148796          <idle>-0     (-----) [000] .n.1 82319.918465: cpu_idle: state=4294967295 cpu_id=0
148797          <idle>-0     (-----) [000] d..2 82319.918500: 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
148798     ksoftirqd/0-3     (    3) [000] d..2 82319.918524: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148799        DispSync-8879  ( 8858) [003] d..1 82319.918599: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148800        DispSync-8879  ( 8858) [003] d..2 82319.918632: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148801        DispSync-8879  ( 8858) [003] d..2 82319.918731: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148802          <idle>-0     (-----) [003] d..1 82319.918794: cpu_idle: state=2 cpu_id=3
148803          <idle>-0     (-----) [002] .n.1 82319.918809: cpu_idle: state=4294967295 cpu_id=2
148804  kworker/u16:13-1147  ( 1147) [000] d..2 82319.918842: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148805          <idle>-0     (-----) [002] d..2 82319.918842: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148806          <idle>-0     (-----) [000] d..1 82319.918866: cpu_idle: state=2 cpu_id=0
148807  appEventThread-8881  ( 8858) [002] d..3 82319.918989: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148808  appEventThread-8881  ( 8858) [002] d..2 82319.919095: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148809          <idle>-0     (-----) [002] d..1 82319.919122: cpu_idle: state=2 cpu_id=2
148810          <idle>-0     (-----) [004] dnh2 82319.919819: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148811          <idle>-0     (-----) [004] .n.1 82319.919829: cpu_idle: state=4294967295 cpu_id=4
148812          <idle>-0     (-----) [004] d..2 82319.919846: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148813 s.nexuslauncher-10023 (10023) [004] .... 82319.920288: binder_transaction: transaction=1573253 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148814 s.nexuslauncher-10023 (10023) [004] .... 82319.920299: binder_transaction_alloc_buf: transaction=1573253 data_size=80 offsets_size=0
148815 s.nexuslauncher-10023 (10023) [004] d..4 82319.920308: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148816 s.nexuslauncher-10023 (10023) [004] d..2 82319.920440: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148817          <idle>-0     (-----) [004] d..1 82319.920457: cpu_idle: state=2 cpu_id=4
148818          <idle>-0     (-----) [000] dnh2 82319.920600: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148819          <idle>-0     (-----) [000] .n.1 82319.920613: cpu_idle: state=4294967295 cpu_id=0
148820          <idle>-0     (-----) [000] d..2 82319.920637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148821   Binder:8858_1-8871  ( 8858) [000] .... 82319.920654: binder_transaction_received: transaction=1573253
148822   Binder:8858_1-8871  ( 8858) [000] d..1 82319.920732: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148823   Binder:8858_1-8871  ( 8858) [000] d..2 82319.920757: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148824   Binder:8858_1-8871  ( 8858) [000] d..2 82319.920834: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148825          <idle>-0     (-----) [000] d..1 82319.920856: cpu_idle: state=2 cpu_id=0
148826          <idle>-0     (-----) [002] .n.1 82319.920928: cpu_idle: state=4294967295 cpu_id=2
148827          <idle>-0     (-----) [002] d..2 82319.920957: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148828  appEventThread-8881  ( 8858) [002] d..2 82319.921053: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148829          <idle>-0     (-----) [002] d..1 82319.921072: cpu_idle: state=2 cpu_id=2
148830          <idle>-0     (-----) [003] d.h2 82319.934540: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148831          <idle>-0     (-----) [003] dnh3 82319.934626: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148832          <idle>-0     (-----) [000] d..2 82319.934632: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148833          <idle>-0     (-----) [000] dn.3 82319.934679: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148834          <idle>-0     (-----) [003] .n.1 82319.934811: cpu_idle: state=4294967295 cpu_id=3
148835          <idle>-0     (-----) [000] dns3 82319.934853: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148836          <idle>-0     (-----) [003] d..2 82319.934857: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148837          <idle>-0     (-----) [000] dns4 82319.934895: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148838          <idle>-0     (-----) [000] .n.1 82319.934914: cpu_idle: state=4294967295 cpu_id=0
148839        DispSync-8879  ( 8858) [003] d..1 82319.934938: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148840          <idle>-0     (-----) [000] d..2 82319.934950: 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
148841        DispSync-8879  ( 8858) [003] d..2 82319.934965: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148842     ksoftirqd/0-3     (    3) [000] d..2 82319.934974: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148843        DispSync-8879  ( 8858) [003] d..2 82319.935064: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148844          <idle>-0     (-----) [003] d..1 82319.935100: cpu_idle: state=2 cpu_id=3
148845          <idle>-0     (-----) [002] .n.1 82319.935141: cpu_idle: state=4294967295 cpu_id=2
148846          <idle>-0     (-----) [002] d..2 82319.935174: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148847  appEventThread-8881  ( 8858) [002] d..3 82319.935318: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148848  appEventThread-8881  ( 8858) [002] d..2 82319.935429: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148849          <idle>-0     (-----) [003] ...1 82319.935443: cpu_idle: state=4294967295 cpu_id=3
148850          <idle>-0     (-----) [002] d..1 82319.935456: cpu_idle: state=2 cpu_id=2
148851          <idle>-0     (-----) [003] d..1 82319.935458: cpu_idle: state=2 cpu_id=3
148852  kworker/u16:13-1147  ( 1147) [000] d..2 82319.935532: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148853          <idle>-0     (-----) [000] d..1 82319.935556: cpu_idle: state=2 cpu_id=0
148854          <idle>-0     (-----) [004] dnh2 82319.936149: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148855          <idle>-0     (-----) [004] .n.1 82319.936160: cpu_idle: state=4294967295 cpu_id=4
148856          <idle>-0     (-----) [004] d..2 82319.936176: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148857 s.nexuslauncher-10023 (10023) [004] .... 82319.936613: binder_transaction: transaction=1573254 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148858 s.nexuslauncher-10023 (10023) [004] .... 82319.936624: binder_transaction_alloc_buf: transaction=1573254 data_size=80 offsets_size=0
148859 s.nexuslauncher-10023 (10023) [004] d..4 82319.936632: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148860 s.nexuslauncher-10023 (10023) [004] d..2 82319.936768: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148861          <idle>-0     (-----) [004] d..1 82319.936784: cpu_idle: state=2 cpu_id=4
148862          <idle>-0     (-----) [000] dnh2 82319.936928: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148863          <idle>-0     (-----) [000] .n.1 82319.936943: cpu_idle: state=4294967295 cpu_id=0
148864          <idle>-0     (-----) [000] d..2 82319.936965: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148865   Binder:8858_1-8871  ( 8858) [000] .... 82319.936981: binder_transaction_received: transaction=1573254
148866   Binder:8858_1-8871  ( 8858) [000] d..1 82319.937060: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148867   Binder:8858_1-8871  ( 8858) [000] d..2 82319.937084: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148868   Binder:8858_1-8871  ( 8858) [000] d..2 82319.937161: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148869          <idle>-0     (-----) [000] d..1 82319.937182: cpu_idle: state=2 cpu_id=0
148870          <idle>-0     (-----) [002] .n.1 82319.937256: cpu_idle: state=4294967295 cpu_id=2
148871          <idle>-0     (-----) [002] d..2 82319.937284: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148872  appEventThread-8881  ( 8858) [002] d..2 82319.937380: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148873          <idle>-0     (-----) [002] d..1 82319.937400: cpu_idle: state=2 cpu_id=2
148874          <idle>-0     (-----) [003] d.h2 82319.950905: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148875          <idle>-0     (-----) [003] dnh3 82319.950972: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148876          <idle>-0     (-----) [000] d..2 82319.950993: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148877          <idle>-0     (-----) [003] .n.1 82319.951000: cpu_idle: state=4294967295 cpu_id=3
148878          <idle>-0     (-----) [000] dn.3 82319.951033: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
148879          <idle>-0     (-----) [003] d..2 82319.951046: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148880          <idle>-0     (-----) [000] dns3 82319.951112: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148881        DispSync-8879  ( 8858) [003] d..1 82319.951123: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148882        DispSync-8879  ( 8858) [003] d..2 82319.951148: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148883          <idle>-0     (-----) [000] dns4 82319.951154: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148884          <idle>-0     (-----) [000] .n.1 82319.951173: cpu_idle: state=4294967295 cpu_id=0
148885          <idle>-0     (-----) [000] d..2 82319.951207: 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
148886     ksoftirqd/0-3     (    3) [000] d..2 82319.951230: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148887        DispSync-8879  ( 8858) [003] d..2 82319.951260: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148888          <idle>-0     (-----) [003] d..1 82319.951296: cpu_idle: state=2 cpu_id=3
148889          <idle>-0     (-----) [002] .n.1 82319.951326: cpu_idle: state=4294967295 cpu_id=2
148890          <idle>-0     (-----) [002] d..2 82319.951357: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148891  kworker/u16:13-1147  ( 1147) [000] d..2 82319.951468: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148892          <idle>-0     (-----) [000] d..1 82319.951491: cpu_idle: state=2 cpu_id=0
148893  appEventThread-8881  ( 8858) [002] d..3 82319.951529: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148894  appEventThread-8881  ( 8858) [002] d..2 82319.951624: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148895          <idle>-0     (-----) [002] d..1 82319.951647: cpu_idle: state=2 cpu_id=2
148896          <idle>-0     (-----) [004] dnh2 82319.952356: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148897          <idle>-0     (-----) [004] .n.1 82319.952437: cpu_idle: state=4294967295 cpu_id=4
148898          <idle>-0     (-----) [004] d..2 82319.952457: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
148899 s.nexuslauncher-10023 (10023) [004] .... 82319.952889: binder_transaction: transaction=1573255 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
148900 s.nexuslauncher-10023 (10023) [004] .... 82319.952899: binder_transaction_alloc_buf: transaction=1573255 data_size=80 offsets_size=0
148901 s.nexuslauncher-10023 (10023) [004] d..4 82319.952908: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148902 s.nexuslauncher-10023 (10023) [004] d..2 82319.953037: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
148903          <idle>-0     (-----) [004] d..2 82319.953043: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
148904          <idle>-0     (-----) [004] dn.3 82319.953052: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
148905          <idle>-0     (-----) [004] d..2 82319.953059: 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
148906     ksoftirqd/4-42    (   42) [004] d.s2 82319.953068: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148907     ksoftirqd/4-42    (   42) [004] d..2 82319.953089: 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
148908          <idle>-0     (-----) [004] d..1 82319.953102: cpu_idle: state=2 cpu_id=4
148909          <idle>-0     (-----) [000] dnh2 82319.953196: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148910          <idle>-0     (-----) [000] dnh2 82319.953207: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
148911          <idle>-0     (-----) [000] .n.1 82319.953219: cpu_idle: state=4294967295 cpu_id=0
148912          <idle>-0     (-----) [000] d..2 82319.953244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
148913   Binder:8858_1-8871  ( 8858) [000] .... 82319.953261: binder_transaction_received: transaction=1573255
148914   Binder:8858_1-8871  ( 8858) [000] d..1 82319.953331: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148915   Binder:8858_1-8871  ( 8858) [000] d..2 82319.953357: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148916   Binder:8858_1-8871  ( 8858) [000] d..2 82319.953414: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148917          <idle>-0     (-----) [002] .n.1 82319.953523: cpu_idle: state=4294967295 cpu_id=2
148918          <idle>-0     (-----) [002] d..2 82319.953552: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148919  appEventThread-8881  ( 8858) [002] d..2 82319.953649: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148920          <idle>-0     (-----) [002] d..1 82319.953668: cpu_idle: state=2 cpu_id=2
148921  kworker/u16:13-1147  ( 1147) [000] d..2 82319.953765: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
148922          <idle>-0     (-----) [000] d..1 82319.953788: cpu_idle: state=2 cpu_id=0
148923          <idle>-0     (-----) [001] d.s3 82319.953983: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148924          <idle>-0     (-----) [001] d.s4 82319.954012: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
148925          <idle>-0     (-----) [001] d.s4 82319.954025: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148926          <idle>-0     (-----) [001] ...1 82319.954051: cpu_idle: state=4294967295 cpu_id=1
148927          <idle>-0     (-----) [001] d..1 82319.954064: cpu_idle: state=2 cpu_id=1
148928          <idle>-0     (-----) [000] .n.1 82319.954196: cpu_idle: state=4294967295 cpu_id=0
148929          <idle>-0     (-----) [000] d..2 82319.954224: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148930  kworker/u16:13-1147  ( 1147) [000] d..2 82319.954282: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
148931          <idle>-0     (-----) [000] d..1 82319.954299: cpu_idle: state=2 cpu_id=0
148932          <idle>-0     (-----) [001] d.s3 82319.956847: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148933          <idle>-0     (-----) [001] dns4 82319.956874: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148934          <idle>-0     (-----) [001] .n.1 82319.956899: cpu_idle: state=4294967295 cpu_id=1
148935          <idle>-0     (-----) [001] d..2 82319.956925: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148936     kworker/1:1-25249 (25249) [001] d..2 82319.957003: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148937     kworker/1:1-25249 (25249) [001] d..3 82319.957029: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148938     kworker/1:1-25249 (25249) [001] d..2 82319.957087: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148939 [email protected] (  798) [001] d..2 82319.957355: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148940          <idle>-0     (-----) [001] d..2 82319.957363: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
148941          <idle>-0     (-----) [001] dn.3 82319.957379: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
148942          <idle>-0     (-----) [001] d..2 82319.957391: 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
148943     ksoftirqd/1-18    (   18) [001] d..2 82319.957426: 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
148944          <idle>-0     (-----) [001] d..1 82319.957446: cpu_idle: state=2 cpu_id=1
148945          <idle>-0     (-----) [002] ...1 82319.958220: cpu_idle: state=4294967295 cpu_id=2
148946          <idle>-0     (-----) [002] d..1 82319.958233: cpu_idle: state=2 cpu_id=2
148947          <idle>-0     (-----) [001] d.s3 82319.958288: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148948          <idle>-0     (-----) [001] dns4 82319.958310: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148949          <idle>-0     (-----) [001] .n.1 82319.958329: cpu_idle: state=4294967295 cpu_id=1
148950          <idle>-0     (-----) [001] d..2 82319.958350: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148951     kworker/1:1-25249 (25249) [001] d..2 82319.958388: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148952     kworker/1:1-25249 (25249) [001] d..3 82319.958404: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148953     kworker/1:1-25249 (25249) [001] d..2 82319.958437: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148954 [email protected] (  798) [001] d.s4 82319.958514: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
148955 [email protected] (  798) [001] d.s5 82319.958585: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
148956 [email protected] (  798) [001] d..2 82319.958777: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
148957  kworker/u16:13-1147  ( 1147) [001] d..2 82319.958898: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148958          <idle>-0     (-----) [001] d..1 82319.958928: cpu_idle: state=2 cpu_id=1
148959          <idle>-0     (-----) [001] d.s3 82319.959351: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148960          <idle>-0     (-----) [001] dns4 82319.959371: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148961          <idle>-0     (-----) [001] .n.1 82319.959397: cpu_idle: state=4294967295 cpu_id=1
148962          <idle>-0     (-----) [001] d..2 82319.959418: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148963     kworker/1:1-25249 (25249) [001] d..2 82319.959458: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148964     kworker/1:1-25249 (25249) [001] d..3 82319.959475: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148965     kworker/1:1-25249 (25249) [001] d..2 82319.959509: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148966 [email protected] (  798) [001] d..2 82319.959695: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148967          <idle>-0     (-----) [001] d..1 82319.959718: cpu_idle: state=2 cpu_id=1
148968          <idle>-0     (-----) [001] d.s3 82319.960396: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148969          <idle>-0     (-----) [001] dns4 82319.960416: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
148970          <idle>-0     (-----) [001] dns3 82319.960451: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
148971          <idle>-0     (-----) [001] dns4 82319.960485: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
148972          <idle>-0     (-----) [001] .n.1 82319.960507: cpu_idle: state=4294967295 cpu_id=1
148973          <idle>-0     (-----) [001] d..2 82319.960529: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
148974     kworker/1:1-25249 (25249) [001] d..2 82319.960571: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
148975     kworker/1:1-25249 (25249) [001] d..3 82319.960596: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
148976     kworker/1:1-25249 (25249) [001] d..2 82319.960636: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
148977   cds_mc_thread-16565 (16565) [001] d..2 82319.960752: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
148978 [email protected] (  798) [001] d..2 82319.960932: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
148979          <idle>-0     (-----) [001] d..1 82319.960964: cpu_idle: state=0 cpu_id=1
148980          <idle>-0     (-----) [003] d.h2 82319.964389: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
148981          <idle>-0     (-----) [003] dnh3 82319.964424: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
148982          <idle>-0     (-----) [003] .n.1 82319.964440: cpu_idle: state=4294967295 cpu_id=3
148983          <idle>-0     (-----) [003] d..2 82319.964464: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
148984        DispSync-8879  ( 8858) [003] d..1 82319.964494: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
148985        DispSync-8879  ( 8858) [003] d..2 82319.964511: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
148986        DispSync-8879  ( 8858) [003] d..2 82319.964576: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
148987          <idle>-0     (-----) [003] d..2 82319.964585: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148988          <idle>-0     (-----) [003] dn.3 82319.964605: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
148989          <idle>-0     (-----) [003] d..2 82319.964618: 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
148990     ksoftirqd/3-34    (   34) [003] d..2 82319.964655: 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
148991          <idle>-0     (-----) [003] d..1 82319.964677: cpu_idle: state=2 cpu_id=3
148992          <idle>-0     (-----) [002] .n.1 82319.964683: cpu_idle: state=4294967295 cpu_id=2
148993          <idle>-0     (-----) [002] d..2 82319.964711: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
148994  appEventThread-8881  ( 8858) [002] d..3 82319.964776: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148995  appEventThread-8881  ( 8858) [002] d..2 82319.964855: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
148996          <idle>-0     (-----) [002] d..1 82319.964876: cpu_idle: state=2 cpu_id=2
148997          <idle>-0     (-----) [004] dnh2 82319.965570: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
148998          <idle>-0     (-----) [004] .n.1 82319.965579: cpu_idle: state=4294967295 cpu_id=4
148999          <idle>-0     (-----) [004] d..2 82319.965592: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149000 s.nexuslauncher-10023 (10023) [004] .... 82319.965761: binder_transaction: transaction=1573256 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149001 s.nexuslauncher-10023 (10023) [004] .... 82319.965766: binder_transaction_alloc_buf: transaction=1573256 data_size=80 offsets_size=0
149002 s.nexuslauncher-10023 (10023) [004] d..4 82319.965771: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149003 s.nexuslauncher-10023 (10023) [004] d..2 82319.965863: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149004          <idle>-0     (-----) [004] d..2 82319.965867: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
149005          <idle>-0     (-----) [004] dn.3 82319.965874: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
149006          <idle>-0     (-----) [004] d..2 82319.965881: 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
149007     ksoftirqd/4-42    (   42) [004] d..2 82319.965896: 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
149008          <idle>-0     (-----) [004] d..1 82319.965908: cpu_idle: state=2 cpu_id=4
149009          <idle>-0     (-----) [000] dnh2 82319.965977: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149010          <idle>-0     (-----) [000] .n.1 82319.965990: cpu_idle: state=4294967295 cpu_id=0
149011          <idle>-0     (-----) [000] d..2 82319.966013: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149012   Binder:8858_1-8871  ( 8858) [000] .... 82319.966026: binder_transaction_received: transaction=1573256
149013   Binder:8858_1-8871  ( 8858) [000] d..1 82319.966074: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149014   Binder:8858_1-8871  ( 8858) [000] d..2 82319.966098: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149015   Binder:8858_1-8871  ( 8858) [000] d..2 82319.966161: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149016          <idle>-0     (-----) [000] d..1 82319.966182: cpu_idle: state=2 cpu_id=0
149017          <idle>-0     (-----) [002] .n.1 82319.966268: cpu_idle: state=4294967295 cpu_id=2
149018          <idle>-0     (-----) [002] d..2 82319.966293: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149019  appEventThread-8881  ( 8858) [002] d..2 82319.966376: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149020          <idle>-0     (-----) [002] d..1 82319.966400: cpu_idle: state=0 cpu_id=2
149021          <idle>-0     (-----) [001] ...1 82319.966981: cpu_idle: state=4294967295 cpu_id=1
149022          <idle>-0     (-----) [001] d..1 82319.966988: cpu_idle: state=2 cpu_id=1
149023          <idle>-0     (-----) [002] d..2 82319.972420: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149024          <idle>-0     (-----) [002] dn.3 82319.972445: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149025          <idle>-0     (-----) [002] dns3 82319.972528: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
149026          <idle>-0     (-----) [002] dns4 82319.972577: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149027          <idle>-0     (-----) [002] .n.1 82319.972592: cpu_idle: state=4294967295 cpu_id=2
149028          <idle>-0     (-----) [002] d..2 82319.972611: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149029     ksoftirqd/2-26    (   26) [002] d..2 82319.972631: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149030  kworker/u16:13-1147  ( 1147) [002] d..2 82319.972755: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149031          <idle>-0     (-----) [002] d..1 82319.972774: cpu_idle: state=2 cpu_id=2
149032          <idle>-0     (-----) [003] d.h2 82319.980891: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149033          <idle>-0     (-----) [003] dnh3 82319.980919: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149034          <idle>-0     (-----) [003] .n.1 82319.980934: cpu_idle: state=4294967295 cpu_id=3
149035          <idle>-0     (-----) [003] d..2 82319.980954: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149036        DispSync-8879  ( 8858) [003] d..1 82319.980981: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149037        DispSync-8879  ( 8858) [003] d..2 82319.981001: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149038        DispSync-8879  ( 8858) [003] d..2 82319.981057: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149039          <idle>-0     (-----) [003] d..2 82319.981064: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149040          <idle>-0     (-----) [003] dn.3 82319.981079: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149041          <idle>-0     (-----) [003] d..2 82319.981090: 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
149042     ksoftirqd/3-34    (   34) [003] d..2 82319.981120: 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
149043          <idle>-0     (-----) [003] d..1 82319.981138: cpu_idle: state=2 cpu_id=3
149044          <idle>-0     (-----) [002] .n.1 82319.981187: cpu_idle: state=4294967295 cpu_id=2
149045          <idle>-0     (-----) [002] d..2 82319.981219: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149046  appEventThread-8881  ( 8858) [002] d..3 82319.981282: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149047  appEventThread-8881  ( 8858) [002] d..2 82319.981361: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149048          <idle>-0     (-----) [002] d..1 82319.981385: cpu_idle: state=0 cpu_id=2
149049          <idle>-0     (-----) [004] dnh2 82319.982083: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149050          <idle>-0     (-----) [004] .n.1 82319.982093: cpu_idle: state=4294967295 cpu_id=4
149051          <idle>-0     (-----) [004] d..2 82319.982109: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149052 s.nexuslauncher-10023 (10023) [004] .... 82319.982280: binder_transaction: transaction=1573257 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149053 s.nexuslauncher-10023 (10023) [004] .... 82319.982285: binder_transaction_alloc_buf: transaction=1573257 data_size=80 offsets_size=0
149054 s.nexuslauncher-10023 (10023) [004] d..4 82319.982290: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149055 s.nexuslauncher-10023 (10023) [004] d..2 82319.982394: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149056          <idle>-0     (-----) [004] d..2 82319.982399: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
149057          <idle>-0     (-----) [004] dn.3 82319.982406: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
149058          <idle>-0     (-----) [004] d..2 82319.982413: 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
149059     ksoftirqd/4-42    (   42) [004] d.s2 82319.982421: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149060     ksoftirqd/4-42    (   42) [004] d..2 82319.982455: 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
149061          <idle>-0     (-----) [004] d..1 82319.982469: cpu_idle: state=2 cpu_id=4
149062          <idle>-0     (-----) [000] dnh2 82319.982497: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
149063          <idle>-0     (-----) [000] dnh2 82319.982508: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149064          <idle>-0     (-----) [000] .n.1 82319.982520: cpu_idle: state=4294967295 cpu_id=0
149065          <idle>-0     (-----) [000] d..2 82319.982542: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149066   Binder:8858_1-8871  ( 8858) [000] .... 82319.982555: binder_transaction_received: transaction=1573257
149067   Binder:8858_1-8871  ( 8858) [000] d..1 82319.982608: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149068   Binder:8858_1-8871  ( 8858) [000] d..2 82319.982635: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149069          <idle>-0     (-----) [002] .n.1 82319.982643: cpu_idle: state=4294967295 cpu_id=2
149070          <idle>-0     (-----) [002] d..2 82319.982658: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149071   Binder:8858_1-8871  ( 8858) [000] d..2 82319.982680: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149072  appEventThread-8881  ( 8858) [002] d..2 82319.982715: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149073          <idle>-0     (-----) [002] d..1 82319.982770: cpu_idle: state=0 cpu_id=2
149074  kworker/u16:13-1147  ( 1147) [000] d..2 82319.982858: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149075          <idle>-0     (-----) [000] d..1 82319.982885: cpu_idle: state=0 cpu_id=0
149076          <idle>-0     (-----) [001] d.s3 82319.984807: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149077          <idle>-0     (-----) [001] dns4 82319.984830: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149078          <idle>-0     (-----) [001] .n.1 82319.984851: cpu_idle: state=4294967295 cpu_id=1
149079          <idle>-0     (-----) [001] d..2 82319.984874: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
149080     kworker/1:1-25249 (25249) [001] d..2 82319.984917: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
149081     kworker/1:1-25249 (25249) [001] d..3 82319.984937: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
149082     kworker/1:1-25249 (25249) [001] d..2 82319.984984: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
149083 [email protected] (  798) [001] d..2 82319.985252: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149084          <idle>-0     (-----) [001] d..1 82319.985285: cpu_idle: state=0 cpu_id=1
149085          <idle>-0     (-----) [002] d..2 82319.988787: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149086          <idle>-0     (-----) [002] dn.3 82319.988805: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149087          <idle>-0     (-----) [002] .n.1 82319.988810: cpu_idle: state=4294967295 cpu_id=2
149088          <idle>-0     (-----) [002] d..2 82319.988827: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149089     ksoftirqd/2-26    (   26) [002] d..2 82319.988880: 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
149090          <idle>-0     (-----) [002] d..1 82319.988895: cpu_idle: state=2 cpu_id=2
149091          <idle>-0     (-----) [000] ...1 82319.988901: cpu_idle: state=4294967295 cpu_id=0
149092          <idle>-0     (-----) [000] d..1 82319.988908: cpu_idle: state=2 cpu_id=0
149093          <idle>-0     (-----) [004] d.h2 82319.991202: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149094          <idle>-0     (-----) [004] dnh3 82319.991219: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149095          <idle>-0     (-----) [004] .n.1 82319.991235: cpu_idle: state=4294967295 cpu_id=4
149096          <idle>-0     (-----) [004] d..2 82319.991247: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149097          <idle>-0     (-----) [001] ...1 82319.991299: cpu_idle: state=4294967295 cpu_id=1
149098          <idle>-0     (-----) [001] d..1 82319.991305: cpu_idle: state=2 cpu_id=1
149099 s.nexuslauncher-10023 (10023) [004] d..2 82319.991319: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149100          <idle>-0     (-----) [004] d..1 82319.991331: cpu_idle: state=2 cpu_id=4
149101          <idle>-0     (-----) [003] d.h2 82319.997364: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149102          <idle>-0     (-----) [003] dnh3 82319.997397: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149103          <idle>-0     (-----) [003] .n.1 82319.997477: cpu_idle: state=4294967295 cpu_id=3
149104          <idle>-0     (-----) [003] d..2 82319.997497: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149105        DispSync-8879  ( 8858) [003] d..1 82319.997525: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149106        DispSync-8879  ( 8858) [003] d..2 82319.997545: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149107        DispSync-8879  ( 8858) [003] d..2 82319.997601: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149108          <idle>-0     (-----) [003] d..2 82319.997608: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149109          <idle>-0     (-----) [003] dn.3 82319.997624: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149110          <idle>-0     (-----) [003] d..2 82319.997636: 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
149111     ksoftirqd/3-34    (   34) [003] d.s2 82319.997649: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
149112     ksoftirqd/3-34    (   34) [003] d.s3 82319.997698: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149113     ksoftirqd/3-34    (   34) [003] d.s2 82319.997711: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
149114          <idle>-0     (-----) [002] .n.1 82319.997721: cpu_idle: state=4294967295 cpu_id=2
149115     ksoftirqd/3-34    (   34) [003] d.s3 82319.997731: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
149116     ksoftirqd/3-34    (   34) [003] d..2 82319.997748: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
149117          <idle>-0     (-----) [002] d..2 82319.997754: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149118     kworker/3:1-25210 (25210) [003] d..2 82319.997798: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149119  appEventThread-8881  ( 8858) [002] d..3 82319.997819: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149120  appEventThread-8881  ( 8858) [002] d..2 82319.997937: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149121          <idle>-0     (-----) [002] d..1 82319.997996: cpu_idle: state=0 cpu_id=2
149122  kworker/u16:13-1147  ( 1147) [003] d..2 82319.998019: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149123          <idle>-0     (-----) [003] d..1 82319.998047: cpu_idle: state=2 cpu_id=3
149124          <idle>-0     (-----) [004] dnh2 82319.998622: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149125          <idle>-0     (-----) [004] .n.1 82319.998631: cpu_idle: state=4294967295 cpu_id=4
149126          <idle>-0     (-----) [004] d..2 82319.998645: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149127 s.nexuslauncher-10023 (10023) [004] .... 82319.998813: binder_transaction: transaction=1573258 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149128 s.nexuslauncher-10023 (10023) [004] .... 82319.998818: binder_transaction_alloc_buf: transaction=1573258 data_size=80 offsets_size=0
149129 s.nexuslauncher-10023 (10023) [004] d..4 82319.998823: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149130 s.nexuslauncher-10023 (10023) [004] d..2 82319.998965: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149131          <idle>-0     (-----) [004] d..2 82319.998970: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
149132          <idle>-0     (-----) [004] dn.3 82319.998978: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
149133          <idle>-0     (-----) [004] d..2 82319.998985: 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
149134     ksoftirqd/4-42    (   42) [004] d..2 82319.999001: 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
149135          <idle>-0     (-----) [004] d..1 82319.999016: cpu_idle: state=2 cpu_id=4
149136          <idle>-0     (-----) [000] dnh2 82319.999026: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149137          <idle>-0     (-----) [000] .n.1 82319.999040: cpu_idle: state=4294967295 cpu_id=0
149138          <idle>-0     (-----) [000] d..2 82319.999066: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149139   Binder:8858_1-8871  ( 8858) [000] .... 82319.999078: binder_transaction_received: transaction=1573258
149140   Binder:8858_1-8871  ( 8858) [000] d..1 82319.999130: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149141   Binder:8858_1-8871  ( 8858) [000] d..2 82319.999156: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149142          <idle>-0     (-----) [002] .n.1 82319.999164: cpu_idle: state=4294967295 cpu_id=2
149143          <idle>-0     (-----) [002] d..2 82319.999179: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149144   Binder:8858_1-8871  ( 8858) [000] d..2 82319.999219: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149145  appEventThread-8881  ( 8858) [002] d..2 82319.999239: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149146          <idle>-0     (-----) [000] d..1 82319.999245: cpu_idle: state=0 cpu_id=0
149147          <idle>-0     (-----) [002] d..1 82319.999258: cpu_idle: state=0 cpu_id=2
149148          <idle>-0     (-----) [000] d..2 82320.005259: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
149149          <idle>-0     (-----) [002] ...1 82320.005272: cpu_idle: state=4294967295 cpu_id=2
149150          <idle>-0     (-----) [000] dn.3 82320.005275: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
149151          <idle>-0     (-----) [002] d..1 82320.005278: cpu_idle: state=2 cpu_id=2
149152          <idle>-0     (-----) [000] .n.1 82320.005281: cpu_idle: state=4294967295 cpu_id=0
149153          <idle>-0     (-----) [000] d..2 82320.005299: 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
149154     ksoftirqd/0-3     (    3) [000] d.s2 82320.005312: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149155     ksoftirqd/0-3     (    3) [000] d.s3 82320.005364: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
149156     ksoftirqd/0-3     (    3) [000] d..2 82320.005387: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149157  kworker/u16:13-1147  ( 1147) [000] d..2 82320.005602: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
149158          <idle>-0     (-----) [000] d..1 82320.005622: cpu_idle: state=2 cpu_id=0
149159          <idle>-0     (-----) [001] d.s3 82320.005785: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
149160          <idle>-0     (-----) [001] d.s4 82320.005804: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
149161          <idle>-0     (-----) [001] d.s4 82320.005816: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
149162          <idle>-0     (-----) [001] ...1 82320.005835: cpu_idle: state=4294967295 cpu_id=1
149163          <idle>-0     (-----) [001] d..1 82320.005850: cpu_idle: state=0 cpu_id=1
149164          <idle>-0     (-----) [000] .n.1 82320.005997: cpu_idle: state=4294967295 cpu_id=0
149165          <idle>-0     (-----) [000] d..2 82320.006035: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149166  kworker/u16:13-1147  ( 1147) [000] d..2 82320.006211: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149167          <idle>-0     (-----) [000] d..1 82320.006239: cpu_idle: state=0 cpu_id=0
149168          <idle>-0     (-----) [001] d..2 82320.011866: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149169          <idle>-0     (-----) [001] dn.3 82320.011883: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149170          <idle>-0     (-----) [001] .n.1 82320.011973: cpu_idle: state=4294967295 cpu_id=1
149171          <idle>-0     (-----) [001] d..2 82320.011998: 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
149172     ksoftirqd/1-18    (   18) [001] d..2 82320.012046: 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
149173          <idle>-0     (-----) [001] d..1 82320.012064: cpu_idle: state=2 cpu_id=1
149174          <idle>-0     (-----) [000] ...1 82320.012252: cpu_idle: state=4294967295 cpu_id=0
149175          <idle>-0     (-----) [000] d..1 82320.012259: cpu_idle: state=2 cpu_id=0
149176          <idle>-0     (-----) [003] d.h2 82320.013831: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149177          <idle>-0     (-----) [003] dnh3 82320.013858: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149178          <idle>-0     (-----) [003] .n.1 82320.013874: cpu_idle: state=4294967295 cpu_id=3
149179          <idle>-0     (-----) [003] d..2 82320.013892: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149180        DispSync-8879  ( 8858) [003] d..1 82320.013920: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149181        DispSync-8879  ( 8858) [003] d..2 82320.013938: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149182        DispSync-8879  ( 8858) [003] d..2 82320.013987: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149183          <idle>-0     (-----) [003] d..1 82320.014009: cpu_idle: state=2 cpu_id=3
149184          <idle>-0     (-----) [002] .n.1 82320.014119: cpu_idle: state=4294967295 cpu_id=2
149185          <idle>-0     (-----) [002] d..2 82320.014146: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149186  appEventThread-8881  ( 8858) [002] d..3 82320.014207: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149187  appEventThread-8881  ( 8858) [002] d..2 82320.014287: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149188          <idle>-0     (-----) [002] d..1 82320.014310: cpu_idle: state=2 cpu_id=2
149189          <idle>-0     (-----) [004] dnh2 82320.015006: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149190          <idle>-0     (-----) [004] .n.1 82320.015014: cpu_idle: state=4294967295 cpu_id=4
149191          <idle>-0     (-----) [004] d..2 82320.015028: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149192 s.nexuslauncher-10023 (10023) [004] d.s2 82320.015145: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
149193 s.nexuslauncher-10023 (10023) [004] .... 82320.015270: binder_transaction: transaction=1573259 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149194 s.nexuslauncher-10023 (10023) [004] .... 82320.015274: binder_transaction_alloc_buf: transaction=1573259 data_size=80 offsets_size=0
149195 s.nexuslauncher-10023 (10023) [004] d..4 82320.015278: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149196 s.nexuslauncher-10023 (10023) [004] d..2 82320.015408: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149197          <idle>-0     (-----) [004] d..1 82320.015426: cpu_idle: state=2 cpu_id=4
149198          <idle>-0     (-----) [000] dnh2 82320.015440: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
149199          <idle>-0     (-----) [000] .n.1 82320.015456: cpu_idle: state=4294967295 cpu_id=0
149200          <idle>-0     (-----) [000] d..2 82320.015482: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149201          <idle>-0     (-----) [001] dnh2 82320.015497: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
149202          <idle>-0     (-----) [001] .n.1 82320.015511: cpu_idle: state=4294967295 cpu_id=1
149203          <idle>-0     (-----) [001] d..2 82320.015534: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149204   Binder:8858_1-8871  ( 8858) [001] .... 82320.015571: binder_transaction_received: transaction=1573259
149205   Binder:8858_1-8871  ( 8858) [001] d..1 82320.015636: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149206   Binder:8858_1-8871  ( 8858) [001] d..2 82320.015661: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149207  kworker/u16:13-1147  ( 1147) [000] d..2 82320.015676: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149208          <idle>-0     (-----) [000] d..1 82320.015697: cpu_idle: state=2 cpu_id=0
149209   Binder:8858_1-8871  ( 8858) [001] d..2 82320.015732: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149210          <idle>-0     (-----) [001] d..1 82320.015762: cpu_idle: state=0 cpu_id=1
149211          <idle>-0     (-----) [002] .n.1 82320.015831: cpu_idle: state=4294967295 cpu_id=2
149212          <idle>-0     (-----) [002] d..2 82320.015859: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149213  appEventThread-8881  ( 8858) [002] d..2 82320.015949: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149214          <idle>-0     (-----) [002] d..1 82320.015973: cpu_idle: state=0 cpu_id=2
149215          <idle>-0     (-----) [001] d..2 82320.021776: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149216          <idle>-0     (-----) [001] dn.3 82320.021790: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149217          <idle>-0     (-----) [001] .n.1 82320.021796: cpu_idle: state=4294967295 cpu_id=1
149218          <idle>-0     (-----) [001] d..2 82320.021816: 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
149219     ksoftirqd/1-18    (   18) [001] d..2 82320.021860: 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
149220          <idle>-0     (-----) [001] d..1 82320.021875: cpu_idle: state=2 cpu_id=1
149221          <idle>-0     (-----) [002] ...1 82320.021984: cpu_idle: state=4294967295 cpu_id=2
149222          <idle>-0     (-----) [002] d..1 82320.021991: cpu_idle: state=2 cpu_id=2
149223          <idle>-0     (-----) [003] d.h2 82320.030300: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149224          <idle>-0     (-----) [003] dnh3 82320.030325: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149225          <idle>-0     (-----) [003] .n.1 82320.030340: cpu_idle: state=4294967295 cpu_id=3
149226          <idle>-0     (-----) [003] d..2 82320.030359: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149227        DispSync-8879  ( 8858) [003] d..1 82320.030387: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149228        DispSync-8879  ( 8858) [003] d..2 82320.030404: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149229        DispSync-8879  ( 8858) [003] d..2 82320.030461: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149230          <idle>-0     (-----) [003] d..2 82320.030468: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149231          <idle>-0     (-----) [003] dn.3 82320.030483: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149232          <idle>-0     (-----) [003] d..2 82320.030496: 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
149233     ksoftirqd/3-34    (   34) [003] d.s2 82320.030508: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
149234     ksoftirqd/3-34    (   34) [003] d.s3 82320.030556: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149235     ksoftirqd/3-34    (   34) [003] d..2 82320.030576: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149236          <idle>-0     (-----) [002] .n.1 82320.030583: cpu_idle: state=4294967295 cpu_id=2
149237          <idle>-0     (-----) [002] d..2 82320.030640: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149238  appEventThread-8881  ( 8858) [002] d..3 82320.030730: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149239  kworker/u16:13-1147  ( 1147) [003] d..2 82320.030773: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149240          <idle>-0     (-----) [003] d..1 82320.030797: cpu_idle: state=2 cpu_id=3
149241  appEventThread-8881  ( 8858) [002] d..2 82320.030822: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149242          <idle>-0     (-----) [002] d..1 82320.030852: cpu_idle: state=0 cpu_id=2
149243          <idle>-0     (-----) [004] dnh2 82320.031528: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149244          <idle>-0     (-----) [004] .n.1 82320.031538: cpu_idle: state=4294967295 cpu_id=4
149245          <idle>-0     (-----) [004] d..2 82320.031552: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149246 s.nexuslauncher-10023 (10023) [004] .... 82320.031722: binder_transaction: transaction=1573260 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149247 s.nexuslauncher-10023 (10023) [004] .... 82320.031727: binder_transaction_alloc_buf: transaction=1573260 data_size=80 offsets_size=0
149248 s.nexuslauncher-10023 (10023) [004] d..4 82320.031731: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
149249 s.nexuslauncher-10023 (10023) [004] d..2 82320.031920: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149250          <idle>-0     (-----) [004] d..1 82320.031936: cpu_idle: state=2 cpu_id=4
149251          <idle>-0     (-----) [000] dnh2 82320.031941: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149252          <idle>-0     (-----) [000] .n.1 82320.031954: cpu_idle: state=4294967295 cpu_id=0
149253          <idle>-0     (-----) [000] d..2 82320.031980: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149254   Binder:8858_1-8871  ( 8858) [000] .... 82320.031991: binder_transaction_received: transaction=1573260
149255   Binder:8858_1-8871  ( 8858) [000] d..1 82320.032044: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149256   Binder:8858_1-8871  ( 8858) [000] d..2 82320.032072: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149257          <idle>-0     (-----) [002] .n.1 82320.032079: cpu_idle: state=4294967295 cpu_id=2
149258          <idle>-0     (-----) [002] d..2 82320.032095: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149259   Binder:8858_1-8871  ( 8858) [000] d..2 82320.032139: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149260  appEventThread-8881  ( 8858) [002] d..2 82320.032154: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149261          <idle>-0     (-----) [000] d..1 82320.032162: cpu_idle: state=2 cpu_id=0
149262          <idle>-0     (-----) [002] d..1 82320.032174: cpu_idle: state=0 cpu_id=2
149263          <idle>-0     (-----) [002] d..2 82320.038187: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149264          <idle>-0     (-----) [002] dn.3 82320.038205: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149265          <idle>-0     (-----) [002] .n.1 82320.038210: cpu_idle: state=4294967295 cpu_id=2
149266          <idle>-0     (-----) [002] d..2 82320.038228: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149267     ksoftirqd/2-26    (   26) [002] d..2 82320.038269: 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
149268          <idle>-0     (-----) [002] d..1 82320.038283: cpu_idle: state=2 cpu_id=2
149269          <idle>-0     (-----) [003] d.h2 82320.046768: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149270          <idle>-0     (-----) [003] dnh3 82320.046797: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149271          <idle>-0     (-----) [003] .n.1 82320.046812: cpu_idle: state=4294967295 cpu_id=3
149272          <idle>-0     (-----) [003] d..2 82320.046832: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149273        DispSync-8879  ( 8858) [003] d..1 82320.046859: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149274        DispSync-8879  ( 8858) [003] d..2 82320.046879: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149275        DispSync-8879  ( 8858) [003] d..2 82320.046937: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149276          <idle>-0     (-----) [003] d..2 82320.046943: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149277          <idle>-0     (-----) [003] dn.3 82320.046959: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149278          <idle>-0     (-----) [003] d..2 82320.046971: 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
149279     ksoftirqd/3-34    (   34) [003] d.s2 82320.046983: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149280     ksoftirqd/3-34    (   34) [003] d.s3 82320.047005: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149281     ksoftirqd/3-34    (   34) [003] d..2 82320.047024: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149282          <idle>-0     (-----) [002] .n.1 82320.047055: cpu_idle: state=4294967295 cpu_id=2
149283          <idle>-0     (-----) [002] d..2 82320.047110: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149284  appEventThread-8881  ( 8858) [002] d..3 82320.047200: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149285  kworker/u16:13-1147  ( 1147) [003] d..2 82320.047216: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149286          <idle>-0     (-----) [003] d..1 82320.047240: cpu_idle: state=2 cpu_id=3
149287  appEventThread-8881  ( 8858) [002] d..2 82320.047291: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149288          <idle>-0     (-----) [002] d..1 82320.047320: cpu_idle: state=0 cpu_id=2
149289          <idle>-0     (-----) [004] dnh2 82320.048000: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149290          <idle>-0     (-----) [004] .n.1 82320.048009: cpu_idle: state=4294967295 cpu_id=4
149291          <idle>-0     (-----) [004] d..2 82320.048023: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149292 s.nexuslauncher-10023 (10023) [004] .... 82320.048192: binder_transaction: transaction=1573261 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149293 s.nexuslauncher-10023 (10023) [004] .... 82320.048197: binder_transaction_alloc_buf: transaction=1573261 data_size=80 offsets_size=0
149294 s.nexuslauncher-10023 (10023) [004] d..4 82320.048201: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149295 s.nexuslauncher-10023 (10023) [004] d..2 82320.048292: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149296          <idle>-0     (-----) [004] d..1 82320.048308: cpu_idle: state=2 cpu_id=4
149297          <idle>-0     (-----) [000] dnh2 82320.048407: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149298          <idle>-0     (-----) [000] .n.1 82320.048420: cpu_idle: state=4294967295 cpu_id=0
149299          <idle>-0     (-----) [000] d..2 82320.048441: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149300   Binder:8858_1-8871  ( 8858) [000] .... 82320.048520: binder_transaction_received: transaction=1573261
149301   Binder:8858_1-8871  ( 8858) [000] d..1 82320.048572: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149302   Binder:8858_1-8871  ( 8858) [000] d..2 82320.048596: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149303          <idle>-0     (-----) [002] .n.1 82320.048604: cpu_idle: state=4294967295 cpu_id=2
149304          <idle>-0     (-----) [002] d..2 82320.048621: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149305   Binder:8858_1-8871  ( 8858) [000] d..2 82320.048664: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149306  appEventThread-8881  ( 8858) [002] d..2 82320.048680: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149307          <idle>-0     (-----) [000] d..1 82320.048688: cpu_idle: state=2 cpu_id=0
149308          <idle>-0     (-----) [002] d..1 82320.048698: cpu_idle: state=0 cpu_id=2
149309          <idle>-0     (-----) [002] d..2 82320.054716: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149310          <idle>-0     (-----) [002] dn.3 82320.054733: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149311          <idle>-0     (-----) [002] .n.1 82320.054814: cpu_idle: state=4294967295 cpu_id=2
149312          <idle>-0     (-----) [002] d..2 82320.054833: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149313     ksoftirqd/2-26    (   26) [002] d..2 82320.054868: 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
149314          <idle>-0     (-----) [002] d..1 82320.054884: cpu_idle: state=2 cpu_id=2
149315          <idle>-0     (-----) [003] d.h2 82320.063232: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149316          <idle>-0     (-----) [003] dnh3 82320.063260: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149317          <idle>-0     (-----) [003] .n.1 82320.063274: cpu_idle: state=4294967295 cpu_id=3
149318          <idle>-0     (-----) [003] d..2 82320.063293: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149319        DispSync-8879  ( 8858) [003] d..1 82320.063320: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149320        DispSync-8879  ( 8858) [003] d..2 82320.063340: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149321        DispSync-8879  ( 8858) [003] d..2 82320.063397: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149322          <idle>-0     (-----) [003] d..2 82320.063404: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149323          <idle>-0     (-----) [003] dn.3 82320.063419: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149324          <idle>-0     (-----) [003] d..2 82320.063431: 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
149325     ksoftirqd/3-34    (   34) [003] d.s2 82320.063444: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149326     ksoftirqd/3-34    (   34) [003] d.s3 82320.063467: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149327     ksoftirqd/3-34    (   34) [003] d..2 82320.063487: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149328          <idle>-0     (-----) [002] .n.1 82320.063516: cpu_idle: state=4294967295 cpu_id=2
149329          <idle>-0     (-----) [002] d..2 82320.063548: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149330  appEventThread-8881  ( 8858) [002] d..3 82320.063634: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149331  appEventThread-8881  ( 8858) [002] d..2 82320.063724: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149332  kworker/u16:13-1147  ( 1147) [003] d..2 82320.063729: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149333          <idle>-0     (-----) [002] d..1 82320.063748: cpu_idle: state=2 cpu_id=2
149334          <idle>-0     (-----) [003] d..1 82320.063757: cpu_idle: state=2 cpu_id=3
149335          <idle>-0     (-----) [004] dnh2 82320.064431: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149336          <idle>-0     (-----) [004] .n.1 82320.064439: cpu_idle: state=4294967295 cpu_id=4
149337          <idle>-0     (-----) [004] d..2 82320.064453: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149338 s.nexuslauncher-10023 (10023) [004] .... 82320.064616: binder_transaction: transaction=1573262 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149339 s.nexuslauncher-10023 (10023) [004] .... 82320.064621: binder_transaction_alloc_buf: transaction=1573262 data_size=80 offsets_size=0
149340 s.nexuslauncher-10023 (10023) [004] d..4 82320.064625: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149341 s.nexuslauncher-10023 (10023) [004] d..2 82320.064720: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149342          <idle>-0     (-----) [004] d..1 82320.064736: cpu_idle: state=2 cpu_id=4
149343          <idle>-0     (-----) [000] dnh2 82320.064917: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149344          <idle>-0     (-----) [000] .n.1 82320.064930: cpu_idle: state=4294967295 cpu_id=0
149345          <idle>-0     (-----) [000] d..2 82320.064952: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149346   Binder:8858_1-8871  ( 8858) [000] .... 82320.064963: binder_transaction_received: transaction=1573262
149347   Binder:8858_1-8871  ( 8858) [000] d..1 82320.065009: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149348   Binder:8858_1-8871  ( 8858) [000] d..2 82320.065033: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149349   Binder:8858_1-8871  ( 8858) [000] d..2 82320.065094: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149350          <idle>-0     (-----) [000] d..1 82320.065117: cpu_idle: state=2 cpu_id=0
149351          <idle>-0     (-----) [002] .n.1 82320.065206: cpu_idle: state=4294967295 cpu_id=2
149352          <idle>-0     (-----) [002] d..2 82320.065237: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149353  appEventThread-8881  ( 8858) [002] d..2 82320.065327: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149354          <idle>-0     (-----) [002] d..2 82320.065335: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149355          <idle>-0     (-----) [002] dn.3 82320.065351: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149356          <idle>-0     (-----) [002] d..2 82320.065362: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149357     ksoftirqd/2-26    (   26) [002] d..2 82320.065391: 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
149358          <idle>-0     (-----) [002] d..1 82320.065412: cpu_idle: state=0 cpu_id=2
149359          <idle>-0     (-----) [002] d..2 82320.070431: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149360          <idle>-0     (-----) [002] dn.3 82320.070445: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149361          <idle>-0     (-----) [002] .n.1 82320.070452: cpu_idle: state=4294967295 cpu_id=2
149362          <idle>-0     (-----) [002] d..2 82320.070470: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149363     ksoftirqd/2-26    (   26) [002] d..2 82320.070506: 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
149364          <idle>-0     (-----) [002] d..1 82320.070523: cpu_idle: state=0 cpu_id=2
149365          <idle>-0     (-----) [001] d.s3 82320.070744: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149366          <idle>-0     (-----) [002] ...1 82320.070763: cpu_idle: state=4294967295 cpu_id=2
149367          <idle>-0     (-----) [001] dns4 82320.070770: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149368          <idle>-0     (-----) [002] d..1 82320.070771: cpu_idle: state=0 cpu_id=2
149369          <idle>-0     (-----) [001] .n.1 82320.070793: cpu_idle: state=4294967295 cpu_id=1
149370          <idle>-0     (-----) [001] d..2 82320.070820: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
149371     kworker/1:1-25249 (25249) [001] d..2 82320.070862: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
149372     kworker/1:1-25249 (25249) [001] d..3 82320.070881: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
149373     kworker/1:1-25249 (25249) [001] d..2 82320.070918: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
149374 [email protected] (  798) [001] d..2 82320.071115: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149375          <idle>-0     (-----) [001] d..1 82320.071148: cpu_idle: state=0 cpu_id=1
149376          <idle>-0     (-----) [001] d.s3 82320.071624: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149377          <idle>-0     (-----) [001] dns4 82320.071639: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149378          <idle>-0     (-----) [001] .n.1 82320.071660: cpu_idle: state=4294967295 cpu_id=1
149379          <idle>-0     (-----) [001] d..2 82320.071677: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
149380     kworker/1:1-25249 (25249) [001] d..2 82320.071716: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
149381     kworker/1:1-25249 (25249) [001] d..3 82320.071732: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
149382     kworker/1:1-25249 (25249) [001] d..2 82320.071765: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
149383 [email protected] (  798) [001] d.s2 82320.071890: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149384 [email protected] (  798) [001] d.s3 82320.071944: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
149385 [email protected] (  798) [001] d..2 82320.072204: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149386  kworker/u16:13-1147  ( 1147) [001] d..2 82320.072330: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149387          <idle>-0     (-----) [001] d..1 82320.072354: cpu_idle: state=2 cpu_id=1
149388          <idle>-0     (-----) [001] d.s3 82320.072893: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149389          <idle>-0     (-----) [001] dns4 82320.072916: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149390          <idle>-0     (-----) [001] dns3 82320.072945: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
149391          <idle>-0     (-----) [001] dns4 82320.072971: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
149392          <idle>-0     (-----) [001] .n.1 82320.072991: cpu_idle: state=4294967295 cpu_id=1
149393          <idle>-0     (-----) [001] d..2 82320.073013: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
149394     kworker/1:1-25249 (25249) [001] d..2 82320.073052: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
149395     kworker/1:1-25249 (25249) [001] d..3 82320.073074: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
149396     kworker/1:1-25249 (25249) [001] d..2 82320.073109: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
149397   cds_mc_thread-16565 (16565) [001] d..2 82320.073193: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
149398 [email protected] (  798) [001] d..2 82320.073372: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149399          <idle>-0     (-----) [001] d..1 82320.073400: cpu_idle: state=0 cpu_id=1
149400          <idle>-0     (-----) [001] d..2 82320.079415: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149401          <idle>-0     (-----) [001] dn.3 82320.079433: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149402          <idle>-0     (-----) [001] .n.1 82320.079439: cpu_idle: state=4294967295 cpu_id=1
149403          <idle>-0     (-----) [001] d..2 82320.079456: 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
149404     ksoftirqd/1-18    (   18) [001] d..2 82320.079497: 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
149405          <idle>-0     (-----) [001] d..1 82320.079510: cpu_idle: state=2 cpu_id=1
149406          <idle>-0     (-----) [003] d.h2 82320.079623: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149407          <idle>-0     (-----) [003] dnh3 82320.079651: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149408          <idle>-0     (-----) [003] .n.1 82320.079666: cpu_idle: state=4294967295 cpu_id=3
149409          <idle>-0     (-----) [003] d..2 82320.079685: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149410        DispSync-8879  ( 8858) [003] d..1 82320.079713: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149411        DispSync-8879  ( 8858) [003] d..2 82320.079734: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149412          <idle>-0     (-----) [002] .n.1 82320.079740: cpu_idle: state=4294967295 cpu_id=2
149413          <idle>-0     (-----) [002] d..2 82320.079757: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149414        DispSync-8879  ( 8858) [003] d..2 82320.079783: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149415          <idle>-0     (-----) [003] d..1 82320.079804: cpu_idle: state=2 cpu_id=3
149416  appEventThread-8881  ( 8858) [002] d..3 82320.079813: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149417  appEventThread-8881  ( 8858) [002] d..2 82320.079893: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149418          <idle>-0     (-----) [002] d..1 82320.079916: cpu_idle: state=0 cpu_id=2
149419          <idle>-0     (-----) [004] dnh2 82320.080611: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149420          <idle>-0     (-----) [004] .n.1 82320.080620: cpu_idle: state=4294967295 cpu_id=4
149421          <idle>-0     (-----) [004] d..2 82320.080634: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149422 s.nexuslauncher-10023 (10023) [004] .... 82320.080805: binder_transaction: transaction=1573263 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149423 s.nexuslauncher-10023 (10023) [004] .... 82320.080810: binder_transaction_alloc_buf: transaction=1573263 data_size=80 offsets_size=0
149424 s.nexuslauncher-10023 (10023) [004] d..4 82320.080814: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149425 s.nexuslauncher-10023 (10023) [004] d..2 82320.080909: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149426          <idle>-0     (-----) [004] d..1 82320.080927: cpu_idle: state=2 cpu_id=4
149427          <idle>-0     (-----) [000] dnh2 82320.081024: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149428          <idle>-0     (-----) [000] .n.1 82320.081037: cpu_idle: state=4294967295 cpu_id=0
149429          <idle>-0     (-----) [000] d..2 82320.081059: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149430   Binder:8858_1-8871  ( 8858) [000] .... 82320.081072: binder_transaction_received: transaction=1573263
149431   Binder:8858_1-8871  ( 8858) [000] d..1 82320.081120: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149432   Binder:8858_1-8871  ( 8858) [000] d..2 82320.081146: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149433          <idle>-0     (-----) [002] .n.1 82320.081155: cpu_idle: state=4294967295 cpu_id=2
149434          <idle>-0     (-----) [002] d..2 82320.081169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149435   Binder:8858_1-8871  ( 8858) [000] d..2 82320.081209: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149436  appEventThread-8881  ( 8858) [002] d..2 82320.081225: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149437          <idle>-0     (-----) [000] d..1 82320.081232: cpu_idle: state=2 cpu_id=0
149438          <idle>-0     (-----) [002] d..1 82320.081242: cpu_idle: state=0 cpu_id=2
149439          <idle>-0     (-----) [002] d..2 82320.087255: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149440          <idle>-0     (-----) [002] dn.3 82320.087271: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149441          <idle>-0     (-----) [002] .n.1 82320.087276: cpu_idle: state=4294967295 cpu_id=2
149442          <idle>-0     (-----) [002] d..2 82320.087294: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149443     ksoftirqd/2-26    (   26) [002] d.s2 82320.087306: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
149444     ksoftirqd/2-26    (   26) [002] d.s3 82320.087354: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149445     ksoftirqd/2-26    (   26) [002] d..2 82320.087375: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149446  kworker/u16:13-1147  ( 1147) [002] d..2 82320.087492: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149447          <idle>-0     (-----) [002] d..1 82320.087510: cpu_idle: state=2 cpu_id=2
149448          <idle>-0     (-----) [001] d.s3 82320.093429: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149449          <idle>-0     (-----) [001] dns4 82320.093451: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149450          <idle>-0     (-----) [001] .n.1 82320.093471: cpu_idle: state=4294967295 cpu_id=1
149451          <idle>-0     (-----) [001] d..2 82320.093494: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
149452     kworker/1:1-25249 (25249) [001] d..2 82320.093536: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
149453     kworker/1:1-25249 (25249) [001] d..3 82320.093555: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
149454     kworker/1:1-25249 (25249) [001] d..2 82320.093593: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
149455 [email protected] (  798) [001] d..2 82320.093793: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149456          <idle>-0     (-----) [001] d..2 82320.093802: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149457          <idle>-0     (-----) [001] dn.3 82320.093816: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149458          <idle>-0     (-----) [001] d..2 82320.093832: 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
149459     ksoftirqd/1-18    (   18) [001] d..2 82320.093863: 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
149460          <idle>-0     (-----) [001] d..1 82320.093887: cpu_idle: state=0 cpu_id=1
149461          <idle>-0     (-----) [003] d.h2 82320.096103: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149462          <idle>-0     (-----) [003] dnh3 82320.096140: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149463          <idle>-0     (-----) [003] .n.1 82320.096157: cpu_idle: state=4294967295 cpu_id=3
149464          <idle>-0     (-----) [003] d..2 82320.096182: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149465        DispSync-8879  ( 8858) [003] d..1 82320.096211: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149466        DispSync-8879  ( 8858) [003] d..2 82320.096231: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149467        DispSync-8879  ( 8858) [003] d..2 82320.096299: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149468          <idle>-0     (-----) [003] d..2 82320.096308: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149469          <idle>-0     (-----) [003] dn.3 82320.096325: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149470          <idle>-0     (-----) [003] d..2 82320.096337: 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
149471     ksoftirqd/3-34    (   34) [003] d.s2 82320.096351: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149472     ksoftirqd/3-34    (   34) [003] d.s3 82320.096399: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149473          <idle>-0     (-----) [002] .n.1 82320.096406: cpu_idle: state=4294967295 cpu_id=2
149474     ksoftirqd/3-34    (   34) [003] d..2 82320.096421: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149475          <idle>-0     (-----) [002] d..2 82320.096433: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149476  appEventThread-8881  ( 8858) [002] d..3 82320.096520: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149477  kworker/u16:13-1147  ( 1147) [003] d..2 82320.096610: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149478  appEventThread-8881  ( 8858) [002] d..2 82320.096628: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149479          <idle>-0     (-----) [003] d..1 82320.096637: cpu_idle: state=2 cpu_id=3
149480          <idle>-0     (-----) [002] d..1 82320.096652: cpu_idle: state=2 cpu_id=2
149481          <idle>-0     (-----) [004] dnh2 82320.097317: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149482          <idle>-0     (-----) [004] .n.1 82320.097325: cpu_idle: state=4294967295 cpu_id=4
149483          <idle>-0     (-----) [004] d..2 82320.097339: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149484 s.nexuslauncher-10023 (10023) [004] .... 82320.097506: binder_transaction: transaction=1573264 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149485 s.nexuslauncher-10023 (10023) [004] .... 82320.097511: binder_transaction_alloc_buf: transaction=1573264 data_size=80 offsets_size=0
149486 s.nexuslauncher-10023 (10023) [004] d..4 82320.097515: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149487 s.nexuslauncher-10023 (10023) [004] d..2 82320.097605: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149488          <idle>-0     (-----) [004] d..1 82320.097621: cpu_idle: state=2 cpu_id=4
149489          <idle>-0     (-----) [000] dnh2 82320.097723: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149490          <idle>-0     (-----) [000] .n.1 82320.097736: cpu_idle: state=4294967295 cpu_id=0
149491          <idle>-0     (-----) [000] d..2 82320.097758: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149492   Binder:8858_1-8871  ( 8858) [000] .... 82320.097769: binder_transaction_received: transaction=1573264
149493   Binder:8858_1-8871  ( 8858) [000] d..1 82320.097816: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149494   Binder:8858_1-8871  ( 8858) [000] d..2 82320.097839: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149495   Binder:8858_1-8871  ( 8858) [000] d..2 82320.097901: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149496          <idle>-0     (-----) [000] d..1 82320.097924: cpu_idle: state=2 cpu_id=0
149497          <idle>-0     (-----) [002] .n.1 82320.098010: cpu_idle: state=4294967295 cpu_id=2
149498          <idle>-0     (-----) [002] d..2 82320.098034: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149499  appEventThread-8881  ( 8858) [002] d..2 82320.098118: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149500          <idle>-0     (-----) [002] d..1 82320.098140: cpu_idle: state=0 cpu_id=2
149501          <idle>-0     (-----) [001] d..2 82320.099903: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149502          <idle>-0     (-----) [001] dn.3 82320.099916: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149503          <idle>-0     (-----) [001] .n.1 82320.099922: cpu_idle: state=4294967295 cpu_id=1
149504          <idle>-0     (-----) [001] d..2 82320.099940: 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
149505     ksoftirqd/1-18    (   18) [001] d..2 82320.099980: 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
149506          <idle>-0     (-----) [001] d..1 82320.099995: cpu_idle: state=2 cpu_id=1
149507          <idle>-0     (-----) [002] d..2 82320.104154: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149508          <idle>-0     (-----) [002] dn.3 82320.104172: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149509          <idle>-0     (-----) [002] .n.1 82320.104178: cpu_idle: state=4294967295 cpu_id=2
149510          <idle>-0     (-----) [002] d..2 82320.104196: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149511     ksoftirqd/2-26    (   26) [002] d..2 82320.104237: 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
149512          <idle>-0     (-----) [002] d..1 82320.104251: cpu_idle: state=2 cpu_id=2
149513          <idle>-0     (-----) [003] d.h2 82320.112648: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149514          <idle>-0     (-----) [003] dnh3 82320.112681: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149515          <idle>-0     (-----) [003] .n.1 82320.112762: cpu_idle: state=4294967295 cpu_id=3
149516          <idle>-0     (-----) [003] d..2 82320.112783: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149517        DispSync-8879  ( 8858) [003] d..1 82320.112811: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149518        DispSync-8879  ( 8858) [003] d..2 82320.112831: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149519        DispSync-8879  ( 8858) [003] d..2 82320.112888: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149520          <idle>-0     (-----) [003] d..2 82320.112895: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149521          <idle>-0     (-----) [003] dn.3 82320.112910: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149522          <idle>-0     (-----) [003] d..2 82320.112922: 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
149523     ksoftirqd/3-34    (   34) [003] d.s2 82320.112934: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149524     ksoftirqd/3-34    (   34) [003] d.s3 82320.112957: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149525     ksoftirqd/3-34    (   34) [003] d..2 82320.112977: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149526          <idle>-0     (-----) [002] .n.1 82320.113006: cpu_idle: state=4294967295 cpu_id=2
149527          <idle>-0     (-----) [002] d..2 82320.113038: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149528  appEventThread-8881  ( 8858) [002] d..3 82320.113125: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149529  appEventThread-8881  ( 8858) [002] d..2 82320.113216: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149530  kworker/u16:13-1147  ( 1147) [003] d..2 82320.113222: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149531          <idle>-0     (-----) [002] d..1 82320.113243: cpu_idle: state=0 cpu_id=2
149532          <idle>-0     (-----) [003] d..1 82320.113252: cpu_idle: state=2 cpu_id=3
149533          <idle>-0     (-----) [004] dnh2 82320.113925: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149534          <idle>-0     (-----) [004] .n.1 82320.113934: cpu_idle: state=4294967295 cpu_id=4
149535          <idle>-0     (-----) [004] d..2 82320.113949: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149536 s.nexuslauncher-10023 (10023) [004] .... 82320.114119: binder_transaction: transaction=1573265 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149537 s.nexuslauncher-10023 (10023) [004] .... 82320.114124: binder_transaction_alloc_buf: transaction=1573265 data_size=80 offsets_size=0
149538 s.nexuslauncher-10023 (10023) [004] d..4 82320.114129: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149539 s.nexuslauncher-10023 (10023) [004] d..2 82320.114222: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149540          <idle>-0     (-----) [004] d..1 82320.114238: cpu_idle: state=2 cpu_id=4
149541          <idle>-0     (-----) [000] dnh2 82320.114336: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149542          <idle>-0     (-----) [000] .n.1 82320.114349: cpu_idle: state=4294967295 cpu_id=0
149543          <idle>-0     (-----) [000] d..2 82320.114371: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149544   Binder:8858_1-8871  ( 8858) [000] .... 82320.114384: binder_transaction_received: transaction=1573265
149545   Binder:8858_1-8871  ( 8858) [000] d..1 82320.114433: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149546   Binder:8858_1-8871  ( 8858) [000] d..2 82320.114459: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149547          <idle>-0     (-----) [002] .n.1 82320.114467: cpu_idle: state=4294967295 cpu_id=2
149548          <idle>-0     (-----) [002] d..2 82320.114481: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149549   Binder:8858_1-8871  ( 8858) [000] d..2 82320.114523: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149550  appEventThread-8881  ( 8858) [002] d..2 82320.114538: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149551          <idle>-0     (-----) [000] d..1 82320.114545: cpu_idle: state=2 cpu_id=0
149552          <idle>-0     (-----) [002] d..1 82320.114556: cpu_idle: state=0 cpu_id=2
149553          <idle>-0     (-----) [002] d..2 82320.120570: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149554          <idle>-0     (-----) [002] dn.3 82320.120587: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149555          <idle>-0     (-----) [002] .n.1 82320.120592: cpu_idle: state=4294967295 cpu_id=2
149556          <idle>-0     (-----) [002] d..2 82320.120609: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149557     ksoftirqd/2-26    (   26) [002] d.s2 82320.120625: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
149558     ksoftirqd/2-26    (   26) [002] d.s3 82320.120646: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
149559     ksoftirqd/2-26    (   26) [002] d..2 82320.120662: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
149560     kworker/2:1-25259 (25259) [002] d..2 82320.120726: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149561          <idle>-0     (-----) [002] d..1 82320.120741: cpu_idle: state=2 cpu_id=2
149562          <idle>-0     (-----) [003] d.h2 82320.129116: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149563          <idle>-0     (-----) [003] dnh3 82320.129141: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149564          <idle>-0     (-----) [003] .n.1 82320.129156: cpu_idle: state=4294967295 cpu_id=3
149565          <idle>-0     (-----) [003] d..2 82320.129176: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149566        DispSync-8879  ( 8858) [003] d..1 82320.129203: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149567        DispSync-8879  ( 8858) [003] d..2 82320.129220: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149568        DispSync-8879  ( 8858) [003] d..2 82320.129278: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149569          <idle>-0     (-----) [003] d..2 82320.129284: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149570          <idle>-0     (-----) [003] dn.3 82320.129297: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149571          <idle>-0     (-----) [003] d..2 82320.129309: 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
149572     ksoftirqd/3-34    (   34) [003] d.s2 82320.129322: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149573     ksoftirqd/3-34    (   34) [003] d.s3 82320.129344: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149574     ksoftirqd/3-34    (   34) [003] d..2 82320.129363: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149575          <idle>-0     (-----) [002] .n.1 82320.129397: cpu_idle: state=4294967295 cpu_id=2
149576          <idle>-0     (-----) [002] d..2 82320.129452: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149577  appEventThread-8881  ( 8858) [002] d..3 82320.129536: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149578  kworker/u16:13-1147  ( 1147) [003] d..2 82320.129536: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149579          <idle>-0     (-----) [003] d..1 82320.129561: cpu_idle: state=2 cpu_id=3
149580  appEventThread-8881  ( 8858) [002] d..2 82320.129624: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149581          <idle>-0     (-----) [002] d..1 82320.129653: cpu_idle: state=0 cpu_id=2
149582          <idle>-0     (-----) [004] dnh2 82320.130335: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149583          <idle>-0     (-----) [004] .n.1 82320.130344: cpu_idle: state=4294967295 cpu_id=4
149584          <idle>-0     (-----) [004] d..2 82320.130359: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149585 s.nexuslauncher-10023 (10023) [004] .... 82320.130529: binder_transaction: transaction=1573266 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149586 s.nexuslauncher-10023 (10023) [004] .... 82320.130534: binder_transaction_alloc_buf: transaction=1573266 data_size=80 offsets_size=0
149587 s.nexuslauncher-10023 (10023) [004] d..4 82320.130538: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149588 s.nexuslauncher-10023 (10023) [004] d..2 82320.130632: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149589          <idle>-0     (-----) [004] d..1 82320.130648: cpu_idle: state=2 cpu_id=4
149590          <idle>-0     (-----) [000] dnh2 82320.130745: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149591          <idle>-0     (-----) [000] .n.1 82320.130757: cpu_idle: state=4294967295 cpu_id=0
149592          <idle>-0     (-----) [000] d..2 82320.130780: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149593   Binder:8858_1-8871  ( 8858) [000] .... 82320.130792: binder_transaction_received: transaction=1573266
149594   Binder:8858_1-8871  ( 8858) [000] d..1 82320.130841: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149595   Binder:8858_1-8871  ( 8858) [000] d..2 82320.130868: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149596          <idle>-0     (-----) [002] .n.1 82320.130876: cpu_idle: state=4294967295 cpu_id=2
149597          <idle>-0     (-----) [002] d..2 82320.130891: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149598   Binder:8858_1-8871  ( 8858) [000] d..2 82320.130932: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149599  appEventThread-8881  ( 8858) [002] d..2 82320.130947: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149600          <idle>-0     (-----) [000] d..1 82320.130955: cpu_idle: state=2 cpu_id=0
149601          <idle>-0     (-----) [002] d..1 82320.130966: cpu_idle: state=0 cpu_id=2
149602          <idle>-0     (-----) [002] d..2 82320.136984: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149603          <idle>-0     (-----) [002] dn.3 82320.137002: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149604          <idle>-0     (-----) [002] .n.1 82320.137082: cpu_idle: state=4294967295 cpu_id=2
149605          <idle>-0     (-----) [002] d..2 82320.137102: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149606     ksoftirqd/2-26    (   26) [002] d..2 82320.137138: 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
149607          <idle>-0     (-----) [002] d..1 82320.137153: cpu_idle: state=2 cpu_id=2
149608          <idle>-0     (-----) [001] d.h2 82320.138395: sched_waking: comm=TaskSchedulerFo pid=25403 prio=120 target_cpu=001
149609          <idle>-0     (-----) [001] dnh3 82320.138434: sched_wakeup: comm=TaskSchedulerFo pid=25403 prio=120 target_cpu=001
149610          <idle>-0     (-----) [001] .n.1 82320.138450: cpu_idle: state=4294967295 cpu_id=1
149611          <idle>-0     (-----) [001] d..2 82320.138477: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSchedulerFo next_pid=25403 next_prio=120
149612 TaskSchedulerFo-25403 (25304) [001] d..2 82320.138622: sched_switch: prev_comm=TaskSchedulerFo prev_pid=25403 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149613          <idle>-0     (-----) [001] d..2 82320.138630: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149614          <idle>-0     (-----) [001] dn.3 82320.138645: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149615          <idle>-0     (-----) [001] d..2 82320.138657: 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
149616     ksoftirqd/1-18    (   18) [001] d.s2 82320.138671: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149617     ksoftirqd/1-18    (   18) [001] d.s3 82320.138719: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
149618     ksoftirqd/1-18    (   18) [001] d..2 82320.138739: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149619  kworker/u16:13-1147  ( 1147) [001] d..2 82320.138847: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149620          <idle>-0     (-----) [001] d..1 82320.138874: cpu_idle: state=0 cpu_id=1
149621          <idle>-0     (-----) [001] d..2 82320.144887: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149622          <idle>-0     (-----) [001] dn.3 82320.144901: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149623          <idle>-0     (-----) [001] .n.1 82320.144906: cpu_idle: state=4294967295 cpu_id=1
149624          <idle>-0     (-----) [001] d..2 82320.144924: 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
149625     ksoftirqd/1-18    (   18) [001] d..2 82320.144958: 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
149626          <idle>-0     (-----) [001] d..1 82320.144973: cpu_idle: state=2 cpu_id=1
149627          <idle>-0     (-----) [003] d.h2 82320.145578: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149628          <idle>-0     (-----) [003] dnh3 82320.145605: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149629          <idle>-0     (-----) [003] .n.1 82320.145620: cpu_idle: state=4294967295 cpu_id=3
149630          <idle>-0     (-----) [003] d..2 82320.145641: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149631        DispSync-8879  ( 8858) [003] d..1 82320.145668: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149632        DispSync-8879  ( 8858) [003] d..2 82320.145687: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149633        DispSync-8879  ( 8858) [003] d..2 82320.145745: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149634          <idle>-0     (-----) [003] d..2 82320.145752: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149635          <idle>-0     (-----) [003] dn.3 82320.145766: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149636          <idle>-0     (-----) [003] d..2 82320.145778: 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
149637     ksoftirqd/3-34    (   34) [003] d..2 82320.145807: 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
149638          <idle>-0     (-----) [003] d..1 82320.145826: cpu_idle: state=2 cpu_id=3
149639          <idle>-0     (-----) [002] .n.1 82320.145868: cpu_idle: state=4294967295 cpu_id=2
149640          <idle>-0     (-----) [002] d..2 82320.145900: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149641  appEventThread-8881  ( 8858) [002] d..3 82320.145964: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149642  appEventThread-8881  ( 8858) [002] d..2 82320.146043: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149643          <idle>-0     (-----) [002] d..1 82320.146066: cpu_idle: state=2 cpu_id=2
149644          <idle>-0     (-----) [004] dnh2 82320.146762: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149645          <idle>-0     (-----) [004] .n.1 82320.146771: cpu_idle: state=4294967295 cpu_id=4
149646          <idle>-0     (-----) [004] d..2 82320.146784: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149647 s.nexuslauncher-10023 (10023) [004] .... 82320.146949: binder_transaction: transaction=1573267 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149648 s.nexuslauncher-10023 (10023) [004] .... 82320.146954: binder_transaction_alloc_buf: transaction=1573267 data_size=80 offsets_size=0
149649 s.nexuslauncher-10023 (10023) [004] d..4 82320.146959: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149650 s.nexuslauncher-10023 (10023) [004] d..2 82320.147055: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149651          <idle>-0     (-----) [004] d..1 82320.147070: cpu_idle: state=2 cpu_id=4
149652          <idle>-0     (-----) [000] dnh2 82320.147253: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149653          <idle>-0     (-----) [000] .n.1 82320.147266: cpu_idle: state=4294967295 cpu_id=0
149654          <idle>-0     (-----) [000] d..2 82320.147288: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149655   Binder:8858_1-8871  ( 8858) [000] .... 82320.147300: binder_transaction_received: transaction=1573267
149656   Binder:8858_1-8871  ( 8858) [000] d..1 82320.147345: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149657   Binder:8858_1-8871  ( 8858) [000] d..2 82320.147370: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149658   Binder:8858_1-8871  ( 8858) [000] d..2 82320.147431: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149659          <idle>-0     (-----) [000] d..1 82320.147454: cpu_idle: state=2 cpu_id=0
149660          <idle>-0     (-----) [002] .n.1 82320.147543: cpu_idle: state=4294967295 cpu_id=2
149661          <idle>-0     (-----) [002] d..2 82320.147570: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149662  appEventThread-8881  ( 8858) [002] d..2 82320.147654: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149663          <idle>-0     (-----) [002] d..1 82320.147676: cpu_idle: state=0 cpu_id=2
149664          <idle>-0     (-----) [002] d..2 82320.153694: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149665          <idle>-0     (-----) [002] dn.3 82320.153711: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149666          <idle>-0     (-----) [002] dns3 82320.153791: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
149667          <idle>-0     (-----) [002] dns4 82320.153839: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149668          <idle>-0     (-----) [002] .n.1 82320.153855: cpu_idle: state=4294967295 cpu_id=2
149669          <idle>-0     (-----) [002] d..2 82320.153875: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149670     ksoftirqd/2-26    (   26) [002] d..2 82320.153890: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149671  kworker/u16:13-1147  ( 1147) [002] d..2 82320.154007: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149672          <idle>-0     (-----) [002] d..1 82320.154026: cpu_idle: state=2 cpu_id=2
149673          <idle>-0     (-----) [003] d.h2 82320.162052: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149674          <idle>-0     (-----) [003] dnh3 82320.162080: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149675          <idle>-0     (-----) [003] .n.1 82320.162094: cpu_idle: state=4294967295 cpu_id=3
149676          <idle>-0     (-----) [003] d..2 82320.162114: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149677        DispSync-8879  ( 8858) [003] d..1 82320.162142: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149678        DispSync-8879  ( 8858) [003] d..2 82320.162161: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149679        DispSync-8879  ( 8858) [003] d..2 82320.162218: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149680          <idle>-0     (-----) [003] d..2 82320.162225: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149681          <idle>-0     (-----) [003] dn.3 82320.162239: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149682          <idle>-0     (-----) [003] d..2 82320.162251: 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
149683     ksoftirqd/3-34    (   34) [003] d.s2 82320.162264: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149684     ksoftirqd/3-34    (   34) [003] d.s3 82320.162311: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149685     ksoftirqd/3-34    (   34) [003] d..2 82320.162333: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149686          <idle>-0     (-----) [002] .n.1 82320.162340: cpu_idle: state=4294967295 cpu_id=2
149687          <idle>-0     (-----) [002] d..2 82320.162396: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149688  appEventThread-8881  ( 8858) [002] d..3 82320.162486: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149689  appEventThread-8881  ( 8858) [002] d..2 82320.162576: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149690          <idle>-0     (-----) [002] d..1 82320.162602: cpu_idle: state=0 cpu_id=2
149691  kworker/u16:13-1147  ( 1147) [003] d..2 82320.162620: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149692          <idle>-0     (-----) [003] d..1 82320.162651: cpu_idle: state=2 cpu_id=3
149693          <idle>-0     (-----) [004] dnh2 82320.163287: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149694          <idle>-0     (-----) [004] .n.1 82320.163297: cpu_idle: state=4294967295 cpu_id=4
149695          <idle>-0     (-----) [004] d..2 82320.163310: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149696 s.nexuslauncher-10023 (10023) [004] .... 82320.163478: binder_transaction: transaction=1573268 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149697 s.nexuslauncher-10023 (10023) [004] .... 82320.163484: binder_transaction_alloc_buf: transaction=1573268 data_size=80 offsets_size=0
149698 s.nexuslauncher-10023 (10023) [004] d..4 82320.163488: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149699 s.nexuslauncher-10023 (10023) [004] d..2 82320.163582: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149700          <idle>-0     (-----) [004] d..1 82320.163596: cpu_idle: state=2 cpu_id=4
149701          <idle>-0     (-----) [000] dnh2 82320.163695: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149702          <idle>-0     (-----) [000] .n.1 82320.163708: cpu_idle: state=4294967295 cpu_id=0
149703          <idle>-0     (-----) [000] d..2 82320.163730: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149704   Binder:8858_1-8871  ( 8858) [000] .... 82320.163742: binder_transaction_received: transaction=1573268
149705   Binder:8858_1-8871  ( 8858) [000] d..1 82320.163791: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149706   Binder:8858_1-8871  ( 8858) [000] d..2 82320.163818: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149707          <idle>-0     (-----) [002] .n.1 82320.163827: cpu_idle: state=4294967295 cpu_id=2
149708          <idle>-0     (-----) [002] d..2 82320.163841: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149709   Binder:8858_1-8871  ( 8858) [000] d..2 82320.163881: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149710  appEventThread-8881  ( 8858) [002] d..2 82320.163900: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149711          <idle>-0     (-----) [000] d..1 82320.163904: cpu_idle: state=2 cpu_id=0
149712          <idle>-0     (-----) [002] d..1 82320.163919: cpu_idle: state=0 cpu_id=2
149713          <idle>-0     (-----) [002] d..2 82320.169932: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149714          <idle>-0     (-----) [002] dn.3 82320.169947: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149715          <idle>-0     (-----) [002] .n.1 82320.169953: cpu_idle: state=4294967295 cpu_id=2
149716          <idle>-0     (-----) [002] d..2 82320.169970: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149717     ksoftirqd/2-26    (   26) [002] d..2 82320.170013: 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
149718          <idle>-0     (-----) [002] d..1 82320.170026: cpu_idle: state=2 cpu_id=2
149719          <idle>-0     (-----) [003] d.h2 82320.178520: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149720          <idle>-0     (-----) [003] dnh3 82320.178553: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149721          <idle>-0     (-----) [003] .n.1 82320.178632: cpu_idle: state=4294967295 cpu_id=3
149722          <idle>-0     (-----) [003] d..2 82320.178653: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149723        DispSync-8879  ( 8858) [003] d..1 82320.178681: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149724        DispSync-8879  ( 8858) [003] d..2 82320.178700: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149725        DispSync-8879  ( 8858) [003] d..2 82320.178756: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149726          <idle>-0     (-----) [003] d..2 82320.178763: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149727          <idle>-0     (-----) [003] dn.3 82320.178777: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149728          <idle>-0     (-----) [003] d..2 82320.178790: 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
149729     ksoftirqd/3-34    (   34) [003] d.s2 82320.178802: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149730     ksoftirqd/3-34    (   34) [003] d.s3 82320.178824: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149731     ksoftirqd/3-34    (   34) [003] d..2 82320.178844: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149732          <idle>-0     (-----) [002] .n.1 82320.178876: cpu_idle: state=4294967295 cpu_id=2
149733          <idle>-0     (-----) [002] d..2 82320.178932: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149734  appEventThread-8881  ( 8858) [002] d..3 82320.179021: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149735  kworker/u16:13-1147  ( 1147) [003] d..2 82320.179044: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149736          <idle>-0     (-----) [003] d..1 82320.179068: cpu_idle: state=2 cpu_id=3
149737  appEventThread-8881  ( 8858) [002] d..2 82320.179116: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149738          <idle>-0     (-----) [002] d..1 82320.179146: cpu_idle: state=0 cpu_id=2
149739          <idle>-0     (-----) [004] dnh2 82320.179826: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149740          <idle>-0     (-----) [004] .n.1 82320.179835: cpu_idle: state=4294967295 cpu_id=4
149741          <idle>-0     (-----) [004] d..2 82320.179851: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149742 s.nexuslauncher-10023 (10023) [004] .... 82320.180018: binder_transaction: transaction=1573269 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149743 s.nexuslauncher-10023 (10023) [004] .... 82320.180024: binder_transaction_alloc_buf: transaction=1573269 data_size=80 offsets_size=0
149744 s.nexuslauncher-10023 (10023) [004] d..4 82320.180030: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149745 s.nexuslauncher-10023 (10023) [004] d..2 82320.180124: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149746          <idle>-0     (-----) [004] d..1 82320.180140: cpu_idle: state=2 cpu_id=4
149747          <idle>-0     (-----) [000] dnh2 82320.180237: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149748          <idle>-0     (-----) [000] .n.1 82320.180253: cpu_idle: state=4294967295 cpu_id=0
149749          <idle>-0     (-----) [000] d..2 82320.180275: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149750   Binder:8858_1-8871  ( 8858) [000] .... 82320.180287: binder_transaction_received: transaction=1573269
149751   Binder:8858_1-8871  ( 8858) [000] d..1 82320.180336: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149752   Binder:8858_1-8871  ( 8858) [000] d..2 82320.180363: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149753          <idle>-0     (-----) [002] .n.1 82320.180371: cpu_idle: state=4294967295 cpu_id=2
149754          <idle>-0     (-----) [002] d..2 82320.180385: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149755   Binder:8858_1-8871  ( 8858) [000] d..2 82320.180426: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149756  appEventThread-8881  ( 8858) [002] d..2 82320.180442: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149757          <idle>-0     (-----) [000] d..1 82320.180449: cpu_idle: state=2 cpu_id=0
149758          <idle>-0     (-----) [002] d..1 82320.180464: cpu_idle: state=0 cpu_id=2
149759          <idle>-0     (-----) [002] d..2 82320.183027: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149760          <idle>-0     (-----) [002] dn.3 82320.183046: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149761          <idle>-0     (-----) [002] .n.1 82320.183053: cpu_idle: state=4294967295 cpu_id=2
149762          <idle>-0     (-----) [002] d..2 82320.183072: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149763     ksoftirqd/2-26    (   26) [002] d..2 82320.183113: 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
149764          <idle>-0     (-----) [002] d..1 82320.183135: cpu_idle: state=2 cpu_id=2
149765          <idle>-0     (-----) [001] d.s3 82320.183217: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149766          <idle>-0     (-----) [001] dns4 82320.183240: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149767          <idle>-0     (-----) [001] .n.1 82320.183260: cpu_idle: state=4294967295 cpu_id=1
149768          <idle>-0     (-----) [001] d..2 82320.183282: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
149769     kworker/1:1-25249 (25249) [001] d..2 82320.183323: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
149770     kworker/1:1-25249 (25249) [001] d..3 82320.183342: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
149771     kworker/1:1-25249 (25249) [001] d..2 82320.183377: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
149772          <idle>-0     (-----) [002] ...1 82320.183500: cpu_idle: state=4294967295 cpu_id=2
149773          <idle>-0     (-----) [002] d..1 82320.183517: cpu_idle: state=0 cpu_id=2
149774 [email protected] (  798) [001] d..2 82320.183566: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149775          <idle>-0     (-----) [001] d.s4 82320.183648: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149776          <idle>-0     (-----) [001] dns5 82320.183662: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149777          <idle>-0     (-----) [001] d..2 82320.183695: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
149778     kworker/1:1-25249 (25249) [001] d..2 82320.183735: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
149779     kworker/1:1-25249 (25249) [001] d..3 82320.183751: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
149780     kworker/1:1-25249 (25249) [001] d..2 82320.183784: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
149781 [email protected] (  798) [001] d..2 82320.183954: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149782          <idle>-0     (-----) [001] d..1 82320.183991: cpu_idle: state=0 cpu_id=1
149783          <idle>-0     (-----) [001] d.s3 82320.185201: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149784          <idle>-0     (-----) [001] dns4 82320.185216: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149785          <idle>-0     (-----) [001] .n.1 82320.185246: cpu_idle: state=4294967295 cpu_id=1
149786          <idle>-0     (-----) [001] d..2 82320.185266: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
149787     kworker/1:1-25249 (25249) [001] d..2 82320.185301: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
149788     kworker/1:1-25249 (25249) [001] d..3 82320.185316: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
149789     kworker/1:1-25249 (25249) [001] d..2 82320.185350: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
149790 [email protected] (  798) [001] d..2 82320.185517: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149791          <idle>-0     (-----) [001] d..2 82320.185529: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149792          <idle>-0     (-----) [001] dn.3 82320.185543: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
149793          <idle>-0     (-----) [001] d..2 82320.185555: 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
149794     ksoftirqd/1-18    (   18) [001] d..2 82320.185584: 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
149795          <idle>-0     (-----) [001] d..1 82320.185607: cpu_idle: state=0 cpu_id=1
149796          <idle>-0     (-----) [001] d.s3 82320.185755: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149797          <idle>-0     (-----) [001] dns4 82320.185768: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
149798          <idle>-0     (-----) [001] dns3 82320.185794: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
149799          <idle>-0     (-----) [001] dns4 82320.185816: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
149800          <idle>-0     (-----) [001] .n.1 82320.185836: cpu_idle: state=4294967295 cpu_id=1
149801          <idle>-0     (-----) [001] d..2 82320.185854: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
149802     kworker/1:1-25249 (25249) [001] d..2 82320.185889: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
149803     kworker/1:1-25249 (25249) [001] d..3 82320.185912: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
149804     kworker/1:1-25249 (25249) [001] d..2 82320.185946: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
149805   cds_mc_thread-16565 (16565) [001] d..2 82320.186027: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
149806 [email protected] (  798) [001] d..2 82320.186199: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
149807          <idle>-0     (-----) [001] d..1 82320.186224: cpu_idle: state=2 cpu_id=1
149808          <idle>-0     (-----) [002] d..2 82320.189529: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149809          <idle>-0     (-----) [002] dn.3 82320.189545: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149810          <idle>-0     (-----) [002] .n.1 82320.189552: cpu_idle: state=4294967295 cpu_id=2
149811          <idle>-0     (-----) [002] d..2 82320.189571: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149812     ksoftirqd/2-26    (   26) [002] d.s2 82320.189583: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149813     ksoftirqd/2-26    (   26) [002] d.s3 82320.189637: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149814     ksoftirqd/2-26    (   26) [002] d..2 82320.189657: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149815  kworker/u16:13-1147  ( 1147) [002] d..2 82320.189776: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149816          <idle>-0     (-----) [002] d..1 82320.189800: cpu_idle: state=2 cpu_id=2
149817          <idle>-0     (-----) [003] d.h2 82320.194987: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149818          <idle>-0     (-----) [003] dnh3 82320.195020: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149819          <idle>-0     (-----) [003] .n.1 82320.195100: cpu_idle: state=4294967295 cpu_id=3
149820          <idle>-0     (-----) [003] d..2 82320.195122: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149821        DispSync-8879  ( 8858) [003] d..1 82320.195149: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149822        DispSync-8879  ( 8858) [003] d..2 82320.195170: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149823        DispSync-8879  ( 8858) [003] d..2 82320.195225: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149824          <idle>-0     (-----) [003] d..2 82320.195232: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149825          <idle>-0     (-----) [003] dn.3 82320.195247: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149826          <idle>-0     (-----) [003] d..2 82320.195259: 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
149827     ksoftirqd/3-34    (   34) [003] d..2 82320.195289: 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
149828          <idle>-0     (-----) [003] d..1 82320.195309: cpu_idle: state=2 cpu_id=3
149829          <idle>-0     (-----) [002] .n.1 82320.195348: cpu_idle: state=4294967295 cpu_id=2
149830          <idle>-0     (-----) [002] d..2 82320.195380: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149831  appEventThread-8881  ( 8858) [002] d..3 82320.195443: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149832  appEventThread-8881  ( 8858) [002] d..2 82320.195522: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149833          <idle>-0     (-----) [002] d..1 82320.195546: cpu_idle: state=0 cpu_id=2
149834          <idle>-0     (-----) [004] dnh2 82320.196245: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149835          <idle>-0     (-----) [004] .n.1 82320.196255: cpu_idle: state=4294967295 cpu_id=4
149836          <idle>-0     (-----) [004] d..2 82320.196271: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149837 s.nexuslauncher-10023 (10023) [004] .... 82320.196440: binder_transaction: transaction=1573270 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149838 s.nexuslauncher-10023 (10023) [004] .... 82320.196445: binder_transaction_alloc_buf: transaction=1573270 data_size=80 offsets_size=0
149839 s.nexuslauncher-10023 (10023) [004] d..4 82320.196450: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149840 s.nexuslauncher-10023 (10023) [004] d..2 82320.196549: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149841          <idle>-0     (-----) [004] d..1 82320.196567: cpu_idle: state=2 cpu_id=4
149842          <idle>-0     (-----) [000] dnh2 82320.196661: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149843          <idle>-0     (-----) [000] .n.1 82320.196674: cpu_idle: state=4294967295 cpu_id=0
149844          <idle>-0     (-----) [000] d..2 82320.196696: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149845   Binder:8858_1-8871  ( 8858) [000] .... 82320.196708: binder_transaction_received: transaction=1573270
149846   Binder:8858_1-8871  ( 8858) [000] d..1 82320.196758: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149847   Binder:8858_1-8871  ( 8858) [000] d..2 82320.196785: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149848          <idle>-0     (-----) [002] .n.1 82320.196793: cpu_idle: state=4294967295 cpu_id=2
149849          <idle>-0     (-----) [002] d..2 82320.196806: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149850   Binder:8858_1-8871  ( 8858) [000] d..2 82320.196851: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149851  appEventThread-8881  ( 8858) [002] d..2 82320.196863: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149852          <idle>-0     (-----) [000] d..1 82320.196874: cpu_idle: state=2 cpu_id=0
149853          <idle>-0     (-----) [002] d..1 82320.196882: cpu_idle: state=0 cpu_id=2
149854          <idle>-0     (-----) [002] d..2 82320.202896: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149855          <idle>-0     (-----) [002] dn.3 82320.202913: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149856          <idle>-0     (-----) [002] .n.1 82320.202919: cpu_idle: state=4294967295 cpu_id=2
149857          <idle>-0     (-----) [002] d..2 82320.202936: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149858     ksoftirqd/2-26    (   26) [002] d.s2 82320.202948: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149859     ksoftirqd/2-26    (   26) [002] d.s3 82320.202974: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149860     ksoftirqd/2-26    (   26) [002] d..2 82320.202994: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149861  kworker/u16:13-1147  ( 1147) [002] d..2 82320.203112: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149862          <idle>-0     (-----) [002] d..1 82320.203131: cpu_idle: state=2 cpu_id=2
149863          <idle>-0     (-----) [003] d.h2 82320.211458: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149864          <idle>-0     (-----) [003] dnh3 82320.211484: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149865          <idle>-0     (-----) [003] .n.1 82320.211500: cpu_idle: state=4294967295 cpu_id=3
149866          <idle>-0     (-----) [003] d..2 82320.211520: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149867        DispSync-8879  ( 8858) [003] d..1 82320.211547: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149868        DispSync-8879  ( 8858) [003] d..2 82320.211564: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149869        DispSync-8879  ( 8858) [003] d..2 82320.211621: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149870          <idle>-0     (-----) [003] d..2 82320.211628: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149871          <idle>-0     (-----) [003] dn.3 82320.211641: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149872          <idle>-0     (-----) [003] d..2 82320.211653: 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
149873     ksoftirqd/3-34    (   34) [003] d..2 82320.211684: 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
149874          <idle>-0     (-----) [003] d..1 82320.211703: cpu_idle: state=2 cpu_id=3
149875          <idle>-0     (-----) [002] .n.1 82320.211757: cpu_idle: state=4294967295 cpu_id=2
149876          <idle>-0     (-----) [002] dns3 82320.211896: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149877          <idle>-0     (-----) [002] dns4 82320.211926: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149878          <idle>-0     (-----) [002] d..2 82320.211968: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149879  appEventThread-8881  ( 8858) [002] d..3 82320.212031: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149880  appEventThread-8881  ( 8858) [002] d..2 82320.212086: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149881  kworker/u16:13-1147  ( 1147) [002] d..2 82320.212292: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149882          <idle>-0     (-----) [002] d..1 82320.212319: cpu_idle: state=0 cpu_id=2
149883          <idle>-0     (-----) [004] dnh2 82320.212829: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149884          <idle>-0     (-----) [004] .n.1 82320.212840: cpu_idle: state=4294967295 cpu_id=4
149885          <idle>-0     (-----) [004] d..2 82320.212856: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149886 s.nexuslauncher-10023 (10023) [004] .... 82320.213024: binder_transaction: transaction=1573271 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149887 s.nexuslauncher-10023 (10023) [004] .... 82320.213028: binder_transaction_alloc_buf: transaction=1573271 data_size=80 offsets_size=0
149888 s.nexuslauncher-10023 (10023) [004] d..4 82320.213033: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149889 s.nexuslauncher-10023 (10023) [004] d..2 82320.213129: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149890          <idle>-0     (-----) [004] d..1 82320.213147: cpu_idle: state=2 cpu_id=4
149891          <idle>-0     (-----) [000] dnh2 82320.213244: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149892          <idle>-0     (-----) [000] .n.1 82320.213257: cpu_idle: state=4294967295 cpu_id=0
149893          <idle>-0     (-----) [000] d..2 82320.213280: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149894   Binder:8858_1-8871  ( 8858) [000] .... 82320.213292: binder_transaction_received: transaction=1573271
149895   Binder:8858_1-8871  ( 8858) [000] d..1 82320.213338: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149896   Binder:8858_1-8871  ( 8858) [000] d..2 82320.213365: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149897          <idle>-0     (-----) [002] .n.1 82320.213374: cpu_idle: state=4294967295 cpu_id=2
149898          <idle>-0     (-----) [002] d..2 82320.213390: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149899   Binder:8858_1-8871  ( 8858) [000] d..2 82320.213429: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149900          <idle>-0     (-----) [000] d..1 82320.213453: cpu_idle: state=2 cpu_id=0
149901  appEventThread-8881  ( 8858) [002] d..2 82320.213456: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149902          <idle>-0     (-----) [002] d..1 82320.213476: cpu_idle: state=0 cpu_id=2
149903          <idle>-0     (-----) [002] d..2 82320.219489: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149904          <idle>-0     (-----) [002] dn.3 82320.219506: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149905          <idle>-0     (-----) [002] .n.1 82320.219512: cpu_idle: state=4294967295 cpu_id=2
149906          <idle>-0     (-----) [002] d..2 82320.219529: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149907     ksoftirqd/2-26    (   26) [002] d..2 82320.219565: 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
149908          <idle>-0     (-----) [002] d..1 82320.219579: cpu_idle: state=2 cpu_id=2
149909          <idle>-0     (-----) [003] d.h2 82320.227920: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149910          <idle>-0     (-----) [003] dnh3 82320.227948: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149911          <idle>-0     (-----) [003] .n.1 82320.227963: cpu_idle: state=4294967295 cpu_id=3
149912          <idle>-0     (-----) [003] d..2 82320.227983: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149913        DispSync-8879  ( 8858) [003] d..1 82320.228010: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149914        DispSync-8879  ( 8858) [003] d..2 82320.228027: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149915        DispSync-8879  ( 8858) [003] d..2 82320.228084: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149916          <idle>-0     (-----) [003] d..2 82320.228090: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149917          <idle>-0     (-----) [003] dn.3 82320.228106: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149918          <idle>-0     (-----) [003] d..2 82320.228118: 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
149919     ksoftirqd/3-34    (   34) [003] d.s2 82320.228131: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149920     ksoftirqd/3-34    (   34) [003] d.s3 82320.228178: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149921     ksoftirqd/3-34    (   34) [003] d..2 82320.228197: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149922          <idle>-0     (-----) [002] .n.1 82320.228206: cpu_idle: state=4294967295 cpu_id=2
149923          <idle>-0     (-----) [002] d..2 82320.228238: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149924  appEventThread-8881  ( 8858) [002] d..3 82320.228340: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149925  kworker/u16:13-1147  ( 1147) [003] d..2 82320.228366: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149926          <idle>-0     (-----) [003] d..1 82320.228390: cpu_idle: state=2 cpu_id=3
149927  appEventThread-8881  ( 8858) [002] d..2 82320.228431: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149928          <idle>-0     (-----) [002] d..1 82320.228506: cpu_idle: state=2 cpu_id=2
149929          <idle>-0     (-----) [004] dnh2 82320.229141: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149930          <idle>-0     (-----) [004] .n.1 82320.229149: cpu_idle: state=4294967295 cpu_id=4
149931          <idle>-0     (-----) [004] d..2 82320.229163: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149932 s.nexuslauncher-10023 (10023) [004] .... 82320.229329: binder_transaction: transaction=1573272 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149933 s.nexuslauncher-10023 (10023) [004] .... 82320.229334: binder_transaction_alloc_buf: transaction=1573272 data_size=80 offsets_size=0
149934 s.nexuslauncher-10023 (10023) [004] d..4 82320.229339: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149935 s.nexuslauncher-10023 (10023) [004] d..2 82320.229437: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149936          <idle>-0     (-----) [004] d..1 82320.229453: cpu_idle: state=2 cpu_id=4
149937          <idle>-0     (-----) [000] dnh2 82320.229628: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149938          <idle>-0     (-----) [000] .n.1 82320.229642: cpu_idle: state=4294967295 cpu_id=0
149939          <idle>-0     (-----) [000] d..2 82320.229663: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149940   Binder:8858_1-8871  ( 8858) [000] .... 82320.229674: binder_transaction_received: transaction=1573272
149941   Binder:8858_1-8871  ( 8858) [000] d..1 82320.229720: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149942   Binder:8858_1-8871  ( 8858) [000] d..2 82320.229743: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149943   Binder:8858_1-8871  ( 8858) [000] d..2 82320.229806: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
149944          <idle>-0     (-----) [000] d..1 82320.229828: cpu_idle: state=2 cpu_id=0
149945          <idle>-0     (-----) [002] .n.1 82320.229918: cpu_idle: state=4294967295 cpu_id=2
149946          <idle>-0     (-----) [002] d..2 82320.229945: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149947  appEventThread-8881  ( 8858) [002] d..2 82320.230028: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149948          <idle>-0     (-----) [002] d..1 82320.230050: cpu_idle: state=0 cpu_id=2
149949          <idle>-0     (-----) [002] d..2 82320.236067: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149950          <idle>-0     (-----) [002] dn.3 82320.236085: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
149951          <idle>-0     (-----) [002] dns3 82320.236161: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
149952          <idle>-0     (-----) [002] dns4 82320.236212: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149953          <idle>-0     (-----) [002] .n.1 82320.236227: cpu_idle: state=4294967295 cpu_id=2
149954          <idle>-0     (-----) [002] d..2 82320.236247: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
149955     ksoftirqd/2-26    (   26) [002] d..2 82320.236262: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149956  kworker/u16:13-1147  ( 1147) [002] d..2 82320.236378: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149957          <idle>-0     (-----) [002] d..1 82320.236397: cpu_idle: state=2 cpu_id=2
149958          <idle>-0     (-----) [003] d.h2 82320.244386: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
149959          <idle>-0     (-----) [003] dnh3 82320.244414: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
149960          <idle>-0     (-----) [003] .n.1 82320.244428: cpu_idle: state=4294967295 cpu_id=3
149961          <idle>-0     (-----) [003] d..2 82320.244449: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
149962        DispSync-8879  ( 8858) [003] d..1 82320.244476: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149963        DispSync-8879  ( 8858) [003] d..2 82320.244494: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149964        DispSync-8879  ( 8858) [003] d..2 82320.244550: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149965          <idle>-0     (-----) [003] d..2 82320.244557: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149966          <idle>-0     (-----) [003] dn.3 82320.244571: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
149967          <idle>-0     (-----) [003] d..2 82320.244585: 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
149968     ksoftirqd/3-34    (   34) [003] d.s2 82320.244597: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
149969     ksoftirqd/3-34    (   34) [003] d.s3 82320.244611: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
149970     ksoftirqd/3-34    (   34) [003] d..2 82320.244626: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
149971          <idle>-0     (-----) [002] .n.1 82320.244672: cpu_idle: state=4294967295 cpu_id=2
149972     kworker/3:1-25210 (25210) [003] d..2 82320.244672: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
149973          <idle>-0     (-----) [003] d..1 82320.244695: cpu_idle: state=2 cpu_id=3
149974          <idle>-0     (-----) [002] d..2 82320.244704: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
149975  appEventThread-8881  ( 8858) [002] d..3 82320.244768: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149976  appEventThread-8881  ( 8858) [002] d..2 82320.244851: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
149977          <idle>-0     (-----) [002] d..1 82320.244874: cpu_idle: state=0 cpu_id=2
149978          <idle>-0     (-----) [004] dnh2 82320.245569: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
149979          <idle>-0     (-----) [004] .n.1 82320.245579: cpu_idle: state=4294967295 cpu_id=4
149980          <idle>-0     (-----) [004] d..2 82320.245594: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
149981 s.nexuslauncher-10023 (10023) [004] .... 82320.245762: binder_transaction: transaction=1573273 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
149982 s.nexuslauncher-10023 (10023) [004] .... 82320.245767: binder_transaction_alloc_buf: transaction=1573273 data_size=80 offsets_size=0
149983 s.nexuslauncher-10023 (10023) [004] d..4 82320.245772: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149984 s.nexuslauncher-10023 (10023) [004] d..2 82320.245874: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
149985          <idle>-0     (-----) [004] d..2 82320.245879: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
149986          <idle>-0     (-----) [004] dn.3 82320.245887: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
149987          <idle>-0     (-----) [004] d..2 82320.245893: 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
149988     ksoftirqd/4-42    (   42) [004] d.s2 82320.245901: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
149989     ksoftirqd/4-42    (   42) [004] d..2 82320.245936: 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
149990          <idle>-0     (-----) [004] d..1 82320.245951: cpu_idle: state=2 cpu_id=4
149991          <idle>-0     (-----) [000] dnh2 82320.245977: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
149992          <idle>-0     (-----) [000] dnh2 82320.245988: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
149993          <idle>-0     (-----) [000] .n.1 82320.245999: cpu_idle: state=4294967295 cpu_id=0
149994          <idle>-0     (-----) [000] d..2 82320.246022: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
149995  kworker/u16:13-1147  ( 1147) [000] d..2 82320.246123: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
149996   Binder:8858_1-8871  ( 8858) [000] .... 82320.246134: binder_transaction_received: transaction=1573273
149997   Binder:8858_1-8871  ( 8858) [000] d..1 82320.246183: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
149998   Binder:8858_1-8871  ( 8858) [000] d..2 82320.246209: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
149999          <idle>-0     (-----) [002] .n.1 82320.246217: cpu_idle: state=4294967295 cpu_id=2
150000          <idle>-0     (-----) [002] d..2 82320.246231: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150001   Binder:8858_1-8871  ( 8858) [000] d..2 82320.246271: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150002  appEventThread-8881  ( 8858) [002] d..2 82320.246289: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150003          <idle>-0     (-----) [000] d..1 82320.246295: cpu_idle: state=2 cpu_id=0
150004          <idle>-0     (-----) [002] d..1 82320.246308: cpu_idle: state=0 cpu_id=2
150005          <idle>-0     (-----) [002] d..2 82320.252327: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
150006          <idle>-0     (-----) [002] dn.3 82320.252344: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
150007          <idle>-0     (-----) [002] .n.1 82320.252426: cpu_idle: state=4294967295 cpu_id=2
150008          <idle>-0     (-----) [002] d..2 82320.252445: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
150009     ksoftirqd/2-26    (   26) [002] d..2 82320.252481: 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
150010          <idle>-0     (-----) [002] d..1 82320.252497: cpu_idle: state=2 cpu_id=2
150011          <idle>-0     (-----) [003] d.h2 82320.260859: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
150012          <idle>-0     (-----) [003] dnh3 82320.260887: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
150013          <idle>-0     (-----) [003] .n.1 82320.260902: cpu_idle: state=4294967295 cpu_id=3
150014          <idle>-0     (-----) [003] d..2 82320.260921: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
150015        DispSync-8879  ( 8858) [003] d..1 82320.260949: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
150016        DispSync-8879  ( 8858) [003] d..2 82320.260968: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
150017        DispSync-8879  ( 8858) [003] d..2 82320.261025: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150018          <idle>-0     (-----) [003] d..2 82320.261032: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
150019          <idle>-0     (-----) [003] dn.3 82320.261046: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
150020          <idle>-0     (-----) [003] d..2 82320.261058: 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
150021     ksoftirqd/3-34    (   34) [003] d.s2 82320.261070: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
150022     ksoftirqd/3-34    (   34) [003] d.s3 82320.261118: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
150023     ksoftirqd/3-34    (   34) [003] d..2 82320.261139: sched_switch: prev_comm=ksoftirqd/3 prev_pid=34 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150024          <idle>-0     (-----) [002] .n.1 82320.261147: cpu_idle: state=4294967295 cpu_id=2
150025          <idle>-0     (-----) [002] d..2 82320.261204: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150026  appEventThread-8881  ( 8858) [002] d..3 82320.261292: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150027  kworker/u16:13-1147  ( 1147) [003] d..2 82320.261334: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150028          <idle>-0     (-----) [003] d..1 82320.261357: cpu_idle: state=2 cpu_id=3
150029  appEventThread-8881  ( 8858) [002] d..2 82320.261384: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150030          <idle>-0     (-----) [002] d..1 82320.261414: cpu_idle: state=0 cpu_id=2
150031          <idle>-0     (-----) [004] dnh2 82320.262094: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150032          <idle>-0     (-----) [004] .n.1 82320.262104: cpu_idle: state=4294967295 cpu_id=4
150033          <idle>-0     (-----) [004] d..2 82320.262118: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
150034 s.nexuslauncher-10023 (10023) [004] .... 82320.262287: binder_transaction: transaction=1573274 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
150035 s.nexuslauncher-10023 (10023) [004] .... 82320.262292: binder_transaction_alloc_buf: transaction=1573274 data_size=80 offsets_size=0
150036 s.nexuslauncher-10023 (10023) [004] d..4 82320.262298: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150037 s.nexuslauncher-10023 (10023) [004] d..2 82320.262397: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
150038          <idle>-0     (-----) [004] d..2 82320.262402: sched_waking: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
150039          <idle>-0     (-----) [004] dn.3 82320.262410: sched_wakeup: comm=ksoftirqd/4 pid=42 prio=120 target_cpu=004
150040          <idle>-0     (-----) [004] d..2 82320.262417: 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
150041     ksoftirqd/4-42    (   42) [004] d.s2 82320.262425: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
150042     ksoftirqd/4-42    (   42) [004] d..2 82320.262444: 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
150043          <idle>-0     (-----) [004] d..1 82320.262457: cpu_idle: state=2 cpu_id=4
150044          <idle>-0     (-----) [000] dnh2 82320.262508: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150045          <idle>-0     (-----) [000] .n.1 82320.262522: cpu_idle: state=4294967295 cpu_id=0
150046          <idle>-0     (-----) [000] d..2 82320.262545: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
150047   Binder:8858_1-8871  ( 8858) [000] .... 82320.262559: binder_transaction_received: transaction=1573274
150048   Binder:8858_1-8871  ( 8858) [000] d..1 82320.262611: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
150049          <idle>-0     (-----) [003] dnh2 82320.262622: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
150050          <idle>-0     (-----) [003] .n.1 82320.262636: cpu_idle: state=4294967295 cpu_id=3
150051   Binder:8858_1-8871  ( 8858) [000] d..2 82320.262639: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
150052          <idle>-0     (-----) [002] .n.1 82320.262649: cpu_idle: state=4294967295 cpu_id=2
150053          <idle>-0     (-----) [003] d..2 82320.262657: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150054          <idle>-0     (-----) [002] d..2 82320.262664: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150055   Binder:8858_1-8871  ( 8858) [000] d..2 82320.262704: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150056  appEventThread-8881  ( 8858) [002] d..2 82320.262724: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150057          <idle>-0     (-----) [000] d..1 82320.262727: cpu_idle: state=2 cpu_id=0
150058          <idle>-0     (-----) [002] d..1 82320.262742: cpu_idle: state=0 cpu_id=2
150059  kworker/u16:13-1147  ( 1147) [003] d..2 82320.262787: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150060          <idle>-0     (-----) [003] d..1 82320.262811: cpu_idle: state=0 cpu_id=3
150061          <idle>-0     (-----) [002] d..2 82320.268756: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
150062          <idle>-0     (-----) [002] dn.3 82320.268772: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
150063          <idle>-0     (-----) [002] .n.1 82320.268778: cpu_idle: state=4294967295 cpu_id=2
150064          <idle>-0     (-----) [002] d..2 82320.268795: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
150065     ksoftirqd/2-26    (   26) [002] d.s2 82320.268808: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
150066          <idle>-0     (-----) [003] ...1 82320.268826: cpu_idle: state=4294967295 cpu_id=3
150067          <idle>-0     (-----) [003] d..1 82320.268833: cpu_idle: state=2 cpu_id=3
150068     ksoftirqd/2-26    (   26) [002] d.s3 82320.268861: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150069     ksoftirqd/2-26    (   26) [002] d..2 82320.268882: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150070  kworker/u16:13-1147  ( 1147) [002] d..2 82320.269001: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150071          <idle>-0     (-----) [002] d..1 82320.269019: cpu_idle: state=2 cpu_id=2
150072          <idle>-0     (-----) [003] d.h2 82320.277328: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
150073          <idle>-0     (-----) [003] dnh3 82320.277361: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
150074          <idle>-0     (-----) [003] .n.1 82320.277439: cpu_idle: state=4294967295 cpu_id=3
150075          <idle>-0     (-----) [003] d..2 82320.277461: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
150076        DispSync-8879  ( 8858) [003] d..1 82320.277489: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
150077        DispSync-8879  ( 8858) [003] d..2 82320.277509: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
150078        DispSync-8879  ( 8858) [003] d..2 82320.277565: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150079          <idle>-0     (-----) [003] d..2 82320.277572: sched_waking: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
150080          <idle>-0     (-----) [003] dn.3 82320.277586: sched_wakeup: comm=ksoftirqd/3 pid=34 prio=120 target_cpu=003
150081          <idle>-0     (-----) [003] d..2 82320.277599: 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
150082     ksoftirqd/3-34    (   34) [003] d..2 82320.277628: 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
150083          <idle>-0     (-----) [003] d..1 82320.277650: cpu_idle: state=0 cpu_id=3
150084          <idle>-0     (-----) [002] .n.1 82320.277689: cpu_idle: state=4294967295 cpu_id=2
150085          <idle>-0     (-----) [002] d..2 82320.277725: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150086  appEventThread-8881  ( 8858) [002] d..3 82320.277792: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150087  appEventThread-8881  ( 8858) [002] d..2 82320.277891: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150088          <idle>-0     (-----) [002] d..1 82320.277920: cpu_idle: state=2 cpu_id=2
150089          <idle>-0     (-----) [003] d.h3 82320.278110: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150090          <idle>-0     (-----) [003] dnh4 82320.278142: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150091          <idle>-0     (-----) [003] .n.1 82320.278157: cpu_idle: state=4294967295 cpu_id=3
150092          <idle>-0     (-----) [003] d..2 82320.278174: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150093   kworker/u17:1-570   (  570) [003] d..2 82320.278216: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150094   kworker/u17:1-570   (  570) [003] d..3 82320.278235: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150095   kworker/u17:1-570   (  570) [003] d..2 82320.278272: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150096     kworker/3:1-25210 (25210) [003] d..2 82320.278309: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
150097     kworker/3:1-25210 (25210) [003] d..3 82320.278341: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
150098     kworker/3:1-25210 (25210) [003] d..2 82320.278367: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
150099            adbd-24054 (  960) [003] d.s2 82320.278493: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150100            adbd-24054 (  960) [003] d.s3 82320.278545: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
150101          <idle>-0     (-----) [004] dnh2 82320.278593: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150102          <idle>-0     (-----) [004] .n.1 82320.278602: cpu_idle: state=4294967295 cpu_id=4
150103          <idle>-0     (-----) [004] d..2 82320.278617: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
150104            adbd-24054 (  960) [003] d.h2 82320.278673: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150105            adbd-24054 (  960) [003] dnh3 82320.278697: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150106            adbd-24054 (  960) [003] d..2 82320.278716: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150107   kworker/u17:1-570   (  570) [003] d..2 82320.278736: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150108   kworker/u17:1-570   (  570) [003] d..3 82320.278749: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150109   kworker/u17:1-570   (  570) [003] d..2 82320.278780: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150110 s.nexuslauncher-10023 (10023) [004] .... 82320.278784: binder_transaction: transaction=1573275 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
150111 s.nexuslauncher-10023 (10023) [004] .... 82320.278789: binder_transaction_alloc_buf: transaction=1573275 data_size=80 offsets_size=0
150112 s.nexuslauncher-10023 (10023) [004] d..4 82320.278794: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150113     kworker/3:1-25210 (25210) [003] d..2 82320.278812: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
150114            adbd-24054 (  960) [003] d..2 82320.278867: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
150115 s.nexuslauncher-10023 (10023) [004] d..2 82320.278892: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
150116          <idle>-0     (-----) [004] d..1 82320.278908: cpu_idle: state=2 cpu_id=4
150117            adbd-24054 (  960) [003] d..3 82320.278930: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
150118          <idle>-0     (-----) [000] dnh2 82320.278999: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150119          <idle>-0     (-----) [000] .n.1 82320.279012: cpu_idle: state=4294967295 cpu_id=0
150120          <idle>-0     (-----) [000] d..2 82320.279038: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
150121            adbd-24054 (  960) [003] d..2 82320.279040: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150122  kworker/u16:13-1147  ( 1147) [003] d..2 82320.279215: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150123          <idle>-0     (-----) [003] d..1 82320.279243: cpu_idle: state=0 cpu_id=3
150124          <idle>-0     (-----) [003] .n.1 82320.281288: cpu_idle: state=4294967295 cpu_id=3
150125          <idle>-0     (-----) [003] d..2 82320.281310: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=27813 next_prio=120
150126            adbd-960   (  960) [000] d..2 82320.281480: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
150127   Binder:8858_1-8871  ( 8858) [000] .... 82320.281496: binder_transaction_received: transaction=1573275
150128   Binder:8858_1-8871  ( 8858) [000] d..1 82320.281542: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
150129   Binder:8858_1-8871  ( 8858) [000] d..2 82320.281568: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
150130   Binder:8858_1-8871  ( 8858) [000] d..2 82320.281635: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150131          <idle>-0     (-----) [000] d..1 82320.281661: cpu_idle: state=2 cpu_id=0
150132          <idle>-0     (-----) [002] .n.1 82320.281732: cpu_idle: state=4294967295 cpu_id=2
150133          <idle>-0     (-----) [002] d..2 82320.281761: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150134  appEventThread-8881  ( 8858) [002] d..2 82320.281913: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150135          <idle>-0     (-----) [002] d..1 82320.281937: cpu_idle: state=0 cpu_id=2
150136              sh-27813 (27813) [003] d..2 82320.282078: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
150137              sh-27813 (27813) [003] dn.3 82320.282101: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
150138              sh-27813 (27813) [003] d..2 82320.282117: sched_switch: prev_comm=adbd prev_pid=27813 prev_prio=120 prev_state=R+ ==> next_comm=migration/3 next_pid=33 next_prio=0
150139          <idle>-0     (-----) [002] .n.1 82320.282165: cpu_idle: state=4294967295 cpu_id=2
150140          <idle>-0     (-----) [002] d..2 82320.282183: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=27813 next_prio=120
150141     migration/3-33    (   33) [003] d..2 82320.282191: 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
150142          <idle>-0     (-----) [003] d..1 82320.282222: cpu_idle: state=0 cpu_id=3
150143              sh-27813 (27813) [002] d..2 82320.283642: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
150144              sh-27813 (27813) [002] d..3 82320.283717: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
150145          <idle>-0     (-----) [003] .n.1 82320.283725: cpu_idle: state=4294967295 cpu_id=3
150146              sh-27813 (27813) [002] d..2 82320.283732: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
150147          <idle>-0     (-----) [003] d..2 82320.283743: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
150148              sh-27813 (27813) [002] d..3 82320.283778: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
150149            adbd-960   (  960) [003] d..2 82320.283797: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=R+ ==> next_comm=rcuop/2 next_pid=29 next_prio=120
150150         rcuop/2-29    (   29) [003] d..2 82320.283811: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
150151         rcuop/2-29    (   29) [003] d..3 82320.283872: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150152         rcuop/2-29    (   29) [003] d..2 82320.283889: 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
150153     rcu_preempt-7     (    7) [003] d..2 82320.283911: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
150154            adbd-960   (  960) [003] d..1 82320.284414: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
150155            adbd-960   (  960) [003] d..2 82320.284473: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150156              sh-27813 (27813) [002] d..2 82320.284500: sched_switch: prev_comm=sh prev_pid=27813 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=24055 next_prio=120
150157            adbd-960   (  960) [003] d.h2 82320.284657: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150158            adbd-24055 (  960) [002] d..2 82320.284659: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=27813 next_prio=120
150159            adbd-960   (  960) [003] d.h3 82320.284714: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
150160              sh-27813 (27813) [002] d..2 82320.284733: sched_switch: prev_comm=sh prev_pid=27813 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150161   kworker/u17:1-570   (  570) [002] d..2 82320.284757: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
150162            adbd-960   (  960) [003] d..2 82320.284779: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=27814 next_prio=120
150163   kworker/u17:1-570   (  570) [002] d..3 82320.284780: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
150164   kworker/u17:1-570   (  570) [002] d..2 82320.284813: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
150165     kworker/2:1-25259 (25259) [002] d..2 82320.284828: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
150166     kworker/2:1-25259 (25259) [002] d..3 82320.284890: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
150167 shell svc 27813-27814 (  960) [003] d..2 82320.284913: sched_switch: prev_comm=shell svc 27813 prev_pid=27814 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
150168     kworker/2:1-25259 (25259) [002] d..2 82320.284940: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=27813 next_prio=120
150169            adbd-24055 (  960) [003] d..2 82320.284988: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150170          <idle>-0     (-----) [003] d..1 82320.285018: cpu_idle: state=0 cpu_id=3
150171          <idle>-0     (-----) [003] d.h3 82320.285268: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
150172          <idle>-0     (-----) [003] dnh4 82320.285309: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150173          <idle>-0     (-----) [003] .n.1 82320.285325: cpu_idle: state=4294967295 cpu_id=3
150174          <idle>-0     (-----) [003] d..2 82320.285350: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150175   kworker/u17:1-570   (  570) [003] d..2 82320.285373: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150176   kworker/u17:1-570   (  570) [003] d..3 82320.285388: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150177   kworker/u17:1-570   (  570) [003] d..2 82320.285420: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150178     kworker/3:1-25210 (25210) [003] d..2 82320.285441: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
150179     kworker/3:1-25210 (25210) [003] d..3 82320.285462: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
150180     kworker/3:1-25210 (25210) [003] d..2 82320.285485: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
150181            adbd-24054 (  960) [003] d..2 82320.285629: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150182          <idle>-0     (-----) [003] d.h4 82320.285657: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150183          <idle>-0     (-----) [003] dnh5 82320.285671: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150184          <idle>-0     (-----) [003] d..2 82320.285688: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150185   kworker/u17:1-570   (  570) [003] d..2 82320.285705: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150186   kworker/u17:1-570   (  570) [003] d..3 82320.285717: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150187   kworker/u17:1-570   (  570) [003] d..2 82320.285747: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150188     kworker/3:1-25210 (25210) [003] d..2 82320.285762: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
150189     kworker/3:1-25210 (25210) [003] d..3 82320.285782: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
150190     kworker/3:1-25210 (25210) [003] d..2 82320.285801: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
150191            adbd-24054 (  960) [003] d..2 82320.285842: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
150192            adbd-24054 (  960) [003] d..3 82320.285857: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
150193            adbd-24054 (  960) [003] d..2 82320.285948: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
150194            adbd-960   (  960) [003] d..2 82320.286087: sched_waking: comm=shell svc 27813 pid=27814 prio=120 target_cpu=003
150195            adbd-960   (  960) [003] d..3 82320.286108: sched_wakeup: comm=shell svc 27813 pid=27814 prio=120 target_cpu=003
150196            adbd-960   (  960) [003] d..1 82320.286127: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
150197            adbd-960   (  960) [003] d..2 82320.286168: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
150198            adbd-960   (  960) [003] d..2 82320.286262: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
150199            adbd-24055 (  960) [003] d..2 82320.286365: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=shell svc 27813 next_pid=27814 next_prio=120
150200 shell svc 27813-27814 (  960) [003] d.h4 82320.286392: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150201 shell svc 27813-27814 (  960) [003] dnh5 82320.286416: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150202 shell svc 27813-27814 (  960) [003] d..2 82320.286432: sched_switch: prev_comm=shell svc 27813 prev_pid=27814 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150203   kworker/u17:1-570   (  570) [003] d..2 82320.286449: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150204   kworker/u17:1-570   (  570) [003] d..3 82320.286460: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150205   kworker/u17:1-570   (  570) [003] d..2 82320.286490: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150206     kworker/3:1-25210 (25210) [003] d..2 82320.286502: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
150207     kworker/3:1-25210 (25210) [003] d..3 82320.286555: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150208              sh-27813 (27813) [002] d..2 82320.286583: sched_switch: prev_comm=sh prev_pid=27813 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=24055 next_prio=120
150209     kworker/3:1-25210 (25210) [003] d..2 82320.286612: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=shell svc 27813 next_pid=27814 next_prio=120
150210            adbd-24055 (  960) [002] d..2 82320.286639: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=27813 next_prio=120
150211 shell svc 27813-27814 (  960) [003] d..2 82320.286711: sched_switch: prev_comm=shell svc 27813 prev_pid=27814 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150212          <idle>-0     (-----) [003] d..1 82320.286731: cpu_idle: state=0 cpu_id=3
150213          <idle>-0     (-----) [003] d.s2 82320.288481: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150214              sh-27813 (27813) [002] d.s2 82320.288504: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
150215          <idle>-0     (-----) [003] dns3 82320.288505: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150216          <idle>-0     (-----) [003] .n.1 82320.288521: cpu_idle: state=4294967295 cpu_id=3
150217          <idle>-0     (-----) [003] d..2 82320.288535: 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
150218              sh-27813 (27813) [002] d.s3 82320.288552: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
150219     rcu_preempt-7     (    7) [003] d..2 82320.288568: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150220              sh-27813 (27813) [002] d.s2 82320.288577: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
150221              sh-27813 (27813) [002] d.s3 82320.288634: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
150222              sh-27813 (27813) [002] d.s2 82320.288647: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150223              sh-27813 (27813) [002] d.s3 82320.288664: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150224  kworker/u16:13-1147  ( 1147) [003] .... 82320.288723: clk_set_rate: l3_cluster0_vote_clk 403200000
150225  kworker/u16:13-1147  ( 1147) [003] .... 82320.288739: clk_set_rate: l3_clk 403200000
150226  kworker/u16:13-1147  ( 1147) [003] d..2 82320.289039: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
150227  kworker/u16:15-1311  ( 1311) [003] d..2 82320.289057: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
150228     rcu_preempt-7     (    7) [003] d..2 82320.289066: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
150229     rcu_preempt-7     (    7) [003] d..3 82320.289088: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
150230     rcu_preempt-7     (    7) [003] d..2 82320.289101: 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
150231         rcuop/2-29    (   29) [003] d..2 82320.289114: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150232         rcuop/2-29    (   29) [003] d..3 82320.289130: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150233         rcuop/2-29    (   29) [003] d..2 82320.289141: 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
150234     rcu_preempt-7     (    7) [003] d..2 82320.289176: 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
150235          <idle>-0     (-----) [003] d..1 82320.289196: cpu_idle: state=0 cpu_id=3
150236          <idle>-0     (-----) [001] d.s3 82320.289268: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
150237          <idle>-0     (-----) [001] d.s4 82320.289291: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
150238          <idle>-0     (-----) [001] d.s4 82320.289305: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
150239          <idle>-0     (-----) [003] .n.1 82320.289313: cpu_idle: state=4294967295 cpu_id=3
150240          <idle>-0     (-----) [001] ...1 82320.289322: cpu_idle: state=4294967295 cpu_id=1
150241          <idle>-0     (-----) [003] d..2 82320.289329: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150242          <idle>-0     (-----) [001] d..1 82320.289335: cpu_idle: state=2 cpu_id=1
150243  kworker/u16:13-1147  ( 1147) [003] d..2 82320.289367: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150244          <idle>-0     (-----) [003] d..1 82320.289379: cpu_idle: state=0 cpu_id=3
150245              sh-27813 (27813) [002] d.H2 82320.291910: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
150246              sh-27813 (27813) [002] d.H3 82320.291951: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
150247          <idle>-0     (-----) [003] .n.1 82320.291957: cpu_idle: state=4294967295 cpu_id=3
150248          <idle>-0     (-----) [003] d..2 82320.291972: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
150249         sugov:0-576   (  576) [003] .... 82320.292015: clk_set_rate: pwrcl_clk 748800000
150250         sugov:0-576   (  576) [003] .... 82320.292028: clk_set_rate: cpu3_pwrcl_clk 652800000
150251         sugov:0-576   (  576) [003] .... 82320.292038: clk_set_rate: cpu2_pwrcl_clk 652800000
150252         sugov:0-576   (  576) [003] .... 82320.292047: clk_set_rate: cpu1_pwrcl_clk 652800000
150253         sugov:0-576   (  576) [003] .... 82320.292055: clk_set_rate: cpu0_pwrcl_clk 748800000
150254         sugov:0-576   (  576) [003] .... 82320.292066: cpu_frequency: state=748800 cpu_id=0
150255         sugov:0-576   (  576) [003] .... 82320.292097: cpu_frequency: state=748800 cpu_id=1
150256         sugov:0-576   (  576) [003] .... 82320.292102: cpu_frequency: state=748800 cpu_id=2
150257         sugov:0-576   (  576) [003] .... 82320.292108: cpu_frequency: state=748800 cpu_id=3
150258         sugov:0-576   (  576) [003] d..2 82320.292148: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150259          <idle>-0     (-----) [003] d..1 82320.292160: cpu_idle: state=0 cpu_id=3
150260          <idle>-0     (-----) [003] d.h2 82320.293520: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
150261          <idle>-0     (-----) [003] dnh3 82320.293536: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
150262          <idle>-0     (-----) [003] .n.1 82320.293546: cpu_idle: state=4294967295 cpu_id=3
150263          <idle>-0     (-----) [003] d..2 82320.293554: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
150264        DispSync-8879  ( 8858) [003] d..1 82320.293581: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
150265        DispSync-8879  ( 8858) [003] d..2 82320.293608: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
150266        DispSync-8879  ( 8858) [003] d..2 82320.293645: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150267          <idle>-0     (-----) [003] d..1 82320.293657: cpu_idle: state=0 cpu_id=3
150268          <idle>-0     (-----) [001] .n.1 82320.293770: cpu_idle: state=4294967295 cpu_id=1
150269          <idle>-0     (-----) [001] d..2 82320.293799: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150270  appEventThread-8881  ( 8858) [001] d..3 82320.293869: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150271  appEventThread-8881  ( 8858) [001] d..2 82320.293954: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150272          <idle>-0     (-----) [001] d..1 82320.293977: cpu_idle: state=2 cpu_id=1
150273          <idle>-0     (-----) [004] dnh2 82320.294657: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150274          <idle>-0     (-----) [004] .n.1 82320.294665: cpu_idle: state=4294967295 cpu_id=4
150275          <idle>-0     (-----) [004] d..2 82320.294677: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
150276 s.nexuslauncher-10023 (10023) [004] .... 82320.294883: binder_transaction: transaction=1573276 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
150277 s.nexuslauncher-10023 (10023) [004] .... 82320.294889: binder_transaction_alloc_buf: transaction=1573276 data_size=80 offsets_size=0
150278 s.nexuslauncher-10023 (10023) [004] d..4 82320.294894: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150279 s.nexuslauncher-10023 (10023) [004] d..2 82320.294986: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
150280          <idle>-0     (-----) [004] d..1 82320.295000: cpu_idle: state=2 cpu_id=4
150281          <idle>-0     (-----) [000] dnh2 82320.295076: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150282          <idle>-0     (-----) [000] .n.1 82320.295088: cpu_idle: state=4294967295 cpu_id=0
150283          <idle>-0     (-----) [000] d..2 82320.295107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
150284          <idle>-0     (-----) [003] d.s2 82320.295137: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150285          <idle>-0     (-----) [003] dns3 82320.295162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150286   Binder:8858_1-8871  ( 8858) [000] .... 82320.295169: binder_transaction_received: transaction=1573276
150287          <idle>-0     (-----) [003] .n.1 82320.295184: cpu_idle: state=4294967295 cpu_id=3
150288          <idle>-0     (-----) [003] d..2 82320.295195: 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
150289   Binder:8858_1-8871  ( 8858) [000] d..1 82320.295215: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
150290     rcu_preempt-7     (    7) [003] d..2 82320.295229: 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
150291   Binder:8858_1-8871  ( 8858) [000] d..2 82320.295236: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
150292          <idle>-0     (-----) [003] d..1 82320.295245: cpu_idle: state=2 cpu_id=3
150293   Binder:8858_1-8871  ( 8858) [000] d..2 82320.295292: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150294          <idle>-0     (-----) [000] d..1 82320.295313: cpu_idle: state=2 cpu_id=0
150295          <idle>-0     (-----) [001] .n.1 82320.295383: cpu_idle: state=4294967295 cpu_id=1
150296          <idle>-0     (-----) [001] d..2 82320.295405: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150297  appEventThread-8881  ( 8858) [001] d..2 82320.295481: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150298          <idle>-0     (-----) [001] d..1 82320.295500: cpu_idle: state=0 cpu_id=1
150299          <idle>-0     (-----) [001] d.s3 82320.295880: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150300          <idle>-0     (-----) [001] dns4 82320.295896: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150301          <idle>-0     (-----) [001] .n.1 82320.295914: cpu_idle: state=4294967295 cpu_id=1
150302          <idle>-0     (-----) [001] d..2 82320.295931: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150303     kworker/1:1-25249 (25249) [001] d..2 82320.295976: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
150304     kworker/1:1-25249 (25249) [001] d..3 82320.295993: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
150305     kworker/1:1-25249 (25249) [001] d..2 82320.296028: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
150306 [email protected] (  798) [001] d..2 82320.296203: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150307          <idle>-0     (-----) [001] d..1 82320.296226: cpu_idle: state=0 cpu_id=1
150308          <idle>-0     (-----) [001] d.s3 82320.296382: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150309          <idle>-0     (-----) [001] dns4 82320.296394: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150310          <idle>-0     (-----) [001] .n.1 82320.296415: cpu_idle: state=4294967295 cpu_id=1
150311          <idle>-0     (-----) [001] d..2 82320.296430: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150312     kworker/1:1-25249 (25249) [001] d..2 82320.296463: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
150313     kworker/1:1-25249 (25249) [001] d..3 82320.296476: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
150314     kworker/1:1-25249 (25249) [001] d..2 82320.296508: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
150315 [email protected] (  798) [001] d..2 82320.296761: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150316          <idle>-0     (-----) [001] d..1 82320.296789: cpu_idle: state=0 cpu_id=1
150317          <idle>-0     (-----) [001] d.s3 82320.297526: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150318          <idle>-0     (-----) [001] dns4 82320.297539: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150319          <idle>-0     (-----) [001] .n.1 82320.297563: cpu_idle: state=4294967295 cpu_id=1
150320          <idle>-0     (-----) [001] d..2 82320.297578: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150321     kworker/1:1-25249 (25249) [001] d..2 82320.297610: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
150322     kworker/1:1-25249 (25249) [001] d..3 82320.297623: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
150323     kworker/1:1-25249 (25249) [001] d..2 82320.297652: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
150324 [email protected] (  798) [001] d..2 82320.297787: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150325          <idle>-0     (-----) [001] d..1 82320.297808: cpu_idle: state=0 cpu_id=1
150326          <idle>-0     (-----) [001] d.s3 82320.298214: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150327          <idle>-0     (-----) [001] dns4 82320.298226: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150328          <idle>-0     (-----) [001] dns3 82320.298251: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
150329          <idle>-0     (-----) [001] dns4 82320.298272: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
150330          <idle>-0     (-----) [001] .n.1 82320.298291: cpu_idle: state=4294967295 cpu_id=1
150331          <idle>-0     (-----) [001] d..2 82320.298307: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150332     kworker/1:1-25249 (25249) [001] d..2 82320.298338: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
150333     kworker/1:1-25249 (25249) [001] d..3 82320.298356: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
150334     kworker/1:1-25249 (25249) [001] d..2 82320.298385: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
150335   cds_mc_thread-16565 (16565) [001] d..2 82320.298420: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
150336   cds_mc_thread-16565 (16565) [001] d..3 82320.298443: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
150337              sh-27813 (27813) [002] d.s2 82320.298491: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
150338              sh-27813 (27813) [002] d.s3 82320.298552: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
150339   cds_mc_thread-16565 (16565) [001] d..2 82320.298568: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
150340 wlan_logging_th-647   (  647) [001] d..2 82320.298608: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150341  kworker/u16:13-1147  ( 1147) [001] d..2 82320.298825: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> [email protected] next_pid=16588 next_prio=120
150342 [email protected] (  798) [001] d.s4 82320.298864: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
150343 [email protected] (  798) [001] d.s5 82320.298882: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
150344 [email protected] (  798) [001] dns5 82320.298890: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
150345 [email protected] (  798) [001] d..2 82320.298904: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150346  kworker/u16:13-1147  ( 1147) [001] .... 82320.298995: clk_set_rate: l3_cluster0_vote_clk 576000000
150347  kworker/u16:13-1147  ( 1147) [001] .... 82320.299002: clk_set_rate: l3_clk 576000000
150348  kworker/u16:13-1147  ( 1147) [001] d..2 82320.299055: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
150349 [email protected] (  798) [001] d..2 82320.299243: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150350          <idle>-0     (-----) [001] d..1 82320.299263: cpu_idle: state=0 cpu_id=1
150351          <idle>-0     (-----) [001] ...1 82320.300845: cpu_idle: state=4294967295 cpu_id=1
150352          <idle>-0     (-----) [001] d..1 82320.300851: cpu_idle: state=2 cpu_id=1
150353          <idle>-0     (-----) [003] d.s2 82320.301968: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150354          <idle>-0     (-----) [003] dns3 82320.301992: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150355          <idle>-0     (-----) [003] .n.1 82320.302001: cpu_idle: state=4294967295 cpu_id=3
150356          <idle>-0     (-----) [003] d..2 82320.302016: 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
150357     rcu_preempt-7     (    7) [003] d..2 82320.302026: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
150358     rcu_preempt-7     (    7) [003] d..3 82320.302045: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
150359     rcu_preempt-7     (    7) [003] d..2 82320.302057: 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
150360         rcuop/2-29    (   29) [003] d..2 82320.302063: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
150361         rcuop/2-29    (   29) [003] d..3 82320.302081: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
150362         rcuop/2-29    (   29) [003] d..2 82320.302098: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150363         rcuop/2-29    (   29) [003] d..3 82320.302111: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150364         rcuop/2-29    (   29) [003] d..2 82320.302121: 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
150365         rcuop/3-37    (   37) [003] d..2 82320.302139: 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
150366     rcu_preempt-7     (    7) [003] d..2 82320.302171: 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
150367          <idle>-0     (-----) [003] d..1 82320.302187: cpu_idle: state=2 cpu_id=3
150368              sh-27813 (27813) [002] d..2 82320.302304: sched_waking: comm=shell svc 27813 pid=27814 prio=120 target_cpu=003
150369              sh-27813 (27813) [002] d..3 82320.302332: sched_wakeup: comm=shell svc 27813 pid=27814 prio=120 target_cpu=002
150370              sh-27813 (27813) [002] d..2 82320.302365: sched_switch: prev_comm=sh prev_pid=27813 prev_prio=120 prev_state=S ==> next_comm=shell svc 27813 next_pid=27814 next_prio=120
150371 shell svc 27813-27814 (  960) [002] d..2 82320.302396: sched_waking: comm=sh pid=27813 prio=120 target_cpu=002
150372 shell svc 27813-27814 (  960) [002] d..3 82320.302409: sched_wakeup: comm=sh pid=27813 prio=120 target_cpu=002
150373 shell svc 27813-27814 (  960) [002] d..2 82320.302427: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
150374 shell svc 27813-27814 (  960) [002] d..3 82320.302468: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
150375 shell svc 27813-27814 (  960) [002] d..2 82320.302493: sched_switch: prev_comm=shell svc 27813 prev_pid=27814 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=27813 next_prio=120
150376              sh-27813 (27813) [002] d..2 82320.302521: sched_switch: prev_comm=sh prev_pid=27813 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150377          <idle>-0     (-----) [002] d..1 82320.302546: cpu_idle: state=0 cpu_id=2
150378          <idle>-0     (-----) [003] .n.1 82320.302610: cpu_idle: state=4294967295 cpu_id=3
150379          <idle>-0     (-----) [003] d..2 82320.302640: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
150380            adbd-960   (  960) [003] d..1 82320.302789: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
150381            adbd-960   (  960) [003] d..2 82320.302850: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
150382            adbd-960   (  960) [003] d..2 82320.302933: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
150383            adbd-24055 (  960) [003] d..2 82320.303048: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150384          <idle>-0     (-----) [003] d.h4 82320.303077: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150385          <idle>-0     (-----) [003] dnh5 82320.303096: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150386          <idle>-0     (-----) [003] d..2 82320.303112: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150387   kworker/u17:1-570   (  570) [003] d..2 82320.303129: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150388   kworker/u17:1-570   (  570) [003] d..3 82320.303141: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150389   kworker/u17:1-570   (  570) [003] d..2 82320.303169: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150390     kworker/3:1-25210 (25210) [003] d..2 82320.303181: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
150391     kworker/3:1-25210 (25210) [003] d..3 82320.303197: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
150392     kworker/3:1-25210 (25210) [003] d..2 82320.303214: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
150393            adbd-24055 (  960) [003] d..2 82320.303297: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150394          <idle>-0     (-----) [003] d.h4 82320.303321: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150395          <idle>-0     (-----) [003] dnh5 82320.303332: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150396          <idle>-0     (-----) [003] d..2 82320.303346: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150397   kworker/u17:1-570   (  570) [003] d..2 82320.303358: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150398   kworker/u17:1-570   (  570) [003] d..3 82320.303368: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150399   kworker/u17:1-570   (  570) [003] d..2 82320.303393: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150400     kworker/3:1-25210 (25210) [003] d..2 82320.303403: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
150401     kworker/3:1-25210 (25210) [003] d..3 82320.303418: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
150402     kworker/3:1-25210 (25210) [003] d..2 82320.303434: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
150403            adbd-24055 (  960) [003] d..2 82320.303521: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150404          <idle>-0     (-----) [003] d..1 82320.303548: cpu_idle: state=0 cpu_id=3
150405          <idle>-0     (-----) [003] d.h3 82320.303601: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150406          <idle>-0     (-----) [003] dnh4 82320.303613: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150407          <idle>-0     (-----) [003] .n.1 82320.303622: cpu_idle: state=4294967295 cpu_id=3
150408          <idle>-0     (-----) [003] d..2 82320.303636: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150409   kworker/u17:1-570   (  570) [003] d..2 82320.303650: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150410   kworker/u17:1-570   (  570) [003] d..3 82320.303660: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150411   kworker/u17:1-570   (  570) [003] d..2 82320.303685: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150412     kworker/3:1-25210 (25210) [003] d..2 82320.303700: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
150413     kworker/3:1-25210 (25210) [003] d..3 82320.303720: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
150414     kworker/3:1-25210 (25210) [003] d..2 82320.303737: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
150415            adbd-24054 (  960) [003] d..2 82320.303767: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
150416            adbd-24054 (  960) [003] d..3 82320.303779: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
150417            adbd-24054 (  960) [003] d..2 82320.303857: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
150418            adbd-960   (  960) [003] d..2 82320.304005: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150419          <idle>-0     (-----) [003] d..1 82320.304023: cpu_idle: state=0 cpu_id=3
150420          <idle>-0     (-----) [003] d.h3 82320.304176: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150421          <idle>-0     (-----) [003] dnh4 82320.304189: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150422          <idle>-0     (-----) [003] .n.1 82320.304199: cpu_idle: state=4294967295 cpu_id=3
150423          <idle>-0     (-----) [003] d..2 82320.304212: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150424   kworker/u17:1-570   (  570) [003] d..2 82320.304227: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150425   kworker/u17:1-570   (  570) [003] d..3 82320.304238: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150426   kworker/u17:1-570   (  570) [003] d..2 82320.304264: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150427     kworker/3:1-25210 (25210) [003] d..2 82320.304277: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
150428     kworker/3:1-25210 (25210) [003] d..3 82320.304295: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
150429     kworker/3:1-25210 (25210) [003] d..2 82320.304311: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
150430            adbd-24054 (  960) [003] d..2 82320.304399: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150431          <idle>-0     (-----) [003] d.h4 82320.304423: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150432          <idle>-0     (-----) [003] dnh5 82320.304434: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150433          <idle>-0     (-----) [003] d..2 82320.304448: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150434   kworker/u17:1-570   (  570) [003] d..2 82320.304460: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150435   kworker/u17:1-570   (  570) [003] d..3 82320.304470: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150436   kworker/u17:1-570   (  570) [003] d..2 82320.304497: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150437     kworker/3:1-25210 (25210) [003] d..2 82320.304517: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
150438     kworker/3:1-25210 (25210) [003] d..3 82320.304537: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
150439     kworker/3:1-25210 (25210) [003] d..2 82320.304553: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
150440            adbd-24054 (  960) [003] d..2 82320.304573: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
150441            adbd-24054 (  960) [003] d..3 82320.304584: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
150442            adbd-24054 (  960) [003] d..2 82320.304654: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
150443            adbd-960   (  960) [003] d..2 82320.304740: sched_waking: comm=shell svc 27813 pid=27814 prio=120 target_cpu=002
150444            adbd-960   (  960) [003] d..3 82320.304762: sched_wakeup: comm=shell svc 27813 pid=27814 prio=120 target_cpu=003
150445            adbd-960   (  960) [003] d..1 82320.304777: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
150446            adbd-960   (  960) [003] d..2 82320.304803: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150447          <idle>-0     (-----) [002] .n.1 82320.304812: cpu_idle: state=4294967295 cpu_id=2
150448          <idle>-0     (-----) [002] d..2 82320.304826: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
150449            adbd-960   (  960) [003] d..2 82320.304872: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=shell svc 27813 next_pid=27814 next_prio=120
150450 shell svc 27813-27814 (  960) [003] d.h2 82320.304919: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150451            adbd-24055 (  960) [002] d..2 82320.304924: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150452          <idle>-0     (-----) [002] d..1 82320.304943: cpu_idle: state=0 cpu_id=2
150453 shell svc 27813-27814 (  960) [003] d.h3 82320.304948: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
150454          <idle>-0     (-----) [002] .n.1 82320.304952: cpu_idle: state=4294967295 cpu_id=2
150455          <idle>-0     (-----) [002] d..2 82320.304966: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150456 shell svc 27813-27814 (  960) [003] d..2 82320.304971: sched_waking: comm=sh pid=27813 prio=120 target_cpu=002
150457   kworker/u17:1-570   (  570) [002] d..2 82320.304982: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
150458 shell svc 27813-27814 (  960) [003] d..3 82320.304989: sched_wakeup: comm=sh pid=27813 prio=120 target_cpu=003
150459   kworker/u17:1-570   (  570) [002] d..3 82320.304999: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
150460   kworker/u17:1-570   (  570) [002] d..2 82320.305026: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
150461 shell svc 27813-27814 (  960) [003] d..2 82320.305037: sched_switch: prev_comm=shell svc 27813 prev_pid=27814 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=27813 next_prio=120
150462     kworker/2:1-25259 (25259) [002] d..2 82320.305038: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
150463     kworker/2:1-25259 (25259) [002] d..3 82320.305057: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150464     kworker/2:1-25259 (25259) [002] d..2 82320.305074: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
150465            adbd-24055 (  960) [002] d..2 82320.305107: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150466          <idle>-0     (-----) [002] d..1 82320.305168: cpu_idle: state=0 cpu_id=2
150467          <idle>-0     (-----) [002] .n.1 82320.306108: cpu_idle: state=4294967295 cpu_id=2
150468          <idle>-0     (-----) [002] d..2 82320.306123: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27815 next_prio=120
150469              sh-27813 (27813) [003] d..2 82320.306261: sched_switch: prev_comm=sh prev_pid=27813 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150470          <idle>-0     (-----) [003] d..1 82320.306285: cpu_idle: state=0 cpu_id=3
150471              sh-27815 (27815) [002] ...1 82320.306690: tracing_mark_write: trace_event_clock_sync: name=ef30a0c0-ae4b-475d-af26-7c3ad3276ffe
150472              sh-27815 (27815) [002] d..3 82320.307485: sched_waking: comm=sh pid=27813 prio=120 target_cpu=003
150473              sh-27815 (27815) [002] d..4 82320.307506: sched_wakeup: comm=sh pid=27813 prio=120 target_cpu=003
150474          <idle>-0     (-----) [003] .n.1 82320.307512: cpu_idle: state=4294967295 cpu_id=3
150475          <idle>-0     (-----) [003] d..2 82320.307526: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27813 next_prio=120
150476              sh-27815 (27815) [002] d..2 82320.307539: sched_switch: prev_comm=sh prev_pid=27815 prev_prio=120 prev_state=x ==> next_comm=swapper/2 next_pid=0 next_prio=120
150477          <idle>-0     (-----) [002] d..1 82320.307574: cpu_idle: state=0 cpu_id=2
150478              sh-27813 (27813) [003] d..2 82320.307694: sched_waking: comm=shell svc 27813 pid=27814 prio=120 target_cpu=003
150479              sh-27813 (27813) [003] d..3 82320.307713: sched_wakeup: comm=shell svc 27813 pid=27814 prio=120 target_cpu=003
150480              sh-27813 (27813) [003] d.s1 82320.308503: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
150481              sh-27813 (27813) [003] d.s2 82320.308537: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150482              sh-27813 (27813) [003] d.s2 82320.308544: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
150483          <idle>-0     (-----) [002] .n.1 82320.308546: cpu_idle: state=4294967295 cpu_id=2
150484          <idle>-0     (-----) [002] d..2 82320.308563: 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
150485              sh-27813 (27813) [003] d.s3 82320.308582: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150486     rcu_preempt-7     (    7) [002] d..2 82320.308596: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150487              sh-27813 (27813) [003] d.s2 82320.308602: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
150488              sh-27813 (27813) [003] d.s3 82320.308641: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
150489  kworker/u16:13-1147  ( 1147) [002] .... 82320.308702: clk_set_rate: l3_cluster0_vote_clk 403200000
150490  kworker/u16:13-1147  ( 1147) [002] .... 82320.308709: clk_set_rate: l3_clk 403200000
150491              sh-27813 (27813) [003] d..2 82320.308949: sched_switch: prev_comm=sh prev_pid=27813 prev_prio=120 prev_state=x ==> next_comm=shell svc 27813 next_pid=27814 next_prio=120
150492  kworker/u16:13-1147  ( 1147) [002] d..2 82320.308969: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
150493 shell svc 27813-27814 (  960) [003] d..2 82320.309002: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
150494  kworker/u16:15-1311  ( 1311) [002] d..2 82320.309005: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150495 shell svc 27813-27814 (  960) [003] dn.3 82320.309020: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
150496          <idle>-0     (-----) [002] d..1 82320.309024: cpu_idle: state=0 cpu_id=2
150497 shell svc 27813-27814 (  960) [003] d..2 82320.309031: sched_switch: prev_comm=shell svc 27813 prev_pid=27814 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=960 next_prio=120
150498            adbd-960   (  960) [003] d..1 82320.309137: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
150499            adbd-960   (  960) [003] d..2 82320.309168: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150500          <idle>-0     (-----) [001] d.s3 82320.309174: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150501          <idle>-0     (-----) [002] .n.1 82320.309175: cpu_idle: state=4294967295 cpu_id=2
150502          <idle>-0     (-----) [002] d..2 82320.309191: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
150503          <idle>-0     (-----) [001] d.s4 82320.309210: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
150504          <idle>-0     (-----) [001] dns4 82320.309219: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
150505          <idle>-0     (-----) [001] .n.1 82320.309230: cpu_idle: state=4294967295 cpu_id=1
150506            adbd-960   (  960) [003] d..2 82320.309249: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=shell svc 27813 next_pid=27814 next_prio=120
150507          <idle>-0     (-----) [001] d..2 82320.309251: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150508 shell svc 27813-27814 (  960) [003] d.h2 82320.309294: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=002
150509  kworker/u16:13-1147  ( 1147) [001] d..2 82320.309300: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150510            adbd-24055 (  960) [002] d..2 82320.309308: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150511          <idle>-0     (-----) [001] d..1 82320.309314: cpu_idle: state=0 cpu_id=1
150512          <idle>-0     (-----) [002] d..1 82320.309327: cpu_idle: state=0 cpu_id=2
150513 shell svc 27813-27814 (  960) [003] d.h3 82320.309342: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
150514          <idle>-0     (-----) [001] .n.1 82320.309349: cpu_idle: state=4294967295 cpu_id=1
150515          <idle>-0     (-----) [001] d..2 82320.309360: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150516   kworker/u17:1-570   (  570) [001] d..2 82320.309381: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150517   kworker/u17:1-570   (  570) [001] d..3 82320.309396: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150518   kworker/u17:1-570   (  570) [001] d..2 82320.309424: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150519     kworker/1:1-25249 (25249) [001] d..2 82320.309440: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
150520     kworker/1:1-25249 (25249) [001] d..3 82320.309458: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150521          <idle>-0     (-----) [002] .n.1 82320.309465: cpu_idle: state=4294967295 cpu_id=2
150522          <idle>-0     (-----) [002] d..2 82320.309480: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
150523     kworker/1:1-25249 (25249) [001] d..2 82320.309491: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150524          <idle>-0     (-----) [001] d..1 82320.309502: cpu_idle: state=0 cpu_id=1
150525 shell svc 27813-27814 (  960) [003] d..2 82320.309524: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
150526            adbd-24055 (  960) [002] d..2 82320.309572: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150527 shell svc 27813-27814 (  960) [003] d..3 82320.309586: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
150528          <idle>-0     (-----) [002] d..2 82320.309598: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
150529 shell svc 27813-27814 (  960) [003] d.h3 82320.309610: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
150530 shell svc 27813-27814 (  960) [003] d.h4 82320.309627: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
150531          <idle>-0     (-----) [001] .n.1 82320.309633: cpu_idle: state=4294967295 cpu_id=1
150532          <idle>-0     (-----) [001] d..2 82320.309643: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150533   kworker/u17:1-570   (  570) [001] d..2 82320.309657: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150534   kworker/u17:1-570   (  570) [001] d..3 82320.309669: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150535   kworker/u17:1-570   (  570) [001] d..2 82320.309697: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150536     kworker/1:1-25249 (25249) [001] d..2 82320.309708: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
150537     kworker/1:1-25249 (25249) [001] d..3 82320.309750: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
150538     kworker/1:1-25249 (25249) [001] d..2 82320.309768: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
150539 shell svc 27813-27814 (  960) [003] d.h2 82320.309841: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=001
150540            adbd-960   (  960) [002] d..2 82320.309862: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150541          <idle>-0     (-----) [002] d..1 82320.309882: cpu_idle: state=0 cpu_id=2
150542 shell svc 27813-27814 (  960) [003] dnh3 82320.309889: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150543            adbd-24055 (  960) [001] d..2 82320.309899: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150544 shell svc 27813-27814 (  960) [003] d..2 82320.309904: sched_switch: prev_comm=shell svc 27813 prev_pid=27814 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150545          <idle>-0     (-----) [001] d..1 82320.309918: cpu_idle: state=0 cpu_id=1
150546   kworker/u17:1-570   (  570) [003] d..2 82320.309924: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150547   kworker/u17:1-570   (  570) [003] d..3 82320.309935: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150548   kworker/u17:1-570   (  570) [003] d.h2 82320.309971: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
150549   kworker/u17:1-570   (  570) [003] d.h3 82320.309997: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
150550   kworker/u17:1-570   (  570) [003] d.h1 82320.310011: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
150551   kworker/u17:1-570   (  570) [003] d.h2 82320.310044: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
150552          <idle>-0     (-----) [001] .n.1 82320.310052: cpu_idle: state=4294967295 cpu_id=1
150553          <idle>-0     (-----) [001] d..2 82320.310062: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
150554   kworker/u17:1-570   (  570) [003] d..2 82320.310088: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150555        DispSync-8879  ( 8858) [001] d..1 82320.310098: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
150556     kworker/3:1-25210 (25210) [003] d..2 82320.310104: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
150557        DispSync-8879  ( 8858) [001] d..2 82320.310130: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
150558          <idle>-0     (-----) [002] .n.1 82320.310138: cpu_idle: state=4294967295 cpu_id=2
150559     kworker/3:1-25210 (25210) [003] d..3 82320.310145: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
150560          <idle>-0     (-----) [002] d..2 82320.310152: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150561     kworker/3:1-25210 (25210) [003] d..2 82320.310162: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
150562        DispSync-8879  ( 8858) [001] d..2 82320.310166: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
150563            adbd-24054 (  960) [001] d..2 82320.310197: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
150564     kworker/3:1-25210 (25210) [003] d..3 82320.310210: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150565            adbd-24054 (  960) [001] d..3 82320.310228: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
150566  appEventThread-8881  ( 8858) [002] d..3 82320.310229: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150567     kworker/3:1-25210 (25210) [003] d..2 82320.310236: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
150568   kworker/u17:0-98    (   98) [003] d..2 82320.310251: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=shell svc 27813 next_pid=27814 next_prio=120
150569  appEventThread-8881  ( 8858) [002] d..2 82320.310287: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
150570 shell svc 27813-27814 (  960) [003] d..2 82320.310302: sched_switch: prev_comm=shell svc 27813 prev_pid=27814 prev_prio=120 prev_state=x ==> next_comm=swapper/3 next_pid=0 next_prio=120
150571            adbd-24054 (  960) [001] d..2 82320.310317: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
150572          <idle>-0     (-----) [003] d..1 82320.310335: cpu_idle: state=0 cpu_id=3
150573            adbd-24055 (  960) [002] d..2 82320.310399: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150574          <idle>-0     (-----) [003] d.h3 82320.310403: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
150575          <idle>-0     (-----) [003] dnh4 82320.310417: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
150576          <idle>-0     (-----) [002] d..1 82320.310420: cpu_idle: state=0 cpu_id=2
150577          <idle>-0     (-----) [003] .n.1 82320.310428: cpu_idle: state=4294967295 cpu_id=3
150578          <idle>-0     (-----) [003] d..2 82320.310442: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
150579   kworker/u17:0-98    (   98) [003] d..2 82320.310458: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150580   kworker/u17:0-98    (   98) [003] d..3 82320.310469: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150581            adbd-960   (  960) [001] d..2 82320.310497: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150582   kworker/u17:0-98    (   98) [003] d..2 82320.310498: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150583     kworker/3:1-25210 (25210) [003] d..2 82320.310511: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
150584          <idle>-0     (-----) [001] d..1 82320.310514: cpu_idle: state=0 cpu_id=1
150585     kworker/3:1-25210 (25210) [003] d..3 82320.310527: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150586          <idle>-0     (-----) [002] .n.1 82320.310534: cpu_idle: state=4294967295 cpu_id=2
150587          <idle>-0     (-----) [002] d..2 82320.310549: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
150588     kworker/3:1-25210 (25210) [003] d..2 82320.310557: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150589          <idle>-0     (-----) [003] d..1 82320.310575: cpu_idle: state=0 cpu_id=3
150590          <idle>-0     (-----) [003] d.h3 82320.310649: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
150591            adbd-24055 (  960) [002] d..2 82320.310651: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150592          <idle>-0     (-----) [003] dnh4 82320.310660: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
150593          <idle>-0     (-----) [002] d..1 82320.310666: cpu_idle: state=0 cpu_id=2
150594          <idle>-0     (-----) [003] .n.1 82320.310670: cpu_idle: state=4294967295 cpu_id=3
150595          <idle>-0     (-----) [003] d..2 82320.310683: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
150596   kworker/u17:0-98    (   98) [003] d..2 82320.310700: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150597   kworker/u17:0-98    (   98) [003] d..3 82320.310711: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150598   kworker/u17:0-98    (   98) [003] d.h2 82320.310746: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150599   kworker/u17:0-98    (   98) [003] d.h3 82320.310763: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150600   kworker/u17:0-98    (   98) [003] d..2 82320.310802: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150601   kworker/u17:1-570   (  570) [003] d..2 82320.310814: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150602     kworker/3:1-25210 (25210) [003] d..2 82320.310827: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
150603     kworker/3:1-25210 (25210) [003] d..3 82320.310842: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150604          <idle>-0     (-----) [002] .n.1 82320.310849: cpu_idle: state=4294967295 cpu_id=2
150605     kworker/3:1-25210 (25210) [003] d..2 82320.310861: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
150606          <idle>-0     (-----) [002] d..2 82320.310863: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
150607     kworker/3:1-25210 (25210) [003] d..3 82320.310876: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
150608          <idle>-0     (-----) [001] .n.1 82320.310884: cpu_idle: state=4294967295 cpu_id=1
150609          <idle>-0     (-----) [001] d..2 82320.310898: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24054 next_prio=120
150610     kworker/3:1-25210 (25210) [003] d..2 82320.310906: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150611          <idle>-0     (-----) [003] d..1 82320.310924: cpu_idle: state=0 cpu_id=3
150612            adbd-24054 (  960) [001] d..2 82320.310924: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
150613            adbd-24054 (  960) [001] d..3 82320.310941: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
150614            adbd-24055 (  960) [002] d..2 82320.310962: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150615          <idle>-0     (-----) [003] d.h3 82320.310963: sched_waking: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150616          <idle>-0     (-----) [003] dnh4 82320.310974: sched_wakeup: comm=kworker/u17:1 pid=570 prio=100 target_cpu=003
150617          <idle>-0     (-----) [002] d..1 82320.310977: cpu_idle: state=0 cpu_id=2
150618          <idle>-0     (-----) [003] .n.1 82320.310984: cpu_idle: state=4294967295 cpu_id=3
150619          <idle>-0     (-----) [003] d..2 82320.310998: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:1 next_pid=570 next_prio=100
150620   kworker/u17:1-570   (  570) [003] d..2 82320.311016: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150621          <idle>-0     (-----) [004] dnh2 82320.311020: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150622   kworker/u17:1-570   (  570) [003] d..3 82320.311028: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150623          <idle>-0     (-----) [004] .n.1 82320.311028: cpu_idle: state=4294967295 cpu_id=4
150624            adbd-24054 (  960) [001] d..2 82320.311029: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
150625          <idle>-0     (-----) [004] d..2 82320.311042: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
150626   kworker/u17:1-570   (  570) [003] d.h2 82320.311060: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
150627   kworker/u17:1-570   (  570) [003] d.h3 82320.311078: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
150628   kworker/u17:1-570   (  570) [003] d..2 82320.311115: sched_switch: prev_comm=kworker/u17:1 prev_pid=570 prev_prio=100 prev_state=S ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
150629   kworker/u17:0-98    (   98) [003] d..2 82320.311125: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150630     kworker/3:1-25210 (25210) [003] d..2 82320.311137: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
150631     kworker/3:1-25210 (25210) [003] d..3 82320.311153: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150632          <idle>-0     (-----) [002] .n.1 82320.311160: cpu_idle: state=4294967295 cpu_id=2
150633     kworker/3:1-25210 (25210) [003] d..2 82320.311169: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
150634          <idle>-0     (-----) [002] d..2 82320.311174: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
150635            adbd-960   (  960) [001] d..2 82320.311185: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150636     kworker/3:1-25210 (25210) [003] d..3 82320.311197: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
150637          <idle>-0     (-----) [001] d..2 82320.311211: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24054 next_prio=120
150638     kworker/3:1-25210 (25210) [003] d..2 82320.311228: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150639            adbd-24054 (  960) [001] d..2 82320.311236: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
150640          <idle>-0     (-----) [003] d..1 82320.311246: cpu_idle: state=0 cpu_id=3
150641            adbd-24054 (  960) [001] d..3 82320.311251: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
150642            adbd-24055 (  960) [002] d..2 82320.311270: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150643          <idle>-0     (-----) [003] d.h3 82320.311276: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
150644          <idle>-0     (-----) [002] d..1 82320.311284: cpu_idle: state=0 cpu_id=2
150645          <idle>-0     (-----) [003] dnh4 82320.311288: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
150646 s.nexuslauncher-10023 (10023) [004] .... 82320.311290: binder_transaction: transaction=1573277 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
150647          <idle>-0     (-----) [003] .n.1 82320.311298: cpu_idle: state=4294967295 cpu_id=3
150648 s.nexuslauncher-10023 (10023) [004] .... 82320.311298: binder_transaction_alloc_buf: transaction=1573277 data_size=80 offsets_size=0
150649 s.nexuslauncher-10023 (10023) [004] d..4 82320.311303: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150650          <idle>-0     (-----) [003] d..2 82320.311311: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
150651   kworker/u17:0-98    (   98) [003] d..2 82320.311326: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150652   kworker/u17:0-98    (   98) [003] d..3 82320.311336: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150653            adbd-24054 (  960) [001] d..2 82320.311336: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
150654   kworker/u17:0-98    (   98) [003] d..2 82320.311362: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150655     kworker/3:1-25210 (25210) [003] d..2 82320.311375: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
150656     kworker/3:1-25210 (25210) [003] d..3 82320.311391: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
150657          <idle>-0     (-----) [002] .n.1 82320.311397: cpu_idle: state=4294967295 cpu_id=2
150658 s.nexuslauncher-10023 (10023) [004] d..2 82320.311402: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
150659          <idle>-0     (-----) [002] d..2 82320.311411: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
150660          <idle>-0     (-----) [004] d..1 82320.311417: cpu_idle: state=2 cpu_id=4
150661     kworker/3:1-25210 (25210) [003] d..2 82320.311420: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150662          <idle>-0     (-----) [003] d..1 82320.311437: cpu_idle: state=0 cpu_id=3
150663            adbd-24055 (  960) [002] d..2 82320.311444: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150664          <idle>-0     (-----) [002] d..1 82320.311456: cpu_idle: state=0 cpu_id=2
150665            adbd-960   (  960) [001] d..2 82320.311481: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150666          <idle>-0     (-----) [000] dnh2 82320.311492: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150667          <idle>-0     (-----) [001] d..1 82320.311497: cpu_idle: state=0 cpu_id=1
150668          <idle>-0     (-----) [000] .n.1 82320.311504: cpu_idle: state=4294967295 cpu_id=0
150669          <idle>-0     (-----) [000] d..2 82320.311524: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
150670   Binder:8858_1-8871  ( 8858) [000] .... 82320.311536: binder_transaction_received: transaction=1573277
150671   Binder:8858_1-8871  ( 8858) [000] d..1 82320.311587: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
150672   Binder:8858_1-8871  ( 8858) [000] d..2 82320.311609: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
150673          <idle>-0     (-----) [002] .n.1 82320.311615: cpu_idle: state=4294967295 cpu_id=2
150674          <idle>-0     (-----) [002] d..2 82320.311627: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150675   Binder:8858_1-8871  ( 8858) [000] d..2 82320.311673: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150676  appEventThread-8881  ( 8858) [002] d..2 82320.311692: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150677          <idle>-0     (-----) [000] d..1 82320.311694: cpu_idle: state=2 cpu_id=0
150678          <idle>-0     (-----) [002] d..1 82320.311706: cpu_idle: state=0 cpu_id=2
150679          <idle>-0     (-----) [001] d.H3 82320.311937: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
150680          <idle>-0     (-----) [001] d.H4 82320.311960: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
150681          <idle>-0     (-----) [003] .n.1 82320.311967: cpu_idle: state=4294967295 cpu_id=3
150682          <idle>-0     (-----) [001] d.s3 82320.311972: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150683          <idle>-0     (-----) [003] d..2 82320.311983: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
150684          <idle>-0     (-----) [001] dns4 82320.311985: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150685          <idle>-0     (-----) [001] dns3 82320.311994: sched_waking: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
150686          <idle>-0     (-----) [001] dns3 82320.312008: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150687          <idle>-0     (-----) [001] dns4 82320.312020: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
150688         sugov:0-576   (  576) [003] .... 82320.312020: clk_set_rate: pwrcl_clk 652800000
150689          <idle>-0     (-----) [001] dns3 82320.312024: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
150690         sugov:0-576   (  576) [003] .... 82320.312033: clk_set_rate: cpu3_pwrcl_clk 748800000
150691          <idle>-0     (-----) [001] dns4 82320.312041: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
150692         sugov:0-576   (  576) [003] .... 82320.312043: clk_set_rate: cpu2_pwrcl_clk 748800000
150693         sugov:0-576   (  576) [003] .... 82320.312052: clk_set_rate: cpu1_pwrcl_clk 748800000
150694         sugov:0-576   (  576) [003] .... 82320.312060: clk_set_rate: cpu0_pwrcl_clk 652800000
150695          <idle>-0     (-----) [001] .n.1 82320.312065: cpu_idle: state=4294967295 cpu_id=1
150696          <idle>-0     (-----) [001] d..2 82320.312081: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150697         sugov:0-576   (  576) [003] .... 82320.312175: cpu_frequency: state=652800 cpu_id=0
150698         sugov:0-576   (  576) [003] .... 82320.312199: cpu_frequency: state=652800 cpu_id=1
150699     kworker/1:1-25249 (25249) [001] d..2 82320.312201: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150700         sugov:0-576   (  576) [003] .... 82320.312205: cpu_frequency: state=652800 cpu_id=2
150701         sugov:0-576   (  576) [003] .... 82320.312210: cpu_frequency: state=652800 cpu_id=3
150702         sugov:0-576   (  576) [003] d..2 82320.312235: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
150703     kworker/3:1-25210 (25210) [003] d..2 82320.312280: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
150704          <idle>-0     (-----) [003] d..1 82320.312299: cpu_idle: state=0 cpu_id=3
150705  kworker/u16:13-1147  ( 1147) [001] d..2 82320.312415: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
150706          <idle>-0     (-----) [001] d.s4 82320.312461: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
150707          <idle>-0     (-----) [001] d.s5 82320.312474: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
150708          <idle>-0     (-----) [001] dns5 82320.312481: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
150709          <idle>-0     (-----) [001] d..2 82320.312496: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150710  kworker/u16:13-1147  ( 1147) [001] d..2 82320.312579: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150711          <idle>-0     (-----) [001] d..1 82320.312602: cpu_idle: state=0 cpu_id=1
150712          <idle>-0     (-----) [005] dnh2 82320.312780: sched_wakeup: comm=kworker/5:0 pid=23997 prio=120 target_cpu=005
150713          <idle>-0     (-----) [005] .n.1 82320.312789: cpu_idle: state=4294967295 cpu_id=5
150714          <idle>-0     (-----) [005] d..2 82320.312804: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/5:0 next_pid=23997 next_prio=120
150715     kworker/5:0-23997 (23997) [005] d..2 82320.312834: sched_switch: prev_comm=kworker/5:0 prev_pid=23997 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
150716          <idle>-0     (-----) [005] d..1 82320.312846: cpu_idle: state=2 cpu_id=5
150717          <idle>-0     (-----) [000] d.h3 82320.313219: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
150718          <idle>-0     (-----) [000] dnh4 82320.313245: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
150719          <idle>-0     (-----) [000] .n.1 82320.313275: cpu_idle: state=4294967295 cpu_id=0
150720          <idle>-0     (-----) [000] d..2 82320.313297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
150721     kworker/0:1-25262 (25262) [000] d..2 82320.313308: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150722     kworker/0:1-25262 (25262) [000] d..3 82320.313320: sched_blocked_reason: pid=25249 iowait=0 caller=qpnp_vadc_hc_read+0x210/0x41c
150723     kworker/0:1-25262 (25262) [000] d..3 82320.313331: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150724          <idle>-0     (-----) [001] .n.1 82320.313339: cpu_idle: state=4294967295 cpu_id=1
150725          <idle>-0     (-----) [001] d..2 82320.313355: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150726     kworker/0:1-25262 (25262) [000] d..2 82320.313365: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150727          <idle>-0     (-----) [000] d..1 82320.313386: cpu_idle: state=0 cpu_id=0
150728          <idle>-0     (-----) [003] ...1 82320.313445: cpu_idle: state=4294967295 cpu_id=3
150729          <idle>-0     (-----) [003] d..1 82320.313452: cpu_idle: state=2 cpu_id=3
150730     kworker/1:1-25249 (25249) [001] d..2 82320.313479: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150731          <idle>-0     (-----) [001] d..1 82320.313495: cpu_idle: state=0 cpu_id=1
150732          <idle>-0     (-----) [001] ...1 82320.314838: cpu_idle: state=4294967295 cpu_id=1
150733          <idle>-0     (-----) [001] d..1 82320.314844: cpu_idle: state=2 cpu_id=1
150734          <idle>-0     (-----) [002] d.s2 82320.315144: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150735          <idle>-0     (-----) [002] dns3 82320.315171: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150736          <idle>-0     (-----) [002] .n.1 82320.315195: cpu_idle: state=4294967295 cpu_id=2
150737          <idle>-0     (-----) [002] d..2 82320.315210: 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
150738     rcu_preempt-7     (    7) [002] d..2 82320.315219: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
150739     rcu_preempt-7     (    7) [002] d..3 82320.315266: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
150740     rcu_preempt-7     (    7) [002] d..2 82320.315281: 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
150741         rcuop/2-29    (   29) [002] d..2 82320.315310: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150742         rcuop/2-29    (   29) [002] d..3 82320.315327: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150743         rcuop/2-29    (   29) [002] d..2 82320.315339: 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
150744     rcu_preempt-7     (    7) [002] d..2 82320.315376: 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
150745          <idle>-0     (-----) [002] d..1 82320.315395: cpu_idle: state=0 cpu_id=2
150746          <idle>-0     (-----) [000] d.h2 82320.319397: sched_waking: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
150747          <idle>-0     (-----) [000] dnh3 82320.319427: sched_wakeup: comm=RxSchedulerPurg pid=25567 prio=120 target_cpu=000
150748          <idle>-0     (-----) [000] .n.1 82320.319439: cpu_idle: state=4294967295 cpu_id=0
150749          <idle>-0     (-----) [000] d..2 82320.319456: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RxSchedulerPurg next_pid=25567 next_prio=120
150750 RxSchedulerPurg-25567 (25538) [000] d..2 82320.319816: sched_switch: prev_comm=RxSchedulerPurg prev_pid=25567 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150751          <idle>-0     (-----) [000] d..2 82320.319824: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
150752          <idle>-0     (-----) [000] dn.3 82320.319839: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
150753          <idle>-0     (-----) [000] d..2 82320.319851: 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
150754     ksoftirqd/0-3     (    3) [000] d.s2 82320.319867: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
150755     ksoftirqd/0-3     (    3) [000] d.s3 82320.319915: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
150756     ksoftirqd/0-3     (    3) [000] d..2 82320.319935: sched_switch: prev_comm=ksoftirqd/0 prev_pid=3 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150757  kworker/u16:13-1147  ( 1147) [000] d..2 82320.320147: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
150758          <idle>-0     (-----) [000] d..1 82320.320170: cpu_idle: state=2 cpu_id=0
150759          <idle>-0     (-----) [001] d.s3 82320.320331: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
150760          <idle>-0     (-----) [001] d.s4 82320.320349: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
150761          <idle>-0     (-----) [001] d.s4 82320.320360: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
150762          <idle>-0     (-----) [001] ...1 82320.320378: cpu_idle: state=4294967295 cpu_id=1
150763          <idle>-0     (-----) [001] d..1 82320.320389: cpu_idle: state=0 cpu_id=1
150764          <idle>-0     (-----) [000] .n.1 82320.320529: cpu_idle: state=4294967295 cpu_id=0
150765          <idle>-0     (-----) [000] d..2 82320.320558: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150766  kworker/u16:13-1147  ( 1147) [000] .... 82320.320632: clk_set_rate: l3_cluster0_vote_clk 300000000
150767  kworker/u16:13-1147  ( 1147) [000] .... 82320.320639: clk_set_rate: l3_clk 300000000
150768  kworker/u16:13-1147  ( 1147) [000] d..2 82320.320733: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150769          <idle>-0     (-----) [000] d..1 82320.320759: cpu_idle: state=0 cpu_id=0
150770          <idle>-0     (-----) [002] d.s2 82320.321809: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150771          <idle>-0     (-----) [002] dns3 82320.321831: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150772          <idle>-0     (-----) [002] .n.1 82320.321848: cpu_idle: state=4294967295 cpu_id=2
150773          <idle>-0     (-----) [002] d..2 82320.321864: 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
150774     rcu_preempt-7     (    7) [002] d..2 82320.321878: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
150775     rcu_preempt-7     (    7) [002] d..3 82320.321896: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
150776     rcu_preempt-7     (    7) [002] d..2 82320.321910: 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
150777         rcuop/2-29    (   29) [002] d..2 82320.321916: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
150778         rcuop/2-29    (   29) [002] d..3 82320.321963: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
150779         rcuop/2-29    (   29) [002] d..2 82320.322003: 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
150780         rcuop/3-37    (   37) [002] d..2 82320.322016: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
150781         rcuop/3-37    (   37) [002] d..3 82320.322033: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
150782         rcuop/3-37    (   37) [002] d..2 82320.322140: 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
150783         rcuop/2-29    (   29) [002] d..2 82320.322146: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150784         rcuop/2-29    (   29) [002] d..3 82320.322162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150785         rcuop/2-29    (   29) [002] d..2 82320.322174: 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
150786     rcu_preempt-7     (    7) [002] d..2 82320.322213: 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
150787          <idle>-0     (-----) [002] d..1 82320.322235: cpu_idle: state=2 cpu_id=2
150788          <idle>-0     (-----) [002] ...1 82320.324431: cpu_idle: state=4294967295 cpu_id=2
150789          <idle>-0     (-----) [002] d..1 82320.324443: cpu_idle: state=0 cpu_id=2
150790          <idle>-0     (-----) [001] d.s3 82320.324504: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150791          <idle>-0     (-----) [001] dns4 82320.324518: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150792          <idle>-0     (-----) [001] .n.1 82320.324535: cpu_idle: state=4294967295 cpu_id=1
150793          <idle>-0     (-----) [001] d..2 82320.324557: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150794          <idle>-0     (-----) [002] ...1 82320.324585: cpu_idle: state=4294967295 cpu_id=2
150795          <idle>-0     (-----) [002] d..1 82320.324591: cpu_idle: state=0 cpu_id=2
150796     kworker/1:1-25249 (25249) [001] d..2 82320.324643: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
150797     kworker/1:1-25249 (25249) [001] d..3 82320.324676: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
150798     kworker/1:1-25249 (25249) [001] d..2 82320.324717: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
150799   cds_mc_thread-16565 (16565) [001] d.s4 82320.324768: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150800   cds_mc_thread-16565 (16565) [001] d.s5 82320.324783: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150801   cds_mc_thread-16565 (16565) [001] d..3 82320.325207: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
150802   cds_mc_thread-16565 (16565) [001] d..4 82320.325269: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
150803   cds_mc_thread-16565 (16565) [001] d..2 82320.325319: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
150804         rcuop/0-10    (   10) [001] d..2 82320.325392: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150805     kworker/1:1-25249 (25249) [001] d..2 82320.325450: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
150806     kworker/1:1-25249 (25249) [001] d..3 82320.325474: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
150807     kworker/1:1-25249 (25249) [001] d..2 82320.325518: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
150808     kworker/1:1-25249 (25249) [001] d..3 82320.325541: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
150809     kworker/1:1-25249 (25249) [001] d..2 82320.325770: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
150810   cds_mc_thread-16565 (16565) [001] d..2 82320.325842: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
150811   cds_mc_thread-16565 (16565) [001] d..3 82320.325873: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
150812          <idle>-0     (-----) [002] ...1 82320.326373: cpu_idle: state=4294967295 cpu_id=2
150813   cds_mc_thread-16565 (16565) [001] d..2 82320.326379: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
150814          <idle>-0     (-----) [002] d..1 82320.326380: cpu_idle: state=0 cpu_id=2
150815 wlan_logging_th-647   (  647) [001] d..2 82320.326428: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
150816 [email protected] (  798) [001] d.h1 82320.326482: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
150817 [email protected] (  798) [001] d.h2 82320.326523: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
150818          <idle>-0     (-----) [002] .n.1 82320.326528: cpu_idle: state=4294967295 cpu_id=2
150819          <idle>-0     (-----) [002] d..2 82320.326553: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
150820        DispSync-8879  ( 8858) [002] d..1 82320.326587: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
150821        DispSync-8879  ( 8858) [002] d..2 82320.326628: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
150822          <idle>-0     (-----) [000] .n.1 82320.326637: cpu_idle: state=4294967295 cpu_id=0
150823        DispSync-8879  ( 8858) [002] d.s2 82320.326647: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
150824          <idle>-0     (-----) [000] d..2 82320.326655: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150825        DispSync-8879  ( 8858) [002] d.s3 82320.326669: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
150826        DispSync-8879  ( 8858) [002] d..2 82320.326711: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
150827  appEventThread-8881  ( 8858) [000] d..3 82320.326743: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150828 [email protected] (  798) [001] d..2 82320.326771: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150829     ksoftirqd/2-26    (   26) [002] d..2 82320.326799: 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
150830  appEventThread-8881  ( 8858) [000] d..2 82320.326827: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150831          <idle>-0     (-----) [001] d.s4 82320.326843: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150832          <idle>-0     (-----) [000] d..1 82320.326851: cpu_idle: state=0 cpu_id=0
150833          <idle>-0     (-----) [001] dns5 82320.326858: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150834          <idle>-0     (-----) [002] d..1 82320.326881: cpu_idle: state=0 cpu_id=2
150835          <idle>-0     (-----) [001] d..2 82320.326907: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150836     kworker/1:1-25249 (25249) [001] d..2 82320.326971: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
150837     kworker/1:1-25249 (25249) [001] d..3 82320.327003: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
150838          <idle>-0     (-----) [002] ...1 82320.327025: cpu_idle: state=4294967295 cpu_id=2
150839          <idle>-0     (-----) [002] d..1 82320.327032: cpu_idle: state=0 cpu_id=2
150840     kworker/1:1-25249 (25249) [001] d..2 82320.327129: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
150841     kworker/1:1-25249 (25249) [001] d..3 82320.327156: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
150842          <idle>-0     (-----) [002] ...1 82320.327199: cpu_idle: state=4294967295 cpu_id=2
150843     kworker/1:1-25249 (25249) [001] d..2 82320.327203: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
150844          <idle>-0     (-----) [002] d..1 82320.327206: cpu_idle: state=0 cpu_id=2
150845     kworker/1:1-25249 (25249) [001] d..3 82320.327227: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
150846          <idle>-0     (-----) [002] ...1 82320.327392: cpu_idle: state=4294967295 cpu_id=2
150847          <idle>-0     (-----) [002] d..1 82320.327398: cpu_idle: state=0 cpu_id=2
150848     kworker/1:1-25249 (25249) [001] d..2 82320.327404: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
150849 wlan_logging_th-647   (  647) [001] d.s2 82320.327472: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150850 wlan_logging_th-647   (  647) [001] d.s3 82320.327489: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150851 wlan_logging_th-647   (  647) [001] d..2 82320.327521: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
150852          <idle>-0     (-----) [004] dnh2 82320.327537: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150853          <idle>-0     (-----) [004] .n.1 82320.327547: cpu_idle: state=4294967295 cpu_id=4
150854          <idle>-0     (-----) [004] d..2 82320.327560: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
150855 s.nexuslauncher-10023 (10023) [004] .... 82320.327781: binder_transaction: transaction=1573278 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
150856 s.nexuslauncher-10023 (10023) [004] .... 82320.327787: binder_transaction_alloc_buf: transaction=1573278 data_size=80 offsets_size=0
150857 s.nexuslauncher-10023 (10023) [004] d..4 82320.327792: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150858          <idle>-0     (-----) [000] dnh2 82320.327832: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150859          <idle>-0     (-----) [000] .n.1 82320.327842: cpu_idle: state=4294967295 cpu_id=0
150860          <idle>-0     (-----) [000] d..2 82320.327857: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
150861   Binder:8858_1-8871  ( 8858) [000] .... 82320.327871: binder_transaction_received: transaction=1573278
150862 s.nexuslauncher-10023 (10023) [004] d..2 82320.327893: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
150863          <idle>-0     (-----) [004] d..1 82320.327909: cpu_idle: state=2 cpu_id=4
150864   Binder:8858_1-8871  ( 8858) [000] d..1 82320.327922: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
150865   Binder:8858_1-8871  ( 8858) [000] d..2 82320.327956: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
150866          <idle>-0     (-----) [002] .n.1 82320.327962: cpu_idle: state=4294967295 cpu_id=2
150867          <idle>-0     (-----) [002] d..2 82320.327974: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150868   Binder:8858_1-8871  ( 8858) [000] d..2 82320.328029: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150869          <idle>-0     (-----) [000] d..1 82320.328053: cpu_idle: state=0 cpu_id=0
150870   cds_mc_thread-16565 (16565) [001] d..2 82320.328068: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
150871  appEventThread-8881  ( 8858) [002] d..2 82320.328076: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150872          <idle>-0     (-----) [002] d..1 82320.328093: cpu_idle: state=0 cpu_id=2
150873   cds_mc_thread-16565 (16565) [001] d..3 82320.328115: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=002
150874          <idle>-0     (-----) [002] .n.1 82320.328121: cpu_idle: state=4294967295 cpu_id=2
150875          <idle>-0     (-----) [002] d..2 82320.328136: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
150876 wlan_logging_th-647   (  647) [002] d..2 82320.328205: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150877          <idle>-0     (-----) [002] d..1 82320.328218: cpu_idle: state=0 cpu_id=2
150878   cds_mc_thread-16565 (16565) [001] d..2 82320.328256: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150879     kworker/1:1-25249 (25249) [001] d..2 82320.328313: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
150880     kworker/1:1-25249 (25249) [001] d..3 82320.328341: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
150881     kworker/1:1-25249 (25249) [001] d..2 82320.328373: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
150882          <idle>-0     (-----) [002] d.s2 82320.328480: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150883   cds_mc_thread-16565 (16565) [001] d.s3 82320.328495: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
150884          <idle>-0     (-----) [002] dns3 82320.328505: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150885          <idle>-0     (-----) [002] .n.1 82320.328529: cpu_idle: state=4294967295 cpu_id=2
150886          <idle>-0     (-----) [002] d..2 82320.328549: 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
150887   cds_mc_thread-16565 (16565) [001] d.s4 82320.328563: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150888     rcu_preempt-7     (    7) [002] d..2 82320.328580: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150889   cds_mc_thread-16565 (16565) [001] d.s3 82320.328589: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
150890   cds_mc_thread-16565 (16565) [001] d.s4 82320.328611: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
150891   cds_mc_thread-16565 (16565) [001] d.s3 82320.328625: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150892   cds_mc_thread-16565 (16565) [001] d.s4 82320.328642: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150893  kworker/u16:13-1147  ( 1147) [002] .... 82320.328696: clk_set_rate: l3_cluster0_vote_clk 403200000
150894  kworker/u16:13-1147  ( 1147) [002] .... 82320.328703: clk_set_rate: l3_clk 403200000
150895   cds_mc_thread-16565 (16565) [001] d..2 82320.328839: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
150896  kworker/u16:13-1147  ( 1147) [002] d..2 82320.328963: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
150897  kworker/u16:15-1311  ( 1311) [002] d..2 82320.328978: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
150898     rcu_preempt-7     (    7) [002] d..2 82320.328985: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
150899 [email protected] (  798) [001] d.s2 82320.329001: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150900     rcu_preempt-7     (    7) [002] d..3 82320.329008: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
150901     rcu_preempt-7     (    7) [002] d..2 82320.329030: 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
150902 [email protected] (  798) [001] d.s3 82320.329040: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
150903 [email protected] (  798) [001] d.s3 82320.329049: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150904         rcuop/2-29    (   29) [002] d..2 82320.329073: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150905  kworker/u16:13-1147  ( 1147) [002] d..2 82320.329119: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150906          <idle>-0     (-----) [002] d..1 82320.329139: cpu_idle: state=0 cpu_id=2
150907 [email protected] (  798) [001] d..2 82320.329182: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150908          <idle>-0     (-----) [001] d..1 82320.329207: cpu_idle: state=2 cpu_id=1
150909          <idle>-0     (-----) [000] d..2 82320.334070: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
150910          <idle>-0     (-----) [000] dn.3 82320.334086: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
150911          <idle>-0     (-----) [000] .n.1 82320.334179: cpu_idle: state=4294967295 cpu_id=0
150912          <idle>-0     (-----) [000] d..2 82320.334198: 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
150913     ksoftirqd/0-3     (    3) [000] d..2 82320.334235: 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
150914          <idle>-0     (-----) [000] d..1 82320.334248: cpu_idle: state=2 cpu_id=0
150915          <idle>-0     (-----) [002] d.s2 82320.335139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150916          <idle>-0     (-----) [002] dns3 82320.335161: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150917          <idle>-0     (-----) [002] .n.1 82320.335174: cpu_idle: state=4294967295 cpu_id=2
150918          <idle>-0     (-----) [002] d..2 82320.335188: 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
150919     rcu_preempt-7     (    7) [002] d..2 82320.335199: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
150920     rcu_preempt-7     (    7) [002] d..3 82320.335245: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=002
150921     rcu_preempt-7     (    7) [002] d..2 82320.335260: 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
150922         rcuop/0-10    (   10) [002] d..2 82320.335266: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
150923         rcuop/0-10    (   10) [002] d..3 82320.335312: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=002
150924         rcuop/0-10    (   10) [002] d..2 82320.335317: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150925         rcuop/0-10    (   10) [002] d..3 82320.335331: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150926         rcuop/0-10    (   10) [002] d..2 82320.335343: 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
150927         rcuop/1-21    (   21) [002] d..2 82320.335361: 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
150928     rcu_preempt-7     (    7) [002] d..2 82320.335395: 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
150929          <idle>-0     (-----) [002] d..1 82320.335413: cpu_idle: state=0 cpu_id=2
150930          <idle>-0     (-----) [001] d.h2 82320.337086: sched_waking: [email protected] pid=9606 prio=98 target_cpu=001
150931          <idle>-0     (-----) [001] dnh3 82320.337117: sched_wakeup: [email protected] pid=9606 prio=98 target_cpu=001
150932          <idle>-0     (-----) [001] .n.1 82320.337133: cpu_idle: state=4294967295 cpu_id=1
150933          <idle>-0     (-----) [001] d..2 82320.337154: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=9606 next_prio=98
150934 [email protected]  (  776) [001] d..2 82320.337272: sched_switch: [email protected] prev_pid=9606 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150935          <idle>-0     (-----) [001] d..1 82320.337295: cpu_idle: state=2 cpu_id=1
150936          <idle>-0     (-----) [002] d.s2 82320.341805: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150937          <idle>-0     (-----) [002] dns3 82320.341825: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
150938          <idle>-0     (-----) [002] dns3 82320.341834: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
150939          <idle>-0     (-----) [002] dns4 82320.341848: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
150940          <idle>-0     (-----) [002] dns3 82320.341856: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150941          <idle>-0     (-----) [002] dns4 82320.341870: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
150942          <idle>-0     (-----) [002] dns3 82320.341874: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150943          <idle>-0     (-----) [002] dns4 82320.341889: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150944          <idle>-0     (-----) [002] .n.1 82320.341912: cpu_idle: state=4294967295 cpu_id=2
150945          <idle>-0     (-----) [002] d..2 82320.341927: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
150946     kworker/2:1-25259 (25259) [002] d..2 82320.341944: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
150947     kworker/2:1-25259 (25259) [002] d..3 82320.341961: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
150948     kworker/2:1-25259 (25259) [002] d..2 82320.341984: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
150949     rcu_preempt-7     (    7) [002] d..2 82320.341994: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=002
150950          <idle>-0     (-----) [001] .n.1 82320.342024: cpu_idle: state=4294967295 cpu_id=1
150951     rcu_preempt-7     (    7) [002] d..3 82320.342035: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
150952     rcu_preempt-7     (    7) [002] d..2 82320.342049: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150953          <idle>-0     (-----) [001] d..2 82320.342056: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
150954     kworker/1:1-25249 (25249) [001] d..2 82320.342127: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
150955          <idle>-0     (-----) [000] .n.1 82320.342127: cpu_idle: state=4294967295 cpu_id=0
150956          <idle>-0     (-----) [001] d..1 82320.342156: cpu_idle: state=2 cpu_id=1
150957          <idle>-0     (-----) [000] d..2 82320.342158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
150958     kworker/0:1-25262 (25262) [000] d..2 82320.342191: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
150959         rcuop/0-10    (   10) [000] d..2 82320.342197: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=002
150960         rcuop/0-10    (   10) [000] d..3 82320.342251: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
150961         rcuop/0-10    (   10) [000] d..2 82320.342265: 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
150962         rcuop/1-21    (   21) [000] d..2 82320.342304: 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
150963          <idle>-0     (-----) [000] d..1 82320.342326: cpu_idle: state=0 cpu_id=0
150964  kworker/u16:13-1147  ( 1147) [002] d..2 82320.342327: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
150965          <idle>-0     (-----) [002] d..1 82320.342349: cpu_idle: state=0 cpu_id=2
150966          <idle>-0     (-----) [001] d.s3 82320.342514: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150967          <idle>-0     (-----) [001] d.s4 82320.342534: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
150968          <idle>-0     (-----) [001] d.s4 82320.342547: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
150969          <idle>-0     (-----) [002] .n.1 82320.342554: cpu_idle: state=4294967295 cpu_id=2
150970          <idle>-0     (-----) [001] ...1 82320.342562: cpu_idle: state=4294967295 cpu_id=1
150971          <idle>-0     (-----) [002] d..2 82320.342569: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
150972          <idle>-0     (-----) [001] d..1 82320.342578: cpu_idle: state=0 cpu_id=1
150973  kworker/u16:13-1147  ( 1147) [002] .... 82320.342623: clk_set_rate: l3_cluster0_vote_clk 300000000
150974  kworker/u16:13-1147  ( 1147) [002] .... 82320.342630: clk_set_rate: l3_clk 300000000
150975  kworker/u16:13-1147  ( 1147) [002] d..2 82320.342704: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150976          <idle>-0     (-----) [002] d..1 82320.342721: cpu_idle: state=0 cpu_id=2
150977          <idle>-0     (-----) [002] d.h2 82320.343011: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
150978          <idle>-0     (-----) [002] dnh3 82320.343031: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
150979          <idle>-0     (-----) [002] .n.1 82320.343044: cpu_idle: state=4294967295 cpu_id=2
150980          <idle>-0     (-----) [002] d..2 82320.343057: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
150981        DispSync-8879  ( 8858) [002] d..1 82320.343079: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
150982        DispSync-8879  ( 8858) [002] d..2 82320.343108: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
150983          <idle>-0     (-----) [000] .n.1 82320.343117: cpu_idle: state=4294967295 cpu_id=0
150984          <idle>-0     (-----) [000] d..2 82320.343131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
150985        DispSync-8879  ( 8858) [002] d..2 82320.343152: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
150986          <idle>-0     (-----) [002] d..1 82320.343170: cpu_idle: state=2 cpu_id=2
150987  appEventThread-8881  ( 8858) [000] d..3 82320.343202: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150988  appEventThread-8881  ( 8858) [000] d..2 82320.343279: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
150989          <idle>-0     (-----) [000] d..1 82320.343300: cpu_idle: state=2 cpu_id=0
150990          <idle>-0     (-----) [004] dnh2 82320.344000: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
150991          <idle>-0     (-----) [004] .n.1 82320.344009: cpu_idle: state=4294967295 cpu_id=4
150992          <idle>-0     (-----) [004] d..2 82320.344022: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
150993 s.nexuslauncher-10023 (10023) [004] .... 82320.344212: binder_transaction: transaction=1573279 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
150994 s.nexuslauncher-10023 (10023) [004] .... 82320.344218: binder_transaction_alloc_buf: transaction=1573279 data_size=80 offsets_size=0
150995 s.nexuslauncher-10023 (10023) [004] d..4 82320.344222: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150996 s.nexuslauncher-10023 (10023) [004] d..2 82320.344317: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
150997          <idle>-0     (-----) [004] d..1 82320.344334: cpu_idle: state=2 cpu_id=4
150998          <idle>-0     (-----) [000] dnh2 82320.344425: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
150999          <idle>-0     (-----) [000] .n.1 82320.344439: cpu_idle: state=4294967295 cpu_id=0
151000          <idle>-0     (-----) [000] d..2 82320.344461: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
151001   Binder:8858_1-8871  ( 8858) [000] .... 82320.344475: binder_transaction_received: transaction=1573279
151002   Binder:8858_1-8871  ( 8858) [000] d..1 82320.344525: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
151003   Binder:8858_1-8871  ( 8858) [000] d..2 82320.344559: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
151004          <idle>-0     (-----) [001] .n.1 82320.344566: cpu_idle: state=4294967295 cpu_id=1
151005          <idle>-0     (-----) [001] d..2 82320.344584: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151006   Binder:8858_1-8871  ( 8858) [000] d..2 82320.344626: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151007          <idle>-0     (-----) [000] d..1 82320.344653: cpu_idle: state=0 cpu_id=0
151008  appEventThread-8881  ( 8858) [001] d..2 82320.344690: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
151009          <idle>-0     (-----) [001] d..1 82320.344715: cpu_idle: state=0 cpu_id=1
151010          <idle>-0     (-----) [002] d..2 82320.346589: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
151011          <idle>-0     (-----) [002] dn.3 82320.346612: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
151012          <idle>-0     (-----) [002] .n.1 82320.346620: cpu_idle: state=4294967295 cpu_id=2
151013          <idle>-0     (-----) [002] d..2 82320.346645: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
151014     ksoftirqd/2-26    (   26) [002] d..2 82320.346745: 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
151015          <idle>-0     (-----) [002] d..1 82320.346768: cpu_idle: state=0 cpu_id=2
151016          <idle>-0     (-----) [001] d.s3 82320.346840: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151017          <idle>-0     (-----) [001] dns4 82320.346856: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151018          <idle>-0     (-----) [001] .n.1 82320.346876: cpu_idle: state=4294967295 cpu_id=1
151019          <idle>-0     (-----) [002] ...1 82320.346884: cpu_idle: state=4294967295 cpu_id=2
151020          <idle>-0     (-----) [002] d..1 82320.346891: cpu_idle: state=0 cpu_id=2
151021          <idle>-0     (-----) [001] d..2 82320.346894: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
151022     kworker/1:1-25249 (25249) [001] d..2 82320.347015: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
151023     kworker/1:1-25249 (25249) [001] d..3 82320.347048: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
151024          <idle>-0     (-----) [002] ...1 82320.347073: cpu_idle: state=4294967295 cpu_id=2
151025          <idle>-0     (-----) [002] d..1 82320.347083: cpu_idle: state=0 cpu_id=2
151026     kworker/1:1-25249 (25249) [001] d..2 82320.347241: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
151027          <idle>-0     (-----) [002] ...1 82320.347277: cpu_idle: state=4294967295 cpu_id=2
151028          <idle>-0     (-----) [002] d..1 82320.347283: cpu_idle: state=0 cpu_id=2
151029   cds_mc_thread-16565 (16565) [001] d..2 82320.347311: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=002
151030   cds_mc_thread-16565 (16565) [001] d..3 82320.347369: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
151031   cds_mc_thread-16565 (16565) [001] d.s3 82320.347419: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151032   cds_mc_thread-16565 (16565) [001] d.s4 82320.347433: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151033          <idle>-0     (-----) [002] ...1 82320.347458: cpu_idle: state=4294967295 cpu_id=2
151034          <idle>-0     (-----) [002] d..1 82320.347468: cpu_idle: state=0 cpu_id=2
151035   cds_mc_thread-16565 (16565) [001] d..3 82320.347619: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151036   cds_mc_thread-16565 (16565) [001] d..4 82320.347674: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
151037   cds_mc_thread-16565 (16565) [001] d..2 82320.348028: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
151038         rcuop/0-10    (   10) [001] d..2 82320.348036: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
151039         rcuop/0-10    (   10) [001] d..3 82320.348088: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
151040         rcuop/0-10    (   10) [001] d..2 82320.348103: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
151041 wlan_logging_th-647   (  647) [001] d..2 82320.348127: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
151042 wlan_logging_th-647   (  647) [001] d..3 82320.348150: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
151043 wlan_logging_th-647   (  647) [001] d..2 82320.348172: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
151044     rcu_preempt-7     (    7) [001] d..2 82320.348190: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
151045     kworker/1:1-25249 (25249) [001] d..2 82320.348248: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
151046     kworker/1:1-25249 (25249) [001] d..3 82320.348270: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
151047     kworker/1:1-25249 (25249) [001] d..2 82320.348347: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
151048   cds_mc_thread-16565 (16565) [001] d..2 82320.348564: sched_waking: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
151049          <idle>-0     (-----) [002] ...1 82320.348590: cpu_idle: state=4294967295 cpu_id=2
151050   cds_mc_thread-16565 (16565) [001] d..3 82320.348592: sched_wakeup: comm=wlan_logging_th pid=647 prio=120 target_cpu=001
151051          <idle>-0     (-----) [002] d..1 82320.348596: cpu_idle: state=2 cpu_id=2
151052   cds_mc_thread-16565 (16565) [001] d..2 82320.348798: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=wlan_logging_th next_pid=647 next_prio=120
151053 wlan_logging_th-647   (  647) [001] d..2 82320.348840: sched_switch: prev_comm=wlan_logging_th prev_pid=647 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
151054 [email protected] (  798) [001] d..2 82320.349089: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
151055          <idle>-0     (-----) [001] d..1 82320.349110: cpu_idle: state=0 cpu_id=1
151056          <idle>-0     (-----) [000] ...1 82320.350667: cpu_idle: state=4294967295 cpu_id=0
151057          <idle>-0     (-----) [000] d..1 82320.350673: cpu_idle: state=2 cpu_id=0
151058          <idle>-0     (-----) [001] d.s2 82320.351897: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
151059          <idle>-0     (-----) [001] dns3 82320.351924: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
151060          <idle>-0     (-----) [001] dns3 82320.351932: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
151061          <idle>-0     (-----) [001] dns4 82320.351976: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
151062          <idle>-0     (-----) [001] .n.1 82320.352005: cpu_idle: state=4294967295 cpu_id=1
151063          <idle>-0     (-----) [001] d..2 82320.352019: 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
151064     rcu_preempt-7     (    7) [001] d..2 82320.352032: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
151065     rcu_preempt-7     (    7) [001] d..3 82320.352053: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
151066     rcu_preempt-7     (    7) [001] d..2 82320.352068: 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
151067         rcuop/0-10    (   10) [001] d..2 82320.352073: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
151068         rcuop/0-10    (   10) [001] d..3 82320.352113: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
151069         rcuop/0-10    (   10) [001] d..2 82320.352118: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
151070         rcuop/0-10    (   10) [001] d..3 82320.352132: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
151071         rcuop/0-10    (   10) [001] d..2 82320.352144: 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
151072         rcuop/1-21    (   21) [001] d..2 82320.352162: 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
151073     rcu_preempt-7     (    7) [001] d..2 82320.352177: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151074  kworker/u16:13-1147  ( 1147) [001] d..2 82320.352297: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
151075          <idle>-0     (-----) [001] d..1 82320.352320: cpu_idle: state=0 cpu_id=1
151076          <idle>-0     (-----) [001] d.s2 82320.358478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
151077          <idle>-0     (-----) [001] dns3 82320.358501: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
151078          <idle>-0     (-----) [001] .n.1 82320.358515: cpu_idle: state=4294967295 cpu_id=1
151079          <idle>-0     (-----) [001] d..2 82320.358531: 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
151080     rcu_preempt-7     (    7) [001] d..2 82320.358543: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
151081     rcu_preempt-7     (    7) [001] d..3 82320.358561: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
151082     rcu_preempt-7     (    7) [001] d..2 82320.358578: 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
151083         rcuop/0-10    (   10) [001] d..2 82320.358583: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
151084         rcuop/0-10    (   10) [001] d..3 82320.358598: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=001
151085         rcuop/0-10    (   10) [001] d..2 82320.358610: 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
151086         rcuop/1-21    (   21) [001] d..2 82320.358645: 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
151087          <idle>-0     (-----) [001] d..1 82320.358665: cpu_idle: state=0 cpu_id=1
151088          <idle>-0     (-----) [002] d.h2 82320.359610: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
151089          <idle>-0     (-----) [002] dnh3 82320.359645: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
151090          <idle>-0     (-----) [002] .n.1 82320.359662: cpu_idle: state=4294967295 cpu_id=2
151091          <idle>-0     (-----) [002] d..2 82320.359685: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
151092        DispSync-8879  ( 8858) [002] d..1 82320.359714: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
151093        DispSync-8879  ( 8858) [002] d..2 82320.359734: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
151094          <idle>-0     (-----) [001] .n.1 82320.359742: cpu_idle: state=4294967295 cpu_id=1
151095          <idle>-0     (-----) [001] d..2 82320.359756: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151096        DispSync-8879  ( 8858) [002] d..2 82320.359793: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
151097          <idle>-0     (-----) [002] d..1 82320.359819: cpu_idle: state=0 cpu_id=2
151098  appEventThread-8881  ( 8858) [001] d..3 82320.359821: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151099  appEventThread-8881  ( 8858) [001] d..2 82320.359906: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
151100          <idle>-0     (-----) [001] d..1 82320.359929: cpu_idle: state=2 cpu_id=1
151101          <idle>-0     (-----) [004] dnh2 82320.360617: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151102          <idle>-0     (-----) [004] .n.1 82320.360625: cpu_idle: state=4294967295 cpu_id=4
151103          <idle>-0     (-----) [004] d..2 82320.360638: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
151104 s.nexuslauncher-10023 (10023) [004] .... 82320.360812: binder_transaction: transaction=1573280 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
151105 s.nexuslauncher-10023 (10023) [004] .... 82320.360818: binder_transaction_alloc_buf: transaction=1573280 data_size=80 offsets_size=0
151106 s.nexuslauncher-10023 (10023) [004] d..4 82320.360822: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
151107 s.nexuslauncher-10023 (10023) [004] d..2 82320.360915: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
151108          <idle>-0     (-----) [004] d..1 82320.360930: cpu_idle: state=2 cpu_id=4
151109          <idle>-0     (-----) [002] ...1 82320.360942: cpu_idle: state=4294967295 cpu_id=2
151110          <idle>-0     (-----) [002] d..1 82320.360951: cpu_idle: state=2 cpu_id=2
151111          <idle>-0     (-----) [000] dnh2 82320.361029: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
151112          <idle>-0     (-----) [000] .n.1 82320.361042: cpu_idle: state=4294967295 cpu_id=0
151113          <idle>-0     (-----) [000] d..2 82320.361064: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
151114   Binder:8858_1-8871  ( 8858) [000] .... 82320.361076: binder_transaction_received: transaction=1573280
151115   Binder:8858_1-8871  ( 8858) [000] d..1 82320.361124: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
151116   Binder:8858_1-8871  ( 8858) [000] d..2 82320.361148: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
151117   Binder:8858_1-8871  ( 8858) [000] d..2 82320.361214: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151118          <idle>-0     (-----) [000] d..1 82320.361240: cpu_idle: state=0 cpu_id=0
151119          <idle>-0     (-----) [001] .n.1 82320.361319: cpu_idle: state=4294967295 cpu_id=1
151120          <idle>-0     (-----) [001] d..2 82320.361351: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151121  appEventThread-8881  ( 8858) [001] d..2 82320.361454: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
151122          <idle>-0     (-----) [001] d..1 82320.361480: cpu_idle: state=0 cpu_id=1
151123          <idle>-0     (-----) [001] d.s3 82320.366299: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151124          <idle>-0     (-----) [001] dns4 82320.366320: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151125          <idle>-0     (-----) [001] .n.1 82320.366341: cpu_idle: state=4294967295 cpu_id=1
151126          <idle>-0     (-----) [001] d..2 82320.366361: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
151127     kworker/1:1-25249 (25249) [001] d..2 82320.366404: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
151128     kworker/1:1-25249 (25249) [001] d..3 82320.366423: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
151129          <idle>-0     (-----) [002] d..2 82320.366431: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
151130          <idle>-0     (-----) [002] dn.3 82320.366455: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
151131     kworker/1:1-25249 (25249) [001] d..2 82320.366460: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
151132          <idle>-0     (-----) [002] .n.1 82320.366462: cpu_idle: state=4294967295 cpu_id=2
151133          <idle>-0     (-----) [002] d..2 82320.366487: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
151134     ksoftirqd/2-26    (   26) [002] d.s4 82320.366511: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
151135     ksoftirqd/2-26    (   26) [002] d.s5 82320.366567: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
151136     ksoftirqd/2-26    (   26) [002] d.s4 82320.366579: sched_waking: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
151137     ksoftirqd/2-26    (   26) [002] d.s5 82320.366593: sched_wakeup: comm=kworker/2:1 pid=25259 prio=120 target_cpu=002
151138     ksoftirqd/2-26    (   26) [002] d..2 82320.366653: sched_switch: prev_comm=ksoftirqd/2 prev_pid=26 prev_prio=120 prev_state=S ==> next_comm=kworker/2:1 next_pid=25259 next_prio=120
151139 [email protected] (  798) [001] d..2 82320.366664: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
151140          <idle>-0     (-----) [001] d..1 82320.366691: cpu_idle: state=0 cpu_id=1
151141     kworker/2:1-25259 (25259) [002] d..2 82320.366695: sched_switch: prev_comm=kworker/2:1 prev_pid=25259 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151142          <idle>-0     (-----) [001] d.s3 82320.366879: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151143          <idle>-0     (-----) [001] dns4 82320.366894: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151144          <idle>-0     (-----) [001] .n.1 82320.366917: cpu_idle: state=4294967295 cpu_id=1
151145          <idle>-0     (-----) [001] d..2 82320.366933: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
151146     kworker/1:1-25249 (25249) [001] d..2 82320.366973: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
151147     kworker/1:1-25249 (25249) [001] d..3 82320.366989: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
151148     kworker/1:1-25249 (25249) [001] d.s2 82320.367044: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
151149  kworker/u16:13-1147  ( 1147) [002] d..2 82320.367049: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> [email protected] next_pid=16588 next_prio=120
151150     kworker/1:1-25249 (25249) [001] d.s3 82320.367079: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
151151     kworker/1:1-25249 (25249) [001] d.s3 82320.367092: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
151152 [email protected] (  798) [002] d..2 82320.367106: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151153  kworker/u16:13-1147  ( 1147) [002] d..2 82320.367141: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
151154     kworker/1:1-25249 (25249) [001] d..2 82320.367169: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
151155          <idle>-0     (-----) [001] d..1 82320.367193: cpu_idle: state=0 cpu_id=1
151156          <idle>-0     (-----) [000] ...1 82320.367253: cpu_idle: state=4294967295 cpu_id=0
151157          <idle>-0     (-----) [000] d..1 82320.367261: cpu_idle: state=2 cpu_id=0
151158 [email protected] (  798) [002] d..2 82320.367303: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
151159          <idle>-0     (-----) [002] d..1 82320.367330: cpu_idle: state=2 cpu_id=2
151160          <idle>-0     (-----) [001] d.s3 82320.368224: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151161          <idle>-0     (-----) [001] dns4 82320.368238: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151162          <idle>-0     (-----) [001] .n.1 82320.368265: cpu_idle: state=4294967295 cpu_id=1
151163          <idle>-0     (-----) [001] d..2 82320.368282: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
151164     kworker/1:1-25249 (25249) [001] d..2 82320.368315: sched_waking: [email protected] pid=16588 prio=120 target_cpu=002
151165     kworker/1:1-25249 (25249) [001] d..3 82320.368338: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
151166     kworker/1:1-25249 (25249) [001] d..2 82320.368370: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
151167          <idle>-0     (-----) [003] d.h3 82320.368416: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151168          <idle>-0     (-----) [003] dnh4 82320.368456: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151169          <idle>-0     (-----) [003] .n.1 82320.368472: cpu_idle: state=4294967295 cpu_id=3
151170          <idle>-0     (-----) [003] d..2 82320.368497: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
151171   kworker/u17:0-98    (   98) [003] d..2 82320.368521: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151172   kworker/u17:0-98    (   98) [003] d..3 82320.368538: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151173   kworker/u17:0-98    (   98) [003] d..2 82320.368570: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
151174     kworker/3:1-25210 (25210) [003] d..2 82320.368591: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
151175     kworker/3:1-25210 (25210) [003] d..3 82320.368643: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
151176     kworker/3:1-25210 (25210) [003] d..2 82320.368665: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
151177 [email protected] (  798) [001] d..2 82320.368680: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
151178          <idle>-0     (-----) [001] d..1 82320.368709: cpu_idle: state=0 cpu_id=1
151179          <idle>-0     (-----) [001] d.s3 82320.368779: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
151180            adbd-24054 (  960) [003] d..2 82320.368801: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151181          <idle>-0     (-----) [001] dns4 82320.368811: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
151182          <idle>-0     (-----) [003] d.h4 82320.368831: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151183          <idle>-0     (-----) [001] dns3 82320.368838: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151184          <idle>-0     (-----) [003] dnh5 82320.368847: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151185          <idle>-0     (-----) [001] dns4 82320.368849: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
151186          <idle>-0     (-----) [003] d..2 82320.368866: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
151187          <idle>-0     (-----) [001] .n.1 82320.368869: cpu_idle: state=4294967295 cpu_id=1
151188   kworker/u17:0-98    (   98) [003] d..2 82320.368883: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151189          <idle>-0     (-----) [001] d..2 82320.368889: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
151190   kworker/u17:0-98    (   98) [003] d..3 82320.368896: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151191   kworker/u17:0-98    (   98) [003] d..2 82320.368925: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
151192     kworker/1:1-25249 (25249) [001] d..2 82320.368927: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
151193     kworker/3:1-25210 (25210) [003] d..2 82320.368942: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
151194     kworker/3:1-25210 (25210) [003] d..3 82320.368963: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
151195     kworker/1:1-25249 (25249) [001] d..3 82320.368987: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=003
151196     kworker/3:1-25210 (25210) [003] d..2 82320.369002: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
151197            adbd-24054 (  960) [003] d..2 82320.369036: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
151198     kworker/1:1-25249 (25249) [001] d..2 82320.369040: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
151199            adbd-24054 (  960) [003] d..3 82320.369068: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
151200   cds_mc_thread-16565 (16565) [001] d..2 82320.369135: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
151201            adbd-24054 (  960) [003] d..2 82320.369165: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
151202 [email protected] (  798) [003] d..2 82320.369356: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151203          <idle>-0     (-----) [003] d..1 82320.369383: cpu_idle: state=0 cpu_id=3
151204          <idle>-0     (-----) [003] ...1 82320.370554: cpu_idle: state=4294967295 cpu_id=3
151205          <idle>-0     (-----) [003] d..1 82320.370561: cpu_idle: state=2 cpu_id=3
151206            adbd-960   (  960) [001] d..2 82320.371121: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=27816 next_prio=120
151207              sh-27816 (27816) [001] d.s2 82320.371913: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
151208              sh-27816 (27816) [001] d.s3 82320.371953: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151209          <idle>-0     (-----) [000] .n.1 82320.372116: cpu_idle: state=4294967295 cpu_id=0
151210          <idle>-0     (-----) [000] d..2 82320.372151: 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
151211         rcuop/0-10    (   10) [000] d..2 82320.372160: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
151212         rcuop/0-10    (   10) [000] d..3 82320.372222: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151213         rcuop/0-10    (   10) [000] d..2 82320.372237: 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
151214     rcu_preempt-7     (    7) [000] d..2 82320.372279: 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
151215          <idle>-0     (-----) [000] d..1 82320.372301: cpu_idle: state=0 cpu_id=0
151216              sh-27816 (27816) [001] d..2 82320.373246: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
151217              sh-27816 (27816) [001] d..3 82320.373314: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
151218          <idle>-0     (-----) [000] .n.1 82320.373318: cpu_idle: state=4294967295 cpu_id=0
151219          <idle>-0     (-----) [000] d..2 82320.373336: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
151220            adbd-960   (  960) [000] d..1 82320.373856: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
151221            adbd-960   (  960) [000] d..2 82320.373917: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
151222              sh-27816 (27816) [001] d..2 82320.373946: sched_switch: prev_comm=sh prev_pid=27816 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=24055 next_prio=120
151223            adbd-24055 (  960) [001] d..2 82320.374092: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=27816 next_prio=120
151224            adbd-960   (  960) [000] d..2 82320.374106: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=27817 next_prio=120
151225 shell svc 27816-27817 (  960) [000] d..2 82320.374260: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151226          <idle>-0     (-----) [003] d.h3 82320.374265: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151227          <idle>-0     (-----) [000] d..1 82320.374295: cpu_idle: state=0 cpu_id=0
151228          <idle>-0     (-----) [003] d.h4 82320.374334: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
151229          <idle>-0     (-----) [000] .n.1 82320.374345: cpu_idle: state=4294967295 cpu_id=0
151230          <idle>-0     (-----) [003] ...1 82320.374361: cpu_idle: state=4294967295 cpu_id=3
151231          <idle>-0     (-----) [000] d..2 82320.374368: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
151232          <idle>-0     (-----) [003] d..1 82320.374379: cpu_idle: state=2 cpu_id=3
151233   kworker/u17:0-98    (   98) [000] d..2 82320.374401: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
151234   kworker/u17:0-98    (   98) [000] d..3 82320.374427: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
151235   kworker/u17:0-98    (   98) [000] d..2 82320.374467: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
151236     kworker/0:1-25262 (25262) [000] d..2 82320.374488: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
151237     kworker/0:1-25262 (25262) [000] d..3 82320.374538: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
151238     kworker/0:1-25262 (25262) [000] d..2 82320.374561: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
151239            adbd-24055 (  960) [000] d..2 82320.374622: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151240          <idle>-0     (-----) [000] d..1 82320.374643: cpu_idle: state=0 cpu_id=0
151241          <idle>-0     (-----) [003] d.h3 82320.374775: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
151242          <idle>-0     (-----) [003] d.h4 82320.374807: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
151243          <idle>-0     (-----) [000] .n.1 82320.374815: cpu_idle: state=4294967295 cpu_id=0
151244          <idle>-0     (-----) [003] ...1 82320.374830: cpu_idle: state=4294967295 cpu_id=3
151245          <idle>-0     (-----) [000] d..2 82320.374834: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
151246          <idle>-0     (-----) [003] d..1 82320.374845: cpu_idle: state=0 cpu_id=3
151247   kworker/u17:0-98    (   98) [000] d..2 82320.374855: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
151248   kworker/u17:0-98    (   98) [000] d..3 82320.374871: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
151249   kworker/u17:0-98    (   98) [000] d..2 82320.374902: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
151250     kworker/0:1-25262 (25262) [000] d..2 82320.374921: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
151251     kworker/0:1-25262 (25262) [000] d..3 82320.374972: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=000
151252     kworker/0:1-25262 (25262) [000] d..2 82320.374993: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
151253          <idle>-0     (-----) [003] d.h3 82320.375140: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
151254              sh-27816 (27816) [001] d.s3 82320.375172: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
151255          <idle>-0     (-----) [003] dnh4 82320.375177: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151256          <idle>-0     (-----) [003] .n.1 82320.375189: cpu_idle: state=4294967295 cpu_id=3
151257            adbd-24054 (  960) [000] d..2 82320.375209: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151258          <idle>-0     (-----) [003] d..2 82320.375211: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
151259          <idle>-0     (-----) [000] d..1 82320.375226: cpu_idle: state=0 cpu_id=0
151260   kworker/u17:0-98    (   98) [003] d..2 82320.375237: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151261              sh-27816 (27816) [001] d.s4 82320.375242: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151262          <idle>-0     (-----) [000] .n.1 82320.375250: cpu_idle: state=4294967295 cpu_id=0
151263   kworker/u17:0-98    (   98) [003] d..3 82320.375256: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151264          <idle>-0     (-----) [000] d..2 82320.375266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151265   kworker/u17:0-98    (   98) [003] d..2 82320.375289: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
151266     kworker/3:1-25210 (25210) [003] d..2 82320.375314: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=000
151267     kworker/3:1-25210 (25210) [003] d..3 82320.375369: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
151268  kworker/u16:13-1147  ( 1147) [000] .... 82320.375414: clk_set_rate: l3_cluster0_vote_clk 480000000
151269     kworker/3:1-25210 (25210) [003] d..2 82320.375421: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
151270  kworker/u16:13-1147  ( 1147) [000] .... 82320.375421: clk_set_rate: l3_clk 480000000
151271            adbd-24054 (  960) [003] d..2 82320.375475: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
151272            adbd-24054 (  960) [003] d..3 82320.375499: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
151273            adbd-24054 (  960) [003] d..2 82320.375622: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
151274  kworker/u16:13-1147  ( 1147) [000] d..2 82320.375717: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151275          <idle>-0     (-----) [000] d..1 82320.375733: cpu_idle: state=0 cpu_id=0
151276              sh-27816 (27816) [001] d.s2 82320.375745: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151277            adbd-960   (  960) [003] d..2 82320.375751: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=000
151278              sh-27816 (27816) [001] d.s3 82320.375764: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
151279              sh-27816 (27816) [001] d.s3 82320.375776: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151280          <idle>-0     (-----) [000] .n.1 82320.375783: cpu_idle: state=4294967295 cpu_id=0
151281          <idle>-0     (-----) [000] d..2 82320.375796: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151282            adbd-960   (  960) [003] d..3 82320.375796: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=003
151283            adbd-960   (  960) [003] d..1 82320.375814: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
151284  kworker/u16:13-1147  ( 1147) [000] d..2 82320.375833: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151285            adbd-960   (  960) [003] d..2 82320.375846: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
151286          <idle>-0     (-----) [000] d..2 82320.375855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
151287            adbd-960   (  960) [003] d..2 82320.375941: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
151288            adbd-24055 (  960) [000] d..2 82320.375963: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151289 shell svc 27816-27817 (  960) [003] d.h4 82320.375967: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151290          <idle>-0     (-----) [000] d..1 82320.375976: cpu_idle: state=0 cpu_id=0
151291 shell svc 27816-27817 (  960) [003] d.h5 82320.376018: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
151292          <idle>-0     (-----) [000] .n.1 82320.376024: cpu_idle: state=4294967295 cpu_id=0
151293          <idle>-0     (-----) [000] d..2 82320.376036: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
151294          <idle>-0     (-----) [002] d.h2 82320.376039: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
151295   kworker/u17:0-98    (   98) [000] d..2 82320.376053: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
151296          <idle>-0     (-----) [002] dnh3 82320.376064: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
151297   kworker/u17:0-98    (   98) [000] d..3 82320.376070: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
151298          <idle>-0     (-----) [002] .n.1 82320.376078: cpu_idle: state=4294967295 cpu_id=2
151299          <idle>-0     (-----) [002] d..2 82320.376095: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
151300   kworker/u17:0-98    (   98) [000] d..2 82320.376099: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
151301     kworker/0:1-25262 (25262) [000] d..2 82320.376112: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
151302 shell svc 27816-27817 (  960) [003] d..2 82320.376125: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151303        DispSync-8879  ( 8858) [002] d..1 82320.376125: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
151304          <idle>-0     (-----) [003] d..1 82320.376151: cpu_idle: state=0 cpu_id=3
151305        DispSync-8879  ( 8858) [002] d..2 82320.376162: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
151306          <idle>-0     (-----) [003] .n.1 82320.376170: cpu_idle: state=4294967295 cpu_id=3
151307     kworker/0:1-25262 (25262) [000] d..3 82320.376172: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
151308          <idle>-0     (-----) [003] d..2 82320.376186: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151309     kworker/0:1-25262 (25262) [000] d..2 82320.376206: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151310          <idle>-0     (-----) [000] d..1 82320.376220: cpu_idle: state=0 cpu_id=0
151311        DispSync-8879  ( 8858) [002] d..2 82320.376221: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
151312          <idle>-0     (-----) [002] d..1 82320.376241: cpu_idle: state=2 cpu_id=2
151313  appEventThread-8881  ( 8858) [003] d..3 82320.376252: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151314  appEventThread-8881  ( 8858) [003] d..2 82320.376315: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
151315            adbd-24055 (  960) [003] d..2 82320.376364: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151316          <idle>-0     (-----) [003] d..1 82320.376384: cpu_idle: state=0 cpu_id=3
151317          <idle>-0     (-----) [004] dnh2 82320.377025: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151318          <idle>-0     (-----) [004] .n.1 82320.377033: cpu_idle: state=4294967295 cpu_id=4
151319          <idle>-0     (-----) [004] d..2 82320.377046: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
151320 s.nexuslauncher-10023 (10023) [004] .... 82320.377232: binder_transaction: transaction=1573281 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
151321 s.nexuslauncher-10023 (10023) [004] .... 82320.377238: binder_transaction_alloc_buf: transaction=1573281 data_size=80 offsets_size=0
151322 s.nexuslauncher-10023 (10023) [004] d..4 82320.377242: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
151323          <idle>-0     (-----) [000] dnh2 82320.377274: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
151324          <idle>-0     (-----) [000] .n.1 82320.377282: cpu_idle: state=4294967295 cpu_id=0
151325          <idle>-0     (-----) [000] d..2 82320.377292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
151326   Binder:8858_1-8871  ( 8858) [000] .... 82320.377305: binder_transaction_received: transaction=1573281
151327 s.nexuslauncher-10023 (10023) [004] d..2 82320.377332: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
151328          <idle>-0     (-----) [004] d..1 82320.377345: cpu_idle: state=2 cpu_id=4
151329   Binder:8858_1-8871  ( 8858) [000] d..1 82320.377355: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
151330   Binder:8858_1-8871  ( 8858) [000] d..2 82320.377377: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
151331          <idle>-0     (-----) [003] .n.1 82320.377386: cpu_idle: state=4294967295 cpu_id=3
151332          <idle>-0     (-----) [003] d..2 82320.377398: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151333   Binder:8858_1-8871  ( 8858) [000] d..2 82320.377434: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151334          <idle>-0     (-----) [000] d..1 82320.377448: cpu_idle: state=0 cpu_id=0
151335  appEventThread-8881  ( 8858) [003] d..2 82320.377458: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151336          <idle>-0     (-----) [003] d..1 82320.377475: cpu_idle: state=0 cpu_id=3
151337          <idle>-0     (-----) [000] d.s2 82320.378478: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151338          <idle>-0     (-----) [000] dns3 82320.378499: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151339          <idle>-0     (-----) [000] .n.1 82320.378519: cpu_idle: state=4294967295 cpu_id=0
151340          <idle>-0     (-----) [000] d..2 82320.378531: 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
151341     rcu_preempt-7     (    7) [000] d..2 82320.378545: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151342     rcu_preempt-7     (    7) [000] d..3 82320.378563: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151343     rcu_preempt-7     (    7) [000] d..2 82320.378577: 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
151344         rcuop/0-10    (   10) [000] d..2 82320.378583: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=001
151345         rcuop/0-10    (   10) [000] d..3 82320.378628: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
151346         rcuop/0-10    (   10) [000] d..2 82320.378633: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151347         rcuop/0-10    (   10) [000] d..3 82320.378648: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151348         rcuop/0-10    (   10) [000] d..2 82320.378659: 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
151349         rcuop/1-21    (   21) [000] d..2 82320.378677: 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
151350     rcu_preempt-7     (    7) [000] d..2 82320.378712: 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
151351          <idle>-0     (-----) [000] d..1 82320.378730: cpu_idle: state=0 cpu_id=0
151352          <idle>-0     (-----) [003] ...1 82320.378904: cpu_idle: state=4294967295 cpu_id=3
151353          <idle>-0     (-----) [003] d..1 82320.378910: cpu_idle: state=2 cpu_id=3
151354          <idle>-0     (-----) [000] d.s2 82320.385140: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151355              sh-27816 (27816) [001] d.s2 82320.385148: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151356          <idle>-0     (-----) [000] dns3 82320.385158: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151357          <idle>-0     (-----) [000] .n.1 82320.385175: cpu_idle: state=4294967295 cpu_id=0
151358              sh-27816 (27816) [001] d.s3 82320.385186: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151359          <idle>-0     (-----) [000] d..2 82320.385196: 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
151360              sh-27816 (27816) [001] d.s2 82320.385208: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151361     rcu_preempt-7     (    7) [000] d..2 82320.385219: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151362              sh-27816 (27816) [001] d.s3 82320.385246: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151363  kworker/u16:13-1147  ( 1147) [000] d..2 82320.385266: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
151364     rcu_preempt-7     (    7) [000] d..2 82320.385272: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151365     rcu_preempt-7     (    7) [000] d..3 82320.385290: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151366     rcu_preempt-7     (    7) [000] d..2 82320.385303: 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
151367         rcuop/0-10    (   10) [000] d..2 82320.385307: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
151368         rcuop/0-10    (   10) [000] d..3 82320.385322: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
151369         rcuop/0-10    (   10) [000] d..2 82320.385340: 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
151370         rcuop/1-21    (   21) [000] d..2 82320.385363: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151371  kworker/u16:13-1147  ( 1147) [000] d..2 82320.385583: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151372          <idle>-0     (-----) [000] d..1 82320.385605: cpu_idle: state=0 cpu_id=0
151373              sh-27816 (27816) [001] d.s2 82320.385606: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151374              sh-27816 (27816) [001] d.s3 82320.385621: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
151375              sh-27816 (27816) [001] d.s3 82320.385633: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151376          <idle>-0     (-----) [000] .n.1 82320.385641: cpu_idle: state=4294967295 cpu_id=0
151377          <idle>-0     (-----) [000] d..2 82320.385658: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151378  kworker/u16:13-1147  ( 1147) [000] d..2 82320.385786: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151379          <idle>-0     (-----) [000] d..1 82320.385803: cpu_idle: state=0 cpu_id=0
151380          <idle>-0     (-----) [000] ...1 82320.387347: cpu_idle: state=4294967295 cpu_id=0
151381          <idle>-0     (-----) [000] d..1 82320.387353: cpu_idle: state=2 cpu_id=0
151382              sh-27816 (27816) [001] d..2 82320.388600: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151383              sh-27816 (27816) [001] d..3 82320.388630: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151384          <idle>-0     (-----) [000] .n.1 82320.388781: cpu_idle: state=4294967295 cpu_id=0
151385          <idle>-0     (-----) [000] d..2 82320.388812: 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
151386         rcuop/0-10    (   10) [000] d..2 82320.388819: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151387         rcuop/0-10    (   10) [000] d..3 82320.388848: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151388         rcuop/0-10    (   10) [000] d..2 82320.388862: 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
151389     rcu_preempt-7     (    7) [000] d..2 82320.388899: 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
151390          <idle>-0     (-----) [000] d..1 82320.388918: cpu_idle: state=0 cpu_id=0
151391              sh-27816 (27816) [001] d.H2 82320.391919: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
151392              sh-27816 (27816) [001] d.H3 82320.391945: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
151393          <idle>-0     (-----) [003] .n.1 82320.392104: cpu_idle: state=4294967295 cpu_id=3
151394          <idle>-0     (-----) [003] d..2 82320.392131: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
151395         sugov:0-576   (  576) [003] .... 82320.392174: clk_set_rate: pwrcl_clk 748800000
151396         sugov:0-576   (  576) [003] .... 82320.392189: clk_set_rate: cpu3_pwrcl_clk 652800000
151397         sugov:0-576   (  576) [003] .... 82320.392199: clk_set_rate: cpu2_pwrcl_clk 652800000
151398         sugov:0-576   (  576) [003] .... 82320.392208: clk_set_rate: cpu1_pwrcl_clk 652800000
151399         sugov:0-576   (  576) [003] .... 82320.392216: clk_set_rate: cpu0_pwrcl_clk 748800000
151400         sugov:0-576   (  576) [003] .... 82320.392227: cpu_frequency: state=748800 cpu_id=0
151401         sugov:0-576   (  576) [003] .... 82320.392253: cpu_frequency: state=748800 cpu_id=1
151402         sugov:0-576   (  576) [003] .... 82320.392258: cpu_frequency: state=748800 cpu_id=2
151403         sugov:0-576   (  576) [003] .... 82320.392262: cpu_frequency: state=748800 cpu_id=3
151404         sugov:0-576   (  576) [003] d..2 82320.392310: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151405          <idle>-0     (-----) [003] d..1 82320.392330: cpu_idle: state=0 cpu_id=3
151406          <idle>-0     (-----) [000] .n.1 82320.392498: cpu_idle: state=4294967295 cpu_id=0
151407          <idle>-0     (-----) [000] d..2 82320.392515: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27818 next_prio=120
151408          <idle>-0     (-----) [002] d.h2 82320.392533: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
151409          <idle>-0     (-----) [002] dnh3 82320.392558: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
151410          <idle>-0     (-----) [002] dnh2 82320.392565: sched_waking: comm=batterystats-wo pid=8965 prio=120 target_cpu=002
151411          <idle>-0     (-----) [002] dnh3 82320.392599: sched_wakeup: comm=batterystats-wo pid=8965 prio=120 target_cpu=003
151412          <idle>-0     (-----) [003] .n.1 82320.392608: cpu_idle: state=4294967295 cpu_id=3
151413          <idle>-0     (-----) [002] .n.1 82320.392613: cpu_idle: state=4294967295 cpu_id=2
151414          <idle>-0     (-----) [003] d..2 82320.392626: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=batterystats-wo next_pid=8965 next_prio=120
151415          <idle>-0     (-----) [002] d..2 82320.392630: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
151416        DispSync-8879  ( 8858) [002] d..1 82320.392655: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
151417              sh-27816 (27816) [001] d..2 82320.392667: sched_switch: prev_comm=sh prev_pid=27816 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
151418        DispSync-8879  ( 8858) [002] d..2 82320.392687: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
151419          <idle>-0     (-----) [001] d..2 82320.392703: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151420        DispSync-8879  ( 8858) [002] d..2 82320.392731: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
151421          <idle>-0     (-----) [002] d..1 82320.392748: cpu_idle: state=2 cpu_id=2
151422  appEventThread-8881  ( 8858) [001] d..3 82320.392762: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151423  appEventThread-8881  ( 8858) [001] d..2 82320.392829: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
151424          <idle>-0     (-----) [001] d..1 82320.392850: cpu_idle: state=0 cpu_id=1
151425          <idle>-0     (-----) [001] .n.1 82320.393472: cpu_idle: state=4294967295 cpu_id=1
151426          <idle>-0     (-----) [001] d..2 82320.393488: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27819 next_prio=120
151427          <idle>-0     (-----) [004] dnh2 82320.393526: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151428          <idle>-0     (-----) [004] .n.1 82320.393535: cpu_idle: state=4294967295 cpu_id=4
151429          <idle>-0     (-----) [004] d..2 82320.393548: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
151430              sh-27818 (27818) [000] d..2 82320.393617: sched_switch: prev_comm=sh prev_pid=27818 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151431 batterystats-wo-8965  ( 8943) [003] d..2 82320.393629: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
151432          <idle>-0     (-----) [000] d..1 82320.393640: cpu_idle: state=0 cpu_id=0
151433 batterystats-wo-8965  ( 8943) [003] d..3 82320.393693: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
151434 s.nexuslauncher-10023 (10023) [004] .... 82320.393741: binder_transaction: transaction=1573282 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
151435 s.nexuslauncher-10023 (10023) [004] .... 82320.393747: binder_transaction_alloc_buf: transaction=1573282 data_size=80 offsets_size=0
151436 s.nexuslauncher-10023 (10023) [004] d..4 82320.393751: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
151437          <idle>-0     (-----) [000] dnh2 82320.393785: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
151438          <idle>-0     (-----) [000] .n.1 82320.393793: cpu_idle: state=4294967295 cpu_id=0
151439          <idle>-0     (-----) [000] d..2 82320.393803: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
151440   Binder:8858_1-8871  ( 8858) [000] .... 82320.393815: binder_transaction_received: transaction=1573282
151441 s.nexuslauncher-10023 (10023) [004] d..2 82320.393841: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
151442          <idle>-0     (-----) [004] d..1 82320.393855: cpu_idle: state=2 cpu_id=4
151443   Binder:8858_1-8871  ( 8858) [000] d..1 82320.393861: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
151444   Binder:8858_1-8871  ( 8858) [000] d..2 82320.393889: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
151445 batterystats-wo-8965  ( 8943) [003] d.h1 82320.393941: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
151446   Binder:8858_1-8871  ( 8858) [000] d..2 82320.393943: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151447          <idle>-0     (-----) [000] d..1 82320.393957: cpu_idle: state=0 cpu_id=0
151448 batterystats-wo-8965  ( 8943) [003] dnh2 82320.393961: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
151449 batterystats-wo-8965  ( 8943) [003] d..2 82320.393979: sched_switch: prev_comm=batterystats-wo prev_pid=8965 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
151450          <idle>-0     (-----) [002] .n.1 82320.394126: cpu_idle: state=4294967295 cpu_id=2
151451          <idle>-0     (-----) [002] d..2 82320.394147: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151452 irq/80-1436400.-9674  ( 9674) [003] d..2 82320.394148: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=rcuop/2 next_pid=29 next_prio=120
151453         rcuop/2-29    (   29) [003] d..2 82320.394165: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=batterystats-wo next_pid=8965 next_prio=120
151454              ps-27819 (27819) [001] d.s2 82320.394178: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
151455              ps-27819 (27819) [001] d.s3 82320.394200: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
151456 batterystats-wo-8965  ( 8943) [003] d..2 82320.394214: sched_switch: prev_comm=batterystats-wo prev_pid=8965 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
151457  appEventThread-8881  ( 8858) [002] d..2 82320.394249: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=batterystats-wo next_pid=8965 next_prio=120
151458 irq/80-1436400.-9674  ( 9674) [003] d..2 82320.394265: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151459          <idle>-0     (-----) [003] d..1 82320.394288: cpu_idle: state=0 cpu_id=3
151460 batterystats-wo-8965  ( 8943) [002] d..2 82320.394695: sched_switch: prev_comm=batterystats-wo prev_pid=8965 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
151461          <idle>-0     (-----) [002] d..1 82320.394720: cpu_idle: state=0 cpu_id=2
151462          <idle>-0     (-----) [000] d.s2 82320.395139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151463              ps-27819 (27819) [001] d.s3 82320.395158: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151464          <idle>-0     (-----) [000] dns3 82320.395161: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151465              ps-27819 (27819) [001] d.s4 82320.395193: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151466          <idle>-0     (-----) [000] .n.1 82320.395201: cpu_idle: state=4294967295 cpu_id=0
151467          <idle>-0     (-----) [000] d..2 82320.395212: 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
151468     rcu_preempt-7     (    7) [000] d..2 82320.395236: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151469     rcu_preempt-7     (    7) [000] d..3 82320.395254: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151470     rcu_preempt-7     (    7) [000] d..2 82320.395273: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151471  kworker/u16:13-1147  ( 1147) [000] d..2 82320.395584: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=rcuop/0 next_pid=10 next_prio=120
151472         rcuop/0-10    (   10) [000] d..2 82320.395590: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
151473         rcuop/0-10    (   10) [000] d..3 82320.395611: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
151474         rcuop/0-10    (   10) [000] d..2 82320.395623: 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
151475              ps-27819 (27819) [001] d.s2 82320.395624: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151476              ps-27819 (27819) [001] d.s3 82320.395650: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
151477              ps-27819 (27819) [001] d.s3 82320.395659: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151478         rcuop/1-21    (   21) [000] d..2 82320.395668: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151479          <idle>-0     (-----) [003] ...1 82320.395692: cpu_idle: state=4294967295 cpu_id=3
151480  kworker/u16:13-1147  ( 1147) [000] d..2 82320.395698: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151481          <idle>-0     (-----) [003] d..1 82320.395699: cpu_idle: state=2 cpu_id=3
151482          <idle>-0     (-----) [000] d..1 82320.395718: cpu_idle: state=0 cpu_id=0
151483          <idle>-0     (-----) [002] ...1 82320.400733: cpu_idle: state=4294967295 cpu_id=2
151484          <idle>-0     (-----) [002] d..1 82320.400739: cpu_idle: state=2 cpu_id=2
151485          <idle>-0     (-----) [000] d.s2 82320.401808: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151486          <idle>-0     (-----) [000] dns3 82320.401827: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151487          <idle>-0     (-----) [000] .n.1 82320.401840: cpu_idle: state=4294967295 cpu_id=0
151488          <idle>-0     (-----) [000] d..2 82320.401854: 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
151489     rcu_preempt-7     (    7) [000] d..2 82320.401865: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
151490     rcu_preempt-7     (    7) [000] d..3 82320.401907: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
151491     rcu_preempt-7     (    7) [000] d..2 82320.401922: 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
151492         rcuop/2-29    (   29) [000] d..2 82320.401927: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
151493         rcuop/2-29    (   29) [000] d..3 82320.401964: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
151494         rcuop/2-29    (   29) [000] d..2 82320.401976: 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
151495         rcuop/3-37    (   37) [000] d..2 82320.402009: 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
151496          <idle>-0     (-----) [000] d..1 82320.402025: cpu_idle: state=0 cpu_id=0
151497              ps-27819 (27819) [001] d.s2 82320.405153: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151498              ps-27819 (27819) [001] d.s3 82320.405185: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151499          <idle>-0     (-----) [000] .n.1 82320.405190: cpu_idle: state=4294967295 cpu_id=0
151500          <idle>-0     (-----) [000] d..2 82320.405207: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151501  kworker/u16:13-1147  ( 1147) [000] d..2 82320.405418: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151502          <idle>-0     (-----) [000] d..1 82320.405431: cpu_idle: state=0 cpu_id=0
151503              ps-27819 (27819) [001] d.s2 82320.405445: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151504              ps-27819 (27819) [001] d.s3 82320.405462: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
151505              ps-27819 (27819) [001] d.s3 82320.405472: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151506          <idle>-0     (-----) [000] .n.1 82320.405478: cpu_idle: state=4294967295 cpu_id=0
151507          <idle>-0     (-----) [000] d..2 82320.405489: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151508  kworker/u16:13-1147  ( 1147) [000] .... 82320.405568: clk_set_rate: l3_cluster0_vote_clk 576000000
151509  kworker/u16:13-1147  ( 1147) [000] .... 82320.405575: clk_set_rate: l3_clk 576000000
151510  kworker/u16:13-1147  ( 1147) [000] d..2 82320.405640: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151511          <idle>-0     (-----) [000] d..1 82320.405650: cpu_idle: state=0 cpu_id=0
151512          <idle>-0     (-----) [000] d.s2 82320.408469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151513          <idle>-0     (-----) [000] dns3 82320.408488: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151514          <idle>-0     (-----) [000] .n.1 82320.408499: cpu_idle: state=4294967295 cpu_id=0
151515          <idle>-0     (-----) [000] d..2 82320.408509: 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
151516     rcu_preempt-7     (    7) [000] d..2 82320.408518: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151517     rcu_preempt-7     (    7) [000] d..3 82320.408533: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151518     rcu_preempt-7     (    7) [000] d..2 82320.408547: 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
151519         rcuop/0-10    (   10) [000] d..2 82320.408551: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
151520         rcuop/0-10    (   10) [000] d..3 82320.408565: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
151521         rcuop/0-10    (   10) [000] d..2 82320.408582: 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
151522         rcuop/1-21    (   21) [000] d..2 82320.408620: 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
151523          <idle>-0     (-----) [000] d..1 82320.408636: cpu_idle: state=2 cpu_id=0
151524          <idle>-0     (-----) [002] d.h2 82320.408980: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
151525          <idle>-0     (-----) [002] dnh3 82320.409000: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
151526          <idle>-0     (-----) [002] .n.1 82320.409011: cpu_idle: state=4294967295 cpu_id=2
151527          <idle>-0     (-----) [002] d..2 82320.409026: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
151528        DispSync-8879  ( 8858) [002] d..1 82320.409051: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
151529        DispSync-8879  ( 8858) [002] d..2 82320.409076: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
151530        DispSync-8879  ( 8858) [002] d..2 82320.409117: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
151531          <idle>-0     (-----) [002] d..1 82320.409135: cpu_idle: state=0 cpu_id=2
151532          <idle>-0     (-----) [003] .n.1 82320.409222: cpu_idle: state=4294967295 cpu_id=3
151533          <idle>-0     (-----) [003] d..2 82320.409249: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151534  appEventThread-8881  ( 8858) [003] d..3 82320.409314: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151535  appEventThread-8881  ( 8858) [003] d..2 82320.409392: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151536          <idle>-0     (-----) [003] d..1 82320.409425: cpu_idle: state=2 cpu_id=3
151537          <idle>-0     (-----) [004] dnh2 82320.410078: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151538          <idle>-0     (-----) [004] .n.1 82320.410085: cpu_idle: state=4294967295 cpu_id=4
151539          <idle>-0     (-----) [004] d..2 82320.410096: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
151540 s.nexuslauncher-10023 (10023) [004] .... 82320.410318: binder_transaction: transaction=1573283 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
151541 s.nexuslauncher-10023 (10023) [004] .... 82320.410325: binder_transaction_alloc_buf: transaction=1573283 data_size=80 offsets_size=0
151542 s.nexuslauncher-10023 (10023) [004] d..4 82320.410329: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
151543 s.nexuslauncher-10023 (10023) [004] d..3 82320.410374: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
151544 s.nexuslauncher-10023 (10023) [004] d..4 82320.410391: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
151545          <idle>-0     (-----) [000] dnh2 82320.410492: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
151546          <idle>-0     (-----) [000] .n.1 82320.410502: cpu_idle: state=4294967295 cpu_id=0
151547          <idle>-0     (-----) [000] d..2 82320.410520: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
151548   Binder:8858_1-8871  ( 8858) [000] .... 82320.410530: binder_transaction_received: transaction=1573283
151549   Binder:8858_1-8871  ( 8858) [000] d..1 82320.410571: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
151550          <idle>-0     (-----) [005] .n.1 82320.410589: cpu_idle: state=4294967295 cpu_id=5
151551   Binder:8858_1-8871  ( 8858) [000] d..2 82320.410591: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
151552          <idle>-0     (-----) [005] d..2 82320.410608: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
151553   Binder:8858_1-8871  ( 8858) [000] d..2 82320.410644: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151554 s.nexuslauncher-10023 (10023) [004] d..3 82320.410654: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
151555          <idle>-0     (-----) [000] d..1 82320.410660: cpu_idle: state=0 cpu_id=0
151556    RenderThread-16607 (10023) [005] d..2 82320.410668: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
151557          <idle>-0     (-----) [005] d..1 82320.410678: cpu_idle: state=2 cpu_id=5
151558 s.nexuslauncher-10023 (10023) [004] d..4 82320.410683: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
151559          <idle>-0     (-----) [005] .n.1 82320.410697: cpu_idle: state=4294967295 cpu_id=5
151560          <idle>-0     (-----) [005] d..2 82320.410704: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
151561 s.nexuslauncher-10023 (10023) [004] d..2 82320.410708: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
151562          <idle>-0     (-----) [004] d..1 82320.410722: cpu_idle: state=2 cpu_id=4
151563          <idle>-0     (-----) [003] .n.1 82320.410729: cpu_idle: state=4294967295 cpu_id=3
151564          <idle>-0     (-----) [003] d..2 82320.410747: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151565  appEventThread-8881  ( 8858) [003] d..2 82320.410816: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151566          <idle>-0     (-----) [003] d..1 82320.410832: cpu_idle: state=0 cpu_id=3
151567    RenderThread-16607 (10023) [005] d..1 82320.410898: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151568    RenderThread-16607 (10023) [005] d..2 82320.410912: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151569    RenderThread-16607 (10023) [005] .... 82320.410982: binder_transaction: transaction=1573284 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
151570    RenderThread-16607 (10023) [005] .... 82320.410986: binder_transaction_alloc_buf: transaction=1573284 data_size=104 offsets_size=0
151571    RenderThread-16607 (10023) [005] ...2 82320.410991: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
151572    RenderThread-16607 (10023) [005] d..4 82320.410995: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
151573    RenderThread-16607 (10023) [005] dn.5 82320.411013: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
151574    RenderThread-16607 (10023) [005] dnh5 82320.411055: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
151575    RenderThread-16607 (10023) [005] d..2 82320.411071: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
151576          <idle>-0     (-----) [003] dnh2 82320.411079: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
151577   Binder:8858_1-8871  ( 8858) [005] .... 82320.411083: binder_transaction_received: transaction=1573284
151578          <idle>-0     (-----) [003] .n.1 82320.411087: cpu_idle: state=4294967295 cpu_id=3
151579          <idle>-0     (-----) [003] d..2 82320.411097: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
151580          <idle>-0     (-----) [004] .n.1 82320.411098: cpu_idle: state=4294967295 cpu_id=4
151581          <idle>-0     (-----) [004] d..2 82320.411114: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
151582         sugov:0-576   (  576) [003] .... 82320.411130: clk_set_rate: pwrcl_clk 1766400000
151583   Binder:8858_1-8871  ( 8858) [005] .... 82320.411158: binder_transaction: transaction=1573285 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
151584   Binder:8858_1-8871  ( 8858) [005] .... 82320.411162: binder_transaction_alloc_buf: transaction=1573285 data_size=52 offsets_size=8
151585   Binder:8858_1-8871  ( 8858) [005] .... 82320.411172: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
151586   Binder:8858_1-8871  ( 8858) [005] d..2 82320.411208: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
151587 s.nexuslauncher-10023 (10023) [004] d..2 82320.411214: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
151588    RenderThread-16607 (10023) [005] .... 82320.411218: binder_transaction_received: transaction=1573285
151589          <idle>-0     (-----) [004] d..1 82320.411226: cpu_idle: state=2 cpu_id=4
151590         sugov:0-576   (  576) [003] d..2 82320.411226: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
151591              ps-27819 (27819) [001] d.s5 82320.411241: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
151592          <idle>-0     (-----) [003] d..1 82320.411242: cpu_idle: state=0 cpu_id=3
151593              ps-27819 (27819) [001] d.s6 82320.411265: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
151594          <idle>-0     (-----) [003] .n.1 82320.411271: cpu_idle: state=4294967295 cpu_id=3
151595          <idle>-0     (-----) [003] d..2 82320.411281: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
151596         sugov:0-576   (  576) [003] .... 82320.411297: clk_set_rate: cpu3_pwrcl_clk 748800000
151597         sugov:0-576   (  576) [003] .... 82320.411307: clk_set_rate: cpu2_pwrcl_clk 748800000
151598         sugov:0-576   (  576) [003] .... 82320.411314: clk_set_rate: cpu1_pwrcl_clk 748800000
151599         sugov:0-576   (  576) [003] .... 82320.411322: clk_set_rate: cpu0_pwrcl_clk 1766400000
151600         sugov:0-576   (  576) [003] .... 82320.411332: cpu_frequency: state=1766400 cpu_id=0
151601         sugov:0-576   (  576) [003] d..2 82320.411479: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
151602          <idle>-0     (-----) [003] d..1 82320.411488: cpu_idle: state=0 cpu_id=3
151603              ps-27819 (27819) [001] d.s2 82320.411503: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
151604              ps-27819 (27819) [001] d.s3 82320.411516: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
151605          <idle>-0     (-----) [003] .n.1 82320.411521: cpu_idle: state=4294967295 cpu_id=3
151606          <idle>-0     (-----) [003] d..2 82320.411527: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
151607         sugov:0-576   (  576) [003] .... 82320.411533: cpu_frequency: state=1766400 cpu_id=1
151608         sugov:0-576   (  576) [003] .... 82320.411537: cpu_frequency: state=1766400 cpu_id=2
151609         sugov:0-576   (  576) [003] .... 82320.411539: cpu_frequency: state=1766400 cpu_id=3
151610         sugov:0-576   (  576) [003] d..2 82320.411552: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151611          <idle>-0     (-----) [003] d..1 82320.411559: cpu_idle: state=0 cpu_id=3
151612    RenderThread-16607 (10023) [005] d..2 82320.412701: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151613          <idle>-0     (-----) [000] dnh2 82320.412726: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151614          <idle>-0     (-----) [000] .n.1 82320.412730: cpu_idle: state=4294967295 cpu_id=0
151615          <idle>-0     (-----) [000] d..2 82320.412738: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151616 kgsl_worker_thr-258   (  258) [000] d..2 82320.412797: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151617          <idle>-0     (-----) [000] d..1 82320.412802: cpu_idle: state=0 cpu_id=0
151618    RenderThread-16607 (10023) [005] d..2 82320.412832: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151619          <idle>-0     (-----) [000] dnh2 82320.412848: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151620          <idle>-0     (-----) [000] .n.1 82320.412852: cpu_idle: state=4294967295 cpu_id=0
151621          <idle>-0     (-----) [000] d..2 82320.412855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151622          <idle>-0     (-----) [002] ...1 82320.412897: cpu_idle: state=4294967295 cpu_id=2
151623          <idle>-0     (-----) [003] ...1 82320.412899: cpu_idle: state=4294967295 cpu_id=3
151624          <idle>-0     (-----) [002] d..1 82320.412900: cpu_idle: state=0 cpu_id=2
151625          <idle>-0     (-----) [003] d..1 82320.412902: cpu_idle: state=0 cpu_id=3
151626 kgsl_worker_thr-258   (  258) [000] d..1 82320.412964: clk_enable: gpll0_out_even
151627 kgsl_worker_thr-258   (  258) [000] d..1 82320.412965: clk_enable: gcc_gpu_gpll0_div_clk_src
151628    RenderThread-16607 (10023) [005] .... 82320.412974: binder_transaction: transaction=1573286 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
151629    RenderThread-16607 (10023) [005] .... 82320.412978: binder_transaction_alloc_buf: transaction=1573286 data_size=192 offsets_size=8
151630    RenderThread-16607 (10023) [005] ...2 82320.412986: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
151631    RenderThread-16607 (10023) [005] d..4 82320.412989: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
151632    RenderThread-16607 (10023) [005] dn.5 82320.413001: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
151633    RenderThread-16607 (10023) [005] d..2 82320.413009: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
151634   Binder:8858_1-8871  ( 8858) [005] .... 82320.413019: binder_transaction_received: transaction=1573286
151635          <idle>-0     (-----) [004] ...1 82320.413087: cpu_idle: state=4294967295 cpu_id=4
151636          <idle>-0     (-----) [004] d..1 82320.413095: cpu_idle: state=0 cpu_id=4
151637   Binder:8858_1-8871  ( 8858) [005] d..1 82320.413107: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
151638          <idle>-0     (-----) [003] dnh2 82320.413129: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
151639          <idle>-0     (-----) [007] ...1 82320.413131: cpu_idle: state=4294967295 cpu_id=7
151640          <idle>-0     (-----) [003] .n.1 82320.413133: cpu_idle: state=4294967295 cpu_id=3
151641          <idle>-0     (-----) [003] d..2 82320.413139: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
151642          <idle>-0     (-----) [007] d..1 82320.413139: cpu_idle: state=0 cpu_id=7
151643   sfEventThread-8882  ( 8858) [003] d..1 82320.413161: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
151644   Binder:8858_1-8871  ( 8858) [005] .... 82320.413164: binder_transaction: transaction=1573287 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
151645          <idle>-0     (-----) [006] ...1 82320.413165: cpu_idle: state=4294967295 cpu_id=6
151646   Binder:8858_1-8871  ( 8858) [005] .... 82320.413167: binder_transaction_alloc_buf: transaction=1573287 data_size=68 offsets_size=0
151647   Binder:8858_1-8871  ( 8858) [005] .... 82320.413170: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
151648          <idle>-0     (-----) [006] d..1 82320.413173: cpu_idle: state=0 cpu_id=6
151649   sfEventThread-8882  ( 8858) [003] d..2 82320.413175: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
151650          <idle>-0     (-----) [002] .n.1 82320.413180: cpu_idle: state=4294967295 cpu_id=2
151651          <idle>-0     (-----) [002] d..2 82320.413186: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
151652   sfEventThread-8882  ( 8858) [003] d..2 82320.413200: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151653   Binder:8858_1-8871  ( 8858) [005] d..2 82320.413203: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
151654        DispSync-8879  ( 8858) [002] d..2 82320.413205: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
151655          <idle>-0     (-----) [003] d..1 82320.413208: cpu_idle: state=0 cpu_id=3
151656          <idle>-0     (-----) [002] d..1 82320.413212: cpu_idle: state=0 cpu_id=2
151657    RenderThread-16607 (10023) [005] .... 82320.413214: binder_transaction_received: transaction=1573287
151658    RenderThread-16607 (10023) [005] d..2 82320.413260: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
151659    RenderThread-16607 (10023) [005] d..2 82320.413330: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
151660          <idle>-0     (-----) [005] d..1 82320.413344: cpu_idle: state=0 cpu_id=5
151661 kgsl_worker_thr-258   (  258) [000] d..1 82320.413474: clk_enable: gpu_cc_gmu_clk_src
151662 kgsl_worker_thr-258   (  258) [000] d..1 82320.413502: clk_enable: gpu_cc_cx_gmu_clk
151663 kgsl_worker_thr-258   (  258) [000] d.h2 82320.413522: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
151664 kgsl_worker_thr-258   (  258) [000] d..1 82320.413525: clk_enable: gpu_cc_cxo_clk
151665 kgsl_worker_thr-258   (  258) [000] d..1 82320.413535: clk_enable: gcc_ddrss_gpu_axi_clk
151666 kgsl_worker_thr-258   (  258) [000] d..1 82320.413543: clk_enable: gcc_gpu_memnoc_gfx_clk
151667 kgsl_worker_thr-258   (  258) [000] d..2 82320.413591: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=rcuop/4 next_pid=45 next_prio=120
151668         rcuop/4-45    (   45) [000] d..2 82320.413611: 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
151669          <idle>-0     (-----) [000] d..1 82320.413617: cpu_idle: state=0 cpu_id=0
151670          <idle>-0     (-----) [000] d.h2 82320.413690: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151671          <idle>-0     (-----) [000] dnh3 82320.413697: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151672          <idle>-0     (-----) [000] .n.1 82320.413703: cpu_idle: state=4294967295 cpu_id=0
151673          <idle>-0     (-----) [000] d..2 82320.413707: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151674 kgsl_worker_thr-258   (  258) [000] d..2 82320.413720: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151675          <idle>-0     (-----) [000] d..1 82320.413725: cpu_idle: state=0 cpu_id=0
151676          <idle>-0     (-----) [000] d.h2 82320.413817: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151677          <idle>-0     (-----) [000] dnh3 82320.413823: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151678          <idle>-0     (-----) [000] .n.1 82320.413827: cpu_idle: state=4294967295 cpu_id=0
151679          <idle>-0     (-----) [000] d..2 82320.413831: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151680 kgsl_worker_thr-258   (  258) [000] d..2 82320.413843: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151681          <idle>-0     (-----) [000] d..1 82320.413847: cpu_idle: state=0 cpu_id=0
151682          <idle>-0     (-----) [000] d.h2 82320.413942: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151683          <idle>-0     (-----) [000] dnh3 82320.413947: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151684          <idle>-0     (-----) [000] .n.1 82320.413951: cpu_idle: state=4294967295 cpu_id=0
151685          <idle>-0     (-----) [000] d..2 82320.413955: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151686 kgsl_worker_thr-258   (  258) [000] d..2 82320.414015: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151687          <idle>-0     (-----) [000] d..1 82320.414019: cpu_idle: state=0 cpu_id=0
151688          <idle>-0     (-----) [000] d.h2 82320.414114: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151689          <idle>-0     (-----) [000] dnh3 82320.414119: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151690          <idle>-0     (-----) [000] .n.1 82320.414123: cpu_idle: state=4294967295 cpu_id=0
151691          <idle>-0     (-----) [000] d..2 82320.414127: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151692 kgsl_worker_thr-258   (  258) [000] d..2 82320.414152: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151693          <idle>-0     (-----) [000] d..1 82320.414155: cpu_idle: state=0 cpu_id=0
151694          <idle>-0     (-----) [000] d.h2 82320.414249: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151695          <idle>-0     (-----) [000] dnh3 82320.414254: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151696          <idle>-0     (-----) [000] .n.1 82320.414261: cpu_idle: state=4294967295 cpu_id=0
151697          <idle>-0     (-----) [000] d..2 82320.414265: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151698 kgsl_worker_thr-258   (  258) [000] d..2 82320.414277: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151699          <idle>-0     (-----) [000] d..1 82320.414281: cpu_idle: state=0 cpu_id=0
151700          <idle>-0     (-----) [000] d.h2 82320.414375: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151701          <idle>-0     (-----) [000] dnh3 82320.414381: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151702          <idle>-0     (-----) [000] .n.1 82320.414385: cpu_idle: state=4294967295 cpu_id=0
151703          <idle>-0     (-----) [000] d..2 82320.414388: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151704 kgsl_worker_thr-258   (  258) [000] d..2 82320.414400: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151705          <idle>-0     (-----) [000] d..1 82320.414404: cpu_idle: state=0 cpu_id=0
151706          <idle>-0     (-----) [000] d.h2 82320.414499: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151707          <idle>-0     (-----) [000] dnh3 82320.414504: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151708          <idle>-0     (-----) [000] .n.1 82320.414509: cpu_idle: state=4294967295 cpu_id=0
151709          <idle>-0     (-----) [000] d..2 82320.414513: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151710 kgsl_worker_thr-258   (  258) [000] d..2 82320.414525: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151711          <idle>-0     (-----) [000] d..1 82320.414529: cpu_idle: state=0 cpu_id=0
151712          <idle>-0     (-----) [003] ...1 82320.414589: cpu_idle: state=4294967295 cpu_id=3
151713          <idle>-0     (-----) [003] d..1 82320.414591: cpu_idle: state=0 cpu_id=3
151714          <idle>-0     (-----) [000] d.h2 82320.414623: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151715          <idle>-0     (-----) [000] dnh3 82320.414628: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151716          <idle>-0     (-----) [000] .n.1 82320.414633: cpu_idle: state=4294967295 cpu_id=0
151717          <idle>-0     (-----) [000] d..2 82320.414637: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151718 kgsl_worker_thr-258   (  258) [000] d..2 82320.414649: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151719          <idle>-0     (-----) [000] d..1 82320.414653: cpu_idle: state=0 cpu_id=0
151720          <idle>-0     (-----) [000] d.h2 82320.414747: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151721          <idle>-0     (-----) [000] dnh3 82320.414752: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151722          <idle>-0     (-----) [000] .n.1 82320.414756: cpu_idle: state=4294967295 cpu_id=0
151723          <idle>-0     (-----) [000] d..2 82320.414759: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151724 kgsl_worker_thr-258   (  258) [000] d..2 82320.414771: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151725          <idle>-0     (-----) [000] d..1 82320.414775: cpu_idle: state=0 cpu_id=0
151726          <idle>-0     (-----) [000] d.h2 82320.414869: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151727          <idle>-0     (-----) [000] dnh3 82320.414875: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151728          <idle>-0     (-----) [000] .n.1 82320.414879: cpu_idle: state=4294967295 cpu_id=0
151729          <idle>-0     (-----) [000] d..2 82320.414883: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151730 kgsl_worker_thr-258   (  258) [000] d..2 82320.414895: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151731          <idle>-0     (-----) [000] d..1 82320.414898: cpu_idle: state=0 cpu_id=0
151732          <idle>-0     (-----) [000] d.h2 82320.414992: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151733          <idle>-0     (-----) [000] dnh3 82320.414997: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151734          <idle>-0     (-----) [000] .n.1 82320.415001: cpu_idle: state=4294967295 cpu_id=0
151735          <idle>-0     (-----) [000] d..2 82320.415005: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151736 kgsl_worker_thr-258   (  258) [000] d..2 82320.415027: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151737          <idle>-0     (-----) [000] d..1 82320.415031: cpu_idle: state=0 cpu_id=0
151738          <idle>-0     (-----) [000] d.h2 82320.415117: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151739          <idle>-0     (-----) [000] dnh3 82320.415122: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151740              ps-27819 (27819) [001] d.s2 82320.415136: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151741          <idle>-0     (-----) [000] dns2 82320.415139: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151742              ps-27819 (27819) [001] d.s3 82320.415154: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151743          <idle>-0     (-----) [000] dns3 82320.415160: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151744          <idle>-0     (-----) [000] .n.1 82320.415171: cpu_idle: state=4294967295 cpu_id=0
151745          <idle>-0     (-----) [000] d..2 82320.415176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151746 kgsl_worker_thr-258   (  258) [000] d..2 82320.415193: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
151747     rcu_preempt-7     (    7) [000] d..2 82320.415203: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
151748     rcu_preempt-7     (    7) [000] d..3 82320.415213: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
151749     rcu_preempt-7     (    7) [000] d..2 82320.415223: 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
151750          <idle>-0     (-----) [003] d.s4 82320.415228: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
151751         rcuop/2-29    (   29) [000] d..2 82320.415233: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151752          <idle>-0     (-----) [003] dns5 82320.415247: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151753          <idle>-0     (-----) [003] .n.1 82320.415253: cpu_idle: state=4294967295 cpu_id=3
151754          <idle>-0     (-----) [003] d..2 82320.415259: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151755 kgsl_worker_thr-258   (  258) [003] d..2 82320.415282: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
151756          <idle>-0     (-----) [003] d.s5 82320.415307: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151757          <idle>-0     (-----) [003] dns6 82320.415313: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151758          <idle>-0     (-----) [003] d..2 82320.415326: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151759  kworker/u16:13-1147  ( 1147) [000] .... 82320.415337: clk_set_rate: l3_cluster0_vote_clk 940800000
151760  kworker/u16:13-1147  ( 1147) [000] .... 82320.415340: clk_set_rate: l3_clk 940800000
151761 kgsl_worker_thr-258   (  258) [003] d..2 82320.415346: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
151762          <idle>-0     (-----) [003] d..1 82320.415353: cpu_idle: state=0 cpu_id=3
151763          <idle>-0     (-----) [003] d.s4 82320.415373: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151764          <idle>-0     (-----) [003] dns5 82320.415379: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151765          <idle>-0     (-----) [003] .n.1 82320.415386: cpu_idle: state=4294967295 cpu_id=3
151766          <idle>-0     (-----) [003] d..2 82320.415392: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151767 kgsl_worker_thr-258   (  258) [003] d..2 82320.415413: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
151768          <idle>-0     (-----) [003] d..1 82320.415432: cpu_idle: state=0 cpu_id=3
151769          <idle>-0     (-----) [003] d.s4 82320.415490: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151770          <idle>-0     (-----) [003] dns5 82320.415496: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151771          <idle>-0     (-----) [003] .n.1 82320.415500: cpu_idle: state=4294967295 cpu_id=3
151772          <idle>-0     (-----) [003] d..2 82320.415505: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151773 kgsl_worker_thr-258   (  258) [003] d..2 82320.415519: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
151774  kworker/u16:13-1147  ( 1147) [000] d..2 82320.415529: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151775          <idle>-0     (-----) [003] d.s5 82320.415534: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151776          <idle>-0     (-----) [000] d..1 82320.415538: cpu_idle: state=0 cpu_id=0
151777          <idle>-0     (-----) [003] dns6 82320.415540: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151778          <idle>-0     (-----) [003] d..2 82320.415546: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151779              ps-27819 (27819) [001] d.s2 82320.415555: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151780              ps-27819 (27819) [001] d.s3 82320.415565: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
151781 kgsl_worker_thr-258   (  258) [003] d..2 82320.415569: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
151782              ps-27819 (27819) [001] d.s3 82320.415572: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151783          <idle>-0     (-----) [003] d..1 82320.415574: cpu_idle: state=0 cpu_id=3
151784          <idle>-0     (-----) [000] .n.1 82320.415577: cpu_idle: state=4294967295 cpu_id=0
151785          <idle>-0     (-----) [000] d..2 82320.415584: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151786  kworker/u16:13-1147  ( 1147) [000] d..2 82320.415639: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151787          <idle>-0     (-----) [000] d..1 82320.415645: cpu_idle: state=0 cpu_id=0
151788          <idle>-0     (-----) [003] d.h2 82320.415667: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151789          <idle>-0     (-----) [003] dnh3 82320.415673: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151790          <idle>-0     (-----) [003] .n.1 82320.415677: cpu_idle: state=4294967295 cpu_id=3
151791          <idle>-0     (-----) [003] d..2 82320.415683: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151792 kgsl_worker_thr-258   (  258) [003] d..2 82320.415789: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
151793          <idle>-0     (-----) [003] d..1 82320.415796: cpu_idle: state=0 cpu_id=3
151794              ps-27819 (27819) [001] d.s2 82320.415816: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151795              ps-27819 (27819) [001] d.s3 82320.415830: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151796          <idle>-0     (-----) [003] .n.1 82320.415835: cpu_idle: state=4294967295 cpu_id=3
151797          <idle>-0     (-----) [003] d..2 82320.415840: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151798 kgsl_worker_thr-258   (  258) [003] d..2 82320.415891: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
151799          <idle>-0     (-----) [003] d..1 82320.415895: cpu_idle: state=0 cpu_id=3
151800          <idle>-0     (-----) [003] d.h2 82320.415988: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151801          <idle>-0     (-----) [003] dnh3 82320.415995: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151802          <idle>-0     (-----) [003] .n.1 82320.415999: cpu_idle: state=4294967295 cpu_id=3
151803          <idle>-0     (-----) [003] d..2 82320.416004: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151804          <idle>-0     (-----) [000] ...1 82320.416392: cpu_idle: state=4294967295 cpu_id=0
151805          <idle>-0     (-----) [000] d..1 82320.416395: cpu_idle: state=0 cpu_id=0
151806          <idle>-0     (-----) [002] ...1 82320.416396: cpu_idle: state=4294967295 cpu_id=2
151807          <idle>-0     (-----) [002] d..1 82320.416399: cpu_idle: state=0 cpu_id=2
151808          <idle>-0     (-----) [004] ...1 82320.416399: cpu_idle: state=4294967295 cpu_id=4
151809          <idle>-0     (-----) [005] ...1 82320.416401: cpu_idle: state=4294967295 cpu_id=5
151810          <idle>-0     (-----) [004] d..1 82320.416403: cpu_idle: state=0 cpu_id=4
151811          <idle>-0     (-----) [006] ...1 82320.416404: cpu_idle: state=4294967295 cpu_id=6
151812          <idle>-0     (-----) [005] d..1 82320.416405: cpu_idle: state=0 cpu_id=5
151813          <idle>-0     (-----) [007] ...1 82320.416406: cpu_idle: state=4294967295 cpu_id=7
151814          <idle>-0     (-----) [006] d..1 82320.416407: cpu_idle: state=0 cpu_id=6
151815          <idle>-0     (-----) [007] d..1 82320.416409: cpu_idle: state=0 cpu_id=7
151816 kgsl_worker_thr-258   (  258) [003] d..2 82320.416417: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151817 kgsl_worker_thr-258   (  258) [003] d..3 82320.416428: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
151818          <idle>-0     (-----) [000] .n.1 82320.416432: cpu_idle: state=4294967295 cpu_id=0
151819          <idle>-0     (-----) [000] d..2 82320.416438: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
151820  kworker/u16:13-1147  ( 1147) [000] d..2 82320.416446: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
151821  kworker/u16:13-1147  ( 1147) [000] d..3 82320.416473: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
151822  kworker/u16:13-1147  ( 1147) [000] d..2 82320.416486: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151823          <idle>-0     (-----) [000] d..1 82320.416492: cpu_idle: state=0 cpu_id=0
151824 kgsl_worker_thr-258   (  258) [003] d..2 82320.416499: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
151825  kworker/u16:15-1311  ( 1311) [003] d..2 82320.416514: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151826          <idle>-0     (-----) [000] ...1 82320.416518: cpu_idle: state=4294967295 cpu_id=0
151827          <idle>-0     (-----) [000] d..1 82320.416521: cpu_idle: state=0 cpu_id=0
151828          <idle>-0     (-----) [003] d..1 82320.416521: cpu_idle: state=0 cpu_id=3
151829          <idle>-0     (-----) [003] d.h2 82320.416599: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151830          <idle>-0     (-----) [003] dnh3 82320.416606: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151831          <idle>-0     (-----) [003] .n.1 82320.416610: cpu_idle: state=4294967295 cpu_id=3
151832          <idle>-0     (-----) [003] d..2 82320.416616: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151833 kgsl_worker_thr-258   (  258) [003] d..2 82320.416659: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
151834          <idle>-0     (-----) [003] d..1 82320.416663: cpu_idle: state=0 cpu_id=3
151835          <idle>-0     (-----) [003] d.h2 82320.416755: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151836          <idle>-0     (-----) [003] dnh3 82320.416760: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151837          <idle>-0     (-----) [003] .n.1 82320.416765: cpu_idle: state=4294967295 cpu_id=3
151838          <idle>-0     (-----) [003] d..2 82320.416770: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151839 kgsl_worker_thr-258   (  258) [003] d..2 82320.416789: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151840          <idle>-0     (-----) [003] d..1 82320.416795: cpu_idle: state=0 cpu_id=3
151841          <idle>-0     (-----) [003] ...1 82320.417904: cpu_idle: state=4294967295 cpu_id=3
151842          <idle>-0     (-----) [003] d..1 82320.417906: cpu_idle: state=0 cpu_id=3
151843          <idle>-0     (-----) [000] d.h3 82320.417929: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151844          <idle>-0     (-----) [000] d.h4 82320.417940: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
151845          <idle>-0     (-----) [003] .n.1 82320.417944: cpu_idle: state=4294967295 cpu_id=3
151846          <idle>-0     (-----) [000] ...1 82320.417948: cpu_idle: state=4294967295 cpu_id=0
151847          <idle>-0     (-----) [000] d..1 82320.417950: cpu_idle: state=0 cpu_id=0
151848          <idle>-0     (-----) [003] d..2 82320.417950: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
151849 kgsl_worker_thr-258   (  258) [003] d..2 82320.417991: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151850          <idle>-0     (-----) [003] d..1 82320.417997: cpu_idle: state=0 cpu_id=3
151851          <idle>-0     (-----) [003] ...1 82320.419288: cpu_idle: state=4294967295 cpu_id=3
151852          <idle>-0     (-----) [003] d..1 82320.419290: cpu_idle: state=0 cpu_id=3
151853          <idle>-0     (-----) [000] d.s2 82320.421787: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151854          <idle>-0     (-----) [000] dns3 82320.421796: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151855          <idle>-0     (-----) [000] .n.1 82320.421802: cpu_idle: state=4294967295 cpu_id=0
151856          <idle>-0     (-----) [000] d..2 82320.421809: 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
151857     rcu_preempt-7     (    7) [000] d..2 82320.421817: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
151858     rcu_preempt-7     (    7) [000] d..3 82320.421825: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
151859     rcu_preempt-7     (    7) [000] d..2 82320.421826: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151860     rcu_preempt-7     (    7) [000] d..3 82320.421835: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
151861     rcu_preempt-7     (    7) [000] d..2 82320.421842: 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
151862         rcuop/4-45    (   45) [000] d..2 82320.421847: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
151863         rcuop/4-45    (   45) [000] d..3 82320.421870: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
151864         rcuop/4-45    (   45) [000] d..2 82320.421876: 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
151865         rcuop/5-53    (   53) [000] d..2 82320.421888: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
151866         rcuop/0-10    (   10) [000] d..2 82320.421890: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
151867         rcuop/0-10    (   10) [000] d..3 82320.421898: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
151868         rcuop/0-10    (   10) [000] d..2 82320.421901: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151869         rcuop/0-10    (   10) [000] d..3 82320.421907: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
151870         rcuop/0-10    (   10) [000] d..2 82320.421912: 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
151871         rcuop/1-21    (   21) [000] d..2 82320.421925: 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
151872     rcu_preempt-7     (    7) [000] d..2 82320.421940: 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
151873          <idle>-0     (-----) [000] d..1 82320.421948: cpu_idle: state=0 cpu_id=0
151874          <idle>-0     (-----) [002] ...1 82320.422399: cpu_idle: state=4294967295 cpu_id=2
151875          <idle>-0     (-----) [002] d..1 82320.422401: cpu_idle: state=0 cpu_id=2
151876              ps-27819 (27819) [001] d..2 82320.424461: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=003
151877              ps-27819 (27819) [001] d..3 82320.424479: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=001
151878              ps-27819 (27819) [001] dns2 82320.425126: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
151879              ps-27819 (27819) [001] dns3 82320.425154: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
151880          <idle>-0     (-----) [000] .n.1 82320.425159: cpu_idle: state=4294967295 cpu_id=0
151881              ps-27819 (27819) [001] d..2 82320.425164: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
151882          <idle>-0     (-----) [000] d..2 82320.425166: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
151883          <idle>-0     (-----) [002] d.h2 82320.425233: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
151884          <idle>-0     (-----) [002] dnh3 82320.425240: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
151885 shell svc 27816-27817 (  960) [001] d..2 82320.425243: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
151886          <idle>-0     (-----) [002] .n.1 82320.425244: cpu_idle: state=4294967295 cpu_id=2
151887          <idle>-0     (-----) [002] d..2 82320.425250: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
151888        DispSync-8879  ( 8858) [002] d..1 82320.425257: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
151889 shell svc 27816-27817 (  960) [001] d..3 82320.425270: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
151890        DispSync-8879  ( 8858) [002] d..2 82320.425270: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
151891          <idle>-0     (-----) [003] .n.1 82320.425275: cpu_idle: state=4294967295 cpu_id=3
151892          <idle>-0     (-----) [003] d..2 82320.425281: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151893        DispSync-8879  ( 8858) [002] d..2 82320.425283: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
151894 shell svc 27816-27817 (  960) [001] d..2 82320.425290: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
151895  kworker/u16:15-1311  ( 1311) [000] d..2 82320.425303: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
151896          <idle>-0     (-----) [000] d..1 82320.425309: cpu_idle: state=0 cpu_id=0
151897  appEventThread-8881  ( 8858) [003] d..3 82320.425320: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151898              ps-27819 (27819) [001] d.s2 82320.425330: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
151899              ps-27819 (27819) [001] d.s3 82320.425337: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
151900              ps-27819 (27819) [001] d.s3 82320.425343: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
151901          <idle>-0     (-----) [004] dnh2 82320.425344: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151902          <idle>-0     (-----) [000] .n.1 82320.425348: cpu_idle: state=4294967295 cpu_id=0
151903          <idle>-0     (-----) [004] .n.1 82320.425349: cpu_idle: state=4294967295 cpu_id=4
151904  appEventThread-8881  ( 8858) [003] d..2 82320.425354: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151905          <idle>-0     (-----) [000] d..2 82320.425355: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
151906          <idle>-0     (-----) [004] d..2 82320.425360: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
151907          <idle>-0     (-----) [003] d..1 82320.425362: cpu_idle: state=0 cpu_id=3
151908            adbd-960   (  960) [002] d..1 82320.425446: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
151909  kworker/u16:15-1311  ( 1311) [000] .... 82320.425453: clk_set_rate: l3_cluster0_vote_clk 1401600000
151910  kworker/u16:15-1311  ( 1311) [000] .... 82320.425457: clk_set_rate: l3_clk 1401600000
151911            adbd-960   (  960) [002] d..2 82320.425477: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
151912  kworker/u16:15-1311  ( 1311) [000] d..2 82320.425512: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
151913            adbd-960   (  960) [002] d..2 82320.425536: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
151914          <idle>-0     (-----) [002] d..1 82320.425544: cpu_idle: state=0 cpu_id=2
151915            adbd-24055 (  960) [000] d..2 82320.425608: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151916          <idle>-0     (-----) [000] d..1 82320.425614: cpu_idle: state=0 cpu_id=0
151917          <idle>-0     (-----) [003] d.h3 82320.425627: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
151918 s.nexuslauncher-10023 (10023) [004] .... 82320.425647: binder_transaction: transaction=1573288 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
151919          <idle>-0     (-----) [003] dnh4 82320.425647: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151920 s.nexuslauncher-10023 (10023) [004] .... 82320.425652: binder_transaction_alloc_buf: transaction=1573288 data_size=80 offsets_size=0
151921          <idle>-0     (-----) [003] .n.1 82320.425653: cpu_idle: state=4294967295 cpu_id=3
151922 s.nexuslauncher-10023 (10023) [004] d..4 82320.425656: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
151923          <idle>-0     (-----) [003] d..2 82320.425659: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
151924   kworker/u17:0-98    (   98) [003] d..2 82320.425678: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151925          <idle>-0     (-----) [000] dnh2 82320.425714: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
151926   kworker/u17:0-98    (   98) [003] d..3 82320.425714: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151927          <idle>-0     (-----) [000] .n.1 82320.425718: cpu_idle: state=4294967295 cpu_id=0
151928          <idle>-0     (-----) [000] d..2 82320.425722: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
151929   Binder:8858_1-8871  ( 8858) [000] .... 82320.425727: binder_transaction_received: transaction=1573288
151930   kworker/u17:0-98    (   98) [003] d..2 82320.425734: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
151931 s.nexuslauncher-10023 (10023) [004] d..3 82320.425736: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
151932     kworker/3:1-25210 (25210) [003] d..2 82320.425743: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
151933   Binder:8858_1-8871  ( 8858) [000] d..1 82320.425745: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
151934 s.nexuslauncher-10023 (10023) [004] d..4 82320.425749: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
151935          <idle>-0     (-----) [005] .n.1 82320.425754: cpu_idle: state=4294967295 cpu_id=5
151936   Binder:8858_1-8871  ( 8858) [000] d..2 82320.425759: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
151937     kworker/3:1-25210 (25210) [003] d..3 82320.425763: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
151938          <idle>-0     (-----) [005] d..2 82320.425763: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
151939          <idle>-0     (-----) [002] .n.1 82320.425764: cpu_idle: state=4294967295 cpu_id=2
151940          <idle>-0     (-----) [002] d..2 82320.425770: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
151941     kworker/3:1-25210 (25210) [003] d..2 82320.425774: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
151942   Binder:8858_1-8871  ( 8858) [000] d..2 82320.425782: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
151943          <idle>-0     (-----) [000] d..1 82320.425787: cpu_idle: state=0 cpu_id=0
151944    RenderThread-16607 (10023) [005] d..2 82320.425789: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
151945          <idle>-0     (-----) [005] d..1 82320.425796: cpu_idle: state=0 cpu_id=5
151946  appEventThread-8881  ( 8858) [002] d..2 82320.425802: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
151947          <idle>-0     (-----) [002] d..1 82320.425807: cpu_idle: state=0 cpu_id=2
151948            adbd-24055 (  960) [003] d..2 82320.425832: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151949          <idle>-0     (-----) [003] d..1 82320.425841: cpu_idle: state=0 cpu_id=3
151950          <idle>-0     (-----) [003] d.h3 82320.425930: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151951          <idle>-0     (-----) [003] dnh4 82320.425936: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151952          <idle>-0     (-----) [003] .n.1 82320.425941: cpu_idle: state=4294967295 cpu_id=3
151953          <idle>-0     (-----) [003] d..2 82320.425947: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
151954   kworker/u17:0-98    (   98) [003] d..2 82320.425953: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151955   kworker/u17:0-98    (   98) [003] d..3 82320.425958: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151956   kworker/u17:0-98    (   98) [003] d..2 82320.425973: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
151957     kworker/3:1-25210 (25210) [003] d..2 82320.425978: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
151958     kworker/3:1-25210 (25210) [003] d..3 82320.425986: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
151959     kworker/3:1-25210 (25210) [003] d..2 82320.425994: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
151960 s.nexuslauncher-10023 (10023) [004] d..3 82320.425996: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
151961 s.nexuslauncher-10023 (10023) [004] d..4 82320.426009: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
151962          <idle>-0     (-----) [005] .n.1 82320.426014: cpu_idle: state=4294967295 cpu_id=5
151963          <idle>-0     (-----) [005] d..2 82320.426020: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
151964            adbd-24055 (  960) [003] d..2 82320.426021: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
151965          <idle>-0     (-----) [003] d..1 82320.426029: cpu_idle: state=0 cpu_id=3
151966 s.nexuslauncher-10023 (10023) [004] d..2 82320.426030: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
151967          <idle>-0     (-----) [004] d..1 82320.426041: cpu_idle: state=0 cpu_id=4
151968    RenderThread-16607 (10023) [005] d..1 82320.426162: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151969    RenderThread-16607 (10023) [005] d..2 82320.426174: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
151970          <idle>-0     (-----) [004] .n.1 82320.426179: cpu_idle: state=4294967295 cpu_id=4
151971          <idle>-0     (-----) [004] d..2 82320.426187: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
151972          <idle>-0     (-----) [003] d.h3 82320.426205: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151973          <idle>-0     (-----) [003] dnh4 82320.426211: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
151974    RenderThread-16607 (10023) [005] .... 82320.426212: binder_transaction: transaction=1573289 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
151975          <idle>-0     (-----) [003] .n.1 82320.426216: cpu_idle: state=4294967295 cpu_id=3
151976    RenderThread-16607 (10023) [005] .... 82320.426216: binder_transaction_alloc_buf: transaction=1573289 data_size=104 offsets_size=0
151977    RenderThread-16607 (10023) [005] ...2 82320.426219: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
151978    RenderThread-16607 (10023) [005] d..4 82320.426222: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
151979          <idle>-0     (-----) [003] d..2 82320.426222: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
151980   kworker/u17:0-98    (   98) [003] d..2 82320.426230: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151981   kworker/u17:0-98    (   98) [003] d..3 82320.426235: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
151982    RenderThread-16607 (10023) [005] dn.5 82320.426239: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
151983   kworker/u17:0-98    (   98) [003] d..2 82320.426271: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
151984    RenderThread-16607 (10023) [005] d..2 82320.426273: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
151985     kworker/3:1-25210 (25210) [003] d..2 82320.426281: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
151986   Binder:8858_1-8871  ( 8858) [005] .... 82320.426283: binder_transaction_received: transaction=1573289
151987 s.nexuslauncher-10023 (10023) [004] d..2 82320.426290: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
151988     kworker/3:1-25210 (25210) [003] d..3 82320.426292: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
151989          <idle>-0     (-----) [004] d..1 82320.426300: cpu_idle: state=0 cpu_id=4
151990     kworker/3:1-25210 (25210) [003] d..2 82320.426301: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
151991            adbd-24054 (  960) [003] d..2 82320.426321: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
151992            adbd-24054 (  960) [003] d..3 82320.426331: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
151993   Binder:8858_1-8871  ( 8858) [005] .... 82320.426332: binder_transaction: transaction=1573290 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
151994   Binder:8858_1-8871  ( 8858) [005] .... 82320.426335: binder_transaction_alloc_buf: transaction=1573290 data_size=52 offsets_size=8
151995   Binder:8858_1-8871  ( 8858) [005] .... 82320.426342: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
151996   Binder:8858_1-8871  ( 8858) [005] d..2 82320.426374: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
151997            adbd-24054 (  960) [003] d..2 82320.426380: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
151998    RenderThread-16607 (10023) [005] .... 82320.426383: binder_transaction_received: transaction=1573290
151999            adbd-960   (  960) [003] d..2 82320.426461: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152000          <idle>-0     (-----) [003] d..1 82320.426470: cpu_idle: state=0 cpu_id=3
152001    RenderThread-16607 (10023) [005] d..2 82320.427580: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
152002          <idle>-0     (-----) [005] d..1 82320.427591: cpu_idle: state=0 cpu_id=5
152003          <idle>-0     (-----) [005] d.h2 82320.427672: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
152004          <idle>-0     (-----) [005] d.h3 82320.427678: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
152005          <idle>-0     (-----) [005] dnh3 82320.427681: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
152006          <idle>-0     (-----) [005] .n.1 82320.427686: cpu_idle: state=4294967295 cpu_id=5
152007          <idle>-0     (-----) [005] d..2 82320.427694: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
152008    RenderThread-16607 (10023) [005] .... 82320.427817: binder_transaction: transaction=1573291 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
152009    RenderThread-16607 (10023) [005] .... 82320.427820: binder_transaction_alloc_buf: transaction=1573291 data_size=192 offsets_size=8
152010    RenderThread-16607 (10023) [005] ...2 82320.427826: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
152011    RenderThread-16607 (10023) [005] d..4 82320.427828: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
152012    RenderThread-16607 (10023) [005] dn.5 82320.427836: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
152013    RenderThread-16607 (10023) [005] d..2 82320.427842: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
152014   Binder:8858_1-8871  ( 8858) [005] .... 82320.427851: binder_transaction_received: transaction=1573291
152015          <idle>-0     (-----) [003] ...1 82320.427883: cpu_idle: state=4294967295 cpu_id=3
152016          <idle>-0     (-----) [003] d..1 82320.427885: cpu_idle: state=0 cpu_id=3
152017   Binder:8858_1-8871  ( 8858) [005] .... 82320.427958: binder_transaction: transaction=1573292 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
152018   Binder:8858_1-8871  ( 8858) [005] .... 82320.427961: binder_transaction_alloc_buf: transaction=1573292 data_size=68 offsets_size=0
152019   Binder:8858_1-8871  ( 8858) [005] .... 82320.427964: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
152020   Binder:8858_1-8871  ( 8858) [005] d..2 82320.427995: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
152021    RenderThread-16607 (10023) [005] .... 82320.428005: binder_transaction_received: transaction=1573292
152022    RenderThread-16607 (10023) [005] d..2 82320.428062: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
152023          <idle>-0     (-----) [005] d..1 82320.428074: cpu_idle: state=0 cpu_id=5
152024          <idle>-0     (-----) [000] d.s2 82320.428456: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152025          <idle>-0     (-----) [000] dns3 82320.428465: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152026          <idle>-0     (-----) [000] .n.1 82320.428471: cpu_idle: state=4294967295 cpu_id=0
152027          <idle>-0     (-----) [000] d..2 82320.428477: 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
152028     rcu_preempt-7     (    7) [000] d..2 82320.428484: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
152029     rcu_preempt-7     (    7) [000] d..3 82320.428493: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
152030     rcu_preempt-7     (    7) [000] d..2 82320.428499: 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
152031         rcuop/0-10    (   10) [000] d..2 82320.428502: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
152032         rcuop/0-10    (   10) [000] d..3 82320.428509: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
152033         rcuop/0-10    (   10) [000] d..2 82320.428511: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152034         rcuop/0-10    (   10) [000] d..3 82320.428516: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152035         rcuop/0-10    (   10) [000] d..2 82320.428521: 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
152036         rcuop/1-21    (   21) [000] d..2 82320.428593: 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
152037     rcu_preempt-7     (    7) [000] d..2 82320.428608: 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
152038          <idle>-0     (-----) [000] d..1 82320.428615: cpu_idle: state=0 cpu_id=0
152039          <idle>-0     (-----) [000] d.h3 82320.429101: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
152040          <idle>-0     (-----) [000] d.h4 82320.429112: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
152041          <idle>-0     (-----) [003] .n.1 82320.429117: cpu_idle: state=4294967295 cpu_id=3
152042          <idle>-0     (-----) [000] ...1 82320.429121: cpu_idle: state=4294967295 cpu_id=0
152043          <idle>-0     (-----) [003] d..2 82320.429123: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
152044          <idle>-0     (-----) [000] d..1 82320.429123: cpu_idle: state=0 cpu_id=0
152045 kgsl_worker_thr-258   (  258) [003] d..2 82320.429156: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
152046 kgsl_worker_thr-258   (  258) [003] d..3 82320.429179: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
152047 kgsl_worker_thr-258   (  258) [003] d..2 82320.429192: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
152048          <idle>-0     (-----) [002] d.h2 82320.429263: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
152049          <idle>-0     (-----) [002] dnh3 82320.429271: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
152050          <idle>-0     (-----) [002] .n.1 82320.429275: cpu_idle: state=4294967295 cpu_id=2
152051          <idle>-0     (-----) [002] d..2 82320.429281: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
152052        DispSync-8879  ( 8858) [002] d..1 82320.429290: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
152053        DispSync-8879  ( 8858) [002] d..2 82320.429304: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
152054          <idle>-0     (-----) [000] .n.1 82320.429309: cpu_idle: state=4294967295 cpu_id=0
152055          <idle>-0     (-----) [000] d..2 82320.429314: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
152056        DispSync-8879  ( 8858) [002] d..2 82320.429320: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
152057          <idle>-0     (-----) [002] d..1 82320.429325: cpu_idle: state=0 cpu_id=2
152058   sfEventThread-8882  ( 8858) [000] d..3 82320.429345: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
152059   sfEventThread-8882  ( 8858) [000] d..4 82320.429363: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
152060          <idle>-0     (-----) [002] .n.1 82320.429369: cpu_idle: state=4294967295 cpu_id=2
152061          <idle>-0     (-----) [002] d..2 82320.429375: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
152062   sfEventThread-8882  ( 8858) [000] d..2 82320.429381: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152063          <idle>-0     (-----) [000] d..1 82320.429387: cpu_idle: state=0 cpu_id=0
152064  kworker/u16:15-1311  ( 1311) [003] d..2 82320.429424: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
152065          <idle>-0     (-----) [003] d..1 82320.429432: cpu_idle: state=0 cpu_id=3
152066              ps-27819 (27819) [001] d.s2 82320.429448: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
152067              ps-27819 (27819) [001] d.s3 82320.429456: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
152068              ps-27819 (27819) [001] d.s3 82320.429462: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
152069          <idle>-0     (-----) [003] .n.1 82320.429466: cpu_idle: state=4294967295 cpu_id=3
152070          <idle>-0     (-----) [003] d..2 82320.429473: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
152071  kworker/u16:15-1311  ( 1311) [003] d..2 82320.429487: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152072          <idle>-0     (-----) [003] d..1 82320.429493: cpu_idle: state=0 cpu_id=3
152073  surfaceflinger-8858  ( 8858) [002] d..2 82320.429647: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
152074  surfaceflinger-8858  ( 8858) [002] d..3 82320.429671: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=002
152075  surfaceflinger-8858  ( 8858) [002] d..1 82320.429689: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
152076  surfaceflinger-8858  ( 8858) [002] d..2 82320.429699: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
152077          <idle>-0     (-----) [000] .n.1 82320.429704: cpu_idle: state=4294967295 cpu_id=0
152078          <idle>-0     (-----) [000] d..2 82320.429709: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
152079   sfEventThread-8882  ( 8858) [000] d..2 82320.429727: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152080          <idle>-0     (-----) [000] d..1 82320.429731: cpu_idle: state=0 cpu_id=0
152081  surfaceflinger-8858  ( 8858) [002] ...1 82320.429846: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
152082  surfaceflinger-8858  ( 8858) [002] ...1 82320.429852: tracing_mark_write: E|8858
152083  surfaceflinger-8858  ( 8858) [002] .... 82320.429900: binder_transaction: transaction=1573293 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
152084  surfaceflinger-8858  ( 8858) [002] .... 82320.429903: binder_transaction_alloc_buf: transaction=1573293 data_size=540 offsets_size=96
152085  surfaceflinger-8858  ( 8858) [002] ...2 82320.429923: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
152086  surfaceflinger-8858  ( 8858) [002] d..4 82320.429933: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
152087  surfaceflinger-8858  ( 8858) [002] d..5 82320.429945: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
152088          <idle>-0     (-----) [003] .n.1 82320.429950: cpu_idle: state=4294967295 cpu_id=3
152089          <idle>-0     (-----) [003] d..2 82320.429955: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
152090  surfaceflinger-8858  ( 8858) [002] d..2 82320.429957: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
152091 [email protected]   (  619) [003] .... 82320.429964: binder_transaction_received: transaction=1573293
152092         rcuop/2-29    (   29) [002] d..2 82320.429971: 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
152093          <idle>-0     (-----) [002] d..1 82320.429979: cpu_idle: state=0 cpu_id=2
152094 [email protected]   (  619) [003] ...1 82320.430015: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
152095 [email protected]   (  619) [003] ...1 82320.430114: tracing_mark_write: B|619|HWCSession::PresentDisplay::
152096 [email protected]   (  619) [003] ...1 82320.430545: tracing_mark_write: B|619|HWDeviceDRM::Validate::
152097 [email protected]   (  619) [003] ...1 82320.430962: tracing_mark_write: E|619
152098 [email protected]   (  619) [003] ...1 82320.431048: tracing_mark_write: B|619|HWDeviceDRM::Commit::
152099 [email protected]   (  619) [003] ...1 82320.431054: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
152100 [email protected]   (  619) [003] d..2 82320.431305: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
152101 [email protected]   (  619) [003] d..3 82320.431321: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
152102          <idle>-0     (-----) [002] .n.1 82320.431326: cpu_idle: state=4294967295 cpu_id=2
152103          <idle>-0     (-----) [002] d..2 82320.431332: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
152104 [email protected]   (  619) [003] ...1 82320.431380: tracing_mark_write: E|619
152105 [email protected]   (  619) [003] ...1 82320.431383: tracing_mark_write: E|619
152106 [email protected]   (  619) [003] ...1 82320.431414: tracing_mark_write: E|619
152107 [email protected]   (  619) [003] ...1 82320.431452: tracing_mark_write: E|619
152108 crtc_commit:111-321   (  321) [002] d..2 82320.431458: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
152109 [email protected]   (  619) [003] .... 82320.431462: binder_transaction: transaction=1573294 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
152110          <idle>-0     (-----) [002] d..1 82320.431464: cpu_idle: state=0 cpu_id=2
152111 [email protected]   (  619) [003] .... 82320.431464: binder_transaction_alloc_buf: transaction=1573294 data_size=576 offsets_size=112
152112 [email protected]   (  619) [003] d..2 82320.431476: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
152113 [email protected]   (  619) [003] d..3 82320.431486: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
152114 [email protected]   (  619) [003] .... 82320.431489: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
152115          <idle>-0     (-----) [002] .n.1 82320.431491: cpu_idle: state=4294967295 cpu_id=2
152116          <idle>-0     (-----) [002] d..2 82320.431496: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
152117  surfaceflinger-8858  ( 8858) [002] .... 82320.431501: binder_transaction_received: transaction=1573294
152118 [email protected]   (  619) [003] d..2 82320.431539: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152119          <idle>-0     (-----) [003] d..1 82320.431548: cpu_idle: state=0 cpu_id=3
152120              ps-27819 (27819) [001] d.s2 82320.431640: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
152121              ps-27819 (27819) [001] d.s3 82320.431657: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
152122          <idle>-0     (-----) [000] .n.1 82320.431661: cpu_idle: state=4294967295 cpu_id=0
152123          <idle>-0     (-----) [000] d..2 82320.431667: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
152124 crtc_commit:111-321   (  321) [000] d..2 82320.431780: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
152125              ps-27819 (27819) [001] d.h2 82320.431797: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
152126              ps-27819 (27819) [001] dnh3 82320.431834: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
152127  surfaceflinger-8858  ( 8858) [002] d..2 82320.431851: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
152128          <idle>-0     (-----) [000] d.H4 82320.431857: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
152129          <idle>-0     (-----) [002] d..1 82320.431859: cpu_idle: state=0 cpu_id=2
152130              ps-27819 (27819) [001] dns1 82320.431859: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
152131          <idle>-0     (-----) [000] d.H5 82320.431868: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
152132              ps-27819 (27819) [001] dns2 82320.431869: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
152133          <idle>-0     (-----) [003] .n.1 82320.431874: cpu_idle: state=4294967295 cpu_id=3
152134              ps-27819 (27819) [001] d..2 82320.431875: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
152135          <idle>-0     (-----) [003] d..2 82320.431880: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
152136     migration/1-17    (   17) [001] d..2 82320.431894: sched_switch: prev_comm=migration/1 prev_pid=17 prev_prio=0 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
152137          <idle>-0     (-----) [002] .n.1 82320.431898: cpu_idle: state=4294967295 cpu_id=2
152138     ksoftirqd/1-18    (   18) [001] d.s2 82320.431902: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
152139          <idle>-0     (-----) [002] d..2 82320.431907: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ps next_pid=27819 next_prio=120
152140         sugov:0-576   (  576) [003] .... 82320.431908: clk_set_rate: pwrcl_clk 979200000
152141     ksoftirqd/1-18    (   18) [001] d.s3 82320.431912: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
152142          <idle>-0     (-----) [000] dns3 82320.431922: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
152143     ksoftirqd/1-18    (   18) [001] d..2 82320.431928: 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
152144          <idle>-0     (-----) [000] dns4 82320.431929: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
152145          <idle>-0     (-----) [000] d..2 82320.431936: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
152146          <idle>-0     (-----) [001] d..1 82320.431941: cpu_idle: state=0 cpu_id=1
152147         sugov:0-576   (  576) [003] .... 82320.431964: clk_set_rate: cpu3_pwrcl_clk 1766400000
152148         sugov:0-576   (  576) [003] .... 82320.431972: clk_set_rate: cpu2_pwrcl_clk 1766400000
152149         sugov:0-576   (  576) [003] .... 82320.431978: clk_set_rate: cpu1_pwrcl_clk 1766400000
152150         sugov:0-576   (  576) [003] .... 82320.431984: clk_set_rate: cpu0_pwrcl_clk 979200000
152151          <idle>-0     (-----) [001] ...1 82320.431988: cpu_idle: state=4294967295 cpu_id=1
152152          <idle>-0     (-----) [001] d..1 82320.431994: cpu_idle: state=0 cpu_id=1
152153         sugov:0-576   (  576) [003] .... 82320.432098: cpu_frequency: state=979200 cpu_id=0
152154 crtc_commit:111-321   (  321) [000] d..1 82320.432124: clk_enable: disp_cc_mdss_vsync_clk_src
152155 crtc_commit:111-321   (  321) [000] d..1 82320.432127: clk_enable: disp_cc_mdss_rscc_vsync_clk
152156 crtc_commit:111-321   (  321) [000] d..1 82320.432148: clk_enable: disp_cc_mdss_rscc_ahb_clk
152157 crtc_commit:111-321   (  321) [000] d..2 82320.432196: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/0 next_pid=3 next_prio=120
152158     ksoftirqd/0-3     (    3) [000] d..2 82320.432219: 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
152159          <idle>-0     (-----) [000] d..1 82320.432228: cpu_idle: state=0 cpu_id=0
152160         sugov:0-576   (  576) [003] d..2 82320.432243: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
152161          <idle>-0     (-----) [003] d..1 82320.432255: cpu_idle: state=0 cpu_id=3
152162          <idle>-0     (-----) [001] d.s3 82320.432265: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
152163          <idle>-0     (-----) [001] d.s4 82320.432278: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
152164          <idle>-0     (-----) [003] .n.1 82320.432284: cpu_idle: state=4294967295 cpu_id=3
152165          <idle>-0     (-----) [001] ...1 82320.432285: cpu_idle: state=4294967295 cpu_id=1
152166          <idle>-0     (-----) [001] d..1 82320.432291: cpu_idle: state=0 cpu_id=1
152167          <idle>-0     (-----) [003] d..2 82320.432292: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
152168          <idle>-0     (-----) [000] d.h2 82320.432295: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
152169         sugov:0-576   (  576) [003] .... 82320.432300: cpu_frequency: state=979200 cpu_id=1
152170          <idle>-0     (-----) [000] dnh3 82320.432305: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
152171         sugov:0-576   (  576) [003] .... 82320.432305: cpu_frequency: state=979200 cpu_id=2
152172         sugov:0-576   (  576) [003] .... 82320.432309: cpu_frequency: state=979200 cpu_id=3
152173          <idle>-0     (-----) [000] .n.1 82320.432311: cpu_idle: state=4294967295 cpu_id=0
152174          <idle>-0     (-----) [000] d..2 82320.432318: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
152175         sugov:0-576   (  576) [003] d..2 82320.432329: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152176          <idle>-0     (-----) [003] d..1 82320.432339: cpu_idle: state=0 cpu_id=3
152177 crtc_commit:111-321   (  321) [000] d..1 82320.432351: clk_enable: gcc_disp_axi_clk
152178 crtc_commit:111-321   (  321) [000] d..1 82320.432364: clk_enable: disp_cc_mdss_ahb_clk
152179 crtc_commit:111-321   (  321) [000] d..1 82320.432375: clk_enable: disp_cc_mdss_axi_clk
152180 crtc_commit:111-321   (  321) [000] d..1 82320.432394: clk_enable: gcc_disp_gpll0_clk_src
152181 crtc_commit:111-321   (  321) [000] d..1 82320.432903: clk_enable: disp_cc_mdss_mdp_clk_src
152182 crtc_commit:111-321   (  321) [000] d..1 82320.432936: clk_enable: disp_cc_mdss_mdp_clk
152183 crtc_commit:111-321   (  321) [000] d..1 82320.432946: clk_enable: disp_cc_mdss_vsync_clk
152184 crtc_commit:111-321   (  321) [000] d..2 82320.433241: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
152185          <idle>-0     (-----) [000] d..1 82320.433249: cpu_idle: state=0 cpu_id=0
152186          <idle>-0     (-----) [001] d.s3 82320.433283: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
152187          <idle>-0     (-----) [001] d.s4 82320.433296: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
152188          <idle>-0     (-----) [000] .n.1 82320.433301: cpu_idle: state=4294967295 cpu_id=0
152189          <idle>-0     (-----) [001] ...1 82320.433304: cpu_idle: state=4294967295 cpu_id=1
152190          <idle>-0     (-----) [000] d..2 82320.433307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
152191          <idle>-0     (-----) [001] d..1 82320.433308: cpu_idle: state=0 cpu_id=1
152192              ps-27819 (27819) [002] d..2 82320.433451: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=001
152193              ps-27819 (27819) [002] dn.3 82320.433473: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=002
152194              ps-27819 (27819) [002] d..2 82320.433482: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
152195 shell svc 27816-27817 (  960) [002] d..2 82320.433531: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152196 shell svc 27816-27817 (  960) [002] d..3 82320.433550: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152197          <idle>-0     (-----) [003] .n.1 82320.433563: cpu_idle: state=4294967295 cpu_id=3
152198 shell svc 27816-27817 (  960) [002] d..2 82320.433573: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
152199          <idle>-0     (-----) [003] d..2 82320.433574: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
152200            adbd-960   (  960) [003] d.h1 82320.433687: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
152201            adbd-960   (  960) [003] dnh2 82320.433699: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
152202            adbd-960   (  960) [003] d..2 82320.433711: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
152203 irq/80-1436400.-9674  ( 9674) [003] d..2 82320.433827: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=adbd next_pid=960 next_prio=120
152204            adbd-960   (  960) [003] d..1 82320.433836: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152205          <idle>-0     (-----) [001] d.s3 82320.433849: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
152206            adbd-960   (  960) [003] dn.2 82320.433859: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
152207          <idle>-0     (-----) [001] dns4 82320.433860: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
152208          <idle>-0     (-----) [001] .n.1 82320.433868: cpu_idle: state=4294967295 cpu_id=1
152209            adbd-960   (  960) [003] d..2 82320.433869: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=R+ ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
152210          <idle>-0     (-----) [001] d..2 82320.433879: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
152211 irq/80-1436400.-9674  ( 9674) [003] d..2 82320.433892: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
152212            adbd-960   (  960) [003] d..2 82320.433961: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152213            adbd-24055 (  960) [001] d..2 82320.433965: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
152214          <idle>-0     (-----) [001] d..1 82320.433977: cpu_idle: state=0 cpu_id=1
152215          <idle>-0     (-----) [003] d.h4 82320.433979: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152216          <idle>-0     (-----) [003] dnh5 82320.433989: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152217          <idle>-0     (-----) [003] d..2 82320.434000: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152218   kworker/u17:0-98    (   98) [003] d..2 82320.434017: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152219   kworker/u17:0-98    (   98) [003] d..3 82320.434027: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152220   kworker/u17:0-98    (   98) [003] d..2 82320.434045: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152221     kworker/3:1-25210 (25210) [003] d..2 82320.434056: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
152222     kworker/3:1-25210 (25210) [003] d.h3 82320.434120: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
152223          <idle>-0     (-----) [005] dnh2 82320.434121: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=005
152224          <idle>-0     (-----) [005] .n.1 82320.434125: cpu_idle: state=4294967295 cpu_id=5
152225          <idle>-0     (-----) [005] d..2 82320.434133: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
152226     kworker/3:1-25210 (25210) [003] d.h4 82320.434137: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=001
152227          <idle>-0     (-----) [001] .n.1 82320.434144: cpu_idle: state=4294967295 cpu_id=1
152228          <idle>-0     (-----) [001] d..2 82320.434152: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
152229     kworker/3:1-25210 (25210) [003] d..2 82320.434162: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152230         sugov:0-576   (  576) [001] .... 82320.434171: clk_set_rate: pwrcl_clk 1766400000
152231          <idle>-0     (-----) [003] d..1 82320.434173: cpu_idle: state=0 cpu_id=3
152232            adbd-24055 (  960) [005] d..3 82320.434199: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
152233            adbd-24055 (  960) [005] d..2 82320.434212: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
152234              ps-27819 (27819) [002] dnh1 82320.434217: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
152235          <idle>-0     (-----) [005] d..1 82320.434223: cpu_idle: state=0 cpu_id=5
152236              ps-27819 (27819) [002] d..2 82320.434229: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=migration/2 next_pid=25 next_prio=0
152237         sugov:0-576   (  576) [001] d..2 82320.434254: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=ps next_pid=27819 next_prio=120
152238     migration/2-25    (   25) [002] d..2 82320.434265: 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
152239              ps-27819 (27819) [001] d.s4 82320.434278: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=001
152240          <idle>-0     (-----) [002] d..1 82320.434278: cpu_idle: state=0 cpu_id=2
152241          <idle>-0     (-----) [003] d.h3 82320.434281: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152242          <idle>-0     (-----) [003] dnh4 82320.434293: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152243              ps-27819 (27819) [001] d.s5 82320.434298: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
152244          <idle>-0     (-----) [003] .n.1 82320.434305: cpu_idle: state=4294967295 cpu_id=3
152245          <idle>-0     (-----) [003] d..2 82320.434314: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
152246         sugov:0-576   (  576) [003] .... 82320.434328: clk_set_rate: cpu3_pwrcl_clk 979200000
152247         sugov:0-576   (  576) [003] .... 82320.434336: clk_set_rate: cpu2_pwrcl_clk 979200000
152248         sugov:0-576   (  576) [003] .... 82320.434343: clk_set_rate: cpu1_pwrcl_clk 979200000
152249         sugov:0-576   (  576) [003] .... 82320.434350: clk_set_rate: cpu0_pwrcl_clk 1766400000
152250         sugov:0-576   (  576) [003] .... 82320.434358: cpu_frequency: state=1766400 cpu_id=0
152251         sugov:0-576   (  576) [003] d..2 82320.434461: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152252   kworker/u17:0-98    (   98) [003] d..2 82320.434468: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152253   kworker/u17:0-98    (   98) [003] d..3 82320.434474: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152254   kworker/u17:0-98    (   98) [003] d..2 82320.434486: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152255              ps-27819 (27819) [001] d.s2 82320.434489: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
152256     kworker/3:1-25210 (25210) [003] d..2 82320.434491: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=005
152257              ps-27819 (27819) [001] d.s3 82320.434504: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
152258          <idle>-0     (-----) [002] .n.1 82320.434509: cpu_idle: state=4294967295 cpu_id=2
152259          <idle>-0     (-----) [005] dnh2 82320.434510: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=005
152260          <idle>-0     (-----) [005] .n.1 82320.434514: cpu_idle: state=4294967295 cpu_id=5
152261     kworker/3:1-25210 (25210) [003] d..2 82320.434514: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152262          <idle>-0     (-----) [002] d..2 82320.434515: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
152263          <idle>-0     (-----) [005] d..2 82320.434521: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
152264          <idle>-0     (-----) [003] d..1 82320.434522: cpu_idle: state=0 cpu_id=3
152265         sugov:0-576   (  576) [002] .... 82320.434522: cpu_frequency: state=1766400 cpu_id=1
152266         sugov:0-576   (  576) [002] .... 82320.434526: cpu_frequency: state=1766400 cpu_id=2
152267         sugov:0-576   (  576) [002] .... 82320.434528: cpu_frequency: state=1766400 cpu_id=3
152268          <idle>-0     (-----) [003] d.h3 82320.434533: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152269          <idle>-0     (-----) [003] dnh4 82320.434539: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152270         sugov:0-576   (  576) [002] d..2 82320.434542: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
152271          <idle>-0     (-----) [003] .n.1 82320.434544: cpu_idle: state=4294967295 cpu_id=3
152272            adbd-24055 (  960) [005] d..3 82320.434547: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
152273          <idle>-0     (-----) [002] d..1 82320.434548: cpu_idle: state=0 cpu_id=2
152274          <idle>-0     (-----) [003] d..2 82320.434551: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152275            adbd-24055 (  960) [005] d..2 82320.434556: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
152276   kworker/u17:0-98    (   98) [003] d..2 82320.434558: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152277              ps-27819 (27819) [001] dnh1 82320.434558: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
152278          <idle>-0     (-----) [005] d..1 82320.434562: cpu_idle: state=0 cpu_id=5
152279   kworker/u17:0-98    (   98) [003] d..3 82320.434563: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152280              ps-27819 (27819) [001] d..2 82320.434564: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
152281   kworker/u17:0-98    (   98) [003] d..2 82320.434574: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152282     kworker/3:1-25210 (25210) [003] d..2 82320.434583: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
152283          <idle>-0     (-----) [005] .n.1 82320.434589: cpu_idle: state=4294967295 cpu_id=5
152284 crtc_commit:111-321   (  321) [000] d..1 82320.434597: clk_enable: disp_cc_mdss_esc0_clk_src
152285 crtc_commit:111-321   (  321) [000] d..1 82320.434599: clk_enable: disp_cc_mdss_esc0_clk
152286          <idle>-0     (-----) [005] d..2 82320.434614: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ps next_pid=27819 next_prio=120
152287     migration/1-17    (   17) [001] d.h3 82320.434615: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=005
152288          <idle>-0     (-----) [004] dnh2 82320.434651: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=004
152289              ps-27819 (27819) [005] d..2 82320.434655: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
152290          <idle>-0     (-----) [004] .n.1 82320.434655: cpu_idle: state=4294967295 cpu_id=4
152291     kworker/3:1-25210 (25210) [003] d..2 82320.434661: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152292          <idle>-0     (-----) [004] d..2 82320.434664: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24054 next_prio=120
152293          <idle>-0     (-----) [007] dnh2 82320.434666: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
152294     migration/1-17    (   17) [001] d..2 82320.434667: 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
152295          <idle>-0     (-----) [003] d..1 82320.434668: cpu_idle: state=0 cpu_id=3
152296          <idle>-0     (-----) [007] .n.1 82320.434670: cpu_idle: state=4294967295 cpu_id=7
152297          <idle>-0     (-----) [001] d..1 82320.434676: cpu_idle: state=0 cpu_id=1
152298          <idle>-0     (-----) [007] d..2 82320.434680: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
152299          <idle>-0     (-----) [003] dnh2 82320.434690: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
152300            adbd-24054 (  960) [004] d..2 82320.434691: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152301          <idle>-0     (-----) [003] .n.1 82320.434694: cpu_idle: state=4294967295 cpu_id=3
152302          <idle>-0     (-----) [003] d..2 82320.434700: 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
152303         sugov:4-577   (  577) [007] .... 82320.434701: clk_set_rate: perfcl_clk 2803200000
152304         sugov:4-577   (  577) [007] .... 82320.434703: clk_set_rate: cpu7_perfcl_clk 825600000
152305         sugov:4-577   (  577) [007] .... 82320.434708: clk_set_rate: cpu6_perfcl_clk 825600000
152306         sugov:4-577   (  577) [007] .... 82320.434713: clk_set_rate: cpu5_perfcl_clk 825600000
152307            adbd-24054 (  960) [004] d..3 82320.434715: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=004
152308         sugov:4-577   (  577) [007] .... 82320.434718: clk_set_rate: cpu4_perfcl_clk 2803200000
152309         rcuop/4-45    (   45) [003] d..2 82320.434721: 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
152310         sugov:4-577   (  577) [007] .... 82320.434724: cpu_frequency: state=2803200 cpu_id=4
152311          <idle>-0     (-----) [003] d..1 82320.434726: cpu_idle: state=0 cpu_id=3
152312            adbd-24054 (  960) [004] d..2 82320.434797: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
152313         sugov:4-577   (  577) [007] d..2 82320.434855: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
152314          <idle>-0     (-----) [007] d..1 82320.434863: cpu_idle: state=0 cpu_id=7
152315          <idle>-0     (-----) [001] d.s3 82320.434881: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
152316            adbd-960   (  960) [004] d..2 82320.434891: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
152317          <idle>-0     (-----) [007] dnh2 82320.434894: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
152318          <idle>-0     (-----) [001] ...1 82320.434894: cpu_idle: state=4294967295 cpu_id=1
152319          <idle>-0     (-----) [004] d..1 82320.434895: cpu_idle: state=0 cpu_id=4
152320          <idle>-0     (-----) [007] .n.1 82320.434895: cpu_idle: state=4294967295 cpu_id=7
152321          <idle>-0     (-----) [001] d..1 82320.434897: cpu_idle: state=0 cpu_id=1
152322          <idle>-0     (-----) [007] d..2 82320.434898: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
152323         sugov:4-577   (  577) [007] .... 82320.434901: cpu_frequency: state=2803200 cpu_id=5
152324         sugov:4-577   (  577) [007] .... 82320.434902: cpu_frequency: state=2803200 cpu_id=6
152325         sugov:4-577   (  577) [007] .... 82320.434903: cpu_frequency: state=2803200 cpu_id=7
152326         sugov:4-577   (  577) [007] d..2 82320.434908: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
152327          <idle>-0     (-----) [007] d..1 82320.434910: cpu_idle: state=0 cpu_id=7
152328 crtc_commit:111-321   (  321) [000] d..1 82320.434944: clk_enable: dsi0pll_vco_clk
152329 crtc_commit:111-321   (  321) [000] d..1 82320.434945: clk_enable: dsi0pll_pll_out_div
152330 crtc_commit:111-321   (  321) [000] d..1 82320.434947: clk_enable: dsi0pll_bitclk_src
152331 crtc_commit:111-321   (  321) [000] d..1 82320.434947: clk_enable: dsi0pll_byteclk_src
152332 crtc_commit:111-321   (  321) [000] d..1 82320.434948: clk_enable: dsi0_phy_pll_out_byteclk
152333 crtc_commit:111-321   (  321) [000] d..1 82320.434949: clk_enable: disp_cc_mdss_byte0_clk_src
152334 crtc_commit:111-321   (  321) [000] d..1 82320.434950: clk_enable: disp_cc_mdss_byte0_clk
152335 crtc_commit:111-321   (  321) [000] d..1 82320.434955: clk_enable: dsi0pll_post_bit_div
152336 crtc_commit:111-321   (  321) [000] d..1 82320.434956: clk_enable: dsi0pll_pclk_src_mux
152337 crtc_commit:111-321   (  321) [000] d..1 82320.434957: clk_enable: dsi0pll_pclk_src
152338 crtc_commit:111-321   (  321) [000] d..1 82320.434958: clk_enable: dsi0_phy_pll_out_dsiclk
152339 crtc_commit:111-321   (  321) [000] d..1 82320.434958: clk_enable: disp_cc_mdss_pclk0_clk_src
152340 crtc_commit:111-321   (  321) [000] d..1 82320.434959: clk_enable: disp_cc_mdss_pclk0_clk
152341 crtc_commit:111-321   (  321) [000] d..1 82320.434964: clk_enable: disp_cc_mdss_byte0_div_clk_src
152342 crtc_commit:111-321   (  321) [000] d..1 82320.434964: clk_enable: disp_cc_mdss_byte0_intf_clk
152343          <idle>-0     (-----) [001] ...1 82320.435013: cpu_idle: state=4294967295 cpu_id=1
152344          <idle>-0     (-----) [001] d..1 82320.435015: cpu_idle: state=0 cpu_id=1
152345              ps-27819 (27819) [005] d.s2 82320.435119: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
152346 crtc_commit:111-321   (  321) [000] d.s1 82320.435123: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152347 crtc_commit:111-321   (  321) [000] d.s2 82320.435136: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152348 crtc_commit:111-321   (  321) [000] d.H2 82320.435141: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
152349 crtc_commit:111-321   (  321) [000] d..2 82320.435327: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
152350     rcu_preempt-7     (    7) [000] d..2 82320.435340: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
152351          <idle>-0     (-----) [001] d.s3 82320.435351: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
152352          <idle>-0     (-----) [001] d.s4 82320.435365: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
152353          <idle>-0     (-----) [001] ...1 82320.435369: cpu_idle: state=4294967295 cpu_id=1
152354          <idle>-0     (-----) [003] .n.1 82320.435370: cpu_idle: state=4294967295 cpu_id=3
152355          <idle>-0     (-----) [001] d..1 82320.435373: cpu_idle: state=0 cpu_id=1
152356          <idle>-0     (-----) [003] d..2 82320.435376: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
152357  kworker/u16:15-1311  ( 1311) [000] .... 82320.435386: clk_set_rate: l3_cluster1_vote_clk 576000000
152358 crtc_commit:111-321   (  321) [003] d..2 82320.435414: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
152359          <idle>-0     (-----) [003] d..1 82320.435425: cpu_idle: state=0 cpu_id=3
152360          <idle>-0     (-----) [003] ...1 82320.435434: cpu_idle: state=4294967295 cpu_id=3
152361          <idle>-0     (-----) [003] d..1 82320.435436: cpu_idle: state=0 cpu_id=3
152362  kworker/u16:15-1311  ( 1311) [000] .... 82320.435437: clk_set_rate: l3_cluster0_vote_clk 1036800000
152363  kworker/u16:15-1311  ( 1311) [000] .... 82320.435440: clk_set_rate: l3_clk 1036800000
152364  kworker/u16:15-1311  ( 1311) [000] d..2 82320.435583: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
152365          <idle>-0     (-----) [000] d..1 82320.435592: cpu_idle: state=0 cpu_id=0
152366          <idle>-0     (-----) [001] d.s3 82320.435606: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
152367          <idle>-0     (-----) [001] d.s4 82320.435613: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
152368          <idle>-0     (-----) [001] d.s4 82320.435618: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
152369          <idle>-0     (-----) [000] .n.1 82320.435624: cpu_idle: state=4294967295 cpu_id=0
152370          <idle>-0     (-----) [001] ...1 82320.435624: cpu_idle: state=4294967295 cpu_id=1
152371          <idle>-0     (-----) [001] d..1 82320.435627: cpu_idle: state=0 cpu_id=1
152372          <idle>-0     (-----) [000] d..2 82320.435631: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
152373          <idle>-0     (-----) [002] ...1 82320.435659: cpu_idle: state=4294967295 cpu_id=2
152374          <idle>-0     (-----) [002] d..1 82320.435662: cpu_idle: state=0 cpu_id=2
152375  kworker/u16:15-1311  ( 1311) [000] d..2 82320.435739: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
152376          <idle>-0     (-----) [000] d..1 82320.435746: cpu_idle: state=0 cpu_id=0
152377          <idle>-0     (-----) [001] d.s3 82320.435765: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
152378          <idle>-0     (-----) [001] d.s4 82320.435770: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
152379          <idle>-0     (-----) [001] d.s4 82320.435775: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
152380          <idle>-0     (-----) [001] ...1 82320.435780: cpu_idle: state=4294967295 cpu_id=1
152381          <idle>-0     (-----) [000] .n.1 82320.435780: cpu_idle: state=4294967295 cpu_id=0
152382          <idle>-0     (-----) [001] d..1 82320.435783: cpu_idle: state=0 cpu_id=1
152383          <idle>-0     (-----) [000] d..2 82320.435787: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
152384  kworker/u16:15-1311  ( 1311) [000] d..2 82320.435802: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152385          <idle>-0     (-----) [000] d..1 82320.435807: cpu_idle: state=0 cpu_id=0
152386          <idle>-0     (-----) [000] d.h5 82320.436529: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
152387          <idle>-0     (-----) [000] d.h6 82320.436541: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
152388          <idle>-0     (-----) [003] .n.1 82320.436545: cpu_idle: state=4294967295 cpu_id=3
152389          <idle>-0     (-----) [003] d..2 82320.436549: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
152390          <idle>-0     (-----) [000] ...1 82320.436552: cpu_idle: state=4294967295 cpu_id=0
152391          <idle>-0     (-----) [000] d..1 82320.436554: cpu_idle: state=0 cpu_id=0
152392 crtc_commit:111-321   (  321) [003] d..2 82320.436592: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152393          <idle>-0     (-----) [003] d..1 82320.436596: cpu_idle: state=0 cpu_id=3
152394          <idle>-0     (-----) [001] ...1 82320.436978: cpu_idle: state=4294967295 cpu_id=1
152395          <idle>-0     (-----) [001] d..1 82320.436980: cpu_idle: state=0 cpu_id=1
152396              ps-27819 (27819) [005] d..2 82320.437372: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=002
152397              ps-27819 (27819) [005] dn.3 82320.437383: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152398              ps-27819 (27819) [005] d..2 82320.437403: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
152399 shell svc 27816-27817 (  960) [005] d..2 82320.437421: sched_waking: comm=adbd pid=960 prio=120 target_cpu=004
152400 shell svc 27816-27817 (  960) [005] d..3 82320.437436: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=005
152401 shell svc 27816-27817 (  960) [005] d..2 82320.437442: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
152402            adbd-960   (  960) [005] d..1 82320.437479: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=005
152403          <idle>-0     (-----) [000] dnh2 82320.437514: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
152404          <idle>-0     (-----) [000] .n.1 82320.437517: cpu_idle: state=4294967295 cpu_id=0
152405          <idle>-0     (-----) [000] d..2 82320.437523: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
152406            adbd-960   (  960) [005] d..2 82320.437527: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
152407            adbd-24055 (  960) [000] d..2 82320.437581: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152408          <idle>-0     (-----) [000] d..1 82320.437588: cpu_idle: state=0 cpu_id=0
152409          <idle>-0     (-----) [003] d.h3 82320.437600: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152410          <idle>-0     (-----) [003] dnh4 82320.437609: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152411          <idle>-0     (-----) [003] .n.1 82320.437614: cpu_idle: state=4294967295 cpu_id=3
152412          <idle>-0     (-----) [003] d..2 82320.437619: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152413   kworker/u17:0-98    (   98) [003] d..2 82320.437627: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152414   kworker/u17:0-98    (   98) [003] d..3 82320.437632: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152415   kworker/u17:0-98    (   98) [003] d..2 82320.437649: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152416     kworker/3:1-25210 (25210) [003] d..2 82320.437655: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
152417     kworker/3:1-25210 (25210) [003] d..3 82320.437664: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
152418          <idle>-0     (-----) [000] .n.1 82320.437669: cpu_idle: state=4294967295 cpu_id=0
152419          <idle>-0     (-----) [000] d..2 82320.437676: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
152420     kworker/3:1-25210 (25210) [003] d..2 82320.437677: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152421          <idle>-0     (-----) [003] d..1 82320.437682: cpu_idle: state=0 cpu_id=3
152422            adbd-24055 (  960) [000] d..2 82320.437724: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152423          <idle>-0     (-----) [000] d..1 82320.437731: cpu_idle: state=0 cpu_id=0
152424          <idle>-0     (-----) [003] d.h3 82320.437838: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152425          <idle>-0     (-----) [003] dnh4 82320.437843: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152426          <idle>-0     (-----) [003] .n.1 82320.437847: cpu_idle: state=4294967295 cpu_id=3
152427          <idle>-0     (-----) [003] d..2 82320.437852: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152428   kworker/u17:0-98    (   98) [003] d..2 82320.437859: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152429   kworker/u17:0-98    (   98) [003] d..3 82320.437863: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152430   kworker/u17:0-98    (   98) [003] d..2 82320.437879: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152431     kworker/3:1-25210 (25210) [003] d..2 82320.437884: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
152432     kworker/3:1-25210 (25210) [003] d..3 82320.437893: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
152433          <idle>-0     (-----) [000] .n.1 82320.437898: cpu_idle: state=4294967295 cpu_id=0
152434          <idle>-0     (-----) [000] d..2 82320.437904: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
152435     kworker/3:1-25210 (25210) [003] d..2 82320.437906: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152436          <idle>-0     (-----) [003] d..1 82320.437910: cpu_idle: state=0 cpu_id=3
152437            adbd-24055 (  960) [000] d..2 82320.437924: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152438          <idle>-0     (-----) [000] d..1 82320.437929: cpu_idle: state=0 cpu_id=0
152439          <idle>-0     (-----) [003] d.h3 82320.438083: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152440          <idle>-0     (-----) [003] dnh4 82320.438088: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152441          <idle>-0     (-----) [003] .n.1 82320.438092: cpu_idle: state=4294967295 cpu_id=3
152442          <idle>-0     (-----) [003] d..2 82320.438097: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152443   kworker/u17:0-98    (   98) [003] d..2 82320.438104: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152444   kworker/u17:0-98    (   98) [003] d..3 82320.438108: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152445   kworker/u17:0-98    (   98) [003] d..2 82320.438124: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152446     kworker/3:1-25210 (25210) [003] d..2 82320.438132: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=004
152447     kworker/3:1-25210 (25210) [003] d..3 82320.438162: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
152448     kworker/3:1-25210 (25210) [003] d..2 82320.438195: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
152449            adbd-24054 (  960) [003] d..2 82320.438209: sched_waking: comm=adbd pid=960 prio=120 target_cpu=005
152450            adbd-24054 (  960) [003] d..3 82320.438222: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152451            adbd-24054 (  960) [003] d..2 82320.438289: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
152452            adbd-960   (  960) [003] d..2 82320.438360: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152453          <idle>-0     (-----) [003] d..1 82320.438366: cpu_idle: state=0 cpu_id=3
152454              ps-27819 (27819) [005] d.s2 82320.438452: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152455          <idle>-0     (-----) [003] d.s3 82320.438456: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
152456          <idle>-0     (-----) [003] d.s4 82320.438469: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
152457          <idle>-0     (-----) [000] dnh2 82320.438474: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152458          <idle>-0     (-----) [000] .n.1 82320.438481: cpu_idle: state=4294967295 cpu_id=0
152459          <idle>-0     (-----) [003] ...1 82320.438485: cpu_idle: state=4294967295 cpu_id=3
152460          <idle>-0     (-----) [000] d..2 82320.438487: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
152461          <idle>-0     (-----) [003] d..1 82320.438489: cpu_idle: state=0 cpu_id=3
152462  crtc_event:111-322   (  322) [000] d..2 82320.438503: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
152463     rcu_preempt-7     (    7) [000] d..2 82320.438508: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
152464     rcu_preempt-7     (    7) [000] d..3 82320.438521: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
152465     rcu_preempt-7     (    7) [000] d..2 82320.438531: 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
152466         rcuop/0-10    (   10) [000] d..2 82320.438534: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
152467         rcuop/0-10    (   10) [000] d..3 82320.438543: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
152468         rcuop/0-10    (   10) [000] d..2 82320.438550: 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
152469         rcuop/1-21    (   21) [000] d..2 82320.438666: 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
152470          <idle>-0     (-----) [000] d..1 82320.438673: cpu_idle: state=0 cpu_id=0
152471          <idle>-0     (-----) [003] ...1 82320.439990: cpu_idle: state=4294967295 cpu_id=3
152472          <idle>-0     (-----) [003] d..1 82320.439992: cpu_idle: state=0 cpu_id=3
152473              ps-27819 (27819) [005] d..2 82320.440295: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152474              ps-27819 (27819) [005] dn.3 82320.440300: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152475              ps-27819 (27819) [005] d..2 82320.440304: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
152476 shell svc 27816-27817 (  960) [005] d..2 82320.440317: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152477 shell svc 27816-27817 (  960) [005] d..2 82320.440329: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
152478          <idle>-0     (-----) [003] dnh2 82320.440331: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152479          <idle>-0     (-----) [003] .n.1 82320.440334: cpu_idle: state=4294967295 cpu_id=3
152480          <idle>-0     (-----) [003] d..2 82320.440341: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
152481          <idle>-0     (-----) [000] d.h5 82320.440379: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
152482            adbd-960   (  960) [003] d..1 82320.440379: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
152483          <idle>-0     (-----) [000] dnh6 82320.440386: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
152484            adbd-960   (  960) [003] d..2 82320.440392: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
152485          <idle>-0     (-----) [000] .n.1 82320.440398: cpu_idle: state=4294967295 cpu_id=0
152486          <idle>-0     (-----) [000] d..2 82320.440404: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
152487  crtc_event:111-322   (  322) [000] d..2 82320.440417: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152488            adbd-960   (  960) [003] d..2 82320.440430: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152489          <idle>-0     (-----) [003] d..1 82320.440439: cpu_idle: state=0 cpu_id=3
152490            adbd-24055 (  960) [000] d..2 82320.440467: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152491          <idle>-0     (-----) [000] d..1 82320.440473: cpu_idle: state=0 cpu_id=0
152492          <idle>-0     (-----) [003] d.h3 82320.440478: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152493          <idle>-0     (-----) [003] dnh4 82320.440487: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152494          <idle>-0     (-----) [003] .n.1 82320.440492: cpu_idle: state=4294967295 cpu_id=3
152495          <idle>-0     (-----) [003] d..2 82320.440499: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152496   kworker/u17:0-98    (   98) [003] d..2 82320.440506: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152497   kworker/u17:0-98    (   98) [003] d..3 82320.440512: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152498   kworker/u17:0-98    (   98) [003] d..2 82320.440529: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152499     kworker/3:1-25210 (25210) [003] d..2 82320.440535: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
152500     kworker/3:1-25210 (25210) [003] d..3 82320.440544: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
152501          <idle>-0     (-----) [000] .n.1 82320.440549: cpu_idle: state=4294967295 cpu_id=0
152502          <idle>-0     (-----) [000] d..2 82320.440555: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
152503     kworker/3:1-25210 (25210) [003] d..2 82320.440557: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152504          <idle>-0     (-----) [003] d..1 82320.440564: cpu_idle: state=0 cpu_id=3
152505            adbd-24055 (  960) [000] d..2 82320.440603: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152506          <idle>-0     (-----) [000] d..1 82320.440609: cpu_idle: state=0 cpu_id=0
152507          <idle>-0     (-----) [003] d.h3 82320.440713: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152508          <idle>-0     (-----) [003] dnh4 82320.440718: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152509          <idle>-0     (-----) [003] .n.1 82320.440723: cpu_idle: state=4294967295 cpu_id=3
152510          <idle>-0     (-----) [003] d..2 82320.440729: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152511   kworker/u17:0-98    (   98) [003] d..2 82320.440736: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152512   kworker/u17:0-98    (   98) [003] d..3 82320.440741: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152513   kworker/u17:0-98    (   98) [003] d..2 82320.440757: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152514     kworker/3:1-25210 (25210) [003] d..2 82320.440762: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
152515     kworker/3:1-25210 (25210) [003] d..3 82320.440770: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
152516          <idle>-0     (-----) [000] .n.1 82320.440775: cpu_idle: state=4294967295 cpu_id=0
152517          <idle>-0     (-----) [000] d..2 82320.440782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
152518     kworker/3:1-25210 (25210) [003] d..2 82320.440783: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152519          <idle>-0     (-----) [003] d..1 82320.440790: cpu_idle: state=0 cpu_id=3
152520            adbd-24055 (  960) [000] d..2 82320.440803: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152521          <idle>-0     (-----) [000] d..1 82320.440808: cpu_idle: state=0 cpu_id=0
152522          <idle>-0     (-----) [003] d.h3 82320.440959: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152523          <idle>-0     (-----) [003] dnh4 82320.440964: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152524          <idle>-0     (-----) [003] .n.1 82320.440969: cpu_idle: state=4294967295 cpu_id=3
152525          <idle>-0     (-----) [003] d..2 82320.440975: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152526   kworker/u17:0-98    (   98) [003] d..2 82320.440982: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152527   kworker/u17:0-98    (   98) [003] d..3 82320.440987: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152528   kworker/u17:0-98    (   98) [003] d..2 82320.441003: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152529     kworker/3:1-25210 (25210) [003] d..2 82320.441009: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
152530     kworker/3:1-25210 (25210) [003] d..3 82320.441017: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
152531     kworker/3:1-25210 (25210) [003] d..2 82320.441024: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
152532            adbd-24054 (  960) [003] d..2 82320.441035: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152533            adbd-24054 (  960) [003] d..3 82320.441041: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152534            adbd-24054 (  960) [003] d..2 82320.441086: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
152535            adbd-960   (  960) [003] d..2 82320.441151: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152536          <idle>-0     (-----) [003] d..1 82320.441160: cpu_idle: state=0 cpu_id=3
152537          <idle>-0     (-----) [002] d.h2 82320.441737: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
152538          <idle>-0     (-----) [002] dnh3 82320.441746: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
152539          <idle>-0     (-----) [002] .n.1 82320.441751: cpu_idle: state=4294967295 cpu_id=2
152540          <idle>-0     (-----) [002] d..2 82320.441757: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
152541        DispSync-8879  ( 8858) [002] d..1 82320.441798: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
152542        DispSync-8879  ( 8858) [002] d..2 82320.441814: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
152543          <idle>-0     (-----) [001] .n.1 82320.441818: cpu_idle: state=4294967295 cpu_id=1
152544          <idle>-0     (-----) [001] d..2 82320.441826: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
152545        DispSync-8879  ( 8858) [002] d..2 82320.441835: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
152546          <idle>-0     (-----) [002] d..1 82320.441841: cpu_idle: state=0 cpu_id=2
152547  appEventThread-8881  ( 8858) [001] d..3 82320.441877: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
152548          <idle>-0     (-----) [004] dnh2 82320.441896: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
152549          <idle>-0     (-----) [004] .n.1 82320.441898: cpu_idle: state=4294967295 cpu_id=4
152550          <idle>-0     (-----) [004] d..2 82320.441902: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
152551  appEventThread-8881  ( 8858) [001] d..2 82320.441914: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
152552          <idle>-0     (-----) [001] d..1 82320.441923: cpu_idle: state=0 cpu_id=1
152553 s.nexuslauncher-10023 (10023) [004] .... 82320.442079: binder_transaction: transaction=1573295 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
152554 s.nexuslauncher-10023 (10023) [004] .... 82320.442082: binder_transaction_alloc_buf: transaction=1573295 data_size=80 offsets_size=0
152555 s.nexuslauncher-10023 (10023) [004] d..4 82320.442085: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
152556          <idle>-0     (-----) [000] dnh2 82320.442121: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
152557          <idle>-0     (-----) [000] .n.1 82320.442124: cpu_idle: state=4294967295 cpu_id=0
152558          <idle>-0     (-----) [000] d..2 82320.442131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
152559 s.nexuslauncher-10023 (10023) [004] d..3 82320.442134: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
152560   Binder:8858_1-8871  ( 8858) [000] .... 82320.442136: binder_transaction_received: transaction=1573295
152561 s.nexuslauncher-10023 (10023) [004] d..4 82320.442145: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
152562          <idle>-0     (-----) [006] .n.1 82320.442150: cpu_idle: state=4294967295 cpu_id=6
152563          <idle>-0     (-----) [006] d..2 82320.442158: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
152564   Binder:8858_1-8871  ( 8858) [000] d..1 82320.442162: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
152565   Binder:8858_1-8871  ( 8858) [000] d..2 82320.442172: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
152566          <idle>-0     (-----) [001] .n.1 82320.442178: cpu_idle: state=4294967295 cpu_id=1
152567          <idle>-0     (-----) [001] d..2 82320.442184: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
152568    RenderThread-16607 (10023) [006] d..2 82320.442187: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
152569          <idle>-0     (-----) [006] d..1 82320.442191: cpu_idle: state=0 cpu_id=6
152570   Binder:8858_1-8871  ( 8858) [000] d..2 82320.442198: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152571          <idle>-0     (-----) [000] d..1 82320.442203: cpu_idle: state=0 cpu_id=0
152572  appEventThread-8881  ( 8858) [001] d..2 82320.442208: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
152573          <idle>-0     (-----) [001] d..1 82320.442214: cpu_idle: state=0 cpu_id=1
152574          <idle>-0     (-----) [003] ...1 82320.442272: cpu_idle: state=4294967295 cpu_id=3
152575          <idle>-0     (-----) [003] d..1 82320.442274: cpu_idle: state=0 cpu_id=3
152576 s.nexuslauncher-10023 (10023) [004] d..3 82320.442295: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
152577 s.nexuslauncher-10023 (10023) [004] d..4 82320.442303: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
152578          <idle>-0     (-----) [006] .n.1 82320.442307: cpu_idle: state=4294967295 cpu_id=6
152579          <idle>-0     (-----) [006] d..2 82320.442311: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
152580 s.nexuslauncher-10023 (10023) [004] d..2 82320.442313: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
152581          <idle>-0     (-----) [004] d..1 82320.442318: cpu_idle: state=0 cpu_id=4
152582    RenderThread-16607 (10023) [006] d..1 82320.442425: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
152583    RenderThread-16607 (10023) [006] d..2 82320.442433: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
152584          <idle>-0     (-----) [004] .n.1 82320.442438: cpu_idle: state=4294967295 cpu_id=4
152585          <idle>-0     (-----) [004] d..2 82320.442441: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
152586    RenderThread-16607 (10023) [006] .... 82320.442464: binder_transaction: transaction=1573296 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
152587    RenderThread-16607 (10023) [006] .... 82320.442466: binder_transaction_alloc_buf: transaction=1573296 data_size=104 offsets_size=0
152588    RenderThread-16607 (10023) [006] ...2 82320.442468: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
152589    RenderThread-16607 (10023) [006] d..4 82320.442470: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
152590 s.nexuslauncher-10023 (10023) [004] d..2 82320.442471: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
152591          <idle>-0     (-----) [004] d..1 82320.442474: cpu_idle: state=0 cpu_id=4
152592    RenderThread-16607 (10023) [006] d..5 82320.442480: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
152593    RenderThread-16607 (10023) [006] d..2 82320.442502: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
152594   Binder:8858_1-8871  ( 8858) [006] .... 82320.442507: binder_transaction_received: transaction=1573296
152595   Binder:8858_1-8871  ( 8858) [006] .... 82320.442543: binder_transaction: transaction=1573297 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
152596   Binder:8858_1-8871  ( 8858) [006] .... 82320.442544: binder_transaction_alloc_buf: transaction=1573297 data_size=52 offsets_size=8
152597   Binder:8858_1-8871  ( 8858) [006] d..2 82320.442548: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
152598   Binder:8858_1-8871  ( 8858) [006] d..3 82320.442553: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
152599   Binder:8858_1-8871  ( 8858) [006] .... 82320.442554: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
152600   Binder:8858_1-8871  ( 8858) [006] d..2 82320.442558: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=R+ ==> next_comm=RenderThread next_pid=16607 next_prio=110
152601    RenderThread-16607 (10023) [006] .... 82320.442561: binder_transaction_received: transaction=1573297
152602              ps-27819 (27819) [005] d..2 82320.442878: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152603              ps-27819 (27819) [005] dn.3 82320.442884: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152604              ps-27819 (27819) [005] d..2 82320.442887: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
152605 shell svc 27816-27817 (  960) [005] d..2 82320.442901: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152606 shell svc 27816-27817 (  960) [005] d..2 82320.442912: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
152607          <idle>-0     (-----) [003] dnh2 82320.442915: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152608          <idle>-0     (-----) [003] .n.1 82320.442918: cpu_idle: state=4294967295 cpu_id=3
152609          <idle>-0     (-----) [003] d..2 82320.442925: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
152610            adbd-960   (  960) [003] d..1 82320.442964: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
152611            adbd-960   (  960) [003] d..2 82320.442986: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152612            adbd-960   (  960) [003] d..2 82320.443019: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152613            adbd-24055 (  960) [003] d..2 82320.443069: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152614          <idle>-0     (-----) [003] d.h4 82320.443086: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152615          <idle>-0     (-----) [003] dnh5 82320.443094: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152616          <idle>-0     (-----) [003] d..2 82320.443102: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152617   kworker/u17:0-98    (   98) [003] d..2 82320.443109: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152618   kworker/u17:0-98    (   98) [003] d..3 82320.443114: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152619   kworker/u17:0-98    (   98) [003] d..2 82320.443130: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152620     kworker/3:1-25210 (25210) [003] d..2 82320.443135: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152621     kworker/3:1-25210 (25210) [003] d..3 82320.443142: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152622     kworker/3:1-25210 (25210) [003] d..2 82320.443150: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152623            adbd-24055 (  960) [003] d..2 82320.443195: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152624          <idle>-0     (-----) [003] d..1 82320.443203: cpu_idle: state=0 cpu_id=3
152625          <idle>-0     (-----) [003] d.h3 82320.443286: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152626          <idle>-0     (-----) [003] dnh4 82320.443293: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152627          <idle>-0     (-----) [003] .n.1 82320.443297: cpu_idle: state=4294967295 cpu_id=3
152628          <idle>-0     (-----) [003] d..2 82320.443303: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152629   kworker/u17:0-98    (   98) [003] d..2 82320.443310: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152630   kworker/u17:0-98    (   98) [003] d..3 82320.443315: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152631   kworker/u17:0-98    (   98) [003] d..2 82320.443331: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152632     kworker/3:1-25210 (25210) [003] d..2 82320.443335: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152633     kworker/3:1-25210 (25210) [003] d..3 82320.443343: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152634     kworker/3:1-25210 (25210) [003] d..2 82320.443351: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152635            adbd-24055 (  960) [003] d..2 82320.443372: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152636          <idle>-0     (-----) [003] d..1 82320.443379: cpu_idle: state=0 cpu_id=3
152637          <idle>-0     (-----) [001] ...1 82320.443445: cpu_idle: state=4294967295 cpu_id=1
152638          <idle>-0     (-----) [001] d..1 82320.443447: cpu_idle: state=0 cpu_id=1
152639    RenderThread-16607 (10023) [006] d..2 82320.443479: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
152640   Binder:8858_1-8871  ( 8858) [006] d..2 82320.443504: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
152641          <idle>-0     (-----) [006] d..1 82320.443510: cpu_idle: state=0 cpu_id=6
152642          <idle>-0     (-----) [003] d.h3 82320.443537: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152643          <idle>-0     (-----) [003] dnh4 82320.443542: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152644          <idle>-0     (-----) [003] .n.1 82320.443547: cpu_idle: state=4294967295 cpu_id=3
152645          <idle>-0     (-----) [003] d..2 82320.443553: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152646   kworker/u17:0-98    (   98) [003] d..2 82320.443560: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152647   kworker/u17:0-98    (   98) [003] d..3 82320.443565: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152648          <idle>-0     (-----) [006] d.h2 82320.443579: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
152649   kworker/u17:0-98    (   98) [003] d..2 82320.443581: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152650          <idle>-0     (-----) [006] d.h3 82320.443583: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
152651          <idle>-0     (-----) [006] dnh3 82320.443584: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
152652          <idle>-0     (-----) [006] .n.1 82320.443587: cpu_idle: state=4294967295 cpu_id=6
152653     kworker/3:1-25210 (25210) [003] d..2 82320.443587: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
152654          <idle>-0     (-----) [006] d..2 82320.443591: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
152655     kworker/3:1-25210 (25210) [003] d..3 82320.443596: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
152656     kworker/3:1-25210 (25210) [003] d..2 82320.443603: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
152657            adbd-24054 (  960) [003] d..2 82320.443615: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152658            adbd-24054 (  960) [003] d..3 82320.443620: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152659            adbd-24054 (  960) [003] d..2 82320.443662: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
152660    RenderThread-16607 (10023) [006] .... 82320.443682: binder_transaction: transaction=1573298 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
152661    RenderThread-16607 (10023) [006] .... 82320.443684: binder_transaction_alloc_buf: transaction=1573298 data_size=192 offsets_size=8
152662    RenderThread-16607 (10023) [006] ...2 82320.443688: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
152663    RenderThread-16607 (10023) [006] d..4 82320.443689: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
152664    RenderThread-16607 (10023) [006] d..5 82320.443693: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
152665    RenderThread-16607 (10023) [006] d..2 82320.443698: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
152666   Binder:8858_1-8871  ( 8858) [006] .... 82320.443701: binder_transaction_received: transaction=1573298
152667            adbd-960   (  960) [003] d..2 82320.443731: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152668          <idle>-0     (-----) [003] d..1 82320.443740: cpu_idle: state=0 cpu_id=3
152669   Binder:8858_1-8871  ( 8858) [006] .... 82320.443764: binder_transaction: transaction=1573299 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
152670   Binder:8858_1-8871  ( 8858) [006] .... 82320.443766: binder_transaction_alloc_buf: transaction=1573299 data_size=68 offsets_size=0
152671   Binder:8858_1-8871  ( 8858) [006] d..2 82320.443766: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
152672   Binder:8858_1-8871  ( 8858) [006] d..3 82320.443771: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
152673   Binder:8858_1-8871  ( 8858) [006] .... 82320.443772: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
152674   Binder:8858_1-8871  ( 8858) [006] d..2 82320.443783: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
152675    RenderThread-16607 (10023) [006] .... 82320.443786: binder_transaction_received: transaction=1573299
152676    RenderThread-16607 (10023) [006] d..2 82320.443814: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
152677          <idle>-0     (-----) [006] d..1 82320.443820: cpu_idle: state=0 cpu_id=6
152678          <idle>-0     (-----) [003] ...1 82320.444873: cpu_idle: state=4294967295 cpu_id=3
152679          <idle>-0     (-----) [003] d..1 82320.444876: cpu_idle: state=0 cpu_id=3
152680          <idle>-0     (-----) [000] d.h3 82320.445021: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
152681          <idle>-0     (-----) [000] d.h4 82320.445034: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
152682          <idle>-0     (-----) [003] .n.1 82320.445039: cpu_idle: state=4294967295 cpu_id=3
152683          <idle>-0     (-----) [000] ...1 82320.445044: cpu_idle: state=4294967295 cpu_id=0
152684          <idle>-0     (-----) [003] d..2 82320.445045: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
152685          <idle>-0     (-----) [000] d..1 82320.445047: cpu_idle: state=0 cpu_id=0
152686 kgsl_worker_thr-258   (  258) [003] d..2 82320.445090: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
152687 kgsl_worker_thr-258   (  258) [003] d..3 82320.445114: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
152688          <idle>-0     (-----) [000] d.s2 82320.445125: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152689          <idle>-0     (-----) [000] dns3 82320.445135: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152690          <idle>-0     (-----) [000] .n.1 82320.445145: cpu_idle: state=4294967295 cpu_id=0
152691 kgsl_worker_thr-258   (  258) [003] d..2 82320.445147: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
152692          <idle>-0     (-----) [000] d..2 82320.445151: 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
152693  kworker/u16:15-1311  ( 1311) [003] d..2 82320.445152: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
152694  kworker/u16:15-1311  ( 1311) [003] d..3 82320.445166: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
152695     rcu_preempt-7     (    7) [000] d..2 82320.445175: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
152696  kworker/u16:15-1311  ( 1311) [003] d..2 82320.445336: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152697          <idle>-0     (-----) [003] d..1 82320.445344: cpu_idle: state=0 cpu_id=3
152698  kworker/u16:13-1147  ( 1147) [000] .... 82320.445383: clk_set_rate: l3_cluster0_vote_clk 403200000
152699  kworker/u16:13-1147  ( 1147) [000] .... 82320.445387: clk_set_rate: l3_clk 576000000
152700  kworker/u16:13-1147  ( 1147) [000] .... 82320.445454: clk_set_rate: l3_cluster1_vote_clk 1478400000
152701  kworker/u16:13-1147  ( 1147) [000] .... 82320.445457: clk_set_rate: l3_clk 1478400000
152702  kworker/u16:13-1147  ( 1147) [000] d..2 82320.445484: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152703          <idle>-0     (-----) [000] d..1 82320.445494: cpu_idle: state=0 cpu_id=0
152704          <idle>-0     (-----) [002] d.h2 82320.445774: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
152705          <idle>-0     (-----) [002] dnh3 82320.445781: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
152706          <idle>-0     (-----) [002] .n.1 82320.445785: cpu_idle: state=4294967295 cpu_id=2
152707          <idle>-0     (-----) [002] d..2 82320.445790: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
152708        DispSync-8879  ( 8858) [002] d..1 82320.445798: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
152709        DispSync-8879  ( 8858) [002] d..2 82320.445808: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
152710          <idle>-0     (-----) [000] .n.1 82320.445812: cpu_idle: state=4294967295 cpu_id=0
152711          <idle>-0     (-----) [000] d..2 82320.445818: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
152712              ps-27819 (27819) [005] d..2 82320.445819: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152713        DispSync-8879  ( 8858) [002] d..2 82320.445822: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
152714              ps-27819 (27819) [005] dn.3 82320.445824: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152715              ps-27819 (27819) [005] d..2 82320.445827: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
152716          <idle>-0     (-----) [002] d..1 82320.445827: cpu_idle: state=0 cpu_id=2
152717 shell svc 27816-27817 (  960) [005] d..2 82320.445840: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152718   sfEventThread-8882  ( 8858) [000] d..3 82320.445849: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
152719 shell svc 27816-27817 (  960) [005] d..2 82320.445859: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
152720   sfEventThread-8882  ( 8858) [000] d..4 82320.445861: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
152721          <idle>-0     (-----) [003] dnh2 82320.445862: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152722          <idle>-0     (-----) [002] .n.1 82320.445866: cpu_idle: state=4294967295 cpu_id=2
152723          <idle>-0     (-----) [003] .n.1 82320.445866: cpu_idle: state=4294967295 cpu_id=3
152724          <idle>-0     (-----) [002] d..2 82320.445871: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
152725          <idle>-0     (-----) [003] d..2 82320.445872: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
152726   sfEventThread-8882  ( 8858) [000] d..2 82320.445879: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152727          <idle>-0     (-----) [000] d..1 82320.445885: cpu_idle: state=0 cpu_id=0
152728            adbd-960   (  960) [003] d..1 82320.445911: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152729            adbd-960   (  960) [003] d..2 82320.445923: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152730            adbd-960   (  960) [003] d..2 82320.445954: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152731            adbd-24055 (  960) [003] d..2 82320.446000: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152732          <idle>-0     (-----) [003] d.h3 82320.446019: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152733          <idle>-0     (-----) [003] dnh4 82320.446027: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152734          <idle>-0     (-----) [003] d..2 82320.446036: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152735   kworker/u17:0-98    (   98) [003] d..2 82320.446042: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152736   kworker/u17:0-98    (   98) [003] d..3 82320.446047: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152737   kworker/u17:0-98    (   98) [003] d..2 82320.446063: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152738     kworker/3:1-25210 (25210) [003] d..2 82320.446067: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152739     kworker/3:1-25210 (25210) [003] d..3 82320.446074: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152740     kworker/3:1-25210 (25210) [003] d..2 82320.446082: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152741            adbd-24055 (  960) [003] d..2 82320.446125: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152742          <idle>-0     (-----) [003] d..1 82320.446133: cpu_idle: state=0 cpu_id=3
152743  surfaceflinger-8858  ( 8858) [002] d..1 82320.446134: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
152744  surfaceflinger-8858  ( 8858) [002] d..2 82320.446145: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
152745          <idle>-0     (-----) [000] .n.1 82320.446150: cpu_idle: state=4294967295 cpu_id=0
152746          <idle>-0     (-----) [000] d..2 82320.446155: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
152747   sfEventThread-8882  ( 8858) [000] d..2 82320.446173: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152748          <idle>-0     (-----) [000] d..1 82320.446178: cpu_idle: state=0 cpu_id=0
152749          <idle>-0     (-----) [003] d.h3 82320.446232: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152750          <idle>-0     (-----) [003] dnh4 82320.446238: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152751          <idle>-0     (-----) [003] .n.1 82320.446243: cpu_idle: state=4294967295 cpu_id=3
152752          <idle>-0     (-----) [003] d..2 82320.446249: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152753   kworker/u17:0-98    (   98) [003] d..2 82320.446255: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152754   kworker/u17:0-98    (   98) [003] d..3 82320.446260: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152755   kworker/u17:0-98    (   98) [003] d..2 82320.446276: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152756     kworker/3:1-25210 (25210) [003] d..2 82320.446280: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152757  surfaceflinger-8858  ( 8858) [002] ...1 82320.446282: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
152758  surfaceflinger-8858  ( 8858) [002] ...1 82320.446287: tracing_mark_write: E|8858
152759     kworker/3:1-25210 (25210) [003] d..3 82320.446288: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152760     kworker/3:1-25210 (25210) [003] d..2 82320.446295: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152761            adbd-24055 (  960) [003] d..2 82320.446311: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152762          <idle>-0     (-----) [003] d..1 82320.446318: cpu_idle: state=0 cpu_id=3
152763  surfaceflinger-8858  ( 8858) [002] .... 82320.446334: binder_transaction: transaction=1573300 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
152764  surfaceflinger-8858  ( 8858) [002] .... 82320.446338: binder_transaction_alloc_buf: transaction=1573300 data_size=540 offsets_size=96
152765  surfaceflinger-8858  ( 8858) [002] ...2 82320.446355: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
152766  surfaceflinger-8858  ( 8858) [002] d..4 82320.446362: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
152767  surfaceflinger-8858  ( 8858) [002] d..5 82320.446374: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
152768          <idle>-0     (-----) [003] .n.1 82320.446380: cpu_idle: state=4294967295 cpu_id=3
152769          <idle>-0     (-----) [003] d..2 82320.446385: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
152770  surfaceflinger-8858  ( 8858) [002] d..2 82320.446389: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
152771 [email protected]   (  619) [003] .... 82320.446392: binder_transaction_received: transaction=1573300
152772          <idle>-0     (-----) [002] d..1 82320.446398: cpu_idle: state=0 cpu_id=2
152773 [email protected]   (  619) [003] d.h2 82320.446432: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152774 [email protected]   (  619) [003] d.h3 82320.446441: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152775 [email protected]   (  619) [003] ...1 82320.446466: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
152776 [email protected]   (  619) [003] ...1 82320.446557: tracing_mark_write: B|619|HWCSession::PresentDisplay::
152777 [email protected]   (  619) [003] ...1 82320.446687: tracing_mark_write: B|619|HWDeviceDRM::Commit::
152778 [email protected]   (  619) [003] ...1 82320.446697: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
152779 [email protected]   (  619) [003] d..2 82320.447091: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
152780 [email protected]   (  619) [003] d..3 82320.447110: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
152781          <idle>-0     (-----) [001] .n.1 82320.447113: cpu_idle: state=4294967295 cpu_id=1
152782          <idle>-0     (-----) [001] d..2 82320.447119: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
152783 [email protected]   (  619) [003] ...1 82320.447171: tracing_mark_write: E|619
152784 [email protected]   (  619) [003] ...1 82320.447174: tracing_mark_write: E|619
152785 [email protected]   (  619) [003] ...1 82320.447216: tracing_mark_write: E|619
152786 [email protected]   (  619) [003] ...1 82320.447252: tracing_mark_write: E|619
152787 [email protected]   (  619) [003] .... 82320.447262: binder_transaction: transaction=1573301 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
152788 [email protected]   (  619) [003] .... 82320.447265: binder_transaction_alloc_buf: transaction=1573301 data_size=576 offsets_size=112
152789 [email protected]   (  619) [003] d..2 82320.447276: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
152790 [email protected]   (  619) [003] d..3 82320.447286: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
152791 [email protected]   (  619) [003] .... 82320.447288: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
152792          <idle>-0     (-----) [002] .n.1 82320.447291: cpu_idle: state=4294967295 cpu_id=2
152793          <idle>-0     (-----) [002] d..2 82320.447296: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
152794  surfaceflinger-8858  ( 8858) [002] .... 82320.447300: binder_transaction_received: transaction=1573301
152795 [email protected]   (  619) [003] d..2 82320.447331: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152796   kworker/u17:0-98    (   98) [003] d..2 82320.447339: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152797   kworker/u17:0-98    (   98) [003] d..3 82320.447345: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152798   kworker/u17:0-98    (   98) [003] d..2 82320.447361: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152799     kworker/3:1-25210 (25210) [003] d..2 82320.447368: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
152800     kworker/3:1-25210 (25210) [003] d..3 82320.447377: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
152801     kworker/3:1-25210 (25210) [003] d..2 82320.447386: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
152802            adbd-24054 (  960) [003] d..2 82320.447399: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152803            adbd-24054 (  960) [003] d..3 82320.447405: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152804            adbd-24054 (  960) [003] d..2 82320.447447: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
152805            adbd-960   (  960) [003] d..2 82320.447513: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152806          <idle>-0     (-----) [003] d..1 82320.447522: cpu_idle: state=0 cpu_id=3
152807  surfaceflinger-8858  ( 8858) [002] d..2 82320.447576: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
152808          <idle>-0     (-----) [002] d..1 82320.447584: cpu_idle: state=0 cpu_id=2
152809 crtc_commit:111-321   (  321) [001] d..2 82320.447728: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
152810          <idle>-0     (-----) [001] d..1 82320.447735: cpu_idle: state=0 cpu_id=1
152811              ps-27819 (27819) [005] d..2 82320.448356: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152812              ps-27819 (27819) [005] dn.3 82320.448361: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152813              ps-27819 (27819) [005] d..2 82320.448364: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
152814 shell svc 27816-27817 (  960) [005] d..2 82320.448378: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152815 shell svc 27816-27817 (  960) [005] d..2 82320.448389: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
152816          <idle>-0     (-----) [003] dnh2 82320.448393: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152817          <idle>-0     (-----) [003] .n.1 82320.448397: cpu_idle: state=4294967295 cpu_id=3
152818          <idle>-0     (-----) [003] d..2 82320.448403: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
152819            adbd-960   (  960) [003] d.s2 82320.448457: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152820            adbd-960   (  960) [003] d.s3 82320.448478: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
152821            adbd-960   (  960) [003] d..1 82320.448482: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152822            adbd-960   (  960) [003] d..2 82320.448488: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152823            adbd-960   (  960) [003] d..2 82320.448518: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
152824     rcu_preempt-7     (    7) [003] d..2 82320.448524: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
152825     rcu_preempt-7     (    7) [003] d..3 82320.448535: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
152826     rcu_preempt-7     (    7) [003] d..2 82320.448536: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=002
152827     rcu_preempt-7     (    7) [003] d..3 82320.448556: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
152828     rcu_preempt-7     (    7) [003] d..2 82320.448566: 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
152829         rcuop/2-29    (   29) [003] d..2 82320.448579: 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
152830         rcuop/4-45    (   45) [003] d..2 82320.448583: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
152831         rcuop/4-45    (   45) [003] d..3 82320.448603: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=003
152832         rcuop/4-45    (   45) [003] d..2 82320.448609: 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
152833         rcuop/5-53    (   53) [003] d..2 82320.448619: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152834            adbd-24055 (  960) [003] d..2 82320.448671: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152835          <idle>-0     (-----) [003] d.h4 82320.448688: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152836          <idle>-0     (-----) [003] dnh5 82320.448693: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152837          <idle>-0     (-----) [003] d..2 82320.448701: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152838   kworker/u17:0-98    (   98) [003] d..2 82320.448707: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152839   kworker/u17:0-98    (   98) [003] d..3 82320.448712: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152840   kworker/u17:0-98    (   98) [003] d..2 82320.448729: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152841     kworker/3:1-25210 (25210) [003] d..2 82320.448734: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152842     kworker/3:1-25210 (25210) [003] d..3 82320.448741: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152843     kworker/3:1-25210 (25210) [003] d..2 82320.448749: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152844            adbd-24055 (  960) [003] d..2 82320.448793: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152845          <idle>-0     (-----) [003] d..1 82320.448800: cpu_idle: state=0 cpu_id=3
152846          <idle>-0     (-----) [003] d.h3 82320.448907: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152847          <idle>-0     (-----) [003] dnh4 82320.448912: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152848          <idle>-0     (-----) [003] .n.1 82320.448917: cpu_idle: state=4294967295 cpu_id=3
152849          <idle>-0     (-----) [003] d..2 82320.448923: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152850   kworker/u17:0-98    (   98) [003] d..2 82320.448929: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152851   kworker/u17:0-98    (   98) [003] d..3 82320.448934: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152852   kworker/u17:0-98    (   98) [003] d..2 82320.448950: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152853     kworker/3:1-25210 (25210) [003] d..2 82320.448955: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152854     kworker/3:1-25210 (25210) [003] d..3 82320.448962: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152855     kworker/3:1-25210 (25210) [003] d..2 82320.448970: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152856            adbd-24055 (  960) [003] d..2 82320.448988: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152857          <idle>-0     (-----) [003] d..1 82320.448995: cpu_idle: state=0 cpu_id=3
152858          <idle>-0     (-----) [003] d.h3 82320.449098: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152859          <idle>-0     (-----) [003] dnh4 82320.449104: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152860          <idle>-0     (-----) [003] .n.1 82320.449108: cpu_idle: state=4294967295 cpu_id=3
152861          <idle>-0     (-----) [003] d..2 82320.449114: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152862   kworker/u17:0-98    (   98) [003] d..2 82320.449121: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152863   kworker/u17:0-98    (   98) [003] d..3 82320.449127: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152864   kworker/u17:0-98    (   98) [003] d..2 82320.449142: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152865     kworker/3:1-25210 (25210) [003] d..2 82320.449148: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
152866     kworker/3:1-25210 (25210) [003] d..3 82320.449156: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
152867     kworker/3:1-25210 (25210) [003] d..2 82320.449164: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
152868            adbd-24054 (  960) [003] d..2 82320.449174: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152869            adbd-24054 (  960) [003] d..3 82320.449180: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152870            adbd-24054 (  960) [003] d..2 82320.449219: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
152871            adbd-960   (  960) [003] d..2 82320.449280: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152872          <idle>-0     (-----) [003] d..1 82320.449287: cpu_idle: state=0 cpu_id=3
152873              ps-27819 (27819) [005] d..2 82320.451037: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152874              ps-27819 (27819) [005] dn.3 82320.451043: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152875              ps-27819 (27819) [005] d..2 82320.451046: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
152876 shell svc 27816-27817 (  960) [005] d..2 82320.451058: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152877 shell svc 27816-27817 (  960) [005] d..2 82320.451069: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
152878          <idle>-0     (-----) [003] dnh2 82320.451072: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152879          <idle>-0     (-----) [003] .n.1 82320.451076: cpu_idle: state=4294967295 cpu_id=3
152880          <idle>-0     (-----) [003] d..2 82320.451082: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
152881            adbd-960   (  960) [003] d..1 82320.451115: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152882            adbd-960   (  960) [003] d..2 82320.451125: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152883            adbd-960   (  960) [003] d..2 82320.451154: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152884            adbd-24055 (  960) [003] d..2 82320.451200: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152885          <idle>-0     (-----) [003] d.h4 82320.451216: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152886          <idle>-0     (-----) [003] dnh5 82320.451224: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152887          <idle>-0     (-----) [003] d..2 82320.451231: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152888   kworker/u17:0-98    (   98) [003] d..2 82320.451238: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152889   kworker/u17:0-98    (   98) [003] d..3 82320.451243: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152890   kworker/u17:0-98    (   98) [003] d..2 82320.451258: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152891     kworker/3:1-25210 (25210) [003] d..2 82320.451262: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152892     kworker/3:1-25210 (25210) [003] d..3 82320.451269: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152893     kworker/3:1-25210 (25210) [003] d..2 82320.451277: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152894            adbd-24055 (  960) [003] d..2 82320.451320: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152895          <idle>-0     (-----) [003] d..1 82320.451327: cpu_idle: state=0 cpu_id=3
152896          <idle>-0     (-----) [003] d.h3 82320.451428: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152897          <idle>-0     (-----) [003] dnh4 82320.451434: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152898          <idle>-0     (-----) [003] .n.1 82320.451438: cpu_idle: state=4294967295 cpu_id=3
152899          <idle>-0     (-----) [003] d..2 82320.451444: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152900   kworker/u17:0-98    (   98) [003] d..2 82320.451450: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152901   kworker/u17:0-98    (   98) [003] d..3 82320.451455: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152902   kworker/u17:0-98    (   98) [003] d..2 82320.451471: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152903     kworker/3:1-25210 (25210) [003] d..2 82320.451475: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152904     kworker/3:1-25210 (25210) [003] d..3 82320.451483: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152905     kworker/3:1-25210 (25210) [003] d..2 82320.451490: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152906            adbd-24055 (  960) [003] d..2 82320.451508: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152907          <idle>-0     (-----) [003] d..1 82320.451514: cpu_idle: state=0 cpu_id=3
152908          <idle>-0     (-----) [003] d.h3 82320.451611: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152909          <idle>-0     (-----) [003] dnh4 82320.451616: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152910          <idle>-0     (-----) [003] .n.1 82320.451621: cpu_idle: state=4294967295 cpu_id=3
152911          <idle>-0     (-----) [003] d..2 82320.451626: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152912   kworker/u17:0-98    (   98) [003] d..2 82320.451632: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152913   kworker/u17:0-98    (   98) [003] d..3 82320.451638: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152914   kworker/u17:0-98    (   98) [003] d..2 82320.451653: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152915     kworker/3:1-25210 (25210) [003] d..2 82320.451658: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
152916     kworker/3:1-25210 (25210) [003] d..3 82320.451666: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
152917     kworker/3:1-25210 (25210) [003] d..2 82320.451673: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
152918            adbd-24054 (  960) [003] d..2 82320.451683: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152919            adbd-24054 (  960) [003] d..3 82320.451688: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152920            adbd-24054 (  960) [003] d..2 82320.451728: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
152921          <idle>-0     (-----) [000] d.h2 82320.451785: sched_waking: comm=TaskSchedulerFo pid=25398 prio=120 target_cpu=000
152922          <idle>-0     (-----) [000] dnh3 82320.451813: sched_wakeup: comm=TaskSchedulerFo pid=25398 prio=120 target_cpu=000
152923          <idle>-0     (-----) [000] dnh2 82320.451815: sched_waking: comm=TaskSchedulerBa pid=25396 prio=120 target_cpu=000
152924          <idle>-0     (-----) [000] dnh3 82320.451823: sched_wakeup: comm=TaskSchedulerBa pid=25396 prio=120 target_cpu=000
152925            adbd-960   (  960) [003] d..2 82320.451832: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152926          <idle>-0     (-----) [000] .n.1 82320.451834: cpu_idle: state=4294967295 cpu_id=0
152927          <idle>-0     (-----) [003] d..1 82320.451837: cpu_idle: state=0 cpu_id=3
152928          <idle>-0     (-----) [000] d..2 82320.451840: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=TaskSchedulerFo next_pid=25398 next_prio=120
152929 TaskSchedulerFo-25398 (25304) [000] d..2 82320.451896: sched_switch: prev_comm=TaskSchedulerFo prev_pid=25398 prev_prio=120 prev_state=S ==> next_comm=TaskSchedulerBa next_pid=25396 next_prio=120
152930 TaskSchedulerBa-25396 (25304) [000] d..2 82320.451925: sched_switch: prev_comm=TaskSchedulerBa prev_pid=25396 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152931          <idle>-0     (-----) [000] d..1 82320.451932: cpu_idle: state=0 cpu_id=0
152932          <idle>-0     (-----) [000] d.h5 82320.454205: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
152933          <idle>-0     (-----) [000] dnh6 82320.454216: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
152934          <idle>-0     (-----) [000] dnh5 82320.454218: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
152935          <idle>-0     (-----) [000] dnh6 82320.454226: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
152936          <idle>-0     (-----) [001] .n.1 82320.454232: cpu_idle: state=4294967295 cpu_id=1
152937          <idle>-0     (-----) [000] .n.1 82320.454235: cpu_idle: state=4294967295 cpu_id=0
152938          <idle>-0     (-----) [001] d..2 82320.454237: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
152939          <idle>-0     (-----) [000] d..2 82320.454241: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
152940  crtc_event:111-322   (  322) [000] d..2 82320.454260: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
152941          <idle>-0     (-----) [000] d..1 82320.454266: cpu_idle: state=0 cpu_id=0
152942 crtc_commit:111-321   (  321) [001] d..2 82320.454353: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
152943          <idle>-0     (-----) [001] d..1 82320.454356: cpu_idle: state=0 cpu_id=1
152944              ps-27819 (27819) [005] d..2 82320.454524: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152945              ps-27819 (27819) [005] dn.3 82320.454529: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
152946              ps-27819 (27819) [005] d..2 82320.454532: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
152947 shell svc 27816-27817 (  960) [005] d..2 82320.454544: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
152948 shell svc 27816-27817 (  960) [005] d..2 82320.454563: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
152949          <idle>-0     (-----) [003] dnh2 82320.454566: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
152950          <idle>-0     (-----) [003] .n.1 82320.454570: cpu_idle: state=4294967295 cpu_id=3
152951          <idle>-0     (-----) [003] d..2 82320.454574: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
152952            adbd-960   (  960) [003] d..1 82320.454610: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152953            adbd-960   (  960) [003] d..2 82320.454621: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152954            adbd-960   (  960) [003] d..2 82320.454651: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152955            adbd-24055 (  960) [003] d..2 82320.454700: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152956          <idle>-0     (-----) [003] d.h4 82320.454717: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152957          <idle>-0     (-----) [003] dnh5 82320.454725: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152958          <idle>-0     (-----) [003] d..2 82320.454733: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152959   kworker/u17:0-98    (   98) [003] d..2 82320.454740: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152960   kworker/u17:0-98    (   98) [003] d..3 82320.454745: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152961   kworker/u17:0-98    (   98) [003] d..2 82320.454760: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152962     kworker/3:1-25210 (25210) [003] d..2 82320.454765: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152963     kworker/3:1-25210 (25210) [003] d..3 82320.454772: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152964     kworker/3:1-25210 (25210) [003] d..2 82320.454780: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152965            adbd-24055 (  960) [003] d..2 82320.454824: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152966          <idle>-0     (-----) [003] d..1 82320.454829: cpu_idle: state=0 cpu_id=3
152967          <idle>-0     (-----) [003] d.h3 82320.454928: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152968          <idle>-0     (-----) [003] dnh4 82320.454933: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152969          <idle>-0     (-----) [003] .n.1 82320.454938: cpu_idle: state=4294967295 cpu_id=3
152970          <idle>-0     (-----) [003] d..2 82320.454942: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152971   kworker/u17:0-98    (   98) [003] d..2 82320.454948: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152972   kworker/u17:0-98    (   98) [003] d..3 82320.454953: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152973   kworker/u17:0-98    (   98) [003] d..2 82320.454968: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152974     kworker/3:1-25210 (25210) [003] d..2 82320.454972: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
152975     kworker/3:1-25210 (25210) [003] d..3 82320.454979: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
152976     kworker/3:1-25210 (25210) [003] d..2 82320.454987: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
152977            adbd-24055 (  960) [003] d..2 82320.455003: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
152978          <idle>-0     (-----) [003] d..1 82320.455008: cpu_idle: state=0 cpu_id=3
152979          <idle>-0     (-----) [003] d.h3 82320.455105: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152980          <idle>-0     (-----) [003] dnh4 82320.455111: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
152981              ps-27819 (27819) [005] d.s2 82320.455119: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
152982          <idle>-0     (-----) [001] d.s3 82320.455121: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
152983          <idle>-0     (-----) [003] dns2 82320.455134: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
152984          <idle>-0     (-----) [001] d.s4 82320.455137: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
152985          <idle>-0     (-----) [000] .n.1 82320.455141: cpu_idle: state=4294967295 cpu_id=0
152986          <idle>-0     (-----) [000] d..2 82320.455147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
152987          <idle>-0     (-----) [001] ...1 82320.455151: cpu_idle: state=4294967295 cpu_id=1
152988          <idle>-0     (-----) [003] dns3 82320.455155: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
152989          <idle>-0     (-----) [001] d..1 82320.455155: cpu_idle: state=0 cpu_id=1
152990  crtc_event:111-322   (  322) [000] d..2 82320.455162: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
152991          <idle>-0     (-----) [003] dnH3 82320.455162: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
152992          <idle>-0     (-----) [003] .n.1 82320.455169: cpu_idle: state=4294967295 cpu_id=3
152993          <idle>-0     (-----) [003] d..2 82320.455174: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
152994   kworker/u17:0-98    (   98) [003] d..2 82320.455181: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152995   kworker/u17:0-98    (   98) [003] d..3 82320.455195: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
152996     rcu_preempt-7     (    7) [000] d..2 82320.455199: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
152997   kworker/u17:0-98    (   98) [003] d..2 82320.455210: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
152998     kworker/3:1-25210 (25210) [003] d..2 82320.455216: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
152999     kworker/3:1-25210 (25210) [003] d..3 82320.455235: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=000
153000     kworker/3:1-25210 (25210) [003] d..2 82320.455249: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153001          <idle>-0     (-----) [003] d..1 82320.455257: cpu_idle: state=0 cpu_id=3
153002  kworker/u16:13-1147  ( 1147) [000] .... 82320.455269: clk_set_rate: l3_cluster0_vote_clk 480000000
153003  kworker/u16:13-1147  ( 1147) [000] d..2 82320.455413: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=24054 next_prio=120
153004            adbd-24054 (  960) [000] d..2 82320.455430: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
153005            adbd-24054 (  960) [000] d..3 82320.455442: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
153006          <idle>-0     (-----) [001] d.s3 82320.455452: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
153007          <idle>-0     (-----) [001] d.s4 82320.455465: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
153008          <idle>-0     (-----) [001] dns4 82320.455468: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
153009          <idle>-0     (-----) [001] .n.1 82320.455472: cpu_idle: state=4294967295 cpu_id=1
153010          <idle>-0     (-----) [001] d..2 82320.455478: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
153011            adbd-24054 (  960) [000] d..2 82320.455488: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
153012  kworker/u16:13-1147  ( 1147) [001] d..2 82320.455530: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153013          <idle>-0     (-----) [001] d..1 82320.455535: cpu_idle: state=0 cpu_id=1
153014            adbd-960   (  960) [000] d..2 82320.455570: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153015          <idle>-0     (-----) [000] d..1 82320.455579: cpu_idle: state=0 cpu_id=0
153016          <idle>-0     (-----) [003] ...1 82320.456367: cpu_idle: state=4294967295 cpu_id=3
153017          <idle>-0     (-----) [003] d..1 82320.456370: cpu_idle: state=0 cpu_id=3
153018          <idle>-0     (-----) [000] d.h5 82320.456558: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
153019          <idle>-0     (-----) [000] d.h6 82320.456569: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
153020          <idle>-0     (-----) [001] .n.1 82320.456574: cpu_idle: state=4294967295 cpu_id=1
153021          <idle>-0     (-----) [000] ...1 82320.456578: cpu_idle: state=4294967295 cpu_id=0
153022          <idle>-0     (-----) [001] d..2 82320.456579: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
153023          <idle>-0     (-----) [000] d..1 82320.456581: cpu_idle: state=0 cpu_id=0
153024 crtc_commit:111-321   (  321) [001] d..2 82320.456637: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153025          <idle>-0     (-----) [001] d..1 82320.456643: cpu_idle: state=0 cpu_id=1
153026          <idle>-0     (-----) [000] d.h5 82320.456839: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
153027          <idle>-0     (-----) [000] dnh6 82320.456845: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
153028          <idle>-0     (-----) [000] .n.1 82320.456854: cpu_idle: state=4294967295 cpu_id=0
153029          <idle>-0     (-----) [000] d..2 82320.456859: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
153030  crtc_event:111-322   (  322) [000] d..2 82320.456874: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153031          <idle>-0     (-----) [000] d..1 82320.456879: cpu_idle: state=0 cpu_id=0
153032              ps-27819 (27819) [005] d..2 82320.457627: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153033              ps-27819 (27819) [005] dn.3 82320.457632: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153034              ps-27819 (27819) [005] d..2 82320.457635: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
153035 shell svc 27816-27817 (  960) [005] d..2 82320.457648: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
153036 shell svc 27816-27817 (  960) [005] d..2 82320.457666: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
153037          <idle>-0     (-----) [000] dnh2 82320.457668: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
153038          <idle>-0     (-----) [000] .n.1 82320.457672: cpu_idle: state=4294967295 cpu_id=0
153039          <idle>-0     (-----) [000] d..2 82320.457678: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
153040            adbd-960   (  960) [000] d..1 82320.457716: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
153041            adbd-960   (  960) [000] d..2 82320.457738: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
153042            adbd-960   (  960) [000] d..2 82320.457768: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
153043            adbd-24055 (  960) [000] d..2 82320.457818: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153044          <idle>-0     (-----) [000] d..1 82320.457825: cpu_idle: state=0 cpu_id=0
153045          <idle>-0     (-----) [003] d.h3 82320.457831: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153046          <idle>-0     (-----) [003] dnh4 82320.457839: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153047          <idle>-0     (-----) [003] .n.1 82320.457843: cpu_idle: state=4294967295 cpu_id=3
153048          <idle>-0     (-----) [003] d..2 82320.457849: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153049   kworker/u17:0-98    (   98) [003] d..2 82320.457855: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153050   kworker/u17:0-98    (   98) [003] d..3 82320.457860: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153051   kworker/u17:0-98    (   98) [003] d..2 82320.457875: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153052     kworker/3:1-25210 (25210) [003] d..2 82320.457880: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
153053     kworker/3:1-25210 (25210) [003] d..3 82320.457889: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
153054          <idle>-0     (-----) [000] .n.1 82320.457894: cpu_idle: state=4294967295 cpu_id=0
153055          <idle>-0     (-----) [000] d..2 82320.457900: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
153056     kworker/3:1-25210 (25210) [003] d..2 82320.457901: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153057          <idle>-0     (-----) [003] d..1 82320.457907: cpu_idle: state=0 cpu_id=3
153058            adbd-24055 (  960) [000] d..2 82320.457946: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153059          <idle>-0     (-----) [000] d..1 82320.457952: cpu_idle: state=0 cpu_id=0
153060          <idle>-0     (-----) [003] d.h3 82320.458052: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153061          <idle>-0     (-----) [003] dnh4 82320.458058: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153062          <idle>-0     (-----) [003] .n.1 82320.458061: cpu_idle: state=4294967295 cpu_id=3
153063          <idle>-0     (-----) [003] d..2 82320.458068: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153064   kworker/u17:0-98    (   98) [003] d..2 82320.458074: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153065   kworker/u17:0-98    (   98) [003] d..3 82320.458079: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153066   kworker/u17:0-98    (   98) [003] d..2 82320.458094: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153067     kworker/3:1-25210 (25210) [003] d..2 82320.458099: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
153068     kworker/3:1-25210 (25210) [003] d..3 82320.458107: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
153069          <idle>-0     (-----) [000] .n.1 82320.458111: cpu_idle: state=4294967295 cpu_id=0
153070          <idle>-0     (-----) [000] d..2 82320.458118: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
153071     kworker/3:1-25210 (25210) [003] d..2 82320.458119: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153072          <idle>-0     (-----) [003] d..1 82320.458125: cpu_idle: state=0 cpu_id=3
153073            adbd-24055 (  960) [000] d..2 82320.458137: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153074          <idle>-0     (-----) [000] d..1 82320.458142: cpu_idle: state=0 cpu_id=0
153075          <idle>-0     (-----) [002] d.h2 82320.458214: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
153076          <idle>-0     (-----) [002] dnh3 82320.458224: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
153077          <idle>-0     (-----) [002] .n.1 82320.458229: cpu_idle: state=4294967295 cpu_id=2
153078          <idle>-0     (-----) [002] d..2 82320.458235: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
153079          <idle>-0     (-----) [003] d.h3 82320.458236: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153080          <idle>-0     (-----) [003] dnh4 82320.458242: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153081          <idle>-0     (-----) [003] .n.1 82320.458246: cpu_idle: state=4294967295 cpu_id=3
153082        DispSync-8879  ( 8858) [002] d..1 82320.458251: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
153083          <idle>-0     (-----) [003] d..2 82320.458252: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153084   kworker/u17:0-98    (   98) [003] d..2 82320.458258: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153085        DispSync-8879  ( 8858) [002] d..2 82320.458261: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
153086   kworker/u17:0-98    (   98) [003] d..3 82320.458263: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153087          <idle>-0     (-----) [001] .n.1 82320.458265: cpu_idle: state=4294967295 cpu_id=1
153088          <idle>-0     (-----) [001] d..2 82320.458271: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
153089   kworker/u17:0-98    (   98) [003] d..2 82320.458277: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153090     kworker/3:1-25210 (25210) [003] d..2 82320.458283: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=000
153091        DispSync-8879  ( 8858) [002] d..2 82320.458285: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153092          <idle>-0     (-----) [002] d..1 82320.458290: cpu_idle: state=0 cpu_id=2
153093     kworker/3:1-25210 (25210) [003] d..3 82320.458302: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=002
153094          <idle>-0     (-----) [002] .n.1 82320.458307: cpu_idle: state=4294967295 cpu_id=2
153095  appEventThread-8881  ( 8858) [001] d..3 82320.458312: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
153096          <idle>-0     (-----) [002] d..2 82320.458314: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24054 next_prio=120
153097     kworker/3:1-25210 (25210) [003] d..2 82320.458315: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153098          <idle>-0     (-----) [003] d..1 82320.458322: cpu_idle: state=0 cpu_id=3
153099          <idle>-0     (-----) [004] dnh2 82320.458328: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
153100            adbd-24054 (  960) [002] d..2 82320.458329: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
153101          <idle>-0     (-----) [004] .n.1 82320.458331: cpu_idle: state=4294967295 cpu_id=4
153102          <idle>-0     (-----) [004] d..2 82320.458334: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
153103  appEventThread-8881  ( 8858) [001] d..2 82320.458341: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153104            adbd-24054 (  960) [002] d..3 82320.458342: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
153105          <idle>-0     (-----) [001] d..1 82320.458348: cpu_idle: state=0 cpu_id=1
153106            adbd-24054 (  960) [002] d..2 82320.458388: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
153107            adbd-960   (  960) [002] d..2 82320.458481: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153108          <idle>-0     (-----) [002] d..1 82320.458488: cpu_idle: state=0 cpu_id=2
153109 s.nexuslauncher-10023 (10023) [004] .... 82320.458519: binder_transaction: transaction=1573302 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
153110 s.nexuslauncher-10023 (10023) [004] .... 82320.458524: binder_transaction_alloc_buf: transaction=1573302 data_size=80 offsets_size=0
153111 s.nexuslauncher-10023 (10023) [004] d..4 82320.458526: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=006
153112 s.nexuslauncher-10023 (10023) [004] d.h5 82320.458565: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
153113          <idle>-0     (-----) [000] dnh2 82320.458566: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
153114          <idle>-0     (-----) [000] .n.1 82320.458570: cpu_idle: state=4294967295 cpu_id=0
153115          <idle>-0     (-----) [000] d..2 82320.458576: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
153116          <idle>-0     (-----) [002] dnh2 82320.458580: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
153117   Binder:8858_1-8871  ( 8858) [000] .... 82320.458582: binder_transaction_received: transaction=1573302
153118          <idle>-0     (-----) [002] .n.1 82320.458583: cpu_idle: state=4294967295 cpu_id=2
153119 s.nexuslauncher-10023 (10023) [004] d..3 82320.458588: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
153120          <idle>-0     (-----) [002] d..2 82320.458589: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
153121 s.nexuslauncher-10023 (10023) [004] d..4 82320.458595: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
153122          <idle>-0     (-----) [006] .n.1 82320.458600: cpu_idle: state=4294967295 cpu_id=6
153123   Binder:8858_1-8871  ( 8858) [000] d..1 82320.458604: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
153124          <idle>-0     (-----) [006] d..2 82320.458605: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
153125         sugov:0-576   (  576) [002] .... 82320.458609: clk_set_rate: pwrcl_clk 1056000000
153126   Binder:8858_1-8871  ( 8858) [000] d..2 82320.458614: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
153127    RenderThread-16607 (10023) [006] d..2 82320.458617: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
153128          <idle>-0     (-----) [001] .n.1 82320.458619: cpu_idle: state=4294967295 cpu_id=1
153129          <idle>-0     (-----) [006] d..1 82320.458619: cpu_idle: state=0 cpu_id=6
153130         sugov:0-576   (  576) [002] .... 82320.458624: clk_set_rate: cpu3_pwrcl_clk 1766400000
153131          <idle>-0     (-----) [001] d..2 82320.458625: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
153132         sugov:0-576   (  576) [002] .... 82320.458631: clk_set_rate: cpu2_pwrcl_clk 1766400000
153133         sugov:0-576   (  576) [002] .... 82320.458637: clk_set_rate: cpu1_pwrcl_clk 1766400000
153134   Binder:8858_1-8871  ( 8858) [000] d..2 82320.458641: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153135         sugov:0-576   (  576) [002] .... 82320.458643: clk_set_rate: cpu0_pwrcl_clk 1056000000
153136          <idle>-0     (-----) [000] d..1 82320.458646: cpu_idle: state=0 cpu_id=0
153137  appEventThread-8881  ( 8858) [001] d..2 82320.458649: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153138          <idle>-0     (-----) [001] d..1 82320.458661: cpu_idle: state=0 cpu_id=1
153139 s.nexuslauncher-10023 (10023) [004] d..3 82320.458725: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
153140 s.nexuslauncher-10023 (10023) [004] d..4 82320.458732: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
153141          <idle>-0     (-----) [006] .n.1 82320.458736: cpu_idle: state=4294967295 cpu_id=6
153142          <idle>-0     (-----) [006] d..2 82320.458739: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
153143 s.nexuslauncher-10023 (10023) [004] d..2 82320.458741: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
153144          <idle>-0     (-----) [004] d..1 82320.458745: cpu_idle: state=0 cpu_id=4
153145         sugov:0-576   (  576) [002] .... 82320.458754: cpu_frequency: state=1056000 cpu_id=0
153146         sugov:0-576   (  576) [002] .... 82320.458766: cpu_frequency: state=1056000 cpu_id=1
153147         sugov:0-576   (  576) [002] .... 82320.458769: cpu_frequency: state=1056000 cpu_id=2
153148         sugov:0-576   (  576) [002] .... 82320.458773: cpu_frequency: state=1056000 cpu_id=3
153149         sugov:0-576   (  576) [002] d..2 82320.458795: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153150          <idle>-0     (-----) [002] d..1 82320.458804: cpu_idle: state=0 cpu_id=2
153151    RenderThread-16607 (10023) [006] d..1 82320.458856: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
153152    RenderThread-16607 (10023) [006] d..2 82320.458863: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
153153          <idle>-0     (-----) [004] .n.1 82320.458868: cpu_idle: state=4294967295 cpu_id=4
153154          <idle>-0     (-----) [004] d..2 82320.458871: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
153155    RenderThread-16607 (10023) [006] .... 82320.458890: binder_transaction: transaction=1573303 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
153156    RenderThread-16607 (10023) [006] .... 82320.458891: binder_transaction_alloc_buf: transaction=1573303 data_size=104 offsets_size=0
153157    RenderThread-16607 (10023) [006] ...2 82320.458894: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
153158    RenderThread-16607 (10023) [006] d..4 82320.458895: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
153159 s.nexuslauncher-10023 (10023) [004] d..2 82320.458900: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
153160          <idle>-0     (-----) [004] d..1 82320.458903: cpu_idle: state=0 cpu_id=4
153161    RenderThread-16607 (10023) [006] d..5 82320.458905: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
153162    RenderThread-16607 (10023) [006] d..2 82320.458926: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
153163   Binder:8858_1-8871  ( 8858) [006] .... 82320.458931: binder_transaction_received: transaction=1573303
153164   Binder:8858_1-8871  ( 8858) [006] .... 82320.458964: binder_transaction: transaction=1573304 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
153165   Binder:8858_1-8871  ( 8858) [006] .... 82320.458966: binder_transaction_alloc_buf: transaction=1573304 data_size=52 offsets_size=8
153166   Binder:8858_1-8871  ( 8858) [006] d..2 82320.458970: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
153167   Binder:8858_1-8871  ( 8858) [006] d..3 82320.458974: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
153168   Binder:8858_1-8871  ( 8858) [006] .... 82320.458975: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
153169   Binder:8858_1-8871  ( 8858) [006] d..2 82320.458987: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
153170    RenderThread-16607 (10023) [006] .... 82320.458990: binder_transaction_received: transaction=1573304
153171          <idle>-0     (-----) [003] ...1 82320.459435: cpu_idle: state=4294967295 cpu_id=3
153172          <idle>-0     (-----) [003] d..1 82320.459439: cpu_idle: state=0 cpu_id=3
153173    RenderThread-16607 (10023) [006] d..2 82320.459927: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
153174          <idle>-0     (-----) [006] d..1 82320.459932: cpu_idle: state=0 cpu_id=6
153175          <idle>-0     (-----) [006] d.h2 82320.460025: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
153176          <idle>-0     (-----) [006] d.h3 82320.460029: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
153177          <idle>-0     (-----) [006] dnh3 82320.460030: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
153178          <idle>-0     (-----) [006] .n.1 82320.460033: cpu_idle: state=4294967295 cpu_id=6
153179          <idle>-0     (-----) [006] d..2 82320.460036: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
153180    RenderThread-16607 (10023) [006] .... 82320.460119: binder_transaction: transaction=1573305 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
153181    RenderThread-16607 (10023) [006] .... 82320.460121: binder_transaction_alloc_buf: transaction=1573305 data_size=192 offsets_size=8
153182    RenderThread-16607 (10023) [006] ...2 82320.460166: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
153183    RenderThread-16607 (10023) [006] d..4 82320.460167: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
153184    RenderThread-16607 (10023) [006] d..5 82320.460172: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
153185    RenderThread-16607 (10023) [006] d..2 82320.460176: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
153186   Binder:8858_1-8871  ( 8858) [006] .... 82320.460180: binder_transaction_received: transaction=1573305
153187              ps-27819 (27819) [005] d..2 82320.460202: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153188              ps-27819 (27819) [005] dn.3 82320.460208: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153189              ps-27819 (27819) [005] d..2 82320.460211: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
153190 shell svc 27816-27817 (  960) [005] d..2 82320.460226: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
153191 shell svc 27816-27817 (  960) [005] d..2 82320.460238: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
153192          <idle>-0     (-----) [002] dnh2 82320.460243: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
153193   Binder:8858_1-8871  ( 8858) [006] .... 82320.460247: binder_transaction: transaction=1573306 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
153194   Binder:8858_1-8871  ( 8858) [006] .... 82320.460248: binder_transaction_alloc_buf: transaction=1573306 data_size=68 offsets_size=0
153195          <idle>-0     (-----) [002] .n.1 82320.460248: cpu_idle: state=4294967295 cpu_id=2
153196   Binder:8858_1-8871  ( 8858) [006] d..2 82320.460249: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
153197          <idle>-0     (-----) [001] ...1 82320.460251: cpu_idle: state=4294967295 cpu_id=1
153198   Binder:8858_1-8871  ( 8858) [006] d..3 82320.460253: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
153199   Binder:8858_1-8871  ( 8858) [006] .... 82320.460254: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
153200          <idle>-0     (-----) [001] d..1 82320.460254: cpu_idle: state=0 cpu_id=1
153201          <idle>-0     (-----) [002] d..2 82320.460256: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
153202   Binder:8858_1-8871  ( 8858) [006] d..2 82320.460264: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
153203    RenderThread-16607 (10023) [006] .... 82320.460267: binder_transaction_received: transaction=1573306
153204    RenderThread-16607 (10023) [006] d..2 82320.460291: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
153205          <idle>-0     (-----) [006] d..1 82320.460295: cpu_idle: state=0 cpu_id=6
153206            adbd-960   (  960) [002] d..1 82320.460323: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
153207            adbd-960   (  960) [002] d..2 82320.460355: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
153208            adbd-960   (  960) [002] d..2 82320.460403: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
153209            adbd-24055 (  960) [002] d..2 82320.460479: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153210          <idle>-0     (-----) [002] d..1 82320.460489: cpu_idle: state=0 cpu_id=2
153211          <idle>-0     (-----) [006] ...1 82320.460496: cpu_idle: state=4294967295 cpu_id=6
153212          <idle>-0     (-----) [006] d..1 82320.460497: cpu_idle: state=0 cpu_id=6
153213          <idle>-0     (-----) [003] d.h3 82320.460497: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153214          <idle>-0     (-----) [003] dnh4 82320.460509: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153215          <idle>-0     (-----) [003] .n.1 82320.460514: cpu_idle: state=4294967295 cpu_id=3
153216          <idle>-0     (-----) [003] d..2 82320.460524: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153217   kworker/u17:0-98    (   98) [003] d..2 82320.460535: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153218   kworker/u17:0-98    (   98) [003] d..3 82320.460543: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153219   kworker/u17:0-98    (   98) [003] d..2 82320.460563: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153220     kworker/3:1-25210 (25210) [003] d..2 82320.460571: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
153221     kworker/3:1-25210 (25210) [003] d..3 82320.460582: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
153222          <idle>-0     (-----) [002] .n.1 82320.460587: cpu_idle: state=4294967295 cpu_id=2
153223          <idle>-0     (-----) [002] d..2 82320.460596: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
153224     kworker/3:1-25210 (25210) [003] d..2 82320.460601: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153225          <idle>-0     (-----) [003] d..1 82320.460611: cpu_idle: state=0 cpu_id=3
153226            adbd-24055 (  960) [002] d..2 82320.460659: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153227          <idle>-0     (-----) [002] d..1 82320.460667: cpu_idle: state=0 cpu_id=2
153228          <idle>-0     (-----) [003] d.h3 82320.460764: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153229          <idle>-0     (-----) [003] dnh4 82320.460771: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153230          <idle>-0     (-----) [003] .n.1 82320.460777: cpu_idle: state=4294967295 cpu_id=3
153231          <idle>-0     (-----) [003] d..2 82320.460786: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153232   kworker/u17:0-98    (   98) [003] d..2 82320.460795: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153233   kworker/u17:0-98    (   98) [003] d..3 82320.460802: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153234   kworker/u17:0-98    (   98) [003] d..2 82320.460821: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153235     kworker/3:1-25210 (25210) [003] d..2 82320.460828: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
153236     kworker/3:1-25210 (25210) [003] d..3 82320.460839: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
153237          <idle>-0     (-----) [002] .n.1 82320.460844: cpu_idle: state=4294967295 cpu_id=2
153238          <idle>-0     (-----) [002] d..2 82320.460853: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
153239     kworker/3:1-25210 (25210) [003] d..2 82320.460857: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153240          <idle>-0     (-----) [003] d..1 82320.460866: cpu_idle: state=0 cpu_id=3
153241            adbd-24055 (  960) [002] d..2 82320.460881: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153242          <idle>-0     (-----) [002] d..1 82320.460889: cpu_idle: state=0 cpu_id=2
153243          <idle>-0     (-----) [003] d.h3 82320.461013: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153244          <idle>-0     (-----) [003] dnh4 82320.461020: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153245          <idle>-0     (-----) [003] .n.1 82320.461026: cpu_idle: state=4294967295 cpu_id=3
153246          <idle>-0     (-----) [003] d..2 82320.461035: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153247   kworker/u17:0-98    (   98) [003] d..2 82320.461043: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153248   kworker/u17:0-98    (   98) [003] d..3 82320.461050: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153249   kworker/u17:0-98    (   98) [003] d..2 82320.461070: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153250     kworker/3:1-25210 (25210) [003] d..2 82320.461079: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=002
153251     kworker/3:1-25210 (25210) [003] d..3 82320.461106: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
153252     kworker/3:1-25210 (25210) [003] d..2 82320.461118: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
153253            adbd-24054 (  960) [003] d..2 82320.461138: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
153254            adbd-24054 (  960) [003] d..3 82320.461151: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
153255            adbd-24054 (  960) [003] d..2 82320.461210: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
153256            adbd-960   (  960) [003] d..2 82320.461309: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153257          <idle>-0     (-----) [003] d..1 82320.461321: cpu_idle: state=0 cpu_id=3
153258          <idle>-0     (-----) [000] d.h3 82320.461473: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
153259          <idle>-0     (-----) [000] d.h4 82320.461491: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
153260          <idle>-0     (-----) [003] .n.1 82320.461498: cpu_idle: state=4294967295 cpu_id=3
153261          <idle>-0     (-----) [000] ...1 82320.461504: cpu_idle: state=4294967295 cpu_id=0
153262          <idle>-0     (-----) [003] d..2 82320.461506: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
153263          <idle>-0     (-----) [000] d..1 82320.461508: cpu_idle: state=0 cpu_id=0
153264 kgsl_worker_thr-258   (  258) [003] d..2 82320.461557: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
153265 kgsl_worker_thr-258   (  258) [003] d..3 82320.461588: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
153266 kgsl_worker_thr-258   (  258) [003] d..2 82320.461609: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
153267  kworker/u16:13-1147  ( 1147) [003] d..2 82320.461781: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153268          <idle>-0     (-----) [000] d.s2 82320.461793: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
153269          <idle>-0     (-----) [000] dns3 82320.461806: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
153270          <idle>-0     (-----) [003] d..1 82320.461821: cpu_idle: state=0 cpu_id=3
153271          <idle>-0     (-----) [000] .n.1 82320.461822: cpu_idle: state=4294967295 cpu_id=0
153272          <idle>-0     (-----) [000] d..2 82320.461829: 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
153273     rcu_preempt-7     (    7) [000] d..2 82320.461837: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
153274     rcu_preempt-7     (    7) [000] d..3 82320.461853: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
153275     rcu_preempt-7     (    7) [000] d..2 82320.461867: 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
153276         rcuop/0-10    (   10) [000] d..2 82320.461872: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
153277         rcuop/0-10    (   10) [000] d..3 82320.461887: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
153278         rcuop/0-10    (   10) [000] d..2 82320.461896: 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
153279         rcuop/1-21    (   21) [000] d..2 82320.461995: 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
153280          <idle>-0     (-----) [000] d..1 82320.462005: cpu_idle: state=0 cpu_id=0
153281          <idle>-0     (-----) [002] d.h2 82320.462226: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
153282          <idle>-0     (-----) [002] dnh3 82320.462239: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
153283          <idle>-0     (-----) [002] .n.1 82320.462245: cpu_idle: state=4294967295 cpu_id=2
153284          <idle>-0     (-----) [002] d..2 82320.462254: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
153285        DispSync-8879  ( 8858) [002] d..1 82320.462274: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
153286        DispSync-8879  ( 8858) [002] d..2 82320.462289: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
153287          <idle>-0     (-----) [000] .n.1 82320.462294: cpu_idle: state=4294967295 cpu_id=0
153288          <idle>-0     (-----) [000] d..2 82320.462303: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
153289        DispSync-8879  ( 8858) [002] d..2 82320.462315: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153290          <idle>-0     (-----) [002] d..1 82320.462324: cpu_idle: state=0 cpu_id=2
153291   sfEventThread-8882  ( 8858) [000] d..3 82320.462339: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
153292   sfEventThread-8882  ( 8858) [000] d..4 82320.462355: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
153293          <idle>-0     (-----) [002] .n.1 82320.462360: cpu_idle: state=4294967295 cpu_id=2
153294          <idle>-0     (-----) [002] d..2 82320.462368: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
153295   sfEventThread-8882  ( 8858) [000] d..2 82320.462381: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153296          <idle>-0     (-----) [000] d..1 82320.462391: cpu_idle: state=0 cpu_id=0
153297  surfaceflinger-8858  ( 8858) [002] d..1 82320.462716: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
153298  surfaceflinger-8858  ( 8858) [002] d..2 82320.462730: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
153299          <idle>-0     (-----) [000] .n.1 82320.462735: cpu_idle: state=4294967295 cpu_id=0
153300          <idle>-0     (-----) [000] d..2 82320.462743: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
153301   sfEventThread-8882  ( 8858) [000] d..2 82320.462770: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153302          <idle>-0     (-----) [000] d..1 82320.462778: cpu_idle: state=0 cpu_id=0
153303  surfaceflinger-8858  ( 8858) [002] ...1 82320.462905: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
153304  surfaceflinger-8858  ( 8858) [002] ...1 82320.462912: tracing_mark_write: E|8858
153305          <idle>-0     (-----) [003] ...1 82320.462964: cpu_idle: state=4294967295 cpu_id=3
153306          <idle>-0     (-----) [003] d..1 82320.462968: cpu_idle: state=0 cpu_id=3
153307  surfaceflinger-8858  ( 8858) [002] .... 82320.462994: binder_transaction: transaction=1573307 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
153308  surfaceflinger-8858  ( 8858) [002] .... 82320.462998: binder_transaction_alloc_buf: transaction=1573307 data_size=540 offsets_size=96
153309  surfaceflinger-8858  ( 8858) [002] ...2 82320.463051: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
153310  surfaceflinger-8858  ( 8858) [002] d..4 82320.463060: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
153311  surfaceflinger-8858  ( 8858) [002] d..5 82320.463077: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
153312          <idle>-0     (-----) [003] .n.1 82320.463081: cpu_idle: state=4294967295 cpu_id=3
153313          <idle>-0     (-----) [003] d..2 82320.463089: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
153314 [email protected]   (  619) [003] .... 82320.463099: binder_transaction_received: transaction=1573307
153315  surfaceflinger-8858  ( 8858) [002] d..2 82320.463100: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153316          <idle>-0     (-----) [002] d..1 82320.463112: cpu_idle: state=0 cpu_id=2
153317 [email protected]   (  619) [003] ...1 82320.463153: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
153318 [email protected]   (  619) [003] ...1 82320.463261: tracing_mark_write: B|619|HWCSession::PresentDisplay::
153319 [email protected]   (  619) [003] ...1 82320.463424: tracing_mark_write: B|619|HWDeviceDRM::Commit::
153320 [email protected]   (  619) [003] ...1 82320.463436: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
153321              ps-27819 (27819) [005] d..2 82320.463904: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153322              ps-27819 (27819) [005] dn.3 82320.463909: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153323              ps-27819 (27819) [005] d..2 82320.463912: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
153324 shell svc 27816-27817 (  960) [005] d..2 82320.463926: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
153325 shell svc 27816-27817 (  960) [005] d..2 82320.463939: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
153326 [email protected]   (  619) [003] d.h1 82320.463945: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
153327 [email protected]   (  619) [003] d..2 82320.463995: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
153328 [email protected]   (  619) [003] d..3 82320.464011: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
153329          <idle>-0     (-----) [001] .n.1 82320.464016: cpu_idle: state=4294967295 cpu_id=1
153330          <idle>-0     (-----) [001] d..2 82320.464024: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
153331 [email protected]   (  619) [003] ...1 82320.464095: tracing_mark_write: E|619
153332 [email protected]   (  619) [003] ...1 82320.464101: tracing_mark_write: E|619
153333 [email protected]   (  619) [003] ...1 82320.464155: tracing_mark_write: E|619
153334 [email protected]   (  619) [003] ...1 82320.464201: tracing_mark_write: E|619
153335 [email protected]   (  619) [003] .... 82320.464228: binder_transaction: transaction=1573308 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
153336 [email protected]   (  619) [003] .... 82320.464232: binder_transaction_alloc_buf: transaction=1573308 data_size=576 offsets_size=112
153337 [email protected]   (  619) [003] d..2 82320.464248: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
153338 [email protected]   (  619) [003] d..3 82320.464262: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
153339 [email protected]   (  619) [003] .... 82320.464265: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
153340          <idle>-0     (-----) [002] .n.1 82320.464268: cpu_idle: state=4294967295 cpu_id=2
153341          <idle>-0     (-----) [002] d..2 82320.464275: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
153342  surfaceflinger-8858  ( 8858) [002] .... 82320.464281: binder_transaction_received: transaction=1573308
153343 [email protected]   (  619) [003] d..2 82320.464325: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
153344            adbd-960   (  960) [003] d..1 82320.464394: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
153345            adbd-960   (  960) [003] d..2 82320.464409: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
153346            adbd-960   (  960) [003] d..2 82320.464466: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153347          <idle>-0     (-----) [003] d..1 82320.464479: cpu_idle: state=0 cpu_id=3
153348  surfaceflinger-8858  ( 8858) [002] d..2 82320.464615: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
153349 crtc_commit:111-321   (  321) [001] d..2 82320.464675: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
153350          <idle>-0     (-----) [001] d..1 82320.464685: cpu_idle: state=0 cpu_id=1
153351            adbd-24055 (  960) [002] d..2 82320.464716: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153352          <idle>-0     (-----) [002] d..1 82320.464729: cpu_idle: state=0 cpu_id=2
153353          <idle>-0     (-----) [003] d.h3 82320.464730: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153354          <idle>-0     (-----) [003] dnh4 82320.464743: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153355          <idle>-0     (-----) [003] .n.1 82320.464751: cpu_idle: state=4294967295 cpu_id=3
153356          <idle>-0     (-----) [003] d..2 82320.464760: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153357   kworker/u17:0-98    (   98) [003] d..2 82320.464774: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153358   kworker/u17:0-98    (   98) [003] d..3 82320.464781: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153359   kworker/u17:0-98    (   98) [003] d..2 82320.464802: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153360     kworker/3:1-25210 (25210) [003] d..2 82320.464811: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
153361     kworker/3:1-25210 (25210) [003] d..3 82320.464823: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
153362          <idle>-0     (-----) [002] .n.1 82320.464829: cpu_idle: state=4294967295 cpu_id=2
153363          <idle>-0     (-----) [002] d..2 82320.464839: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
153364     kworker/3:1-25210 (25210) [003] d..2 82320.464842: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153365          <idle>-0     (-----) [003] d..1 82320.464853: cpu_idle: state=0 cpu_id=3
153366            adbd-24055 (  960) [002] d..2 82320.464902: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153367          <idle>-0     (-----) [002] d..1 82320.464913: cpu_idle: state=0 cpu_id=2
153368          <idle>-0     (-----) [003] d.h3 82320.465004: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153369          <idle>-0     (-----) [003] dnh4 82320.465012: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153370          <idle>-0     (-----) [003] .n.1 82320.465019: cpu_idle: state=4294967295 cpu_id=3
153371          <idle>-0     (-----) [003] d..2 82320.465028: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153372   kworker/u17:0-98    (   98) [003] d..2 82320.465037: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153373   kworker/u17:0-98    (   98) [003] d..3 82320.465045: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153374   kworker/u17:0-98    (   98) [003] d..2 82320.465065: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153375     kworker/3:1-25210 (25210) [003] d..2 82320.465072: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
153376     kworker/3:1-25210 (25210) [003] d..3 82320.465083: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
153377          <idle>-0     (-----) [002] .n.1 82320.465089: cpu_idle: state=4294967295 cpu_id=2
153378          <idle>-0     (-----) [002] d..2 82320.465098: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
153379     kworker/3:1-25210 (25210) [003] d..2 82320.465102: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153380              ps-27819 (27819) [005] d.s2 82320.465120: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
153381          <idle>-0     (-----) [003] dnh3 82320.465137: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
153382          <idle>-0     (-----) [003] d..2 82320.465146: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
153383            adbd-24055 (  960) [002] d..2 82320.465161: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153384          <idle>-0     (-----) [002] d..1 82320.465193: cpu_idle: state=0 cpu_id=2
153385          <idle>-0     (-----) [002] ...1 82320.465205: cpu_idle: state=4294967295 cpu_id=2
153386          <idle>-0     (-----) [002] d..1 82320.465209: cpu_idle: state=0 cpu_id=2
153387  kworker/u16:13-1147  ( 1147) [003] d.h3 82320.465259: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153388  kworker/u16:13-1147  ( 1147) [003] dnh4 82320.465273: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153389  kworker/u16:13-1147  ( 1147) [003] d..2 82320.465282: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153390   kworker/u17:0-98    (   98) [003] d..2 82320.465292: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153391   kworker/u17:0-98    (   98) [003] d..3 82320.465299: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153392   kworker/u17:0-98    (   98) [003] d..2 82320.465319: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153393     kworker/3:1-25210 (25210) [003] d..2 82320.465329: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
153394     kworker/3:1-25210 (25210) [003] d..3 82320.465340: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
153395     kworker/3:1-25210 (25210) [003] d..2 82320.465353: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
153396            adbd-24054 (  960) [003] d..2 82320.465380: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
153397            adbd-24054 (  960) [003] d..3 82320.465392: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
153398            adbd-24054 (  960) [003] d..2 82320.465453: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
153399  kworker/u16:13-1147  ( 1147) [003] d..2 82320.465594: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=adbd next_pid=960 next_prio=120
153400          <idle>-0     (-----) [001] d.s3 82320.465639: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
153401          <idle>-0     (-----) [001] d.s4 82320.465657: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
153402          <idle>-0     (-----) [001] dns4 82320.465661: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
153403          <idle>-0     (-----) [001] .n.1 82320.465667: cpu_idle: state=4294967295 cpu_id=1
153404          <idle>-0     (-----) [001] d..2 82320.465677: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
153405            adbd-960   (  960) [003] d..2 82320.465693: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153406          <idle>-0     (-----) [003] d..1 82320.465706: cpu_idle: state=0 cpu_id=3
153407          <idle>-0     (-----) [003] ...1 82320.465721: cpu_idle: state=4294967295 cpu_id=3
153408          <idle>-0     (-----) [003] d..1 82320.465724: cpu_idle: state=0 cpu_id=3
153409  kworker/u16:13-1147  ( 1147) [001] .... 82320.465729: clk_set_rate: l3_cluster0_vote_clk 403200000
153410  kworker/u16:13-1147  ( 1147) [001] d..2 82320.465831: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153411          <idle>-0     (-----) [001] d..1 82320.465840: cpu_idle: state=0 cpu_id=1
153412              ps-27819 (27819) [005] d..2 82320.466920: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153413              ps-27819 (27819) [005] dn.3 82320.466925: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153414              ps-27819 (27819) [005] d..2 82320.466928: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
153415 shell svc 27816-27817 (  960) [005] d..2 82320.466941: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
153416 shell svc 27816-27817 (  960) [005] d..2 82320.466953: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
153417          <idle>-0     (-----) [003] dnh2 82320.466958: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
153418          <idle>-0     (-----) [003] .n.1 82320.466962: cpu_idle: state=4294967295 cpu_id=3
153419          <idle>-0     (-----) [003] d..2 82320.466971: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
153420            adbd-960   (  960) [003] d..1 82320.467023: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
153421            adbd-960   (  960) [003] d..2 82320.467037: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
153422          <idle>-0     (-----) [002] .n.1 82320.467041: cpu_idle: state=4294967295 cpu_id=2
153423          <idle>-0     (-----) [002] d..2 82320.467050: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
153424            adbd-960   (  960) [003] d..2 82320.467090: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153425          <idle>-0     (-----) [003] d..1 82320.467102: cpu_idle: state=0 cpu_id=3
153426            adbd-24055 (  960) [002] d..2 82320.467111: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153427          <idle>-0     (-----) [002] d..1 82320.467121: cpu_idle: state=0 cpu_id=2
153428          <idle>-0     (-----) [003] d.h3 82320.467126: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153429          <idle>-0     (-----) [003] dnh4 82320.467135: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153430          <idle>-0     (-----) [003] .n.1 82320.467142: cpu_idle: state=4294967295 cpu_id=3
153431          <idle>-0     (-----) [003] d..2 82320.467151: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153432   kworker/u17:0-98    (   98) [003] d..2 82320.467161: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153433   kworker/u17:0-98    (   98) [003] d..3 82320.467169: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153434   kworker/u17:0-98    (   98) [003] d..2 82320.467189: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153435     kworker/3:1-25210 (25210) [003] d..2 82320.467196: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
153436     kworker/3:1-25210 (25210) [003] d..3 82320.467207: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
153437          <idle>-0     (-----) [002] .n.1 82320.467213: cpu_idle: state=4294967295 cpu_id=2
153438          <idle>-0     (-----) [002] d..2 82320.467222: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
153439     kworker/3:1-25210 (25210) [003] d..2 82320.467227: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153440          <idle>-0     (-----) [003] d..1 82320.467237: cpu_idle: state=0 cpu_id=3
153441            adbd-24055 (  960) [002] d..2 82320.467282: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153442          <idle>-0     (-----) [002] d..1 82320.467292: cpu_idle: state=0 cpu_id=2
153443          <idle>-0     (-----) [003] d.h3 82320.467388: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153444          <idle>-0     (-----) [003] dnh4 82320.467396: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153445          <idle>-0     (-----) [003] .n.1 82320.467402: cpu_idle: state=4294967295 cpu_id=3
153446          <idle>-0     (-----) [003] d..2 82320.467411: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153447   kworker/u17:0-98    (   98) [003] d..2 82320.467420: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153448   kworker/u17:0-98    (   98) [003] d..3 82320.467427: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153449   kworker/u17:0-98    (   98) [003] d..2 82320.467446: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153450     kworker/3:1-25210 (25210) [003] d..2 82320.467453: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
153451     kworker/3:1-25210 (25210) [003] d..3 82320.467464: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
153452          <idle>-0     (-----) [002] .n.1 82320.467469: cpu_idle: state=4294967295 cpu_id=2
153453          <idle>-0     (-----) [002] d..2 82320.467478: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
153454     kworker/3:1-25210 (25210) [003] d..2 82320.467483: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153455          <idle>-0     (-----) [003] d..1 82320.467493: cpu_idle: state=0 cpu_id=3
153456            adbd-24055 (  960) [002] d..2 82320.467502: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153457          <idle>-0     (-----) [002] d..1 82320.467511: cpu_idle: state=0 cpu_id=2
153458          <idle>-0     (-----) [003] d.h3 82320.467592: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153459          <idle>-0     (-----) [003] dnh4 82320.467600: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153460          <idle>-0     (-----) [003] .n.1 82320.467607: cpu_idle: state=4294967295 cpu_id=3
153461          <idle>-0     (-----) [003] d..2 82320.467615: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153462   kworker/u17:0-98    (   98) [003] d..2 82320.467624: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153463   kworker/u17:0-98    (   98) [003] d..3 82320.467631: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153464   kworker/u17:0-98    (   98) [003] d..2 82320.467649: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153465     kworker/3:1-25210 (25210) [003] d..2 82320.467658: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
153466     kworker/3:1-25210 (25210) [003] d..3 82320.467670: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
153467     kworker/3:1-25210 (25210) [003] d..2 82320.467681: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
153468            adbd-24054 (  960) [003] d..2 82320.467697: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
153469            adbd-24054 (  960) [003] d..3 82320.467705: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
153470            adbd-24054 (  960) [003] d..2 82320.467762: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
153471            adbd-960   (  960) [003] d..2 82320.467856: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153472          <idle>-0     (-----) [003] d..1 82320.467868: cpu_idle: state=0 cpu_id=3
153473          <idle>-0     (-----) [000] d.s2 82320.468461: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
153474          <idle>-0     (-----) [000] dns3 82320.468475: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
153475          <idle>-0     (-----) [000] .n.1 82320.468486: cpu_idle: state=4294967295 cpu_id=0
153476          <idle>-0     (-----) [000] d..2 82320.468495: 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
153477     rcu_preempt-7     (    7) [000] d..2 82320.468507: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
153478     rcu_preempt-7     (    7) [000] d..3 82320.468541: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
153479     rcu_preempt-7     (    7) [000] d..2 82320.468544: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
153480     rcu_preempt-7     (    7) [000] d..3 82320.468570: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
153481     rcu_preempt-7     (    7) [000] d..2 82320.468580: 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
153482         rcuop/2-29    (   29) [000] d..2 82320.468628: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
153483          <idle>-0     (-----) [002] ...1 82320.468631: cpu_idle: state=4294967295 cpu_id=2
153484          <idle>-0     (-----) [002] d..1 82320.468635: cpu_idle: state=0 cpu_id=2
153485         rcuop/2-29    (   29) [000] d..3 82320.468646: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=002
153486          <idle>-0     (-----) [002] .n.1 82320.468651: cpu_idle: state=4294967295 cpu_id=2
153487         rcuop/2-29    (   29) [000] d..2 82320.468656: 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
153488          <idle>-0     (-----) [002] d..2 82320.468661: 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
153489         rcuop/4-45    (   45) [000] d..2 82320.468661: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=003
153490     rcu_preempt-7     (    7) [002] d..2 82320.468683: 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
153491         rcuop/4-45    (   45) [000] d..3 82320.468690: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=000
153492          <idle>-0     (-----) [002] d..1 82320.468690: cpu_idle: state=0 cpu_id=2
153493         rcuop/4-45    (   45) [000] d..2 82320.468698: 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
153494          <idle>-0     (-----) [003] ...1 82320.469169: cpu_idle: state=4294967295 cpu_id=3
153495          <idle>-0     (-----) [003] d..1 82320.469173: cpu_idle: state=0 cpu_id=3
153496         rcuop/5-53    (   53) [000] d..2 82320.469443: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153497          <idle>-0     (-----) [000] d..1 82320.469454: cpu_idle: state=0 cpu_id=0
153498          <idle>-0     (-----) [000] d.h5 82320.470681: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
153499          <idle>-0     (-----) [000] dnh6 82320.470693: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
153500          <idle>-0     (-----) [000] dnh5 82320.470697: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
153501          <idle>-0     (-----) [000] dnh6 82320.470707: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
153502          <idle>-0     (-----) [001] .n.1 82320.470713: cpu_idle: state=4294967295 cpu_id=1
153503          <idle>-0     (-----) [000] .n.1 82320.470719: cpu_idle: state=4294967295 cpu_id=0
153504          <idle>-0     (-----) [001] d..2 82320.470721: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
153505          <idle>-0     (-----) [000] d..2 82320.470727: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
153506  crtc_event:111-322   (  322) [000] d..2 82320.470755: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153507          <idle>-0     (-----) [000] d..1 82320.470765: cpu_idle: state=0 cpu_id=0
153508 crtc_commit:111-321   (  321) [001] d..2 82320.470852: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
153509          <idle>-0     (-----) [001] d..1 82320.470859: cpu_idle: state=0 cpu_id=1
153510              ps-27819 (27819) [005] d..2 82320.470912: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153511              ps-27819 (27819) [005] dn.3 82320.470918: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153512              ps-27819 (27819) [005] d..2 82320.470921: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
153513 shell svc 27816-27817 (  960) [005] d..2 82320.470939: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
153514 shell svc 27816-27817 (  960) [005] d..2 82320.470962: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
153515          <idle>-0     (-----) [003] dnh2 82320.470965: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
153516          <idle>-0     (-----) [003] .n.1 82320.470970: cpu_idle: state=4294967295 cpu_id=3
153517          <idle>-0     (-----) [003] d..2 82320.470980: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
153518            adbd-960   (  960) [003] d..1 82320.471038: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
153519            adbd-960   (  960) [003] d..2 82320.471070: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
153520            adbd-960   (  960) [003] d..2 82320.471117: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
153521            adbd-24055 (  960) [003] d..2 82320.471187: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153522          <idle>-0     (-----) [003] d.h3 82320.471212: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153523          <idle>-0     (-----) [003] dnh4 82320.471224: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153524          <idle>-0     (-----) [003] d..2 82320.471237: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153525   kworker/u17:0-98    (   98) [003] d..2 82320.471249: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153526   kworker/u17:0-98    (   98) [003] d..3 82320.471257: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153527   kworker/u17:0-98    (   98) [003] d..2 82320.471277: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153528     kworker/3:1-25210 (25210) [003] d..2 82320.471284: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
153529     kworker/3:1-25210 (25210) [003] d..3 82320.471295: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
153530     kworker/3:1-25210 (25210) [003] d..2 82320.471307: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
153531            adbd-24055 (  960) [003] d..2 82320.471370: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153532          <idle>-0     (-----) [003] d..1 82320.471382: cpu_idle: state=0 cpu_id=3
153533          <idle>-0     (-----) [003] d.h3 82320.471466: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153534          <idle>-0     (-----) [003] dnh4 82320.471474: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153535          <idle>-0     (-----) [003] .n.1 82320.471488: cpu_idle: state=4294967295 cpu_id=3
153536          <idle>-0     (-----) [003] d..2 82320.471497: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153537   kworker/u17:0-98    (   98) [003] d..2 82320.471505: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153538   kworker/u17:0-98    (   98) [003] d..3 82320.471515: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153539   kworker/u17:0-98    (   98) [003] d..2 82320.471534: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153540     kworker/3:1-25210 (25210) [003] d..2 82320.471541: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
153541     kworker/3:1-25210 (25210) [003] d..3 82320.471552: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
153542     kworker/3:1-25210 (25210) [003] d..2 82320.471563: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
153543            adbd-24055 (  960) [003] d..2 82320.471592: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153544          <idle>-0     (-----) [003] d..1 82320.471604: cpu_idle: state=0 cpu_id=3
153545          <idle>-0     (-----) [003] d.h3 82320.471713: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153546          <idle>-0     (-----) [003] dnh4 82320.471721: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153547          <idle>-0     (-----) [003] .n.1 82320.471727: cpu_idle: state=4294967295 cpu_id=3
153548          <idle>-0     (-----) [003] d..2 82320.471736: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153549   kworker/u17:0-98    (   98) [003] d..2 82320.471745: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153550   kworker/u17:0-98    (   98) [003] d..3 82320.471752: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153551   kworker/u17:0-98    (   98) [003] d..2 82320.471779: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153552          <idle>-0     (-----) [004] d.s3 82320.471788: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
153553          <idle>-0     (-----) [001] d.s3 82320.471792: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
153554          <idle>-0     (-----) [001] d.s4 82320.471808: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
153555          <idle>-0     (-----) [004] ...1 82320.471810: cpu_idle: state=4294967295 cpu_id=4
153556          <idle>-0     (-----) [004] d..1 82320.471812: cpu_idle: state=0 cpu_id=4
153557          <idle>-0     (-----) [000] .n.1 82320.471814: cpu_idle: state=4294967295 cpu_id=0
153558          <idle>-0     (-----) [000] d..2 82320.471855: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
153559     kworker/3:1-25210 (25210) [003] d.H3 82320.471871: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
153560          <idle>-0     (-----) [001] ...1 82320.471874: cpu_idle: state=4294967295 cpu_id=1
153561          <idle>-0     (-----) [001] d..1 82320.471878: cpu_idle: state=0 cpu_id=1
153562  crtc_event:111-322   (  322) [000] d..2 82320.471898: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
153563     kworker/3:1-25210 (25210) [003] d..2 82320.471898: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
153564     kworker/3:1-25210 (25210) [003] d..3 82320.471913: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
153565     kworker/3:1-25210 (25210) [003] d..2 82320.471926: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
153566            adbd-24054 (  960) [003] d..2 82320.471944: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
153567            adbd-24054 (  960) [003] d..3 82320.471952: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
153568            adbd-24054 (  960) [003] d..2 82320.472007: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
153569  kworker/u16:13-1147  ( 1147) [000] d..3 82320.472080: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
153570  kworker/u16:13-1147  ( 1147) [000] d..4 82320.472101: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
153571            adbd-960   (  960) [003] d..2 82320.472109: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153572  kworker/u16:13-1147  ( 1147) [000] d..3 82320.472120: sched_waking: comm=kworker/0:1H pid=578 prio=100 target_cpu=000
153573  kworker/u16:13-1147  ( 1147) [000] dn.4 82320.472131: sched_wakeup: comm=kworker/0:1H pid=578 prio=100 target_cpu=000
153574  kworker/u16:13-1147  ( 1147) [000] d..2 82320.472139: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1H next_pid=578 next_prio=100
153575    kworker/0:1H-578   (  578) [000] d..2 82320.472157: sched_switch: prev_comm=kworker/0:1H prev_pid=578 prev_prio=100 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
153576  kworker/u16:13-1147  ( 1147) [000] d..2 82320.472187: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153577          <idle>-0     (-----) [000] d..1 82320.472198: cpu_idle: state=0 cpu_id=0
153578  kworker/u16:15-1311  ( 1311) [003] d..2 82320.472314: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
153579          <idle>-0     (-----) [003] d..1 82320.472327: cpu_idle: state=0 cpu_id=3
153580          <idle>-0     (-----) [001] d.s3 82320.472384: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
153581          <idle>-0     (-----) [001] d.s4 82320.472393: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
153582          <idle>-0     (-----) [001] d.s4 82320.472400: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
153583          <idle>-0     (-----) [003] .n.1 82320.472406: cpu_idle: state=4294967295 cpu_id=3
153584          <idle>-0     (-----) [001] ...1 82320.472408: cpu_idle: state=4294967295 cpu_id=1
153585          <idle>-0     (-----) [001] d..1 82320.472411: cpu_idle: state=0 cpu_id=1
153586          <idle>-0     (-----) [003] d..2 82320.472416: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153587  kworker/u16:15-1311  ( 1311) [003] d..2 82320.472515: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
153588          <idle>-0     (-----) [003] d..1 82320.472525: cpu_idle: state=0 cpu_id=3
153589          <idle>-0     (-----) [001] d.s3 82320.472527: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
153590          <idle>-0     (-----) [001] d.s4 82320.472534: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
153591          <idle>-0     (-----) [001] d.s4 82320.472541: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
153592          <idle>-0     (-----) [003] .n.1 82320.472547: cpu_idle: state=4294967295 cpu_id=3
153593          <idle>-0     (-----) [001] ...1 82320.472548: cpu_idle: state=4294967295 cpu_id=1
153594          <idle>-0     (-----) [001] d..1 82320.472552: cpu_idle: state=0 cpu_id=1
153595          <idle>-0     (-----) [003] d..2 82320.472556: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153596  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472578: clk_enable: gcc_ufs_phy_axi_clk_src
153597  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472593: clk_enable: gcc_ufs_phy_axi_clk
153598  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472602: clk_enable: gcc_ufs_phy_axi_hw_ctl_clk
153599  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472610: clk_enable: gcc_aggre_ufs_phy_axi_clk
153600  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472617: clk_enable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
153601  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472623: clk_enable: gcc_ufs_phy_ahb_clk
153602  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472632: clk_enable: gcc_ufs_phy_unipro_core_clk_src
153603  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472638: clk_enable: gcc_ufs_phy_unipro_core_clk
153604  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472643: clk_enable: gcc_ufs_phy_unipro_core_hw_ctl_clk
153605  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472650: clk_enable: gcc_ufs_phy_ice_core_clk_src
153606  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472655: clk_enable: gcc_ufs_phy_ice_core_clk
153607  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472660: clk_enable: gcc_ufs_phy_ice_core_hw_ctl_clk
153608  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472672: clk_enable: gcc_ufs_mem_clkref_clk
153609  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472679: clk_enable: gcc_ufs_phy_phy_aux_clk_src
153610  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472683: clk_enable: gcc_ufs_phy_phy_aux_clk
153611  kworker/u16:15-1311  ( 1311) [003] d..1 82320.472689: clk_enable: gcc_ufs_phy_phy_aux_hw_ctl_clk
153612  kworker/u16:15-1311  ( 1311) [003] d..3 82320.472730: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
153613  kworker/u16:15-1311  ( 1311) [003] d..4 82320.472744: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
153614          <idle>-0     (-----) [000] .n.1 82320.472749: cpu_idle: state=4294967295 cpu_id=0
153615          <idle>-0     (-----) [000] d..2 82320.472756: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
153616          <idle>-0     (-----) [001] ...1 82320.472787: cpu_idle: state=4294967295 cpu_id=1
153617          <idle>-0     (-----) [002] ...1 82320.472790: cpu_idle: state=4294967295 cpu_id=2
153618          <idle>-0     (-----) [001] d..1 82320.472790: cpu_idle: state=0 cpu_id=1
153619          <idle>-0     (-----) [002] d..1 82320.472794: cpu_idle: state=0 cpu_id=2
153620  kworker/u16:13-1147  ( 1147) [000] d..2 82320.472799: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153621          <idle>-0     (-----) [000] d..1 82320.472805: cpu_idle: state=0 cpu_id=0
153622  kworker/u16:15-1311  ( 1311) [003] d..2 82320.472842: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153623          <idle>-0     (-----) [003] d..1 82320.472853: cpu_idle: state=0 cpu_id=3
153624          <idle>-0     (-----) [000] d.h5 82320.473000: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
153625          <idle>-0     (-----) [000] d.h6 82320.473015: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
153626          <idle>-0     (-----) [001] .n.1 82320.473019: cpu_idle: state=4294967295 cpu_id=1
153627          <idle>-0     (-----) [000] ...1 82320.473025: cpu_idle: state=4294967295 cpu_id=0
153628          <idle>-0     (-----) [001] d..2 82320.473028: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
153629          <idle>-0     (-----) [000] d..1 82320.473029: cpu_idle: state=0 cpu_id=0
153630 crtc_commit:111-321   (  321) [001] d..2 82320.473104: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153631          <idle>-0     (-----) [001] d..1 82320.473113: cpu_idle: state=0 cpu_id=1
153632          <idle>-0     (-----) [000] d.h5 82320.473283: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
153633          <idle>-0     (-----) [000] dnh6 82320.473291: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
153634          <idle>-0     (-----) [000] .n.1 82320.473301: cpu_idle: state=4294967295 cpu_id=0
153635          <idle>-0     (-----) [000] d..2 82320.473306: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
153636  crtc_event:111-322   (  322) [000] d..2 82320.473327: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153637          <idle>-0     (-----) [000] d..1 82320.473333: cpu_idle: state=0 cpu_id=0
153638              ps-27819 (27819) [005] d..2 82320.473840: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153639              ps-27819 (27819) [005] dn.3 82320.473845: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
153640              ps-27819 (27819) [005] d..2 82320.473848: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
153641 shell svc 27816-27817 (  960) [005] d..2 82320.473862: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
153642 shell svc 27816-27817 (  960) [005] d..2 82320.473875: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27819 next_prio=120
153643          <idle>-0     (-----) [003] d.h4 82320.473881: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
153644          <idle>-0     (-----) [003] d.h5 82320.473900: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
153645          <idle>-0     (-----) [000] .n.1 82320.473905: cpu_idle: state=4294967295 cpu_id=0
153646          <idle>-0     (-----) [000] d..2 82320.473912: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153647          <idle>-0     (-----) [003] dnH2 82320.473923: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
153648  kworker/u16:15-1311  ( 1311) [000] d..2 82320.473934: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153649          <idle>-0     (-----) [000] d..1 82320.473939: cpu_idle: state=0 cpu_id=0
153650          <idle>-0     (-----) [003] dns4 82320.473997: sched_waking: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
153651          <idle>-0     (-----) [003] dns5 82320.474008: sched_wakeup: comm=kworker/3:1H pid=873 prio=100 target_cpu=003
153652          <idle>-0     (-----) [003] .n.1 82320.474018: cpu_idle: state=4294967295 cpu_id=3
153653          <idle>-0     (-----) [003] d..2 82320.474028: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/3:1H next_pid=873 next_prio=100
153654    kworker/3:1H-873   (  873) [003] d..2 82320.474039: sched_switch: prev_comm=kworker/3:1H prev_pid=873 prev_prio=100 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
153655            adbd-960   (  960) [003] d..1 82320.474101: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
153656            adbd-960   (  960) [003] d..2 82320.474117: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
153657            adbd-960   (  960) [003] d..2 82320.474163: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
153658              ps-27819 (27819) [005] d..3 82320.474174: sched_waking: comm=sh pid=27818 prio=120 target_cpu=000
153659              ps-27819 (27819) [005] d..2 82320.474190: sched_switch: prev_comm=ps prev_pid=27819 prev_prio=120 prev_state=x ==> next_comm=swapper/5 next_pid=0 next_prio=120
153660          <idle>-0     (-----) [000] dnh2 82320.474193: sched_wakeup: comm=sh pid=27818 prio=120 target_cpu=000
153661          <idle>-0     (-----) [000] .n.1 82320.474198: cpu_idle: state=4294967295 cpu_id=0
153662          <idle>-0     (-----) [005] d..1 82320.474202: cpu_idle: state=0 cpu_id=5
153663          <idle>-0     (-----) [000] d..2 82320.474204: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27818 next_prio=120
153664            adbd-24055 (  960) [003] d..2 82320.474220: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153665          <idle>-0     (-----) [003] d.h4 82320.474235: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153666          <idle>-0     (-----) [003] dnh5 82320.474246: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153667          <idle>-0     (-----) [003] d..2 82320.474257: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153668   kworker/u17:0-98    (   98) [003] d..2 82320.474267: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153669   kworker/u17:0-98    (   98) [003] d..3 82320.474274: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153670   kworker/u17:0-98    (   98) [003] d..2 82320.474290: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153671     kworker/3:1-25210 (25210) [003] d..2 82320.474297: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
153672     kworker/3:1-25210 (25210) [003] d..3 82320.474307: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
153673     kworker/3:1-25210 (25210) [003] d..2 82320.474318: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
153674              sh-27818 (27818) [000] d..2 82320.474328: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
153675              sh-27818 (27818) [000] d..3 82320.474370: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
153676            adbd-24055 (  960) [003] d..2 82320.474381: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
153677         rcuop/0-10    (   10) [003] d..2 82320.474400: 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
153678          <idle>-0     (-----) [003] d..1 82320.474410: cpu_idle: state=0 cpu_id=3
153679          <idle>-0     (-----) [003] d.h3 82320.474472: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153680          <idle>-0     (-----) [003] dnh4 82320.474480: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153681          <idle>-0     (-----) [003] .n.1 82320.474486: cpu_idle: state=4294967295 cpu_id=3
153682          <idle>-0     (-----) [003] d..2 82320.474495: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153683   kworker/u17:0-98    (   98) [003] d..2 82320.474504: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153684   kworker/u17:0-98    (   98) [003] d..3 82320.474512: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153685   kworker/u17:0-98    (   98) [003] d..2 82320.474528: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153686     kworker/3:1-25210 (25210) [003] d..2 82320.474535: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
153687     kworker/3:1-25210 (25210) [003] d..3 82320.474546: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
153688     kworker/3:1-25210 (25210) [003] d..2 82320.474558: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
153689            adbd-24055 (  960) [003] d..2 82320.474583: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153690          <idle>-0     (-----) [003] d..1 82320.474593: cpu_idle: state=0 cpu_id=3
153691          <idle>-0     (-----) [003] d.h3 82320.474705: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153692          <idle>-0     (-----) [002] d.h2 82320.474705: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
153693          <idle>-0     (-----) [003] dnh4 82320.474713: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
153694          <idle>-0     (-----) [002] dnh3 82320.474719: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
153695          <idle>-0     (-----) [003] .n.1 82320.474720: cpu_idle: state=4294967295 cpu_id=3
153696          <idle>-0     (-----) [002] .n.1 82320.474725: cpu_idle: state=4294967295 cpu_id=2
153697          <idle>-0     (-----) [003] d..2 82320.474729: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
153698          <idle>-0     (-----) [002] d..2 82320.474733: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
153699   kworker/u17:0-98    (   98) [003] d..2 82320.474737: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153700   kworker/u17:0-98    (   98) [003] d..3 82320.474744: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
153701        DispSync-8879  ( 8858) [002] d..1 82320.474756: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
153702   kworker/u17:0-98    (   98) [003] d..2 82320.474759: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
153703     kworker/3:1-25210 (25210) [003] d..2 82320.474769: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
153704        DispSync-8879  ( 8858) [002] d..2 82320.474770: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
153705          <idle>-0     (-----) [001] .n.1 82320.474775: cpu_idle: state=4294967295 cpu_id=1
153706          <idle>-0     (-----) [001] d..2 82320.474783: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
153707     kworker/3:1-25210 (25210) [003] d..3 82320.474795: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=002
153708        DispSync-8879  ( 8858) [002] d..2 82320.474802: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
153709            adbd-24054 (  960) [002] d..2 82320.474821: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
153710     kworker/3:1-25210 (25210) [003] d..2 82320.474823: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153711          <idle>-0     (-----) [003] d..1 82320.474833: cpu_idle: state=0 cpu_id=3
153712  appEventThread-8881  ( 8858) [001] d..3 82320.474833: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
153713            adbd-24054 (  960) [002] d..3 82320.474839: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
153714          <idle>-0     (-----) [004] dnh2 82320.474851: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
153715          <idle>-0     (-----) [004] .n.1 82320.474853: cpu_idle: state=4294967295 cpu_id=4
153716          <idle>-0     (-----) [004] d..2 82320.474856: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
153717  appEventThread-8881  ( 8858) [001] d..2 82320.474878: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153718          <idle>-0     (-----) [001] d..1 82320.474887: cpu_idle: state=0 cpu_id=1
153719            adbd-24054 (  960) [002] d..2 82320.474891: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
153720            adbd-960   (  960) [002] d..2 82320.474992: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153721          <idle>-0     (-----) [002] d..1 82320.475001: cpu_idle: state=0 cpu_id=2
153722 s.nexuslauncher-10023 (10023) [004] .... 82320.475026: binder_transaction: transaction=1573309 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
153723 s.nexuslauncher-10023 (10023) [004] .... 82320.475030: binder_transaction_alloc_buf: transaction=1573309 data_size=80 offsets_size=0
153724 s.nexuslauncher-10023 (10023) [004] d..4 82320.475033: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=006
153725          <idle>-0     (-----) [001] dnh2 82320.475071: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
153726          <idle>-0     (-----) [001] .n.1 82320.475076: cpu_idle: state=4294967295 cpu_id=1
153727 s.nexuslauncher-10023 (10023) [004] d..3 82320.475083: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
153728          <idle>-0     (-----) [002] .n.1 82320.475083: cpu_idle: state=4294967295 cpu_id=2
153729          <idle>-0     (-----) [001] d..2 82320.475084: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
153730   Binder:8858_1-8871  ( 8858) [001] .... 82320.475090: binder_transaction_received: transaction=1573309
153731          <idle>-0     (-----) [002] d..2 82320.475092: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27820 next_prio=120
153732 s.nexuslauncher-10023 (10023) [004] d..4 82320.475094: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
153733          <idle>-0     (-----) [005] .n.1 82320.475098: cpu_idle: state=4294967295 cpu_id=5
153734          <idle>-0     (-----) [005] d..2 82320.475103: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
153735 s.nexuslauncher-10023 (10023) [004] d.s2 82320.475118: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
153736   Binder:8858_1-8871  ( 8858) [001] d.h1 82320.475124: sched_waking: comm=TaskSchedulerBa pid=25397 prio=120 target_cpu=001
153737              ps-27820 (27820) [002] d.s2 82320.475129: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=002
153738              sh-27818 (27818) [000] d.s3 82320.475133: sched_waking: comm=kworker/0:1H pid=578 prio=100 target_cpu=000
153739   Binder:8858_1-8871  ( 8858) [001] d.h2 82320.475139: sched_wakeup: comm=TaskSchedulerBa pid=25397 prio=120 target_cpu=001
153740              sh-27818 (27818) [000] dns4 82320.475144: sched_wakeup: comm=kworker/0:1H pid=578 prio=100 target_cpu=000
153741    RenderThread-16607 (10023) [005] d..2 82320.475144: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
153742          <idle>-0     (-----) [005] d..1 82320.475148: cpu_idle: state=0 cpu_id=5
153743   Binder:8858_1-8871  ( 8858) [001] d.H1 82320.475149: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153744              sh-27818 (27818) [000] d..2 82320.475158: sched_switch: prev_comm=sh prev_pid=27818 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1H next_pid=578 next_prio=100
153745              ps-27820 (27820) [002] d.s3 82320.475164: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
153746    kworker/0:1H-578   (  578) [000] d..2 82320.475172: sched_switch: prev_comm=kworker/0:1H prev_pid=578 prev_prio=100 prev_state=S ==> next_comm=sh next_pid=27818 next_prio=120
153747   Binder:8858_1-8871  ( 8858) [001] d..1 82320.475173: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
153748   Binder:8858_1-8871  ( 8858) [001] d..2 82320.475194: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
153749          <idle>-0     (-----) [003] .n.1 82320.475201: cpu_idle: state=4294967295 cpu_id=3
153750          <idle>-0     (-----) [003] d..2 82320.475210: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
153751   Binder:8858_1-8871  ( 8858) [001] d..2 82320.475222: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=TaskSchedulerBa next_pid=25397 next_prio=120
153752              sh-27818 (27818) [000] d..2 82320.475264: sched_switch: prev_comm=sh prev_pid=27818 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
153753  appEventThread-8881  ( 8858) [003] d..2 82320.475269: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153754 s.nexuslauncher-10023 (10023) [004] d..3 82320.475272: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
153755 s.nexuslauncher-10023 (10023) [004] d..4 82320.475279: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
153756          <idle>-0     (-----) [003] d..1 82320.475280: cpu_idle: state=0 cpu_id=3
153757          <idle>-0     (-----) [000] d..1 82320.475281: cpu_idle: state=0 cpu_id=0
153758          <idle>-0     (-----) [005] .n.1 82320.475283: cpu_idle: state=4294967295 cpu_id=5
153759 TaskSchedulerBa-25397 (25304) [001] d..2 82320.475285: sched_switch: prev_comm=TaskSchedulerBa prev_pid=25397 prev_prio=120 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
153760          <idle>-0     (-----) [005] d..2 82320.475286: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
153761 s.nexuslauncher-10023 (10023) [004] d..2 82320.475288: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
153762          <idle>-0     (-----) [004] d..1 82320.475293: cpu_idle: state=0 cpu_id=4
153763     rcu_preempt-7     (    7) [001] d..2 82320.475297: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
153764     rcu_preempt-7     (    7) [001] d..3 82320.475330: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
153765     rcu_preempt-7     (    7) [001] d..2 82320.475342: 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
153766         rcuop/2-29    (   29) [001] d..2 82320.475372: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153767    RenderThread-16607 (10023) [005] d..1 82320.475418: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
153768  kworker/u16:15-1311  ( 1311) [001] .... 82320.475420: clk_set_rate: l3_cluster1_vote_clk 1401600000
153769              ps-27820 (27820) [002] d..2 82320.475424: sched_waking: comm=migration/2 pid=25 prio=0 target_cpu=002
153770    RenderThread-16607 (10023) [005] d..2 82320.475426: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
153771  kworker/u16:15-1311  ( 1311) [001] .... 82320.475426: clk_set_rate: l3_clk 1401600000
153772          <idle>-0     (-----) [004] .n.1 82320.475430: cpu_idle: state=4294967295 cpu_id=4
153773          <idle>-0     (-----) [004] d..2 82320.475434: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
153774              ps-27820 (27820) [002] dn.3 82320.475435: sched_wakeup: comm=migration/2 pid=25 prio=0 target_cpu=002
153775              ps-27820 (27820) [002] d..2 82320.475443: sched_switch: prev_comm=sh prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=migration/2 next_pid=25 next_prio=0
153776    RenderThread-16607 (10023) [005] .... 82320.475457: binder_transaction: transaction=1573310 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
153777    RenderThread-16607 (10023) [005] .... 82320.475459: binder_transaction_alloc_buf: transaction=1573310 data_size=104 offsets_size=0
153778 s.nexuslauncher-10023 (10023) [004] d..2 82320.475461: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
153779    RenderThread-16607 (10023) [005] ...2 82320.475461: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
153780    RenderThread-16607 (10023) [005] d..4 82320.475463: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=001
153781          <idle>-0     (-----) [004] d..1 82320.475465: cpu_idle: state=0 cpu_id=4
153782    RenderThread-16607 (10023) [005] d..5 82320.475473: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
153783          <idle>-0     (-----) [000] .n.1 82320.475473: cpu_idle: state=4294967295 cpu_id=0
153784    RenderThread-16607 (10023) [005] d..2 82320.475496: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
153785          <idle>-0     (-----) [000] d..2 82320.475497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27820 next_prio=120
153786     migration/2-25    (   25) [002] d..2 82320.475500: 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
153787   Binder:8858_1-8871  ( 8858) [005] .... 82320.475501: binder_transaction_received: transaction=1573310
153788          <idle>-0     (-----) [002] d..1 82320.475513: cpu_idle: state=0 cpu_id=2
153789   Binder:8858_1-8871  ( 8858) [005] .... 82320.475537: binder_transaction: transaction=1573311 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
153790   Binder:8858_1-8871  ( 8858) [005] .... 82320.475539: binder_transaction_alloc_buf: transaction=1573311 data_size=52 offsets_size=8
153791   Binder:8858_1-8871  ( 8858) [005] d..2 82320.475543: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
153792   Binder:8858_1-8871  ( 8858) [005] d..3 82320.475547: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
153793   Binder:8858_1-8871  ( 8858) [005] .... 82320.475548: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
153794   Binder:8858_1-8871  ( 8858) [005] d..2 82320.475560: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
153795    RenderThread-16607 (10023) [005] .... 82320.475563: binder_transaction_received: transaction=1573311
153796  kworker/u16:15-1311  ( 1311) [001] d..2 82320.475824: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
153797          <idle>-0     (-----) [001] d.s4 82320.475855: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153798          <idle>-0     (-----) [001] d.s5 82320.475863: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
153799          <idle>-0     (-----) [001] dns5 82320.475867: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153800          <idle>-0     (-----) [001] d..2 82320.475877: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153801  kworker/u16:15-1311  ( 1311) [001] d..2 82320.475938: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153802          <idle>-0     (-----) [001] d..1 82320.475949: cpu_idle: state=0 cpu_id=1
153803    RenderThread-16607 (10023) [005] d..2 82320.476476: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
153804          <idle>-0     (-----) [005] d..1 82320.476481: cpu_idle: state=0 cpu_id=5
153805          <idle>-0     (-----) [005] d.h2 82320.476572: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
153806          <idle>-0     (-----) [005] d.h3 82320.476576: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
153807          <idle>-0     (-----) [005] dnh3 82320.476577: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
153808          <idle>-0     (-----) [005] .n.1 82320.476580: cpu_idle: state=4294967295 cpu_id=5
153809          <idle>-0     (-----) [005] d..2 82320.476584: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
153810          <idle>-0     (-----) [003] ...1 82320.476609: cpu_idle: state=4294967295 cpu_id=3
153811          <idle>-0     (-----) [003] d..1 82320.476613: cpu_idle: state=0 cpu_id=3
153812    RenderThread-16607 (10023) [005] .... 82320.476668: binder_transaction: transaction=1573312 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
153813    RenderThread-16607 (10023) [005] .... 82320.476669: binder_transaction_alloc_buf: transaction=1573312 data_size=192 offsets_size=8
153814    RenderThread-16607 (10023) [005] ...2 82320.476672: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
153815    RenderThread-16607 (10023) [005] d..4 82320.476673: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
153816    RenderThread-16607 (10023) [005] d..5 82320.476677: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
153817    RenderThread-16607 (10023) [005] d..2 82320.476681: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
153818   Binder:8858_1-8871  ( 8858) [005] .... 82320.476685: binder_transaction_received: transaction=1573312
153819   Binder:8858_1-8871  ( 8858) [005] .... 82320.476746: binder_transaction: transaction=1573313 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
153820   Binder:8858_1-8871  ( 8858) [005] .... 82320.476747: binder_transaction_alloc_buf: transaction=1573313 data_size=68 offsets_size=0
153821   Binder:8858_1-8871  ( 8858) [005] d..2 82320.476749: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
153822   Binder:8858_1-8871  ( 8858) [005] d..3 82320.476753: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
153823   Binder:8858_1-8871  ( 8858) [005] .... 82320.476754: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
153824   Binder:8858_1-8871  ( 8858) [005] d..2 82320.476765: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
153825    RenderThread-16607 (10023) [005] .... 82320.476768: binder_transaction_received: transaction=1573313
153826    RenderThread-16607 (10023) [005] d..2 82320.476790: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
153827          <idle>-0     (-----) [005] d..1 82320.476795: cpu_idle: state=0 cpu_id=5
153828          <idle>-0     (-----) [005] ...1 82320.477032: cpu_idle: state=4294967295 cpu_id=5
153829          <idle>-0     (-----) [005] d..1 82320.477033: cpu_idle: state=0 cpu_id=5
153830              ps-27820 (27820) [000] d.h2 82320.478019: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
153831              ps-27820 (27820) [000] d.h3 82320.478041: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
153832          <idle>-0     (-----) [003] .n.1 82320.478046: cpu_idle: state=4294967295 cpu_id=3
153833          <idle>-0     (-----) [003] d..2 82320.478054: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
153834 kgsl_worker_thr-258   (  258) [003] d..2 82320.478102: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153835 kgsl_worker_thr-258   (  258) [003] d..3 82320.478133: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
153836 kgsl_worker_thr-258   (  258) [003] d..2 82320.478153: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153837  kworker/u16:15-1311  ( 1311) [003] d..2 82320.478323: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153838          <idle>-0     (-----) [003] d..1 82320.478334: cpu_idle: state=0 cpu_id=3
153839          <idle>-0     (-----) [002] d.h2 82320.478714: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
153840          <idle>-0     (-----) [002] dnh3 82320.478725: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
153841          <idle>-0     (-----) [002] .n.1 82320.478731: cpu_idle: state=4294967295 cpu_id=2
153842          <idle>-0     (-----) [002] d..2 82320.478740: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
153843        DispSync-8879  ( 8858) [002] d..1 82320.478761: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
153844        DispSync-8879  ( 8858) [002] d..2 82320.478783: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
153845          <idle>-0     (-----) [001] .n.1 82320.478789: cpu_idle: state=4294967295 cpu_id=1
153846          <idle>-0     (-----) [001] d..2 82320.478798: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
153847        DispSync-8879  ( 8858) [002] d.s2 82320.478807: sched_waking: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
153848        DispSync-8879  ( 8858) [002] d.s3 82320.478819: sched_wakeup: comm=ksoftirqd/2 pid=26 prio=120 target_cpu=002
153849        DispSync-8879  ( 8858) [002] d..1 82320.478824: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
153850   sfEventThread-8882  ( 8858) [001] d..2 82320.478835: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153851        DispSync-8879  ( 8858) [002] d..2 82320.478847: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
153852          <idle>-0     (-----) [001] dns3 82320.478859: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
153853        DispSync-8879  ( 8858) [002] d..2 82320.478866: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/2 next_pid=26 next_prio=120
153854          <idle>-0     (-----) [001] dns4 82320.478870: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
153855          <idle>-0     (-----) [001] d..2 82320.478878: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
153856   sfEventThread-8882  ( 8858) [001] d..3 82320.478913: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
153857   sfEventThread-8882  ( 8858) [001] d..4 82320.478934: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
153858          <idle>-0     (-----) [003] .n.1 82320.478939: cpu_idle: state=4294967295 cpu_id=3
153859          <idle>-0     (-----) [003] d..2 82320.478948: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
153860   sfEventThread-8882  ( 8858) [001] d..2 82320.478952: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
153861     ksoftirqd/2-26    (   26) [002] d..2 82320.478960: 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
153862          <idle>-0     (-----) [002] d..1 82320.478971: cpu_idle: state=0 cpu_id=2
153863     ksoftirqd/1-18    (   18) [001] d.s2 82320.478982: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
153864     ksoftirqd/1-18    (   18) [001] d.s3 82320.478995: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
153865     ksoftirqd/1-18    (   18) [001] d..2 82320.479011: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
153866     kworker/1:1-25249 (25249) [001] d..2 82320.479053: sched_waking: [email protected] pid=16588 prio=120 target_cpu=003
153867     kworker/1:1-25249 (25249) [001] d..3 82320.479070: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
153868     kworker/1:1-25249 (25249) [001] d..2 82320.479103: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
153869          <idle>-0     (-----) [002] ...1 82320.479259: cpu_idle: state=4294967295 cpu_id=2
153870  surfaceflinger-8858  ( 8858) [003] d..2 82320.479263: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
153871          <idle>-0     (-----) [002] d..1 82320.479263: cpu_idle: state=0 cpu_id=2
153872  surfaceflinger-8858  ( 8858) [003] d..3 82320.479285: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
153873 [email protected] (  798) [001] d..2 82320.479293: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=rcuop/2 next_pid=29 next_prio=120
153874  surfaceflinger-8858  ( 8858) [003] d..1 82320.479317: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
153875         rcuop/2-29    (   29) [001] d..2 82320.479317: 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
153876  surfaceflinger-8858  ( 8858) [003] d..2 82320.479330: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
153877          <idle>-0     (-----) [001] dns3 82320.479345: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
153878          <idle>-0     (-----) [001] dns4 82320.479352: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
153879          <idle>-0     (-----) [001] d..2 82320.479360: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
153880   sfEventThread-8882  ( 8858) [001] d..2 82320.479385: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
153881     ksoftirqd/1-18    (   18) [001] d.s2 82320.479411: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
153882     ksoftirqd/1-18    (   18) [001] d.s3 82320.479419: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
153883     ksoftirqd/1-18    (   18) [001] d..2 82320.479434: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
153884     kworker/1:1-25249 (25249) [001] d..2 82320.479452: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
153885     kworker/1:1-25249 (25249) [001] d..3 82320.479459: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
153886     kworker/1:1-25249 (25249) [001] d..2 82320.479475: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
153887  surfaceflinger-8858  ( 8858) [003] ...1 82320.479511: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
153888  surfaceflinger-8858  ( 8858) [003] ...1 82320.479519: tracing_mark_write: E|8858
153889 [email protected] (  798) [001] d..2 82320.479575: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153890  surfaceflinger-8858  ( 8858) [003] .... 82320.479578: binder_transaction: transaction=1573314 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
153891  surfaceflinger-8858  ( 8858) [003] .... 82320.479582: binder_transaction_alloc_buf: transaction=1573314 data_size=540 offsets_size=96
153892          <idle>-0     (-----) [001] d..1 82320.479585: cpu_idle: state=0 cpu_id=1
153893  surfaceflinger-8858  ( 8858) [003] ...2 82320.479608: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
153894  surfaceflinger-8858  ( 8858) [003] d..4 82320.479618: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
153895  surfaceflinger-8858  ( 8858) [003] d..5 82320.479641: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=002
153896          <idle>-0     (-----) [002] .n.1 82320.479646: cpu_idle: state=4294967295 cpu_id=2
153897          <idle>-0     (-----) [002] d..2 82320.479655: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
153898  surfaceflinger-8858  ( 8858) [003] d..2 82320.479665: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153899 [email protected]   (  619) [002] .... 82320.479666: binder_transaction_received: transaction=1573314
153900          <idle>-0     (-----) [003] d..1 82320.479678: cpu_idle: state=0 cpu_id=3
153901 [email protected]   (  619) [002] ...1 82320.479726: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
153902 [email protected]   (  619) [002] ...1 82320.479840: tracing_mark_write: B|619|HWCSession::PresentDisplay::
153903 [email protected]   (  619) [002] ...1 82320.480006: tracing_mark_write: B|619|HWDeviceDRM::Commit::
153904 [email protected]   (  619) [002] ...1 82320.480019: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
153905 [email protected]   (  619) [002] d..2 82320.480585: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
153906 [email protected]   (  619) [002] d..3 82320.480603: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
153907          <idle>-0     (-----) [001] .n.1 82320.480609: cpu_idle: state=4294967295 cpu_id=1
153908          <idle>-0     (-----) [001] d..2 82320.480616: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
153909 [email protected]   (  619) [002] ...1 82320.480688: tracing_mark_write: E|619
153910 [email protected]   (  619) [002] ...1 82320.480694: tracing_mark_write: E|619
153911 [email protected]   (  619) [002] ...1 82320.480749: tracing_mark_write: E|619
153912 [email protected]   (  619) [002] ...1 82320.480795: tracing_mark_write: E|619
153913 [email protected]   (  619) [002] .... 82320.480807: binder_transaction: transaction=1573315 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
153914 [email protected]   (  619) [002] .... 82320.480812: binder_transaction_alloc_buf: transaction=1573315 data_size=576 offsets_size=112
153915 [email protected]   (  619) [002] d..2 82320.480829: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
153916 [email protected]   (  619) [002] d..3 82320.480842: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
153917 [email protected]   (  619) [002] .... 82320.480846: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
153918          <idle>-0     (-----) [003] .n.1 82320.480848: cpu_idle: state=4294967295 cpu_id=3
153919          <idle>-0     (-----) [003] d..2 82320.480856: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
153920  surfaceflinger-8858  ( 8858) [003] .... 82320.480862: binder_transaction_received: transaction=1573315
153921 [email protected]   (  619) [002] d..2 82320.480912: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
153922 crtc_commit:111-321   (  321) [001] d.s1 82320.480920: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
153923          <idle>-0     (-----) [002] d..1 82320.480924: cpu_idle: state=0 cpu_id=2
153924 crtc_commit:111-321   (  321) [001] d.s2 82320.480929: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
153925 crtc_commit:111-321   (  321) [001] d..2 82320.480996: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
153926     ksoftirqd/1-18    (   18) [001] d.s2 82320.481022: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
153927     ksoftirqd/1-18    (   18) [001] d.s3 82320.481031: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
153928     ksoftirqd/1-18    (   18) [001] d..2 82320.481045: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
153929     kworker/1:1-25249 (25249) [001] d..2 82320.481063: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
153930     kworker/1:1-25249 (25249) [001] d..3 82320.481071: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
153931     kworker/1:1-25249 (25249) [001] d..2 82320.481089: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
153932 [email protected] (  798) [001] d..2 82320.481186: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153933          <idle>-0     (-----) [001] d..1 82320.481194: cpu_idle: state=0 cpu_id=1
153934  surfaceflinger-8858  ( 8858) [003] d..2 82320.481209: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
153935          <idle>-0     (-----) [003] d..1 82320.481221: cpu_idle: state=0 cpu_id=3
153936          <idle>-0     (-----) [001] d.s3 82320.481514: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
153937          <idle>-0     (-----) [001] dns4 82320.481522: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
153938          <idle>-0     (-----) [001] dns3 82320.481539: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
153939          <idle>-0     (-----) [001] dns4 82320.481555: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
153940          <idle>-0     (-----) [001] .n.1 82320.481566: cpu_idle: state=4294967295 cpu_id=1
153941          <idle>-0     (-----) [001] d..2 82320.481573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
153942     kworker/1:1-25249 (25249) [001] d..2 82320.481590: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
153943     kworker/1:1-25249 (25249) [001] d..3 82320.481601: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
153944     kworker/1:1-25249 (25249) [001] d..2 82320.481618: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
153945   cds_mc_thread-16565 (16565) [001] d..2 82320.481683: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
153946 [email protected] (  798) [001] d..2 82320.481783: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153947              ps-27820 (27820) [000] d.s2 82320.481800: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
153948          <idle>-0     (-----) [001] d.s3 82320.481807: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
153949              ps-27820 (27820) [000] dns3 82320.481814: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
153950              ps-27820 (27820) [000] dns2 82320.481819: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
153951          <idle>-0     (-----) [001] dns4 82320.481820: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
153952          <idle>-0     (-----) [001] d..2 82320.481838: 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
153953              ps-27820 (27820) [000] dns3 82320.481851: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153954     rcu_preempt-7     (    7) [001] d..2 82320.481860: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153955              ps-27820 (27820) [000] dns2 82320.481864: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
153956              ps-27820 (27820) [000] dns3 82320.481875: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
153957              ps-27820 (27820) [000] d..2 82320.481886: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
153958          <idle>-0     (-----) [002] ...1 82320.481914: cpu_idle: state=4294967295 cpu_id=2
153959          <idle>-0     (-----) [003] ...1 82320.481918: cpu_idle: state=4294967295 cpu_id=3
153960     kworker/0:1-25262 (25262) [000] d..2 82320.481919: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
153961          <idle>-0     (-----) [002] d..1 82320.481920: cpu_idle: state=0 cpu_id=2
153962          <idle>-0     (-----) [003] d..1 82320.481923: cpu_idle: state=0 cpu_id=3
153963  kworker/u16:15-1311  ( 1311) [001] d..2 82320.481988: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
153964     rcu_preempt-7     (    7) [001] d.s4 82320.482012: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153965     rcu_preempt-7     (    7) [001] d.s5 82320.482023: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
153966     rcu_preempt-7     (    7) [001] d.s5 82320.482026: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153967     rcu_preempt-7     (    7) [001] d..2 82320.482033: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
153968     rcu_preempt-7     (    7) [001] d..3 82320.482063: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
153969     rcu_preempt-7     (    7) [001] d..2 82320.482065: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
153970     rcu_preempt-7     (    7) [001] d..3 82320.482094: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
153971     rcu_preempt-7     (    7) [001] d..2 82320.482107: 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
153972         rcuop/4-45    (   45) [001] d..2 82320.482112: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=000
153973         rcuop/4-45    (   45) [001] d..3 82320.482141: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
153974         rcuop/4-45    (   45) [001] d..2 82320.482150: 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
153975         rcuop/5-53    (   53) [001] d..2 82320.483120: sched_switch: prev_comm=rcuop/5 prev_pid=53 prev_prio=120 prev_state=S ==> next_comm=rcuop/0 next_pid=10 next_prio=120
153976         rcuop/0-10    (   10) [001] d..2 82320.483140: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153977  kworker/u16:15-1311  ( 1311) [001] d..2 82320.483168: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
153978          <idle>-0     (-----) [001] d..1 82320.483179: cpu_idle: state=0 cpu_id=1
153979          <idle>-0     (-----) [002] ...1 82320.483354: cpu_idle: state=4294967295 cpu_id=2
153980          <idle>-0     (-----) [002] d..1 82320.483357: cpu_idle: state=0 cpu_id=2
153981          <idle>-0     (-----) [003] ...1 82320.483640: cpu_idle: state=4294967295 cpu_id=3
153982          <idle>-0     (-----) [003] d..1 82320.483644: cpu_idle: state=0 cpu_id=3
153983              ps-27820 (27820) [000] d.s2 82320.485138: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153984              ps-27820 (27820) [000] d.s3 82320.485152: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153985          <idle>-0     (-----) [001] .n.1 82320.485158: cpu_idle: state=4294967295 cpu_id=1
153986          <idle>-0     (-----) [001] d..2 82320.485168: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153987  kworker/u16:15-1311  ( 1311) [001] d..2 82320.485330: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
153988          <idle>-0     (-----) [001] d.s4 82320.485363: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153989          <idle>-0     (-----) [001] d.s5 82320.485370: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
153990          <idle>-0     (-----) [001] dns5 82320.485374: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153991          <idle>-0     (-----) [001] d..2 82320.485383: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153992  kworker/u16:15-1311  ( 1311) [001] d..2 82320.485515: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
153993          <idle>-0     (-----) [001] d.s4 82320.485546: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153994          <idle>-0     (-----) [001] d.s5 82320.485553: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
153995          <idle>-0     (-----) [001] dns5 82320.485557: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
153996          <idle>-0     (-----) [001] d..2 82320.485566: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
153997  kworker/u16:15-1311  ( 1311) [001] .... 82320.485619: clk_set_rate: l3_cluster0_vote_clk 844800000
153998  kworker/u16:15-1311  ( 1311) [001] .... 82320.485641: clk_set_rate: l3_cluster1_vote_clk 576000000
153999  kworker/u16:15-1311  ( 1311) [001] .... 82320.485645: clk_set_rate: l3_clk 844800000
154000  kworker/u16:15-1311  ( 1311) [001] d..2 82320.485688: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154001          <idle>-0     (-----) [001] d..1 82320.485700: cpu_idle: state=0 cpu_id=1
154002              ps-27820 (27820) [000] d.h4 82320.487122: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
154003              ps-27820 (27820) [000] d.h5 82320.487150: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154004          <idle>-0     (-----) [002] .n.1 82320.487154: cpu_idle: state=4294967295 cpu_id=2
154005              ps-27820 (27820) [000] d.h4 82320.487155: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
154006          <idle>-0     (-----) [002] d..2 82320.487163: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
154007              ps-27820 (27820) [000] d.h5 82320.487165: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
154008          <idle>-0     (-----) [001] .n.1 82320.487172: cpu_idle: state=4294967295 cpu_id=1
154009          <idle>-0     (-----) [001] d..2 82320.487178: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
154010  crtc_event:111-322   (  322) [002] d..2 82320.487197: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154011          <idle>-0     (-----) [002] d..1 82320.487204: cpu_idle: state=0 cpu_id=2
154012 crtc_commit:111-321   (  321) [001] d..2 82320.487284: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
154013          <idle>-0     (-----) [001] d..1 82320.487291: cpu_idle: state=0 cpu_id=1
154014          <idle>-0     (-----) [001] d.s3 82320.488460: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154015              ps-27820 (27820) [000] d.s2 82320.488473: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
154016          <idle>-0     (-----) [001] d.s4 82320.488474: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154017          <idle>-0     (-----) [001] d.s2 82320.488477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154018          <idle>-0     (-----) [002] .n.1 82320.488479: cpu_idle: state=4294967295 cpu_id=2
154019              ps-27820 (27820) [000] dns3 82320.488483: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
154020          <idle>-0     (-----) [002] d..2 82320.488488: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
154021          <idle>-0     (-----) [001] dns3 82320.488490: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154022              ps-27820 (27820) [000] d..2 82320.488497: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
154023          <idle>-0     (-----) [001] .n.1 82320.488501: cpu_idle: state=4294967295 cpu_id=1
154024          <idle>-0     (-----) [001] d..2 82320.488509: 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
154025  crtc_event:111-322   (  322) [002] d..2 82320.488518: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154026     kworker/0:1-25262 (25262) [000] d..2 82320.488524: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
154027          <idle>-0     (-----) [002] d..1 82320.488524: cpu_idle: state=0 cpu_id=2
154028     rcu_preempt-7     (    7) [001] d..2 82320.488532: 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
154029          <idle>-0     (-----) [001] d..1 82320.488542: cpu_idle: state=0 cpu_id=1
154030              ps-27820 (27820) [000] d.h4 82320.489457: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
154031              ps-27820 (27820) [000] d.h5 82320.489473: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
154032          <idle>-0     (-----) [001] .n.1 82320.489477: cpu_idle: state=4294967295 cpu_id=1
154033          <idle>-0     (-----) [001] d..2 82320.489486: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
154034 crtc_commit:111-321   (  321) [001] d..2 82320.489549: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154035          <idle>-0     (-----) [001] d..1 82320.489557: cpu_idle: state=0 cpu_id=1
154036              ps-27820 (27820) [000] d.h4 82320.489752: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154037              ps-27820 (27820) [000] d.h5 82320.489766: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154038          <idle>-0     (-----) [002] .n.1 82320.489771: cpu_idle: state=4294967295 cpu_id=2
154039          <idle>-0     (-----) [002] d..2 82320.489778: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
154040  crtc_event:111-322   (  322) [002] d..2 82320.489797: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154041          <idle>-0     (-----) [002] d..1 82320.489803: cpu_idle: state=0 cpu_id=2
154042          <idle>-0     (-----) [002] d.h2 82320.491255: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
154043          <idle>-0     (-----) [002] dnh3 82320.491265: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
154044          <idle>-0     (-----) [002] .n.1 82320.491272: cpu_idle: state=4294967295 cpu_id=2
154045          <idle>-0     (-----) [002] d..2 82320.491279: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
154046        DispSync-8879  ( 8858) [002] d..1 82320.491299: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
154047        DispSync-8879  ( 8858) [002] d..2 82320.491312: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
154048          <idle>-0     (-----) [003] .n.1 82320.491317: cpu_idle: state=4294967295 cpu_id=3
154049          <idle>-0     (-----) [003] d..2 82320.491327: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
154050        DispSync-8879  ( 8858) [002] d..2 82320.491340: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154051          <idle>-0     (-----) [002] d..1 82320.491349: cpu_idle: state=0 cpu_id=2
154052  appEventThread-8881  ( 8858) [003] d..3 82320.491374: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154053          <idle>-0     (-----) [004] dnh2 82320.491395: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154054          <idle>-0     (-----) [004] .n.1 82320.491398: cpu_idle: state=4294967295 cpu_id=4
154055          <idle>-0     (-----) [004] d..2 82320.491402: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
154056  appEventThread-8881  ( 8858) [003] d..2 82320.491421: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154057          <idle>-0     (-----) [003] d..1 82320.491431: cpu_idle: state=0 cpu_id=3
154058 s.nexuslauncher-10023 (10023) [004] .... 82320.491545: binder_transaction: transaction=1573316 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
154059 s.nexuslauncher-10023 (10023) [004] .... 82320.491548: binder_transaction_alloc_buf: transaction=1573316 data_size=80 offsets_size=0
154060 s.nexuslauncher-10023 (10023) [004] d..4 82320.491550: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
154061 s.nexuslauncher-10023 (10023) [004] d.h5 82320.491592: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
154062          <idle>-0     (-----) [001] dnh2 82320.491596: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
154063          <idle>-0     (-----) [001] .n.1 82320.491601: cpu_idle: state=4294967295 cpu_id=1
154064          <idle>-0     (-----) [001] d..2 82320.491610: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
154065          <idle>-0     (-----) [002] dnh2 82320.491610: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
154066 s.nexuslauncher-10023 (10023) [004] d..3 82320.491614: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
154067          <idle>-0     (-----) [002] .n.1 82320.491616: cpu_idle: state=4294967295 cpu_id=2
154068   Binder:8858_1-8871  ( 8858) [001] .... 82320.491617: binder_transaction_received: transaction=1573316
154069 s.nexuslauncher-10023 (10023) [004] d..4 82320.491622: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
154070          <idle>-0     (-----) [002] d..2 82320.491623: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
154071          <idle>-0     (-----) [005] .n.1 82320.491626: cpu_idle: state=4294967295 cpu_id=5
154072          <idle>-0     (-----) [005] d..2 82320.491631: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
154073    RenderThread-16607 (10023) [005] d..2 82320.491645: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
154074   Binder:8858_1-8871  ( 8858) [001] d..1 82320.491646: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
154075          <idle>-0     (-----) [005] d..1 82320.491647: cpu_idle: state=0 cpu_id=5
154076         sugov:0-576   (  576) [002] .... 82320.491649: clk_set_rate: pwrcl_clk 825600000
154077         sugov:0-576   (  576) [002] .... 82320.491658: clk_set_rate: cpu3_pwrcl_clk 1056000000
154078   Binder:8858_1-8871  ( 8858) [001] d..2 82320.491661: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
154079         sugov:0-576   (  576) [002] .... 82320.491666: clk_set_rate: cpu2_pwrcl_clk 1056000000
154080          <idle>-0     (-----) [003] .n.1 82320.491666: cpu_idle: state=4294967295 cpu_id=3
154081         sugov:0-576   (  576) [002] .... 82320.491673: clk_set_rate: cpu1_pwrcl_clk 1056000000
154082          <idle>-0     (-----) [003] d..2 82320.491675: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
154083         sugov:0-576   (  576) [002] .... 82320.491680: clk_set_rate: cpu0_pwrcl_clk 825600000
154084   Binder:8858_1-8871  ( 8858) [001] d..2 82320.491702: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154085          <idle>-0     (-----) [001] d..1 82320.491719: cpu_idle: state=0 cpu_id=1
154086  appEventThread-8881  ( 8858) [003] d..2 82320.491721: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154087          <idle>-0     (-----) [003] d..1 82320.491736: cpu_idle: state=0 cpu_id=3
154088 s.nexuslauncher-10023 (10023) [004] d..3 82320.491761: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
154089 s.nexuslauncher-10023 (10023) [004] d..4 82320.491769: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
154090          <idle>-0     (-----) [005] .n.1 82320.491774: cpu_idle: state=4294967295 cpu_id=5
154091          <idle>-0     (-----) [005] d..2 82320.491782: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
154092 s.nexuslauncher-10023 (10023) [004] d..2 82320.491816: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
154093          <idle>-0     (-----) [004] d..1 82320.491822: cpu_idle: state=0 cpu_id=4
154094         sugov:0-576   (  576) [002] .... 82320.491825: cpu_frequency: state=825600 cpu_id=0
154095    RenderThread-16607 (10023) [005] d.h2 82320.491829: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
154096    RenderThread-16607 (10023) [005] d.h3 82320.491837: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
154097          <idle>-0     (-----) [007] .n.1 82320.491841: cpu_idle: state=4294967295 cpu_id=7
154098         sugov:0-576   (  576) [002] .... 82320.491843: cpu_frequency: state=825600 cpu_id=1
154099          <idle>-0     (-----) [007] d..2 82320.491845: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
154100         sugov:0-576   (  576) [002] .... 82320.491848: cpu_frequency: state=825600 cpu_id=2
154101         sugov:0-576   (  576) [002] .... 82320.491852: cpu_frequency: state=825600 cpu_id=3
154102         sugov:4-577   (  577) [007] .... 82320.491855: clk_set_rate: perfcl_clk 979200000
154103         sugov:4-577   (  577) [007] .... 82320.491856: clk_set_rate: cpu7_perfcl_clk 2803200000
154104         sugov:4-577   (  577) [007] .... 82320.491860: clk_set_rate: cpu6_perfcl_clk 2803200000
154105         sugov:4-577   (  577) [007] .... 82320.491865: clk_set_rate: cpu5_perfcl_clk 2803200000
154106         sugov:4-577   (  577) [007] .... 82320.491869: clk_set_rate: cpu4_perfcl_clk 979200000
154107         sugov:4-577   (  577) [007] .... 82320.491873: cpu_frequency: state=979200 cpu_id=4
154108         sugov:0-576   (  576) [002] d..2 82320.491879: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154109          <idle>-0     (-----) [002] d..1 82320.491890: cpu_idle: state=0 cpu_id=2
154110         sugov:4-577   (  577) [007] d..2 82320.491982: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
154111    RenderThread-16607 (10023) [005] d..1 82320.491986: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154112          <idle>-0     (-----) [007] d..1 82320.491989: cpu_idle: state=0 cpu_id=7
154113    RenderThread-16607 (10023) [005] d..2 82320.492000: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154114          <idle>-0     (-----) [004] .n.1 82320.492005: cpu_idle: state=4294967295 cpu_id=4
154115          <idle>-0     (-----) [004] d..2 82320.492015: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
154116          <idle>-0     (-----) [001] d.s3 82320.492027: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
154117          <idle>-0     (-----) [007] dnh2 82320.492049: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
154118          <idle>-0     (-----) [001] ...1 82320.492049: cpu_idle: state=4294967295 cpu_id=1
154119          <idle>-0     (-----) [007] .n.1 82320.492052: cpu_idle: state=4294967295 cpu_id=7
154120    RenderThread-16607 (10023) [005] .... 82320.492052: binder_transaction: transaction=1573317 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
154121          <idle>-0     (-----) [001] d..1 82320.492054: cpu_idle: state=0 cpu_id=1
154122    RenderThread-16607 (10023) [005] .... 82320.492056: binder_transaction_alloc_buf: transaction=1573317 data_size=104 offsets_size=0
154123          <idle>-0     (-----) [007] d..2 82320.492056: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
154124    RenderThread-16607 (10023) [005] ...2 82320.492059: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
154125         sugov:4-577   (  577) [007] .... 82320.492060: cpu_frequency: state=979200 cpu_id=5
154126    RenderThread-16607 (10023) [005] d..4 82320.492061: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=001
154127         sugov:4-577   (  577) [007] .... 82320.492063: cpu_frequency: state=979200 cpu_id=6
154128         sugov:4-577   (  577) [007] .... 82320.492065: cpu_frequency: state=979200 cpu_id=7
154129         sugov:4-577   (  577) [007] d..2 82320.492076: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
154130    RenderThread-16607 (10023) [005] d..5 82320.492077: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
154131          <idle>-0     (-----) [007] d..1 82320.492081: cpu_idle: state=0 cpu_id=7
154132    RenderThread-16607 (10023) [005] d.h5 82320.492111: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
154133 s.nexuslauncher-10023 (10023) [004] d..2 82320.492121: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
154134          <idle>-0     (-----) [002] dnh2 82320.492131: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
154135   Binder:8858_1-8871  ( 8858) [004] .... 82320.492134: binder_transaction_received: transaction=1573317
154136    RenderThread-16607 (10023) [005] d..2 82320.492135: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
154137          <idle>-0     (-----) [002] .n.1 82320.492137: cpu_idle: state=4294967295 cpu_id=2
154138          <idle>-0     (-----) [005] d..1 82320.492145: cpu_idle: state=0 cpu_id=5
154139          <idle>-0     (-----) [002] d..2 82320.492146: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
154140         sugov:0-576   (  576) [002] .... 82320.492164: clk_set_rate: pwrcl_clk 1689600000
154141   Binder:8858_1-8871  ( 8858) [004] .... 82320.492185: binder_transaction: transaction=1573318 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
154142   Binder:8858_1-8871  ( 8858) [004] .... 82320.492189: binder_transaction_alloc_buf: transaction=1573318 data_size=52 offsets_size=8
154143   Binder:8858_1-8871  ( 8858) [004] d..2 82320.492195: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
154144   Binder:8858_1-8871  ( 8858) [004] d..3 82320.492209: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
154145   Binder:8858_1-8871  ( 8858) [004] .... 82320.492211: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
154146   Binder:8858_1-8871  ( 8858) [004] d..2 82320.492239: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
154147    RenderThread-16607 (10023) [004] .... 82320.492246: binder_transaction_received: transaction=1573318
154148         sugov:0-576   (  576) [002] d..2 82320.492250: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
154149          <idle>-0     (-----) [001] d.s3 82320.492259: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
154150          <idle>-0     (-----) [002] d..1 82320.492260: cpu_idle: state=0 cpu_id=2
154151          <idle>-0     (-----) [001] d.s4 82320.492274: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
154152          <idle>-0     (-----) [002] .n.1 82320.492280: cpu_idle: state=4294967295 cpu_id=2
154153          <idle>-0     (-----) [001] ...1 82320.492282: cpu_idle: state=4294967295 cpu_id=1
154154          <idle>-0     (-----) [001] d..1 82320.492287: cpu_idle: state=0 cpu_id=1
154155          <idle>-0     (-----) [002] d..2 82320.492289: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
154156         sugov:0-576   (  576) [002] .... 82320.492302: clk_set_rate: cpu3_pwrcl_clk 825600000
154157         sugov:0-576   (  576) [002] .... 82320.492310: clk_set_rate: cpu2_pwrcl_clk 825600000
154158         sugov:0-576   (  576) [002] .... 82320.492318: clk_set_rate: cpu1_pwrcl_clk 825600000
154159         sugov:0-576   (  576) [002] .... 82320.492325: clk_set_rate: cpu0_pwrcl_clk 1689600000
154160         sugov:0-576   (  576) [002] .... 82320.492334: cpu_frequency: state=1689600 cpu_id=0
154161         sugov:0-576   (  576) [002] .... 82320.492345: cpu_frequency: state=1689600 cpu_id=1
154162         sugov:0-576   (  576) [002] .... 82320.492350: cpu_frequency: state=1689600 cpu_id=2
154163         sugov:0-576   (  576) [002] .... 82320.492354: cpu_frequency: state=1689600 cpu_id=3
154164         sugov:0-576   (  576) [002] d..2 82320.492380: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154165          <idle>-0     (-----) [002] d..1 82320.492390: cpu_idle: state=0 cpu_id=2
154166          <idle>-0     (-----) [003] ...1 82320.493418: cpu_idle: state=4294967295 cpu_id=3
154167          <idle>-0     (-----) [003] d..1 82320.493420: cpu_idle: state=0 cpu_id=3
154168    RenderThread-16607 (10023) [004] d..2 82320.493480: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
154169          <idle>-0     (-----) [004] d..1 82320.493490: cpu_idle: state=0 cpu_id=4
154170          <idle>-0     (-----) [004] d.h2 82320.493570: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
154171          <idle>-0     (-----) [004] d.h3 82320.493576: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
154172          <idle>-0     (-----) [004] dnh3 82320.493578: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
154173          <idle>-0     (-----) [004] .n.1 82320.493583: cpu_idle: state=4294967295 cpu_id=4
154174          <idle>-0     (-----) [004] d..2 82320.493590: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
154175    RenderThread-16607 (10023) [004] .... 82320.493708: binder_transaction: transaction=1573319 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
154176    RenderThread-16607 (10023) [004] .... 82320.493711: binder_transaction_alloc_buf: transaction=1573319 data_size=192 offsets_size=8
154177    RenderThread-16607 (10023) [004] ...2 82320.493716: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
154178    RenderThread-16607 (10023) [004] d..4 82320.493718: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
154179    RenderThread-16607 (10023) [004] dn.5 82320.493726: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
154180    RenderThread-16607 (10023) [004] d..2 82320.493732: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
154181   Binder:8858_1-8871  ( 8858) [004] .... 82320.493740: binder_transaction_received: transaction=1573319
154182   Binder:8858_1-8871  ( 8858) [004] .... 82320.493834: binder_transaction: transaction=1573320 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
154183   Binder:8858_1-8871  ( 8858) [004] .... 82320.493837: binder_transaction_alloc_buf: transaction=1573320 data_size=68 offsets_size=0
154184   Binder:8858_1-8871  ( 8858) [004] .... 82320.493839: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
154185   Binder:8858_1-8871  ( 8858) [004] d..2 82320.493867: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
154186    RenderThread-16607 (10023) [004] .... 82320.493876: binder_transaction_received: transaction=1573320
154187    RenderThread-16607 (10023) [004] d..2 82320.493928: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
154188          <idle>-0     (-----) [004] d..1 82320.493938: cpu_idle: state=0 cpu_id=4
154189              ps-27820 (27820) [000] d.h3 82320.495005: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
154190              ps-27820 (27820) [000] d.h4 82320.495022: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
154191          <idle>-0     (-----) [003] .n.1 82320.495026: cpu_idle: state=4294967295 cpu_id=3
154192          <idle>-0     (-----) [003] d..2 82320.495033: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
154193 kgsl_worker_thr-258   (  258) [003] d..2 82320.495074: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
154194 kgsl_worker_thr-258   (  258) [003] d..3 82320.495105: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
154195          <idle>-0     (-----) [001] d.s2 82320.495124: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154196          <idle>-0     (-----) [001] dns3 82320.495136: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154197 kgsl_worker_thr-258   (  258) [003] d..2 82320.495144: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
154198          <idle>-0     (-----) [001] .n.1 82320.495147: cpu_idle: state=4294967295 cpu_id=1
154199  kworker/u16:15-1311  ( 1311) [003] d..2 82320.495148: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
154200          <idle>-0     (-----) [001] d..2 82320.495154: 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
154201     rcu_preempt-7     (    7) [001] d..2 82320.495162: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
154202     rcu_preempt-7     (    7) [001] d..3 82320.495174: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
154203  kworker/u16:15-1311  ( 1311) [003] d..3 82320.495180: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
154204          <idle>-0     (-----) [002] d.h2 82320.495186: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
154205     rcu_preempt-7     (    7) [001] d..2 82320.495191: 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
154206          <idle>-0     (-----) [002] dnh3 82320.495195: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
154207         rcuop/2-29    (   29) [001] d..2 82320.495195: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
154208          <idle>-0     (-----) [002] .n.1 82320.495200: cpu_idle: state=4294967295 cpu_id=2
154209          <idle>-0     (-----) [002] d..2 82320.495207: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
154210         rcuop/2-29    (   29) [001] d..3 82320.495217: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=002
154211        DispSync-8879  ( 8858) [002] d..1 82320.495219: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
154212         rcuop/2-29    (   29) [001] d..2 82320.495228: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154213        DispSync-8879  ( 8858) [002] d..2 82320.495236: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
154214  kworker/u16:13-1147  ( 1147) [001] d..2 82320.495242: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=R+ ==> next_comm=sfEventThread next_pid=8882 next_prio=97
154215        DispSync-8879  ( 8858) [002] d..2 82320.495257: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=rcuop/3 next_pid=37 next_prio=120
154216   sfEventThread-8882  ( 8858) [001] d..3 82320.495278: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
154217         rcuop/3-37    (   37) [002] d..2 82320.495278: 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
154218          <idle>-0     (-----) [002] d..1 82320.495284: cpu_idle: state=0 cpu_id=2
154219   sfEventThread-8882  ( 8858) [001] d..4 82320.495295: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
154220          <idle>-0     (-----) [002] .n.1 82320.495299: cpu_idle: state=4294967295 cpu_id=2
154221          <idle>-0     (-----) [002] d..2 82320.495305: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
154222   sfEventThread-8882  ( 8858) [001] d..2 82320.495309: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154223  kworker/u16:15-1311  ( 1311) [003] d..2 82320.495340: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154224          <idle>-0     (-----) [003] d..1 82320.495349: cpu_idle: state=0 cpu_id=3
154225  kworker/u16:13-1147  ( 1147) [001] .... 82320.495394: clk_set_rate: l3_cluster0_vote_clk 940800000
154226  kworker/u16:13-1147  ( 1147) [001] .... 82320.495398: clk_set_rate: l3_clk 940800000
154227  kworker/u16:13-1147  ( 1147) [001] d..2 82320.495530: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
154228          <idle>-0     (-----) [001] d.s4 82320.495557: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
154229          <idle>-0     (-----) [001] d.s5 82320.495563: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
154230          <idle>-0     (-----) [001] dns5 82320.495565: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
154231          <idle>-0     (-----) [001] d..2 82320.495573: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154232  surfaceflinger-8858  ( 8858) [002] d..1 82320.495582: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
154233  surfaceflinger-8858  ( 8858) [002] d..2 82320.495599: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
154234          <idle>-0     (-----) [003] .n.1 82320.495604: cpu_idle: state=4294967295 cpu_id=3
154235          <idle>-0     (-----) [003] d..2 82320.495611: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
154236   sfEventThread-8882  ( 8858) [003] d..2 82320.495635: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154237          <idle>-0     (-----) [003] d..1 82320.495656: cpu_idle: state=0 cpu_id=3
154238          <idle>-0     (-----) [003] ...1 82320.495665: cpu_idle: state=4294967295 cpu_id=3
154239          <idle>-0     (-----) [003] d..1 82320.495667: cpu_idle: state=0 cpu_id=3
154240  surfaceflinger-8858  ( 8858) [002] ...1 82320.495751: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
154241  kworker/u16:13-1147  ( 1147) [001] d..2 82320.495754: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
154242  surfaceflinger-8858  ( 8858) [002] ...1 82320.495757: tracing_mark_write: E|8858
154243          <idle>-0     (-----) [001] d.s3 82320.495780: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
154244          <idle>-0     (-----) [001] d.s4 82320.495785: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
154245          <idle>-0     (-----) [001] dns4 82320.495788: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
154246          <idle>-0     (-----) [001] d..2 82320.495796: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154247  surfaceflinger-8858  ( 8858) [002] .... 82320.495803: binder_transaction: transaction=1573321 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
154248  surfaceflinger-8858  ( 8858) [002] .... 82320.495806: binder_transaction_alloc_buf: transaction=1573321 data_size=540 offsets_size=96
154249  kworker/u16:13-1147  ( 1147) [001] d..2 82320.495811: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154250          <idle>-0     (-----) [001] d..1 82320.495818: cpu_idle: state=0 cpu_id=1
154251  surfaceflinger-8858  ( 8858) [002] ...2 82320.495823: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
154252  surfaceflinger-8858  ( 8858) [002] d..4 82320.495829: sched_waking: [email protected] pid=619 prio=98 target_cpu=002
154253  surfaceflinger-8858  ( 8858) [002] d..5 82320.495847: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
154254          <idle>-0     (-----) [001] .n.1 82320.495852: cpu_idle: state=4294967295 cpu_id=1
154255          <idle>-0     (-----) [001] d..2 82320.495858: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
154256  surfaceflinger-8858  ( 8858) [002] d..2 82320.495865: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154257 [email protected]   (  619) [001] .... 82320.495865: binder_transaction_received: transaction=1573321
154258          <idle>-0     (-----) [002] d..1 82320.495875: cpu_idle: state=0 cpu_id=2
154259 [email protected]   (  619) [001] ...1 82320.495911: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
154260 [email protected]   (  619) [001] ...1 82320.496004: tracing_mark_write: B|619|HWCSession::PresentDisplay::
154261 [email protected]   (  619) [001] ...1 82320.496134: tracing_mark_write: B|619|HWDeviceDRM::Commit::
154262 [email protected]   (  619) [001] ...1 82320.496145: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
154263 [email protected]   (  619) [001] d..2 82320.496561: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
154264 [email protected]   (  619) [001] d..3 82320.496582: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
154265          <idle>-0     (-----) [002] .n.1 82320.496587: cpu_idle: state=4294967295 cpu_id=2
154266          <idle>-0     (-----) [002] d..2 82320.496594: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
154267 [email protected]   (  619) [001] ...1 82320.496652: tracing_mark_write: E|619
154268 [email protected]   (  619) [001] ...1 82320.496655: tracing_mark_write: E|619
154269 [email protected]   (  619) [001] ...1 82320.496700: tracing_mark_write: E|619
154270 [email protected]   (  619) [001] ...1 82320.496737: tracing_mark_write: E|619
154271 [email protected]   (  619) [001] .... 82320.496747: binder_transaction: transaction=1573322 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
154272 [email protected]   (  619) [001] .... 82320.496749: binder_transaction_alloc_buf: transaction=1573322 data_size=576 offsets_size=112
154273 [email protected]   (  619) [001] d..2 82320.496761: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
154274 [email protected]   (  619) [001] d..3 82320.496777: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
154275 [email protected]   (  619) [001] .... 82320.496780: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
154276          <idle>-0     (-----) [003] .n.1 82320.496781: cpu_idle: state=4294967295 cpu_id=3
154277          <idle>-0     (-----) [003] d..2 82320.496787: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
154278  surfaceflinger-8858  ( 8858) [003] .... 82320.496792: binder_transaction_received: transaction=1573322
154279 [email protected]   (  619) [001] d..2 82320.496832: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154280          <idle>-0     (-----) [001] d..1 82320.496842: cpu_idle: state=0 cpu_id=1
154281 crtc_commit:111-321   (  321) [002] d..2 82320.496915: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
154282          <idle>-0     (-----) [002] d..1 82320.496923: cpu_idle: state=0 cpu_id=2
154283  surfaceflinger-8858  ( 8858) [003] d..2 82320.497068: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154284          <idle>-0     (-----) [003] d..1 82320.497078: cpu_idle: state=0 cpu_id=3
154285          <idle>-0     (-----) [002] ...1 82320.498174: cpu_idle: state=4294967295 cpu_id=2
154286          <idle>-0     (-----) [002] d..1 82320.498176: cpu_idle: state=0 cpu_id=2
154287          <idle>-0     (-----) [003] ...1 82320.498487: cpu_idle: state=4294967295 cpu_id=3
154288          <idle>-0     (-----) [003] d..1 82320.498489: cpu_idle: state=0 cpu_id=3
154289          <idle>-0     (-----) [001] d.s2 82320.501792: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154290          <idle>-0     (-----) [001] dns3 82320.501802: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154291          <idle>-0     (-----) [001] .n.1 82320.501809: cpu_idle: state=4294967295 cpu_id=1
154292          <idle>-0     (-----) [001] d..2 82320.501816: 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
154293     rcu_preempt-7     (    7) [001] d..2 82320.501824: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
154294     rcu_preempt-7     (    7) [001] d..3 82320.501835: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
154295     rcu_preempt-7     (    7) [001] d..2 82320.501837: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
154296     rcu_preempt-7     (    7) [001] d..3 82320.501847: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=001
154297     rcu_preempt-7     (    7) [001] d..2 82320.501855: 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
154298         rcuop/4-45    (   45) [001] d..2 82320.501859: sched_waking: comm=rcuop/5 pid=53 prio=120 target_cpu=001
154299         rcuop/4-45    (   45) [001] d..3 82320.501868: sched_wakeup: comm=rcuop/5 pid=53 prio=120 target_cpu=001
154300         rcuop/4-45    (   45) [001] d..2 82320.501874: 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
154301         rcuop/0-10    (   10) [001] d..2 82320.501930: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=rcuop/5 next_pid=53 next_prio=120
154302         rcuop/5-53    (   53) [001] d..2 82320.502210: 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
154303          <idle>-0     (-----) [001] d..1 82320.502218: cpu_idle: state=0 cpu_id=1
154304              ps-27820 (27820) [000] d.h4 82320.503578: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154305              ps-27820 (27820) [000] d.h5 82320.503593: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154306              ps-27820 (27820) [000] d.h4 82320.503597: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
154307          <idle>-0     (-----) [002] .n.1 82320.503597: cpu_idle: state=4294967295 cpu_id=2
154308          <idle>-0     (-----) [002] d..2 82320.503604: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
154309              ps-27820 (27820) [000] d.h5 82320.503615: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
154310          <idle>-0     (-----) [001] .n.1 82320.503620: cpu_idle: state=4294967295 cpu_id=1
154311  crtc_event:111-322   (  322) [002] d..2 82320.503626: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154312          <idle>-0     (-----) [001] d..2 82320.503627: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
154313          <idle>-0     (-----) [002] d..1 82320.503630: cpu_idle: state=0 cpu_id=2
154314 crtc_commit:111-321   (  321) [001] d..2 82320.503710: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
154315          <idle>-0     (-----) [001] d..1 82320.503715: cpu_idle: state=0 cpu_id=1
154316          <idle>-0     (-----) [001] d.s3 82320.505120: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154317              ps-27820 (27820) [000] d.s2 82320.505125: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
154318          <idle>-0     (-----) [001] d.s4 82320.505130: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154319          <idle>-0     (-----) [002] .n.1 82320.505135: cpu_idle: state=4294967295 cpu_id=2
154320          <idle>-0     (-----) [002] d..2 82320.505141: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
154321          <idle>-0     (-----) [001] ...1 82320.505144: cpu_idle: state=4294967295 cpu_id=1
154322          <idle>-0     (-----) [001] d..1 82320.505147: cpu_idle: state=0 cpu_id=1
154323              ps-27820 (27820) [000] d.s3 82320.505154: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
154324  crtc_event:111-322   (  322) [002] d..2 82320.505163: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154325  kworker/u16:13-1147  ( 1147) [002] d..2 82320.505302: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
154326          <idle>-0     (-----) [002] d..1 82320.505308: cpu_idle: state=0 cpu_id=2
154327          <idle>-0     (-----) [001] d.s3 82320.505330: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
154328          <idle>-0     (-----) [001] d.s4 82320.505337: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
154329          <idle>-0     (-----) [001] d.s4 82320.505343: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
154330          <idle>-0     (-----) [002] .n.1 82320.505348: cpu_idle: state=4294967295 cpu_id=2
154331          <idle>-0     (-----) [001] ...1 82320.505349: cpu_idle: state=4294967295 cpu_id=1
154332          <idle>-0     (-----) [001] d..1 82320.505352: cpu_idle: state=0 cpu_id=1
154333          <idle>-0     (-----) [002] d..2 82320.505355: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154334  kworker/u16:13-1147  ( 1147) [002] d..2 82320.505465: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
154335          <idle>-0     (-----) [002] d..1 82320.505471: cpu_idle: state=0 cpu_id=2
154336          <idle>-0     (-----) [001] d.s3 82320.505492: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
154337          <idle>-0     (-----) [001] d.s4 82320.505498: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
154338          <idle>-0     (-----) [001] d.s4 82320.505503: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
154339          <idle>-0     (-----) [001] ...1 82320.505507: cpu_idle: state=4294967295 cpu_id=1
154340          <idle>-0     (-----) [002] .n.1 82320.505508: cpu_idle: state=4294967295 cpu_id=2
154341          <idle>-0     (-----) [001] d..1 82320.505510: cpu_idle: state=0 cpu_id=1
154342          <idle>-0     (-----) [002] d..2 82320.505514: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154343  kworker/u16:13-1147  ( 1147) [002] .... 82320.505558: clk_set_rate: l3_cluster0_vote_clk 1305600000
154344  kworker/u16:13-1147  ( 1147) [002] .... 82320.505562: clk_set_rate: l3_clk 1305600000
154345  kworker/u16:13-1147  ( 1147) [002] .... 82320.505587: clk_set_rate: l3_cluster1_vote_clk 300000000
154346  kworker/u16:13-1147  ( 1147) [002] d..2 82320.505602: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154347          <idle>-0     (-----) [002] d..1 82320.505609: cpu_idle: state=0 cpu_id=2
154348              ps-27820 (27820) [000] d.h4 82320.505918: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
154349              ps-27820 (27820) [000] d.h5 82320.505930: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
154350          <idle>-0     (-----) [001] .n.1 82320.505934: cpu_idle: state=4294967295 cpu_id=1
154351          <idle>-0     (-----) [001] d..2 82320.505939: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
154352 crtc_commit:111-321   (  321) [001] d..2 82320.505982: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154353          <idle>-0     (-----) [001] d..1 82320.505986: cpu_idle: state=0 cpu_id=1
154354              ps-27820 (27820) [000] d.h4 82320.506219: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154355              ps-27820 (27820) [000] d.h5 82320.506230: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154356          <idle>-0     (-----) [002] .n.1 82320.506235: cpu_idle: state=4294967295 cpu_id=2
154357          <idle>-0     (-----) [002] d..2 82320.506240: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
154358  crtc_event:111-322   (  322) [002] d..2 82320.506254: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154359          <idle>-0     (-----) [002] d..1 82320.506259: cpu_idle: state=0 cpu_id=2
154360              ps-27820 (27820) [000] d..2 82320.507096: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=005
154361              ps-27820 (27820) [000] dn.3 82320.507117: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=000
154362              ps-27820 (27820) [000] d..2 82320.507154: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
154363 shell svc 27816-27817 (  960) [000] d..2 82320.507204: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
154364 shell svc 27816-27817 (  960) [000] d..3 82320.507235: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
154365          <idle>-0     (-----) [001] .n.1 82320.507239: cpu_idle: state=4294967295 cpu_id=1
154366          <idle>-0     (-----) [001] d..2 82320.507245: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
154367 shell svc 27816-27817 (  960) [000] d..2 82320.507254: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
154368            adbd-960   (  960) [001] d..1 82320.507385: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
154369            adbd-960   (  960) [001] d..2 82320.507413: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
154370            adbd-960   (  960) [001] d..2 82320.507473: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
154371            adbd-24055 (  960) [001] d..2 82320.507561: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154372          <idle>-0     (-----) [001] d..1 82320.507567: cpu_idle: state=0 cpu_id=1
154373          <idle>-0     (-----) [003] d.h3 82320.507578: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154374          <idle>-0     (-----) [003] dnh4 82320.507590: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154375          <idle>-0     (-----) [003] .n.1 82320.507596: cpu_idle: state=4294967295 cpu_id=3
154376          <idle>-0     (-----) [003] d..2 82320.507603: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
154377   kworker/u17:0-98    (   98) [003] d..2 82320.507623: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154378   kworker/u17:0-98    (   98) [003] d..3 82320.507633: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154379   kworker/u17:0-98    (   98) [003] d..2 82320.507649: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
154380     kworker/3:1-25210 (25210) [003] d..2 82320.507659: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
154381          <idle>-0     (-----) [002] d.h2 82320.507665: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
154382     kworker/3:1-25210 (25210) [003] d..3 82320.507669: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
154383          <idle>-0     (-----) [002] dnh3 82320.507672: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
154384          <idle>-0     (-----) [001] .n.1 82320.507673: cpu_idle: state=4294967295 cpu_id=1
154385          <idle>-0     (-----) [002] .n.1 82320.507677: cpu_idle: state=4294967295 cpu_id=2
154386          <idle>-0     (-----) [001] d..2 82320.507679: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
154387          <idle>-0     (-----) [002] d..2 82320.507682: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
154388     kworker/3:1-25210 (25210) [003] d..2 82320.507685: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154389          <idle>-0     (-----) [003] d..1 82320.507691: cpu_idle: state=0 cpu_id=3
154390        DispSync-8879  ( 8858) [002] d..1 82320.507694: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
154391        DispSync-8879  ( 8858) [002] d..2 82320.507704: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
154392          <idle>-0     (-----) [003] .n.1 82320.507709: cpu_idle: state=4294967295 cpu_id=3
154393          <idle>-0     (-----) [003] d..2 82320.507715: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
154394            adbd-24055 (  960) [001] d..2 82320.507720: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154395        DispSync-8879  ( 8858) [002] d..2 82320.507721: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154396          <idle>-0     (-----) [001] d..1 82320.507725: cpu_idle: state=0 cpu_id=1
154397          <idle>-0     (-----) [002] d..1 82320.507727: cpu_idle: state=0 cpu_id=2
154398  appEventThread-8881  ( 8858) [003] d..3 82320.507747: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154399          <idle>-0     (-----) [004] dnh2 82320.507766: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154400          <idle>-0     (-----) [004] .n.1 82320.507770: cpu_idle: state=4294967295 cpu_id=4
154401          <idle>-0     (-----) [004] d..2 82320.507777: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
154402  appEventThread-8881  ( 8858) [003] d..2 82320.507778: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154403          <idle>-0     (-----) [003] d..1 82320.507785: cpu_idle: state=0 cpu_id=3
154404          <idle>-0     (-----) [003] d.h3 82320.507833: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154405          <idle>-0     (-----) [003] dnh4 82320.507839: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154406          <idle>-0     (-----) [003] .n.1 82320.507844: cpu_idle: state=4294967295 cpu_id=3
154407          <idle>-0     (-----) [003] d..2 82320.507850: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
154408   kworker/u17:0-98    (   98) [003] d..2 82320.507858: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154409   kworker/u17:0-98    (   98) [003] d..3 82320.507863: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154410   kworker/u17:0-98    (   98) [003] d..2 82320.507875: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
154411     kworker/3:1-25210 (25210) [003] d..2 82320.507880: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
154412     kworker/3:1-25210 (25210) [003] d..3 82320.507889: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
154413          <idle>-0     (-----) [001] .n.1 82320.507893: cpu_idle: state=4294967295 cpu_id=1
154414          <idle>-0     (-----) [001] d..2 82320.507898: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
154415     kworker/3:1-25210 (25210) [003] d..2 82320.507902: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154416          <idle>-0     (-----) [003] d..1 82320.507909: cpu_idle: state=0 cpu_id=3
154417            adbd-24055 (  960) [001] d..2 82320.507926: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154418          <idle>-0     (-----) [001] d..1 82320.507930: cpu_idle: state=0 cpu_id=1
154419 s.nexuslauncher-10023 (10023) [004] .... 82320.508022: binder_transaction: transaction=1573323 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
154420 s.nexuslauncher-10023 (10023) [004] .... 82320.508026: binder_transaction_alloc_buf: transaction=1573323 data_size=80 offsets_size=0
154421 s.nexuslauncher-10023 (10023) [004] d..4 82320.508029: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
154422          <idle>-0     (-----) [001] dnh2 82320.508075: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
154423          <idle>-0     (-----) [001] .n.1 82320.508079: cpu_idle: state=4294967295 cpu_id=1
154424          <idle>-0     (-----) [001] d..2 82320.508083: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
154425   Binder:8858_1-8871  ( 8858) [001] .... 82320.508088: binder_transaction_received: transaction=1573323
154426 s.nexuslauncher-10023 (10023) [004] d..3 82320.508094: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
154427   Binder:8858_1-8871  ( 8858) [001] d..1 82320.508110: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
154428 s.nexuslauncher-10023 (10023) [004] d..4 82320.508110: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
154429          <idle>-0     (-----) [003] d.h3 82320.508112: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154430          <idle>-0     (-----) [005] .n.1 82320.508115: cpu_idle: state=4294967295 cpu_id=5
154431   Binder:8858_1-8871  ( 8858) [001] d..2 82320.508121: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
154432          <idle>-0     (-----) [005] d..2 82320.508122: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
154433          <idle>-0     (-----) [003] dnh4 82320.508124: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154434          <idle>-0     (-----) [003] .n.1 82320.508131: cpu_idle: state=4294967295 cpu_id=3
154435          <idle>-0     (-----) [003] d..2 82320.508137: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
154436   Binder:8858_1-8871  ( 8858) [001] d..2 82320.508147: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154437          <idle>-0     (-----) [001] d..1 82320.508152: cpu_idle: state=0 cpu_id=1
154438    RenderThread-16607 (10023) [005] d..2 82320.508154: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
154439  appEventThread-8881  ( 8858) [003] d..2 82320.508157: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
154440          <idle>-0     (-----) [005] d..1 82320.508161: cpu_idle: state=0 cpu_id=5
154441   kworker/u17:0-98    (   98) [003] d..2 82320.508165: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154442   kworker/u17:0-98    (   98) [003] d..3 82320.508171: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154443   kworker/u17:0-98    (   98) [003] d..2 82320.508183: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
154444     kworker/3:1-25210 (25210) [003] d..2 82320.508194: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=002
154445     kworker/3:1-25210 (25210) [003] d..3 82320.508219: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
154446     kworker/3:1-25210 (25210) [003] d..2 82320.508228: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
154447            adbd-24054 (  960) [003] d..2 82320.508251: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
154448            adbd-24054 (  960) [003] d..3 82320.508262: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
154449            adbd-24054 (  960) [003] d..2 82320.508307: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
154450 s.nexuslauncher-10023 (10023) [004] d..3 82320.508323: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
154451 s.nexuslauncher-10023 (10023) [004] d..4 82320.508335: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
154452          <idle>-0     (-----) [005] .n.1 82320.508340: cpu_idle: state=4294967295 cpu_id=5
154453          <idle>-0     (-----) [005] d..2 82320.508347: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
154454 s.nexuslauncher-10023 (10023) [004] d..2 82320.508354: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
154455          <idle>-0     (-----) [004] d..1 82320.508364: cpu_idle: state=0 cpu_id=4
154456            adbd-960   (  960) [003] d..2 82320.508386: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154457          <idle>-0     (-----) [003] d..1 82320.508395: cpu_idle: state=0 cpu_id=3
154458          <idle>-0     (-----) [001] d.s2 82320.508454: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154459          <idle>-0     (-----) [001] dns3 82320.508464: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154460          <idle>-0     (-----) [001] .n.1 82320.508469: cpu_idle: state=4294967295 cpu_id=1
154461          <idle>-0     (-----) [001] d..2 82320.508474: 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
154462    RenderThread-16607 (10023) [005] d..1 82320.508491: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154463     rcu_preempt-7     (    7) [001] d..2 82320.508493: 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
154464          <idle>-0     (-----) [001] d..1 82320.508499: cpu_idle: state=0 cpu_id=1
154465    RenderThread-16607 (10023) [005] d..2 82320.508501: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154466          <idle>-0     (-----) [004] .n.1 82320.508507: cpu_idle: state=4294967295 cpu_id=4
154467          <idle>-0     (-----) [004] d..2 82320.508514: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
154468    RenderThread-16607 (10023) [005] .... 82320.508535: binder_transaction: transaction=1573324 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
154469    RenderThread-16607 (10023) [005] .... 82320.508537: binder_transaction_alloc_buf: transaction=1573324 data_size=104 offsets_size=0
154470    RenderThread-16607 (10023) [005] ...2 82320.508540: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
154471    RenderThread-16607 (10023) [005] d..4 82320.508542: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=001
154472    RenderThread-16607 (10023) [005] d..5 82320.508555: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
154473    RenderThread-16607 (10023) [005] d..2 82320.508586: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
154474 s.nexuslauncher-10023 (10023) [004] d..2 82320.508592: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
154475   Binder:8858_1-8871  ( 8858) [005] .... 82320.508596: binder_transaction_received: transaction=1573324
154476          <idle>-0     (-----) [004] d..1 82320.508600: cpu_idle: state=0 cpu_id=4
154477   Binder:8858_1-8871  ( 8858) [005] .... 82320.508639: binder_transaction: transaction=1573325 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
154478   Binder:8858_1-8871  ( 8858) [005] .... 82320.508642: binder_transaction_alloc_buf: transaction=1573325 data_size=52 offsets_size=8
154479   Binder:8858_1-8871  ( 8858) [005] d..2 82320.508647: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
154480   Binder:8858_1-8871  ( 8858) [005] d..3 82320.508655: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
154481   Binder:8858_1-8871  ( 8858) [005] .... 82320.508657: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
154482   Binder:8858_1-8871  ( 8858) [005] d..2 82320.508682: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
154483    RenderThread-16607 (10023) [005] .... 82320.508688: binder_transaction_received: transaction=1573325
154484          <idle>-0     (-----) [003] ...1 82320.509743: cpu_idle: state=4294967295 cpu_id=3
154485          <idle>-0     (-----) [003] d..1 82320.509746: cpu_idle: state=0 cpu_id=3
154486    RenderThread-16607 (10023) [005] d..2 82320.509850: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
154487          <idle>-0     (-----) [005] d..1 82320.509859: cpu_idle: state=0 cpu_id=5
154488          <idle>-0     (-----) [005] d.h2 82320.509942: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
154489          <idle>-0     (-----) [005] d.h3 82320.509948: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
154490          <idle>-0     (-----) [005] dnh3 82320.509950: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
154491          <idle>-0     (-----) [005] .n.1 82320.509955: cpu_idle: state=4294967295 cpu_id=5
154492          <idle>-0     (-----) [005] d..2 82320.509962: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
154493    RenderThread-16607 (10023) [005] .... 82320.510071: binder_transaction: transaction=1573326 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
154494    RenderThread-16607 (10023) [005] .... 82320.510073: binder_transaction_alloc_buf: transaction=1573326 data_size=192 offsets_size=8
154495    RenderThread-16607 (10023) [005] ...2 82320.510079: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
154496    RenderThread-16607 (10023) [005] d..4 82320.510081: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
154497    RenderThread-16607 (10023) [005] dn.5 82320.510087: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
154498    RenderThread-16607 (10023) [005] d..2 82320.510093: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
154499   Binder:8858_1-8871  ( 8858) [005] .... 82320.510101: binder_transaction_received: transaction=1573326
154500   Binder:8858_1-8871  ( 8858) [005] .... 82320.510189: binder_transaction: transaction=1573327 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
154501   Binder:8858_1-8871  ( 8858) [005] .... 82320.510193: binder_transaction_alloc_buf: transaction=1573327 data_size=68 offsets_size=0
154502   Binder:8858_1-8871  ( 8858) [005] .... 82320.510195: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
154503   Binder:8858_1-8871  ( 8858) [005] d..2 82320.510222: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
154504    RenderThread-16607 (10023) [005] .... 82320.510229: binder_transaction_received: transaction=1573327
154505    RenderThread-16607 (10023) [005] d..2 82320.510278: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
154506          <idle>-0     (-----) [005] d..1 82320.510288: cpu_idle: state=0 cpu_id=5
154507              ps-27820 (27820) [000] d.h3 82320.511384: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
154508              ps-27820 (27820) [000] d.h4 82320.511398: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
154509          <idle>-0     (-----) [003] .n.1 82320.511402: cpu_idle: state=4294967295 cpu_id=3
154510          <idle>-0     (-----) [003] d..2 82320.511408: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
154511 kgsl_worker_thr-258   (  258) [003] d..2 82320.511448: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
154512 kgsl_worker_thr-258   (  258) [003] d..3 82320.511473: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154513 kgsl_worker_thr-258   (  258) [003] d..2 82320.511487: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154514  kworker/u16:13-1147  ( 1147) [003] d..2 82320.511644: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154515          <idle>-0     (-----) [003] d..1 82320.511652: cpu_idle: state=0 cpu_id=3
154516          <idle>-0     (-----) [002] d.h2 82320.511654: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
154517          <idle>-0     (-----) [002] dnh3 82320.511660: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
154518          <idle>-0     (-----) [002] .n.1 82320.511665: cpu_idle: state=4294967295 cpu_id=2
154519          <idle>-0     (-----) [002] d..2 82320.511670: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
154520        DispSync-8879  ( 8858) [002] d..1 82320.511677: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
154521        DispSync-8879  ( 8858) [002] d..2 82320.511686: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
154522          <idle>-0     (-----) [003] .n.1 82320.511691: cpu_idle: state=4294967295 cpu_id=3
154523          <idle>-0     (-----) [003] d..2 82320.511697: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
154524        DispSync-8879  ( 8858) [002] d..2 82320.511700: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154525          <idle>-0     (-----) [002] d..1 82320.511706: cpu_idle: state=0 cpu_id=2
154526   sfEventThread-8882  ( 8858) [003] d..3 82320.511728: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
154527   sfEventThread-8882  ( 8858) [003] d..4 82320.511746: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
154528          <idle>-0     (-----) [002] .n.1 82320.511750: cpu_idle: state=4294967295 cpu_id=2
154529          <idle>-0     (-----) [002] d..2 82320.511756: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
154530   sfEventThread-8882  ( 8858) [003] d..2 82320.511764: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154531          <idle>-0     (-----) [003] d..1 82320.511772: cpu_idle: state=0 cpu_id=3
154532  surfaceflinger-8858  ( 8858) [002] d.H2 82320.511837: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
154533  surfaceflinger-8858  ( 8858) [002] d.H2 82320.511847: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
154534          <idle>-0     (-----) [007] dnh2 82320.511853: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
154535          <idle>-0     (-----) [007] .n.1 82320.511856: cpu_idle: state=4294967295 cpu_id=7
154536          <idle>-0     (-----) [007] d..2 82320.511861: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
154537  surfaceflinger-8858  ( 8858) [002] d.H3 82320.511863: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
154538          <idle>-0     (-----) [003] .n.1 82320.511868: cpu_idle: state=4294967295 cpu_id=3
154539         sugov:4-577   (  577) [007] .... 82320.511873: clk_set_rate: perfcl_clk 825600000
154540         sugov:4-577   (  577) [007] .... 82320.511874: clk_set_rate: cpu7_perfcl_clk 979200000
154541          <idle>-0     (-----) [003] d..2 82320.511874: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
154542         sugov:4-577   (  577) [007] .... 82320.511879: clk_set_rate: cpu6_perfcl_clk 979200000
154543         sugov:4-577   (  577) [007] .... 82320.511884: clk_set_rate: cpu5_perfcl_clk 979200000
154544         sugov:4-577   (  577) [007] .... 82320.511888: clk_set_rate: cpu4_perfcl_clk 825600000
154545         sugov:4-577   (  577) [007] .... 82320.511894: cpu_frequency: state=825600 cpu_id=4
154546         sugov:4-577   (  577) [007] .... 82320.511900: cpu_frequency: state=825600 cpu_id=5
154547         sugov:4-577   (  577) [007] .... 82320.511904: cpu_frequency: state=825600 cpu_id=6
154548         sugov:0-576   (  576) [003] .... 82320.511906: clk_set_rate: pwrcl_clk 1766400000
154549         sugov:4-577   (  577) [007] .... 82320.511907: cpu_frequency: state=825600 cpu_id=7
154550         sugov:0-576   (  576) [003] .... 82320.511914: clk_set_rate: cpu3_pwrcl_clk 1689600000
154551         sugov:0-576   (  576) [003] .... 82320.511921: clk_set_rate: cpu2_pwrcl_clk 1689600000
154552         sugov:4-577   (  577) [007] d..2 82320.511926: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
154553         sugov:0-576   (  576) [003] .... 82320.511927: clk_set_rate: cpu1_pwrcl_clk 1689600000
154554          <idle>-0     (-----) [007] d..1 82320.511932: cpu_idle: state=0 cpu_id=7
154555         sugov:0-576   (  576) [003] .... 82320.511933: clk_set_rate: cpu0_pwrcl_clk 1766400000
154556         sugov:0-576   (  576) [003] .... 82320.511939: cpu_frequency: state=1766400 cpu_id=0
154557         sugov:0-576   (  576) [003] d..2 82320.512059: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
154558          <idle>-0     (-----) [003] d..1 82320.512067: cpu_idle: state=0 cpu_id=3
154559  surfaceflinger-8858  ( 8858) [002] d..1 82320.512085: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
154560          <idle>-0     (-----) [001] d.s3 82320.512087: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
154561  surfaceflinger-8858  ( 8858) [002] d..2 82320.512097: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
154562          <idle>-0     (-----) [001] d.s4 82320.512100: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
154563          <idle>-0     (-----) [003] .n.1 82320.512102: cpu_idle: state=4294967295 cpu_id=3
154564          <idle>-0     (-----) [001] ...1 82320.512106: cpu_idle: state=4294967295 cpu_id=1
154565          <idle>-0     (-----) [003] d..2 82320.512107: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
154566          <idle>-0     (-----) [001] d..1 82320.512108: cpu_idle: state=0 cpu_id=1
154567         sugov:0-576   (  576) [003] .... 82320.512128: cpu_frequency: state=1766400 cpu_id=1
154568          <idle>-0     (-----) [001] .n.1 82320.512128: cpu_idle: state=4294967295 cpu_id=1
154569         sugov:0-576   (  576) [003] .... 82320.512132: cpu_frequency: state=1766400 cpu_id=2
154570         sugov:0-576   (  576) [003] .... 82320.512134: cpu_frequency: state=1766400 cpu_id=3
154571          <idle>-0     (-----) [001] d..2 82320.512134: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
154572         sugov:0-576   (  576) [003] d..2 82320.512145: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154573          <idle>-0     (-----) [003] d..1 82320.512151: cpu_idle: state=0 cpu_id=3
154574   sfEventThread-8882  ( 8858) [001] d..2 82320.512159: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154575          <idle>-0     (-----) [001] d..1 82320.512163: cpu_idle: state=0 cpu_id=1
154576  surfaceflinger-8858  ( 8858) [002] ...1 82320.512226: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
154577  surfaceflinger-8858  ( 8858) [002] ...1 82320.512231: tracing_mark_write: E|8858
154578  surfaceflinger-8858  ( 8858) [002] .... 82320.512272: binder_transaction: transaction=1573328 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
154579  surfaceflinger-8858  ( 8858) [002] .... 82320.512275: binder_transaction_alloc_buf: transaction=1573328 data_size=540 offsets_size=96
154580  surfaceflinger-8858  ( 8858) [002] ...2 82320.512290: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
154581  surfaceflinger-8858  ( 8858) [002] d..4 82320.512297: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
154582  surfaceflinger-8858  ( 8858) [002] d..5 82320.512308: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
154583          <idle>-0     (-----) [001] .n.1 82320.512312: cpu_idle: state=4294967295 cpu_id=1
154584          <idle>-0     (-----) [001] d..2 82320.512316: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
154585 [email protected]   (  619) [001] .... 82320.512323: binder_transaction_received: transaction=1573328
154586  surfaceflinger-8858  ( 8858) [002] d..2 82320.512325: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154587          <idle>-0     (-----) [002] d..1 82320.512333: cpu_idle: state=0 cpu_id=2
154588 [email protected]   (  619) [001] ...1 82320.512362: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
154589 [email protected]   (  619) [001] ...1 82320.512444: tracing_mark_write: B|619|HWCSession::PresentDisplay::
154590 [email protected]   (  619) [001] ...1 82320.512560: tracing_mark_write: B|619|HWDeviceDRM::Commit::
154591 [email protected]   (  619) [001] ...1 82320.512568: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
154592 [email protected]   (  619) [001] d..2 82320.512944: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
154593 [email protected]   (  619) [001] d..3 82320.512963: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
154594          <idle>-0     (-----) [003] .n.1 82320.512969: cpu_idle: state=4294967295 cpu_id=3
154595          <idle>-0     (-----) [003] d..2 82320.512974: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
154596 [email protected]   (  619) [001] ...1 82320.513020: tracing_mark_write: E|619
154597 [email protected]   (  619) [001] ...1 82320.513024: tracing_mark_write: E|619
154598 [email protected]   (  619) [001] ...1 82320.513065: tracing_mark_write: E|619
154599 [email protected]   (  619) [001] ...1 82320.513099: tracing_mark_write: E|619
154600 [email protected]   (  619) [001] .... 82320.513109: binder_transaction: transaction=1573329 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
154601 [email protected]   (  619) [001] .... 82320.513112: binder_transaction_alloc_buf: transaction=1573329 data_size=576 offsets_size=112
154602 [email protected]   (  619) [001] d..2 82320.513123: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
154603 [email protected]   (  619) [001] d..3 82320.513134: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
154604 [email protected]   (  619) [001] .... 82320.513136: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
154605          <idle>-0     (-----) [002] .n.1 82320.513138: cpu_idle: state=4294967295 cpu_id=2
154606          <idle>-0     (-----) [002] d..2 82320.513144: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
154607  surfaceflinger-8858  ( 8858) [002] .... 82320.513147: binder_transaction_received: transaction=1573329
154608 [email protected]   (  619) [001] d..2 82320.513182: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154609          <idle>-0     (-----) [001] d..1 82320.513188: cpu_idle: state=0 cpu_id=1
154610 crtc_commit:111-321   (  321) [003] d..2 82320.513274: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
154611          <idle>-0     (-----) [003] d..1 82320.513280: cpu_idle: state=0 cpu_id=3
154612  surfaceflinger-8858  ( 8858) [002] d..2 82320.513397: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154613          <idle>-0     (-----) [002] d..1 82320.513406: cpu_idle: state=0 cpu_id=2
154614          <idle>-0     (-----) [003] ...1 82320.514533: cpu_idle: state=4294967295 cpu_id=3
154615          <idle>-0     (-----) [003] d..1 82320.514535: cpu_idle: state=0 cpu_id=3
154616          <idle>-0     (-----) [001] d.s2 82320.515122: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154617              ps-27820 (27820) [000] d.s2 82320.515127: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154618          <idle>-0     (-----) [002] ...1 82320.515131: cpu_idle: state=4294967295 cpu_id=2
154619          <idle>-0     (-----) [001] dns3 82320.515132: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154620          <idle>-0     (-----) [002] d..1 82320.515134: cpu_idle: state=0 cpu_id=2
154621          <idle>-0     (-----) [001] .n.1 82320.515142: cpu_idle: state=4294967295 cpu_id=1
154622          <idle>-0     (-----) [001] d..2 82320.515148: 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
154623     rcu_preempt-7     (    7) [001] d..2 82320.515154: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
154624              ps-27820 (27820) [000] d.s3 82320.515157: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
154625     rcu_preempt-7     (    7) [001] d..3 82320.515168: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
154626     rcu_preempt-7     (    7) [001] d..2 82320.515178: 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
154627         rcuop/2-29    (   29) [001] d..2 82320.515183: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=002
154628         rcuop/2-29    (   29) [001] d..3 82320.515205: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
154629         rcuop/2-29    (   29) [001] d..2 82320.515212: 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
154630         rcuop/3-37    (   37) [001] d..2 82320.515224: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154631  kworker/u16:13-1147  ( 1147) [001] .... 82320.515291: clk_set_rate: l3_cluster0_vote_clk 1401600000
154632  kworker/u16:13-1147  ( 1147) [001] .... 82320.515294: clk_set_rate: l3_clk 1401600000
154633  kworker/u16:13-1147  ( 1147) [001] d..2 82320.515388: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154634          <idle>-0     (-----) [001] d..1 82320.515396: cpu_idle: state=0 cpu_id=1
154635              ps-27820 (27820) [000] d..2 82320.517641: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=000
154636              ps-27820 (27820) [000] dn.3 82320.517652: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=000
154637              ps-27820 (27820) [000] d..2 82320.517658: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
154638 shell svc 27816-27817 (  960) [000] d..2 82320.517690: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
154639 shell svc 27816-27817 (  960) [000] d..3 82320.517703: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
154640          <idle>-0     (-----) [003] .n.1 82320.517707: cpu_idle: state=4294967295 cpu_id=3
154641          <idle>-0     (-----) [003] d..2 82320.517714: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
154642 shell svc 27816-27817 (  960) [000] d..2 82320.517718: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
154643            adbd-960   (  960) [003] d..1 82320.517780: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
154644            adbd-960   (  960) [003] d..2 82320.517794: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
154645          <idle>-0     (-----) [001] .n.1 82320.517799: cpu_idle: state=4294967295 cpu_id=1
154646          <idle>-0     (-----) [001] d..2 82320.517806: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
154647            adbd-960   (  960) [003] d..2 82320.517839: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154648          <idle>-0     (-----) [003] d..1 82320.517847: cpu_idle: state=0 cpu_id=3
154649            adbd-24055 (  960) [001] d..2 82320.517870: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154650          <idle>-0     (-----) [001] d..1 82320.517877: cpu_idle: state=0 cpu_id=1
154651          <idle>-0     (-----) [003] d.h3 82320.517891: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154652          <idle>-0     (-----) [003] dnh4 82320.517902: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154653          <idle>-0     (-----) [003] .n.1 82320.517907: cpu_idle: state=4294967295 cpu_id=3
154654          <idle>-0     (-----) [003] d..2 82320.517913: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
154655   kworker/u17:0-98    (   98) [003] d..2 82320.517926: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154656   kworker/u17:0-98    (   98) [003] d..3 82320.517934: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154657   kworker/u17:0-98    (   98) [003] d..2 82320.517946: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
154658     kworker/3:1-25210 (25210) [003] d..2 82320.517955: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
154659     kworker/3:1-25210 (25210) [003] d..3 82320.517964: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
154660          <idle>-0     (-----) [001] .n.1 82320.517968: cpu_idle: state=4294967295 cpu_id=1
154661          <idle>-0     (-----) [001] d..2 82320.517974: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
154662     kworker/3:1-25210 (25210) [003] d..2 82320.517977: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154663          <idle>-0     (-----) [003] d..1 82320.517983: cpu_idle: state=0 cpu_id=3
154664            adbd-24055 (  960) [001] d..2 82320.518014: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154665          <idle>-0     (-----) [001] d..1 82320.518020: cpu_idle: state=0 cpu_id=1
154666          <idle>-0     (-----) [003] d.h3 82320.518112: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154667          <idle>-0     (-----) [003] dnh4 82320.518117: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154668          <idle>-0     (-----) [003] .n.1 82320.518121: cpu_idle: state=4294967295 cpu_id=3
154669          <idle>-0     (-----) [003] d..2 82320.518127: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
154670   kworker/u17:0-98    (   98) [003] d..2 82320.518133: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154671   kworker/u17:0-98    (   98) [003] d..3 82320.518138: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154672   kworker/u17:0-98    (   98) [003] d..2 82320.518149: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
154673     kworker/3:1-25210 (25210) [003] d..2 82320.518154: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
154674     kworker/3:1-25210 (25210) [003] d..3 82320.518163: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
154675          <idle>-0     (-----) [001] .n.1 82320.518167: cpu_idle: state=4294967295 cpu_id=1
154676          <idle>-0     (-----) [001] d..2 82320.518174: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
154677     kworker/3:1-25210 (25210) [003] d..2 82320.518176: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154678          <idle>-0     (-----) [003] d..1 82320.518181: cpu_idle: state=0 cpu_id=3
154679            adbd-24055 (  960) [001] d..2 82320.518198: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154680          <idle>-0     (-----) [001] d..1 82320.518204: cpu_idle: state=0 cpu_id=1
154681          <idle>-0     (-----) [003] d.h3 82320.518397: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154682          <idle>-0     (-----) [003] dnh4 82320.518402: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154683          <idle>-0     (-----) [003] .n.1 82320.518407: cpu_idle: state=4294967295 cpu_id=3
154684          <idle>-0     (-----) [003] d..2 82320.518412: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
154685   kworker/u17:0-98    (   98) [003] d..2 82320.518419: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154686   kworker/u17:0-98    (   98) [003] d..3 82320.518424: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
154687   kworker/u17:0-98    (   98) [003] d..2 82320.518435: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
154688     kworker/3:1-25210 (25210) [003] d..2 82320.518462: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
154689     kworker/3:1-25210 (25210) [003] d..3 82320.518473: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
154690     kworker/3:1-25210 (25210) [003] d..2 82320.518481: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
154691            adbd-24054 (  960) [003] d..2 82320.518500: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
154692            adbd-24054 (  960) [003] d..3 82320.518505: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
154693            adbd-24054 (  960) [003] d..2 82320.518545: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
154694            adbd-960   (  960) [003] d..2 82320.518615: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154695          <idle>-0     (-----) [003] d..1 82320.518622: cpu_idle: state=0 cpu_id=3
154696              ps-27820 (27820) [000] d.h4 82320.520046: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154697              ps-27820 (27820) [000] d.h5 82320.520060: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154698              ps-27820 (27820) [000] d.h4 82320.520063: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
154699          <idle>-0     (-----) [002] .n.1 82320.520064: cpu_idle: state=4294967295 cpu_id=2
154700          <idle>-0     (-----) [002] d..2 82320.520070: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
154701              ps-27820 (27820) [000] d.h5 82320.520071: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
154702          <idle>-0     (-----) [003] .n.1 82320.520076: cpu_idle: state=4294967295 cpu_id=3
154703          <idle>-0     (-----) [003] d..2 82320.520081: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
154704  crtc_event:111-322   (  322) [002] d..2 82320.520089: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154705          <idle>-0     (-----) [002] d..1 82320.520094: cpu_idle: state=0 cpu_id=2
154706 crtc_commit:111-321   (  321) [003] d..2 82320.520160: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
154707          <idle>-0     (-----) [003] d..1 82320.520164: cpu_idle: state=0 cpu_id=3
154708          <idle>-0     (-----) [003] d.s3 82320.521787: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154709          <idle>-0     (-----) [001] d.s2 82320.521789: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154710          <idle>-0     (-----) [003] d.s4 82320.521797: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154711          <idle>-0     (-----) [001] dns3 82320.521798: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154712          <idle>-0     (-----) [002] .n.1 82320.521802: cpu_idle: state=4294967295 cpu_id=2
154713          <idle>-0     (-----) [001] .n.1 82320.521806: cpu_idle: state=4294967295 cpu_id=1
154714          <idle>-0     (-----) [002] d..2 82320.521807: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
154715          <idle>-0     (-----) [003] ...1 82320.521810: cpu_idle: state=4294967295 cpu_id=3
154716          <idle>-0     (-----) [001] d..2 82320.521812: 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
154717          <idle>-0     (-----) [003] d..1 82320.521813: cpu_idle: state=0 cpu_id=3
154718  crtc_event:111-322   (  322) [002] d..2 82320.521821: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154719          <idle>-0     (-----) [002] d..1 82320.521825: cpu_idle: state=0 cpu_id=2
154720     rcu_preempt-7     (    7) [001] d..2 82320.521827: 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
154721          <idle>-0     (-----) [001] d..1 82320.521832: cpu_idle: state=0 cpu_id=1
154722              ps-27820 (27820) [000] d.h4 82320.522400: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
154723              ps-27820 (27820) [000] d.h5 82320.522412: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
154724          <idle>-0     (-----) [003] .n.1 82320.522417: cpu_idle: state=4294967295 cpu_id=3
154725          <idle>-0     (-----) [003] d..2 82320.522422: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
154726 crtc_commit:111-321   (  321) [003] d..2 82320.522474: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154727          <idle>-0     (-----) [003] d..1 82320.522479: cpu_idle: state=0 cpu_id=3
154728              ps-27820 (27820) [000] d.h5 82320.522686: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154729              ps-27820 (27820) [000] d.h6 82320.522697: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
154730          <idle>-0     (-----) [002] .n.1 82320.522701: cpu_idle: state=4294967295 cpu_id=2
154731          <idle>-0     (-----) [002] d..2 82320.522706: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
154732  crtc_event:111-322   (  322) [002] d..2 82320.522718: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154733          <idle>-0     (-----) [002] d..1 82320.522722: cpu_idle: state=0 cpu_id=2
154734          <idle>-0     (-----) [003] d.h3 82320.523888: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
154735          <idle>-0     (-----) [003] dnh4 82320.523908: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154736          <idle>-0     (-----) [003] .n.1 82320.523913: cpu_idle: state=4294967295 cpu_id=3
154737          <idle>-0     (-----) [003] d..2 82320.523919: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154738  kworker/u16:13-1147  ( 1147) [003] d..1 82320.523940: clk_disable: gcc_ufs_phy_phy_aux_hw_ctl_clk
154739  kworker/u16:13-1147  ( 1147) [003] d..1 82320.523952: clk_disable: gcc_ufs_phy_phy_aux_clk
154740  kworker/u16:13-1147  ( 1147) [003] d..1 82320.523960: clk_disable: gcc_ufs_phy_phy_aux_clk_src
154741  kworker/u16:13-1147  ( 1147) [003] d..1 82320.523968: clk_disable: gcc_ufs_mem_clkref_clk
154742  kworker/u16:13-1147  ( 1147) [003] d..1 82320.523980: clk_disable: gcc_ufs_phy_axi_hw_ctl_clk
154743  kworker/u16:13-1147  ( 1147) [003] d..1 82320.523983: clk_disable: gcc_ufs_phy_axi_clk
154744  kworker/u16:13-1147  ( 1147) [003] d..1 82320.523990: clk_disable: gcc_aggre_ufs_phy_axi_hw_ctl_clk
154745  kworker/u16:13-1147  ( 1147) [003] d..1 82320.523994: clk_disable: gcc_aggre_ufs_phy_axi_clk
154746  kworker/u16:13-1147  ( 1147) [003] d..1 82320.523999: clk_disable: gcc_ufs_phy_axi_clk_src
154747  kworker/u16:13-1147  ( 1147) [003] d..1 82320.524004: clk_disable: gcc_ufs_phy_ahb_clk
154748  kworker/u16:13-1147  ( 1147) [003] d..1 82320.524010: clk_disable: gcc_ufs_phy_unipro_core_hw_ctl_clk
154749  kworker/u16:13-1147  ( 1147) [003] d..1 82320.524013: clk_disable: gcc_ufs_phy_unipro_core_clk
154750  kworker/u16:13-1147  ( 1147) [003] d..1 82320.524018: clk_disable: gcc_ufs_phy_unipro_core_clk_src
154751  kworker/u16:13-1147  ( 1147) [003] d..1 82320.524023: clk_disable: gcc_ufs_phy_ice_core_hw_ctl_clk
154752  kworker/u16:13-1147  ( 1147) [003] d..1 82320.524026: clk_disable: gcc_ufs_phy_ice_core_clk
154753  kworker/u16:13-1147  ( 1147) [003] d..1 82320.524031: clk_disable: gcc_ufs_phy_ice_core_clk_src
154754          <idle>-0     (-----) [001] ...1 82320.524118: cpu_idle: state=4294967295 cpu_id=1
154755          <idle>-0     (-----) [001] d..1 82320.524120: cpu_idle: state=0 cpu_id=1
154756          <idle>-0     (-----) [002] d.h2 82320.524122: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
154757          <idle>-0     (-----) [002] dnh3 82320.524130: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
154758          <idle>-0     (-----) [002] .n.1 82320.524134: cpu_idle: state=4294967295 cpu_id=2
154759          <idle>-0     (-----) [002] d..2 82320.524139: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
154760        DispSync-8879  ( 8858) [002] d..1 82320.524150: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
154761        DispSync-8879  ( 8858) [002] d..2 82320.524165: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
154762          <idle>-0     (-----) [001] .n.1 82320.524169: cpu_idle: state=4294967295 cpu_id=1
154763          <idle>-0     (-----) [001] d..2 82320.524175: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
154764        DispSync-8879  ( 8858) [002] d..2 82320.524180: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154765          <idle>-0     (-----) [002] d..1 82320.524185: cpu_idle: state=0 cpu_id=2
154766  appEventThread-8881  ( 8858) [001] d..3 82320.524217: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154767          <idle>-0     (-----) [004] dnh2 82320.524238: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154768          <idle>-0     (-----) [004] .n.1 82320.524243: cpu_idle: state=4294967295 cpu_id=4
154769  appEventThread-8881  ( 8858) [001] d..2 82320.524249: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154770          <idle>-0     (-----) [004] d..2 82320.524250: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
154771  kworker/u16:13-1147  ( 1147) [003] d..2 82320.524251: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
154772          <idle>-0     (-----) [001] d..1 82320.524256: cpu_idle: state=0 cpu_id=1
154773          <idle>-0     (-----) [003] d..1 82320.524259: cpu_idle: state=0 cpu_id=3
154774          <idle>-0     (-----) [001] d.s3 82320.524294: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154775          <idle>-0     (-----) [001] d.s4 82320.524301: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
154776          <idle>-0     (-----) [001] d.s4 82320.524306: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154777          <idle>-0     (-----) [003] .n.1 82320.524311: cpu_idle: state=4294967295 cpu_id=3
154778          <idle>-0     (-----) [001] ...1 82320.524311: cpu_idle: state=4294967295 cpu_id=1
154779          <idle>-0     (-----) [001] d..1 82320.524314: cpu_idle: state=0 cpu_id=1
154780          <idle>-0     (-----) [003] d..2 82320.524318: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154781  kworker/u16:13-1147  ( 1147) [003] d..2 82320.524335: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154782          <idle>-0     (-----) [003] d..1 82320.524340: cpu_idle: state=0 cpu_id=3
154783 s.nexuslauncher-10023 (10023) [004] .... 82320.524445: binder_transaction: transaction=1573330 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
154784 s.nexuslauncher-10023 (10023) [004] .... 82320.524450: binder_transaction_alloc_buf: transaction=1573330 data_size=80 offsets_size=0
154785 s.nexuslauncher-10023 (10023) [004] d..4 82320.524454: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
154786          <idle>-0     (-----) [001] dnh2 82320.524507: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
154787          <idle>-0     (-----) [001] .n.1 82320.524510: cpu_idle: state=4294967295 cpu_id=1
154788          <idle>-0     (-----) [001] d..2 82320.524516: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
154789   Binder:8858_1-8871  ( 8858) [001] .... 82320.524520: binder_transaction_received: transaction=1573330
154790 s.nexuslauncher-10023 (10023) [004] d..3 82320.524530: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
154791   Binder:8858_1-8871  ( 8858) [001] d..1 82320.524539: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
154792 s.nexuslauncher-10023 (10023) [004] d..4 82320.524544: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
154793          <idle>-0     (-----) [005] .n.1 82320.524549: cpu_idle: state=4294967295 cpu_id=5
154794   Binder:8858_1-8871  ( 8858) [001] d..2 82320.524554: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
154795          <idle>-0     (-----) [005] d..2 82320.524558: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
154796          <idle>-0     (-----) [002] .n.1 82320.524559: cpu_idle: state=4294967295 cpu_id=2
154797          <idle>-0     (-----) [002] d..2 82320.524564: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
154798   Binder:8858_1-8871  ( 8858) [001] d..2 82320.524576: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154799          <idle>-0     (-----) [001] d..1 82320.524582: cpu_idle: state=0 cpu_id=1
154800    RenderThread-16607 (10023) [005] d..2 82320.524584: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
154801          <idle>-0     (-----) [005] d..1 82320.524591: cpu_idle: state=0 cpu_id=5
154802  appEventThread-8881  ( 8858) [002] d..2 82320.524591: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154803          <idle>-0     (-----) [002] d..1 82320.524596: cpu_idle: state=0 cpu_id=2
154804 s.nexuslauncher-10023 (10023) [004] d..3 82320.524744: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
154805 s.nexuslauncher-10023 (10023) [004] d..4 82320.524758: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
154806          <idle>-0     (-----) [005] .n.1 82320.524762: cpu_idle: state=4294967295 cpu_id=5
154807          <idle>-0     (-----) [005] d..2 82320.524769: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
154808 s.nexuslauncher-10023 (10023) [004] d..2 82320.524779: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
154809          <idle>-0     (-----) [004] d..1 82320.524791: cpu_idle: state=0 cpu_id=4
154810    RenderThread-16607 (10023) [005] d..1 82320.524921: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154811    RenderThread-16607 (10023) [005] d..2 82320.524935: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
154812          <idle>-0     (-----) [004] .n.1 82320.524940: cpu_idle: state=4294967295 cpu_id=4
154813          <idle>-0     (-----) [004] d..2 82320.524948: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
154814    RenderThread-16607 (10023) [005] .... 82320.524974: binder_transaction: transaction=1573331 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
154815    RenderThread-16607 (10023) [005] .... 82320.524977: binder_transaction_alloc_buf: transaction=1573331 data_size=104 offsets_size=0
154816    RenderThread-16607 (10023) [005] ...2 82320.524980: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
154817    RenderThread-16607 (10023) [005] d..4 82320.524982: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=001
154818    RenderThread-16607 (10023) [005] dn.5 82320.524999: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
154819    RenderThread-16607 (10023) [005] d..2 82320.525033: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
154820   Binder:8858_1-8871  ( 8858) [005] .... 82320.525044: binder_transaction_received: transaction=1573331
154821 s.nexuslauncher-10023 (10023) [004] d..2 82320.525051: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
154822          <idle>-0     (-----) [004] d..1 82320.525060: cpu_idle: state=0 cpu_id=4
154823   Binder:8858_1-8871  ( 8858) [005] .... 82320.525091: binder_transaction: transaction=1573332 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
154824   Binder:8858_1-8871  ( 8858) [005] .... 82320.525095: binder_transaction_alloc_buf: transaction=1573332 data_size=52 offsets_size=8
154825   Binder:8858_1-8871  ( 8858) [005] .... 82320.525101: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
154826              ps-27820 (27820) [000] d.s3 82320.525127: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154827              ps-27820 (27820) [000] d.s4 82320.525138: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154828          <idle>-0     (-----) [003] .n.1 82320.525142: cpu_idle: state=4294967295 cpu_id=3
154829          <idle>-0     (-----) [003] d..2 82320.525149: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154830   Binder:8858_1-8871  ( 8858) [005] d..2 82320.525159: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
154831    RenderThread-16607 (10023) [005] .... 82320.525169: binder_transaction_received: transaction=1573332
154832  kworker/u16:13-1147  ( 1147) [003] d..2 82320.525275: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
154833          <idle>-0     (-----) [003] d..1 82320.525282: cpu_idle: state=0 cpu_id=3
154834          <idle>-0     (-----) [001] d.s3 82320.525303: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154835          <idle>-0     (-----) [001] d.s4 82320.525309: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
154836          <idle>-0     (-----) [001] d.s4 82320.525314: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154837          <idle>-0     (-----) [001] ...1 82320.525319: cpu_idle: state=4294967295 cpu_id=1
154838          <idle>-0     (-----) [003] .n.1 82320.525320: cpu_idle: state=4294967295 cpu_id=3
154839          <idle>-0     (-----) [001] d..1 82320.525321: cpu_idle: state=0 cpu_id=1
154840          <idle>-0     (-----) [003] d..2 82320.525326: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154841  kworker/u16:13-1147  ( 1147) [003] d..2 82320.525441: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
154842          <idle>-0     (-----) [003] d..1 82320.525447: cpu_idle: state=0 cpu_id=3
154843    RenderThread-16607 (10023) [005] d..2 82320.526443: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
154844          <idle>-0     (-----) [005] d..1 82320.526454: cpu_idle: state=0 cpu_id=5
154845          <idle>-0     (-----) [005] d.h2 82320.526533: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
154846          <idle>-0     (-----) [005] d.h3 82320.526540: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
154847          <idle>-0     (-----) [005] dnh3 82320.526543: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
154848          <idle>-0     (-----) [005] .n.1 82320.526549: cpu_idle: state=4294967295 cpu_id=5
154849          <idle>-0     (-----) [005] d..2 82320.526557: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
154850    RenderThread-16607 (10023) [005] .... 82320.526681: binder_transaction: transaction=1573333 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
154851    RenderThread-16607 (10023) [005] .... 82320.526684: binder_transaction_alloc_buf: transaction=1573333 data_size=192 offsets_size=8
154852    RenderThread-16607 (10023) [005] ...2 82320.526690: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
154853    RenderThread-16607 (10023) [005] d..4 82320.526692: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
154854    RenderThread-16607 (10023) [005] dn.5 82320.526701: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
154855    RenderThread-16607 (10023) [005] d..2 82320.526706: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
154856   Binder:8858_1-8871  ( 8858) [005] .... 82320.526716: binder_transaction_received: transaction=1573333
154857   Binder:8858_1-8871  ( 8858) [005] .... 82320.526817: binder_transaction: transaction=1573334 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
154858   Binder:8858_1-8871  ( 8858) [005] .... 82320.526821: binder_transaction_alloc_buf: transaction=1573334 data_size=68 offsets_size=0
154859   Binder:8858_1-8871  ( 8858) [005] .... 82320.526823: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
154860          <idle>-0     (-----) [003] ...1 82320.526825: cpu_idle: state=4294967295 cpu_id=3
154861          <idle>-0     (-----) [003] d..1 82320.526828: cpu_idle: state=0 cpu_id=3
154862   Binder:8858_1-8871  ( 8858) [005] d..2 82320.526854: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
154863    RenderThread-16607 (10023) [005] .... 82320.526863: binder_transaction_received: transaction=1573334
154864    RenderThread-16607 (10023) [005] d..2 82320.526920: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
154865          <idle>-0     (-----) [005] d..1 82320.526932: cpu_idle: state=0 cpu_id=5
154866          <idle>-0     (-----) [005] ...1 82320.527166: cpu_idle: state=4294967295 cpu_id=5
154867          <idle>-0     (-----) [005] d..1 82320.527170: cpu_idle: state=0 cpu_id=5
154868              ps-27820 (27820) [000] d.h2 82320.527979: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
154869              ps-27820 (27820) [000] d.h3 82320.527994: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
154870          <idle>-0     (-----) [003] .n.1 82320.527998: cpu_idle: state=4294967295 cpu_id=3
154871          <idle>-0     (-----) [003] d..2 82320.528004: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
154872 kgsl_worker_thr-258   (  258) [003] d..2 82320.528044: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154873 kgsl_worker_thr-258   (  258) [003] d..3 82320.528054: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154874 kgsl_worker_thr-258   (  258) [003] d..2 82320.528067: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
154875          <idle>-0     (-----) [002] d.h2 82320.528137: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
154876          <idle>-0     (-----) [002] dnh3 82320.528143: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
154877          <idle>-0     (-----) [002] .n.1 82320.528147: cpu_idle: state=4294967295 cpu_id=2
154878          <idle>-0     (-----) [002] d..2 82320.528152: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
154879        DispSync-8879  ( 8858) [002] d..1 82320.528160: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
154880        DispSync-8879  ( 8858) [002] d..2 82320.528169: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
154881          <idle>-0     (-----) [001] .n.1 82320.528173: cpu_idle: state=4294967295 cpu_id=1
154882          <idle>-0     (-----) [001] d..2 82320.528179: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
154883        DispSync-8879  ( 8858) [002] d..2 82320.528183: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154884          <idle>-0     (-----) [002] d..1 82320.528189: cpu_idle: state=0 cpu_id=2
154885              ps-27820 (27820) [000] d..2 82320.528190: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=000
154886              ps-27820 (27820) [000] dn.3 82320.528199: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=000
154887   sfEventThread-8882  ( 8858) [001] d..3 82320.528204: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
154888              ps-27820 (27820) [000] d..2 82320.528205: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
154889   sfEventThread-8882  ( 8858) [001] d..4 82320.528214: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
154890          <idle>-0     (-----) [002] .n.1 82320.528219: cpu_idle: state=4294967295 cpu_id=2
154891          <idle>-0     (-----) [002] d..2 82320.528224: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
154892   sfEventThread-8882  ( 8858) [001] d..2 82320.528233: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154893  kworker/u16:13-1147  ( 1147) [003] d..2 82320.528236: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
154894 shell svc 27816-27817 (  960) [000] d..2 82320.528237: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
154895          <idle>-0     (-----) [001] d..1 82320.528238: cpu_idle: state=0 cpu_id=1
154896 shell svc 27816-27817 (  960) [000] d..3 82320.528250: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
154897 shell svc 27816-27817 (  960) [000] d..2 82320.528263: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
154898            adbd-960   (  960) [000] d..1 82320.528340: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
154899            adbd-960   (  960) [000] d..2 82320.528365: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
154900            adbd-960   (  960) [000] d..2 82320.528410: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
154901          <idle>-0     (-----) [000] d..1 82320.528428: cpu_idle: state=0 cpu_id=0
154902  surfaceflinger-8858  ( 8858) [002] d..1 82320.528433: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
154903  surfaceflinger-8858  ( 8858) [002] d..2 82320.528444: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
154904          <idle>-0     (-----) [001] dns2 82320.528462: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154905          <idle>-0     (-----) [001] dns3 82320.528472: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
154906          <idle>-0     (-----) [001] .n.1 82320.528478: cpu_idle: state=4294967295 cpu_id=1
154907          <idle>-0     (-----) [001] d..2 82320.528482: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
154908   sfEventThread-8882  ( 8858) [001] d..2 82320.528496: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
154909     rcu_preempt-7     (    7) [001] d..2 82320.528503: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
154910     rcu_preempt-7     (    7) [001] d..3 82320.528515: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
154911     rcu_preempt-7     (    7) [001] d..2 82320.528524: 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
154912  surfaceflinger-8858  ( 8858) [002] ...1 82320.528590: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
154913  surfaceflinger-8858  ( 8858) [002] ...1 82320.528595: tracing_mark_write: E|8858
154914         rcuop/0-10    (   10) [001] d..2 82320.528596: 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
154915          <idle>-0     (-----) [001] d..1 82320.528603: cpu_idle: state=0 cpu_id=1
154916  surfaceflinger-8858  ( 8858) [002] .... 82320.528638: binder_transaction: transaction=1573335 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
154917  surfaceflinger-8858  ( 8858) [002] .... 82320.528641: binder_transaction_alloc_buf: transaction=1573335 data_size=540 offsets_size=96
154918  surfaceflinger-8858  ( 8858) [002] ...2 82320.528656: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
154919  surfaceflinger-8858  ( 8858) [002] d..4 82320.528662: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
154920  surfaceflinger-8858  ( 8858) [002] d..5 82320.528672: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
154921          <idle>-0     (-----) [001] .n.1 82320.528677: cpu_idle: state=4294967295 cpu_id=1
154922  surfaceflinger-8858  ( 8858) [002] d..2 82320.528683: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
154923          <idle>-0     (-----) [001] d..2 82320.528683: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
154924 [email protected]   (  619) [001] .... 82320.528690: binder_transaction_received: transaction=1573335
154925 [email protected]   (  619) [001] ...1 82320.528727: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
154926            adbd-24055 (  960) [002] d..2 82320.528759: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154927          <idle>-0     (-----) [002] d..1 82320.528767: cpu_idle: state=0 cpu_id=2
154928              ps-27820 (27820) [003] d.h2 82320.528769: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
154929              ps-27820 (27820) [003] d.h3 82320.528786: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
154930 [email protected]   (  619) [001] ...1 82320.528803: tracing_mark_write: B|619|HWCSession::PresentDisplay::
154931 [email protected]   (  619) [001] ...1 82320.528919: tracing_mark_write: B|619|HWDeviceDRM::Commit::
154932 [email protected]   (  619) [001] ...1 82320.528928: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
154933 [email protected]   (  619) [001] d..2 82320.529309: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
154934 [email protected]   (  619) [001] d..3 82320.529327: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
154935          <idle>-0     (-----) [000] .n.1 82320.529333: cpu_idle: state=4294967295 cpu_id=0
154936          <idle>-0     (-----) [000] d..2 82320.529340: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
154937 [email protected]   (  619) [001] ...1 82320.529386: tracing_mark_write: E|619
154938 [email protected]   (  619) [001] ...1 82320.529389: tracing_mark_write: E|619
154939 [email protected]   (  619) [001] ...1 82320.529431: tracing_mark_write: E|619
154940 [email protected]   (  619) [001] ...1 82320.529464: tracing_mark_write: E|619
154941 [email protected]   (  619) [001] .... 82320.529472: binder_transaction: transaction=1573336 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
154942 [email protected]   (  619) [001] .... 82320.529475: binder_transaction_alloc_buf: transaction=1573336 data_size=576 offsets_size=112
154943 [email protected]   (  619) [001] d..2 82320.529485: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
154944 [email protected]   (  619) [001] d..3 82320.529495: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
154945 [email protected]   (  619) [001] .... 82320.529498: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
154946          <idle>-0     (-----) [002] .n.1 82320.529500: cpu_idle: state=4294967295 cpu_id=2
154947          <idle>-0     (-----) [002] d..2 82320.529505: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
154948  surfaceflinger-8858  ( 8858) [002] .... 82320.529510: binder_transaction_received: transaction=1573336
154949 [email protected]   (  619) [001] d..2 82320.529538: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
154950   kworker/u17:0-98    (   98) [001] d..2 82320.529553: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
154951   kworker/u17:0-98    (   98) [001] d..3 82320.529564: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
154952   kworker/u17:0-98    (   98) [001] d..2 82320.529581: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
154953     kworker/1:1-25249 (25249) [001] d..2 82320.529591: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
154954     kworker/1:1-25249 (25249) [001] d..3 82320.529610: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
154955     kworker/1:1-25249 (25249) [001] d..2 82320.529620: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
154956            adbd-24055 (  960) [001] d..2 82320.529674: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154957          <idle>-0     (-----) [001] d..1 82320.529682: cpu_idle: state=0 cpu_id=1
154958  surfaceflinger-8858  ( 8858) [002] d..2 82320.529757: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
154959          <idle>-0     (-----) [002] d..1 82320.529765: cpu_idle: state=0 cpu_id=2
154960              ps-27820 (27820) [003] d.h2 82320.529781: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
154961              ps-27820 (27820) [003] d.h3 82320.529793: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
154962          <idle>-0     (-----) [001] .n.1 82320.529797: cpu_idle: state=4294967295 cpu_id=1
154963          <idle>-0     (-----) [001] d..2 82320.529804: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
154964   kworker/u17:0-98    (   98) [001] d..2 82320.529811: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
154965   kworker/u17:0-98    (   98) [001] d..3 82320.529816: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
154966   kworker/u17:0-98    (   98) [001] d..2 82320.529831: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
154967     kworker/1:1-25249 (25249) [001] d..2 82320.529836: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
154968     kworker/1:1-25249 (25249) [001] d..3 82320.529844: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
154969     kworker/1:1-25249 (25249) [001] d..2 82320.529851: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
154970            adbd-24055 (  960) [001] d..2 82320.529876: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154971          <idle>-0     (-----) [001] d..1 82320.529882: cpu_idle: state=0 cpu_id=1
154972 crtc_commit:111-321   (  321) [000] d..2 82320.529940: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
154973          <idle>-0     (-----) [000] d..1 82320.529948: cpu_idle: state=0 cpu_id=0
154974              ps-27820 (27820) [003] d.h3 82320.530055: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
154975              ps-27820 (27820) [003] d.h4 82320.530066: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
154976          <idle>-0     (-----) [001] .n.1 82320.530071: cpu_idle: state=4294967295 cpu_id=1
154977          <idle>-0     (-----) [001] d..2 82320.530078: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
154978   kworker/u17:0-98    (   98) [001] d..2 82320.530086: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
154979   kworker/u17:0-98    (   98) [001] d..3 82320.530092: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
154980   kworker/u17:0-98    (   98) [001] d..2 82320.530108: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
154981     kworker/1:1-25249 (25249) [001] d..2 82320.530118: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
154982     kworker/1:1-25249 (25249) [001] d..3 82320.530134: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
154983     kworker/1:1-25249 (25249) [001] d..2 82320.530142: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
154984            adbd-24054 (  960) [001] d..2 82320.530163: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
154985            adbd-24054 (  960) [001] d..3 82320.530173: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
154986            adbd-24054 (  960) [001] d..2 82320.530222: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
154987            adbd-960   (  960) [001] d..2 82320.530299: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
154988          <idle>-0     (-----) [001] d..1 82320.530306: cpu_idle: state=0 cpu_id=1
154989          <idle>-0     (-----) [000] ...1 82320.531381: cpu_idle: state=4294967295 cpu_id=0
154990          <idle>-0     (-----) [000] d..1 82320.531384: cpu_idle: state=0 cpu_id=0
154991              ps-27820 (27820) [003] d.h2 82320.531799: sched_waking: comm=migration/3 pid=33 prio=0 target_cpu=003
154992              ps-27820 (27820) [003] dnh3 82320.531807: sched_wakeup: comm=migration/3 pid=33 prio=0 target_cpu=003
154993              ps-27820 (27820) [003] dns2 82320.531858: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
154994          <idle>-0     (-----) [000] ...1 82320.531859: cpu_idle: state=4294967295 cpu_id=0
154995          <idle>-0     (-----) [000] d..1 82320.531863: cpu_idle: state=0 cpu_id=0
154996              ps-27820 (27820) [003] dns3 82320.531874: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
154997          <idle>-0     (-----) [000] .n.1 82320.531879: cpu_idle: state=4294967295 cpu_id=0
154998              ps-27820 (27820) [003] d..2 82320.531881: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R ==> next_comm=migration/3 next_pid=33 next_prio=0
154999          <idle>-0     (-----) [000] d..2 82320.531886: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155000          <idle>-0     (-----) [004] .n.1 82320.531908: cpu_idle: state=4294967295 cpu_id=4
155001     migration/3-33    (   33) [003] d.h3 82320.531928: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
155002          <idle>-0     (-----) [004] d..2 82320.531929: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=ps next_pid=27820 next_prio=120
155003     migration/3-33    (   33) [003] d.h3 82320.531938: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
155004          <idle>-0     (-----) [007] dnh2 82320.531944: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
155005          <idle>-0     (-----) [007] .n.1 82320.531948: cpu_idle: state=4294967295 cpu_id=7
155006          <idle>-0     (-----) [007] d..2 82320.531952: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
155007     migration/3-33    (   33) [003] d.h4 82320.531953: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
155008          <idle>-0     (-----) [002] .n.1 82320.531958: cpu_idle: state=4294967295 cpu_id=2
155009          <idle>-0     (-----) [002] d..2 82320.531965: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
155010         sugov:4-577   (  577) [007] .... 82320.531965: clk_set_rate: perfcl_clk 2803200000
155011         sugov:4-577   (  577) [007] .... 82320.531966: clk_set_rate: cpu7_perfcl_clk 825600000
155012     migration/3-33    (   33) [003] d..2 82320.531969: 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
155013         sugov:4-577   (  577) [007] .... 82320.531972: clk_set_rate: cpu6_perfcl_clk 825600000
155014         sugov:4-577   (  577) [007] .... 82320.531977: clk_set_rate: cpu5_perfcl_clk 825600000
155015          <idle>-0     (-----) [003] d..1 82320.531977: cpu_idle: state=0 cpu_id=3
155016              ps-27820 (27820) [004] d..2 82320.531979: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=001
155017         sugov:4-577   (  577) [007] .... 82320.531982: clk_set_rate: cpu4_perfcl_clk 2803200000
155018         sugov:4-577   (  577) [007] .... 82320.531988: cpu_frequency: state=2803200 cpu_id=4
155019         sugov:4-577   (  577) [007] d..3 82320.531997: sched_pi_setprio: comm=kworker/u16:13 pid=1147 oldprio=120 newprio=49
155020         sugov:0-576   (  576) [002] .... 82320.532001: clk_set_rate: pwrcl_clk 748800000
155021         sugov:4-577   (  577) [007] d..2 82320.532014: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
155022         sugov:0-576   (  576) [002] d.h1 82320.532016: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=002
155023          <idle>-0     (-----) [007] d..1 82320.532021: cpu_idle: state=0 cpu_id=7
155024  kworker/u16:13-1147  ( 1147) [000] d..2 82320.532023: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=49 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
155025          <idle>-0     (-----) [000] d..1 82320.532030: cpu_idle: state=0 cpu_id=0
155026          <idle>-0     (-----) [001] d.s3 82320.532042: sched_waking: comm=kworker/u16:13 pid=1147 prio=49 target_cpu=000
155027          <idle>-0     (-----) [001] d.s4 82320.532053: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=49 target_cpu=000
155028          <idle>-0     (-----) [001] ...1 82320.532058: cpu_idle: state=4294967295 cpu_id=1
155029          <idle>-0     (-----) [000] .n.1 82320.532058: cpu_idle: state=4294967295 cpu_id=0
155030          <idle>-0     (-----) [001] d..1 82320.532061: cpu_idle: state=0 cpu_id=1
155031         sugov:0-576   (  576) [002] .... 82320.532062: clk_set_rate: cpu3_pwrcl_clk 1766400000
155032          <idle>-0     (-----) [000] d..2 82320.532064: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=49
155033  kworker/u16:13-1147  ( 1147) [000] d..1 82320.532069: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
155034         sugov:0-576   (  576) [002] .... 82320.532071: clk_set_rate: cpu2_pwrcl_clk 1766400000
155035         sugov:0-576   (  576) [002] .... 82320.532077: clk_set_rate: cpu1_pwrcl_clk 1766400000
155036  kworker/u16:13-1147  ( 1147) [000] d..2 82320.532079: sched_pi_setprio: comm=kworker/u16:13 pid=1147 oldprio=49 newprio=120
155037         sugov:0-576   (  576) [002] .... 82320.532084: clk_set_rate: cpu0_pwrcl_clk 748800000
155038          <idle>-0     (-----) [007] dnh2 82320.532084: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
155039          <idle>-0     (-----) [001] ...1 82320.532086: cpu_idle: state=4294967295 cpu_id=1
155040          <idle>-0     (-----) [007] .n.1 82320.532088: cpu_idle: state=4294967295 cpu_id=7
155041          <idle>-0     (-----) [001] d..1 82320.532089: cpu_idle: state=0 cpu_id=1
155042          <idle>-0     (-----) [007] d..2 82320.532102: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
155043  kworker/u16:13-1147  ( 1147) [000] d..2 82320.532125: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
155044          <idle>-0     (-----) [000] d..1 82320.532142: cpu_idle: state=0 cpu_id=0
155045         sugov:4-577   (  577) [007] d..2 82320.532189: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
155046          <idle>-0     (-----) [007] d..1 82320.532192: cpu_idle: state=0 cpu_id=7
155047         sugov:0-576   (  576) [002] .... 82320.532196: cpu_frequency: state=748800 cpu_id=0
155048         sugov:0-576   (  576) [002] d..2 82320.532220: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=rcuop/4 next_pid=45 next_prio=120
155049          <idle>-0     (-----) [001] d.s3 82320.532235: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
155050         rcuop/4-45    (   45) [002] d..2 82320.532246: 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
155051          <idle>-0     (-----) [007] dnh2 82320.532251: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
155052          <idle>-0     (-----) [007] .n.1 82320.532253: cpu_idle: state=4294967295 cpu_id=7
155053          <idle>-0     (-----) [001] ...1 82320.532254: cpu_idle: state=4294967295 cpu_id=1
155054          <idle>-0     (-----) [007] d..2 82320.532255: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
155055         sugov:4-577   (  577) [007] d..1 82320.532257: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
155056          <idle>-0     (-----) [001] d..1 82320.532258: cpu_idle: state=0 cpu_id=1
155057          <idle>-0     (-----) [002] d..1 82320.532259: cpu_idle: state=0 cpu_id=2
155058         sugov:4-577   (  577) [007] .... 82320.532264: cpu_frequency: state=2803200 cpu_id=5
155059         sugov:4-577   (  577) [007] .... 82320.532266: cpu_frequency: state=2803200 cpu_id=6
155060         sugov:4-577   (  577) [007] .... 82320.532266: cpu_frequency: state=2803200 cpu_id=7
155061         sugov:4-577   (  577) [007] d..2 82320.532271: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
155062          <idle>-0     (-----) [007] d..1 82320.532273: cpu_idle: state=0 cpu_id=7
155063          <idle>-0     (-----) [002] dnh2 82320.532277: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
155064          <idle>-0     (-----) [002] .n.1 82320.532284: cpu_idle: state=4294967295 cpu_id=2
155065          <idle>-0     (-----) [002] d..2 82320.532293: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
155066         sugov:0-576   (  576) [002] .... 82320.532304: cpu_frequency: state=748800 cpu_id=1
155067         sugov:0-576   (  576) [002] .... 82320.532310: cpu_frequency: state=748800 cpu_id=2
155068         sugov:0-576   (  576) [002] .... 82320.532315: cpu_frequency: state=748800 cpu_id=3
155069         sugov:0-576   (  576) [002] d..2 82320.532339: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155070          <idle>-0     (-----) [002] d..1 82320.532350: cpu_idle: state=0 cpu_id=2
155071          <idle>-0     (-----) [000] ...1 82320.533437: cpu_idle: state=4294967295 cpu_id=0
155072          <idle>-0     (-----) [000] d..1 82320.533442: cpu_idle: state=0 cpu_id=0
155073              ps-27820 (27820) [004] d..2 82320.534394: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=000
155074              ps-27820 (27820) [004] dn.3 82320.534407: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155075              ps-27820 (27820) [004] d..2 82320.534428: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
155076 shell svc 27816-27817 (  960) [004] d..2 82320.534445: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
155077 shell svc 27816-27817 (  960) [004] d..2 82320.534469: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
155078          <idle>-0     (-----) [001] dnh2 82320.534474: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
155079          <idle>-0     (-----) [001] .n.1 82320.534480: cpu_idle: state=4294967295 cpu_id=1
155080          <idle>-0     (-----) [001] d..2 82320.534493: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
155081            adbd-960   (  960) [001] d..1 82320.534571: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
155082            adbd-960   (  960) [001] d..2 82320.534593: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
155083            adbd-960   (  960) [001] d..2 82320.534656: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155084            adbd-24055 (  960) [001] d..2 82320.534738: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155085          <idle>-0     (-----) [001] d..1 82320.534749: cpu_idle: state=0 cpu_id=1
155086          <idle>-0     (-----) [003] d.h3 82320.534755: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
155087          <idle>-0     (-----) [003] dnh4 82320.534788: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155088          <idle>-0     (-----) [003] .n.1 82320.534797: cpu_idle: state=4294967295 cpu_id=3
155089          <idle>-0     (-----) [003] d..2 82320.534811: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155090   kworker/u17:0-98    (   98) [003] d..2 82320.534827: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155091   kworker/u17:0-98    (   98) [003] d..3 82320.534840: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155092   kworker/u17:0-98    (   98) [003] d..2 82320.534866: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155093     kworker/3:1-25210 (25210) [003] d..2 82320.534879: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
155094     kworker/3:1-25210 (25210) [003] d..3 82320.534893: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
155095          <idle>-0     (-----) [001] .n.1 82320.534899: cpu_idle: state=4294967295 cpu_id=1
155096          <idle>-0     (-----) [001] d..2 82320.534909: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
155097     kworker/3:1-25210 (25210) [003] d..2 82320.534921: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155098          <idle>-0     (-----) [003] d..1 82320.534934: cpu_idle: state=0 cpu_id=3
155099            adbd-24055 (  960) [001] d..2 82320.534987: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155100          <idle>-0     (-----) [001] d..1 82320.534997: cpu_idle: state=0 cpu_id=1
155101          <idle>-0     (-----) [003] d.h3 82320.535093: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155102          <idle>-0     (-----) [003] dnh4 82320.535103: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155103          <idle>-0     (-----) [003] .n.1 82320.535111: cpu_idle: state=4294967295 cpu_id=3
155104              ps-27820 (27820) [004] d.s2 82320.535119: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
155105          <idle>-0     (-----) [003] d..2 82320.535124: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155106          <idle>-0     (-----) [001] d.s2 82320.535130: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
155107   kworker/u17:0-98    (   98) [003] d..2 82320.535136: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155108   kworker/u17:0-98    (   98) [003] d..3 82320.535146: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155109          <idle>-0     (-----) [001] dns3 82320.535149: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
155110          <idle>-0     (-----) [001] .n.1 82320.535159: cpu_idle: state=4294967295 cpu_id=1
155111   kworker/u17:0-98    (   98) [003] d.h2 82320.535167: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
155112          <idle>-0     (-----) [001] d..2 82320.535168: 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
155113   kworker/u17:0-98    (   98) [003] d..2 82320.535180: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155114     kworker/3:1-25210 (25210) [003] d..2 82320.535189: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
155115     kworker/3:1-25210 (25210) [003] d..3 82320.535206: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
155116     rcu_preempt-7     (    7) [001] d..2 82320.535214: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155117     kworker/3:1-25210 (25210) [003] d..2 82320.535231: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155118            adbd-24055 (  960) [001] d..2 82320.535252: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155119          <idle>-0     (-----) [001] d..1 82320.535266: cpu_idle: state=0 cpu_id=1
155120  kworker/u16:13-1147  ( 1147) [003] .... 82320.535283: clk_set_rate: l3_cluster1_vote_clk 748800000
155121  kworker/u16:13-1147  ( 1147) [003] .... 82320.535314: clk_set_rate: l3_cluster0_vote_clk 652800000
155122  kworker/u16:13-1147  ( 1147) [003] .... 82320.535319: clk_set_rate: l3_clk 748800000
155123  kworker/u16:13-1147  ( 1147) [003] d.h4 82320.535364: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155124  kworker/u16:13-1147  ( 1147) [003] dnh5 82320.535384: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155125  kworker/u16:13-1147  ( 1147) [003] d..2 82320.535398: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155126   kworker/u17:0-98    (   98) [003] d..2 82320.535412: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155127   kworker/u17:0-98    (   98) [003] d..3 82320.535422: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155128   kworker/u17:0-98    (   98) [003] d..2 82320.535447: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155129     kworker/3:1-25210 (25210) [003] d..2 82320.535464: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
155130     kworker/3:1-25210 (25210) [003] d..3 82320.535507: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
155131     kworker/3:1-25210 (25210) [003] d..2 82320.535525: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
155132            adbd-24054 (  960) [003] d..2 82320.535553: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
155133            adbd-24054 (  960) [003] d..3 82320.535569: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
155134          <idle>-0     (-----) [001] .n.1 82320.535574: cpu_idle: state=4294967295 cpu_id=1
155135          <idle>-0     (-----) [001] d..2 82320.535588: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
155136            adbd-24054 (  960) [003] d..2 82320.535649: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155137            adbd-960   (  960) [001] d..2 82320.535747: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155138          <idle>-0     (-----) [001] d..1 82320.535764: cpu_idle: state=0 cpu_id=1
155139  kworker/u16:13-1147  ( 1147) [003] d..2 82320.535879: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
155140          <idle>-0     (-----) [003] d..1 82320.535896: cpu_idle: state=0 cpu_id=3
155141          <idle>-0     (-----) [001] d.s3 82320.535909: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
155142          <idle>-0     (-----) [001] d.s4 82320.535921: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
155143          <idle>-0     (-----) [001] d.s4 82320.535930: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
155144          <idle>-0     (-----) [003] .n.1 82320.535937: cpu_idle: state=4294967295 cpu_id=3
155145          <idle>-0     (-----) [001] ...1 82320.535940: cpu_idle: state=4294967295 cpu_id=1
155146          <idle>-0     (-----) [001] d..1 82320.535946: cpu_idle: state=0 cpu_id=1
155147          <idle>-0     (-----) [003] d..2 82320.535951: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155148  kworker/u16:13-1147  ( 1147) [003] d..2 82320.535983: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155149          <idle>-0     (-----) [003] d..1 82320.535995: cpu_idle: state=0 cpu_id=3
155150          <idle>-0     (-----) [000] d.h5 82320.536568: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155151          <idle>-0     (-----) [000] d.h6 82320.536588: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155152          <idle>-0     (-----) [000] d.h5 82320.536594: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
155153          <idle>-0     (-----) [002] .n.1 82320.536595: cpu_idle: state=4294967295 cpu_id=2
155154          <idle>-0     (-----) [000] dnh6 82320.536604: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
155155          <idle>-0     (-----) [002] d..2 82320.536606: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
155156          <idle>-0     (-----) [000] .n.1 82320.536617: cpu_idle: state=4294967295 cpu_id=0
155157          <idle>-0     (-----) [000] d..2 82320.536632: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
155158  crtc_event:111-322   (  322) [002] d..2 82320.536642: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155159          <idle>-0     (-----) [002] d..1 82320.536652: cpu_idle: state=0 cpu_id=2
155160 crtc_commit:111-321   (  321) [000] d..2 82320.536783: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
155161          <idle>-0     (-----) [000] d..1 82320.536793: cpu_idle: state=0 cpu_id=0
155162          <idle>-0     (-----) [000] d.s3 82320.538466: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155163          <idle>-0     (-----) [000] d.s4 82320.538482: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155164          <idle>-0     (-----) [002] .n.1 82320.538488: cpu_idle: state=4294967295 cpu_id=2
155165          <idle>-0     (-----) [002] d..2 82320.538498: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
155166          <idle>-0     (-----) [000] ...1 82320.538502: cpu_idle: state=4294967295 cpu_id=0
155167          <idle>-0     (-----) [000] d..1 82320.538509: cpu_idle: state=0 cpu_id=0
155168  crtc_event:111-322   (  322) [002] d..2 82320.538530: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155169          <idle>-0     (-----) [002] d..1 82320.538540: cpu_idle: state=0 cpu_id=2
155170              ps-27820 (27820) [004] d..2 82320.538718: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155171              ps-27820 (27820) [004] dn.3 82320.538724: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155172              ps-27820 (27820) [004] d..2 82320.538728: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
155173 shell svc 27816-27817 (  960) [004] d..2 82320.538746: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
155174 shell svc 27816-27817 (  960) [004] d..2 82320.538770: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
155175          <idle>-0     (-----) [001] dnh2 82320.538775: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
155176          <idle>-0     (-----) [001] .n.1 82320.538780: cpu_idle: state=4294967295 cpu_id=1
155177          <idle>-0     (-----) [001] d..2 82320.538794: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
155178            adbd-960   (  960) [001] d..1 82320.538883: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
155179            adbd-960   (  960) [001] d..2 82320.538905: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
155180          <idle>-0     (-----) [000] d.h5 82320.538907: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
155181          <idle>-0     (-----) [000] dnh6 82320.538918: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
155182          <idle>-0     (-----) [000] .n.1 82320.538930: cpu_idle: state=4294967295 cpu_id=0
155183          <idle>-0     (-----) [000] d..2 82320.538941: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
155184            adbd-960   (  960) [001] d..2 82320.538971: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155185 crtc_commit:111-321   (  321) [000] d..2 82320.539025: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
155186          <idle>-0     (-----) [000] d..1 82320.539040: cpu_idle: state=0 cpu_id=0
155187            adbd-24055 (  960) [001] d..2 82320.539059: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155188          <idle>-0     (-----) [003] d.h3 82320.539066: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155189          <idle>-0     (-----) [001] d..1 82320.539071: cpu_idle: state=0 cpu_id=1
155190          <idle>-0     (-----) [003] dnh4 82320.539084: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155191          <idle>-0     (-----) [003] .n.1 82320.539094: cpu_idle: state=4294967295 cpu_id=3
155192          <idle>-0     (-----) [003] d..2 82320.539107: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155193   kworker/u17:0-98    (   98) [003] d..2 82320.539123: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155194   kworker/u17:0-98    (   98) [003] d..3 82320.539134: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155195   kworker/u17:0-98    (   98) [003] d..2 82320.539159: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155196     kworker/3:1-25210 (25210) [003] d..2 82320.539171: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
155197     kworker/3:1-25210 (25210) [003] d..3 82320.539186: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
155198          <idle>-0     (-----) [001] .n.1 82320.539192: cpu_idle: state=4294967295 cpu_id=1
155199          <idle>-0     (-----) [000] d.h5 82320.539200: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155200          <idle>-0     (-----) [001] d..2 82320.539203: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
155201     kworker/3:1-25210 (25210) [003] d..2 82320.539214: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155202          <idle>-0     (-----) [000] d.h6 82320.539217: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155203          <idle>-0     (-----) [002] .n.1 82320.539222: cpu_idle: state=4294967295 cpu_id=2
155204          <idle>-0     (-----) [003] d..1 82320.539228: cpu_idle: state=0 cpu_id=3
155205          <idle>-0     (-----) [002] d..2 82320.539233: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
155206          <idle>-0     (-----) [000] ...1 82320.539236: cpu_idle: state=4294967295 cpu_id=0
155207          <idle>-0     (-----) [000] d..1 82320.539242: cpu_idle: state=0 cpu_id=0
155208  crtc_event:111-322   (  322) [002] d..2 82320.539258: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155209          <idle>-0     (-----) [002] d..1 82320.539266: cpu_idle: state=0 cpu_id=2
155210            adbd-24055 (  960) [001] d..2 82320.539286: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155211          <idle>-0     (-----) [001] d..1 82320.539296: cpu_idle: state=0 cpu_id=1
155212          <idle>-0     (-----) [003] d.h3 82320.539383: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155213          <idle>-0     (-----) [003] dnh4 82320.539393: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155214          <idle>-0     (-----) [003] .n.1 82320.539402: cpu_idle: state=4294967295 cpu_id=3
155215          <idle>-0     (-----) [003] d..2 82320.539414: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155216   kworker/u17:0-98    (   98) [003] d..2 82320.539427: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155217   kworker/u17:0-98    (   98) [003] d..3 82320.539437: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155218   kworker/u17:0-98    (   98) [003] d..2 82320.539462: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155219     kworker/3:1-25210 (25210) [003] d..2 82320.539472: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
155220     kworker/3:1-25210 (25210) [003] d..3 82320.539487: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
155221          <idle>-0     (-----) [001] .n.1 82320.539493: cpu_idle: state=4294967295 cpu_id=1
155222          <idle>-0     (-----) [001] d..2 82320.539503: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
155223     kworker/3:1-25210 (25210) [003] d..2 82320.539514: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155224          <idle>-0     (-----) [003] d..1 82320.539527: cpu_idle: state=0 cpu_id=3
155225            adbd-24055 (  960) [001] d..2 82320.539544: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155226          <idle>-0     (-----) [001] d..1 82320.539553: cpu_idle: state=0 cpu_id=1
155227          <idle>-0     (-----) [003] d.h3 82320.539656: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155228          <idle>-0     (-----) [003] dnh4 82320.539667: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155229          <idle>-0     (-----) [003] .n.1 82320.539675: cpu_idle: state=4294967295 cpu_id=3
155230          <idle>-0     (-----) [003] d..2 82320.539687: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155231   kworker/u17:0-98    (   98) [003] d..2 82320.539699: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155232   kworker/u17:0-98    (   98) [003] d..3 82320.539709: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155233   kworker/u17:0-98    (   98) [003] d..2 82320.539734: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155234     kworker/3:1-25210 (25210) [003] d..2 82320.539746: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
155235     kworker/3:1-25210 (25210) [003] d..3 82320.539762: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
155236     kworker/3:1-25210 (25210) [003] d..2 82320.539778: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
155237            adbd-24054 (  960) [003] d..2 82320.539800: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
155238            adbd-24054 (  960) [003] d..3 82320.539818: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
155239            adbd-24054 (  960) [003] d..2 82320.539898: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
155240            adbd-960   (  960) [003] d..2 82320.540050: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155241          <idle>-0     (-----) [003] d..1 82320.540069: cpu_idle: state=0 cpu_id=3
155242          <idle>-0     (-----) [002] d.h2 82320.540607: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
155243          <idle>-0     (-----) [002] dnh3 82320.540623: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
155244          <idle>-0     (-----) [002] .n.1 82320.540632: cpu_idle: state=4294967295 cpu_id=2
155245          <idle>-0     (-----) [002] d..2 82320.540642: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
155246        DispSync-8879  ( 8858) [002] d..1 82320.540666: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
155247        DispSync-8879  ( 8858) [002] d..2 82320.540689: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
155248          <idle>-0     (-----) [001] .n.1 82320.540695: cpu_idle: state=4294967295 cpu_id=1
155249          <idle>-0     (-----) [001] d..2 82320.540703: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
155250        DispSync-8879  ( 8858) [002] d..2 82320.540724: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155251          <idle>-0     (-----) [002] d..1 82320.540735: cpu_idle: state=0 cpu_id=2
155252  appEventThread-8881  ( 8858) [001] d..3 82320.540774: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
155253          <idle>-0     (-----) [005] dnh2 82320.540808: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
155254          <idle>-0     (-----) [005] .n.1 82320.540810: cpu_idle: state=4294967295 cpu_id=5
155255          <idle>-0     (-----) [005] d..2 82320.540815: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
155256  appEventThread-8881  ( 8858) [001] d..2 82320.540846: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155257          <idle>-0     (-----) [001] d..1 82320.540858: cpu_idle: state=0 cpu_id=1
155258 s.nexuslauncher-10023 (10023) [005] .... 82320.541042: binder_transaction: transaction=1573337 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
155259 s.nexuslauncher-10023 (10023) [005] .... 82320.541047: binder_transaction_alloc_buf: transaction=1573337 data_size=80 offsets_size=0
155260 s.nexuslauncher-10023 (10023) [005] d..4 82320.541050: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
155261          <idle>-0     (-----) [000] dnh2 82320.541095: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
155262          <idle>-0     (-----) [000] .n.1 82320.541100: cpu_idle: state=4294967295 cpu_id=0
155263 s.nexuslauncher-10023 (10023) [005] d..3 82320.541105: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
155264          <idle>-0     (-----) [000] d..2 82320.541113: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
155265 s.nexuslauncher-10023 (10023) [005] d..4 82320.541117: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
155266          <idle>-0     (-----) [006] .n.1 82320.541121: cpu_idle: state=4294967295 cpu_id=6
155267   Binder:8858_1-8871  ( 8858) [000] .... 82320.541124: binder_transaction_received: transaction=1573337
155268          <idle>-0     (-----) [006] d..2 82320.541128: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
155269    RenderThread-16607 (10023) [006] d..2 82320.541145: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
155270          <idle>-0     (-----) [006] d..1 82320.541148: cpu_idle: state=0 cpu_id=6
155271   Binder:8858_1-8871  ( 8858) [000] d..1 82320.541166: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
155272   Binder:8858_1-8871  ( 8858) [000] d..2 82320.541184: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
155273          <idle>-0     (-----) [003] ...1 82320.541187: cpu_idle: state=4294967295 cpu_id=3
155274          <idle>-0     (-----) [001] .n.1 82320.541190: cpu_idle: state=4294967295 cpu_id=1
155275          <idle>-0     (-----) [003] d..1 82320.541192: cpu_idle: state=0 cpu_id=3
155276          <idle>-0     (-----) [001] d..2 82320.541199: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
155277   Binder:8858_1-8871  ( 8858) [000] d..2 82320.541234: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
155278  appEventThread-8881  ( 8858) [001] d..2 82320.541244: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155279          <idle>-0     (-----) [000] d..1 82320.541251: cpu_idle: state=0 cpu_id=0
155280          <idle>-0     (-----) [001] d..1 82320.541252: cpu_idle: state=0 cpu_id=1
155281 s.nexuslauncher-10023 (10023) [005] d..3 82320.541281: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
155282 s.nexuslauncher-10023 (10023) [005] d..4 82320.541290: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
155283          <idle>-0     (-----) [006] .n.1 82320.541294: cpu_idle: state=4294967295 cpu_id=6
155284          <idle>-0     (-----) [006] d..2 82320.541297: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
155285 s.nexuslauncher-10023 (10023) [005] d..2 82320.541301: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
155286          <idle>-0     (-----) [005] d..1 82320.541307: cpu_idle: state=0 cpu_id=5
155287    RenderThread-16607 (10023) [006] d..1 82320.541414: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
155288    RenderThread-16607 (10023) [006] d..2 82320.541423: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
155289          <idle>-0     (-----) [005] .n.1 82320.541428: cpu_idle: state=4294967295 cpu_id=5
155290          <idle>-0     (-----) [005] d..2 82320.541432: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
155291    RenderThread-16607 (10023) [006] .... 82320.541455: binder_transaction: transaction=1573338 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
155292    RenderThread-16607 (10023) [006] .... 82320.541457: binder_transaction_alloc_buf: transaction=1573338 data_size=104 offsets_size=0
155293    RenderThread-16607 (10023) [006] ...2 82320.541460: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
155294    RenderThread-16607 (10023) [006] d..4 82320.541462: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
155295 s.nexuslauncher-10023 (10023) [005] d..2 82320.541467: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
155296          <idle>-0     (-----) [005] d..1 82320.541471: cpu_idle: state=0 cpu_id=5
155297    RenderThread-16607 (10023) [006] dn.5 82320.541473: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
155298    RenderThread-16607 (10023) [006] d..2 82320.541495: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
155299   Binder:8858_1-8871  ( 8858) [006] .... 82320.541501: binder_transaction_received: transaction=1573338
155300   Binder:8858_1-8871  ( 8858) [006] .... 82320.541541: binder_transaction: transaction=1573339 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
155301   Binder:8858_1-8871  ( 8858) [006] .... 82320.541542: binder_transaction_alloc_buf: transaction=1573339 data_size=52 offsets_size=8
155302   Binder:8858_1-8871  ( 8858) [006] .... 82320.541548: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
155303   Binder:8858_1-8871  ( 8858) [006] d..2 82320.541564: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
155304    RenderThread-16607 (10023) [006] .... 82320.541568: binder_transaction_received: transaction=1573339
155305              ps-27820 (27820) [004] d..2 82320.541719: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155306              ps-27820 (27820) [004] dn.3 82320.541726: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155307              ps-27820 (27820) [004] d..2 82320.541729: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
155308 shell svc 27816-27817 (  960) [004] d..2 82320.541747: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
155309 shell svc 27816-27817 (  960) [004] d..2 82320.541760: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
155310          <idle>-0     (-----) [003] dnh2 82320.541767: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
155311          <idle>-0     (-----) [003] .n.1 82320.541773: cpu_idle: state=4294967295 cpu_id=3
155312          <idle>-0     (-----) [003] d..2 82320.541789: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
155313          <idle>-0     (-----) [001] d.s2 82320.541798: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
155314          <idle>-0     (-----) [001] dns3 82320.541817: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
155315          <idle>-0     (-----) [001] .n.1 82320.541831: cpu_idle: state=4294967295 cpu_id=1
155316          <idle>-0     (-----) [001] d..2 82320.541841: 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
155317     rcu_preempt-7     (    7) [001] d..2 82320.541853: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
155318            adbd-960   (  960) [003] d..1 82320.541866: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
155319     rcu_preempt-7     (    7) [001] d..3 82320.541872: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
155320     rcu_preempt-7     (    7) [001] d..2 82320.541894: 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
155321         rcuop/2-29    (   29) [001] d..2 82320.541900: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
155322            adbd-960   (  960) [003] d..2 82320.541905: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
155323         rcuop/2-29    (   29) [001] d..3 82320.541925: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=001
155324         rcuop/2-29    (   29) [001] d..2 82320.541946: 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
155325         rcuop/3-37    (   37) [001] d..2 82320.541961: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155326            adbd-960   (  960) [003] d..2 82320.541991: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155327          <idle>-0     (-----) [003] d..1 82320.542008: cpu_idle: state=0 cpu_id=3
155328            adbd-24055 (  960) [001] d..2 82320.542055: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155329          <idle>-0     (-----) [003] d.h3 82320.542071: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155330          <idle>-0     (-----) [001] d..1 82320.542071: cpu_idle: state=0 cpu_id=1
155331          <idle>-0     (-----) [003] dnh4 82320.542087: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155332          <idle>-0     (-----) [003] .n.1 82320.542096: cpu_idle: state=4294967295 cpu_id=3
155333          <idle>-0     (-----) [003] d..2 82320.542109: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155334   kworker/u17:0-98    (   98) [003] d..2 82320.542125: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155335   kworker/u17:0-98    (   98) [003] d..3 82320.542136: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155336   kworker/u17:0-98    (   98) [003] d..2 82320.542162: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155337     kworker/3:1-25210 (25210) [003] d..2 82320.542173: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
155338     kworker/3:1-25210 (25210) [003] d..3 82320.542188: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
155339          <idle>-0     (-----) [001] .n.1 82320.542194: cpu_idle: state=4294967295 cpu_id=1
155340          <idle>-0     (-----) [001] d..2 82320.542208: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
155341     kworker/3:1-25210 (25210) [003] d..2 82320.542216: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155342          <idle>-0     (-----) [003] d..1 82320.542230: cpu_idle: state=0 cpu_id=3
155343            adbd-24055 (  960) [001] d..2 82320.542292: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155344          <idle>-0     (-----) [001] d..1 82320.542306: cpu_idle: state=0 cpu_id=1
155345          <idle>-0     (-----) [003] d.h3 82320.542383: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155346          <idle>-0     (-----) [003] dnh4 82320.542393: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155347          <idle>-0     (-----) [003] .n.1 82320.542401: cpu_idle: state=4294967295 cpu_id=3
155348          <idle>-0     (-----) [003] d..2 82320.542414: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155349   kworker/u17:0-98    (   98) [003] d..2 82320.542426: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155350   kworker/u17:0-98    (   98) [003] d..3 82320.542436: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155351   kworker/u17:0-98    (   98) [003] d..2 82320.542461: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155352     kworker/3:1-25210 (25210) [003] d..2 82320.542472: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
155353     kworker/3:1-25210 (25210) [003] d..3 82320.542486: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
155354          <idle>-0     (-----) [001] .n.1 82320.542492: cpu_idle: state=4294967295 cpu_id=1
155355          <idle>-0     (-----) [001] d..2 82320.542505: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
155356     kworker/3:1-25210 (25210) [003] d..2 82320.542514: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155357          <idle>-0     (-----) [003] d..1 82320.542529: cpu_idle: state=0 cpu_id=3
155358            adbd-24055 (  960) [001] d..2 82320.542540: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155359          <idle>-0     (-----) [001] d..1 82320.542551: cpu_idle: state=0 cpu_id=1
155360    RenderThread-16607 (10023) [006] d..2 82320.542568: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
155361          <idle>-0     (-----) [006] d..1 82320.542575: cpu_idle: state=0 cpu_id=6
155362          <idle>-0     (-----) [003] d.h3 82320.542661: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155363          <idle>-0     (-----) [006] d.h2 82320.542663: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
155364          <idle>-0     (-----) [006] d.h3 82320.542667: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
155365          <idle>-0     (-----) [006] dnh3 82320.542668: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
155366          <idle>-0     (-----) [003] dnh4 82320.542671: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155367          <idle>-0     (-----) [006] .n.1 82320.542671: cpu_idle: state=4294967295 cpu_id=6
155368          <idle>-0     (-----) [006] d..2 82320.542675: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
155369          <idle>-0     (-----) [003] .n.1 82320.542680: cpu_idle: state=4294967295 cpu_id=3
155370          <idle>-0     (-----) [003] d..2 82320.542692: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155371   kworker/u17:0-98    (   98) [003] d..2 82320.542704: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155372   kworker/u17:0-98    (   98) [003] d..3 82320.542714: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155373   kworker/u17:0-98    (   98) [003] d..2 82320.542738: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155374     kworker/3:1-25210 (25210) [003] d..2 82320.542750: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
155375     kworker/3:1-25210 (25210) [003] d..3 82320.542767: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
155376    RenderThread-16607 (10023) [006] .... 82320.542775: binder_transaction: transaction=1573340 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
155377    RenderThread-16607 (10023) [006] .... 82320.542777: binder_transaction_alloc_buf: transaction=1573340 data_size=192 offsets_size=8
155378    RenderThread-16607 (10023) [006] ...2 82320.542782: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
155379     kworker/3:1-25210 (25210) [003] d..2 82320.542783: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
155380    RenderThread-16607 (10023) [006] d..4 82320.542784: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
155381    RenderThread-16607 (10023) [006] dn.5 82320.542789: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
155382    RenderThread-16607 (10023) [006] d..2 82320.542792: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
155383   Binder:8858_1-8871  ( 8858) [006] .... 82320.542797: binder_transaction_received: transaction=1573340
155384            adbd-24054 (  960) [003] d..2 82320.542807: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
155385            adbd-24054 (  960) [003] d..3 82320.542818: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
155386   Binder:8858_1-8871  ( 8858) [006] .... 82320.542870: binder_transaction: transaction=1573341 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
155387   Binder:8858_1-8871  ( 8858) [006] .... 82320.542872: binder_transaction_alloc_buf: transaction=1573341 data_size=68 offsets_size=0
155388   Binder:8858_1-8871  ( 8858) [006] .... 82320.542873: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
155389   Binder:8858_1-8871  ( 8858) [006] d..2 82320.542888: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
155390    RenderThread-16607 (10023) [006] .... 82320.542892: binder_transaction_received: transaction=1573341
155391            adbd-24054 (  960) [003] d..2 82320.542895: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
155392    RenderThread-16607 (10023) [006] d..2 82320.542927: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
155393          <idle>-0     (-----) [006] d..1 82320.542933: cpu_idle: state=0 cpu_id=6
155394            adbd-960   (  960) [003] d..2 82320.543034: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155395          <idle>-0     (-----) [003] d..1 82320.543052: cpu_idle: state=0 cpu_id=3
155396          <idle>-0     (-----) [006] ...1 82320.543148: cpu_idle: state=4294967295 cpu_id=6
155397          <idle>-0     (-----) [006] d..1 82320.543149: cpu_idle: state=0 cpu_id=6
155398          <idle>-0     (-----) [000] d.h3 82320.544121: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
155399          <idle>-0     (-----) [000] d.h4 82320.544143: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
155400          <idle>-0     (-----) [003] .n.1 82320.544150: cpu_idle: state=4294967295 cpu_id=3
155401          <idle>-0     (-----) [000] ...1 82320.544159: cpu_idle: state=4294967295 cpu_id=0
155402          <idle>-0     (-----) [003] d..2 82320.544162: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
155403          <idle>-0     (-----) [000] d..1 82320.544166: cpu_idle: state=0 cpu_id=0
155404 kgsl_worker_thr-258   (  258) [003] d..2 82320.544222: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
155405 kgsl_worker_thr-258   (  258) [003] d..3 82320.544242: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
155406 kgsl_worker_thr-258   (  258) [003] d..2 82320.544268: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155407  kworker/u16:13-1147  ( 1147) [003] d..2 82320.544464: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155408          <idle>-0     (-----) [003] d..1 82320.544481: cpu_idle: state=0 cpu_id=3
155409          <idle>-0     (-----) [002] d.h2 82320.544640: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
155410          <idle>-0     (-----) [002] dnh3 82320.544652: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
155411          <idle>-0     (-----) [002] .n.1 82320.544661: cpu_idle: state=4294967295 cpu_id=2
155412          <idle>-0     (-----) [002] d..2 82320.544672: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
155413        DispSync-8879  ( 8858) [002] d..1 82320.544685: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
155414        DispSync-8879  ( 8858) [002] d..2 82320.544703: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
155415          <idle>-0     (-----) [001] .n.1 82320.544708: cpu_idle: state=4294967295 cpu_id=1
155416          <idle>-0     (-----) [001] d..2 82320.544719: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
155417        DispSync-8879  ( 8858) [002] d..2 82320.544734: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155418          <idle>-0     (-----) [002] d..1 82320.544746: cpu_idle: state=0 cpu_id=2
155419   sfEventThread-8882  ( 8858) [001] d..3 82320.544766: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
155420   sfEventThread-8882  ( 8858) [001] d..4 82320.544789: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
155421          <idle>-0     (-----) [002] .n.1 82320.544794: cpu_idle: state=4294967295 cpu_id=2
155422          <idle>-0     (-----) [002] d..2 82320.544805: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
155423   sfEventThread-8882  ( 8858) [001] d..2 82320.544825: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155424          <idle>-0     (-----) [001] d..1 82320.544838: cpu_idle: state=0 cpu_id=1
155425              ps-27820 (27820) [004] d..2 82320.544879: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155426              ps-27820 (27820) [004] dn.3 82320.544886: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155427              ps-27820 (27820) [004] d..2 82320.544889: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
155428 shell svc 27816-27817 (  960) [004] d..2 82320.544908: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
155429 shell svc 27816-27817 (  960) [004] d..2 82320.544921: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
155430          <idle>-0     (-----) [003] dnh2 82320.544929: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
155431          <idle>-0     (-----) [003] .n.1 82320.544937: cpu_idle: state=4294967295 cpu_id=3
155432          <idle>-0     (-----) [003] d..2 82320.544948: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
155433            adbd-960   (  960) [003] d..1 82320.545032: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
155434            adbd-960   (  960) [003] d..2 82320.545079: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155435              ps-27820 (27820) [004] d.s2 82320.545122: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
155436  surfaceflinger-8858  ( 8858) [002] d.h1 82320.545156: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
155437            adbd-960   (  960) [003] d..2 82320.545193: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155438  surfaceflinger-8858  ( 8858) [002] d..1 82320.545252: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
155439  surfaceflinger-8858  ( 8858) [002] d..2 82320.545271: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
155440          <idle>-0     (-----) [001] .n.1 82320.545277: cpu_idle: state=4294967295 cpu_id=1
155441          <idle>-0     (-----) [001] d..2 82320.545288: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
155442            adbd-24055 (  960) [003] d..2 82320.545290: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155443          <idle>-0     (-----) [003] d.h4 82320.545314: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155444          <idle>-0     (-----) [003] dnh5 82320.545331: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155445          <idle>-0     (-----) [003] d..2 82320.545346: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155446   sfEventThread-8882  ( 8858) [001] d..2 82320.545349: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155447   kworker/u17:0-98    (   98) [003] d..2 82320.545359: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155448   kworker/u17:0-98    (   98) [003] d..3 82320.545369: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155449   kworker/u17:0-98    (   98) [003] d..2 82320.545393: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155450     kworker/3:1-25210 (25210) [003] d..2 82320.545403: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155451     kworker/3:1-25210 (25210) [003] d..3 82320.545419: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155452     kworker/3:1-25210 (25210) [003] d..2 82320.545448: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155453  surfaceflinger-8858  ( 8858) [002] ...1 82320.545513: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
155454  surfaceflinger-8858  ( 8858) [002] ...1 82320.545523: tracing_mark_write: E|8858
155455            adbd-24055 (  960) [003] d..2 82320.545537: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155456          <idle>-0     (-----) [003] d..1 82320.545555: cpu_idle: state=0 cpu_id=3
155457  surfaceflinger-8858  ( 8858) [002] .... 82320.545594: binder_transaction: transaction=1573342 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
155458  surfaceflinger-8858  ( 8858) [002] .... 82320.545599: binder_transaction_alloc_buf: transaction=1573342 data_size=540 offsets_size=96
155459  kworker/u16:13-1147  ( 1147) [001] d..2 82320.545623: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
155460  surfaceflinger-8858  ( 8858) [002] ...2 82320.545628: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
155461          <idle>-0     (-----) [003] d.h3 82320.545634: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155462  surfaceflinger-8858  ( 8858) [002] d..4 82320.545638: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
155463          <idle>-0     (-----) [003] dnh4 82320.545646: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155464          <idle>-0     (-----) [003] .n.1 82320.545655: cpu_idle: state=4294967295 cpu_id=3
155465  surfaceflinger-8858  ( 8858) [002] d..5 82320.545659: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
155466          <idle>-0     (-----) [003] d..2 82320.545669: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155467          <idle>-0     (-----) [001] dns3 82320.545671: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
155468   kworker/u17:0-98    (   98) [003] d..2 82320.545682: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155469          <idle>-0     (-----) [001] dns4 82320.545686: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
155470   kworker/u17:0-98    (   98) [003] d..3 82320.545692: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155471  surfaceflinger-8858  ( 8858) [002] d..2 82320.545695: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155472          <idle>-0     (-----) [001] d..2 82320.545697: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
155473 [email protected]   (  619) [001] .... 82320.545709: binder_transaction_received: transaction=1573342
155474          <idle>-0     (-----) [002] d..1 82320.545713: cpu_idle: state=0 cpu_id=2
155475   kworker/u17:0-98    (   98) [003] d..2 82320.545716: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155476     kworker/3:1-25210 (25210) [003] d..2 82320.545726: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155477     kworker/3:1-25210 (25210) [003] d..3 82320.545742: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155478     kworker/3:1-25210 (25210) [003] d..2 82320.545758: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155479 [email protected]   (  619) [001] ...1 82320.545773: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
155480            adbd-24055 (  960) [003] d..2 82320.545794: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155481          <idle>-0     (-----) [003] d..1 82320.545809: cpu_idle: state=0 cpu_id=3
155482 [email protected]   (  619) [001] ...1 82320.545905: tracing_mark_write: B|619|HWCSession::PresentDisplay::
155483          <idle>-0     (-----) [003] d.h3 82320.545910: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155484          <idle>-0     (-----) [003] dnh4 82320.545921: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155485          <idle>-0     (-----) [003] .n.1 82320.545930: cpu_idle: state=4294967295 cpu_id=3
155486          <idle>-0     (-----) [003] d..2 82320.545942: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155487   kworker/u17:0-98    (   98) [003] d..2 82320.545954: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155488   kworker/u17:0-98    (   98) [003] d..3 82320.545964: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155489   kworker/u17:0-98    (   98) [003] d..2 82320.545988: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155490     kworker/3:1-25210 (25210) [003] d..2 82320.546001: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
155491     kworker/3:1-25210 (25210) [003] d..3 82320.546017: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
155492     kworker/3:1-25210 (25210) [003] d..2 82320.546033: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
155493            adbd-24054 (  960) [003] d..2 82320.546058: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
155494            adbd-24054 (  960) [003] d..3 82320.546068: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
155495 [email protected]   (  619) [001] ...1 82320.546112: tracing_mark_write: B|619|HWDeviceDRM::Commit::
155496 [email protected]   (  619) [001] ...1 82320.546127: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
155497            adbd-24054 (  960) [003] d..2 82320.546140: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
155498            adbd-960   (  960) [003] d..2 82320.546280: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155499          <idle>-0     (-----) [003] d..1 82320.546298: cpu_idle: state=0 cpu_id=3
155500 [email protected]   (  619) [001] d..2 82320.546854: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
155501 [email protected]   (  619) [001] d..3 82320.546879: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
155502          <idle>-0     (-----) [000] .n.1 82320.546884: cpu_idle: state=4294967295 cpu_id=0
155503          <idle>-0     (-----) [000] d..2 82320.546897: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
155504 [email protected]   (  619) [001] ...1 82320.546992: tracing_mark_write: E|619
155505 [email protected]   (  619) [001] ...1 82320.546999: tracing_mark_write: E|619
155506 [email protected]   (  619) [001] ...1 82320.547072: tracing_mark_write: E|619
155507 [email protected]   (  619) [001] ...1 82320.547131: tracing_mark_write: E|619
155508 [email protected]   (  619) [001] .... 82320.547149: binder_transaction: transaction=1573343 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
155509 [email protected]   (  619) [001] .... 82320.547154: binder_transaction_alloc_buf: transaction=1573343 data_size=576 offsets_size=112
155510 [email protected]   (  619) [001] d..2 82320.547177: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
155511 [email protected]   (  619) [001] d..3 82320.547195: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
155512 [email protected]   (  619) [001] .... 82320.547201: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
155513          <idle>-0     (-----) [002] .n.1 82320.547202: cpu_idle: state=4294967295 cpu_id=2
155514          <idle>-0     (-----) [002] d..2 82320.547213: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
155515  surfaceflinger-8858  ( 8858) [002] .... 82320.547221: binder_transaction_received: transaction=1573343
155516 [email protected]   (  619) [001] d..2 82320.547283: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
155517     ksoftirqd/1-18    (   18) [001] d.s2 82320.547303: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
155518     ksoftirqd/1-18    (   18) [001] d.s3 82320.547321: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
155519     ksoftirqd/1-18    (   18) [001] d.s3 82320.547327: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
155520     ksoftirqd/1-18    (   18) [001] d..2 82320.547341: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155521  kworker/u16:13-1147  ( 1147) [001] d..2 82320.547548: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
155522          <idle>-0     (-----) [001] d.s4 82320.547589: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
155523          <idle>-0     (-----) [001] d.s5 82320.547598: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
155524          <idle>-0     (-----) [001] dns5 82320.547604: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
155525          <idle>-0     (-----) [001] d..2 82320.547617: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155526 crtc_commit:111-321   (  321) [000] d..2 82320.547631: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
155527          <idle>-0     (-----) [003] ...1 82320.547668: cpu_idle: state=4294967295 cpu_id=3
155528          <idle>-0     (-----) [000] d..1 82320.547671: cpu_idle: state=0 cpu_id=0
155529          <idle>-0     (-----) [003] d..1 82320.547673: cpu_idle: state=0 cpu_id=3
155530  surfaceflinger-8858  ( 8858) [002] d..2 82320.547681: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155531          <idle>-0     (-----) [000] ...1 82320.547686: cpu_idle: state=4294967295 cpu_id=0
155532          <idle>-0     (-----) [000] d..1 82320.547691: cpu_idle: state=0 cpu_id=0
155533          <idle>-0     (-----) [002] d..1 82320.547726: cpu_idle: state=0 cpu_id=2
155534          <idle>-0     (-----) [002] ...1 82320.547742: cpu_idle: state=4294967295 cpu_id=2
155535          <idle>-0     (-----) [002] d..1 82320.547748: cpu_idle: state=0 cpu_id=2
155536  kworker/u16:13-1147  ( 1147) [001] .... 82320.547757: clk_set_rate: l3_cluster0_vote_clk 300000000
155537  kworker/u16:13-1147  ( 1147) [001] .... 82320.547807: clk_set_rate: l3_cluster1_vote_clk 1478400000
155538  kworker/u16:13-1147  ( 1147) [001] .... 82320.547814: clk_set_rate: l3_clk 1478400000
155539              ps-27820 (27820) [004] d..2 82320.547830: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155540              ps-27820 (27820) [004] dn.3 82320.547837: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155541              ps-27820 (27820) [004] d..2 82320.547840: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
155542 shell svc 27816-27817 (  960) [004] d..2 82320.547859: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
155543 shell svc 27816-27817 (  960) [004] d..2 82320.547873: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
155544          <idle>-0     (-----) [003] dnh2 82320.547880: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
155545          <idle>-0     (-----) [003] .n.1 82320.547887: cpu_idle: state=4294967295 cpu_id=3
155546          <idle>-0     (-----) [003] d..2 82320.547899: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
155547  kworker/u16:13-1147  ( 1147) [001] d..2 82320.547911: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
155548          <idle>-0     (-----) [001] d.s4 82320.547945: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
155549          <idle>-0     (-----) [001] d.s5 82320.547954: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
155550          <idle>-0     (-----) [001] dns5 82320.547959: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
155551          <idle>-0     (-----) [001] d..2 82320.547972: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155552            adbd-960   (  960) [003] d..1 82320.547976: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155553            adbd-960   (  960) [003] d..2 82320.547997: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155554  kworker/u16:13-1147  ( 1147) [001] d..2 82320.548019: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155555          <idle>-0     (-----) [001] d..1 82320.548031: cpu_idle: state=0 cpu_id=1
155556            adbd-960   (  960) [003] d..2 82320.548065: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155557            adbd-24055 (  960) [003] d..2 82320.548149: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155558          <idle>-0     (-----) [003] d.h4 82320.548172: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155559          <idle>-0     (-----) [003] dnh5 82320.548187: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155560          <idle>-0     (-----) [003] d..2 82320.548201: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155561   kworker/u17:0-98    (   98) [003] d..2 82320.548213: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155562   kworker/u17:0-98    (   98) [003] d..3 82320.548223: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155563   kworker/u17:0-98    (   98) [003] d..2 82320.548248: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155564     kworker/3:1-25210 (25210) [003] d..2 82320.548257: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155565     kworker/3:1-25210 (25210) [003] d..3 82320.548273: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155566     kworker/3:1-25210 (25210) [003] d..2 82320.548288: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155567            adbd-24055 (  960) [003] d..2 82320.548368: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155568          <idle>-0     (-----) [003] d..1 82320.548384: cpu_idle: state=0 cpu_id=3
155569          <idle>-0     (-----) [001] d.s2 82320.548464: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
155570          <idle>-0     (-----) [003] d.h3 82320.548468: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155571          <idle>-0     (-----) [003] dnh4 82320.548479: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155572          <idle>-0     (-----) [001] dns3 82320.548482: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=001
155573          <idle>-0     (-----) [003] .n.1 82320.548489: cpu_idle: state=4294967295 cpu_id=3
155574          <idle>-0     (-----) [001] .n.1 82320.548500: cpu_idle: state=4294967295 cpu_id=1
155575          <idle>-0     (-----) [003] d..2 82320.548502: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155576          <idle>-0     (-----) [001] d..2 82320.548510: 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
155577   kworker/u17:0-98    (   98) [003] d..2 82320.548513: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155578   kworker/u17:0-98    (   98) [003] d..3 82320.548523: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155579     rcu_preempt-7     (    7) [001] d..2 82320.548546: 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
155580   kworker/u17:0-98    (   98) [003] d..2 82320.548547: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155581     kworker/3:1-25210 (25210) [003] d..2 82320.548556: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155582          <idle>-0     (-----) [001] d..1 82320.548559: cpu_idle: state=0 cpu_id=1
155583     kworker/3:1-25210 (25210) [003] d..3 82320.548572: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155584     kworker/3:1-25210 (25210) [003] d..2 82320.548587: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155585            adbd-24055 (  960) [003] d..2 82320.548626: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155586          <idle>-0     (-----) [003] d..1 82320.548641: cpu_idle: state=0 cpu_id=3
155587          <idle>-0     (-----) [003] d.h3 82320.548742: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155588          <idle>-0     (-----) [003] dnh4 82320.548752: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155589          <idle>-0     (-----) [003] .n.1 82320.548761: cpu_idle: state=4294967295 cpu_id=3
155590          <idle>-0     (-----) [003] d..2 82320.548773: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155591   kworker/u17:0-98    (   98) [003] d..2 82320.548785: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155592   kworker/u17:0-98    (   98) [003] d..3 82320.548794: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155593   kworker/u17:0-98    (   98) [003] d..2 82320.548818: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155594     kworker/3:1-25210 (25210) [003] d..2 82320.548829: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
155595     kworker/3:1-25210 (25210) [003] d..3 82320.548845: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
155596     kworker/3:1-25210 (25210) [003] d..2 82320.548860: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
155597            adbd-24054 (  960) [003] d..2 82320.548881: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
155598            adbd-24054 (  960) [003] d..3 82320.548891: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
155599            adbd-24054 (  960) [003] d..2 82320.548959: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
155600            adbd-960   (  960) [003] d..2 82320.549084: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155601          <idle>-0     (-----) [003] d..1 82320.549102: cpu_idle: state=0 cpu_id=3
155602          <idle>-0     (-----) [003] ...1 82320.550218: cpu_idle: state=4294967295 cpu_id=3
155603          <idle>-0     (-----) [003] d..1 82320.550223: cpu_idle: state=0 cpu_id=3
155604              ps-27820 (27820) [004] d..2 82320.551314: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155605              ps-27820 (27820) [004] dn.3 82320.551319: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155606              ps-27820 (27820) [004] d..2 82320.551322: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
155607 shell svc 27816-27817 (  960) [004] d..2 82320.551335: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
155608 shell svc 27816-27817 (  960) [004] d..2 82320.551357: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
155609          <idle>-0     (-----) [003] dnh2 82320.551365: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
155610          <idle>-0     (-----) [003] .n.1 82320.551371: cpu_idle: state=4294967295 cpu_id=3
155611          <idle>-0     (-----) [003] d..2 82320.551383: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
155612            adbd-960   (  960) [003] d..1 82320.551452: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155613            adbd-960   (  960) [003] d..2 82320.551471: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155614            adbd-960   (  960) [003] d..2 82320.551531: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155615            adbd-24055 (  960) [003] d..2 82320.551611: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155616          <idle>-0     (-----) [003] d.h4 82320.551634: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155617          <idle>-0     (-----) [003] dnh5 82320.551649: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155618          <idle>-0     (-----) [003] d..2 82320.551662: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155619   kworker/u17:0-98    (   98) [003] d..2 82320.551673: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155620   kworker/u17:0-98    (   98) [003] d..3 82320.551683: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155621   kworker/u17:0-98    (   98) [003] d..2 82320.551707: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155622     kworker/3:1-25210 (25210) [003] d..2 82320.551716: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155623     kworker/3:1-25210 (25210) [003] d..3 82320.551731: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155624     kworker/3:1-25210 (25210) [003] d..2 82320.551746: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155625            adbd-24055 (  960) [003] d.s2 82320.551819: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=001
155626            adbd-24055 (  960) [003] dns3 82320.551859: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
155627            adbd-24055 (  960) [003] d..2 82320.551871: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=7 next_prio=120
155628     rcu_preempt-7     (    7) [003] d..2 82320.551879: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=002
155629     rcu_preempt-7     (    7) [003] d..3 82320.551915: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=003
155630     rcu_preempt-7     (    7) [003] d..2 82320.551919: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
155631     rcu_preempt-7     (    7) [003] d..3 82320.551953: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
155632     rcu_preempt-7     (    7) [003] d..2 82320.551969: 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
155633         rcuop/4-45    (   45) [003] d..2 82320.551993: 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
155634         rcuop/0-10    (   10) [003] d..2 82320.551999: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
155635         rcuop/0-10    (   10) [003] d..3 82320.552036: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=003
155636         rcuop/0-10    (   10) [003] d..2 82320.552548: 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
155637         rcuop/1-21    (   21) [003] d..2 82320.552569: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155638            adbd-24055 (  960) [003] d..2 82320.552638: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155639          <idle>-0     (-----) [003] d..1 82320.552651: cpu_idle: state=0 cpu_id=3
155640          <idle>-0     (-----) [003] d.h3 82320.552737: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155641          <idle>-0     (-----) [003] dnh4 82320.552750: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155642          <idle>-0     (-----) [003] .n.1 82320.552759: cpu_idle: state=4294967295 cpu_id=3
155643          <idle>-0     (-----) [003] d..2 82320.552772: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155644   kworker/u17:0-98    (   98) [003] d..2 82320.552783: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155645   kworker/u17:0-98    (   98) [003] d..3 82320.552795: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155646   kworker/u17:0-98    (   98) [003] d..2 82320.552818: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155647     kworker/3:1-25210 (25210) [003] d..2 82320.552828: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155648     kworker/3:1-25210 (25210) [003] d..3 82320.552843: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155649     kworker/3:1-25210 (25210) [003] d..2 82320.552859: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155650            adbd-24055 (  960) [003] d..2 82320.552895: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155651          <idle>-0     (-----) [003] d..1 82320.552907: cpu_idle: state=0 cpu_id=3
155652          <idle>-0     (-----) [003] d.h3 82320.553012: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155653          <idle>-0     (-----) [003] dnh4 82320.553023: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155654          <idle>-0     (-----) [000] d.h5 82320.553031: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155655          <idle>-0     (-----) [003] .n.1 82320.553031: cpu_idle: state=4294967295 cpu_id=3
155656          <idle>-0     (-----) [003] d..2 82320.553043: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155657          <idle>-0     (-----) [000] d.h6 82320.553050: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155658   kworker/u17:0-98    (   98) [003] d..2 82320.553054: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155659          <idle>-0     (-----) [000] d.h5 82320.553055: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
155660          <idle>-0     (-----) [002] .n.1 82320.553055: cpu_idle: state=4294967295 cpu_id=2
155661   kworker/u17:0-98    (   98) [003] d..3 82320.553064: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155662          <idle>-0     (-----) [000] dnh6 82320.553065: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
155663          <idle>-0     (-----) [002] d..2 82320.553067: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
155664          <idle>-0     (-----) [000] .n.1 82320.553078: cpu_idle: state=4294967295 cpu_id=0
155665   kworker/u17:0-98    (   98) [003] d..2 82320.553087: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155666          <idle>-0     (-----) [000] d..2 82320.553090: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
155667     kworker/3:1-25210 (25210) [003] d..2 82320.553099: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
155668  crtc_event:111-322   (  322) [002] d..2 82320.553104: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155669          <idle>-0     (-----) [002] d..1 82320.553113: cpu_idle: state=0 cpu_id=2
155670     kworker/3:1-25210 (25210) [003] d..3 82320.553126: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=002
155671          <idle>-0     (-----) [002] .n.1 82320.553131: cpu_idle: state=4294967295 cpu_id=2
155672          <idle>-0     (-----) [002] d..2 82320.553143: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24054 next_prio=120
155673     kworker/3:1-25210 (25210) [003] d..2 82320.553152: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155674          <idle>-0     (-----) [003] d..1 82320.553164: cpu_idle: state=0 cpu_id=3
155675            adbd-24054 (  960) [002] d..2 82320.553171: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
155676            adbd-24054 (  960) [002] d..3 82320.553195: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
155677 crtc_commit:111-321   (  321) [000] d..2 82320.553236: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
155678          <idle>-0     (-----) [000] d..1 82320.553246: cpu_idle: state=0 cpu_id=0
155679            adbd-24054 (  960) [002] d..2 82320.553276: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
155680            adbd-960   (  960) [002] d..2 82320.553414: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155681          <idle>-0     (-----) [002] d..1 82320.553428: cpu_idle: state=0 cpu_id=2
155682              ps-27820 (27820) [004] d..2 82320.553759: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155683              ps-27820 (27820) [004] dn.3 82320.553764: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155684              ps-27820 (27820) [004] d..2 82320.553767: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
155685 shell svc 27816-27817 (  960) [004] d..2 82320.553780: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
155686 shell svc 27816-27817 (  960) [004] d..2 82320.553792: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
155687          <idle>-0     (-----) [002] dnh2 82320.553801: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
155688          <idle>-0     (-----) [002] .n.1 82320.553807: cpu_idle: state=4294967295 cpu_id=2
155689          <idle>-0     (-----) [002] d..2 82320.553819: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
155690            adbd-960   (  960) [002] d..1 82320.553889: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155691            adbd-960   (  960) [002] d..2 82320.553906: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155692          <idle>-0     (-----) [003] .n.1 82320.553912: cpu_idle: state=4294967295 cpu_id=3
155693          <idle>-0     (-----) [003] d..2 82320.553925: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
155694            adbd-960   (  960) [002] d..2 82320.553976: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155695          <idle>-0     (-----) [002] d..1 82320.553989: cpu_idle: state=0 cpu_id=2
155696            adbd-24055 (  960) [003] d.h3 82320.553998: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155697            adbd-24055 (  960) [003] dnh4 82320.554017: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155698            adbd-24055 (  960) [003] d..2 82320.554028: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155699   kworker/u17:0-98    (   98) [003] d..2 82320.554040: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155700   kworker/u17:0-98    (   98) [003] d..3 82320.554049: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155701   kworker/u17:0-98    (   98) [003] d..2 82320.554073: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155702     kworker/3:1-25210 (25210) [003] d..2 82320.554082: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155703     kworker/3:1-25210 (25210) [003] d..3 82320.554085: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155704     kworker/3:1-25210 (25210) [003] d..2 82320.554099: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155705            adbd-24055 (  960) [003] d..2 82320.554175: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155706          <idle>-0     (-----) [003] d..1 82320.554188: cpu_idle: state=0 cpu_id=3
155707          <idle>-0     (-----) [003] d.h3 82320.554287: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155708          <idle>-0     (-----) [003] dnh4 82320.554298: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155709          <idle>-0     (-----) [003] .n.1 82320.554306: cpu_idle: state=4294967295 cpu_id=3
155710          <idle>-0     (-----) [003] d..2 82320.554319: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155711   kworker/u17:0-98    (   98) [003] d..2 82320.554330: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155712   kworker/u17:0-98    (   98) [003] d..3 82320.554340: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155713   kworker/u17:0-98    (   98) [003] d..2 82320.554364: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155714     kworker/3:1-25210 (25210) [003] d..2 82320.554373: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155715     kworker/3:1-25210 (25210) [003] d..3 82320.554388: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155716     kworker/3:1-25210 (25210) [003] d..2 82320.554403: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155717            adbd-24055 (  960) [003] d..2 82320.554433: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155718          <idle>-0     (-----) [003] d..1 82320.554446: cpu_idle: state=0 cpu_id=3
155719          <idle>-0     (-----) [003] d.h3 82320.554558: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155720          <idle>-0     (-----) [003] dnh4 82320.554568: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155721          <idle>-0     (-----) [003] .n.1 82320.554576: cpu_idle: state=4294967295 cpu_id=3
155722          <idle>-0     (-----) [003] d..2 82320.554589: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155723   kworker/u17:0-98    (   98) [003] d..2 82320.554601: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155724   kworker/u17:0-98    (   98) [003] d..3 82320.554610: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155725   kworker/u17:0-98    (   98) [003] d..2 82320.554635: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155726     kworker/3:1-25210 (25210) [003] d..2 82320.554646: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=002
155727     kworker/3:1-25210 (25210) [003] d..3 82320.554660: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=002
155728          <idle>-0     (-----) [002] .n.1 82320.554666: cpu_idle: state=4294967295 cpu_id=2
155729          <idle>-0     (-----) [002] d..2 82320.554679: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24054 next_prio=120
155730     kworker/3:1-25210 (25210) [003] d..2 82320.554686: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155731          <idle>-0     (-----) [003] d..1 82320.554697: cpu_idle: state=0 cpu_id=3
155732            adbd-24054 (  960) [002] d..2 82320.554698: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
155733            adbd-24054 (  960) [002] d..3 82320.554710: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
155734            adbd-24054 (  960) [002] d..2 82320.554783: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
155735            adbd-960   (  960) [002] d..2 82320.554904: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155736          <idle>-0     (-----) [002] d..1 82320.554917: cpu_idle: state=0 cpu_id=2
155737              ps-27820 (27820) [004] d.s2 82320.555116: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
155738          <idle>-0     (-----) [000] d.s3 82320.555135: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155739          <idle>-0     (-----) [001] ...1 82320.555139: cpu_idle: state=4294967295 cpu_id=1
155740          <idle>-0     (-----) [001] d..1 82320.555146: cpu_idle: state=0 cpu_id=1
155741          <idle>-0     (-----) [000] d.s4 82320.555151: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155742          <idle>-0     (-----) [002] .n.1 82320.555158: cpu_idle: state=4294967295 cpu_id=2
155743          <idle>-0     (-----) [000] dnH3 82320.555164: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
155744          <idle>-0     (-----) [002] d..2 82320.555169: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
155745          <idle>-0     (-----) [000] .n.1 82320.555185: cpu_idle: state=4294967295 cpu_id=0
155746          <idle>-0     (-----) [000] d..2 82320.555195: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155747  crtc_event:111-322   (  322) [002] d..2 82320.555202: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155748          <idle>-0     (-----) [002] d..1 82320.555212: cpu_idle: state=0 cpu_id=2
155749  kworker/u16:13-1147  ( 1147) [000] .... 82320.555270: clk_set_rate: l3_cluster0_vote_clk 403200000
155750  kworker/u16:13-1147  ( 1147) [000] d.h6 82320.555373: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
155751  kworker/u16:13-1147  ( 1147) [000] d.h7 82320.555397: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
155752          <idle>-0     (-----) [001] .n.1 82320.555402: cpu_idle: state=4294967295 cpu_id=1
155753          <idle>-0     (-----) [001] d..2 82320.555413: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
155754 crtc_commit:111-321   (  321) [001] d..2 82320.555492: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155755          <idle>-0     (-----) [001] d..1 82320.555504: cpu_idle: state=0 cpu_id=1
155756  kworker/u16:13-1147  ( 1147) [000] d..2 82320.555570: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
155757          <idle>-0     (-----) [000] d..1 82320.555585: cpu_idle: state=0 cpu_id=0
155758          <idle>-0     (-----) [001] d.s3 82320.555602: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
155759          <idle>-0     (-----) [001] d.s4 82320.555612: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
155760          <idle>-0     (-----) [001] d.s4 82320.555622: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
155761          <idle>-0     (-----) [001] ...1 82320.555633: cpu_idle: state=4294967295 cpu_id=1
155762          <idle>-0     (-----) [001] d..1 82320.555641: cpu_idle: state=0 cpu_id=1
155763          <idle>-0     (-----) [000] dnh5 82320.555670: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155764          <idle>-0     (-----) [000] dnh6 82320.555686: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
155765          <idle>-0     (-----) [002] .n.1 82320.555692: cpu_idle: state=4294967295 cpu_id=2
155766          <idle>-0     (-----) [002] d..2 82320.555701: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
155767          <idle>-0     (-----) [000] .n.1 82320.555706: cpu_idle: state=4294967295 cpu_id=0
155768          <idle>-0     (-----) [000] d..2 82320.555719: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155769  crtc_event:111-322   (  322) [002] d..2 82320.555726: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155770          <idle>-0     (-----) [002] d..1 82320.555734: cpu_idle: state=0 cpu_id=2
155771  kworker/u16:13-1147  ( 1147) [000] d..2 82320.555881: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
155772          <idle>-0     (-----) [000] d..1 82320.555895: cpu_idle: state=0 cpu_id=0
155773          <idle>-0     (-----) [001] d.s3 82320.555909: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
155774          <idle>-0     (-----) [001] d.s4 82320.555918: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
155775          <idle>-0     (-----) [001] d.s4 82320.555926: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
155776          <idle>-0     (-----) [000] .n.1 82320.555932: cpu_idle: state=4294967295 cpu_id=0
155777          <idle>-0     (-----) [001] ...1 82320.555937: cpu_idle: state=4294967295 cpu_id=1
155778          <idle>-0     (-----) [001] d..1 82320.555943: cpu_idle: state=0 cpu_id=1
155779          <idle>-0     (-----) [000] d..2 82320.555944: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155780  kworker/u16:13-1147  ( 1147) [000] d..2 82320.555973: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
155781          <idle>-0     (-----) [000] d..1 82320.555984: cpu_idle: state=0 cpu_id=0
155782          <idle>-0     (-----) [002] d.h2 82320.557098: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
155783          <idle>-0     (-----) [002] dnh3 82320.557114: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=002
155784          <idle>-0     (-----) [002] .n.1 82320.557123: cpu_idle: state=4294967295 cpu_id=2
155785          <idle>-0     (-----) [002] d..2 82320.557132: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
155786        DispSync-8879  ( 8858) [002] d..1 82320.557156: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
155787        DispSync-8879  ( 8858) [002] d..2 82320.557174: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
155788          <idle>-0     (-----) [001] .n.1 82320.557179: cpu_idle: state=4294967295 cpu_id=1
155789          <idle>-0     (-----) [001] d..2 82320.557190: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
155790        DispSync-8879  ( 8858) [002] d..2 82320.557207: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155791          <idle>-0     (-----) [002] d..1 82320.557218: cpu_idle: state=0 cpu_id=2
155792  appEventThread-8881  ( 8858) [001] d..3 82320.557258: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
155793          <idle>-0     (-----) [005] dnh2 82320.557280: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
155794          <idle>-0     (-----) [005] .n.1 82320.557283: cpu_idle: state=4294967295 cpu_id=5
155795          <idle>-0     (-----) [005] d..2 82320.557286: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
155796  appEventThread-8881  ( 8858) [001] d..2 82320.557316: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155797          <idle>-0     (-----) [001] d..1 82320.557332: cpu_idle: state=0 cpu_id=1
155798 s.nexuslauncher-10023 (10023) [005] .... 82320.557429: binder_transaction: transaction=1573344 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
155799 s.nexuslauncher-10023 (10023) [005] .... 82320.557433: binder_transaction_alloc_buf: transaction=1573344 data_size=80 offsets_size=0
155800 s.nexuslauncher-10023 (10023) [005] d..4 82320.557435: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=006
155801          <idle>-0     (-----) [000] dnh2 82320.557476: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
155802          <idle>-0     (-----) [000] .n.1 82320.557483: cpu_idle: state=4294967295 cpu_id=0
155803 s.nexuslauncher-10023 (10023) [005] d..3 82320.557484: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
155804 s.nexuslauncher-10023 (10023) [005] d..4 82320.557492: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
155805          <idle>-0     (-----) [000] d..2 82320.557493: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
155806          <idle>-0     (-----) [006] .n.1 82320.557496: cpu_idle: state=4294967295 cpu_id=6
155807   Binder:8858_1-8871  ( 8858) [000] .... 82320.557500: binder_transaction_received: transaction=1573344
155808          <idle>-0     (-----) [006] d..2 82320.557501: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
155809    RenderThread-16607 (10023) [006] d..2 82320.557513: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
155810          <idle>-0     (-----) [006] d..1 82320.557516: cpu_idle: state=0 cpu_id=6
155811   Binder:8858_1-8871  ( 8858) [000] d..1 82320.557531: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
155812   Binder:8858_1-8871  ( 8858) [000] d..2 82320.557547: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
155813          <idle>-0     (-----) [001] .n.1 82320.557554: cpu_idle: state=4294967295 cpu_id=1
155814          <idle>-0     (-----) [001] d..2 82320.557563: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
155815   Binder:8858_1-8871  ( 8858) [000] d..2 82320.557589: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
155816          <idle>-0     (-----) [000] d..1 82320.557602: cpu_idle: state=0 cpu_id=0
155817  appEventThread-8881  ( 8858) [001] d..2 82320.557608: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155818          <idle>-0     (-----) [001] d..1 82320.557619: cpu_idle: state=0 cpu_id=1
155819 s.nexuslauncher-10023 (10023) [005] d..3 82320.557626: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
155820 s.nexuslauncher-10023 (10023) [005] d..4 82320.557633: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
155821          <idle>-0     (-----) [006] .n.1 82320.557638: cpu_idle: state=4294967295 cpu_id=6
155822          <idle>-0     (-----) [006] d..2 82320.557641: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
155823 s.nexuslauncher-10023 (10023) [005] d..2 82320.557642: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
155824          <idle>-0     (-----) [005] d..1 82320.557647: cpu_idle: state=0 cpu_id=5
155825    RenderThread-16607 (10023) [006] d..1 82320.557750: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
155826    RenderThread-16607 (10023) [006] d..2 82320.557758: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
155827          <idle>-0     (-----) [005] .n.1 82320.557762: cpu_idle: state=4294967295 cpu_id=5
155828          <idle>-0     (-----) [005] d..2 82320.557766: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
155829    RenderThread-16607 (10023) [006] .... 82320.557783: binder_transaction: transaction=1573345 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
155830    RenderThread-16607 (10023) [006] .... 82320.557784: binder_transaction_alloc_buf: transaction=1573345 data_size=104 offsets_size=0
155831    RenderThread-16607 (10023) [006] ...2 82320.557787: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
155832    RenderThread-16607 (10023) [006] d..4 82320.557789: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
155833 s.nexuslauncher-10023 (10023) [005] d..2 82320.557794: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
155834          <idle>-0     (-----) [005] d..1 82320.557797: cpu_idle: state=0 cpu_id=5
155835    RenderThread-16607 (10023) [006] dn.5 82320.557799: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
155836    RenderThread-16607 (10023) [006] d..2 82320.557818: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
155837   Binder:8858_1-8871  ( 8858) [006] .... 82320.557824: binder_transaction_received: transaction=1573345
155838   Binder:8858_1-8871  ( 8858) [006] .... 82320.557857: binder_transaction: transaction=1573346 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
155839   Binder:8858_1-8871  ( 8858) [006] .... 82320.557859: binder_transaction_alloc_buf: transaction=1573346 data_size=52 offsets_size=8
155840   Binder:8858_1-8871  ( 8858) [006] .... 82320.557863: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
155841   Binder:8858_1-8871  ( 8858) [006] d..2 82320.557875: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
155842    RenderThread-16607 (10023) [006] .... 82320.557879: binder_transaction_received: transaction=1573346
155843          <idle>-0     (-----) [003] d.s2 82320.558463: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
155844          <idle>-0     (-----) [003] dns3 82320.558478: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
155845          <idle>-0     (-----) [003] .n.1 82320.558496: cpu_idle: state=4294967295 cpu_id=3
155846          <idle>-0     (-----) [003] d..2 82320.558508: 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
155847     rcu_preempt-7     (    7) [003] d..2 82320.558542: 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
155848          <idle>-0     (-----) [003] d..1 82320.558554: cpu_idle: state=0 cpu_id=3
155849    RenderThread-16607 (10023) [006] d..2 82320.558811: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
155850          <idle>-0     (-----) [006] d..1 82320.558815: cpu_idle: state=0 cpu_id=6
155851          <idle>-0     (-----) [006] d.h2 82320.558908: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
155852          <idle>-0     (-----) [006] d.h3 82320.558911: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
155853          <idle>-0     (-----) [006] dnh3 82320.558912: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
155854          <idle>-0     (-----) [006] .n.1 82320.558915: cpu_idle: state=4294967295 cpu_id=6
155855          <idle>-0     (-----) [006] d..2 82320.558918: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
155856              ps-27820 (27820) [004] d..2 82320.558974: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155857              ps-27820 (27820) [004] dn.3 82320.558979: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155858              ps-27820 (27820) [004] d..2 82320.558983: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
155859    RenderThread-16607 (10023) [006] .... 82320.559000: binder_transaction: transaction=1573347 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
155860 shell svc 27816-27817 (  960) [004] d..2 82320.559000: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
155861    RenderThread-16607 (10023) [006] .... 82320.559001: binder_transaction_alloc_buf: transaction=1573347 data_size=192 offsets_size=8
155862    RenderThread-16607 (10023) [006] ...2 82320.559004: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
155863    RenderThread-16607 (10023) [006] d..4 82320.559006: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
155864    RenderThread-16607 (10023) [006] dn.5 82320.559010: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
155865    RenderThread-16607 (10023) [006] d..2 82320.559013: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
155866   Binder:8858_1-8871  ( 8858) [006] .... 82320.559017: binder_transaction_received: transaction=1573347
155867 shell svc 27816-27817 (  960) [004] d..2 82320.559023: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
155868          <idle>-0     (-----) [002] dnh2 82320.559031: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=002
155869          <idle>-0     (-----) [001] ...1 82320.559032: cpu_idle: state=4294967295 cpu_id=1
155870          <idle>-0     (-----) [001] d..1 82320.559037: cpu_idle: state=0 cpu_id=1
155871          <idle>-0     (-----) [002] .n.1 82320.559038: cpu_idle: state=4294967295 cpu_id=2
155872          <idle>-0     (-----) [002] d..2 82320.559049: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
155873   Binder:8858_1-8871  ( 8858) [006] .... 82320.559077: binder_transaction: transaction=1573348 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
155874   Binder:8858_1-8871  ( 8858) [006] .... 82320.559079: binder_transaction_alloc_buf: transaction=1573348 data_size=68 offsets_size=0
155875   Binder:8858_1-8871  ( 8858) [006] .... 82320.559080: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
155876   Binder:8858_1-8871  ( 8858) [006] d..2 82320.559093: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
155877    RenderThread-16607 (10023) [006] .... 82320.559096: binder_transaction_received: transaction=1573348
155878    RenderThread-16607 (10023) [006] d..2 82320.559120: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
155879          <idle>-0     (-----) [006] d..1 82320.559124: cpu_idle: state=0 cpu_id=6
155880            adbd-960   (  960) [002] d..1 82320.559143: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
155881            adbd-960   (  960) [002] d..2 82320.559187: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
155882            adbd-960   (  960) [002] d..2 82320.559253: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155883          <idle>-0     (-----) [006] ...1 82320.559339: cpu_idle: state=4294967295 cpu_id=6
155884          <idle>-0     (-----) [006] d..1 82320.559340: cpu_idle: state=0 cpu_id=6
155885            adbd-24055 (  960) [002] d..2 82320.559349: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155886          <idle>-0     (-----) [003] d.h3 82320.559358: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155887          <idle>-0     (-----) [002] d..1 82320.559362: cpu_idle: state=0 cpu_id=2
155888          <idle>-0     (-----) [003] dnh4 82320.559374: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155889          <idle>-0     (-----) [003] .n.1 82320.559382: cpu_idle: state=4294967295 cpu_id=3
155890          <idle>-0     (-----) [003] d..2 82320.559394: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155891   kworker/u17:0-98    (   98) [003] d..2 82320.559408: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155892   kworker/u17:0-98    (   98) [003] d..3 82320.559418: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155893   kworker/u17:0-98    (   98) [003] d..2 82320.559444: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155894     kworker/3:1-25210 (25210) [003] d..2 82320.559456: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
155895     kworker/3:1-25210 (25210) [003] d..3 82320.559472: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
155896          <idle>-0     (-----) [002] .n.1 82320.559478: cpu_idle: state=4294967295 cpu_id=2
155897          <idle>-0     (-----) [002] d..2 82320.559489: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
155898     kworker/3:1-25210 (25210) [003] d..2 82320.559497: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155899          <idle>-0     (-----) [003] d..1 82320.559509: cpu_idle: state=0 cpu_id=3
155900            adbd-24055 (  960) [002] d..2 82320.559570: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155901          <idle>-0     (-----) [002] d..1 82320.559581: cpu_idle: state=0 cpu_id=2
155902          <idle>-0     (-----) [003] d.h3 82320.559663: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155903          <idle>-0     (-----) [003] dnh4 82320.559673: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155904          <idle>-0     (-----) [003] .n.1 82320.559681: cpu_idle: state=4294967295 cpu_id=3
155905          <idle>-0     (-----) [003] d..2 82320.559693: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155906   kworker/u17:0-98    (   98) [003] d..2 82320.559704: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155907   kworker/u17:0-98    (   98) [003] d..3 82320.559714: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155908   kworker/u17:0-98    (   98) [003] d..2 82320.559737: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155909     kworker/3:1-25210 (25210) [003] d..2 82320.559747: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
155910     kworker/3:1-25210 (25210) [003] d..3 82320.559762: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
155911          <idle>-0     (-----) [002] .n.1 82320.559766: cpu_idle: state=4294967295 cpu_id=2
155912          <idle>-0     (-----) [002] d..2 82320.559777: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
155913     kworker/3:1-25210 (25210) [003] d..2 82320.559788: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155914          <idle>-0     (-----) [003] d..1 82320.559799: cpu_idle: state=0 cpu_id=3
155915            adbd-24055 (  960) [002] d..2 82320.559815: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155916          <idle>-0     (-----) [002] d..1 82320.559825: cpu_idle: state=0 cpu_id=2
155917          <idle>-0     (-----) [003] d.h3 82320.559890: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155918          <idle>-0     (-----) [003] dnh4 82320.559900: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155919          <idle>-0     (-----) [003] .n.1 82320.559907: cpu_idle: state=4294967295 cpu_id=3
155920          <idle>-0     (-----) [003] d..2 82320.559919: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155921   kworker/u17:0-98    (   98) [003] d..2 82320.559931: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155922   kworker/u17:0-98    (   98) [003] d..3 82320.559941: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155923   kworker/u17:0-98    (   98) [003] d..2 82320.559964: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155924     kworker/3:1-25210 (25210) [003] d..2 82320.559977: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=002
155925     kworker/3:1-25210 (25210) [003] d..3 82320.560015: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
155926     kworker/3:1-25210 (25210) [003] d..2 82320.560032: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
155927            adbd-24054 (  960) [003] d..2 82320.560056: sched_waking: comm=adbd pid=960 prio=120 target_cpu=002
155928            adbd-24054 (  960) [003] d..3 82320.560073: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
155929            adbd-24054 (  960) [003] d..2 82320.560147: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
155930            adbd-960   (  960) [003] d..2 82320.560280: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155931          <idle>-0     (-----) [003] d..1 82320.560295: cpu_idle: state=0 cpu_id=3
155932          <idle>-0     (-----) [000] d.h3 82320.560370: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
155933          <idle>-0     (-----) [000] d.h4 82320.560391: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
155934          <idle>-0     (-----) [003] .n.1 82320.560397: cpu_idle: state=4294967295 cpu_id=3
155935          <idle>-0     (-----) [000] ...1 82320.560408: cpu_idle: state=4294967295 cpu_id=0
155936          <idle>-0     (-----) [003] d..2 82320.560409: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
155937          <idle>-0     (-----) [000] d..1 82320.560414: cpu_idle: state=0 cpu_id=0
155938 kgsl_worker_thr-258   (  258) [003] d..2 82320.560465: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
155939 kgsl_worker_thr-258   (  258) [003] d..3 82320.560504: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
155940 kgsl_worker_thr-258   (  258) [003] d..2 82320.560527: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
155941              ps-27820 (27820) [004] d..2 82320.560551: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155942              ps-27820 (27820) [004] dn.3 82320.560556: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
155943              ps-27820 (27820) [004] d..2 82320.560560: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
155944 shell svc 27816-27817 (  960) [004] d..2 82320.560571: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
155945 shell svc 27816-27817 (  960) [004] d..2 82320.560583: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
155946  kworker/u16:13-1147  ( 1147) [003] d.h1 82320.560691: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
155947  kworker/u16:13-1147  ( 1147) [003] d..2 82320.560714: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
155948            adbd-960   (  960) [003] d..1 82320.560793: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
155949            adbd-960   (  960) [003] d..2 82320.560810: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
155950          <idle>-0     (-----) [002] .n.1 82320.560816: cpu_idle: state=4294967295 cpu_id=2
155951          <idle>-0     (-----) [002] d..2 82320.560826: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
155952            adbd-960   (  960) [003] d..2 82320.560883: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155953          <idle>-0     (-----) [003] d..1 82320.560896: cpu_idle: state=0 cpu_id=3
155954            adbd-24055 (  960) [002] d..2 82320.560901: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155955          <idle>-0     (-----) [002] d..1 82320.560912: cpu_idle: state=0 cpu_id=2
155956          <idle>-0     (-----) [003] d.h3 82320.560922: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155957          <idle>-0     (-----) [003] dnh4 82320.560932: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155958          <idle>-0     (-----) [003] .n.1 82320.560942: cpu_idle: state=4294967295 cpu_id=3
155959          <idle>-0     (-----) [003] d..2 82320.560954: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155960   kworker/u17:0-98    (   98) [003] d..2 82320.560967: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155961   kworker/u17:0-98    (   98) [003] d..3 82320.560977: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155962   kworker/u17:0-98    (   98) [003] d..2 82320.561002: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155963     kworker/3:1-25210 (25210) [003] d..2 82320.561013: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
155964     kworker/3:1-25210 (25210) [003] d..3 82320.561028: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
155965          <idle>-0     (-----) [002] .n.1 82320.561033: cpu_idle: state=4294967295 cpu_id=2
155966          <idle>-0     (-----) [002] d..2 82320.561045: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
155967     kworker/3:1-25210 (25210) [003] d..2 82320.561054: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155968          <idle>-0     (-----) [003] d..1 82320.561066: cpu_idle: state=0 cpu_id=3
155969            adbd-24055 (  960) [002] d.h2 82320.561105: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=002
155970            adbd-24055 (  960) [002] d.h3 82320.561130: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
155971          <idle>-0     (-----) [000] .n.1 82320.561135: cpu_idle: state=4294967295 cpu_id=0
155972          <idle>-0     (-----) [000] d..2 82320.561147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
155973            adbd-24055 (  960) [002] d..2 82320.561162: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
155974        DispSync-8879  ( 8858) [000] d..1 82320.561165: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
155975          <idle>-0     (-----) [002] d..1 82320.561177: cpu_idle: state=0 cpu_id=2
155976        DispSync-8879  ( 8858) [000] d..2 82320.561183: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
155977          <idle>-0     (-----) [001] .n.1 82320.561188: cpu_idle: state=4294967295 cpu_id=1
155978          <idle>-0     (-----) [001] d..2 82320.561199: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
155979        DispSync-8879  ( 8858) [000] d..2 82320.561214: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
155980          <idle>-0     (-----) [003] d.h3 82320.561217: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155981          <idle>-0     (-----) [000] d..1 82320.561226: cpu_idle: state=0 cpu_id=0
155982          <idle>-0     (-----) [003] dnh4 82320.561227: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
155983          <idle>-0     (-----) [003] .n.1 82320.561235: cpu_idle: state=4294967295 cpu_id=3
155984   sfEventThread-8882  ( 8858) [001] d..3 82320.561237: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
155985          <idle>-0     (-----) [003] d..2 82320.561247: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
155986   sfEventThread-8882  ( 8858) [001] d..4 82320.561257: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
155987   kworker/u17:0-98    (   98) [003] d..2 82320.561259: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155988          <idle>-0     (-----) [002] .n.1 82320.561263: cpu_idle: state=4294967295 cpu_id=2
155989   kworker/u17:0-98    (   98) [003] d..3 82320.561268: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
155990          <idle>-0     (-----) [002] d..2 82320.561274: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
155991   kworker/u17:0-98    (   98) [003] d..2 82320.561294: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
155992   sfEventThread-8882  ( 8858) [001] d..2 82320.561297: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
155993     kworker/3:1-25210 (25210) [003] d..2 82320.561304: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
155994          <idle>-0     (-----) [001] d..1 82320.561311: cpu_idle: state=0 cpu_id=1
155995     kworker/3:1-25210 (25210) [003] d..3 82320.561340: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
155996     kworker/3:1-25210 (25210) [003] d..2 82320.561356: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
155997            adbd-24055 (  960) [003] d..2 82320.561388: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
155998          <idle>-0     (-----) [003] d..1 82320.561400: cpu_idle: state=0 cpu_id=3
155999          <idle>-0     (-----) [003] d.h3 82320.561487: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156000          <idle>-0     (-----) [003] dnh4 82320.561498: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156001          <idle>-0     (-----) [003] .n.1 82320.561506: cpu_idle: state=4294967295 cpu_id=3
156002          <idle>-0     (-----) [003] d..2 82320.561518: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156003   kworker/u17:0-98    (   98) [003] d..2 82320.561529: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156004   kworker/u17:0-98    (   98) [003] d..3 82320.561538: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156005   kworker/u17:0-98    (   98) [003] d..2 82320.561561: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
156006     kworker/3:1-25210 (25210) [003] d..2 82320.561573: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
156007     kworker/3:1-25210 (25210) [003] d..3 82320.561588: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
156008     kworker/3:1-25210 (25210) [003] d..2 82320.561603: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156009            adbd-24054 (  960) [003] d..2 82320.561623: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
156010            adbd-24054 (  960) [003] d..3 82320.561633: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
156011  surfaceflinger-8858  ( 8858) [002] d..1 82320.561651: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
156012  surfaceflinger-8858  ( 8858) [002] d..2 82320.561669: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
156013          <idle>-0     (-----) [001] .n.1 82320.561676: cpu_idle: state=4294967295 cpu_id=1
156014          <idle>-0     (-----) [001] d..2 82320.561685: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
156015            adbd-24054 (  960) [003] d..2 82320.561700: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156016   sfEventThread-8882  ( 8858) [001] d..2 82320.561719: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156017          <idle>-0     (-----) [001] d..1 82320.561731: cpu_idle: state=0 cpu_id=1
156018            adbd-960   (  960) [003] d..2 82320.561860: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156019          <idle>-0     (-----) [003] d..1 82320.561872: cpu_idle: state=0 cpu_id=3
156020  surfaceflinger-8858  ( 8858) [002] ...1 82320.561922: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
156021  surfaceflinger-8858  ( 8858) [002] ...1 82320.561932: tracing_mark_write: E|8858
156022  surfaceflinger-8858  ( 8858) [002] .... 82320.562005: binder_transaction: transaction=1573349 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
156023  surfaceflinger-8858  ( 8858) [002] .... 82320.562011: binder_transaction_alloc_buf: transaction=1573349 data_size=540 offsets_size=96
156024  surfaceflinger-8858  ( 8858) [002] ...2 82320.562039: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
156025  surfaceflinger-8858  ( 8858) [002] d..4 82320.562049: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
156026  surfaceflinger-8858  ( 8858) [002] d..5 82320.562070: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
156027          <idle>-0     (-----) [001] .n.1 82320.562075: cpu_idle: state=4294967295 cpu_id=1
156028          <idle>-0     (-----) [001] d..2 82320.562086: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
156029 [email protected]   (  619) [001] .... 82320.562096: binder_transaction_received: transaction=1573349
156030  surfaceflinger-8858  ( 8858) [002] d..2 82320.562103: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156031          <idle>-0     (-----) [002] d..1 82320.562120: cpu_idle: state=0 cpu_id=2
156032 [email protected]   (  619) [001] ...1 82320.562153: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
156033 [email protected]   (  619) [001] ...1 82320.562284: tracing_mark_write: B|619|HWCSession::PresentDisplay::
156034              ps-27820 (27820) [004] d..2 82320.562351: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156035              ps-27820 (27820) [004] dn.3 82320.562356: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156036              ps-27820 (27820) [004] d..2 82320.562359: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156037 shell svc 27816-27817 (  960) [004] d..2 82320.562370: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
156038 shell svc 27816-27817 (  960) [004] d..2 82320.562382: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
156039          <idle>-0     (-----) [003] dnh2 82320.562389: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
156040          <idle>-0     (-----) [003] .n.1 82320.562396: cpu_idle: state=4294967295 cpu_id=3
156041          <idle>-0     (-----) [003] d..2 82320.562405: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
156042 [email protected]   (  619) [001] ...1 82320.562480: tracing_mark_write: B|619|HWDeviceDRM::Commit::
156043            adbd-960   (  960) [003] d..1 82320.562480: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156044 [email protected]   (  619) [001] ...1 82320.562495: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
156045            adbd-960   (  960) [003] d..2 82320.562520: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
156046            adbd-960   (  960) [003] d..2 82320.562593: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156047          <idle>-0     (-----) [003] d..1 82320.562604: cpu_idle: state=0 cpu_id=3
156048 [email protected]   (  619) [001] d..2 82320.563189: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=001
156049 [email protected]   (  619) [001] d..3 82320.563218: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
156050          <idle>-0     (-----) [000] .n.1 82320.563224: cpu_idle: state=4294967295 cpu_id=0
156051          <idle>-0     (-----) [000] d..2 82320.563235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
156052 [email protected]   (  619) [001] ...1 82320.563324: tracing_mark_write: E|619
156053 [email protected]   (  619) [001] ...1 82320.563331: tracing_mark_write: E|619
156054 [email protected]   (  619) [001] ...1 82320.563399: tracing_mark_write: E|619
156055          <idle>-0     (-----) [002] ...1 82320.563430: cpu_idle: state=4294967295 cpu_id=2
156056          <idle>-0     (-----) [002] d..1 82320.563435: cpu_idle: state=0 cpu_id=2
156057 [email protected]   (  619) [001] ...1 82320.563453: tracing_mark_write: E|619
156058 [email protected]   (  619) [001] .... 82320.563469: binder_transaction: transaction=1573350 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
156059 [email protected]   (  619) [001] .... 82320.563473: binder_transaction_alloc_buf: transaction=1573350 data_size=576 offsets_size=112
156060 [email protected]   (  619) [001] d..2 82320.563495: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
156061 [email protected]   (  619) [001] d..3 82320.563512: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
156062 [email protected]   (  619) [001] .... 82320.563516: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
156063          <idle>-0     (-----) [002] .n.1 82320.563517: cpu_idle: state=4294967295 cpu_id=2
156064          <idle>-0     (-----) [002] d..2 82320.563527: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
156065  surfaceflinger-8858  ( 8858) [002] .... 82320.563534: binder_transaction_received: transaction=1573350
156066 [email protected]   (  619) [001] d..2 82320.563593: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
156067            adbd-24055 (  960) [001] d..2 82320.563684: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156068          <idle>-0     (-----) [003] d.h3 82320.563689: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156069          <idle>-0     (-----) [001] d..1 82320.563701: cpu_idle: state=0 cpu_id=1
156070          <idle>-0     (-----) [003] d.h4 82320.563723: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156071          <idle>-0     (-----) [001] .n.1 82320.563731: cpu_idle: state=4294967295 cpu_id=1
156072          <idle>-0     (-----) [003] ...1 82320.563734: cpu_idle: state=4294967295 cpu_id=3
156073          <idle>-0     (-----) [003] d..1 82320.563740: cpu_idle: state=0 cpu_id=3
156074          <idle>-0     (-----) [001] d..2 82320.563743: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156075   kworker/u17:0-98    (   98) [001] d..2 82320.563759: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156076   kworker/u17:0-98    (   98) [001] d..3 82320.563775: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156077   kworker/u17:0-98    (   98) [001] d..2 82320.563800: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156078     kworker/1:1-25249 (25249) [001] d..2 82320.563811: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
156079     kworker/1:1-25249 (25249) [001] d..3 82320.563830: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
156080     kworker/1:1-25249 (25249) [001] d..2 82320.563845: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
156081            adbd-24055 (  960) [001] d..2 82320.563923: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156082 crtc_commit:111-321   (  321) [000] d..2 82320.563934: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
156083          <idle>-0     (-----) [001] d..1 82320.563939: cpu_idle: state=0 cpu_id=1
156084          <idle>-0     (-----) [000] d..1 82320.563948: cpu_idle: state=0 cpu_id=0
156085  surfaceflinger-8858  ( 8858) [002] d..2 82320.563959: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156086          <idle>-0     (-----) [002] d..1 82320.563976: cpu_idle: state=0 cpu_id=2
156087          <idle>-0     (-----) [003] d.h3 82320.564025: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156088          <idle>-0     (-----) [003] d.h4 82320.564039: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156089          <idle>-0     (-----) [001] .n.1 82320.564046: cpu_idle: state=4294967295 cpu_id=1
156090          <idle>-0     (-----) [003] ...1 82320.564048: cpu_idle: state=4294967295 cpu_id=3
156091          <idle>-0     (-----) [003] d..1 82320.564053: cpu_idle: state=0 cpu_id=3
156092          <idle>-0     (-----) [001] d..2 82320.564058: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156093   kworker/u17:0-98    (   98) [001] d..2 82320.564070: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156094   kworker/u17:0-98    (   98) [001] d..3 82320.564080: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156095   kworker/u17:0-98    (   98) [001] d..2 82320.564104: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156096     kworker/1:1-25249 (25249) [001] d..2 82320.564113: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
156097     kworker/1:1-25249 (25249) [001] d..3 82320.564129: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
156098     kworker/1:1-25249 (25249) [001] d..2 82320.564144: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
156099            adbd-24055 (  960) [001] d..2 82320.564182: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156100          <idle>-0     (-----) [001] d..1 82320.564197: cpu_idle: state=0 cpu_id=1
156101          <idle>-0     (-----) [003] d.h3 82320.564275: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156102          <idle>-0     (-----) [003] d.h4 82320.564288: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156103          <idle>-0     (-----) [001] .n.1 82320.564296: cpu_idle: state=4294967295 cpu_id=1
156104          <idle>-0     (-----) [003] ...1 82320.564297: cpu_idle: state=4294967295 cpu_id=3
156105          <idle>-0     (-----) [003] d..1 82320.564302: cpu_idle: state=0 cpu_id=3
156106          <idle>-0     (-----) [001] d..2 82320.564308: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156107   kworker/u17:0-98    (   98) [001] d..2 82320.564321: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156108   kworker/u17:0-98    (   98) [001] d..3 82320.564331: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156109   kworker/u17:0-98    (   98) [001] d..2 82320.564356: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156110     kworker/1:1-25249 (25249) [001] d..2 82320.564369: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
156111     kworker/1:1-25249 (25249) [001] d..3 82320.564407: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
156112     kworker/1:1-25249 (25249) [001] d..2 82320.564423: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156113            adbd-24054 (  960) [001] d..2 82320.564445: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
156114            adbd-24054 (  960) [001] d..3 82320.564462: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156115            adbd-24054 (  960) [001] d..2 82320.564534: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156116            adbd-960   (  960) [001] d..2 82320.564679: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156117          <idle>-0     (-----) [001] d..1 82320.564696: cpu_idle: state=0 cpu_id=1
156118              ps-27820 (27820) [004] d..2 82320.565096: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156119              ps-27820 (27820) [004] dn.3 82320.565101: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156120              ps-27820 (27820) [004] d..2 82320.565104: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156121 shell svc 27816-27817 (  960) [004] d.s4 82320.565122: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
156122          <idle>-0     (-----) [003] d.s2 82320.565130: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
156123          <idle>-0     (-----) [003] dns3 82320.565146: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
156124 shell svc 27816-27817 (  960) [004] d..2 82320.565148: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156125          <idle>-0     (-----) [000] dnh2 82320.565150: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156126          <idle>-0     (-----) [003] .n.1 82320.565154: cpu_idle: state=4294967295 cpu_id=3
156127          <idle>-0     (-----) [000] .n.1 82320.565156: cpu_idle: state=4294967295 cpu_id=0
156128 shell svc 27816-27817 (  960) [004] d..2 82320.565158: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
156129          <idle>-0     (-----) [003] d..2 82320.565163: 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
156130          <idle>-0     (-----) [001] dnh2 82320.565168: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156131          <idle>-0     (-----) [000] d..2 82320.565169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
156132          <idle>-0     (-----) [001] .n.1 82320.565176: cpu_idle: state=4294967295 cpu_id=1
156133     rcu_preempt-7     (    7) [003] d..2 82320.565176: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
156134          <idle>-0     (-----) [001] d..2 82320.565194: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
156135     rcu_preempt-7     (    7) [003] d..3 82320.565216: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=003
156136     rcu_preempt-7     (    7) [003] d..2 82320.565233: 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
156137         rcuop/2-29    (   29) [003] d..2 82320.565245: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=001
156138            adbd-960   (  960) [001] d..1 82320.565278: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
156139         rcuop/2-29    (   29) [003] d..3 82320.565282: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=003
156140         rcuop/2-29    (   29) [003] d..2 82320.565312: 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
156141            adbd-960   (  960) [001] d..2 82320.565330: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156142          <idle>-0     (-----) [002] ...1 82320.565332: cpu_idle: state=4294967295 cpu_id=2
156143          <idle>-0     (-----) [002] d..1 82320.565338: cpu_idle: state=0 cpu_id=2
156144         rcuop/3-37    (   37) [003] d..2 82320.565395: sched_switch: prev_comm=rcuop/3 prev_pid=37 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
156145            adbd-960   (  960) [001] d..2 82320.565406: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156146          <idle>-0     (-----) [001] d..1 82320.565422: cpu_idle: state=0 cpu_id=1
156147  kworker/u16:13-1147  ( 1147) [000] d..2 82320.565455: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
156148          <idle>-0     (-----) [000] d..1 82320.565469: cpu_idle: state=0 cpu_id=0
156149            adbd-24055 (  960) [003] d..2 82320.565477: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156150          <idle>-0     (-----) [001] d.s3 82320.565494: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156151          <idle>-0     (-----) [003] d.h4 82320.565499: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156152          <idle>-0     (-----) [001] d.s4 82320.565504: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
156153          <idle>-0     (-----) [001] dns4 82320.565513: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156154          <idle>-0     (-----) [003] d.h5 82320.565514: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156155          <idle>-0     (-----) [000] .n.1 82320.565519: cpu_idle: state=4294967295 cpu_id=0
156156          <idle>-0     (-----) [001] .n.1 82320.565527: cpu_idle: state=4294967295 cpu_id=1
156157          <idle>-0     (-----) [000] d..2 82320.565531: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
156158          <idle>-0     (-----) [003] d..1 82320.565533: cpu_idle: state=0 cpu_id=3
156159          <idle>-0     (-----) [001] d..2 82320.565540: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156160   kworker/u17:0-98    (   98) [001] d..2 82320.565554: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156161   kworker/u17:0-98    (   98) [001] d..3 82320.565564: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156162   kworker/u17:0-98    (   98) [001] d..2 82320.565589: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156163     kworker/1:1-25249 (25249) [001] d..2 82320.565599: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156164     kworker/1:1-25249 (25249) [001] d..3 82320.565613: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156165          <idle>-0     (-----) [003] .n.1 82320.565619: cpu_idle: state=4294967295 cpu_id=3
156166          <idle>-0     (-----) [003] d..2 82320.565631: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156167     kworker/1:1-25249 (25249) [001] d..2 82320.565640: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156168          <idle>-0     (-----) [001] d..1 82320.565654: cpu_idle: state=0 cpu_id=1
156169            adbd-24055 (  960) [003] d..2 82320.565714: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156170  kworker/u16:13-1147  ( 1147) [000] d..2 82320.565716: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
156171          <idle>-0     (-----) [003] d..1 82320.565727: cpu_idle: state=0 cpu_id=3
156172          <idle>-0     (-----) [000] d..1 82320.565730: cpu_idle: state=0 cpu_id=0
156173          <idle>-0     (-----) [001] d.s3 82320.565747: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156174          <idle>-0     (-----) [001] d.s4 82320.565757: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
156175          <idle>-0     (-----) [001] d.s4 82320.565764: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156176          <idle>-0     (-----) [000] .n.1 82320.565770: cpu_idle: state=4294967295 cpu_id=0
156177          <idle>-0     (-----) [001] ...1 82320.565777: cpu_idle: state=4294967295 cpu_id=1
156178          <idle>-0     (-----) [000] d..2 82320.565782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
156179          <idle>-0     (-----) [001] d..1 82320.565782: cpu_idle: state=0 cpu_id=1
156180          <idle>-0     (-----) [003] d.h3 82320.565788: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156181          <idle>-0     (-----) [003] d.h4 82320.565803: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156182          <idle>-0     (-----) [001] .n.1 82320.565809: cpu_idle: state=4294967295 cpu_id=1
156183          <idle>-0     (-----) [003] ...1 82320.565813: cpu_idle: state=4294967295 cpu_id=3
156184          <idle>-0     (-----) [003] d..1 82320.565818: cpu_idle: state=0 cpu_id=3
156185          <idle>-0     (-----) [001] d..2 82320.565821: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156186  kworker/u16:13-1147  ( 1147) [000] .... 82320.565821: clk_set_rate: l3_cluster0_vote_clk 300000000
156187   kworker/u17:0-98    (   98) [001] d..2 82320.565833: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156188   kworker/u17:0-98    (   98) [001] d..3 82320.565843: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156189   kworker/u17:0-98    (   98) [001] d..2 82320.565868: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156190     kworker/1:1-25249 (25249) [001] d..2 82320.565878: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156191     kworker/1:1-25249 (25249) [001] d..3 82320.565891: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156192          <idle>-0     (-----) [003] .n.1 82320.565897: cpu_idle: state=4294967295 cpu_id=3
156193          <idle>-0     (-----) [003] d..2 82320.565909: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156194     kworker/1:1-25249 (25249) [001] d..2 82320.565918: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156195          <idle>-0     (-----) [001] d..1 82320.565932: cpu_idle: state=0 cpu_id=1
156196  kworker/u16:13-1147  ( 1147) [000] d..2 82320.565932: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156197            adbd-24055 (  960) [003] d..2 82320.565947: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156198          <idle>-0     (-----) [000] d..1 82320.565948: cpu_idle: state=0 cpu_id=0
156199          <idle>-0     (-----) [003] d..1 82320.565958: cpu_idle: state=0 cpu_id=3
156200          <idle>-0     (-----) [003] d.h3 82320.566075: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156201          <idle>-0     (-----) [003] d.h4 82320.566090: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156202          <idle>-0     (-----) [001] .n.1 82320.566097: cpu_idle: state=4294967295 cpu_id=1
156203          <idle>-0     (-----) [003] ...1 82320.566100: cpu_idle: state=4294967295 cpu_id=3
156204          <idle>-0     (-----) [003] d..1 82320.566105: cpu_idle: state=0 cpu_id=3
156205          <idle>-0     (-----) [001] d..2 82320.566108: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156206   kworker/u17:0-98    (   98) [001] d..2 82320.566120: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156207   kworker/u17:0-98    (   98) [001] d..3 82320.566130: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156208   kworker/u17:0-98    (   98) [001] d..2 82320.566154: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156209     kworker/1:1-25249 (25249) [001] d..2 82320.566166: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
156210     kworker/1:1-25249 (25249) [001] d..3 82320.566182: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
156211     kworker/1:1-25249 (25249) [001] d..2 82320.566197: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156212            adbd-24054 (  960) [001] d..2 82320.566217: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156213            adbd-24054 (  960) [001] d..3 82320.566228: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156214            adbd-24054 (  960) [001] d..2 82320.566298: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156215            adbd-960   (  960) [001] d..2 82320.566424: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156216          <idle>-0     (-----) [001] d..1 82320.566440: cpu_idle: state=0 cpu_id=1
156217          <idle>-0     (-----) [000] ...1 82320.567459: cpu_idle: state=4294967295 cpu_id=0
156218          <idle>-0     (-----) [000] d..1 82320.567464: cpu_idle: state=0 cpu_id=0
156219              ps-27820 (27820) [004] d..2 82320.567497: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156220              ps-27820 (27820) [004] dn.3 82320.567502: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156221              ps-27820 (27820) [004] d..2 82320.567505: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156222 shell svc 27816-27817 (  960) [004] d..2 82320.567518: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156223 shell svc 27816-27817 (  960) [004] d..2 82320.567529: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
156224          <idle>-0     (-----) [001] dnh2 82320.567538: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156225          <idle>-0     (-----) [001] .n.1 82320.567546: cpu_idle: state=4294967295 cpu_id=1
156226          <idle>-0     (-----) [001] d..2 82320.567557: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
156227            adbd-960   (  960) [001] d..1 82320.567627: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156228            adbd-960   (  960) [001] d..2 82320.567643: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156229          <idle>-0     (-----) [003] .n.1 82320.567649: cpu_idle: state=4294967295 cpu_id=3
156230          <idle>-0     (-----) [003] d..2 82320.567661: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156231            adbd-960   (  960) [001] d..2 82320.567714: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156232          <idle>-0     (-----) [001] d..1 82320.567729: cpu_idle: state=0 cpu_id=1
156233            adbd-24055 (  960) [003] d..2 82320.567739: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156234          <idle>-0     (-----) [003] d.h4 82320.567760: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156235          <idle>-0     (-----) [003] d.h5 82320.567774: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156236          <idle>-0     (-----) [001] .n.1 82320.567782: cpu_idle: state=4294967295 cpu_id=1
156237          <idle>-0     (-----) [003] d..1 82320.567790: cpu_idle: state=0 cpu_id=3
156238          <idle>-0     (-----) [001] d..2 82320.567794: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156239   kworker/u17:0-98    (   98) [001] d..2 82320.567808: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156240   kworker/u17:0-98    (   98) [001] d..3 82320.567819: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156241   kworker/u17:0-98    (   98) [001] d..2 82320.567844: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156242     kworker/1:1-25249 (25249) [001] d..2 82320.567854: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156243     kworker/1:1-25249 (25249) [001] d..3 82320.567869: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156244          <idle>-0     (-----) [003] .n.1 82320.567875: cpu_idle: state=4294967295 cpu_id=3
156245          <idle>-0     (-----) [003] d..2 82320.567887: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156246     kworker/1:1-25249 (25249) [001] d..2 82320.567897: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156247          <idle>-0     (-----) [001] d..1 82320.567910: cpu_idle: state=0 cpu_id=1
156248            adbd-24055 (  960) [003] d..2 82320.567968: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156249          <idle>-0     (-----) [003] d..1 82320.567980: cpu_idle: state=0 cpu_id=3
156250          <idle>-0     (-----) [003] d.h3 82320.568058: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156251          <idle>-0     (-----) [003] d.h4 82320.568072: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156252          <idle>-0     (-----) [001] .n.1 82320.568080: cpu_idle: state=4294967295 cpu_id=1
156253          <idle>-0     (-----) [003] ...1 82320.568083: cpu_idle: state=4294967295 cpu_id=3
156254          <idle>-0     (-----) [003] d..1 82320.568087: cpu_idle: state=0 cpu_id=3
156255          <idle>-0     (-----) [001] d..2 82320.568091: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156256   kworker/u17:0-98    (   98) [001] d..2 82320.568103: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156257   kworker/u17:0-98    (   98) [001] d..3 82320.568114: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156258   kworker/u17:0-98    (   98) [001] d..2 82320.568138: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156259     kworker/1:1-25249 (25249) [001] d..2 82320.568147: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156260     kworker/1:1-25249 (25249) [001] d..3 82320.568161: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156261          <idle>-0     (-----) [003] .n.1 82320.568166: cpu_idle: state=4294967295 cpu_id=3
156262          <idle>-0     (-----) [003] d..2 82320.568178: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156263     kworker/1:1-25249 (25249) [001] d..2 82320.568187: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156264          <idle>-0     (-----) [001] d..1 82320.568200: cpu_idle: state=0 cpu_id=1
156265            adbd-24055 (  960) [003] d..2 82320.568211: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156266          <idle>-0     (-----) [003] d..1 82320.568221: cpu_idle: state=0 cpu_id=3
156267          <idle>-0     (-----) [003] d.h3 82320.568341: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156268          <idle>-0     (-----) [003] d.h4 82320.568355: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156269          <idle>-0     (-----) [001] .n.1 82320.568362: cpu_idle: state=4294967295 cpu_id=1
156270          <idle>-0     (-----) [003] ...1 82320.568365: cpu_idle: state=4294967295 cpu_id=3
156271          <idle>-0     (-----) [003] d..1 82320.568370: cpu_idle: state=0 cpu_id=3
156272          <idle>-0     (-----) [001] d..2 82320.568373: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156273   kworker/u17:0-98    (   98) [001] d..2 82320.568385: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156274   kworker/u17:0-98    (   98) [001] d..3 82320.568395: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156275   kworker/u17:0-98    (   98) [001] d..2 82320.568420: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156276     kworker/1:1-25249 (25249) [001] d..2 82320.568431: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
156277     kworker/1:1-25249 (25249) [001] d..3 82320.568447: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
156278     kworker/1:1-25249 (25249) [001] d..2 82320.568498: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156279            adbd-24054 (  960) [001] d..2 82320.568517: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156280            adbd-24054 (  960) [001] d..3 82320.568528: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156281            adbd-24054 (  960) [001] d..2 82320.568599: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156282            adbd-960   (  960) [001] d..2 82320.568727: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156283          <idle>-0     (-----) [001] d..1 82320.568743: cpu_idle: state=0 cpu_id=1
156284          <idle>-0     (-----) [000] d.h5 82320.569506: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
156285          <idle>-0     (-----) [000] d.h6 82320.569524: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
156286          <idle>-0     (-----) [000] d.h5 82320.569529: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
156287          <idle>-0     (-----) [002] .n.1 82320.569530: cpu_idle: state=4294967295 cpu_id=2
156288          <idle>-0     (-----) [000] dnh6 82320.569538: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
156289          <idle>-0     (-----) [002] d..2 82320.569542: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
156290          <idle>-0     (-----) [000] .n.1 82320.569551: cpu_idle: state=4294967295 cpu_id=0
156291          <idle>-0     (-----) [000] d..2 82320.569562: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
156292  crtc_event:111-322   (  322) [002] d..2 82320.569578: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156293          <idle>-0     (-----) [002] d..1 82320.569589: cpu_idle: state=0 cpu_id=2
156294 crtc_commit:111-321   (  321) [000] d..2 82320.569707: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
156295          <idle>-0     (-----) [000] d..1 82320.569717: cpu_idle: state=0 cpu_id=0
156296              ps-27820 (27820) [004] d..2 82320.569921: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156297              ps-27820 (27820) [004] dn.3 82320.569926: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156298              ps-27820 (27820) [004] d..2 82320.569929: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156299 shell svc 27816-27817 (  960) [004] d..2 82320.569941: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156300 shell svc 27816-27817 (  960) [004] d..2 82320.569953: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
156301          <idle>-0     (-----) [001] dnh2 82320.569961: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156302          <idle>-0     (-----) [001] .n.1 82320.569969: cpu_idle: state=4294967295 cpu_id=1
156303          <idle>-0     (-----) [001] d..2 82320.569980: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
156304            adbd-960   (  960) [001] d..1 82320.570049: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156305            adbd-960   (  960) [001] d..2 82320.570066: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156306          <idle>-0     (-----) [003] .n.1 82320.570071: cpu_idle: state=4294967295 cpu_id=3
156307          <idle>-0     (-----) [003] d..2 82320.570084: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156308            adbd-960   (  960) [001] d..2 82320.570136: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156309          <idle>-0     (-----) [001] d..1 82320.570152: cpu_idle: state=0 cpu_id=1
156310            adbd-24055 (  960) [003] d..2 82320.570161: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156311          <idle>-0     (-----) [003] d.h4 82320.570183: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156312          <idle>-0     (-----) [003] d.h5 82320.570197: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156313          <idle>-0     (-----) [001] .n.1 82320.570204: cpu_idle: state=4294967295 cpu_id=1
156314          <idle>-0     (-----) [003] d..1 82320.570211: cpu_idle: state=0 cpu_id=3
156315          <idle>-0     (-----) [001] d..2 82320.570216: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156316   kworker/u17:0-98    (   98) [001] d..2 82320.570231: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156317   kworker/u17:0-98    (   98) [001] d..3 82320.570242: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156318   kworker/u17:0-98    (   98) [001] d..2 82320.570267: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156319     kworker/1:1-25249 (25249) [001] d..2 82320.570278: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156320     kworker/1:1-25249 (25249) [001] d..3 82320.570293: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156321          <idle>-0     (-----) [003] .n.1 82320.570299: cpu_idle: state=4294967295 cpu_id=3
156322          <idle>-0     (-----) [003] d..2 82320.570309: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156323     kworker/1:1-25249 (25249) [001] d..2 82320.570322: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156324          <idle>-0     (-----) [001] d..1 82320.570335: cpu_idle: state=0 cpu_id=1
156325            adbd-24055 (  960) [003] d..2 82320.570389: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156326          <idle>-0     (-----) [003] d..1 82320.570398: cpu_idle: state=0 cpu_id=3
156327          <idle>-0     (-----) [003] d.h3 82320.570487: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156328          <idle>-0     (-----) [003] d.h4 82320.570501: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156329          <idle>-0     (-----) [001] .n.1 82320.570508: cpu_idle: state=4294967295 cpu_id=1
156330          <idle>-0     (-----) [003] ...1 82320.570511: cpu_idle: state=4294967295 cpu_id=3
156331          <idle>-0     (-----) [003] d..1 82320.570516: cpu_idle: state=0 cpu_id=3
156332          <idle>-0     (-----) [001] d..2 82320.570520: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156333   kworker/u17:0-98    (   98) [001] d..2 82320.570533: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156334   kworker/u17:0-98    (   98) [001] d..3 82320.570544: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156335   kworker/u17:0-98    (   98) [001] d..2 82320.570569: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156336     kworker/1:1-25249 (25249) [001] d..2 82320.570579: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156337     kworker/1:1-25249 (25249) [001] d..3 82320.570594: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156338          <idle>-0     (-----) [003] .n.1 82320.570599: cpu_idle: state=4294967295 cpu_id=3
156339          <idle>-0     (-----) [003] d..2 82320.570609: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156340     kworker/1:1-25249 (25249) [001] d..2 82320.570619: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156341          <idle>-0     (-----) [001] d..1 82320.570632: cpu_idle: state=0 cpu_id=1
156342            adbd-24055 (  960) [003] d..2 82320.570644: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156343          <idle>-0     (-----) [003] d..1 82320.570653: cpu_idle: state=0 cpu_id=3
156344          <idle>-0     (-----) [003] d.h3 82320.570788: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156345          <idle>-0     (-----) [003] d.h4 82320.570802: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156346          <idle>-0     (-----) [001] .n.1 82320.570809: cpu_idle: state=4294967295 cpu_id=1
156347          <idle>-0     (-----) [003] ...1 82320.570812: cpu_idle: state=4294967295 cpu_id=3
156348          <idle>-0     (-----) [003] d..1 82320.570817: cpu_idle: state=0 cpu_id=3
156349          <idle>-0     (-----) [001] d..2 82320.570821: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156350   kworker/u17:0-98    (   98) [001] d..2 82320.570832: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156351   kworker/u17:0-98    (   98) [001] d..3 82320.570843: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156352   kworker/u17:0-98    (   98) [001] d..2 82320.570867: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156353     kworker/1:1-25249 (25249) [001] d..2 82320.570878: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
156354     kworker/1:1-25249 (25249) [001] d..3 82320.570894: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
156355     kworker/1:1-25249 (25249) [001] d..2 82320.570910: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156356            adbd-24054 (  960) [001] d..2 82320.570929: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156357            adbd-24054 (  960) [001] d..3 82320.570940: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156358            adbd-24054 (  960) [001] d..2 82320.571010: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156359            adbd-960   (  960) [001] d..2 82320.571133: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156360          <idle>-0     (-----) [001] d..1 82320.571149: cpu_idle: state=0 cpu_id=1
156361          <idle>-0     (-----) [003] d.s2 82320.571829: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
156362          <idle>-0     (-----) [003] dns3 82320.571846: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
156363          <idle>-0     (-----) [000] d.h5 82320.571847: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
156364          <idle>-0     (-----) [000] dnh6 82320.571860: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
156365          <idle>-0     (-----) [003] .n.1 82320.571863: cpu_idle: state=4294967295 cpu_id=3
156366          <idle>-0     (-----) [003] d..2 82320.571873: 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
156367          <idle>-0     (-----) [000] dns3 82320.571895: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
156368     rcu_preempt-7     (    7) [003] d..2 82320.571904: 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
156369          <idle>-0     (-----) [000] dns4 82320.571910: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
156370          <idle>-0     (-----) [003] d..1 82320.571916: cpu_idle: state=0 cpu_id=3
156371          <idle>-0     (-----) [002] .n.1 82320.571916: cpu_idle: state=4294967295 cpu_id=2
156372          <idle>-0     (-----) [000] .n.1 82320.571924: cpu_idle: state=4294967295 cpu_id=0
156373          <idle>-0     (-----) [002] d..2 82320.571927: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
156374          <idle>-0     (-----) [000] d..2 82320.571931: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
156375  crtc_event:111-322   (  322) [002] d..2 82320.571955: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156376          <idle>-0     (-----) [002] d..1 82320.571965: cpu_idle: state=0 cpu_id=2
156377 crtc_commit:111-321   (  321) [000] d..2 82320.572006: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156378          <idle>-0     (-----) [000] d..1 82320.572018: cpu_idle: state=0 cpu_id=0
156379          <idle>-0     (-----) [000] d.h5 82320.572140: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
156380          <idle>-0     (-----) [000] d.h6 82320.572155: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
156381          <idle>-0     (-----) [002] .n.1 82320.572160: cpu_idle: state=4294967295 cpu_id=2
156382          <idle>-0     (-----) [002] d..2 82320.572170: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
156383          <idle>-0     (-----) [000] ...1 82320.572173: cpu_idle: state=4294967295 cpu_id=0
156384          <idle>-0     (-----) [000] d..1 82320.572178: cpu_idle: state=0 cpu_id=0
156385  crtc_event:111-322   (  322) [002] d..2 82320.572194: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156386          <idle>-0     (-----) [002] d..1 82320.572204: cpu_idle: state=0 cpu_id=2
156387          <idle>-0     (-----) [001] ...1 82320.572514: cpu_idle: state=4294967295 cpu_id=1
156388          <idle>-0     (-----) [001] d..1 82320.572520: cpu_idle: state=0 cpu_id=1
156389              ps-27820 (27820) [004] d..2 82320.572959: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156390              ps-27820 (27820) [004] dn.3 82320.572964: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156391              ps-27820 (27820) [004] d..2 82320.572968: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156392 shell svc 27816-27817 (  960) [004] d..2 82320.572979: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156393 shell svc 27816-27817 (  960) [004] d..2 82320.572992: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
156394          <idle>-0     (-----) [001] dnh2 82320.573000: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156395          <idle>-0     (-----) [001] .n.1 82320.573005: cpu_idle: state=4294967295 cpu_id=1
156396          <idle>-0     (-----) [001] d..2 82320.573017: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
156397            adbd-960   (  960) [001] d..1 82320.573086: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156398            adbd-960   (  960) [001] d..2 82320.573104: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156399          <idle>-0     (-----) [003] .n.1 82320.573109: cpu_idle: state=4294967295 cpu_id=3
156400          <idle>-0     (-----) [003] d..2 82320.573121: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156401            adbd-960   (  960) [001] d..2 82320.573179: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156402          <idle>-0     (-----) [001] d..1 82320.573194: cpu_idle: state=0 cpu_id=1
156403            adbd-24055 (  960) [003] d..2 82320.573197: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156404          <idle>-0     (-----) [003] d.h4 82320.573219: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156405          <idle>-0     (-----) [003] dnh5 82320.573253: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156406          <idle>-0     (-----) [003] d..2 82320.573267: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156407   kworker/u17:0-98    (   98) [003] d..2 82320.573279: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156408   kworker/u17:0-98    (   98) [003] d..3 82320.573290: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156409   kworker/u17:0-98    (   98) [003] d..2 82320.573315: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
156410     kworker/3:1-25210 (25210) [003] d..2 82320.573326: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156411     kworker/3:1-25210 (25210) [003] d..3 82320.573341: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
156412     kworker/3:1-25210 (25210) [003] d..2 82320.573356: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
156413            adbd-24055 (  960) [003] d..2 82320.573431: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156414          <idle>-0     (-----) [003] d..1 82320.573445: cpu_idle: state=0 cpu_id=3
156415          <idle>-0     (-----) [003] d.h3 82320.573526: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156416          <idle>-0     (-----) [003] dnh4 82320.573536: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156417          <idle>-0     (-----) [003] .n.1 82320.573544: cpu_idle: state=4294967295 cpu_id=3
156418          <idle>-0     (-----) [003] d..2 82320.573556: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156419   kworker/u17:0-98    (   98) [003] d..2 82320.573568: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156420          <idle>-0     (-----) [000] d.h2 82320.573576: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
156421   kworker/u17:0-98    (   98) [003] d..3 82320.573578: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156422          <idle>-0     (-----) [000] dnh3 82320.573589: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
156423          <idle>-0     (-----) [000] .n.1 82320.573596: cpu_idle: state=4294967295 cpu_id=0
156424   kworker/u17:0-98    (   98) [003] d..2 82320.573602: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
156425          <idle>-0     (-----) [000] d..2 82320.573606: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
156426     kworker/3:1-25210 (25210) [003] d..2 82320.573611: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
156427        DispSync-8879  ( 8858) [000] d..1 82320.573624: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
156428        DispSync-8879  ( 8858) [000] d..2 82320.573639: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
156429          <idle>-0     (-----) [001] .n.1 82320.573647: cpu_idle: state=4294967295 cpu_id=1
156430     kworker/3:1-25210 (25210) [003] d..3 82320.573648: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
156431          <idle>-0     (-----) [001] d..2 82320.573657: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
156432        DispSync-8879  ( 8858) [000] d..2 82320.573662: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
156433     kworker/3:1-25210 (25210) [003] d..2 82320.573674: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156434          <idle>-0     (-----) [003] d..1 82320.573685: cpu_idle: state=0 cpu_id=3
156435            adbd-24055 (  960) [000] d..2 82320.573707: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156436  appEventThread-8881  ( 8858) [001] d..3 82320.573718: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
156437          <idle>-0     (-----) [000] d..1 82320.573721: cpu_idle: state=0 cpu_id=0
156438          <idle>-0     (-----) [005] dnh2 82320.573741: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
156439          <idle>-0     (-----) [005] .n.1 82320.573743: cpu_idle: state=4294967295 cpu_id=5
156440          <idle>-0     (-----) [005] d..2 82320.573747: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
156441  appEventThread-8881  ( 8858) [001] d..2 82320.573775: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156442          <idle>-0     (-----) [003] d.h3 82320.573775: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156443          <idle>-0     (-----) [003] dnh4 82320.573785: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156444          <idle>-0     (-----) [001] d..1 82320.573790: cpu_idle: state=0 cpu_id=1
156445          <idle>-0     (-----) [003] .n.1 82320.573793: cpu_idle: state=4294967295 cpu_id=3
156446          <idle>-0     (-----) [003] d..2 82320.573805: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156447   kworker/u17:0-98    (   98) [003] d..2 82320.573816: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156448   kworker/u17:0-98    (   98) [003] d..3 82320.573825: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156449   kworker/u17:0-98    (   98) [003] d..2 82320.573848: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
156450     kworker/3:1-25210 (25210) [003] d..2 82320.573859: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
156451 s.nexuslauncher-10023 (10023) [005] .... 82320.573880: binder_transaction: transaction=1573351 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
156452 s.nexuslauncher-10023 (10023) [005] .... 82320.573883: binder_transaction_alloc_buf: transaction=1573351 data_size=80 offsets_size=0
156453 s.nexuslauncher-10023 (10023) [005] d..4 82320.573885: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=006
156454     kworker/3:1-25210 (25210) [003] d..3 82320.573896: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
156455          <idle>-0     (-----) [000] dnh2 82320.573923: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
156456     kworker/3:1-25210 (25210) [003] d..2 82320.573923: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156457          <idle>-0     (-----) [000] .n.1 82320.573930: cpu_idle: state=4294967295 cpu_id=0
156458 s.nexuslauncher-10023 (10023) [005] d..3 82320.573931: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
156459 s.nexuslauncher-10023 (10023) [005] d..4 82320.573938: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
156460          <idle>-0     (-----) [000] d..2 82320.573941: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
156461          <idle>-0     (-----) [006] .n.1 82320.573943: cpu_idle: state=4294967295 cpu_id=6
156462            adbd-24054 (  960) [003] d..2 82320.573944: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156463          <idle>-0     (-----) [006] d..2 82320.573947: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
156464   Binder:8858_1-8871  ( 8858) [000] .... 82320.573948: binder_transaction_received: transaction=1573351
156465            adbd-24054 (  960) [003] d..3 82320.573961: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
156466    RenderThread-16607 (10023) [006] d..2 82320.573962: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
156467          <idle>-0     (-----) [006] d..1 82320.573965: cpu_idle: state=0 cpu_id=6
156468   Binder:8858_1-8871  ( 8858) [000] d..1 82320.573978: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
156469   Binder:8858_1-8871  ( 8858) [000] d..2 82320.573994: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
156470          <idle>-0     (-----) [001] .n.1 82320.574001: cpu_idle: state=4294967295 cpu_id=1
156471          <idle>-0     (-----) [001] d..2 82320.574011: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
156472            adbd-24054 (  960) [003] d..2 82320.574029: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156473   Binder:8858_1-8871  ( 8858) [000] d..2 82320.574036: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156474          <idle>-0     (-----) [000] d..1 82320.574049: cpu_idle: state=0 cpu_id=0
156475  appEventThread-8881  ( 8858) [001] d..2 82320.574055: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156476 s.nexuslauncher-10023 (10023) [005] d..3 82320.574060: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
156477 s.nexuslauncher-10023 (10023) [005] d..4 82320.574067: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
156478          <idle>-0     (-----) [001] d..1 82320.574067: cpu_idle: state=0 cpu_id=1
156479          <idle>-0     (-----) [006] .n.1 82320.574071: cpu_idle: state=4294967295 cpu_id=6
156480          <idle>-0     (-----) [006] d..2 82320.574074: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
156481 s.nexuslauncher-10023 (10023) [005] d..2 82320.574075: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
156482          <idle>-0     (-----) [005] d..1 82320.574081: cpu_idle: state=0 cpu_id=5
156483            adbd-960   (  960) [003] d..2 82320.574157: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156484          <idle>-0     (-----) [003] d..1 82320.574170: cpu_idle: state=0 cpu_id=3
156485    RenderThread-16607 (10023) [006] d..1 82320.574179: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
156486    RenderThread-16607 (10023) [006] d..2 82320.574186: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
156487          <idle>-0     (-----) [005] .n.1 82320.574190: cpu_idle: state=4294967295 cpu_id=5
156488          <idle>-0     (-----) [005] d..2 82320.574194: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
156489    RenderThread-16607 (10023) [006] .... 82320.574211: binder_transaction: transaction=1573352 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
156490    RenderThread-16607 (10023) [006] .... 82320.574212: binder_transaction_alloc_buf: transaction=1573352 data_size=104 offsets_size=0
156491    RenderThread-16607 (10023) [006] ...2 82320.574214: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
156492    RenderThread-16607 (10023) [006] d..4 82320.574215: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
156493 s.nexuslauncher-10023 (10023) [005] d..2 82320.574219: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
156494          <idle>-0     (-----) [005] d..1 82320.574222: cpu_idle: state=0 cpu_id=5
156495    RenderThread-16607 (10023) [006] dn.5 82320.574225: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
156496    RenderThread-16607 (10023) [006] d..2 82320.574244: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
156497   Binder:8858_1-8871  ( 8858) [006] .... 82320.574249: binder_transaction_received: transaction=1573352
156498   Binder:8858_1-8871  ( 8858) [006] .... 82320.574281: binder_transaction: transaction=1573353 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
156499   Binder:8858_1-8871  ( 8858) [006] .... 82320.574282: binder_transaction_alloc_buf: transaction=1573353 data_size=52 offsets_size=8
156500   Binder:8858_1-8871  ( 8858) [006] .... 82320.574286: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
156501   Binder:8858_1-8871  ( 8858) [006] d..2 82320.574298: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
156502    RenderThread-16607 (10023) [006] .... 82320.574302: binder_transaction_received: transaction=1573353
156503              ps-27820 (27820) [004] d.s2 82320.575117: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156504          <idle>-0     (-----) [000] dnh2 82320.575139: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156505          <idle>-0     (-----) [000] .n.1 82320.575145: cpu_idle: state=4294967295 cpu_id=0
156506          <idle>-0     (-----) [000] d..2 82320.575157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
156507    RenderThread-16607 (10023) [006] d..2 82320.575190: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/6 next_pid=0 next_prio=120
156508          <idle>-0     (-----) [006] d..1 82320.575195: cpu_idle: state=0 cpu_id=6
156509          <idle>-0     (-----) [006] ...1 82320.575202: cpu_idle: state=4294967295 cpu_id=6
156510          <idle>-0     (-----) [006] d..1 82320.575203: cpu_idle: state=0 cpu_id=6
156511          <idle>-0     (-----) [006] d.h2 82320.575288: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
156512          <idle>-0     (-----) [006] d.h3 82320.575291: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
156513          <idle>-0     (-----) [006] dnh3 82320.575292: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=006
156514          <idle>-0     (-----) [006] .n.1 82320.575295: cpu_idle: state=4294967295 cpu_id=6
156515          <idle>-0     (-----) [006] d..2 82320.575298: sched_switch: prev_comm=swapper/6 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
156516  kworker/u16:13-1147  ( 1147) [000] d..2 82320.575309: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156517          <idle>-0     (-----) [000] d..1 82320.575320: cpu_idle: state=0 cpu_id=0
156518          <idle>-0     (-----) [001] ...1 82320.575330: cpu_idle: state=4294967295 cpu_id=1
156519          <idle>-0     (-----) [001] d..1 82320.575335: cpu_idle: state=0 cpu_id=1
156520    RenderThread-16607 (10023) [006] .... 82320.575378: binder_transaction: transaction=1573354 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
156521    RenderThread-16607 (10023) [006] .... 82320.575380: binder_transaction_alloc_buf: transaction=1573354 data_size=192 offsets_size=8
156522    RenderThread-16607 (10023) [006] ...2 82320.575383: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
156523    RenderThread-16607 (10023) [006] d..4 82320.575384: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
156524    RenderThread-16607 (10023) [006] dn.5 82320.575388: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=006
156525    RenderThread-16607 (10023) [006] d..2 82320.575391: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
156526   Binder:8858_1-8871  ( 8858) [006] .... 82320.575395: binder_transaction_received: transaction=1573354
156527   Binder:8858_1-8871  ( 8858) [006] .... 82320.575455: binder_transaction: transaction=1573355 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
156528   Binder:8858_1-8871  ( 8858) [006] .... 82320.575457: binder_transaction_alloc_buf: transaction=1573355 data_size=68 offsets_size=0
156529   Binder:8858_1-8871  ( 8858) [006] .... 82320.575458: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
156530   Binder:8858_1-8871  ( 8858) [006] d..2 82320.575470: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
156531    RenderThread-16607 (10023) [006] .... 82320.575473: binder_transaction_received: transaction=1573355
156532    RenderThread-16607 (10023) [006] d..2 82320.575496: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/6 next_pid=0 next_prio=120
156533          <idle>-0     (-----) [006] d..1 82320.575501: cpu_idle: state=0 cpu_id=6
156534              ps-27820 (27820) [004] d..2 82320.575579: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156535              ps-27820 (27820) [004] dn.3 82320.575583: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156536              ps-27820 (27820) [004] d..2 82320.575586: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156537 shell svc 27816-27817 (  960) [004] d..2 82320.575601: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
156538 shell svc 27816-27817 (  960) [004] d..2 82320.575613: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
156539          <idle>-0     (-----) [003] dnh2 82320.575622: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
156540          <idle>-0     (-----) [003] .n.1 82320.575629: cpu_idle: state=4294967295 cpu_id=3
156541          <idle>-0     (-----) [003] d..2 82320.575641: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
156542          <idle>-0     (-----) [006] ...1 82320.575692: cpu_idle: state=4294967295 cpu_id=6
156543          <idle>-0     (-----) [006] d..1 82320.575693: cpu_idle: state=0 cpu_id=6
156544            adbd-960   (  960) [003] d..1 82320.575713: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
156545            adbd-960   (  960) [003] d..2 82320.575730: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
156546          <idle>-0     (-----) [000] .n.1 82320.575736: cpu_idle: state=4294967295 cpu_id=0
156547          <idle>-0     (-----) [000] d..2 82320.575748: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156548            adbd-960   (  960) [003] d..2 82320.575804: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156549          <idle>-0     (-----) [003] d..1 82320.575815: cpu_idle: state=0 cpu_id=3
156550            adbd-24055 (  960) [000] d..2 82320.575841: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156551          <idle>-0     (-----) [000] d..1 82320.575853: cpu_idle: state=0 cpu_id=0
156552          <idle>-0     (-----) [003] d.h3 82320.575856: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156553          <idle>-0     (-----) [003] dnh4 82320.575871: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156554          <idle>-0     (-----) [003] .n.1 82320.575880: cpu_idle: state=4294967295 cpu_id=3
156555          <idle>-0     (-----) [003] d..2 82320.575889: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156556   kworker/u17:0-98    (   98) [003] d..2 82320.575904: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156557   kworker/u17:0-98    (   98) [003] d..3 82320.575915: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156558   kworker/u17:0-98    (   98) [003] d..2 82320.575940: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
156559     kworker/3:1-25210 (25210) [003] d..2 82320.575951: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
156560     kworker/3:1-25210 (25210) [003] d..3 82320.575965: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
156561          <idle>-0     (-----) [000] .n.1 82320.575971: cpu_idle: state=4294967295 cpu_id=0
156562          <idle>-0     (-----) [000] d..2 82320.575982: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156563     kworker/3:1-25210 (25210) [003] d..2 82320.575992: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156564          <idle>-0     (-----) [003] d..1 82320.576001: cpu_idle: state=0 cpu_id=3
156565            adbd-24055 (  960) [000] d..2 82320.576064: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156566          <idle>-0     (-----) [000] d..1 82320.576075: cpu_idle: state=0 cpu_id=0
156567          <idle>-0     (-----) [003] d.h3 82320.576151: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156568          <idle>-0     (-----) [003] dnh4 82320.576161: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156569          <idle>-0     (-----) [003] .n.1 82320.576169: cpu_idle: state=4294967295 cpu_id=3
156570          <idle>-0     (-----) [003] d..2 82320.576178: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156571   kworker/u17:0-98    (   98) [003] d..2 82320.576189: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156572   kworker/u17:0-98    (   98) [003] d..3 82320.576198: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156573   kworker/u17:0-98    (   98) [003] d..2 82320.576222: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
156574     kworker/3:1-25210 (25210) [003] d..2 82320.576232: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
156575     kworker/3:1-25210 (25210) [003] d..3 82320.576246: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
156576          <idle>-0     (-----) [000] .n.1 82320.576252: cpu_idle: state=4294967295 cpu_id=0
156577          <idle>-0     (-----) [000] d..2 82320.576263: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156578     kworker/3:1-25210 (25210) [003] d..2 82320.576273: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156579          <idle>-0     (-----) [003] d..1 82320.576282: cpu_idle: state=0 cpu_id=3
156580            adbd-24055 (  960) [000] d..2 82320.576297: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156581          <idle>-0     (-----) [000] d..1 82320.576307: cpu_idle: state=0 cpu_id=0
156582          <idle>-0     (-----) [003] d.h3 82320.576423: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156583          <idle>-0     (-----) [003] dnh4 82320.576433: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156584          <idle>-0     (-----) [003] .n.1 82320.576441: cpu_idle: state=4294967295 cpu_id=3
156585          <idle>-0     (-----) [003] d..2 82320.576449: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156586   kworker/u17:0-98    (   98) [003] d..2 82320.576460: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156587   kworker/u17:0-98    (   98) [003] d..3 82320.576469: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156588   kworker/u17:0-98    (   98) [003] d..2 82320.576493: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
156589     kworker/3:1-25210 (25210) [003] d..2 82320.576504: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
156590     kworker/3:1-25210 (25210) [003] d..3 82320.576521: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
156591     kworker/3:1-25210 (25210) [003] d..2 82320.576536: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156592            adbd-24054 (  960) [003] d..2 82320.576557: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
156593            adbd-24054 (  960) [003] d..3 82320.576567: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
156594            adbd-24054 (  960) [003] d..2 82320.576639: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156595          <idle>-0     (-----) [000] d.h3 82320.576732: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
156596          <idle>-0     (-----) [000] dnh4 82320.576760: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
156597            adbd-960   (  960) [003] d..2 82320.576771: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156598          <idle>-0     (-----) [000] .n.1 82320.576773: cpu_idle: state=4294967295 cpu_id=0
156599          <idle>-0     (-----) [000] d..2 82320.576782: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
156600          <idle>-0     (-----) [003] d..1 82320.576782: cpu_idle: state=0 cpu_id=3
156601 kgsl_worker_thr-258   (  258) [000] d..2 82320.576838: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156602 kgsl_worker_thr-258   (  258) [000] d..3 82320.576855: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156603 kgsl_worker_thr-258   (  258) [000] d..2 82320.576878: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
156604  kworker/u16:13-1147  ( 1147) [000] d..2 82320.577067: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156605          <idle>-0     (-----) [000] d..1 82320.577080: cpu_idle: state=0 cpu_id=0
156606              ps-27820 (27820) [004] d..2 82320.577579: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156607          <idle>-0     (-----) [000] d.h2 82320.577580: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
156608              ps-27820 (27820) [004] dn.3 82320.577584: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156609              ps-27820 (27820) [004] d..2 82320.577587: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156610          <idle>-0     (-----) [000] dnh3 82320.577591: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
156611 shell svc 27816-27817 (  960) [004] d..2 82320.577600: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
156612          <idle>-0     (-----) [000] .n.1 82320.577600: cpu_idle: state=4294967295 cpu_id=0
156613          <idle>-0     (-----) [000] d..2 82320.577611: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
156614 shell svc 27816-27817 (  960) [004] d..2 82320.577611: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
156615          <idle>-0     (-----) [003] dnh2 82320.577620: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
156616          <idle>-0     (-----) [003] .n.1 82320.577626: cpu_idle: state=4294967295 cpu_id=3
156617        DispSync-8879  ( 8858) [000] d..1 82320.577631: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
156618          <idle>-0     (-----) [003] d..2 82320.577635: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
156619        DispSync-8879  ( 8858) [000] d..2 82320.577649: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
156620          <idle>-0     (-----) [001] .n.1 82320.577654: cpu_idle: state=4294967295 cpu_id=1
156621          <idle>-0     (-----) [001] d..2 82320.577664: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
156622        DispSync-8879  ( 8858) [000] d..2 82320.577684: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156623          <idle>-0     (-----) [000] d..1 82320.577698: cpu_idle: state=0 cpu_id=0
156624   sfEventThread-8882  ( 8858) [001] d..3 82320.577701: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
156625            adbd-960   (  960) [003] d..1 82320.577702: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
156626            adbd-960   (  960) [003] d..2 82320.577719: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
156627   sfEventThread-8882  ( 8858) [001] d..4 82320.577720: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
156628          <idle>-0     (-----) [002] .n.1 82320.577725: cpu_idle: state=4294967295 cpu_id=2
156629          <idle>-0     (-----) [000] .n.1 82320.577726: cpu_idle: state=4294967295 cpu_id=0
156630          <idle>-0     (-----) [002] d..2 82320.577736: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
156631          <idle>-0     (-----) [000] d..2 82320.577738: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156632   sfEventThread-8882  ( 8858) [001] d..2 82320.577753: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156633          <idle>-0     (-----) [001] d..1 82320.577765: cpu_idle: state=0 cpu_id=1
156634            adbd-960   (  960) [003] d..2 82320.577790: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156635          <idle>-0     (-----) [003] d..1 82320.577800: cpu_idle: state=0 cpu_id=3
156636            adbd-24055 (  960) [000] d..2 82320.577820: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156637          <idle>-0     (-----) [003] d.h3 82320.577824: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156638          <idle>-0     (-----) [000] d..1 82320.577834: cpu_idle: state=0 cpu_id=0
156639          <idle>-0     (-----) [003] dnh4 82320.577835: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156640          <idle>-0     (-----) [003] .n.1 82320.577843: cpu_idle: state=4294967295 cpu_id=3
156641          <idle>-0     (-----) [003] d..2 82320.577852: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156642   kworker/u17:0-98    (   98) [003] d..2 82320.577865: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156643   kworker/u17:0-98    (   98) [003] d..3 82320.577875: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156644   kworker/u17:0-98    (   98) [003] d..2 82320.577900: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
156645     kworker/3:1-25210 (25210) [003] d..2 82320.577910: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
156646     kworker/3:1-25210 (25210) [003] d..3 82320.577924: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
156647          <idle>-0     (-----) [000] .n.1 82320.577931: cpu_idle: state=4294967295 cpu_id=0
156648          <idle>-0     (-----) [000] d..2 82320.577942: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156649     kworker/3:1-25210 (25210) [003] d..2 82320.577950: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156650          <idle>-0     (-----) [003] d..1 82320.577959: cpu_idle: state=0 cpu_id=3
156651            adbd-24055 (  960) [000] d..2 82320.578021: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156652          <idle>-0     (-----) [000] d..1 82320.578035: cpu_idle: state=0 cpu_id=0
156653  surfaceflinger-8858  ( 8858) [002] d..1 82320.578082: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
156654  surfaceflinger-8858  ( 8858) [002] d..2 82320.578100: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
156655          <idle>-0     (-----) [001] .n.1 82320.578106: cpu_idle: state=4294967295 cpu_id=1
156656          <idle>-0     (-----) [003] d.h3 82320.578112: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156657          <idle>-0     (-----) [001] d..2 82320.578116: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
156658          <idle>-0     (-----) [003] dnh4 82320.578122: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156659          <idle>-0     (-----) [003] .n.1 82320.578130: cpu_idle: state=4294967295 cpu_id=3
156660          <idle>-0     (-----) [003] d..2 82320.578140: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156661   sfEventThread-8882  ( 8858) [001] d..2 82320.578149: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156662   kworker/u17:0-98    (   98) [003] d..2 82320.578151: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156663   kworker/u17:0-98    (   98) [003] d..3 82320.578160: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156664          <idle>-0     (-----) [001] d..1 82320.578160: cpu_idle: state=0 cpu_id=1
156665   kworker/u17:0-98    (   98) [003] d..2 82320.578184: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
156666     kworker/3:1-25210 (25210) [003] d..2 82320.578194: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
156667     kworker/3:1-25210 (25210) [003] d..3 82320.578207: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
156668          <idle>-0     (-----) [000] .n.1 82320.578214: cpu_idle: state=4294967295 cpu_id=0
156669          <idle>-0     (-----) [000] d..2 82320.578225: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156670     kworker/3:1-25210 (25210) [003] d..2 82320.578233: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
156671          <idle>-0     (-----) [003] d..1 82320.578243: cpu_idle: state=0 cpu_id=3
156672            adbd-24055 (  960) [000] d..2 82320.578257: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156673          <idle>-0     (-----) [000] d..1 82320.578269: cpu_idle: state=0 cpu_id=0
156674  surfaceflinger-8858  ( 8858) [002] ...1 82320.578309: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
156675  surfaceflinger-8858  ( 8858) [002] ...1 82320.578319: tracing_mark_write: E|8858
156676          <idle>-0     (-----) [003] d.h3 82320.578380: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156677  surfaceflinger-8858  ( 8858) [002] .... 82320.578381: binder_transaction: transaction=1573356 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
156678  surfaceflinger-8858  ( 8858) [002] .... 82320.578386: binder_transaction_alloc_buf: transaction=1573356 data_size=540 offsets_size=96
156679          <idle>-0     (-----) [003] dnh4 82320.578390: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156680          <idle>-0     (-----) [003] .n.1 82320.578398: cpu_idle: state=4294967295 cpu_id=3
156681          <idle>-0     (-----) [003] d..2 82320.578406: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156682  surfaceflinger-8858  ( 8858) [002] ...2 82320.578413: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
156683   kworker/u17:0-98    (   98) [003] d..2 82320.578417: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156684  surfaceflinger-8858  ( 8858) [002] d..4 82320.578423: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
156685   kworker/u17:0-98    (   98) [003] d..3 82320.578426: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
156686  surfaceflinger-8858  ( 8858) [002] d..5 82320.578441: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
156687          <idle>-0     (-----) [001] .n.1 82320.578446: cpu_idle: state=4294967295 cpu_id=1
156688          <idle>-0     (-----) [001] d..2 82320.578457: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
156689   kworker/u17:0-98    (   98) [003] d.s2 82320.578469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=003
156690 [email protected]   (  619) [001] .... 82320.578487: binder_transaction_received: transaction=1573356
156691   kworker/u17:0-98    (   98) [003] d.s3 82320.578512: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
156692          <idle>-0     (-----) [000] .n.1 82320.578518: cpu_idle: state=4294967295 cpu_id=0
156693  surfaceflinger-8858  ( 8858) [002] d..2 82320.578526: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156694   kworker/u17:0-98    (   98) [003] d..2 82320.578530: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
156695          <idle>-0     (-----) [000] d..2 82320.578531: 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
156696          <idle>-0     (-----) [002] d..1 82320.578542: cpu_idle: state=0 cpu_id=2
156697     kworker/3:1-25210 (25210) [003] d..2 82320.578543: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
156698     rcu_preempt-7     (    7) [000] d..2 82320.578544: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
156699 [email protected]   (  619) [001] ...1 82320.578544: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
156700     kworker/3:1-25210 (25210) [003] d..3 82320.578578: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=000
156701     rcu_preempt-7     (    7) [000] d..3 82320.578595: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
156702     rcu_preempt-7     (    7) [000] d..2 82320.578619: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156703     kworker/3:1-25210 (25210) [003] d..2 82320.578639: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=rcuop/4 next_pid=45 next_prio=120
156704            adbd-24054 (  960) [000] d..2 82320.578641: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
156705            adbd-24054 (  960) [000] d..3 82320.578659: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
156706 [email protected]   (  619) [001] ...1 82320.578667: tracing_mark_write: B|619|HWCSession::PresentDisplay::
156707            adbd-24054 (  960) [000] d..2 82320.578730: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156708 [email protected]   (  619) [001] ...1 82320.578857: tracing_mark_write: B|619|HWDeviceDRM::Commit::
156709            adbd-960   (  960) [000] d..2 82320.578863: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156710 [email protected]   (  619) [001] ...1 82320.578872: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
156711          <idle>-0     (-----) [000] d..1 82320.578879: cpu_idle: state=0 cpu_id=0
156712 [email protected]   (  619) [001] d..2 82320.579546: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
156713 [email protected]   (  619) [001] d..3 82320.579568: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
156714          <idle>-0     (-----) [000] .n.1 82320.579573: cpu_idle: state=4294967295 cpu_id=0
156715          <idle>-0     (-----) [000] d..2 82320.579584: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
156716         rcuop/4-45    (   45) [003] d..2 82320.579591: 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
156717          <idle>-0     (-----) [003] d..1 82320.579607: cpu_idle: state=0 cpu_id=3
156718 [email protected]   (  619) [001] ...1 82320.579674: tracing_mark_write: E|619
156719 [email protected]   (  619) [001] ...1 82320.579681: tracing_mark_write: E|619
156720 [email protected]   (  619) [001] ...1 82320.579749: tracing_mark_write: E|619
156721 [email protected]   (  619) [001] ...1 82320.579804: tracing_mark_write: E|619
156722 [email protected]   (  619) [001] .... 82320.579820: binder_transaction: transaction=1573357 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
156723 [email protected]   (  619) [001] .... 82320.579825: binder_transaction_alloc_buf: transaction=1573357 data_size=576 offsets_size=112
156724 [email protected]   (  619) [001] d..2 82320.579847: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
156725 [email protected]   (  619) [001] d..3 82320.579864: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
156726 [email protected]   (  619) [001] .... 82320.579868: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
156727          <idle>-0     (-----) [002] .n.1 82320.579869: cpu_idle: state=4294967295 cpu_id=2
156728          <idle>-0     (-----) [002] d..2 82320.579880: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
156729  surfaceflinger-8858  ( 8858) [002] .... 82320.579888: binder_transaction_received: transaction=1573357
156730 [email protected]   (  619) [001] d..2 82320.579955: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156731          <idle>-0     (-----) [001] d..1 82320.579973: cpu_idle: state=0 cpu_id=1
156732 crtc_commit:111-321   (  321) [000] d..2 82320.580291: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
156733          <idle>-0     (-----) [000] d..1 82320.580304: cpu_idle: state=0 cpu_id=0
156734  surfaceflinger-8858  ( 8858) [002] d..2 82320.580316: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156735          <idle>-0     (-----) [002] d..1 82320.580332: cpu_idle: state=0 cpu_id=2
156736              ps-27820 (27820) [004] d..2 82320.580715: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156737              ps-27820 (27820) [004] dn.3 82320.580720: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156738              ps-27820 (27820) [004] d..2 82320.580724: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156739 shell svc 27816-27817 (  960) [004] d..2 82320.580736: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
156740 shell svc 27816-27817 (  960) [004] d..2 82320.580748: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
156741          <idle>-0     (-----) [000] dnh2 82320.580757: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
156742          <idle>-0     (-----) [000] .n.1 82320.580764: cpu_idle: state=4294967295 cpu_id=0
156743          <idle>-0     (-----) [000] d..2 82320.580775: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
156744            adbd-960   (  960) [000] d..1 82320.580849: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
156745          <idle>-0     (-----) [003] ...1 82320.580862: cpu_idle: state=4294967295 cpu_id=3
156746          <idle>-0     (-----) [003] d..1 82320.580867: cpu_idle: state=0 cpu_id=3
156747            adbd-960   (  960) [000] d..2 82320.580875: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
156748          <idle>-0     (-----) [001] .n.1 82320.580883: cpu_idle: state=4294967295 cpu_id=1
156749          <idle>-0     (-----) [001] d..2 82320.580896: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156750            adbd-960   (  960) [000] d..2 82320.580949: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156751          <idle>-0     (-----) [000] d..1 82320.580963: cpu_idle: state=0 cpu_id=0
156752          <idle>-0     (-----) [003] d.h3 82320.580982: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
156753            adbd-24055 (  960) [001] d..2 82320.580987: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156754          <idle>-0     (-----) [001] d..1 82320.581003: cpu_idle: state=0 cpu_id=1
156755          <idle>-0     (-----) [003] d.h4 82320.581020: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156756          <idle>-0     (-----) [001] .n.1 82320.581027: cpu_idle: state=4294967295 cpu_id=1
156757          <idle>-0     (-----) [003] ...1 82320.581031: cpu_idle: state=4294967295 cpu_id=3
156758          <idle>-0     (-----) [003] d..1 82320.581039: cpu_idle: state=0 cpu_id=3
156759          <idle>-0     (-----) [001] d..2 82320.581039: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156760   kworker/u17:0-98    (   98) [001] d..2 82320.581055: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156761   kworker/u17:0-98    (   98) [001] d..3 82320.581071: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156762   kworker/u17:0-98    (   98) [001] d..2 82320.581098: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156763     kworker/1:1-25249 (25249) [001] d..2 82320.581108: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
156764     kworker/1:1-25249 (25249) [001] d..3 82320.581127: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
156765     kworker/1:1-25249 (25249) [001] d..2 82320.581144: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
156766            adbd-24055 (  960) [001] d..2 82320.581223: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156767          <idle>-0     (-----) [001] d..1 82320.581238: cpu_idle: state=0 cpu_id=1
156768          <idle>-0     (-----) [003] d.h3 82320.581310: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156769          <idle>-0     (-----) [003] d.h4 82320.581325: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156770          <idle>-0     (-----) [001] .n.1 82320.581332: cpu_idle: state=4294967295 cpu_id=1
156771          <idle>-0     (-----) [003] ...1 82320.581343: cpu_idle: state=4294967295 cpu_id=3
156772          <idle>-0     (-----) [001] d..2 82320.581344: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156773          <idle>-0     (-----) [003] d..1 82320.581348: cpu_idle: state=0 cpu_id=3
156774   kworker/u17:0-98    (   98) [001] d..2 82320.581357: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156775   kworker/u17:0-98    (   98) [001] d..3 82320.581368: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156776   kworker/u17:0-98    (   98) [001] d..2 82320.581395: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156777     kworker/1:1-25249 (25249) [001] d..2 82320.581404: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
156778     kworker/1:1-25249 (25249) [001] d..3 82320.581419: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=001
156779     kworker/1:1-25249 (25249) [001] d..2 82320.581435: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
156780            adbd-24055 (  960) [001] d..2 82320.581474: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156781          <idle>-0     (-----) [001] d..1 82320.581488: cpu_idle: state=0 cpu_id=1
156782          <idle>-0     (-----) [003] d.h3 82320.581584: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156783          <idle>-0     (-----) [003] d.h4 82320.581598: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156784          <idle>-0     (-----) [001] .n.1 82320.581605: cpu_idle: state=4294967295 cpu_id=1
156785          <idle>-0     (-----) [003] ...1 82320.581607: cpu_idle: state=4294967295 cpu_id=3
156786          <idle>-0     (-----) [003] d..1 82320.581615: cpu_idle: state=0 cpu_id=3
156787          <idle>-0     (-----) [001] d..2 82320.581616: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156788   kworker/u17:0-98    (   98) [001] d..2 82320.581629: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156789   kworker/u17:0-98    (   98) [001] d..3 82320.581640: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156790   kworker/u17:0-98    (   98) [001] d..2 82320.581665: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156791     kworker/1:1-25249 (25249) [001] d..2 82320.581679: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=000
156792     kworker/1:1-25249 (25249) [001] d..3 82320.581715: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
156793     kworker/1:1-25249 (25249) [001] d..2 82320.581732: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156794            adbd-24054 (  960) [001] d..2 82320.581752: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
156795            adbd-24054 (  960) [001] d..3 82320.581769: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156796              ps-27820 (27820) [004] d.s2 82320.581784: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156797            adbd-24054 (  960) [001] d.H3 82320.581807: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
156798            adbd-24054 (  960) [001] d..2 82320.581888: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
156799  kworker/u16:13-1147  ( 1147) [001] d..2 82320.581951: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156800            adbd-960   (  960) [001] d..2 82320.582108: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156801          <idle>-0     (-----) [001] d..1 82320.582125: cpu_idle: state=0 cpu_id=1
156802              ps-27820 (27820) [004] d..2 82320.582692: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156803              ps-27820 (27820) [004] dn.3 82320.582697: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156804              ps-27820 (27820) [004] d..2 82320.582700: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156805 shell svc 27816-27817 (  960) [004] d..2 82320.582712: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156806 shell svc 27816-27817 (  960) [004] d..2 82320.582723: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
156807          <idle>-0     (-----) [001] dnh2 82320.582732: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156808          <idle>-0     (-----) [001] .n.1 82320.582739: cpu_idle: state=4294967295 cpu_id=1
156809          <idle>-0     (-----) [001] d..2 82320.582751: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
156810            adbd-960   (  960) [001] d..1 82320.582819: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=001
156811            adbd-960   (  960) [001] d..2 82320.582843: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
156812          <idle>-0     (-----) [002] .n.1 82320.582849: cpu_idle: state=4294967295 cpu_id=2
156813          <idle>-0     (-----) [002] d..2 82320.582864: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156814            adbd-960   (  960) [001] d..2 82320.582918: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156815          <idle>-0     (-----) [001] d..1 82320.582933: cpu_idle: state=0 cpu_id=1
156816            adbd-24055 (  960) [002] d..2 82320.582957: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156817          <idle>-0     (-----) [003] d.h3 82320.582960: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156818          <idle>-0     (-----) [002] d..1 82320.582972: cpu_idle: state=0 cpu_id=2
156819          <idle>-0     (-----) [003] d.h4 82320.582973: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156820          <idle>-0     (-----) [001] .n.1 82320.582980: cpu_idle: state=4294967295 cpu_id=1
156821          <idle>-0     (-----) [003] ...1 82320.582984: cpu_idle: state=4294967295 cpu_id=3
156822          <idle>-0     (-----) [003] d..1 82320.582989: cpu_idle: state=0 cpu_id=3
156823          <idle>-0     (-----) [001] d..2 82320.582993: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156824   kworker/u17:0-98    (   98) [001] d..2 82320.583007: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156825   kworker/u17:0-98    (   98) [001] d..3 82320.583018: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156826   kworker/u17:0-98    (   98) [001] d..2 82320.583043: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156827     kworker/1:1-25249 (25249) [001] d..2 82320.583054: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
156828     kworker/1:1-25249 (25249) [001] d..3 82320.583068: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
156829          <idle>-0     (-----) [002] .n.1 82320.583074: cpu_idle: state=4294967295 cpu_id=2
156830          <idle>-0     (-----) [002] d..2 82320.583087: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156831     kworker/1:1-25249 (25249) [001] d..2 82320.583095: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156832          <idle>-0     (-----) [001] d..1 82320.583109: cpu_idle: state=0 cpu_id=1
156833            adbd-24055 (  960) [002] d..2 82320.583169: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156834          <idle>-0     (-----) [002] d..1 82320.583182: cpu_idle: state=0 cpu_id=2
156835          <idle>-0     (-----) [003] d.h3 82320.583255: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156836          <idle>-0     (-----) [003] d.h4 82320.583268: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156837          <idle>-0     (-----) [001] .n.1 82320.583275: cpu_idle: state=4294967295 cpu_id=1
156838          <idle>-0     (-----) [003] ...1 82320.583277: cpu_idle: state=4294967295 cpu_id=3
156839          <idle>-0     (-----) [003] d..1 82320.583285: cpu_idle: state=0 cpu_id=3
156840          <idle>-0     (-----) [001] d..2 82320.583286: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156841   kworker/u17:0-98    (   98) [001] d..2 82320.583298: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156842   kworker/u17:0-98    (   98) [001] d..3 82320.583309: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156843   kworker/u17:0-98    (   98) [001] d..2 82320.583333: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156844     kworker/1:1-25249 (25249) [001] d..2 82320.583343: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
156845     kworker/1:1-25249 (25249) [001] d..3 82320.583357: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
156846          <idle>-0     (-----) [002] .n.1 82320.583363: cpu_idle: state=4294967295 cpu_id=2
156847          <idle>-0     (-----) [002] d..2 82320.583375: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156848     kworker/1:1-25249 (25249) [001] d..2 82320.583384: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156849          <idle>-0     (-----) [001] d..1 82320.583396: cpu_idle: state=0 cpu_id=1
156850            adbd-24055 (  960) [002] d..2 82320.583413: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156851          <idle>-0     (-----) [002] d..1 82320.583425: cpu_idle: state=0 cpu_id=2
156852          <idle>-0     (-----) [003] d.h3 82320.583527: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156853          <idle>-0     (-----) [003] d.h4 82320.583540: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156854          <idle>-0     (-----) [001] .n.1 82320.583547: cpu_idle: state=4294967295 cpu_id=1
156855          <idle>-0     (-----) [003] ...1 82320.583551: cpu_idle: state=4294967295 cpu_id=3
156856          <idle>-0     (-----) [003] d..1 82320.583556: cpu_idle: state=0 cpu_id=3
156857          <idle>-0     (-----) [001] d..2 82320.583558: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156858   kworker/u17:0-98    (   98) [001] d..2 82320.583570: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156859   kworker/u17:0-98    (   98) [001] d..3 82320.583580: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156860   kworker/u17:0-98    (   98) [001] d..2 82320.583604: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156861     kworker/1:1-25249 (25249) [001] d..2 82320.583615: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
156862     kworker/1:1-25249 (25249) [001] d..3 82320.583631: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
156863     kworker/1:1-25249 (25249) [001] d..2 82320.583645: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156864            adbd-24054 (  960) [001] d..2 82320.583665: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156865            adbd-24054 (  960) [001] d..3 82320.583676: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156866              ps-27820 (27820) [004] d..2 82320.583741: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156867              ps-27820 (27820) [004] dn.3 82320.583746: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156868              ps-27820 (27820) [004] d..2 82320.583749: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=R+ ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156869            adbd-24054 (  960) [001] d..2 82320.583749: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156870 shell svc 27816-27817 (  960) [004] d..2 82320.583763: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=S ==> next_comm=ps next_pid=27820 next_prio=120
156871            adbd-960   (  960) [001] d..1 82320.583866: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
156872            adbd-960   (  960) [001] d..2 82320.583884: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
156873          <idle>-0     (-----) [002] .n.1 82320.583889: cpu_idle: state=4294967295 cpu_id=2
156874          <idle>-0     (-----) [002] d..2 82320.583901: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156875            adbd-960   (  960) [001] d..2 82320.583955: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156876          <idle>-0     (-----) [001] d..1 82320.583972: cpu_idle: state=0 cpu_id=1
156877            adbd-24055 (  960) [002] d..2 82320.583978: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156878          <idle>-0     (-----) [003] d.h3 82320.583981: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156879          <idle>-0     (-----) [002] d..1 82320.583992: cpu_idle: state=0 cpu_id=2
156880          <idle>-0     (-----) [003] d.h4 82320.583993: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156881          <idle>-0     (-----) [001] .n.1 82320.584001: cpu_idle: state=4294967295 cpu_id=1
156882          <idle>-0     (-----) [003] ...1 82320.584003: cpu_idle: state=4294967295 cpu_id=3
156883          <idle>-0     (-----) [003] d..1 82320.584009: cpu_idle: state=0 cpu_id=3
156884          <idle>-0     (-----) [001] d..2 82320.584014: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156885   kworker/u17:0-98    (   98) [001] d..2 82320.584034: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156886   kworker/u17:0-98    (   98) [001] d..3 82320.584046: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156887   kworker/u17:0-98    (   98) [001] d..2 82320.584071: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156888     kworker/1:1-25249 (25249) [001] d..2 82320.584081: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
156889     kworker/1:1-25249 (25249) [001] d..3 82320.584095: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
156890          <idle>-0     (-----) [002] .n.1 82320.584102: cpu_idle: state=4294967295 cpu_id=2
156891          <idle>-0     (-----) [002] d..2 82320.584114: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156892     kworker/1:1-25249 (25249) [001] d..2 82320.584123: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156893          <idle>-0     (-----) [001] d..1 82320.584136: cpu_idle: state=0 cpu_id=1
156894              ps-27820 (27820) [004] d..3 82320.584173: sched_waking: comm=sh pid=27818 prio=120 target_cpu=000
156895              ps-27820 (27820) [004] d..2 82320.584189: sched_switch: prev_comm=ps prev_pid=27820 prev_prio=120 prev_state=x ==> next_comm=swapper/4 next_pid=0 next_prio=120
156896          <idle>-0     (-----) [000] dnh2 82320.584195: sched_wakeup: comm=sh pid=27818 prio=120 target_cpu=000
156897          <idle>-0     (-----) [004] d..1 82320.584200: cpu_idle: state=0 cpu_id=4
156898          <idle>-0     (-----) [000] .n.1 82320.584202: cpu_idle: state=4294967295 cpu_id=0
156899            adbd-24055 (  960) [002] d..2 82320.584214: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156900          <idle>-0     (-----) [000] d..2 82320.584216: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27818 next_prio=120
156901          <idle>-0     (-----) [002] d..1 82320.584228: cpu_idle: state=0 cpu_id=2
156902          <idle>-0     (-----) [003] d.h3 82320.584240: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156903          <idle>-0     (-----) [003] d.h4 82320.584253: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156904          <idle>-0     (-----) [001] .n.1 82320.584261: cpu_idle: state=4294967295 cpu_id=1
156905          <idle>-0     (-----) [003] ...1 82320.584265: cpu_idle: state=4294967295 cpu_id=3
156906          <idle>-0     (-----) [003] d..1 82320.584270: cpu_idle: state=0 cpu_id=3
156907          <idle>-0     (-----) [001] d..2 82320.584274: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156908   kworker/u17:0-98    (   98) [001] d..2 82320.584285: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156909   kworker/u17:0-98    (   98) [001] d..3 82320.584295: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156910   kworker/u17:0-98    (   98) [001] d..2 82320.584319: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156911     kworker/1:1-25249 (25249) [001] d..2 82320.584329: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
156912              sh-27818 (27818) [000] d..2 82320.584329: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
156913     kworker/1:1-25249 (25249) [001] d..3 82320.584343: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
156914          <idle>-0     (-----) [002] .n.1 82320.584349: cpu_idle: state=4294967295 cpu_id=2
156915          <idle>-0     (-----) [002] d..2 82320.584361: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
156916     kworker/1:1-25249 (25249) [001] d..2 82320.584375: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156917              sh-27818 (27818) [000] d..3 82320.584387: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
156918            adbd-24055 (  960) [002] d..2 82320.584392: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156919          <idle>-0     (-----) [001] d..2 82320.584397: 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
156920          <idle>-0     (-----) [002] d..1 82320.584404: cpu_idle: state=0 cpu_id=2
156921         rcuop/0-10    (   10) [001] d..2 82320.584422: 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
156922          <idle>-0     (-----) [001] d..1 82320.584434: cpu_idle: state=0 cpu_id=1
156923          <idle>-0     (-----) [003] d.h3 82320.584475: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156924          <idle>-0     (-----) [003] d.h4 82320.584488: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156925          <idle>-0     (-----) [001] .n.1 82320.584495: cpu_idle: state=4294967295 cpu_id=1
156926          <idle>-0     (-----) [003] ...1 82320.584498: cpu_idle: state=4294967295 cpu_id=3
156927          <idle>-0     (-----) [003] d..1 82320.584504: cpu_idle: state=0 cpu_id=3
156928          <idle>-0     (-----) [001] d..2 82320.584505: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
156929   kworker/u17:0-98    (   98) [001] d..2 82320.584517: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156930   kworker/u17:0-98    (   98) [001] d..3 82320.584530: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
156931   kworker/u17:0-98    (   98) [001] d..2 82320.584555: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
156932     kworker/1:1-25249 (25249) [001] d..2 82320.584567: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
156933     kworker/1:1-25249 (25249) [001] d..3 82320.584583: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=001
156934     kworker/1:1-25249 (25249) [001] d..2 82320.584598: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
156935            adbd-24054 (  960) [001] d..2 82320.584617: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156936            adbd-24054 (  960) [001] d..3 82320.584628: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=001
156937            adbd-24054 (  960) [001] d..2 82320.584697: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
156938            adbd-960   (  960) [001] d..2 82320.584822: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156939          <idle>-0     (-----) [001] d..1 82320.584839: cpu_idle: state=0 cpu_id=1
156940              sh-27818 (27818) [000] d.s2 82320.585134: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
156941              sh-27818 (27818) [000] d.s3 82320.585153: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
156942              sh-27818 (27818) [000] d.s3 82320.585161: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
156943              sh-27818 (27818) [000] d.s4 82320.585195: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
156944          <idle>-0     (-----) [002] ...1 82320.585609: cpu_idle: state=4294967295 cpu_id=2
156945          <idle>-0     (-----) [002] d..1 82320.585614: cpu_idle: state=0 cpu_id=2
156946              sh-27818 (27818) [000] d..3 82320.585620: sched_waking: comm=sh pid=27816 prio=120 target_cpu=001
156947              sh-27818 (27818) [000] d..4 82320.585663: sched_wakeup: comm=sh pid=27816 prio=120 target_cpu=000
156948              sh-27818 (27818) [000] d..2 82320.585677: sched_switch: prev_comm=sh prev_pid=27818 prev_prio=120 prev_state=x ==> next_comm=rcu_preempt next_pid=7 next_prio=120
156949     rcu_preempt-7     (    7) [000] d..2 82320.585696: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=003
156950     rcu_preempt-7     (    7) [000] d..3 82320.585739: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=001
156951          <idle>-0     (-----) [001] .n.1 82320.585746: cpu_idle: state=4294967295 cpu_id=1
156952     rcu_preempt-7     (    7) [000] d..2 82320.585757: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=27816 next_prio=120
156953          <idle>-0     (-----) [001] d..2 82320.585761: 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
156954          <idle>-0     (-----) [003] ...1 82320.585772: cpu_idle: state=4294967295 cpu_id=3
156955          <idle>-0     (-----) [003] d..1 82320.585777: cpu_idle: state=0 cpu_id=3
156956         rcuop/2-29    (   29) [001] d..2 82320.585817: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
156957              sh-27816 (27816) [000] d.h8 82320.585972: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
156958              sh-27816 (27816) [000] d.h9 82320.585993: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
156959              sh-27816 (27816) [000] d.h8 82320.585998: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
156960          <idle>-0     (-----) [002] .n.1 82320.585998: cpu_idle: state=4294967295 cpu_id=2
156961          <idle>-0     (-----) [002] d..2 82320.586011: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
156962              sh-27816 (27816) [000] d.h9 82320.586020: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
156963          <idle>-0     (-----) [003] .n.1 82320.586025: cpu_idle: state=4294967295 cpu_id=3
156964          <idle>-0     (-----) [003] d..2 82320.586036: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
156965  kworker/u16:13-1147  ( 1147) [001] d..2 82320.586038: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
156966  crtc_event:111-322   (  322) [002] d..2 82320.586047: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
156967          <idle>-0     (-----) [002] d..1 82320.586059: cpu_idle: state=0 cpu_id=2
156968          <idle>-0     (-----) [001] d.s4 82320.586085: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
156969          <idle>-0     (-----) [001] d.s5 82320.586096: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
156970          <idle>-0     (-----) [001] dns5 82320.586101: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
156971          <idle>-0     (-----) [001] d..2 82320.586115: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
156972              sh-27816 (27816) [000] d..2 82320.586164: sched_waking: comm=shell svc 27816 pid=27817 prio=120 target_cpu=004
156973 crtc_commit:111-321   (  321) [003] d..2 82320.586187: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
156974              sh-27816 (27816) [000] d..3 82320.586190: sched_wakeup: comm=shell svc 27816 pid=27817 prio=120 target_cpu=000
156975          <idle>-0     (-----) [003] d..1 82320.586196: cpu_idle: state=0 cpu_id=3
156976  kworker/u16:13-1147  ( 1147) [001] d..2 82320.586286: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/1 next_pid=0 next_prio=120
156977          <idle>-0     (-----) [001] d.s4 82320.586325: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
156978          <idle>-0     (-----) [001] d.s5 82320.586334: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
156979          <idle>-0     (-----) [001] dns5 82320.586339: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
156980          <idle>-0     (-----) [001] d..2 82320.586352: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
156981  kworker/u16:13-1147  ( 1147) [001] .... 82320.586420: clk_set_rate: l3_cluster0_vote_clk 403200000
156982  kworker/u16:13-1147  ( 1147) [001] .... 82320.586448: clk_set_rate: l3_cluster1_vote_clk 1401600000
156983  kworker/u16:13-1147  ( 1147) [001] .... 82320.586454: clk_set_rate: l3_clk 1401600000
156984  kworker/u16:13-1147  ( 1147) [001] d..2 82320.586706: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
156985          <idle>-0     (-----) [001] d..1 82320.586723: cpu_idle: state=0 cpu_id=1
156986              sh-27816 (27816) [000] d..2 82320.587270: sched_switch: prev_comm=sh prev_pid=27816 prev_prio=120 prev_state=x ==> next_comm=shell svc 27816 next_pid=27817 next_prio=120
156987          <idle>-0     (-----) [002] ...1 82320.587286: cpu_idle: state=4294967295 cpu_id=2
156988          <idle>-0     (-----) [002] d..1 82320.587291: cpu_idle: state=0 cpu_id=2
156989 shell svc 27816-27817 (  960) [000] d..2 82320.587312: sched_waking: comm=adbd pid=960 prio=120 target_cpu=001
156990 shell svc 27816-27817 (  960) [000] d..3 82320.587335: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
156991 shell svc 27816-27817 (  960) [000] d..2 82320.587756: sched_switch: prev_comm=shell svc 27816 prev_pid=27817 prev_prio=120 prev_state=x ==> next_comm=adbd next_pid=960 next_prio=120
156992            adbd-960   (  960) [000] d..1 82320.587835: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
156993            adbd-960   (  960) [000] d..2 82320.587879: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
156994            adbd-960   (  960) [000] d..2 82320.587986: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
156995          <idle>-0     (-----) [001] ...1 82320.587986: cpu_idle: state=4294967295 cpu_id=1
156996          <idle>-0     (-----) [001] d..1 82320.587992: cpu_idle: state=0 cpu_id=1
156997            adbd-24055 (  960) [000] d..2 82320.588075: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
156998          <idle>-0     (-----) [003] d.h3 82320.588083: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=001
156999          <idle>-0     (-----) [000] d..1 82320.588097: cpu_idle: state=0 cpu_id=0
157000          <idle>-0     (-----) [003] d.h4 82320.588119: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
157001          <idle>-0     (-----) [000] .n.1 82320.588125: cpu_idle: state=4294967295 cpu_id=0
157002          <idle>-0     (-----) [003] ...1 82320.588129: cpu_idle: state=4294967295 cpu_id=3
157003          <idle>-0     (-----) [003] d..1 82320.588134: cpu_idle: state=0 cpu_id=3
157004          <idle>-0     (-----) [000] d..2 82320.588138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
157005   kworker/u17:0-98    (   98) [000] d..2 82320.588155: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
157006   kworker/u17:0-98    (   98) [000] d..3 82320.588174: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
157007   kworker/u17:0-98    (   98) [000] d..2 82320.588200: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
157008     kworker/0:1-25262 (25262) [000] d..2 82320.588214: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
157009     kworker/0:1-25262 (25262) [000] d..3 82320.588231: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
157010     kworker/0:1-25262 (25262) [000] d.h4 82320.588310: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157011     kworker/0:1-25262 (25262) [000] d.h5 82320.588326: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157012          <idle>-0     (-----) [003] .n.1 82320.588332: cpu_idle: state=4294967295 cpu_id=3
157013          <idle>-0     (-----) [003] d..2 82320.588340: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
157014     kworker/0:1-25262 (25262) [000] d..2 82320.588351: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
157015 crtc_commit:111-321   (  321) [003] d..2 82320.588418: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157016          <idle>-0     (-----) [003] d..1 82320.588427: cpu_idle: state=0 cpu_id=3
157017            adbd-24055 (  960) [000] d..2 82320.588429: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157018          <idle>-0     (-----) [000] d..1 82320.588459: cpu_idle: state=0 cpu_id=0
157019          <idle>-0     (-----) [003] d.H3 82320.588481: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
157020          <idle>-0     (-----) [003] d.H4 82320.588496: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
157021          <idle>-0     (-----) [000] .n.1 82320.588503: cpu_idle: state=4294967295 cpu_id=0
157022          <idle>-0     (-----) [003] d.s3 82320.588506: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157023          <idle>-0     (-----) [000] d..2 82320.588516: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
157024          <idle>-0     (-----) [003] d.s4 82320.588521: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157025          <idle>-0     (-----) [002] .n.1 82320.588527: cpu_idle: state=4294967295 cpu_id=2
157026   kworker/u17:0-98    (   98) [000] d..2 82320.588528: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
157027          <idle>-0     (-----) [002] d..2 82320.588537: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
157028   kworker/u17:0-98    (   98) [000] d..3 82320.588538: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
157029          <idle>-0     (-----) [003] ...1 82320.588544: cpu_idle: state=4294967295 cpu_id=3
157030          <idle>-0     (-----) [003] d..1 82320.588551: cpu_idle: state=0 cpu_id=3
157031  crtc_event:111-322   (  322) [002] d..2 82320.588573: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157032          <idle>-0     (-----) [002] d..1 82320.588583: cpu_idle: state=0 cpu_id=2
157033   kworker/u17:0-98    (   98) [000] d.h5 82320.588618: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157034   kworker/u17:0-98    (   98) [000] d.h6 82320.588636: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157035          <idle>-0     (-----) [002] .n.1 82320.588641: cpu_idle: state=4294967295 cpu_id=2
157036          <idle>-0     (-----) [002] d..2 82320.588650: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
157037   kworker/u17:0-98    (   98) [000] d..2 82320.588660: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
157038     kworker/0:1-25262 (25262) [000] d..2 82320.588670: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
157039  crtc_event:111-322   (  322) [002] d..2 82320.588674: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157040          <idle>-0     (-----) [002] d..1 82320.588684: cpu_idle: state=0 cpu_id=2
157041     kworker/0:1-25262 (25262) [000] d..3 82320.588695: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
157042          <idle>-0     (-----) [002] .n.1 82320.588700: cpu_idle: state=4294967295 cpu_id=2
157043          <idle>-0     (-----) [002] d..2 82320.588712: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
157044     kworker/0:1-25262 (25262) [000] d..2 82320.588722: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157045          <idle>-0     (-----) [003] d.h3 82320.588730: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
157046          <idle>-0     (-----) [000] d..1 82320.588732: cpu_idle: state=0 cpu_id=0
157047          <idle>-0     (-----) [003] d.h4 82320.588744: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
157048          <idle>-0     (-----) [000] .n.1 82320.588750: cpu_idle: state=4294967295 cpu_id=0
157049          <idle>-0     (-----) [003] ...1 82320.588754: cpu_idle: state=4294967295 cpu_id=3
157050          <idle>-0     (-----) [000] d..2 82320.588760: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
157051          <idle>-0     (-----) [003] d..1 82320.588761: cpu_idle: state=0 cpu_id=3
157052   kworker/u17:0-98    (   98) [000] d..2 82320.588783: sched_waking: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
157053   kworker/u17:0-98    (   98) [000] d..3 82320.588793: sched_wakeup: comm=kworker/0:1 pid=25262 prio=120 target_cpu=000
157054            adbd-24055 (  960) [002] d..2 82320.588803: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157055          <idle>-0     (-----) [002] d..1 82320.588816: cpu_idle: state=0 cpu_id=2
157056   kworker/u17:0-98    (   98) [000] d..2 82320.588818: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/0:1 next_pid=25262 next_prio=120
157057          <idle>-0     (-----) [003] d.h3 82320.588827: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=000
157058     kworker/0:1-25262 (25262) [000] d..2 82320.588829: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=001
157059          <idle>-0     (-----) [003] dnh4 82320.588849: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
157060          <idle>-0     (-----) [003] .n.1 82320.588857: cpu_idle: state=4294967295 cpu_id=3
157061     kworker/0:1-25262 (25262) [000] d..3 82320.588866: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=000
157062          <idle>-0     (-----) [003] d..2 82320.588869: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
157063     kworker/0:1-25262 (25262) [000] d..2 82320.588882: sched_switch: prev_comm=kworker/0:1 prev_pid=25262 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
157064   kworker/u17:0-98    (   98) [003] d..2 82320.588882: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
157065   kworker/u17:0-98    (   98) [003] d..3 82320.588894: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
157066            adbd-24054 (  960) [000] d..2 82320.588902: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
157067            adbd-24054 (  960) [000] d..3 82320.588912: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
157068   kworker/u17:0-98    (   98) [003] d..2 82320.588919: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
157069     kworker/3:1-25210 (25210) [003] d..2 82320.588932: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
157070     kworker/3:1-25210 (25210) [003] d..3 82320.588946: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
157071          <idle>-0     (-----) [002] .n.1 82320.588952: cpu_idle: state=4294967295 cpu_id=2
157072          <idle>-0     (-----) [002] d..2 82320.588964: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
157073     kworker/3:1-25210 (25210) [003] d..2 82320.588979: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157074            adbd-24054 (  960) [000] d..2 82320.588984: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
157075            adbd-24055 (  960) [002] d..2 82320.588992: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157076          <idle>-0     (-----) [002] d..1 82320.589003: cpu_idle: state=0 cpu_id=2
157077          <idle>-0     (-----) [003] d.h3 82320.589005: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
157078          <idle>-0     (-----) [003] dnh4 82320.589015: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
157079          <idle>-0     (-----) [003] d..2 82320.589031: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
157080   kworker/u17:0-98    (   98) [003] d..2 82320.589042: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
157081            adbd-960   (  960) [000] d..1 82320.589047: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
157082   kworker/u17:0-98    (   98) [003] d..3 82320.589052: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
157083            adbd-960   (  960) [000] d..2 82320.589064: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
157084          <idle>-0     (-----) [002] .n.1 82320.589070: cpu_idle: state=4294967295 cpu_id=2
157085   kworker/u17:0-98    (   98) [003] d..2 82320.589076: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
157086          <idle>-0     (-----) [002] d..2 82320.589081: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
157087     kworker/3:1-25210 (25210) [003] d..2 82320.589088: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=000
157088     kworker/3:1-25210 (25210) [003] d..3 82320.589124: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
157089            adbd-960   (  960) [000] d..2 82320.589141: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157090     kworker/3:1-25210 (25210) [003] d..2 82320.589141: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
157091          <idle>-0     (-----) [000] d..1 82320.589153: cpu_idle: state=0 cpu_id=0
157092            adbd-24055 (  960) [002] d..2 82320.589157: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157093            adbd-24054 (  960) [003] d.h2 82320.589170: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
157094          <idle>-0     (-----) [002] d..1 82320.589170: cpu_idle: state=0 cpu_id=2
157095            adbd-24054 (  960) [003] dnh3 82320.589186: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
157096            adbd-24054 (  960) [003] d..2 82320.589198: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
157097   kworker/u17:0-98    (   98) [003] d..2 82320.589209: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
157098   kworker/u17:0-98    (   98) [003] d..3 82320.589218: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
157099   kworker/u17:0-98    (   98) [003] d..2 82320.589242: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
157100            adbd-24054 (  960) [003] d..2 82320.589255: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
157101            adbd-24054 (  960) [003] d..3 82320.589270: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=000
157102          <idle>-0     (-----) [000] .n.1 82320.589276: cpu_idle: state=4294967295 cpu_id=0
157103          <idle>-0     (-----) [000] d..2 82320.589286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
157104            adbd-24054 (  960) [003] d..2 82320.589340: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
157105     kworker/3:1-25210 (25210) [003] d..2 82320.589351: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
157106     kworker/3:1-25210 (25210) [003] d..3 82320.589365: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=002
157107          <idle>-0     (-----) [002] .n.1 82320.589371: cpu_idle: state=4294967295 cpu_id=2
157108          <idle>-0     (-----) [002] d..2 82320.589383: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
157109     kworker/3:1-25210 (25210) [003] d..2 82320.589392: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157110            adbd-960   (  960) [000] d..2 82320.589401: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157111          <idle>-0     (-----) [003] d..1 82320.589408: cpu_idle: state=0 cpu_id=3
157112          <idle>-0     (-----) [000] d..1 82320.589412: cpu_idle: state=0 cpu_id=0
157113            adbd-24055 (  960) [002] d..2 82320.589413: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157114          <idle>-0     (-----) [002] d..1 82320.589425: cpu_idle: state=0 cpu_id=2
157115          <idle>-0     (-----) [000] d.h2 82320.590058: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
157116          <idle>-0     (-----) [000] dnh3 82320.590071: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
157117          <idle>-0     (-----) [000] .n.1 82320.590080: cpu_idle: state=4294967295 cpu_id=0
157118          <idle>-0     (-----) [000] d..2 82320.590087: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
157119        DispSync-8879  ( 8858) [000] d..1 82320.590114: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
157120        DispSync-8879  ( 8858) [000] d..2 82320.590130: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
157121          <idle>-0     (-----) [001] .n.1 82320.590135: cpu_idle: state=4294967295 cpu_id=1
157122          <idle>-0     (-----) [001] d..2 82320.590147: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
157123        DispSync-8879  ( 8858) [000] d..2 82320.590166: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157124          <idle>-0     (-----) [000] d..1 82320.590177: cpu_idle: state=0 cpu_id=0
157125  appEventThread-8881  ( 8858) [001] d..3 82320.590212: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=005
157126          <idle>-0     (-----) [004] dnh2 82320.590240: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157127          <idle>-0     (-----) [004] .n.1 82320.590242: cpu_idle: state=4294967295 cpu_id=4
157128          <idle>-0     (-----) [004] d..2 82320.590247: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
157129  appEventThread-8881  ( 8858) [001] d..2 82320.590277: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157130          <idle>-0     (-----) [001] d..1 82320.590293: cpu_idle: state=0 cpu_id=1
157131 s.nexuslauncher-10023 (10023) [004] .... 82320.590425: binder_transaction: transaction=1573358 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
157132 s.nexuslauncher-10023 (10023) [004] .... 82320.590428: binder_transaction_alloc_buf: transaction=1573358 data_size=80 offsets_size=0
157133 s.nexuslauncher-10023 (10023) [004] d..4 82320.590431: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=006
157134 s.nexuslauncher-10023 (10023) [004] d.h5 82320.590466: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
157135          <idle>-0     (-----) [000] dnh2 82320.590472: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
157136          <idle>-0     (-----) [000] .n.1 82320.590478: cpu_idle: state=4294967295 cpu_id=0
157137          <idle>-0     (-----) [000] d..2 82320.590487: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
157138          <idle>-0     (-----) [002] dnh2 82320.590487: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
157139 s.nexuslauncher-10023 (10023) [004] d..3 82320.590487: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=006
157140   Binder:8858_1-8871  ( 8858) [000] .... 82320.590493: binder_transaction_received: transaction=1573358
157141          <idle>-0     (-----) [002] .n.1 82320.590494: cpu_idle: state=4294967295 cpu_id=2
157142 s.nexuslauncher-10023 (10023) [004] d..4 82320.590497: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
157143          <idle>-0     (-----) [005] .n.1 82320.590502: cpu_idle: state=4294967295 cpu_id=5
157144          <idle>-0     (-----) [002] d..2 82320.590504: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
157145          <idle>-0     (-----) [005] d..2 82320.590506: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
157146    RenderThread-16607 (10023) [005] d..2 82320.590518: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
157147          <idle>-0     (-----) [005] d..1 82320.590521: cpu_idle: state=0 cpu_id=5
157148          <idle>-0     (-----) [003] ...1 82320.590525: cpu_idle: state=4294967295 cpu_id=3
157149   Binder:8858_1-8871  ( 8858) [000] d..1 82320.590525: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
157150          <idle>-0     (-----) [003] d..1 82320.590530: cpu_idle: state=0 cpu_id=3
157151         sugov:0-576   (  576) [002] .... 82320.590531: clk_set_rate: pwrcl_clk 825600000
157152   Binder:8858_1-8871  ( 8858) [000] d..2 82320.590541: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
157153         sugov:0-576   (  576) [002] .... 82320.590542: clk_set_rate: cpu3_pwrcl_clk 748800000
157154          <idle>-0     (-----) [001] .n.1 82320.590548: cpu_idle: state=4294967295 cpu_id=1
157155         sugov:0-576   (  576) [002] .... 82320.590550: clk_set_rate: cpu2_pwrcl_clk 748800000
157156          <idle>-0     (-----) [001] d..2 82320.590558: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
157157         sugov:0-576   (  576) [002] .... 82320.590558: clk_set_rate: cpu1_pwrcl_clk 748800000
157158         sugov:0-576   (  576) [002] .... 82320.590566: clk_set_rate: cpu0_pwrcl_clk 825600000
157159         sugov:0-576   (  576) [002] .... 82320.590574: cpu_frequency: state=825600 cpu_id=0
157160   Binder:8858_1-8871  ( 8858) [000] d..2 82320.590582: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157161         sugov:0-576   (  576) [002] .... 82320.590593: cpu_frequency: state=825600 cpu_id=1
157162          <idle>-0     (-----) [000] d..1 82320.590593: cpu_idle: state=0 cpu_id=0
157163         sugov:0-576   (  576) [002] .... 82320.590598: cpu_frequency: state=825600 cpu_id=2
157164         sugov:0-576   (  576) [002] .... 82320.590603: cpu_frequency: state=825600 cpu_id=3
157165  appEventThread-8881  ( 8858) [001] d..2 82320.590603: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157166          <idle>-0     (-----) [001] d..1 82320.590615: cpu_idle: state=0 cpu_id=1
157167         sugov:0-576   (  576) [002] d..2 82320.590628: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157168 s.nexuslauncher-10023 (10023) [004] d..3 82320.590635: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
157169          <idle>-0     (-----) [002] d..1 82320.590640: cpu_idle: state=0 cpu_id=2
157170 s.nexuslauncher-10023 (10023) [004] d..4 82320.590642: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
157171          <idle>-0     (-----) [005] .n.1 82320.590646: cpu_idle: state=4294967295 cpu_id=5
157172          <idle>-0     (-----) [005] d..2 82320.590649: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
157173 s.nexuslauncher-10023 (10023) [004] d..2 82320.590651: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
157174          <idle>-0     (-----) [004] d..1 82320.590656: cpu_idle: state=0 cpu_id=4
157175    RenderThread-16607 (10023) [005] d..1 82320.590765: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157176    RenderThread-16607 (10023) [005] d..2 82320.590773: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157177          <idle>-0     (-----) [004] .n.1 82320.590777: cpu_idle: state=4294967295 cpu_id=4
157178          <idle>-0     (-----) [004] d..2 82320.590781: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
157179    RenderThread-16607 (10023) [005] .... 82320.590801: binder_transaction: transaction=1573359 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
157180    RenderThread-16607 (10023) [005] .... 82320.590803: binder_transaction_alloc_buf: transaction=1573359 data_size=104 offsets_size=0
157181    RenderThread-16607 (10023) [005] ...2 82320.590804: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
157182    RenderThread-16607 (10023) [005] d..4 82320.590806: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
157183 s.nexuslauncher-10023 (10023) [004] d..2 82320.590807: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
157184          <idle>-0     (-----) [004] d..1 82320.590811: cpu_idle: state=0 cpu_id=4
157185    RenderThread-16607 (10023) [005] dn.5 82320.590816: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
157186    RenderThread-16607 (10023) [005] d..2 82320.590835: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
157187   Binder:8858_1-8871  ( 8858) [005] .... 82320.590840: binder_transaction_received: transaction=1573359
157188   Binder:8858_1-8871  ( 8858) [005] .... 82320.590874: binder_transaction: transaction=1573360 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
157189   Binder:8858_1-8871  ( 8858) [005] .... 82320.590875: binder_transaction_alloc_buf: transaction=1573360 data_size=52 offsets_size=8
157190   Binder:8858_1-8871  ( 8858) [005] .... 82320.590879: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
157191   Binder:8858_1-8871  ( 8858) [005] d..2 82320.590893: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
157192    RenderThread-16607 (10023) [005] .... 82320.590897: binder_transaction_received: transaction=1573360
157193          <idle>-0     (-----) [001] d.s3 82320.591675: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
157194          <idle>-0     (-----) [001] dns4 82320.591686: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
157195          <idle>-0     (-----) [001] .n.1 82320.591703: cpu_idle: state=4294967295 cpu_id=1
157196          <idle>-0     (-----) [001] d..2 82320.591714: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
157197     kworker/1:1-25249 (25249) [001] d..2 82320.591761: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
157198     kworker/1:1-25249 (25249) [001] d..3 82320.591776: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
157199    RenderThread-16607 (10023) [005] d..2 82320.591862: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
157200          <idle>-0     (-----) [000] d.H3 82320.591865: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
157201          <idle>-0     (-----) [005] d..1 82320.591867: cpu_idle: state=0 cpu_id=5
157202          <idle>-0     (-----) [000] d.H3 82320.591880: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
157203          <idle>-0     (-----) [007] dnh2 82320.591883: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
157204          <idle>-0     (-----) [007] .n.1 82320.591885: cpu_idle: state=4294967295 cpu_id=7
157205          <idle>-0     (-----) [007] d..2 82320.591888: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
157206          <idle>-0     (-----) [002] .n.1 82320.591893: cpu_idle: state=4294967295 cpu_id=2
157207          <idle>-0     (-----) [000] d.H4 82320.591894: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
157208         sugov:4-577   (  577) [007] .... 82320.591896: clk_set_rate: perfcl_clk 2169600000
157209     kworker/1:1-25249 (25249) [001] d..2 82320.591896: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
157210         sugov:4-577   (  577) [007] .... 82320.591897: clk_set_rate: cpu7_perfcl_clk 2803200000
157211          <idle>-0     (-----) [000] d.s2 82320.591901: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157212         sugov:4-577   (  577) [007] .... 82320.591901: clk_set_rate: cpu6_perfcl_clk 2803200000
157213         sugov:4-577   (  577) [007] .... 82320.591905: clk_set_rate: cpu5_perfcl_clk 2803200000
157214          <idle>-0     (-----) [002] d..2 82320.591908: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
157215         sugov:4-577   (  577) [007] .... 82320.591909: clk_set_rate: cpu4_perfcl_clk 2169600000
157216         sugov:4-577   (  577) [007] .... 82320.591913: cpu_frequency: state=2169600 cpu_id=4
157217          <idle>-0     (-----) [000] dns3 82320.591917: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157218         sugov:0-576   (  576) [002] .... 82320.591926: clk_set_rate: pwrcl_clk 979200000
157219         sugov:0-576   (  576) [002] .... 82320.591933: clk_set_rate: cpu3_pwrcl_clk 825600000
157220          <idle>-0     (-----) [000] .n.1 82320.591935: cpu_idle: state=4294967295 cpu_id=0
157221         sugov:0-576   (  576) [002] .... 82320.591942: clk_set_rate: cpu2_pwrcl_clk 825600000
157222          <idle>-0     (-----) [000] d..2 82320.591945: 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
157223         sugov:0-576   (  576) [002] .... 82320.591949: clk_set_rate: cpu1_pwrcl_clk 825600000
157224         sugov:0-576   (  576) [002] .... 82320.591957: clk_set_rate: cpu0_pwrcl_clk 979200000
157225          <idle>-0     (-----) [005] d.h2 82320.591960: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
157226          <idle>-0     (-----) [005] d.h3 82320.591964: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
157227         sugov:0-576   (  576) [002] .... 82320.591965: cpu_frequency: state=979200 cpu_id=0
157228          <idle>-0     (-----) [005] dnh3 82320.591968: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
157229     rcu_preempt-7     (    7) [000] d..2 82320.591971: 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
157230          <idle>-0     (-----) [005] .n.1 82320.591972: cpu_idle: state=4294967295 cpu_id=5
157231          <idle>-0     (-----) [005] d..2 82320.591980: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
157232          <idle>-0     (-----) [000] d..1 82320.591982: cpu_idle: state=0 cpu_id=0
157233         sugov:4-577   (  577) [007] d..2 82320.592003: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
157234          <idle>-0     (-----) [007] d..1 82320.592006: cpu_idle: state=0 cpu_id=7
157235         sugov:0-576   (  576) [002] d..2 82320.592023: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
157236          <idle>-0     (-----) [002] d..1 82320.592033: cpu_idle: state=0 cpu_id=2
157237 [email protected] (  798) [001] d.s2 82320.592062: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
157238    RenderThread-16607 (10023) [005] .... 82320.592072: binder_transaction: transaction=1573361 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
157239    RenderThread-16607 (10023) [005] .... 82320.592073: binder_transaction_alloc_buf: transaction=1573361 data_size=192 offsets_size=8
157240 [email protected] (  798) [001] dns3 82320.592075: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
157241    RenderThread-16607 (10023) [005] ...2 82320.592077: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
157242    RenderThread-16607 (10023) [005] d..4 82320.592078: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
157243    RenderThread-16607 (10023) [005] dn.5 82320.592083: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
157244    RenderThread-16607 (10023) [005] d..2 82320.592086: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
157245   Binder:8858_1-8871  ( 8858) [005] .... 82320.592091: binder_transaction_received: transaction=1573361
157246 [email protected] (  798) [001] dns2 82320.592092: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
157247 [email protected] (  798) [001] dns1 82320.592106: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
157248          <idle>-0     (-----) [007] dnh2 82320.592109: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
157249          <idle>-0     (-----) [007] .n.1 82320.592111: cpu_idle: state=4294967295 cpu_id=7
157250          <idle>-0     (-----) [007] d..2 82320.592113: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
157251         sugov:4-577   (  577) [007] d..1 82320.592115: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
157252 [email protected] (  798) [001] dns2 82320.592117: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
157253         sugov:4-577   (  577) [007] .... 82320.592121: cpu_frequency: state=2169600 cpu_id=5
157254         sugov:4-577   (  577) [007] .... 82320.592123: cpu_frequency: state=2169600 cpu_id=6
157255         sugov:4-577   (  577) [007] .... 82320.592124: cpu_frequency: state=2169600 cpu_id=7
157256 [email protected] (  798) [001] d..2 82320.592126: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
157257         sugov:4-577   (  577) [007] d..2 82320.592131: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
157258          <idle>-0     (-----) [002] dnh2 82320.592131: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
157259          <idle>-0     (-----) [007] d..1 82320.592133: cpu_idle: state=0 cpu_id=7
157260          <idle>-0     (-----) [002] .n.1 82320.592137: cpu_idle: state=4294967295 cpu_id=2
157261          <idle>-0     (-----) [002] d..2 82320.592145: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
157262   Binder:8858_1-8871  ( 8858) [005] .... 82320.592150: binder_transaction: transaction=1573362 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
157263         sugov:0-576   (  576) [002] .... 82320.592151: cpu_frequency: state=979200 cpu_id=1
157264   Binder:8858_1-8871  ( 8858) [005] .... 82320.592152: binder_transaction_alloc_buf: transaction=1573362 data_size=68 offsets_size=0
157265   Binder:8858_1-8871  ( 8858) [005] .... 82320.592153: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
157266         sugov:0-576   (  576) [002] .... 82320.592156: cpu_frequency: state=979200 cpu_id=2
157267         sugov:0-576   (  576) [002] .... 82320.592160: cpu_frequency: state=979200 cpu_id=3
157268     kworker/1:1-25249 (25249) [001] d..2 82320.592163: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
157269   Binder:8858_1-8871  ( 8858) [005] d..2 82320.592167: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
157270    RenderThread-16607 (10023) [005] .... 82320.592172: binder_transaction_received: transaction=1573362
157271     ksoftirqd/1-18    (   18) [001] d..2 82320.592175: sched_switch: prev_comm=ksoftirqd/1 prev_pid=18 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
157272         sugov:0-576   (  576) [002] d..2 82320.592179: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157273          <idle>-0     (-----) [002] d..1 82320.592188: cpu_idle: state=0 cpu_id=2
157274    RenderThread-16607 (10023) [005] d..2 82320.592197: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
157275          <idle>-0     (-----) [005] d..1 82320.592202: cpu_idle: state=0 cpu_id=5
157276 [email protected] (  798) [001] d..2 82320.592314: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157277          <idle>-0     (-----) [001] d..1 82320.592328: cpu_idle: state=0 cpu_id=1
157278          <idle>-0     (-----) [001] d.s3 82320.593229: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
157279          <idle>-0     (-----) [001] dns4 82320.593237: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
157280          <idle>-0     (-----) [001] .n.1 82320.593259: cpu_idle: state=4294967295 cpu_id=1
157281          <idle>-0     (-----) [001] d..2 82320.593270: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
157282     kworker/1:1-25249 (25249) [001] d..2 82320.593288: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
157283     kworker/1:1-25249 (25249) [001] d..3 82320.593297: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
157284     kworker/1:1-25249 (25249) [001] d..2 82320.593314: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
157285          <idle>-0     (-----) [000] d.h3 82320.593374: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
157286          <idle>-0     (-----) [000] dnh4 82320.593387: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
157287          <idle>-0     (-----) [000] .n.1 82320.593397: cpu_idle: state=4294967295 cpu_id=0
157288          <idle>-0     (-----) [000] d..2 82320.593405: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
157289 kgsl_worker_thr-258   (  258) [000] d..2 82320.593451: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
157290 kgsl_worker_thr-258   (  258) [000] d..3 82320.593485: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157291 kgsl_worker_thr-258   (  258) [000] d..2 82320.593505: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157292 [email protected] (  798) [001] d..2 82320.593559: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157293          <idle>-0     (-----) [001] d..1 82320.593572: cpu_idle: state=0 cpu_id=1
157294  kworker/u16:13-1147  ( 1147) [000] d..2 82320.593688: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157295          <idle>-0     (-----) [000] d..1 82320.593698: cpu_idle: state=0 cpu_id=0
157296          <idle>-0     (-----) [002] ...1 82320.593724: cpu_idle: state=4294967295 cpu_id=2
157297          <idle>-0     (-----) [002] d..1 82320.593729: cpu_idle: state=0 cpu_id=2
157298          <idle>-0     (-----) [001] d.s3 82320.593929: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
157299          <idle>-0     (-----) [001] dns4 82320.593937: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
157300          <idle>-0     (-----) [001] dns3 82320.593958: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
157301          <idle>-0     (-----) [001] dns4 82320.593975: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
157302          <idle>-0     (-----) [001] .n.1 82320.593990: cpu_idle: state=4294967295 cpu_id=1
157303          <idle>-0     (-----) [001] d..2 82320.594000: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
157304          <idle>-0     (-----) [000] d.h2 82320.594059: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
157305          <idle>-0     (-----) [000] dnh3 82320.594069: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
157306   cds_mc_thread-16565 (16565) [001] d..2 82320.594072: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
157307          <idle>-0     (-----) [000] .n.1 82320.594077: cpu_idle: state=4294967295 cpu_id=0
157308          <idle>-0     (-----) [000] d..2 82320.594085: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
157309     kworker/1:1-25249 (25249) [001] d..2 82320.594089: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
157310     kworker/1:1-25249 (25249) [001] d..3 82320.594099: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=001
157311        DispSync-8879  ( 8858) [000] d..1 82320.594100: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
157312     kworker/1:1-25249 (25249) [001] d..2 82320.594115: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> [email protected] next_pid=16588 next_prio=120
157313        DispSync-8879  ( 8858) [000] d..2 82320.594129: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
157314          <idle>-0     (-----) [003] .n.1 82320.594134: cpu_idle: state=4294967295 cpu_id=3
157315          <idle>-0     (-----) [003] d..2 82320.594143: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
157316        DispSync-8879  ( 8858) [000] d..2 82320.594154: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157317          <idle>-0     (-----) [000] d..1 82320.594164: cpu_idle: state=0 cpu_id=0
157318   sfEventThread-8882  ( 8858) [003] d..3 82320.594188: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157319   sfEventThread-8882  ( 8858) [003] d..4 82320.594207: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157320          <idle>-0     (-----) [002] .n.1 82320.594212: cpu_idle: state=4294967295 cpu_id=2
157321 [email protected] (  798) [001] d..2 82320.594220: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157322          <idle>-0     (-----) [002] d..2 82320.594221: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
157323          <idle>-0     (-----) [001] d..1 82320.594233: cpu_idle: state=0 cpu_id=1
157324   sfEventThread-8882  ( 8858) [003] d..2 82320.594237: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157325          <idle>-0     (-----) [003] d..1 82320.594249: cpu_idle: state=0 cpu_id=3
157326  surfaceflinger-8858  ( 8858) [002] d..1 82320.594575: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
157327  surfaceflinger-8858  ( 8858) [002] d..2 82320.594592: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
157328          <idle>-0     (-----) [003] .n.1 82320.594597: cpu_idle: state=4294967295 cpu_id=3
157329          <idle>-0     (-----) [003] d..2 82320.594605: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
157330   sfEventThread-8882  ( 8858) [003] d..2 82320.594633: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157331          <idle>-0     (-----) [003] d..1 82320.594643: cpu_idle: state=0 cpu_id=3
157332  surfaceflinger-8858  ( 8858) [002] ...1 82320.594790: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
157333  surfaceflinger-8858  ( 8858) [002] ...1 82320.594798: tracing_mark_write: E|8858
157334  surfaceflinger-8858  ( 8858) [002] .... 82320.594860: binder_transaction: transaction=1573363 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
157335  surfaceflinger-8858  ( 8858) [002] .... 82320.594864: binder_transaction_alloc_buf: transaction=1573363 data_size=540 offsets_size=96
157336  surfaceflinger-8858  ( 8858) [002] ...2 82320.594886: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
157337  surfaceflinger-8858  ( 8858) [002] d..4 82320.594894: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
157338  surfaceflinger-8858  ( 8858) [002] d..5 82320.594911: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
157339          <idle>-0     (-----) [001] .n.1 82320.594917: cpu_idle: state=4294967295 cpu_id=1
157340          <idle>-0     (-----) [001] d..2 82320.594926: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
157341 [email protected]   (  619) [001] .... 82320.594935: binder_transaction_received: transaction=1573363
157342  surfaceflinger-8858  ( 8858) [002] d..2 82320.594937: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157343          <idle>-0     (-----) [002] d..1 82320.594951: cpu_idle: state=0 cpu_id=2
157344 [email protected]   (  619) [001] ...1 82320.594990: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
157345 [email protected]   (  619) [001] d.s2 82320.595139: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157346 [email protected]   (  619) [001] d.s3 82320.595154: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157347          <idle>-0     (-----) [000] .n.1 82320.595159: cpu_idle: state=4294967295 cpu_id=0
157348          <idle>-0     (-----) [000] d..2 82320.595170: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157349 [email protected]   (  619) [001] ...1 82320.595175: tracing_mark_write: B|619|HWCSession::PresentDisplay::
157350  kworker/u16:13-1147  ( 1147) [000] .... 82320.595196: clk_set_rate: l3_cluster1_vote_clk 576000000
157351  kworker/u16:13-1147  ( 1147) [000] .... 82320.595201: clk_set_rate: l3_clk 576000000
157352 [email protected]   (  619) [001] ...1 82320.595417: tracing_mark_write: B|619|HWDeviceDRM::Commit::
157353 [email protected]   (  619) [001] ...1 82320.595432: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
157354  kworker/u16:13-1147  ( 1147) [000] d..2 82320.595474: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
157355          <idle>-0     (-----) [000] d..1 82320.595484: cpu_idle: state=0 cpu_id=0
157356 [email protected]   (  619) [001] d.s1 82320.595490: sched_waking: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
157357 [email protected]   (  619) [001] d.s2 82320.595503: sched_wakeup: comm=ksoftirqd/1 pid=18 prio=120 target_cpu=001
157358          <idle>-0     (-----) [003] ...1 82320.595795: cpu_idle: state=4294967295 cpu_id=3
157359          <idle>-0     (-----) [003] d..1 82320.595800: cpu_idle: state=0 cpu_id=3
157360 [email protected]   (  619) [001] d..2 82320.596109: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157361 [email protected]   (  619) [001] d..3 82320.596132: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157362          <idle>-0     (-----) [003] .n.1 82320.596137: cpu_idle: state=4294967295 cpu_id=3
157363          <idle>-0     (-----) [003] d..2 82320.596147: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
157364 [email protected]   (  619) [001] ...1 82320.596232: tracing_mark_write: E|619
157365 [email protected]   (  619) [001] ...1 82320.596238: tracing_mark_write: E|619
157366 [email protected]   (  619) [001] ...1 82320.596303: tracing_mark_write: E|619
157367 [email protected]   (  619) [001] ...1 82320.596356: tracing_mark_write: E|619
157368 [email protected]   (  619) [001] .... 82320.596371: binder_transaction: transaction=1573364 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
157369 [email protected]   (  619) [001] .... 82320.596376: binder_transaction_alloc_buf: transaction=1573364 data_size=576 offsets_size=112
157370 [email protected]   (  619) [001] d..2 82320.596395: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157371 [email protected]   (  619) [001] d..3 82320.596411: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157372 [email protected]   (  619) [001] .... 82320.596415: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
157373          <idle>-0     (-----) [002] .n.1 82320.596418: cpu_idle: state=4294967295 cpu_id=2
157374          <idle>-0     (-----) [002] d..2 82320.596429: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
157375  surfaceflinger-8858  ( 8858) [002] .... 82320.596437: binder_transaction_received: transaction=1573364
157376 [email protected]   (  619) [001] d..2 82320.596486: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=ksoftirqd/1 next_pid=18 next_prio=120
157377     ksoftirqd/1-18    (   18) [001] d.s2 82320.596499: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157378     ksoftirqd/1-18    (   18) [001] d.s3 82320.596510: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
157379     ksoftirqd/1-18    (   18) [001] d.s3 82320.596519: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157380          <idle>-0     (-----) [000] .n.1 82320.596525: cpu_idle: state=4294967295 cpu_id=0
157381          <idle>-0     (-----) [000] d..2 82320.596534: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157382     ksoftirqd/1-18    (   18) [001] d..2 82320.596545: 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
157383          <idle>-0     (-----) [001] d..1 82320.596561: cpu_idle: state=0 cpu_id=1
157384          <idle>-0     (-----) [001] ...1 82320.596580: cpu_idle: state=4294967295 cpu_id=1
157385          <idle>-0     (-----) [001] d..1 82320.596584: cpu_idle: state=0 cpu_id=1
157386  kworker/u16:13-1147  ( 1147) [000] d..2 82320.596651: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157387          <idle>-0     (-----) [000] d..1 82320.596659: cpu_idle: state=0 cpu_id=0
157388  surfaceflinger-8858  ( 8858) [002] d..2 82320.596864: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157389 crtc_commit:111-321   (  321) [003] d..2 82320.596874: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
157390          <idle>-0     (-----) [002] d..1 82320.596881: cpu_idle: state=0 cpu_id=2
157391          <idle>-0     (-----) [003] d..1 82320.596886: cpu_idle: state=0 cpu_id=3
157392          <idle>-0     (-----) [000] d.s2 82320.598468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157393          <idle>-0     (-----) [000] dns3 82320.598485: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157394          <idle>-0     (-----) [000] .n.1 82320.598492: cpu_idle: state=4294967295 cpu_id=0
157395          <idle>-0     (-----) [000] d..2 82320.598500: 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
157396     rcu_preempt-7     (    7) [000] d..2 82320.598512: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=001
157397     rcu_preempt-7     (    7) [000] d..3 82320.598548: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
157398     rcu_preempt-7     (    7) [000] d..2 82320.598551: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=003
157399     rcu_preempt-7     (    7) [000] d..3 82320.598581: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
157400     rcu_preempt-7     (    7) [000] d..2 82320.598596: 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
157401         rcuop/0-10    (   10) [000] d..2 82320.598619: 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
157402         rcuop/4-45    (   45) [000] d..2 82320.599528: 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
157403          <idle>-0     (-----) [000] d..1 82320.599546: cpu_idle: state=0 cpu_id=0
157404          <idle>-0     (-----) [000] d.h5 82320.602441: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157405          <idle>-0     (-----) [000] d.h6 82320.602459: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157406          <idle>-0     (-----) [000] d.h5 82320.602464: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157407          <idle>-0     (-----) [002] .n.1 82320.602465: cpu_idle: state=4294967295 cpu_id=2
157408          <idle>-0     (-----) [000] d.h6 82320.602474: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157409          <idle>-0     (-----) [002] d..2 82320.602477: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
157410          <idle>-0     (-----) [003] .n.1 82320.602481: cpu_idle: state=4294967295 cpu_id=3
157411          <idle>-0     (-----) [000] d..2 82320.602487: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
157412          <idle>-0     (-----) [003] d..2 82320.602492: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
157413          <idle>-0     (-----) [000] dn.3 82320.602500: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
157414          <idle>-0     (-----) [000] .n.1 82320.602505: cpu_idle: state=4294967295 cpu_id=0
157415  crtc_event:111-322   (  322) [002] d..2 82320.602517: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157416          <idle>-0     (-----) [000] d..2 82320.602519: 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
157417          <idle>-0     (-----) [002] d..1 82320.602527: cpu_idle: state=0 cpu_id=2
157418     ksoftirqd/0-3     (    3) [000] d..2 82320.602546: 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
157419          <idle>-0     (-----) [000] d..1 82320.602554: cpu_idle: state=0 cpu_id=0
157420 crtc_commit:111-321   (  321) [003] d..2 82320.602627: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
157421          <idle>-0     (-----) [003] d..1 82320.602635: cpu_idle: state=0 cpu_id=3
157422          <idle>-0     (-----) [000] d.h5 82320.604772: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157423          <idle>-0     (-----) [000] d.h6 82320.604786: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157424          <idle>-0     (-----) [003] .n.1 82320.604792: cpu_idle: state=4294967295 cpu_id=3
157425          <idle>-0     (-----) [000] ...1 82320.604798: cpu_idle: state=4294967295 cpu_id=0
157426          <idle>-0     (-----) [003] d..2 82320.604799: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
157427          <idle>-0     (-----) [000] d..1 82320.604802: cpu_idle: state=0 cpu_id=0
157428 crtc_commit:111-321   (  321) [003] d..2 82320.604856: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157429          <idle>-0     (-----) [003] d..1 82320.604863: cpu_idle: state=0 cpu_id=3
157430          <idle>-0     (-----) [000] d.h5 82320.605070: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157431          <idle>-0     (-----) [000] d.h6 82320.605083: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157432          <idle>-0     (-----) [002] .n.1 82320.605089: cpu_idle: state=4294967295 cpu_id=2
157433          <idle>-0     (-----) [000] ...1 82320.605097: cpu_idle: state=4294967295 cpu_id=0
157434          <idle>-0     (-----) [002] d..2 82320.605097: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
157435          <idle>-0     (-----) [000] d..1 82320.605100: cpu_idle: state=0 cpu_id=0
157436  crtc_event:111-322   (  322) [002] d..2 82320.605122: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157437          <idle>-0     (-----) [000] d.s2 82320.605130: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157438          <idle>-0     (-----) [003] d.s3 82320.605134: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157439          <idle>-0     (-----) [000] dns3 82320.605145: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157440          <idle>-0     (-----) [000] dns3 82320.605149: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157441          <idle>-0     (-----) [003] d.s4 82320.605154: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157442          <idle>-0     (-----) [003] ...1 82320.605177: cpu_idle: state=4294967295 cpu_id=3
157443          <idle>-0     (-----) [002] d..2 82320.605180: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
157444          <idle>-0     (-----) [003] d..1 82320.605183: cpu_idle: state=0 cpu_id=3
157445          <idle>-0     (-----) [000] dns4 82320.605186: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
157446  crtc_event:111-322   (  322) [002] d..2 82320.605198: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157447          <idle>-0     (-----) [000] .n.1 82320.605204: cpu_idle: state=4294967295 cpu_id=0
157448          <idle>-0     (-----) [000] d..2 82320.605213: 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
157449     rcu_preempt-7     (    7) [000] d..2 82320.605236: 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
157450          <idle>-0     (-----) [000] d..1 82320.605246: cpu_idle: state=0 cpu_id=0
157451  kworker/u16:13-1147  ( 1147) [002] d..2 82320.605352: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
157452          <idle>-0     (-----) [002] d..1 82320.605365: cpu_idle: state=0 cpu_id=2
157453          <idle>-0     (-----) [001] d.s3 82320.605382: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
157454          <idle>-0     (-----) [001] d.s4 82320.605392: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
157455          <idle>-0     (-----) [001] d.s4 82320.605400: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
157456          <idle>-0     (-----) [002] .n.1 82320.605407: cpu_idle: state=4294967295 cpu_id=2
157457          <idle>-0     (-----) [001] ...1 82320.605409: cpu_idle: state=4294967295 cpu_id=1
157458          <idle>-0     (-----) [001] d..1 82320.605416: cpu_idle: state=0 cpu_id=1
157459          <idle>-0     (-----) [002] d..2 82320.605417: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157460  kworker/u16:13-1147  ( 1147) [002] d..2 82320.605565: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
157461          <idle>-0     (-----) [002] d..1 82320.605577: cpu_idle: state=0 cpu_id=2
157462          <idle>-0     (-----) [001] d.s3 82320.605593: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
157463          <idle>-0     (-----) [001] d.s4 82320.605602: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
157464          <idle>-0     (-----) [001] d.s4 82320.605609: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
157465          <idle>-0     (-----) [002] .n.1 82320.605615: cpu_idle: state=4294967295 cpu_id=2
157466          <idle>-0     (-----) [001] ...1 82320.605618: cpu_idle: state=4294967295 cpu_id=1
157467          <idle>-0     (-----) [001] d..1 82320.605622: cpu_idle: state=0 cpu_id=1
157468          <idle>-0     (-----) [002] d..2 82320.605626: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157469  kworker/u16:13-1147  ( 1147) [002] .... 82320.605655: clk_set_rate: l3_cluster0_vote_clk 300000000
157470  kworker/u16:13-1147  ( 1147) [002] .... 82320.605673: clk_set_rate: l3_cluster1_vote_clk 300000000
157471  kworker/u16:13-1147  ( 1147) [002] .... 82320.605676: clk_set_rate: l3_clk 300000000
157472  kworker/u16:13-1147  ( 1147) [002] d..2 82320.605722: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157473          <idle>-0     (-----) [002] d..1 82320.605735: cpu_idle: state=0 cpu_id=2
157474          <idle>-0     (-----) [000] d.h2 82320.606538: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
157475          <idle>-0     (-----) [000] dnh3 82320.606550: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=000
157476          <idle>-0     (-----) [000] .n.1 82320.606558: cpu_idle: state=4294967295 cpu_id=0
157477          <idle>-0     (-----) [000] d..2 82320.606570: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
157478        DispSync-8879  ( 8858) [000] d..1 82320.606588: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
157479        DispSync-8879  ( 8858) [000] d..2 82320.606605: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
157480          <idle>-0     (-----) [001] .n.1 82320.606610: cpu_idle: state=4294967295 cpu_id=1
157481          <idle>-0     (-----) [001] d..2 82320.606623: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
157482        DispSync-8879  ( 8858) [000] d..2 82320.606638: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157483          <idle>-0     (-----) [000] d..1 82320.606650: cpu_idle: state=0 cpu_id=0
157484  appEventThread-8881  ( 8858) [001] d..3 82320.606691: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157485          <idle>-0     (-----) [004] dnh2 82320.606720: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157486          <idle>-0     (-----) [004] .n.1 82320.606722: cpu_idle: state=4294967295 cpu_id=4
157487          <idle>-0     (-----) [004] d..2 82320.606727: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
157488  appEventThread-8881  ( 8858) [001] d..2 82320.606760: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157489          <idle>-0     (-----) [001] d..1 82320.606778: cpu_idle: state=0 cpu_id=1
157490 s.nexuslauncher-10023 (10023) [004] .... 82320.606909: binder_transaction: transaction=1573365 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
157491 s.nexuslauncher-10023 (10023) [004] .... 82320.606913: binder_transaction_alloc_buf: transaction=1573365 data_size=80 offsets_size=0
157492 s.nexuslauncher-10023 (10023) [004] d..4 82320.606917: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
157493 s.nexuslauncher-10023 (10023) [004] d.h5 82320.606968: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
157494          <idle>-0     (-----) [000] dnh2 82320.606973: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
157495 s.nexuslauncher-10023 (10023) [004] d.h6 82320.606978: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
157496 s.nexuslauncher-10023 (10023) [004] d.h5 82320.606979: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
157497          <idle>-0     (-----) [000] .n.1 82320.606979: cpu_idle: state=4294967295 cpu_id=0
157498          <idle>-0     (-----) [007] .n.1 82320.606982: cpu_idle: state=4294967295 cpu_id=7
157499          <idle>-0     (-----) [007] d..2 82320.606986: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
157500          <idle>-0     (-----) [000] d..2 82320.606990: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
157501         sugov:4-577   (  577) [007] .... 82320.606997: clk_set_rate: perfcl_clk 2246400000
157502         sugov:4-577   (  577) [007] .... 82320.606998: clk_set_rate: cpu7_perfcl_clk 2169600000
157503   Binder:8858_1-8871  ( 8858) [000] .... 82320.606999: binder_transaction_received: transaction=1573365
157504          <idle>-0     (-----) [002] dnh2 82320.607001: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
157505         sugov:4-577   (  577) [007] .... 82320.607003: clk_set_rate: cpu6_perfcl_clk 2169600000
157506         sugov:4-577   (  577) [007] .... 82320.607008: clk_set_rate: cpu5_perfcl_clk 2169600000
157507          <idle>-0     (-----) [002] .n.1 82320.607009: cpu_idle: state=4294967295 cpu_id=2
157508 s.nexuslauncher-10023 (10023) [004] d..3 82320.607009: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
157509         sugov:4-577   (  577) [007] .... 82320.607014: clk_set_rate: cpu4_perfcl_clk 2246400000
157510          <idle>-0     (-----) [002] d..2 82320.607019: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
157511         sugov:4-577   (  577) [007] .... 82320.607019: cpu_frequency: state=2246400 cpu_id=4
157512 s.nexuslauncher-10023 (10023) [004] d..4 82320.607020: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
157513         sugov:4-577   (  577) [007] .... 82320.607023: cpu_frequency: state=2246400 cpu_id=5
157514         sugov:4-577   (  577) [007] .... 82320.607024: cpu_frequency: state=2246400 cpu_id=6
157515         sugov:4-577   (  577) [007] .... 82320.607025: cpu_frequency: state=2246400 cpu_id=7
157516          <idle>-0     (-----) [005] .n.1 82320.607026: cpu_idle: state=4294967295 cpu_id=5
157517         sugov:4-577   (  577) [007] d..2 82320.607034: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
157518          <idle>-0     (-----) [005] d..2 82320.607035: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
157519   Binder:8858_1-8871  ( 8858) [000] d..1 82320.607035: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
157520          <idle>-0     (-----) [007] d..1 82320.607037: cpu_idle: state=0 cpu_id=7
157521         sugov:0-576   (  576) [002] .... 82320.607045: clk_set_rate: pwrcl_clk 1056000000
157522         sugov:0-576   (  576) [002] .... 82320.607053: clk_set_rate: cpu3_pwrcl_clk 979200000
157523   Binder:8858_1-8871  ( 8858) [000] d..2 82320.607053: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
157524    RenderThread-16607 (10023) [005] d..2 82320.607060: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
157525          <idle>-0     (-----) [001] .n.1 82320.607061: cpu_idle: state=4294967295 cpu_id=1
157526         sugov:0-576   (  576) [002] .... 82320.607062: clk_set_rate: cpu2_pwrcl_clk 979200000
157527          <idle>-0     (-----) [005] d..1 82320.607064: cpu_idle: state=0 cpu_id=5
157528         sugov:0-576   (  576) [002] .... 82320.607070: clk_set_rate: cpu1_pwrcl_clk 979200000
157529          <idle>-0     (-----) [001] d..2 82320.607072: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
157530         sugov:0-576   (  576) [002] .... 82320.607077: clk_set_rate: cpu0_pwrcl_clk 1056000000
157531         sugov:0-576   (  576) [002] .... 82320.607086: cpu_frequency: state=1056000 cpu_id=0
157532   Binder:8858_1-8871  ( 8858) [000] d..2 82320.607104: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157533         sugov:0-576   (  576) [002] .... 82320.607105: cpu_frequency: state=1056000 cpu_id=1
157534         sugov:0-576   (  576) [002] .... 82320.607109: cpu_frequency: state=1056000 cpu_id=2
157535         sugov:0-576   (  576) [002] .... 82320.607113: cpu_frequency: state=1056000 cpu_id=3
157536          <idle>-0     (-----) [000] d..1 82320.607119: cpu_idle: state=0 cpu_id=0
157537  appEventThread-8881  ( 8858) [001] d..2 82320.607120: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157538          <idle>-0     (-----) [001] d..1 82320.607132: cpu_idle: state=0 cpu_id=1
157539         sugov:0-576   (  576) [002] d..2 82320.607141: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157540          <idle>-0     (-----) [002] d..1 82320.607153: cpu_idle: state=0 cpu_id=2
157541 s.nexuslauncher-10023 (10023) [004] d..3 82320.607225: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
157542 s.nexuslauncher-10023 (10023) [004] d..4 82320.607238: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
157543          <idle>-0     (-----) [005] .n.1 82320.607241: cpu_idle: state=4294967295 cpu_id=5
157544          <idle>-0     (-----) [005] d..2 82320.607245: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
157545 s.nexuslauncher-10023 (10023) [004] d..2 82320.607256: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
157546          <idle>-0     (-----) [004] d..1 82320.607268: cpu_idle: state=0 cpu_id=4
157547    RenderThread-16607 (10023) [005] d..1 82320.607371: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157548    RenderThread-16607 (10023) [005] d..2 82320.607384: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157549          <idle>-0     (-----) [004] .n.1 82320.607390: cpu_idle: state=4294967295 cpu_id=4
157550          <idle>-0     (-----) [004] d..2 82320.607397: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
157551    RenderThread-16607 (10023) [005] .... 82320.607420: binder_transaction: transaction=1573366 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
157552    RenderThread-16607 (10023) [005] .... 82320.607423: binder_transaction_alloc_buf: transaction=1573366 data_size=104 offsets_size=0
157553    RenderThread-16607 (10023) [005] ...2 82320.607426: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
157554    RenderThread-16607 (10023) [005] d..4 82320.607428: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
157555    RenderThread-16607 (10023) [005] dn.5 82320.607442: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
157556 s.nexuslauncher-10023 (10023) [004] d..2 82320.607484: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
157557    RenderThread-16607 (10023) [005] d..2 82320.607493: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
157558   Binder:8858_1-8871  ( 8858) [004] .... 82320.607497: binder_transaction_received: transaction=1573366
157559          <idle>-0     (-----) [005] d..1 82320.607503: cpu_idle: state=0 cpu_id=5
157560   Binder:8858_1-8871  ( 8858) [004] .... 82320.607550: binder_transaction: transaction=1573367 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
157561   Binder:8858_1-8871  ( 8858) [004] .... 82320.607553: binder_transaction_alloc_buf: transaction=1573367 data_size=52 offsets_size=8
157562   Binder:8858_1-8871  ( 8858) [004] d..2 82320.607559: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
157563   Binder:8858_1-8871  ( 8858) [004] d..3 82320.607573: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
157564   Binder:8858_1-8871  ( 8858) [004] .... 82320.607576: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
157565   Binder:8858_1-8871  ( 8858) [004] d..2 82320.607598: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
157566    RenderThread-16607 (10023) [004] .... 82320.607604: binder_transaction_received: transaction=1573367
157567          <idle>-0     (-----) [001] ...1 82320.608501: cpu_idle: state=4294967295 cpu_id=1
157568          <idle>-0     (-----) [001] d..1 82320.608506: cpu_idle: state=0 cpu_id=1
157569    RenderThread-16607 (10023) [004] d..2 82320.608728: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
157570          <idle>-0     (-----) [004] d..1 82320.608739: cpu_idle: state=0 cpu_id=4
157571          <idle>-0     (-----) [004] d.h2 82320.608818: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
157572          <idle>-0     (-----) [004] d.h3 82320.608824: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
157573          <idle>-0     (-----) [004] dnh3 82320.608826: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
157574          <idle>-0     (-----) [004] .n.1 82320.608830: cpu_idle: state=4294967295 cpu_id=4
157575          <idle>-0     (-----) [004] d..2 82320.608835: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
157576    RenderThread-16607 (10023) [004] .... 82320.608950: binder_transaction: transaction=1573368 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
157577    RenderThread-16607 (10023) [004] .... 82320.608953: binder_transaction_alloc_buf: transaction=1573368 data_size=192 offsets_size=8
157578    RenderThread-16607 (10023) [004] ...2 82320.608958: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
157579    RenderThread-16607 (10023) [004] d..4 82320.608960: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
157580    RenderThread-16607 (10023) [004] dn.5 82320.608967: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
157581    RenderThread-16607 (10023) [004] d..2 82320.608972: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
157582   Binder:8858_1-8871  ( 8858) [004] .... 82320.608980: binder_transaction_received: transaction=1573368
157583   Binder:8858_1-8871  ( 8858) [004] .... 82320.609066: binder_transaction: transaction=1573369 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
157584   Binder:8858_1-8871  ( 8858) [004] .... 82320.609069: binder_transaction_alloc_buf: transaction=1573369 data_size=68 offsets_size=0
157585   Binder:8858_1-8871  ( 8858) [004] .... 82320.609070: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
157586   Binder:8858_1-8871  ( 8858) [004] d..2 82320.609093: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
157587    RenderThread-16607 (10023) [004] .... 82320.609099: binder_transaction_received: transaction=1573369
157588    RenderThread-16607 (10023) [004] d..2 82320.609145: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
157589          <idle>-0     (-----) [004] d..1 82320.609156: cpu_idle: state=0 cpu_id=4
157590          <idle>-0     (-----) [000] d.h3 82320.610279: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
157591          <idle>-0     (-----) [000] dnh4 82320.610293: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
157592          <idle>-0     (-----) [000] .n.1 82320.610306: cpu_idle: state=4294967295 cpu_id=0
157593          <idle>-0     (-----) [000] d..2 82320.610317: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
157594 kgsl_worker_thr-258   (  258) [000] d..2 82320.610392: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
157595 kgsl_worker_thr-258   (  258) [000] d..3 82320.610433: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157596 kgsl_worker_thr-258   (  258) [000] d..2 82320.610456: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157597  kworker/u16:13-1147  ( 1147) [000] d.h1 82320.610636: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=000
157598  kworker/u16:13-1147  ( 1147) [000] d.h2 82320.610660: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
157599          <idle>-0     (-----) [003] .n.1 82320.610665: cpu_idle: state=4294967295 cpu_id=3
157600          <idle>-0     (-----) [003] d..2 82320.610677: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
157601        DispSync-8879  ( 8858) [003] d..1 82320.610700: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
157602  kworker/u16:13-1147  ( 1147) [000] d..2 82320.610703: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157603          <idle>-0     (-----) [000] dn.1 82320.610720: cpu_idle: state=0 cpu_id=0
157604        DispSync-8879  ( 8858) [003] d..2 82320.610725: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
157605          <idle>-0     (-----) [000] .n.1 82320.610728: cpu_idle: state=4294967295 cpu_id=0
157606          <idle>-0     (-----) [000] d..2 82320.610737: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
157607        DispSync-8879  ( 8858) [003] d..2 82320.610759: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157608          <idle>-0     (-----) [003] d..1 82320.610772: cpu_idle: state=0 cpu_id=3
157609   sfEventThread-8882  ( 8858) [000] d..3 82320.610789: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157610   sfEventThread-8882  ( 8858) [000] d..4 82320.610808: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157611          <idle>-0     (-----) [002] .n.1 82320.610814: cpu_idle: state=4294967295 cpu_id=2
157612          <idle>-0     (-----) [002] d..2 82320.610826: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
157613   sfEventThread-8882  ( 8858) [000] d..2 82320.610844: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157614          <idle>-0     (-----) [000] d..1 82320.610854: cpu_idle: state=0 cpu_id=0
157615  surfaceflinger-8858  ( 8858) [002] d..1 82320.611188: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
157616  surfaceflinger-8858  ( 8858) [002] d..2 82320.611212: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
157617          <idle>-0     (-----) [000] .n.1 82320.611217: cpu_idle: state=4294967295 cpu_id=0
157618          <idle>-0     (-----) [000] d..2 82320.611225: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
157619   sfEventThread-8882  ( 8858) [000] d..2 82320.611260: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157620          <idle>-0     (-----) [000] d..1 82320.611267: cpu_idle: state=0 cpu_id=0
157621  surfaceflinger-8858  ( 8858) [002] ...1 82320.611408: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
157622  surfaceflinger-8858  ( 8858) [002] ...1 82320.611416: tracing_mark_write: E|8858
157623  surfaceflinger-8858  ( 8858) [002] .... 82320.611475: binder_transaction: transaction=1573370 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
157624  surfaceflinger-8858  ( 8858) [002] .... 82320.611481: binder_transaction_alloc_buf: transaction=1573370 data_size=540 offsets_size=96
157625  surfaceflinger-8858  ( 8858) [002] ...2 82320.611503: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
157626  surfaceflinger-8858  ( 8858) [002] d..4 82320.611511: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
157627  surfaceflinger-8858  ( 8858) [002] d..5 82320.611531: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
157628          <idle>-0     (-----) [001] .n.1 82320.611536: cpu_idle: state=4294967295 cpu_id=1
157629          <idle>-0     (-----) [001] d..2 82320.611546: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
157630 [email protected]   (  619) [001] .... 82320.611558: binder_transaction_received: transaction=1573370
157631  surfaceflinger-8858  ( 8858) [002] d..2 82320.611569: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157632          <idle>-0     (-----) [002] d..1 82320.611589: cpu_idle: state=0 cpu_id=2
157633 [email protected]   (  619) [001] ...1 82320.611609: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
157634 [email protected]   (  619) [001] ...1 82320.611723: tracing_mark_write: B|619|HWCSession::PresentDisplay::
157635 [email protected]   (  619) [001] d.s2 82320.611861: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
157636          <idle>-0     (-----) [000] d.s2 82320.611876: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157637 [email protected]   (  619) [001] d.s3 82320.611879: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
157638          <idle>-0     (-----) [000] dns3 82320.611897: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157639          <idle>-0     (-----) [000] .n.1 82320.611909: cpu_idle: state=4294967295 cpu_id=0
157640          <idle>-0     (-----) [000] d..2 82320.611919: 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
157641     rcu_preempt-7     (    7) [000] d..2 82320.611930: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=001
157642     rcu_preempt-7     (    7) [000] d..3 82320.611968: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
157643     rcu_preempt-7     (    7) [000] d..2 82320.611984: 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
157644 [email protected]   (  619) [001] ...1 82320.612008: tracing_mark_write: B|619|HWDeviceDRM::Commit::
157645         rcuop/2-29    (   29) [000] d..2 82320.612019: 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
157646 [email protected]   (  619) [001] ...1 82320.612020: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
157647          <idle>-0     (-----) [000] d..1 82320.612034: cpu_idle: state=0 cpu_id=0
157648 [email protected]   (  619) [001] d..2 82320.612579: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157649 [email protected]   (  619) [001] d..3 82320.612608: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157650          <idle>-0     (-----) [003] .n.1 82320.612613: cpu_idle: state=4294967295 cpu_id=3
157651          <idle>-0     (-----) [003] d..2 82320.612625: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
157652 [email protected]   (  619) [001] ...1 82320.612714: tracing_mark_write: E|619
157653 [email protected]   (  619) [001] ...1 82320.612720: tracing_mark_write: E|619
157654 [email protected]   (  619) [001] ...1 82320.612779: tracing_mark_write: E|619
157655 [email protected]   (  619) [001] ...1 82320.612827: tracing_mark_write: E|619
157656 [email protected]   (  619) [001] .... 82320.612843: binder_transaction: transaction=1573371 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
157657 [email protected]   (  619) [001] .... 82320.612848: binder_transaction_alloc_buf: transaction=1573371 data_size=576 offsets_size=112
157658 [email protected]   (  619) [001] d..2 82320.612869: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157659 [email protected]   (  619) [001] d..3 82320.612890: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157660 [email protected]   (  619) [001] .... 82320.612896: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
157661          <idle>-0     (-----) [002] .n.1 82320.612897: cpu_idle: state=4294967295 cpu_id=2
157662          <idle>-0     (-----) [002] d..2 82320.612910: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
157663  surfaceflinger-8858  ( 8858) [002] .... 82320.612920: binder_transaction_received: transaction=1573371
157664 [email protected]   (  619) [001] d..2 82320.612974: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
157665     kworker/1:1-25249 (25249) [001] d..2 82320.613023: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157666          <idle>-0     (-----) [001] d..1 82320.613043: cpu_idle: state=0 cpu_id=1
157667  surfaceflinger-8858  ( 8858) [002] d..2 82320.613337: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157668          <idle>-0     (-----) [002] d..1 82320.613357: cpu_idle: state=0 cpu_id=2
157669 crtc_commit:111-321   (  321) [003] d..2 82320.613361: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
157670          <idle>-0     (-----) [003] d..1 82320.613375: cpu_idle: state=0 cpu_id=3
157671          <idle>-0     (-----) [000] d.s2 82320.618469: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157672          <idle>-0     (-----) [000] dns3 82320.618485: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157673          <idle>-0     (-----) [000] dns3 82320.618490: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157674          <idle>-0     (-----) [000] dns4 82320.618502: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157675          <idle>-0     (-----) [000] .n.1 82320.618522: cpu_idle: state=4294967295 cpu_id=0
157676          <idle>-0     (-----) [000] d..2 82320.618534: 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
157677     rcu_preempt-7     (    7) [000] d..2 82320.618546: sched_waking: comm=rcuop/4 pid=45 prio=120 target_cpu=000
157678     rcu_preempt-7     (    7) [000] d..3 82320.618563: sched_wakeup: comm=rcuop/4 pid=45 prio=120 target_cpu=000
157679     rcu_preempt-7     (    7) [000] d..2 82320.618566: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
157680     rcu_preempt-7     (    7) [000] d..3 82320.618583: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
157681     rcu_preempt-7     (    7) [000] d..2 82320.618597: 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
157682         rcuop/0-10    (   10) [000] d..2 82320.618815: 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
157683         rcuop/4-45    (   45) [000] d.h5 82320.618902: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157684         rcuop/4-45    (   45) [000] d.h6 82320.618923: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157685         rcuop/4-45    (   45) [000] d.h5 82320.618927: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157686          <idle>-0     (-----) [002] .n.1 82320.618930: cpu_idle: state=4294967295 cpu_id=2
157687         rcuop/4-45    (   45) [000] d.h6 82320.618940: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157688          <idle>-0     (-----) [002] d..2 82320.618943: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
157689          <idle>-0     (-----) [003] .n.1 82320.618947: cpu_idle: state=4294967295 cpu_id=3
157690          <idle>-0     (-----) [003] d..2 82320.618959: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
157691  crtc_event:111-322   (  322) [002] d..2 82320.618987: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157692          <idle>-0     (-----) [002] d..1 82320.618998: cpu_idle: state=0 cpu_id=2
157693 crtc_commit:111-321   (  321) [003] d..2 82320.619101: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
157694          <idle>-0     (-----) [003] d..1 82320.619110: cpu_idle: state=0 cpu_id=3
157695         rcuop/4-45    (   45) [000] d..2 82320.619150: sched_switch: prev_comm=rcuop/4 prev_pid=45 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157696  kworker/u16:13-1147  ( 1147) [000] .... 82320.619185: clk_set_rate: l3_cluster1_vote_clk 576000000
157697  kworker/u16:13-1147  ( 1147) [000] .... 82320.619190: clk_set_rate: l3_clk 576000000
157698  kworker/u16:13-1147  ( 1147) [000] d..2 82320.619393: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
157699          <idle>-0     (-----) [000] d..1 82320.619410: cpu_idle: state=0 cpu_id=0
157700          <idle>-0     (-----) [001] d.s3 82320.619426: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157701          <idle>-0     (-----) [001] d.s4 82320.619437: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
157702          <idle>-0     (-----) [001] d.s4 82320.619446: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157703          <idle>-0     (-----) [000] .n.1 82320.619452: cpu_idle: state=4294967295 cpu_id=0
157704          <idle>-0     (-----) [001] ...1 82320.619455: cpu_idle: state=4294967295 cpu_id=1
157705          <idle>-0     (-----) [001] d..1 82320.619462: cpu_idle: state=0 cpu_id=1
157706          <idle>-0     (-----) [000] d..2 82320.619464: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157707  kworker/u16:13-1147  ( 1147) [000] d..2 82320.619552: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157708          <idle>-0     (-----) [000] d..1 82320.619562: cpu_idle: state=0 cpu_id=0
157709          <idle>-0     (-----) [000] d.h5 82320.621244: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157710          <idle>-0     (-----) [000] d.h6 82320.621259: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157711          <idle>-0     (-----) [003] .n.1 82320.621265: cpu_idle: state=4294967295 cpu_id=3
157712          <idle>-0     (-----) [003] d..2 82320.621272: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
157713          <idle>-0     (-----) [000] ...1 82320.621273: cpu_idle: state=4294967295 cpu_id=0
157714          <idle>-0     (-----) [000] d..1 82320.621276: cpu_idle: state=0 cpu_id=0
157715 crtc_commit:111-321   (  321) [003] d..2 82320.621325: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157716          <idle>-0     (-----) [003] d..1 82320.621333: cpu_idle: state=0 cpu_id=3
157717          <idle>-0     (-----) [000] d.h5 82320.621540: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157718          <idle>-0     (-----) [000] d.h6 82320.621553: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157719          <idle>-0     (-----) [002] .n.1 82320.621558: cpu_idle: state=4294967295 cpu_id=2
157720          <idle>-0     (-----) [000] ...1 82320.621565: cpu_idle: state=4294967295 cpu_id=0
157721          <idle>-0     (-----) [002] d..2 82320.621566: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
157722          <idle>-0     (-----) [000] d..1 82320.621569: cpu_idle: state=0 cpu_id=0
157723  crtc_event:111-322   (  322) [002] d..2 82320.621586: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157724          <idle>-0     (-----) [002] d..1 82320.621594: cpu_idle: state=0 cpu_id=2
157725          <idle>-0     (-----) [003] d.s3 82320.621799: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157726          <idle>-0     (-----) [003] d.s4 82320.621814: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157727          <idle>-0     (-----) [002] .n.1 82320.621820: cpu_idle: state=4294967295 cpu_id=2
157728          <idle>-0     (-----) [002] d..2 82320.621828: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
157729          <idle>-0     (-----) [003] ...1 82320.621833: cpu_idle: state=4294967295 cpu_id=3
157730          <idle>-0     (-----) [003] d..1 82320.621838: cpu_idle: state=0 cpu_id=3
157731  crtc_event:111-322   (  322) [002] d..2 82320.621853: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157732          <idle>-0     (-----) [002] d..1 82320.621861: cpu_idle: state=0 cpu_id=2
157733          <idle>-0     (-----) [003] d.h2 82320.623007: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
157734          <idle>-0     (-----) [003] dnh3 82320.623018: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
157735          <idle>-0     (-----) [003] .n.1 82320.623024: cpu_idle: state=4294967295 cpu_id=3
157736          <idle>-0     (-----) [003] d..2 82320.623033: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
157737        DispSync-8879  ( 8858) [003] d..1 82320.623045: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
157738        DispSync-8879  ( 8858) [003] d..2 82320.623057: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
157739          <idle>-0     (-----) [001] .n.1 82320.623062: cpu_idle: state=4294967295 cpu_id=1
157740          <idle>-0     (-----) [001] d..2 82320.623072: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
157741        DispSync-8879  ( 8858) [003] d..2 82320.623085: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157742          <idle>-0     (-----) [003] d..1 82320.623093: cpu_idle: state=0 cpu_id=3
157743  appEventThread-8881  ( 8858) [001] d..3 82320.623114: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157744          <idle>-0     (-----) [004] dnh2 82320.623136: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157745          <idle>-0     (-----) [004] .n.1 82320.623138: cpu_idle: state=4294967295 cpu_id=4
157746          <idle>-0     (-----) [004] d..2 82320.623143: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
157747  appEventThread-8881  ( 8858) [001] d..2 82320.623165: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157748          <idle>-0     (-----) [001] d..1 82320.623177: cpu_idle: state=0 cpu_id=1
157749 s.nexuslauncher-10023 (10023) [004] .... 82320.623304: binder_transaction: transaction=1573372 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
157750 s.nexuslauncher-10023 (10023) [004] .... 82320.623307: binder_transaction_alloc_buf: transaction=1573372 data_size=80 offsets_size=0
157751 s.nexuslauncher-10023 (10023) [004] d..4 82320.623309: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
157752          <idle>-0     (-----) [000] dnh2 82320.623351: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
157753          <idle>-0     (-----) [000] .n.1 82320.623355: cpu_idle: state=4294967295 cpu_id=0
157754 s.nexuslauncher-10023 (10023) [004] d..3 82320.623358: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
157755          <idle>-0     (-----) [000] d..2 82320.623367: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
157756 s.nexuslauncher-10023 (10023) [004] d..4 82320.623370: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
157757   Binder:8858_1-8871  ( 8858) [000] .... 82320.623373: binder_transaction_received: transaction=1573372
157758          <idle>-0     (-----) [005] .n.1 82320.623375: cpu_idle: state=4294967295 cpu_id=5
157759          <idle>-0     (-----) [005] d..2 82320.623380: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
157760    RenderThread-16607 (10023) [005] d..2 82320.623398: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
157761   Binder:8858_1-8871  ( 8858) [000] d..1 82320.623398: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
157762          <idle>-0     (-----) [005] d..1 82320.623402: cpu_idle: state=0 cpu_id=5
157763   Binder:8858_1-8871  ( 8858) [000] d..2 82320.623412: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
157764          <idle>-0     (-----) [001] .n.1 82320.623418: cpu_idle: state=4294967295 cpu_id=1
157765          <idle>-0     (-----) [001] d..2 82320.623427: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
157766   Binder:8858_1-8871  ( 8858) [000] d..2 82320.623448: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157767          <idle>-0     (-----) [000] d..1 82320.623457: cpu_idle: state=0 cpu_id=0
157768  appEventThread-8881  ( 8858) [001] d..2 82320.623460: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157769          <idle>-0     (-----) [001] d..1 82320.623469: cpu_idle: state=0 cpu_id=1
157770 s.nexuslauncher-10023 (10023) [004] d..3 82320.623516: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
157771 s.nexuslauncher-10023 (10023) [004] d..4 82320.623526: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
157772          <idle>-0     (-----) [005] .n.1 82320.623530: cpu_idle: state=4294967295 cpu_id=5
157773          <idle>-0     (-----) [005] d..2 82320.623534: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
157774 s.nexuslauncher-10023 (10023) [004] d..2 82320.623539: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
157775          <idle>-0     (-----) [004] d..1 82320.623546: cpu_idle: state=0 cpu_id=4
157776    RenderThread-16607 (10023) [005] d..1 82320.623600: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157777    RenderThread-16607 (10023) [005] d..2 82320.623609: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
157778          <idle>-0     (-----) [004] .n.1 82320.623614: cpu_idle: state=4294967295 cpu_id=4
157779          <idle>-0     (-----) [004] d..2 82320.623619: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
157780    RenderThread-16607 (10023) [005] .... 82320.623630: binder_transaction: transaction=1573373 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
157781    RenderThread-16607 (10023) [005] .... 82320.623632: binder_transaction_alloc_buf: transaction=1573373 data_size=104 offsets_size=0
157782    RenderThread-16607 (10023) [005] ...2 82320.623633: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
157783    RenderThread-16607 (10023) [005] d..4 82320.623635: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
157784    RenderThread-16607 (10023) [005] dn.5 82320.623646: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
157785    RenderThread-16607 (10023) [005] d..2 82320.623668: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
157786   Binder:8858_1-8871  ( 8858) [005] .... 82320.623674: binder_transaction_received: transaction=1573373
157787 s.nexuslauncher-10023 (10023) [004] d..2 82320.623677: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
157788          <idle>-0     (-----) [004] d..1 82320.623681: cpu_idle: state=0 cpu_id=4
157789   Binder:8858_1-8871  ( 8858) [005] .... 82320.623704: binder_transaction: transaction=1573374 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
157790   Binder:8858_1-8871  ( 8858) [005] .... 82320.623706: binder_transaction_alloc_buf: transaction=1573374 data_size=52 offsets_size=8
157791   Binder:8858_1-8871  ( 8858) [005] .... 82320.623709: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
157792   Binder:8858_1-8871  ( 8858) [005] d..2 82320.623728: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
157793    RenderThread-16607 (10023) [005] .... 82320.623732: binder_transaction_received: transaction=1573374
157794    RenderThread-16607 (10023) [005] d..2 82320.624479: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
157795          <idle>-0     (-----) [005] d..1 82320.624486: cpu_idle: state=0 cpu_id=5
157796          <idle>-0     (-----) [005] d.h2 82320.624575: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
157797          <idle>-0     (-----) [005] d.h3 82320.624579: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
157798          <idle>-0     (-----) [005] dnh3 82320.624580: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
157799          <idle>-0     (-----) [005] .n.1 82320.624583: cpu_idle: state=4294967295 cpu_id=5
157800          <idle>-0     (-----) [005] d..2 82320.624587: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
157801    RenderThread-16607 (10023) [005] .... 82320.624664: binder_transaction: transaction=1573375 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
157802    RenderThread-16607 (10023) [005] .... 82320.624666: binder_transaction_alloc_buf: transaction=1573375 data_size=192 offsets_size=8
157803    RenderThread-16607 (10023) [005] ...2 82320.624670: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
157804    RenderThread-16607 (10023) [005] d..4 82320.624671: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
157805    RenderThread-16607 (10023) [005] dn.5 82320.624676: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
157806    RenderThread-16607 (10023) [005] d..2 82320.624680: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
157807   Binder:8858_1-8871  ( 8858) [005] .... 82320.624685: binder_transaction_received: transaction=1573375
157808   Binder:8858_1-8871  ( 8858) [005] .... 82320.624739: binder_transaction: transaction=1573376 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
157809   Binder:8858_1-8871  ( 8858) [005] .... 82320.624741: binder_transaction_alloc_buf: transaction=1573376 data_size=68 offsets_size=0
157810   Binder:8858_1-8871  ( 8858) [005] .... 82320.624743: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
157811   Binder:8858_1-8871  ( 8858) [005] d..2 82320.624759: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
157812    RenderThread-16607 (10023) [005] .... 82320.624764: binder_transaction_received: transaction=1573376
157813    RenderThread-16607 (10023) [005] d..2 82320.624796: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
157814          <idle>-0     (-----) [005] d..1 82320.624803: cpu_idle: state=0 cpu_id=5
157815          <idle>-0     (-----) [000] d.s2 82320.625132: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157816          <idle>-0     (-----) [000] dns3 82320.625147: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157817          <idle>-0     (-----) [000] .n.1 82320.625156: cpu_idle: state=4294967295 cpu_id=0
157818          <idle>-0     (-----) [000] d..2 82320.625164: 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
157819     rcu_preempt-7     (    7) [000] d..2 82320.625175: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
157820     rcu_preempt-7     (    7) [000] d..3 82320.625187: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
157821     rcu_preempt-7     (    7) [000] d..2 82320.625199: 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
157822         rcuop/2-29    (   29) [000] d..2 82320.625229: 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
157823          <idle>-0     (-----) [000] d..1 82320.625241: cpu_idle: state=0 cpu_id=0
157824          <idle>-0     (-----) [000] d.h3 82320.626030: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
157825          <idle>-0     (-----) [000] dnh4 82320.626043: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
157826          <idle>-0     (-----) [000] .n.1 82320.626054: cpu_idle: state=4294967295 cpu_id=0
157827          <idle>-0     (-----) [000] d..2 82320.626063: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
157828 kgsl_worker_thr-258   (  258) [000] d..2 82320.626110: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157829 kgsl_worker_thr-258   (  258) [000] d..3 82320.626125: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157830 kgsl_worker_thr-258   (  258) [000] d..2 82320.626142: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157831  kworker/u16:13-1147  ( 1147) [000] d..2 82320.626321: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157832          <idle>-0     (-----) [000] d..1 82320.626333: cpu_idle: state=0 cpu_id=0
157833          <idle>-0     (-----) [003] d.h2 82320.626995: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
157834          <idle>-0     (-----) [003] dnh3 82320.627005: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
157835          <idle>-0     (-----) [003] .n.1 82320.627011: cpu_idle: state=4294967295 cpu_id=3
157836          <idle>-0     (-----) [003] d..2 82320.627020: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
157837        DispSync-8879  ( 8858) [003] d..1 82320.627031: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
157838        DispSync-8879  ( 8858) [003] d..2 82320.627043: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
157839          <idle>-0     (-----) [000] .n.1 82320.627049: cpu_idle: state=4294967295 cpu_id=0
157840          <idle>-0     (-----) [000] d..2 82320.627058: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
157841        DispSync-8879  ( 8858) [003] d..2 82320.627069: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157842          <idle>-0     (-----) [003] d..1 82320.627078: cpu_idle: state=0 cpu_id=3
157843   sfEventThread-8882  ( 8858) [000] d..3 82320.627091: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157844   sfEventThread-8882  ( 8858) [000] d..4 82320.627107: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157845          <idle>-0     (-----) [002] .n.1 82320.627112: cpu_idle: state=4294967295 cpu_id=2
157846          <idle>-0     (-----) [002] d..2 82320.627121: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
157847   sfEventThread-8882  ( 8858) [000] d..2 82320.627136: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157848          <idle>-0     (-----) [000] d..1 82320.627147: cpu_idle: state=0 cpu_id=0
157849  surfaceflinger-8858  ( 8858) [002] d..1 82320.627383: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
157850  surfaceflinger-8858  ( 8858) [002] d..2 82320.627401: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
157851          <idle>-0     (-----) [000] .n.1 82320.627406: cpu_idle: state=4294967295 cpu_id=0
157852          <idle>-0     (-----) [000] d..2 82320.627415: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
157853   sfEventThread-8882  ( 8858) [000] d..2 82320.627444: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
157854          <idle>-0     (-----) [000] d..1 82320.627452: cpu_idle: state=0 cpu_id=0
157855  surfaceflinger-8858  ( 8858) [002] ...1 82320.627551: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
157856  surfaceflinger-8858  ( 8858) [002] ...1 82320.627557: tracing_mark_write: E|8858
157857  surfaceflinger-8858  ( 8858) [002] .... 82320.627603: binder_transaction: transaction=1573377 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
157858  surfaceflinger-8858  ( 8858) [002] .... 82320.627607: binder_transaction_alloc_buf: transaction=1573377 data_size=540 offsets_size=96
157859  surfaceflinger-8858  ( 8858) [002] ...2 82320.627625: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
157860  surfaceflinger-8858  ( 8858) [002] d..4 82320.627631: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
157861  surfaceflinger-8858  ( 8858) [002] d..5 82320.627647: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
157862          <idle>-0     (-----) [001] .n.1 82320.627652: cpu_idle: state=4294967295 cpu_id=1
157863          <idle>-0     (-----) [001] d..2 82320.627661: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
157864 [email protected]   (  619) [001] .... 82320.627669: binder_transaction_received: transaction=1573377
157865  surfaceflinger-8858  ( 8858) [002] d..2 82320.627675: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157866          <idle>-0     (-----) [002] d..1 82320.627689: cpu_idle: state=0 cpu_id=2
157867 [email protected]   (  619) [001] ...1 82320.627705: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
157868 [email protected]   (  619) [001] ...1 82320.627796: tracing_mark_write: B|619|HWCSession::PresentDisplay::
157869 [email protected]   (  619) [001] ...1 82320.627933: tracing_mark_write: B|619|HWDeviceDRM::Commit::
157870 [email protected]   (  619) [001] ...1 82320.627945: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
157871 [email protected]   (  619) [001] d..2 82320.628426: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157872 [email protected]   (  619) [001] d..3 82320.628445: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157873          <idle>-0     (-----) [003] .n.1 82320.628450: cpu_idle: state=4294967295 cpu_id=3
157874          <idle>-0     (-----) [003] d..2 82320.628462: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
157875 [email protected]   (  619) [001] d.s3 82320.628483: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
157876 [email protected]   (  619) [001] d.s4 82320.628521: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
157877 [email protected]   (  619) [001] ...1 82320.628615: tracing_mark_write: E|619
157878 [email protected]   (  619) [001] ...1 82320.628620: tracing_mark_write: E|619
157879 [email protected]   (  619) [001] ...1 82320.628668: tracing_mark_write: E|619
157880 [email protected]   (  619) [001] ...1 82320.628706: tracing_mark_write: E|619
157881 [email protected]   (  619) [001] .... 82320.628719: binder_transaction: transaction=1573378 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
157882 [email protected]   (  619) [001] .... 82320.628723: binder_transaction_alloc_buf: transaction=1573378 data_size=576 offsets_size=112
157883 [email protected]   (  619) [001] d..2 82320.628740: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157884 [email protected]   (  619) [001] d..3 82320.628755: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
157885 [email protected]   (  619) [001] .... 82320.628759: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
157886          <idle>-0     (-----) [002] .n.1 82320.628761: cpu_idle: state=4294967295 cpu_id=2
157887          <idle>-0     (-----) [002] d..2 82320.628772: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
157888  surfaceflinger-8858  ( 8858) [002] .... 82320.628779: binder_transaction_received: transaction=1573378
157889 [email protected]   (  619) [001] d..2 82320.628837: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
157890          <idle>-0     (-----) [001] d..1 82320.628854: cpu_idle: state=0 cpu_id=1
157891  surfaceflinger-8858  ( 8858) [002] d..2 82320.629107: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157892 crtc_commit:111-321   (  321) [003] d..2 82320.629115: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157893          <idle>-0     (-----) [002] d..1 82320.629122: cpu_idle: state=0 cpu_id=2
157894  kworker/u16:13-1147  ( 1147) [003] d..2 82320.629298: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
157895          <idle>-0     (-----) [003] d..1 82320.629311: cpu_idle: state=0 cpu_id=3
157896          <idle>-0     (-----) [001] d.s3 82320.629332: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
157897          <idle>-0     (-----) [001] d.s4 82320.629343: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
157898          <idle>-0     (-----) [001] d.s4 82320.629350: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
157899          <idle>-0     (-----) [003] .n.1 82320.629357: cpu_idle: state=4294967295 cpu_id=3
157900          <idle>-0     (-----) [001] ...1 82320.629360: cpu_idle: state=4294967295 cpu_id=1
157901          <idle>-0     (-----) [001] d..1 82320.629365: cpu_idle: state=0 cpu_id=1
157902          <idle>-0     (-----) [003] d..2 82320.629367: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157903  kworker/u16:13-1147  ( 1147) [003] .... 82320.629413: clk_set_rate: l3_cluster1_vote_clk 300000000
157904  kworker/u16:13-1147  ( 1147) [003] .... 82320.629418: clk_set_rate: l3_clk 300000000
157905  kworker/u16:13-1147  ( 1147) [003] d..2 82320.629470: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157906          <idle>-0     (-----) [003] d..1 82320.629483: cpu_idle: state=0 cpu_id=3
157907          <idle>-0     (-----) [000] d.H3 82320.631876: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
157908          <idle>-0     (-----) [000] d.H3 82320.631891: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
157909          <idle>-0     (-----) [007] dnh2 82320.631897: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
157910          <idle>-0     (-----) [007] .n.1 82320.631900: cpu_idle: state=4294967295 cpu_id=7
157911          <idle>-0     (-----) [007] d..2 82320.631903: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
157912          <idle>-0     (-----) [000] d.H4 82320.631906: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=002
157913          <idle>-0     (-----) [002] .n.1 82320.631913: cpu_idle: state=4294967295 cpu_id=2
157914         sugov:4-577   (  577) [007] .... 82320.631914: clk_set_rate: perfcl_clk 825600000
157915          <idle>-0     (-----) [000] d.s2 82320.631914: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157916         sugov:4-577   (  577) [007] .... 82320.631914: clk_set_rate: cpu7_perfcl_clk 2246400000
157917         sugov:4-577   (  577) [007] .... 82320.631919: clk_set_rate: cpu6_perfcl_clk 2246400000
157918         sugov:4-577   (  577) [007] .... 82320.631925: clk_set_rate: cpu5_perfcl_clk 2246400000
157919          <idle>-0     (-----) [002] d..2 82320.631926: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
157920         sugov:4-577   (  577) [007] .... 82320.631929: clk_set_rate: cpu4_perfcl_clk 825600000
157921          <idle>-0     (-----) [000] dns3 82320.631933: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
157922         sugov:4-577   (  577) [007] .... 82320.631935: cpu_frequency: state=825600 cpu_id=4
157923          <idle>-0     (-----) [000] dns3 82320.631939: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
157924         sugov:0-576   (  576) [002] .... 82320.631955: clk_set_rate: pwrcl_clk 748800000
157925         sugov:0-576   (  576) [002] .... 82320.631969: clk_set_rate: cpu3_pwrcl_clk 1056000000
157926          <idle>-0     (-----) [000] dns4 82320.631973: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
157927         sugov:0-576   (  576) [002] .... 82320.631978: clk_set_rate: cpu2_pwrcl_clk 1056000000
157928         sugov:0-576   (  576) [002] .... 82320.631987: clk_set_rate: cpu1_pwrcl_clk 1056000000
157929          <idle>-0     (-----) [000] .n.1 82320.631992: cpu_idle: state=4294967295 cpu_id=0
157930         sugov:0-576   (  576) [002] .... 82320.631996: clk_set_rate: cpu0_pwrcl_clk 748800000
157931          <idle>-0     (-----) [000] d..2 82320.632010: 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
157932     rcu_preempt-7     (    7) [000] d..2 82320.632057: 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
157933          <idle>-0     (-----) [000] d..1 82320.632075: cpu_idle: state=0 cpu_id=0
157934         sugov:4-577   (  577) [007] d..2 82320.632085: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=D ==> next_comm=swapper/7 next_pid=0 next_prio=120
157935          <idle>-0     (-----) [007] d..1 82320.632095: cpu_idle: state=0 cpu_id=7
157936         sugov:0-576   (  576) [002] .... 82320.632109: cpu_frequency: state=748800 cpu_id=0
157937          <idle>-0     (-----) [001] d.s3 82320.632131: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
157938         sugov:0-576   (  576) [002] d..2 82320.632141: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157939          <idle>-0     (-----) [007] dnh2 82320.632157: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
157940          <idle>-0     (-----) [001] ...1 82320.632158: cpu_idle: state=4294967295 cpu_id=1
157941          <idle>-0     (-----) [007] .n.1 82320.632161: cpu_idle: state=4294967295 cpu_id=7
157942          <idle>-0     (-----) [001] d..1 82320.632166: cpu_idle: state=0 cpu_id=1
157943          <idle>-0     (-----) [007] d..2 82320.632166: sched_switch: prev_comm=swapper/7 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:4 next_pid=577 next_prio=49
157944         sugov:4-577   (  577) [007] d..1 82320.632172: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=002
157945         sugov:4-577   (  577) [007] .... 82320.632190: cpu_frequency: state=825600 cpu_id=5
157946         sugov:4-577   (  577) [007] .... 82320.632194: cpu_frequency: state=825600 cpu_id=6
157947         sugov:4-577   (  577) [007] .... 82320.632196: cpu_frequency: state=825600 cpu_id=7
157948          <idle>-0     (-----) [003] dnh2 82320.632209: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
157949         sugov:4-577   (  577) [007] d..2 82320.632210: sched_switch: prev_comm=sugov:4 prev_pid=577 prev_prio=49 prev_state=S ==> next_comm=swapper/7 next_pid=0 next_prio=120
157950          <idle>-0     (-----) [007] d..1 82320.632215: cpu_idle: state=0 cpu_id=7
157951          <idle>-0     (-----) [003] .n.1 82320.632216: cpu_idle: state=4294967295 cpu_id=3
157952          <idle>-0     (-----) [003] d..2 82320.632230: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
157953         sugov:0-576   (  576) [003] .... 82320.632246: cpu_frequency: state=748800 cpu_id=1
157954         sugov:0-576   (  576) [003] .... 82320.632257: cpu_frequency: state=748800 cpu_id=2
157955         sugov:0-576   (  576) [003] .... 82320.632262: cpu_frequency: state=748800 cpu_id=3
157956         sugov:0-576   (  576) [003] d..2 82320.632295: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157957          <idle>-0     (-----) [003] d..1 82320.632308: cpu_idle: state=0 cpu_id=3
157958  kworker/u16:13-1147  ( 1147) [002] d..2 82320.632355: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
157959          <idle>-0     (-----) [001] d.s3 82320.632364: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
157960          <idle>-0     (-----) [002] d..1 82320.632375: cpu_idle: state=0 cpu_id=2
157961          <idle>-0     (-----) [001] d.s4 82320.632377: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
157962          <idle>-0     (-----) [001] d.s4 82320.632386: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
157963          <idle>-0     (-----) [002] .n.1 82320.632394: cpu_idle: state=4294967295 cpu_id=2
157964          <idle>-0     (-----) [001] ...1 82320.632397: cpu_idle: state=4294967295 cpu_id=1
157965          <idle>-0     (-----) [001] d..1 82320.632404: cpu_idle: state=0 cpu_id=1
157966          <idle>-0     (-----) [002] d..2 82320.632408: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
157967  kworker/u16:13-1147  ( 1147) [002] d..2 82320.632444: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157968          <idle>-0     (-----) [002] d..1 82320.632456: cpu_idle: state=0 cpu_id=2
157969          <idle>-0     (-----) [000] d.h5 82320.635386: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157970          <idle>-0     (-----) [000] d.h6 82320.635408: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157971          <idle>-0     (-----) [000] d.h5 82320.635413: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157972          <idle>-0     (-----) [002] .n.1 82320.635415: cpu_idle: state=4294967295 cpu_id=2
157973          <idle>-0     (-----) [002] d..2 82320.635429: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
157974          <idle>-0     (-----) [000] d.h6 82320.635430: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157975          <idle>-0     (-----) [003] .n.1 82320.635437: cpu_idle: state=4294967295 cpu_id=3
157976          <idle>-0     (-----) [000] d..2 82320.635446: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
157977          <idle>-0     (-----) [003] d..2 82320.635450: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
157978          <idle>-0     (-----) [000] dn.3 82320.635459: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
157979          <idle>-0     (-----) [000] .n.1 82320.635465: cpu_idle: state=4294967295 cpu_id=0
157980  crtc_event:111-322   (  322) [002] d..2 82320.635480: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
157981          <idle>-0     (-----) [000] d..2 82320.635483: 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
157982          <idle>-0     (-----) [002] d..1 82320.635492: cpu_idle: state=0 cpu_id=2
157983     ksoftirqd/0-3     (    3) [000] d..2 82320.635519: 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
157984          <idle>-0     (-----) [000] d..1 82320.635531: cpu_idle: state=0 cpu_id=0
157985 crtc_commit:111-321   (  321) [003] d..2 82320.635608: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
157986          <idle>-0     (-----) [003] d..1 82320.635620: cpu_idle: state=0 cpu_id=3
157987          <idle>-0     (-----) [000] d.h5 82320.637711: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157988          <idle>-0     (-----) [000] d.h6 82320.637730: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
157989          <idle>-0     (-----) [003] .n.1 82320.637737: cpu_idle: state=4294967295 cpu_id=3
157990          <idle>-0     (-----) [000] ...1 82320.637746: cpu_idle: state=4294967295 cpu_id=0
157991          <idle>-0     (-----) [003] d..2 82320.637746: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
157992          <idle>-0     (-----) [000] d..1 82320.637751: cpu_idle: state=0 cpu_id=0
157993 crtc_commit:111-321   (  321) [003] d..2 82320.637820: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
157994          <idle>-0     (-----) [003] d..1 82320.637831: cpu_idle: state=0 cpu_id=3
157995          <idle>-0     (-----) [000] d.h5 82320.638015: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157996          <idle>-0     (-----) [000] d.h6 82320.638032: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
157997          <idle>-0     (-----) [002] .n.1 82320.638038: cpu_idle: state=4294967295 cpu_id=2
157998          <idle>-0     (-----) [000] ...1 82320.638048: cpu_idle: state=4294967295 cpu_id=0
157999          <idle>-0     (-----) [002] d..2 82320.638050: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158000          <idle>-0     (-----) [000] d..1 82320.638054: cpu_idle: state=0 cpu_id=0
158001  crtc_event:111-322   (  322) [002] d..2 82320.638078: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158002          <idle>-0     (-----) [002] d..1 82320.638089: cpu_idle: state=0 cpu_id=2
158003          <idle>-0     (-----) [000] d.s2 82320.638477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158004          <idle>-0     (-----) [003] d.s3 82320.638478: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158005          <idle>-0     (-----) [000] dns3 82320.638497: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158006          <idle>-0     (-----) [003] d.s4 82320.638501: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158007          <idle>-0     (-----) [000] dns3 82320.638504: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
158008          <idle>-0     (-----) [002] .n.1 82320.638506: cpu_idle: state=4294967295 cpu_id=2
158009          <idle>-0     (-----) [002] d..2 82320.638519: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158010          <idle>-0     (-----) [000] dns4 82320.638526: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
158011          <idle>-0     (-----) [003] ...1 82320.638530: cpu_idle: state=4294967295 cpu_id=3
158012          <idle>-0     (-----) [003] d..1 82320.638537: cpu_idle: state=0 cpu_id=3
158013          <idle>-0     (-----) [000] .n.1 82320.638538: cpu_idle: state=4294967295 cpu_id=0
158014  crtc_event:111-322   (  322) [002] d..2 82320.638541: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158015          <idle>-0     (-----) [000] d..2 82320.638549: 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
158016     rcu_preempt-7     (    7) [000] d..2 82320.638560: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
158017     rcu_preempt-7     (    7) [000] d..3 82320.638582: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
158018     rcu_preempt-7     (    7) [000] d..2 82320.638614: 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
158019         rcuop/0-10    (   10) [000] d..2 82320.638705: 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
158020          <idle>-0     (-----) [000] d..1 82320.638732: cpu_idle: state=0 cpu_id=0
158021  kworker/u16:13-1147  ( 1147) [002] d..2 82320.638754: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158022          <idle>-0     (-----) [002] d..1 82320.638769: cpu_idle: state=0 cpu_id=2
158023          <idle>-0     (-----) [003] d.h2 82320.639468: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
158024          <idle>-0     (-----) [003] dnh3 82320.639483: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
158025          <idle>-0     (-----) [003] .n.1 82320.639491: cpu_idle: state=4294967295 cpu_id=3
158026          <idle>-0     (-----) [003] d..2 82320.639503: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
158027        DispSync-8879  ( 8858) [003] d..1 82320.639523: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
158028        DispSync-8879  ( 8858) [003] d..2 82320.639540: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
158029          <idle>-0     (-----) [001] .n.1 82320.639545: cpu_idle: state=4294967295 cpu_id=1
158030          <idle>-0     (-----) [001] d..2 82320.639561: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
158031        DispSync-8879  ( 8858) [003] d..2 82320.639579: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158032          <idle>-0     (-----) [003] d..1 82320.639593: cpu_idle: state=0 cpu_id=3
158033  appEventThread-8881  ( 8858) [001] d..3 82320.639623: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158034          <idle>-0     (-----) [004] dnh2 82320.639657: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158035          <idle>-0     (-----) [004] .n.1 82320.639661: cpu_idle: state=4294967295 cpu_id=4
158036          <idle>-0     (-----) [004] d..2 82320.639670: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
158037  appEventThread-8881  ( 8858) [001] d..2 82320.639700: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158038          <idle>-0     (-----) [001] d..1 82320.639719: cpu_idle: state=0 cpu_id=1
158039 s.nexuslauncher-10023 (10023) [004] .... 82320.639871: binder_transaction: transaction=1573379 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
158040 s.nexuslauncher-10023 (10023) [004] .... 82320.639876: binder_transaction_alloc_buf: transaction=1573379 data_size=80 offsets_size=0
158041 s.nexuslauncher-10023 (10023) [004] d..4 82320.639881: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
158042          <idle>-0     (-----) [000] dnh2 82320.639947: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
158043          <idle>-0     (-----) [000] .n.1 82320.639954: cpu_idle: state=4294967295 cpu_id=0
158044          <idle>-0     (-----) [000] d..2 82320.639967: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
158045 s.nexuslauncher-10023 (10023) [004] d..3 82320.639968: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158046   Binder:8858_1-8871  ( 8858) [000] .... 82320.639977: binder_transaction_received: transaction=1573379
158047 s.nexuslauncher-10023 (10023) [004] d..4 82320.639984: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
158048          <idle>-0     (-----) [005] .n.1 82320.639991: cpu_idle: state=4294967295 cpu_id=5
158049          <idle>-0     (-----) [005] d..2 82320.640003: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158050   Binder:8858_1-8871  ( 8858) [000] d..1 82320.640017: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
158051    RenderThread-16607 (10023) [005] d..2 82320.640038: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
158052   Binder:8858_1-8871  ( 8858) [000] d..2 82320.640039: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
158053          <idle>-0     (-----) [001] .n.1 82320.640046: cpu_idle: state=4294967295 cpu_id=1
158054          <idle>-0     (-----) [005] d..1 82320.640046: cpu_idle: state=0 cpu_id=5
158055          <idle>-0     (-----) [001] d..2 82320.640059: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
158056   Binder:8858_1-8871  ( 8858) [000] d..2 82320.640095: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158057  appEventThread-8881  ( 8858) [001] d..2 82320.640109: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158058          <idle>-0     (-----) [000] d..1 82320.640113: cpu_idle: state=0 cpu_id=0
158059          <idle>-0     (-----) [001] d..1 82320.640122: cpu_idle: state=0 cpu_id=1
158060 s.nexuslauncher-10023 (10023) [004] d..3 82320.640198: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158061 s.nexuslauncher-10023 (10023) [004] d..4 82320.640215: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
158062          <idle>-0     (-----) [005] .n.1 82320.640220: cpu_idle: state=4294967295 cpu_id=5
158063          <idle>-0     (-----) [005] d..2 82320.640227: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158064 s.nexuslauncher-10023 (10023) [004] d..2 82320.640242: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
158065          <idle>-0     (-----) [004] d..1 82320.640259: cpu_idle: state=0 cpu_id=4
158066    RenderThread-16607 (10023) [005] d..1 82320.640379: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158067    RenderThread-16607 (10023) [005] d..2 82320.640397: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158068          <idle>-0     (-----) [004] .n.1 82320.640403: cpu_idle: state=4294967295 cpu_id=4
158069          <idle>-0     (-----) [004] d..2 82320.640413: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
158070    RenderThread-16607 (10023) [005] .... 82320.640446: binder_transaction: transaction=1573380 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
158071    RenderThread-16607 (10023) [005] .... 82320.640450: binder_transaction_alloc_buf: transaction=1573380 data_size=104 offsets_size=0
158072    RenderThread-16607 (10023) [005] ...2 82320.640453: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
158073    RenderThread-16607 (10023) [005] d..4 82320.640457: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
158074    RenderThread-16607 (10023) [005] dn.5 82320.640476: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
158075    RenderThread-16607 (10023) [005] d..2 82320.640517: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
158076   Binder:8858_1-8871  ( 8858) [005] .... 82320.640529: binder_transaction_received: transaction=1573380
158077 s.nexuslauncher-10023 (10023) [004] d..2 82320.640536: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
158078          <idle>-0     (-----) [004] d..1 82320.640547: cpu_idle: state=0 cpu_id=4
158079   Binder:8858_1-8871  ( 8858) [005] .... 82320.640590: binder_transaction: transaction=1573381 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
158080   Binder:8858_1-8871  ( 8858) [005] .... 82320.640594: binder_transaction_alloc_buf: transaction=1573381 data_size=52 offsets_size=8
158081   Binder:8858_1-8871  ( 8858) [005] .... 82320.640602: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
158082   Binder:8858_1-8871  ( 8858) [005] d..2 82320.640641: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
158083    RenderThread-16607 (10023) [005] .... 82320.640652: binder_transaction_received: transaction=1573381
158084    RenderThread-16607 (10023) [005] d..2 82320.642004: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
158085          <idle>-0     (-----) [005] d..1 82320.642019: cpu_idle: state=0 cpu_id=5
158086          <idle>-0     (-----) [005] d.h2 82320.642090: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158087          <idle>-0     (-----) [005] d.h3 82320.642097: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
158088          <idle>-0     (-----) [005] dnh3 82320.642100: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
158089          <idle>-0     (-----) [005] .n.1 82320.642106: cpu_idle: state=4294967295 cpu_id=5
158090          <idle>-0     (-----) [005] d..2 82320.642116: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158091    RenderThread-16607 (10023) [005] .... 82320.642265: binder_transaction: transaction=1573382 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
158092    RenderThread-16607 (10023) [005] .... 82320.642270: binder_transaction_alloc_buf: transaction=1573382 data_size=192 offsets_size=8
158093    RenderThread-16607 (10023) [005] ...2 82320.642277: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
158094    RenderThread-16607 (10023) [005] d..4 82320.642280: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
158095    RenderThread-16607 (10023) [005] dn.5 82320.642292: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
158096    RenderThread-16607 (10023) [005] d..2 82320.642300: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
158097   Binder:8858_1-8871  ( 8858) [005] .... 82320.642312: binder_transaction_received: transaction=1573382
158098   Binder:8858_1-8871  ( 8858) [005] .... 82320.642433: binder_transaction: transaction=1573383 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
158099   Binder:8858_1-8871  ( 8858) [005] .... 82320.642437: binder_transaction_alloc_buf: transaction=1573383 data_size=68 offsets_size=0
158100   Binder:8858_1-8871  ( 8858) [005] .... 82320.642440: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
158101   Binder:8858_1-8871  ( 8858) [005] d..2 82320.642480: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
158102    RenderThread-16607 (10023) [005] .... 82320.642491: binder_transaction_received: transaction=1573383
158103    RenderThread-16607 (10023) [005] d..2 82320.642563: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
158104          <idle>-0     (-----) [005] d..1 82320.642579: cpu_idle: state=0 cpu_id=5
158105          <idle>-0     (-----) [005] ...1 82320.642803: cpu_idle: state=4294967295 cpu_id=5
158106          <idle>-0     (-----) [005] d..1 82320.642807: cpu_idle: state=0 cpu_id=5
158107          <idle>-0     (-----) [003] d.h2 82320.643485: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
158108          <idle>-0     (-----) [003] dnh3 82320.643499: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
158109          <idle>-0     (-----) [003] .n.1 82320.643508: cpu_idle: state=4294967295 cpu_id=3
158110          <idle>-0     (-----) [003] d..2 82320.643520: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
158111        DispSync-8879  ( 8858) [003] d..1 82320.643535: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158112          <idle>-0     (-----) [000] d.h3 82320.643546: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
158113        DispSync-8879  ( 8858) [003] d..2 82320.643553: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158114          <idle>-0     (-----) [000] dnh4 82320.643585: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
158115          <idle>-0     (-----) [001] .n.1 82320.643591: cpu_idle: state=4294967295 cpu_id=1
158116        DispSync-8879  ( 8858) [003] d..2 82320.643598: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158117          <idle>-0     (-----) [000] .n.1 82320.643603: cpu_idle: state=4294967295 cpu_id=0
158118          <idle>-0     (-----) [001] d..2 82320.643605: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
158119          <idle>-0     (-----) [003] d..1 82320.643613: cpu_idle: state=0 cpu_id=3
158120          <idle>-0     (-----) [000] d..2 82320.643619: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
158121   sfEventThread-8882  ( 8858) [000] d..3 82320.643662: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
158122 kgsl_worker_thr-258   (  258) [001] d..2 82320.643673: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
158123   sfEventThread-8882  ( 8858) [000] d..4 82320.643682: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
158124          <idle>-0     (-----) [002] .n.1 82320.643690: cpu_idle: state=4294967295 cpu_id=2
158125          <idle>-0     (-----) [002] d..2 82320.643705: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
158126   sfEventThread-8882  ( 8858) [000] d..2 82320.643729: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158127 kgsl_worker_thr-258   (  258) [001] d..3 82320.643736: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
158128          <idle>-0     (-----) [000] d..1 82320.643743: cpu_idle: state=0 cpu_id=0
158129 kgsl_worker_thr-258   (  258) [001] d..2 82320.643766: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158130  kworker/u16:13-1147  ( 1147) [001] d..2 82320.643985: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158131          <idle>-0     (-----) [001] d..1 82320.644006: cpu_idle: state=0 cpu_id=1
158132  surfaceflinger-8858  ( 8858) [002] d..1 82320.644077: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158133  surfaceflinger-8858  ( 8858) [002] d..2 82320.644104: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158134          <idle>-0     (-----) [000] .n.1 82320.644110: cpu_idle: state=4294967295 cpu_id=0
158135          <idle>-0     (-----) [000] d..2 82320.644121: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
158136   sfEventThread-8882  ( 8858) [000] d..2 82320.644164: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158137          <idle>-0     (-----) [000] d..1 82320.644174: cpu_idle: state=0 cpu_id=0
158138  surfaceflinger-8858  ( 8858) [002] ...1 82320.644324: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
158139  surfaceflinger-8858  ( 8858) [002] ...1 82320.644333: tracing_mark_write: E|8858
158140  surfaceflinger-8858  ( 8858) [002] .... 82320.644398: binder_transaction: transaction=1573384 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
158141  surfaceflinger-8858  ( 8858) [002] .... 82320.644405: binder_transaction_alloc_buf: transaction=1573384 data_size=540 offsets_size=96
158142  surfaceflinger-8858  ( 8858) [002] ...2 82320.644432: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
158143  surfaceflinger-8858  ( 8858) [002] d..4 82320.644439: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
158144  surfaceflinger-8858  ( 8858) [002] d..5 82320.644465: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
158145          <idle>-0     (-----) [001] .n.1 82320.644472: cpu_idle: state=4294967295 cpu_id=1
158146          <idle>-0     (-----) [001] d..2 82320.644487: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
158147 [email protected]   (  619) [001] .... 82320.644500: binder_transaction_received: transaction=1573384
158148  surfaceflinger-8858  ( 8858) [002] d..2 82320.644508: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158149          <idle>-0     (-----) [002] d..1 82320.644531: cpu_idle: state=0 cpu_id=2
158150 [email protected]   (  619) [001] ...1 82320.644555: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
158151 [email protected]   (  619) [001] ...1 82320.644683: tracing_mark_write: B|619|HWCSession::PresentDisplay::
158152 [email protected]   (  619) [001] ...1 82320.644878: tracing_mark_write: B|619|HWDeviceDRM::Commit::
158153 [email protected]   (  619) [001] ...1 82320.644893: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
158154          <idle>-0     (-----) [000] d.s2 82320.645136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158155          <idle>-0     (-----) [000] dns3 82320.645159: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158156          <idle>-0     (-----) [000] .n.1 82320.645181: cpu_idle: state=4294967295 cpu_id=0
158157          <idle>-0     (-----) [000] d..2 82320.645192: 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
158158     rcu_preempt-7     (    7) [000] d..2 82320.645231: 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
158159          <idle>-0     (-----) [000] d..1 82320.645247: cpu_idle: state=0 cpu_id=0
158160 [email protected]   (  619) [001] d..2 82320.645633: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158161 [email protected]   (  619) [001] d..3 82320.645663: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158162          <idle>-0     (-----) [003] .n.1 82320.645670: cpu_idle: state=4294967295 cpu_id=3
158163          <idle>-0     (-----) [003] d..2 82320.645683: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
158164 [email protected]   (  619) [001] ...1 82320.645789: tracing_mark_write: E|619
158165 [email protected]   (  619) [001] ...1 82320.645798: tracing_mark_write: E|619
158166 [email protected]   (  619) [001] ...1 82320.645866: tracing_mark_write: E|619
158167 [email protected]   (  619) [001] ...1 82320.645920: tracing_mark_write: E|619
158168 [email protected]   (  619) [001] .... 82320.645938: binder_transaction: transaction=1573385 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
158169 [email protected]   (  619) [001] .... 82320.645944: binder_transaction_alloc_buf: transaction=1573385 data_size=576 offsets_size=112
158170 [email protected]   (  619) [001] d..2 82320.645970: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
158171 [email protected]   (  619) [001] d..3 82320.645993: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
158172 [email protected]   (  619) [001] .... 82320.646000: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
158173          <idle>-0     (-----) [002] .n.1 82320.646001: cpu_idle: state=4294967295 cpu_id=2
158174          <idle>-0     (-----) [002] d..2 82320.646017: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
158175  surfaceflinger-8858  ( 8858) [002] .... 82320.646028: binder_transaction_received: transaction=1573385
158176 [email protected]   (  619) [001] d..2 82320.646110: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158177          <idle>-0     (-----) [001] d..1 82320.646135: cpu_idle: state=0 cpu_id=1
158178 crtc_commit:111-321   (  321) [003] d..2 82320.646461: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
158179          <idle>-0     (-----) [003] d..1 82320.646479: cpu_idle: state=0 cpu_id=3
158180  surfaceflinger-8858  ( 8858) [002] d..2 82320.646512: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158181          <idle>-0     (-----) [002] d..1 82320.646536: cpu_idle: state=0 cpu_id=2
158182          <idle>-0     (-----) [000] d.h5 82320.651858: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158183          <idle>-0     (-----) [000] d.h6 82320.651886: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158184          <idle>-0     (-----) [000] d.h5 82320.651892: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158185          <idle>-0     (-----) [002] .n.1 82320.651893: cpu_idle: state=4294967295 cpu_id=2
158186          <idle>-0     (-----) [000] d.h6 82320.651908: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158187          <idle>-0     (-----) [002] d..2 82320.651911: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158188          <idle>-0     (-----) [003] .n.1 82320.651915: cpu_idle: state=4294967295 cpu_id=3
158189          <idle>-0     (-----) [000] d..2 82320.651924: sched_waking: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
158190          <idle>-0     (-----) [003] d..2 82320.651929: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
158191          <idle>-0     (-----) [000] dn.3 82320.651938: sched_wakeup: comm=ksoftirqd/0 pid=3 prio=120 target_cpu=000
158192  crtc_event:111-322   (  322) [002] d..2 82320.651963: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158193          <idle>-0     (-----) [002] d..1 82320.651976: cpu_idle: state=0 cpu_id=2
158194          <idle>-0     (-----) [000] dnH3 82320.652051: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
158195          <idle>-0     (-----) [000] dnH4 82320.652077: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
158196 crtc_commit:111-321   (  321) [003] d..2 82320.652088: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=sugov:0 next_pid=576 next_prio=49
158197          <idle>-0     (-----) [000] dns2 82320.652099: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158198          <idle>-0     (-----) [000] dns3 82320.652118: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158199         sugov:0-576   (  576) [003] .... 82320.652124: clk_set_rate: pwrcl_clk 652800000
158200          <idle>-0     (-----) [000] dns3 82320.652125: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
158201         sugov:0-576   (  576) [003] .... 82320.652141: clk_set_rate: cpu3_pwrcl_clk 748800000
158202         sugov:0-576   (  576) [003] .... 82320.652151: clk_set_rate: cpu2_pwrcl_clk 748800000
158203         sugov:0-576   (  576) [003] .... 82320.652161: clk_set_rate: cpu1_pwrcl_clk 748800000
158204          <idle>-0     (-----) [000] dns4 82320.652166: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
158205         sugov:0-576   (  576) [003] .... 82320.652169: clk_set_rate: cpu0_pwrcl_clk 652800000
158206          <idle>-0     (-----) [000] .n.1 82320.652184: cpu_idle: state=4294967295 cpu_id=0
158207          <idle>-0     (-----) [000] d..2 82320.652206: 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
158208     ksoftirqd/0-3     (    3) [000] d..2 82320.652223: 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
158209     rcu_preempt-7     (    7) [000] d..2 82320.652235: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
158210     rcu_preempt-7     (    7) [000] d..3 82320.652258: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
158211     rcu_preempt-7     (    7) [000] d..2 82320.652279: 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
158212         sugov:0-576   (  576) [003] .... 82320.652284: cpu_frequency: state=652800 cpu_id=0
158213         sugov:0-576   (  576) [003] .... 82320.652302: cpu_frequency: state=652800 cpu_id=1
158214         sugov:0-576   (  576) [003] .... 82320.652309: cpu_frequency: state=652800 cpu_id=2
158215         sugov:0-576   (  576) [003] .... 82320.652314: cpu_frequency: state=652800 cpu_id=3
158216         rcuop/2-29    (   29) [000] d..2 82320.652318: 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
158217         sugov:0-576   (  576) [003] d..2 82320.652339: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158218          <idle>-0     (-----) [000] d..1 82320.652340: cpu_idle: state=0 cpu_id=0
158219  kworker/u16:13-1147  ( 1147) [003] d..2 82320.652466: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158220          <idle>-0     (-----) [003] d..1 82320.652482: cpu_idle: state=0 cpu_id=3
158221          <idle>-0     (-----) [000] d.h5 82320.654185: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158222          <idle>-0     (-----) [000] d.h6 82320.654206: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158223          <idle>-0     (-----) [003] .n.1 82320.654215: cpu_idle: state=4294967295 cpu_id=3
158224          <idle>-0     (-----) [000] ...1 82320.654225: cpu_idle: state=4294967295 cpu_id=0
158225          <idle>-0     (-----) [003] d..2 82320.654226: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
158226          <idle>-0     (-----) [000] d..1 82320.654232: cpu_idle: state=0 cpu_id=0
158227 crtc_commit:111-321   (  321) [003] d..2 82320.654311: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158228          <idle>-0     (-----) [003] d..1 82320.654323: cpu_idle: state=0 cpu_id=3
158229          <idle>-0     (-----) [000] d.h5 82320.654491: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158230          <idle>-0     (-----) [000] d.h6 82320.654509: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158231          <idle>-0     (-----) [002] .n.1 82320.654516: cpu_idle: state=4294967295 cpu_id=2
158232          <idle>-0     (-----) [000] ...1 82320.654527: cpu_idle: state=4294967295 cpu_id=0
158233          <idle>-0     (-----) [002] d..2 82320.654529: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158234          <idle>-0     (-----) [000] d..1 82320.654533: cpu_idle: state=0 cpu_id=0
158235  crtc_event:111-322   (  322) [002] d..2 82320.654561: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158236          <idle>-0     (-----) [002] d..1 82320.654574: cpu_idle: state=0 cpu_id=2
158237          <idle>-0     (-----) [003] d.s3 82320.655150: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158238          <idle>-0     (-----) [003] d.s4 82320.655174: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158239          <idle>-0     (-----) [002] .n.1 82320.655181: cpu_idle: state=4294967295 cpu_id=2
158240          <idle>-0     (-----) [002] d..2 82320.655194: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158241          <idle>-0     (-----) [003] ...1 82320.655205: cpu_idle: state=4294967295 cpu_id=3
158242          <idle>-0     (-----) [003] d..1 82320.655213: cpu_idle: state=0 cpu_id=3
158243  crtc_event:111-322   (  322) [002] d..2 82320.655235: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158244          <idle>-0     (-----) [002] d..1 82320.655248: cpu_idle: state=0 cpu_id=2
158245          <idle>-0     (-----) [003] d.h2 82320.655958: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
158246          <idle>-0     (-----) [003] dnh3 82320.655976: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
158247          <idle>-0     (-----) [003] .n.1 82320.655986: cpu_idle: state=4294967295 cpu_id=3
158248          <idle>-0     (-----) [003] d..2 82320.655999: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
158249        DispSync-8879  ( 8858) [003] d..1 82320.656018: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
158250        DispSync-8879  ( 8858) [003] d..2 82320.656036: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
158251          <idle>-0     (-----) [001] .n.1 82320.656045: cpu_idle: state=4294967295 cpu_id=1
158252          <idle>-0     (-----) [001] d..2 82320.656062: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
158253        DispSync-8879  ( 8858) [003] d..2 82320.656080: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158254          <idle>-0     (-----) [003] d..1 82320.656095: cpu_idle: state=0 cpu_id=3
158255  appEventThread-8881  ( 8858) [001] d..3 82320.656125: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158256          <idle>-0     (-----) [004] dnh2 82320.656160: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158257          <idle>-0     (-----) [004] .n.1 82320.656165: cpu_idle: state=4294967295 cpu_id=4
158258          <idle>-0     (-----) [004] d..2 82320.656173: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
158259  appEventThread-8881  ( 8858) [001] d..2 82320.656207: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158260          <idle>-0     (-----) [001] d..1 82320.656228: cpu_idle: state=0 cpu_id=1
158261 s.nexuslauncher-10023 (10023) [004] .... 82320.656366: binder_transaction: transaction=1573386 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
158262 s.nexuslauncher-10023 (10023) [004] .... 82320.656371: binder_transaction_alloc_buf: transaction=1573386 data_size=80 offsets_size=0
158263 s.nexuslauncher-10023 (10023) [004] d..4 82320.656376: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
158264 s.nexuslauncher-10023 (10023) [004] d.h5 82320.656439: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
158265          <idle>-0     (-----) [000] dnh2 82320.656445: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
158266          <idle>-0     (-----) [000] .n.1 82320.656452: cpu_idle: state=4294967295 cpu_id=0
158267          <idle>-0     (-----) [003] dnh2 82320.656464: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
158268          <idle>-0     (-----) [000] d..2 82320.656471: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
158269          <idle>-0     (-----) [003] .n.1 82320.656473: cpu_idle: state=4294967295 cpu_id=3
158270 s.nexuslauncher-10023 (10023) [004] d..3 82320.656479: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158271   Binder:8858_1-8871  ( 8858) [000] .... 82320.656482: binder_transaction_received: transaction=1573386
158272          <idle>-0     (-----) [003] d..2 82320.656485: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
158273 s.nexuslauncher-10023 (10023) [004] d..4 82320.656495: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
158274          <idle>-0     (-----) [005] .n.1 82320.656500: cpu_idle: state=4294967295 cpu_id=5
158275          <idle>-0     (-----) [005] d..2 82320.656510: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158276         sugov:0-576   (  576) [003] .... 82320.656514: clk_set_rate: pwrcl_clk 748800000
158277   Binder:8858_1-8871  ( 8858) [000] d..1 82320.656525: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
158278         sugov:0-576   (  576) [003] .... 82320.656526: clk_set_rate: cpu3_pwrcl_clk 652800000
158279         sugov:0-576   (  576) [003] .... 82320.656536: clk_set_rate: cpu2_pwrcl_clk 652800000
158280    RenderThread-16607 (10023) [005] d..2 82320.656540: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
158281         sugov:0-576   (  576) [003] .... 82320.656545: clk_set_rate: cpu1_pwrcl_clk 652800000
158282   Binder:8858_1-8871  ( 8858) [000] d..2 82320.656546: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=001
158283          <idle>-0     (-----) [005] d..1 82320.656548: cpu_idle: state=0 cpu_id=5
158284          <idle>-0     (-----) [001] .n.1 82320.656552: cpu_idle: state=4294967295 cpu_id=1
158285         sugov:0-576   (  576) [003] .... 82320.656554: clk_set_rate: cpu0_pwrcl_clk 748800000
158286         sugov:0-576   (  576) [003] .... 82320.656563: cpu_frequency: state=748800 cpu_id=0
158287          <idle>-0     (-----) [001] d..2 82320.656568: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
158288         sugov:0-576   (  576) [003] .... 82320.656583: cpu_frequency: state=748800 cpu_id=1
158289         sugov:0-576   (  576) [003] .... 82320.656589: cpu_frequency: state=748800 cpu_id=2
158290         sugov:0-576   (  576) [003] .... 82320.656593: cpu_frequency: state=748800 cpu_id=3
158291   Binder:8858_1-8871  ( 8858) [000] d..2 82320.656610: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158292          <idle>-0     (-----) [000] d..1 82320.656624: cpu_idle: state=0 cpu_id=0
158293  appEventThread-8881  ( 8858) [001] d..2 82320.656624: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158294         sugov:0-576   (  576) [003] d..2 82320.656626: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158295          <idle>-0     (-----) [001] d..1 82320.656638: cpu_idle: state=0 cpu_id=1
158296          <idle>-0     (-----) [003] d..1 82320.656641: cpu_idle: state=0 cpu_id=3
158297 s.nexuslauncher-10023 (10023) [004] d..3 82320.656705: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158298 s.nexuslauncher-10023 (10023) [004] d..4 82320.656723: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
158299          <idle>-0     (-----) [005] .n.1 82320.656727: cpu_idle: state=4294967295 cpu_id=5
158300          <idle>-0     (-----) [005] d..2 82320.656736: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158301 s.nexuslauncher-10023 (10023) [004] d..2 82320.656751: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
158302          <idle>-0     (-----) [004] d..1 82320.656768: cpu_idle: state=0 cpu_id=4
158303    RenderThread-16607 (10023) [005] d..1 82320.656883: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158304    RenderThread-16607 (10023) [005] d..2 82320.656901: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158305          <idle>-0     (-----) [004] .n.1 82320.656907: cpu_idle: state=4294967295 cpu_id=4
158306          <idle>-0     (-----) [004] d..2 82320.656917: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
158307    RenderThread-16607 (10023) [005] .... 82320.656949: binder_transaction: transaction=1573387 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
158308    RenderThread-16607 (10023) [005] .... 82320.656953: binder_transaction_alloc_buf: transaction=1573387 data_size=104 offsets_size=0
158309    RenderThread-16607 (10023) [005] ...2 82320.656957: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
158310    RenderThread-16607 (10023) [005] d..4 82320.656960: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
158311    RenderThread-16607 (10023) [005] dn.5 82320.656979: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
158312    RenderThread-16607 (10023) [005] d..2 82320.657020: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
158313   Binder:8858_1-8871  ( 8858) [005] .... 82320.657032: binder_transaction_received: transaction=1573387
158314 s.nexuslauncher-10023 (10023) [004] d..2 82320.657039: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
158315          <idle>-0     (-----) [004] d..1 82320.657049: cpu_idle: state=0 cpu_id=4
158316   Binder:8858_1-8871  ( 8858) [005] .... 82320.657095: binder_transaction: transaction=1573388 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
158317   Binder:8858_1-8871  ( 8858) [005] .... 82320.657100: binder_transaction_alloc_buf: transaction=1573388 data_size=52 offsets_size=8
158318   Binder:8858_1-8871  ( 8858) [005] .... 82320.657107: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
158319   Binder:8858_1-8871  ( 8858) [005] d..2 82320.657144: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
158320    RenderThread-16607 (10023) [005] .... 82320.657156: binder_transaction_received: transaction=1573388
158321    RenderThread-16607 (10023) [005] d..2 82320.658435: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
158322          <idle>-0     (-----) [005] d.h3 82320.658463: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158323          <idle>-0     (-----) [005] d.h4 82320.658471: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
158324          <idle>-0     (-----) [000] d.s2 82320.658471: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158325          <idle>-0     (-----) [005] dnh4 82320.658474: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
158326          <idle>-0     (-----) [000] dns3 82320.658493: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158327          <idle>-0     (-----) [005] d..2 82320.658498: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158328          <idle>-0     (-----) [000] .n.1 82320.658515: cpu_idle: state=4294967295 cpu_id=0
158329          <idle>-0     (-----) [000] d..2 82320.658527: 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
158330     rcu_preempt-7     (    7) [000] d..2 82320.658565: 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
158331          <idle>-0     (-----) [000] d..1 82320.658581: cpu_idle: state=0 cpu_id=0
158332    RenderThread-16607 (10023) [005] .... 82320.658641: binder_transaction: transaction=1573389 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
158333    RenderThread-16607 (10023) [005] .... 82320.658645: binder_transaction_alloc_buf: transaction=1573389 data_size=192 offsets_size=8
158334    RenderThread-16607 (10023) [005] ...2 82320.658653: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
158335    RenderThread-16607 (10023) [005] d..4 82320.658656: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
158336    RenderThread-16607 (10023) [005] dn.5 82320.658667: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
158337    RenderThread-16607 (10023) [005] d..2 82320.658673: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
158338   Binder:8858_1-8871  ( 8858) [005] .... 82320.658686: binder_transaction_received: transaction=1573389
158339   Binder:8858_1-8871  ( 8858) [005] .... 82320.658808: binder_transaction: transaction=1573390 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
158340   Binder:8858_1-8871  ( 8858) [005] .... 82320.658812: binder_transaction_alloc_buf: transaction=1573390 data_size=68 offsets_size=0
158341   Binder:8858_1-8871  ( 8858) [005] .... 82320.658815: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
158342   Binder:8858_1-8871  ( 8858) [005] d..2 82320.658852: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
158343    RenderThread-16607 (10023) [005] .... 82320.658864: binder_transaction_received: transaction=1573390
158344    RenderThread-16607 (10023) [005] d..2 82320.658935: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
158345          <idle>-0     (-----) [005] d..1 82320.658952: cpu_idle: state=0 cpu_id=5
158346          <idle>-0     (-----) [003] d.h2 82320.659960: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
158347          <idle>-0     (-----) [000] d.h3 82320.659970: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
158348          <idle>-0     (-----) [003] dnh3 82320.659975: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
158349          <idle>-0     (-----) [003] .n.1 82320.659985: cpu_idle: state=4294967295 cpu_id=3
158350          <idle>-0     (-----) [000] d.h4 82320.659993: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
158351          <idle>-0     (-----) [003] d..2 82320.659997: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
158352          <idle>-0     (-----) [001] .n.1 82320.659999: cpu_idle: state=4294967295 cpu_id=1
158353          <idle>-0     (-----) [000] ...1 82320.660009: cpu_idle: state=4294967295 cpu_id=0
158354          <idle>-0     (-----) [001] d..2 82320.660012: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
158355        DispSync-8879  ( 8858) [003] d..1 82320.660015: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158356          <idle>-0     (-----) [000] d..1 82320.660015: cpu_idle: state=0 cpu_id=0
158357        DispSync-8879  ( 8858) [003] d..2 82320.660034: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158358          <idle>-0     (-----) [000] .n.1 82320.660039: cpu_idle: state=4294967295 cpu_id=0
158359          <idle>-0     (-----) [000] d..2 82320.660053: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
158360        DispSync-8879  ( 8858) [003] d..2 82320.660071: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158361 kgsl_worker_thr-258   (  258) [001] d..2 82320.660074: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
158362          <idle>-0     (-----) [003] d..1 82320.660086: cpu_idle: state=0 cpu_id=3
158363   sfEventThread-8882  ( 8858) [000] d..3 82320.660098: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
158364   sfEventThread-8882  ( 8858) [000] d..4 82320.660118: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
158365          <idle>-0     (-----) [002] .n.1 82320.660124: cpu_idle: state=4294967295 cpu_id=2
158366 kgsl_worker_thr-258   (  258) [001] d..3 82320.660126: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
158367          <idle>-0     (-----) [002] d..2 82320.660137: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
158368 kgsl_worker_thr-258   (  258) [001] d..2 82320.660154: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158369   sfEventThread-8882  ( 8858) [000] d..2 82320.660162: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158370          <idle>-0     (-----) [000] d..1 82320.660178: cpu_idle: state=0 cpu_id=0
158371  kworker/u16:13-1147  ( 1147) [001] d..2 82320.660358: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158372          <idle>-0     (-----) [001] d..1 82320.660378: cpu_idle: state=0 cpu_id=1
158373  surfaceflinger-8858  ( 8858) [002] d..1 82320.660487: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158374  surfaceflinger-8858  ( 8858) [002] d..2 82320.660514: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158375          <idle>-0     (-----) [000] .n.1 82320.660520: cpu_idle: state=4294967295 cpu_id=0
158376          <idle>-0     (-----) [000] d..2 82320.660533: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
158377   sfEventThread-8882  ( 8858) [000] d..2 82320.660574: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158378          <idle>-0     (-----) [000] d..1 82320.660586: cpu_idle: state=0 cpu_id=0
158379  surfaceflinger-8858  ( 8858) [002] ...1 82320.660735: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
158380  surfaceflinger-8858  ( 8858) [002] ...1 82320.660745: tracing_mark_write: E|8858
158381  surfaceflinger-8858  ( 8858) [002] .... 82320.660813: binder_transaction: transaction=1573391 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
158382  surfaceflinger-8858  ( 8858) [002] .... 82320.660819: binder_transaction_alloc_buf: transaction=1573391 data_size=540 offsets_size=96
158383  surfaceflinger-8858  ( 8858) [002] ...2 82320.660846: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
158384  surfaceflinger-8858  ( 8858) [002] d..4 82320.660854: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
158385  surfaceflinger-8858  ( 8858) [002] d..5 82320.660880: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
158386          <idle>-0     (-----) [001] .n.1 82320.660887: cpu_idle: state=4294967295 cpu_id=1
158387          <idle>-0     (-----) [001] d..2 82320.660901: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
158388 [email protected]   (  619) [001] .... 82320.660914: binder_transaction_received: transaction=1573391
158389  surfaceflinger-8858  ( 8858) [002] d..2 82320.660923: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158390          <idle>-0     (-----) [002] d..1 82320.660946: cpu_idle: state=0 cpu_id=2
158391 [email protected]   (  619) [001] ...1 82320.660967: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
158392 [email protected]   (  619) [001] ...1 82320.661092: tracing_mark_write: B|619|HWCSession::PresentDisplay::
158393 [email protected]   (  619) [001] ...1 82320.661282: tracing_mark_write: B|619|HWDeviceDRM::Commit::
158394 [email protected]   (  619) [001] ...1 82320.661297: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
158395 [email protected]   (  619) [001] d.s2 82320.661829: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
158396 [email protected]   (  619) [001] d.s3 82320.661857: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
158397 [email protected]   (  619) [001] d..2 82320.662071: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158398 [email protected]   (  619) [001] d..3 82320.662096: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158399          <idle>-0     (-----) [003] .n.1 82320.662102: cpu_idle: state=4294967295 cpu_id=3
158400          <idle>-0     (-----) [003] d..2 82320.662116: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
158401 [email protected]   (  619) [001] ...1 82320.662220: tracing_mark_write: E|619
158402 [email protected]   (  619) [001] ...1 82320.662229: tracing_mark_write: E|619
158403 [email protected]   (  619) [001] ...1 82320.662295: tracing_mark_write: E|619
158404 [email protected]   (  619) [001] ...1 82320.662348: tracing_mark_write: E|619
158405 [email protected]   (  619) [001] .... 82320.662367: binder_transaction: transaction=1573392 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
158406 [email protected]   (  619) [001] .... 82320.662372: binder_transaction_alloc_buf: transaction=1573392 data_size=576 offsets_size=112
158407 [email protected]   (  619) [001] d..2 82320.662399: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
158408 [email protected]   (  619) [001] d..3 82320.662422: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
158409 [email protected]   (  619) [001] .... 82320.662428: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
158410          <idle>-0     (-----) [002] .n.1 82320.662429: cpu_idle: state=4294967295 cpu_id=2
158411          <idle>-0     (-----) [002] d..2 82320.662444: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
158412  surfaceflinger-8858  ( 8858) [002] .... 82320.662455: binder_transaction_received: transaction=1573392
158413 [email protected]   (  619) [001] d..2 82320.662519: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158414  kworker/u16:13-1147  ( 1147) [001] d..2 82320.662769: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158415          <idle>-0     (-----) [001] d..1 82320.662791: cpu_idle: state=0 cpu_id=1
158416 crtc_commit:111-321   (  321) [003] d..2 82320.662924: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
158417          <idle>-0     (-----) [003] d..1 82320.662943: cpu_idle: state=0 cpu_id=3
158418  surfaceflinger-8858  ( 8858) [002] d..2 82320.662983: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158419          <idle>-0     (-----) [002] d..1 82320.663007: cpu_idle: state=0 cpu_id=2
158420          <idle>-0     (-----) [000] d.s2 82320.665143: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158421          <idle>-0     (-----) [000] dns3 82320.665165: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158422          <idle>-0     (-----) [000] .n.1 82320.665174: cpu_idle: state=4294967295 cpu_id=0
158423          <idle>-0     (-----) [000] d..2 82320.665188: 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
158424     rcu_preempt-7     (    7) [000] d..2 82320.665199: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
158425     rcu_preempt-7     (    7) [000] d..3 82320.665221: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
158426     rcu_preempt-7     (    7) [000] d..2 82320.665239: 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
158427         rcuop/0-10    (   10) [000] d..2 82320.665285: 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
158428          <idle>-0     (-----) [000] d..1 82320.665302: cpu_idle: state=0 cpu_id=0
158429          <idle>-0     (-----) [000] d.h5 82320.668323: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158430          <idle>-0     (-----) [000] d.h6 82320.668343: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158431          <idle>-0     (-----) [000] d.h5 82320.668349: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158432          <idle>-0     (-----) [002] .n.1 82320.668352: cpu_idle: state=4294967295 cpu_id=2
158433          <idle>-0     (-----) [000] d.h6 82320.668363: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158434          <idle>-0     (-----) [002] d..2 82320.668367: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158435          <idle>-0     (-----) [003] .n.1 82320.668370: cpu_idle: state=4294967295 cpu_id=3
158436          <idle>-0     (-----) [000] ...1 82320.668381: cpu_idle: state=4294967295 cpu_id=0
158437          <idle>-0     (-----) [003] d..2 82320.668384: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
158438          <idle>-0     (-----) [000] d..1 82320.668387: cpu_idle: state=0 cpu_id=0
158439  crtc_event:111-322   (  322) [002] d..2 82320.668409: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158440          <idle>-0     (-----) [002] d..1 82320.668422: cpu_idle: state=0 cpu_id=2
158441 crtc_commit:111-321   (  321) [003] d.s2 82320.668486: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=001
158442 crtc_commit:111-321   (  321) [003] d.s3 82320.668539: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
158443 crtc_commit:111-321   (  321) [003] d..2 82320.668645: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158444  kworker/u16:13-1147  ( 1147) [003] d..2 82320.668736: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158445          <idle>-0     (-----) [003] d..1 82320.668750: cpu_idle: state=0 cpu_id=3
158446          <idle>-0     (-----) [003] d.h3 82320.669726: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158447          <idle>-0     (-----) [003] dnh4 82320.669750: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158448          <idle>-0     (-----) [003] .n.1 82320.669762: cpu_idle: state=4294967295 cpu_id=3
158449          <idle>-0     (-----) [003] d..2 82320.669773: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
158450   kworker/u17:0-98    (   98) [003] d..2 82320.669806: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158451   kworker/u17:0-98    (   98) [003] d..3 82320.669823: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158452   kworker/u17:0-98    (   98) [003] d..2 82320.669857: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
158453     kworker/3:1-25210 (25210) [003] d..2 82320.669888: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
158454     kworker/3:1-25210 (25210) [003] d..3 82320.669916: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
158455     kworker/3:1-25210 (25210) [003] d..2 82320.669937: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
158456            adbd-24054 (  960) [003] d..2 82320.670100: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158457          <idle>-0     (-----) [003] d.h4 82320.670128: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158458          <idle>-0     (-----) [003] dnh5 82320.670140: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158459          <idle>-0     (-----) [003] d..2 82320.670156: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
158460   kworker/u17:0-98    (   98) [003] d..2 82320.670172: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158461   kworker/u17:0-98    (   98) [003] d..3 82320.670182: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158462   kworker/u17:0-98    (   98) [003] d..2 82320.670210: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
158463     kworker/3:1-25210 (25210) [003] d..2 82320.670247: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
158464     kworker/3:1-25210 (25210) [003] d..3 82320.670266: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
158465     kworker/3:1-25210 (25210) [003] d..2 82320.670284: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
158466            adbd-24054 (  960) [003] d..2 82320.670327: sched_waking: comm=adbd pid=960 prio=120 target_cpu=000
158467            adbd-24054 (  960) [003] d..3 82320.670351: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
158468            adbd-24054 (  960) [003] d..2 82320.670444: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
158469          <idle>-0     (-----) [000] d.h5 82320.670656: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158470          <idle>-0     (-----) [000] dnh6 82320.670679: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
158471          <idle>-0     (-----) [000] .n.1 82320.670691: cpu_idle: state=4294967295 cpu_id=0
158472          <idle>-0     (-----) [000] d..2 82320.670706: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
158473 crtc_commit:111-321   (  321) [000] d..2 82320.670788: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158474          <idle>-0     (-----) [000] d..1 82320.670800: cpu_idle: state=0 cpu_id=0
158475          <idle>-0     (-----) [000] d.h5 82320.670961: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158476          <idle>-0     (-----) [000] d.h6 82320.670980: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158477          <idle>-0     (-----) [002] .n.1 82320.670986: cpu_idle: state=4294967295 cpu_id=2
158478          <idle>-0     (-----) [000] ...1 82320.670998: cpu_idle: state=4294967295 cpu_id=0
158479          <idle>-0     (-----) [002] d..2 82320.670999: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158480          <idle>-0     (-----) [000] d..1 82320.671004: cpu_idle: state=0 cpu_id=0
158481  crtc_event:111-322   (  322) [002] d..2 82320.671030: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158482          <idle>-0     (-----) [002] d..1 82320.671041: cpu_idle: state=0 cpu_id=2
158483            adbd-960   (  960) [003] d.s4 82320.671873: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158484          <idle>-0     (-----) [000] d.s2 82320.671889: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158485            adbd-960   (  960) [003] d.s5 82320.671902: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158486          <idle>-0     (-----) [002] .n.1 82320.671906: cpu_idle: state=4294967295 cpu_id=2
158487            adbd-960   (  960) [003] d.s4 82320.671909: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
158488          <idle>-0     (-----) [000] dns3 82320.671914: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158489          <idle>-0     (-----) [002] d..2 82320.671920: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158490          <idle>-0     (-----) [000] .n.1 82320.671937: cpu_idle: state=4294967295 cpu_id=0
158491          <idle>-0     (-----) [000] d..2 82320.671949: 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
158492  crtc_event:111-322   (  322) [002] d..2 82320.671960: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158493            adbd-960   (  960) [003] d.s5 82320.671974: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
158494     rcu_preempt-7     (    7) [000] d..2 82320.671984: 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
158495          <idle>-0     (-----) [002] d..2 82320.671987: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158496          <idle>-0     (-----) [000] d..1 82320.672002: cpu_idle: state=0 cpu_id=0
158497  kworker/u16:13-1147  ( 1147) [002] d..2 82320.672169: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158498          <idle>-0     (-----) [002] d..1 82320.672185: cpu_idle: state=0 cpu_id=2
158499          <idle>-0     (-----) [000] .n.1 82320.672389: cpu_idle: state=4294967295 cpu_id=0
158500          <idle>-0     (-----) [000] d..2 82320.672405: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=27821 next_prio=120
158501            adbd-960   (  960) [003] d.h3 82320.672430: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
158502            adbd-960   (  960) [003] d.h4 82320.672465: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
158503          <idle>-0     (-----) [001] .n.1 82320.672473: cpu_idle: state=4294967295 cpu_id=1
158504          <idle>-0     (-----) [001] d..2 82320.672489: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
158505        DispSync-8879  ( 8858) [001] d..1 82320.672520: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=001
158506        DispSync-8879  ( 8858) [001] d..2 82320.672556: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
158507          <idle>-0     (-----) [002] .n.1 82320.672563: cpu_idle: state=4294967295 cpu_id=2
158508          <idle>-0     (-----) [002] d..2 82320.672579: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
158509        DispSync-8879  ( 8858) [001] d..2 82320.672607: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158510          <idle>-0     (-----) [001] d..1 82320.672624: cpu_idle: state=0 cpu_id=1
158511  appEventThread-8881  ( 8858) [002] d..3 82320.672642: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158512            adbd-960   (  960) [003] d..2 82320.672659: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158513          <idle>-0     (-----) [004] dnh2 82320.672675: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158514          <idle>-0     (-----) [004] .n.1 82320.672680: cpu_idle: state=4294967295 cpu_id=4
158515          <idle>-0     (-----) [003] d..1 82320.672685: cpu_idle: state=0 cpu_id=3
158516          <idle>-0     (-----) [004] d..2 82320.672689: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
158517  appEventThread-8881  ( 8858) [002] d..2 82320.672716: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158518          <idle>-0     (-----) [002] d..1 82320.672733: cpu_idle: state=0 cpu_id=2
158519 s.nexuslauncher-10023 (10023) [004] .... 82320.672892: binder_transaction: transaction=1573393 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
158520 s.nexuslauncher-10023 (10023) [004] .... 82320.672897: binder_transaction_alloc_buf: transaction=1573393 data_size=80 offsets_size=0
158521 s.nexuslauncher-10023 (10023) [004] d..4 82320.672902: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
158522          <idle>-0     (-----) [001] dnh2 82320.672971: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=001
158523          <idle>-0     (-----) [001] .n.1 82320.672978: cpu_idle: state=4294967295 cpu_id=1
158524 s.nexuslauncher-10023 (10023) [004] d..3 82320.672992: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158525          <idle>-0     (-----) [001] d..2 82320.672994: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
158526   Binder:8858_1-8871  ( 8858) [001] .... 82320.673005: binder_transaction_received: transaction=1573393
158527 s.nexuslauncher-10023 (10023) [004] d..4 82320.673008: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
158528          <idle>-0     (-----) [005] .n.1 82320.673015: cpu_idle: state=4294967295 cpu_id=5
158529          <idle>-0     (-----) [005] d..2 82320.673026: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158530              sh-27821 (27821) [000] d..2 82320.673035: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
158531   Binder:8858_1-8871  ( 8858) [001] d..1 82320.673048: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
158532              sh-27821 (27821) [000] dn.3 82320.673056: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
158533    RenderThread-16607 (10023) [005] d..2 82320.673062: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
158534   Binder:8858_1-8871  ( 8858) [001] d..2 82320.673069: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=002
158535          <idle>-0     (-----) [005] d..1 82320.673070: cpu_idle: state=0 cpu_id=5
158536              sh-27821 (27821) [000] d..2 82320.673070: sched_switch: prev_comm=adbd prev_pid=27821 prev_prio=120 prev_state=R+ ==> next_comm=migration/0 next_pid=13 next_prio=0
158537          <idle>-0     (-----) [002] .n.1 82320.673075: cpu_idle: state=4294967295 cpu_id=2
158538          <idle>-0     (-----) [002] d..2 82320.673088: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
158539   Binder:8858_1-8871  ( 8858) [001] d..2 82320.673127: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158540  appEventThread-8881  ( 8858) [002] d..2 82320.673130: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=27821 next_prio=120
158541     migration/0-13    (   13) [000] d..2 82320.673136: 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
158542          <idle>-0     (-----) [001] d..1 82320.673143: cpu_idle: state=0 cpu_id=1
158543          <idle>-0     (-----) [000] d..1 82320.673165: cpu_idle: state=0 cpu_id=0
158544 s.nexuslauncher-10023 (10023) [004] d..3 82320.673219: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158545 s.nexuslauncher-10023 (10023) [004] d..4 82320.673237: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
158546          <idle>-0     (-----) [005] .n.1 82320.673241: cpu_idle: state=4294967295 cpu_id=5
158547          <idle>-0     (-----) [005] d..2 82320.673249: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158548 s.nexuslauncher-10023 (10023) [004] d..2 82320.673265: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
158549          <idle>-0     (-----) [004] d..1 82320.673281: cpu_idle: state=0 cpu_id=4
158550    RenderThread-16607 (10023) [005] d..1 82320.673407: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158551    RenderThread-16607 (10023) [005] d..2 82320.673425: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158552          <idle>-0     (-----) [004] .n.1 82320.673432: cpu_idle: state=4294967295 cpu_id=4
158553          <idle>-0     (-----) [004] d..2 82320.673442: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
158554    RenderThread-16607 (10023) [005] .... 82320.673476: binder_transaction: transaction=1573394 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
158555    RenderThread-16607 (10023) [005] .... 82320.673480: binder_transaction_alloc_buf: transaction=1573394 data_size=104 offsets_size=0
158556    RenderThread-16607 (10023) [005] ...2 82320.673484: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
158557    RenderThread-16607 (10023) [005] d..4 82320.673487: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=001
158558    RenderThread-16607 (10023) [005] dn.5 82320.673507: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
158559 s.nexuslauncher-10023 (10023) [004] d..2 82320.673563: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
158560    RenderThread-16607 (10023) [005] d..2 82320.673577: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
158561   Binder:8858_1-8871  ( 8858) [004] .... 82320.673580: binder_transaction_received: transaction=1573394
158562          <idle>-0     (-----) [005] d..1 82320.673592: cpu_idle: state=0 cpu_id=5
158563   Binder:8858_1-8871  ( 8858) [004] .... 82320.673652: binder_transaction: transaction=1573395 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
158564   Binder:8858_1-8871  ( 8858) [004] .... 82320.673659: binder_transaction_alloc_buf: transaction=1573395 data_size=52 offsets_size=8
158565   Binder:8858_1-8871  ( 8858) [004] d..2 82320.673668: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158566   Binder:8858_1-8871  ( 8858) [004] d..3 82320.673687: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
158567   Binder:8858_1-8871  ( 8858) [004] .... 82320.673691: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
158568   Binder:8858_1-8871  ( 8858) [004] d..2 82320.673729: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
158569    RenderThread-16607 (10023) [004] .... 82320.673739: binder_transaction_received: transaction=1573395
158570              sh-27821 (27821) [002] d..2 82320.674317: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
158571              sh-27821 (27821) [002] d..3 82320.674348: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
158572          <idle>-0     (-----) [003] .n.1 82320.674356: cpu_idle: state=4294967295 cpu_id=3
158573          <idle>-0     (-----) [003] d..2 82320.674373: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
158574          <idle>-0     (-----) [000] .n.1 82320.674765: cpu_idle: state=4294967295 cpu_id=0
158575          <idle>-0     (-----) [000] d..2 82320.674783: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=27822 next_prio=120
158576 shell svc 27821-27822 (  960) [000] d..1 82320.674827: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
158577            adbd-960   (  960) [003] d..2 82320.674839: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
158578 shell svc 27821-27822 (  960) [000] d..2 82320.674860: sched_blocked_reason: pid=960 iowait=0 caller=do_page_fault+0x4e0/0x594
158579          <idle>-0     (-----) [003] d..1 82320.674864: cpu_idle: state=0 cpu_id=3
158580          <idle>-0     (-----) [003] .n.1 82320.674870: cpu_idle: state=4294967295 cpu_id=3
158581 shell svc 27821-27822 (  960) [000] d..2 82320.674871: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
158582          <idle>-0     (-----) [003] d..2 82320.674892: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
158583            adbd-960   (  960) [003] d..1 82320.674903: sched_waking: comm=adbd pid=27822 prio=120 target_cpu=000
158584 shell svc 27821-27822 (  960) [000] d..2 82320.674907: sched_switch: prev_comm=adbd prev_pid=27822 prev_prio=120 prev_state=D|K ==> next_comm=swapper/0 next_pid=0 next_prio=120
158585            adbd-960   (  960) [003] d..2 82320.674924: sched_blocked_reason: pid=27822 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
158586          <idle>-0     (-----) [000] d..1 82320.674926: cpu_idle: state=0 cpu_id=0
158587            adbd-960   (  960) [003] d..2 82320.674934: sched_wakeup: comm=adbd pid=27822 prio=120 target_cpu=000
158588          <idle>-0     (-----) [000] .n.1 82320.674941: cpu_idle: state=4294967295 cpu_id=0
158589          <idle>-0     (-----) [000] d..2 82320.674956: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=27822 next_prio=120
158590            adbd-960   (  960) [003] d..2 82320.674969: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
158591 shell svc 27821-27822 (  960) [000] d..1 82320.674975: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
158592          <idle>-0     (-----) [003] d..1 82320.674983: cpu_idle: state=0 cpu_id=3
158593 shell svc 27821-27822 (  960) [000] d..2 82320.674988: sched_blocked_reason: pid=960 iowait=0 caller=do_page_fault+0x4e0/0x594
158594 shell svc 27821-27822 (  960) [000] d..2 82320.674997: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
158595          <idle>-0     (-----) [003] .n.1 82320.675003: cpu_idle: state=4294967295 cpu_id=3
158596          <idle>-0     (-----) [003] d..2 82320.675017: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
158597            adbd-960   (  960) [003] d..1 82320.675034: sched_waking: comm=adbd pid=27822 prio=120 target_cpu=000
158598 shell svc 27821-27822 (  960) [000] d..2 82320.675039: sched_switch: prev_comm=adbd prev_pid=27822 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
158599          <idle>-0     (-----) [000] d..1 82320.675054: cpu_idle: state=0 cpu_id=0
158600            adbd-960   (  960) [003] d..2 82320.675054: sched_blocked_reason: pid=27822 iowait=0 caller=__rwsem_down_write_failed_common+0x454/0x750
158601            adbd-960   (  960) [003] d..2 82320.675064: sched_wakeup: comm=adbd pid=27822 prio=120 target_cpu=000
158602          <idle>-0     (-----) [000] .n.1 82320.675070: cpu_idle: state=4294967295 cpu_id=0
158603          <idle>-0     (-----) [000] d..2 82320.675084: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=27822 next_prio=120
158604            adbd-960   (  960) [003] d..2 82320.675091: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
158605 shell svc 27821-27822 (  960) [000] d..1 82320.675092: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
158606 shell svc 27821-27822 (  960) [000] d..2 82320.675104: sched_blocked_reason: pid=960 iowait=0 caller=do_page_fault+0x4e0/0x594
158607          <idle>-0     (-----) [003] d..1 82320.675105: cpu_idle: state=0 cpu_id=3
158608 shell svc 27821-27822 (  960) [000] d..2 82320.675113: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
158609          <idle>-0     (-----) [003] .n.1 82320.675120: cpu_idle: state=4294967295 cpu_id=3
158610          <idle>-0     (-----) [003] d..2 82320.675137: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=960 next_prio=120
158611            adbd-960   (  960) [003] d..1 82320.675174: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=002
158612    RenderThread-16607 (10023) [004] d..2 82320.675227: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
158613            adbd-960   (  960) [003] dn.2 82320.675231: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=003
158614          <idle>-0     (-----) [004] d..1 82320.675244: cpu_idle: state=0 cpu_id=4
158615            adbd-960   (  960) [003] d..2 82320.675244: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=R+ ==> next_comm=adbd next_pid=24055 next_prio=120
158616 shell svc 27821-27822 (  960) [000] d..2 82320.675266: sched_switch: prev_comm=shell svc 27821 prev_pid=27822 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158617          <idle>-0     (-----) [000] d..1 82320.675284: cpu_idle: state=0 cpu_id=0
158618          <idle>-0     (-----) [004] d.h2 82320.675314: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
158619          <idle>-0     (-----) [004] d.h3 82320.675322: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
158620          <idle>-0     (-----) [004] dnh3 82320.675325: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
158621          <idle>-0     (-----) [004] .n.1 82320.675331: cpu_idle: state=4294967295 cpu_id=4
158622          <idle>-0     (-----) [004] d..2 82320.675340: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158623            adbd-24055 (  960) [003] d.h2 82320.675402: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158624            adbd-24055 (  960) [003] dnh3 82320.675430: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158625            adbd-24055 (  960) [003] d..2 82320.675446: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=R+ ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
158626   kworker/u17:0-98    (   98) [003] d..2 82320.675468: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158627   kworker/u17:0-98    (   98) [003] d..3 82320.675482: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158628    RenderThread-16607 (10023) [004] .... 82320.675508: binder_transaction: transaction=1573396 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
158629    RenderThread-16607 (10023) [004] .... 82320.675513: binder_transaction_alloc_buf: transaction=1573396 data_size=192 offsets_size=8
158630   kworker/u17:0-98    (   98) [003] d..2 82320.675513: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
158631    RenderThread-16607 (10023) [004] ...2 82320.675521: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
158632    RenderThread-16607 (10023) [004] d..4 82320.675524: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
158633    RenderThread-16607 (10023) [004] dn.5 82320.675534: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
158634     kworker/3:1-25210 (25210) [003] d..2 82320.675541: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
158635    RenderThread-16607 (10023) [004] d..2 82320.675542: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
158636   Binder:8858_1-8871  ( 8858) [004] .... 82320.675556: binder_transaction_received: transaction=1573396
158637            adbd-24055 (  960) [003] d..2 82320.675580: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
158638   Binder:8858_1-8871  ( 8858) [004] .... 82320.675694: binder_transaction: transaction=1573397 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
158639   Binder:8858_1-8871  ( 8858) [004] .... 82320.675699: binder_transaction_alloc_buf: transaction=1573397 data_size=68 offsets_size=0
158640   Binder:8858_1-8871  ( 8858) [004] .... 82320.675702: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
158641   Binder:8858_1-8871  ( 8858) [004] d..2 82320.675740: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
158642    RenderThread-16607 (10023) [004] .... 82320.675752: binder_transaction_received: transaction=1573397
158643            adbd-960   (  960) [003] d..2 82320.675774: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158644          <idle>-0     (-----) [003] d..1 82320.675799: cpu_idle: state=0 cpu_id=3
158645    RenderThread-16607 (10023) [004] d..2 82320.675830: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
158646          <idle>-0     (-----) [004] d..1 82320.675846: cpu_idle: state=0 cpu_id=4
158647          <idle>-0     (-----) [003] d.h3 82320.675999: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158648          <idle>-0     (-----) [003] dnh4 82320.676014: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158649          <idle>-0     (-----) [003] .n.1 82320.676027: cpu_idle: state=4294967295 cpu_id=3
158650          <idle>-0     (-----) [003] d..2 82320.676042: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
158651   kworker/u17:0-98    (   98) [003] d..2 82320.676062: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158652   kworker/u17:0-98    (   98) [003] d..3 82320.676074: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158653   kworker/u17:0-98    (   98) [003] d..2 82320.676103: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
158654     kworker/3:1-25210 (25210) [003] d..2 82320.676123: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
158655     kworker/3:1-25210 (25210) [003] d..3 82320.676146: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
158656     kworker/3:1-25210 (25210) [003] d..2 82320.676164: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
158657            adbd-24054 (  960) [003] d..2 82320.676297: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158658          <idle>-0     (-----) [003] d.h4 82320.676323: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158659          <idle>-0     (-----) [003] dnh5 82320.676336: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158660          <idle>-0     (-----) [003] d..2 82320.676352: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
158661   kworker/u17:0-98    (   98) [003] d..2 82320.676368: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158662   kworker/u17:0-98    (   98) [003] d..3 82320.676378: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158663   kworker/u17:0-98    (   98) [003] d..2 82320.676406: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
158664     kworker/3:1-25210 (25210) [003] d..2 82320.676420: sched_waking: comm=adbd pid=24054 prio=120 target_cpu=003
158665     kworker/3:1-25210 (25210) [003] d..3 82320.676437: sched_wakeup: comm=adbd pid=24054 prio=120 target_cpu=003
158666     kworker/3:1-25210 (25210) [003] d..2 82320.676454: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=adbd next_pid=24054 next_prio=120
158667          <idle>-0     (-----) [001] d.h2 82320.676460: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
158668          <idle>-0     (-----) [001] dnh3 82320.676478: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
158669          <idle>-0     (-----) [001] .n.1 82320.676488: cpu_idle: state=4294967295 cpu_id=1
158670            adbd-24054 (  960) [003] d..2 82320.676496: sched_waking: comm=adbd pid=960 prio=120 target_cpu=003
158671          <idle>-0     (-----) [001] d..2 82320.676501: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
158672            adbd-24054 (  960) [003] d..3 82320.676509: sched_wakeup: comm=adbd pid=960 prio=120 target_cpu=003
158673        DispSync-8879  ( 8858) [001] d..1 82320.676522: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158674        DispSync-8879  ( 8858) [001] d..2 82320.676542: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158675          <idle>-0     (-----) [000] .n.1 82320.676548: cpu_idle: state=4294967295 cpu_id=0
158676          <idle>-0     (-----) [000] d..2 82320.676559: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
158677        DispSync-8879  ( 8858) [001] d..2 82320.676612: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=960 next_prio=120
158678   sfEventThread-8882  ( 8858) [000] d..3 82320.676620: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
158679            adbd-24054 (  960) [003] d..2 82320.676624: sched_switch: prev_comm=adbd prev_pid=24054 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158680          <idle>-0     (-----) [003] d..1 82320.676647: cpu_idle: state=0 cpu_id=3
158681   sfEventThread-8882  ( 8858) [000] d..4 82320.676658: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
158682          <idle>-0     (-----) [003] .n.1 82320.676666: cpu_idle: state=4294967295 cpu_id=3
158683          <idle>-0     (-----) [003] d..2 82320.676681: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
158684   sfEventThread-8882  ( 8858) [000] d..2 82320.676705: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158685          <idle>-0     (-----) [000] d.h4 82320.676742: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=001
158686          <idle>-0     (-----) [000] dnh5 82320.676767: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
158687            adbd-960   (  960) [001] d..2 82320.676768: sched_waking: comm=shell svc 27821 pid=27822 prio=120 target_cpu=000
158688  surfaceflinger-8858  ( 8858) [003] d.h1 82320.676778: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
158689          <idle>-0     (-----) [000] d..2 82320.676795: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
158690  surfaceflinger-8858  ( 8858) [003] dnh2 82320.676799: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
158691            adbd-960   (  960) [001] d..3 82320.676803: sched_wakeup: comm=shell svc 27821 pid=27822 prio=120 target_cpu=001
158692  surfaceflinger-8858  ( 8858) [003] d..2 82320.676817: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=R ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
158693            adbd-960   (  960) [001] d..1 82320.676822: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=003
158694 kgsl_worker_thr-258   (  258) [000] d..2 82320.676862: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=002
158695            adbd-960   (  960) [001] d..2 82320.676876: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
158696              sh-27821 (27821) [002] d..2 82320.676889: sched_switch: prev_comm=sh prev_pid=27821 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
158697 kgsl_worker_thr-258   (  258) [000] d..3 82320.676917: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
158698 kgsl_worker_thr-258   (  258) [000] d..2 82320.676949: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=adbd next_pid=24055 next_prio=120
158699            adbd-960   (  960) [001] d..2 82320.676968: sched_switch: prev_comm=adbd prev_pid=960 prev_prio=120 prev_state=S ==> next_comm=shell svc 27821 next_pid=27822 next_prio=120
158700 shell svc 27821-27822 (  960) [001] d..2 82320.677067: sched_switch: prev_comm=shell svc 27821 prev_pid=27822 prev_prio=120 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158701            adbd-24055 (  960) [000] d..2 82320.677082: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158702          <idle>-0     (-----) [001] d..1 82320.677093: cpu_idle: state=0 cpu_id=1
158703          <idle>-0     (-----) [000] d..1 82320.677100: cpu_idle: state=0 cpu_id=0
158704 irq/80-1436400.-9674  ( 9674) [003] d.h3 82320.677116: sched_waking: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158705 irq/80-1436400.-9674  ( 9674) [003] d.h4 82320.677144: sched_wakeup: comm=kworker/u17:0 pid=98 prio=100 target_cpu=003
158706          <idle>-0     (-----) [001] d.s3 82320.677159: sched_waking: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
158707 irq/80-1436400.-9674  ( 9674) [003] d..2 82320.677170: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=D ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
158708   kworker/u17:0-98    (   98) [003] dn.2 82320.677190: sched_waking: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158709          <idle>-0     (-----) [001] d.s4 82320.677191: sched_wakeup: comm=irq/80-1436400. pid=9674 prio=49 target_cpu=003
158710   kworker/u17:0-98    (   98) [003] dn.3 82320.677205: sched_wakeup: comm=kworker/3:1 pid=25210 prio=120 target_cpu=003
158711          <idle>-0     (-----) [001] ...1 82320.677210: cpu_idle: state=4294967295 cpu_id=1
158712          <idle>-0     (-----) [001] d..1 82320.677217: cpu_idle: state=0 cpu_id=1
158713   kworker/u17:0-98    (   98) [003] d..2 82320.677233: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=R+ ==> next_comm=irq/80-1436400. next_pid=9674 next_prio=49
158714 irq/80-1436400.-9674  ( 9674) [003] d..2 82320.677269: sched_switch: prev_comm=irq/80-1436400. prev_pid=9674 prev_prio=49 prev_state=S ==> next_comm=kworker/u17:0 next_pid=98 next_prio=100
158715   kworker/u17:0-98    (   98) [003] d..2 82320.677283: sched_switch: prev_comm=kworker/u17:0 prev_pid=98 prev_prio=100 prev_state=S ==> next_comm=kworker/3:1 next_pid=25210 next_prio=120
158716     kworker/3:1-25210 (25210) [003] d..2 82320.677298: sched_waking: comm=adbd pid=24055 prio=120 target_cpu=000
158717     kworker/3:1-25210 (25210) [003] d..3 82320.677317: sched_wakeup: comm=adbd pid=24055 prio=120 target_cpu=000
158718          <idle>-0     (-----) [000] .n.1 82320.677324: cpu_idle: state=4294967295 cpu_id=0
158719  surfaceflinger-8858  ( 8858) [002] d..1 82320.677329: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
158720          <idle>-0     (-----) [000] d..2 82320.677337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=adbd next_pid=24055 next_prio=120
158721     kworker/3:1-25210 (25210) [003] d..2 82320.677339: sched_switch: prev_comm=kworker/3:1 prev_pid=25210 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158722  surfaceflinger-8858  ( 8858) [002] d..2 82320.677379: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=001
158723          <idle>-0     (-----) [001] .n.1 82320.677384: cpu_idle: state=4294967295 cpu_id=1
158724            adbd-24055 (  960) [000] d..2 82320.677387: sched_switch: prev_comm=adbd prev_pid=24055 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158725          <idle>-0     (-----) [000] d..1 82320.677397: cpu_idle: state=0 cpu_id=0
158726          <idle>-0     (-----) [001] d..2 82320.677399: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
158727   sfEventThread-8882  ( 8858) [001] d..2 82320.677469: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158728          <idle>-0     (-----) [001] d..1 82320.677484: cpu_idle: state=0 cpu_id=1
158729  kworker/u16:13-1147  ( 1147) [003] d..2 82320.677576: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158730          <idle>-0     (-----) [003] d..1 82320.677601: cpu_idle: state=0 cpu_id=3
158731  surfaceflinger-8858  ( 8858) [002] ...1 82320.677631: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
158732  surfaceflinger-8858  ( 8858) [002] ...1 82320.677642: tracing_mark_write: E|8858
158733  surfaceflinger-8858  ( 8858) [002] .... 82320.677727: binder_transaction: transaction=1573398 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
158734  surfaceflinger-8858  ( 8858) [002] .... 82320.677733: binder_transaction_alloc_buf: transaction=1573398 data_size=540 offsets_size=96
158735  surfaceflinger-8858  ( 8858) [002] ...2 82320.677766: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
158736  surfaceflinger-8858  ( 8858) [002] d..4 82320.677778: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
158737  surfaceflinger-8858  ( 8858) [002] d..5 82320.677804: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=001
158738          <idle>-0     (-----) [001] .n.1 82320.677809: cpu_idle: state=4294967295 cpu_id=1
158739          <idle>-0     (-----) [001] d..2 82320.677822: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
158740  surfaceflinger-8858  ( 8858) [002] d..2 82320.677833: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=sh next_pid=27821 next_prio=120
158741 [email protected]   (  619) [001] .... 82320.677836: binder_transaction_received: transaction=1573398
158742 [email protected]   (  619) [001] ...1 82320.677909: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
158743 [email protected]   (  619) [001] ...1 82320.678066: tracing_mark_write: B|619|HWCSession::PresentDisplay::
158744 [email protected]   (  619) [001] ...1 82320.678297: tracing_mark_write: B|619|HWDeviceDRM::Commit::
158745 [email protected]   (  619) [001] ...1 82320.678314: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
158746          <idle>-0     (-----) [000] d.s2 82320.678477: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158747          <idle>-0     (-----) [000] dns3 82320.678501: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158748          <idle>-0     (-----) [000] .n.1 82320.678516: cpu_idle: state=4294967295 cpu_id=0
158749          <idle>-0     (-----) [000] d..2 82320.678527: 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
158750     rcu_preempt-7     (    7) [000] d..2 82320.678537: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
158751     rcu_preempt-7     (    7) [000] d..3 82320.678560: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
158752     rcu_preempt-7     (    7) [000] d..2 82320.678575: 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
158753         rcuop/2-29    (   29) [000] d..2 82320.678599: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158754         rcuop/2-29    (   29) [000] d..3 82320.678614: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158755         rcuop/2-29    (   29) [000] d..2 82320.678624: 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
158756     rcu_preempt-7     (    7) [000] d..2 82320.678658: 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
158757          <idle>-0     (-----) [000] d..1 82320.678677: cpu_idle: state=0 cpu_id=0
158758          <idle>-0     (-----) [003] ...1 82320.678725: cpu_idle: state=4294967295 cpu_id=3
158759          <idle>-0     (-----) [003] d..1 82320.678731: cpu_idle: state=0 cpu_id=3
158760 [email protected]   (  619) [001] d..2 82320.679159: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
158761 [email protected]   (  619) [001] d..3 82320.679194: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
158762          <idle>-0     (-----) [000] .n.1 82320.679200: cpu_idle: state=4294967295 cpu_id=0
158763          <idle>-0     (-----) [000] d..2 82320.679214: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
158764 [email protected]   (  619) [001] ...1 82320.679328: tracing_mark_write: E|619
158765 [email protected]   (  619) [001] ...1 82320.679336: tracing_mark_write: E|619
158766 [email protected]   (  619) [001] ...1 82320.679416: tracing_mark_write: E|619
158767 [email protected]   (  619) [001] ...1 82320.679481: tracing_mark_write: E|619
158768 [email protected]   (  619) [001] .... 82320.679500: binder_transaction: transaction=1573399 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
158769 [email protected]   (  619) [001] .... 82320.679506: binder_transaction_alloc_buf: transaction=1573399 data_size=576 offsets_size=112
158770 [email protected]   (  619) [001] d..2 82320.679531: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
158771 [email protected]   (  619) [001] d..3 82320.679566: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
158772          <idle>-0     (-----) [003] .n.1 82320.679570: cpu_idle: state=4294967295 cpu_id=3
158773 [email protected]   (  619) [001] .... 82320.679572: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
158774          <idle>-0     (-----) [003] d..2 82320.679585: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
158775  surfaceflinger-8858  ( 8858) [003] .... 82320.679598: binder_transaction_received: transaction=1573399
158776 [email protected]   (  619) [001] d..2 82320.679686: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158777          <idle>-0     (-----) [001] d..1 82320.679708: cpu_idle: state=0 cpu_id=1
158778 crtc_commit:111-321   (  321) [000] d..2 82320.680029: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
158779          <idle>-0     (-----) [000] d..1 82320.680048: cpu_idle: state=0 cpu_id=0
158780  surfaceflinger-8858  ( 8858) [003] d..2 82320.680180: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158781          <idle>-0     (-----) [003] d..1 82320.680206: cpu_idle: state=0 cpu_id=3
158782          <idle>-0     (-----) [003] ...1 82320.681328: cpu_idle: state=4294967295 cpu_id=3
158783          <idle>-0     (-----) [003] d..1 82320.681335: cpu_idle: state=0 cpu_id=3
158784              sh-27821 (27821) [002] d.s2 82320.681829: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
158785              sh-27821 (27821) [002] d.s3 82320.681886: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
158786          <idle>-0     (-----) [000] .n.1 82320.681892: cpu_idle: state=4294967295 cpu_id=0
158787          <idle>-0     (-----) [000] d..2 82320.681911: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158788  kworker/u16:13-1147  ( 1147) [000] .... 82320.682035: clk_set_rate: l3_cluster0_vote_clk 576000000
158789  kworker/u16:13-1147  ( 1147) [000] .... 82320.682045: clk_set_rate: l3_clk 576000000
158790  kworker/u16:13-1147  ( 1147) [000] d..2 82320.682313: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
158791          <idle>-0     (-----) [000] d..1 82320.682325: cpu_idle: state=0 cpu_id=0
158792          <idle>-0     (-----) [001] d.s3 82320.682342: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
158793          <idle>-0     (-----) [001] d.s4 82320.682356: sched_blocked_reason: pid=1147 iowait=0 caller=wait_for_tx_done+0x34/0x120
158794          <idle>-0     (-----) [001] d.s4 82320.682365: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
158795          <idle>-0     (-----) [000] .n.1 82320.682372: cpu_idle: state=4294967295 cpu_id=0
158796          <idle>-0     (-----) [001] ...1 82320.682378: cpu_idle: state=4294967295 cpu_id=1
158797          <idle>-0     (-----) [000] d..2 82320.682383: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158798          <idle>-0     (-----) [001] d..1 82320.682384: cpu_idle: state=0 cpu_id=1
158799  kworker/u16:13-1147  ( 1147) [000] d..2 82320.682414: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158800          <idle>-0     (-----) [000] d..1 82320.682423: cpu_idle: state=0 cpu_id=0
158801          <idle>-0     (-----) [001] d.h2 82320.683521: sched_waking: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
158802          <idle>-0     (-----) [001] dnh3 82320.683544: sched_wakeup: comm=neuralnetworks@ pid=13088 prio=110 target_cpu=001
158803          <idle>-0     (-----) [001] .n.1 82320.683553: cpu_idle: state=4294967295 cpu_id=1
158804          <idle>-0     (-----) [001] d..2 82320.683567: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=neuralnetworks@ next_pid=13088 next_prio=110
158805 neuralnetworks@-13088 (  788) [001] d..2 82320.683661: sched_switch: prev_comm=neuralnetworks@ prev_pid=13088 prev_prio=110 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158806          <idle>-0     (-----) [001] d..1 82320.683676: cpu_idle: state=0 cpu_id=1
158807          <idle>-0     (-----) [000] d.h5 82320.684792: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=002
158808          <idle>-0     (-----) [000] dnh6 82320.684816: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
158809          <idle>-0     (-----) [000] dnh5 82320.684821: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
158810          <idle>-0     (-----) [000] dnh6 82320.684840: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158811          <idle>-0     (-----) [003] .n.1 82320.684846: cpu_idle: state=4294967295 cpu_id=3
158812          <idle>-0     (-----) [003] d..2 82320.684858: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
158813          <idle>-0     (-----) [000] .n.1 82320.684863: cpu_idle: state=4294967295 cpu_id=0
158814          <idle>-0     (-----) [000] d..2 82320.684871: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158815  crtc_event:111-322   (  322) [000] d..2 82320.684904: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158816          <idle>-0     (-----) [000] d..1 82320.684914: cpu_idle: state=0 cpu_id=0
158817 crtc_commit:111-321   (  321) [003] d..2 82320.685017: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
158818          <idle>-0     (-----) [003] d..1 82320.685027: cpu_idle: state=0 cpu_id=3
158819          <idle>-0     (-----) [003] d.s3 82320.685135: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
158820          <idle>-0     (-----) [000] d.s2 82320.685136: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158821          <idle>-0     (-----) [003] d.s4 82320.685154: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
158822          <idle>-0     (-----) [000] dns3 82320.685162: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158823          <idle>-0     (-----) [000] .n.1 82320.685178: cpu_idle: state=4294967295 cpu_id=0
158824          <idle>-0     (-----) [000] d..2 82320.685186: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158825          <idle>-0     (-----) [003] ...1 82320.685187: cpu_idle: state=4294967295 cpu_id=3
158826          <idle>-0     (-----) [003] d..1 82320.685195: cpu_idle: state=0 cpu_id=3
158827  crtc_event:111-322   (  322) [000] d..2 82320.685205: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
158828     rcu_preempt-7     (    7) [000] d..2 82320.685219: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
158829     rcu_preempt-7     (    7) [000] d..3 82320.685236: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
158830     rcu_preempt-7     (    7) [000] d..2 82320.685248: 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
158831         rcuop/2-29    (   29) [000] d..2 82320.685253: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=003
158832         rcuop/2-29    (   29) [000] d..3 82320.685297: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
158833         rcuop/2-29    (   29) [000] d..2 82320.685320: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158834         rcuop/2-29    (   29) [000] d..3 82320.685334: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158835         rcuop/2-29    (   29) [000] d..2 82320.685346: 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
158836         rcuop/3-37    (   37) [000] d..2 82320.685363: 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
158837     rcu_preempt-7     (    7) [000] d..2 82320.685392: 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
158838          <idle>-0     (-----) [000] d..1 82320.685409: cpu_idle: state=0 cpu_id=0
158839          <idle>-0     (-----) [000] d.h5 82320.687135: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158840          <idle>-0     (-----) [000] d.h6 82320.687152: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
158841          <idle>-0     (-----) [003] .n.1 82320.687157: cpu_idle: state=4294967295 cpu_id=3
158842          <idle>-0     (-----) [000] ...1 82320.687167: cpu_idle: state=4294967295 cpu_id=0
158843          <idle>-0     (-----) [003] d..2 82320.687169: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
158844          <idle>-0     (-----) [000] d..1 82320.687173: cpu_idle: state=0 cpu_id=0
158845 crtc_commit:111-321   (  321) [003] d..2 82320.687248: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158846          <idle>-0     (-----) [003] d..1 82320.687262: cpu_idle: state=0 cpu_id=3
158847          <idle>-0     (-----) [000] d.h5 82320.687425: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
158848          <idle>-0     (-----) [000] dnh6 82320.687437: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
158849          <idle>-0     (-----) [000] .n.1 82320.687451: cpu_idle: state=4294967295 cpu_id=0
158850          <idle>-0     (-----) [000] d..2 82320.687463: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
158851  crtc_event:111-322   (  322) [000] d..2 82320.687490: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158852          <idle>-0     (-----) [000] d..1 82320.687501: cpu_idle: state=0 cpu_id=0
158853          <idle>-0     (-----) [001] d.h2 82320.688906: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
158854          <idle>-0     (-----) [001] dnh3 82320.688922: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
158855          <idle>-0     (-----) [001] .n.1 82320.688930: cpu_idle: state=4294967295 cpu_id=1
158856          <idle>-0     (-----) [001] d..2 82320.688942: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
158857        DispSync-8879  ( 8858) [001] d..1 82320.688965: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=002
158858        DispSync-8879  ( 8858) [001] d..2 82320.688991: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
158859          <idle>-0     (-----) [000] .n.1 82320.688998: cpu_idle: state=4294967295 cpu_id=0
158860          <idle>-0     (-----) [000] d..2 82320.689011: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
158861        DispSync-8879  ( 8858) [001] d..2 82320.689033: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158862          <idle>-0     (-----) [001] d..1 82320.689046: cpu_idle: state=0 cpu_id=1
158863  appEventThread-8881  ( 8858) [000] d..3 82320.689079: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158864          <idle>-0     (-----) [004] dnh2 82320.689109: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158865          <idle>-0     (-----) [004] .n.1 82320.689113: cpu_idle: state=4294967295 cpu_id=4
158866          <idle>-0     (-----) [004] d..2 82320.689123: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
158867  appEventThread-8881  ( 8858) [000] d..2 82320.689143: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158868          <idle>-0     (-----) [000] d..1 82320.689154: cpu_idle: state=0 cpu_id=0
158869 s.nexuslauncher-10023 (10023) [004] .... 82320.689405: binder_transaction: transaction=1573400 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
158870 s.nexuslauncher-10023 (10023) [004] .... 82320.689410: binder_transaction_alloc_buf: transaction=1573400 data_size=80 offsets_size=0
158871 s.nexuslauncher-10023 (10023) [004] d..4 82320.689414: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
158872          <idle>-0     (-----) [000] dnh2 82320.689477: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
158873          <idle>-0     (-----) [000] .n.1 82320.689484: cpu_idle: state=4294967295 cpu_id=0
158874          <idle>-0     (-----) [000] d..2 82320.689492: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
158875 s.nexuslauncher-10023 (10023) [004] d..3 82320.689497: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
158876   Binder:8858_1-8871  ( 8858) [000] .... 82320.689501: binder_transaction_received: transaction=1573400
158877 s.nexuslauncher-10023 (10023) [004] d..4 82320.689517: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
158878          <idle>-0     (-----) [005] .n.1 82320.689522: cpu_idle: state=4294967295 cpu_id=5
158879          <idle>-0     (-----) [005] d..2 82320.689531: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158880   Binder:8858_1-8871  ( 8858) [000] d..1 82320.689533: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
158881   Binder:8858_1-8871  ( 8858) [000] d..2 82320.689558: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
158882          <idle>-0     (-----) [003] .n.1 82320.689564: cpu_idle: state=4294967295 cpu_id=3
158883    RenderThread-16607 (10023) [005] d..2 82320.689567: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
158884          <idle>-0     (-----) [005] d..1 82320.689576: cpu_idle: state=0 cpu_id=5
158885          <idle>-0     (-----) [003] d..2 82320.689576: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
158886   Binder:8858_1-8871  ( 8858) [000] d..2 82320.689605: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
158887          <idle>-0     (-----) [000] d..1 82320.689616: cpu_idle: state=0 cpu_id=0
158888  appEventThread-8881  ( 8858) [003] d..2 82320.689638: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158889          <idle>-0     (-----) [003] d..1 82320.689651: cpu_idle: state=0 cpu_id=3
158890 s.nexuslauncher-10023 (10023) [004] d..3 82320.689783: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158891 s.nexuslauncher-10023 (10023) [004] d..4 82320.689798: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
158892          <idle>-0     (-----) [005] .n.1 82320.689803: cpu_idle: state=4294967295 cpu_id=5
158893          <idle>-0     (-----) [005] d..2 82320.689811: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158894 s.nexuslauncher-10023 (10023) [004] d..2 82320.689822: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
158895          <idle>-0     (-----) [004] d..1 82320.689836: cpu_idle: state=0 cpu_id=4
158896    RenderThread-16607 (10023) [005] d..1 82320.689946: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158897    RenderThread-16607 (10023) [005] d..2 82320.689959: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
158898          <idle>-0     (-----) [004] .n.1 82320.689965: cpu_idle: state=4294967295 cpu_id=4
158899          <idle>-0     (-----) [004] d..2 82320.689973: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
158900    RenderThread-16607 (10023) [005] .... 82320.690000: binder_transaction: transaction=1573401 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
158901    RenderThread-16607 (10023) [005] .... 82320.690003: binder_transaction_alloc_buf: transaction=1573401 data_size=104 offsets_size=0
158902    RenderThread-16607 (10023) [005] ...2 82320.690007: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
158903    RenderThread-16607 (10023) [005] d..4 82320.690010: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
158904    RenderThread-16607 (10023) [005] dn.5 82320.690027: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
158905    RenderThread-16607 (10023) [005] dnh5 82320.690062: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
158906 s.nexuslauncher-10023 (10023) [004] d..2 82320.690084: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
158907          <idle>-0     (-----) [003] dnh2 82320.690086: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
158908          <idle>-0     (-----) [003] .n.1 82320.690093: cpu_idle: state=4294967295 cpu_id=3
158909    RenderThread-16607 (10023) [005] d..2 82320.690096: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
158910   Binder:8858_1-8871  ( 8858) [004] .... 82320.690097: binder_transaction_received: transaction=1573401
158911          <idle>-0     (-----) [003] d..2 82320.690103: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
158912          <idle>-0     (-----) [005] d..1 82320.690107: cpu_idle: state=0 cpu_id=5
158913         sugov:0-576   (  576) [003] .... 82320.690135: clk_set_rate: pwrcl_clk 652800000
158914         sugov:0-576   (  576) [003] .... 82320.690151: clk_set_rate: cpu3_pwrcl_clk 748800000
158915   Binder:8858_1-8871  ( 8858) [004] .... 82320.690157: binder_transaction: transaction=1573402 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
158916         sugov:0-576   (  576) [003] .... 82320.690161: clk_set_rate: cpu2_pwrcl_clk 748800000
158917   Binder:8858_1-8871  ( 8858) [004] .... 82320.690162: binder_transaction_alloc_buf: transaction=1573402 data_size=52 offsets_size=8
158918         sugov:0-576   (  576) [003] .... 82320.690169: clk_set_rate: cpu1_pwrcl_clk 748800000
158919   Binder:8858_1-8871  ( 8858) [004] d..2 82320.690170: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
158920         sugov:0-576   (  576) [003] .... 82320.690177: clk_set_rate: cpu0_pwrcl_clk 652800000
158921   Binder:8858_1-8871  ( 8858) [004] d..3 82320.690186: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
158922   Binder:8858_1-8871  ( 8858) [004] .... 82320.690191: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
158923   Binder:8858_1-8871  ( 8858) [004] d..2 82320.690225: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
158924    RenderThread-16607 (10023) [004] .... 82320.690234: binder_transaction_received: transaction=1573402
158925         sugov:0-576   (  576) [003] .... 82320.690290: cpu_frequency: state=652800 cpu_id=0
158926         sugov:0-576   (  576) [003] .... 82320.690311: cpu_frequency: state=652800 cpu_id=1
158927         sugov:0-576   (  576) [003] .... 82320.690317: cpu_frequency: state=652800 cpu_id=2
158928         sugov:0-576   (  576) [003] .... 82320.690322: cpu_frequency: state=652800 cpu_id=3
158929         sugov:0-576   (  576) [003] d..2 82320.690355: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158930          <idle>-0     (-----) [003] d..1 82320.690371: cpu_idle: state=0 cpu_id=3
158931    RenderThread-16607 (10023) [004] d..2 82320.691626: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/4 next_pid=0 next_prio=120
158932          <idle>-0     (-----) [004] d..1 82320.691639: cpu_idle: state=0 cpu_id=4
158933          <idle>-0     (-----) [004] d.h2 82320.691714: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
158934          <idle>-0     (-----) [004] d.h3 82320.691721: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
158935          <idle>-0     (-----) [004] dnh3 82320.691724: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=004
158936          <idle>-0     (-----) [004] .n.1 82320.691730: cpu_idle: state=4294967295 cpu_id=4
158937          <idle>-0     (-----) [004] d..2 82320.691738: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
158938          <idle>-0     (-----) [000] d.s2 82320.691847: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158939              sh-27821 (27821) [002] d.s2 82320.691851: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
158940    RenderThread-16607 (10023) [004] d.H2 82320.691858: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
158941          <idle>-0     (-----) [000] dns3 82320.691872: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
158942          <idle>-0     (-----) [003] dnh2 82320.691882: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
158943          <idle>-0     (-----) [003] .n.1 82320.691890: cpu_idle: state=4294967295 cpu_id=3
158944          <idle>-0     (-----) [000] .n.1 82320.691895: cpu_idle: state=4294967295 cpu_id=0
158945          <idle>-0     (-----) [000] d..2 82320.691907: 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
158946              sh-27821 (27821) [002] d.s3 82320.691910: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
158947          <idle>-0     (-----) [003] d..2 82320.691917: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
158948         sugov:0-576   (  576) [003] .... 82320.691939: clk_set_rate: pwrcl_clk 748800000
158949     rcu_preempt-7     (    7) [000] d..2 82320.691946: 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
158950         sugov:0-576   (  576) [003] .... 82320.691949: clk_set_rate: cpu3_pwrcl_clk 652800000
158951         sugov:0-576   (  576) [003] .... 82320.691958: clk_set_rate: cpu2_pwrcl_clk 652800000
158952          <idle>-0     (-----) [000] d..1 82320.691962: cpu_idle: state=0 cpu_id=0
158953         sugov:0-576   (  576) [003] .... 82320.691966: clk_set_rate: cpu1_pwrcl_clk 652800000
158954         sugov:0-576   (  576) [003] .... 82320.691974: clk_set_rate: cpu0_pwrcl_clk 748800000
158955         sugov:0-576   (  576) [003] .... 82320.691983: cpu_frequency: state=748800 cpu_id=0
158956    RenderThread-16607 (10023) [004] .... 82320.691984: binder_transaction: transaction=1573403 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
158957    RenderThread-16607 (10023) [004] .... 82320.691988: binder_transaction_alloc_buf: transaction=1573403 data_size=192 offsets_size=8
158958    RenderThread-16607 (10023) [004] ...2 82320.691995: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
158959         sugov:0-576   (  576) [003] .... 82320.691995: cpu_frequency: state=748800 cpu_id=1
158960    RenderThread-16607 (10023) [004] d..4 82320.691998: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
158961         sugov:0-576   (  576) [003] .... 82320.692002: cpu_frequency: state=748800 cpu_id=2
158962         sugov:0-576   (  576) [003] .... 82320.692007: cpu_frequency: state=748800 cpu_id=3
158963    RenderThread-16607 (10023) [004] dn.5 82320.692008: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=004
158964    RenderThread-16607 (10023) [004] d..2 82320.692014: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
158965         sugov:0-576   (  576) [003] d..2 82320.692024: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
158966   Binder:8858_1-8871  ( 8858) [004] .... 82320.692025: binder_transaction_received: transaction=1573403
158967   Binder:8858_1-8871  ( 8858) [004] .... 82320.692158: binder_transaction: transaction=1573404 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
158968   Binder:8858_1-8871  ( 8858) [004] .... 82320.692161: binder_transaction_alloc_buf: transaction=1573404 data_size=68 offsets_size=0
158969   Binder:8858_1-8871  ( 8858) [004] .... 82320.692164: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
158970   Binder:8858_1-8871  ( 8858) [004] d..2 82320.692208: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
158971    RenderThread-16607 (10023) [004] .... 82320.692223: binder_transaction_received: transaction=1573404
158972  kworker/u16:13-1147  ( 1147) [003] d..2 82320.692260: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158973          <idle>-0     (-----) [003] d..1 82320.692275: cpu_idle: state=0 cpu_id=3
158974    RenderThread-16607 (10023) [004] d..2 82320.692287: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
158975          <idle>-0     (-----) [004] d..1 82320.692301: cpu_idle: state=0 cpu_id=4
158976          <idle>-0     (-----) [004] ...1 82320.692513: cpu_idle: state=4294967295 cpu_id=4
158977          <idle>-0     (-----) [004] d..1 82320.692516: cpu_idle: state=0 cpu_id=4
158978          <idle>-0     (-----) [000] .n.1 82320.692545: cpu_idle: state=4294967295 cpu_id=0
158979          <idle>-0     (-----) [000] d..2 82320.692559: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27823 next_prio=120
158980              sh-27821 (27821) [002] d..2 82320.692713: sched_switch: prev_comm=sh prev_pid=27821 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
158981          <idle>-0     (-----) [002] d..1 82320.692742: cpu_idle: state=0 cpu_id=2
158982          <idle>-0     (-----) [001] d.h2 82320.692915: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
158983          <idle>-0     (-----) [001] dnh3 82320.692929: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=001
158984          <idle>-0     (-----) [001] .n.1 82320.692938: cpu_idle: state=4294967295 cpu_id=1
158985          <idle>-0     (-----) [001] d..2 82320.692949: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
158986        DispSync-8879  ( 8858) [001] d..1 82320.692963: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=001
158987        DispSync-8879  ( 8858) [001] d..2 82320.692986: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
158988          <idle>-0     (-----) [003] .n.1 82320.692993: cpu_idle: state=4294967295 cpu_id=3
158989          <idle>-0     (-----) [003] d..2 82320.693004: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
158990        DispSync-8879  ( 8858) [001] d..2 82320.693019: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
158991          <idle>-0     (-----) [001] d..1 82320.693033: cpu_idle: state=0 cpu_id=1
158992   sfEventThread-8882  ( 8858) [003] d..3 82320.693053: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
158993   sfEventThread-8882  ( 8858) [003] d..4 82320.693084: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
158994          <idle>-0     (-----) [001] .n.1 82320.693089: cpu_idle: state=4294967295 cpu_id=1
158995          <idle>-0     (-----) [001] d..2 82320.693099: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
158996   sfEventThread-8882  ( 8858) [003] d..2 82320.693121: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
158997          <idle>-0     (-----) [003] d..1 82320.693136: cpu_idle: state=0 cpu_id=3
158998          atrace-27823 (27823) [000] d.h3 82320.693165: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=000
158999          atrace-27823 (27823) [000] d.h4 82320.693202: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
159000          <idle>-0     (-----) [003] .n.1 82320.693207: cpu_idle: state=4294967295 cpu_id=3
159001          <idle>-0     (-----) [003] d..2 82320.693218: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
159002 kgsl_worker_thr-258   (  258) [003] d..2 82320.693278: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
159003 kgsl_worker_thr-258   (  258) [003] d..3 82320.693298: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
159004 kgsl_worker_thr-258   (  258) [003] d..2 82320.693322: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
159005  surfaceflinger-8858  ( 8858) [001] d..2 82320.693473: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
159006  kworker/u16:13-1147  ( 1147) [003] d..2 82320.693525: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159007  surfaceflinger-8858  ( 8858) [001] d..3 82320.693540: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=003
159008          <idle>-0     (-----) [003] d..2 82320.693552: 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
159009  surfaceflinger-8858  ( 8858) [001] d..1 82320.693573: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
159010         rcuop/0-10    (   10) [003] d..2 82320.693578: 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
159011          <idle>-0     (-----) [003] d..1 82320.693591: cpu_idle: state=0 cpu_id=3
159012  surfaceflinger-8858  ( 8858) [001] d..2 82320.693595: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=003
159013          <idle>-0     (-----) [003] .n.1 82320.693599: cpu_idle: state=4294967295 cpu_id=3
159014          <idle>-0     (-----) [003] d..2 82320.693609: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
159015   sfEventThread-8882  ( 8858) [003] d..2 82320.693653: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159016          <idle>-0     (-----) [003] d..1 82320.693666: cpu_idle: state=0 cpu_id=3
159017  surfaceflinger-8858  ( 8858) [001] ...1 82320.693823: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
159018  surfaceflinger-8858  ( 8858) [001] ...1 82320.693832: tracing_mark_write: E|8858
159019  surfaceflinger-8858  ( 8858) [001] .... 82320.693903: binder_transaction: transaction=1573405 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
159020  surfaceflinger-8858  ( 8858) [001] .... 82320.693908: binder_transaction_alloc_buf: transaction=1573405 data_size=540 offsets_size=96
159021  surfaceflinger-8858  ( 8858) [001] ...2 82320.693936: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
159022  surfaceflinger-8858  ( 8858) [001] d..4 82320.693946: sched_waking: [email protected] pid=619 prio=98 target_cpu=001
159023  surfaceflinger-8858  ( 8858) [001] d..5 82320.693976: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
159024          <idle>-0     (-----) [003] .n.1 82320.693982: cpu_idle: state=4294967295 cpu_id=3
159025          <idle>-0     (-----) [003] d..2 82320.693992: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
159026 [email protected]   (  619) [003] .... 82320.694006: binder_transaction_received: transaction=1573405
159027  surfaceflinger-8858  ( 8858) [001] d..2 82320.694011: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/1 next_pid=0 next_prio=120
159028          <idle>-0     (-----) [001] d..1 82320.694029: cpu_idle: state=0 cpu_id=1
159029 [email protected]   (  619) [003] ...1 82320.694073: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
159030          atrace-27823 (27823) [000] d..2 82320.694075: sched_waking: comm=migration/0 pid=13 prio=0 target_cpu=000
159031          atrace-27823 (27823) [000] dn.3 82320.694092: sched_wakeup: comm=migration/0 pid=13 prio=0 target_cpu=000
159032          atrace-27823 (27823) [000] d..2 82320.694105: sched_switch: prev_comm=sh prev_pid=27823 prev_prio=120 prev_state=R+ ==> next_comm=migration/0 next_pid=13 next_prio=0
159033          <idle>-0     (-----) [001] .n.1 82320.694143: cpu_idle: state=4294967295 cpu_id=1
159034          <idle>-0     (-----) [001] d..2 82320.694157: sched_switch: prev_comm=swapper/1 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sh next_pid=27823 next_prio=120
159035     migration/0-13    (   13) [000] d..2 82320.694160: 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
159036          <idle>-0     (-----) [000] d..1 82320.694184: cpu_idle: state=0 cpu_id=0
159037 [email protected]   (  619) [003] ...1 82320.694205: tracing_mark_write: B|619|HWCSession::PresentDisplay::
159038 [email protected]   (  619) [003] ...1 82320.694411: tracing_mark_write: B|619|HWDeviceDRM::Commit::
159039 [email protected]   (  619) [003] ...1 82320.694427: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
159040 [email protected]   (  619) [003] d..2 82320.695182: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
159041 [email protected]   (  619) [003] d..3 82320.695215: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
159042          <idle>-0     (-----) [000] .n.1 82320.695222: cpu_idle: state=4294967295 cpu_id=0
159043          <idle>-0     (-----) [000] d..2 82320.695235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
159044 [email protected]   (  619) [003] ...1 82320.695335: tracing_mark_write: E|619
159045 [email protected]   (  619) [003] ...1 82320.695342: tracing_mark_write: E|619
159046 [email protected]   (  619) [003] ...1 82320.695416: tracing_mark_write: E|619
159047 [email protected]   (  619) [003] ...1 82320.695484: tracing_mark_write: E|619
159048 [email protected]   (  619) [003] .... 82320.695503: binder_transaction: transaction=1573406 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
159049 [email protected]   (  619) [003] .... 82320.695507: binder_transaction_alloc_buf: transaction=1573406 data_size=576 offsets_size=112
159050 [email protected]   (  619) [003] d..2 82320.695531: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=001
159051 [email protected]   (  619) [003] d..3 82320.695565: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
159052 [email protected]   (  619) [003] .... 82320.695571: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
159053          <idle>-0     (-----) [002] .n.1 82320.695574: cpu_idle: state=4294967295 cpu_id=2
159054          <idle>-0     (-----) [002] d..2 82320.695593: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
159055  surfaceflinger-8858  ( 8858) [002] .... 82320.695606: binder_transaction_received: transaction=1573406
159056 [email protected]   (  619) [003] d..2 82320.695684: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159057          <idle>-0     (-----) [003] d..1 82320.695705: cpu_idle: state=0 cpu_id=3
159058 crtc_commit:111-321   (  321) [000] d..2 82320.695997: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
159059          <idle>-0     (-----) [000] d..1 82320.696009: cpu_idle: state=0 cpu_id=0
159060  surfaceflinger-8858  ( 8858) [002] d..2 82320.696114: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
159061          <idle>-0     (-----) [002] d..1 82320.696135: cpu_idle: state=0 cpu_id=2
159062          <idle>-0     (-----) [003] ...1 82320.696995: cpu_idle: state=4294967295 cpu_id=3
159063          <idle>-0     (-----) [003] d..1 82320.697001: cpu_idle: state=0 cpu_id=3
159064          <idle>-0     (-----) [000] d.s2 82320.698468: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159065          <idle>-0     (-----) [000] dns3 82320.698489: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159066          <idle>-0     (-----) [000] .n.1 82320.698502: cpu_idle: state=4294967295 cpu_id=0
159067          <idle>-0     (-----) [000] d..2 82320.698512: 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
159068     rcu_preempt-7     (    7) [000] d..2 82320.698524: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
159069     rcu_preempt-7     (    7) [000] d..3 82320.698545: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
159070     rcu_preempt-7     (    7) [000] d..2 82320.698563: 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
159071         rcuop/2-29    (   29) [000] d..2 82320.698569: sched_waking: comm=rcuop/3 pid=37 prio=120 target_cpu=000
159072         rcuop/2-29    (   29) [000] d..3 82320.698588: sched_wakeup: comm=rcuop/3 pid=37 prio=120 target_cpu=000
159073         rcuop/2-29    (   29) [000] d..2 82320.698600: 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
159074         rcuop/3-37    (   37) [000] d..2 82320.698636: 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
159075          <idle>-0     (-----) [000] d..1 82320.698651: cpu_idle: state=0 cpu_id=0
159076          <idle>-0     (-----) [000] d.h5 82320.701268: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159077          <idle>-0     (-----) [000] dnh6 82320.701285: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159078          <idle>-0     (-----) [000] dnh5 82320.701290: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
159079          <idle>-0     (-----) [000] dnh6 82320.701310: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
159080          <idle>-0     (-----) [003] .n.1 82320.701316: cpu_idle: state=4294967295 cpu_id=3
159081          <idle>-0     (-----) [000] .n.1 82320.701324: cpu_idle: state=4294967295 cpu_id=0
159082          <idle>-0     (-----) [003] d..2 82320.701329: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
159083          <idle>-0     (-----) [000] d..2 82320.701336: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
159084  crtc_event:111-322   (  322) [000] d..2 82320.701369: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159085          <idle>-0     (-----) [000] d..1 82320.701381: cpu_idle: state=0 cpu_id=0
159086 crtc_commit:111-321   (  321) [003] d..2 82320.701497: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
159087          <idle>-0     (-----) [003] d..1 82320.701506: cpu_idle: state=0 cpu_id=3
159088          <idle>-0     (-----) [003] d.s3 82320.701798: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159089          atrace-27823 (27823) [001] d.s3 82320.701816: sched_waking: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=003
159090          <idle>-0     (-----) [003] d.s4 82320.701817: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159091          <idle>-0     (-----) [000] .n.1 82320.701822: cpu_idle: state=4294967295 cpu_id=0
159092          <idle>-0     (-----) [000] d..2 82320.701835: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
159093          <idle>-0     (-----) [003] ...1 82320.701843: cpu_idle: state=4294967295 cpu_id=3
159094          <idle>-0     (-----) [003] d..1 82320.701852: cpu_idle: state=0 cpu_id=3
159095          atrace-27823 (27823) [001] d.s4 82320.701867: sched_wakeup: comm=kworker/u16:13 pid=1147 prio=120 target_cpu=000
159096  crtc_event:111-322   (  322) [000] d..2 82320.701877: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=kworker/u16:13 next_pid=1147 next_prio=120
159097          atrace-27823 (27823) [001] d.s3 82320.701883: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
159098          atrace-27823 (27823) [001] d.s4 82320.701927: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
159099  kworker/u16:13-1147  ( 1147) [000] d..2 82320.702062: sched_switch: prev_comm=kworker/u16:13 prev_pid=1147 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
159100  kworker/u16:15-1311  ( 1311) [000] d..2 82320.702092: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159101          <idle>-0     (-----) [000] d..1 82320.702102: cpu_idle: state=0 cpu_id=0
159102          <idle>-0     (-----) [003] ...1 82320.703027: cpu_idle: state=4294967295 cpu_id=3
159103          <idle>-0     (-----) [003] d..1 82320.703033: cpu_idle: state=0 cpu_id=3
159104          <idle>-0     (-----) [000] d.h5 82320.703604: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
159105          <idle>-0     (-----) [000] d.h6 82320.703621: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
159106          <idle>-0     (-----) [003] .n.1 82320.703627: cpu_idle: state=4294967295 cpu_id=3
159107          <idle>-0     (-----) [000] ...1 82320.703637: cpu_idle: state=4294967295 cpu_id=0
159108          <idle>-0     (-----) [003] d..2 82320.703638: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
159109          <idle>-0     (-----) [000] d..1 82320.703642: cpu_idle: state=0 cpu_id=0
159110 crtc_commit:111-321   (  321) [003] d..2 82320.703716: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159111          <idle>-0     (-----) [003] d..1 82320.703729: cpu_idle: state=0 cpu_id=3
159112          <idle>-0     (-----) [000] d.h5 82320.703901: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159113          <idle>-0     (-----) [000] dnh6 82320.703912: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159114          <idle>-0     (-----) [000] .n.1 82320.703927: cpu_idle: state=4294967295 cpu_id=0
159115          <idle>-0     (-----) [000] d..2 82320.703935: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
159116  crtc_event:111-322   (  322) [000] d..2 82320.703961: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159117          <idle>-0     (-----) [000] d..1 82320.703970: cpu_idle: state=0 cpu_id=0
159118          atrace-27823 (27823) [001] d.s2 82320.704070: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
159119          atrace-27823 (27823) [001] dns3 82320.704095: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
159120          atrace-27823 (27823) [001] d..2 82320.704121: sched_switch: prev_comm=atrace prev_pid=27823 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
159121     kworker/1:1-25249 (25249) [001] d..2 82320.704178: sched_waking: [email protected] pid=16588 prio=120 target_cpu=001
159122     kworker/1:1-25249 (25249) [001] d..3 82320.704215: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=000
159123          <idle>-0     (-----) [000] .n.1 82320.704220: cpu_idle: state=4294967295 cpu_id=0
159124          <idle>-0     (-----) [000] d..2 82320.704231: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=16588 next_prio=120
159125     kworker/1:1-25249 (25249) [001] d..2 82320.704258: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27823 next_prio=120
159126          <idle>-0     (-----) [002] ...1 82320.704266: cpu_idle: state=4294967295 cpu_id=2
159127          <idle>-0     (-----) [002] d..1 82320.704274: cpu_idle: state=0 cpu_id=2
159128 [email protected] (  798) [000] d..2 82320.704442: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159129          atrace-27823 (27823) [001] d.s2 82320.704449: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
159130          <idle>-0     (-----) [000] d..1 82320.704454: cpu_idle: state=0 cpu_id=0
159131          atrace-27823 (27823) [001] dns3 82320.704466: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
159132          atrace-27823 (27823) [001] d..2 82320.704490: sched_switch: prev_comm=atrace prev_pid=27823 prev_prio=120 prev_state=R+ ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
159133     kworker/1:1-25249 (25249) [001] d..2 82320.704519: sched_waking: [email protected] pid=16588 prio=120 target_cpu=000
159134     kworker/1:1-25249 (25249) [001] d..3 82320.704537: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=000
159135          <idle>-0     (-----) [000] .n.1 82320.704543: cpu_idle: state=4294967295 cpu_id=0
159136          <idle>-0     (-----) [000] d..2 82320.704554: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=16588 next_prio=120
159137     kworker/1:1-25249 (25249) [001] d..2 82320.704562: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27823 next_prio=120
159138 [email protected] (  798) [000] d..2 82320.704688: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159139          <idle>-0     (-----) [000] d..1 82320.704699: cpu_idle: state=0 cpu_id=0
159140          <idle>-0     (-----) [000] d.s2 82320.705134: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159141          <idle>-0     (-----) [000] dns3 82320.705153: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159142          <idle>-0     (-----) [000] .n.1 82320.705165: cpu_idle: state=4294967295 cpu_id=0
159143          <idle>-0     (-----) [000] d..2 82320.705174: 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
159144     rcu_preempt-7     (    7) [000] d..2 82320.705186: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=003
159145     rcu_preempt-7     (    7) [000] d..3 82320.705226: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
159146     rcu_preempt-7     (    7) [000] d..2 82320.705241: 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
159147         rcuop/0-10    (   10) [000] d..2 82320.705247: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=003
159148         rcuop/0-10    (   10) [000] d..3 82320.705289: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
159149         rcuop/0-10    (   10) [000] d..2 82320.705305: 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
159150         rcuop/1-21    (   21) [000] d..2 82320.705336: 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
159151          <idle>-0     (-----) [000] d..1 82320.705351: cpu_idle: state=0 cpu_id=0
159152          atrace-27823 (27823) [001] d.h2 82320.705376: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=001
159153          atrace-27823 (27823) [001] d.h3 82320.705408: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
159154          <idle>-0     (-----) [003] .n.1 82320.705414: cpu_idle: state=4294967295 cpu_id=3
159155          <idle>-0     (-----) [003] d..2 82320.705426: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
159156        DispSync-8879  ( 8858) [003] d..1 82320.705451: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=003
159157        DispSync-8879  ( 8858) [003] d..2 82320.705479: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
159158          <idle>-0     (-----) [000] .n.1 82320.705486: cpu_idle: state=4294967295 cpu_id=0
159159          <idle>-0     (-----) [000] d..2 82320.705498: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
159160        DispSync-8879  ( 8858) [003] d..2 82320.705518: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159161          <idle>-0     (-----) [003] d..1 82320.705531: cpu_idle: state=0 cpu_id=3
159162  appEventThread-8881  ( 8858) [000] d..3 82320.705565: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
159163          <idle>-0     (-----) [004] dnh2 82320.705594: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
159164          <idle>-0     (-----) [004] .n.1 82320.705597: cpu_idle: state=4294967295 cpu_id=4
159165          <idle>-0     (-----) [004] d..2 82320.705606: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
159166  appEventThread-8881  ( 8858) [000] d..2 82320.705632: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159167          <idle>-0     (-----) [000] d..1 82320.705649: cpu_idle: state=0 cpu_id=0
159168          atrace-27823 (27823) [001] d.s2 82320.705712: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
159169          atrace-27823 (27823) [001] dns3 82320.705730: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
159170          atrace-27823 (27823) [001] d..2 82320.705757: sched_switch: prev_comm=atrace prev_pid=27823 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
159171     kworker/1:1-25249 (25249) [001] d..2 82320.705785: sched_waking: [email protected] pid=16588 prio=120 target_cpu=000
159172     kworker/1:1-25249 (25249) [001] d..3 82320.705803: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=000
159173          <idle>-0     (-----) [000] .n.1 82320.705810: cpu_idle: state=4294967295 cpu_id=0
159174          <idle>-0     (-----) [000] d..2 82320.705824: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=16588 next_prio=120
159175     kworker/1:1-25249 (25249) [001] d..2 82320.705829: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27823 next_prio=120
159176 s.nexuslauncher-10023 (10023) [004] .... 82320.705929: binder_transaction: transaction=1573407 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
159177 s.nexuslauncher-10023 (10023) [004] .... 82320.705933: binder_transaction_alloc_buf: transaction=1573407 data_size=80 offsets_size=0
159178 s.nexuslauncher-10023 (10023) [004] d..4 82320.705937: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=004
159179 [email protected] (  798) [000] d..2 82320.705960: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159180          <idle>-0     (-----) [000] d..1 82320.705975: cpu_idle: state=0 cpu_id=0
159181 s.nexuslauncher-10023 (10023) [004] d.h5 82320.705996: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
159182          <idle>-0     (-----) [002] dnh2 82320.706002: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=002
159183          <idle>-0     (-----) [002] .n.1 82320.706010: cpu_idle: state=4294967295 cpu_id=2
159184          <idle>-0     (-----) [003] dnh2 82320.706021: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
159185          <idle>-0     (-----) [002] d..2 82320.706026: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
159186          <idle>-0     (-----) [003] .n.1 82320.706028: cpu_idle: state=4294967295 cpu_id=3
159187   Binder:8858_1-8871  ( 8858) [002] .... 82320.706034: binder_transaction_received: transaction=1573407
159188 s.nexuslauncher-10023 (10023) [004] d..3 82320.706037: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=004
159189          <idle>-0     (-----) [003] d..2 82320.706038: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
159190 s.nexuslauncher-10023 (10023) [004] d..4 82320.706056: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
159191          <idle>-0     (-----) [005] .n.1 82320.706062: cpu_idle: state=4294967295 cpu_id=5
159192         sugov:0-576   (  576) [003] .... 82320.706069: clk_set_rate: pwrcl_clk 1766400000
159193   Binder:8858_1-8871  ( 8858) [002] d..1 82320.706070: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
159194          <idle>-0     (-----) [005] d..2 82320.706070: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
159195   Binder:8858_1-8871  ( 8858) [002] d..2 82320.706089: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
159196          <idle>-0     (-----) [000] .n.1 82320.706096: cpu_idle: state=4294967295 cpu_id=0
159197          <idle>-0     (-----) [000] d..2 82320.706107: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
159198    RenderThread-16607 (10023) [005] d..2 82320.706109: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
159199          <idle>-0     (-----) [005] d..1 82320.706119: cpu_idle: state=0 cpu_id=5
159200   Binder:8858_1-8871  ( 8858) [002] d..2 82320.706139: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
159201          <idle>-0     (-----) [002] d..1 82320.706154: cpu_idle: state=0 cpu_id=2
159202  appEventThread-8881  ( 8858) [000] d..2 82320.706161: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159203         sugov:0-576   (  576) [003] d..2 82320.706173: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=swapper/3 next_pid=0 next_prio=120
159204          <idle>-0     (-----) [000] d..1 82320.706174: cpu_idle: state=0 cpu_id=0
159205          <idle>-0     (-----) [003] d..1 82320.706185: cpu_idle: state=0 cpu_id=3
159206          atrace-27823 (27823) [001] d.s2 82320.706189: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
159207          atrace-27823 (27823) [001] d.s3 82320.706212: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=003
159208          <idle>-0     (-----) [003] .n.1 82320.706218: cpu_idle: state=4294967295 cpu_id=3
159209          <idle>-0     (-----) [003] d..2 82320.706228: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
159210         sugov:0-576   (  576) [003] .... 82320.706244: clk_set_rate: cpu3_pwrcl_clk 748800000
159211         sugov:0-576   (  576) [003] .... 82320.706254: clk_set_rate: cpu2_pwrcl_clk 748800000
159212         sugov:0-576   (  576) [003] .... 82320.706262: clk_set_rate: cpu1_pwrcl_clk 748800000
159213          atrace-27823 (27823) [001] d.s2 82320.706262: sched_waking: comm=cds_mc_thread pid=16565 prio=118 target_cpu=001
159214         sugov:0-576   (  576) [003] .... 82320.706270: clk_set_rate: cpu0_pwrcl_clk 1766400000
159215         sugov:0-576   (  576) [003] .... 82320.706280: cpu_frequency: state=1766400 cpu_id=0
159216          atrace-27823 (27823) [001] d.s3 82320.706313: sched_wakeup: comm=cds_mc_thread pid=16565 prio=118 target_cpu=003
159217 s.nexuslauncher-10023 (10023) [004] d..3 82320.706334: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
159218          atrace-27823 (27823) [001] d.s2 82320.706334: sched_waking: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
159219          atrace-27823 (27823) [001] dns3 82320.706347: sched_wakeup: comm=kworker/1:1 pid=25249 prio=120 target_cpu=001
159220 s.nexuslauncher-10023 (10023) [004] d..4 82320.706349: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
159221          <idle>-0     (-----) [005] .n.1 82320.706354: cpu_idle: state=4294967295 cpu_id=5
159222          <idle>-0     (-----) [005] d..2 82320.706362: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
159223          atrace-27823 (27823) [001] d..2 82320.706366: sched_switch: prev_comm=atrace prev_pid=27823 prev_prio=120 prev_state=R ==> next_comm=kworker/1:1 next_pid=25249 next_prio=120
159224 s.nexuslauncher-10023 (10023) [004] d..2 82320.706373: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
159225     kworker/1:1-25249 (25249) [001] d..2 82320.706386: sched_waking: [email protected] pid=16588 prio=120 target_cpu=000
159226          <idle>-0     (-----) [004] d..1 82320.706386: cpu_idle: state=0 cpu_id=4
159227     kworker/1:1-25249 (25249) [001] d..3 82320.706397: sched_wakeup: [email protected] pid=16588 prio=120 target_cpu=000
159228          <idle>-0     (-----) [000] .n.1 82320.706402: cpu_idle: state=4294967295 cpu_id=0
159229          <idle>-0     (-----) [000] d..2 82320.706410: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=16588 next_prio=120
159230     kworker/1:1-25249 (25249) [001] d..2 82320.706412: sched_switch: prev_comm=kworker/1:1 prev_pid=25249 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27823 next_prio=120
159231         sugov:0-576   (  576) [003] d..2 82320.706436: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=D ==> next_comm=cds_mc_thread next_pid=16565 next_prio=118
159232          atrace-27823 (27823) [001] d.s2 82320.706467: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=003
159233 [email protected] (  798) [000] d..2 82320.706483: sched_switch: [email protected] prev_pid=16588 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159234          atrace-27823 (27823) [001] d.s3 82320.706490: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
159235          <idle>-0     (-----) [000] d..2 82320.706495: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
159236    RenderThread-16607 (10023) [005] d..1 82320.706495: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
159237   cds_mc_thread-16565 (16565) [003] d..2 82320.706506: sched_switch: prev_comm=cds_mc_thread prev_pid=16565 prev_prio=118 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159238    RenderThread-16607 (10023) [005] d..2 82320.706508: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
159239         sugov:0-576   (  576) [000] .... 82320.706509: cpu_frequency: state=1766400 cpu_id=1
159240          <idle>-0     (-----) [004] .n.1 82320.706514: cpu_idle: state=4294967295 cpu_id=4
159241         sugov:0-576   (  576) [000] .... 82320.706515: cpu_frequency: state=1766400 cpu_id=2
159242          <idle>-0     (-----) [003] d..1 82320.706515: cpu_idle: state=0 cpu_id=3
159243         sugov:0-576   (  576) [000] .... 82320.706517: cpu_frequency: state=1766400 cpu_id=3
159244          <idle>-0     (-----) [004] d..2 82320.706523: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
159245         sugov:0-576   (  576) [000] d..2 82320.706532: sched_switch: prev_comm=sugov:0 prev_pid=576 prev_prio=49 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159246          <idle>-0     (-----) [000] d..1 82320.706539: cpu_idle: state=0 cpu_id=0
159247    RenderThread-16607 (10023) [005] .... 82320.706551: binder_transaction: transaction=1573408 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
159248    RenderThread-16607 (10023) [005] .... 82320.706554: binder_transaction_alloc_buf: transaction=1573408 data_size=104 offsets_size=0
159249    RenderThread-16607 (10023) [005] ...2 82320.706558: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
159250    RenderThread-16607 (10023) [005] d..4 82320.706561: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=002
159251    RenderThread-16607 (10023) [005] dn.5 82320.706579: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
159252    RenderThread-16607 (10023) [005] d..2 82320.706615: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
159253   Binder:8858_1-8871  ( 8858) [005] .... 82320.706628: binder_transaction_received: transaction=1573408
159254 s.nexuslauncher-10023 (10023) [004] d..2 82320.706635: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
159255          <idle>-0     (-----) [004] d..1 82320.706645: cpu_idle: state=0 cpu_id=4
159256   Binder:8858_1-8871  ( 8858) [005] .... 82320.706684: binder_transaction: transaction=1573409 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
159257   Binder:8858_1-8871  ( 8858) [005] .... 82320.706687: binder_transaction_alloc_buf: transaction=1573409 data_size=52 offsets_size=8
159258   Binder:8858_1-8871  ( 8858) [005] .... 82320.706694: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
159259   Binder:8858_1-8871  ( 8858) [005] d..2 82320.706729: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
159260    RenderThread-16607 (10023) [005] .... 82320.706739: binder_transaction_received: transaction=1573409
159261    RenderThread-16607 (10023) [005] d..2 82320.708153: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
159262          <idle>-0     (-----) [005] d..1 82320.708167: cpu_idle: state=0 cpu_id=5
159263          <idle>-0     (-----) [005] d.h2 82320.708241: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
159264          <idle>-0     (-----) [005] d.h3 82320.708249: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
159265          <idle>-0     (-----) [005] dnh3 82320.708253: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
159266          <idle>-0     (-----) [005] .n.1 82320.708259: cpu_idle: state=4294967295 cpu_id=5
159267          <idle>-0     (-----) [005] d..2 82320.708267: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
159268    RenderThread-16607 (10023) [005] .... 82320.708416: binder_transaction: transaction=1573410 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
159269    RenderThread-16607 (10023) [005] .... 82320.708419: binder_transaction_alloc_buf: transaction=1573410 data_size=192 offsets_size=8
159270    RenderThread-16607 (10023) [005] ...2 82320.708426: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
159271    RenderThread-16607 (10023) [005] d..4 82320.708429: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
159272    RenderThread-16607 (10023) [005] dn.5 82320.708438: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
159273    RenderThread-16607 (10023) [005] d..2 82320.708476: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
159274   Binder:8858_1-8871  ( 8858) [005] .... 82320.708487: binder_transaction_received: transaction=1573410
159275   Binder:8858_1-8871  ( 8858) [005] .... 82320.708610: binder_transaction: transaction=1573411 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
159276   Binder:8858_1-8871  ( 8858) [005] .... 82320.708614: binder_transaction_alloc_buf: transaction=1573411 data_size=68 offsets_size=0
159277   Binder:8858_1-8871  ( 8858) [005] .... 82320.708617: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
159278   Binder:8858_1-8871  ( 8858) [005] d..2 82320.708651: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
159279    RenderThread-16607 (10023) [005] .... 82320.708661: binder_transaction_received: transaction=1573411
159280    RenderThread-16607 (10023) [005] d..2 82320.708729: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
159281          <idle>-0     (-----) [005] d..1 82320.708742: cpu_idle: state=0 cpu_id=5
159282          <idle>-0     (-----) [003] d.h2 82320.709388: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
159283          <idle>-0     (-----) [003] dnh3 82320.709399: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
159284          <idle>-0     (-----) [003] .n.1 82320.709404: cpu_idle: state=4294967295 cpu_id=3
159285          <idle>-0     (-----) [003] d..2 82320.709411: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
159286        DispSync-8879  ( 8858) [003] d..1 82320.709425: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=003
159287        DispSync-8879  ( 8858) [003] d..2 82320.709442: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
159288          <idle>-0     (-----) [000] .n.1 82320.709447: cpu_idle: state=4294967295 cpu_id=0
159289          <idle>-0     (-----) [000] d..2 82320.709455: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
159290        DispSync-8879  ( 8858) [003] d..2 82320.709464: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159291          <idle>-0     (-----) [003] d..1 82320.709473: cpu_idle: state=0 cpu_id=3
159292   sfEventThread-8882  ( 8858) [000] d..3 82320.709496: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
159293   sfEventThread-8882  ( 8858) [000] d..4 82320.709510: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
159294          <idle>-0     (-----) [002] .n.1 82320.709514: cpu_idle: state=4294967295 cpu_id=2
159295          <idle>-0     (-----) [002] d..2 82320.709522: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
159296   sfEventThread-8882  ( 8858) [000] d..2 82320.709533: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159297          <idle>-0     (-----) [000] d..1 82320.709540: cpu_idle: state=0 cpu_id=0
159298          <idle>-0     (-----) [000] d.h3 82320.709689: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
159299          <idle>-0     (-----) [000] d.h4 82320.709701: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
159300          <idle>-0     (-----) [003] .n.1 82320.709706: cpu_idle: state=4294967295 cpu_id=3
159301          <idle>-0     (-----) [000] ...1 82320.709711: cpu_idle: state=4294967295 cpu_id=0
159302          <idle>-0     (-----) [003] d..2 82320.709712: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
159303          <idle>-0     (-----) [000] d..1 82320.709714: cpu_idle: state=0 cpu_id=0
159304 kgsl_worker_thr-258   (  258) [003] d..2 82320.709760: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
159305 kgsl_worker_thr-258   (  258) [003] d..3 82320.709788: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
159306  surfaceflinger-8858  ( 8858) [002] d..1 82320.709803: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
159307 kgsl_worker_thr-258   (  258) [003] d..2 82320.709805: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
159308  surfaceflinger-8858  ( 8858) [002] d..2 82320.709817: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=000
159309          <idle>-0     (-----) [000] .n.1 82320.709821: cpu_idle: state=4294967295 cpu_id=0
159310          <idle>-0     (-----) [000] d..2 82320.709826: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
159311   sfEventThread-8882  ( 8858) [000] d..2 82320.709851: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159312          <idle>-0     (-----) [000] d..1 82320.709856: cpu_idle: state=0 cpu_id=0
159313  kworker/u16:15-1311  ( 1311) [003] d..2 82320.709985: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159314          <idle>-0     (-----) [003] d..1 82320.709995: cpu_idle: state=0 cpu_id=3
159315  surfaceflinger-8858  ( 8858) [002] ...1 82320.709998: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
159316  surfaceflinger-8858  ( 8858) [002] ...1 82320.710003: tracing_mark_write: E|8858
159317  surfaceflinger-8858  ( 8858) [002] .... 82320.710087: binder_transaction: transaction=1573412 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
159318  surfaceflinger-8858  ( 8858) [002] .... 82320.710090: binder_transaction_alloc_buf: transaction=1573412 data_size=540 offsets_size=96
159319  surfaceflinger-8858  ( 8858) [002] ...2 82320.710108: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
159320  surfaceflinger-8858  ( 8858) [002] d..4 82320.710116: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
159321  surfaceflinger-8858  ( 8858) [002] d..5 82320.710130: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=003
159322          <idle>-0     (-----) [003] .n.1 82320.710135: cpu_idle: state=4294967295 cpu_id=3
159323          <idle>-0     (-----) [003] d..2 82320.710142: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
159324 [email protected]   (  619) [003] .... 82320.710150: binder_transaction_received: transaction=1573412
159325  surfaceflinger-8858  ( 8858) [002] d..2 82320.710153: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
159326          <idle>-0     (-----) [002] d..1 82320.710164: cpu_idle: state=0 cpu_id=2
159327 [email protected]   (  619) [003] ...1 82320.710196: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
159328 [email protected]   (  619) [003] ...1 82320.710289: tracing_mark_write: B|619|HWCSession::PresentDisplay::
159329 [email protected]   (  619) [003] ...1 82320.710421: tracing_mark_write: B|619|HWDeviceDRM::Commit::
159330 [email protected]   (  619) [003] ...1 82320.710430: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
159331 [email protected]   (  619) [003] d..2 82320.710841: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=003
159332 [email protected]   (  619) [003] d..3 82320.710865: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
159333          <idle>-0     (-----) [000] .n.1 82320.710869: cpu_idle: state=4294967295 cpu_id=0
159334          <idle>-0     (-----) [000] d..2 82320.710874: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
159335 [email protected]   (  619) [003] ...1 82320.710939: tracing_mark_write: E|619
159336 [email protected]   (  619) [003] ...1 82320.710943: tracing_mark_write: E|619
159337 [email protected]   (  619) [003] ...1 82320.710987: tracing_mark_write: E|619
159338 [email protected]   (  619) [003] ...1 82320.711023: tracing_mark_write: E|619
159339 [email protected]   (  619) [003] .... 82320.711036: binder_transaction: transaction=1573413 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
159340 [email protected]   (  619) [003] .... 82320.711038: binder_transaction_alloc_buf: transaction=1573413 data_size=576 offsets_size=112
159341 [email protected]   (  619) [003] d..2 82320.711052: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
159342 [email protected]   (  619) [003] d..3 82320.711064: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
159343 [email protected]   (  619) [003] .... 82320.711067: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
159344          <idle>-0     (-----) [002] .n.1 82320.711070: cpu_idle: state=4294967295 cpu_id=2
159345          <idle>-0     (-----) [002] d..2 82320.711076: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
159346  surfaceflinger-8858  ( 8858) [002] .... 82320.711082: binder_transaction_received: transaction=1573413
159347 [email protected]   (  619) [003] d..2 82320.711125: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159348          <idle>-0     (-----) [003] d..1 82320.711137: cpu_idle: state=0 cpu_id=3
159349  surfaceflinger-8858  ( 8858) [002] d..2 82320.711374: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
159350          <idle>-0     (-----) [002] d..1 82320.711386: cpu_idle: state=0 cpu_id=2
159351 crtc_commit:111-321   (  321) [000] d..2 82320.711523: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
159352          <idle>-0     (-----) [000] d..1 82320.711530: cpu_idle: state=0 cpu_id=0
159353          atrace-27823 (27823) [001] d.s2 82320.711835: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
159354          <idle>-0     (-----) [000] d.s2 82320.711848: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159355          atrace-27823 (27823) [001] d.s3 82320.711851: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
159356          <idle>-0     (-----) [003] .n.1 82320.711858: cpu_idle: state=4294967295 cpu_id=3
159357          <idle>-0     (-----) [000] dns3 82320.711862: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159358          <idle>-0     (-----) [003] d..2 82320.711867: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
159359          <idle>-0     (-----) [000] .n.1 82320.711875: cpu_idle: state=4294967295 cpu_id=0
159360          <idle>-0     (-----) [000] d..2 82320.711882: 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
159361     rcu_preempt-7     (    7) [000] d..2 82320.711904: 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
159362          <idle>-0     (-----) [000] d..1 82320.711913: cpu_idle: state=0 cpu_id=0
159363  kworker/u16:15-1311  ( 1311) [003] .... 82320.711983: clk_set_rate: l3_cluster0_vote_clk 1036800000
159364  kworker/u16:15-1311  ( 1311) [003] .... 82320.711989: clk_set_rate: l3_clk 1036800000
159365  kworker/u16:15-1311  ( 1311) [003] d..2 82320.712044: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159366          <idle>-0     (-----) [003] d..1 82320.712054: cpu_idle: state=0 cpu_id=3
159367          <idle>-0     (-----) [003] ...1 82320.713341: cpu_idle: state=4294967295 cpu_id=3
159368          <idle>-0     (-----) [003] d..1 82320.713343: cpu_idle: state=0 cpu_id=3
159369          <idle>-0     (-----) [000] d.h5 82320.717718: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159370          <idle>-0     (-----) [000] dnh6 82320.717726: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159371          <idle>-0     (-----) [000] dnh5 82320.717729: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=000
159372          <idle>-0     (-----) [000] dnh6 82320.717742: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
159373          <idle>-0     (-----) [002] .n.1 82320.717747: cpu_idle: state=4294967295 cpu_id=2
159374          <idle>-0     (-----) [000] .n.1 82320.717751: cpu_idle: state=4294967295 cpu_id=0
159375          <idle>-0     (-----) [002] d..2 82320.717754: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
159376          <idle>-0     (-----) [000] d..2 82320.717757: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
159377  crtc_event:111-322   (  322) [000] d..2 82320.717777: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159378          <idle>-0     (-----) [000] d..1 82320.717781: cpu_idle: state=0 cpu_id=0
159379 crtc_commit:111-321   (  321) [002] d..2 82320.717874: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
159380          <idle>-0     (-----) [002] d..1 82320.717879: cpu_idle: state=0 cpu_id=2
159381          <idle>-0     (-----) [000] d.s2 82320.718453: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159382          <idle>-0     (-----) [002] d.s3 82320.718457: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159383          atrace-27823 (27823) [001] d.s2 82320.718459: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=003
159384          <idle>-0     (-----) [000] dns3 82320.718463: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159385          <idle>-0     (-----) [002] d.s4 82320.718466: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159386          <idle>-0     (-----) [000] .n.1 82320.718472: cpu_idle: state=4294967295 cpu_id=0
159387          <idle>-0     (-----) [000] d..2 82320.718476: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
159388          <idle>-0     (-----) [002] ...1 82320.718481: cpu_idle: state=4294967295 cpu_id=2
159389          <idle>-0     (-----) [002] d..1 82320.718485: cpu_idle: state=0 cpu_id=2
159390  crtc_event:111-322   (  322) [000] d..2 82320.718487: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=rcu_preempt next_pid=7 next_prio=120
159391          atrace-27823 (27823) [001] d.s3 82320.718494: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
159392     rcu_preempt-7     (    7) [000] d..2 82320.718494: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
159393     rcu_preempt-7     (    7) [000] d..3 82320.718506: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=000
159394     rcu_preempt-7     (    7) [000] d..2 82320.718515: 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
159395         rcuop/2-29    (   29) [000] d..2 82320.718541: sched_switch: prev_comm=rcuop/2 prev_pid=29 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
159396  kworker/u16:15-1311  ( 1311) [000] d..2 82320.718595: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159397          <idle>-0     (-----) [000] d..1 82320.718602: cpu_idle: state=0 cpu_id=0
159398          <idle>-0     (-----) [000] d.h5 82320.720066: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
159399          <idle>-0     (-----) [000] d.h6 82320.720076: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
159400          <idle>-0     (-----) [002] .n.1 82320.720081: cpu_idle: state=4294967295 cpu_id=2
159401          <idle>-0     (-----) [000] ...1 82320.720085: cpu_idle: state=4294967295 cpu_id=0
159402          <idle>-0     (-----) [002] d..2 82320.720086: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
159403          <idle>-0     (-----) [000] d..1 82320.720087: cpu_idle: state=0 cpu_id=0
159404 crtc_commit:111-321   (  321) [002] d..2 82320.720133: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
159405          <idle>-0     (-----) [002] d..1 82320.720139: cpu_idle: state=0 cpu_id=2
159406          <idle>-0     (-----) [000] d.h5 82320.720364: sched_waking: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159407          <idle>-0     (-----) [000] dnh6 82320.720370: sched_wakeup: comm=crtc_event:111 pid=322 prio=83 target_cpu=000
159408          <idle>-0     (-----) [000] .n.1 82320.720379: cpu_idle: state=4294967295 cpu_id=0
159409          <idle>-0     (-----) [000] d..2 82320.720385: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_event:111 next_pid=322 next_prio=83
159410  crtc_event:111-322   (  322) [000] d..2 82320.720398: sched_switch: prev_comm=crtc_event:111 prev_pid=322 prev_prio=83 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159411          <idle>-0     (-----) [000] d..1 82320.720404: cpu_idle: state=0 cpu_id=0
159412          atrace-27823 (27823) [001] d.s2 82320.721791: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
159413          atrace-27823 (27823) [001] dns3 82320.721814: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
159414          atrace-27823 (27823) [001] d..2 82320.721824: sched_switch: prev_comm=atrace prev_pid=27823 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
159415          <idle>-0     (-----) [003] d.h2 82320.721836: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
159416          <idle>-0     (-----) [003] dnh3 82320.721844: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
159417          <idle>-0     (-----) [003] .n.1 82320.721849: cpu_idle: state=4294967295 cpu_id=3
159418  kworker/u16:15-1311  ( 1311) [001] .... 82320.721853: clk_set_rate: l3_cluster0_vote_clk 1401600000
159419          <idle>-0     (-----) [003] d..2 82320.721855: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
159420  kworker/u16:15-1311  ( 1311) [001] .... 82320.721856: clk_set_rate: l3_clk 1401600000
159421        DispSync-8879  ( 8858) [003] d..1 82320.721867: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
159422        DispSync-8879  ( 8858) [003] d..2 82320.721878: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=000
159423          <idle>-0     (-----) [000] .n.1 82320.721883: cpu_idle: state=4294967295 cpu_id=0
159424          <idle>-0     (-----) [000] d..2 82320.721890: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
159425        DispSync-8879  ( 8858) [003] d..2 82320.721908: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159426          <idle>-0     (-----) [003] d..1 82320.721926: cpu_idle: state=0 cpu_id=3
159427  appEventThread-8881  ( 8858) [000] d..3 82320.721929: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
159428          <idle>-0     (-----) [004] dnh2 82320.721948: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
159429          <idle>-0     (-----) [004] .n.1 82320.721953: cpu_idle: state=4294967295 cpu_id=4
159430  appEventThread-8881  ( 8858) [000] d..2 82320.721960: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159431          <idle>-0     (-----) [004] d..2 82320.721961: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
159432          <idle>-0     (-----) [000] d..1 82320.721965: cpu_idle: state=0 cpu_id=0
159433  kworker/u16:15-1311  ( 1311) [001] d..2 82320.722028: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=atrace next_pid=27823 next_prio=120
159434          atrace-27823 (27823) [001] d.s2 82320.722059: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
159435          atrace-27823 (27823) [001] d.s3 82320.722068: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
159436          atrace-27823 (27823) [001] dns3 82320.722071: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
159437          atrace-27823 (27823) [001] d..2 82320.722076: sched_switch: prev_comm=atrace prev_pid=27823 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
159438  kworker/u16:15-1311  ( 1311) [001] d..2 82320.722086: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27823 next_prio=120
159439 s.nexuslauncher-10023 (10023) [004] .... 82320.722160: binder_transaction: transaction=1573414 dest_node=1159990 dest_proc=8858 dest_thread=0 reply=0 flags=0x11 code=0x3
159440 s.nexuslauncher-10023 (10023) [004] .... 82320.722165: binder_transaction_alloc_buf: transaction=1573414 data_size=80 offsets_size=0
159441 s.nexuslauncher-10023 (10023) [004] d..4 82320.722168: sched_waking: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=005
159442          <idle>-0     (-----) [000] dnh2 82320.722220: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=120 target_cpu=000
159443          <idle>-0     (-----) [000] .n.1 82320.722223: cpu_idle: state=4294967295 cpu_id=0
159444          <idle>-0     (-----) [000] d..2 82320.722228: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=120
159445   Binder:8858_1-8871  ( 8858) [000] .... 82320.722232: binder_transaction_received: transaction=1573414
159446 s.nexuslauncher-10023 (10023) [004] d..3 82320.722240: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
159447   Binder:8858_1-8871  ( 8858) [000] d..1 82320.722250: sched_waking: comm=appEventThread pid=8881 prio=97 target_cpu=000
159448 s.nexuslauncher-10023 (10023) [004] d..4 82320.722255: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
159449          <idle>-0     (-----) [005] .n.1 82320.722260: cpu_idle: state=4294967295 cpu_id=5
159450   Binder:8858_1-8871  ( 8858) [000] d..2 82320.722264: sched_wakeup: comm=appEventThread pid=8881 prio=97 target_cpu=003
159451          <idle>-0     (-----) [003] .n.1 82320.722268: cpu_idle: state=4294967295 cpu_id=3
159452          <idle>-0     (-----) [005] d..2 82320.722269: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
159453          <idle>-0     (-----) [003] d..2 82320.722274: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=appEventThread next_pid=8881 next_prio=97
159454   Binder:8858_1-8871  ( 8858) [000] d..2 82320.722285: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159455          <idle>-0     (-----) [000] d..1 82320.722290: cpu_idle: state=0 cpu_id=0
159456    RenderThread-16607 (10023) [005] d..2 82320.722295: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
159457  appEventThread-8881  ( 8858) [003] d..2 82320.722301: sched_switch: prev_comm=appEventThread prev_pid=8881 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159458          <idle>-0     (-----) [005] d..1 82320.722302: cpu_idle: state=0 cpu_id=5
159459          <idle>-0     (-----) [003] d..1 82320.722306: cpu_idle: state=0 cpu_id=3
159460 s.nexuslauncher-10023 (10023) [004] d..3 82320.722460: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
159461 s.nexuslauncher-10023 (10023) [004] d..4 82320.722474: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
159462          <idle>-0     (-----) [005] .n.1 82320.722479: cpu_idle: state=4294967295 cpu_id=5
159463          <idle>-0     (-----) [005] d..2 82320.722485: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
159464 s.nexuslauncher-10023 (10023) [004] d..2 82320.722494: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
159465          <idle>-0     (-----) [004] d..1 82320.722505: cpu_idle: state=0 cpu_id=4
159466    RenderThread-16607 (10023) [005] d..1 82320.722632: sched_waking: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
159467    RenderThread-16607 (10023) [005] d..2 82320.722645: sched_wakeup: comm=s.nexuslauncher pid=10023 prio=110 target_cpu=004
159468          <idle>-0     (-----) [004] .n.1 82320.722650: cpu_idle: state=4294967295 cpu_id=4
159469          <idle>-0     (-----) [004] d..2 82320.722658: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=s.nexuslauncher next_pid=10023 next_prio=110
159470    RenderThread-16607 (10023) [005] .... 82320.722684: binder_transaction: transaction=1573415 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x2
159471    RenderThread-16607 (10023) [005] .... 82320.722687: binder_transaction_alloc_buf: transaction=1573415 data_size=104 offsets_size=0
159472    RenderThread-16607 (10023) [005] ...2 82320.722690: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
159473    RenderThread-16607 (10023) [005] d..4 82320.722692: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=000
159474    RenderThread-16607 (10023) [005] dn.5 82320.722708: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
159475    RenderThread-16607 (10023) [005] d..2 82320.722743: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
159476   Binder:8858_1-8871  ( 8858) [005] .... 82320.722754: binder_transaction_received: transaction=1573415
159477 s.nexuslauncher-10023 (10023) [004] d..2 82320.722759: sched_switch: prev_comm=s.nexuslauncher prev_pid=10023 prev_prio=110 prev_state=S ==> next_comm=swapper/4 next_pid=0 next_prio=120
159478          <idle>-0     (-----) [004] d..1 82320.722768: cpu_idle: state=0 cpu_id=4
159479   Binder:8858_1-8871  ( 8858) [005] .... 82320.722800: binder_transaction: transaction=1573416 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
159480   Binder:8858_1-8871  ( 8858) [005] .... 82320.722804: binder_transaction_alloc_buf: transaction=1573416 data_size=52 offsets_size=8
159481   Binder:8858_1-8871  ( 8858) [005] .... 82320.722810: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
159482   Binder:8858_1-8871  ( 8858) [005] d..2 82320.722842: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
159483    RenderThread-16607 (10023) [005] .... 82320.722851: binder_transaction_received: transaction=1573416
159484    RenderThread-16607 (10023) [005] d..2 82320.724106: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=D ==> next_comm=swapper/5 next_pid=0 next_prio=120
159485          <idle>-0     (-----) [005] d..1 82320.724116: cpu_idle: state=0 cpu_id=5
159486          <idle>-0     (-----) [005] d.h2 82320.724197: sched_waking: comm=RenderThread pid=16607 prio=110 target_cpu=005
159487          <idle>-0     (-----) [005] d.h3 82320.724203: sched_blocked_reason: pid=16607 iowait=0 caller=a6xx_oob_set+0x194/0x3e0
159488          <idle>-0     (-----) [005] dnh3 82320.724206: sched_wakeup: comm=RenderThread pid=16607 prio=110 target_cpu=005
159489          <idle>-0     (-----) [005] .n.1 82320.724212: cpu_idle: state=4294967295 cpu_id=5
159490          <idle>-0     (-----) [005] d..2 82320.724220: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=RenderThread next_pid=16607 next_prio=110
159491    RenderThread-16607 (10023) [005] .... 82320.724345: binder_transaction: transaction=1573417 dest_node=1571961 dest_proc=8858 dest_thread=0 reply=0 flags=0x10 code=0x6
159492    RenderThread-16607 (10023) [005] .... 82320.724348: binder_transaction_alloc_buf: transaction=1573417 data_size=192 offsets_size=8
159493    RenderThread-16607 (10023) [005] ...2 82320.724354: binder_set_priority: proc=8858 thread=8871 old=120 => new=110 desired=110
159494    RenderThread-16607 (10023) [005] d..4 82320.724356: sched_waking: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
159495    RenderThread-16607 (10023) [005] dn.5 82320.724365: sched_wakeup: comm=Binder:8858_1 pid=8871 prio=110 target_cpu=005
159496    RenderThread-16607 (10023) [005] d..2 82320.724371: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=R+ ==> next_comm=Binder:8858_1 next_pid=8871 next_prio=110
159497   Binder:8858_1-8871  ( 8858) [005] .... 82320.724380: binder_transaction_received: transaction=1573417
159498   Binder:8858_1-8871  ( 8858) [005] .... 82320.724477: binder_transaction: transaction=1573418 dest_node=0 dest_proc=10023 dest_thread=16607 reply=1 flags=0x0 code=0x0
159499   Binder:8858_1-8871  ( 8858) [005] .... 82320.724480: binder_transaction_alloc_buf: transaction=1573418 data_size=68 offsets_size=0
159500   Binder:8858_1-8871  ( 8858) [005] .... 82320.724483: binder_set_priority: proc=8858 thread=8871 old=110 => new=120 desired=120
159501   Binder:8858_1-8871  ( 8858) [005] d..2 82320.724514: sched_switch: prev_comm=Binder:8858_1 prev_pid=8871 prev_prio=120 prev_state=S ==> next_comm=RenderThread next_pid=16607 next_prio=110
159502    RenderThread-16607 (10023) [005] .... 82320.724524: binder_transaction_received: transaction=1573418
159503    RenderThread-16607 (10023) [005] d..2 82320.724577: sched_switch: prev_comm=RenderThread prev_pid=16607 prev_prio=110 prev_state=S ==> next_comm=swapper/5 next_pid=0 next_prio=120
159504          <idle>-0     (-----) [005] d..1 82320.724589: cpu_idle: state=0 cpu_id=5
159505          <idle>-0     (-----) [005] ...1 82320.724836: cpu_idle: state=4294967295 cpu_id=5
159506          <idle>-0     (-----) [005] d..1 82320.724840: cpu_idle: state=0 cpu_id=5
159507          <idle>-0     (-----) [000] d.s2 82320.725122: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159508          atrace-27823 (27823) [001] d.s2 82320.725127: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=001
159509          <idle>-0     (-----) [000] dns3 82320.725131: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159510          <idle>-0     (-----) [000] .n.1 82320.725141: cpu_idle: state=4294967295 cpu_id=0
159511          <idle>-0     (-----) [000] d..2 82320.725146: 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
159512          atrace-27823 (27823) [001] d.s3 82320.725157: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
159513     rcu_preempt-7     (    7) [000] d..2 82320.725163: sched_switch: prev_comm=rcu_preempt prev_pid=7 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
159514          atrace-27823 (27823) [001] d.s2 82320.725166: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159515          atrace-27823 (27823) [001] d.s3 82320.725174: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159516  kworker/u16:15-1311  ( 1311) [000] d..2 82320.725288: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=D ==> next_comm=rcu_preempt next_pid=7 next_prio=120
159517     rcu_preempt-7     (    7) [000] d..2 82320.725292: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
159518     rcu_preempt-7     (    7) [000] d..3 82320.725304: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=000
159519          atrace-27823 (27823) [001] d.s2 82320.725309: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
159520     rcu_preempt-7     (    7) [000] d..2 82320.725312: 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
159521         rcuop/0-10    (   10) [000] d..2 82320.725317: sched_waking: comm=rcuop/1 pid=21 prio=120 target_cpu=000
159522          atrace-27823 (27823) [001] d.s3 82320.725324: sched_blocked_reason: pid=1311 iowait=0 caller=wait_for_tx_done+0x34/0x120
159523          atrace-27823 (27823) [001] d.s3 82320.725327: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
159524         rcuop/0-10    (   10) [000] d..3 82320.725332: sched_wakeup: comm=rcuop/1 pid=21 prio=120 target_cpu=000
159525         rcuop/0-10    (   10) [000] d..2 82320.725359: 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
159526         rcuop/1-21    (   21) [000] d..2 82320.725370: sched_switch: prev_comm=rcuop/1 prev_pid=21 prev_prio=120 prev_state=S ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
159527  kworker/u16:15-1311  ( 1311) [000] d..2 82320.725388: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159528          <idle>-0     (-----) [000] d..1 82320.725396: cpu_idle: state=0 cpu_id=0
159529          <idle>-0     (-----) [000] d.h3 82320.725638: sched_waking: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
159530          <idle>-0     (-----) [000] d.h4 82320.725651: sched_wakeup: comm=kgsl_worker_thr pid=258 prio=97 target_cpu=003
159531          <idle>-0     (-----) [003] .n.1 82320.725655: cpu_idle: state=4294967295 cpu_id=3
159532          <idle>-0     (-----) [000] ...1 82320.725660: cpu_idle: state=4294967295 cpu_id=0
159533          <idle>-0     (-----) [003] d..2 82320.725661: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kgsl_worker_thr next_pid=258 next_prio=97
159534          <idle>-0     (-----) [000] d..1 82320.725663: cpu_idle: state=0 cpu_id=0
159535 kgsl_worker_thr-258   (  258) [003] d..2 82320.725701: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
159536 kgsl_worker_thr-258   (  258) [003] d..3 82320.725712: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
159537          <idle>-0     (-----) [000] .n.1 82320.725716: cpu_idle: state=4294967295 cpu_id=0
159538          <idle>-0     (-----) [000] d..2 82320.725723: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
159539 kgsl_worker_thr-258   (  258) [003] d..2 82320.725730: sched_switch: prev_comm=kgsl_worker_thr prev_pid=258 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159540          <idle>-0     (-----) [003] d..1 82320.725736: cpu_idle: state=0 cpu_id=3
159541          <idle>-0     (-----) [003] d.h2 82320.725832: sched_waking: comm=DispSync pid=8879 prio=97 target_cpu=003
159542          <idle>-0     (-----) [003] dnh3 82320.725838: sched_wakeup: comm=DispSync pid=8879 prio=97 target_cpu=003
159543          <idle>-0     (-----) [003] .n.1 82320.725842: cpu_idle: state=4294967295 cpu_id=3
159544          <idle>-0     (-----) [003] d..2 82320.725847: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=DispSync next_pid=8879 next_prio=97
159545        DispSync-8879  ( 8858) [003] d..1 82320.725856: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=000
159546        DispSync-8879  ( 8858) [003] d..2 82320.725870: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
159547          <idle>-0     (-----) [002] .n.1 82320.725875: cpu_idle: state=4294967295 cpu_id=2
159548          <idle>-0     (-----) [002] d..2 82320.725881: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
159549  kworker/u16:15-1311  ( 1311) [000] d..2 82320.725885: sched_switch: prev_comm=kworker/u16:15 prev_pid=1311 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159550        DispSync-8879  ( 8858) [003] d..2 82320.725886: sched_switch: prev_comm=DispSync prev_pid=8879 prev_prio=97 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159551          <idle>-0     (-----) [000] d..1 82320.725891: cpu_idle: state=0 cpu_id=0
159552          <idle>-0     (-----) [003] d..1 82320.725892: cpu_idle: state=0 cpu_id=3
159553   sfEventThread-8882  ( 8858) [002] d..3 82320.725911: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=002
159554   sfEventThread-8882  ( 8858) [002] d..4 82320.725928: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
159555          <idle>-0     (-----) [003] .n.1 82320.725933: cpu_idle: state=4294967295 cpu_id=3
159556          <idle>-0     (-----) [003] d..2 82320.725938: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
159557   sfEventThread-8882  ( 8858) [002] d..2 82320.725946: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
159558          <idle>-0     (-----) [002] d..1 82320.725952: cpu_idle: state=0 cpu_id=2
159559  surfaceflinger-8858  ( 8858) [003] d..1 82320.726187: sched_waking: comm=sfEventThread pid=8882 prio=97 target_cpu=002
159560  surfaceflinger-8858  ( 8858) [003] d..2 82320.726199: sched_wakeup: comm=sfEventThread pid=8882 prio=97 target_cpu=002
159561          <idle>-0     (-----) [002] .n.1 82320.726204: cpu_idle: state=4294967295 cpu_id=2
159562          <idle>-0     (-----) [002] d..2 82320.726209: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sfEventThread next_pid=8882 next_prio=97
159563   sfEventThread-8882  ( 8858) [002] d..2 82320.726226: sched_switch: prev_comm=sfEventThread prev_pid=8882 prev_prio=97 prev_state=S ==> next_comm=swapper/2 next_pid=0 next_prio=120
159564          <idle>-0     (-----) [002] d..1 82320.726231: cpu_idle: state=0 cpu_id=2
159565  surfaceflinger-8858  ( 8858) [003] ...1 82320.726330: tracing_mark_write: B|8858|HIDL::IComposerClient::executeCommands_2_2::client
159566  surfaceflinger-8858  ( 8858) [003] ...1 82320.726335: tracing_mark_write: E|8858
159567  surfaceflinger-8858  ( 8858) [003] .... 82320.726376: binder_transaction: transaction=1573419 dest_node=395363 dest_proc=619 dest_thread=0 reply=0 flags=0x10 code=0x23
159568  surfaceflinger-8858  ( 8858) [003] .... 82320.726379: binder_transaction_alloc_buf: transaction=1573419 data_size=540 offsets_size=96
159569  surfaceflinger-8858  ( 8858) [003] ...2 82320.726397: binder_set_priority: proc=619 thread=619 old=97 => new=98 desired=98
159570  surfaceflinger-8858  ( 8858) [003] d..4 82320.726403: sched_waking: [email protected] pid=619 prio=98 target_cpu=003
159571  surfaceflinger-8858  ( 8858) [003] d..5 82320.726420: sched_wakeup: [email protected] pid=619 prio=98 target_cpu=000
159572          <idle>-0     (-----) [000] .n.1 82320.726424: cpu_idle: state=4294967295 cpu_id=0
159573          <idle>-0     (-----) [000] d..2 82320.726430: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> [email protected] next_pid=619 next_prio=98
159574  surfaceflinger-8858  ( 8858) [003] d..2 82320.726435: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159575 [email protected]   (  619) [000] .... 82320.726437: binder_transaction_received: transaction=1573419
159576          <idle>-0     (-----) [003] d..1 82320.726444: cpu_idle: state=0 cpu_id=3
159577 [email protected]   (  619) [000] ...1 82320.726479: tracing_mark_write: B|619|HIDL::IComposerClient::executeCommands_2_2::server
159578 [email protected]   (  619) [000] ...1 82320.726563: tracing_mark_write: B|619|HWCSession::PresentDisplay::
159579 [email protected]   (  619) [000] ...1 82320.726681: tracing_mark_write: B|619|HWDeviceDRM::Commit::
159580 [email protected]   (  619) [000] ...1 82320.726690: tracing_mark_write: B|619|HWDeviceDRM::AtomicCommit::
159581 [email protected]   (  619) [000] d..2 82320.727074: sched_waking: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
159582 [email protected]   (  619) [000] d..3 82320.727087: sched_wakeup: comm=crtc_commit:111 pid=321 prio=83 target_cpu=002
159583          <idle>-0     (-----) [002] .n.1 82320.727092: cpu_idle: state=4294967295 cpu_id=2
159584          <idle>-0     (-----) [002] d..2 82320.727096: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=crtc_commit:111 next_pid=321 next_prio=83
159585 [email protected]   (  619) [000] ...1 82320.727147: tracing_mark_write: E|619
159586 [email protected]   (  619) [000] ...1 82320.727150: tracing_mark_write: E|619
159587 [email protected]   (  619) [000] ...1 82320.727190: tracing_mark_write: E|619
159588 [email protected]   (  619) [000] ...1 82320.727223: tracing_mark_write: E|619
159589 [email protected]   (  619) [000] .... 82320.727232: binder_transaction: transaction=1573420 dest_node=0 dest_proc=8858 dest_thread=8858 reply=1 flags=0x0 code=0x0
159590 [email protected]   (  619) [000] .... 82320.727235: binder_transaction_alloc_buf: transaction=1573420 data_size=576 offsets_size=112
159591 [email protected]   (  619) [000] d..2 82320.727246: sched_waking: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
159592 [email protected]   (  619) [000] d..3 82320.727256: sched_wakeup: comm=surfaceflinger pid=8858 prio=98 target_cpu=003
159593 [email protected]   (  619) [000] .... 82320.727258: binder_set_priority: proc=619 thread=619 old=98 => new=97 desired=97
159594          <idle>-0     (-----) [003] .n.1 82320.727261: cpu_idle: state=4294967295 cpu_id=3
159595          <idle>-0     (-----) [003] d..2 82320.727267: sched_switch: prev_comm=swapper/3 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=surfaceflinger next_pid=8858 next_prio=98
159596  surfaceflinger-8858  ( 8858) [003] .... 82320.727271: binder_transaction_received: transaction=1573420
159597 [email protected]   (  619) [000] d..2 82320.727303: sched_switch: [email protected] prev_pid=619 prev_prio=97 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
159598          <idle>-0     (-----) [000] d..1 82320.727312: cpu_idle: state=0 cpu_id=0
159599  surfaceflinger-8858  ( 8858) [003] d..2 82320.727510: sched_switch: prev_comm=surfaceflinger prev_pid=8858 prev_prio=98 prev_state=S ==> next_comm=swapper/3 next_pid=0 next_prio=120
159600          <idle>-0     (-----) [003] d..1 82320.727519: cpu_idle: state=0 cpu_id=3
159601 crtc_commit:111-321   (  321) [002] d..2 82320.727694: sched_switch: prev_comm=crtc_commit:111 prev_pid=321 prev_prio=83 prev_state=D ==> next_comm=swapper/2 next_pid=0 next_prio=120
159602          <idle>-0     (-----) [002] d..1 82320.727702: cpu_idle: state=0 cpu_id=2
159603          <idle>-0     (-----) [003] ...1 82320.728848: cpu_idle: state=4294967295 cpu_id=3
159604          <idle>-0     (-----) [003] d..1 82320.728850: cpu_idle: state=0 cpu_id=3
159605          <idle>-0     (-----) [002] ...1 82320.729525: cpu_idle: state=4294967295 cpu_id=2
159606          <idle>-0     (-----) [002] d..1 82320.729528: cpu_idle: state=0 cpu_id=2
159607          atrace-27823 (27823) [001] d..2 82320.729857: sched_waking: comm=rcuop/0 pid=10 prio=120 target_cpu=000
159608          atrace-27823 (27823) [001] dn.3 82320.729883: sched_wakeup: comm=rcuop/0 pid=10 prio=120 target_cpu=001
159609          atrace-27823 (27823) [001] d..2 82320.729889: sched_switch: prev_comm=atrace prev_pid=27823 prev_prio=120 prev_state=R ==> next_comm=rcuop/0 next_pid=10 next_prio=120
159610         rcuop/0-10    (   10) [001] d..2 82320.729898: sched_switch: prev_comm=rcuop/0 prev_pid=10 prev_prio=120 prev_state=S ==> next_comm=atrace next_pid=27823 next_prio=120
159611          <idle>-0     (-----) [000] d.s2 82320.731790: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159612          atrace-27823 (27823) [001] d.h2 82320.731797: sched_waking: comm=migration/1 pid=17 prio=0 target_cpu=001
159613          <idle>-0     (-----) [000] dns3 82320.731799: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159614          atrace-27823 (27823) [001] dnh3 82320.731804: sched_wakeup: comm=migration/1 pid=17 prio=0 target_cpu=001
159615          <idle>-0     (-----) [000] .n.1 82320.731808: cpu_idle: state=4294967295 cpu_id=0
159616          <idle>-0     (-----) [000] d..2 82320.731815: 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
159617     rcu_preempt-7     (    7) [000] d..2 82320.731862: 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
159618          atrace-27823 (27823) [001] dnH2 82320.731862: sched_waking: comm=sugov:0 pid=576 prio=49 target_cpu=000
159619          <idle>-0     (-----) [000] d..1 82320.731868: cpu_idle: state=0 cpu_id=0
159620          atrace-27823 (27823) [001] dnH3 82320.731874: sched_wakeup: comm=sugov:0 pid=576 prio=49 target_cpu=000
159621          <idle>-0     (-----) [000] .n.1 82320.731878: cpu_idle: state=4294967295 cpu_id=0
159622          atrace-27823 (27823) [001] dns2 82320.731878: sched_waking: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=000
159623          <idle>-0     (-----) [000] d..2 82320.731885: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sugov:0 next_pid=576 next_prio=49
159624          atrace-27823 (27823) [001] dns3 82320.731895: sched_wakeup: comm=kworker/u16:15 pid=1311 prio=120 target_cpu=002
159625          atrace-27823 (27823) [001] dns2 82320.731899: sched_waking: comm=rcu_preempt pid=7 prio=120 target_cpu=000
159626          <idle>-0     (-----) [002] .n.1 82320.731900: cpu_idle: state=4294967295 cpu_id=2
159627         sugov:0-576   (  576) [000] .... 82320.731907: clk_set_rate: pwrcl_clk 1228800000
159628          <idle>-0     (-----) [002] d..2 82320.731907: sched_switch: prev_comm=swapper/2 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u16:15 next_pid=1311 next_prio=120
159629          atrace-27823 (27823) [001] dns3 82320.731912: sched_wakeup: comm=rcu_preempt pid=7 prio=120 target_cpu=003
159630          <idle>-0     (-----) [003] .n.1 82320.731917: cpu_idle: state=4294967295 cpu_id=3
159631          atrace-27823 (27823) [001] d..2 82320.731918: sched_switch: prev_comm=atrace prev_pid=27823 prev_prio=120 prev_state=R+ ==> next_comm=migration/1 next_pid=17 next_prio=0
159632          <idle>-0     (-----) [003] d..2 82320.731924: 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
159633     rcu_preempt-7     (    7) [003] d..2 82320.731927: sched_waking: comm=rcuop/2 pid=29 prio=120 target_cpu=000
159634          <idle>-0     (-----) [004] .n.1 82320.731946: cpu_idle: state=4294967295 cpu_id=4
159635          <idle>-0     (-----) [004] d..2 82320.731973: sched_switch: prev_comm=swapper/4 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=atrace next_pid=27823 next_prio=120
159636         sugov:0-576   (  576) [000] .... 82320.731973: clk_set_rate: cpu3_pwrcl_clk 1766400000
159637     migration/1-17    (   17) [001] d.h3 82320.731973: sched_waking: comm=sugov:4 pid=577 prio=49 target_cpu=007
159638          <idle>-0     (-----) [005] dnh2 82320.731974: sched_wakeup: comm=rcuop/2 pid=29 prio=120 target_cpu=005
159639          <idle>-0     (-----) [005] .n.1 82320.731979: cpu_idle: state=4294967295 cpu_id=5
159640         sugov:0-576   (  576) [000] .... 82320.731982: clk_set_rate: cpu2_pwrcl_clk 1766400000
159641         sugov:0-576   (  576) [000] .... 82320.731989: clk_set_rate: cpu1_pwrcl_clk 1766400000
159642         sugov:0-576   (  576) [000] .... 82320.731995: clk_set_rate: cpu0_pwrcl_clk 1228800000
159643          <idle>-0     (-----) [007] dnh2 82320.732004: sched_wakeup: comm=sugov:4 pid=577 prio=49 target_cpu=007
159644          <idle>-0     (-----) [005] d..2 82320.732004: sched_switch: prev_comm=swapper/5 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcuop/2 next_pid=29 next_prio=120
159645          <idle>-0     (-----) [007] .n.1 82320.732007: cpu_idle: state=4294967295 cpu_id=7
159646  </script>
159647  <script class="trace-data" type="application/text">
159648{"traceEvents": [{"category": "process_argv", "name": "process_argv", "args": {"argv": ["/mnt/4tb_ssd/src/android-ml-master-2/external/chromium-trace/systrace.py", "-o", "/usr/local/google/home/mikie/logs/la_pe.html", "-a", "com.example.android.nn.benchmark", "nnapi", "hal", "freq", "sched", "idle", "load", "binder_driver"]}, "pid": 12710, "ts": 5626968465297.695, "tid": 140646137100032, "ph": "M"}, {"category": "python", "name": "clock_sync", "args": {"issue_ts": 5626980021127.966, "sync_id": "ef30a0c0-ae4b-475d-af26-7c3ad3276ffe"}, "pid": 12710, "ts": 5626980028966.4375, "tid": 140646185944832, "ph": "c"}], "metadata": {"clock-domain": "SYSTRACE"}}  </script>
159649<!-- END TRACE -->
159650</body>
159651</html>
159652